hepmc-2.06.09.orig/0000755000175000017500000000000011770611711014607 5ustar sylvestresylvestrehepmc-2.06.09.orig/INSTALL.autoconf0000644000175000017500000000763211751770253017473 0ustar sylvestresylvestre#------------------------------------------------------------- # installing HepMC with configure #------------------------------------------------------------- Although it may be possible to build the HepMC libraries from this directory, we recommend that you create a separate build directory and work from there. The directions below explain how to build with autoconf, etc. As of HepMC 2.06.06, you also have the option to build with cmake. We highly recommend that you build with cmake, as explained in INSTALL.cmake Cmake is preferred for MacOSX and required for Windows. #------------------------------------------------------------- # installing from a source code tar ball #------------------------------------------------------------- Unwind the source code tar ball in some relevant directory. cd HepMC ./bootstrap This will run automake and autoconf. Bootstrap will also check for and run doxygen and latex to build the documents. Determine where the files will be installed. We recommend that you create a separate build directory that is NOT in the source code directory tree. cd /configure --prefix= (Note that files will be installed under /usr/local if you do not specify a prefix.) make (Build temporary copies of libraries and executables.) make check (Run the tests.) make install (Copy libraries, headers, executables, etc. to relevant subdirectories under .) #------------------------------------------------------------- # configure options #------------------------------------------------------------- A variety of options can be given to configure. Below is a list of the options that you are likely to find most useful. --help provides a partial list of options --prefix=PREFIX install architecture-independent files in PREFIX [default is /usr/local] --disable-shared build only static libraries --disable-static build only shared libraries --enable-visual on by default when using Visual C++ --enable-gmake use gmake (default is make) --with-CLHEP --with-CLHEP=$CLHEP_DIR: CLHEP is used ONLY in the examples --with-GENSER --with-GENSER=$GENSER_DIR: GENSER is used ONLY in the examples #------------------------------------------------------------- # building from svn #------------------------------------------------------------- You will need current versions of automake, autoconf, and libtool. On some machines, you will need to build them. See building autotools below. To work with a tagged branch: svn co svn+ssh://svn.cern.ch/reps/hepmc/tags/HEPMC_02_06_01 To work with the head: svn co svn+ssh://svn.cern.ch/reps/hepmc/trunk HepMC You may also download directly from the online browser http://svnweb.cern.ch/world/wsvn/hepmc/ Now continue with directions as if you unpacked a source code tarball. #------------------------------------------------------------- # building autotools #------------------------------------------------------------- If you do not have at least autoconf 2.59 and automake 1.9.1, you will need to build autoconf, automake, and libtool. On some platforms, you may also need to build m4 and texinfo. Download the relevant tarballs from gnu.org (http://www.gnu.org/software/autoconf/, http://www.gnu.org/software/automake/, and http://www.gnu.org/software/libtool/) Untar them in a common source code tree. Decide whether you want to install them in /usr/local or your own install directory. If you use your own install directory, use --prefix= with configure. For each autotool package: /configure [--prefix=] make make install Make sure that /bin is before /usr/bin in your path. #------------------------------------------------------------- hepmc-2.06.09.orig/missing0000755000175000017500000002540611763470443016224 0ustar sylvestresylvestre#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2005-06-08.21 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case "$1" in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: hepmc-2.06.09.orig/test/0000755000175000017500000000000011763470444015576 5ustar sylvestresylvestrehepmc-2.06.09.orig/test/testStreamIO.sh.in0000755000175000017500000000774011657245323021133 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ # cleanup any old output files first rm -f testStreamIO.out rm -f testStreamIO2.out rm -f testStreamIOParticle.out rm -f testStreamIOVarious.out rm -f testStreamIO.cout ./testStreamIO@EXEEXT@ OS=`uname` case "$OS" in CYGWIN*) cmd1=`sed 's/e-0/e-/g' testStreamIO.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd2=`sed 's/e-0/e-/g' testStreamIO2.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd5=`sed 's/e-0/e-/g' testStreamIO3.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd6=`sed 's/e-0/e-/g' testStreamIO4.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`@DIFF_Q@ testStreamIOVarious.cout @srcdir@/testStreamIOVarious.output` fi fi cmd=`@DIFF_Q@ testStreamIO.cout @srcdir@/testStreamIO.output` #don't compare IOParticle on Windows (hopelessly different default output) cmd3= cmd4=`@DIFF_Q@ testStreamIOVarious.out testNaN.out` ;; Darwin*) # MacOSX fix cmd1=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd2=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO2.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd5=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO3.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd6=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO4.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`@DIFF_Q@ testStreamIOVarious.cout @srcdir@/testStreamIOVarious.output` fi fi cmd=`@DIFF_Q@ testStreamIO.cout @srcdir@/testStreamIO.output` cmd3=`sed 's/e-00/e+00/g' @srcdir@/testHepMCParticle.output | \ @DIFF_Q@ - testStreamIOParticle.out` cmd4=`@DIFF_Q@ testStreamIOVarious.out testNaN.out` ;; *) cmd1=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd2=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO2.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd5=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO3.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd6=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testStreamIO4.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`@DIFF_Q@ testStreamIOVarious.cout @srcdir@/testStreamIOVarious.output` fi fi cmd=`@DIFF_Q@ testStreamIO.cout @srcdir@/testStreamIO.output` cmd3=`@DIFF_Q@ testStreamIOParticle.out @srcdir@/testHepMCParticle.output` cmd4=`@DIFF_Q@ testStreamIOVarious.out testNaN.out` esac if [ -n "$cmd" ]; then echo $cmd exit 1; fi if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi if [ -n "$cmd2" ] then echo $cmd2 exit 1; fi if [ -n "$cmd3" ] then echo $cmd3 exit 1; fi if [ -n "$cmd4" ] then echo $cmd4 exit 1; fi if [ -n "$cmd5" ] then echo $cmd5 exit 1; fi if [ -n "$cmd6" ] then echo $cmd6 exit 1; fi if [ -n "$cmd9" ] then echo $cmd9 exit 1; fi exit 0; hepmc-2.06.09.orig/test/testHepMCParticle.output0000644000175000017500000054165311763464675022427 0ustar sylvestresylvestre0 Run HepMC::IO_AsciiParticles eye-readable events output # HepMC::Version 2.06.09 # stat pdg moth1 px py pz energy mass eta 9 Event 929 particles 1 3 2212 0 0.00e+00 0.00e+00 7.00e+03 7.00e+03 0.938 999 2 3 2212 0 0.00e+00 0.00e+00 -7.00e+03 7.00e+03 0.938 -999 3 3 21 1 -9.58e-01 3.49e-01 1.57e+01 1.57e+01 0 3.43 4 3 1 2 2.77e-01 -1.85e-01 -1.27e+03 1.27e+03 0 -8.94 5 3 -2 3 2.16e-01 2.16e+00 6.72e+00 7.06e+00 0 1.85 6 3 1 4 2.58e-01 1.02e+00 -7.22e+02 7.22e+02 0 -7.22 7 3 22 5 -3.58e+01 -6.12e+00 -3.84e+02 3.86e+02 0 -3.05 8 3 -24 5 3.63e+01 9.30e+00 -3.31e+02 3.43e+02 82 -2.87 9 1 22 7 -3.58e+01 -6.12e+00 -3.84e+02 3.86e+02 0 -3.05 10 2 -24 8 3.63e+01 9.30e+00 -3.31e+02 3.43e+02 82 -2.87 11 2 2 3 -7.86e-01 -1.27e+00 7.95e+00 8.09e+00 0.33 2.37 12 2 2101 1 2.58e-01 -1.11e-01 1.24e+03 1.24e+03 0.579 9.09 13 2 3 10 2.36e+01 -3.35e+01 -1.87e+02 1.92e+02 0.5 -2.22 14 2 21 10 2.17e+00 -5.76e-01 -9.12e+00 9.40e+00 0 -2.11 15 2 21 10 -6.73e-03 2.14e-02 -6.61e-01 6.61e-01 0 -4.08 16 2 21 10 3.38e-01 7.32e-01 -9.27e-01 1.23e+00 0 -0.984 17 2 21 10 7.95e-02 2.08e+00 -5.15e+00 5.55e+00 0 -1.64 18 2 -4 10 1.01e+01 4.05e+01 -1.28e+02 1.35e+02 1.5 -1.84 19 2 2 0 -1.34e+00 2.25e+00 1.22e+00 2.89e+00 0 0.452 20 2 21 0 -3.11e-01 1.14e+00 4.22e-01 1.26e+00 0 0.349 21 2 21 0 -1.04e+00 6.45e-01 1.13e+00 1.66e+00 0 0.829 22 2 21 0 -1.92e+00 1.68e+00 3.75e+00 4.54e+00 0 1.18 23 2 21 0 1.64e+00 -1.78e+00 3.05e+01 3.06e+01 0 3.23 24 2 -2 0 1.34e+00 -2.25e+00 8.79e+01 8.79e+01 0 4.21 25 2 2 1 7.00e-01 -2.38e-01 2.33e+00 2.47e+00 0.33 1.87 26 2 21 3 -3.88e-01 -5.41e-01 6.38e-01 9.22e-01 0 0.851 27 2 21 0 5.28e-01 3.95e+00 7.09e+01 7.10e+01 0 3.57 28 2 21 0 -5.79e-01 2.05e+00 4.78e+01 4.79e+01 0 3.8 29 2 21 0 -3.69e+00 1.87e+00 1.61e+02 1.61e+02 0 4.35 30 2 21 0 -7.83e-01 2.27e+00 1.74e+02 1.74e+02 0 4.97 31 2 21 0 -1.64e+00 1.78e+00 4.54e+02 4.54e+02 0 5.93 32 2 21 0 -2.65e+00 -5.53e+00 2.74e+03 2.74e+03 0 6.8 33 2 21 0 6.38e-01 2.06e-01 2.77e+01 2.77e+01 0 4.41 34 2 21 0 8.88e-01 9.54e-02 3.97e+01 3.98e+01 0 4.49 35 2 21 0 1.68e+00 -2.78e+00 1.07e+02 1.07e+02 0 4.19 36 2 21 0 5.27e-01 -9.39e-01 3.48e+01 3.48e+01 0 4.17 37 2 21 0 7.83e-01 -2.27e+00 6.85e+01 6.85e+01 0 4.04 38 2 21 0 -5.64e+00 -6.24e+00 2.66e+02 2.66e+02 0 4.15 39 2 21 0 -1.39e+00 -1.55e+00 5.53e+01 5.54e+01 0 3.97 40 2 21 0 -1.59e+00 -2.75e+00 3.26e+01 3.28e+01 0 3.03 41 2 21 0 -2.02e+00 -2.13e+00 2.59e+01 2.60e+01 0 2.87 42 2 21 0 -2.86e+00 -2.57e-01 2.83e+01 2.85e+01 0 2.98 43 2 21 0 -1.85e+00 5.77e-01 2.04e+01 2.05e+01 0 3.05 44 2 21 0 -2.42e+00 3.28e-01 2.00e+01 2.01e+01 0 2.8 45 2 21 0 -7.76e+00 1.25e+00 5.15e+01 5.21e+01 0 2.58 46 2 21 0 -1.68e+00 2.78e+00 2.04e+01 2.06e+01 0 2.53 47 2 21 0 4.21e-01 1.02e+00 1.32e+01 1.32e+01 0 3.17 48 2 21 0 1.46e+00 2.24e+00 2.15e+01 2.16e+01 0 2.78 49 2 21 0 1.39e+00 1.55e+00 1.26e+01 1.27e+01 0 2.5 50 2 21 0 1.94e+00 -1.28e-01 2.92e+01 2.93e+01 0 3.4 51 2 21 0 7.76e+00 -1.25e+00 7.15e+01 7.19e+01 0 2.9 52 2 21 0 1.03e+00 2.46e-01 8.02e+00 8.09e+00 0 2.72 53 2 21 0 5.64e+00 6.24e+00 3.04e+01 3.15e+01 0 2 54 2 21 0 8.52e-01 4.85e+00 1.86e+01 1.93e+01 0 2.04 55 2 21 0 1.70e-01 2.34e+00 5.44e+00 5.92e+00 0 1.58 56 2 21 0 1.59e+00 2.75e+00 7.61e+00 8.25e+00 0 1.61 57 2 21 0 2.02e+00 2.13e+00 3.10e+00 4.27e+00 0 0.921 58 2 21 0 2.65e+00 5.53e+00 7.08e+00 9.36e+00 0 0.987 59 2 21 0 -5.50e-01 2.91e+00 4.06e+00 5.02e+00 0 1.12 60 2 21 0 -2.50e+00 3.37e+00 -4.04e-02 4.19e+00 0 -0.00965 61 2 21 0 -1.34e+00 1.31e+00 -7.96e-01 2.04e+00 0 -0.412 62 2 21 0 -8.88e-01 -9.54e-02 9.96e-01 1.34e+00 0 0.961 63 2 21 0 -5.92e+00 -7.40e-02 5.37e+00 7.99e+00 0 0.815 64 2 21 0 -3.40e+00 -1.05e+00 7.67e-01 3.64e+00 0 0.214 65 2 21 0 -2.64e+00 -3.91e-01 -5.76e-03 2.67e+00 0 -0.00216 66 2 21 0 -6.38e-01 -2.06e-01 -1.06e-01 6.78e-01 0 -0.158 67 2 21 0 -2.31e+00 -1.52e+00 -8.74e-01 2.90e+00 0 -0.311 68 2 21 0 -1.46e+00 -2.24e+00 9.18e-02 2.68e+00 0 0.0343 69 2 21 0 -1.70e-01 -2.34e+00 1.00e+00 2.56e+00 0 0.415 70 2 21 0 6.14e-01 -1.47e+00 5.09e-01 1.67e+00 0 0.314 71 2 21 0 -8.52e-01 -4.85e+00 2.70e+00 5.61e+00 0 0.524 72 2 21 0 5.50e-01 -2.91e+00 2.48e+00 3.86e+00 0 0.763 73 2 21 0 5.79e-01 -2.05e+00 3.95e+00 4.49e+00 0 1.38 74 2 21 0 1.85e+00 -5.77e-01 1.32e+00 2.35e+00 0 0.638 75 2 21 0 3.69e+00 -1.87e+00 1.37e+00 4.36e+00 0 0.325 76 2 21 0 3.40e+00 1.05e+00 8.54e-01 3.66e+00 0 0.238 77 2 21 0 8.00e-01 7.22e-01 -5.52e-01 1.21e+00 0 -0.492 78 2 21 0 2.52e+00 1.27e+00 -2.02e+00 3.48e+00 0 -0.666 79 2 21 0 2.86e+00 2.57e-01 -2.51e+00 3.82e+00 0 -0.791 80 2 21 0 4.52e+00 -1.45e+00 -1.43e+00 4.96e+00 0 -0.296 81 2 21 0 1.92e+00 -1.68e+00 -1.10e+00 2.78e+00 0 -0.42 82 2 21 0 4.48e-01 -7.55e-01 -2.88e-01 9.24e-01 0 -0.322 83 2 21 0 1.34e+00 -1.31e+00 -6.96e-01 2.00e+00 0 -0.363 84 2 21 0 5.83e+00 -7.71e+00 -6.21e+00 1.15e+01 0 -0.605 85 2 21 0 3.11e-01 -1.14e+00 -4.94e-01 1.28e+00 0 -0.406 86 2 21 0 -5.28e-01 -3.95e+00 -1.30e+00 4.19e+00 0 -0.32 87 2 21 0 -6.14e-01 1.47e+00 -1.89e+00 2.47e+00 0 -1.01 88 2 21 0 -4.48e-01 7.55e-01 -2.23e+00 2.40e+00 0 -1.66 89 2 21 0 6.77e-01 2.77e+00 -9.97e+00 1.04e+01 0 -1.96 90 2 21 0 -5.27e-01 9.39e-01 -5.78e+00 5.88e+00 0 -2.38 91 2 21 0 -1.94e+00 1.28e-01 -1.45e+01 1.47e+01 0 -2.71 92 2 21 0 -1.35e+00 2.26e-01 -1.01e+01 1.02e+01 0 -2.7 93 2 21 0 -1.93e+00 2.24e+00 -2.38e+01 2.40e+01 0 -2.78 94 2 21 0 -5.83e+00 7.71e+00 -8.09e+01 8.15e+01 0 -2.82 95 2 21 0 -1.16e+00 7.15e+00 -8.37e+01 8.40e+01 0 -3.14 96 2 21 0 2.31e+00 1.52e+00 -2.05e+01 2.07e+01 0 -2.7 97 2 21 0 5.92e+00 7.40e-02 -6.33e+01 6.36e+01 0 -3.07 98 2 21 0 2.42e+00 -3.28e-01 -1.65e+01 1.67e+01 0 -2.61 99 2 21 0 1.04e+00 -6.45e-01 -3.48e+00 3.69e+00 0 -1.77 100 2 21 0 2.50e+00 -3.37e+00 -2.68e+01 2.71e+01 0 -2.55 101 2 21 0 -6.77e-01 -2.77e+00 -1.94e+01 1.96e+01 0 -2.61 102 2 21 0 -4.21e-01 -1.02e+00 -2.44e+01 2.44e+01 0 -3.79 103 2 21 0 1.93e+00 -2.24e+00 -4.55e+01 4.56e+01 0 -3.43 104 2 21 0 3.66e-01 -2.52e-01 -1.15e+01 1.15e+01 0 -3.95 105 2 21 0 2.15e+00 3.41e-01 -6.96e+01 6.96e+01 0 -4.16 106 2 21 0 2.64e+00 3.91e-01 -1.73e+02 1.73e+02 0 -4.86 107 2 21 0 5.89e-01 2.19e-01 -8.94e+01 8.94e+01 0 -5.65 108 2 21 0 1.35e+00 -2.26e-01 -7.91e+01 7.91e+01 0 -4.75 109 2 21 0 1.16e+00 -7.15e+00 -5.28e+02 5.28e+02 0 -4.98 110 2 21 0 -3.66e-01 2.52e-01 -1.63e+03 1.63e+03 0 -8.9 111 2 21 0 -5.89e-01 -2.19e-01 -3.87e+02 3.87e+02 0 -7.12 112 2 21 0 -2.15e+00 -3.41e-01 -2.35e+02 2.35e+02 0 -5.38 113 2 21 0 -4.52e+00 1.45e+00 -1.33e+02 1.33e+02 0 -4.03 114 2 21 4 -5.29e-01 -6.96e-01 -4.47e+02 4.47e+02 0 -6.93 115 2 21 4 5.48e-01 -5.09e-01 -9.77e+01 9.77e+01 0 -5.57 116 2 2203 2 -2.77e-01 1.85e-01 -1.89e+03 1.89e+03 0.771 -9.34 117 2 21 0 1.10e+00 2.85e+00 1.06e+02 1.06e+02 0 4.24 118 2 21 0 -1.10e+00 -2.85e+00 1.27e+01 1.30e+01 0 2.13 119 2 21 0 -8.00e-01 -7.22e-01 5.87e+00 5.96e+00 0 2.4 120 2 21 0 -2.52e+00 -1.27e+00 8.50e+00 8.95e+00 0 1.82 121 2 21 0 -1.75e+00 -1.64e+00 1.12e+02 1.12e+02 0 4.54 122 2 21 0 1.75e+00 1.64e+00 6.02e+02 6.02e+02 0 6.22 123 2 21 0 -1.03e+00 -2.46e-01 3.33e+01 3.33e+01 0 4.14 124 2 92 11 -5.28e-01 -1.38e+00 1.25e+03 1.25e+03 19 7.43 125 1 321 124 -5.83e-01 -8.38e-01 5.21e+00 5.33e+00 0.494 2.33 126 1 -321 124 -5.60e-01 9.97e-02 2.03e+01 2.03e+01 0.494 4.27 127 2 2214 124 4.78e-01 -6.66e-01 1.16e+02 1.16e+02 1.26 5.65 128 2 223 124 1.37e-01 2.39e-02 1.11e+03 1.11e+03 0.784 9.68 129 2 92 13 3.63e+01 9.30e+00 -3.31e+02 3.43e+02 82 -2.87 130 1 -321 129 8.48e+00 -1.16e+01 -6.60e+01 6.76e+01 0.494 -2.23 131 2 113 129 8.12e+00 -1.19e+01 -6.64e+01 6.80e+01 0.907 -2.23 132 2 213 129 4.46e+00 -6.25e+00 -3.40e+01 3.49e+01 0.709 -2.19 133 2 -213 129 2.62e+00 -1.59e+00 -1.58e+01 1.61e+01 1.09 -2.34 134 1 211 129 1.10e+00 -1.77e+00 -6.26e+00 6.60e+00 0.14 -1.82 135 2 221 129 -1.05e-01 -1.90e-02 -2.29e+00 2.36e+00 0.547 -3.76 136 1 -211 129 3.71e-01 1.08e+00 -4.55e+00 4.70e+00 0.14 -2.09 137 2 213 129 3.56e-01 -2.26e-01 -2.14e+00 2.31e+00 0.766 -2.33 138 1 -211 129 -1.28e-01 9.34e-02 -6.48e-01 6.82e-01 0.14 -2.12 139 2 111 129 1.37e+00 2.06e+00 -6.83e+00 7.26e+00 0.135 -1.74 140 2 111 129 -2.74e-02 1.14e+00 -6.77e+00 6.86e+00 0.135 -2.48 141 2 2214 129 2.08e+00 7.31e+00 -2.20e+01 2.33e+01 1.27 -1.78 142 2 -323 129 1.29e+00 4.20e+00 -1.24e+01 1.31e+01 0.859 -1.76 143 2 -4314 129 6.34e+00 2.68e+01 -8.50e+01 8.94e+01 2.63 -1.85 144 2 92 19 -1.63e+00 1.69e+00 1.25e+02 1.29e+02 31.6 4.67 145 1 321 144 -1.10e+00 1.93e+00 1.32e+00 2.63e+00 0.494 0.564 146 2 333 144 -2.27e+00 1.82e+00 2.40e+00 3.91e+00 1.02 0.752 147 2 333 144 -4.55e-01 1.10e+00 1.46e+00 2.14e+00 1.02 1.03 148 2 -313 144 2.94e-01 -7.19e-02 5.92e+00 6.00e+00 0.896 3.67 149 2 313 144 2.75e-01 -2.22e-01 3.69e+00 3.82e+00 0.941 3.04 150 2 -311 144 -8.01e-01 1.26e-01 6.93e+00 7.00e+00 0.498 2.84 151 2 113 144 7.67e-01 -1.43e-01 1.75e+01 1.75e+01 0.838 3.8 152 2 223 144 3.06e-01 -8.16e-01 4.61e+01 4.62e+01 0.784 4.66 153 2 113 144 2.60e-01 -7.62e-01 1.64e+01 1.65e+01 0.719 3.71 154 2 -213 144 1.10e+00 -1.27e+00 2.31e+01 2.32e+01 1.12 3.31 155 2 92 25 6.04e+00 -1.25e+00 -1.54e+03 1.10e+04 1.09e+04 -6.21 156 2 221 155 1.82e-01 -6.02e-02 1.29e+00 1.42e+00 0.547 2.61 157 2 213 155 -5.36e-02 -9.98e-02 3.32e+00 3.41e+00 0.781 4.07 158 2 2114 155 4.41e-01 -6.32e-02 5.75e+00 5.89e+00 1.2 3.25 159 2 -213 155 -7.87e-02 5.89e-01 6.51e+00 6.59e+00 0.854 3.09 160 2 -1114 155 -7.46e-01 2.26e+00 5.10e+01 5.11e+01 1.29 3.76 161 2 313 155 2.21e-01 6.44e-01 1.74e+01 1.74e+01 0.849 3.93 162 1 -321 155 -1.80e-01 1.73e+00 4.60e+01 4.60e+01 0.494 3.97 163 2 2224 155 -1.63e+00 1.50e+00 1.09e+02 1.09e+02 1.14 4.59 164 2 -2224 155 -1.41e+00 1.15e+00 1.82e+02 1.82e+02 1.29 5.3 165 1 321 155 -5.44e-01 1.53e+00 7.32e+01 7.32e+01 0.494 4.5 166 2 -311 155 -1.42e+00 -2.35e-01 1.45e+02 1.45e+02 0.498 5.31 167 1 -211 155 -4.72e-02 4.30e-01 1.38e+02 1.38e+02 0.14 6.46 168 2 2224 155 -1.24e-01 7.79e-03 2.68e+02 2.68e+02 1.22 8.37 169 2 111 155 -2.79e-01 3.51e-02 1.38e+02 1.38e+02 0.135 6.89 170 2 -2224 155 -2.01e-01 -8.32e-01 3.71e+02 3.71e+02 1.12 6.77 171 1 211 155 -9.02e-01 4.02e-01 2.57e+02 2.57e+02 0.14 6.26 172 2 -213 155 -2.14e-01 -4.73e-01 4.06e+02 4.06e+02 0.862 7.36 173 2 213 155 -1.64e-01 -3.64e-01 3.15e+02 3.15e+02 0.645 7.37 174 1 -211 155 -6.89e-01 -5.51e-01 2.29e+02 2.29e+02 0.14 6.25 175 1 321 155 -4.18e-01 -1.58e+00 5.11e+02 5.11e+02 0.494 6.44 176 2 -311 155 1.18e+00 2.27e-01 1.29e+02 1.29e+02 0.498 5.37 177 2 113 155 -5.26e-01 -4.34e-01 3.02e+02 3.02e+02 0.799 6.79 178 2 311 155 1.04e+00 -8.14e-01 3.97e+01 3.97e+01 0.498 4.09 179 1 -321 155 7.23e-01 -1.22e+00 4.45e+01 4.45e+01 0.494 4.14 180 2 213 155 3.92e-02 -5.34e-01 1.79e+01 1.79e+01 0.615 4.2 181 2 331 155 1.26e+00 -2.77e+00 1.23e+02 1.23e+02 0.958 4.39 182 2 -213 155 -1.55e+00 -2.26e+00 8.07e+01 8.08e+01 0.647 4.08 183 2 213 155 -1.64e+00 -1.88e+00 8.45e+01 8.45e+01 0.695 4.22 184 1 -211 155 -1.49e-01 -5.54e-01 2.41e+01 2.41e+01 0.14 4.43 185 1 321 155 -2.35e+00 -2.92e+00 9.35e+01 9.36e+01 0.494 3.91 186 2 333 155 -6.95e-01 -6.60e-01 2.61e+01 2.62e+01 1.02 4 187 2 -313 155 -2.16e+00 -2.14e+00 3.58e+01 3.59e+01 0.86 3.16 188 2 223 155 -1.70e+00 -1.97e+00 3.21e+01 3.22e+01 0.783 3.21 189 2 113 155 -8.00e-01 -1.76e-01 1.05e+01 1.06e+01 0.732 3.25 190 2 113 155 -2.95e+00 7.09e-02 2.60e+01 2.62e+01 0.694 2.87 191 1 -211 155 -2.49e+00 5.30e-01 1.54e+01 1.56e+01 0.14 2.5 192 2 213 155 -1.39e+00 -3.31e-01 1.20e+01 1.22e+01 0.799 2.83 193 2 111 155 -2.28e+00 4.38e-01 2.32e+01 2.34e+01 0.135 3 194 2 313 155 -2.44e+00 7.52e-01 2.01e+01 2.03e+01 0.878 2.76 195 2 -311 155 -2.07e+00 3.30e-01 1.45e+01 1.46e+01 0.498 2.63 196 2 311 155 -6.44e-01 8.76e-01 7.02e+00 7.12e+00 0.498 2.56 197 2 3122 155 -1.92e-01 8.30e-01 1.45e+01 1.45e+01 1.12 3.53 198 1 -211 155 6.33e-01 3.54e-01 5.64e+00 5.68e+00 0.14 2.75 199 2 -1114 155 2.84e-01 1.90e+00 1.48e+01 1.50e+01 1.19 2.74 200 2 331 155 -1.68e-01 2.31e-01 7.98e+00 8.04e+00 0.958 4.03 201 1 -211 155 1.27e+00 8.73e-01 1.49e+01 1.50e+01 0.14 2.97 202 2 223 155 1.39e+00 1.22e-01 9.74e+00 9.87e+00 0.783 2.64 203 2 111 155 1.40e+00 9.44e-01 2.52e+01 2.53e+01 0.135 3.4 204 2 223 155 1.98e+00 2.73e-01 1.29e+01 1.31e+01 0.77 2.56 205 2 111 155 5.07e-01 1.10e-01 7.23e+00 7.25e+00 0.135 3.33 206 2 2214 155 2.62e+00 -2.10e-01 3.30e+01 3.32e+01 1.25 3.22 207 2 -2114 155 2.30e+00 1.23e+00 1.21e+01 1.25e+01 1.22 2.24 208 1 -211 155 7.63e-02 1.53e-01 1.07e+00 1.09e+00 0.14 2.54 209 1 211 155 1.16e+00 4.63e-01 8.63e+00 8.72e+00 0.14 2.63 210 2 331 155 1.16e+00 -2.58e-01 7.82e+00 7.97e+00 0.958 2.59 211 1 -211 155 4.04e+00 4.89e+00 2.67e+01 2.75e+01 0.14 2.14 212 2 213 155 7.78e-01 3.39e+00 8.21e+00 8.94e+00 0.695 1.59 213 2 223 155 1.14e+00 4.36e+00 1.54e+01 1.61e+01 0.783 1.94 214 2 -213 155 7.58e-01 1.59e+00 3.84e+00 4.34e+00 0.983 1.52 215 2 221 155 1.68e+00 1.96e+00 2.79e+00 3.84e+00 0.547 0.937 216 2 111 155 8.39e-01 2.52e+00 3.50e+00 4.40e+00 0.135 1.09 217 1 211 155 5.38e-01 4.35e-01 9.74e-01 1.20e+00 0.14 1.14 218 2 -213 155 -1.27e-02 2.03e+00 2.50e+00 3.33e+00 0.833 1.04 219 2 213 155 7.98e-01 1.48e+00 1.73e+00 2.52e+00 0.743 0.9 220 1 -211 155 -1.72e-01 1.36e+00 4.37e-01 1.44e+00 0.14 0.314 221 2 111 155 -6.78e-01 9.60e-02 9.63e-01 1.19e+00 0.135 1.14 222 2 323 155 -5.17e-01 2.33e+00 1.34e+00 2.88e+00 0.897 0.537 223 1 -321 155 1.59e-01 3.46e-01 2.18e-01 6.60e-01 0.494 0.545 224 2 213 155 -7.36e-01 2.22e-01 4.40e-02 8.90e-01 0.447 0.0573 225 2 -213 155 -1.13e+00 8.33e-01 1.02e+00 1.90e+00 0.764 0.675 226 2 113 155 -1.70e+00 1.47e+00 -2.05e-01 2.43e+00 0.908 -0.0912 227 2 213 155 -1.61e+00 3.84e-01 1.65e+00 2.46e+00 0.754 0.878 228 1 -211 155 -1.96e+00 -7.35e-01 4.53e-01 2.15e+00 0.14 0.215 229 2 111 155 -1.56e+00 -1.68e-01 2.07e+00 2.60e+00 0.135 1.09 230 1 2212 155 -3.97e+00 -1.12e+00 -2.50e-01 4.24e+00 0.938 -0.0605 231 1 -2112 155 -1.47e+00 -3.31e-01 7.18e-01 1.92e+00 0.94 0.46 232 2 221 155 -1.10e+00 1.20e-02 2.36e-01 1.25e+00 0.547 0.213 233 2 313 155 -1.86e+00 -2.08e+00 1.11e+00 3.14e+00 0.895 0.386 234 2 -311 155 -1.78e+00 -1.16e+00 -7.49e-01 2.31e+00 0.498 -0.346 235 1 -211 155 1.86e-01 -4.34e-01 1.08e-01 5.04e-01 0.14 0.227 236 2 111 155 1.72e-01 -4.34e-01 4.38e-01 6.54e-01 0.135 0.837 237 2 323 155 -1.17e+00 -3.79e+00 1.90e+00 4.51e+00 0.988 0.464 238 2 -313 155 -1.64e-01 -1.46e+00 1.49e+00 2.26e+00 0.879 0.891 239 2 -213 155 2.99e-01 -4.47e-01 4.55e-01 8.39e-01 0.457 0.768 240 2 113 155 2.00e-01 -1.60e+00 1.41e+00 2.25e+00 0.662 0.791 241 2 213 155 -2.30e-01 -2.11e+00 9.93e-01 2.47e+00 0.766 0.452 242 2 313 155 7.88e-01 -2.72e+00 1.56e+00 3.33e+00 0.824 0.525 243 2 -323 155 6.01e-01 -8.54e-01 2.53e+00 2.88e+00 0.899 1.62 244 2 2224 155 3.96e+00 -3.90e-01 1.29e+00 4.41e+00 1.37 0.32 245 2 111 155 5.23e-01 -5.68e-01 1.50e-01 7.98e-01 0.135 0.193 246 2 -2214 155 8.33e-01 -4.74e-01 3.80e-01 1.59e+00 1.21 0.387 247 2 313 155 2.63e+00 6.04e-01 -2.99e-01 2.85e+00 0.874 -0.111 248 1 -321 155 4.42e-01 -2.12e-02 -3.47e-01 7.49e-01 0.494 -0.72 249 2 213 155 1.45e+00 2.25e-01 -1.67e-03 1.65e+00 0.744 -0.00113 250 2 313 155 1.00e+00 5.99e-01 -8.10e-01 1.67e+00 0.869 -0.647 251 1 -321 155 3.75e+00 3.72e-01 -1.82e+00 4.22e+00 0.494 -0.467 252 2 223 155 1.57e+00 -6.67e-01 -1.20e+00 2.23e+00 0.784 -0.656 253 2 111 155 5.27e-01 -5.67e-01 -9.87e-02 7.92e-01 0.135 -0.127 254 1 321 155 1.49e+00 -1.88e-01 -1.14e+00 1.95e+00 0.494 -0.702 255 2 -313 155 3.11e+00 -3.57e+00 -2.53e+00 5.44e+00 0.912 -0.512 256 1 -211 155 1.26e+00 -7.85e-01 -9.48e-01 1.77e+00 0.14 -0.601 257 2 223 155 1.17e+00 -1.86e+00 -7.10e-01 2.44e+00 0.784 -0.317 258 2 323 155 3.41e+00 -3.42e+00 -2.01e+00 5.31e+00 0.897 -0.405 259 2 -313 155 -4.35e-02 -2.67e+00 -1.34e+00 3.14e+00 0.98 -0.485 260 2 313 155 3.69e-01 2.39e-01 -1.54e+00 1.85e+00 0.927 -1.96 261 2 -313 155 6.99e-01 -9.00e-01 -9.49e-01 1.73e+00 0.894 -0.758 262 1 -211 155 -7.05e-02 -4.20e-01 -3.01e-01 5.40e-01 0.14 -0.658 263 2 213 155 -5.36e-01 -7.77e-01 -6.01e-01 1.34e+00 0.742 -0.6 264 2 313 155 -3.50e-01 -1.63e-01 -1.73e+00 1.97e+00 0.866 -2.2 265 2 221 155 4.43e-01 7.88e-02 -1.11e-01 7.17e-01 0.547 -0.244 266 2 -313 155 -1.78e-01 3.63e-01 -2.19e+00 2.40e+00 0.886 -2.39 267 2 313 155 -1.04e+00 1.11e+00 -8.57e+00 8.75e+00 0.888 -2.43 268 1 -321 155 3.29e-01 4.15e-01 -3.19e+00 3.27e+00 0.494 -2.49 269 2 213 155 -1.04e+00 5.95e-01 -4.94e+00 5.14e+00 0.712 -2.12 270 2 223 155 2.13e-02 1.51e+00 -7.62e+00 7.81e+00 0.775 -2.32 271 2 -213 155 -8.22e-01 1.14e+00 -1.13e+01 1.14e+01 0.714 -2.78 272 2 213 155 -9.74e-01 7.16e-01 -8.94e+00 9.05e+00 0.671 -2.7 273 2 -213 155 -3.79e+00 3.39e+00 -4.77e+01 4.80e+01 0.756 -2.93 274 2 221 155 -4.16e-01 2.51e+00 -2.01e+01 2.02e+01 0.547 -2.76 275 2 213 155 -1.00e+00 2.60e+00 -2.76e+01 2.77e+01 0.673 -2.99 276 2 -213 155 -1.89e+00 2.05e+00 -2.75e+01 2.76e+01 0.85 -2.98 277 2 323 155 -8.97e-01 1.44e+00 -1.81e+01 1.82e+01 0.808 -3.06 278 2 -311 155 2.07e-02 8.53e-01 -1.58e+01 1.59e+01 0.498 -3.61 279 1 -211 155 5.15e-01 1.37e+00 -7.04e+00 7.19e+00 0.14 -2.27 280 2 113 155 -1.55e-01 1.58e+00 -2.79e+01 2.80e+01 0.818 -3.56 281 1 2212 155 1.47e+00 6.44e-01 -1.85e+01 1.86e+01 0.938 -3.14 282 1 -2112 155 2.46e+00 3.18e-03 -2.40e+01 2.41e+01 0.94 -2.97 283 2 111 155 2.79e-02 -5.55e-02 -2.46e-01 2.88e-01 0.135 -2.09 284 2 311 155 1.61e+00 2.88e-01 -1.14e+01 1.15e+01 0.498 -2.64 285 2 -323 155 1.21e+00 2.81e-01 -1.59e+01 1.59e+01 0.839 -3.24 286 2 111 155 1.47e+00 2.03e-01 -1.02e+01 1.04e+01 0.135 -2.63 287 2 221 155 2.47e+00 -2.19e+00 -2.55e+01 2.57e+01 0.547 -2.74 288 1 211 155 1.09e-01 2.79e-01 -5.51e-01 6.43e-01 0.14 -1.37 289 2 223 155 1.10e+00 -4.13e+00 -3.09e+01 3.12e+01 0.862 -2.68 290 2 -213 155 4.88e-02 -2.37e-01 -4.05e+00 4.11e+00 0.67 -3.51 291 1 2212 155 8.04e-01 -2.27e+00 -3.85e+01 3.86e+01 0.938 -3.47 292 1 -2212 155 3.87e-01 -1.01e+00 -2.28e+01 2.29e+01 0.938 -3.74 293 1 211 155 8.74e-01 -1.25e-01 -8.94e+00 8.98e+00 0.14 -3.01 294 1 -211 155 8.69e-01 -1.21e-02 -6.17e+01 6.18e+01 0.14 -4.96 295 2 213 155 1.71e+00 -5.79e-01 -1.25e+02 1.25e+02 0.695 -4.93 296 2 -213 155 6.96e-01 2.62e-01 -4.66e+01 4.66e+01 0.861 -4.83 297 2 223 155 6.39e-01 -3.61e-01 -4.47e+01 4.48e+01 0.782 -4.8 298 2 221 155 1.57e+00 -1.02e-01 -9.19e+01 9.19e+01 0.547 -4.76 299 2 213 155 1.05e+00 -3.12e+00 -2.03e+02 2.03e+02 0.83 -4.82 300 2 313 155 7.36e-01 8.69e-02 -1.47e+02 1.47e+02 0.883 -5.98 301 2 -313 155 3.73e-01 -8.52e-01 -8.67e+01 8.67e+01 0.894 -5.23 302 2 -213 155 9.42e-02 -7.20e-01 -1.43e+02 1.43e+02 0.78 -5.98 303 1 211 155 -4.51e-01 -1.59e-01 -6.08e+01 6.08e+01 0.14 -5.54 304 2 3212 155 3.05e-01 -3.29e-01 -2.19e+02 2.19e+02 1.19 -6.88 305 2 -3322 155 -9.41e-01 -5.89e-01 -5.42e+02 5.42e+02 1.31 -6.88 306 2 -313 155 2.06e-01 -7.58e-01 -2.41e+02 2.41e+02 0.97 -6.42 307 1 2112 155 4.28e-01 5.71e-02 -3.18e+02 3.18e+02 0.94 -7.3 308 2 221 155 -1.32e+00 -4.66e-03 -3.54e+02 3.54e+02 0.547 -6.29 309 1 -2112 155 -2.40e+00 9.83e-01 -8.78e+01 8.78e+01 0.94 -4.22 310 1 -211 155 -3.97e-01 -6.04e-01 -4.68e+02 4.68e+02 0.14 -7.17 311 1 211 155 -4.27e-01 -2.31e-01 -5.63e+01 5.63e+01 0.14 -5.45 312 2 313 155 -1.79e+00 6.30e-01 -6.74e+01 6.74e+01 0.911 -4.26 313 1 -321 155 -2.30e-01 5.10e-01 -8.37e+01 8.37e+01 0.494 -5.7 314 2 213 155 -7.88e-01 -5.66e-01 -1.38e+02 1.38e+02 0.81 -5.65 315 2 -213 155 3.21e-01 -4.82e-01 -1.68e+02 1.68e+02 0.776 -6.36 316 2 331 155 -2.16e-01 -1.03e-01 -2.47e+02 2.47e+02 0.959 -7.63 317 2 2224 155 -2.82e-01 4.81e-02 -5.24e+02 5.24e+02 1.13 -8.21 318 2 223 155 1.80e-01 -8.68e-02 -1.24e+03 1.24e+03 0.779 -9.43 319 2 92 117 -3.33e+00 -1.99e+00 1.33e+02 1.34e+02 15.6 4.23 320 2 -213 319 -2.85e-01 5.96e-02 5.24e+00 5.30e+00 0.769 3.58 321 2 111 319 6.52e-02 -7.20e-01 4.23e+00 4.30e+00 0.135 2.47 322 2 111 319 1.25e-01 1.00e-01 8.00e-01 8.27e-01 0.135 2.31 323 2 213 319 -5.80e-01 -6.16e-01 1.37e+01 1.38e+01 0.771 3.48 324 2 111 319 -9.24e-02 9.63e-02 2.05e-01 2.80e-01 0.135 1.22 325 2 -213 319 -1.11e+00 -1.62e-01 6.04e+00 6.20e+00 0.853 2.39 326 1 211 319 -2.05e-01 -4.53e-03 1.01e+00 1.04e+00 0.14 2.3 327 2 111 319 -3.83e-01 -1.91e+00 1.27e+01 1.28e+01 0.135 2.57 328 1 -211 319 -8.17e-01 2.18e-02 1.19e+00 1.45e+00 0.14 1.17 329 2 223 319 -2.71e-01 2.20e-01 2.32e+01 2.32e+01 0.804 4.89 330 1 211 319 -9.91e-03 7.57e-01 1.52e+01 1.53e+01 0.14 3.7 331 2 113 319 2.20e-01 -1.25e-01 1.23e+01 1.24e+01 0.502 4.58 332 2 -213 319 -1.36e-01 5.25e-01 1.47e+01 1.47e+01 0.876 3.99 333 1 211 319 1.50e-01 -2.39e-01 2.27e+01 2.27e+01 0.14 5.08 334 2 92 121 -1.03e+00 -2.46e-01 7.48e+02 7.48e+02 8.35 7.25 335 2 -313 334 4.85e-01 2.16e-01 8.85e+01 8.85e+01 0.821 5.81 336 2 313 334 -6.48e-01 1.55e-01 6.51e+01 6.51e+01 0.958 5.28 337 2 -313 334 2.07e-01 -9.43e-02 2.17e+02 2.17e+02 1.02 7.55 338 2 -213 334 -5.00e-01 7.03e-01 9.17e+01 9.17e+01 0.642 5.36 339 2 223 334 1.65e-01 -6.49e-01 5.13e+01 5.13e+01 0.761 5.03 340 2 223 334 -5.01e-01 -2.66e-02 9.78e+01 9.78e+01 0.811 5.97 341 2 223 334 -2.19e-01 -3.81e-01 1.04e+02 1.04e+02 0.782 6.16 342 1 321 334 -2.42e-02 -1.70e-01 3.23e+01 3.23e+01 0.494 5.93 343 1 2212 127 4.27e-01 -7.98e-01 1.03e+02 1.03e+02 0.938 5.43 344 2 111 127 5.11e-02 1.32e-01 1.31e+01 1.31e+01 0.135 5.22 345 1 211 128 2.18e-01 1.47e-01 2.70e+02 2.70e+02 0.14 7.63 346 1 -211 128 -1.52e-01 -1.92e-01 4.82e+02 4.82e+02 0.14 8.28 347 2 111 128 7.12e-02 6.96e-02 3.55e+02 3.55e+02 0.135 8.87 348 1 -211 131 6.94e+00 -9.96e+00 -5.45e+01 5.58e+01 0.14 -2.21 349 1 211 131 1.18e+00 -1.98e+00 -1.19e+01 1.22e+01 0.14 -2.35 350 1 211 132 3.02e+00 -4.59e+00 -2.52e+01 2.58e+01 0.14 -2.23 351 2 111 132 1.45e+00 -1.66e+00 -8.87e+00 9.14e+00 0.135 -2.1 352 1 -211 133 9.15e-01 -9.83e-01 -4.95e+00 5.13e+00 0.14 -2.02 353 2 111 133 1.71e+00 -6.08e-01 -1.08e+01 1.10e+01 0.135 -2.49 354 2 111 135 -5.21e-02 -2.80e-02 -1.46e+00 1.47e+00 0.135 -3.9 355 2 111 135 5.14e-02 -1.18e-02 -4.43e-01 4.66e-01 0.135 -2.83 356 2 111 135 -1.05e-01 2.08e-02 -3.88e-01 4.24e-01 0.135 -2 357 1 211 137 3.47e-01 1.63e-01 -6.63e-01 7.78e-01 0.14 -1.32 358 2 111 137 9.28e-03 -3.89e-01 -1.48e+00 1.54e+00 0.135 -2.05 359 1 22 139 3.13e-01 4.87e-01 -1.77e+00 1.86e+00 0 -1.84 360 1 22 139 1.06e+00 1.57e+00 -5.06e+00 5.40e+00 0 -1.71 361 1 22 140 1.18e-02 1.02e+00 -6.14e+00 6.23e+00 0 -2.5 362 1 22 140 -3.92e-02 1.19e-01 -6.24e-01 6.36e-01 0 -2.31 363 1 2212 141 1.49e+00 4.59e+00 -1.37e+01 1.46e+01 0.938 -1.77 364 2 111 141 5.88e-01 2.73e+00 -8.23e+00 8.69e+00 0.135 -1.8 365 2 -311 142 1.00e+00 3.54e+00 -1.08e+01 1.15e+01 0.498 -1.8 366 1 -211 142 2.90e-01 6.57e-01 -1.52e+00 1.69e+00 0.14 -1.49 367 2 -4132 143 6.19e+00 2.64e+01 -8.41e+01 8.84e+01 2.47 -1.85 368 1 22 143 1.43e-01 3.65e-01 -9.59e-01 1.04e+00 0 -1.63 369 1 22 146 -9.23e-01 6.29e-01 1.36e+00 1.76e+00 0 1.03 370 2 221 146 -1.35e+00 1.19e+00 1.04e+00 2.15e+00 0.547 0.551 371 1 -211 147 -1.66e-01 2.78e-01 -3.20e-02 3.54e-01 0.14 -0.0988 372 1 211 147 -2.23e-01 1.75e-01 3.83e-01 4.96e-01 0.14 1.11 373 2 111 147 -6.70e-02 6.43e-01 1.11e+00 1.29e+00 0.135 1.31 374 1 -321 148 2.31e-01 2.39e-01 4.01e+00 4.05e+00 0.494 3.19 375 1 211 148 6.33e-02 -3.11e-01 1.91e+00 1.95e+00 0.14 2.5 376 1 321 149 2.07e-01 -1.50e-01 3.57e+00 3.62e+00 0.494 3.33 377 1 -211 149 6.81e-02 -7.21e-02 1.14e-01 2.06e-01 0.14 0.985 378 2 310 150 -8.01e-01 1.26e-01 6.93e+00 7.00e+00 0.498 2.84 379 1 211 151 1.43e-02 2.18e-01 2.46e+00 2.47e+00 0.14 3.12 380 1 -211 151 7.53e-01 -3.61e-01 1.50e+01 1.51e+01 0.14 3.58 381 1 211 152 -3.26e-02 -4.50e-01 1.21e+01 1.21e+01 0.14 3.99 382 1 -211 152 3.36e-01 -2.25e-01 2.28e+01 2.28e+01 0.14 4.73 383 2 111 152 2.83e-03 -1.42e-01 1.12e+01 1.12e+01 0.135 5.06 384 1 211 153 4.12e-01 -5.86e-01 8.65e+00 8.68e+00 0.14 3.19 385 1 -211 153 -1.52e-01 -1.76e-01 7.77e+00 7.77e+00 0.14 4.2 386 1 -211 154 8.90e-01 -2.05e-01 1.08e+01 1.09e+01 0.14 3.17 387 2 111 154 2.10e-01 -1.07e+00 1.22e+01 1.23e+01 0.135 3.11 388 1 211 156 2.05e-01 2.99e-02 6.96e-01 7.40e-01 0.14 1.93 389 1 -211 156 -1.79e-02 -2.63e-02 4.30e-01 4.54e-01 0.14 3.3 390 2 111 156 -5.18e-03 -6.38e-02 1.65e-01 2.22e-01 0.135 1.67 391 1 211 157 -9.70e-02 -3.54e-01 1.00e+00 1.08e+00 0.14 1.73 392 2 111 157 4.34e-02 2.54e-01 2.32e+00 2.33e+00 0.135 2.89 393 1 2112 158 3.72e-01 -1.76e-01 3.99e+00 4.12e+00 0.94 2.97 394 2 111 158 6.95e-02 1.13e-01 1.76e+00 1.77e+00 0.135 3.28 395 1 -211 159 4.57e-02 2.53e-02 4.35e+00 4.36e+00 0.14 5.12 396 2 111 159 -1.24e-01 5.63e-01 2.15e+00 2.23e+00 0.135 2.03 397 1 -2112 160 -7.76e-01 2.18e+00 4.95e+01 4.96e+01 0.94 3.76 398 1 211 160 2.95e-02 7.70e-02 1.49e+00 1.50e+00 0.14 3.59 399 1 321 161 3.34e-01 3.68e-01 1.42e+01 1.42e+01 0.494 4.04 400 1 -211 161 -1.13e-01 2.76e-01 3.25e+00 3.26e+00 0.14 3.08 401 1 2212 163 -1.47e+00 1.37e+00 1.02e+02 1.02e+02 0.938 4.62 402 1 211 163 -1.65e-01 1.28e-01 7.10e+00 7.10e+00 0.14 4.22 403 1 -2212 164 -9.14e-01 7.08e-01 1.03e+02 1.03e+02 0.938 5.18 404 1 -211 164 -4.99e-01 4.38e-01 7.87e+01 7.87e+01 0.14 5.47 405 1 130 166 -1.42e+00 -2.35e-01 1.45e+02 1.45e+02 0.498 5.31 406 1 2212 168 4.98e-02 -1.37e-01 1.93e+02 1.93e+02 0.938 7.88 407 1 211 168 -1.74e-01 1.45e-01 7.51e+01 7.51e+01 0.14 6.5 408 1 22 169 -1.06e-02 -2.68e-02 6.52e+00 6.52e+00 0 6.11 409 1 22 169 -2.68e-01 6.20e-02 1.32e+02 1.32e+02 0 6.86 410 1 -2212 170 -2.05e-01 -7.58e-01 3.00e+02 3.00e+02 0.938 6.64 411 1 -211 170 4.33e-03 -7.31e-02 7.12e+01 7.12e+01 0.14 7.57 412 1 -211 172 -9.06e-02 -6.66e-01 2.24e+02 2.24e+02 0.14 6.5 413 2 111 172 -1.23e-01 1.93e-01 1.83e+02 1.83e+02 0.135 7.37 414 1 211 173 -2.82e-01 -8.25e-02 7.79e+01 7.79e+01 0.14 6.27 415 2 111 173 1.18e-01 -2.81e-01 2.37e+02 2.37e+02 0.135 7.35 416 2 310 176 1.18e+00 2.27e-01 1.29e+02 1.29e+02 0.498 5.37 417 1 211 177 -2.11e-01 -4.02e-01 2.59e+02 2.59e+02 0.14 7.04 418 1 -211 177 -3.15e-01 -3.16e-02 4.30e+01 4.30e+01 0.14 5.6 419 2 310 178 1.04e+00 -8.14e-01 3.97e+01 3.97e+01 0.498 4.09 420 1 211 180 1.36e-01 -2.53e-01 3.42e+00 3.44e+00 0.14 3.17 421 2 111 180 -9.69e-02 -2.82e-01 1.45e+01 1.45e+01 0.135 4.58 422 1 -211 181 2.52e-01 -5.89e-01 2.63e+01 2.63e+01 0.14 4.41 423 1 211 181 1.29e-01 -1.32e-01 1.11e+01 1.11e+01 0.14 4.79 424 2 221 181 8.79e-01 -2.05e+00 8.56e+01 8.57e+01 0.547 4.34 425 1 -211 182 -1.53e+00 -2.04e+00 7.19e+01 7.19e+01 0.14 4.03 426 2 111 182 -2.27e-02 -2.22e-01 8.89e+00 8.89e+00 0.135 4.38 427 1 211 183 -1.46e-01 -7.39e-02 1.13e+01 1.13e+01 0.14 4.93 428 2 111 183 -1.49e+00 -1.81e+00 7.32e+01 7.33e+01 0.135 4.13 429 1 130 186 -2.45e-01 -3.81e-01 1.31e+01 1.31e+01 0.498 4.06 430 2 310 186 -4.50e-01 -2.80e-01 1.30e+01 1.31e+01 0.498 3.9 431 1 -321 187 -1.47e+00 -1.09e+00 2.11e+01 2.12e+01 0.494 3.14 432 1 211 187 -6.91e-01 -1.05e+00 1.46e+01 1.47e+01 0.14 3.15 433 1 211 188 -4.30e-01 -7.64e-01 9.56e+00 9.60e+00 0.14 3.08 434 1 -211 188 -8.81e-01 -1.06e+00 1.66e+01 1.67e+01 0.14 3.19 435 2 111 188 -3.85e-01 -1.45e-01 5.89e+00 5.90e+00 0.135 3.36 436 1 211 189 -8.16e-01 -7.89e-02 6.42e+00 6.48e+00 0.14 2.76 437 1 -211 189 1.65e-02 -9.66e-02 4.10e+00 4.10e+00 0.14 4.43 438 1 -211 190 -2.61e+00 -6.40e-02 2.12e+01 2.14e+01 0.14 2.79 439 1 211 190 -3.48e-01 1.35e-01 4.78e+00 4.80e+00 0.14 3.25 440 1 211 192 -1.38e+00 -3.17e-01 9.42e+00 9.52e+00 0.14 2.59 441 2 111 192 -7.52e-03 -1.43e-02 2.63e+00 2.63e+00 0.135 5.78 442 1 22 193 -4.82e-01 1.48e-01 4.95e+00 4.97e+00 0 2.98 443 1 22 193 -1.80e+00 2.89e-01 1.83e+01 1.84e+01 0 3 444 2 311 194 -9.80e-01 5.04e-01 9.54e+00 9.62e+00 0.498 2.86 445 2 111 194 -1.46e+00 2.48e-01 1.06e+01 1.07e+01 0.135 2.66 446 1 130 195 -2.07e+00 3.30e-01 1.45e+01 1.46e+01 0.498 2.63 447 2 310 196 -6.44e-01 8.76e-01 7.02e+00 7.12e+00 0.498 2.56 448 1 2212 197 -9.35e-02 7.56e-01 1.30e+01 1.31e+01 0.938 3.53 449 1 -211 197 -9.88e-02 7.33e-02 1.44e+00 1.45e+00 0.14 3.16 450 1 -2112 199 2.91e-01 1.62e+00 1.13e+01 1.15e+01 0.94 2.63 451 1 211 199 -7.15e-03 2.84e-01 3.51e+00 3.52e+00 0.14 3.21 452 1 211 200 -8.92e-02 -5.94e-02 1.68e+00 1.69e+00 0.14 3.45 453 1 -211 200 1.16e-01 8.72e-02 1.80e+00 1.81e+00 0.14 3.21 454 2 221 200 -1.95e-01 2.03e-01 4.51e+00 4.55e+00 0.547 3.47 455 1 22 202 1.00e+00 -1.92e-01 5.03e+00 5.13e+00 0 2.3 456 2 111 202 3.91e-01 3.14e-01 4.71e+00 4.74e+00 0.135 2.93 457 1 22 203 6.38e-01 5.12e-01 1.22e+01 1.22e+01 0 3.4 458 1 22 203 7.60e-01 4.32e-01 1.30e+01 1.31e+01 0 3.4 459 1 -211 204 3.92e-01 6.70e-02 3.50e+00 3.52e+00 0.14 2.87 460 1 211 204 1.29e+00 -1.12e-02 7.48e+00 7.60e+00 0.14 2.46 461 2 111 204 3.04e-01 2.17e-01 1.92e+00 1.96e+00 0.135 2.34 462 1 22 205 2.00e-01 8.28e-02 2.28e+00 2.29e+00 0 3.05 463 1 22 205 3.07e-01 2.70e-02 4.95e+00 4.96e+00 0 3.47 464 1 2112 206 1.95e+00 -2.57e-03 2.67e+01 2.68e+01 0.94 3.31 465 1 211 206 6.74e-01 -2.08e-01 6.29e+00 6.33e+00 0.14 2.88 466 1 -2112 207 1.35e+00 7.74e-01 7.65e+00 7.86e+00 0.94 2.3 467 2 111 207 9.54e-01 4.56e-01 4.49e+00 4.61e+00 0.135 2.15 468 1 -211 210 3.15e-01 4.66e-02 1.45e+00 1.49e+00 0.14 2.22 469 1 211 210 9.52e-02 -1.52e-01 1.15e+00 1.17e+00 0.14 2.55 470 2 221 210 7.45e-01 -1.52e-01 5.23e+00 5.31e+00 0.547 2.63 471 1 211 212 8.19e-01 2.33e+00 5.93e+00 6.43e+00 0.14 1.61 472 2 111 212 -4.07e-02 1.06e+00 2.28e+00 2.52e+00 0.135 1.51 473 1 22 213 9.78e-01 2.93e+00 1.15e+01 1.19e+01 0 2.02 474 2 111 213 1.66e-01 1.43e+00 3.97e+00 4.23e+00 0.135 1.74 475 1 -211 214 2.81e-01 1.28e-01 1.47e+00 1.51e+00 0.14 2.26 476 2 111 214 4.77e-01 1.46e+00 2.37e+00 2.83e+00 0.135 1.22 477 1 22 215 5.77e-01 8.51e-01 9.59e-01 1.41e+00 0 0.833 478 1 211 215 2.04e-01 2.07e-01 3.50e-01 4.76e-01 0.14 1.02 479 1 -211 215 9.03e-01 8.98e-01 1.48e+00 1.96e+00 0.14 0.991 480 1 22 216 3.90e-02 1.53e-01 1.62e-01 2.26e-01 0 0.901 481 1 22 216 8.00e-01 2.36e+00 3.34e+00 4.17e+00 0 1.1 482 1 -211 218 -1.14e-01 1.39e+00 2.18e+00 2.59e+00 0.14 1.23 483 2 111 218 1.02e-01 6.39e-01 3.21e-01 7.34e-01 0.135 0.478 484 1 211 219 3.98e-01 1.59e-01 4.54e-01 6.40e-01 0.14 0.923 485 2 111 219 4.00e-01 1.32e+00 1.27e+00 1.88e+00 0.135 0.825 486 1 22 221 -4.62e-01 1.18e-01 6.00e-01 7.66e-01 0 1.05 487 1 22 221 -2.17e-01 -2.19e-02 3.63e-01 4.23e-01 0 1.28 488 2 311 222 -1.35e-01 1.68e+00 1.12e+00 2.08e+00 0.498 0.622 489 1 211 222 -3.82e-01 6.48e-01 2.25e-01 7.98e-01 0.14 0.295 490 1 211 224 -3.84e-01 2.20e-01 1.68e-01 4.93e-01 0.14 0.37 491 2 111 224 -3.53e-01 1.50e-03 -1.24e-01 3.97e-01 0.135 -0.344 492 1 -211 225 -1.09e+00 5.29e-01 9.67e-01 1.56e+00 0.14 0.731 493 2 111 225 -3.95e-02 3.04e-01 5.30e-02 3.39e-01 0.135 0.172 494 1 211 226 -1.24e-02 1.42e-01 -1.97e-01 2.81e-01 0.14 -1.13 495 1 -211 226 -1.69e+00 1.33e+00 -7.86e-03 2.15e+00 0.14 -0.00366 496 1 211 227 -1.09e-01 2.26e-01 1.53e-01 3.25e-01 0.14 0.577 497 2 111 227 -1.50e+00 1.58e-01 1.50e+00 2.13e+00 0.135 0.874 498 1 22 229 -1.55e+00 -1.65e-01 2.08e+00 2.60e+00 0 1.1 499 1 22 229 -6.35e-03 -2.64e-03 -7.01e-04 6.91e-03 0 -0.102 500 2 111 232 -6.24e-01 -9.01e-02 1.52e-01 6.62e-01 0.135 0.239 501 2 111 232 -3.58e-01 3.47e-02 9.90e-02 3.97e-01 0.135 0.272 502 2 111 232 -1.18e-01 6.75e-02 -1.52e-02 1.92e-01 0.135 -0.111 503 1 321 233 -1.67e+00 -1.51e+00 7.66e-01 2.43e+00 0.494 0.334 504 1 -211 233 -1.96e-01 -5.76e-01 3.40e-01 7.11e-01 0.14 0.533 505 1 130 234 -1.78e+00 -1.16e+00 -7.49e-01 2.31e+00 0.498 -0.346 506 1 22 236 3.14e-02 -1.45e-01 6.52e-02 1.62e-01 0 0.427 507 1 22 236 1.41e-01 -2.89e-01 3.73e-01 4.93e-01 0 0.99 508 1 321 237 -1.03e+00 -3.68e+00 1.75e+00 4.24e+00 0.494 0.443 509 2 111 237 -1.46e-01 -1.00e-01 1.54e-01 2.71e-01 0.135 0.785 510 1 -321 238 6.25e-02 -7.13e-01 1.05e+00 1.36e+00 0.494 1.17 511 1 211 238 -2.27e-01 -7.44e-01 4.38e-01 9.04e-01 0.14 0.537 512 1 -211 239 2.04e-01 -7.72e-02 3.22e-01 4.13e-01 0.14 1.18 513 2 111 239 9.50e-02 -3.70e-01 1.33e-01 4.26e-01 0.135 0.341 514 1 -211 240 2.95e-01 -1.50e+00 1.17e+00 1.93e+00 0.14 0.703 515 1 211 240 -9.46e-02 -9.77e-02 2.45e-01 3.13e-01 0.14 1.35 516 1 211 241 -4.88e-01 -1.35e+00 6.24e-01 1.57e+00 0.14 0.423 517 2 111 241 2.58e-01 -7.66e-01 3.69e-01 8.98e-01 0.135 0.442 518 2 311 242 3.57e-01 -1.77e+00 7.91e-01 2.04e+00 0.498 0.424 519 2 111 242 4.31e-01 -9.43e-01 7.64e-01 1.30e+00 0.135 0.683 520 2 -311 243 2.46e-01 -1.53e-01 9.54e-01 1.11e+00 0.498 1.91 521 1 -211 243 3.55e-01 -7.01e-01 1.58e+00 1.77e+00 0.14 1.45 522 1 2212 244 2.45e+00 -5.13e-01 9.89e-01 2.85e+00 0.938 0.385 523 1 211 244 1.51e+00 1.23e-01 3.06e-01 1.55e+00 0.14 0.2 524 1 22 245 3.19e-01 -3.34e-01 2.23e-02 4.62e-01 0 0.0483 525 1 22 245 2.05e-01 -2.34e-01 1.28e-01 3.36e-01 0 0.4 526 1 -2212 246 7.60e-01 -1.90e-01 2.71e-01 1.25e+00 0.938 0.34 527 2 111 246 7.32e-02 -2.84e-01 1.09e-01 3.41e-01 0.135 0.364 528 1 321 247 1.83e+00 6.38e-01 -3.79e-01 2.03e+00 0.494 -0.194 529 1 -211 247 8.00e-01 -3.45e-02 7.93e-02 8.17e-01 0.14 0.0989 530 1 211 249 1.14e+00 -1.14e-01 -9.59e-02 1.16e+00 0.14 -0.0836 531 2 111 249 3.13e-01 3.39e-01 9.42e-02 4.90e-01 0.135 0.203 532 2 311 250 6.46e-01 4.64e-01 -2.42e-01 9.68e-01 0.498 -0.3 533 2 111 250 3.58e-01 1.35e-01 -5.68e-01 6.98e-01 0.135 -1.19 534 1 211 252 3.88e-01 -5.85e-02 -4.86e-01 6.40e-01 0.14 -1.04 535 1 -211 252 3.41e-01 6.48e-03 -1.91e-01 4.15e-01 0.14 -0.532 536 2 111 252 8.44e-01 -6.15e-01 -5.28e-01 1.18e+00 0.135 -0.486 537 1 22 253 -8.22e-03 -5.98e-03 8.52e-04 1.02e-02 0 0.0837 538 1 22 253 5.36e-01 -5.61e-01 -9.95e-02 7.82e-01 0 -0.128 539 1 -321 255 2.13e+00 -1.99e+00 -1.53e+00 3.33e+00 0.494 -0.502 540 1 211 255 9.74e-01 -1.58e+00 -1.00e+00 2.11e+00 0.14 -0.518 541 1 -211 257 4.91e-01 -8.29e-01 -4.46e-01 1.07e+00 0.14 -0.448 542 1 211 257 5.33e-01 -4.68e-01 -2.65e-01 7.70e-01 0.14 -0.365 543 2 111 257 1.47e-01 -5.67e-01 1.68e-03 6.01e-01 0.135 0.00286 544 2 311 258 2.03e+00 -1.65e+00 -1.12e+00 2.89e+00 0.498 -0.417 545 1 211 258 1.38e+00 -1.77e+00 -8.87e-01 2.42e+00 0.14 -0.386 546 1 -321 259 -3.12e-01 -1.10e+00 -6.21e-01 1.39e+00 0.494 -0.518 547 1 211 259 2.68e-01 -1.56e+00 -7.23e-01 1.75e+00 0.14 -0.441 548 1 321 260 1.39e-01 -3.43e-02 -1.30e+00 1.40e+00 0.494 -2.9 549 1 -211 260 2.30e-01 2.73e-01 -2.39e-01 4.52e-01 0.14 -0.627 550 2 -311 261 3.09e-01 -7.01e-01 -8.79e-01 1.27e+00 0.498 -0.982 551 2 111 261 3.90e-01 -1.99e-01 -6.92e-02 4.63e-01 0.135 -0.157 552 1 211 263 -1.55e-01 -7.30e-01 -2.32e-01 7.94e-01 0.14 -0.306 553 2 111 263 -3.81e-01 -4.76e-02 -3.69e-01 5.49e-01 0.135 -0.854 554 1 321 264 -1.53e-01 -6.37e-02 -1.60e+00 1.68e+00 0.494 -2.96 555 1 -211 264 -1.97e-01 -9.93e-02 -1.33e-01 2.93e-01 0.14 -0.569 556 1 211 265 7.37e-02 2.34e-02 -9.35e-03 1.60e-01 0.14 -0.121 557 1 -211 265 3.21e-01 4.56e-02 -1.77e-01 3.95e-01 0.14 -0.523 558 2 111 265 4.84e-02 9.76e-03 7.59e-02 1.63e-01 0.135 1.21 559 1 -321 266 -3.97e-01 2.74e-01 -1.71e+00 1.85e+00 0.494 -1.98 560 1 211 266 2.19e-01 8.92e-02 -4.81e-01 5.54e-01 0.14 -1.46 561 2 311 267 -2.35e-01 4.78e-01 -3.56e+00 3.63e+00 0.498 -2.6 562 2 111 267 -8.05e-01 6.34e-01 -5.01e+00 5.12e+00 0.135 -2.29 563 1 211 269 -2.56e-01 2.71e-01 -6.86e-01 7.94e-01 0.14 -1.37 564 2 111 269 -7.87e-01 3.24e-01 -4.26e+00 4.34e+00 0.135 -2.31 565 1 -211 270 1.11e-01 3.68e-01 -1.17e+00 1.24e+00 0.14 -1.83 566 1 211 270 1.96e-02 8.64e-01 -3.93e+00 4.03e+00 0.14 -2.22 567 2 111 270 -1.09e-01 2.79e-01 -2.52e+00 2.54e+00 0.135 -2.83 568 1 -211 271 -3.45e-01 2.88e-01 -1.88e+00 1.94e+00 0.14 -2.14 569 2 111 271 -4.77e-01 8.48e-01 -9.40e+00 9.46e+00 0.135 -2.96 570 1 211 272 -1.01e+00 5.77e-01 -7.26e+00 7.35e+00 0.14 -2.53 571 2 111 272 4.11e-02 1.38e-01 -1.69e+00 1.70e+00 0.135 -3.15 572 1 -211 273 -2.47e-01 3.75e-01 -3.39e+00 3.42e+00 0.14 -2.72 573 2 111 273 -3.55e+00 3.02e+00 -4.43e+01 4.45e+01 0.135 -2.95 574 2 111 274 -3.96e-02 4.61e-01 -3.91e+00 3.94e+00 0.135 -2.83 575 2 111 274 -1.40e-02 4.66e-01 -3.27e+00 3.30e+00 0.135 -2.65 576 2 111 274 -3.63e-01 1.58e+00 -1.29e+01 1.30e+01 0.135 -2.77 577 1 211 275 3.81e-02 3.35e-01 -2.99e+00 3.02e+00 0.14 -2.88 578 2 111 275 -1.04e+00 2.26e+00 -2.46e+01 2.47e+01 0.135 -2.98 579 1 -211 276 -4.29e-01 2.54e-01 -7.98e+00 8.00e+00 0.14 -3.47 580 2 111 276 -1.46e+00 1.79e+00 -1.95e+01 1.96e+01 0.135 -2.83 581 2 311 277 -6.53e-01 1.19e+00 -1.59e+01 1.60e+01 0.498 -3.16 582 1 211 277 -2.44e-01 2.50e-01 -2.23e+00 2.26e+00 0.14 -2.55 583 2 310 278 2.07e-02 8.53e-01 -1.58e+01 1.59e+01 0.498 -3.61 584 1 -211 280 -3.00e-01 2.09e-01 -5.06e+00 5.07e+00 0.14 -3.32 585 1 211 280 1.44e-01 1.37e+00 -2.29e+01 2.29e+01 0.14 -3.5 586 1 22 283 -3.73e-02 -6.46e-02 -8.32e-02 1.12e-01 0 -0.961 587 1 22 283 6.53e-02 9.12e-03 -1.63e-01 1.76e-01 0 -1.64 588 1 130 284 1.61e+00 2.88e-01 -1.14e+01 1.15e+01 0.498 -2.64 589 1 -321 285 1.18e+00 2.54e-01 -1.25e+01 1.25e+01 0.494 -3.03 590 2 111 285 3.46e-02 2.69e-02 -3.40e+00 3.40e+00 0.135 -5.04 591 1 22 286 5.00e-01 1.25e-01 -3.78e+00 3.81e+00 0 -2.69 592 1 22 286 9.70e-01 7.78e-02 -6.47e+00 6.54e+00 0 -2.59 593 1 211 287 1.48e+00 -1.23e+00 -1.50e+01 1.52e+01 0.14 -2.76 594 1 -211 287 6.34e-01 -6.12e-01 -6.05e+00 6.11e+00 0.14 -2.62 595 2 111 287 3.64e-01 -3.48e-01 -4.39e+00 4.42e+00 0.135 -2.86 596 1 211 289 2.74e-02 -5.87e-01 -5.00e+00 5.03e+00 0.14 -2.84 597 1 -211 289 6.33e-01 -1.26e+00 -1.02e+01 1.03e+01 0.14 -2.68 598 2 111 289 4.43e-01 -2.28e+00 -1.57e+01 1.58e+01 0.135 -2.61 599 1 -211 290 -2.19e-01 -9.76e-02 -2.96e+00 2.97e+00 0.14 -3.21 600 2 111 290 2.68e-01 -1.39e-01 -1.09e+00 1.13e+00 0.135 -1.99 601 1 211 295 8.63e-01 -2.64e-01 -8.30e+01 8.30e+01 0.14 -5.21 602 2 111 295 8.45e-01 -3.16e-01 -4.18e+01 4.18e+01 0.135 -4.53 603 1 -211 296 8.75e-02 3.79e-01 -1.02e+01 1.02e+01 0.14 -3.96 604 2 111 296 6.09e-01 -1.16e-01 -3.64e+01 3.64e+01 0.135 -4.77 605 1 211 297 2.06e-01 1.26e-01 -1.35e+01 1.35e+01 0.14 -4.72 606 1 -211 297 -2.88e-03 -1.22e-01 -4.91e+00 4.91e+00 0.14 -4.39 607 2 111 297 4.35e-01 -3.65e-01 -2.63e+01 2.63e+01 0.135 -4.53 608 1 22 298 -8.27e-03 -5.93e-02 -8.13e+00 8.13e+00 0 -5.6 609 1 22 298 1.58e+00 -4.26e-02 -8.37e+01 8.38e+01 0 -4.66 610 1 211 299 -8.64e-02 -4.75e-01 -2.50e+01 2.50e+01 0.14 -4.64 611 2 111 299 1.14e+00 -2.65e+00 -1.79e+02 1.79e+02 0.135 -4.82 612 1 321 300 7.78e-01 2.26e-01 -1.25e+02 1.25e+02 0.494 -5.73 613 1 -211 300 -4.19e-02 -1.39e-01 -2.20e+01 2.20e+01 0.14 -5.71 614 1 -321 301 2.49e-01 -4.00e-01 -3.13e+01 3.13e+01 0.494 -4.89 615 1 211 301 1.24e-01 -4.52e-01 -5.54e+01 5.54e+01 0.14 -5.47 616 1 -211 302 -1.72e-01 5.14e-02 -4.06e+01 4.06e+01 0.14 -6.12 617 2 111 302 2.66e-01 -7.71e-01 -1.03e+02 1.03e+02 0.135 -5.53 618 2 3122 304 2.57e-01 -3.10e-01 -2.16e+02 2.16e+02 1.12 -6.98 619 1 22 304 4.85e-02 -1.88e-02 -3.00e+00 3.00e+00 0 -4.75 620 2 -3122 305 -6.92e-01 -4.17e-01 -4.09e+02 4.09e+02 1.12 -6.92 621 2 111 305 -2.49e-01 -1.72e-01 -1.33e+02 1.33e+02 0.135 -6.78 622 1 -321 306 -2.34e-02 -6.52e-01 -1.16e+02 1.16e+02 0.494 -5.87 623 1 211 306 2.30e-01 -1.06e-01 -1.26e+02 1.26e+02 0.14 -6.9 624 2 111 308 -4.39e-01 9.86e-02 -1.08e+02 1.08e+02 0.135 -6.17 625 2 111 308 -2.22e-01 2.94e-02 -5.30e+01 5.30e+01 0.135 -6.16 626 2 111 308 -6.58e-01 -1.33e-01 -1.93e+02 1.93e+02 0.135 -6.35 627 1 321 312 -1.29e+00 1.68e-01 -4.90e+01 4.90e+01 0.494 -4.32 628 1 -211 312 -4.97e-01 4.61e-01 -1.84e+01 1.84e+01 0.14 -3.99 629 1 211 314 -4.84e-01 -8.04e-02 -9.94e+01 9.94e+01 0.14 -6 630 2 111 314 -3.04e-01 -4.86e-01 -3.87e+01 3.87e+01 0.135 -4.91 631 1 -211 315 8.58e-02 8.30e-02 -1.10e+01 1.10e+01 0.14 -5.21 632 2 111 315 2.35e-01 -5.65e-01 -1.57e+02 1.57e+02 0.135 -6.24 633 1 22 316 -1.18e-01 -1.62e-01 -3.67e+01 3.67e+01 0 -5.9 634 2 113 316 -9.80e-02 5.93e-02 -2.10e+02 2.10e+02 0.767 -8.21 635 1 2212 317 -3.53e-01 7.80e-04 -4.50e+02 4.50e+02 0.938 -7.84 636 1 211 317 7.11e-02 4.74e-02 -7.41e+01 7.41e+01 0.14 -7.46 637 1 211 318 -2.45e-02 -2.06e-02 -5.36e+02 5.36e+02 0.14 -10.4 638 1 -211 318 6.17e-02 1.53e-01 -1.43e+02 1.43e+02 0.14 -7.46 639 2 111 318 1.43e-01 -2.19e-01 -5.66e+02 5.66e+02 0.135 -8.37 640 1 -211 320 9.79e-02 -1.64e-01 3.34e+00 3.35e+00 0.14 3.56 641 2 111 320 -3.83e-01 2.23e-01 1.89e+00 1.95e+00 0.135 2.16 642 1 22 321 8.05e-02 -3.96e-01 2.64e+00 2.67e+00 0 2.58 643 1 22 321 -1.53e-02 -3.24e-01 1.60e+00 1.63e+00 0 2.3 644 1 22 322 -2.08e-03 8.04e-02 2.81e-01 2.92e-01 0 1.96 645 1 22 322 1.27e-01 1.99e-02 5.19e-01 5.34e-01 0 2.1 646 1 211 323 -5.93e-01 -5.92e-01 7.81e+00 7.85e+00 0.14 2.93 647 2 111 323 1.30e-02 -2.35e-02 5.91e+00 5.92e+00 0.135 6.09 648 1 22 324 -1.82e-02 7.33e-02 1.84e-01 1.99e-01 0 1.62 649 1 22 324 -7.42e-02 2.30e-02 2.10e-02 8.05e-02 0 0.268 650 1 -211 325 -8.05e-01 2.72e-01 3.77e+00 3.87e+00 0.14 2.19 651 2 111 325 -3.01e-01 -4.34e-01 2.27e+00 2.33e+00 0.135 2.16 652 1 22 327 -2.48e-02 -1.20e-01 6.07e-01 6.19e-01 0 2.3 653 1 22 327 -3.58e-01 -1.79e+00 1.21e+01 1.22e+01 0 2.59 654 1 211 329 -3.13e-01 2.46e-01 1.04e+01 1.04e+01 0.14 3.95 655 1 -211 329 1.50e-01 1.93e-02 1.01e+01 1.01e+01 0.14 4.9 656 2 111 329 -1.08e-01 -4.55e-02 2.71e+00 2.71e+00 0.135 3.84 657 1 -211 331 1.45e-01 1.46e-01 5.65e+00 5.65e+00 0.14 4.01 658 1 211 331 7.49e-02 -2.71e-01 6.70e+00 6.71e+00 0.14 3.87 659 1 -211 332 1.70e-01 -7.37e-02 1.47e+00 1.48e+00 0.14 2.76 660 2 111 332 -3.06e-01 5.99e-01 1.32e+01 1.33e+01 0.135 3.67 661 2 -311 335 4.91e-01 2.15e-01 5.19e+01 5.19e+01 0.498 5.27 662 2 111 335 -5.53e-03 3.98e-04 3.65e+01 3.65e+01 0.135 9.49 663 2 311 336 -2.05e-02 1.35e-01 3.29e+01 3.30e+01 0.498 6.18 664 2 111 336 -6.28e-01 1.94e-02 3.22e+01 3.22e+01 0.135 4.63 665 1 -321 337 -6.44e-02 -3.50e-01 1.58e+02 1.58e+02 0.494 6.79 666 1 211 337 2.71e-01 2.56e-01 5.89e+01 5.89e+01 0.14 5.76 667 1 -211 338 -4.54e-01 6.24e-01 5.15e+01 5.15e+01 0.14 4.89 668 2 111 338 -4.56e-02 7.91e-02 4.02e+01 4.02e+01 0.135 6.78 669 1 -211 339 1.04e-01 -3.14e-01 8.87e+00 8.87e+00 0.14 3.98 670 1 211 339 -3.41e-02 -1.59e-01 2.71e+01 2.71e+01 0.14 5.81 671 2 111 339 9.57e-02 -1.76e-01 1.54e+01 1.54e+01 0.135 5.03 672 1 22 340 -3.57e-01 -3.58e-01 3.73e+01 3.73e+01 0 5 673 2 111 340 -1.44e-01 3.31e-01 6.05e+01 6.05e+01 0.135 5.81 674 1 211 341 -6.41e-02 -1.69e-01 1.36e+01 1.36e+01 0.14 5.02 675 1 -211 341 1.01e-01 -1.73e-01 6.15e+01 6.15e+01 0.14 6.42 676 2 111 341 -2.57e-01 -3.91e-02 2.94e+01 2.94e+01 0.135 5.42 677 1 22 344 -2.05e-02 1.17e-01 9.27e+00 9.27e+00 0 5.05 678 1 22 344 7.16e-02 1.52e-02 3.80e+00 3.80e+00 0 4.64 679 1 22 347 4.72e-02 1.05e-01 3.02e+02 3.02e+02 0 8.56 680 1 22 347 2.40e-02 -3.59e-02 5.32e+01 5.32e+01 0 7.81 681 1 22 351 7.53e-01 -8.07e-01 -4.68e+00 4.81e+00 0 -2.15 682 1 22 351 6.93e-01 -8.51e-01 -4.19e+00 4.33e+00 0 -2.05 683 1 22 353 1.35e+00 -4.94e-01 -8.88e+00 8.99e+00 0 -2.52 684 1 22 353 3.57e-01 -1.14e-01 -1.93e+00 1.97e+00 0 -2.34 685 1 22 354 -1.24e-04 -2.03e-02 -1.27e+00 1.27e+00 0 -4.83 686 1 22 354 -5.20e-02 -7.70e-03 -1.86e-01 1.94e-01 0 -1.98 687 1 22 355 6.06e-02 4.65e-02 -3.28e-01 3.37e-01 0 -2.16 688 1 22 355 -9.23e-03 -5.84e-02 -1.15e-01 1.29e-01 0 -1.42 689 1 22 356 -1.26e-01 4.72e-02 -3.37e-01 3.63e-01 0 -1.65 690 1 22 356 2.17e-02 -2.64e-02 -5.05e-02 6.10e-02 0 -1.18 691 1 22 358 7.94e-03 -2.90e-02 -3.10e-02 4.32e-02 0 -0.903 692 1 22 358 1.34e-03 -3.60e-01 -1.45e+00 1.49e+00 0 -2.1 693 1 22 364 5.03e-01 2.42e+00 -7.19e+00 7.60e+00 0 -1.79 694 1 22 364 8.53e-02 3.01e-01 -1.05e+00 1.09e+00 0 -1.92 695 1 130 365 1.00e+00 3.54e+00 -1.08e+01 1.15e+01 0.498 -1.8 696 1 -211 367 2.07e-01 1.11e+00 -3.59e+00 3.77e+00 0.14 -1.87 697 1 -211 367 3.13e-01 1.05e+00 -3.04e+00 3.23e+00 0.14 -1.74 698 2 -3112 367 3.20e+00 1.34e+01 -4.24e+01 4.46e+01 1.2 -1.84 699 2 323 367 2.47e+00 1.08e+01 -3.50e+01 3.67e+01 0.816 -1.87 700 1 22 370 1.90e-02 1.74e-01 7.39e-02 1.90e-01 0 0.411 701 1 22 370 -1.37e+00 1.02e+00 9.71e-01 1.96e+00 0 0.542 702 1 22 373 1.33e-02 3.43e-01 6.70e-01 7.53e-01 0 1.42 703 1 22 373 -8.03e-02 3.00e-01 4.36e-01 5.35e-01 0 1.14 704 1 -211 378 -7.93e-02 -8.91e-02 1.52e+00 1.53e+00 0.14 3.24 705 1 211 378 -7.22e-01 2.15e-01 5.41e+00 5.46e+00 0.14 2.67 706 1 22 383 -5.31e-04 2.07e-02 3.14e+00 3.14e+00 0 5.72 707 1 22 383 3.36e-03 -1.63e-01 8.02e+00 8.03e+00 0 4.59 708 1 22 387 2.21e-01 -8.44e-01 9.69e+00 9.72e+00 0 3.1 709 1 22 387 -1.10e-02 -2.24e-01 2.54e+00 2.55e+00 0 3.12 710 1 22 390 -2.53e-02 -1.00e-01 1.41e-01 1.75e-01 0 1.12 711 1 22 390 2.02e-02 3.62e-02 2.38e-02 4.78e-02 0 0.548 712 1 22 392 5.80e-02 2.06e-01 1.35e+00 1.36e+00 0 2.54 713 1 22 392 -1.46e-02 4.81e-02 9.70e-01 9.71e-01 0 3.65 714 1 22 394 9.94e-02 1.21e-01 1.53e+00 1.54e+00 0 2.97 715 1 22 394 -2.99e-02 -8.79e-03 2.32e-01 2.34e-01 0 2.7 716 1 22 396 -8.42e-02 1.19e-01 5.67e-01 5.86e-01 0 2.07 717 1 22 396 -4.01e-02 4.45e-01 1.59e+00 1.65e+00 0 1.98 718 1 22 413 -4.55e-02 9.35e-02 1.30e+02 1.30e+02 0 7.82 719 1 22 413 -7.78e-02 9.96e-02 5.25e+01 5.25e+01 0 6.72 720 1 22 415 6.62e-02 -2.67e-01 2.11e+02 2.11e+02 0 7.34 721 1 22 415 5.16e-02 -1.42e-02 2.60e+01 2.60e+01 0 6.88 722 1 -211 416 2.67e-01 -8.11e-02 4.05e+01 4.05e+01 0.14 5.67 723 1 211 416 9.10e-01 3.09e-01 8.84e+01 8.84e+01 0.14 5.21 724 1 -211 419 7.25e-01 -3.79e-01 1.98e+01 1.98e+01 0.14 3.88 725 1 211 419 3.17e-01 -4.35e-01 1.98e+01 1.98e+01 0.14 4.3 726 1 22 421 -1.02e-01 -2.62e-01 1.43e+01 1.43e+01 0 4.62 727 1 22 421 5.15e-03 -1.99e-02 2.29e-01 2.30e-01 0 3.1 728 1 22 424 1.34e-01 -2.82e-01 6.46e+00 6.47e+00 0 3.72 729 1 -11 424 2.86e-01 -7.23e-01 3.23e+01 3.23e+01 0.00051 4.42 730 1 11 424 4.59e-01 -1.04e+00 4.69e+01 4.69e+01 0.00051 4.41 731 1 22 426 -2.47e-03 1.87e-02 5.25e-01 5.25e-01 0 4.02 732 1 22 426 -2.02e-02 -2.41e-01 8.36e+00 8.36e+00 0 4.24 733 1 22 428 -1.70e-01 -2.29e-01 7.69e+00 7.69e+00 0 3.99 734 1 22 428 -1.32e+00 -1.58e+00 6.55e+01 6.56e+01 0 4.15 735 1 211 430 -3.14e-01 4.50e-02 6.72e+00 6.73e+00 0.14 3.75 736 1 -211 430 -1.37e-01 -3.25e-01 6.33e+00 6.34e+00 0.14 3.58 737 1 22 435 -3.85e-01 -1.49e-01 5.36e+00 5.38e+00 0 3.26 738 1 22 435 1.57e-04 4.58e-03 5.21e-01 5.21e-01 0 5.43 739 1 22 441 -4.30e-02 4.78e-02 1.31e+00 1.31e+00 0 3.71 740 1 22 441 3.55e-02 -6.21e-02 1.32e+00 1.33e+00 0 3.61 741 1 130 444 -9.80e-01 5.04e-01 9.54e+00 9.62e+00 0.498 2.86 742 1 22 445 -7.80e-01 1.96e-01 5.89e+00 5.94e+00 0 2.69 743 1 22 445 -6.82e-01 5.17e-02 4.70e+00 4.75e+00 0 2.63 744 2 111 447 -1.65e-01 2.43e-01 1.10e+00 1.14e+00 0.135 2.03 745 2 111 447 -4.79e-01 6.34e-01 5.92e+00 5.97e+00 0.135 2.71 746 2 111 454 -9.86e-02 -3.47e-02 6.51e-01 6.73e-01 0.135 2.53 747 2 111 454 -7.80e-03 5.85e-02 1.23e+00 1.24e+00 0.135 3.73 748 2 111 454 -8.84e-02 1.79e-01 2.62e+00 2.64e+00 0.135 3.27 749 1 22 456 7.91e-02 1.16e-01 1.74e+00 1.74e+00 0 3.21 750 1 22 456 3.12e-01 1.99e-01 2.97e+00 2.99e+00 0 2.78 751 1 22 461 1.77e-02 -9.74e-04 3.29e-01 3.29e-01 0 3.61 752 1 22 461 2.86e-01 2.18e-01 1.59e+00 1.63e+00 0 2.19 753 1 22 467 5.82e-01 2.35e-01 2.42e+00 2.50e+00 0 2.06 754 1 22 467 3.73e-01 2.20e-01 2.07e+00 2.12e+00 0 2.27 755 1 22 470 2.73e-01 4.12e-02 1.51e+00 1.53e+00 0 2.4 756 1 -211 470 1.49e-01 -2.05e-01 1.24e+00 1.27e+00 0.14 2.29 757 1 211 470 3.23e-01 1.22e-02 2.48e+00 2.50e+00 0.14 2.73 758 1 22 472 -3.09e-02 3.02e-01 7.97e-01 8.53e-01 0 1.69 759 1 22 472 -9.81e-03 7.55e-01 1.48e+00 1.66e+00 0 1.43 760 1 22 474 1.81e-01 1.08e+00 2.95e+00 3.15e+00 0 1.72 761 1 22 474 -1.46e-02 3.53e-01 1.02e+00 1.08e+00 0 1.78 762 1 22 476 5.91e-02 9.14e-02 2.07e-01 2.34e-01 0 1.4 763 1 22 476 4.18e-01 1.37e+00 2.16e+00 2.60e+00 0 1.2 764 1 22 483 7.75e-03 2.51e-01 1.89e-01 3.14e-01 0 0.696 765 1 22 483 9.40e-02 3.88e-01 1.32e-01 4.20e-01 0 0.325 766 1 22 485 2.26e-01 8.23e-01 7.02e-01 1.11e+00 0 0.75 767 1 22 485 1.74e-01 4.99e-01 5.72e-01 7.78e-01 0 0.939 768 1 130 488 -1.35e-01 1.68e+00 1.12e+00 2.08e+00 0.498 0.622 769 1 22 491 -2.13e-02 3.53e-02 -3.10e-02 5.16e-02 0 -0.694 770 1 22 491 -3.31e-01 -3.38e-02 -9.26e-02 3.46e-01 0 -0.275 771 1 22 493 -7.74e-02 1.94e-01 -5.32e-03 2.09e-01 0 -0.0254 772 1 22 493 3.79e-02 1.10e-01 5.83e-02 1.30e-01 0 0.483 773 1 22 497 -2.51e-01 3.24e-02 1.83e-01 3.12e-01 0 0.674 774 1 22 497 -1.25e+00 1.26e-01 1.31e+00 1.82e+00 0 0.911 775 1 22 500 -1.41e-01 3.47e-02 2.17e-02 1.46e-01 0 0.15 776 1 22 500 -4.83e-01 -1.25e-01 1.30e-01 5.16e-01 0 0.259 777 1 22 501 -3.03e-01 -2.09e-02 9.53e-02 3.19e-01 0 0.309 778 1 22 501 -5.47e-02 5.56e-02 3.66e-03 7.81e-02 0 0.0469 779 1 22 502 -2.68e-02 -3.79e-02 -2.46e-02 5.25e-02 0 -0.508 780 1 22 502 -9.17e-02 1.05e-01 9.38e-03 1.40e-01 0 0.0671 781 1 22 509 -7.20e-02 2.55e-02 6.00e-02 9.71e-02 0 0.722 782 1 22 509 -7.40e-02 -1.26e-01 9.38e-02 1.74e-01 0 0.605 783 1 22 513 4.05e-02 -1.44e-02 2.93e-02 5.21e-02 0 0.637 784 1 22 513 5.44e-02 -3.55e-01 1.03e-01 3.74e-01 0 0.284 785 1 22 517 1.18e-03 -1.17e-01 2.13e-02 1.19e-01 0 0.181 786 1 -11 517 1.88e-01 -4.70e-01 2.48e-01 5.63e-01 0.00051 0.473 787 1 11 517 6.93e-02 -1.79e-01 9.92e-02 2.16e-01 0.00051 0.496 788 2 310 518 3.57e-01 -1.77e+00 7.91e-01 2.04e+00 0.498 0.424 789 1 22 519 1.65e-01 -2.58e-01 1.71e-01 3.50e-01 0 0.533 790 1 22 519 2.67e-01 -6.85e-01 5.93e-01 9.45e-01 0 0.738 791 2 310 520 2.46e-01 -1.53e-01 9.54e-01 1.11e+00 0.498 1.91 792 1 22 527 1.00e-01 -2.70e-01 8.03e-02 2.99e-01 0 0.275 793 1 22 527 -2.68e-02 -1.38e-02 2.88e-02 4.17e-02 0 0.85 794 1 22 531 2.46e-01 2.81e-01 1.28e-01 3.95e-01 0 0.337 795 1 22 531 6.76e-02 5.77e-02 -3.40e-02 9.52e-02 0 -0.374 796 2 310 532 6.46e-01 4.64e-01 -2.42e-01 9.68e-01 0.498 -0.3 797 1 22 533 1.73e-01 5.71e-02 -1.57e-01 2.40e-01 0 -0.779 798 1 22 533 1.84e-01 7.83e-02 -4.11e-01 4.57e-01 0 -1.47 799 1 22 536 2.55e-01 -1.13e-01 -1.32e-01 3.08e-01 0 -0.459 800 1 22 536 5.90e-01 -5.03e-01 -3.96e-01 8.70e-01 0 -0.491 801 1 22 543 9.91e-02 -2.30e-01 5.53e-02 2.56e-01 0 0.219 802 1 22 543 4.76e-02 -3.37e-01 -5.37e-02 3.44e-01 0 -0.157 803 1 130 544 2.03e+00 -1.65e+00 -1.12e+00 2.89e+00 0.498 -0.417 804 2 310 550 3.09e-01 -7.01e-01 -8.79e-01 1.27e+00 0.498 -0.982 805 1 22 551 9.74e-02 -2.14e-02 -6.86e-02 1.21e-01 0 -0.643 806 1 22 551 2.93e-01 -1.78e-01 -5.07e-04 3.42e-01 0 -0.00148 807 1 22 553 7.50e-03 -4.97e-03 -3.23e-02 3.35e-02 0 -1.99 808 1 22 553 -3.88e-01 -4.27e-02 -3.37e-01 5.16e-01 0 -0.781 809 1 22 558 6.74e-02 4.73e-02 8.62e-02 1.19e-01 0 0.914 810 1 22 558 -1.90e-02 -3.75e-02 -1.03e-02 4.33e-02 0 -0.243 811 2 310 561 -2.35e-01 4.78e-01 -3.56e+00 3.63e+00 0.498 -2.6 812 1 22 562 -2.44e-01 2.59e-01 -1.92e+00 1.95e+00 0 -2.39 813 1 22 562 -5.61e-01 3.76e-01 -3.09e+00 3.16e+00 0 -2.23 814 1 22 564 -4.68e-01 2.04e-01 -2.87e+00 2.92e+00 0 -2.43 815 1 22 564 -3.19e-01 1.20e-01 -1.39e+00 1.43e+00 0 -2.11 816 1 22 567 -5.11e-02 6.14e-02 -3.20e-01 3.29e-01 0 -2.09 817 1 22 567 -5.79e-02 2.18e-01 -2.20e+00 2.21e+00 0 -2.98 818 1 22 569 -1.56e-01 3.12e-01 -3.99e+00 4.01e+00 0 -3.13 819 1 22 569 -3.22e-01 5.36e-01 -5.41e+00 5.45e+00 0 -2.85 820 1 22 571 -9.18e-03 1.44e-02 -9.05e-01 9.05e-01 0 -4.66 821 1 22 571 5.03e-02 1.24e-01 -7.81e-01 7.92e-01 0 -2.46 822 1 22 573 -2.86e+00 2.48e+00 -3.64e+01 3.66e+01 0 -2.96 823 1 22 573 -6.88e-01 5.35e-01 -7.95e+00 8.00e+00 0 -2.91 824 1 22 574 -8.77e-02 3.49e-01 -2.97e+00 2.99e+00 0 -2.81 825 1 22 574 4.82e-02 1.12e-01 -9.41e-01 9.49e-01 0 -2.74 826 1 22 575 1.49e-03 4.69e-01 -3.18e+00 3.21e+00 0 -2.61 827 1 22 575 -1.55e-02 -3.20e-03 -8.71e-02 8.85e-02 0 -2.41 828 1 22 576 -2.50e-01 7.99e-01 -6.79e+00 6.84e+00 0 -2.79 829 1 22 576 -1.13e-01 7.80e-01 -6.10e+00 6.15e+00 0 -2.74 830 1 22 578 -3.51e-01 8.80e-01 -8.92e+00 8.97e+00 0 -2.94 831 1 22 578 -6.92e-01 1.38e+00 -1.57e+01 1.57e+01 0 -3.01 832 1 22 580 -6.22e-01 8.69e-01 -8.87e+00 8.94e+00 0 -2.81 833 1 22 580 -8.38e-01 9.26e-01 -1.06e+01 1.07e+01 0 -2.84 834 1 130 581 -6.53e-01 1.19e+00 -1.59e+01 1.60e+01 0.498 -3.16 835 1 -211 583 -1.89e-01 4.30e-01 -7.04e+00 7.06e+00 0.14 -3.4 836 1 211 583 2.09e-01 4.23e-01 -8.79e+00 8.80e+00 0.14 -3.62 837 1 22 590 3.36e-02 -4.81e-02 -9.51e-01 9.52e-01 0 -3.48 838 1 22 590 9.65e-04 7.51e-02 -2.45e+00 2.45e+00 0 -4.18 839 1 22 595 2.18e-03 -1.71e-02 -4.38e-02 4.71e-02 0 -1.66 840 1 22 595 3.62e-01 -3.31e-01 -4.35e+00 4.38e+00 0 -2.88 841 1 22 598 1.15e-01 -3.57e-01 -2.67e+00 2.70e+00 0 -2.66 842 1 22 598 3.28e-01 -1.93e+00 -1.30e+01 1.32e+01 0 -2.59 843 1 22 600 1.10e-02 -1.61e-02 -2.74e-01 2.75e-01 0 -3.34 844 1 22 600 2.57e-01 -1.23e-01 -8.11e-01 8.59e-01 0 -1.77 845 1 22 602 4.73e-01 -1.40e-01 -2.01e+01 2.01e+01 0 -4.4 846 1 22 602 3.71e-01 -1.76e-01 -2.17e+01 2.17e+01 0 -4.66 847 1 22 604 3.96e-01 -3.35e-02 -2.01e+01 2.01e+01 0 -4.62 848 1 22 604 2.13e-01 -8.30e-02 -1.63e+01 1.63e+01 0 -4.96 849 1 22 607 1.88e-01 -2.12e-01 -1.06e+01 1.06e+01 0 -4.32 850 1 22 607 2.48e-01 -1.53e-01 -1.57e+01 1.57e+01 0 -4.68 851 1 22 611 9.05e-01 -2.13e+00 -1.40e+02 1.40e+02 0 -4.79 852 1 22 611 2.34e-01 -5.18e-01 -3.86e+01 3.86e+01 0 -4.91 853 1 22 617 9.00e-02 -4.64e-01 -5.99e+01 5.99e+01 0 -5.54 854 1 22 617 1.76e-01 -3.07e-01 -4.28e+01 4.28e+01 0 -5.49 855 1 2112 618 2.14e-01 -1.56e-01 -1.81e+02 1.81e+02 0.94 -7.22 856 2 111 618 4.22e-02 -1.54e-01 -3.52e+01 3.52e+01 0.135 -6.09 857 1 -2112 620 -6.18e-01 -4.54e-01 -3.48e+02 3.48e+02 0.94 -6.81 858 2 111 620 -7.48e-02 3.75e-02 -6.12e+01 6.12e+01 0.135 -7.29 859 1 22 621 -1.68e-01 -1.53e-01 -1.15e+02 1.15e+02 0 -6.92 860 1 22 621 -8.03e-02 -1.91e-02 -1.82e+01 1.82e+01 0 -6.09 861 1 22 624 -3.74e-01 2.96e-02 -8.56e+01 8.56e+01 0 -6.12 862 1 22 624 -6.57e-02 6.89e-02 -2.25e+01 2.25e+01 0 -6.16 863 1 22 625 -1.37e-01 -1.56e-02 -4.20e+01 4.20e+01 0 -6.41 864 1 22 625 -8.47e-02 4.50e-02 -1.10e+01 1.10e+01 0 -5.44 865 1 22 626 -3.08e-01 1.21e-04 -7.92e+01 7.92e+01 0 -6.24 866 1 22 626 -3.50e-01 -1.33e-01 -1.14e+02 1.14e+02 0 -6.41 867 1 22 630 -6.84e-02 -7.01e-02 -1.02e+01 1.02e+01 0 -5.34 868 1 22 630 -2.35e-01 -4.16e-01 -2.85e+01 2.85e+01 0 -4.78 869 1 22 632 2.36e-02 -1.19e-02 -3.15e+00 3.15e+00 0 -5.47 870 1 22 632 2.11e-01 -5.53e-01 -1.54e+02 1.54e+02 0 -6.25 871 1 211 634 -2.27e-01 1.37e-01 -3.42e+01 3.42e+01 0.14 -5.55 872 1 -211 634 1.29e-01 -7.74e-02 -1.76e+02 1.76e+02 0.14 -7.76 873 1 22 639 5.86e-02 -1.82e-01 -3.01e+02 3.01e+02 0 -8.06 874 1 22 639 8.46e-02 -3.77e-02 -2.65e+02 2.65e+02 0 -8.65 875 1 22 641 -3.51e-01 1.50e-01 1.51e+00 1.56e+00 0 2.08 876 1 22 641 -3.13e-02 7.36e-02 3.86e-01 3.94e-01 0 2.28 877 1 22 647 -5.01e-02 -3.50e-02 4.12e+00 4.12e+00 0 4.9 878 1 22 647 6.31e-02 1.15e-02 1.79e+00 1.79e+00 0 4.02 879 1 22 651 -5.45e-03 -5.44e-02 3.97e-01 4.00e-01 0 2.68 880 1 22 651 -2.96e-01 -3.79e-01 1.87e+00 1.93e+00 0 2.07 881 1 22 656 -2.36e-02 -5.56e-02 4.21e-01 4.25e-01 0 2.64 882 1 22 656 -8.41e-02 1.01e-02 2.29e+00 2.29e+00 0 3.99 883 1 22 660 -6.49e-02 1.11e-01 3.70e+00 3.71e+00 0 4.06 884 1 22 660 -2.41e-01 4.88e-01 9.53e+00 9.55e+00 0 3.56 885 1 130 661 4.91e-01 2.15e-01 5.19e+01 5.19e+01 0.498 5.27 886 1 22 662 1.05e-02 6.47e-02 1.42e+01 1.42e+01 0 6.07 887 1 22 662 -1.61e-02 -6.43e-02 2.23e+01 2.23e+01 0 6.51 888 2 310 663 -2.05e-02 1.35e-01 3.29e+01 3.30e+01 0.498 6.18 889 1 22 664 -1.69e-01 -1.36e-02 6.09e+00 6.09e+00 0 4.28 890 1 22 664 -4.59e-01 3.31e-02 2.61e+01 2.61e+01 0 4.73 891 1 22 668 -7.89e-02 2.00e-03 1.96e+01 1.96e+01 0 6.21 892 1 22 668 3.33e-02 7.71e-02 2.06e+01 2.06e+01 0 6.2 893 1 22 671 1.01e-01 -1.61e-01 1.52e+01 1.52e+01 0 5.08 894 1 22 671 -5.26e-03 -1.58e-02 1.92e-01 1.93e-01 0 3.14 895 1 22 673 -3.49e-03 1.71e-01 2.46e+01 2.46e+01 0 5.66 896 1 22 673 -1.41e-01 1.60e-01 3.59e+01 3.59e+01 0 5.82 897 1 22 676 -3.43e-03 1.43e-02 3.55e-01 3.55e-01 0 3.88 898 1 22 676 -2.53e-01 -5.33e-02 2.90e+01 2.90e+01 0 5.41 899 1 -2112 698 2.24e+00 9.30e+00 -2.90e+01 3.05e+01 0.94 -1.83 900 1 211 698 9.56e-01 4.15e+00 -1.35e+01 1.41e+01 0.14 -1.87 901 2 311 699 1.51e+00 7.26e+00 -2.40e+01 2.51e+01 0.498 -1.89 902 1 211 699 9.59e-01 3.55e+00 -1.10e+01 1.16e+01 0.14 -1.82 903 1 22 744 -1.63e-01 1.32e-01 7.82e-01 8.10e-01 0 2.02 904 1 22 744 -1.73e-03 1.11e-01 3.14e-01 3.33e-01 0 1.77 905 1 22 745 -1.78e-02 7.62e-02 7.79e-01 7.82e-01 0 2.99 906 1 22 745 -4.61e-01 5.57e-01 5.14e+00 5.19e+00 0 2.66 907 1 22 746 -1.23e-01 -1.78e-03 5.57e-01 5.70e-01 0 2.21 908 1 22 746 2.45e-02 -3.30e-02 9.45e-02 1.03e-01 0 1.57 909 1 22 747 5.84e-02 5.36e-02 5.74e-01 5.80e-01 0 2.68 910 1 22 747 -6.62e-02 4.93e-03 6.55e-01 6.58e-01 0 2.99 911 1 22 748 -4.49e-02 2.56e-02 1.36e+00 1.37e+00 0 3.97 912 1 22 748 -4.36e-02 1.54e-01 1.26e+00 1.27e+00 0 2.76 913 1 211 788 2.09e-01 -1.55e+00 7.16e-01 1.72e+00 0.14 0.444 914 1 -211 788 1.48e-01 -2.29e-01 7.49e-02 3.15e-01 0.14 0.272 915 1 -211 791 3.38e-01 -1.78e-01 6.73e-01 7.86e-01 0.14 1.33 916 1 211 791 -9.21e-02 2.51e-02 2.81e-01 3.28e-01 0.14 1.8 917 1 211 796 5.39e-01 1.66e-01 -2.24e-01 6.23e-01 0.14 -0.387 918 1 -211 796 1.07e-01 2.97e-01 -1.77e-02 3.46e-01 0.14 -0.0561 919 1 -211 804 2.61e-01 -5.51e-01 -8.50e-01 1.06e+00 0.14 -1.14 920 1 211 804 4.87e-02 -1.50e-01 -2.90e-02 2.13e-01 0.14 -0.183 921 1 -211 811 2.90e-02 3.33e-01 -1.30e+00 1.35e+00 0.14 -2.06 922 1 211 811 -2.64e-01 1.45e-01 -2.26e+00 2.29e+00 0.14 -2.71 923 1 22 856 4.58e-02 -1.73e-01 -3.39e+01 3.39e+01 0 -5.94 924 1 22 856 -3.59e-03 1.91e-02 -1.27e+00 1.27e+00 0 -4.87 925 1 22 858 -5.12e-02 1.41e-02 -7.20e+00 7.20e+00 0 -5.6 926 1 22 858 -2.36e-02 2.33e-02 -5.40e+01 5.40e+01 0 -8.09 927 1 -211 888 -9.07e-02 -1.15e-01 1.79e+01 1.79e+01 0.14 5.5 928 1 211 888 7.01e-02 2.51e-01 1.51e+01 1.51e+01 0.14 4.75 929 1 130 901 1.51e+00 7.26e+00 -2.40e+01 2.51e+01 0.498 -1.89 18 Event 674 particles 1 3 2212 0 0.00e+00 0.00e+00 7.00e+03 7.00e+03 0.938 999 2 3 2212 0 0.00e+00 0.00e+00 -7.00e+03 7.00e+03 0.938 -999 3 3 2 1 -3.14e-01 4.12e+00 7.14e+02 7.14e+02 0 5.85 4 3 21 2 -7.68e-01 -1.29e+00 -1.53e+01 1.54e+01 0 -3.02 5 3 2 3 -3.10e-01 4.07e+00 7.05e+02 7.05e+02 0 5.85 6 3 -1 4 1.63e+00 -1.91e+00 -1.20e+01 1.23e+01 0 -2.27 7 3 22 5 2.38e+01 3.45e+01 4.20e+01 5.93e+01 0 0.883 8 3 24 5 -2.25e+01 -3.23e+01 6.51e+02 6.58e+02 86.7 3.5 9 1 22 7 2.38e+01 3.45e+01 4.20e+01 5.93e+01 0 0.883 10 2 24 8 -2.25e+01 -3.23e+01 6.51e+02 6.58e+02 86.7 3.5 11 2 -15 10 1.09e+01 2.30e+01 2.96e+02 2.97e+02 1.78 3.15 12 1 16 10 -3.33e+01 -5.53e+01 3.55e+02 3.61e+02 0 2.41 13 2 1 4 -5.34e-01 -1.45e+00 2.17e+00 2.68e+00 0.33 1.14 14 2 21 0 1.39e+00 2.84e-01 -3.98e+01 3.98e+01 0 -4.03 15 2 21 0 2.96e+00 1.03e+00 -7.28e+01 7.29e+01 0 -3.84 16 2 21 0 1.27e+00 1.38e+00 -4.80e+01 4.81e+01 0 -3.94 17 2 21 0 1.99e+00 -1.60e+00 -4.68e+01 4.68e+01 0 -3.6 18 2 21 0 2.81e+00 -7.91e-01 -3.49e+01 3.50e+01 0 -3.18 19 2 21 0 2.52e+00 3.14e+00 -8.51e+00 9.42e+00 0 -1.49 20 2 21 0 -4.86e-01 4.48e-01 -1.52e+00 1.66e+00 0 -1.57 21 2 21 0 -1.79e+00 1.09e-01 -2.63e+00 3.19e+00 0 -1.18 22 2 21 0 -1.55e+00 -3.56e-01 -2.04e+00 2.59e+00 0 -1.07 23 2 21 0 -8.19e-01 -9.35e-01 -2.76e+00 3.03e+00 0 -1.54 24 2 21 0 -4.35e+00 -5.20e+00 -1.62e+01 1.76e+01 0 -1.61 25 2 21 0 -2.52e+00 -3.14e+00 -2.24e+00 4.61e+00 0 -0.531 26 2 21 0 -4.00e+00 -2.33e+00 3.18e+00 5.62e+00 0 0.641 27 2 21 0 -2.84e+00 7.36e+00 4.66e-01 7.90e+00 0 0.059 28 2 21 0 -3.73e-02 1.32e+00 3.01e-01 1.35e+00 0 0.227 29 2 21 0 -5.00e-01 2.05e+00 1.33e-01 2.11e+00 0 0.063 30 2 21 0 -1.51e+00 3.39e+00 -2.76e+00 4.62e+00 0 -0.689 31 2 21 0 -1.00e+00 1.89e+00 -2.36e+00 3.19e+00 0 -0.952 32 2 21 0 1.33e+00 3.25e+00 -6.43e-01 3.57e+00 0 -0.182 33 2 21 0 4.00e+00 2.33e+00 9.03e-01 4.72e+00 0 0.194 34 2 21 0 2.60e+00 4.85e-01 1.19e+00 2.90e+00 0 0.435 35 2 21 0 1.55e+00 9.48e-01 3.27e+00 3.74e+00 0 1.35 36 2 21 0 4.35e+00 5.20e+00 2.01e+01 2.12e+01 0 1.81 37 2 21 0 3.73e-02 -1.32e+00 2.44e-01 1.34e+00 0 0.184 38 2 21 0 8.85e-01 -3.37e+00 2.53e+00 4.31e+00 0 0.673 39 2 21 0 1.51e+00 -3.39e+00 1.01e+01 1.08e+01 0 1.73 40 2 21 0 4.18e-01 -2.12e+00 8.44e+00 8.72e+00 0 2.07 41 2 21 0 1.09e+00 -8.99e-01 9.40e+00 9.50e+00 0 2.59 42 2 21 0 1.00e+00 -1.89e+00 2.35e+01 2.36e+01 0 3.09 43 2 21 0 5.00e-01 -2.05e+00 2.35e+01 2.36e+01 0 3.11 44 2 21 0 -1.98e-01 -2.61e+00 5.65e+01 5.66e+01 0 3.76 45 2 21 0 -2.47e+00 -2.11e+00 7.34e+01 7.34e+01 0 3.81 46 2 21 0 -7.18e-01 -5.22e-02 2.18e+01 2.18e+01 0 4.1 47 2 21 0 -1.09e+00 8.99e-01 8.78e+01 8.78e+01 0 4.82 48 2 21 0 2.47e+00 2.11e+00 1.12e+02 1.12e+02 0 4.23 49 2 21 0 5.75e-01 3.78e-01 3.00e+01 3.00e+01 0 4.47 50 2 21 0 2.02e+00 -5.92e-02 8.60e+01 8.60e+01 0 4.45 51 2 21 0 2.84e+00 -7.36e+00 5.75e+02 5.75e+02 0 4.98 52 2 21 0 1.98e-01 2.61e+00 9.00e+02 9.00e+02 0 6.53 53 2 21 0 -6.33e-01 -4.95e-01 1.33e+03 1.33e+03 0 8.11 54 2 2101 1 3.14e-01 -4.12e+00 2.82e+03 2.82e+03 0.579 7.22 55 2 -1 4 4.60e-01 -1.08e-01 3.73e-02 5.77e-01 0.33 0.0789 56 2 21 4 -4.24e-01 6.34e-01 8.45e-01 1.14e+00 0 0.956 57 2 21 4 -1.35e+00 9.21e-01 4.83e+00 5.10e+00 0 1.8 58 2 1 2 4.44e-01 2.74e-01 -6.23e+00 6.26e+00 0.33 -3.18 59 2 1 4 -5.50e-01 6.72e-01 -2.36e+00 2.54e+00 0.33 -1.73 60 2 2203 2 3.24e-01 1.02e+00 -2.65e+03 2.65e+03 0.771 -8.51 61 2 1 0 -8.61e-01 3.79e+00 -4.12e+01 4.14e+01 0 -3.06 62 2 21 0 -8.85e-01 3.37e+00 -1.73e+01 1.76e+01 0 -2.3 63 2 21 0 -1.56e-01 4.86e-01 -2.03e+00 2.09e+00 0 -2.09 64 2 21 0 -1.54e+00 1.28e+00 -9.92e+00 1.01e+01 0 -2.3 65 2 21 0 -2.81e+00 7.91e-01 -1.14e+01 1.18e+01 0 -2.07 66 2 21 0 -2.60e+00 -4.85e-01 -8.28e+00 8.69e+00 0 -1.86 67 2 21 0 -5.75e-01 -3.78e-01 -3.11e+00 3.18e+00 0 -2.21 68 2 21 0 -1.33e+00 -3.25e+00 -3.52e+01 3.53e+01 0 -3 69 2 -1 0 8.61e-01 -3.79e+00 -1.62e+02 1.62e+02 0 -4.43 70 2 1 0 -5.28e-01 -3.78e+00 -1.95e+02 1.95e+02 0 -4.63 71 2 21 0 -1.27e+00 -1.38e+00 -8.55e+01 8.55e+01 0 -4.52 72 2 21 0 4.42e-01 -1.42e+00 -1.62e+02 1.62e+02 0 -5.39 73 2 21 0 1.54e+00 -1.28e+00 -1.76e+02 1.76e+02 0 -5.17 74 2 21 0 1.79e+00 -1.09e-01 -6.77e+02 6.77e+02 0 -6.63 75 2 21 0 -2.96e+00 -1.03e+00 -3.32e+02 3.32e+02 0 -5.36 76 2 21 0 -1.39e+00 -2.84e-01 -8.39e+01 8.39e+01 0 -4.77 77 2 21 0 -1.99e+00 1.60e+00 -2.98e+02 2.98e+02 0 -5.45 78 2 21 0 -4.18e-01 2.12e+00 -4.11e+02 4.11e+02 0 -5.94 79 2 21 0 -4.42e-01 1.42e+00 -1.51e+02 1.51e+02 0 -5.31 80 2 -1 0 5.28e-01 3.78e+00 -1.17e+02 1.17e+02 0 -4.12 81 2 2 0 1.85e+00 -1.60e+00 7.04e+00 7.45e+00 0 1.78 82 2 21 0 1.55e+00 3.56e-01 1.44e+01 1.45e+01 0 2.9 83 2 21 0 7.18e-01 5.22e-02 1.08e+01 1.09e+01 0 3.41 84 2 21 0 6.33e-01 4.95e-01 6.33e+00 6.38e+00 0 2.76 85 2 21 0 -1.55e+00 -9.48e-01 1.45e+01 1.46e+01 0 2.78 86 2 21 0 -2.02e+00 5.92e-02 6.95e+00 7.24e+00 0 1.95 87 2 -2 0 -1.85e+00 1.60e+00 4.92e-01 2.49e+00 0 0.2 88 2 1 0 2.35e+00 -5.48e-02 -3.67e+01 3.68e+01 0 -3.44 89 2 -1 0 -2.35e+00 5.48e-02 -7.41e+01 7.41e+01 0 -4.14 90 2 1 0 7.58e-01 1.26e+00 -5.88e+00 6.06e+00 0 -2.1 91 2 21 0 8.19e-01 9.35e-01 -6.69e+00 6.80e+00 0 -2.38 92 2 21 0 4.86e-01 -4.48e-01 -4.86e-01 8.20e-01 0 -0.681 93 2 -1 0 -7.58e-01 -1.26e+00 -1.62e+00 2.19e+00 0 -0.954 94 2 1 0 -4.83e-01 1.28e+00 -1.14e+00 1.78e+00 0 -0.759 95 2 21 0 1.56e-01 -4.86e-01 -2.36e+00 2.42e+00 0 -2.24 96 2 -1 0 4.83e-01 -1.28e+00 -2.20e+02 2.20e+02 0 -5.78 97 2 3 0 2.79e-03 4.52e-01 -6.97e+02 6.97e+02 0 -8.04 98 2 -3 0 -2.79e-03 -4.52e-01 -8.57e-02 4.60e-01 0 -0.189 99 1 -16 11 3.78e+00 8.82e+00 1.04e+02 1.05e+02 0 3.08 100 2 213 11 7.07e+00 1.42e+01 1.92e+02 1.92e+02 0.755 3.19 101 2 92 13 1.36e+01 -7.04e+00 5.92e+03 6.53e+03 2.74e+03 6.65 102 2 223 101 -2.07e-01 -5.86e-01 9.55e-01 1.38e+00 0.781 1.21 103 2 -213 101 -4.93e-01 -1.27e-01 -6.11e-02 9.66e-01 0.819 -0.12 104 2 223 101 3.31e-01 -7.14e-02 -3.97e-01 9.39e-01 0.781 -0.998 105 2 111 101 1.14e-01 -6.48e-02 -1.24e-01 2.25e-01 0.135 -0.842 106 2 213 101 2.99e-02 -5.08e-01 -2.72e+00 2.95e+00 1.01 -2.38 107 1 -211 101 -1.14e-01 2.14e-01 -2.88e-01 4.01e-01 0.14 -1.01 108 2 111 101 -1.96e-01 -7.13e-02 1.06e-01 2.70e-01 0.135 0.489 109 2 223 101 8.23e-01 -2.21e-03 -2.69e+00 2.92e+00 0.774 -1.9 110 1 2212 101 7.50e-01 6.49e-02 -2.26e+01 2.27e+01 0.938 -4.1 111 1 -2112 101 4.14e-01 7.36e-02 -2.02e+01 2.02e+01 0.94 -4.57 112 1 -211 101 1.39e+00 1.10e+00 -3.77e+01 3.78e+01 0.14 -3.75 113 2 113 101 1.61e+00 -6.74e-02 -5.99e+01 5.99e+01 1.01 -4.31 114 2 223 101 6.21e-01 1.08e-01 -1.77e+01 1.78e+01 0.762 -4.03 115 1 2212 101 2.15e+00 2.82e-04 -3.45e+01 3.46e+01 0.938 -3.47 116 1 -2212 101 1.56e+00 -4.70e-01 -2.31e+01 2.31e+01 0.938 -3.34 117 2 213 101 7.97e-02 -4.12e-01 -7.60e+00 7.65e+00 0.772 -3.59 118 1 -211 101 5.84e-01 7.60e-02 -6.20e+00 6.23e+00 0.14 -3.05 119 1 211 101 1.12e+00 6.76e-01 -8.46e+00 8.56e+00 0.14 -2.56 120 2 223 101 3.31e-01 4.12e-01 -1.11e+00 1.47e+00 0.792 -1.49 121 1 -211 101 9.20e-01 1.76e+00 -3.88e+00 4.36e+00 0.14 -1.42 122 2 223 101 -1.06e+00 1.13e-01 -2.63e+00 2.95e+00 0.782 -1.63 123 1 211 101 -3.30e-01 2.88e-01 -6.02e-01 7.57e-01 0.14 -1.12 124 2 223 101 -1.03e+00 -6.36e-01 -3.19e+00 3.50e+00 0.794 -1.7 125 2 2114 101 -1.26e+00 -1.54e+00 -4.54e+00 5.10e+00 1.2 -1.56 126 2 -213 101 -1.42e+00 -7.26e-01 -4.16e+00 4.52e+00 0.783 -1.68 127 2 -1114 101 -3.27e+00 -3.02e+00 -8.06e+00 9.28e+00 1.18 -1.36 128 2 -213 101 -2.51e-01 -1.25e+00 -1.80e+00 2.31e+00 0.674 -1.15 129 1 211 101 -3.59e-01 -9.07e-02 -4.09e-01 5.69e-01 0.14 -0.953 130 1 -211 101 -8.47e-01 -7.55e-01 -9.79e-01 1.51e+00 0.14 -0.781 131 2 213 101 -3.80e-01 -2.02e-01 3.17e-01 1.05e+00 0.904 0.682 132 2 223 101 -1.75e+00 -1.47e+00 -6.90e-01 2.52e+00 0.787 -0.297 133 2 313 101 -7.01e-01 -9.59e-01 4.92e-01 1.54e+00 0.856 0.403 134 2 333 101 -1.11e+00 -2.43e-01 5.16e-01 1.62e+00 1.03 0.439 135 2 -323 101 -9.15e-01 -2.23e-01 5.00e-01 1.41e+00 0.921 0.509 136 2 323 101 -1.16e+00 1.50e+00 5.40e-01 2.16e+00 0.875 0.281 137 2 -311 101 1.50e-01 6.42e-01 1.60e-01 8.41e-01 0.498 0.24 138 2 111 101 -4.27e-01 1.08e+00 -1.42e-01 1.18e+00 0.135 -0.122 139 2 221 101 -7.85e-01 1.37e+00 2.17e-01 1.68e+00 0.547 0.137 140 1 -211 101 -7.84e-02 4.58e-01 -4.69e-02 4.88e-01 0.14 -0.101 141 2 221 101 -6.55e-01 3.22e+00 4.27e-01 3.36e+00 0.547 0.129 142 2 113 101 -1.31e+00 2.53e+00 -1.05e+00 3.16e+00 0.856 -0.361 143 2 323 101 -5.71e-01 1.20e+00 -9.02e-01 1.77e+00 0.725 -0.633 144 2 -323 101 -5.90e-01 2.58e+00 -1.57e+00 3.21e+00 0.917 -0.564 145 1 2212 101 -1.58e-01 2.03e+00 -8.73e-01 2.41e+00 0.938 -0.417 146 1 -2212 101 7.24e-01 1.24e+00 -1.05e+00 2.01e+00 0.938 -0.679 147 1 211 101 2.22e+00 1.18e+00 7.99e-01 2.65e+00 0.14 0.312 148 1 -211 101 6.47e-01 4.55e-01 8.46e-01 1.17e+00 0.14 0.929 149 1 211 101 7.49e-01 6.38e-01 -4.28e-01 1.08e+00 0.14 -0.423 150 2 113 101 1.34e+00 9.99e-01 1.76e+00 2.50e+00 0.588 0.917 151 2 313 101 1.51e+00 7.79e-01 2.44e+00 3.11e+00 0.912 1.16 152 2 221 101 1.76e-01 1.96e-01 2.91e-01 6.74e-01 0.547 0.954 153 2 -313 101 9.59e-01 2.03e-01 1.64e+00 2.12e+00 0.933 1.28 154 2 313 101 1.74e+00 1.85e+00 6.69e+00 7.22e+00 0.972 1.7 155 2 -323 101 9.04e-01 9.10e-01 2.04e+00 2.57e+00 0.909 1.24 156 1 321 101 8.64e-01 6.88e-01 2.21e+00 2.52e+00 0.494 1.45 157 2 -311 101 1.12e+00 9.59e-01 4.00e+00 4.29e+00 0.498 1.73 158 2 -213 101 -1.66e-01 -1.98e-01 2.26e+00 2.42e+00 0.815 2.87 159 2 331 101 5.16e-01 -6.40e-01 9.40e-01 1.57e+00 0.958 0.979 160 1 211 101 -8.48e-02 -9.88e-01 1.09e+00 1.48e+00 0.14 0.951 161 2 113 101 5.01e-01 -4.32e-01 1.54e+00 1.92e+00 0.949 1.58 162 2 2114 101 6.47e-01 -1.04e+00 2.64e+00 3.13e+00 1.16 1.51 163 2 221 101 -1.40e-01 -1.43e+00 1.75e+00 2.33e+00 0.547 1.03 164 2 -2114 101 7.03e-01 -1.54e+00 3.33e+00 3.91e+00 1.17 1.43 165 2 221 101 5.63e-01 -1.63e+00 6.70e+00 6.94e+00 0.547 2.07 166 2 -213 101 7.04e-01 -1.00e+00 4.00e+00 4.25e+00 0.759 1.9 167 1 211 101 7.64e-01 -1.07e+00 8.44e+00 8.55e+00 0.14 2.56 168 1 -211 101 5.24e-03 -2.35e-01 4.81e+00 4.81e+00 0.14 3.71 169 1 2212 101 2.00e-01 -1.50e+00 1.47e+01 1.48e+01 0.938 2.97 170 2 213 101 6.32e-01 -9.17e-01 1.27e+01 1.28e+01 0.746 3.13 171 1 -2212 101 4.74e-01 -1.58e+00 3.63e+01 3.64e+01 0.938 3.78 172 2 -213 101 -6.10e-01 -1.81e+00 1.86e+01 1.87e+01 0.729 2.97 173 2 213 101 -4.73e-01 -1.46e-01 2.99e+01 3.00e+01 0.8 4.8 174 2 223 101 -1.76e-01 -1.34e+00 4.70e+01 4.70e+01 0.761 4.24 175 2 113 101 -4.31e-01 1.10e-02 1.29e+01 1.29e+01 0.566 4.09 176 2 -213 101 -1.25e+00 -1.17e+00 6.25e+01 6.25e+01 0.819 4.29 177 2 213 101 -4.63e-01 5.84e-01 3.12e+01 3.12e+01 0.798 4.43 178 2 223 101 1.00e+00 7.84e-01 5.27e+01 5.27e+01 0.787 4.42 179 2 -213 101 1.86e-01 4.71e-01 4.73e+01 4.74e+01 0.751 5.23 180 2 213 101 1.34e+00 6.37e-02 6.14e+01 6.14e+01 0.792 4.52 181 2 113 101 8.24e-01 4.87e-01 1.20e+02 1.20e+02 0.73 5.52 182 2 223 101 1.37e+00 -3.29e+00 2.01e+02 2.01e+02 0.777 4.73 183 2 113 101 8.19e-01 2.67e-01 1.08e+02 1.08e+02 0.8 5.53 184 1 2112 101 4.13e-02 2.18e-01 6.85e+01 6.85e+01 0.94 6.43 185 1 -211 101 4.97e-01 -4.51e-01 6.26e+01 6.26e+01 0.14 5.23 186 1 -2112 101 1.47e+00 -2.72e+00 2.55e+02 2.55e+02 0.94 5.11 187 2 221 101 -1.56e-01 5.65e-02 8.26e+01 8.26e+01 0.547 6.9 188 2 223 101 1.06e-01 2.55e-02 3.72e+02 3.72e+02 0.749 8.83 189 1 2212 101 -2.70e-01 1.36e+00 9.00e+02 9.00e+02 0.938 7.17 190 1 -2112 101 1.96e-01 -4.90e-01 5.94e+02 5.94e+02 0.94 7.72 191 2 113 101 -1.57e-01 -1.48e+00 9.67e+02 9.67e+02 0.804 7.17 192 1 2112 101 -1.08e-01 -2.38e+00 1.98e+03 1.98e+03 0.94 7.41 193 2 92 55 -8.72e-01 1.72e+00 -5.21e-01 1.31e+01 12.9 -0.267 194 1 211 193 2.93e-03 5.38e-02 -2.20e-01 2.66e-01 0.14 -2.12 195 2 331 193 3.18e-01 4.00e-01 1.27e+00 1.67e+00 0.958 1.64 196 1 -321 193 -6.02e-01 1.08e+00 2.60e+00 2.92e+00 0.494 1.49 197 1 321 193 -6.52e-01 -4.07e-01 1.57e+00 1.82e+00 0.494 1.46 198 1 -211 193 -4.07e-01 4.27e-01 -1.26e+00 1.39e+00 0.14 -1.5 199 2 111 193 2.30e-01 -4.98e-02 1.62e-01 3.16e-01 0.135 0.645 200 1 211 193 -1.20e-01 4.58e-02 -2.62e+00 2.63e+00 0.14 -3.71 201 1 -211 193 3.58e-01 1.71e-01 -2.02e+00 2.06e+00 0.14 -2.33 202 2 92 59 -2.26e-01 1.69e+00 -2.65e+03 2.65e+03 30.5 -8.04 203 2 -213 202 -5.49e-01 9.59e-01 -8.98e+00 9.10e+00 0.949 -2.79 204 1 211 202 2.99e-01 -2.53e-01 -1.72e+00 1.77e+00 0.14 -2.18 205 1 -211 202 -4.25e-01 3.40e-02 -1.83e+02 1.83e+02 0.14 -6.76 206 2 2224 202 3.97e-01 -1.89e-04 -1.36e+02 1.36e+02 1.18 -6.53 207 2 -2214 202 -3.56e-01 6.75e-02 -3.98e+02 3.98e+02 1.27 -7.7 208 2 2114 202 2.16e-01 7.84e-01 -1.12e+03 1.12e+03 1.21 -7.92 209 1 211 202 1.91e-01 1.00e-01 -7.97e+02 7.97e+02 0.14 -8.91 210 2 92 61 -9.89e+00 1.82e+00 -2.91e+02 2.93e+02 31.5 -4.06 211 2 -213 210 -4.02e-01 3.77e+00 -3.43e+01 3.45e+01 0.772 -2.9 212 2 331 210 -1.91e+00 2.06e+00 -1.72e+01 1.74e+01 0.958 -2.51 213 1 211 210 -7.36e-01 1.54e+00 -1.16e+01 1.17e+01 0.14 -2.61 214 2 -213 210 -5.27e-01 7.32e-01 -2.69e+00 2.94e+00 0.787 -1.81 215 2 111 210 -1.99e+00 2.85e-01 -1.03e+01 1.05e+01 0.135 -2.33 216 1 211 210 -1.22e+00 1.14e+00 -6.83e+00 7.04e+00 0.14 -2.12 217 2 223 210 -1.30e+00 -7.65e-01 -7.83e+00 8.01e+00 0.776 -2.35 218 2 223 210 -1.02e+00 -1.07e-01 -5.40e+00 5.55e+00 0.779 -2.36 219 2 111 210 -4.33e-01 -1.13e+00 -9.07e+00 9.15e+00 0.135 -2.71 220 2 223 210 -2.37e-02 7.39e-02 -7.80e+00 7.84e+00 0.78 -5.3 221 1 2112 210 -4.13e-01 -1.25e+00 -1.92e+01 1.92e+01 0.94 -3.37 222 2 -2214 210 -1.65e-01 -1.30e+00 -2.78e+01 2.78e+01 1.14 -3.74 223 1 321 210 -1.49e-01 -1.70e+00 -6.01e+01 6.01e+01 0.494 -4.26 224 2 -311 210 3.90e-01 -1.53e+00 -7.08e+01 7.08e+01 0.498 -4.5 225 2 92 70 -4.70e+00 -3.65e-01 -2.69e+03 2.69e+03 31.7 -7.04 226 1 -211 225 1.99e-01 -1.37e+00 -5.63e+01 5.63e+01 0.14 -4.4 227 2 213 225 -1.36e+00 -4.43e+00 -3.08e+02 3.08e+02 0.735 -4.89 228 2 2114 225 6.97e-01 -9.25e-01 -1.30e+02 1.30e+02 1.24 -5.41 229 1 211 225 -7.29e-02 1.17e-01 -8.96e+00 8.96e+00 0.14 -4.87 230 2 -2224 225 7.71e-01 -1.23e+00 -2.47e+02 2.47e+02 1.18 -5.83 231 1 321 225 4.58e-01 3.02e-01 -1.19e+02 1.19e+02 0.494 -6.07 232 1 -321 225 -1.65e-01 -7.63e-01 -1.85e+02 1.85e+02 0.494 -6.16 233 1 2212 225 6.12e-01 3.04e-01 -2.62e+02 2.62e+02 0.938 -6.64 234 1 -211 225 -6.07e-01 -3.67e-01 -7.59e+01 7.59e+01 0.14 -5.37 235 2 -1114 225 -8.75e-01 -3.50e-02 -1.59e+02 1.59e+02 1.26 -5.9 236 2 -213 225 -2.17e+00 -3.28e-01 -2.13e+02 2.13e+02 0.651 -5.27 237 1 211 225 -5.11e-01 9.25e-01 -1.03e+02 1.03e+02 0.14 -5.28 238 2 1114 225 -5.26e-01 9.20e-01 -2.21e+02 2.21e+02 1.17 -6.03 239 2 -1114 225 -1.25e+00 1.48e+00 -2.87e+02 2.87e+02 1.17 -5.69 240 2 313 225 1.01e-01 1.05e+00 -4.28e+01 4.28e+01 0.881 -4.4 241 2 -313 225 -3.92e-01 1.42e+00 -1.60e+02 1.60e+02 0.885 -5.38 242 1 -211 225 7.69e-01 1.93e+00 -8.15e+01 8.16e+01 0.14 -4.37 243 1 211 225 -3.73e-01 6.50e-01 -2.94e+01 2.94e+01 0.14 -4.36 244 2 92 81 -6.59e-01 1.46e-02 6.06e+01 6.36e+01 19.2 5.21 245 2 111 244 2.41e-01 1.68e-01 1.50e+00 1.54e+00 0.135 2.34 246 2 223 244 1.57e+00 -1.10e+00 9.98e+00 1.02e+01 0.78 2.35 247 1 211 244 -1.84e-03 1.44e-03 2.26e-01 2.66e-01 0.14 5.27 248 2 111 244 1.62e+00 -1.56e-01 6.94e+00 7.13e+00 0.135 2.15 249 2 331 244 2.88e-02 -1.31e-01 8.79e+00 8.84e+00 0.958 4.88 250 2 113 244 2.82e-01 2.46e-01 1.58e+01 1.58e+01 0.808 4.44 251 2 111 244 8.62e-02 2.42e-01 6.24e-01 6.88e-01 0.135 1.62 252 2 111 244 -1.12e+00 -3.58e-01 4.18e+00 4.34e+00 0.135 1.98 253 2 221 244 2.69e-01 -5.47e-01 1.98e+00 2.14e+00 0.547 1.89 254 1 -211 244 -1.66e+00 4.50e-01 1.01e+01 1.02e+01 0.14 2.47 255 2 111 244 -1.98e+00 1.20e+00 4.87e-01 2.37e+00 0.135 0.208 256 2 92 88 0.00e+00 0.00e+00 -1.11e+02 1.11e+02 4.99 -999 257 2 -213 256 1.83e+00 5.63e-02 -3.15e+01 3.15e+01 0.732 -3.54 258 2 213 256 4.51e-02 6.25e-02 -1.18e+01 1.18e+01 0.434 -5.73 259 1 -211 256 -1.19e+00 -4.68e-02 -4.72e+01 4.73e+01 0.14 -4.37 260 2 213 256 -6.79e-01 -7.19e-02 -2.03e+01 2.03e+01 0.806 -4.08 261 2 92 90 1.30e+00 4.87e-01 -1.47e+01 1.59e+01 5.88 -3.05 262 1 -211 261 -1.26e-01 1.51e-01 -1.99e+00 2.01e+00 0.14 -3.01 263 1 211 261 8.41e-01 -1.15e-01 -1.82e+00 2.02e+00 0.14 -1.51 264 1 2112 261 -3.20e-03 3.55e-01 -1.98e+00 2.22e+00 0.94 -2.42 265 2 113 261 4.21e-01 8.70e-01 -5.03e+00 5.18e+00 0.748 -2.35 266 1 -2212 261 2.98e-01 7.61e-02 -2.66e+00 2.84e+00 0.938 -2.85 267 2 213 261 -1.26e-01 -8.49e-01 -1.19e+00 1.61e+00 0.668 -1.13 268 2 92 94 1.56e-01 -4.86e-01 -2.24e+02 2.24e+02 17.7 -6.78 269 2 313 268 -2.85e-01 2.25e-01 -9.03e-01 1.32e+00 0.894 -1.64 270 2 221 268 4.12e-01 2.24e-01 -9.67e+00 9.70e+00 0.547 -3.72 271 2 -313 268 -7.15e-01 1.26e-01 -3.44e+00 3.66e+00 1.03 -2.26 272 2 223 268 2.95e-01 -6.76e-03 -6.18e+01 6.19e+01 0.783 -6.04 273 2 223 268 -7.15e-02 -2.67e-01 -1.78e+01 1.78e+01 0.71 -4.86 274 2 113 268 5.20e-01 -7.87e-01 -1.30e+02 1.30e+02 0.767 -5.62 275 2 92 97 0.00e+00 0.00e+00 -6.98e+02 6.98e+02 22.8 -999 276 2 -313 275 7.48e-02 6.76e-01 -5.61e+02 5.61e+02 0.812 -7.41 277 2 111 275 3.20e-01 -2.41e-01 -5.47e+01 5.47e+01 0.135 -5.61 278 1 -211 275 -5.77e-01 1.85e-01 -1.16e+01 1.16e+01 0.14 -3.64 279 2 323 275 4.70e-01 1.26e-01 -5.02e+01 5.03e+01 0.884 -5.33 280 2 -323 275 -2.93e-01 -1.09e-01 -1.67e+01 1.67e+01 0.896 -4.67 281 1 321 275 -1.71e-01 -3.07e-02 -6.83e-01 8.61e-01 0.494 -2.08 282 2 221 275 1.76e-01 -6.07e-01 -2.42e+00 2.56e+00 0.547 -2.05 283 1 211 100 5.70e+00 1.13e+01 1.50e+02 1.51e+02 0.14 3.17 284 2 111 100 1.37e+00 2.84e+00 4.16e+01 4.17e+01 0.135 3.27 285 1 22 102 -4.84e-01 -3.79e-01 6.96e-01 9.29e-01 0 0.971 286 2 111 102 2.77e-01 -2.07e-01 2.59e-01 4.52e-01 0.135 0.693 287 1 -211 103 1.21e-01 -6.66e-02 2.03e-01 2.82e-01 0.14 1.18 288 2 111 103 -6.13e-01 -6.09e-02 -2.64e-01 6.84e-01 0.135 -0.416 289 1 211 104 1.57e-01 1.26e-01 -2.83e-01 3.74e-01 0.14 -1.14 290 1 -211 104 2.86e-01 -6.15e-02 -2.16e-02 3.25e-01 0.14 -0.0737 291 2 111 104 -1.12e-01 -1.35e-01 -9.22e-02 2.40e-01 0.135 -0.503 292 1 22 105 9.13e-02 2.45e-02 -7.66e-02 1.22e-01 0 -0.741 293 1 22 105 2.26e-02 -8.93e-02 -4.72e-02 1.04e-01 0 -0.492 294 1 211 106 2.35e-01 -5.74e-02 -2.19e+00 2.20e+00 0.14 -2.9 295 2 111 106 -2.05e-01 -4.51e-01 -5.36e-01 7.42e-01 0.135 -0.938 296 1 22 108 -8.40e-02 5.09e-03 1.05e-01 1.35e-01 0 1.05 297 1 22 108 -1.12e-01 -7.64e-02 1.08e-03 1.36e-01 0 0.00798 298 1 211 109 2.67e-01 -2.79e-02 -2.96e-01 4.23e-01 0.14 -0.953 299 1 -211 109 7.20e-02 -6.64e-02 -8.84e-01 9.00e-01 0.14 -2.9 300 2 111 109 4.84e-01 9.20e-02 -1.51e+00 1.60e+00 0.135 -1.84 301 1 -211 113 1.37e+00 2.06e-01 -5.36e+01 5.36e+01 0.14 -4.35 302 1 211 113 2.37e-01 -2.74e-01 -6.26e+00 6.27e+00 0.14 -3.54 303 1 -211 114 7.61e-02 9.53e-02 -1.60e+00 1.61e+00 0.14 -3.27 304 1 211 114 1.27e-01 -1.66e-01 -7.03e+00 7.03e+00 0.14 -4.21 305 2 111 114 4.18e-01 1.79e-01 -9.12e+00 9.13e+00 0.135 -3.69 306 1 211 117 -2.91e-01 -3.37e-01 -4.66e+00 4.69e+00 0.14 -3.04 307 2 111 117 3.71e-01 -7.51e-02 -2.93e+00 2.96e+00 0.135 -2.74 308 1 -211 120 1.45e-01 3.59e-01 -5.52e-01 6.88e-01 0.14 -1.15 309 1 211 120 -9.86e-02 1.27e-01 -2.12e-01 3.00e-01 0.14 -1.09 310 2 111 120 2.84e-01 -7.39e-02 -3.51e-01 4.77e-01 0.135 -1.01 311 1 22 122 -1.07e-01 -1.87e-01 -1.39e-01 2.56e-01 0 -0.607 312 2 111 122 -9.54e-01 3.00e-01 -2.49e+00 2.69e+00 0.135 -1.64 313 1 211 124 -6.33e-01 -1.13e-01 -1.46e+00 1.60e+00 0.14 -1.56 314 1 -211 124 -4.27e-01 -3.99e-01 -1.32e+00 1.45e+00 0.14 -1.55 315 2 111 124 3.31e-02 -1.24e-01 -4.17e-01 4.57e-01 0.135 -1.89 316 1 2212 125 -1.23e+00 -1.35e+00 -4.27e+00 4.74e+00 0.938 -1.59 317 1 -211 125 -2.48e-02 -1.88e-01 -2.63e-01 3.53e-01 0.14 -1.13 318 1 -211 126 -5.40e-01 -6.49e-01 -2.42e+00 2.57e+00 0.14 -1.78 319 2 111 126 -8.84e-01 -7.69e-02 -1.74e+00 1.95e+00 0.135 -1.42 320 1 -2112 127 -2.68e+00 -2.68e+00 -6.69e+00 7.75e+00 0.94 -1.33 321 1 211 127 -5.89e-01 -3.36e-01 -1.37e+00 1.53e+00 0.14 -1.45 322 1 -211 128 -1.54e-01 -8.71e-02 -5.36e-01 5.81e-01 0.14 -1.83 323 2 111 128 -9.72e-02 -1.16e+00 -1.27e+00 1.72e+00 0.135 -0.942 324 1 211 131 -5.95e-01 -2.45e-01 2.29e-02 6.59e-01 0.14 0.0356 325 2 111 131 2.15e-01 4.39e-02 2.94e-01 3.91e-01 0.135 1.1 326 1 22 132 -1.47e+00 -8.99e-01 -2.85e-01 1.75e+00 0 -0.165 327 2 111 132 -2.79e-01 -5.75e-01 -4.05e-01 7.68e-01 0.135 -0.597 328 1 321 133 -3.06e-01 -6.29e-01 5.95e-02 8.58e-01 0.494 0.0849 329 1 -211 133 -3.95e-01 -3.30e-01 4.32e-01 6.86e-01 0.14 0.764 330 1 321 134 -7.63e-01 -9.83e-02 2.87e-01 9.58e-01 0.494 0.365 331 1 -321 134 -3.50e-01 -1.44e-01 2.29e-01 6.63e-01 0.494 0.573 332 1 -321 135 -6.13e-01 1.65e-01 3.59e-01 8.81e-01 0.494 0.54 333 2 111 135 -3.02e-01 -3.87e-01 1.40e-01 5.28e-01 0.135 0.282 334 1 321 136 -4.11e-01 8.61e-01 1.33e-01 1.08e+00 0.494 0.139 335 2 111 136 -7.52e-01 6.37e-01 4.07e-01 1.07e+00 0.135 0.402 336 2 310 137 1.50e-01 6.42e-01 1.60e-01 8.41e-01 0.498 0.24 337 1 22 138 -6.13e-03 6.20e-02 1.75e-02 6.48e-02 0 0.277 338 1 22 138 -4.21e-01 1.02e+00 -1.60e-01 1.12e+00 0 -0.144 339 2 111 139 -1.43e-01 2.71e-01 6.59e-02 3.41e-01 0.135 0.214 340 2 111 139 -2.42e-01 2.39e-01 1.23e-01 3.86e-01 0.135 0.353 341 2 111 139 -4.00e-01 8.56e-01 2.84e-02 9.55e-01 0.135 0.03 342 1 211 141 -2.45e-01 1.13e+00 1.97e-01 1.18e+00 0.14 0.17 343 1 -211 141 -3.44e-01 1.81e+00 2.02e-01 1.86e+00 0.14 0.11 344 2 111 141 -6.68e-02 2.86e-01 2.76e-02 3.24e-01 0.135 0.0939 345 1 -211 142 -6.57e-01 1.57e+00 -2.24e-01 1.73e+00 0.14 -0.131 346 1 211 142 -6.50e-01 9.59e-01 -8.28e-01 1.43e+00 0.14 -0.665 347 2 311 143 -5.65e-01 1.13e+00 -8.36e-01 1.59e+00 0.498 -0.623 348 1 211 143 -5.44e-03 7.89e-02 -6.58e-02 1.73e-01 0.14 -0.758 349 1 -321 144 -5.49e-01 1.74e+00 -7.67e-01 2.04e+00 0.494 -0.409 350 2 111 144 -4.07e-02 8.44e-01 -8.07e-01 1.18e+00 0.135 -0.85 351 1 211 150 1.29e+00 9.48e-01 1.68e+00 2.32e+00 0.14 0.916 352 1 -211 150 5.84e-02 5.15e-02 8.51e-02 1.81e-01 0.14 0.946 353 1 321 151 1.14e+00 3.69e-01 1.31e+00 1.84e+00 0.494 0.944 354 1 -211 151 3.64e-01 4.11e-01 1.13e+00 1.27e+00 0.14 1.47 355 1 -211 152 3.06e-02 9.21e-02 4.36e-02 1.75e-01 0.14 0.436 356 1 211 152 -7.29e-02 9.20e-03 7.25e-02 1.74e-01 0.14 0.872 357 2 111 152 2.18e-01 9.49e-02 1.75e-01 3.25e-01 0.135 0.682 358 2 -311 153 5.48e-01 -1.70e-01 7.39e-01 1.06e+00 0.498 1.07 359 2 111 153 4.11e-01 3.73e-01 8.96e-01 1.06e+00 0.135 1.26 360 1 321 154 9.12e-01 8.15e-01 2.53e+00 2.85e+00 0.494 1.47 361 1 -211 154 8.28e-01 1.03e+00 4.16e+00 4.37e+00 0.14 1.86 362 2 -311 155 4.73e-01 8.70e-01 1.56e+00 1.91e+00 0.498 1.24 363 1 -211 155 4.32e-01 4.03e-02 4.75e-01 6.58e-01 0.14 0.947 364 1 130 157 1.12e+00 9.59e-01 4.00e+00 4.29e+00 0.498 1.73 365 1 -211 158 1.33e-01 1.68e-01 2.93e-01 3.89e-01 0.14 1.12 366 2 111 158 -2.99e-01 -3.66e-01 1.97e+00 2.03e+00 0.135 2.14 367 1 211 159 2.78e-01 -3.34e-01 3.85e-01 5.98e-01 0.14 0.799 368 1 -211 159 3.59e-02 -1.28e-01 1.17e-01 2.26e-01 0.14 0.797 369 2 221 159 2.02e-01 -1.78e-01 4.38e-01 7.51e-01 0.547 1.26 370 1 211 161 6.90e-01 -4.11e-01 7.71e-01 1.12e+00 0.14 0.853 371 1 -211 161 -1.89e-01 -2.04e-02 7.66e-01 8.02e-01 0.14 2.1 372 1 2212 162 6.57e-01 -9.71e-01 2.53e+00 2.94e+00 0.938 1.51 373 1 -211 162 -9.63e-03 -7.33e-02 1.13e-01 1.94e-01 0.14 1.21 374 1 22 163 1.51e-01 -1.04e+00 1.19e+00 1.59e+00 0 0.972 375 1 22 163 -2.91e-01 -3.91e-01 5.61e-01 7.43e-01 0 0.984 376 1 -2112 164 7.70e-01 -1.37e+00 3.02e+00 3.53e+00 0.94 1.41 377 2 111 164 -6.70e-02 -1.62e-01 3.08e-01 3.80e-01 0.135 1.33 378 1 22 165 2.26e-01 -9.71e-01 2.84e+00 3.01e+00 0 1.77 379 1 22 165 3.37e-01 -6.60e-01 3.86e+00 3.93e+00 0 2.35 380 1 -211 166 3.49e-01 -5.05e-02 1.56e+00 1.60e+00 0.14 2.19 381 2 111 166 3.56e-01 -9.50e-01 2.44e+00 2.64e+00 0.135 1.61 382 1 211 170 4.54e-01 -3.96e-01 3.60e+00 3.65e+00 0.14 2.49 383 2 111 170 1.77e-01 -5.21e-01 9.14e+00 9.15e+00 0.135 3.5 384 1 -211 172 -3.14e-01 -1.43e+00 1.58e+01 1.58e+01 0.14 3.07 385 2 111 172 -2.96e-01 -3.74e-01 2.84e+00 2.88e+00 0.135 2.48 386 1 211 173 -5.12e-01 1.65e-01 1.39e+01 1.39e+01 0.14 3.94 387 2 111 173 3.91e-02 -3.11e-01 1.61e+01 1.61e+01 0.135 4.63 388 1 211 174 -2.20e-01 -3.78e-01 1.04e+01 1.04e+01 0.14 3.86 389 1 -211 174 1.80e-01 -5.03e-01 1.63e+01 1.63e+01 0.14 4.11 390 2 111 174 -1.36e-01 -4.59e-01 2.03e+01 2.03e+01 0.135 4.44 391 1 -211 175 -3.60e-01 1.36e-01 1.12e+01 1.12e+01 0.14 4.07 392 1 211 175 -7.12e-02 -1.25e-01 1.64e+00 1.65e+00 0.14 3.13 393 1 -211 176 -5.13e-01 -8.82e-01 4.29e+01 4.30e+01 0.14 4.43 394 2 111 176 -7.38e-01 -2.93e-01 1.96e+01 1.96e+01 0.135 3.9 395 1 211 177 -6.34e-01 5.84e-01 2.52e+01 2.52e+01 0.14 4.07 396 2 111 177 1.72e-01 -9.21e-05 6.01e+00 6.01e+00 0.135 4.25 397 1 22 178 9.09e-01 2.64e-01 3.54e+01 3.54e+01 0 4.32 398 2 111 178 9.42e-02 5.19e-01 1.72e+01 1.72e+01 0.135 4.18 399 1 -211 179 1.80e-01 -1.46e-01 1.64e+01 1.64e+01 0.14 4.95 400 2 111 179 6.11e-03 6.17e-01 3.09e+01 3.09e+01 0.135 4.61 401 1 211 180 1.38e+00 7.77e-02 5.21e+01 5.22e+01 0.14 4.32 402 2 111 180 -4.57e-02 -1.40e-02 9.27e+00 9.27e+00 0.135 5.96 403 1 211 181 7.29e-01 4.16e-01 6.28e+01 6.28e+01 0.14 5.01 404 1 -211 181 9.59e-02 7.15e-02 5.70e+01 5.70e+01 0.14 6.86 405 1 -211 182 5.50e-02 -4.66e-01 2.19e+01 2.19e+01 0.14 4.53 406 1 211 182 8.81e-01 -1.54e+00 9.70e+01 9.70e+01 0.14 4.7 407 2 111 182 4.37e-01 -1.28e+00 8.19e+01 8.20e+01 0.135 4.79 408 1 -211 183 7.70e-01 1.27e-01 1.02e+02 1.02e+02 0.14 5.57 409 1 211 183 4.91e-02 1.40e-01 6.28e+00 6.28e+00 0.14 4.44 410 2 111 187 -2.17e-02 2.18e-02 2.08e+01 2.08e+01 0.135 7.21 411 2 111 187 6.99e-03 -8.75e-02 1.33e+01 1.33e+01 0.135 5.72 412 2 111 187 -1.41e-01 1.22e-01 4.85e+01 4.85e+01 0.135 6.25 413 1 -211 188 6.91e-02 -7.39e-02 8.57e+01 8.57e+01 0.14 7.44 414 1 211 188 1.58e-02 1.48e-02 1.82e+01 1.82e+01 0.14 7.43 415 2 111 188 2.11e-02 8.46e-02 2.68e+02 2.68e+02 0.135 8.73 416 1 211 191 -8.79e-03 -5.92e-01 6.15e+02 6.15e+02 0.14 7.64 417 1 -211 191 -1.49e-01 -8.89e-01 3.52e+02 3.52e+02 0.14 6.66 418 1 211 195 1.92e-01 1.42e-01 4.20e-01 5.03e-01 0.14 1.33 419 1 -211 195 2.48e-02 1.50e-01 3.73e-01 4.27e-01 0.14 1.63 420 2 221 195 1.01e-01 1.08e-01 4.72e-01 7.38e-01 0.547 1.88 421 1 22 199 1.49e-01 -7.26e-02 1.63e-01 2.32e-01 0 0.866 422 1 22 199 8.05e-02 2.28e-02 -2.17e-04 8.37e-02 0 -0.00259 423 1 -211 203 -7.82e-01 7.56e-01 -7.49e+00 7.57e+00 0.14 -2.63 424 2 111 203 2.33e-01 2.03e-01 -1.49e+00 1.53e+00 0.135 -2.28 425 1 2212 206 4.56e-01 -1.11e-01 -1.21e+02 1.21e+02 0.938 -6.25 426 1 211 206 -5.90e-02 1.11e-01 -1.51e+01 1.51e+01 0.14 -5.48 427 1 -2212 207 -1.31e-01 -1.79e-01 -2.97e+02 2.97e+02 0.938 -7.89 428 2 111 207 -2.25e-01 2.46e-01 -1.01e+02 1.01e+02 0.135 -6.41 429 1 2112 208 2.94e-01 8.32e-01 -1.02e+03 1.02e+03 0.94 -7.75 430 2 111 208 -7.74e-02 -4.79e-02 -9.84e+01 9.84e+01 0.135 -7.68 431 1 -211 211 7.86e-02 2.18e-01 -1.81e+00 1.83e+00 0.14 -2.75 432 2 111 211 -4.80e-01 3.55e+00 -3.25e+01 3.27e+01 0.135 -2.9 433 1 22 212 -6.12e-01 3.89e-01 -3.10e+00 3.18e+00 0 -2.16 434 2 113 212 -1.30e+00 1.67e+00 -1.41e+01 1.42e+01 0.603 -2.59 435 1 -211 214 -3.79e-01 6.75e-01 -1.17e+00 1.41e+00 0.14 -1.2 436 2 111 214 -1.47e-01 5.70e-02 -1.52e+00 1.53e+00 0.135 -2.96 437 1 22 215 -1.82e-01 -1.28e-02 -9.30e-01 9.48e-01 0 -2.33 438 1 22 215 -1.81e+00 2.98e-01 -9.34e+00 9.52e+00 0 -2.33 439 1 211 217 -6.71e-01 -4.06e-01 -4.68e+00 4.75e+00 0.14 -2.49 440 1 -211 217 -6.17e-01 -3.16e-01 -2.49e+00 2.59e+00 0.14 -1.99 441 2 111 217 -6.85e-03 -4.34e-02 -6.56e-01 6.71e-01 0.135 -3.4 442 1 211 218 -4.15e-01 -9.30e-02 -2.87e+00 2.91e+00 0.14 -2.61 443 1 -211 218 -6.42e-02 -3.60e-02 -2.23e-01 2.73e-01 0.14 -1.83 444 2 111 218 -5.40e-01 2.16e-02 -2.30e+00 2.37e+00 0.135 -2.16 445 1 22 219 -2.42e-01 -5.52e-01 -4.98e+00 5.01e+00 0 -2.81 446 1 22 219 -1.91e-01 -5.77e-01 -4.09e+00 4.14e+00 0 -2.61 447 1 -211 220 -2.52e-01 2.38e-01 -6.04e+00 6.05e+00 0.14 -3.55 448 1 211 220 2.28e-01 -1.64e-01 -1.76e+00 1.79e+00 0.14 -2.54 449 1 -2112 222 -2.63e-01 -1.14e+00 -2.46e+01 2.47e+01 0.94 -3.74 450 1 -211 222 9.78e-02 -1.62e-01 -3.12e+00 3.13e+00 0.14 -3.5 451 2 310 224 3.90e-01 -1.53e+00 -7.08e+01 7.08e+01 0.498 -4.5 452 1 211 227 -2.20e-02 -3.26e-01 -1.72e+01 1.72e+01 0.14 -4.66 453 2 111 227 -1.34e+00 -4.11e+00 -2.91e+02 2.91e+02 0.135 -4.9 454 1 2112 228 5.88e-01 -7.40e-01 -1.21e+02 1.21e+02 0.94 -5.54 455 2 111 228 1.08e-01 -1.85e-01 -8.60e+00 8.61e+00 0.135 -4.39 456 1 -2212 230 7.91e-01 -9.98e-01 -2.22e+02 2.22e+02 0.938 -5.85 457 1 -211 230 -2.02e-02 -2.31e-01 -2.51e+01 2.51e+01 0.14 -5.38 458 1 -2112 235 -7.75e-01 1.06e-01 -1.08e+02 1.08e+02 0.94 -5.62 459 1 211 235 -9.99e-02 -1.41e-01 -5.10e+01 5.10e+01 0.14 -6.38 460 1 -211 236 -1.73e+00 -2.24e-02 -1.63e+02 1.63e+02 0.14 -5.24 461 2 111 236 -4.38e-01 -3.06e-01 -4.97e+01 4.98e+01 0.135 -5.23 462 1 2112 238 -3.06e-01 8.01e-01 -1.92e+02 1.92e+02 0.94 -6.1 463 1 -211 238 -2.20e-01 1.19e-01 -2.96e+01 2.96e+01 0.14 -5.47 464 1 -2112 239 -8.86e-01 9.69e-01 -2.16e+02 2.16e+02 0.94 -5.79 465 1 211 239 -3.68e-01 5.09e-01 -7.15e+01 7.15e+01 0.14 -5.43 466 1 321 240 7.97e-02 9.92e-01 -4.12e+01 4.12e+01 0.494 -4.42 467 1 -211 240 2.10e-02 5.41e-02 -1.64e+00 1.64e+00 0.14 -4.03 468 1 -321 241 -5.36e-02 6.42e-01 -9.61e+01 9.61e+01 0.494 -5.7 469 1 211 241 -3.38e-01 7.80e-01 -6.35e+01 6.35e+01 0.14 -5.01 470 1 22 245 1.83e-01 1.59e-01 1.38e+00 1.40e+00 0 2.44 471 1 22 245 5.79e-02 8.85e-03 1.23e-01 1.36e-01 0 1.49 472 1 -211 246 5.82e-01 -7.55e-01 4.67e+00 4.77e+00 0.14 2.29 473 1 211 246 5.31e-01 -2.34e-01 3.44e+00 3.49e+00 0.14 2.48 474 2 111 246 4.55e-01 -1.12e-01 1.87e+00 1.94e+00 0.135 2.09 475 1 22 248 1.59e+00 -1.34e-01 6.80e+00 6.99e+00 0 2.15 476 1 22 248 3.03e-02 -2.20e-02 1.40e-01 1.44e-01 0 2.03 477 1 22 249 8.15e-02 4.08e-02 1.88e-01 2.09e-01 0 1.47 478 2 113 249 -5.27e-02 -1.72e-01 8.60e+00 8.64e+00 0.722 4.56 479 1 -211 250 -1.15e-01 1.36e-01 1.37e+00 1.39e+00 0.14 2.74 480 1 211 250 3.97e-01 1.10e-01 1.44e+01 1.44e+01 0.14 4.25 481 1 22 251 5.23e-02 1.10e-01 1.41e-01 1.87e-01 0 0.989 482 1 22 251 3.39e-02 1.32e-01 4.82e-01 5.01e-01 0 1.98 483 1 22 252 -9.25e-01 -3.08e-01 3.64e+00 3.77e+00 0 2.03 484 1 22 252 -1.92e-01 -5.02e-02 5.40e-01 5.75e-01 0 1.73 485 1 22 253 5.44e-02 -3.07e-01 1.66e+00 1.69e+00 0 2.37 486 1 22 253 2.14e-01 -2.40e-01 3.20e-01 4.54e-01 0 0.877 487 1 22 255 -2.95e-01 1.24e-01 7.29e-02 3.28e-01 0 0.226 488 1 22 255 -1.69e+00 1.08e+00 4.14e-01 2.04e+00 0 0.205 489 1 -211 257 1.40e+00 -1.12e-01 -1.89e+01 1.90e+01 0.14 -3.3 490 2 111 257 4.30e-01 1.68e-01 -1.26e+01 1.26e+01 0.135 -4 491 1 211 258 1.87e-01 6.51e-02 -7.11e+00 7.11e+00 0.14 -4.27 492 2 111 258 -1.42e-01 -2.62e-03 -4.71e+00 4.71e+00 0.135 -4.19 493 1 211 260 1.51e-01 3.27e-02 -4.44e+00 4.44e+00 0.14 -4.05 494 2 111 260 -8.30e-01 -1.05e-01 -1.59e+01 1.59e+01 0.135 -3.64 495 1 211 265 2.08e-02 -8.84e-02 -9.18e-01 9.33e-01 0.14 -3.01 496 1 -211 265 4.00e-01 9.58e-01 -4.12e+00 4.25e+00 0.14 -2.09 497 1 211 267 -6.66e-02 -3.87e-02 -5.39e-01 5.62e-01 0.14 -2.64 498 2 111 267 -5.98e-02 -8.11e-01 -6.50e-01 1.05e+00 0.135 -0.732 499 1 321 269 -9.92e-02 4.04e-01 -7.53e-01 9.92e-01 0.494 -1.35 500 1 -211 269 -1.86e-01 -1.79e-01 -1.51e-01 3.30e-01 0.14 -0.554 501 1 22 270 4.74e-01 7.93e-02 -4.74e+00 4.76e+00 0 -2.98 502 1 22 270 -6.19e-02 1.45e-01 -4.93e+00 4.93e+00 0 -4.14 503 2 -311 271 -8.01e-01 2.22e-01 -2.11e+00 2.32e+00 0.498 -1.66 504 2 111 271 8.64e-02 -9.54e-02 -1.33e+00 1.34e+00 0.135 -3.03 505 1 -211 272 1.42e-01 1.70e-02 -5.51e+00 5.51e+00 0.14 -4.34 506 1 211 272 -1.41e-02 8.51e-02 -3.91e+01 3.91e+01 0.14 -6.81 507 2 111 272 1.67e-01 -1.09e-01 -1.72e+01 1.73e+01 0.135 -5.15 508 1 211 273 -2.58e-01 3.37e-02 -7.14e+00 7.15e+00 0.14 -4 509 1 -211 273 1.17e-01 -1.73e-01 -7.34e+00 7.34e+00 0.14 -4.25 510 2 111 273 6.94e-02 -1.28e-01 -3.35e+00 3.35e+00 0.135 -3.83 511 1 -211 274 -1.20e-01 -4.28e-01 -5.42e+01 5.42e+01 0.14 -5.5 512 1 211 274 6.41e-01 -3.59e-01 -7.58e+01 7.58e+01 0.14 -5.33 513 1 -321 276 -4.84e-03 3.55e-01 -2.30e+02 2.30e+02 0.494 -7.17 514 1 211 276 7.96e-02 3.22e-01 -3.32e+02 3.32e+02 0.14 -7.6 515 1 22 277 4.27e-03 -1.25e-02 -7.89e+00 7.89e+00 0 -7.09 516 1 22 277 3.16e-01 -2.29e-01 -4.68e+01 4.68e+01 0 -5.48 517 2 311 279 2.41e-01 -1.69e-01 -3.56e+01 3.56e+01 0.498 -5.49 518 1 211 279 2.29e-01 2.95e-01 -1.46e+01 1.46e+01 0.14 -4.36 519 2 -311 280 -1.95e-01 -2.99e-02 -1.57e+01 1.57e+01 0.498 -5.07 520 1 -211 280 -9.87e-02 -7.92e-02 -9.83e-01 1.00e+00 0.14 -2.75 521 2 111 282 -4.78e-02 -1.17e-01 -6.71e-01 6.96e-01 0.135 -2.37 522 2 111 282 2.74e-03 -2.56e-01 -6.56e-01 7.17e-01 0.135 -1.67 523 2 111 282 2.21e-01 -2.33e-01 -1.09e+00 1.15e+00 0.135 -1.94 524 1 22 284 2.89e-01 5.51e-01 8.88e+00 8.90e+00 0 3.35 525 1 22 284 1.09e+00 2.29e+00 3.27e+01 3.28e+01 0 3.25 526 1 22 286 -8.20e-03 2.02e-03 -6.34e-03 1.06e-02 0 -0.694 527 1 22 286 2.85e-01 -2.09e-01 2.65e-01 4.42e-01 0 0.694 528 1 22 288 -2.22e-01 -1.25e-02 -2.73e-02 2.24e-01 0 -0.122 529 1 22 288 -3.91e-01 -4.83e-02 -2.37e-01 4.60e-01 0 -0.569 530 1 22 291 -1.37e-01 -1.18e-01 -1.02e-01 2.08e-01 0 -0.534 531 1 22 291 2.55e-02 -1.71e-02 9.45e-03 3.21e-02 0 0.304 532 1 22 295 -1.03e-01 -1.75e-01 -3.13e-01 3.73e-01 0 -1.22 533 1 22 295 -1.02e-01 -2.76e-01 -2.23e-01 3.69e-01 0 -0.7 534 1 22 300 9.02e-02 7.34e-02 -3.67e-01 3.85e-01 0 -1.87 535 1 22 300 3.94e-01 1.86e-02 -1.15e+00 1.21e+00 0 -1.79 536 1 22 305 2.58e-01 1.70e-01 -6.60e+00 6.61e+00 0 -3.75 537 1 22 305 1.60e-01 8.61e-03 -2.52e+00 2.52e+00 0 -3.45 538 1 22 307 3.07e-01 -2.14e-02 -1.98e+00 2.00e+00 0 -2.56 539 1 22 307 6.42e-02 -5.37e-02 -9.52e-01 9.56e-01 0 -3.13 540 1 22 310 2.81e-02 2.31e-02 -6.42e-03 3.70e-02 0 -0.175 541 1 22 310 2.56e-01 -9.70e-02 -3.45e-01 4.40e-01 0 -1.05 542 1 22 312 -4.17e-01 2.01e-01 -1.12e+00 1.22e+00 0 -1.62 543 1 22 312 -5.37e-01 9.87e-02 -1.37e+00 1.47e+00 0 -1.65 544 1 22 315 3.33e-02 2.17e-02 -7.55e-02 8.54e-02 0 -1.4 545 1 22 315 -2.60e-04 -1.46e-01 -3.41e-01 3.71e-01 0 -1.58 546 1 22 319 -5.35e-01 -4.66e-02 -1.19e+00 1.31e+00 0 -1.54 547 1 22 319 -3.49e-01 -3.02e-02 -5.45e-01 6.48e-01 0 -1.23 548 1 22 323 1.10e-02 -6.39e-01 -6.63e-01 9.21e-01 0 -0.907 549 1 22 323 -1.08e-01 -5.20e-01 -6.03e-01 8.04e-01 0 -0.974 550 1 22 325 1.05e-01 -3.45e-03 2.36e-01 2.58e-01 0 1.54 551 1 22 325 1.09e-01 4.73e-02 5.85e-02 1.33e-01 0 0.473 552 1 22 327 -1.98e-01 -2.65e-01 -1.75e-01 3.74e-01 0 -0.507 553 1 22 327 -8.11e-02 -3.10e-01 -2.30e-01 3.94e-01 0 -0.666 554 1 22 333 -4.43e-02 -8.62e-02 8.35e-02 1.28e-01 0 0.78 555 1 22 333 -2.57e-01 -3.01e-01 5.66e-02 4.00e-01 0 0.142 556 1 22 335 -1.49e-02 1.59e-02 3.57e-02 4.18e-02 0 1.27 557 1 22 335 -7.37e-01 6.21e-01 3.71e-01 1.03e+00 0 0.376 558 1 -211 336 -2.66e-02 4.68e-01 -4.45e-02 4.92e-01 0.14 -0.0947 559 1 211 336 1.76e-01 1.74e-01 2.04e-01 3.50e-01 0.14 0.752 560 1 22 339 -9.10e-02 8.88e-02 8.19e-02 1.51e-01 0 0.606 561 1 22 339 -5.24e-02 1.82e-01 -1.60e-02 1.90e-01 0 -0.0843 562 1 22 340 -2.33e-01 2.39e-01 8.08e-02 3.43e-01 0 0.24 563 1 22 340 -8.81e-03 4.19e-04 4.17e-02 4.26e-02 0 2.26 564 1 22 341 -3.88e-01 8.00e-01 -4.08e-03 8.89e-01 0 -0.00459 565 1 22 341 -1.23e-02 5.66e-02 3.25e-02 6.64e-02 0 0.535 566 1 22 344 -2.23e-02 4.37e-02 -4.61e-02 6.73e-02 0 -0.837 567 1 22 344 -4.45e-02 2.42e-01 7.37e-02 2.57e-01 0 0.295 568 1 130 347 -5.65e-01 1.13e+00 -8.36e-01 1.59e+00 0.498 -0.623 569 1 22 350 1.48e-02 5.55e-01 -5.94e-01 8.13e-01 0 -0.929 570 1 22 350 -5.54e-02 2.88e-01 -2.14e-01 3.63e-01 0 -0.675 571 1 22 357 1.12e-01 1.10e-01 6.23e-02 1.69e-01 0 0.387 572 1 22 357 1.06e-01 -1.54e-02 1.13e-01 1.56e-01 0 0.917 573 1 130 358 5.48e-01 -1.70e-01 7.39e-01 1.06e+00 0.498 1.07 574 1 22 359 3.34e-01 2.49e-01 5.75e-01 7.10e-01 0 1.13 575 1 22 359 7.73e-02 1.25e-01 3.21e-01 3.53e-01 0 1.52 576 1 130 362 4.73e-01 8.70e-01 1.56e+00 1.91e+00 0.498 1.24 577 1 22 366 -5.47e-02 -1.13e-01 3.29e-01 3.52e-01 0 1.69 578 1 22 366 -2.44e-01 -2.53e-01 1.64e+00 1.68e+00 0 2.25 579 1 22 369 -1.61e-01 -6.07e-02 2.99e-01 3.45e-01 0 1.32 580 1 22 369 3.63e-01 -1.17e-01 1.38e-01 4.05e-01 0 0.355 581 1 22 377 1.39e-02 -1.34e-01 1.75e-01 2.21e-01 0 1.08 582 1 22 377 -8.10e-02 -2.75e-02 1.33e-01 1.58e-01 0 1.23 583 1 22 381 2.29e-01 -4.69e-01 1.13e+00 1.25e+00 0 1.52 584 1 22 381 1.26e-01 -4.81e-01 1.31e+00 1.40e+00 0 1.69 585 1 22 383 7.53e-02 -3.05e-01 6.14e+00 6.15e+00 0 3.67 586 1 22 383 1.02e-01 -2.17e-01 2.99e+00 3.00e+00 0 3.22 587 1 22 385 -2.17e-01 -2.94e-01 2.44e+00 2.47e+00 0 2.6 588 1 22 385 -7.89e-02 -8.07e-02 3.93e-01 4.09e-01 0 1.96 589 1 22 387 5.40e-02 -3.15e-01 1.58e+01 1.58e+01 0 4.59 590 1 22 387 -1.49e-02 4.31e-03 3.19e-01 3.20e-01 0 3.72 591 1 22 390 -6.50e-02 -6.51e-02 2.78e+00 2.79e+00 0 4.1 592 1 22 390 -7.06e-02 -3.94e-01 1.75e+01 1.75e+01 0 4.47 593 1 22 394 -5.71e-01 -2.44e-01 1.65e+01 1.65e+01 0 3.97 594 1 22 394 -1.66e-01 -4.89e-02 3.10e+00 3.10e+00 0 3.58 595 1 22 396 8.31e-02 1.39e-02 1.13e+00 1.13e+00 0 3.29 596 1 22 396 8.85e-02 -1.40e-02 4.88e+00 4.88e+00 0 4.69 597 1 22 398 -1.70e-02 2.12e-01 5.67e+00 5.68e+00 0 3.98 598 1 22 398 1.11e-01 3.07e-01 1.16e+01 1.16e+01 0 4.26 599 1 22 400 6.26e-02 4.30e-01 2.03e+01 2.03e+01 0 4.54 600 1 22 400 -5.65e-02 1.87e-01 1.07e+01 1.07e+01 0 4.7 601 1 22 402 -1.41e-02 6.00e-02 3.45e+00 3.45e+00 0 4.72 602 1 22 402 -3.16e-02 -7.39e-02 5.82e+00 5.82e+00 0 4.98 603 1 22 407 3.70e-01 -9.94e-01 6.10e+01 6.10e+01 0 4.74 604 1 22 407 6.74e-02 -2.90e-01 2.10e+01 2.10e+01 0 4.95 605 1 22 410 4.74e-02 4.05e-03 3.63e+00 3.63e+00 0 5.03 606 1 22 410 -6.91e-02 1.78e-02 1.72e+01 1.72e+01 0 6.18 607 1 22 411 4.26e-02 1.84e-02 2.86e+00 2.87e+00 0 4.82 608 1 22 411 -3.56e-02 -1.06e-01 1.05e+01 1.05e+01 0 5.23 609 1 22 412 -1.34e-01 1.40e-01 4.72e+01 4.72e+01 0 6.19 610 1 22 412 -7.73e-03 -1.80e-02 1.28e+00 1.28e+00 0 4.87 611 1 22 415 7.86e-02 5.42e-02 1.65e+02 1.65e+02 0 8.15 612 1 22 415 -5.75e-02 3.04e-02 1.03e+02 1.03e+02 0 8.07 613 2 111 420 -1.00e-01 6.53e-02 2.38e-01 2.98e-01 0.135 1.44 614 2 111 420 1.48e-01 8.95e-02 1.33e-01 2.57e-01 0.135 0.71 615 2 111 420 5.30e-02 -4.67e-02 1.01e-01 1.83e-01 0.135 1.16 616 1 22 424 1.34e-01 9.46e-02 -1.08e+00 1.09e+00 0 -2.58 617 1 22 424 9.84e-02 1.08e-01 -4.14e-01 4.39e-01 0 -1.76 618 1 22 428 -2.33e-01 2.50e-01 -9.17e+01 9.17e+01 0 -6.29 619 1 22 428 7.91e-03 -3.29e-03 -9.60e+00 9.60e+00 0 -7.72 620 1 22 430 -5.79e-02 3.10e-02 -2.38e+01 2.38e+01 0 -6.59 621 1 22 430 -1.96e-02 -7.89e-02 -7.46e+01 7.46e+01 0 -7.51 622 1 22 432 -4.41e-01 3.05e+00 -2.83e+01 2.85e+01 0 -2.91 623 1 22 432 -3.87e-02 5.01e-01 -4.23e+00 4.26e+00 0 -2.83 624 1 -211 434 -8.34e-01 6.94e-01 -7.91e+00 7.98e+00 0.14 -2.68 625 1 211 434 -4.64e-01 9.74e-01 -6.15e+00 6.25e+00 0.14 -2.44 626 1 22 436 -1.08e-01 8.59e-02 -7.51e-01 7.64e-01 0 -2.39 627 1 22 436 -3.91e-02 -2.89e-02 -7.69e-01 7.70e-01 0 -3.45 628 1 22 441 -1.33e-02 3.56e-02 -6.80e-02 7.79e-02 0 -1.35 629 1 22 441 6.47e-03 -7.89e-02 -5.88e-01 5.93e-01 0 -2.7 630 1 22 444 -4.11e-01 6.21e-02 -1.87e+00 1.92e+00 0 -2.21 631 1 22 444 -1.30e-01 -4.05e-02 -4.29e-01 4.50e-01 0 -1.87 632 1 -211 451 1.98e-02 -2.90e-01 -9.34e+00 9.35e+00 0.14 -4.16 633 1 211 451 3.70e-01 -1.24e+00 -6.14e+01 6.15e+01 0.14 -4.56 634 1 22 453 -6.56e-01 -2.14e+00 -1.54e+02 1.54e+02 0 -4.93 635 1 22 453 -6.83e-01 -1.97e+00 -1.37e+02 1.37e+02 0 -4.88 636 1 22 455 5.78e-02 -1.91e-01 -7.27e+00 7.27e+00 0 -4.29 637 1 22 455 5.05e-02 6.73e-03 -1.33e+00 1.33e+00 0 -3.96 638 1 22 461 -3.94e-01 -2.99e-01 -4.78e+01 4.78e+01 0 -5.26 639 1 22 461 -4.34e-02 -6.59e-03 -1.99e+00 1.99e+00 0 -4.51 640 1 22 474 9.90e-02 -8.11e-02 5.83e-01 5.97e-01 0 2.22 641 1 22 474 3.56e-01 -3.12e-02 1.29e+00 1.34e+00 0 2 642 1 211 478 -2.46e-01 1.56e-01 2.95e+00 2.97e+00 0.14 3.01 643 1 -211 478 1.93e-01 -3.28e-01 5.66e+00 5.67e+00 0.14 3.39 644 1 22 490 1.88e-01 5.99e-02 -7.15e+00 7.15e+00 0 -4.28 645 1 22 490 2.42e-01 1.08e-01 -5.42e+00 5.42e+00 0 -3.71 646 1 22 492 -1.71e-02 -3.28e-02 -2.54e+00 2.54e+00 0 -4.92 647 1 22 492 -1.25e-01 3.02e-02 -2.17e+00 2.17e+00 0 -3.52 648 1 22 494 -4.09e-01 -4.39e-02 -6.55e+00 6.56e+00 0 -3.46 649 1 22 494 -4.21e-01 -6.08e-02 -9.31e+00 9.32e+00 0 -3.78 650 1 22 498 -1.52e-02 -7.41e-01 -5.91e-01 9.48e-01 0 -0.731 651 1 22 498 -4.45e-02 -7.00e-02 -5.84e-02 1.01e-01 0 -0.655 652 1 130 503 -8.01e-01 2.22e-01 -2.11e+00 2.32e+00 0.498 -1.66 653 1 22 504 9.21e-02 -6.11e-02 -1.26e+00 1.26e+00 0 -3.13 654 1 22 504 -5.69e-03 -3.43e-02 -6.97e-02 7.79e-02 0 -1.45 655 1 22 507 6.75e-02 -1.23e-01 -1.02e+01 1.02e+01 0 -4.98 656 1 22 507 9.95e-02 1.40e-02 -7.05e+00 7.05e+00 0 -4.94 657 1 22 510 4.62e-03 1.38e-02 -4.72e-02 4.94e-02 0 -1.89 658 1 22 510 6.47e-02 -1.42e-01 -3.30e+00 3.30e+00 0 -3.75 659 2 310 517 2.41e-01 -1.69e-01 -3.56e+01 3.56e+01 0.498 -5.49 660 1 130 519 -1.95e-01 -2.99e-02 -1.57e+01 1.57e+01 0.498 -5.07 661 1 22 521 4.33e-02 -1.03e-02 -1.61e-01 1.67e-01 0 -2 662 1 22 521 -9.11e-02 -1.07e-01 -5.10e-01 5.29e-01 0 -2 663 1 22 522 4.14e-03 -1.80e-01 -2.77e-01 3.30e-01 0 -1.21 664 1 22 522 -1.40e-03 -7.57e-02 -3.79e-01 3.87e-01 0 -2.31 665 1 22 523 4.11e-03 1.69e-02 -5.38e-02 5.66e-02 0 -1.85 666 1 22 523 2.17e-01 -2.50e-01 -1.04e+00 1.09e+00 0 -1.86 667 1 22 613 -9.26e-02 9.07e-02 1.16e-01 1.74e-01 0 0.807 668 1 22 613 -7.51e-03 -2.54e-02 1.21e-01 1.24e-01 0 2.23 669 1 22 614 9.89e-02 1.21e-01 7.32e-02 1.73e-01 0 0.452 670 1 22 614 4.92e-02 -3.18e-02 6.02e-02 8.40e-02 0 0.901 671 1 22 615 2.69e-02 -1.40e-03 1.23e-01 1.26e-01 0 2.23 672 1 22 615 2.62e-02 -4.53e-02 -2.20e-02 5.67e-02 0 -0.409 673 1 -211 659 -6.75e-02 -1.01e-02 -1.83e+01 1.83e+01 0.14 -6.28 674 1 211 659 3.09e-01 -1.59e-01 -1.74e+01 1.74e+01 0.14 -4.61 56 Event 809 particles 1 3 2212 0 0.00e+00 0.00e+00 7.00e+03 7.00e+03 0.938 999 2 3 2212 0 0.00e+00 0.00e+00 -7.00e+03 7.00e+03 0.938 -999 3 3 21 1 6.30e-01 -1.56e+00 1.95e+01 1.95e+01 0 3.14 4 3 1 2 7.94e-01 1.29e+00 -2.14e+03 2.14e+03 0 -7.95 5 3 -2 3 1.00e+01 -1.03e+00 -3.08e+00 1.05e+01 0 -0.302 6 3 1 4 1.17e+00 2.68e+00 -1.78e+03 1.78e+03 0 -7.1 7 3 22 5 7.92e+00 -5.74e+01 -5.31e+02 5.34e+02 0 -2.91 8 3 -24 5 3.25e+00 5.90e+01 -1.25e+03 1.25e+03 85 -3.74 9 1 22 7 7.92e+00 -5.74e+01 -5.31e+02 5.34e+02 0 -2.91 10 2 -24 8 3.25e+00 5.90e+01 -1.25e+03 1.25e+03 85 -3.74 11 1 11 10 3.89e+01 9.96e+00 -6.43e+02 6.45e+02 0.00051 -3.47 12 1 -12 10 -3.56e+01 4.91e+01 -6.04e+02 6.07e+02 0 -2.99 13 2 2 3 -1.05e+00 -5.43e-01 7.06e-01 1.42e+00 0.33 0.567 14 2 21 3 4.95e-01 4.00e-01 1.29e+00 1.44e+00 0 1.45 15 2 21 3 -6.35e-02 -6.02e-01 3.31e+00 3.37e+00 0 2.4 16 2 2101 1 -1.79e-01 3.61e-01 3.89e+03 3.89e+03 0.579 9.87 17 2 2 0 -2.45e+00 -9.39e-01 -1.02e+01 1.05e+01 0 -2.06 18 2 21 0 -1.51e+00 -5.72e-01 -1.09e+01 1.10e+01 0 -2.61 19 2 21 0 9.18e-01 -2.29e-01 -2.72e+01 2.72e+01 0 -4.05 20 2 -2 0 2.45e+00 9.39e-01 -5.90e+01 5.91e+01 0 -3.81 21 2 2 1 -4.51e-01 1.20e+00 1.01e+01 1.02e+01 0.33 2.76 22 2 21 3 -2.76e-01 3.49e-01 1.10e+00 1.19e+00 0 1.64 23 2 21 3 4.63e-01 -1.30e+00 8.25e+00 8.37e+00 0 2.49 24 2 21 3 -5.59e-02 2.88e+00 -2.00e+01 2.02e+01 0 -2.63 25 2 21 3 -1.30e-01 9.37e-01 -2.62e+00 2.78e+00 0 -1.74 26 2 21 3 -1.95e+00 7.00e-01 -1.64e+01 1.66e+01 0 -2.77 27 2 21 3 -3.02e-01 1.74e-01 -9.56e+00 9.56e+00 0 -4.01 28 2 21 3 -2.13e+00 6.31e-01 -1.35e+01 1.37e+01 0 -2.5 29 2 21 3 -4.29e+00 -6.04e-01 -2.89e+01 2.92e+01 0 -2.6 30 2 21 3 -3.01e-01 -1.96e+00 -8.30e+01 8.31e+01 0 -4.43 31 2 21 3 3.17e-01 -1.30e+00 -1.95e+01 1.95e+01 0 -3.37 32 2 21 0 2.29e+00 -5.39e-01 5.49e+00 5.97e+00 0 1.58 33 2 21 0 3.83e+00 3.66e+00 1.56e+01 1.64e+01 0 1.8 34 2 21 0 2.63e+00 2.57e+00 7.94e+00 8.75e+00 0 1.51 35 2 21 0 5.76e-01 9.81e-01 1.98e+00 2.29e+00 0 1.32 36 2 21 0 -5.39e-02 2.74e-01 5.46e-01 6.13e-01 0 1.42 37 2 21 0 -2.56e-02 1.30e+00 3.31e+00 3.56e+00 0 1.66 38 2 21 0 3.37e-02 -2.22e+00 9.19e+00 9.45e+00 0 2.13 39 2 21 0 2.52e+00 -1.30e+00 2.32e+01 2.33e+01 0 2.8 40 2 21 0 1.14e+00 -1.07e+00 1.68e+01 1.68e+01 0 3.07 41 2 21 0 2.46e+00 -3.31e+00 4.13e+01 4.15e+01 0 3 42 2 21 0 1.88e+00 1.19e+00 2.62e+01 2.63e+01 0 3.16 43 2 21 0 -5.76e-01 -9.81e-01 3.45e+01 3.45e+01 0 4.1 44 2 21 0 -1.41e+00 -1.14e+00 8.80e+01 8.80e+01 0 4.58 45 2 21 0 2.56e-02 -1.30e+00 2.32e+02 2.32e+02 0 5.87 46 2 21 0 -2.52e-01 -2.67e-01 6.62e+02 6.62e+02 0 8.19 47 2 21 0 1.41e+00 1.14e+00 1.39e+03 1.39e+03 0 7.33 48 2 21 0 2.52e-01 2.67e-01 5.47e+01 5.47e+01 0 5.7 49 2 21 0 9.31e-01 6.87e-01 1.28e+02 1.28e+02 0 5.4 50 2 21 0 -3.37e-02 2.22e+00 4.02e+01 4.03e+01 0 3.59 51 2 21 0 -1.83e+00 4.01e+00 7.03e+01 7.04e+01 0 3.46 52 2 21 0 -4.25e+00 2.20e+00 9.34e+01 9.36e+01 0 3.67 53 2 21 0 -1.80e+00 2.34e-01 1.85e+01 1.86e+01 0 3.02 54 2 21 0 -9.31e-01 -6.87e-01 8.63e+00 8.71e+00 0 2.71 55 2 21 0 -6.33e+00 -1.48e+00 2.76e+01 2.84e+01 0 2.15 56 2 21 0 -2.63e+00 -2.57e+00 8.31e+00 9.08e+00 0 1.55 57 2 21 0 -2.52e+00 1.30e+00 9.17e+00 9.59e+00 0 1.89 58 2 21 0 -3.48e-01 5.70e-01 2.33e+00 2.42e+00 0 1.96 59 2 21 0 2.31e-02 3.29e-01 2.26e+00 2.28e+00 0 2.62 60 2 21 0 -4.27e-01 5.33e-01 2.47e+00 2.56e+00 0 2 61 2 21 0 -2.72e+00 2.71e+00 7.46e+00 8.39e+00 0 1.42 62 2 21 0 -2.29e+00 5.39e-01 3.95e+00 4.60e+00 0 1.29 63 2 21 0 -2.29e+00 -4.02e-01 2.51e+00 3.42e+00 0 0.935 64 2 21 0 -1.88e+00 -1.19e+00 1.31e+00 2.58e+00 0 0.561 65 2 21 0 -1.14e+00 1.07e+00 7.68e-01 1.74e+00 0 0.474 66 2 21 0 -2.01e+00 1.20e+00 5.59e-01 2.40e+00 0 0.237 67 2 21 0 -9.18e-01 2.29e-01 -3.93e-01 1.02e+00 0 -0.404 68 2 21 0 -2.22e+00 2.29e-01 -9.06e-01 2.41e+00 0 -0.395 69 2 21 0 -6.92e-01 -1.83e+00 1.06e+00 2.22e+00 0 0.52 70 2 21 0 1.10e+00 -1.48e+00 8.11e-01 2.01e+00 0 0.427 71 2 21 0 2.72e+00 -2.71e+00 2.04e+00 4.35e+00 0 0.51 72 2 21 0 1.51e+00 5.72e-01 3.49e-01 1.65e+00 0 0.214 73 2 21 0 2.29e+00 4.02e-01 -1.03e+00 2.54e+00 0 -0.429 74 2 21 0 4.25e+00 -2.20e+00 -3.21e+00 5.76e+00 0 -0.629 75 2 21 0 1.80e+00 -2.34e-01 -2.51e+00 3.10e+00 0 -1.13 76 2 21 0 4.27e-01 -5.33e-01 -3.35e+00 3.41e+00 0 -2.29 77 2 21 0 3.48e-01 -5.70e-01 -1.82e+00 1.94e+00 0 -1.73 78 2 21 0 5.39e-02 -2.74e-01 -6.54e-01 7.11e-01 0 -1.59 79 2 21 0 -2.31e-02 -3.29e-01 -3.19e-01 4.59e-01 0 -0.859 80 2 21 0 -9.33e-01 -8.36e+00 -1.45e+01 1.68e+01 0 -1.31 81 2 21 0 -4.04e+00 -9.56e+00 -2.88e+01 3.06e+01 0 -1.74 82 2 21 0 -3.83e+00 -3.66e+00 -1.37e+01 1.47e+01 0 -1.68 83 2 21 0 -1.84e+00 3.51e-01 -4.76e+00 5.12e+00 0 -1.66 84 2 21 0 -2.46e+00 3.31e+00 -1.66e+01 1.71e+01 0 -2.1 85 2 21 0 -4.32e-01 3.17e-01 -2.31e+00 2.37e+00 0 -2.17 86 2 21 0 -2.23e+00 1.47e+00 -1.56e+01 1.58e+01 0 -2.46 87 2 21 0 -2.57e+00 2.49e+00 -4.97e+01 4.98e+01 0 -3.33 88 2 21 0 -1.10e+00 1.48e+00 -5.47e+01 5.47e+01 0 -4.08 89 2 21 0 -1.82e+00 1.32e-01 -2.26e+02 2.26e+02 0 -5.51 90 2 21 0 -1.44e+00 -1.59e+00 -7.52e+01 7.52e+01 0 -4.25 91 2 21 0 -1.96e+00 -2.45e+00 -1.25e+02 1.25e+02 0 -4.38 92 2 21 0 1.83e+00 -4.01e+00 -6.85e+01 6.86e+01 0 -3.44 93 2 21 0 2.57e+00 -2.49e+00 -5.42e+01 5.43e+01 0 -3.41 94 2 21 0 2.01e+00 -1.20e+00 -2.22e+01 2.23e+01 0 -2.94 95 2 21 0 4.32e-01 -3.17e-01 -4.66e+00 4.69e+00 0 -2.86 96 2 21 0 1.84e+00 -3.51e-01 -2.60e+01 2.61e+01 0 -3.32 97 2 21 0 2.22e+00 -2.29e-01 -2.64e+01 2.65e+01 0 -3.17 98 2 21 0 1.44e+00 1.59e+00 -1.71e+01 1.73e+01 0 -2.77 99 2 21 0 6.92e-01 1.83e+00 -1.62e+01 1.64e+01 0 -2.81 100 2 21 0 4.04e+00 9.56e+00 -1.72e+02 1.73e+02 0 -3.5 101 2 21 0 9.33e-01 8.36e+00 -1.45e+02 1.45e+02 0 -3.54 102 2 21 0 6.33e+00 1.48e+00 -3.36e+02 3.36e+02 0 -4.64 103 2 21 0 2.23e+00 -1.47e+00 -7.43e+02 7.43e+02 0 -6.32 104 2 21 0 1.82e+00 -1.32e-01 -7.14e+02 7.14e+02 0 -6.66 105 2 21 0 1.96e+00 2.45e+00 -5.52e+02 5.52e+02 0 -5.86 106 2 21 4 -1.45e-01 -1.08e+00 -1.43e+02 1.43e+02 0 -5.57 107 2 21 4 -3.35e-01 -6.14e-01 -2.11e+01 2.11e+01 0 -4.1 108 2 2203 2 -7.94e-01 -1.29e+00 -1.20e+03 1.20e+03 0.771 -7.37 109 2 21 0 5.14e-01 -3.22e-01 7.07e+00 7.09e+00 0 3.15 110 2 21 0 -5.14e-01 3.22e-01 1.23e+01 1.23e+01 0 3.7 111 2 92 13 -7.97e-01 -3.83e-01 3.90e+03 3.90e+03 84.3 9.08 112 2 221 111 -1.94e-01 1.26e-01 3.19e-03 5.94e-01 0.547 0.0138 113 2 223 111 -5.46e-01 -1.13e+00 6.53e+00 6.70e+00 0.779 2.35 114 2 213 111 -3.94e-01 -3.27e-02 8.41e+00 8.45e+00 0.81 3.75 115 1 -211 111 6.21e-01 3.38e-01 3.52e+00 3.59e+00 0.14 2.31 116 2 223 111 3.77e-01 2.27e-01 2.55e+01 2.55e+01 0.779 4.75 117 2 113 111 -8.25e-01 -2.04e-01 6.11e+01 6.11e+01 0.927 4.97 118 2 213 111 7.45e-01 -3.70e-01 2.17e+02 2.17e+02 0.822 6.26 119 1 -211 111 -3.13e-01 -1.04e-01 1.56e+02 1.56e+02 0.14 6.85 120 2 2214 111 -9.50e-02 7.54e-01 1.51e+03 1.51e+03 1.22 8.29 121 2 -2214 111 8.38e-02 -5.97e-01 4.66e+02 4.66e+02 1.27 7.34 122 1 2212 111 -2.56e-01 6.14e-01 1.45e+03 1.45e+03 0.938 8.38 123 2 92 17 -5.94e-01 -8.01e-01 -1.07e+02 1.08e+02 10.6 -5.37 124 2 221 123 -1.43e+00 -3.17e-01 -9.76e+00 9.89e+00 0.547 -2.59 125 1 211 123 -4.55e-01 -9.43e-01 -4.80e+00 4.92e+00 0.14 -2.23 126 2 111 123 -1.05e+00 5.26e-02 -4.80e+00 4.92e+00 0.135 -2.23 127 2 113 123 -5.43e-01 -2.21e-01 -6.11e+00 6.19e+00 0.79 -3.04 128 2 311 123 5.14e-02 3.48e-01 -1.71e+01 1.71e+01 0.498 -4.58 129 1 -321 123 1.68e+00 -2.15e-01 -2.97e+01 2.97e+01 0.494 -3.56 130 2 223 123 1.15e+00 4.96e-01 -3.51e+01 3.51e+01 0.78 -4.03 131 2 92 21 -9.78e+00 -4.65e-01 -2.03e+03 8.19e+03 7.94e+03 -6.03 132 2 111 131 -9.54e-02 9.20e-01 3.73e+00 3.84e+00 0.135 2.1 133 2 113 131 1.71e-01 -8.83e-01 9.35e+00 9.42e+00 0.758 3.04 134 2 221 131 -5.92e-01 6.62e-01 5.04e+00 5.15e+00 0.547 2.44 135 2 221 131 5.59e-01 -3.78e-01 1.34e-01 8.80e-01 0.547 0.196 136 2 213 131 1.76e-01 3.06e-01 4.46e-01 9.44e-01 0.754 1.06 137 2 113 131 -6.10e-01 7.84e-01 -4.32e+00 4.51e+00 0.831 -2.18 138 1 -211 131 1.38e-01 3.90e-01 -4.48e+00 4.50e+00 0.14 -3.08 139 1 211 131 -5.15e-01 3.93e-01 -3.52e+00 3.58e+00 0.14 -2.39 140 2 311 131 2.18e-01 6.13e-01 -1.38e+00 1.61e+00 0.498 -1.5 141 1 -321 131 -8.66e-01 9.46e-01 -1.43e+01 1.43e+01 0.494 -3.1 142 2 223 131 -1.48e-01 7.01e-01 -5.09e+00 5.20e+00 0.781 -2.66 143 2 223 131 -1.51e+00 -1.69e-01 -8.90e+00 9.07e+00 0.787 -2.47 144 1 211 131 -1.11e+00 1.79e-01 -2.07e+01 2.07e+01 0.14 -3.61 145 1 -211 131 -1.18e-01 1.69e-01 -1.28e+00 1.30e+00 0.14 -2.52 146 2 113 131 -1.20e+00 1.63e-01 -1.25e+01 1.26e+01 0.807 -3.04 147 2 111 131 -2.37e-01 -2.42e-01 -4.68e+00 4.69e+00 0.135 -3.32 148 2 113 131 -2.05e+00 5.34e-01 -1.54e+01 1.56e+01 0.983 -2.68 149 2 213 131 -1.13e+00 -1.06e+00 -2.02e+01 2.02e+01 0.569 -3.26 150 2 331 131 -1.26e-01 -2.07e-01 -2.05e+01 2.06e+01 0.958 -5.13 151 2 313 131 -2.59e-01 -1.10e+00 -2.34e+01 2.35e+01 0.931 -3.73 152 1 -321 131 -5.82e-01 -4.02e-01 -2.57e+01 2.57e+01 0.494 -4.29 153 2 221 131 3.76e-01 -6.01e-01 -4.15e+00 4.24e+00 0.547 -2.47 154 1 211 131 3.72e-01 2.53e-01 -1.34e+00 1.42e+00 0.14 -1.81 155 1 2112 131 4.87e-01 -2.11e-01 7.20e-01 1.30e+00 0.94 1.11 156 1 -2112 131 2.77e-01 3.04e-01 4.89e-02 1.03e+00 0.94 0.119 157 2 313 131 1.80e+00 5.75e-01 5.73e+00 6.13e+00 1.05 1.83 158 1 -321 131 1.30e+00 9.45e-01 5.27e+00 5.53e+00 0.494 1.9 159 2 3222 131 8.31e-01 1.83e+00 4.41e+00 4.99e+00 1.19 1.53 160 2 -3322 131 1.85e+00 9.89e-01 6.64e+00 7.09e+00 1.31 1.87 161 2 -311 131 1.98e-01 -1.87e-01 9.79e-01 1.13e+00 0.498 1.99 162 1 -211 131 1.43e+00 1.35e+00 6.65e+00 6.93e+00 0.14 1.93 163 1 321 131 7.64e-01 6.99e-01 1.86e+00 2.19e+00 0.494 1.35 164 2 3224 131 3.24e-01 1.57e-02 4.16e+00 4.40e+00 1.41 3.25 165 1 -211 131 6.77e-01 -7.01e-01 9.27e+00 9.32e+00 0.14 2.95 166 1 -2112 131 9.22e-01 1.73e-01 5.93e+00 6.08e+00 0.94 2.54 167 2 313 131 2.44e-01 -2.72e-01 5.99e+00 6.06e+00 0.872 3.49 168 2 -311 131 -5.45e-03 -4.73e-01 3.35e+00 3.42e+00 0.498 2.65 169 1 -211 131 8.27e-02 -3.97e-01 1.33e+00 1.40e+00 0.14 1.9 170 2 111 131 1.38e+00 -1.95e+00 2.01e+01 2.02e+01 0.135 2.83 171 2 221 131 8.16e-01 3.18e-01 1.67e+01 1.67e+01 0.547 3.64 172 1 211 131 2.27e-01 2.20e-01 7.01e+00 7.02e+00 0.14 3.79 173 2 113 131 1.32e+00 -1.18e+00 1.65e+01 1.66e+01 0.728 2.93 174 2 311 131 1.26e+00 -1.60e+00 2.61e+01 2.62e+01 0.498 3.25 175 2 -313 131 2.37e-01 -1.28e-01 9.10e+00 9.15e+00 0.904 4.21 176 2 111 131 6.37e-02 3.24e-01 2.82e+01 2.82e+01 0.135 5.14 177 2 223 131 -5.95e-01 -6.69e-01 4.90e+01 4.90e+01 0.781 4.7 178 2 113 131 1.74e-01 4.52e-02 2.11e+01 2.11e+01 0.611 5.46 179 2 111 131 -7.96e-02 -9.62e-01 4.33e+01 4.33e+01 0.135 4.5 180 2 113 131 5.97e-02 -3.38e-01 1.21e+02 1.21e+02 0.643 6.56 181 2 313 131 -7.01e-01 1.29e-01 2.11e+02 2.11e+02 0.889 6.38 182 2 -323 131 3.76e-01 3.22e-01 3.39e+02 3.39e+02 0.906 7.22 183 2 213 131 3.59e-01 -4.73e-01 2.99e+02 2.99e+02 0.601 6.92 184 2 311 131 4.36e-02 9.25e-02 7.80e+01 7.80e+01 0.498 7.33 185 2 221 131 2.60e-01 -2.20e-01 2.40e+02 2.40e+02 0.547 7.25 186 2 333 131 1.94e-01 4.94e-02 3.96e+02 3.96e+02 1.01 8.28 187 1 -321 131 1.88e-01 3.23e-01 4.76e+02 4.76e+02 0.494 7.84 188 2 223 131 4.12e-01 2.70e-01 4.61e+01 4.61e+01 0.78 5.23 189 2 3212 131 4.61e-02 7.55e-01 1.73e+02 1.73e+02 1.19 6.13 190 2 -3112 131 2.72e-01 5.51e-01 6.23e+01 6.23e+01 1.2 5.31 191 2 -213 131 -1.12e+00 1.87e+00 4.44e+01 4.44e+01 0.684 3.71 192 2 223 131 1.96e-01 1.27e+00 3.09e+01 3.09e+01 0.771 3.87 193 2 323 131 -6.00e-01 9.01e-01 2.72e+01 2.73e+01 0.883 3.92 194 2 -323 131 -3.07e+00 2.31e+00 6.55e+01 6.56e+01 0.912 3.53 195 2 111 131 -8.27e-01 7.88e-01 1.28e+01 1.28e+01 0.135 3.11 196 2 213 131 -7.94e-01 4.36e-01 1.76e+01 1.76e+01 0.715 3.66 197 2 111 131 -9.33e-01 -6.28e-01 7.89e+00 7.98e+00 0.135 2.65 198 2 223 131 -1.49e+00 2.39e-01 1.69e+01 1.70e+01 0.785 3.11 199 2 -213 131 -8.63e-01 1.32e-01 5.27e+00 5.36e+00 0.397 2.5 200 2 323 131 -1.66e+00 -7.60e-01 1.01e+01 1.03e+01 0.876 2.41 201 2 -311 131 -1.24e+00 -4.85e-01 4.26e+00 4.49e+00 0.498 1.88 202 2 3112 131 -1.84e+00 -1.32e+00 1.00e+01 1.04e+01 1.2 2.19 203 2 221 131 -1.46e+00 1.73e-01 7.41e+00 7.57e+00 0.547 2.32 204 2 -3112 131 -2.79e+00 -4.33e-01 1.03e+01 1.07e+01 1.2 2 205 1 -211 131 -2.35e-01 3.83e-01 3.78e-01 6.03e-01 0.14 0.765 206 1 211 131 -6.45e-01 2.05e-01 3.10e+00 3.18e+00 0.14 2.23 207 2 311 131 -3.66e-01 3.68e-01 2.10e+00 2.22e+00 0.498 2.11 208 1 -321 131 -1.68e+00 5.75e-01 2.50e+00 3.11e+00 0.494 1.14 209 2 111 131 -1.40e+00 9.92e-01 6.40e+00 6.63e+00 0.135 2.03 210 2 213 131 -9.66e-01 1.03e+00 3.93e+00 4.28e+00 0.95 1.75 211 2 113 131 -1.58e+00 3.28e-01 1.63e+00 2.43e+00 0.787 0.887 212 2 -213 131 -1.17e+00 -5.28e-03 1.85e+00 2.23e+00 0.412 1.24 213 2 113 131 -6.21e-01 -8.67e-02 9.59e-01 1.31e+00 0.642 1.21 214 2 2224 131 -2.02e+00 1.92e-01 2.25e+00 3.25e+00 1.19 0.957 215 2 111 131 -9.26e-01 4.51e-01 1.16e+00 1.56e+00 0.135 0.966 216 2 -2224 131 -3.10e+00 -8.54e-02 -3.59e-01 3.36e+00 1.23 -0.115 217 2 213 131 -9.27e-01 4.63e-01 1.17e+00 1.75e+00 0.791 0.968 218 2 113 131 -1.69e+00 -7.06e-02 -4.18e-02 1.96e+00 1 -0.0247 219 2 111 131 -1.90e-02 1.88e-02 -8.62e-02 1.62e-01 0.135 -1.89 220 1 2112 131 1.23e-01 -1.84e-01 -4.41e-01 1.06e+00 0.94 -1.44 221 2 -3122 131 7.12e-02 -1.95e-01 5.89e-01 1.28e+00 1.12 1.77 222 2 333 131 4.76e-01 -2.15e+00 1.27e+00 2.74e+00 1.02 0.548 223 2 -311 131 3.43e-01 3.05e-02 1.97e-01 6.36e-01 0.498 0.544 224 2 111 131 1.29e+00 -9.25e-01 1.17e-01 1.60e+00 0.135 0.0737 225 2 -213 131 1.23e+00 -5.28e-01 5.22e-01 1.64e+00 0.8 0.382 226 2 223 131 6.60e-01 9.40e-02 -2.40e-01 1.06e+00 0.785 -0.353 227 2 331 131 1.49e+00 -1.07e+00 9.59e-02 2.08e+00 0.958 0.0521 228 2 223 131 9.94e-01 -3.75e-01 -1.06e+00 1.70e+00 0.787 -0.88 229 2 213 131 9.28e-01 1.26e-01 -5.95e-01 1.27e+00 0.623 -0.599 230 1 -211 131 1.56e+00 -1.69e-01 -1.70e+00 2.32e+00 0.14 -0.942 231 2 3212 131 1.31e+00 -9.14e-01 -1.23e+00 2.34e+00 1.19 -0.71 232 2 -3212 131 1.32e+00 -6.86e-01 -1.93e+00 2.72e+00 1.19 -1.08 233 2 213 131 4.46e-01 -8.07e-01 -1.63e+00 2.02e+00 0.746 -1.34 234 2 223 131 5.92e-01 -1.02e+00 -3.48e+00 3.76e+00 0.777 -1.81 235 2 113 131 -1.77e-02 -2.91e+00 -4.81e+00 5.66e+00 0.62 -1.28 236 1 -211 131 -3.27e-01 -6.74e-01 -2.77e+00 2.87e+00 0.14 -2.02 237 1 211 131 -1.41e-01 8.13e-03 -2.58e-01 3.26e-01 0.14 -1.36 238 2 113 131 -5.70e-01 -3.50e+00 -6.66e+00 7.58e+00 0.685 -1.39 239 2 -213 131 -8.60e-01 -2.86e+00 -9.54e+00 1.00e+01 0.744 -1.88 240 1 211 131 -1.72e+00 -3.74e+00 -9.24e+00 1.01e+01 0.14 -1.55 241 2 -213 131 -8.15e-01 -1.34e+00 -4.46e+00 4.83e+00 0.993 -1.77 242 2 111 131 -1.99e+00 -2.81e+00 -9.91e+00 1.05e+01 0.135 -1.78 243 1 211 131 1.59e-01 2.58e-02 -3.32e-01 3.94e-01 0.14 -1.47 244 2 221 131 -6.13e-01 -1.91e-01 -3.27e+00 3.38e+00 0.547 -2.33 245 1 -211 131 -6.43e-01 -6.87e-02 -1.47e+00 1.61e+00 0.14 -1.56 246 2 113 131 -4.54e-01 -8.69e-02 -2.84e+00 2.97e+00 0.764 -2.51 247 1 2212 131 -3.70e-01 9.66e-02 -3.46e+00 3.61e+00 0.938 -2.9 248 1 -2212 131 -5.29e-01 -4.36e-01 -3.86e+00 4.03e+00 0.938 -2.43 249 2 213 131 -1.61e+00 -5.48e-01 -4.74e+00 5.09e+00 0.734 -1.75 250 2 113 131 -1.49e+00 2.29e-01 -7.33e+00 7.53e+00 0.802 -2.28 251 2 223 131 -1.88e+00 1.85e+00 -1.01e+01 1.05e+01 0.788 -2.05 252 2 223 131 -1.81e+00 1.72e+00 -1.73e+01 1.75e+01 0.785 -2.63 253 1 -211 131 -2.58e-01 3.80e-01 -1.49e+01 1.49e+01 0.14 -4.17 254 1 211 131 -1.76e+00 1.46e+00 -3.79e+01 3.80e+01 0.14 -3.5 255 2 311 131 -5.97e-02 2.71e-01 -5.90e+00 5.93e+00 0.498 -3.75 256 2 -311 131 -2.16e-01 5.20e-01 -2.71e+01 2.72e+01 0.498 -4.57 257 2 1114 131 -1.17e+00 7.96e-02 -5.78e+01 5.78e+01 1.29 -4.59 258 2 223 131 -2.57e-01 1.17e-01 -6.61e+01 6.61e+01 0.789 -6.15 259 2 -1114 131 -1.11e+00 4.71e-03 -7.51e+01 7.51e+01 1.21 -4.91 260 1 -211 131 -8.84e-01 -5.72e-01 -5.32e+01 5.32e+01 0.14 -4.62 261 2 213 131 -7.55e-01 -1.86e-03 -6.09e+01 6.09e+01 0.76 -5.08 262 2 313 131 -5.24e-01 -1.32e+00 -6.24e+01 6.24e+01 0.905 -4.48 263 2 -313 131 -1.12e+00 -1.38e+00 -4.83e+01 4.83e+01 0.886 -4 264 2 -213 131 7.49e-01 -1.79e+00 -5.42e+01 5.43e+01 1.13 -4.02 265 2 2224 131 2.13e+00 -2.89e+00 -4.63e+01 4.64e+01 1.27 -3.25 266 2 -213 131 2.95e+00 -2.06e+00 -5.77e+01 5.78e+01 0.838 -3.47 267 1 -2112 131 1.34e+00 -8.27e-01 -1.95e+01 1.96e+01 0.94 -3.21 268 2 -213 131 1.45e+00 -7.37e-01 -1.73e+01 1.73e+01 0.569 -3.06 269 2 223 131 1.53e+00 1.69e+00 -2.26e+01 2.27e+01 0.779 -2.99 270 2 213 131 1.19e+00 2.41e-01 -1.99e+01 1.99e+01 0.726 -3.49 271 1 2212 131 1.01e+00 9.68e-01 -2.58e+01 2.58e+01 0.938 -3.61 272 1 -211 131 8.39e-01 2.34e+00 -3.48e+01 3.48e+01 0.14 -3.33 273 2 -2214 131 1.80e+00 7.37e+00 -1.20e+02 1.20e+02 1.27 -3.46 274 2 223 131 1.15e+00 3.53e-01 -2.07e+01 2.08e+01 0.784 -3.54 275 2 113 131 1.26e+00 4.58e+00 -7.38e+01 7.39e+01 0.751 -3.44 276 2 2214 131 1.52e+00 1.64e+00 -9.00e+01 9.00e+01 1.17 -4.39 277 2 213 131 2.06e-01 1.22e-01 -2.09e+01 2.09e+01 0.673 -5.16 278 2 -2224 131 3.06e-01 1.60e+00 -5.17e+01 5.17e+01 1.24 -4.15 279 2 331 131 6.12e-01 9.86e-01 -4.34e+01 4.34e+01 0.958 -4.31 280 2 113 131 1.74e+00 2.43e-01 -8.85e+01 8.85e+01 0.596 -4.61 281 2 223 131 1.04e+00 -1.95e-01 -6.01e+01 6.01e+01 0.778 -4.73 282 2 223 131 6.03e-01 4.25e-02 -1.42e+02 1.42e+02 0.793 -6.15 283 2 113 131 1.36e+00 2.13e-01 -3.08e+02 3.08e+02 0.844 -6.11 284 1 321 131 1.97e-01 -1.80e-01 -1.61e+02 1.61e+02 0.494 -7.1 285 2 -311 131 4.13e-01 -3.13e-02 -6.67e+01 6.67e+01 0.498 -5.77 286 1 2112 131 1.16e+00 4.09e-01 -2.20e+02 2.20e+02 0.94 -5.88 287 1 -2212 131 9.09e-01 -3.52e-02 -3.60e+02 3.60e+02 0.938 -6.67 288 1 321 131 7.17e-01 -1.53e-01 -2.15e+02 2.15e+02 0.494 -6.37 289 2 333 131 8.01e-01 9.86e-02 -2.95e+02 2.95e+02 1.02 -6.59 290 1 -321 131 5.04e-01 5.35e-01 -2.01e+02 2.01e+02 0.494 -6.3 291 2 223 131 -4.86e-01 -5.88e-01 -7.42e+01 7.42e+01 0.783 -5.27 292 1 211 131 3.92e-01 -2.08e-01 -1.86e+02 1.86e+02 0.14 -6.73 293 2 221 131 -1.71e-01 -6.01e-01 -5.04e+01 5.04e+01 0.547 -5.08 294 2 2214 131 1.64e-02 -5.38e-02 -3.25e+02 3.25e+02 1.21 -9.36 295 2 111 131 -5.74e-01 -8.26e-01 -8.02e+02 8.02e+02 0.135 -7.37 296 2 92 109 0.00e+00 0.00e+00 1.94e+01 1.94e+01 1.26 999 297 1 -211 296 -2.03e-01 2.52e-01 6.94e+00 6.95e+00 0.14 3.76 298 2 213 296 2.03e-01 -2.52e-01 1.24e+01 1.25e+01 0.831 4.34 299 1 211 112 -1.33e-01 8.21e-02 -5.76e-02 2.17e-01 0.14 -0.36 300 1 -211 112 -4.29e-03 -2.79e-02 -7.84e-02 1.63e-01 0.14 -1.75 301 2 111 112 -5.66e-02 7.18e-02 1.39e-01 2.14e-01 0.135 1.21 302 1 -211 113 -3.39e-01 -8.46e-01 4.27e+00 4.37e+00 0.14 2.25 303 1 211 113 -2.50e-01 -8.48e-02 1.44e+00 1.47e+00 0.14 2.4 304 2 111 113 4.37e-02 -2.02e-01 8.24e-01 8.60e-01 0.135 2.09 305 1 211 114 -4.45e-01 -1.82e-01 2.80e+00 2.85e+00 0.14 2.46 306 2 111 114 5.08e-02 1.49e-01 5.60e+00 5.61e+00 0.135 4.27 307 1 211 116 -2.69e-03 1.13e-01 1.75e+00 1.76e+00 0.14 3.43 308 1 -211 116 2.02e-01 1.24e-02 1.74e+01 1.74e+01 0.14 5.15 309 2 111 116 1.78e-01 1.02e-01 6.31e+00 6.31e+00 0.135 4.12 310 1 -211 117 -4.47e-01 -5.11e-01 2.59e+01 2.59e+01 0.14 4.33 311 1 211 117 -3.78e-01 3.08e-01 3.52e+01 3.52e+01 0.14 4.97 312 1 211 118 1.30e-01 -4.45e-01 6.37e+01 6.37e+01 0.14 5.62 313 2 111 118 6.15e-01 7.51e-02 1.53e+02 1.53e+02 0.135 6.2 314 1 2212 120 -1.22e-01 7.95e-01 1.17e+03 1.17e+03 0.938 7.97 315 2 111 120 2.71e-02 -4.10e-02 3.39e+02 3.39e+02 0.135 9.53 316 1 -2112 121 2.04e-01 -2.58e-01 2.89e+02 2.89e+02 0.94 7.47 317 1 -211 121 -1.20e-01 -3.40e-01 1.76e+02 1.76e+02 0.14 6.88 318 1 211 124 -2.25e-01 -9.15e-02 -1.57e+00 1.59e+00 0.14 -2.56 319 1 -211 124 -9.04e-01 -7.51e-02 -6.04e+00 6.11e+00 0.14 -2.59 320 2 111 124 -3.03e-01 -1.51e-01 -2.16e+00 2.19e+00 0.135 -2.55 321 1 22 126 -1.14e-01 4.04e-02 -4.44e-01 4.60e-01 0 -2.01 322 1 22 126 -9.32e-01 1.22e-02 -4.36e+00 4.46e+00 0 -2.25 323 1 -211 127 1.43e-01 -2.00e-01 -1.61e+00 1.64e+00 0.14 -2.58 324 1 211 127 -6.85e-01 -2.14e-02 -4.50e+00 4.55e+00 0.14 -2.58 325 1 130 128 5.14e-02 3.48e-01 -1.71e+01 1.71e+01 0.498 -4.58 326 1 211 130 2.52e-01 7.44e-02 -1.10e+01 1.10e+01 0.14 -4.43 327 1 -211 130 5.33e-01 -1.99e-02 -1.11e+01 1.12e+01 0.14 -3.73 328 2 111 130 3.65e-01 4.41e-01 -1.30e+01 1.30e+01 0.135 -3.81 329 1 22 132 -1.29e-01 6.53e-01 2.65e+00 2.73e+00 0 2.09 330 1 22 132 3.36e-02 2.67e-01 1.08e+00 1.11e+00 0 2.09 331 1 -211 133 7.43e-02 -9.20e-01 8.73e+00 8.78e+00 0.14 2.94 332 1 211 133 9.68e-02 3.66e-02 6.17e-01 6.41e-01 0.14 2.49 333 1 -211 134 -2.64e-01 2.11e-01 1.44e+00 1.49e+00 0.14 2.16 334 1 211 134 -2.27e-01 1.22e-01 1.41e+00 1.44e+00 0.14 2.4 335 2 111 134 -1.01e-01 3.29e-01 2.19e+00 2.23e+00 0.135 2.55 336 2 111 135 1.15e-01 -2.16e-01 8.39e-02 2.91e-01 0.135 0.337 337 2 111 135 2.18e-01 -1.62e-01 1.01e-01 3.19e-01 0.135 0.363 338 2 111 135 2.27e-01 -1.23e-03 -5.10e-02 2.69e-01 0.135 -0.223 339 1 211 136 1.21e-01 -1.40e-01 4.13e-01 4.73e-01 0.14 1.54 340 2 111 136 5.58e-02 4.46e-01 3.30e-02 4.71e-01 0.135 0.0732 341 1 -211 137 1.59e-01 3.29e-01 -1.31e+00 1.37e+00 0.14 -1.99 342 1 211 137 -7.69e-01 4.55e-01 -3.01e+00 3.14e+00 0.14 -1.93 343 2 310 140 2.18e-01 6.13e-01 -1.38e+00 1.61e+00 0.498 -1.5 344 1 -211 142 1.20e-01 3.11e-02 -5.06e-01 5.39e-01 0.14 -2.11 345 1 211 142 -1.82e-02 2.34e-01 -2.36e+00 2.38e+00 0.14 -3 346 2 111 142 -2.50e-01 4.35e-01 -2.23e+00 2.29e+00 0.135 -2.19 347 1 -211 143 -5.90e-01 1.71e-02 -4.72e+00 4.76e+00 0.14 -2.78 348 1 211 143 -1.10e-01 -3.03e-02 -5.37e-01 5.67e-01 0.14 -2.25 349 2 111 143 -8.12e-01 -1.56e-01 -3.65e+00 3.74e+00 0.135 -2.19 350 1 -211 146 2.51e-02 1.72e-01 -1.96e+00 1.97e+00 0.14 -3.12 351 1 211 146 -1.22e+00 -8.79e-03 -1.06e+01 1.06e+01 0.14 -2.85 352 1 22 147 -1.79e-01 -2.29e-01 -4.28e+00 4.29e+00 0 -3.38 353 1 22 147 -5.77e-02 -1.29e-02 -4.05e-01 4.09e-01 0 -2.62 354 1 211 148 -5.97e-02 2.65e-01 -1.47e+00 1.50e+00 0.14 -2.39 355 1 -211 148 -1.99e+00 2.69e-01 -1.39e+01 1.41e+01 0.14 -2.64 356 1 211 149 -6.25e-01 -3.34e-01 -1.11e+01 1.11e+01 0.14 -3.44 357 2 111 149 -5.03e-01 -7.29e-01 -9.12e+00 9.16e+00 0.135 -3.03 358 1 22 150 8.11e-02 7.13e-02 -4.90e+00 4.90e+00 0 -4.51 359 2 113 150 -2.07e-01 -2.78e-01 -1.56e+01 1.57e+01 0.766 -4.5 360 1 321 151 1.03e-01 -8.74e-01 -1.71e+01 1.72e+01 0.494 -3.66 361 1 -211 151 -3.62e-01 -2.24e-01 -6.29e+00 6.31e+00 0.14 -3.39 362 2 111 153 1.69e-01 -9.45e-02 -1.74e+00 1.75e+00 0.135 -2.89 363 2 111 153 2.99e-02 -2.04e-01 -8.43e-01 8.79e-01 0.135 -2.11 364 2 111 153 1.77e-01 -3.02e-01 -1.57e+00 1.61e+00 0.135 -2.2 365 2 311 157 1.43e+00 7.93e-01 4.45e+00 4.76e+00 0.498 1.73 366 2 111 157 3.79e-01 -2.18e-01 1.28e+00 1.36e+00 0.135 1.8 367 1 2112 159 5.81e-01 1.68e+00 3.87e+00 4.36e+00 0.94 1.52 368 1 211 159 2.50e-01 1.52e-01 5.36e-01 6.26e-01 0.14 1.37 369 2 -3122 160 1.52e+00 6.89e-01 5.27e+00 5.64e+00 1.12 1.87 370 2 111 160 3.30e-01 3.00e-01 1.37e+00 1.45e+00 0.135 1.84 371 2 310 161 1.98e-01 -1.87e-01 9.79e-01 1.13e+00 0.498 1.99 372 2 3122 164 4.00e-01 1.72e-01 3.77e+00 3.95e+00 1.12 2.85 373 1 211 164 -7.61e-02 -1.57e-01 3.90e-01 4.49e-01 0.14 1.55 374 2 311 167 -7.94e-02 -2.87e-01 4.23e+00 4.27e+00 0.498 3.35 375 2 111 167 3.23e-01 1.46e-02 1.76e+00 1.79e+00 0.135 2.39 376 1 130 168 -5.45e-03 -4.73e-01 3.35e+00 3.42e+00 0.498 2.65 377 1 22 170 5.47e-01 -7.71e-01 7.40e+00 7.46e+00 0 2.75 378 1 22 170 8.31e-01 -1.18e+00 1.27e+01 1.28e+01 0 2.87 379 1 -211 171 2.57e-01 6.59e-02 5.27e+00 5.28e+00 0.14 3.68 380 1 211 171 2.43e-01 -2.60e-02 5.28e+00 5.29e+00 0.14 3.77 381 2 111 171 3.15e-01 2.78e-01 6.11e+00 6.12e+00 0.135 3.37 382 1 -211 173 4.18e-01 -7.29e-01 9.35e+00 9.39e+00 0.14 3.11 383 1 211 173 8.99e-01 -4.48e-01 7.17e+00 7.24e+00 0.14 2.66 384 2 310 174 1.26e+00 -1.60e+00 2.61e+01 2.62e+01 0.498 3.25 385 1 -321 175 7.14e-02 -2.02e-01 8.28e+00 8.30e+00 0.494 4.35 386 1 211 175 1.65e-01 7.40e-02 8.19e-01 8.51e-01 0.14 2.21 387 1 22 176 3.69e-02 2.76e-01 1.84e+01 1.84e+01 0 4.89 388 1 22 176 2.68e-02 4.84e-02 9.78e+00 9.78e+00 0 5.87 389 1 -211 177 -2.70e-01 -3.33e-01 2.09e+01 2.09e+01 0.14 4.58 390 1 211 177 -3.69e-01 -1.02e-01 1.14e+01 1.14e+01 0.14 4.09 391 2 111 177 4.42e-02 -2.34e-01 1.67e+01 1.67e+01 0.135 4.95 392 1 -211 178 3.65e-01 2.84e-02 1.47e+01 1.47e+01 0.14 4.38 393 1 211 178 -1.91e-01 1.68e-02 6.47e+00 6.47e+00 0.14 4.21 394 1 22 179 -8.91e-02 -9.55e-01 4.30e+01 4.30e+01 0 4.5 395 1 22 179 9.47e-03 -7.12e-03 2.42e-01 2.42e-01 0 3.71 396 1 211 180 9.34e-02 4.86e-02 7.83e+01 7.83e+01 0.14 7.3 397 1 -211 180 -3.37e-02 -3.87e-01 4.25e+01 4.25e+01 0.14 5.39 398 2 311 181 -2.72e-01 2.86e-01 1.43e+02 1.43e+02 0.498 6.59 399 2 111 181 -4.29e-01 -1.57e-01 6.80e+01 6.80e+01 0.135 5.7 400 2 -311 182 3.64e-01 -5.65e-02 2.27e+02 2.27e+02 0.498 7.12 401 1 -211 182 1.22e-02 3.78e-01 1.12e+02 1.12e+02 0.14 6.38 402 1 211 183 4.32e-01 -3.83e-01 2.70e+02 2.70e+02 0.14 6.84 403 2 111 183 -7.32e-02 -9.02e-02 2.94e+01 2.94e+01 0.135 6.23 404 1 130 184 4.36e-02 9.25e-02 7.80e+01 7.80e+01 0.498 7.33 405 2 111 185 6.53e-03 -6.61e-02 9.80e+01 9.80e+01 0.135 7.99 406 2 111 185 1.20e-01 4.10e-02 6.80e+01 6.80e+01 0.135 6.98 407 2 111 185 1.33e-01 -1.95e-01 7.44e+01 7.44e+01 0.135 6.45 408 1 130 186 1.51e-01 1.00e-01 2.11e+02 2.11e+02 0.498 7.75 409 2 310 186 4.31e-02 -5.09e-02 1.85e+02 1.85e+02 0.498 8.62 410 1 211 188 -8.90e-02 6.96e-02 7.31e+00 7.31e+00 0.14 4.86 411 1 -211 188 3.26e-01 -9.32e-02 1.73e+01 1.73e+01 0.14 4.62 412 2 111 188 1.75e-01 2.93e-01 2.15e+01 2.15e+01 0.135 4.84 413 2 3122 189 7.91e-02 6.35e-01 1.60e+02 1.60e+02 1.12 6.22 414 1 22 189 -3.29e-02 1.20e-01 1.31e+01 1.31e+01 0 5.35 415 1 -2112 190 3.35e-01 4.28e-01 4.36e+01 4.36e+01 0.94 5.08 416 1 211 190 -6.23e-02 1.23e-01 1.87e+01 1.87e+01 0.14 5.61 417 1 -211 191 -5.40e-01 4.88e-01 1.88e+01 1.88e+01 0.14 3.94 418 2 111 191 -5.79e-01 1.38e+00 2.56e+01 2.57e+01 0.135 3.53 419 1 -211 192 8.42e-03 2.08e-01 3.90e+00 3.91e+00 0.14 3.62 420 1 211 192 3.44e-01 6.42e-01 1.37e+01 1.37e+01 0.14 3.63 421 2 111 192 -1.56e-01 4.23e-01 1.33e+01 1.33e+01 0.135 4.08 422 2 311 193 -3.93e-01 9.50e-01 2.20e+01 2.20e+01 0.498 3.76 423 1 211 193 -2.08e-01 -4.85e-02 5.28e+00 5.29e+00 0.14 3.9 424 2 -311 194 -2.66e+00 1.70e+00 5.15e+01 5.16e+01 0.498 3.49 425 1 -211 194 -4.15e-01 6.11e-01 1.39e+01 1.40e+01 0.14 3.63 426 1 22 195 -2.31e-01 1.53e-01 2.76e+00 2.77e+00 0 2.99 427 1 22 195 -5.95e-01 6.36e-01 1.00e+01 1.00e+01 0 3.14 428 1 211 196 -3.24e-01 1.81e-01 2.85e+00 2.87e+00 0.14 2.73 429 2 111 196 -4.70e-01 2.55e-01 1.47e+01 1.47e+01 0.135 4.01 430 1 22 197 -4.76e-01 -4.00e-01 4.26e+00 4.31e+00 0 2.62 431 1 22 197 -4.57e-01 -2.28e-01 3.63e+00 3.67e+00 0 2.66 432 1 -211 198 -6.22e-01 7.81e-02 5.02e+00 5.06e+00 0.14 2.78 433 1 211 198 -7.73e-01 1.69e-01 7.85e+00 7.89e+00 0.14 2.99 434 2 111 198 -9.25e-02 -7.91e-03 4.01e+00 4.01e+00 0.135 4.46 435 1 -211 199 -4.89e-01 -1.89e-02 3.46e+00 3.50e+00 0.14 2.65 436 2 111 199 -3.74e-01 1.51e-01 1.81e+00 1.86e+00 0.135 2.2 437 2 311 200 -1.43e+00 -4.23e-01 7.25e+00 7.42e+00 0.498 2.28 438 1 211 200 -2.31e-01 -3.37e-01 2.87e+00 2.91e+00 0.14 2.65 439 2 310 201 -1.24e+00 -4.85e-01 4.26e+00 4.49e+00 0.498 1.88 440 1 2112 202 -1.67e+00 -9.66e-01 8.35e+00 8.62e+00 0.94 2.17 441 1 -211 202 -1.76e-01 -3.56e-01 1.69e+00 1.74e+00 0.14 2.16 442 1 22 203 -6.94e-01 -7.38e-02 2.38e+00 2.48e+00 0 1.94 443 1 22 203 -7.65e-01 2.47e-01 5.03e+00 5.09e+00 0 2.53 444 1 -2112 204 -2.63e+00 -3.17e-01 9.70e+00 1.01e+01 0.94 2.01 445 1 211 204 -1.58e-01 -1.16e-01 5.74e-01 6.22e-01 0.14 1.8 446 1 130 207 -3.66e-01 3.68e-01 2.10e+00 2.22e+00 0.498 2.11 447 1 22 209 -1.16e+00 8.65e-01 5.51e+00 5.70e+00 0 2.05 448 1 22 209 -2.41e-01 1.26e-01 8.87e-01 9.28e-01 0 1.9 449 1 211 210 -6.46e-01 1.14e+00 3.31e+00 3.57e+00 0.14 1.66 450 2 111 210 -3.20e-01 -1.11e-01 6.15e-01 7.15e-01 0.135 1.36 451 1 211 211 -1.48e+00 9.20e-02 1.48e+00 2.10e+00 0.14 0.882 452 1 -211 211 -1.08e-01 2.36e-01 1.49e-01 3.30e-01 0.14 0.548 453 1 -211 212 -8.73e-01 7.53e-02 1.17e+00 1.46e+00 0.14 1.1 454 2 111 212 -2.98e-01 -8.05e-02 6.85e-01 7.63e-01 0.135 1.54 455 1 -211 213 -9.23e-02 2.15e-01 2.66e-01 3.81e-01 0.14 0.976 456 1 211 213 -5.29e-01 -3.01e-01 6.93e-01 9.33e-01 0.14 0.976 457 1 2212 214 -1.92e+00 2.51e-01 1.96e+00 2.91e+00 0.938 0.89 458 1 211 214 -9.59e-02 -5.92e-02 2.86e-01 3.38e-01 0.14 1.66 459 1 22 215 -5.50e-01 2.62e-01 5.84e-01 8.44e-01 0 0.851 460 1 22 215 -3.76e-01 1.89e-01 5.74e-01 7.11e-01 0 1.12 461 1 -2212 216 -3.00e+00 -1.63e-01 -3.62e-01 3.17e+00 0.938 -0.12 462 1 -211 216 -9.98e-02 7.80e-02 2.99e-03 1.89e-01 0.14 0.0236 463 1 211 217 -2.06e-01 5.04e-01 5.98e-01 8.21e-01 0.14 0.95 464 2 111 217 -7.21e-01 -4.05e-02 5.69e-01 9.29e-01 0.135 0.724 465 1 -211 218 -2.04e-01 -3.62e-01 -7.87e-02 4.45e-01 0.14 -0.188 466 1 211 218 -1.48e+00 2.92e-01 3.69e-02 1.52e+00 0.14 0.0244 467 1 22 219 -1.97e-03 1.51e-02 -1.22e-01 1.23e-01 0 -2.78 468 1 22 219 -1.70e-02 3.72e-03 3.56e-02 3.96e-02 0 1.46 469 1 -2212 221 7.13e-02 -1.54e-01 6.10e-01 1.13e+00 0.938 1.99 470 1 211 221 -8.94e-05 -4.06e-02 -2.06e-02 1.47e-01 0.14 -0.488 471 1 -321 222 1.00e-01 -9.57e-01 5.80e-01 1.23e+00 0.494 0.571 472 1 321 222 3.75e-01 -1.19e+00 6.87e-01 1.51e+00 0.494 0.526 473 2 310 223 3.43e-01 3.05e-02 1.97e-01 6.36e-01 0.498 0.544 474 1 22 224 1.44e-01 -1.56e-01 -9.62e-04 2.12e-01 0 -0.00453 475 1 22 224 1.15e+00 -7.70e-01 1.18e-01 1.39e+00 0 0.0854 476 1 -211 225 6.43e-01 -4.95e-01 6.25e-01 1.03e+00 0.14 0.709 477 2 111 225 5.83e-01 -3.38e-02 -1.03e-01 6.08e-01 0.135 -0.175 478 1 -211 226 1.94e-01 -1.34e-01 7.42e-02 2.84e-01 0.14 0.31 479 1 211 226 3.32e-01 -5.08e-02 -2.12e-01 4.21e-01 0.14 -0.595 480 2 111 226 1.35e-01 2.79e-01 -1.03e-01 3.53e-01 0.135 -0.325 481 1 -211 227 1.83e-01 -1.49e-01 -1.07e-02 2.74e-01 0.14 -0.0452 482 1 211 227 2.71e-02 -5.07e-02 -9.47e-03 1.51e-01 0.14 -0.164 483 2 221 227 1.28e+00 -8.74e-01 1.16e-01 1.65e+00 0.547 0.0746 484 1 211 228 2.42e-01 -2.89e-01 -2.49e-01 4.73e-01 0.14 -0.619 485 1 -211 228 5.36e-01 -1.75e-01 -3.25e-01 6.66e-01 0.14 -0.549 486 2 111 228 2.16e-01 8.86e-02 -4.87e-01 5.57e-01 0.135 -1.48 487 1 211 229 -3.38e-02 -9.44e-03 -8.62e-02 1.68e-01 0.14 -1.63 488 2 111 229 9.62e-01 1.35e-01 -5.09e-01 1.11e+00 0.135 -0.503 489 2 3122 231 1.29e+00 -8.76e-01 -1.11e+00 2.21e+00 1.12 -0.663 490 1 22 231 2.38e-02 -3.80e-02 -1.22e-01 1.30e-01 0 -1.73 491 2 -3122 232 1.33e+00 -6.24e-01 -1.88e+00 2.63e+00 1.12 -1.06 492 1 22 232 -8.68e-03 -6.20e-02 -5.85e-02 8.57e-02 0 -0.834 493 1 211 233 1.64e-01 -5.77e-02 -3.44e-02 2.25e-01 0.14 -0.197 494 2 111 233 2.82e-01 -7.50e-01 -1.60e+00 1.79e+00 0.135 -1.44 495 1 -211 234 1.95e-01 -6.54e-01 -1.92e+00 2.04e+00 0.14 -1.76 496 1 211 234 2.85e-01 -2.54e-01 -1.38e+00 1.44e+00 0.14 -2 497 2 111 234 1.11e-01 -1.09e-01 -1.80e-01 2.74e-01 0.135 -0.988 498 1 211 235 5.25e-02 -7.14e-01 -8.09e-01 1.09e+00 0.14 -0.97 499 1 -211 235 -7.02e-02 -2.20e+00 -4.00e+00 4.57e+00 0.14 -1.36 500 1 -211 238 -6.91e-03 -1.91e+00 -3.71e+00 4.18e+00 0.14 -1.42 501 1 211 238 -5.63e-01 -1.59e+00 -2.95e+00 3.40e+00 0.14 -1.32 502 1 -211 239 -4.51e-01 -2.29e+00 -7.81e+00 8.15e+00 0.14 -1.92 503 2 111 239 -4.09e-01 -5.68e-01 -1.73e+00 1.87e+00 0.135 -1.64 504 1 -211 241 -7.45e-01 -3.70e-01 -1.63e+00 1.83e+00 0.14 -1.42 505 2 111 241 -7.09e-02 -9.73e-01 -2.84e+00 3.00e+00 0.135 -1.79 506 1 22 242 -1.32e+00 -1.97e+00 -6.80e+00 7.20e+00 0 -1.78 507 1 22 242 -6.73e-01 -8.43e-01 -3.11e+00 3.29e+00 0 -1.78 508 1 22 244 -6.33e-01 -3.22e-01 -2.81e+00 2.90e+00 0 -2.08 509 1 22 244 1.98e-02 1.31e-01 -4.64e-01 4.83e-01 0 -1.96 510 1 -211 246 1.29e-01 -1.92e-01 -1.13e+00 1.16e+00 0.14 -2.29 511 1 211 246 -5.83e-01 1.06e-01 -1.71e+00 1.81e+00 0.14 -1.78 512 1 211 249 -1.07e+00 -1.24e-01 -3.51e+00 3.68e+00 0.14 -1.9 513 2 111 249 -5.36e-01 -4.24e-01 -1.23e+00 1.42e+00 0.135 -1.35 514 1 -211 250 -3.06e-01 3.74e-01 -2.38e+00 2.43e+00 0.14 -2.3 515 1 211 250 -1.19e+00 -1.45e-01 -4.95e+00 5.10e+00 0.14 -2.13 516 1 211 251 -5.73e-01 6.22e-01 -4.08e+00 4.17e+00 0.14 -2.28 517 1 -211 251 -3.34e-01 2.92e-01 -1.07e+00 1.17e+00 0.14 -1.61 518 2 111 251 -9.73e-01 9.36e-01 -4.97e+00 5.15e+00 0.135 -2.01 519 1 -211 252 -1.67e-01 3.55e-01 -3.94e+00 3.96e+00 0.14 -3 520 1 211 252 -6.56e-01 4.10e-01 -5.16e+00 5.21e+00 0.14 -2.6 521 2 111 252 -9.90e-01 9.53e-01 -8.17e+00 8.28e+00 0.135 -2.48 522 2 310 255 -5.97e-02 2.71e-01 -5.90e+00 5.93e+00 0.498 -3.75 523 1 130 256 -2.16e-01 5.20e-01 -2.71e+01 2.72e+01 0.498 -4.57 524 1 2112 257 -1.00e+00 2.48e-01 -4.04e+01 4.04e+01 0.94 -4.36 525 1 -211 257 -1.70e-01 -1.68e-01 -1.74e+01 1.74e+01 0.14 -4.98 526 1 22 258 -1.35e-01 2.80e-01 -1.01e+01 1.01e+01 0 -4.17 527 2 111 258 -1.21e-01 -1.62e-01 -5.60e+01 5.60e+01 0.135 -6.32 528 1 -2112 259 -1.11e+00 6.23e-02 -6.19e+01 6.19e+01 0.94 -4.72 529 1 211 259 -6.15e-03 -5.76e-02 -1.32e+01 1.32e+01 0.14 -6.12 530 1 211 261 -1.14e-01 2.29e-01 -3.10e+01 3.10e+01 0.14 -5.49 531 2 111 261 -6.40e-01 -2.31e-01 -2.99e+01 2.99e+01 0.135 -4.48 532 1 321 262 -4.20e-01 -1.25e+00 -5.95e+01 5.95e+01 0.494 -4.5 533 1 -211 262 -1.03e-01 -7.04e-02 -2.89e+00 2.90e+00 0.14 -3.84 534 2 -311 263 -8.15e-01 -1.22e+00 -4.30e+01 4.31e+01 0.498 -4.07 535 2 111 263 -3.02e-01 -1.64e-01 -5.24e+00 5.25e+00 0.135 -3.42 536 1 -211 264 8.33e-02 -5.89e-02 -1.63e+01 1.63e+01 0.14 -5.77 537 2 111 264 6.66e-01 -1.73e+00 -3.79e+01 3.80e+01 0.135 -3.71 538 1 2212 265 1.83e+00 -2.13e+00 -3.42e+01 3.43e+01 0.938 -3.19 539 1 211 265 3.02e-01 -7.57e-01 -1.21e+01 1.21e+01 0.14 -3.39 540 1 -211 266 2.91e+00 -2.00e+00 -5.45e+01 5.46e+01 0.14 -3.43 541 2 111 266 4.12e-02 -5.62e-02 -3.23e+00 3.23e+00 0.135 -4.53 542 1 -211 268 5.07e-01 -2.41e-01 -8.62e+00 8.64e+00 0.14 -3.43 543 2 111 268 9.38e-01 -4.97e-01 -8.63e+00 8.70e+00 0.135 -2.79 544 1 211 269 4.60e-01 8.64e-01 -8.79e+00 8.84e+00 0.14 -2.89 545 1 -211 269 9.43e-01 6.66e-01 -1.20e+01 1.20e+01 0.14 -3.03 546 2 111 269 1.31e-01 1.59e-01 -1.82e+00 1.84e+00 0.135 -2.88 547 1 211 270 7.98e-01 -1.65e-01 -1.06e+01 1.06e+01 0.14 -3.26 548 2 111 270 3.94e-01 4.06e-01 -9.25e+00 9.27e+00 0.135 -3.49 549 1 -2212 273 1.45e+00 6.71e+00 -1.07e+02 1.07e+02 0.938 -3.44 550 2 111 273 3.45e-01 6.53e-01 -1.30e+01 1.30e+01 0.135 -3.56 551 1 211 274 6.28e-01 6.01e-03 -1.03e+01 1.03e+01 0.14 -3.49 552 1 -211 274 6.50e-02 2.25e-01 -2.62e+00 2.63e+00 0.14 -3.11 553 2 111 274 4.58e-01 1.23e-01 -7.80e+00 7.82e+00 0.135 -3.49 554 1 211 275 -1.10e-02 8.12e-01 -1.41e+01 1.42e+01 0.14 -3.55 555 1 -211 275 1.27e+00 3.76e+00 -5.96e+01 5.98e+01 0.14 -3.4 556 1 2212 276 1.37e+00 1.53e+00 -7.62e+01 7.63e+01 0.938 -4.31 557 2 111 276 1.49e-01 1.05e-01 -1.38e+01 1.38e+01 0.135 -5.02 558 1 211 277 -9.51e-02 -8.71e-02 -1.39e+01 1.39e+01 0.14 -5.38 559 2 111 277 3.01e-01 2.09e-01 -6.99e+00 7.00e+00 0.135 -3.64 560 1 -2212 278 8.00e-03 1.06e+00 -3.65e+01 3.65e+01 0.938 -4.23 561 1 -211 278 2.98e-01 5.34e-01 -1.52e+01 1.52e+01 0.14 -3.91 562 1 22 279 2.11e-02 -4.11e-02 -4.39e+00 4.39e+00 0 -5.25 563 2 223 279 5.91e-01 1.03e+00 -3.90e+01 3.90e+01 0.782 -4.19 564 1 -211 280 5.53e-01 1.26e-01 -1.87e+01 1.88e+01 0.14 -4.19 565 1 211 280 1.18e+00 1.17e-01 -6.97e+01 6.97e+01 0.14 -4.76 566 1 -211 281 1.62e-01 -7.66e-02 -5.02e+00 5.03e+00 0.14 -4.03 567 1 211 281 1.24e-01 -5.18e-02 -1.93e+01 1.93e+01 0.14 -5.66 568 2 111 281 7.53e-01 -6.70e-02 -3.58e+01 3.59e+01 0.135 -4.55 569 1 22 282 5.75e-01 -1.21e-01 -5.31e+01 5.31e+01 0 -5.2 570 2 111 282 2.74e-02 1.63e-01 -8.84e+01 8.84e+01 0.135 -6.97 571 1 -211 283 1.37e+00 3.73e-02 -2.76e+02 2.76e+02 0.14 -6 572 1 211 283 -1.25e-02 1.76e-01 -3.25e+01 3.25e+01 0.14 -5.91 573 2 310 285 4.13e-01 -3.13e-02 -6.67e+01 6.67e+01 0.498 -5.77 574 1 321 289 4.45e-01 7.54e-02 -1.27e+02 1.27e+02 0.494 -6.33 575 1 -321 289 3.56e-01 2.32e-02 -1.68e+02 1.68e+02 0.494 -6.85 576 1 22 291 -6.25e-01 -3.99e-01 -6.46e+01 6.46e+01 0 -5.16 577 2 111 291 1.39e-01 -1.89e-01 -9.64e+00 9.65e+00 0.135 -4.41 578 1 22 293 -7.05e-02 -2.40e-01 -1.73e+01 1.73e+01 0 -4.93 579 1 211 293 4.44e-02 -1.12e-01 -5.32e+00 5.33e+00 0.14 -4.48 580 1 -211 293 -1.45e-01 -2.49e-01 -2.78e+01 2.78e+01 0.14 -5.26 581 1 2112 294 1.51e-01 -8.19e-02 -2.21e+02 2.21e+02 0.94 -7.85 582 1 211 294 -1.35e-01 2.82e-02 -1.04e+02 1.04e+02 0.14 -7.32 583 1 22 295 -2.98e-02 -1.09e-02 -3.85e+01 3.85e+01 0 -7.79 584 1 -11 295 -1.46e-02 -2.24e-02 -2.03e+01 2.03e+01 0.00051 -7.32 585 1 11 295 -5.29e-01 -7.93e-01 -7.43e+02 7.43e+02 0.00051 -7.35 586 1 211 298 3.50e-02 1.86e-01 1.29e+00 1.31e+00 0.14 2.62 587 2 111 298 1.68e-01 -4.38e-01 1.12e+01 1.12e+01 0.135 3.86 588 1 22 301 -7.36e-02 4.72e-02 1.77e-02 8.92e-02 0 0.201 589 1 22 301 1.70e-02 2.45e-02 1.22e-01 1.25e-01 0 2.11 590 1 22 304 3.45e-02 -1.59e-01 3.71e-01 4.05e-01 0 1.56 591 1 22 304 9.16e-03 -4.33e-02 4.52e-01 4.54e-01 0 3.02 592 1 22 306 -1.19e-02 -1.80e-03 2.10e+00 2.10e+00 0 5.85 593 1 22 306 6.27e-02 1.51e-01 3.51e+00 3.51e+00 0 3.76 594 1 22 309 2.00e-01 8.83e-02 5.87e+00 5.87e+00 0 3.98 595 1 22 309 -2.14e-02 1.37e-02 4.45e-01 4.46e-01 0 3.56 596 1 22 313 4.37e-01 2.84e-02 9.30e+01 9.30e+01 0 6.05 597 1 22 313 1.78e-01 4.67e-02 6.00e+01 6.00e+01 0 6.48 598 1 22 315 -2.89e-02 -3.57e-02 2.79e+02 2.79e+02 0 9.41 599 1 22 315 5.60e-02 -5.36e-03 5.93e+01 5.93e+01 0 7.65 600 1 22 320 -3.12e-01 -1.28e-01 -2.07e+00 2.10e+00 0 -2.52 601 1 22 320 8.39e-03 -2.27e-02 -8.49e-02 8.83e-02 0 -1.97 602 1 22 328 3.65e-01 4.42e-01 -1.30e+01 1.30e+01 0 -3.81 603 1 22 328 -3.18e-04 -6.54e-04 -5.95e-05 7.30e-04 0 -0.0817 604 1 22 335 -8.49e-02 7.76e-02 5.68e-01 5.80e-01 0 2.3 605 1 22 335 -1.60e-02 2.52e-01 1.63e+00 1.65e+00 0 2.56 606 1 22 336 1.11e-01 -6.71e-02 2.93e-02 1.33e-01 0 0.224 607 1 22 336 3.42e-03 -1.49e-01 5.46e-02 1.58e-01 0 0.36 608 1 22 337 1.82e-01 -1.54e-01 1.31e-01 2.72e-01 0 0.523 609 1 22 337 3.55e-02 -7.50e-03 -3.00e-02 4.71e-02 0 -0.754 610 1 22 338 1.56e-01 5.93e-02 -5.46e-02 1.76e-01 0 -0.321 611 1 22 338 7.07e-02 -6.05e-02 3.61e-03 9.31e-02 0 0.0388 612 1 22 340 8.88e-02 3.51e-01 -7.32e-03 3.63e-01 0 -0.0202 613 1 22 340 -3.29e-02 9.47e-02 4.03e-02 1.08e-01 0 0.391 614 2 111 343 4.60e-02 -2.30e-02 -2.91e-01 3.25e-01 0.135 -2.43 615 2 111 343 1.72e-01 6.36e-01 -1.09e+00 1.28e+00 0.135 -1.28 616 1 22 346 -1.42e-01 1.49e-01 -1.10e+00 1.11e+00 0 -2.37 617 1 22 346 -1.08e-01 2.87e-01 -1.13e+00 1.17e+00 0 -2.02 618 1 22 349 -3.19e-01 -4.16e-03 -1.25e+00 1.29e+00 0 -2.07 619 1 22 349 -4.93e-01 -1.52e-01 -2.40e+00 2.46e+00 0 -2.24 620 1 22 357 -2.42e-02 -3.44e-02 -8.35e-01 8.36e-01 0 -3.68 621 1 22 357 -4.79e-01 -6.95e-01 -8.29e+00 8.33e+00 0 -2.98 622 1 211 359 -1.92e-01 -4.95e-01 -1.25e+01 1.25e+01 0.14 -3.85 623 1 -211 359 -1.54e-02 2.17e-01 -3.19e+00 3.20e+00 0.14 -3.38 624 1 22 362 -1.72e-03 -5.19e-02 -6.22e-01 6.24e-01 0 -3.18 625 1 22 362 1.71e-01 -4.25e-02 -1.11e+00 1.13e+00 0 -2.54 626 1 22 363 2.99e-02 -1.94e-02 -3.50e-01 3.52e-01 0 -2.98 627 1 22 363 4.43e-05 -1.85e-01 -4.93e-01 5.27e-01 0 -1.71 628 1 22 364 1.87e-01 -2.53e-01 -1.19e+00 1.23e+00 0 -2.04 629 1 22 364 -1.02e-02 -4.93e-02 -3.81e-01 3.84e-01 0 -2.72 630 1 130 365 1.43e+00 7.93e-01 4.45e+00 4.76e+00 0.498 1.73 631 1 22 366 7.14e-02 -2.58e-02 1.05e-01 1.30e-01 0 1.13 632 1 22 366 3.08e-01 -1.92e-01 1.18e+00 1.23e+00 0 1.9 633 1 -2112 369 1.14e+00 5.95e-01 4.23e+00 4.52e+00 0.94 1.9 634 2 111 369 3.82e-01 9.36e-02 1.05e+00 1.13e+00 0.135 1.7 635 1 22 370 7.13e-02 1.52e-01 4.86e-01 5.14e-01 0 1.78 636 1 22 370 2.58e-01 1.48e-01 8.84e-01 9.33e-01 0 1.81 637 2 111 371 5.45e-02 -2.01e-01 1.76e-01 3.04e-01 0.135 0.766 638 2 111 371 1.43e-01 1.47e-02 8.03e-01 8.27e-01 0.135 2.42 639 1 2212 372 2.81e-01 1.62e-01 3.41e+00 3.55e+00 0.938 3.05 640 1 -211 372 1.19e-01 1.05e-02 3.60e-01 4.04e-01 0.14 1.82 641 2 310 374 -7.94e-02 -2.87e-01 4.23e+00 4.27e+00 0.498 3.35 642 1 22 375 3.31e-01 -2.94e-03 1.68e+00 1.72e+00 0 2.33 643 1 22 375 -7.56e-03 1.76e-02 7.41e-02 7.66e-02 0 2.06 644 1 22 381 2.75e-01 2.61e-01 4.70e+00 4.72e+00 0 3.21 645 1 22 381 4.06e-02 1.67e-02 1.40e+00 1.40e+00 0 4.16 646 2 111 384 1.16e+00 -1.26e+00 2.15e+01 2.15e+01 0.135 3.22 647 2 111 384 9.90e-02 -3.33e-01 4.66e+00 4.67e+00 0.135 3.29 648 1 22 391 2.15e-02 2.14e-03 4.56e-01 4.57e-01 0 3.75 649 1 22 391 2.27e-02 -2.36e-01 1.63e+01 1.63e+01 0 4.92 650 2 310 398 -2.72e-01 2.86e-01 1.43e+02 1.43e+02 0.498 6.59 651 1 22 399 -3.71e-01 -1.22e-01 4.93e+01 4.93e+01 0 5.53 652 1 22 399 -5.81e-02 -3.43e-02 1.87e+01 1.87e+01 0 6.32 653 2 310 400 3.64e-01 -5.65e-02 2.27e+02 2.27e+02 0.498 7.12 654 1 22 403 -1.54e-02 -5.54e-03 1.95e+01 1.95e+01 0 7.78 655 1 22 403 -5.78e-02 -8.46e-02 9.85e+00 9.85e+00 0 5.26 656 1 22 405 -6.41e-02 -3.67e-02 4.79e+01 4.79e+01 0 7.17 657 1 22 405 7.07e-02 -2.95e-02 5.01e+01 5.01e+01 0 7.18 658 1 22 406 8.74e-02 8.55e-02 5.49e+01 5.49e+01 0 6.8 659 1 22 406 3.26e-02 -4.45e-02 1.31e+01 1.31e+01 0 6.17 660 1 22 407 1.04e-01 -1.10e-01 2.78e+01 2.78e+01 0 5.91 661 1 22 407 2.98e-02 -8.51e-02 4.66e+01 4.66e+01 0 6.94 662 2 111 409 -4.08e-02 -1.06e-01 1.61e+02 1.61e+02 0.135 7.95 663 2 111 409 8.39e-02 5.51e-02 2.42e+01 2.42e+01 0.135 6.18 664 1 22 412 5.71e-02 2.18e-01 1.43e+01 1.43e+01 0 4.84 665 1 22 412 1.18e-01 7.50e-02 7.19e+00 7.19e+00 0 4.63 666 1 2212 413 1.38e-01 6.21e-01 1.40e+02 1.40e+02 0.938 6.09 667 1 -211 413 -5.92e-02 1.37e-02 1.97e+01 1.97e+01 0.14 6.47 668 1 22 418 -5.49e-01 1.30e+00 2.35e+01 2.35e+01 0 3.51 669 1 22 418 -2.99e-02 8.30e-02 2.14e+00 2.15e+00 0 3.88 670 1 22 421 -8.12e-02 1.21e-01 5.87e+00 5.88e+00 0 4.39 671 1 22 421 -7.52e-02 3.02e-01 7.45e+00 7.45e+00 0 3.87 672 1 130 422 -3.93e-01 9.50e-01 2.20e+01 2.20e+01 0.498 3.76 673 2 310 424 -2.66e+00 1.70e+00 5.15e+01 5.16e+01 0.498 3.49 674 1 22 429 -2.60e-01 2.10e-01 9.61e+00 9.62e+00 0 4.05 675 1 22 429 -2.10e-01 4.47e-02 5.12e+00 5.12e+00 0 3.86 676 1 22 434 -6.00e-02 -5.89e-02 1.32e+00 1.33e+00 0 3.45 677 1 22 434 -3.25e-02 5.10e-02 2.69e+00 2.69e+00 0 4.49 678 1 22 436 -9.61e-02 9.73e-02 4.57e-01 4.77e-01 0 1.92 679 1 22 436 -2.78e-01 5.39e-02 1.35e+00 1.38e+00 0 2.27 680 1 130 437 -1.43e+00 -4.23e-01 7.25e+00 7.42e+00 0.498 2.28 681 1 211 439 -3.13e-01 -1.34e-01 6.76e-01 7.69e-01 0.14 1.44 682 1 -211 439 -9.23e-01 -3.52e-01 3.59e+00 3.72e+00 0.14 2 683 1 22 450 -1.31e-01 -6.30e-02 1.42e-01 2.03e-01 0 0.862 684 1 22 450 -1.89e-01 -4.83e-02 4.73e-01 5.11e-01 0 1.62 685 1 22 454 -1.41e-01 1.46e-02 2.04e-01 2.48e-01 0 1.16 686 1 22 454 -1.57e-01 -9.51e-02 4.81e-01 5.15e-01 0 1.69 687 1 22 464 -7.02e-01 -1.93e-02 5.26e-01 8.78e-01 0 0.692 688 1 22 464 -1.85e-02 -2.12e-02 4.32e-02 5.16e-02 0 1.21 689 1 -211 473 3.11e-01 1.37e-01 2.56e-01 4.48e-01 0.14 0.694 690 1 211 473 3.13e-02 -1.07e-01 -5.91e-02 1.88e-01 0.14 -0.508 691 1 22 477 -3.72e-03 -7.87e-03 6.34e-03 1.08e-02 0 0.676 692 1 22 477 5.87e-01 -2.60e-02 -1.09e-01 5.98e-01 0 -0.185 693 1 22 480 8.41e-02 1.54e-01 -1.26e-01 2.16e-01 0 -0.669 694 1 22 480 5.09e-02 1.25e-01 2.37e-02 1.37e-01 0 0.174 695 1 22 483 9.15e-01 -7.48e-01 -1.32e-01 1.19e+00 0 -0.111 696 1 22 483 3.69e-01 -1.26e-01 2.48e-01 4.62e-01 0 0.598 697 1 22 486 1.31e-01 1.21e-01 -3.07e-01 3.55e-01 0 -1.31 698 1 22 486 8.45e-02 -3.23e-02 -1.81e-01 2.02e-01 0 -1.44 699 1 22 488 4.15e-01 1.18e-01 -1.88e-01 4.70e-01 0 -0.423 700 1 22 488 5.47e-01 1.76e-02 -3.21e-01 6.35e-01 0 -0.557 701 1 2212 489 9.89e-01 -7.59e-01 -8.36e-01 1.77e+00 0.938 -0.629 702 1 -211 489 2.97e-01 -1.18e-01 -2.72e-01 4.43e-01 0.14 -0.773 703 1 -2112 491 1.11e+00 -4.33e-01 -1.63e+00 2.23e+00 0.94 -1.12 704 2 111 491 2.19e-01 -1.91e-01 -2.49e-01 4.06e-01 0.135 -0.775 705 1 22 494 1.84e-01 -5.10e-01 -9.37e-01 1.08e+00 0 -1.31 706 1 22 494 9.80e-02 -2.39e-01 -6.63e-01 7.11e-01 0 -1.67 707 1 22 497 6.23e-02 -1.25e-01 -7.95e-02 1.61e-01 0 -0.542 708 1 22 497 4.89e-02 1.57e-02 -1.01e-01 1.13e-01 0 -1.43 709 1 22 503 -1.52e-01 -1.90e-01 -7.77e-01 8.14e-01 0 -1.88 710 1 22 503 -2.57e-01 -3.78e-01 -9.53e-01 1.06e+00 0 -1.48 711 1 22 505 -4.71e-02 -1.65e-01 -6.21e-01 6.44e-01 0 -2 712 1 22 505 -2.38e-02 -8.08e-01 -2.21e+00 2.36e+00 0 -1.73 713 1 22 513 -1.33e-01 -1.83e-01 -4.33e-01 4.89e-01 0 -1.4 714 1 22 513 -4.03e-01 -2.41e-01 -7.98e-01 9.26e-01 0 -1.3 715 1 22 518 -4.14e-01 4.26e-01 -2.43e+00 2.50e+00 0 -2.12 716 1 22 518 -5.59e-01 5.11e-01 -2.54e+00 2.65e+00 0 -1.92 717 1 22 521 -9.34e-01 9.34e-01 -7.76e+00 7.87e+00 0 -2.47 718 1 22 521 -5.56e-02 1.89e-02 -4.10e-01 4.14e-01 0 -2.64 719 2 111 522 -2.09e-01 2.65e-01 -3.41e+00 3.43e+00 0.135 -3.01 720 2 111 522 1.49e-01 6.16e-03 -2.49e+00 2.50e+00 0.135 -3.51 721 1 22 527 -4.77e-03 2.30e-02 -7.20e+00 7.20e+00 0 -6.42 722 1 22 527 -1.16e-01 -1.85e-01 -4.88e+01 4.88e+01 0 -6.1 723 1 22 531 -1.24e-01 -1.04e-01 -7.37e+00 7.37e+00 0 -4.51 724 1 22 531 -5.16e-01 -1.27e-01 -2.25e+01 2.25e+01 0 -4.44 725 1 130 534 -8.15e-01 -1.22e+00 -4.30e+01 4.31e+01 0.498 -4.07 726 1 22 535 -9.87e-02 -1.30e-01 -2.32e+00 2.32e+00 0 -3.35 727 1 22 535 -2.03e-01 -3.39e-02 -2.92e+00 2.93e+00 0 -3.35 728 1 22 537 3.95e-01 -9.09e-01 -2.13e+01 2.13e+01 0 -3.76 729 1 22 537 2.71e-01 -8.20e-01 -1.66e+01 1.66e+01 0 -3.65 730 1 22 541 -3.27e-02 -2.04e-02 -2.19e+00 2.19e+00 0 -4.73 731 1 22 541 7.39e-02 -3.57e-02 -1.04e+00 1.04e+00 0 -3.23 732 1 22 543 3.75e-01 -2.62e-01 -3.41e+00 3.44e+00 0 -2.71 733 1 22 543 5.63e-01 -2.35e-01 -5.22e+00 5.26e+00 0 -2.84 734 1 22 546 2.21e-02 8.28e-02 -1.17e+00 1.18e+00 0 -3.31 735 1 22 546 1.09e-01 7.60e-02 -6.49e-01 6.62e-01 0 -2.29 736 1 22 548 3.55e-01 2.88e-01 -7.14e+00 7.15e+00 0 -3.44 737 1 22 548 3.94e-02 1.18e-01 -2.11e+00 2.11e+00 0 -3.52 738 1 22 550 2.82e-01 4.68e-01 -1.04e+01 1.04e+01 0 -3.64 739 1 22 550 6.30e-02 1.85e-01 -2.62e+00 2.62e+00 0 -3.29 740 1 22 553 1.07e-01 7.03e-02 -1.44e+00 1.45e+00 0 -3.12 741 1 22 553 3.51e-01 5.24e-02 -6.36e+00 6.37e+00 0 -3.58 742 1 22 557 1.44e-01 3.51e-02 -7.43e+00 7.43e+00 0 -4.61 743 1 22 557 5.07e-03 6.99e-02 -6.34e+00 6.34e+00 0 -5.2 744 1 22 559 2.66e-01 1.18e-01 -4.91e+00 4.92e+00 0 -3.52 745 1 22 559 3.50e-02 9.12e-02 -2.08e+00 2.08e+00 0 -3.75 746 1 211 563 4.07e-01 6.57e-01 -2.05e+01 2.05e+01 0.14 -3.97 747 1 -211 563 1.58e-01 1.01e-01 -3.55e+00 3.55e+00 0.14 -3.63 748 2 111 563 2.51e-02 2.69e-01 -1.50e+01 1.50e+01 0.135 -4.71 749 1 22 568 5.49e-02 -4.12e-02 -3.68e+00 3.68e+00 0 -4.67 750 1 22 568 6.98e-01 -2.58e-02 -3.22e+01 3.22e+01 0 -4.52 751 1 22 570 -1.06e-02 1.67e-01 -6.06e+01 6.06e+01 0 -6.58 752 1 22 570 3.80e-02 -3.95e-03 -2.78e+01 2.78e+01 0 -7.28 753 1 211 573 3.34e-01 6.54e-02 -5.78e+01 5.78e+01 0.14 -5.83 754 1 -211 573 7.91e-02 -9.67e-02 -8.89e+00 8.89e+00 0.14 -4.96 755 1 22 577 6.11e-02 -9.32e-02 -2.24e+00 2.25e+00 0 -3.7 756 1 22 577 7.79e-02 -9.57e-02 -7.40e+00 7.40e+00 0 -4.79 757 1 22 587 1.70e-01 -4.11e-01 1.09e+01 1.09e+01 0 3.89 758 1 22 587 -2.16e-03 -2.69e-02 2.23e-01 2.25e-01 0 2.81 759 1 22 614 2.13e-02 -1.78e-03 9.00e-03 2.32e-02 0 0.41 760 1 22 614 2.48e-02 -2.12e-02 -3.00e-01 3.01e-01 0 -2.91 761 1 22 615 5.06e-02 3.85e-01 -5.53e-01 6.76e-01 0 -1.15 762 1 22 615 1.21e-01 2.51e-01 -5.38e-01 6.06e-01 0 -1.41 763 1 22 634 1.94e-01 -1.04e-03 6.32e-01 6.61e-01 0 1.9 764 1 22 634 1.89e-01 9.46e-02 4.14e-01 4.65e-01 0 1.43 765 1 22 637 6.79e-02 -4.40e-02 2.19e-02 8.39e-02 0 0.268 766 1 22 637 -1.35e-02 -1.57e-01 1.54e-01 2.21e-01 0 0.863 767 1 22 638 1.57e-02 -1.17e-02 4.54e-01 4.54e-01 0 3.83 768 1 22 638 1.27e-01 2.64e-02 3.49e-01 3.73e-01 0 1.71 769 2 111 641 -2.10e-01 -2.65e-01 3.33e+00 3.35e+00 0.135 2.98 770 2 111 641 1.31e-01 -2.12e-02 8.99e-01 9.19e-01 0.135 2.61 771 1 22 646 3.46e-01 -4.19e-01 6.11e+00 6.14e+00 0 3.12 772 1 22 646 8.12e-01 -8.44e-01 1.53e+01 1.54e+01 0 3.27 773 1 22 647 1.12e-01 -3.40e-01 4.50e+00 4.52e+00 0 3.23 774 1 22 647 -1.28e-02 7.01e-03 1.54e-01 1.55e-01 0 3.05 775 2 111 650 -2.94e-01 2.51e-01 1.30e+02 1.30e+02 0.135 6.51 776 2 111 650 2.18e-02 3.47e-02 1.30e+01 1.30e+01 0.135 6.45 777 2 111 653 1.83e-01 -2.37e-01 1.12e+02 1.12e+02 0.135 6.62 778 2 111 653 1.81e-01 1.80e-01 1.15e+02 1.15e+02 0.135 6.8 779 1 22 662 -6.50e-02 -2.14e-03 7.97e+01 7.97e+01 0 7.8 780 1 -11 662 1.99e-02 -8.53e-02 6.64e+01 6.64e+01 0.00051 7.32 781 1 11 662 4.32e-03 -1.86e-02 1.45e+01 1.45e+01 0.00051 7.33 782 1 22 663 1.11e-01 1.32e-02 1.94e+01 1.94e+01 0 5.85 783 1 22 663 -2.71e-02 4.19e-02 4.71e+00 4.71e+00 0 5.24 784 2 111 673 -1.04e+00 4.30e-01 1.85e+01 1.85e+01 0.135 3.5 785 2 111 673 -1.62e+00 1.27e+00 3.30e+01 3.31e+01 0.135 3.47 786 1 22 704 1.72e-01 -6.17e-02 -1.42e-01 2.31e-01 0 -0.713 787 1 22 704 4.68e-02 -1.29e-01 -1.07e-01 1.74e-01 0 -0.715 788 1 22 719 -1.48e-01 2.22e-01 -3.05e+00 3.06e+00 0 -3.13 789 1 22 719 -6.14e-02 4.32e-02 -3.63e-01 3.70e-01 0 -2.28 790 1 22 720 6.65e-02 -6.37e-02 -1.02e+00 1.02e+00 0 -3.1 791 1 22 720 8.29e-02 6.98e-02 -1.47e+00 1.47e+00 0 -3.3 792 1 22 748 -4.48e-02 1.83e-01 -8.47e+00 8.47e+00 0 -4.5 793 1 22 748 7.00e-02 8.56e-02 -6.54e+00 6.54e+00 0 -4.77 794 1 22 769 -4.67e-02 -2.03e-02 2.14e-01 2.20e-01 0 2.14 795 1 22 769 -1.63e-01 -2.45e-01 3.12e+00 3.13e+00 0 3.06 796 1 22 770 1.44e-01 -2.27e-02 5.40e-01 5.60e-01 0 2.02 797 1 22 770 -1.36e-02 1.48e-03 3.59e-01 3.59e-01 0 3.96 798 1 22 775 -3.07e-01 2.27e-01 1.23e+02 1.23e+02 0 6.47 799 1 22 775 1.26e-02 2.46e-02 7.04e+00 7.04e+00 0 6.23 800 1 22 776 -1.18e-02 -4.19e-02 2.14e+00 2.14e+00 0 4.59 801 1 22 776 3.36e-02 7.66e-02 1.09e+01 1.09e+01 0 5.56 802 1 22 777 1.19e-02 1.64e-02 4.34e+00 4.34e+00 0 6.06 803 1 22 777 1.71e-01 -2.53e-01 1.08e+02 1.08e+02 0 6.56 804 1 22 778 1.79e-01 1.16e-01 9.91e+01 9.91e+01 0 6.83 805 1 22 778 1.60e-03 6.47e-02 1.56e+01 1.56e+01 0 6.18 806 1 22 784 -4.31e-01 1.59e-01 6.55e+00 6.56e+00 0 3.35 807 1 22 784 -6.05e-01 2.71e-01 1.19e+01 1.20e+01 0 3.59 808 1 22 785 -1.13e+00 8.24e-01 2.17e+01 2.18e+01 0 3.44 809 1 22 785 -4.92e-01 4.42e-01 1.13e+01 1.13e+01 0 3.53 hepmc-2.06.09.orig/test/testPrintBug.cc0000644000175000017500000000160511551650131020525 0ustar sylvestresylvestre// // Thanks to Bob McElrath and Frank Siegert for this test // #include #include "HepMC/GenEvent.h" #include "HepMC/SimpleVector.h" int main() { HepMC::GenEvent* p_event; p_event = new HepMC::GenEvent(); p_event->use_units(HepMC::Units::GEV, HepMC::Units::MM); // define an output stream std::ofstream os( "testPrintBug.out" ); for(int i=0; i<10; i++) { HepMC::FourVector vector(1.0,1.0,1.0,1.0); HepMC::GenVertex* vertex = new HepMC::GenVertex(vector,i); for(int j=0; j<3; j++) { HepMC::GenParticle* particle = new HepMC::GenParticle(vector,1,2); vertex->add_particle_in(particle); } for(int j=0; j<3; j++) { HepMC::GenParticle* particle = new HepMC::GenParticle(vector,1,2); vertex->add_particle_out(particle); } p_event->add_vertex(vertex); } p_event->print(os); // cleanup delete p_event; return 0; } hepmc-2.06.09.orig/test/testUnits.cc0000644000175000017500000000401311015047530020067 0ustar sylvestresylvestre// // Test Units // #include #include "HepMC/Units.h" int main() { int err = 0; double cf; std::cout << "Default units: " << HepMC::Units::name(HepMC::Units::default_momentum_unit()) << " " << HepMC::Units::name(HepMC::Units::default_length_unit()) << std::endl; // check momentum conversion factors cf = conversion_factor( HepMC::Units::GEV, HepMC::Units::GEV ); if( cf != 1 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for GEV to GEV - should be 1 \n"; } cf = conversion_factor( HepMC::Units::MEV, HepMC::Units::MEV ); if( cf != 1 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for MEV to MEV - should be 1 \n"; } cf = conversion_factor( HepMC::Units::MEV, HepMC::Units::GEV ); if( cf != 0.001 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for MEV to GEV - should be 0.001 \n"; } cf = conversion_factor( HepMC::Units::GEV, HepMC::Units::MEV ); if( cf != 1000.0 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for GEV to MEV - should be 1000 \n"; } // check length conversion factors cf = conversion_factor( HepMC::Units::MM, HepMC::Units::MM ); if( cf != 1 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for MM to MM - should be 1 \n"; } cf = conversion_factor( HepMC::Units::CM, HepMC::Units::CM ); if( cf != 1 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for CM to CM - should be 1 \n"; } cf = conversion_factor( HepMC::Units::CM, HepMC::Units::MM ); if( cf != 10.0 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for CM to MM - should be 10 \n"; } cf = conversion_factor( HepMC::Units::MM, HepMC::Units::CM ); if( cf != 0.1 ) { ++err; std::cerr << "wrong conversion factor " << cf << " for MM to CM - should be 0.1 \n"; } return err; } hepmc-2.06.09.orig/test/testHepMCIteration.dat0000644000175000017500000004447311374257600022012 0ustar sylvestresylvestreEvent 9 is good photons in event 9: GenParticle: 7 ID:22 (P,E)=-35.8473,-6.12284,-383.843,385.562 Stat:3 PV:-5 EV:-6 Pol:(0,0) F:0 GenParticle: 9 ID:22 (P,E)=-35.8473,-6.12284,-383.843,385.562 Stat:1 PV:-6 EV:0 Pol:(0,0) F:0 A W boson has been found in event: 9 GenParticle: 8 ID:-24 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its parents are: GenParticle: 5 ID:-2 (P,E)=0.216419,2.15858,6.72107,7.06251 Stat:3 PV:-3 EV:-5 Pol:(0,0) F:0 GenParticle: 6 ID:1 (P,E)=0.258424,1.02092,-721.608,721.609 Stat:3 PV:-4 EV:-5 Pol:(0,0) F:0 Its children are: (id,barcode,status) -24 10 2 Its descendants are: GenParticle: 348 ID:-211 (P,E)=6.93515,-9.95716,-54.4707,55.8061 Stat:1 PV:-23 EV:0 Pol:(0,0) F:0 GenParticle: 349 ID:211 (P,E)=1.18151,-1.97831,-11.941,12.1621 Stat:1 PV:-23 EV:0 Pol:(0,0) F:0 GenParticle: 681 ID:22 (P,E)=0.752791,-0.806798,-4.68143,4.80972 Stat:1 PV:-182 EV:0 Pol:(0,0) F:0 GenParticle: 682 ID:22 (P,E)=0.69264,-0.850998,-4.18926,4.33057 Stat:1 PV:-182 EV:0 Pol:(0,0) F:0 GenParticle: 350 ID:211 (P,E)=3.01865,-4.58869,-25.1672,25.7599 Stat:1 PV:-24 EV:0 Pol:(0,0) F:0 GenParticle: 351 ID:111 (P,E)=1.44543,-1.6578,-8.87069,9.14029 Stat:2 PV:-24 EV:-182 Pol:(0,0) F:0 GenParticle: 683 ID:22 (P,E)=1.35018,-0.49391,-8.87935,8.99498 Stat:1 PV:-183 EV:0 Pol:(0,0) F:0 GenParticle: 684 ID:22 (P,E)=0.357246,-0.113731,-1.9313,1.96735 Stat:1 PV:-183 EV:0 Pol:(0,0) F:0 GenParticle: 352 ID:-211 (P,E)=0.914552,-0.98289,-4.94835,5.12915 Stat:1 PV:-25 EV:0 Pol:(0,0) F:0 GenParticle: 353 ID:111 (P,E)=1.70742,-0.607641,-10.8106,10.9623 Stat:2 PV:-25 EV:-183 Pol:(0,0) F:0 GenParticle: 685 ID:22 (P,E)=-0.000123784,-0.0202557,-1.27202,1.27218 Stat:1 PV:-184 EV:0 Pol:(0,0) F:0 GenParticle: 686 ID:22 (P,E)=-0.0519781,-0.00769611,-0.186392,0.193657 Stat:1 PV:-184 EV:0 Pol:(0,0) F:0 GenParticle: 687 ID:22 (P,E)=0.0606408,0.0465357,-0.328398,0.337177 Stat:1 PV:-185 EV:0 Pol:(0,0) F:0 GenParticle: 688 ID:22 (P,E)=-0.00923098,-0.0583619,-0.114798,0.129112 Stat:1 PV:-185 EV:0 Pol:(0,0) F:0 GenParticle: 689 ID:22 (P,E)=-0.126406,0.0471778,-0.33746,0.363433 Stat:1 PV:-186 EV:0 Pol:(0,0) F:0 GenParticle: 690 ID:22 (P,E)=0.0216985,-0.0264081,-0.0504729,0.0609568 Stat:1 PV:-186 EV:0 Pol:(0,0) F:0 GenParticle: 354 ID:111 (P,E)=-0.0521019,-0.0279518,-1.45842,1.46584 Stat:2 PV:-26 EV:-184 Pol:(0,0) F:0 GenParticle: 355 ID:111 (P,E)=0.0514098,-0.0118262,-0.443196,0.466288 Stat:2 PV:-26 EV:-185 Pol:(0,0) F:0 GenParticle: 356 ID:111 (P,E)=-0.104707,0.0207697,-0.387933,0.42439 Stat:2 PV:-26 EV:-186 Pol:(0,0) F:0 GenParticle: 691 ID:22 (P,E)=0.00793944,-0.0290189,-0.0310185,0.043212 Stat:1 PV:-187 EV:0 Pol:(0,0) F:0 GenParticle: 692 ID:22 (P,E)=0.0013361,-0.360006,-1.44858,1.49264 Stat:1 PV:-187 EV:0 Pol:(0,0) F:0 GenParticle: 357 ID:211 (P,E)=0.346846,0.162917,-0.662966,0.778362 Stat:1 PV:-27 EV:0 Pol:(0,0) F:0 GenParticle: 358 ID:111 (P,E)=0.00927554,-0.389025,-1.4796,1.53585 Stat:2 PV:-27 EV:-187 Pol:(0,0) F:0 GenParticle: 359 ID:22 (P,E)=0.313201,0.486794,-1.76801,1.86036 Stat:1 PV:-28 EV:0 Pol:(0,0) F:0 GenParticle: 360 ID:22 (P,E)=1.06097,1.56889,-5.05762,5.40061 Stat:1 PV:-28 EV:0 Pol:(0,0) F:0 GenParticle: 361 ID:22 (P,E)=0.0118411,1.01695,-6.14181,6.22545 Stat:1 PV:-29 EV:0 Pol:(0,0) F:0 GenParticle: 362 ID:22 (P,E)=-0.0392098,0.118509,-0.623717,0.636086 Stat:1 PV:-29 EV:0 Pol:(0,0) F:0 GenParticle: 693 ID:22 (P,E)=0.503143,2.42416,-7.18654,7.60105 Stat:1 PV:-188 EV:0 Pol:(0,0) F:0 GenParticle: 694 ID:22 (P,E)=0.0852507,0.301268,-1.04807,1.09383 Stat:1 PV:-188 EV:0 Pol:(0,0) F:0 GenParticle: 363 ID:2212 (P,E)=1.48826,4.58611,-13.7216,14.5743 Stat:1 PV:-30 EV:0 Pol:(0,0) F:0 GenParticle: 364 ID:111 (P,E)=0.588394,2.72543,-8.2346,8.69489 Stat:2 PV:-30 EV:-188 Pol:(0,0) F:0 GenParticle: 695 ID:130 (P,E)=1.00006,3.5442,-10.8415,11.4607 Stat:1 PV:-189 EV:0 Pol:(0,0) F:0 GenParticle: 365 ID:-311 (P,E)=1.00006,3.5442,-10.8415,11.4607 Stat:2 PV:-31 EV:-189 Pol:(0,0) F:0 GenParticle: 366 ID:-211 (P,E)=0.289664,0.656716,-1.51891,1.68575 Stat:1 PV:-31 EV:0 Pol:(0,0) F:0 GenParticle: 899 ID:-2112 (P,E)=2.24335,9.29907,-28.9549,30.5086 Stat:1 PV:-294 EV:0 Pol:(0,0) F:0 GenParticle: 900 ID:211 (P,E)=0.955761,4.14508,-13.4757,14.1319 Stat:1 PV:-294 EV:0 Pol:(0,0) F:0 GenParticle: 929 ID:130 (P,E)=1.51446,7.25901,-23.9839,25.109 Stat:1 PV:-309 EV:0 Pol:(0,0) F:0 GenParticle: 901 ID:311 (P,E)=1.51446,7.25901,-23.9839,25.109 Stat:2 PV:-295 EV:-309 Pol:(0,0) F:0 GenParticle: 902 ID:211 (P,E)=0.959074,3.55331,-11.0091,11.6089 Stat:1 PV:-295 EV:0 Pol:(0,0) F:0 GenParticle: 696 ID:-211 (P,E)=0.207255,1.11244,-3.59343,3.76998 Stat:1 PV:-190 EV:0 Pol:(0,0) F:0 GenParticle: 697 ID:-211 (P,E)=0.313377,1.05379,-3.03519,3.23118 Stat:1 PV:-190 EV:0 Pol:(0,0) F:0 GenParticle: 698 ID:-3112 (P,E)=3.19911,13.4442,-42.4307,44.6405 Stat:2 PV:-190 EV:-294 Pol:(0,0) F:0 GenParticle: 699 ID:323 (P,E)=2.47353,10.8123,-34.9931,36.7179 Stat:2 PV:-190 EV:-295 Pol:(0,0) F:0 GenParticle: 367 ID:-4132 (P,E)=6.19327,26.4227,-84.0523,88.3596 Stat:2 PV:-32 EV:-190 Pol:(0,0) F:0 GenParticle: 368 ID:22 (P,E)=0.142817,0.365437,-0.959274,1.03641 Stat:1 PV:-32 EV:0 Pol:(0,0) F:0 GenParticle: 130 ID:-321 (P,E)=8.47742,-11.5752,-66.0176,67.5605 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 131 ID:113 (P,E)=8.11665,-11.9355,-66.4117,67.9682 Stat:2 PV:-12 EV:-23 Pol:(0,0) F:0 GenParticle: 132 ID:213 (P,E)=4.46409,-6.24649,-34.0378,34.9002 Stat:2 PV:-12 EV:-24 Pol:(0,0) F:0 GenParticle: 133 ID:-213 (P,E)=2.62198,-1.59053,-15.759,16.0915 Stat:2 PV:-12 EV:-25 Pol:(0,0) F:0 GenParticle: 134 ID:211 (P,E)=1.09917,-1.77479,-6.26429,6.60446 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 135 ID:221 (P,E)=-0.105399,-0.0190082,-2.28954,2.35652 Stat:2 PV:-12 EV:-26 Pol:(0,0) F:0 GenParticle: 136 ID:-211 (P,E)=0.37094,1.08489,-4.55358,4.69778 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 137 ID:213 (P,E)=0.356121,-0.226108,-2.14256,2.31422 Stat:2 PV:-12 EV:-27 Pol:(0,0) F:0 GenParticle: 138 ID:-211 (P,E)=-0.128069,0.0933565,-0.64814,0.681676 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 139 ID:111 (P,E)=1.37417,2.05568,-6.82563,7.26097 Stat:2 PV:-12 EV:-28 Pol:(0,0) F:0 GenParticle: 140 ID:111 (P,E)=-0.0273688,1.13546,-6.76553,6.86153 Stat:2 PV:-12 EV:-29 Pol:(0,0) F:0 GenParticle: 141 ID:2214 (P,E)=2.07666,7.31154,-21.9562,23.2692 Stat:2 PV:-12 EV:-30 Pol:(0,0) F:0 GenParticle: 142 ID:-323 (P,E)=1.28973,4.20092,-12.3604,13.1464 Stat:2 PV:-12 EV:-31 Pol:(0,0) F:0 GenParticle: 143 ID:-4314 (P,E)=6.33609,26.7881,-85.0116,89.396 Stat:2 PV:-12 EV:-32 Pol:(0,0) F:0 GenParticle: 129 ID:92 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:2 PV:-11 EV:-12 Pol:(0,0) F:0 GenParticle: 13 ID:3 (P,E)=23.6305,-33.4859,-187.168,191.604 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 14 ID:21 (P,E)=2.16785,-0.576478,-9.12382,9.39553 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 15 ID:21 (P,E)=-0.00673469,0.0214143,-0.661076,0.661457 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 16 ID:21 (P,E)=0.337647,0.732295,-0.927447,1.22899 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 17 ID:21 (P,E)=0.0795054,2.07871,-5.14705,5.55153 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 18 ID:-4 (P,E)=10.1134,40.5323,-128.016,134.668 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 10 ID:-24 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 A W boson has been found in event: 9 GenParticle: 10 ID:-24 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 Its parents are: GenParticle: 8 ID:-24 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its children are: (id,barcode,status) 3 13 2 (id,barcode,status) 21 14 2 (id,barcode,status) 21 15 2 (id,barcode,status) 21 16 2 (id,barcode,status) 21 17 2 (id,barcode,status) -4 18 2 Its descendants are: GenParticle: 348 ID:-211 (P,E)=6.93515,-9.95716,-54.4707,55.8061 Stat:1 PV:-23 EV:0 Pol:(0,0) F:0 GenParticle: 349 ID:211 (P,E)=1.18151,-1.97831,-11.941,12.1621 Stat:1 PV:-23 EV:0 Pol:(0,0) F:0 GenParticle: 681 ID:22 (P,E)=0.752791,-0.806798,-4.68143,4.80972 Stat:1 PV:-182 EV:0 Pol:(0,0) F:0 GenParticle: 682 ID:22 (P,E)=0.69264,-0.850998,-4.18926,4.33057 Stat:1 PV:-182 EV:0 Pol:(0,0) F:0 GenParticle: 350 ID:211 (P,E)=3.01865,-4.58869,-25.1672,25.7599 Stat:1 PV:-24 EV:0 Pol:(0,0) F:0 GenParticle: 351 ID:111 (P,E)=1.44543,-1.6578,-8.87069,9.14029 Stat:2 PV:-24 EV:-182 Pol:(0,0) F:0 GenParticle: 683 ID:22 (P,E)=1.35018,-0.49391,-8.87935,8.99498 Stat:1 PV:-183 EV:0 Pol:(0,0) F:0 GenParticle: 684 ID:22 (P,E)=0.357246,-0.113731,-1.9313,1.96735 Stat:1 PV:-183 EV:0 Pol:(0,0) F:0 GenParticle: 352 ID:-211 (P,E)=0.914552,-0.98289,-4.94835,5.12915 Stat:1 PV:-25 EV:0 Pol:(0,0) F:0 GenParticle: 353 ID:111 (P,E)=1.70742,-0.607641,-10.8106,10.9623 Stat:2 PV:-25 EV:-183 Pol:(0,0) F:0 GenParticle: 685 ID:22 (P,E)=-0.000123784,-0.0202557,-1.27202,1.27218 Stat:1 PV:-184 EV:0 Pol:(0,0) F:0 GenParticle: 686 ID:22 (P,E)=-0.0519781,-0.00769611,-0.186392,0.193657 Stat:1 PV:-184 EV:0 Pol:(0,0) F:0 GenParticle: 687 ID:22 (P,E)=0.0606408,0.0465357,-0.328398,0.337177 Stat:1 PV:-185 EV:0 Pol:(0,0) F:0 GenParticle: 688 ID:22 (P,E)=-0.00923098,-0.0583619,-0.114798,0.129112 Stat:1 PV:-185 EV:0 Pol:(0,0) F:0 GenParticle: 689 ID:22 (P,E)=-0.126406,0.0471778,-0.33746,0.363433 Stat:1 PV:-186 EV:0 Pol:(0,0) F:0 GenParticle: 690 ID:22 (P,E)=0.0216985,-0.0264081,-0.0504729,0.0609568 Stat:1 PV:-186 EV:0 Pol:(0,0) F:0 GenParticle: 354 ID:111 (P,E)=-0.0521019,-0.0279518,-1.45842,1.46584 Stat:2 PV:-26 EV:-184 Pol:(0,0) F:0 GenParticle: 355 ID:111 (P,E)=0.0514098,-0.0118262,-0.443196,0.466288 Stat:2 PV:-26 EV:-185 Pol:(0,0) F:0 GenParticle: 356 ID:111 (P,E)=-0.104707,0.0207697,-0.387933,0.42439 Stat:2 PV:-26 EV:-186 Pol:(0,0) F:0 GenParticle: 691 ID:22 (P,E)=0.00793944,-0.0290189,-0.0310185,0.043212 Stat:1 PV:-187 EV:0 Pol:(0,0) F:0 GenParticle: 692 ID:22 (P,E)=0.0013361,-0.360006,-1.44858,1.49264 Stat:1 PV:-187 EV:0 Pol:(0,0) F:0 GenParticle: 357 ID:211 (P,E)=0.346846,0.162917,-0.662966,0.778362 Stat:1 PV:-27 EV:0 Pol:(0,0) F:0 GenParticle: 358 ID:111 (P,E)=0.00927554,-0.389025,-1.4796,1.53585 Stat:2 PV:-27 EV:-187 Pol:(0,0) F:0 GenParticle: 359 ID:22 (P,E)=0.313201,0.486794,-1.76801,1.86036 Stat:1 PV:-28 EV:0 Pol:(0,0) F:0 GenParticle: 360 ID:22 (P,E)=1.06097,1.56889,-5.05762,5.40061 Stat:1 PV:-28 EV:0 Pol:(0,0) F:0 GenParticle: 361 ID:22 (P,E)=0.0118411,1.01695,-6.14181,6.22545 Stat:1 PV:-29 EV:0 Pol:(0,0) F:0 GenParticle: 362 ID:22 (P,E)=-0.0392098,0.118509,-0.623717,0.636086 Stat:1 PV:-29 EV:0 Pol:(0,0) F:0 GenParticle: 693 ID:22 (P,E)=0.503143,2.42416,-7.18654,7.60105 Stat:1 PV:-188 EV:0 Pol:(0,0) F:0 GenParticle: 694 ID:22 (P,E)=0.0852507,0.301268,-1.04807,1.09383 Stat:1 PV:-188 EV:0 Pol:(0,0) F:0 GenParticle: 363 ID:2212 (P,E)=1.48826,4.58611,-13.7216,14.5743 Stat:1 PV:-30 EV:0 Pol:(0,0) F:0 GenParticle: 364 ID:111 (P,E)=0.588394,2.72543,-8.2346,8.69489 Stat:2 PV:-30 EV:-188 Pol:(0,0) F:0 GenParticle: 695 ID:130 (P,E)=1.00006,3.5442,-10.8415,11.4607 Stat:1 PV:-189 EV:0 Pol:(0,0) F:0 GenParticle: 365 ID:-311 (P,E)=1.00006,3.5442,-10.8415,11.4607 Stat:2 PV:-31 EV:-189 Pol:(0,0) F:0 GenParticle: 366 ID:-211 (P,E)=0.289664,0.656716,-1.51891,1.68575 Stat:1 PV:-31 EV:0 Pol:(0,0) F:0 GenParticle: 899 ID:-2112 (P,E)=2.24335,9.29907,-28.9549,30.5086 Stat:1 PV:-294 EV:0 Pol:(0,0) F:0 GenParticle: 900 ID:211 (P,E)=0.955761,4.14508,-13.4757,14.1319 Stat:1 PV:-294 EV:0 Pol:(0,0) F:0 GenParticle: 929 ID:130 (P,E)=1.51446,7.25901,-23.9839,25.109 Stat:1 PV:-309 EV:0 Pol:(0,0) F:0 GenParticle: 901 ID:311 (P,E)=1.51446,7.25901,-23.9839,25.109 Stat:2 PV:-295 EV:-309 Pol:(0,0) F:0 GenParticle: 902 ID:211 (P,E)=0.959074,3.55331,-11.0091,11.6089 Stat:1 PV:-295 EV:0 Pol:(0,0) F:0 GenParticle: 696 ID:-211 (P,E)=0.207255,1.11244,-3.59343,3.76998 Stat:1 PV:-190 EV:0 Pol:(0,0) F:0 GenParticle: 697 ID:-211 (P,E)=0.313377,1.05379,-3.03519,3.23118 Stat:1 PV:-190 EV:0 Pol:(0,0) F:0 GenParticle: 698 ID:-3112 (P,E)=3.19911,13.4442,-42.4307,44.6405 Stat:2 PV:-190 EV:-294 Pol:(0,0) F:0 GenParticle: 699 ID:323 (P,E)=2.47353,10.8123,-34.9931,36.7179 Stat:2 PV:-190 EV:-295 Pol:(0,0) F:0 GenParticle: 367 ID:-4132 (P,E)=6.19327,26.4227,-84.0523,88.3596 Stat:2 PV:-32 EV:-190 Pol:(0,0) F:0 GenParticle: 368 ID:22 (P,E)=0.142817,0.365437,-0.959274,1.03641 Stat:1 PV:-32 EV:0 Pol:(0,0) F:0 GenParticle: 130 ID:-321 (P,E)=8.47742,-11.5752,-66.0176,67.5605 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 131 ID:113 (P,E)=8.11665,-11.9355,-66.4117,67.9682 Stat:2 PV:-12 EV:-23 Pol:(0,0) F:0 GenParticle: 132 ID:213 (P,E)=4.46409,-6.24649,-34.0378,34.9002 Stat:2 PV:-12 EV:-24 Pol:(0,0) F:0 GenParticle: 133 ID:-213 (P,E)=2.62198,-1.59053,-15.759,16.0915 Stat:2 PV:-12 EV:-25 Pol:(0,0) F:0 GenParticle: 134 ID:211 (P,E)=1.09917,-1.77479,-6.26429,6.60446 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 135 ID:221 (P,E)=-0.105399,-0.0190082,-2.28954,2.35652 Stat:2 PV:-12 EV:-26 Pol:(0,0) F:0 GenParticle: 136 ID:-211 (P,E)=0.37094,1.08489,-4.55358,4.69778 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 137 ID:213 (P,E)=0.356121,-0.226108,-2.14256,2.31422 Stat:2 PV:-12 EV:-27 Pol:(0,0) F:0 GenParticle: 138 ID:-211 (P,E)=-0.128069,0.0933565,-0.64814,0.681676 Stat:1 PV:-12 EV:0 Pol:(0,0) F:0 GenParticle: 139 ID:111 (P,E)=1.37417,2.05568,-6.82563,7.26097 Stat:2 PV:-12 EV:-28 Pol:(0,0) F:0 GenParticle: 140 ID:111 (P,E)=-0.0273688,1.13546,-6.76553,6.86153 Stat:2 PV:-12 EV:-29 Pol:(0,0) F:0 GenParticle: 141 ID:2214 (P,E)=2.07666,7.31154,-21.9562,23.2692 Stat:2 PV:-12 EV:-30 Pol:(0,0) F:0 GenParticle: 142 ID:-323 (P,E)=1.28973,4.20092,-12.3604,13.1464 Stat:2 PV:-12 EV:-31 Pol:(0,0) F:0 GenParticle: 143 ID:-4314 (P,E)=6.33609,26.7881,-85.0116,89.396 Stat:2 PV:-12 EV:-32 Pol:(0,0) F:0 GenParticle: 129 ID:92 (P,E)=36.3222,9.30234,-331.044,343.109 Stat:2 PV:-11 EV:-12 Pol:(0,0) F:0 GenParticle: 13 ID:3 (P,E)=23.6305,-33.4859,-187.168,191.604 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 14 ID:21 (P,E)=2.16785,-0.576478,-9.12382,9.39553 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 15 ID:21 (P,E)=-0.00673469,0.0214143,-0.661076,0.661457 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 16 ID:21 (P,E)=0.337647,0.732295,-0.927447,1.22899 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 17 ID:21 (P,E)=0.0795054,2.07871,-5.14705,5.55153 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 GenParticle: 18 ID:-4 (P,E)=10.1134,40.5323,-128.016,134.668 Stat:2 PV:-8 EV:-11 Pol:(0,0) F:0 Event 18 is good photons in event 18: GenParticle: 7 ID:22 (P,E)=23.7859,34.5098,42.0174,59.3478 Stat:3 PV:-5 EV:-6 Pol:(0,0) F:0 GenParticle: 9 ID:22 (P,E)=23.7859,34.5098,42.0174,59.3478 Stat:1 PV:-6 EV:0 Pol:(0,0) F:0 A W boson has been found in event: 18 GenParticle: 8 ID:24 (P,E)=-22.4676,-32.3496,651.024,657.947 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its parents are: GenParticle: 5 ID:2 (P,E)=-0.3102,4.06731,705.033,705.044 Stat:3 PV:-3 EV:-5 Pol:(0,0) F:0 GenParticle: 6 ID:-1 (P,E)=1.62851,-1.90715,-11.9913,12.2508 Stat:3 PV:-4 EV:-5 Pol:(0,0) F:0 Its children are: (id,barcode,status) 24 10 2 Its descendants are: GenParticle: 524 ID:22 (P,E)=0.289314,0.55118,8.87858,8.90038 Stat:1 PV:-142 EV:0 Pol:(0,0) F:0 GenParticle: 525 ID:22 (P,E)=1.08563,2.28815,32.6894,32.7874 Stat:1 PV:-142 EV:0 Pol:(0,0) F:0 GenParticle: 283 ID:211 (P,E)=5.69759,11.3309,150.218,150.753 Stat:1 PV:-30 EV:0 Pol:(0,0) F:0 GenParticle: 284 ID:111 (P,E)=1.37495,2.83933,41.568,41.6878 Stat:2 PV:-30 EV:-142 Pol:(0,0) F:0 GenParticle: 99 ID:-16 (P,E)=3.778,8.81722,104.259,104.699 Stat:1 PV:-9 EV:0 Pol:(0,0) F:0 GenParticle: 100 ID:213 (P,E)=7.07253,14.1702,191.786,192.44 Stat:2 PV:-9 EV:-30 Pol:(0,0) F:0 GenParticle: 11 ID:-15 (P,E)=10.8505,22.9874,296.045,297.139 Stat:2 PV:-8 EV:-9 Pol:(0,0) F:0 GenParticle: 12 ID:16 (P,E)=-33.3181,-55.337,354.979,360.808 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 GenParticle: 10 ID:24 (P,E)=-22.4676,-32.3496,651.024,657.947 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 A W boson has been found in event: 18 GenParticle: 10 ID:24 (P,E)=-22.4676,-32.3496,651.024,657.947 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 Its parents are: GenParticle: 8 ID:24 (P,E)=-22.4676,-32.3496,651.024,657.947 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its children are: (id,barcode,status) -15 11 2 (id,barcode,status) 16 12 1 Its descendants are: GenParticle: 524 ID:22 (P,E)=0.289314,0.55118,8.87858,8.90038 Stat:1 PV:-142 EV:0 Pol:(0,0) F:0 GenParticle: 525 ID:22 (P,E)=1.08563,2.28815,32.6894,32.7874 Stat:1 PV:-142 EV:0 Pol:(0,0) F:0 GenParticle: 283 ID:211 (P,E)=5.69759,11.3309,150.218,150.753 Stat:1 PV:-30 EV:0 Pol:(0,0) F:0 GenParticle: 284 ID:111 (P,E)=1.37495,2.83933,41.568,41.6878 Stat:2 PV:-30 EV:-142 Pol:(0,0) F:0 GenParticle: 99 ID:-16 (P,E)=3.778,8.81722,104.259,104.699 Stat:1 PV:-9 EV:0 Pol:(0,0) F:0 GenParticle: 100 ID:213 (P,E)=7.07253,14.1702,191.786,192.44 Stat:2 PV:-9 EV:-30 Pol:(0,0) F:0 GenParticle: 11 ID:-15 (P,E)=10.8505,22.9874,296.045,297.139 Stat:2 PV:-8 EV:-9 Pol:(0,0) F:0 GenParticle: 12 ID:16 (P,E)=-33.3181,-55.337,354.979,360.808 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 Event 56 is good photons in event 56: GenParticle: 7 ID:22 (P,E)=7.92316,-57.3898,-530.978,534.129 Stat:3 PV:-5 EV:-6 Pol:(0,0) F:0 GenParticle: 9 ID:22 (P,E)=7.92316,-57.3898,-530.978,534.129 Stat:1 PV:-6 EV:0 Pol:(0,0) F:0 A W boson has been found in event: 56 GenParticle: 8 ID:-24 (P,E)=3.24583,59.0393,-1247.75,1252.04 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its parents are: GenParticle: 5 ID:-2 (P,E)=10.0036,-1.02577,-3.08057,10.5173 Stat:3 PV:-3 EV:-5 Pol:(0,0) F:0 GenParticle: 6 ID:1 (P,E)=1.16537,2.67523,-1775.65,1775.65 Stat:3 PV:-4 EV:-5 Pol:(0,0) F:0 Its children are: (id,barcode,status) -24 10 2 Its descendants are: GenParticle: 11 ID:11 (P,E)=38.8894,9.95748,-643.488,644.739 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 GenParticle: 12 ID:-12 (P,E)=-35.6436,49.0818,-604.26,607.297 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 GenParticle: 10 ID:-24 (P,E)=3.24583,59.0393,-1247.75,1252.04 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 A W boson has been found in event: 56 GenParticle: 10 ID:-24 (P,E)=3.24583,59.0393,-1247.75,1252.04 Stat:2 PV:-7 EV:-8 Pol:(0,0) F:0 Its parents are: GenParticle: 8 ID:-24 (P,E)=3.24583,59.0393,-1247.75,1252.04 Stat:3 PV:-5 EV:-7 Pol:(0,0) F:0 Its children are: (id,barcode,status) 11 11 1 (id,barcode,status) -12 12 1 Its descendants are: GenParticle: 11 ID:11 (P,E)=38.8894,9.95748,-643.488,644.739 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 GenParticle: 12 ID:-12 (P,E)=-35.6436,49.0818,-604.26,607.297 Stat:1 PV:-8 EV:0 Pol:(0,0) F:0 hepmc-2.06.09.orig/test/testHepMC.output0000644000175000017500000001036111717265754020722 0ustar sylvestresylvestre basic IO_GenEvent input and output Processing Event Number 1 its # 1 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Momenutm units: GEV Position units: MM pizero mass: 0.13498 Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Momenutm units: GEV Position units: MM pizero mass: 0.13498 Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles Momenutm units: GEV Position units: MM pizero mass: 0.13498 3 out of 34 processed events passed the cuts. Finished. IO_GenEvent input and output using define_units Processing Event Number 1 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Momenutm units: GEV Position units: MM pizero mass: 0.13498 Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Momenutm units: GEV Position units: MM pizero mass: 0.13498 Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles 3 out of 34 processed events passed the cuts. Finished. ---------------------------------------- Begin NaN test read_nan: Processing Event Number 1 its # 1 read_nan: Processing Event Number 2 its # 1 read_nan: Processing Event Number 3 its # 1 read_nan: Processing Event Number 4 its # 2 read_nan: Processing Event Number 5 its # 3 INPUT ERROR: input stream encountered invalid data read_nan: Processing Event Number 6 its # 101 read_nan: Processing Event Number 7 its # 1011 INPUT ERROR: input stream encountered invalid data INPUT ERROR: input stream encountered invalid data INPUT ERROR: input stream encountered invalid data INPUT ERROR: input stream encountered invalid data read_nan: Processing Event Number 8 its # 1016 read_nan: Processing Event Number 9 its # 1 read_nan: Processing Event Number 10 its # 39 INPUT ERROR: input stream encountered invalid data INPUT ERROR: input stream encountered invalid data, stream is now corrupt 10 events processed and 7 events ignored. Finished. End NaN test ---------------------------------------- Cross Section: 0.003326 +/- 0.0001 writeWithCrossSection: Processing Event Number 1 its # 1 Cross Section: 0.00332734 +/- 9.9e-05 Cross Section: 0.00332867 +/- 9.801e-05 Cross Section: 0.00332998 +/- 9.70299e-05 Cross Section: 0.00333128 +/- 9.60596e-05 Cross Section: 0.00333257 +/- 9.5099e-05 Cross Section: 0.00333384 +/- 9.4148e-05 Cross Section: 0.0033351 +/- 9.32065e-05 Cross Section: 0.00333635 +/- 9.22745e-05 Cross Section: 0.119878 +/- 9.13517e-05 Cross Section: 0.106479 +/- 0.0100904 Cross Section: 0.106614 +/- 0.00998953 Cross Section: 0.106748 +/- 0.00988964 Cross Section: 0.10688 +/- 0.00979074 Cross Section: 0.107012 +/- 0.00969283 Cross Section: 0.107141 +/- 0.00959591 Cross Section: 0.10727 +/- 0.00949995 Cross Section: 0.107397 +/- 0.00940495 Cross Section: 0.107523 +/- 0.0093109 Cross Section: 33.2216 +/- 0.00921779 Cross Section: 32.6858 +/- 0.409126 writeWithCrossSection: Processing Event Number 21 its # 39 Cross Section: 32.6913 +/- 0.405034 Cross Section: 32.6967 +/- 0.400984 Cross Section: 32.7021 +/- 0.396974 Cross Section: 32.7074 +/- 0.393004 Cross Section: 32.7126 +/- 0.389074 Cross Section: 32.7179 +/- 0.385184 Cross Section: 32.723 +/- 0.381332 Cross Section: 32.7281 +/- 0.377518 Cross Section: 458.844 +/- 0.373743 Cross Section: 457.509 +/- 1.37001 Cross Section: 457.528 +/- 1.35631 Cross Section: 457.546 +/- 1.34274 Cross Section: 457.564 +/- 1.32932 writeWithCrossSection processed 34 events. Finished. readWithCrossSection: Processing Event Number 1 its # 1 readWithCrossSection: Processing Event Number 2 its # 39 readWithCrossSection processed 2 events. Finished. writeWithWeight: Processing Event Number 1 its # 1 writeWithWeight: Processing Event Number 21 its # 39 writeWithWeight processed 34 events. Finished. readWithWeight: Processing Event Number 1 its # 1 testReadCrossSection: invalid cross-section! readWithWeight: Processing Event Number 2 its # 39 testReadCrossSection: invalid cross-section! readWithWeight processed 2 events. Finished. hepmc-2.06.09.orig/test/testIOGenEvent.input0000644000175000017500001502320611374257600021526 0ustar sylvestresylvestre HepMC::Version 2.03.05 HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 3 5 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 127 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -1.0915887891370786e+00 6.8837245649160073e-01 2.9335482891449351e+03 2.9335485730029936e+03 0 3 0 0 -3 0 P 16 2101 1.0915887891370786e+00 -6.8837245649160073e-01 3.9762395398134577e+03 3.9762397914388803e+03 5.7933000000000001e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 5.2458099429165694e-01 8.1440920890598334e-01 -4.2552869223861831e+02 4.2552979492144595e+02 0 3 0 0 -4 0 P 18 2 4.1377919091946047e-01 -7.8780821205110985e-01 -2.4381041242789344e+01 2.4399506697480753e+01 3.3000000000000002e-01 2 0 0 -11 0 P 42 2101 -9.3836018521111741e-01 -2.6600996854873549e-02 -6.5459899602964952e+03 6.5459900532427646e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 16 0 P 5 -2 2.3521174508664416e+01 1.8678188979510526e+01 -1.0865544244230507e+00 3.0054966217558558e+01 0 3 0 0 -5 0 P 11 2 -5.1809692951083619e-01 -6.4958460458623371e-02 9.8784701702983868e-01 1.1650689932396541e+00 3.3000000000000002e-01 2 0 0 -9 0 P 12 21 -4.9720779637863988e+00 -6.5065972872478364e+00 1.5284286275251333e+01 1.7339745513710039e+01 0 2 0 0 -9 0 P 13 21 -5.7627373072098660e+00 -5.4230424063804010e+00 1.2979735550950918e+01 1.5201712574112420e+01 0 2 0 0 -9 0 P 14 21 -4.7861785306971993e-01 -1.9748810756382876e-01 1.8102232546655744e-01 5.4849401475634230e-01 0 2 0 0 -9 0 P 15 21 -9.1662577665194682e+00 -4.4056532711536507e+00 -5.6922022277333195e-01 1.0185974369196078e+01 0 2 0 0 -9 0 P 19 2 2.3417862041435297e-01 -5.6240934166522250e-01 2.2952055688148612e+03 2.2952056733902182e+03 3.3000000000000002e-01 2 0 0 -13 0 P 20 21 -4.8166658032093007e-01 6.1671215517735656e-01 5.2464294292129421e+02 5.2464352649555610e+02 0 2 0 0 -13 0 P 21 21 -1.2903070984335503e+00 2.1320241294870064e+00 3.6942578817174386e+01 3.7026538441503341e+01 0 2 0 0 -13 0 P 22 21 -1.5690879180027145e-01 3.1858955827462615e-01 6.2276238180741783e-01 7.1690491683366941e-01 0 2 0 0 -13 0 P 23 21 1.8328508102707983e-01 -1.6890693241372077e+00 1.6261768809956688e+01 1.6350280530655997e+01 0 2 0 0 -13 0 P 24 21 -5.7944128097917535e-01 3.4431480628991824e-02 2.2420895006773942e+00 2.3160101584425097e+00 0 2 0 0 -13 0 P 25 21 -1.7710271487808821e-01 -2.5929068284531231e-01 4.9865078454180872e-01 5.8927891083233164e-01 0 2 0 0 -13 0 P 26 21 1.9654196070508864e-01 -1.1655402414245235e-01 5.3405334233937805e-02 2.3466084587386662e-01 0 2 0 0 -13 0 P 27 21 -1.5712897660857839e+00 -1.0073777472330760e+00 4.1597252898588648e+00 4.5592845866119962e+00 0 2 0 0 -13 0 P 28 21 -7.6458165675094880e-01 -8.6422355683203744e-01 5.7832747072847412e-01 1.2907091575651881e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 7 0 P 6 1 -1.1228175956233868e+00 3.6655321166530084e+00 -2.0572975902760786e+02 2.0576547473910409e+02 0 3 0 0 -5 0 P 17 -1 -9.0865746949711224e-01 8.2434322358288281e-01 -1.5264985966151980e+02 1.5265514650619818e+02 3.3000000000000002e-01 2 0 0 -11 0 P 37 21 1.1919770999081196e+00 -2.6971884812509422e-01 -8.6877668660310601e+00 8.7733032993420696e+00 0 2 0 0 -13 0 P 38 21 1.1905593367511619e-01 -7.2618270366259213e-03 2.3535848246222575e-02 1.2157707690116898e-01 0 2 0 0 -13 0 P 39 21 5.6629834975837934e-01 -5.5206861244330874e-01 -6.8915021560112857e+00 6.9367337803963869e+00 0 2 0 0 -13 0 P 40 21 3.6404238706769187e-01 -1.9453228071886506e+00 -5.8743751114167537e+00 6.1987975151139496e+00 0 2 0 0 -13 0 P 41 21 1.0069990382247338e+00 -8.9600367342868104e-01 -2.1155610768087556e+01 2.1198507886561387e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 1.4957906996438920e+01 7.0522623082982951e+00 -3.2787349182929031e+00 1.6858929030148829e+01 0 3 0 0 -6 0 P 8 -24 7.4404499166021152e+00 1.5291458787865244e+01 -2.0353757853373804e+02 2.1896151192651385e+02 7.8913933008973899e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 1.4957906996438920e+01 7.0522623082982951e+00 -3.2787349182929031e+00 1.6858929030148811e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 7.4404499166021152e+00 1.5291458787865244e+01 -2.0353757853373804e+02 2.1896151192651385e+02 7.8913933008973899e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 6 0 P 43 -4 -4.5743278811370454e+00 -2.4097585346939807e+00 3.1370231717149712e+00 6.2307564660765609e+00 1.5000000000000000e+00 2 0 0 -15 0 P 44 21 3.6877887678174659e+00 -2.3713046138536020e+00 -5.5478593986235258e-01 4.4193505186614237e+00 0 2 0 0 -15 0 P 45 21 -6.2475918668062000e-02 -9.5740999525116333e-02 3.0720469196522876e-01 3.2778697681411584e-01 0 2 0 0 -15 0 P 46 21 7.2033964856739696e-01 6.5741336129989181e-01 -9.7155254687005521e-01 1.3765884963356021e+00 0 2 0 0 -15 0 P 47 21 2.3418134980460778e-01 -3.9785333536291911e-01 -2.5875681810922821e+00 2.6284286699199066e+00 0 2 0 0 -15 0 P 48 3 7.4349439502176367e+00 1.9908702910000844e+01 -2.0286789972959232e+02 2.0397860079870506e+02 5.0000000000000000e-01 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 49 92 -1.9806199030959213e+01 -1.7286111989295939e+01 4.0051032107593828e+03 4.0206807869038948e+03 3.5260624803773027e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 24 0 P 50 211 -2.7587857692933054e-01 -2.6878772153220243e-01 9.4393465629089979e-01 1.0290035222009906e+00 1.3957000000000000e-01 1 0 0 0 0 P 51 -211 -1.4236437869533689e+00 -2.2659573275305616e+00 4.5982590404891326e+00 5.3221039289608409e+00 1.3957000000000000e-01 1 0 0 0 0 P 52 221 -3.2553833483568204e+00 -2.4701973701113635e+00 8.2583392874847394e+00 9.2303447975564765e+00 5.4744999999999999e-01 2 0 0 -17 0 P 53 2112 -3.6187210875453433e+00 -3.9757070122280527e+00 8.1254746990968663e+00 9.7881315595514948e+00 9.3957000000000002e-01 1 0 0 0 0 P 54 213 -8.4795135713746705e-01 -1.0323846927396780e+00 7.8231186827155896e-01 1.7247181299467595e+00 7.6013229812581873e-01 2 0 0 -18 0 P 55 -2112 -7.1274490040752791e-01 -6.5990485012313627e-01 1.8162290455044969e+00 2.2638373251864081e+00 9.3957000000000002e-01 1 0 0 0 0 P 56 221 -1.9761571432573364e+00 -1.5541753739566608e+00 3.7440910258633862e+00 4.5429700923857146e+00 5.4744999999999999e-01 2 0 0 -19 0 P 57 221 -1.1059740482295786e+00 -5.1445720434076891e-01 -1.9586950621342050e-01 1.3512628080502072e+00 5.4744999999999999e-01 2 0 0 -20 0 P 58 223 -2.4175050258768556e+00 -1.1250118422787019e+00 1.6528246931889415e-01 2.7826710132564751e+00 7.7843270611305337e-01 2 0 0 -21 0 P 59 -211 -2.2527096330764107e-01 -8.0165993392077617e-01 1.7110740986485902e+00 1.9080513652754481e+00 1.3957000000000000e-01 1 0 0 0 0 P 60 211 -3.7557922836652105e+00 -9.8085328091126411e-01 2.9941818961233452e-01 3.8957900192238615e+00 1.3957000000000000e-01 1 0 0 0 0 P 61 -213 -4.5889315403761366e-01 -3.5399776372424674e-01 6.8189030751850357e-02 7.3266042330201275e-01 4.4299459185621115e-01 2 0 0 -22 0 P 62 213 8.4245973393219611e-02 -2.0678370909522950e-01 9.7700677726570972e-01 1.5290385426302660e+00 1.1547985692949259e+00 2 0 0 -23 0 P 63 -211 -1.9287578393843122e-01 2.9641483949857533e-01 1.6272460269194975e+00 1.6710691913054112e+00 1.3957000000000000e-01 1 0 0 0 0 P 64 211 -3.6244046173987793e-01 -2.9196891738456673e-02 4.9089693309031063e-01 6.2663795816314538e-01 1.3957000000000000e-01 1 0 0 0 0 P 65 -213 6.2065728859614297e-02 -6.8440637439264440e-01 2.7532090498706179e+00 2.9468392384747792e+00 7.9463021910633735e-01 2 0 0 -24 0 P 66 113 2.2207291282868288e-02 1.4492911034361952e-01 7.2968341302274620e-01 1.0243689370194073e+00 7.0384389254907342e-01 2 0 0 -25 0 P 67 111 -6.2625167308589713e-01 -2.0753851861746647e-01 2.7853135370241162e+00 2.8655635562106472e+00 1.3497999999999999e-01 2 0 0 -26 0 P 68 111 7.5167814386921383e-02 -1.8175813852211969e-01 1.2268221271443576e+01 1.2270540289112756e+01 1.3497999999999999e-01 2 0 0 -27 0 P 69 223 6.4843601014520447e-01 1.6401850241825400e-01 3.3835375311044153e+01 3.3850934882262024e+01 7.7833067236179709e-01 2 0 0 -28 0 P 70 211 -7.4773109816741823e-01 2.4443947136293978e-01 2.7114716269201404e+02 2.7114833978500542e+02 1.3957000000000000e-01 1 0 0 0 0 P 71 -213 3.9496819486135826e-01 -1.4756357029555281e-01 1.8545822227842015e+02 1.8546094838689012e+02 9.1290251976256176e-01 2 0 0 -29 0 P 72 2212 -8.3329754410695553e-02 -1.2987079421384221e-01 1.1549848973194823e+03 1.1549852887361637e+03 9.3827000000000005e-01 1 0 0 0 0 P 73 113 9.9325440315801150e-01 -5.4570154264660142e-01 2.3077292422446667e+03 2.3077296724157609e+03 8.3731268242778889e-01 2 0 0 -30 0 V -11 0 0 0 0 0 0 1 0 P 74 92 -4.9487827857765176e-01 3.6535011531772965e-02 -1.7703090090430914e+02 1.7705465320367892e+02 2.8572901088295337e+00 2 0 0 -12 0 V -12 0 0 0 0 0 0 3 0 P 75 -313 -3.7897699797571421e-01 2.7080679474092628e-01 -7.1720915763350618e+01 7.1727088258965651e+01 8.1760154766270743e-01 2 0 0 -31 0 P 76 321 3.7379748600147300e-01 -3.8023840006884668e-01 -2.1284107852965835e+01 2.1296506611604396e+01 4.9359999999999998e-01 1 0 0 0 0 P 77 223 -4.8969876660341055e-01 1.4596661685969337e-01 -8.4025877287992699e+01 8.4031058333108888e+01 7.8076848699925894e-01 2 0 0 -32 0 V -13 0 0 0 0 0 8 1 0 P 29 21 1.0456553143228695e+00 -1.9680963733398396e+00 2.9777018581330750e-01 2.2484362242866442e+00 0 2 0 0 -13 0 P 30 21 3.3403857906507288e+00 1.5581316284228706e+00 1.6277696047133468e+01 1.6689797482436315e+01 0 2 0 0 -13 0 P 31 21 1.4165625355376876e+00 -7.2142870366807232e-01 8.5219019315700866e+00 8.6689054281877560e+00 0 2 0 0 -13 0 P 32 21 -6.9469750209436965e-02 -2.2078694632032496e+00 4.2525502177882728e+01 4.2582835146263434e+01 0 2 0 0 -13 0 P 33 21 -3.3403857906507288e+00 -1.5581316284228706e+00 1.5755776525002092e+01 1.6181175646648175e+01 0 2 0 0 -13 0 P 34 21 6.9469750209436965e-02 2.2078694632032496e+00 3.3892625802717387e+00 4.0455672594544527e+00 0 2 0 0 -13 0 P 35 21 -1.0456553143228695e+00 1.9680963733398396e+00 -3.3277709272152595e-01 2.2533395138250425e+00 0 2 0 0 -13 0 P 36 21 -1.4165625355376876e+00 7.2142870366807232e-01 -3.2326753544182041e-01 1.6222239953335009e+00 0 2 0 0 -13 0 P 78 92 -2.0972796036793033e+00 -5.0941441183645626e+00 -3.6212559944051518e+03 9.5664441209316101e+03 8.8545653644323884e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 55 0 P 79 211 -1.9983432979613538e-01 -2.1288692631868877e-01 1.9177933015195288e+03 1.9177933288254915e+03 1.3957000000000000e-01 1 0 0 0 0 P 80 313 -1.8599209983606127e-01 -2.1621863539979240e-02 3.2767350073543793e+02 3.2767456957610324e+02 8.1572182844446861e-01 2 0 0 -33 0 P 81 -311 -3.0242805172895029e-02 1.2428455621758563e-01 3.7359388470555594e+01 3.7362922043129345e+01 4.9767000000000000e-01 2 0 0 -34 0 P 82 111 -4.4329320702357305e-01 2.8120565615255749e-01 2.7378129160339051e+02 2.7378182817183023e+02 1.3497999999999999e-01 2 0 0 -35 0 P 83 -213 5.1547599502684327e-01 5.6222123693035453e-01 1.2851655289750315e+02 1.2852122316813657e+02 7.8652892925131412e-01 2 0 0 -36 0 P 84 211 1.0945964827244131e-01 -2.6512383435452624e-01 7.4383355504290876e+01 7.4384039470337726e+01 1.3957000000000000e-01 1 0 0 0 0 P 85 223 -1.6533174480794297e-01 2.5174546986026247e-01 2.1501639510115410e+01 2.1518269325269220e+01 7.9038140440564697e-01 2 0 0 -37 0 P 86 111 -2.6097433903389716e-01 -3.5223125593373546e-02 2.0609264881397259e+01 2.0611389250271436e+01 1.3497999999999999e-01 2 0 0 -38 0 P 87 311 -3.5190185323879997e-01 2.9083371257574397e-01 1.9945345860832045e+01 1.9956776195061998e+01 4.9767000000000000e-01 2 0 0 -39 0 P 88 221 -2.5250726518797884e-01 -4.0845254096622419e-01 4.7059481473906803e+00 4.7619578815466506e+00 5.4744999999999999e-01 2 0 0 -40 0 P 89 333 1.3454465568212792e-01 3.8936104020974527e-01 1.2341021104428927e+01 1.2389801383450628e+01 1.0181709765010212e+00 2 0 0 -41 0 P 90 -313 7.0009622487626766e-02 4.7024479848190078e-03 1.9120857604165174e+01 1.9141169350729776e+01 8.7877479156945026e-01 2 0 0 -42 0 P 91 313 -7.7172970310720168e-01 3.2536900398145635e-01 6.6997218882615384e+00 6.8109521085217493e+00 8.9518909796550739e-01 2 0 0 -43 0 P 92 -313 -3.2131688981268375e-01 2.3337055540692941e-01 2.8724469249240085e+00 3.0335202944950419e+00 8.9083538366976511e-01 2 0 0 -44 0 P 93 113 -9.1184547544222963e-02 -8.2251840490068084e-01 6.6067539012079211e+00 6.7035177782636479e+00 7.7659664193162592e-01 2 0 0 -45 0 P 94 -211 -4.6091349583897190e-01 -3.4285225114307033e-01 3.0991666385326453e+00 3.1550439862312709e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 113 -1.0193827056345286e+00 -2.2998956799235243e-01 1.4373036682244253e+00 1.8850092031291525e+00 6.2879373347555867e-01 2 0 0 -46 0 P 96 223 5.5611510337383596e-01 -1.7471089801905026e+00 1.2750241495130745e+00 2.3600480365761323e+00 7.6320793774863815e-01 2 0 0 -47 0 P 97 213 -1.8735079639845151e-01 -1.0218038169394858e-01 1.9145906601397837e+00 2.0622383485529747e+00 7.3595411476107175e-01 2 0 0 -48 0 P 98 223 -2.9910456663109297e-01 -8.3260408358108218e-01 6.9589932070781291e-01 1.3500453318716514e+00 7.4542164696993807e-01 2 0 0 -49 0 P 99 221 3.1438586782140260e-01 -4.2674448769366308e-01 4.4873988308399065e-01 8.8431799531219368e-01 5.4744999999999999e-01 2 0 0 -50 0 P 100 -213 9.9836612318765061e-01 9.2087605087546898e-01 6.6336125201057898e+00 6.8060255697277103e+00 6.8732915832108199e-01 2 0 0 -51 0 P 101 211 7.3770785870053046e-01 -9.2834550882125522e-01 2.0317002696300666e+00 2.3565491802744116e+00 1.3957000000000000e-01 1 0 0 0 0 P 102 311 2.0442593883327111e+00 7.6856117688652303e-01 9.4420659817135615e+00 9.7041211946953805e+00 4.9767000000000000e-01 2 0 0 -52 0 P 103 3122 6.7822343030566737e-02 -6.0986099503058699e-01 1.8946135075399653e+01 1.8988873227792183e+01 1.1156800000000000e+00 2 0 0 -53 0 P 104 -2112 5.8706596654279664e-01 -4.3106859930039054e-01 6.8484471938764839e+00 6.9508623449605382e+00 9.3957000000000002e-01 1 0 0 0 0 P 105 313 -4.5101145201500681e-01 -1.3445583501252349e+00 1.8428430485521517e+01 1.8504903004143106e+01 9.0174084209685201e-01 2 0 0 -54 0 P 106 333 -1.0917369502271927e+00 -7.9297612821897612e-01 8.3962906871929803e+00 8.5647275044274824e+00 1.0179190600615153e+00 2 0 0 -55 0 P 107 -323 -8.2189660049416269e-01 -4.4968186125771969e-01 7.6057489568860834e+00 7.7171113955936796e+00 9.1030945209859537e-01 2 0 0 -56 0 P 108 211 2.1217826008375645e-01 -1.0165807736248929e-01 1.6758975723906683e-01 3.2081161197291053e-01 1.3957000000000000e-01 1 0 0 0 0 P 109 -213 1.8273392278269315e-01 1.0600238439670819e+00 1.6005905755422389e+00 2.0119108618055956e+00 5.7345696353118025e-01 2 0 0 -57 0 P 110 211 -1.1711349129856365e+00 4.5520958195630562e-01 2.2505099380466707e+00 2.5812879564406481e+00 1.3957000000000000e-01 1 0 0 0 0 P 111 113 8.8945994888581514e-02 -7.5483359487615906e-02 8.3972242104252970e-01 1.1129661438815692e+00 7.2107611627263468e-01 2 0 0 -58 0 P 112 331 -8.2664424303783723e-01 1.3384854774882564e+00 1.5676016345247785e+00 2.4186499135656310e+00 9.5791880753627190e-01 2 0 0 -59 0 P 113 111 -2.2793603888384312e-01 7.3219606446123978e-02 -5.8272047894968770e-01 6.4428154216734734e-01 1.3497999999999999e-01 2 0 0 -60 0 P 114 -213 -4.6263112284162348e-02 6.1542162577141180e-01 3.1886058452752514e-01 9.4204106223295436e-01 6.3630593077733721e-01 2 0 0 -61 0 P 115 213 -8.9859188252142630e-01 7.6015938482739664e-01 -2.4945696881062873e-01 1.6568021769374766e+00 1.1390588275159483e+00 2 0 0 -62 0 P 116 -211 7.1811641346522592e-01 1.6713462707965107e-01 -5.2679174370787312e+00 5.3210956649580510e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 -4.6646051966152680e-01 1.3114628133374598e-01 -1.2852258023185179e+00 1.3801484437754694e+00 1.3497999999999999e-01 2 0 0 -63 0 P 118 211 8.2819271606464906e-01 -4.8372446887341730e-01 -2.2590425484327290e+00 2.4581793175557491e+00 1.3957000000000000e-01 1 0 0 0 0 P 119 -213 4.9221529092831084e-01 -1.4504891012790697e+00 -9.3273495992631474e+00 9.4809384536597499e+00 7.3657918084664542e-01 2 0 0 -64 0 P 120 111 2.4438703898323746e-01 1.8018733426551334e-01 -7.2560830045887901e+00 7.2636872640646493e+00 1.3497999999999999e-01 2 0 0 -65 0 P 121 211 -9.2877338281016297e-02 -1.2216617009487420e-01 -3.1169579836492174e+00 3.1238530102769575e+00 1.3957000000000000e-01 1 0 0 0 0 P 122 -213 7.1853608242708755e-01 -7.6188187357838222e-01 -5.7957712769973151e+00 5.9211389893756454e+00 6.1005257576735106e-01 2 0 0 -66 0 P 123 211 -3.1139436131178438e-01 -1.5524174091074411e-01 -1.2827161432565715e+00 1.3363782905482959e+00 1.3957000000000000e-01 1 0 0 0 0 P 124 111 4.0722795187141358e-01 -6.5330434085862865e-01 -1.6029937557786230e+01 1.6048979994800160e+01 1.3497999999999999e-01 2 0 0 -67 0 P 125 -211 -3.5926296980816591e-01 2.8333730208219998e-01 -1.9243387678407636e+01 1.9249332430882308e+01 1.3957000000000000e-01 1 0 0 0 0 P 126 211 8.6828752443697887e-01 -7.3125024537527519e-02 -2.9739406022638651e+01 2.9752496044173547e+01 1.3957000000000000e-01 1 0 0 0 0 P 127 -213 5.6417795588609571e-02 -4.7955478290323855e-01 -2.3431279399054571e+02 2.3431394309661434e+02 5.5258127912073540e-01 2 0 0 -68 0 P 128 213 -3.1890189093801730e-01 3.1283956237469997e-02 -1.8815577177004749e+02 1.8815783541617208e+02 8.2091474291344402e-01 2 0 0 -69 0 P 129 1114 -1.2640838838404087e-01 -2.5684561801959233e-01 -1.0510728045852550e+03 1.0510736415754225e+03 1.2951938672798158e+00 2 0 0 -70 0 P 130 211 -1.8276837255711426e-01 -1.4446915930662002e-03 -1.0963693036168513e+02 1.0963717154908291e+02 1.3957000000000000e-01 1 0 0 0 0 P 131 -2214 -1.0068690978249711e-01 2.7950461881011368e-01 -9.5142408161225978e+02 9.5142486804589623e+02 1.1866776030092137e+00 2 0 0 -71 0 P 132 2112 -4.5108828708096332e-01 9.4064903212544015e-03 -1.6356206105951305e+03 1.6356209426895025e+03 9.3957000000000002e-01 1 0 0 0 0 P 133 213 -6.3606588339551337e-02 -1.2478015811630187e-02 -2.3174554499429291e+03 2.3174555982399165e+03 8.2652395303211168e-01 2 0 0 -72 0 V -15 0 0 0 0 0 0 1 0 P 134 92 7.4404499166019997e+00 1.5291458787865118e+01 -2.0353757853373682e+02 2.1896151192651266e+02 7.8913933008973899e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 13 0 P 135 -4122 -2.1610704563042376e+00 -9.4674533552134732e-01 1.3176792353659879e+00 3.5388697100567561e+00 2.2848999999999999e+00 2 0 0 -73 0 P 136 2112 -8.4111928677685022e-01 -1.3265472604657080e+00 1.0117494659839634e+00 2.0913244740249963e+00 9.3957000000000002e-01 1 0 0 0 0 P 137 213 -5.3871171726643763e-01 -6.0853007915058399e-01 2.9869138071992402e-01 1.1287303789543941e+00 7.2408325205530377e-01 2 0 0 -74 0 P 138 113 1.0839542385326164e+00 -3.8648661890472485e-01 2.7395442779193802e-01 1.3547687724812512e+00 6.6031712120640151e-01 2 0 0 -75 0 P 139 -2224 2.9154167534072201e-01 -5.4125249585803903e-01 -5.4101444478416520e-02 1.3295166752563072e+00 1.1775978985871620e+00 2 0 0 -76 0 P 140 213 1.0501107118145681e+00 -2.1897085627074586e-01 -3.7147103297758649e-01 1.2944707148669155e+00 6.2207954502859464e-01 2 0 0 -77 0 P 141 2214 2.3763522113087479e-01 -4.4085112404948656e-01 -1.4943574586126729e+00 2.0004839097248044e+00 1.2320760719447876e+00 2 0 0 -78 0 P 142 -213 1.2625478283278511e+00 4.4279826662892230e-01 -1.7057150237570911e+00 2.3043135507791179e+00 7.8121691884435129e-01 2 0 0 -79 0 P 143 211 -3.3596450323336019e-01 8.2531363303406879e-01 -1.2357625145139687e+01 1.2390496106007760e+01 1.3957000000000000e-01 1 0 0 0 0 P 144 223 1.2922871276888166e+00 2.8374675075940514e+00 -2.5548139525787946e+01 2.5749303610455168e+01 7.7328863772147949e-01 2 0 0 -80 0 P 145 223 1.9783725731082948e+00 4.4526686722505655e+00 -4.8885386103868555e+01 4.9133869442020895e+01 7.8481556966015320e-01 2 0 0 -81 0 P 146 113 2.2945179155176478e+00 6.6546817674500458e+00 -6.8135747783663135e+01 6.8505589355519376e+01 9.9299799467542194e-01 2 0 0 -82 0 P 147 -321 1.8263485887214941e+00 4.5479127111281015e+00 -4.7887109525313555e+01 4.8139775226364968e+01 4.9359999999999998e-01 1 0 0 0 0 V -17 0 0 0 0 0 0 3 0 P 148 111 -5.5351890905104006e-01 -4.3961454278756601e-01 1.2270659789833389e+00 1.4225170108247260e+00 1.3497999999999999e-01 2 0 0 -83 0 P 149 111 -1.9643130199167367e+00 -1.5083986912930383e+00 5.0745023654049577e+00 5.6482374338380525e+00 1.3497999999999999e-01 2 0 0 -84 0 P 150 111 -7.3755141938904378e-01 -5.2218413603075908e-01 1.9567709430964435e+00 2.1595903528936984e+00 1.3497999999999999e-01 2 0 0 -85 0 V -18 0 0 0 0 0 0 2 0 P 151 211 -1.4320732252547391e-01 -5.4525692951960125e-01 3.8297821996146612e-02 5.8203089650267448e-01 1.3957000000000000e-01 1 0 0 0 0 P 152 111 -7.0474403461199309e-01 -4.8712776322007678e-01 7.4401404627541234e-01 1.1426872334440850e+00 1.3497999999999999e-01 2 0 0 -86 0 V -19 0 0 0 0 0 0 2 0 P 153 22 -1.4671679869573160e+00 -1.2000886700838245e+00 2.3645390628323990e+00 3.0304850598008670e+00 0 1 0 0 0 0 P 154 22 -5.0898915630002040e-01 -3.5408670387283631e-01 1.3795519630309874e+00 1.5124850325848476e+00 0 1 0 0 0 0 V -20 0 0 0 0 0 0 2 0 P 155 22 6.1504483459868468e-02 -5.1325744391230114e-03 4.3924099897709613e-03 6.1874373302334224e-02 0 1 0 0 0 0 P 156 22 -1.1674785316894469e+00 -5.0932462990164595e-01 -2.0026191620319145e-01 1.2893884347478730e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 3 0 P 157 -211 -6.7573109738787152e-01 -2.9811712483869607e-01 2.2772338480502569e-01 7.8538147481727982e-01 1.3957000000000000e-01 1 0 0 0 0 P 158 211 -6.6591816854484054e-01 -5.4362377211649870e-01 -9.5552992148609364e-02 8.7611869744734805e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 -1.0758557599441438e+00 -2.8327094532350722e-01 3.3112076662477806e-02 1.1211708409918475e+00 1.3497999999999999e-01 2 0 0 -87 0 V -22 0 0 0 0 0 0 2 0 P 160 -211 -3.6260903968380120e-01 -3.6416846724542434e-01 1.4162779403059608e-01 5.5103738996393259e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 111 -9.6284114353812497e-02 1.0170703521177557e-02 -7.3438763278745725e-02 1.8162303333808019e-01 1.3497999999999999e-01 2 0 0 -88 0 V -23 0 0 0 0 0 0 2 0 P 162 211 3.1106108828665874e-01 -5.2582486485261731e-02 1.1340614928781483e+00 1.1853687920052847e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 111 -2.2681511489343914e-01 -1.5420122260996780e-01 -1.5705471561243864e-01 3.4366975062498129e-01 1.3497999999999999e-01 2 0 0 -89 0 V -24 0 0 0 0 0 0 2 0 P 164 -211 -3.1852996822064172e-01 -4.2094233200087400e-01 1.1564855237142533e+00 1.2789027871521776e+00 1.3957000000000000e-01 1 0 0 0 0 P 165 111 3.8059569708025603e-01 -2.6346404239177035e-01 1.5967235261563644e+00 1.6679364513226014e+00 1.3497999999999999e-01 2 0 0 -90 0 V -25 0 0 0 0 0 0 2 0 P 166 -211 3.0523392970061730e-01 -6.2227373874223044e-02 3.5564313210909038e-01 4.9295214799828968e-01 1.3957000000000000e-01 1 0 0 0 0 P 167 211 -2.8302663841774900e-01 2.0715648421784258e-01 3.7404028091365582e-01 5.3141678902111766e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 -1.6753683294204940e-04 -5.5521362444145937e-05 7.4513590749263037e-04 7.6660464703595134e-04 0 2 0 P 168 22 -3.2287400146335854e-02 -2.7213778836539061e-02 8.6129775038015485e-02 9.5923949641749134e-02 0 1 0 0 0 0 P 169 22 -5.9396427293956133e-01 -1.8032473978092739e-01 2.6991837619861010e+00 2.7696396065688980e+00 0 1 0 0 0 0 V -27 0 3.1654924925330856e-06 -7.6542603724908306e-06 5.1664349493506527e-04 5.1674115419364172e-04 0 2 0 P 170 22 -2.1534923964460266e-02 7.6787230054074099e-03 7.2719274861274108e-01 7.2755206643380654e-01 0 1 0 0 0 0 P 171 22 9.6702738351381642e-02 -1.8943686152752712e-01 1.1541028522830835e+01 1.1542988222678948e+01 0 1 0 0 0 0 V -28 0 0 0 0 0 0 3 0 P 172 -211 -3.8250661496291680e-02 1.1239800801691939e-01 1.1871809360377213e+01 1.1873223391284739e+01 1.3957000000000000e-01 1 0 0 0 0 P 173 211 2.8289064993967100e-01 -8.0005612592935593e-02 7.0800754118132687e+00 7.0875507504167112e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 111 4.0379602170182521e-01 1.3162610699427021e-01 1.4883490538853675e+01 1.4890160740560578e+01 1.3497999999999999e-01 2 0 0 -91 0 V -29 0 0 0 0 0 0 2 0 P 175 -211 5.0161948057518402e-01 -3.4922881436936598e-01 1.6226943790606498e+02 1.6227064904351391e+02 1.3957000000000000e-01 1 0 0 0 0 P 176 111 -1.0665128571382583e-01 2.0166524407381314e-01 2.3188784372355169e+01 2.3190299343376214e+01 1.3497999999999999e-01 2 0 0 -92 0 V -30 0 0 0 0 0 0 2 0 P 177 211 -5.8617166487943989e-02 -4.7074485407744456e-02 6.3272986719517405e+02 6.3272988705496346e+02 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 1.0518715696459555e+00 -4.9862705723885697e-01 1.6749993750494928e+03 1.6749997853607974e+03 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 179 -321 -2.7023660867831956e-01 1.0310569155530476e-01 -2.9964853913066396e+01 2.9970314806483291e+01 4.9359999999999998e-01 1 0 0 0 0 P 180 211 -1.0874038929739467e-01 1.6770110318562151e-01 -4.1756061850284226e+01 4.1756773452482363e+01 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 181 221 -3.8148962789355984e-01 3.1067470025680916e-01 -6.6162635328987278e+01 6.6166729315303357e+01 5.4744999999999999e-01 2 0 0 -93 0 P 182 22 -1.0820913870985066e-01 -1.6470808339711579e-01 -1.7863241959005414e+01 1.7864329017805520e+01 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 183 321 -8.5450465307490939e-02 -1.9092866665923514e-01 2.7421064324111859e+02 2.7421116728391240e+02 4.9359999999999998e-01 1 0 0 0 0 P 184 -211 -1.0054163452857033e-01 1.6930680311925589e-01 5.3462857494319337e+01 5.3463402292190999e+01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 1 0 P 185 310 -3.0242805172895029e-02 1.2428455621758563e-01 3.7359388470555594e+01 3.7362922043129352e+01 4.9767000000000000e-01 2 0 0 -94 0 V -35 0 -1.0674811747130246e-04 6.7716296890991189e-05 6.5928457766711301e-02 6.5928586976159873e-02 0 2 0 P 186 22 -2.9257833195783250e-01 1.0773875916646218e-01 1.6314204930952860e+02 1.6314234723894717e+02 0 1 0 0 0 0 P 187 22 -1.5071487506574052e-01 1.7346689698609530e-01 1.1063924229386190e+02 1.1063948093288305e+02 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 188 -211 4.0224864940931743e-01 1.2604146155949512e-02 8.1736636605089757e+01 8.1737746519816966e+01 1.3957000000000000e-01 1 0 0 0 0 P 189 111 1.1322734561752576e-01 5.4961709077440501e-01 4.6779916292413390e+01 4.6783476648319656e+01 1.3497999999999999e-01 2 0 0 -95 0 V -37 0 0 0 0 0 0 3 0 P 190 211 3.2168059948009017e-02 -3.4204737586967383e-02 7.5977434079697268e+00 7.5991703117117764e+00 1.3957000000000000e-01 1 0 0 0 0 P 191 -211 2.9906114370389862e-02 2.8154108223920860e-01 4.3037816466458025e+00 4.3153419335633663e+00 1.3957000000000000e-01 1 0 0 0 0 P 192 111 -2.2740591912634184e-01 4.4091252080212589e-03 9.6001144554998792e+00 9.6037570799940859e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -3.2040467226835886e-05 -4.3244305374200925e-06 2.5302505926294168e-03 2.5305114066678496e-03 0 2 0 P 193 22 -2.6801316553661858e-01 -1.2269152615242538e-02 1.7800825809730849e+01 1.7802847555865512e+01 0 1 0 0 0 0 P 194 22 7.0388265027214424e-03 -2.2953972978131010e-02 2.8084390716664109e+00 2.8085416944059252e+00 0 1 0 0 0 0 V -39 0 0 0 0 0 0 1 0 P 195 130 -3.5190185323879997e-01 2.9083371257574397e-01 1.9945345860832045e+01 1.9956776195062005e+01 4.9767000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 3 0 P 196 111 -2.8982046468325882e-02 -1.0940147857804228e-02 1.4459839171801463e+00 1.4526006798140647e+00 1.3497999999999999e-01 2 0 0 -97 0 P 197 111 -1.0598110871603863e-02 -2.2791358621082233e-01 1.4380969600227553e+00 1.4623267041123933e+00 1.3497999999999999e-01 2 0 0 -98 0 P 198 111 -2.1292710784804908e-01 -1.6959880689759757e-01 1.8218672701877783e+00 1.8470304976201910e+00 1.3497999999999999e-01 2 0 0 -99 0 V -41 0 0 0 0 0 0 2 0 P 199 321 1.6482815081676758e-01 2.8156139588701529e-01 6.8426514537811753e+00 6.8681849870900500e+00 4.9359999999999998e-01 1 0 0 0 0 P 200 -321 -3.0283495134639658e-02 1.0779964432272993e-01 5.4983696506477520e+00 5.5216163963605762e+00 4.9359999999999998e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 201 -321 1.3695004564241800e-01 5.8306682072752699e-04 6.7738323644011507e+00 6.7931731551592929e+00 4.9359999999999998e-01 1 0 0 0 0 P 202 211 -6.6940423154791248e-02 4.1193811640914818e-03 1.2347025239764026e+01 1.2347996195570486e+01 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 203 321 -5.9219848776293516e-01 3.8257908014027719e-01 6.1940733851882168e+00 6.2535791241949363e+00 4.9359999999999998e-01 1 0 0 0 0 P 204 -211 -1.7953121534426661e-01 -5.7210076158820802e-02 5.0564850307332232e-01 5.5737298432681426e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 205 -321 -2.4610785742569885e-01 -5.9998031271152684e-02 2.3431350197315601e+00 2.4079226569671004e+00 4.9359999999999998e-01 1 0 0 0 0 P 206 211 -7.5209032386984898e-02 2.9336858667808208e-01 5.2931190519244831e-01 6.2559763752794117e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 207 -211 6.7904032395735947e-02 -3.7527710741006404e-01 1.0663380600321144e+00 1.1410523687082548e+00 1.3957000000000000e-01 1 0 0 0 0 P 208 211 -1.5908857993995892e-01 -4.4724129749061681e-01 5.5404158411758067e+00 5.5624654095553909e+00 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 209 -211 -9.2721069466145001e-01 -1.7542809371681073e-01 1.4166259871025766e+00 1.7078652349040988e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 211 -9.2172010973078561e-02 -5.4561474275541678e-02 2.0677681121848798e-02 1.7714396822505352e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 211 211 2.1306307387607465e-01 -7.2024859929251772e-01 2.6589954695361240e-01 8.0891054647747773e-01 1.3957000000000000e-01 1 0 0 0 0 P 212 -211 2.3727664414670245e-02 -1.4765152989639538e-01 6.3467924196613443e-02 2.1417735324059922e-01 1.3957000000000000e-01 1 0 0 0 0 P 213 111 3.1932436508309103e-01 -8.7920885100158952e-01 9.4565667836284872e-01 1.3369601368580557e+00 1.3497999999999999e-01 2 0 0 -100 0 V -48 0 0 0 0 0 0 2 0 P 214 211 -4.0652230352207948e-02 -1.8385862871534591e-03 1.8098925919000188e+00 1.8157221602840872e+00 1.3957000000000000e-01 1 0 0 0 0 P 215 111 -1.4669856604624357e-01 -1.0034179540679514e-01 1.0469806823976506e-01 2.4651618826888777e-01 1.3497999999999999e-01 2 0 0 -101 0 V -49 0 0 0 0 0 0 3 0 P 216 -211 1.0423701241960137e-01 -3.7887990571360775e-01 1.0363267452171471e-01 4.2969157990381901e-01 1.3957000000000000e-01 1 0 0 0 0 P 217 211 -1.3780437132016060e-01 -4.9970736052880139e-02 1.8289209395335071e-01 2.7279373553520725e-01 1.3957000000000000e-01 1 0 0 0 0 P 218 111 -2.6553720773053374e-01 -4.0375344181459427e-01 4.0937455223274749e-01 6.4756001643262540e-01 1.3497999999999999e-01 2 0 0 -102 0 V -50 0 0 0 0 0 0 2 0 P 219 22 4.6123019111274083e-01 -2.2773055865523945e-01 2.9151824071969035e-01 5.9125069235614958e-01 0 1 0 0 0 0 P 220 22 -1.4684432329133823e-01 -1.9901392903842363e-01 1.5722164236430036e-01 2.9306730295604411e-01 0 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 221 -211 1.4633016218353836e-01 2.2920186234789967e-02 1.9185258364034374e+00 1.9292897711720776e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 111 8.5203596100411216e-01 8.9795586464067889e-01 4.7150866837023520e+00 4.8767357985556314e+00 1.3497999999999999e-01 2 0 0 -103 0 V -52 0 0 0 0 0 0 1 0 P 223 130 2.0442593883327111e+00 7.6856117688652303e-01 9.4420659817135615e+00 9.7041211946953805e+00 4.9767000000000000e-01 1 0 0 0 0 V -53 0 2.7225143957143514e+00 -2.4480949258965424e+01 7.6053293326473772e+02 7.6224852181470067e+02 0 2 0 P 224 2112 1.3765143121496540e-01 -5.9321710389541971e-01 1.6449920391904758e+01 1.6487981293468692e+01 9.3957000000000002e-01 1 0 0 0 0 P 225 111 -6.9829088184398647e-02 -1.6643891135167319e-02 2.4962146834948937e+00 2.5008919343234917e+00 1.3497999999999999e-01 2 0 0 -104 0 V -54 0 0 0 0 0 0 2 0 P 226 321 -2.0314930980271667e-01 -3.4127937300088745e-01 7.6113088655757073e+00 7.6376308407581837e+00 4.9359999999999998e-01 1 0 0 0 0 P 227 -211 -2.4786214221229014e-01 -1.0032789771243475e+00 1.0817121619945810e+01 1.0867272163384923e+01 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 228 130 -6.1891616622952916e-01 -5.1628286982644245e-01 4.9581914953187232e+00 5.0478652473741219e+00 4.9767000000000000e-01 1 0 0 0 0 P 229 310 -4.7282078399766364e-01 -2.7669325839253367e-01 3.4380991918742576e+00 3.5168622570533619e+00 4.9767000000000000e-01 2 0 0 -105 0 V -56 0 0 0 0 0 0 2 0 P 230 -311 -8.6748390698046907e-01 -2.1240485761697811e-01 5.6858313001720893e+00 5.7770232088270186e+00 4.9767000000000000e-01 2 0 0 -106 0 P 231 -211 4.5587306486306475e-02 -2.3727700364074153e-01 1.9199176567139939e+00 1.9400881867666631e+00 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 232 -211 3.7286627136648112e-02 1.8494127635370994e-01 8.3052066594574897e-02 2.4893974959454834e-01 1.3957000000000000e-01 1 0 0 0 0 P 233 111 1.4544729564604503e-01 8.7508256761337189e-01 1.5175385089476638e+00 1.7629711122110476e+00 1.3497999999999999e-01 2 0 0 -107 0 V -58 0 0 0 0 0 0 2 0 P 234 -211 2.3452219059693755e-01 1.4247766660078812e-01 1.1305466119180460e-01 3.2796598097910301e-01 1.3957000000000000e-01 1 0 0 0 0 P 235 211 -1.4557619570835603e-01 -2.1796102608840404e-01 7.2666775985072507e-01 7.8500016290246621e-01 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 236 22 -3.0192313844010377e-01 1.5497524361971549e-01 2.0917358402379813e-01 3.9865836992827974e-01 0 1 0 0 0 0 P 237 113 -5.2472110459773358e-01 1.1835102338685410e+00 1.3584280505009805e+00 2.0199915436373517e+00 7.4766995171444572e-01 2 0 0 -108 0 V -60 0 -1.2455560646526105e-05 4.0010840456397701e-06 -3.1842749839262274e-05 3.5206753004917610e-05 0 2 0 P 238 22 -9.0339520877744744e-02 -1.7734709469511820e-02 -1.0905275233207240e-01 1.4271738416741242e-01 0 1 0 0 0 0 P 239 22 -1.3759651800609837e-01 9.0954315915635797e-02 -4.7366772661761530e-01 5.0156415799993492e-01 0 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 240 -211 -1.8443748427434764e-01 6.1578126364856467e-01 3.5201271547829727e-01 7.4605394377650602e-01 1.3957000000000000e-01 1 0 0 0 0 P 241 111 1.3817437199018529e-01 -3.5963787715292299e-04 -3.3152130950772164e-02 1.9598711845644837e-01 1.3497999999999999e-01 2 0 0 -109 0 V -62 0 0 0 0 0 0 2 0 P 242 211 -4.0775884954767161e-01 6.7459915607225140e-01 -6.2736113125142057e-01 1.0170609984965979e+00 1.3957000000000000e-01 1 0 0 0 0 P 243 111 -4.9083303297375469e-01 8.5560228755145282e-02 3.7790416244079178e-01 6.3974117844087863e-01 1.3497999999999999e-01 2 0 0 -110 0 V -63 0 -8.5459102534602468e-05 2.4026992705974159e-05 -2.3546310778917130e-04 2.5285365512854992e-04 0 2 0 P 244 22 -9.5622299192251362e-02 3.5157360793845963e-03 -4.1085646505775719e-01 4.2185189270969076e-01 0 1 0 0 0 0 P 245 22 -3.7083822046927545e-01 1.2763054525436138e-01 -8.7436933726076072e-01 9.5829655106577871e-01 0 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 246 -211 2.0765935830548538e-01 -3.4755512494996843e-01 -1.2227673900885363e+00 1.2955913125421785e+00 1.3957000000000000e-01 1 0 0 0 0 P 247 111 2.8455593262282541e-01 -1.1029339763291013e+00 -8.1045822091746107e+00 8.1853471411175711e+00 1.3497999999999999e-01 2 0 0 -111 0 V -65 0 4.0741781607596511e-05 3.0039044016585781e-05 -1.2096621421884251e-03 1.2109298488562660e-03 0 2 0 P 248 22 1.1527169917540943e-01 1.8660966928019083e-02 -3.4667505587816372e+00 3.4687166550657129e+00 0 1 0 0 0 0 P 249 22 1.2911533980782805e-01 1.6152636733749426e-01 -3.7893324458071529e+00 3.7949706089989363e+00 0 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 250 -211 2.7655945140062744e-02 -2.1431428405294994e-01 -2.2614347473522480e+00 2.2760189729180302e+00 1.3957000000000000e-01 1 0 0 0 0 P 251 111 6.9088013728702480e-01 -5.4756758952543227e-01 -3.5343365296450675e+00 3.6451200164576156e+00 1.3497999999999999e-01 2 0 0 -112 0 V -67 0 6.0677027504168209e-05 -9.7342447336199567e-05 -2.3884631632334953e-03 2.3913004892793395e-03 0 2 0 P 252 22 2.0772623284605782e-01 -3.5049704807486531e-01 -9.8385282458344943e+00 9.8469607703394857e+00 0 1 0 0 0 0 P 253 22 1.9950171902535574e-01 -3.0280729278376328e-01 -6.1914093119517357e+00 6.2020192244606731e+00 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 254 -211 -5.1437923652874966e-02 2.3310802721826712e-02 -9.7436907632642260e+01 9.7437023959327050e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 1.0785571924148454e-01 -5.0286558562506534e-01 -1.3687588635790345e+02 1.3687691913728727e+02 1.3497999999999999e-01 2 0 0 -113 0 V -69 0 0 0 0 0 0 2 0 P 256 211 -7.5595947898910193e-02 3.3952532299278088e-01 -1.3184040252019631e+02 1.3184093525405748e+02 1.3957000000000000e-01 1 0 0 0 0 P 257 111 -2.4330594303910710e-01 -3.0824136675531089e-01 -5.6315369249851180e+01 5.6316900162114578e+01 1.3497999999999999e-01 2 0 0 -114 0 V -70 0 0 0 0 0 0 2 0 P 258 2112 -6.3681599271654898e-02 -4.7210019238994977e-01 -7.8727545827081269e+02 7.8727616305921572e+02 9.3957000000000002e-01 1 0 0 0 0 P 259 -211 -6.2726789112385953e-02 2.1525457437035747e-01 -2.6379734631444217e+02 2.6379747851620664e+02 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 260 -2212 -1.6049928674954383e-01 1.1254185250572642e-01 -6.5337202855680835e+02 6.5337273165990121e+02 9.3827000000000005e-01 1 0 0 0 0 P 261 111 5.9812376967046707e-02 1.6696276630438725e-01 -2.9805205305545155e+02 2.9805213638599520e+02 1.3497999999999999e-01 2 0 0 -115 0 V -72 0 0 0 0 0 0 2 0 P 262 211 -7.4133822674239763e-02 3.2503065379877705e-01 -1.7178733006273958e+03 1.7178733386454885e+03 1.3957000000000000e-01 1 0 0 0 0 P 263 111 1.0527234334688418e-02 -3.3750866961040726e-01 -5.9958214931553323e+02 5.9958225959442757e+02 1.3497999999999999e-01 2 0 0 -116 0 V -73 0 -1.4484650708631447e-02 -6.3455938953996937e-03 8.8317913997737491e-03 2.3719398645238626e-02 0 3 0 P 264 311 -1.1517038651469280e+00 2.3991416318271097e-01 2.5628933670703308e-01 1.3028201148661180e+00 4.9767000000000000e-01 2 0 0 -117 0 P 265 -211 -1.6378574719202937e-01 -4.3180626893957341e-01 3.7798620830081908e-01 6.1289133086086045e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 -2112 -8.4558084396527999e-01 -7.5485322976448499e-01 6.8340369035813564e-01 1.6231582643297691e+00 9.3957000000000002e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 267 211 -6.4269189294790596e-01 -3.8744808694931754e-01 3.5844279452271904e-01 8.4328518971158550e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 1.0398017568146829e-01 -2.2108199220126643e-01 -5.9751413802795035e-02 2.8544518924280837e-01 1.3497999999999999e-01 2 0 0 -118 0 V -75 0 0 0 0 0 0 2 0 P 269 -211 2.4566656072534937e-01 -2.8787477332090933e-01 2.9378064593681791e-01 4.9900981653695015e-01 1.3957000000000000e-01 1 0 0 0 0 P 270 211 8.3828767780726698e-01 -9.8611845583815541e-02 -1.9826218144879889e-02 8.5575895594429796e-01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 271 -2212 3.9802954849721978e-01 -5.3552150887895966e-01 -6.7874854016044872e-02 1.1533292663661137e+00 9.3827000000000005e-01 1 0 0 0 0 P 272 -211 -1.0648787315649774e-01 -5.7309869790793319e-03 1.3773409537628348e-02 1.7618740889019271e-01 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 273 211 2.4298576362523136e-01 -7.3820435110022994e-02 -3.6149563036291049e-01 4.6330380274270139e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 111 8.0712494818933656e-01 -1.4515042116072285e-01 -9.9754026146759555e-03 8.3116691212421301e-01 1.3497999999999999e-01 2 0 0 -119 0 V -78 0 0 0 0 0 0 2 0 P 275 2212 2.7149292148074455e-01 -2.3995710032886750e-01 -8.6950390600171690e-01 1.3295395638583420e+00 9.3827000000000005e-01 1 0 0 0 0 P 276 111 -3.3857700349869770e-02 -2.0089402372061910e-01 -6.2485355261095610e-01 6.7094434586646234e-01 1.3497999999999999e-01 2 0 0 -120 0 V -79 0 0 0 0 0 0 2 0 P 277 -211 5.0822766315896317e-01 2.0219130181956130e-01 -2.0202748227179571e-01 5.9955947880472227e-01 1.3957000000000000e-01 1 0 0 0 0 P 278 111 7.5432016516888800e-01 2.4060696480936103e-01 -1.5036875414852953e+00 1.7047540719743957e+00 1.3497999999999999e-01 2 0 0 -121 0 V -80 0 0 0 0 0 0 3 0 P 279 -211 4.6495939425065530e-01 5.2848766807162029e-01 -6.2525384537163351e+00 6.2935843009931292e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 211 2.3944879872248387e-01 9.3471840279946194e-01 -8.6721164484071132e+00 8.7267472576771024e+00 1.3957000000000000e-01 1 0 0 0 0 P 281 111 5.8787893471567743e-01 1.3742614367229695e+00 -1.0623484623664501e+01 1.0728972051784943e+01 1.3497999999999999e-01 2 0 0 -122 0 V -81 0 0 0 0 0 0 2 0 P 282 22 6.3462081291178599e-02 7.3800402230548096e-02 -2.6812318750954383e+00 2.6829980065514394e+00 0 1 0 0 0 0 P 283 111 1.9149104918171165e+00 4.3788682700200177e+00 -4.6204154228773120e+01 4.6450871435469459e+01 1.3497999999999999e-01 2 0 0 -123 0 V -82 0 0 0 0 0 0 2 0 P 284 211 1.3146929817306580e-01 1.5805369577754214e-01 -1.7606016472378174e+00 1.7780503626915563e+00 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 2.1630486173445820e+00 6.4966280716725038e+00 -6.6375146136425315e+01 6.6727538992827817e+01 1.3957000000000000e-01 1 0 0 0 0 V -83 0 -1.8125415294679718e-05 -1.4395526561623990e-05 4.0181247829773597e-05 4.6581446746143673e-05 0 2 0 P 286 22 -2.6409283348362811e-01 -1.2672028044769951e-01 4.7448559892983166e-01 5.5761961745078148e-01 0 1 0 0 0 0 P 287 22 -2.8942607556741190e-01 -3.1289426233986656e-01 7.5258038005350725e-01 8.6489739337394456e-01 0 1 0 0 0 0 V -84 0 -1.1489133602399899e-03 -8.8225216216738568e-04 2.9680420101427197e-03 3.3036157596813389e-03 0 2 0 P 288 22 -1.8888770736543132e+00 -1.4334734351834715e+00 4.9060188413369712e+00 5.4490112461167612e+00 0 1 0 0 0 0 P 289 22 -7.5435946262423531e-02 -7.4925256109566726e-02 1.6848352406798639e-01 1.9922618772129122e-01 0 1 0 0 0 0 V -85 0 -7.1289751259636519e-05 -5.0472924586326148e-05 1.8913625564029665e-04 2.0874023835251184e-04 0 2 0 P 290 22 -3.3099424188622162e-01 -1.5770621025064213e-01 7.3564663686550791e-01 8.2195158692284720e-01 0 1 0 0 0 0 P 291 22 -4.0655717750282216e-01 -3.6447792578011695e-01 1.2211243062309356e+00 1.3376387659708513e+00 0 1 0 0 0 0 V -86 0 -1.2177017684851562e-04 -8.4169047146016298e-05 1.2855550035640537e-04 1.9744080072367788e-04 0 2 0 P 292 22 -6.2748965250763622e-01 -4.7776831047473228e-01 6.6268305207571243e-01 1.0301236090908779e+00 0 1 0 0 0 0 P 293 22 -7.7254382104356881e-02 -9.3594527453445178e-03 8.1330994199699885e-02 1.1256362435320716e-01 0 1 0 0 0 0 V -87 0 -1.6206080626498276e-04 -4.2670327658937129e-05 4.9878153195068384e-06 1.6888681291380635e-04 0 2 0 P 294 22 -3.3630153980577432e-01 -1.2837828500611231e-01 -3.9288766898808045e-02 3.6210953721391304e-01 0 1 0 0 0 0 P 295 22 -7.3955422013836958e-01 -1.5489266031739490e-01 7.2400843561285858e-02 7.5906130377793446e-01 0 1 0 0 0 0 V -88 0 -3.8850010467363435e-05 4.1038123568984410e-06 -2.9632060711544831e-05 7.3283706181998236e-05 0 2 0 P 296 22 -1.2625264089290447e-01 1.3848902470802802e-03 -8.0321759896119477e-02 1.4964368468545214e-01 0 1 0 0 0 0 P 297 22 2.9968526539091985e-02 8.7858132740972778e-03 6.8829966173737517e-03 3.1979348652628047e-02 0 1 0 0 0 0 V -89 0 -4.2223306961449937e-05 -2.8705695205323722e-05 -2.9236893979322010e-05 6.3976659495646677e-05 0 2 0 P 298 22 -8.7350542978690132e-02 -1.1578620030565222e-01 -1.3346070268384283e-01 1.9709977346703803e-01 0 1 0 0 0 0 P 299 22 -1.3946457191474901e-01 -3.8415022304315573e-02 -2.3594012928595792e-02 1.4656997715794326e-01 0 1 0 0 0 0 V -90 0 1.9810561778233377e-05 -1.3713688116249662e-05 8.3111791069485130e-05 8.6818527809383067e-05 0 2 0 P 300 22 7.4126910125006565e-02 -9.6338323703272000e-02 5.9052853182298448e-01 6.0290946112633426e-01 0 1 0 0 0 0 P 301 22 3.0646878695524948e-01 -1.6712571868849835e-01 1.0061949943333801e+00 1.0650269901962672e+00 0 1 0 0 0 0 V -91 0 4.7136270089032225e-05 1.5365093751793468e-05 1.7373926244994291e-03 1.7381712563142742e-03 0 2 0 P 302 22 2.0473819856640187e-02 4.9152226259343561e-02 1.9649694183401949e+00 1.9656907014222702e+00 0 1 0 0 0 0 P 303 22 3.8332220184518501e-01 8.2473880734926647e-02 1.2918521120513478e+01 1.2924470039138308e+01 0 1 0 0 0 0 V -92 0 -8.7142737672533951e-05 1.6477683643820954e-04 1.8947114795477255e-02 1.8948352649492656e-02 0 2 0 P 304 22 -3.0375633873417254e-02 -1.5859731092875654e-02 2.6528570814520531e+00 2.6530783827120259e+00 0 1 0 0 0 0 P 305 22 -7.6275651840408576e-02 2.1752497516668881e-01 2.0535927290903114e+01 2.0537220960664190e+01 0 1 0 0 0 0 V -93 0 0 0 0 0 0 3 0 P 306 111 -6.2891099808674647e-02 2.0459446433665152e-01 -2.2470688613986788e+01 2.2472113397996811e+01 1.3497999999999999e-01 2 0 0 -124 0 P 307 111 -2.1517605655643998e-01 4.5395574505717688e-03 -1.6584820872262426e+01 1.6586766541684021e+01 1.3497999999999999e-01 2 0 0 -125 0 P 308 111 -1.0342247152844521e-01 1.0154067846958585e-01 -2.7107125842738061e+01 2.7107849375622528e+01 1.3497999999999999e-01 2 0 0 -126 0 V -94 0 -1.5939799516661404e+00 6.5505527605655907e+00 1.9690672174135577e+03 1.9692534582006845e+03 0 2 0 P 309 211 -1.4912227952938648e-01 -3.9843071521560733e-02 8.7452484933754189e+00 8.7477240423086826e+00 1.3957000000000000e-01 1 0 0 0 0 P 310 -211 1.1887947435649146e-01 1.6412762773914638e-01 2.8614139977180173e+01 2.8615198000820666e+01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 6.4995298824978806e-08 3.1549381343678418e-07 2.6852829781097389e-05 2.6854873513508387e-05 0 2 0 P 311 22 2.4269569640435539e-02 4.1335809982293653e-01 3.4321019885063087e+01 3.4323517591901833e+01 0 1 0 0 0 0 P 312 22 8.8957775977090231e-02 1.3625899095146848e-01 1.2458896407350302e+01 1.2459959056417803e+01 0 1 0 0 0 0 V -96 0 -3.5062127920671644e-06 6.7981217312118695e-08 1.4801744931925795e-04 1.4807361239824610e-04 0 2 0 P 313 22 -1.8316557532887065e-01 -4.1366210072648894e-02 5.6261850221390564e+00 5.6293177823483322e+00 0 1 0 0 0 0 P 314 22 -4.4240343797471195e-02 4.5775335280670154e-02 3.9739294333608224e+00 3.9744392976457483e+00 0 1 0 0 0 0 V -97 0 -1.0627919174115265e-05 -4.0118287475898132e-06 5.3025241732520352e-04 5.3267883046840409e-04 0 2 0 P 315 22 -6.4998510057967425e-03 -7.2581181271990799e-02 7.6674027830100044e-01 7.7019538450125180e-01 0 1 0 0 0 0 P 316 22 -2.2482195462529136e-02 6.1641033414186565e-02 6.7924363887914585e-01 6.8240529531281335e-01 0 1 0 0 0 0 V -98 0 -2.0250333441903672e-06 -4.3548573633772065e-05 2.7478428292609139e-04 2.7941397969914386e-04 0 2 0 P 317 22 -5.2725976110697327e-02 -6.1589093047547977e-02 6.9318931381438809e-01 6.9791451462604481e-01 0 1 0 0 0 0 P 318 22 4.2127865239093468e-02 -1.6632449316327436e-01 7.4490764620836725e-01 7.6441218948634870e-01 0 1 0 0 0 0 V -99 0 -1.3019967252557405e-05 -1.0370548560943879e-05 1.1140268815973760e-04 1.1294135742759088e-04 0 2 0 P 319 22 -1.7491533120972438e-01 -1.3845013512686583e-01 1.7144861800315765e+00 1.7289380192847064e+00 0 1 0 0 0 0 P 320 22 -3.8011776638324703e-02 -3.1148671770731745e-02 1.0738109015620190e-01 1.1809247833548520e-01 0 1 0 0 0 0 V -100 0 4.9572624515648585e-05 -1.3649033712224089e-04 1.4680584560153659e-04 2.0755266463806719e-04 0 2 0 P 321 22 6.2038910403030854e-02 -3.4939400073052895e-01 3.2256031225198950e-01 4.7955202970124217e-01 0 1 0 0 0 0 P 322 22 2.5728545468006014e-01 -5.2981485027106057e-01 6.2309636611085928e-01 8.5740810715681326e-01 0 1 0 0 0 0 V -101 0 -1.2950025699981288e-05 -8.8578154805592598e-06 9.2423716944578177e-06 2.1761569043130183e-05 0 2 0 P 323 22 -8.9613237557780695e-02 -1.1587288526562775e-01 2.7148170493019107e-02 1.4897678022593522e-01 0 1 0 0 0 0 P 324 22 -5.7085328488462879e-02 1.5531089858832607e-02 7.7549897746745949e-02 9.7539408042952552e-02 0 1 0 0 0 0 V -102 0 -7.4931116848904702e-05 -1.1393392506205065e-04 1.1552012868738463e-04 1.8273294229723187e-04 0 2 0 P 325 22 -2.7744938696569288e-01 -3.6767770339814626e-01 3.9550634136546214e-01 6.0711639902416359e-01 0 1 0 0 0 0 P 326 22 1.1912179235159175e-02 -3.6075738416447976e-02 1.3868210867285317e-02 4.0443617408461703e-02 0 1 0 0 0 0 V -103 0 2.8047281802139306e-04 2.9558871144100957e-04 1.5521101337491094e-03 1.6053217173542579e-03 0 2 0 P 327 22 1.9935817546262680e-01 2.3860664542433774e-01 1.4121236297591548e+00 1.4459495008777501e+00 0 1 0 0 0 0 P 328 22 6.5267778554148537e-01 6.5934921921634115e-01 3.3029630539431971e+00 3.4307862976778822e+00 0 1 0 0 0 0 V -104 0 2.7224904015100684e+00 -2.4480954978027984e+01 7.6053379099733320e+02 7.6224938115446184e+02 0 2 0 P 329 22 2.0346773024526640e-02 -4.9790813712582607e-02 6.7207949646557097e-01 6.7422842262254701e-01 0 1 0 0 0 0 P 330 22 -9.0175861208925290e-02 3.3146922577415285e-02 1.8241351870293230e+00 1.8266635117009442e+00 0 1 0 0 0 0 V -105 0 -9.6542476751274492e+01 -5.6496358387087241e+01 7.0200512019314340e+02 7.1808728418902706e+02 0 2 0 P 331 -211 4.4527483554410836e-02 -7.4506560701211269e-02 9.0754398021621141e-01 9.2230677396726013e-01 1.3957000000000000e-01 1 0 0 0 0 P 332 211 -5.1734826755207453e-01 -2.0218669769132239e-01 2.5305552116580463e+00 2.5945554830861015e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 333 130 -8.6748390698046907e-01 -2.1240485761697811e-01 5.6858313001720893e+00 5.7770232088270186e+00 4.9767000000000000e-01 1 0 0 0 0 V -107 0 7.1729340265376290e-05 4.3155903981460873e-04 7.4839504984002534e-04 8.6943352383502155e-04 0 2 0 P 334 22 3.5362577441187870e-02 1.6966762427586576e-01 2.0180422082060853e-01 2.6601232706721184e-01 0 1 0 0 0 0 P 335 22 1.1008471820485716e-01 7.0541494333750610e-01 1.3157342881270553e+00 1.4969587851438355e+00 0 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 336 -211 -4.5667411912083533e-01 9.0305252572498029e-01 5.7209492719043942e-01 1.1708234307145085e+00 1.3957000000000000e-01 1 0 0 0 0 P 337 211 -6.8046985476898275e-02 2.8045770814356080e-01 7.8633312331054117e-01 8.4916811292284322e-01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 4.1407458795939464e-06 -1.0777462104714016e-08 -9.9348777676311487e-07 5.8732516132562807e-06 0 2 0 P 338 22 1.3765889111178231e-01 4.5955495152273769e-02 -3.6184252800858067e-02 1.4956997689233156e-01 0 1 0 0 0 0 P 339 22 5.1548087840296573e-04 -4.6315133029426692e-02 3.0321218500859040e-03 4.6417141564116769e-02 0 1 0 0 0 0 V -110 0 -5.1651222659270196e-04 9.0036532371006996e-05 3.9767519149710648e-04 6.7321088500823449e-04 0 2 0 P 340 22 -3.5053821226355880e-01 1.1875106884929407e-01 2.9613719977671277e-01 4.7400010095080608e-01 0 1 0 0 0 0 P 341 22 -1.4029482071019586e-01 -3.3190840094148778e-02 8.1766962664079013e-02 1.6574107749007264e-01 0 1 0 0 0 0 V -111 0 1.9202316781833580e-05 -7.4427854684692293e-05 -5.4691094833459125e-04 5.5236110287446374e-04 0 2 0 P 342 22 2.0337732290738414e-01 -9.7063185096175553e-01 -7.0420324935119778e+00 7.1115195398207938e+00 0 1 0 0 0 0 P 343 22 8.1178609715441288e-02 -1.3230212536734573e-01 -1.0625497156626327e+00 1.0738276012967773e+00 0 1 0 0 0 0 V -112 0 5.9665915997993932e-05 -4.7289131698217159e-05 -3.0523301381124313e-04 3.1480051743651563e-04 0 2 0 P 344 22 2.1360592199863634e-02 -4.5231917381479768e-02 -3.0488875516744690e-01 3.0896497257244104e-01 0 1 0 0 0 0 P 345 22 6.6951954508716116e-01 -5.0233567214395258e-01 -3.2294477744776207e+00 3.3361550438851748e+00 0 1 0 0 0 0 V -113 0 4.7271869060209369e-06 -2.2039995918371660e-05 -5.9991060491878011e-03 5.9991513146703769e-03 0 2 0 P 346 22 -1.6510714526598459e-02 -6.0767538825077072e-02 -9.7588539254611497e+00 9.7590570874422866e+00 0 1 0 0 0 0 P 347 22 1.2436643376808301e-01 -4.4209804679998826e-01 -1.2711703243244230e+02 1.2711786204984499e+02 0 1 0 0 0 0 V -114 0 -1.5426318429669013e-04 -1.9543416890558779e-04 -3.5705614407986766e-02 3.5706585051768339e-02 0 2 0 P 348 22 -7.8260503463227271e-02 -4.7386951067375033e-02 -7.5565975104462142e+00 7.5571513260232992e+00 0 1 0 0 0 0 P 349 22 -1.6504543957587986e-01 -2.6085441568793583e-01 -4.8758771739404963e+01 4.8759748836091283e+01 0 1 0 0 0 0 V -115 0 1.8219836250770970e-06 5.0859611610447590e-06 -9.0791569842949230e-03 9.0791595226806816e-03 0 2 0 P 350 22 7.6080687156533738e-02 1.6715964502851299e-01 -2.9291285197601712e+02 2.9291290955391838e+02 0 1 0 0 0 0 P 351 22 -1.6268310189487028e-02 -1.9687872412575333e-04 -5.1392010794344394e+00 5.1392268320767620e+00 0 1 0 0 0 0 V -116 0 3.2352153047221384e-06 -1.0372270424360373e-04 -1.8426276876083433e-01 1.8426280265159384e-01 0 2 0 P 352 22 1.7473407639941922e-02 -1.7268859801061054e-01 -4.1584135915239716e+02 4.1584139537615170e+02 0 1 0 0 0 0 P 353 22 -6.9461733052535056e-03 -1.6482007159979672e-01 -1.8374079016313607e+02 1.8374086421827602e+02 0 1 0 0 0 0 V -117 0 -1.4484650708631447e-02 -6.3455938953996937e-03 8.8317913997737491e-03 2.3719398645238626e-02 0 1 0 P 354 310 -1.1517038651469280e+00 2.3991416318271097e-01 2.5628933670703308e-01 1.3028201148661180e+00 4.9767000000000000e-01 2 0 0 -127 0 V -118 0 5.6464816527382366e-06 -1.2005513594624089e-05 -3.2447075565268769e-06 1.5500656864240762e-05 0 2 0 P 355 22 -1.1701449506792989e-02 -1.2536835317050574e-01 -4.8319155035888441e-02 1.3486618790722502e-01 0 1 0 0 0 0 P 356 22 1.1568162518826128e-01 -9.5713639030760675e-02 -1.1432258766906593e-02 1.5057900133558347e-01 0 1 0 0 0 0 V -119 0 4.7034464658991565e-05 -8.4585074090910837e-06 -5.8130742060661161e-07 4.8435488014253357e-05 0 2 0 P 357 22 2.6750653781395523e-01 -8.1049633470676063e-02 5.1732110261396062e-02 2.8426220658229850e-01 0 1 0 0 0 0 P 358 22 5.3961841037538139e-01 -6.4100787690046790e-02 -6.1707512876072020e-02 5.4690470554191506e-01 0 1 0 0 0 0 V -120 0 -4.0116277355437081e-06 -2.3802917183821994e-05 -7.4035738293040112e-05 7.9496803358485732e-05 0 2 0 P 359 22 6.5074927384605576e-03 -1.5337626749584962e-01 -2.6944455903179804e-01 3.1010804130905667e-01 0 1 0 0 0 0 P 360 22 -4.0365193088330323e-02 -4.7517756224769482e-02 -3.5540899357915806e-01 3.6083630455740567e-01 0 1 0 0 0 0 V -121 0 5.9730080077529876e-04 1.9052219387581741e-04 -1.1906797857431210e-03 1.3498922862380026e-03 0 2 0 P 361 22 2.7981662896768355e-02 3.4157115173666353e-03 -1.2845408117953139e-01 1.3151080379693486e-01 0 1 0 0 0 0 P 362 22 7.2633850227211960e-01 2.3719125329199439e-01 -1.3752334603057639e+00 1.5732432681774609e+00 0 1 0 0 0 0 V -122 0 1.2270129843475525e-04 2.8683399373082485e-04 -2.2173193837192440e-03 2.2393365774551971e-03 0 2 0 P 363 22 5.4819645869611425e-02 2.2325368534258158e-01 -1.8639854124555759e+00 1.8781078295559859e+00 0 1 0 0 0 0 P 364 22 5.3305928884606602e-01 1.1510077513803878e+00 -8.7594992112089258e+00 8.8508642222289549e+00 0 1 0 0 0 0 V -123 0 1.4071746735364835e-04 3.2178175192290761e-04 -3.3953187849112597e-03 3.4134488336144400e-03 0 2 0 P 365 22 1.7722891796472187e+00 4.0081729674984423e+00 -4.2670762230090084e+01 4.2895225943810601e+01 0 1 0 0 0 0 P 366 22 1.4262131216989782e-01 3.7069530252157573e-01 -3.5333919986830393e+00 3.5556454916588565e+00 0 1 0 0 0 0 V -124 0 -1.2754109615710621e-05 4.1491089086620337e-05 -4.5569822533737571e-03 4.5572711949171214e-03 0 2 0 P 367 22 -3.4567766574728480e-02 3.4533867857268481e-02 -1.6811217894424573e+00 1.6818317363676303e+00 0 1 0 0 0 0 P 368 22 -2.8323333233946167e-02 1.7006059647938304e-01 -2.0789566824544330e+01 2.0790281661629184e+01 0 1 0 0 0 0 V -125 0 -1.7942444953950098e-05 3.7853077603368814e-07 -1.3829244774436090e-03 1.3830867169931863e-03 0 2 0 P 369 22 -3.6922305821399111e-02 -4.8108414179934472e-02 -2.5814594418860368e+00 2.5821716686317830e+00 0 1 0 0 0 0 P 370 22 -1.7825375073504088e-01 5.2647971630506239e-02 -1.4003361430376389e+01 1.4004594873052238e+01 0 1 0 0 0 0 V -126 0 -8.0040342316208744e-06 7.8583991888942644e-06 -2.0978648059716510e-03 2.0979208013650061e-03 0 2 0 P 371 22 5.4378501179958025e-03 -6.8804664036593048e-03 -1.0713339605615806e+01 1.0713343195113657e+01 0 1 0 0 0 0 P 372 22 -1.0886032164644101e-01 1.0842114487324515e-01 -1.6393786237122253e+01 1.6394506180508873e+01 0 1 0 0 0 0 V -127 0 -1.5663457841353747e+02 3.2619557530874573e+01 3.4861593130659401e+01 1.7719409689008489e+02 0 2 0 P 373 -211 -2.9088101387293747e-01 2.4111465637868487e-01 1.1921770060405575e-01 4.2004843386171264e-01 1.3957000000000000e-01 1 0 0 0 0 P 374 211 -8.6082285127399050e-01 -1.2004931959739011e-03 1.3707163610297735e-01 8.8277168100440528e-01 1.3957000000000000e-01 1 0 0 0 0 E 5 36 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 267 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 -8.3785056185557621e-02 8.0843415593204826e-01 3.2632960279715799e+03 3.2632961291860729e+03 0 3 0 0 -3 0 P 66 2203 8.3785056185557621e-02 -8.0843415593204826e-01 4.8771766948861364e+02 4.8771895664111065e+02 7.7132999999999996e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 -4.5433132129126352e-01 1.9040334291993262e+00 -1.0136614329968000e+02 1.0138504212999206e+02 0 3 0 0 -4 0 P 12 2203 4.5433132129126352e-01 -1.9040334291993262e+00 -1.6711028208356684e+03 1.6711041453228299e+03 7.7132999999999996e-01 2 0 0 -9 0 V -3 0 0 0 0 0 0 6 0 P 5 3 -1.0082160800510886e+01 -9.1261040172920771e-01 1.1656285321159002e+02 1.1700163064239483e+02 0 3 0 0 -5 0 P 65 21 -1.7466998608857169e+00 -3.3016934511327811e-02 1.1262369182991197e+03 1.1262382732754290e+03 0 2 0 0 -11 0 P 67 -3 2.2519889032721525e+00 4.2523642542269151e+00 5.2552554033607983e+01 5.2774757140382697e+01 5.0000000000000000e-01 2 0 0 -13 0 P 68 21 -6.8968352115101425e-02 -1.6123082814790757e-01 7.7196965298756410e+01 7.7197164477401245e+01 0 2 0 0 -13 0 P 69 21 2.0159950406237567e-01 2.6097869226051323e-02 1.3906207575709962e+02 1.3906222433620187e+02 0 2 0 0 -13 0 P 70 1 9.5730844886023352e+00 -2.3978343516437230e+00 1.7488902854463167e+03 1.7489181607452942e+03 3.3000000000000002e-01 2 0 0 -13 0 V -4 0 0 0 0 0 0 7 0 P 6 -4 8.5553164085080499e-02 -4.5681410343089839e+00 -2.9517507698772185e+01 2.9869022290665949e+01 0 3 0 0 -5 0 P 11 4 -2.1764145380335318e+00 -2.6587918343690728e+00 -3.0876420569459455e+00 4.8569010419909482e+00 1.5000000000000000e+00 2 0 0 -9 0 P 13 1 6.6892948121234053e-01 1.0735755627682487e+01 -3.6820431256065447e+01 3.8360878162925211e+01 3.3000000000000002e-01 2 0 0 -11 0 P 14 21 -7.4694903728111994e-01 7.1534182448228345e-01 -2.7113150282517715e+00 2.9018745618259825e+00 0 2 0 0 -11 0 P 15 21 6.8603276557560244e-01 2.1343929878024825e-01 -3.5437528364100834e+00 3.6158514149881249e+00 0 2 0 0 -11 0 P 16 21 1.1620153889745066e+00 -3.1281647528440115e+00 -2.2923902705498190e+01 2.3165513370877331e+01 0 2 0 0 -11 0 P 17 21 -3.4612748451024128e-01 6.2925884830733259e-01 3.2784192090568536e-02 7.1891984042554369e-01 0 2 0 0 -11 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 -1.2151015576479914e+01 -3.9273484360929403e+00 1.0260890724182832e+02 1.3108208149213786e+02 8.0565830211517124e+01 3 0 0 -6 0 P 8 22 2.1544079400541096e+00 -1.5534029999452523e+00 -1.5563561729010416e+01 1.5788571440922967e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 -1.2151015576479914e+01 -3.9273484360929403e+00 1.0260890724182832e+02 1.3108208149213786e+02 8.0565830211517124e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1544079400541096e+00 -1.5534029999452523e+00 -1.5563561729010416e+01 1.5788571440922855e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 8 0 P 71 -2 -2.7528215695098696e-01 2.2900394747908450e+01 2.2994085060296374e+01 3.2455210793278070e+01 3.3000000000000002e-01 2 0 0 -15 0 P 72 21 3.4714752162041335e-01 6.1870941301787576e+00 7.0776872395252886e+00 9.4071410023449058e+00 0 2 0 0 -15 0 P 73 21 -3.3424137967048101e-02 7.1913353472568931e+00 5.8442096741300569e+00 9.2666718925890859e+00 0 2 0 0 -15 0 P 74 21 7.4753181060549706e-02 1.8565214235601085e-01 1.2320425850902850e-01 2.3501924464776788e-01 0 2 0 0 -15 0 P 75 21 -3.5238188240554451e+00 -3.7144616994573085e+00 4.1558826739749346e+00 6.5943828840421324e+00 0 2 0 0 -15 0 P 76 21 -1.8896152183434788e-02 -1.2165862478213110e+00 1.1760275415850219e+00 1.6921820060270663e+00 0 2 0 0 -15 0 P 77 21 1.7187210570958236e-01 -3.7604983655671247e+00 7.8697312052496962e+00 8.7237352791699774e+00 0 2 0 0 -15 0 P 78 1 -8.8933671137135430e+00 -3.1700278490947312e+01 5.3368079588557897e+01 6.2707738390038820e+01 3.3000000000000002e-01 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 102 92 -1.7220832167422682e+00 -4.5628252635683992e+00 -1.6741904628926143e+03 1.6759610463648210e+03 7.6863111742163028e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 8 0 P 103 413 -8.5813386072218056e-01 -1.4251377648200139e+00 -2.6732396320407319e+00 3.7354680432239555e+00 2.0099999999999998e+00 2 0 0 -27 0 P 104 311 -1.1783978863504199e+00 -1.1375162151770275e+00 -2.2693802365904192e+00 2.8425915650112299e+00 4.9767000000000000e-01 2 0 0 -28 0 P 105 -323 -1.3618797821420758e-01 -4.1891393996686199e-01 -4.4412407553539710e+00 4.5502222225105022e+00 8.8649127051690169e-01 2 0 0 -29 0 P 106 113 -1.1709737043462452e-01 6.1116518816882204e-01 -2.2435060887761036e+01 2.2448231706074406e+01 4.5156949705115251e-01 2 0 0 -30 0 P 107 223 -3.2584970834294208e-02 -8.6038333674774703e-01 -8.4551651200763061e+01 8.4559967357133146e+01 8.1549825103997986e-01 2 0 0 -31 0 P 108 213 1.7794493303689835e-02 1.1691942269398452e-01 -8.6734521785109308e+01 8.6736862565024722e+01 6.2615616022788501e-01 2 0 0 -32 0 P 109 2214 4.9496593251514437e-01 -2.3278310142825515e-01 -6.0066050056830056e+02 6.0066197057706790e+02 1.2111049988748568e+00 2 0 0 -33 0 P 110 111 8.7558423994624365e-02 -1.2161755162913004e+00 -8.7042486782669516e+02 8.7042573232877487e+02 1.3497999999999999e-01 2 0 0 -34 0 V -11 0 0 0 0 0 47 1 0 P 18 21 -2.5876298311157203e-01 -8.7207493293450289e-01 -1.8523858294360526e+01 1.8546180174893987e+01 0 2 0 0 -11 0 P 19 21 1.5635073397214855e-01 -1.9697145399041209e+00 -7.1905487303265517e+01 7.1932630462404205e+01 0 2 0 0 -11 0 P 20 21 1.2162518017725885e+00 -7.9468154230854604e-01 -4.3980603213771197e+01 4.4004593467570885e+01 0 2 0 0 -11 0 P 21 21 1.1726656158937030e+00 -4.2116791481076504e-01 -3.1254452590766892e+01 3.1279279624180298e+01 0 2 0 0 -11 0 P 22 21 1.0252531809529852e+00 -1.3958768226193083e+00 -9.2179749176873585e+01 9.2196018213913703e+01 0 2 0 0 -11 0 P 23 21 5.5814414859577433e-01 -1.4966034353327267e+00 -1.1121081961927490e+02 1.1122228979446594e+02 0 2 0 0 -11 0 P 24 21 -4.1256856739402026e-01 -4.7149381198764068e-01 -7.5411682472782843e+01 7.5414284937360293e+01 0 2 0 0 -11 0 P 25 21 2.0551836263122594e-01 -1.6890896491125413e+00 -3.1884580235480752e+02 3.1885034254477614e+02 0 2 0 0 -11 0 P 26 21 9.8261185411883345e-01 -2.0825416351425541e+00 -7.6390464855527273e+02 7.6390811920680142e+02 0 2 0 0 -11 0 P 27 21 -2.0551836263122594e-01 1.6890896491125413e+00 -2.2813082962149879e+03 2.2813089307765777e+03 0 2 0 0 -11 0 P 28 21 -1.7791395751154329e+00 -4.2848051335507967e-02 -8.4329656708029108e+02 8.4329844493096698e+02 0 2 0 0 -11 0 P 29 21 1.0427476569150096e+00 3.9519576909765963e-01 -1.3722153823014958e+02 1.3722606915823363e+02 0 2 0 0 -11 0 P 30 21 -1.0252531809529852e+00 1.3958768226193083e+00 -7.5915734350868860e+01 7.5935488002782137e+01 0 2 0 0 -11 0 P 31 21 -2.0251286761835932e+00 4.9603005980009313e-01 -8.4540384246489339e+01 8.4566091079813958e+01 0 2 0 0 -11 0 P 32 21 -1.4010560205193543e+00 -1.0397271989261807e-01 -3.0464824969038169e+01 3.0497201981382602e+01 0 2 0 0 -11 0 P 33 21 -1.0427476569150096e+00 -3.9519576909765963e-01 -1.3956106154042368e+01 1.4000585750418219e+01 0 2 0 0 -11 0 P 34 21 -3.6037150111693959e+00 -4.3000997110995582e+00 -5.7176585283797841e+01 5.7451192538732684e+01 0 2 0 0 -11 0 P 35 21 -2.4989496484073193e-01 -1.9025850351850060e+00 -6.5220366015701439e+00 6.7984732655047866e+00 0 2 0 0 -11 0 P 36 21 4.3118656631961070e+00 -2.5014264850376042e+00 -2.5145303922802352e+01 2.5634656801439657e+01 0 2 0 0 -11 0 P 37 21 2.0251286761835932e+00 -4.9603005980009313e-01 -6.1503723965615933e+00 6.4941722021912227e+00 0 2 0 0 -11 0 P 38 21 1.4010560205193543e+00 1.0397271989261807e-01 -2.3695164180268931e+00 2.7547007740250837e+00 0 2 0 0 -11 0 P 39 21 1.3075447323464453e+00 -9.2970479487709423e-01 -3.0412795144647173e+00 3.4385178955193973e+00 0 2 0 0 -11 0 P 40 21 -1.2162518017725885e+00 7.9468154230854604e-01 -7.8413754870938961e+00 7.9748327085022916e+00 0 2 0 0 -11 0 P 41 21 -5.5814414859577433e-01 1.4966034353327267e+00 -9.0686003836422344e+00 9.2081952439909465e+00 0 2 0 0 -11 0 P 42 21 -2.0465901324765309e-01 5.7523878648651241e+00 -2.8648036291604818e+01 2.9220572116655379e+01 0 2 0 0 -11 0 P 43 21 3.6037150111693959e+00 4.3000997110995582e+00 -1.6269620123438447e+01 1.7209827377638611e+01 0 2 0 0 -11 0 P 44 21 3.0133330384375911e-01 1.0070249950011656e+00 -2.7585997454536058e+00 2.9520795477390496e+00 0 2 0 0 -11 0 P 45 21 -1.6653590948194417e+00 2.3583881166804508e+00 -9.6569280944996247e+00 1.0079269598831731e+01 0 2 0 0 -11 0 P 46 21 -1.3075447323464453e+00 9.2970479487709423e-01 -2.4016793156038720e+00 2.8882672604355504e+00 0 2 0 0 -11 0 P 47 21 -4.3118656631961070e+00 2.5014264850376042e+00 -6.1411911765280616e+00 7.9097123224655466e+00 0 2 0 0 -11 0 P 48 21 -7.0432241154092301e+00 -3.5282999150959993e-01 -1.3376379714583251e+01 1.5121475761694198e+01 0 2 0 0 -11 0 P 49 21 -6.1878968054032546e-01 -1.4241945786386516e+00 -1.0394095478966510e+00 1.8685831731088784e+00 0 2 0 0 -11 0 P 50 21 2.0465901324765309e-01 -5.7523878648651241e+00 8.0281217503582691e-01 5.8117431849606707e+00 0 2 0 0 -11 0 P 51 21 6.2715736229225183e-01 -2.9531418460163881e+00 2.4992043163697397e-01 3.0293288599820367e+00 0 2 0 0 -11 0 P 52 21 7.0432241154092301e+00 3.5282999150959993e-01 2.7967393487485679e+00 7.5863855641292952e+00 0 2 0 0 -11 0 P 53 21 3.7725342489472896e-01 -3.9768186301304973e+00 3.5465825698038479e+01 3.5690085444100497e+01 0 2 0 0 -11 0 P 54 21 -1.6765477152232619e-01 -1.1708220761753421e+00 1.6447397030923760e+01 1.6489869664412556e+01 0 2 0 0 -11 0 P 55 21 3.2838651535919955e-01 -9.9241541985819792e-01 1.3683631225439527e+01 1.3723501360180125e+01 0 2 0 0 -11 0 P 56 21 3.9633320599319233e-01 -3.1758376253505700e+00 5.3061508435996856e+01 5.3157941101364436e+01 0 2 0 0 -11 0 P 57 21 4.1761577477484471e+00 -1.4106805348411295e+00 3.1963604757520426e+02 3.1966644056360326e+02 0 2 0 0 -11 0 P 58 21 3.5740357295506029e+00 -5.0131432597602621e-01 1.2582251789749400e+03 1.2582303549247131e+03 0 2 0 0 -11 0 P 59 21 -4.1761577477484471e+00 1.4106805348411295e+00 1.0824577678330386e+03 1.0824667428864454e+03 0 2 0 0 -11 0 P 60 21 -3.7725342489472896e-01 3.9768186301304973e+00 4.5270645086073699e+01 4.5446547867498104e+01 0 2 0 0 -11 0 P 61 21 6.1878968054032546e-01 1.4241945786386516e+00 9.4735183370559373e+00 9.5999364867222958e+00 0 2 0 0 -11 0 P 62 21 -1.1726656158937030e+00 4.2116791481076504e-01 3.9826050180252195e+00 4.1729689417446023e+00 0 2 0 0 -11 0 P 63 21 -1.0833692596781730e+00 -5.3318497612548221e-01 3.0688472631172536e+00 3.2978475853083058e+00 0 2 0 0 -11 0 P 64 21 -3.5740357295506029e+00 5.0131432597602621e-01 8.4305488548744325e+00 9.1705616754895498e+00 0 2 0 0 -11 0 P 111 92 -3.0635899316313848e+00 -4.4770670823687340e+00 -7.9048650540286212e+02 9.7514516020732517e+03 9.7193574891882654e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 108 0 P 112 221 2.2277428248982320e-01 5.9523977934980055e+00 -2.1970571160579397e+01 2.2770295705097062e+01 5.4744999999999999e-01 2 0 0 -35 0 P 113 113 -4.4627580469661982e-01 3.7409923633500055e+00 -1.0329705676557456e+01 1.1024787673480068e+01 8.0556683429377651e-01 2 0 0 -36 0 P 114 311 6.2047496524002466e-01 6.6646193802313891e-01 -9.4351827335663945e+00 9.4920761344403761e+00 4.9767000000000000e-01 2 0 0 -37 0 P 115 -321 3.9605303800979297e-01 4.8767086070431420e-01 -1.4640948733234056e+00 1.6679015664567116e+00 4.9359999999999998e-01 1 0 0 0 0 P 116 211 9.6002960946673627e-02 -1.2644397929305120e+00 -8.6104398775105899e+00 8.7044344576532531e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 -211 -5.8863767225952224e-01 7.7023504678561316e-01 -3.8891731548843063e+00 4.0105989515373750e+00 1.3957000000000000e-01 1 0 0 0 0 P 118 211 1.1180060199634410e+00 -8.1088219021977903e-01 -3.6703058286799308e+00 3.9240402709493174e+00 1.3957000000000000e-01 1 0 0 0 0 P 119 113 -6.0952034226975399e-02 -5.3767144764664609e-01 -5.1488701939627495e+00 5.2353583434568334e+00 7.7801476466339214e-01 2 0 0 -38 0 P 120 311 3.6746179293296027e-01 -2.4020217513852995e-02 -2.6827005357196256e+00 2.7532095331386026e+00 4.9767000000000000e-01 2 0 0 -39 0 P 121 -321 -3.8614901233442195e-01 -3.6078449983199784e-01 -6.8319324248492574e-01 9.9482183411047931e-01 4.9359999999999998e-01 1 0 0 0 0 P 122 331 5.2421487310198918e-02 3.2602885481067279e-01 -7.5192376552758358e+00 7.5871746169358696e+00 9.5772695736152302e-01 2 0 0 -40 0 P 123 213 2.3464439923124872e-01 -1.1420455626585015e+00 -3.9319292937828649e+01 3.9347601571811730e+01 9.3146457902641389e-01 2 0 0 -41 0 P 124 223 2.7273889164698345e-01 -7.8252835042523772e-01 -1.6609907450269404e+01 1.6648815333143222e+01 7.7928773142766539e-01 2 0 0 -42 0 P 125 -211 6.2636056930748019e-01 2.5285560297120885e-01 -1.7307502956875140e+01 1.7321241350026817e+01 1.3957000000000000e-01 1 0 0 0 0 P 126 213 -2.5241324420051192e-01 -9.0711040416333966e-01 -2.8658507823637933e+01 2.8676639745385497e+01 3.9119646971480565e-01 2 0 0 -43 0 P 127 -211 1.9868831687817656e+00 -1.6665969057278662e+00 -9.8089765181064877e+01 9.8124139553088142e+01 1.3957000000000000e-01 1 0 0 0 0 P 128 323 -8.9203309590175250e-02 -1.2173863402824410e+00 -8.2769316758572302e+01 8.2784779805709888e+01 1.0344003417661283e+00 2 0 0 -44 0 P 129 -313 9.5496055848451777e-01 -2.0903658812615835e+00 -2.2205830051585161e+02 2.2207202678538380e+02 9.0259259588231544e-01 2 0 0 -45 0 P 130 -213 -3.2207796592410359e-01 -5.4450349921491747e-01 -2.0360930110685953e+02 2.0361252853150430e+02 9.5606458572897468e-01 2 0 0 -46 0 P 131 111 1.3312809685743994e+00 -2.3720408567532969e+00 -6.4643677119528036e+02 6.4644250808546224e+02 1.3497999999999999e-01 2 0 0 -47 0 P 132 113 -6.5861713715727543e-01 6.5761820541748428e-01 -1.2344112618588249e+03 1.2344118551497334e+03 7.7362269385085092e-01 2 0 0 -48 0 P 133 213 -3.4836091530827890e-01 -2.1511639535571897e-01 -4.9796688290997429e+02 4.9796759664333780e+02 7.3702189593695622e-01 2 0 0 -49 0 P 134 223 4.5559578835700880e-02 3.5697465275382151e-01 -3.2699923240237001e+02 3.2700031090646814e+02 7.5883767017765003e-01 2 0 0 -50 0 P 135 223 1.4716658877895089e-01 3.2330900207865493e-01 -5.0007595113344377e+02 5.0007669830806969e+02 7.8810022584683914e-01 2 0 0 -51 0 P 136 311 -5.6051730210311546e-01 3.0016256320946982e-01 -6.7515726785348261e+02 6.7515775066869992e+02 4.9767000000000000e-01 2 0 0 -52 0 P 137 221 -1.1216026640083331e-01 -1.5061252575408862e-01 -8.4436464690600872e+01 8.4438448203456844e+01 5.4744999999999999e-01 2 0 0 -53 0 P 138 -311 -1.4338782375457917e-01 4.4958160748970810e-01 -4.2449354277359355e+01 4.2454894154660913e+01 4.9767000000000000e-01 2 0 0 -54 0 P 139 -213 -2.6189114291672094e-01 5.8343970830869119e-01 -1.3957379312230981e+02 1.3957745189925060e+02 7.8253643640706250e-01 2 0 0 -55 0 P 140 211 -9.7817261203620987e-01 -7.1029449472000961e-02 -1.8277363122341551e+01 1.8304189392935733e+01 1.3957000000000000e-01 1 0 0 0 0 P 141 -211 -1.0131690597316283e+00 7.3007618955210041e-01 -3.5217730731904041e+01 3.5240141323155143e+01 1.3957000000000000e-01 1 0 0 0 0 P 142 111 -1.0463446190966501e+00 -9.5889607138602548e-02 -5.0623247879497647e+01 5.0634331015113965e+01 1.3497999999999999e-01 2 0 0 -56 0 P 143 213 -1.8995004518274266e+00 -1.2734360336266073e+00 -2.0318050985859983e+01 2.0460116107429741e+01 7.5060906420638007e-01 2 0 0 -57 0 P 144 2112 -7.4585702954037369e-01 -4.9571236039807298e-01 -2.3959099389433881e+01 2.3994234073844435e+01 9.3957000000000002e-01 1 0 0 0 0 P 145 -2112 -1.0828723772990390e+00 -1.4704209307448597e+00 -1.8275096642098838e+01 1.8390125050201320e+01 9.3957000000000002e-01 1 0 0 0 0 P 146 -211 -8.6308446607566502e-01 -5.5530604265918027e-01 -5.3506458532787819e+00 5.4499697640174434e+00 1.3957000000000000e-01 1 0 0 0 0 P 147 213 -5.0056567950280528e-01 -1.5947649440475253e+00 -1.3415862849010725e+01 1.3544583073216815e+01 8.2250435715944392e-01 2 0 0 -58 0 P 148 -213 1.9628034107483239e+00 -4.4076130895813226e-01 -1.5555083808336823e+01 1.5702181863901764e+01 7.4230400911168659e-01 2 0 0 -59 0 P 149 2224 1.4306669920343822e+00 -1.5412265348874898e+00 -7.0021845317050069e+00 7.4099189594074426e+00 1.2058704304356274e+00 2 0 0 -60 0 P 150 -213 3.8623021641824778e-01 -7.8310967414904076e-01 -3.4129548826058502e+00 3.6219825121143954e+00 8.4146404886904824e-01 2 0 0 -61 0 P 151 -2214 1.7891179148952892e+00 -3.3986909308890023e-01 -8.7861800686637981e+00 9.0640090866018568e+00 1.2817357797844695e+00 2 0 0 -62 0 P 152 213 2.8831419217357097e+00 -1.0720188653301861e+00 -9.1130097211396244e+00 9.6538973169174618e+00 8.3009363297595418e-01 2 0 0 -63 0 P 153 111 -4.7257449537633822e-01 1.8910356542291212e-01 -3.5558771125506752e+00 3.5946583220241646e+00 1.3497999999999999e-01 2 0 0 -64 0 P 154 -213 -1.6838531978622434e-01 5.6708222306083733e-01 -3.5897098439974058e+00 3.7077453961782081e+00 7.1513865449833391e-01 2 0 0 -65 0 P 155 331 -5.1924980932915414e-02 6.3454885829540386e-01 -3.2312435715439198e+00 3.4298505189467479e+00 9.5790975904125886e-01 2 0 0 -66 0 P 156 323 6.5550463626104405e-01 1.9737681576473394e+00 -1.1759191988825879e+01 1.1974256938465988e+01 8.8248848719503459e-01 2 0 0 -67 0 P 157 -323 -1.0928035388960020e+00 2.3522809063187600e+00 -1.2103027804419664e+01 1.2403547328052070e+01 7.9828519203147408e-01 2 0 0 -68 0 P 158 2214 4.7442049319492591e-01 1.7795114522926734e+00 -9.6801777817130148e+00 9.9165741029866048e+00 1.1139408607507826e+00 2 0 0 -69 0 P 159 -211 8.7267740955173778e-01 1.9435395186606597e+00 -6.8961422322905035e+00 7.2190836810926564e+00 1.3957000000000000e-01 1 0 0 0 0 P 160 -2112 -3.7537715607445843e-02 1.6490743728799864e+00 -6.9436972409503124e+00 7.1985122439476008e+00 9.3957000000000002e-01 1 0 0 0 0 P 161 211 2.1635374844833613e-01 5.8811217249569936e-01 -2.6228682856775904e+00 2.7002967801370574e+00 1.3957000000000000e-01 1 0 0 0 0 P 162 331 4.6165135175936228e-01 8.0496950477548268e-01 -4.5022170512291844e+00 4.6953966152592761e+00 9.5691855662314007e-01 2 0 0 -70 0 P 163 -211 5.3155148617977344e-01 1.7140547369962693e+00 -4.5646019541843357e+00 4.9066894551135736e+00 1.3957000000000000e-01 1 0 0 0 0 P 164 211 -8.5858346633558169e-01 5.0783797196081715e-01 -2.3119846895720144e+00 2.5218679513696789e+00 1.3957000000000000e-01 1 0 0 0 0 P 165 221 -1.7758581940939646e+00 1.5882883228147127e+00 -3.7606288915058119e+00 4.4853498507974257e+00 5.4744999999999999e-01 2 0 0 -71 0 P 166 3112 -1.8597771057377763e+00 2.2254628974818225e-01 -4.1043049677730297e+00 4.6677060271822430e+00 1.1974400000000001e+00 2 0 0 -72 0 P 167 -3312 -4.3818303533481471e+00 1.1378607736221709e+00 -7.9973180568144917e+00 9.2842928743939535e+00 1.3212999999999999e+00 2 0 0 -73 0 P 168 -313 -9.0010002352158025e-01 4.4885548588943713e-01 -1.2909073706431586e+00 1.8807072709097929e+00 9.2680456392679422e-01 2 0 0 -74 0 P 169 -211 -1.0826526514500026e+00 1.4107599128427128e-01 -1.5297775922689498e+00 1.8846056525747625e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 223 -2.3044224620878828e+00 -3.1057790210614977e-01 -4.1053378406000922e+00 4.7883446797411056e+00 8.1708290245854731e-01 2 0 0 -75 0 P 171 2212 -2.0046846682578964e-01 -7.6115192871917736e-01 -4.4256149728439276e-01 1.3022100969363621e+00 9.3827000000000005e-01 1 0 0 0 0 P 172 -211 4.8007938828066077e-01 -3.0891344396703313e-01 -6.5049376394626923e-01 8.7665595118523620e-01 1.3957000000000000e-01 1 0 0 0 0 P 173 -1114 -5.8135948315973585e-01 -2.1884888952798991e+00 2.1734794554966691e-01 2.5742549009826745e+00 1.2050251749965515e+00 2 0 0 -76 0 P 174 111 -5.0738109316892710e-02 -1.4163307501995206e-01 -1.6024753912815498e-01 2.5794022151128326e-01 1.3497999999999999e-01 2 0 0 -77 0 P 175 2214 -4.5290011619618908e-01 -1.2348405495903256e+00 -4.1903861537647130e-01 1.8776464906081711e+00 1.2727974247119969e+00 2 0 0 -78 0 P 176 113 3.2070554427873721e-01 -2.1937044585421224e+00 -1.8731977583035136e-01 2.3578795771070746e+00 7.8058702536155133e-01 2 0 0 -79 0 P 177 -2224 1.3860467089410156e+00 -1.5020688356488454e+00 9.1809927507189604e-01 2.5290426188303150e+00 1.1729509889926595e+00 2 0 0 -80 0 P 178 211 1.3747172627467696e+00 -1.4127515686753467e-01 -1.8908465864044499e-01 1.4017984931776359e+00 1.3957000000000000e-01 1 0 0 0 0 P 179 -213 6.1512063460228972e-01 -9.3660578141911122e-01 2.6765016416115472e-01 1.3777994832365679e+00 7.5570564423605635e-01 2 0 0 -81 0 P 180 111 2.8605658024868996e-01 -4.4552991963057419e-02 9.2077835050444168e-01 9.7461054137235559e-01 1.3497999999999999e-01 2 0 0 -82 0 P 181 3222 1.4266227788265309e+00 -8.2880957273415032e-02 7.3659278246330862e-01 1.9998229247166683e+00 1.1893700000000000e+00 2 0 0 -83 0 P 182 -3222 1.5302096587519365e+00 4.8454100862938561e-02 9.6869970584109022e-01 2.1672262264527826e+00 1.1893700000000000e+00 2 0 0 -84 0 P 183 321 8.8945445849861904e-01 -6.0785257607678200e-01 7.9886304659147918e+00 8.0760430700268202e+00 4.9359999999999998e-01 1 0 0 0 0 P 184 221 -2.0254319858298336e-01 -1.9539957461620223e+00 2.0355151151871706e+01 2.0457052647958733e+01 5.4744999999999999e-01 2 0 0 -85 0 P 185 331 -1.8618128662718023e-01 -1.5946341091833058e+00 1.8361350734196233e+01 1.8456279622517677e+01 9.5788063281997493e-01 2 0 0 -86 0 P 186 3122 4.8303168328369328e-01 -6.7485046588109043e-01 1.7469857773821314e+01 1.7525108138276945e+01 1.1156800000000000e+00 2 0 0 -87 0 P 187 -2212 1.0014100854244747e+00 -3.6685065730848634e+00 4.6683497189960931e+01 4.6847518857608101e+01 9.3827000000000005e-01 1 0 0 0 0 P 188 213 1.0797286693256809e+00 -1.4162827473341051e+00 1.2591235861254901e+02 1.2592707796436612e+02 7.3160265762229482e-01 2 0 0 -88 0 P 189 313 8.7077161109654488e-01 1.7848560934292135e-01 8.1383423272542146e+01 8.1392595862139260e+01 8.3843742064537152e-01 2 0 0 -89 0 P 190 -313 1.3303597464183996e+00 -3.4737354057927844e-01 9.4190026232774741e+01 9.4203695673532778e+01 8.2747289333119833e-01 2 0 0 -90 0 P 191 -213 1.1705367675514826e+00 -8.8798902170614730e-02 2.8911658986568705e+02 2.8912082987632971e+02 1.0361907375138262e+00 2 0 0 -91 0 P 192 213 7.7357495286599320e-01 -5.8137019645654076e-01 3.1919662694276064e+02 3.1919890090902277e+02 7.1783032761068521e-01 2 0 0 -92 0 P 193 -213 1.0375182692639047e+00 1.7325827884442113e-01 5.5818432084503991e+02 5.5818589432223371e+02 8.0630049186008690e-01 2 0 0 -93 0 P 194 211 5.7638756081754694e-01 -3.3536536091102920e-01 9.8106308750022279e+01 9.8108674381448878e+01 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 -8.3461679064255478e-01 -1.2195931268029515e-01 2.2023634544769928e+02 2.2023916526518349e+02 7.2842383630927321e-01 2 0 0 -94 0 P 196 213 -8.5642498377605580e-01 8.3565205873696202e-01 3.5563672298589717e+02 3.5563944311752539e+02 7.0921553825991379e-01 2 0 0 -95 0 P 197 -213 -1.7761073502575906e+00 1.7120131637180783e-01 4.3203119284930523e+02 4.3203553442937550e+02 7.5335759910696620e-01 2 0 0 -96 0 P 198 331 -2.1470134951164146e-01 9.2222678593429419e-01 3.8377542200421445e+01 3.8401168548855892e+01 9.5781086772566182e-01 2 0 0 -97 0 P 199 113 5.5020055244959093e-02 3.7825905014986622e-01 2.6002056285544917e+01 2.6030118675905499e+01 1.1463158768763162e+00 2 0 0 -98 0 P 200 211 3.8269246795069739e-02 1.6695163789442919e+00 1.9045830967343687e+01 1.9119411771713622e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 1.6873474726983323e-01 1.0487813285591059e-01 2.4523268192021721e+00 2.4640611328182986e+00 1.3497999999999999e-01 2 0 0 -99 0 P 202 331 -3.4178670231258296e-01 1.4297004491856818e-01 1.9048285261598988e+01 1.9075947768566124e+01 9.5778561181078914e-01 2 0 0 -100 0 P 203 311 -9.9274062811961952e-02 1.0996739852194774e-01 4.3165880994122467e+00 4.3477070298229989e+00 4.9767000000000000e-01 2 0 0 -101 0 P 204 -313 -8.9449687669170705e-02 -1.0774354666329175e-01 1.0695252740834725e+01 1.0749684599575762e+01 1.0712972890621342e+00 2 0 0 -102 0 P 205 -211 2.5799569679297252e-01 9.2039028448134641e-01 7.8563434464460355e+00 7.9155095975399412e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 213 -6.4534493450671726e-01 1.4222330946095745e+00 2.2812468629635397e+01 2.2880993045701192e+01 8.3180569812357530e-01 2 0 0 -103 0 P 207 311 -1.0918951978229379e+00 3.7619630573624335e-01 3.7107063708500858e+00 3.9180066338695503e+00 4.9767000000000000e-01 2 0 0 -104 0 P 208 3122 -1.0241322270982653e+00 3.1986551163378008e-01 3.2344688851900569e+00 3.5857623451334022e+00 1.1156800000000000e+00 2 0 0 -105 0 P 209 113 -1.2817657335710375e+00 -2.4004342669783074e-01 5.5295637841676051e+00 5.7184541446385397e+00 6.5122800822598892e-01 2 0 0 -106 0 P 210 -2212 -1.0251466567596028e+00 1.6270832085140707e-01 4.1574681809729332e+00 4.3866036901277132e+00 9.3827000000000005e-01 1 0 0 0 0 P 211 2224 -2.1971677963665681e-01 -1.2203336237219417e-01 4.1242580332756710e+01 4.1258731339316775e+01 1.1266373068752620e+00 2 0 0 -107 0 P 212 -213 1.4497534720377803e-01 -2.2167370899865471e-01 1.7675415240069732e+01 1.7695069440593546e+01 7.9058302156076188e-01 2 0 0 -108 0 P 213 -2214 -9.3141054038557210e-03 3.6296280767408867e-01 2.0314932177394038e+01 2.0360660637295506e+01 1.3146115253871735e+00 2 0 0 -109 0 P 214 221 -4.0792043105035181e-01 -2.1789049905235022e-01 4.5556101277294147e+01 4.5561737680176641e+01 5.4744999999999999e-01 2 0 0 -110 0 P 215 111 3.2284731008925122e-01 1.4637345740541047e-01 2.6996151074509960e+01 2.6998815677966881e+01 1.3497999999999999e-01 2 0 0 -111 0 P 216 213 -8.0390703871850144e-01 7.5603192909067085e-02 9.5370399918980880e+01 9.5380929531646686e+01 1.1647125159977070e+00 2 0 0 -112 0 P 217 113 5.5529038391461297e-02 8.0253044572439116e-03 2.6506735712635191e+01 2.6512550765360704e+01 5.5241475968899711e-01 2 0 0 -113 0 P 218 2112 -1.7844981654780734e-01 -5.1602984459221424e-01 6.7782005228302717e+02 6.7782092340078145e+02 9.3957000000000002e-01 1 0 0 0 0 P 219 213 -9.5539784443991682e-01 -3.6386160119586536e-01 6.5914727326500849e+02 6.5914890194170437e+02 1.0497132717001263e+00 2 0 0 -114 0 V -13 0 0 0 0 0 0 1 0 P 220 92 1.1957704543821762e+01 1.7193969436613359e+00 2.0177018805357807e+03 2.0179523066992801e+03 2.9405618026367630e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 9 0 P 221 311 2.5537319823325155e-01 6.6027509634505122e-01 1.7808119033520850e+01 1.7829132273169574e+01 4.9767000000000000e-01 2 0 0 -115 0 P 222 211 1.4812755875901717e+00 2.2379246750201958e+00 3.0271092989817841e+01 3.0390147001956962e+01 1.3957000000000000e-01 1 0 0 0 0 P 223 111 -1.9015765024531625e-01 3.9275396019233605e-02 1.1470355096710350e+00 1.1711586355082639e+00 1.3497999999999999e-01 2 0 0 -116 0 P 224 -213 7.3837890782940341e-01 8.5267512065574658e-01 3.9246901587967983e+01 3.9280005467216561e+01 1.1520794139323005e+00 2 0 0 -117 0 P 225 113 -2.5076402953093196e-01 -6.5573874335060789e-02 3.6671222114665028e+01 3.6679687228140850e+01 7.4413791708230759e-01 2 0 0 -118 0 P 226 -313 1.8325497324536355e-01 8.9936032347877365e-02 3.0065929547215340e+01 3.0079740053856924e+01 8.8824056108379357e-01 2 0 0 -119 0 P 227 311 1.3538641719262303e+00 3.3172025620912138e-01 2.1127113868203966e+02 2.1127632309835133e+02 4.9767000000000000e-01 2 0 0 -120 0 P 228 331 1.0204368400660317e+00 -8.2344078966119705e-01 3.1363036716958845e+02 3.1363457094457470e+02 9.5788025241162722e-01 2 0 0 -121 0 P 229 223 7.3660425447075584e+00 -1.6033949689396323e+00 1.3375900739012948e+03 1.3376115419965051e+03 7.7590257129641216e-01 2 0 0 -122 0 V -15 0 0 0 0 0 0 1 0 P 230 92 -1.2151015576479914e+01 -3.9273484360929416e+00 1.0260890724182829e+02 1.3108208149213783e+02 8.0565830211517110e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 16 0 P 231 331 -2.1661441242891313e-01 2.1432385925355835e+01 2.1936844307150778e+01 3.0684471121938547e+01 9.5788392816893131e-01 2 0 0 -123 0 P 232 113 1.1080636753361452e-01 5.3950704699779051e+00 4.2784998650593549e+00 6.9365231991440064e+00 8.3110141970548623e-01 2 0 0 -124 0 P 233 223 -3.7498078740825252e-01 2.8340860051326424e+00 3.8820019508322812e+00 4.8839298945981025e+00 7.8113890804989561e-01 2 0 0 -125 0 P 234 -213 2.8712007775743792e-01 1.8749606694900127e+00 2.2745337581257878e+00 3.0774100251687369e+00 8.3608205038103245e-01 2 0 0 -126 0 P 235 331 2.1199247331322110e-01 2.5989489296866912e+00 2.1095813302725657e+00 3.4881941035800428e+00 9.5796052494607287e-01 2 0 0 -127 0 P 236 211 -8.5614228156777661e-02 3.0325114015323645e-01 7.5247726138538940e-01 8.2764295675682176e-01 1.3957000000000000e-01 1 0 0 0 0 P 237 111 -4.7853078994523185e-01 8.9528485239080891e-01 3.0085242660006817e-01 1.0673605139957116e+00 1.3497999999999999e-01 2 0 0 -128 0 P 238 -2214 -1.2108816197218748e+00 -9.7906104708541097e-01 2.1396879956133517e+00 2.8773277905089527e+00 1.1295820751778052e+00 2 0 0 -129 0 P 239 211 -2.3953737322515668e-03 -2.3684829068811666e-01 -1.8373011693793939e-01 3.3066507433841369e-01 1.3957000000000000e-01 1 0 0 0 0 P 240 1114 -2.5626474579975772e-01 -7.7394585199419630e-01 1.6532653470944942e+00 2.2830931043841658e+00 1.3470575390918575e+00 2 0 0 -130 0 P 241 223 -1.0544569843066613e+00 -2.5739829651273296e+00 4.7412844048572946e+00 5.5520501411455845e+00 7.7988148172202210e-01 2 0 0 -131 0 P 242 111 1.3865373207460127e-01 -1.9214763590262824e-02 8.3380953511531497e-01 8.5618456293445433e-01 1.3497999999999999e-01 2 0 0 -132 0 P 243 213 -1.2263181398235505e+00 -4.9787172963825421e+00 6.9355429225631813e+00 8.6524954269163619e+00 6.8734226171051671e-01 2 0 0 -133 0 P 244 223 -1.9402272140343650e+00 -6.5546018119516045e+00 1.2254055819692148e+01 1.4054355324762497e+01 7.9732866951474846e-01 2 0 0 -134 0 P 245 223 -4.7517497316551145e+00 -1.7380551353883646e+01 2.8992328875449449e+01 3.4144431256265662e+01 7.9016537152701583e-01 2 0 0 -135 0 P 246 -211 -1.3015542001460372e+00 -5.7644130475769666e+00 9.7078715589547713e+00 1.1365946995699757e+01 1.3957000000000000e-01 1 0 0 0 0 V -17 0 0 0 0 0 3 1 0 P 79 2 -8.4324573999411645e-01 1.9627380967765178e+00 6.2602533001917323e+01 6.2638969838836779e+01 0 2 0 0 -17 0 P 80 21 1.0833692596781730e+00 5.3318497612548221e-01 1.1132411560678396e+01 1.1197703439898181e+01 0 2 0 0 -17 0 P 81 -2 8.4324573999411645e-01 -1.9627380967765178e+00 3.6163697456086759e+00 4.2001826569221832e+00 0 2 0 0 -17 0 P 247 92 1.0833692596781730e+00 5.3318497612548210e-01 7.7351314308204394e+01 7.8036855935657144e+01 1.0250223604600061e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 6 0 P 248 111 4.3624680564785007e-01 -7.3638879477566394e-02 5.3818342465867950e+00 5.4016750566970542e+00 1.3497999999999999e-01 2 0 0 -136 0 P 249 211 3.0485893980292522e-01 1.6278562262203172e-01 3.3327777848076643e+00 3.3535541862205966e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -1.3246102609123762e+00 1.5040151229464573e+00 4.0024487477113290e+01 4.0074876561554930e+01 1.3957000000000000e-01 1 0 0 0 0 P 251 111 4.5025363368995086e-01 9.9670398832432422e-02 3.9198982055853913e+00 3.9492384158981833e+00 1.3497999999999999e-01 2 0 0 -137 0 P 252 221 3.2093255105937002e-01 9.6566133278885891e-01 1.9365268105104839e+01 1.9399711590564014e+01 5.4744999999999999e-01 2 0 0 -138 0 P 253 223 8.9568759039045309e-01 -2.1253086215867318e+00 5.3270484890064163e+00 5.8578001247223668e+00 7.8561039988119286e-01 2 0 0 -139 0 V -19 0 0 0 0 0 2 1 0 P 82 2 1.4420092463350116e+00 3.6296416791909836e-01 2.4521021494738184e+02 2.4521472355508124e+02 0 2 0 0 -19 0 P 83 -2 -1.4420092463350116e+00 -3.6296416791909836e-01 1.3363256172319797e+01 1.3445733493593870e+01 0 2 0 0 -19 0 P 254 92 0 0 2.5857347111970165e+02 2.5866045704867508e+02 6.7076131178165364e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 4 0 P 255 111 8.3007378022486167e-01 4.9081749941388858e-01 1.9975686750003302e+02 1.9975924073074691e+02 1.3497999999999999e-01 2 0 0 -140 0 P 256 211 5.5305613121952613e-01 2.7411866873644480e-01 2.6885419312028091e+01 2.6892866405374164e+01 1.3957000000000000e-01 1 0 0 0 0 P 257 -211 -1.5616574375025336e-01 -5.0542076089362398e-01 1.8403904248775397e+01 1.8412034359843467e+01 1.3957000000000000e-01 1 0 0 0 0 P 258 221 -1.2269641676941345e+00 -2.5951540725670946e-01 1.3527280058865136e+01 1.3596315552710569e+01 5.4744999999999999e-01 2 0 0 -141 0 V -21 0 0 0 0 0 10 1 0 P 84 21 2.7193357777398601e+00 -3.3857391115797979e+00 2.8893612135273785e+00 5.2159778206980150e+00 0 2 0 0 -21 0 P 85 21 -2.7193357777398601e+00 3.3857391115797979e+00 -4.1267212878039645e+00 5.9906464585211188e+00 0 2 0 0 -21 0 P 86 21 -9.8261185411883345e-01 2.0825416351425541e+00 -2.3936543596969906e+00 3.3214585518493958e+00 0 2 0 0 -21 0 P 87 21 2.4989496484073193e-01 1.9025850351850060e+00 -1.4638027213364813e+00 2.4135027898377848e+00 0 2 0 0 -21 0 P 88 21 -6.2715736229225183e-01 2.9531418460163881e+00 -1.3932659886846982e-01 3.0222152505939599e+00 0 2 0 0 -21 0 P 89 21 -1.5635073397214855e-01 1.9697145399041209e+00 1.3389099345963468e-01 1.9804412939678218e+00 0 2 0 0 -21 0 P 90 21 -3.9633320599319233e-01 3.1758376253505700e+00 1.1042925620256561e-04 3.2004725658814528e+00 0 2 0 0 -21 0 P 91 21 -3.2838651535919955e-01 9.9241541985819792e-01 5.2924576057433392e-01 1.1716770647785106e+00 0 2 0 0 -21 0 P 92 21 2.5876298311157203e-01 8.7207493293450289e-01 9.1579115394904687e-01 1.2907929375902412e+00 0 2 0 0 -21 0 P 93 21 1.6765477152232619e-01 1.1708220761753421e+00 9.9226114419510292e-01 1.5438635414935857e+00 0 2 0 0 -21 0 P 259 92 -1.8145269522609957e+00 1.5119133110566681e+01 -2.6628442727442074e+00 2.9151048275211881e+01 2.4714614742037387e+01 2 0 0 -22 0 V -22 0 0 0 0 0 0 14 0 P 260 223 6.0454242065852315e-01 -1.3615837930901218e+00 1.3668220974879759e+00 2.1631755350153963e+00 7.6924884473515198e-01 2 0 0 -142 0 P 261 -321 9.7370477254441812e-01 7.4403110619328128e-01 2.3779085082960516e-01 1.3423370365885172e+00 4.9359999999999998e-01 1 0 0 0 0 P 262 311 6.0518885548957635e-01 -6.3304471016782460e-01 8.1390322311792529e-01 1.2950339923654497e+00 4.9767000000000000e-01 2 0 0 -143 0 P 263 -313 -3.2203782595999025e-01 -1.1798811108956095e-01 -7.4171145223340817e-01 1.1866754504728008e+00 8.6048427683085160e-01 2 0 0 -144 0 P 264 -3114 -6.0497541524763743e-01 1.2341184637931155e+00 -9.0925726634415638e-01 2.1560939906106045e+00 1.3903053205027960e+00 2 0 0 -145 0 P 265 223 -5.8766901209818823e-01 5.1505067178682740e-01 -6.7403462234440459e-01 1.2952324587487953e+00 7.8273391889515220e-01 2 0 0 -146 0 P 266 1114 -3.2191667324200768e-01 3.0978350683549033e-01 -8.2638884976769256e-01 1.5922434290760696e+00 1.2855833076067280e+00 2 0 0 -147 0 P 267 213 -1.3910993570890726e+00 3.5633897498391294e+00 -3.6050996328931726e+00 5.3139882768631770e+00 7.8027181994519568e-01 2 0 0 -148 0 P 268 331 -6.4378160159010900e-01 4.2680060282802792e+00 -1.2417944450347287e-01 4.4230388683882635e+00 9.5787373325162639e-01 2 0 0 -149 0 P 269 111 -9.5184536068219128e-01 4.5901191248984654e+00 -2.2058116880879203e-01 4.6948992346848000e+00 1.3497999999999999e-01 2 0 0 -150 0 P 270 221 4.1303600663027096e-01 1.1686821712710380e+00 8.8517249233070361e-01 1.6185328553658769e+00 5.4744999999999999e-01 2 0 0 -151 0 P 271 111 1.1499279930592822e-01 2.0724272234828509e-01 5.9405788030687690e-01 6.5367978048371789e-01 1.3497999999999999e-01 2 0 0 -152 0 P 272 -213 3.1777257482637294e-01 2.7344068946374689e-01 2.9383346824026496e-01 9.5905751947037265e-01 8.1098951819882936e-01 2 0 0 -153 0 P 273 211 -2.0439135806889167e-02 3.5788549020453153e-01 2.4682815183754150e-01 4.5705984707804592e-01 1.3957000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 5 1 0 P 94 21 1.5586009564284629e+00 -3.1920701806232579e+00 6.2472368828526053e+00 7.1865511651888943e+00 0 2 0 0 -23 0 P 95 21 1.6653590948194417e+00 -2.3583881166804508e+00 7.4996682729104132e+00 8.0361955941413257e+00 0 2 0 0 -23 0 P 96 21 1.7791395751154329e+00 4.2848051335507967e-02 6.2665448119098608e+00 6.5143501182327901e+00 0 2 0 0 -23 0 P 97 21 -1.5586009564284629e+00 3.1920701806232579e+00 1.0809639890278826e+01 1.1378350650991168e+01 0 2 0 0 -23 0 P 98 21 -3.0133330384375911e-01 -1.0070249950011656e+00 1.3686886445117024e+00 1.7257490275754972e+00 0 2 0 0 -23 0 P 274 92 3.1431653660911150e+00 -3.3225650603461085e+00 3.2191778502463407e+01 3.4841196556129674e+01 1.2517166101493167e+01 2 0 0 -24 0 V -24 0 0 0 0 0 0 9 0 P 275 111 -6.5978750538929676e-01 8.9767813571296939e-01 6.1436829084922193e+00 6.2453346482077610e+00 1.3497999999999999e-01 2 0 0 -154 0 P 276 -211 -4.5067864240715245e-02 -4.6391216769080024e-01 1.7506671928278963e-01 5.1708195947957392e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 2.0409615525985636e-01 1.0085444299443471e+00 2.5279588415324263e+00 2.7326932891646640e+00 1.3497999999999999e-01 2 0 0 -155 0 P 278 213 -1.1960389397961273e-01 -3.0533450635870119e-01 3.0093163535859739e+00 3.1974179134897893e+00 1.0295446300753639e+00 2 0 0 -156 0 P 279 -2212 1.1129551153172057e+00 -4.2087837765564451e-01 2.4769903058528486e+00 2.9037285110143771e+00 9.3827000000000005e-01 1 0 0 0 0 P 280 2212 -3.8919229338247308e-01 -1.1952978218159163e+00 6.8299161279228144e+00 7.0077323316053075e+00 9.3827000000000005e-01 1 0 0 0 0 P 281 -213 1.3617222408285785e+00 -1.5874173707003776e+00 3.4833969939633440e+00 4.2158828570928630e+00 1.1249143421648240e+00 2 0 0 -157 0 P 282 213 5.2235846987320900e-01 -5.3931756701986600e-01 3.8071264085033634e+00 4.0058633495563454e+00 9.9448875099246659e-01 2 0 0 -158 0 P 283 221 1.1556849418043631e+00 -7.1662981476211840e-01 3.7383238433276196e+00 4.0154616965189849e+00 5.4744999999999999e-01 2 0 0 -159 0 V -25 0 0 0 0 0 3 1 0 P 99 21 -2.7738329983648019e-01 -1.3730365764446399e+00 -4.6506025849229609e+00 4.8569821224887288e+00 0 2 0 0 -25 0 P 100 21 4.1256856739402026e-01 4.7149381198764068e-01 -3.7990051718642731e-01 7.3269614473034173e-01 0 2 0 0 -25 0 P 101 21 2.7738329983648019e-01 1.3730365764446399e+00 -4.9347432389952645e-01 1.4851558314301860e+00 0 2 0 0 -25 0 P 284 92 4.1256856739402026e-01 4.7149381198764062e-01 -5.5239774260089147e+00 7.0748340986492559e+00 4.3756635705696070e+00 2 0 0 -26 0 V -26 0 0 0 0 0 0 5 0 P 285 213 1.4789314162672629e-01 -1.7440933605887549e-01 -9.5801264672438669e-01 1.3431037493153495e+00 9.1315302786354691e-01 2 0 0 -160 0 P 286 111 7.3948956827359796e-04 5.8155153080870625e-01 -7.5854110065210734e-01 9.6530147187771431e-01 1.3497999999999999e-01 2 0 0 -161 0 P 287 -211 8.9105455555355175e-03 -6.6642909090963731e-01 -9.1954249780947217e-01 1.1442225837704945e+00 1.3957000000000000e-01 1 0 0 0 0 P 288 221 7.2691333474809439e-01 7.4983772846218288e-01 -1.0919812364613697e+00 1.6071042712106838e+00 5.4744999999999999e-01 2 0 0 -162 0 P 289 223 -4.7188794410460938e-01 -1.9057020314735669e-02 -1.7958999443615795e+00 2.0151020224750154e+00 7.8252038248880296e-01 2 0 0 -163 0 V -27 0 0 0 0 0 0 2 0 P 290 411 -8.2544549386647925e-01 -1.3521446743263796e+00 -2.5448966625224405e+00 3.5327661961374579e+00 1.8693000000000000e+00 2 0 0 -164 0 P 291 111 -3.2688366855701284e-02 -7.2993090493634338e-02 -1.2834296951829149e-01 2.0270184708649772e-01 1.3497999999999999e-01 2 0 0 -165 0 V -28 0 0 0 0 0 0 1 0 P 292 130 -1.1783978863504199e+00 -1.1375162151770275e+00 -2.2693802365904192e+00 2.8425915650112299e+00 4.9767000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 293 -321 -3.2383158999036415e-01 -1.0752706249006394e-01 -2.5532403592883592e+00 2.6228050366244111e+00 4.9359999999999998e-01 1 0 0 0 0 P 294 111 1.8764361177615657e-01 -3.1138687747679805e-01 -1.8880003960656122e+00 1.9274171858860913e+00 1.3497999999999999e-01 2 0 0 -166 0 V -30 0 0 0 0 0 0 2 0 P 295 211 -5.2991665354533257e-02 4.7544553644498715e-02 -7.7029367457321509e+00 7.7045300242668224e+00 1.3957000000000000e-01 1 0 0 0 0 P 296 -211 -6.4105705080091266e-02 5.6362063452432332e-01 -1.4732124142028885e+01 1.4743701681807583e+01 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 3 0 P 297 -211 -1.7801272526364409e-01 -2.4470619550498660e-01 -1.6192092506636342e+01 1.6195521269191772e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 211 1.8729195346385832e-01 -8.1034966156566302e-02 -2.8134616625439634e+01 2.8135702894844062e+01 1.3957000000000000e-01 1 0 0 0 0 P 299 111 -4.1864199034508442e-02 -5.3464217508619416e-01 -4.0224942068687078e+01 4.0228743193097309e+01 1.3497999999999999e-01 2 0 0 -167 0 V -32 0 0 0 0 0 0 2 0 P 300 211 3.5718234376823775e-02 1.5848290928941047e-01 -8.1817104476879877e+01 8.1817384811483564e+01 1.3957000000000000e-01 1 0 0 0 0 P 301 111 -1.7923741073133943e-02 -4.1563486595425955e-02 -4.9174173082294272e+00 4.9194777535411589e+00 1.3497999999999999e-01 2 0 0 -168 0 V -33 0 0 0 0 0 0 2 0 P 302 2212 3.2883170762009856e-01 -3.6131167468937953e-01 -4.3745177319317406e+02 4.3745305222030777e+02 9.3827000000000005e-01 1 0 0 0 0 P 303 111 1.6613422489504576e-01 1.2852857326112438e-01 -1.6320872737512647e+02 1.6320891835676011e+02 1.3497999999999999e-01 2 0 0 -169 0 V -34 0 2.1132663706558778e-05 -2.9353004566999124e-04 -2.1008139679097859e-01 2.1008160544288085e-01 0 2 0 P 304 22 -1.3472835119307183e-02 -7.2086586142135989e-01 -5.2065240586116533e+02 5.2065290507028487e+02 0 1 0 0 0 0 P 305 22 1.0103125911393154e-01 -4.9530965486994055e-01 -3.4977246196552977e+02 3.4977282725849000e+02 0 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 306 22 1.3002726824975480e-01 2.8235244303021529e+00 -1.0301986686161710e+01 1.0682702232153375e+01 0 1 0 0 0 0 P 307 -211 1.8493464452252353e-01 1.7374404635579450e+00 -6.3544279220330928e+00 6.5917474305655039e+00 1.3957000000000000e-01 1 0 0 0 0 P 308 211 -9.2187630282455121e-02 1.3914328996379068e+00 -5.3141565523845937e+00 5.4958460423781847e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 309 -211 -5.5563253527612100e-01 2.6805127638777719e+00 -8.0588440594588757e+00 8.5122455058077726e+00 1.3957000000000000e-01 1 0 0 0 0 P 310 211 1.0935673057950114e-01 1.0604795994722334e+00 -2.2708616170985798e+00 2.5125421676722968e+00 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 1 0 P 311 310 6.2047496524002466e-01 6.6646193802313891e-01 -9.4351827335663945e+00 9.4920761344403779e+00 4.9767000000000000e-01 2 0 0 -170 0 V -38 0 0 0 0 0 0 2 0 P 312 211 1.8498342922252223e-01 -2.3061228456117189e-01 -3.9940779246711875e+00 4.0074354827149925e+00 1.3957000000000000e-01 1 0 0 0 0 P 313 -211 -2.4593546344949763e-01 -3.0705916308547421e-01 -1.1547922692915620e+00 1.2279228607418409e+00 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 1 0 P 314 130 3.6746179293296027e-01 -2.4020217513852995e-02 -2.6827005357196256e+00 2.7532095331386031e+00 4.9767000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 315 22 7.7446257964652520e-03 -1.2105454339837607e-01 -7.0631067121713442e-01 7.1665120245577996e-01 0 1 0 0 0 0 P 316 113 4.4676861513733665e-02 4.4708339820904885e-01 -6.8129269840587012e+00 6.8705234144800906e+00 7.6566200891457736e-01 2 0 0 -171 0 V -41 0 0 0 0 0 0 2 0 P 317 211 5.2910893968474493e-01 -5.8315919646256431e-01 -2.6475134002708764e+01 2.6487208821707863e+01 1.3957000000000000e-01 1 0 0 0 0 P 318 111 -2.9446454045349613e-01 -5.5888636619593723e-01 -1.2844158935119884e+01 1.2860392750103868e+01 1.3497999999999999e-01 2 0 0 -172 0 V -42 0 0 0 0 0 0 3 0 P 319 -211 -9.6753881344850343e-02 -2.2752411552555504e-01 -2.4187174215148475e+00 2.4353238566442066e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 211 4.3362374625841374e-02 -2.8609370125695727e-01 -7.9843591092818498e+00 7.9908197371924334e+00 1.3957000000000000e-01 1 0 0 0 0 P 321 111 3.2613039836599245e-01 -2.6891053364272544e-01 -6.2068309194727052e+00 6.2226717393065787e+00 1.3497999999999999e-01 2 0 0 -173 0 V -43 0 0 0 0 0 0 2 0 P 322 211 -2.8221618531269343e-01 -6.4598663748867524e-01 -2.1600315638508523e+01 2.1612266428562329e+01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 2.9802941112181517e-02 -2.6112376667466447e-01 -7.0581921851294114e+00 7.0643733168231702e+00 1.3497999999999999e-01 2 0 0 -174 0 V -44 0 0 0 0 0 0 2 0 P 324 311 -1.0168911161369021e-01 -1.2361350857979305e+00 -8.0483643500523584e+01 8.0494738444037651e+01 4.9767000000000000e-01 2 0 0 -175 0 P 325 211 1.2485802023514962e-02 1.8748745515489600e-02 -2.2856732580487034e+00 2.2900413616722188e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 326 -321 1.8862971419236257e-01 -9.3012417268485126e-01 -9.2042198442282924e+01 9.2048414691369231e+01 4.9359999999999998e-01 1 0 0 0 0 P 327 211 7.6633084429215514e-01 -1.1602417085767325e+00 -1.3001610207356870e+02 1.3002361209401457e+02 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 328 -211 -4.8448805913385579e-01 1.8645773152082320e-02 -6.6796734259536052e+01 6.6798639685762140e+01 1.3957000000000000e-01 1 0 0 0 0 P 329 111 1.6241009320975217e-01 -5.6314927236699985e-01 -1.3681256684732350e+02 1.3681388884574221e+02 1.3497999999999999e-01 2 0 0 -176 0 V -47 0 2.5812765464589319e-04 -4.5992495763958293e-04 -1.2534033878977993e-01 1.2534145113949616e-01 0 2 0 P 330 22 3.9256423558240730e-02 -8.4859683677451780e-02 -2.8506267436766674e+01 2.8506420775137101e+01 0 1 0 0 0 0 P 331 22 1.2920245450161587e+00 -2.2871811730758451e+00 -6.1793050375851374e+02 6.1793608731032509e+02 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 332 211 -1.4761293820437235e-01 6.2698664627607048e-01 -5.6891787530303054e+02 5.6891825706417058e+02 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -5.1100419895290317e-01 3.0631559141413835e-02 -6.6549338655579447e+02 6.6549359808556289e+02 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 334 211 -3.3880422871367977e-01 -3.2101981924625894e-01 -4.6580238380392484e+02 4.6580263854902489e+02 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -9.5566865945991564e-03 1.0590342389053997e-01 -3.2164499106049483e+01 3.2164958094312951e+01 1.3497999999999999e-01 2 0 0 -177 0 V -50 0 0 0 0 0 0 3 0 P 336 -211 -4.9045661016750154e-02 -8.5843302696881563e-02 -4.0859452556766001e+01 4.0859810542548949e+01 1.3957000000000000e-01 1 0 0 0 0 P 337 211 -4.7670034270352733e-02 4.1938779127261355e-01 -1.9989792732745582e+02 1.9989842167498307e+02 1.3957000000000000e-01 1 0 0 0 0 P 338 111 1.4227527412280377e-01 2.3430164178089560e-02 -8.6241852518148207e+01 8.6242078688936104e+01 1.3497999999999999e-01 2 0 0 -178 0 V -51 0 0 0 0 0 0 3 0 P 339 -211 1.0861156555244413e-01 2.8700149584719267e-02 -3.8054674997603975e+01 3.8055096756268050e+01 1.3957000000000000e-01 1 0 0 0 0 P 340 211 9.0035899797990787e-02 2.1536272908597737e-01 -4.0397588484533549e+02 4.0397597639454375e+02 1.3957000000000000e-01 1 0 0 0 0 P 341 111 -5.1480876571484022e-02 7.9246123407958322e-02 -5.8045391290504377e+01 5.8045625157257881e+01 1.3497999999999999e-01 2 0 0 -179 0 V -52 0 0 0 0 0 0 1 0 P 342 130 -5.6051730210311546e-01 3.0016256320946982e-01 -6.7515726785348261e+02 6.7515775066870003e+02 4.9767000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 343 22 -9.0112616169775145e-02 -3.1761507545281148e-01 -3.1796253875351578e+01 3.1797967861571887e+01 0 1 0 0 0 0 P 344 22 -2.2047650231058154e-02 1.6700254969872289e-01 -5.2640210815249290e+01 5.2640480341884960e+01 0 1 0 0 0 0 V -54 0 0 0 0 0 0 1 0 P 345 130 -1.4338782375457917e-01 4.4958160748970810e-01 -4.2449354277359355e+01 4.2454894154660906e+01 4.9767000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 346 -211 -1.7482404945119878e-01 4.7667719355398597e-01 -3.9925415267765189e+01 3.9928887396013408e+01 1.3957000000000000e-01 1 0 0 0 0 P 347 111 -8.7067093465522161e-02 1.0676251475470522e-01 -9.9648377854544634e+01 9.9648564503237182e+01 1.3497999999999999e-01 2 0 0 -180 0 V -56 0 -1.7167121449209965e-04 -1.5732374414909349e-05 -8.3056330451728808e-03 8.3074514282532822e-03 0 2 0 P 348 22 -7.5784368469087737e-01 -1.2978866049381499e-01 -3.6770166673079409e+01 3.6778204541723589e+01 0 1 0 0 0 0 P 349 22 -2.8850093440577274e-01 3.3899053355212448e-02 -1.3853081206418240e+01 1.3856126473390374e+01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 350 211 -4.9866768566844710e-01 -3.6401045095656348e-01 -8.5467345548890830e+00 8.5701414460772245e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 111 -1.4008327661589792e+00 -9.0942558267004381e-01 -1.1771316430970900e+01 1.1889974661352515e+01 1.3497999999999999e-01 2 0 0 -181 0 V -58 0 0 0 0 0 0 2 0 P 352 211 -3.3542165561360576e-01 -8.1174780297234483e-01 -9.7235495950089650e+00 9.7641353275230678e+00 1.3957000000000000e-01 1 0 0 0 0 P 353 111 -1.6514402388919955e-01 -7.8301714107518061e-01 -3.6923132540017609e+00 3.7804477456937478e+00 1.3497999999999999e-01 2 0 0 -182 0 V -59 0 0 0 0 0 0 2 0 P 354 -211 3.1546288008238826e-01 -1.3493313527964759e-01 -5.0398719489782646e+00 5.0534654274768958e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 111 1.6473405306659357e+00 -3.0582817367848458e-01 -1.0515211859358557e+01 1.0648716436424865e+01 1.3497999999999999e-01 2 0 0 -183 0 V -60 0 0 0 0 0 0 2 0 P 356 2212 1.3184831987072960e+00 -1.2080634144276823e+00 -6.2471390420611881e+00 6.5654331130777104e+00 9.3827000000000005e-01 1 0 0 0 0 P 357 211 1.1218379332708628e-01 -3.3316312045980739e-01 -7.5504548964381901e-01 8.4448584632973267e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 358 -211 -1.5385542857731777e-01 -5.3172167511308238e-02 -1.3094333286354145e+00 1.3268738445465651e+00 1.3957000000000000e-01 1 0 0 0 0 P 359 111 5.4008564499556555e-01 -7.2993750663773249e-01 -2.1035215539704359e+00 2.2951086675678307e+00 1.3497999999999999e-01 2 0 0 -184 0 V -62 0 0 0 0 0 0 2 0 P 360 -2112 1.3726709387863627e+00 1.3020587285748141e-02 -6.5380666084974326e+00 6.7463695276742008e+00 9.3957000000000002e-01 1 0 0 0 0 P 361 -211 4.1644697610892656e-01 -3.5288968037464835e-01 -2.2481134601663655e+00 2.3176395589276559e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 362 211 1.7534845337953773e+00 -8.0724859646662850e-01 -6.6847915877744377e+00 6.9593301878583702e+00 1.3957000000000000e-01 1 0 0 0 0 P 363 111 1.1296573879403329e+00 -2.6477026886355770e-01 -2.4282181333651875e+00 2.6945671290590947e+00 1.3497999999999999e-01 2 0 0 -185 0 V -64 0 -7.0988763805558168e-05 2.8406586626951888e-05 -5.3415349946769278e-04 5.3997909976212901e-04 0 2 0 P 364 22 -2.6720723900587394e-03 2.3552221431270514e-02 -8.6401132240502221e-02 8.9593541941626900e-02 0 1 0 0 0 0 P 365 22 -4.6990242298627954e-01 1.6555134399164162e-01 -3.4694759803101731e+00 3.5050647800825376e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 366 -211 -2.2742316014005468e-01 6.4976183697818679e-01 -3.2857503245124904e+00 3.3599920711953017e+00 1.3957000000000000e-01 1 0 0 0 0 P 367 111 5.9037840353830320e-02 -8.2679613917349459e-02 -3.0395951948491573e-01 3.4775332498290679e-01 1.3497999999999999e-01 2 0 0 -186 0 V -66 0 0 0 0 0 0 2 0 P 368 22 7.8491888779479088e-02 1.6725386623128019e-01 -4.2452871739814640e-01 4.6298970212003238e-01 0 1 0 0 0 0 P 369 113 -1.3041686971239450e-01 4.6729499206412367e-01 -2.8067148541457736e+00 2.9668608168267152e+00 8.3020579642963488e-01 2 0 0 -187 0 V -67 0 0 0 0 0 0 2 0 P 370 311 3.1800403100758023e-01 8.4435588341962675e-01 -4.3353207638066982e+00 4.4560907728182446e+00 4.9767000000000000e-01 2 0 0 -188 0 P 371 211 3.3750060525346387e-01 1.1294122742277128e+00 -7.4238712250191821e+00 7.5181661656477425e+00 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 372 -311 -9.2401797981121447e-01 1.5266226948689501e+00 -8.6860767961043521e+00 8.8814408524870441e+00 4.9767000000000000e-01 2 0 0 -189 0 P 373 -211 -1.6878555908478754e-01 8.2565821144980978e-01 -3.4169510083153107e+00 3.5221064755650251e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 374 2212 4.8453579718385720e-01 1.6790930208939057e+00 -8.9621589929329701e+00 9.1790398582355301e+00 9.3827000000000005e-01 1 0 0 0 0 P 375 111 -1.0115303988931233e-02 1.0041843139876792e-01 -7.1801878878004377e-01 7.3753424475107499e-01 1.3497999999999999e-01 2 0 0 -190 0 V -70 0 0 0 0 0 0 3 0 P 376 -211 1.1207868823813495e-01 2.9443264327580976e-01 -1.1753431516536150e+00 1.2248116274850651e+00 1.3957000000000000e-01 1 0 0 0 0 P 377 211 3.9122492199904213e-02 -2.7471810990489960e-02 -7.3558341460730392e-01 7.5023197381901119e-01 1.3957000000000000e-01 1 0 0 0 0 P 378 221 3.1045017132132313e-01 5.3800867249016293e-01 -2.5912904849682654e+00 2.7203530139551990e+00 5.4744999999999999e-01 2 0 0 -191 0 V -71 0 0 0 0 0 0 3 0 P 379 111 -5.5091137545187063e-01 6.6532973018748076e-01 -1.5581273809776044e+00 1.7866582015667536e+00 1.3497999999999999e-01 2 0 0 -192 0 P 380 111 -6.4345190015774278e-01 4.3367748821085578e-01 -1.1089254452795911e+00 1.3601624002985917e+00 1.3497999999999999e-01 2 0 0 -193 0 P 381 111 -5.8149491848435120e-01 4.8928110441637607e-01 -1.0935760652486162e+00 1.3385292489320795e+00 1.3497999999999999e-01 2 0 0 -194 0 V -72 0 -3.7428312993506772e+01 4.4787798293356644e+00 -8.2599796760952984e+01 9.3938333582050177e+01 0 2 0 P 382 2112 -1.2730244707391576e+00 2.2873721222231158e-01 -2.6742344669826186e+00 3.1156433981849974e+00 9.3957000000000002e-01 1 0 0 0 0 P 383 -211 -5.8675263499861885e-01 -6.1909224741293328e-03 -1.4300705007904111e+00 1.5520626289972452e+00 1.3957000000000000e-01 1 0 0 0 0 V -73 0 -8.5747425849995125e+00 2.2266638469751161e+00 -1.5649839947627093e+01 1.8168302983442345e+01 0 2 0 P 384 -3122 -3.8543534837369631e+00 8.8702066936632529e-01 -6.8128408694381086e+00 7.9562798480297658e+00 1.1156800000000000e+00 2 0 0 -195 0 P 385 211 -5.2747686961118356e-01 2.5084010425584558e-01 -1.1844771873763824e+00 1.3280130263641854e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 386 -321 -6.1159093723428037e-01 -3.4212901441257243e-02 -7.8377157442270706e-01 1.1104741500841808e+00 4.9359999999999998e-01 1 0 0 0 0 P 387 211 -2.8850908628729993e-01 4.8306838733069440e-01 -5.0713579622045168e-01 7.7023312082561213e-01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 3 0 P 388 -211 -4.8674690610316951e-01 -2.9315312606650268e-01 -1.3758965079963206e+00 1.4951362117011411e+00 1.3957000000000000e-01 1 0 0 0 0 P 389 211 -9.0166619886128541e-01 -5.9080746497027214e-02 -1.2890128703574404e+00 1.5803564261339063e+00 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -9.1600935712342768e-01 4.1655970457380093e-02 -1.4404284622463308e+00 1.7128520419060576e+00 1.3497999999999999e-01 2 0 0 -196 0 V -76 0 0 0 0 0 0 2 0 P 391 -2112 -6.0602418390548773e-01 -2.1349270816052801e+00 1.7202171915825484e-01 2.4161047601484733e+00 9.3957000000000002e-01 1 0 0 0 0 P 392 211 2.4664700745751889e-02 -5.3561813674619152e-02 4.5326226391412053e-02 1.5815014083420112e-01 1.3957000000000000e-01 1 0 0 0 0 V -77 0 -2.0659795150212346e-05 -5.7670858370606448e-05 -6.5250388244385439e-05 1.0502937947767158e-04 0 2 0 P 393 22 -3.8732631868307596e-02 -1.6751042028481833e-01 -1.2485372575695458e-01 2.1248155334248461e-01 0 1 0 0 0 0 P 394 22 -1.2005477448585114e-02 2.5877345264866271e-02 -3.5393813371200393e-02 4.5458668168798642e-02 0 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 395 2212 -1.2717492481326195e-01 -1.0121014297510320e+00 -1.8176025754028918e-01 1.3978233614181923e+00 9.3827000000000005e-01 1 0 0 0 0 P 396 111 -3.2572519138292716e-01 -2.2273911983929359e-01 -2.3727835783618215e-01 4.7982312918997871e-01 1.3497999999999999e-01 2 0 0 -197 0 V -79 0 0 0 0 0 0 2 0 P 397 -211 -1.5359845367111866e-01 -1.3130498520762313e+00 7.1946199630579036e-03 1.3293697553592771e+00 1.3957000000000000e-01 1 0 0 0 0 P 398 211 4.7430399794985589e-01 -8.8065460646589111e-01 -1.9451439579340926e-01 1.0285098217477973e+00 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 399 -2212 1.2687753671116659e+00 -1.4146313752324533e+00 9.5331116279977812e-01 2.3238170379786940e+00 9.3827000000000005e-01 1 0 0 0 0 P 400 -211 1.1727134182934969e-01 -8.7437460416391957e-02 -3.5211887727882030e-02 2.0522558085162107e-01 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 401 -211 5.4128787930015310e-01 -1.0233209656624425e+00 2.8492043442754050e-01 1.2003490350293740e+00 1.3957000000000000e-01 1 0 0 0 0 P 402 111 7.3832755302136607e-02 8.6715184243331120e-02 -1.7270270266385748e-02 1.7745044820719402e-01 1.3497999999999999e-01 2 0 0 -198 0 V -82 0 4.6260798191502701e-05 -7.2050675018166444e-06 1.4890739941992922e-04 1.5761309014650508e-04 0 2 0 P 403 22 3.0103742219320240e-01 -4.2560156559706443e-02 8.6770783633069037e-01 9.1943014183612848e-01 0 1 0 0 0 0 P 404 22 -1.4980841944512414e-02 -1.9928354033509747e-03 5.3070514173751290e-02 5.5180399536227082e-02 0 1 0 0 0 0 V -83 0 7.0845110401210682e+00 -4.1158115903791270e-01 3.6578693238917741e+00 9.9309837181319534e+00 0 2 0 P 405 2112 9.5778236358284452e-01 -1.9415180569479551e-01 5.7732768035893789e-01 1.4734792211135934e+00 9.3957000000000002e-01 1 0 0 0 0 P 406 211 4.6884041524368636e-01 1.1127084842138049e-01 1.5926510210437067e-01 5.2634370360307503e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 1.4005296865980169e+01 4.4347783526153461e-01 8.8660575867476457e+00 1.9835613050544517e+01 0 2 0 P 407 -2212 1.3445475456077687e+00 1.9291818374708744e-01 9.2547076906710224e-01 1.8925834896558207e+00 9.3827000000000005e-01 1 0 0 0 0 P 408 111 1.8566211314416770e-01 -1.4446408288414889e-01 4.3228936773987967e-02 2.7464273679696211e-01 1.3497999999999999e-01 2 0 0 -199 0 V -85 0 0 0 0 0 0 3 0 P 409 22 -2.1837500211394745e-01 -8.1828714135672287e-01 9.1373989756659011e+00 9.1765647999541891e+00 0 1 0 0 0 0 P 410 -211 7.0223591928782497e-02 -6.0256957476469952e-01 6.7204563547980491e+00 6.7492247589586887e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 211 -5.4391788397818407e-02 -5.3313903004059993e-01 4.4972958214077563e+00 4.5312630890458578e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 3 0 P 412 211 1.2705704172810363e-02 -4.9890079128292947e-01 4.2691388136746848e+00 4.3004754888017853e+00 1.3957000000000000e-01 1 0 0 0 0 P 413 -211 -6.2878807500907866e-02 -7.0112978427036496e-02 1.5686197308553509e+00 1.5776302542438008e+00 1.3957000000000000e-01 1 0 0 0 0 P 414 221 -1.3600818329908274e-01 -1.0256203394733401e+00 1.2523592189666196e+01 1.2578173879472086e+01 5.4744999999999999e-01 2 0 0 -200 0 V -87 0 2.7544043370561564e+01 -3.8482176519992990e+01 9.9618831818339424e+02 9.9933887432178210e+02 0 2 0 P 415 2112 4.2909194362044223e-01 -4.6809395779397511e-01 1.3760219443422670e+01 1.3806870129230973e+01 9.3957000000000002e-01 1 0 0 0 0 P 416 111 5.3939739663251093e-02 -2.0675650808711532e-01 3.7096383303986427e+00 3.7182380090459710e+00 1.3497999999999999e-01 2 0 0 -201 0 V -88 0 0 0 0 0 0 2 0 P 417 211 1.0274056365964761e+00 -1.3759744187133209e+00 1.0458655199807249e+02 1.0460074190259591e+02 1.3957000000000000e-01 1 0 0 0 0 P 418 111 5.2323032729204737e-02 -4.0308328620783949e-02 2.1325806614476502e+01 2.1326336061770196e+01 1.3497999999999999e-01 2 0 0 -202 0 V -89 0 0 0 0 0 0 2 0 P 419 321 6.4374437275120000e-01 -3.6136088619216696e-02 6.7804722937898774e+01 6.7809584914520499e+01 4.9359999999999998e-01 1 0 0 0 0 P 420 -211 2.2702723834534480e-01 2.1462169796213804e-01 1.3578700334643376e+01 1.3583010947618757e+01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 421 -321 6.0879101421095472e-01 -5.0525423834253964e-02 3.8322074250661188e+01 3.8330121251446975e+01 4.9359999999999998e-01 1 0 0 0 0 P 422 211 7.2156873220744500e-01 -2.9684811674502454e-01 5.5867951982113553e+01 5.5873574422085795e+01 1.3957000000000000e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 423 -211 1.1653157828831000e+00 2.3143359939592772e-01 2.0151763249569657e+02 2.0152118302759214e+02 1.3957000000000000e-01 1 0 0 0 0 P 424 111 5.2209846683827377e-03 -3.2023250156654243e-01 8.7598957369990487e+01 8.7599646848737649e+01 1.3497999999999999e-01 2 0 0 -203 0 V -92 0 0 0 0 0 0 2 0 P 425 211 6.5228804648621830e-01 -9.9320044756763787e-02 1.5523857201561594e+02 1.5524003692797601e+02 1.3957000000000000e-01 1 0 0 0 0 P 426 111 1.2128690637977498e-01 -4.8205015169977694e-01 1.6395805492714467e+02 1.6395886398104679e+02 1.3497999999999999e-01 2 0 0 -204 0 V -93 0 0 0 0 0 0 2 0 P 427 -211 4.4671002679103933e-01 -2.4768806927809825e-01 3.1775684588776602e+02 3.1775728707230945e+02 1.3957000000000000e-01 1 0 0 0 0 P 428 111 5.9080824247286534e-01 4.2094634812251935e-01 2.4042747495727389e+02 2.4042860724992426e+02 1.3497999999999999e-01 2 0 0 -205 0 V -94 0 0 0 0 0 0 2 0 P 429 -211 -7.0503914244132948e-01 8.8809439160314238e-02 1.0608047994728007e+02 1.0608295184872566e+02 1.3957000000000000e-01 1 0 0 0 0 P 430 111 -1.2957764820122533e-01 -2.1076875184060939e-01 1.1415586550041920e+02 1.1415621341645782e+02 1.3497999999999999e-01 2 0 0 -206 0 V -95 0 0 0 0 0 0 2 0 P 431 211 -9.3550975668320824e-01 7.7603951857708930e-01 3.1168384522058142e+02 3.1168624651580552e+02 1.3957000000000000e-01 1 0 0 0 0 P 432 111 7.9084772907152448e-02 5.9612540159872746e-02 4.3952877765315726e+01 4.3953196601719831e+01 1.3497999999999999e-01 2 0 0 -207 0 V -96 0 0 0 0 0 0 2 0 P 433 -211 -9.4222959479152235e-01 4.2368962813827826e-01 2.0921757782494660e+02 2.0922017507934740e+02 1.3957000000000000e-01 1 0 0 0 0 P 434 111 -8.3387775546606857e-01 -2.5248831176647046e-01 2.2281361502435868e+02 2.2281535935002810e+02 1.3497999999999999e-01 2 0 0 -208 0 V -97 0 0 0 0 0 0 2 0 P 435 22 -9.0864648534761117e-02 8.2935922804736148e-02 7.8146728890002883e+00 7.8156411837878608e+00 0 1 0 0 0 0 P 436 113 -1.2383670097688035e-01 8.3929086312955803e-01 3.0562869311421160e+01 3.0585527365068035e+01 8.1594054371303093e-01 2 0 0 -209 0 V -98 0 0 0 0 0 0 2 0 P 437 211 -2.2132490858702769e-01 6.8073759486611651e-01 1.2611527645518361e+01 1.2632596634374069e+01 1.3957000000000000e-01 1 0 0 0 0 P 438 -211 2.7634496383198681e-01 -3.0247854471625035e-01 1.3390528640026556e+01 1.3397522041531428e+01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 2.4616541353272369e-05 1.5300564562276647e-05 3.5776747548085997e-04 3.5947938260762218e-04 0 2 0 P 439 22 7.7956077775007515e-02 4.5316974094567933e-02 1.8382188654043232e+00 1.8404291280382157e+00 0 1 0 0 0 0 P 440 22 9.0778669494825728e-02 5.9561158761342659e-02 6.1410795379784899e-01 6.2363200478008296e-01 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 441 22 -1.2038234942153311e-01 -5.3984686584029759e-02 3.9149750672514032e+00 3.9171974718716900e+00 0 1 0 0 0 0 P 442 113 -2.2140435289104984e-01 1.9695473150259796e-01 1.5133310194347583e+01 1.5158750296694429e+01 8.2633048197956871e-01 2 0 0 -210 0 V -101 0 0 0 0 0 0 1 0 P 443 130 -9.9274062811961952e-02 1.0996739852194774e-01 4.3165880994122467e+00 4.3477070298229972e+00 4.9767000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 444 -321 7.0863601550057817e-02 -2.6247237238639792e-01 9.8111176855822464e+00 9.8272877538329730e+00 4.9359999999999998e-01 1 0 0 0 0 P 445 211 -1.6031328921922852e-01 1.5472882572310614e-01 8.8413505525247926e-01 9.2239684574278757e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 446 211 -2.2153383827046880e-01 8.4756635233063238e-01 1.7022688829144332e+01 1.7045787183989983e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 111 -4.2381109623624852e-01 5.7466674227894210e-01 5.7897798004910657e+00 5.8352058617112066e+00 1.3497999999999999e-01 2 0 0 -211 0 V -104 0 0 0 0 0 0 1 0 P 448 130 -1.0918951978229379e+00 3.7619630573624335e-01 3.7107063708500858e+00 3.9180066338695503e+00 4.9767000000000000e-01 1 0 0 0 0 V -105 0 -9.9107785258463082e+01 3.0954169393155304e+01 3.1300748010524120e+02 3.4700300907068890e+02 0 2 0 P 449 2212 -9.1509616088953716e-01 3.4278134559183104e-01 2.6749628059391619e+00 2.9984457041304635e+00 9.3827000000000005e-01 1 0 0 0 0 P 450 -211 -1.0903606620872815e-01 -2.2915833958050972e-02 5.5950607925089491e-01 5.8731664100293957e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 451 211 -8.9543033690510421e-01 5.9615488658013888e-02 2.8544902185948917e+00 2.9954872204187142e+00 1.3957000000000000e-01 1 0 0 0 0 P 452 -211 -3.8633539666593325e-01 -2.9965891535584460e-01 2.6750735655727134e+00 2.7229669242198251e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 453 2212 -9.2304950343845657e-02 -1.5187245429825025e-01 3.5992304134895484e+01 3.6004970392682552e+01 9.3827000000000005e-01 1 0 0 0 0 P 454 211 -1.2741182929281117e-01 2.9839091926056056e-02 5.2502761978612273e+00 5.2537609466342161e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 455 -211 -2.0720035680875090e-01 4.8673192075284165e-02 1.1267335379423194e+01 1.1270209732067549e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 3.5217570401252890e-01 -2.7034690107393888e-01 6.4080798606465388e+00 6.4248597085259975e+00 1.3497999999999999e-01 2 0 0 -212 0 V -109 0 0 0 0 0 0 2 0 P 457 -2212 1.1242773526634489e-02 5.4499432195668562e-01 1.4157177557100949e+01 1.4198703186809153e+01 9.3827000000000005e-01 1 0 0 0 0 P 458 111 -2.0556878930490210e-02 -1.8203151428259701e-01 6.1577546202930886e+00 6.1619574504863515e+00 1.3497999999999999e-01 2 0 0 -213 0 V -110 0 0 0 0 0 0 2 0 P 459 22 -2.1691717774256242e-01 -2.0254800025792855e-01 8.5652364500630753e+00 8.5703765494812103e+00 0 1 0 0 0 0 P 460 22 -1.9100325330778939e-01 -1.5342498794421695e-02 3.6990864827231071e+01 3.6991361130695431e+01 0 1 0 0 0 0 V -111 0 1.5864473184403499e-04 7.1926812376866531e-05 1.3265704914353194e-02 1.3267014280383771e-02 0 2 0 P 461 22 3.3908673655900681e-02 3.1981231265918336e-03 6.8442686075870816e+00 6.8443533514089312e+00 0 1 0 0 0 0 P 462 22 2.8893863643335055e-01 1.4317533427881862e-01 2.0151882466922878e+01 2.0154462326557951e+01 0 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 463 211 -1.3531955292750866e-01 -4.2696048469378139e-01 5.2898130062898019e+01 5.2900210307455957e+01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 -6.6858748579099270e-01 5.0256367760284848e-01 4.2472269856082860e+01 4.2480719224190715e+01 1.3497999999999999e-01 2 0 0 -214 0 V -113 0 0 0 0 0 0 2 0 P 465 211 -6.9847834371631586e-03 2.0126941353695643e-01 7.0543592525700634e+00 7.0586133491816963e+00 1.3957000000000000e-01 1 0 0 0 0 P 466 -211 6.2513821828624458e-02 -1.9324410907971254e-01 1.9452376460065125e+01 1.9453937416179006e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 467 211 -1.0635719536946648e+00 -2.7807662408558625e-01 6.3069615921269826e+02 6.3069713273277512e+02 1.3957000000000000e-01 1 0 0 0 0 P 468 111 1.0817410925474805e-01 -8.5784977110279104e-02 2.8451114052310196e+01 2.8451769208929232e+01 1.3497999999999999e-01 2 0 0 -215 0 V -115 0 0 0 0 0 0 1 0 P 469 130 2.5537319823325155e-01 6.6027509634505122e-01 1.7808119033520850e+01 1.7829132273169574e+01 4.9767000000000000e-01 1 0 0 0 0 V -116 0 -9.0412011147950772e-06 1.8673808485486337e-06 5.4536742094617548e-05 5.5683695856038822e-05 0 2 0 P 470 22 -3.3491021157650389e-02 6.2511085241803377e-02 5.0089309501282042e-01 5.0588850244674721e-01 0 1 0 0 0 0 P 471 22 -1.5666662908766588e-01 -2.3235689222569775e-02 6.4614241465821454e-01 6.6527013306151672e-01 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 472 -211 -2.2584427637586729e-01 1.1541467698880505e-01 1.4595442848461003e+01 1.4598313529734440e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 111 9.6422318420527053e-01 7.3726044366694132e-01 2.4651458739506975e+01 2.4681691937482118e+01 1.3497999999999999e-01 2 0 0 -216 0 V -118 0 0 0 0 0 0 2 0 P 474 211 1.0990397541779158e-01 2.2219307930898913e-01 9.7484646011908147e+00 9.7526145475906016e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 -211 -3.6066800494872353e-01 -2.8776695364404992e-01 2.6922757513474213e+01 2.6927072680550246e+01 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 476 -311 1.5226849042927109e-02 -1.9724145852395480e-01 1.5071398814187278e+01 1.5080910904022943e+01 4.9767000000000000e-01 2 0 0 -217 0 P 477 111 1.6802812420243643e-01 2.8717749087183220e-01 1.4994530733028064e+01 1.4998829149833982e+01 1.3497999999999999e-01 2 0 0 -218 0 V -120 0 0 0 0 0 0 1 0 P 478 130 1.3538641719262303e+00 3.3172025620912138e-01 2.1127113868203966e+02 2.1127632309835133e+02 4.9767000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 479 22 1.9432817645867317e-01 -2.5565429629294401e-01 3.8097579242600219e+01 3.8098932618980051e+01 0 1 0 0 0 0 P 480 113 8.2610866360735846e-01 -5.6778649336825304e-01 2.7553278792698819e+02 2.7553563832559462e+02 7.5228162818182653e-01 2 0 0 -219 0 V -122 0 0 0 0 0 0 3 0 P 481 -211 2.4224766907715067e+00 -3.6824408520570862e-01 4.6361206845675008e+02 4.6361856465801156e+02 1.3957000000000000e-01 1 0 0 0 0 P 482 211 9.8078550211232662e-01 -3.6556001756835949e-01 1.7587999511236123e+02 1.7588316501256369e+02 1.3957000000000000e-01 1 0 0 0 0 P 483 111 3.9627803518237252e+00 -8.6959086616556414e-01 6.9809801033218355e+02 6.9810981232592997e+02 1.3497999999999999e-01 2 0 0 -220 0 V -123 0 0 0 0 0 0 3 0 P 484 -211 -1.9816057616419056e-02 5.1230232355806322e+00 5.1245736181614472e+00 7.2475164229751705e+00 1.3957000000000000e-01 1 0 0 0 0 P 485 211 8.5939445485711807e-02 2.2459782463989248e+00 2.2750318448581912e+00 3.2011019277127755e+00 1.3957000000000000e-01 1 0 0 0 0 P 486 221 -2.8273780029820589e-01 1.4063384443376277e+01 1.4537238844131139e+01 2.0235852771250599e+01 5.4744999999999999e-01 2 0 0 -221 0 V -124 0 0 0 0 0 0 2 0 P 487 -211 -5.7330975563363626e-02 6.1992813829964066e-01 8.0731758124537722e-01 1.0289991250251826e+00 1.3957000000000000e-01 1 0 0 0 0 P 488 211 1.6813734309697814e-01 4.7751423316782642e+00 3.4711822838139779e+00 5.9075240741188235e+00 1.3957000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 3 0 P 489 211 9.7699132919959686e-02 8.0832095377221758e-01 9.0395558113615981e-01 1.2245584357015193e+00 1.3957000000000000e-01 1 0 0 0 0 P 490 -211 -2.4046328270180203e-01 4.7730316825949526e-01 8.5552955047987755e-01 1.0183572562723655e+00 1.3957000000000000e-01 1 0 0 0 0 P 491 111 -2.3221663762641018e-01 1.5484618831009298e+00 2.1225168192162438e+00 2.6410142026242180e+00 1.3497999999999999e-01 2 0 0 -222 0 V -126 0 0 0 0 0 0 2 0 P 492 -211 -2.2848653312366109e-02 9.8780591693313458e-01 1.6896560101078990e+00 1.9623200064923265e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 111 3.0996873106980399e-01 8.8715475255687826e-01 5.8487774801788894e-01 1.1150900186764106e+00 1.3497999999999999e-01 2 0 0 -223 0 V -127 0 0 0 0 0 0 3 0 P 494 -211 1.2279544553243898e-02 3.7834608723736435e-01 2.9946898752670076e-01 5.0245199604790669e-01 1.3957000000000000e-01 1 0 0 0 0 P 495 211 -1.2165389287300135e-02 3.2819439454822069e-01 4.8488669897371761e-01 6.0204190306905825e-01 1.3957000000000000e-01 1 0 0 0 0 P 496 221 2.1187831804727733e-01 1.8924084479011059e+00 1.3252256437721472e+00 2.3837002044630777e+00 5.4744999999999999e-01 2 0 0 -224 0 V -128 0 -7.8475524041656745e-05 1.4682011990485943e-04 4.9337581473799312e-05 1.7503926066444366e-04 0 2 0 P 497 22 -3.8635429821880429e-01 6.0303270059298120e-01 2.3660136657752820e-01 7.5425346429629536e-01 0 1 0 0 0 0 P 498 22 -9.2176491726427556e-02 2.9225215179782771e-01 6.4251060022539996e-02 3.1310704969941627e-01 0 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 499 -2212 -8.9405999702251227e-01 -7.1887180679537954e-01 1.5278267069136979e+00 2.1285499740762259e+00 9.3827000000000005e-01 1 0 0 0 0 P 500 111 -3.1682162269936248e-01 -2.6018924029003149e-01 6.1186128869965373e-01 7.4877781643272656e-01 1.3497999999999999e-01 2 0 0 -225 0 V -130 0 0 0 0 0 0 2 0 P 501 2112 -2.3091626876866628e-01 -7.5916418826792031e-01 1.7288800398609869e+00 2.1216669307552167e+00 9.3957000000000002e-01 1 0 0 0 0 P 502 -211 -2.5348477031091440e-02 -1.4781663726275963e-02 -7.5614692766492783e-02 1.6142617362894893e-01 1.3957000000000000e-01 1 0 0 0 0 V -131 0 0 0 0 0 0 3 0 P 503 211 -5.3966826358703840e-02 -2.4737162966376944e-01 2.7796447023702842e-01 4.0106006174124526e-01 1.3957000000000000e-01 1 0 0 0 0 P 504 -211 -5.7932681471834202e-01 -9.4847622020094680e-01 1.8095967632209025e+00 2.1282262400642331e+00 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -4.2116334322961552e-01 -1.3781351152626133e+00 2.6537231713993639e+00 3.0227638393401066e+00 1.3497999999999999e-01 2 0 0 -226 0 V -132 0 3.7094506717501422e-05 -5.1405913595655072e-06 2.2307191403120937e-04 2.2905798167845295e-04 0 2 0 P 506 22 7.4078350333202118e-03 1.7691200824050055e-02 4.2115112983870456e-01 4.2158762881623452e-01 0 1 0 0 0 0 P 507 22 1.3124589704128106e-01 -3.6905964414312882e-02 4.1265840527661046e-01 4.3459693411821992e-01 0 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 508 211 -3.6844400284514167e-01 -1.3016087172101576e+00 2.3030641810191184e+00 2.6746066332721314e+00 1.3957000000000000e-01 1 0 0 0 0 P 509 111 -8.5787413697840864e-01 -3.6771085791723843e+00 4.6324787415440625e+00 5.9778887936442295e+00 1.3497999999999999e-01 2 0 0 -227 0 V -134 0 0 0 0 0 0 3 0 P 510 211 -6.8918070874831450e-01 -3.1199725666474203e+00 5.4253551137800669e+00 6.2978692239092133e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 -211 -1.0809069757075342e+00 -2.8183933309428140e+00 5.7382557064447104e+00 6.4852724842894167e+00 1.3957000000000000e-01 1 0 0 0 0 P 512 111 -1.7013952957851625e-01 -6.1623591436137115e-01 1.0904449994673711e+00 1.2712136165638681e+00 1.3497999999999999e-01 2 0 0 -228 0 V -135 0 0 0 0 0 0 3 0 P 513 -211 -3.0429075621555652e+00 -1.1368404352386980e+01 1.8475023081740918e+01 2.1905384306305937e+01 1.3957000000000000e-01 1 0 0 0 0 P 514 211 -6.4798844083157747e-01 -2.6296853521510868e+00 4.5668845753130194e+00 5.3114074010474193e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 111 -1.0608537286679716e+00 -3.3824616493455784e+00 5.9504212183955101e+00 6.9276395489123033e+00 1.3497999999999999e-01 2 0 0 -229 0 V -136 0 1.4375001910217324e-05 -2.4265141187320852e-06 1.7733969985240041e-04 1.7799348500232643e-04 0 2 0 P 516 22 3.0259842906778761e-01 -1.0285947185639215e-01 4.1432248338511899e+00 4.1555334078871375e+00 0 1 0 0 0 0 P 517 22 1.3364837658006246e-01 2.9220592378825756e-02 1.2386094127356049e+00 1.2461416488099157e+00 0 1 0 0 0 0 V -137 0 4.3847167155664699e-05 9.7062284700779123e-06 3.8173247030772123e-04 3.8458971566835109e-04 0 2 0 P 518 22 3.4942671866237807e-01 5.9059536501634487e-02 2.4729496174394985e+00 2.4982127353292207e+00 0 1 0 0 0 0 P 519 22 1.0082691502757278e-01 4.0610862330797942e-02 1.4469485881458928e+00 1.4510256805689628e+00 0 1 0 0 0 0 V -138 0 0 0 0 0 0 3 0 P 520 211 6.5169903115452260e-02 5.6056119899561474e-01 8.2732262777576615e+00 8.2936257934615885e+00 1.3957000000000000e-01 1 0 0 0 0 P 521 -211 8.9500721906366473e-02 1.6165200285238707e-01 5.1519822502180608e+00 5.1571835957923682e+00 1.3957000000000000e-01 1 0 0 0 0 P 522 111 1.6626192603755133e-01 2.4344813094085710e-01 5.9400595771291158e+00 5.9489022013100570e+00 1.3497999999999999e-01 2 0 0 -230 0 V -139 0 0 0 0 0 0 2 0 P 523 211 3.8011999350620629e-01 -7.2875995128623972e-01 1.1439978355475111e+00 1.4155539935655126e+00 1.3957000000000000e-01 1 0 0 0 0 P 524 -211 5.1556759688424680e-01 -1.3965486703004919e+00 4.1830506534589054e+00 4.4422461311568551e+00 1.3957000000000000e-01 1 0 0 0 0 V -140 0 2.2077613736487360e-04 1.3054356643132396e-04 5.3129674336680435e-02 5.3130305548896223e-02 0 2 0 P 525 22 2.0993843746956453e-01 1.9545916097133717e-01 5.9120706129827191e+01 5.9121401976953500e+01 0 1 0 0 0 0 P 526 22 6.2013534275529725e-01 2.9535833844255144e-01 1.4063616137020583e+02 1.4063783875379340e+02 0 1 0 0 0 0 V -141 0 0 0 0 0 0 3 0 P 527 111 -4.6025994104193779e-01 -6.4106572406939566e-02 3.5697421760624395e+00 3.6023919372984246e+00 1.3497999999999999e-01 2 0 0 -231 0 P 528 111 -3.9055077300293961e-01 -1.8046448687152314e-01 5.0115055579570598e+00 5.0317496852635166e+00 1.3497999999999999e-01 2 0 0 -232 0 P 529 111 -3.7615345364925712e-01 -1.4944347978246718e-02 4.9460323248456373e+00 4.9621739301486301e+00 1.3497999999999999e-01 2 0 0 -233 0 V -142 0 0 0 0 0 0 2 0 P 530 22 7.6001014728466182e-02 -2.6222256606905053e-01 -6.1668157625205118e-02 2.7989246159995312e-01 0 1 0 0 0 0 P 531 111 5.2854140593005694e-01 -1.0993612270210711e+00 1.4284902551131811e+00 1.8832830734154431e+00 1.3497999999999999e-01 2 0 0 -234 0 V -143 0 0 0 0 0 0 1 0 P 532 130 6.0518885548957635e-01 -6.3304471016782460e-01 8.1390322311792529e-01 1.2950339923654497e+00 4.9767000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 533 -321 -8.9514476463951331e-02 1.5574244003391051e-03 -7.3543223958191839e-01 8.9023412992529904e-01 4.9359999999999998e-01 1 0 0 0 0 P 534 211 -2.3252334949603892e-01 -1.1954553548990007e-01 -6.2792126514898527e-03 2.9644132054750172e-01 1.3957000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 535 -3122 -2.9934157631738628e-01 8.3369382436633221e-01 -5.7867034072613344e-01 1.5376124341767134e+00 1.1156800000000000e+00 2 0 0 -235 0 P 536 211 -3.0563383893025109e-01 4.0042463942678341e-01 -3.3058692561802289e-01 6.1848155643389102e-01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 3 0 P 537 -211 -4.2419178522252843e-01 3.3434140708325710e-01 -1.7100036734723820e-01 5.8347558447083148e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 211 -2.8958537579003078e-02 -8.4886025874366042e-02 -1.0351779013403040e-01 1.9555038241254155e-01 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -1.3451868929665664e-01 2.6559529057793624e-01 -3.9951646486313591e-01 5.1620649186542211e-01 1.3497999999999999e-01 2 0 0 -236 0 V -147 0 0 0 0 0 0 2 0 P 540 2112 -3.2505884793672002e-01 -4.8996274351040684e-03 -7.3396416576897272e-01 1.2357922327413677e+00 9.3957000000000002e-01 1 0 0 0 0 P 541 -211 3.1421746947123182e-03 3.1468313427059441e-01 -9.2424683998719753e-02 3.5645119633470196e-01 1.3957000000000000e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 542 211 -1.3318007089199549e-01 3.4250413520908224e-01 -1.4106974592976848e-01 4.1764395366724472e-01 1.3957000000000000e-01 1 0 0 0 0 P 543 111 -1.2579192861970772e+00 3.2208856146300469e+00 -3.4640298869634045e+00 4.8963443231959323e+00 1.3497999999999999e-01 2 0 0 -237 0 V -149 0 0 0 0 0 0 3 0 P 544 -211 -5.8259487765078090e-02 4.2228069267918567e-01 -1.0990817948597961e-01 4.6181678633651296e-01 1.3957000000000000e-01 1 0 0 0 0 P 545 211 -1.2172366155899500e-01 4.9359648625580615e-01 7.1943324405988718e-02 5.3208060277930858e-01 1.3957000000000000e-01 1 0 0 0 0 P 546 221 -4.6379845226603594e-01 3.3521288493452870e+00 -8.6214589423481994e-02 3.4291414792724413e+00 5.4744999999999999e-01 2 0 0 -238 0 V -150 0 -2.4761097137572898e-04 1.1940635550630205e-03 -5.7381503059271613e-05 1.2213208237715162e-03 0 2 0 P 547 22 -2.7395593406165070e-01 1.5649723237607522e+00 -1.1516632244854406e-01 1.5929386396754399e+00 0 1 0 0 0 0 P 548 22 -6.7788942662054053e-01 3.0251468011377134e+00 -1.0541484636024796e-01 3.1019605950093592e+00 0 1 0 0 0 0 V -151 0 0 0 0 0 0 3 0 P 549 111 4.8383528130315601e-02 5.5630857918689358e-01 3.7966353066048736e-01 6.8861033827910545e-01 1.3497999999999999e-01 2 0 0 -239 0 P 550 111 2.7168064449408519e-01 4.4050328615137235e-01 4.1008860967694138e-01 6.7397758559884324e-01 1.3497999999999999e-01 2 0 0 -240 0 P 551 111 9.2971834005870196e-02 1.7187030593277197e-01 9.5420351993274838e-02 2.5594493148792802e-01 1.3497999999999999e-01 2 0 0 -241 0 V -152 0 7.1228109900457839e-06 1.2836897173206497e-05 3.6796756180497523e-05 4.0489818079940499e-05 0 2 0 P 552 22 5.5866882711501234e-03 3.4000600917395242e-02 1.1797924025827763e-02 3.6420364631647904e-02 0 1 0 0 0 0 P 553 22 1.0940611103477808e-01 1.7324212143088982e-01 5.8225995628104910e-01 6.1725941585207000e-01 0 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 554 -211 -1.1810569990630018e-01 1.0315078607486970e-01 -1.8223700754664782e-01 2.7799128194563499e-01 1.3957000000000000e-01 1 0 0 0 0 P 555 111 4.3587827473267310e-01 1.7028990338887720e-01 4.7607047578691275e-01 6.8106623752473761e-01 1.3497999999999999e-01 2 0 0 -242 0 V -154 0 -2.8507973111417652e-05 3.8786706244934595e-05 2.6545508323476294e-04 2.6984723228103754e-04 0 2 0 P 556 22 -2.1490493374070613e-01 2.0442945582070088e-01 1.7912419483946231e+00 1.8156330165101677e+00 0 1 0 0 0 0 P 557 22 -4.4488257164859063e-01 6.9324867989226857e-01 4.3524409600975957e+00 4.4297016316975935e+00 0 1 0 0 0 0 V -155 0 3.4715809059383266e-05 1.7154872816332317e-04 4.2999406990730786e-04 4.6481844953773124e-04 0 2 0 P 558 22 1.3746654222735935e-01 7.6644978992621193e-01 1.7555073958970815e+00 1.9204552969958018e+00 0 1 0 0 0 0 P 559 22 6.6629613032497009e-02 2.4209464001813522e-01 7.7245144563534485e-01 8.1223799216886228e-01 0 1 0 0 0 0 V -156 0 0 0 0 0 0 2 0 P 560 211 3.3899061077649156e-01 -6.1680572148861884e-02 4.5599293680378111e-01 5.8832683985193712e-01 1.3957000000000000e-01 1 0 0 0 0 P 561 111 -4.5859450475610430e-01 -2.4365393420983930e-01 2.5533234167821930e+00 2.6090910736378525e+00 1.3497999999999999e-01 2 0 0 -243 0 V -157 0 0 0 0 0 0 2 0 P 562 -211 1.4182705431116782e-01 -8.3649266675025324e-01 8.1722886061973643e-01 1.1862452066884679e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 1.2198951865174108e+00 -7.5092470395012445e-01 2.6661681333436080e+00 3.0296376504043963e+00 1.3497999999999999e-01 2 0 0 -244 0 V -158 0 0 0 0 0 0 2 0 P 564 211 -9.3982056209859180e-02 -4.5063572166268279e-01 8.1257498060140998e-01 9.4427912426742855e-01 1.3957000000000000e-01 1 0 0 0 0 P 565 111 6.1634052608306822e-01 -8.8681845357183153e-02 2.9945514279019529e+00 3.0615842252889163e+00 1.3497999999999999e-01 2 0 0 -245 0 V -159 0 0 0 0 0 0 3 0 P 566 111 3.1032110571705657e-01 -3.2401368439849071e-01 1.5606668808632560e+00 1.6294737708089646e+00 1.3497999999999999e-01 2 0 0 -246 0 P 567 111 3.9806454683634040e-01 -2.1881634881457543e-01 1.1499307127813323e+00 1.2437428281418734e+00 1.3497999999999999e-01 2 0 0 -247 0 P 568 111 4.4729928925096618e-01 -1.7379978154905232e-01 1.0277262496830317e+00 1.1422450975681475e+00 1.3497999999999999e-01 2 0 0 -248 0 V -160 0 0 0 0 0 0 2 0 P 569 211 9.3766078571856287e-02 -4.8209375260917953e-01 -8.3981466498034874e-01 9.8284023127444253e-01 1.3957000000000000e-01 1 0 0 0 0 P 570 111 5.4127063054870007e-02 3.0768441655030410e-01 -1.1819798174403789e-01 3.6026351804090689e-01 1.3497999999999999e-01 2 0 0 -249 0 V -161 0 5.2486628002834595e-08 4.1276686205723933e-05 -5.3838845445427122e-05 6.8514041899626890e-05 0 2 0 P 571 22 4.2143669036939259e-02 6.1454337759491669e-02 -1.1155544177500616e-01 1.3415416899585919e-01 0 1 0 0 0 0 P 572 22 -4.1404179468665661e-02 5.2009719304921465e-01 -6.4698565887710113e-01 8.3114730288185512e-01 0 1 0 0 0 0 V -162 0 0 0 0 0 0 3 0 P 573 111 4.2166075834913913e-01 4.3971203636881712e-01 -6.6531795118824832e-01 9.1214694355268844e-01 1.3497999999999999e-01 2 0 0 -250 0 P 574 111 1.4291745831448524e-01 2.3572724796233915e-01 -1.5786505629884448e-01 3.4515751726307237e-01 1.3497999999999999e-01 2 0 0 -251 0 P 575 111 1.6233511808446999e-01 7.4398444131026642e-02 -2.6879822897427691e-01 3.4979981039492303e-01 1.3497999999999999e-01 2 0 0 -252 0 V -163 0 0 0 0 0 0 3 0 P 576 211 -3.3268899623945247e-01 -2.1884812590067543e-01 -9.2810973494131244e-01 1.0195312331762503e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -5.6475126956918198e-02 1.1318216600906932e-01 -1.1332001573888080e-01 2.1982004807197350e-01 1.3957000000000000e-01 1 0 0 0 0 P 578 111 -8.2723820908238724e-02 8.6608939576870422e-02 -7.5447019368138635e-01 7.7575074122679188e-01 1.3497999999999999e-01 2 0 0 -253 0 V -164 0 -3.1490932179167173e-02 -5.1584624971641950e-02 -9.7088382937427942e-02 1.3477582894820969e-01 0 2 0 P 579 -311 -7.0570496381954873e-01 3.4867675030012105e-02 -1.1691757523150772e+00 1.4539197431161996e+00 4.9767000000000000e-01 2 0 0 -254 0 P 580 213 -1.1974053004693044e-01 -1.3870123493563915e+00 -1.3757209102073629e+00 2.0788464530212578e+00 7.0060937808042023e-01 2 0 0 -255 0 V -165 0 -9.8333940719870229e-06 -2.1957959127313443e-05 -3.8608444441826285e-05 6.0977262960860886e-05 0 2 0 P 581 22 -3.9174515459507300e-02 -4.0243681195584267e-02 -1.5182864708787780e-01 1.6188308933978973e-01 0 1 0 0 0 0 P 582 22 6.4861486038060145e-03 -3.2749409298050078e-02 2.3485677569586309e-02 4.0818757746707963e-02 0 1 0 0 0 0 V -166 0 2.2682360044403102e-05 -3.7640446169074673e-05 -2.2822149042101019e-04 2.3298619202763465e-04 0 2 0 P 583 22 2.6196981438048647e-02 -1.6977937123335252e-01 -7.6247936534884175e-01 7.8159202869248257e-01 0 1 0 0 0 0 P 584 22 1.6144663033810794e-01 -1.4160750624344554e-01 -1.1255210307167705e+00 1.1458251571936089e+00 0 1 0 0 0 0 V -167 0 -1.2246014184398062e-07 -1.5639223514789125e-06 -1.1766502703985537e-04 1.1767614599698771e-04 0 2 0 P 585 22 -7.6215862130640605e-02 -3.6605815064671166e-01 -3.0340741133905404e+01 3.0343045001811451e+01 0 1 0 0 0 0 P 586 22 3.4351663096132169e-02 -1.6858402443948245e-01 -9.8842009347816724e+00 9.8856981912858650e+00 0 1 0 0 0 0 V -168 0 -2.8571138826014217e-06 -6.6253810561405321e-06 -7.8385540164636251e-04 7.8418384462489415e-04 0 2 0 P 587 22 6.4479907219636172e-03 4.7835749355208478e-02 -1.3685516166418810e+00 1.3694025569254027e+00 0 1 0 0 0 0 P 588 22 -2.4371731795097561e-02 -8.9399235950634426e-02 -3.5488656915875461e+00 3.5500751966157562e+00 0 1 0 0 0 0 V -169 0 2.8519149140445479e-05 2.2063638915812511e-05 -2.8016948584640138e-02 2.8016981369177438e-02 0 2 0 P 589 22 -7.0669509699909849e-03 5.6145823412800923e-02 -5.3997879367093496e+01 5.3997909019132067e+01 0 1 0 0 0 0 P 590 22 1.7320117586503675e-01 7.2382749848323449e-02 -1.0921084800803298e+02 1.0921100933762804e+02 0 1 0 0 0 0 V -170 0 7.3956117667119097e+00 7.9437431436139496e+00 -1.1246053806288118e+02 1.1313866615591247e+02 0 2 0 P 591 111 -1.0705681335641098e-02 1.2697261511658942e-01 -1.2374796505164192e+00 1.2513241556226127e+00 1.3497999999999999e-01 2 0 0 -256 0 P 592 111 6.3118064657566586e-01 5.3948932290654950e-01 -8.1977030830499746e+00 8.2407519788177641e+00 1.3497999999999999e-01 2 0 0 -257 0 V -171 0 0 0 0 0 0 2 0 P 593 211 2.4786987408196438e-02 2.9542061523740754e-01 -9.6848048170966494e-01 1.0224098801383950e+00 1.3957000000000000e-01 1 0 0 0 0 P 594 -211 1.9889874105537230e-02 1.5166278297164137e-01 -5.8444465023490366e+00 5.8481135343416959e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 -6.7485623074718065e-06 -1.2808603233724289e-05 -2.9436347998721530e-04 2.9473552788044776e-04 0 2 0 P 595 22 -2.3517285567285012e-01 -3.3898220379120025e-01 -7.4305625331445837e+00 7.4420074419140763e+00 0 1 0 0 0 0 P 596 22 -5.9291684780645990e-02 -2.1990416240473698e-01 -5.4135964019753011e+00 5.4183853081897917e+00 0 1 0 0 0 0 V -173 0 8.1427576155457956e-05 -6.7141036428700998e-05 -1.5497089505046172e-03 1.5536640542602022e-03 0 2 0 P 597 22 2.2425095395381986e-01 -1.3287914271449056e-01 -4.4539757093731422e+00 4.4615966846638804e+00 0 1 0 0 0 0 P 598 22 1.0187944441217257e-01 -1.3603139092823485e-01 -1.7528552100995636e+00 1.7610750546427003e+00 0 1 0 0 0 0 V -174 0 7.2324370497740691e-06 -6.3368282934414172e-05 -1.7128487578459380e-03 1.7143487657043303e-03 0 2 0 P 599 22 -5.3001815853234699e-02 -7.6054771292957832e-02 -2.2324729897007720e+00 2.2343968247524137e+00 0 1 0 0 0 0 P 600 22 8.2804756965416212e-02 -1.8506899538170662e-01 -4.8257191954286389e+00 4.8299764920707560e+00 0 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 601 130 -1.0168911161369021e-01 -1.2361350857979305e+00 -8.0483643500523584e+01 8.0494738444037651e+01 4.9767000000000000e-01 1 0 0 0 0 V -176 0 5.5692744556146576e-05 -1.9311194244811799e-04 -4.6914986543713115e-02 4.6915439875884660e-02 0 2 0 P 602 22 6.2739697413383699e-02 -3.1768748837663113e-01 -8.8876653417193211e+01 8.8877243342994063e+01 0 1 0 0 0 0 P 603 22 9.9670395796368466e-02 -2.4546178399036875e-01 -4.7935913430130270e+01 4.7936645502748114e+01 0 1 0 0 0 0 V -177 0 -1.2543017299415371e-06 1.3899676051708777e-05 -4.2215454563740533e-03 4.2216056979407501e-03 0 2 0 P 604 22 -6.5801262703220093e-02 8.6318113919287953e-02 -1.7369398968245473e+01 1.7369738084987084e+01 0 1 0 0 0 0 P 605 22 5.6244576108620936e-02 1.9585309971252018e-02 -1.4795100137804010e+01 1.4795220009325867e+01 0 1 0 0 0 0 V -178 0 1.2109879071977761e-05 1.9942780401065678e-06 -7.3405474800678902e-03 7.3405667307838559e-03 0 2 0 P 606 22 -5.0424054129038134e-03 -3.1365142555964828e-02 -2.6632506785174328e+01 2.6632525731901143e+01 0 1 0 0 0 0 P 607 22 1.4731767953570760e-01 5.4795306734054389e-02 -5.9609345732973878e+01 5.9609552957034964e+01 0 1 0 0 0 0 V -179 0 -1.5505264270673752e-06 2.3867738230149541e-06 -1.7482397184986212e-03 1.7482467622128291e-03 0 2 0 P 608 22 1.7210883289764514e-02 -2.6713322358958392e-02 -6.3369949361956985e+00 6.3370746119534527e+00 0 1 0 0 0 0 P 609 22 -6.8691759861248536e-02 1.0595944576691671e-01 -5.1708396354308682e+01 5.1708550545304433e+01 0 1 0 0 0 0 V -180 0 -4.9813943111108881e-05 6.1082340350499881e-05 -5.7012109029759020e-02 5.7012215817604843e-02 0 3 0 P 610 22 -3.4725264881649690e-03 6.7600653845405881e-02 -7.2131753036221696e+01 7.2131784796893243e+01 0 1 0 0 0 0 P 611 11 -4.8556276702447214e-02 2.3319110047491674e-02 -1.6000086776879144e+01 1.6000177455911651e+01 5.1000000000000004e-04 1 0 0 0 0 P 612 -11 -3.5038290274909983e-02 1.5842750861807663e-02 -1.1516538041443795e+01 1.1516602250432301e+01 5.1000000000000004e-04 1 0 0 0 0 V -181 0 -1.4027968311659342e-04 -9.1070066061403683e-05 -1.1787820635645709e-03 1.1906645233122461e-03 0 2 0 P 613 22 -7.5762063330539742e-01 -4.4715703692809139e-01 -5.7953697023990953e+00 5.8617615464269575e+00 0 1 0 0 0 0 P 614 22 -6.4321213285358181e-01 -4.6226854574195242e-01 -5.9759467285718051e+00 6.0282131149255571e+00 0 1 0 0 0 0 V -182 0 -2.0413176666367207e-05 -9.6787439576290861e-05 -4.5640066765041714e-04 4.6729482480451482e-04 0 2 0 P 615 22 -9.4718939969127086e-02 -5.7362929635354187e-01 -2.9116422776308943e+00 2.9691215872900112e+00 0 1 0 0 0 0 P 616 22 -7.0425083920072448e-02 -2.0938784472163877e-01 -7.8067097637086691e-01 8.1132615840373656e-01 0 1 0 0 0 0 V -183 0 3.2454546966182793e-05 -6.0251749055296466e-06 -2.0716204743105419e-04 2.0979224470110339e-04 0 2 0 P 617 22 1.0243877888979176e+00 -2.0101852365409451e-01 -6.9518503301177095e+00 7.0297938661992747e+00 0 1 0 0 0 0 P 618 22 6.2295274176801807e-01 -1.0480965002439009e-01 -3.5633615292408476e+00 3.6189225702255912e+00 0 1 0 0 0 0 V -184 0 1.0387520678102460e-04 -1.4038960328198046e-04 -4.0457238293903418e-04 4.4142052216641995e-04 0 2 0 P 619 22 4.6007710659600787e-01 -5.3931786899424883e-01 -1.5566046873921839e+00 1.7104247602983216e+00 0 1 0 0 0 0 P 620 22 8.0008538399557697e-02 -1.9061963764348361e-01 -5.4691686657825200e-01 5.8468390726950914e-01 0 1 0 0 0 0 V -185 0 6.3157853070551297e-05 -1.4803003031586592e-05 -1.3575889975804521e-04 1.5065016760182541e-04 0 2 0 P 621 22 1.0531794193279123e+00 -2.8031898435179903e-01 -2.2782574689042003e+00 2.5255143469997692e+00 0 1 0 0 0 0 P 622 22 7.6477968612420691e-02 1.5548715488241337e-02 -1.4996066446098730e-01 1.6905278205932450e-01 0 1 0 0 0 0 V -186 0 4.1163043813991794e-05 -5.7646833790101127e-05 -2.1193016111785529e-04 2.4246458317142694e-04 0 2 0 P 623 22 4.5297185584987944e-02 -3.3542452781509968e-02 -2.0872169422590341e-02 6.0104730403903961e-02 0 1 0 0 0 0 P 624 22 1.3740654768842377e-02 -4.9137161135839498e-02 -2.8308735006232538e-01 2.8764859457900277e-01 0 1 0 0 0 0 V -187 0 0 0 0 0 0 2 0 P 625 -211 1.0798700136480335e-01 4.8358329032061731e-01 -2.5054475528628100e+00 2.5577844350506393e+00 1.3957000000000000e-01 1 0 0 0 0 P 626 211 -2.3840387107719785e-01 -1.6288298256493614e-02 -3.0126730128296353e-01 4.0907638177607564e-01 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 627 310 3.1800403100758023e-01 8.4435588341962675e-01 -4.3353207638066982e+00 4.4560907728182446e+00 4.9767000000000000e-01 2 0 0 -258 0 V -189 0 0 0 0 0 0 1 0 P 628 130 -9.2401797981121447e-01 1.5266226948689501e+00 -8.6860767961043521e+00 8.8814408524870441e+00 4.9767000000000000e-01 1 0 0 0 0 V -190 0 -4.0194123423876879e-06 3.9902219746345488e-05 -2.8531160159366579e-04 2.9306625381994795e-04 0 2 0 P 629 22 -1.1548481041194061e-02 1.0362255461137283e-01 -2.6896791211428672e-01 2.8846965002520530e-01 0 1 0 0 0 0 P 630 22 1.4331770522628285e-03 -3.2041232126048991e-03 -4.4905087666575705e-01 4.4906459472586979e-01 0 1 0 0 0 0 V -191 0 0 0 0 0 0 3 0 P 631 211 -1.9217308167916079e-02 9.7542154262346831e-02 -6.1624396378938351e-01 6.3962503437421137e-01 1.3957000000000000e-01 1 0 0 0 0 P 632 -211 2.9487198065217585e-01 2.2031891486383876e-01 -1.1498886742426784e+00 1.2154067867475897e+00 1.3957000000000000e-01 1 0 0 0 0 P 633 111 3.4795498837063350e-02 2.2014760336397740e-01 -8.2515784693620353e-01 8.6532119283339770e-01 1.3497999999999999e-01 2 0 0 -259 0 V -192 0 -3.4795097404103204e-05 4.2021664099294995e-05 -9.8410010039541072e-05 1.1284382374635894e-04 0 2 0 P 634 22 -4.7030378941437787e-02 1.2249610507775645e-01 -2.8520291549630333e-01 3.1393925417218471e-01 0 1 0 0 0 0 P 635 22 -5.0388099651043283e-01 5.4283362510972433e-01 -1.2729244654813010e+00 1.4727189473945694e+00 0 1 0 0 0 0 V -193 0 -9.6908028437297657e-05 6.5314641777964314e-05 -1.6701136255818460e-04 2.0484927705577603e-04 0 2 0 P 636 22 -5.7664566873623990e-01 3.5449752365345794e-01 -1.0169422622224009e+00 1.2216219899145211e+00 0 1 0 0 0 0 P 637 22 -6.6806231421502868e-02 7.9179964557397842e-02 -9.1983183057190263e-02 1.3854041038407083e-01 0 1 0 0 0 0 V -194 0 -5.9305582680524934e-06 4.9900867693936404e-06 -1.1153178418839488e-05 1.3651410273670115e-05 0 2 0 P 638 22 -1.2190366441206031e-02 9.8462521956456453e-03 3.7493885451479270e-05 1.5670198532966511e-02 0 1 0 0 0 0 P 639 22 -5.6930455204314523e-01 4.7943485222073040e-01 -1.0936135591340677e+00 1.3228590503991129e+00 0 1 0 0 0 0 V -195 0 -3.5124610832824021e+02 8.1087252398791890e+01 -6.2134557988745780e+02 7.2552150586519542e+02 0 2 0 P 640 -2212 -3.1764830221709901e+00 6.9192103641307112e-01 -5.7847866674656174e+00 6.7017092216657277e+00 9.3827000000000005e-01 1 0 0 0 0 P 641 211 -6.7787046156597308e-01 1.9509963295325414e-01 -1.0280542019724914e+00 1.2545706263640386e+00 1.3957000000000000e-01 1 0 0 0 0 V -196 0 -4.0257232598264628e-05 1.8307172069457680e-06 -6.3304662987190025e-05 7.5277269299917616e-05 0 2 0 P 642 22 -8.4669900636089035e-01 7.3135405833513925e-02 -1.3005650840831458e+00 1.5536143449695463e+00 0 1 0 0 0 0 P 643 22 -6.9310350762537276e-02 -3.1479435376133832e-02 -1.3986337816318506e-01 1.5923769693651144e-01 0 1 0 0 0 0 V -197 0 -4.2566604606958051e-05 -2.9108120266801119e-05 -3.1008145231012267e-05 6.2704518906834901e-05 0 2 0 P 644 22 -1.4777848005541572e-01 -1.1433346174256119e-01 -3.6324382705950439e-02 1.9034200907969570e-01 0 1 0 0 0 0 P 645 22 -1.7794671132751141e-01 -1.0840565809673240e-01 -2.0095397513023169e-01 2.8948112011028304e-01 0 1 0 0 0 0 V -198 0 1.7867279747272754e-05 2.0984784447927264e-05 -4.1793476201421308e-06 4.2942414737502279e-05 0 2 0 P 646 22 7.0944179058048631e-02 9.3968332559972556e-02 3.6380828723828224e-02 1.2323428404853332e-01 0 1 0 0 0 0 P 647 22 2.8885762440879737e-03 -7.2531483166414414e-03 -5.3651098990213968e-02 5.4216164158660714e-02 0 1 0 0 0 0 V -199 0 1.4005375815440877e+01 4.4341640451919268e-01 8.8660759690723285e+00 1.9835729837408515e+01 0 2 0 P 648 22 1.7695287335269216e-01 -1.0950926657826081e-01 -1.2290754063684729e-02 2.0846021560416864e-01 0 1 0 0 0 0 P 649 22 8.7092397914755489e-03 -3.4954816305888071e-02 5.5519690837672699e-02 6.6182521192793470e-02 0 1 0 0 0 0 V -200 0 0 0 0 0 0 3 0 P 650 -211 -5.9320690949669956e-02 -4.3134013115978648e-01 4.1045566112812413e+00 4.1299440690203344e+00 1.3957000000000000e-01 1 0 0 0 0 P 651 211 6.7698093634906947e-02 -3.2900657683967210e-01 3.8031052824105913e+00 3.8204604347493123e+00 1.3957000000000000e-01 1 0 0 0 0 P 652 111 -1.4438558598431975e-01 -2.6527363147388155e-01 4.6159302959743647e+00 4.6277693757024414e+00 1.3497999999999999e-01 2 0 0 -260 0 V -201 0 2.7544080057078986e+01 -3.8482317143145480e+01 9.9619084125288032e+02 9.9934140324024452e+02 0 2 0 P 653 22 7.1479503099555391e-02 -1.2545290851927371e-01 1.4744723717752017e+00 1.4815250678769138e+00 0 1 0 0 0 0 P 654 22 -1.7539763436304295e-02 -8.1303599567841611e-02 2.2351659586234409e+00 2.2367129411690572e+00 0 1 0 0 0 0 V -202 0 1.1686447490301045e-06 -9.0029407944784866e-07 4.7631589032355061e-04 4.7632771562815149e-04 0 2 0 P 655 22 3.6921172160159103e-02 -6.8858017121594756e-02 6.1693463509563875e+00 6.1698410836531670e+00 0 1 0 0 0 0 P 656 22 1.5401860569045630e-02 2.8549688500810799e-02 1.5156460263520115e+01 1.5156494978117028e+01 0 1 0 0 0 0 V -203 0 3.5111157077053841e-06 -2.1535657309569616e-04 5.8910357860840340e-02 5.8910821535762402e-02 0 2 0 P 657 22 2.0598089244521313e-02 -1.8741328549734354e-01 3.4004242359914798e+01 3.4004765055690129e+01 0 1 0 0 0 0 P 658 22 -1.5377104576138575e-02 -1.3281921606919889e-01 5.3594715010075689e+01 5.3594881793047492e+01 0 1 0 0 0 0 V -204 0 1.6119169217993160e-05 -6.4065019042349773e-05 2.1790213889603911e-02 2.1790321413797113e-02 0 2 0 P 659 22 1.4135610352345615e-01 -4.1975126311275562e-01 1.5024710904877404e+02 1.5024776188078502e+02 0 1 0 0 0 0 P 660 22 -2.0069197143681185e-02 -6.2298888587021317e-02 1.3710945878370634e+01 1.3711102100261735e+01 0 1 0 0 0 0 V -205 0 3.4055205248035588e-04 2.4264072931213100e-04 1.3858653990110756e-01 1.3858719257410426e-01 0 2 0 P 661 22 8.6137670295480570e-02 6.5932267509471995e-02 5.4636831924504186e+01 5.4636939605990584e+01 0 1 0 0 0 0 P 662 22 5.0467057217738476e-01 3.5501408061304740e-01 1.8579064303276971e+02 1.8579166764393366e+02 0 1 0 0 0 0 V -206 0 -2.3779620067280013e-05 -3.8679516956822815e-05 2.0949470435178159e-02 2.0949534283467804e-02 0 2 0 P 663 22 -1.2514607527675747e-01 -1.2567957315564515e-01 5.4860369388361583e+01 5.4860656087242937e+01 0 1 0 0 0 0 P 664 22 -4.4315729244678572e-03 -8.5089178684964226e-02 5.9295496112057620e+01 5.9295557329214880e+01 0 1 0 0 0 0 V -207 0 1.4961553365268749e-05 1.1277723486520870e-05 8.3151699381491390e-03 8.3152302568135217e-03 0 2 0 P 665 22 4.2228196488946566e-02 -3.6278068024970224e-02 9.3048184202382593e+00 9.3049849625028180e+00 0 1 0 0 0 0 P 666 22 3.6856576418205882e-02 9.5890608184842976e-02 3.4648059345077463e+01 3.4648211639217017e+01 0 1 0 0 0 0 V -208 0 -5.0926895469349665e-05 -1.5420061005676789e-05 1.3607756781029955e-02 1.3607863311142372e-02 0 2 0 P 667 22 -7.0847720515896395e-01 -2.6224476264903640e-01 1.9335323331389094e+02 1.9335470913634794e+02 0 1 0 0 0 0 P 668 22 -1.2540055030710459e-01 9.7564508825659282e-03 2.9460381710467761e+01 2.9460650213680189e+01 0 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 669 211 5.6154058596367247e-02 8.5410669311120380e-01 2.7700320048123075e+01 2.7713892943339147e+01 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 -1.7999075957324759e-01 -1.4815829981645769e-02 2.8625492632980833e+00 2.8716344217288872e+00 1.3957000000000000e-01 1 0 0 0 0 V -210 0 0 0 0 0 0 2 0 P 671 -211 -1.6255665976462447e-01 6.2977981894397558e-02 1.4282236995002620e+01 1.4283982787029631e+01 1.3957000000000000e-01 1 0 0 0 0 P 672 211 -5.8847693126425391e-02 1.3397674960820039e-01 8.5107319934496339e-01 8.7476750966479777e-01 1.3957000000000000e-01 1 0 0 0 0 V -211 0 -2.6367726731787278e-04 3.5753324433513420e-04 3.6021551340286260e-03 3.6304173003426118e-03 0 2 0 P 673 22 -3.9593620204348307e-01 5.3990636076384957e-01 5.6174704019894053e+00 5.6572288332459122e+00 0 1 0 0 0 0 P 674 22 -2.7874894192765422e-02 3.4760381515092573e-02 1.7230939850166022e-01 1.7797702846529553e-01 0 1 0 0 0 0 V -212 0 1.1696248145292209e-04 -8.9785990465687042e-05 2.1282130292072910e-03 2.1337858515911830e-03 0 2 0 P 675 22 8.7132867772897554e-02 -4.8053003022034503e-02 2.3341099391053546e+00 2.3362299620491487e+00 0 1 0 0 0 0 P 676 22 2.6504283623963137e-01 -2.2229389805190436e-01 4.0739699215411838e+00 4.0886297464768484e+00 0 1 0 0 0 0 V -213 0 -3.7206496471483597e-06 -3.2946416217925135e-05 1.1145100203532364e-03 1.1152707028833260e-03 0 2 0 P 677 22 4.8957738864203799e-02 -1.3469706381322716e-01 3.7797188020844694e+00 3.7824349805416952e+00 0 1 0 0 0 0 P 678 22 -6.9514617794694006e-02 -4.7334450469369835e-02 2.3780358182086192e+00 2.3795224699446562e+00 0 1 0 0 0 0 V -214 0 -1.3828651310754573e-04 1.0394717231056341e-04 8.7847024166355526e-03 8.7864500318368989e-03 0 2 0 P 679 22 -2.7268403890992321e-01 1.5457780216501227e-01 1.3347024043551068e+01 1.3350704164991775e+01 0 1 0 0 0 0 P 680 22 -3.9590344688106943e-01 3.4798587543783627e-01 2.9125245812531791e+01 2.9130015059198946e+01 0 1 0 0 0 0 V -215 0 3.9737316697985208e-05 -3.1512760556527980e-05 1.0451400407140619e-02 1.0451641076245610e-02 0 2 0 P 681 22 1.9361433310172406e-02 -5.0877965600799560e-02 2.0646885643710629e+01 2.0646957408222345e+01 0 1 0 0 0 0 P 682 22 8.8812675944575634e-02 -3.4907011509479551e-02 7.8042284085995650e+00 7.8048118007068856e+00 0 1 0 0 0 0 V -216 0 1.6083369879784490e-04 1.2297601434467373e-04 4.1118958294963743e-03 4.1169387667918901e-03 0 2 0 P 683 22 8.5519295125857320e-01 6.7877996615271907e-01 2.2777561628212354e+01 2.2803714849851644e+01 0 1 0 0 0 0 P 684 22 1.0903023294669741e-01 5.8480477514222300e-02 1.8738971112946228e+00 1.8779770876304733e+00 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 685 310 1.5226849042927109e-02 -1.9724145852395480e-01 1.5071398814187278e+01 1.5080910904022943e+01 4.9767000000000000e-01 2 0 0 -261 0 V -218 0 3.9737632039605663e-06 6.7915734443202277e-06 3.5461155547851313e-04 3.5471321042835984e-04 0 2 0 P 686 22 8.3949962169191664e-02 4.7876419035157269e-02 2.8171793127504379e+00 2.8188364670262205e+00 0 1 0 0 0 0 P 687 22 8.4078162033244752e-02 2.3930107183667493e-01 1.2177351420277626e+01 1.2179992682807759e+01 0 1 0 0 0 0 V -219 0 0 0 0 0 0 2 0 P 688 211 5.8473262500607104e-01 -2.1382341365921917e-01 2.2315840001163576e+02 2.2315931217010217e+02 1.3957000000000000e-01 1 0 0 0 0 P 689 -211 2.4137603860128740e-01 -3.5396307970903390e-01 5.2374387915352429e+01 5.2376326155492450e+01 1.3957000000000000e-01 1 0 0 0 0 V -220 0 1.9420301639207131e-03 -4.2615828848204261e-04 3.4211520020639297e-01 3.4212098398086827e-01 0 2 0 P 690 22 2.1889651600528888e+00 -4.2442009795905744e-01 3.7679626765736219e+02 3.7680286493259308e+02 0 1 0 0 0 0 P 691 22 1.7738151917708360e+00 -4.4517076820650670e-01 3.2130174267482141e+02 3.2130694739333688e+02 0 1 0 0 0 0 V -221 0 0 0 0 0 0 2 0 P 692 22 -1.5972996427141742e-02 1.0237069016640859e+01 1.0353185855460930e+01 1.4559749123724606e+01 0 1 0 0 0 0 P 693 22 -2.6676480387106410e-01 3.8263154267354182e+00 4.1840529886702083e+00 5.6761036475259967e+00 0 1 0 0 0 0 V -222 0 -1.4237492398816056e-05 9.4938134131344220e-05 1.3013416001900476e-04 1.6192388288525936e-04 0 2 0 P 694 22 -2.2864877562107205e-01 1.1199410697898315e+00 1.5468835025966969e+00 1.9233816139811759e+00 0 1 0 0 0 0 P 695 22 -3.5678620053381264e-03 4.2852081331109831e-01 5.7563331661954686e-01 7.1763258864304214e-01 0 1 0 0 0 0 V -223 0 1.0565047499440006e-05 3.0237992289637210e-05 1.9935111415425152e-05 3.8006991778840689e-05 0 2 0 P 696 22 2.5413749773942190e-01 6.1772184638609506e-01 3.5435621908366582e-01 7.5613125663681702e-01 0 1 0 0 0 0 P 697 22 5.5831233330382049e-02 2.6943290617078330e-01 2.3052152893422312e-01 3.5895876203959354e-01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 2 0 P 698 22 2.1454203755931983e-01 1.0321808253108171e+00 4.1970716525489088e-01 1.1347156677272594e+00 0 1 0 0 0 0 P 699 22 -2.6637195120425010e-03 8.6022762259028873e-01 9.0551847851725642e-01 1.2489845367358179e+00 0 1 0 0 0 0 V -225 0 -4.2120451769371983e-05 -3.4591352235277405e-05 8.1345059976146026e-05 9.9547687542015075e-05 0 2 0 P 700 22 -1.0321337447695487e-01 -3.5756835840041593e-02 8.8519409160544127e-02 1.4059600911243403e-01 0 1 0 0 0 0 P 701 22 -2.1360824822240762e-01 -2.2443240444998988e-01 5.2334187953910960e-01 6.0818180732029259e-01 0 1 0 0 0 0 V -226 0 -7.8592709552562399e-05 -2.5717188966982581e-04 4.9520761432693731e-04 5.6407378346250148e-04 0 2 0 P 702 22 -1.6150096434730331e-02 -1.9248535888771037e-01 3.9952214942657865e-01 4.4376726657496401e-01 0 1 0 0 0 0 P 703 22 -4.0501324679488515e-01 -1.1856497563749031e+00 2.2542010219727850e+00 2.5789965727651420e+00 0 1 0 0 0 0 V -227 0 -2.7983408209541387e-04 -1.1994536956693141e-03 1.5110904742185126e-03 1.9499562363890172e-03 0 2 0 P 704 22 -5.0285241214499732e-01 -2.0414164271696889e+00 2.4810203865157758e+00 3.2520307095452203e+00 0 1 0 0 0 0 P 705 22 -3.5502172483341138e-01 -1.6356921520026952e+00 2.1514583550282866e+00 2.7258580840990092e+00 0 1 0 0 0 0 V -228 0 -7.4954062610745623e-05 -2.7147944644290758e-04 4.8038973051194083e-04 5.6002638095686852e-04 0 2 0 P 706 22 -6.3033500963055919e-02 -6.8039820161553605e-02 1.9324945595718507e-01 2.1435482639545150e-01 0 1 0 0 0 0 P 707 22 -1.0710602861546034e-01 -5.4819609419981752e-01 8.9719554351018593e-01 1.0568587901684166e+00 0 1 0 0 0 0 V -229 0 -5.4045676649993328e-05 -1.7232105015181572e-04 3.0314692064518960e-04 3.5293175382277732e-04 0 2 0 P 708 22 -9.6150638751750339e-02 -2.1494968999096606e-01 3.5844977125370747e-01 4.2887591803622788e-01 0 1 0 0 0 0 P 709 22 -9.6470308991622111e-01 -3.1675119593546124e+00 5.5919714471418027e+00 6.4987636308760752e+00 0 1 0 0 0 0 V -230 0 4.7550273947176308e-05 6.9625232872325100e-05 1.6988342844725870e-03 1.7013632411148956e-03 0 2 0 P 710 22 1.5688588593720798e-01 1.2577742008751666e-01 3.2100292969651267e+00 3.2163210704133069e+00 0 1 0 0 0 0 P 711 22 9.3760401003433452e-03 1.1767071085334042e-01 2.7300302801639886e+00 2.7325811308967500e+00 0 1 0 0 0 0 V -231 0 -3.3718841457711030e-05 -4.6964750972970473e-06 2.6152084886437284e-04 2.6391278443073141e-04 0 2 0 P 712 22 -4.2964307118264267e-01 -9.5286596113017194e-02 3.2227465836582301e+00 3.2526555683771456e+00 0 1 0 0 0 0 P 713 22 -3.0616869859295088e-02 3.1180023706077632e-02 3.4699559240420957e-01 3.4973636892127896e-01 0 1 0 0 0 0 V -232 0 -7.9561386773289726e-05 -3.6763478224431647e-05 1.0209231669094960e-03 1.0250472167228721e-03 0 2 0 P 714 22 -2.8844847018439013e-01 -7.7897183381563456e-02 3.7744764751751938e+00 3.7862835541968396e+00 0 1 0 0 0 0 P 715 22 -1.0210230281854944e-01 -1.0256730348995970e-01 1.2370290827818660e+00 1.2454661310666770e+00 0 1 0 0 0 0 V -233 0 -4.2832524122729009e-05 -1.7017101373567921e-06 5.6320378507886289e-04 5.6504182668611785e-04 0 2 0 P 716 22 -2.7846577304933556e-01 3.0446116269379576e-02 4.0529150993184757e+00 4.0625842705154493e+00 0 1 0 0 0 0 P 717 22 -9.7687680599921528e-02 -4.5390464247626293e-02 8.9311722552716188e-01 8.9958965963318105e-01 0 1 0 0 0 0 V -234 0 1.6058522814828250e-04 -3.3401578661164827e-04 4.3401412065586533e-04 5.7219252573040313e-04 0 2 0 P 718 22 5.2969246374233347e-01 -1.0378166230430368e+00 1.3441634174915877e+00 1.7788796311534236e+00 0 1 0 0 0 0 P 719 22 -1.1510578122765447e-03 -6.1544603978034247e-02 8.4326837621593320e-02 1.0440344226201949e-01 0 1 0 0 0 0 V -235 0 -5.4816565094665739e+00 1.5266917597822353e+01 -1.0596830814819258e+01 2.8157342232689960e+01 0 2 0 P 720 -2212 -3.2212365322328107e-01 7.9798334387735237e-01 -4.7587449531930193e-01 1.3591718777501960e+00 9.3827000000000005e-01 1 0 0 0 0 P 721 211 2.2782076905894805e-02 3.5710480488979832e-02 -1.0279584540683154e-01 1.7844055642651735e-01 1.3957000000000000e-01 1 0 0 0 0 V -236 0 -6.2647597995167691e-05 1.2369215817173329e-04 -1.8606148345677009e-04 2.4040597595745779e-04 0 2 0 P 722 22 -1.0128556552644449e-01 2.5726032504250879e-01 -3.9426199548821478e-01 4.8154352005954570e-01 0 1 0 0 0 0 P 723 22 -3.3233123770212161e-02 8.3349655354274816e-03 -5.2544693749211118e-03 3.4662971805876512e-02 0 1 0 0 0 0 V -237 0 -9.6315378154236686e-05 2.4661424573788748e-04 -2.6523112584521348e-04 3.7489945518498252e-04 0 2 0 P 724 22 -6.9345146194703569e-02 2.0425843136285871e-01 -1.7398812003000899e-01 2.7713195772981014e-01 0 1 0 0 0 0 P 725 22 -1.1885741400023737e+00 3.0166271832671878e+00 -3.2900417669333959e+00 4.6192123654661223e+00 0 1 0 0 0 0 V -238 0 0 0 0 0 0 2 0 P 726 22 -1.7309997530958060e-01 3.9585729606989750e-01 1.2880268394048611e-01 4.5084002893955721e-01 0 1 0 0 0 0 P 727 22 -2.9069847695645534e-01 2.9562715532753896e+00 -2.1501727336396811e-01 2.9783014503328844e+00 0 1 0 0 0 0 V -239 0 8.5309808650921194e-07 9.8088296317447914e-06 6.6942251638084617e-06 1.2141573478356716e-05 0 2 0 P 728 22 -6.3386958097898412e-03 -4.1377490458362693e-03 -2.6043999828752962e-03 8.0051815098825477e-03 0 1 0 0 0 0 P 729 22 5.4722223940105445e-02 5.6044632823272988e-01 3.8226793064336267e-01 6.8060515676922295e-01 0 1 0 0 0 0 V -240 0 5.9675324729341589e-05 9.6757635032765571e-05 9.0076976208028974e-05 1.4804084168677030e-04 0 2 0 P 730 22 1.1258847457973256e-01 1.4873902471158709e-01 2.2952235321948686e-01 2.9577013491520082e-01 0 1 0 0 0 0 P 731 22 1.5909216991435263e-01 2.9176426143978523e-01 1.8056625645745453e-01 3.7820745068364242e-01 0 1 0 0 0 0 V -241 0 2.7821880830092862e-05 5.1432299050820773e-05 2.8554601404924262e-05 7.6591684557645798e-05 0 2 0 P 732 22 1.5283182153061725e-03 1.2169698437775822e-01 9.0241899614205548e-02 1.5151268002773868e-01 0 1 0 0 0 0 P 733 22 9.1443515790564020e-02 5.0173321555013750e-02 5.1784523790692882e-03 1.0443225146018939e-01 0 1 0 0 0 0 V -242 0 1.2506999929268379e-04 4.8862628240557200e-05 1.3660266528873083e-04 1.9542371983951660e-04 0 2 0 P 734 22 2.7912344134922890e-01 1.4226863291759262e-01 3.8935167465252446e-01 4.9974492091226147e-01 0 1 0 0 0 0 P 735 22 1.5675483338344426e-01 2.8021270471284585e-02 8.6718801134388290e-02 1.8132131661247625e-01 0 1 0 0 0 0 V -243 0 -2.4279808781312289e-04 -1.2900003968812488e-04 1.3518305098158372e-03 1.3813561153474029e-03 0 2 0 P 736 22 -3.4001850797418431e-01 -1.2005670123942619e-01 1.5621504164449762e+00 1.6032280314654854e+00 0 1 0 0 0 0 P 737 22 -1.1857599678191995e-01 -1.2359723297041310e-01 9.9117300033721667e-01 1.0058630421723667e+00 0 1 0 0 0 0 V -244 0 5.5379846630181398e-07 -3.4089891816274275e-07 1.2103661359330946e-06 1.3753711817111423e-06 0 2 0 P 738 22 1.8269443277655786e-01 -1.7175321680953318e-01 4.4908734320074317e-01 5.1434994417718438e-01 0 1 0 0 0 0 P 739 22 1.0372007537408530e+00 -5.7917148714059130e-01 2.2170807901428651e+00 2.5152877062272112e+00 0 1 0 0 0 0 V -245 0 5.1431690115254594e-04 -7.4002227603719984e-05 2.4988595517616312e-03 2.5547963256206379e-03 0 2 0 P 740 22 2.7082624329156402e-01 -9.9347780643611050e-02 1.5111917956904122e+00 1.5384789497865239e+00 0 1 0 0 0 0 P 741 22 3.4551428279150420e-01 1.0665935286427891e-02 1.4833596322115408e+00 1.5231052755023928e+00 0 1 0 0 0 0 V -246 0 4.8088955548309474e-06 -5.0210828006941363e-06 2.4184897152300527e-05 2.5251164129008689e-05 0 2 0 P 742 22 -1.3743088723978134e-03 -5.9862814869857894e-02 2.0858780875757421e-01 2.1701225608547087e-01 0 1 0 0 0 0 P 743 22 3.1169541458945438e-01 -2.6415086952863281e-01 1.3520790721056819e+00 1.4124615147234938e+00 0 1 0 0 0 0 V -247 0 8.1318418445865871e-05 -4.4700789249176480e-05 2.3491302510833992e-04 2.5407738654873910e-04 0 2 0 P 744 22 8.7935531661978705e-02 -2.1003728378777804e-02 3.7780811520173602e-01 3.8847494931690590e-01 0 1 0 0 0 0 P 745 22 3.1012901517436170e-01 -1.9781262043579761e-01 7.7212259757959623e-01 8.5526787882496769e-01 0 1 0 0 0 0 V -248 0 1.0463320087241459e-04 -4.0655614465330800e-05 2.4040790966829308e-04 2.6719640207682407e-04 0 2 0 P 746 22 4.5591354767311194e-02 -4.1577653301624322e-02 2.4416194933839697e-01 2.5183790498714614e-01 0 1 0 0 0 0 P 747 22 4.0170793448365494e-01 -1.3222212824742799e-01 7.8356430034463476e-01 8.9040719258100165e-01 0 1 0 0 0 0 V -249 0 8.8226546218494350e-06 5.0152237837045282e-05 -1.9266147303617368e-05 5.8722576344207613e-05 0 2 0 P 748 22 8.3229418669151331e-02 1.1398498258356730e-01 -7.4426663747687735e-02 1.5955889402722861e-01 0 1 0 0 0 0 P 749 22 -2.9102355614281320e-02 1.9369943396673678e-01 -4.3771317996350145e-02 2.0070462401367811e-01 0 1 0 0 0 0 V -250 0 3.4699066283239078e-05 3.6184531743563818e-05 -5.4749964825027645e-05 7.5061875281696547e-05 0 2 0 P 750 22 1.9881620798370489e-01 1.7742120707573292e-01 -3.8521036736439718e-01 4.6839427451906768e-01 0 1 0 0 0 0 P 751 22 2.2284455036543424e-01 2.6229082929308417e-01 -2.8010758382385115e-01 4.4375266903362076e-01 0 1 0 0 0 0 V -251 0 8.6530406876471127e-06 1.4272276402486673e-05 -9.5580537984781157e-06 2.0897811056453108e-05 0 2 0 P 752 22 3.6787224652442080e-02 7.8126668397736479e-02 -1.2561743963327943e-01 1.5243627308675492e-01 0 1 0 0 0 0 P 753 22 1.0613023366204316e-01 1.5760057956460269e-01 -3.2247616665565047e-02 1.9272124417631745e-01 0 1 0 0 0 0 V -252 0 1.0000306872313916e-05 4.5831566263180926e-06 -1.6558738541580109e-05 2.1548667282246579e-05 0 2 0 P 754 22 1.4502344348367543e-01 1.8209973865425080e-02 -1.1768537853378154e-01 1.8765194011435565e-01 0 1 0 0 0 0 P 755 22 1.7311674600794545e-02 5.6188470265601559e-02 -1.5111285044049538e-01 1.6214787028056737e-01 0 1 0 0 0 0 V -253 0 -2.2771871015155675e-06 2.3841350401254039e-06 -2.0768743206808245e-05 2.1354545311347641e-05 0 2 0 P 756 22 -1.5622003147773237e-02 7.0818280110131124e-02 -6.2389879321907959e-01 6.2809949845572233e-01 0 1 0 0 0 0 P 757 22 -6.7101817760465490e-02 1.5790659466739305e-02 -1.3057140046230675e-01 1.4765124277106959e-01 0 1 0 0 0 0 V -254 0 -3.1490932179167173e-02 -5.1584624971641950e-02 -9.7088382937427942e-02 1.3477582894820969e-01 0 1 0 P 758 310 -7.0570496381954873e-01 3.4867675030012105e-02 -1.1691757523150772e+00 1.4539197431161996e+00 4.9767000000000000e-01 2 0 0 -262 0 V -255 0 -3.1490932179167173e-02 -5.1584624971641950e-02 -9.7088382937427942e-02 1.3477582894820969e-01 0 2 0 P 759 211 -7.3695149808911731e-02 -1.3402454920161233e+00 -1.0164320083727345e+00 1.6894681904432320e+00 1.3957000000000000e-01 1 0 0 0 0 P 760 111 -4.6045380238018713e-02 -4.6766857340268080e-02 -3.5928890183462836e-01 3.8937826257802571e-01 1.3497999999999999e-01 2 0 0 -263 0 V -256 0 7.3956102831979615e+00 7.9437607385375797e+00 -1.1246070954363650e+02 1.1313883955513666e+02 0 2 0 P 761 22 4.4722101536101490e-02 8.4570359503501946e-02 -4.1476792420596764e-01 4.2565789435000984e-01 0 1 0 0 0 0 P 762 22 -5.5427782871742590e-02 4.2402255613087463e-02 -8.2271172631045153e-01 8.2566626127260256e-01 0 1 0 0 0 0 V -257 0 7.3956193014308038e+00 7.9437495837676781e+00 -1.1246063592296078e+02 1.1313876452988825e+02 0 2 0 P 763 22 5.2882567208117737e-01 3.7966426852513180e-01 -6.2344643645725704e+00 6.2683608273114029e+00 0 1 0 0 0 0 P 764 22 1.0235497449448852e-01 1.5982505438141772e-01 -1.9632387184774043e+00 1.9723911515063617e+00 0 1 0 0 0 0 V -258 0 5.2122957529466461e+01 1.3839549678597399e+02 -7.1058765932160225e+02 7.3038266012897282e+02 0 2 0 P 765 211 3.9633252278936232e-01 6.5814572223751533e-01 -3.1212531760171358e+00 3.2174425300255449e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 -211 -7.8328491781782070e-02 1.8621016118211142e-01 -1.2140675877895626e+00 1.2386482427927001e+00 1.3957000000000000e-01 1 0 0 0 0 V -259 0 5.0006733473232670e-06 3.1638754707166246e-05 -1.1858846662411516e-04 1.2436058600966889e-04 0 2 0 P 767 22 -2.1943928724983314e-02 6.3774695923043148e-02 -4.4880327244452450e-01 4.5384262162656991e-01 0 1 0 0 0 0 P 768 22 5.6739427562046661e-02 1.5637290744093427e-01 -3.7635457449167908e-01 4.1147857120682801e-01 0 1 0 0 0 0 V -260 0 -6.5465710126283981e-06 -1.2027742619752774e-05 2.0929038910588155e-04 2.0982718352088948e-04 0 2 0 P 769 22 -8.7845261496919999e-02 -2.5921996107250217e-01 3.8873896826664205e+00 3.8970130001178123e+00 0 1 0 0 0 0 P 770 22 -5.6540324487399748e-02 -6.0536704013793609e-03 7.2854061330794417e-01 7.3075637558462991e-01 0 1 0 0 0 0 V -261 0 1.2879540246569746e-01 -1.6683552166240216e+00 1.2748053589563509e+02 1.2756099334518493e+02 0 2 0 P 771 111 1.5486690058438002e-02 5.2984191762495735e-03 1.1679100060680732e+01 1.1679891512279015e+01 1.3497999999999999e-01 2 0 0 -264 0 P 772 111 -2.5984101551089207e-04 -2.0253987770020437e-01 3.3922987535065463e+00 3.4010193917439278e+00 1.3497999999999999e-01 2 0 0 -265 0 V -262 0 -2.9431506109234064e+01 1.4010198310359798e+00 -4.8805524096161840e+01 6.0705785961117471e+01 0 2 0 P 773 111 -2.1012911995754874e-01 1.4944581999489606e-01 -6.6152992736414795e-01 7.2272383755241920e-01 1.3497999999999999e-01 2 0 0 -266 0 P 774 111 -4.9557584386199993e-01 -1.1457814496488396e-01 -5.0764582495092925e-01 7.3119590556378034e-01 1.3497999999999999e-01 2 0 0 -267 0 V -263 0 -3.1509172874482128e-02 -5.1603151477258198e-02 -9.7230713815238762e-02 1.3493007960730377e-01 0 2 0 P 775 22 -5.5153105879000255e-02 1.8856671973286575e-02 -6.3230267178885038e-02 8.5997127007368862e-02 0 1 0 0 0 0 P 776 22 9.1077256409815410e-03 -6.5623529313554654e-02 -2.9605863465574334e-01 3.0338113557065682e-01 0 1 0 0 0 0 V -264 0 1.2880781430731211e-01 -1.6683509701943859e+00 1.2748989613591934e+02 1.2757035421977980e+02 0 2 0 P 777 22 -2.2471377469191509e-02 5.6702409766383015e-02 3.4166930402627300e+00 3.4172374013899671e+00 0 1 0 0 0 0 P 778 22 3.7958067527629508e-02 -5.1403990590133439e-02 8.2624070204180011e+00 8.2626541108890486e+00 0 1 0 0 0 0 V -265 0 1.2879536737153366e-01 -1.6683825716881557e+00 1.2748099405997792e+02 1.2756145268733837e+02 0 2 0 P 779 22 1.9422764538081717e-02 -8.2397705274271024e-03 7.3195356216309584e-02 7.6175440742268577e-02 0 1 0 0 0 0 P 780 22 -1.9682605553592608e-02 -1.9430010717277729e-01 3.3191033972902368e+00 3.3248439510016592e+00 0 1 0 0 0 0 V -266 0 -2.9431531911104699e+01 1.4010381815707136e+00 -4.8805605325786793e+01 6.0705874704776441e+01 0 2 0 P 781 22 -6.1327721406954812e-02 5.2765528209044565e-02 -7.6390841338848950e-02 1.1126927258055448e-01 0 1 0 0 0 0 P 782 22 -1.4880139855059391e-01 9.6680291785851483e-02 -5.8513908602529907e-01 6.1145456497186468e-01 0 1 0 0 0 0 V -267 0 -2.9431518876555799e+01 1.4010168792051780e+00 -4.8805537174437660e+01 6.0705804798624371e+01 0 2 0 P 783 22 -3.7572069582685225e-01 -7.0169383350283429e-02 -4.5158642858440357e-01 5.9162495393111147e-01 0 1 0 0 0 0 P 784 22 -1.1985514803514770e-01 -4.4408761614600535e-02 -5.6059396366525682e-02 1.3957095163266900e-01 0 1 0 0 0 0 E 7 36 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 234 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 -5.9825797468331299e-01 2.1057599620288889e+00 -1.1130013011089770e+00 2.4557910168064354e+00 0 3 0 0 -3 0 P 13 2212 6.2630429345101724e-01 -9.7918698736022214e-01 2.3235439427241286e+03 2.3235444228989481e+03 9.3827000000000005e-01 1 0 0 0 0 P 23 1 -2.8046318767704193e-02 -1.1265729746686668e+00 1.7640448834445783e+03 1.7640452742660148e+03 3.3000000000000002e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 -3.2480506284443372e-01 3.0570270664329768e-01 -4.1708759460152050e+03 4.1708759698654085e+03 0 3 0 0 -4 0 P 79 2101 3.2480506284443372e-01 -3.0570270664329768e-01 -1.1188399554051284e+03 1.1188401943024180e+03 5.7933000000000001e-01 2 0 0 -67 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 -5.9825797468331277e-01 2.1057599620288885e+00 -1.1130013011089772e+00 2.4557910168064354e+00 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 1 0 P 6 2 -3.2480506284443372e-01 3.0570270664329757e-01 -4.1708759460152050e+03 4.1708759698654076e+03 0 3 0 0 -5 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -1.0846034501725144e+00 3.5855419588423358e+00 -4.1711080688949960e+03 4.1718551078160999e+03 7.8857375904520865e+01 3 0 0 -6 0 P 8 22 1.6154041264476787e-01 -1.1740792901701496e+00 -8.8087842131741600e-01 1.4766530661148489e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -1.0846034501725144e+00 3.5855419588423358e+00 -4.1711080688949960e+03 4.1718551078160999e+03 7.8857375904520865e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 1.6154041264476787e-01 -1.1740792901701496e+00 -8.8087842131741600e-01 1.4766530661149040e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 2 0 P 11 -11 -3.2830122648724142e+01 -9.6244405708320038e+00 -1.0490728469009682e+03 1.0496305468661790e+03 5.1000000000000004e-04 1 0 0 0 0 P 12 12 3.1745519198551634e+01 1.3209982529674340e+01 -3.1220352219940278e+03 3.1222245609499196e+03 0 1 0 0 0 0 V -9 0 0 0 0 0 2 1 0 P 84 21 -1.5095414782450237e-01 -3.0695876386907522e-01 -1.7499650096797641e+01 1.7502993011134159e+01 0 2 0 0 -9 0 P 85 21 1.5095414782450237e-01 3.0695876386907522e-01 -3.7823444362307561e+00 3.7977809667945843e+00 0 2 0 0 -9 0 P 86 91 0 0 -2.1281994533028396e+01 2.1300773977928742e+01 8.9424870978700199e-01 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 87 223 0 0 -1.8710836063688248e+01 1.8727346692631045e+01 7.8621113181013325e-01 2 0 0 -76 0 P 144 21 0 0 -2.5711584693401472e+00 2.5734272852976976e+00 1.0803757797686875e-01 2 0 0 -77 0 V -11 0 0 0 0 0 0 1 0 P 88 1 -2.8046318767704193e-02 -1.1265729746686668e+00 1.7640448834445783e+03 1.7640452742660148e+03 3.3000000000000002e-01 2 0 0 -77 0 V -12 0 0 0 0 0 1 1 0 P 24 21 2.5672200545005103e-01 1.2049082951230927e-01 1.6926007250045680e+02 1.6926031007618997e+02 0 2 0 0 -12 0 P 89 21 2.5672200545005103e-01 1.2049082951230927e-01 1.6926007250045680e+02 1.6926031007618997e+02 0 2 0 0 -77 0 V -13 0 0 0 0 0 1 1 0 P 25 21 8.4703015267269799e-01 3.2669351485034098e-01 4.2231814962597008e+02 4.2231912541611877e+02 0 2 0 0 -13 0 P 90 21 8.4703015267269799e-01 3.2669351485034098e-01 4.2231814962597008e+02 4.2231912541611877e+02 0 2 0 0 -77 0 V -14 0 0 0 0 0 1 1 0 P 26 21 -2.5672200545005103e-01 -1.2049082951230927e-01 8.3650538789565189e+01 8.3651019503725294e+01 0 2 0 0 -14 0 P 91 21 -2.5672200545005103e-01 -1.2049082951230927e-01 8.3650538789565189e+01 8.3651019503725294e+01 0 2 0 0 -77 0 V -15 0 0 0 0 0 1 1 0 P 27 21 -2.5614725499358548e-01 -1.3012858538031083e-01 4.5471610108293625e+01 4.5472517751996591e+01 0 2 0 0 -15 0 P 92 21 -2.5614725499358548e-01 -1.3012858538031083e-01 4.5471610108293625e+01 4.5472517751996591e+01 0 2 0 0 -77 0 V -16 0 0 0 0 0 1 1 0 P 28 21 -5.8824258421725748e+00 -1.5389219389384763e+00 7.8526823543156377e+02 7.8529177557919490e+02 0 2 0 0 -16 0 P 93 21 -5.8824258421725748e+00 -1.5389219389384763e+00 7.8526823543156377e+02 7.8529177557919490e+02 0 2 0 0 -77 0 V -17 0 0 0 0 0 1 1 0 P 29 21 -7.5587866153434635e-01 4.3334422249465859e-01 9.8056095019454105e+01 9.8059965889400274e+01 0 2 0 0 -17 0 P 94 21 -7.5587866153434635e-01 4.3334422249465859e-01 9.8056095019454105e+01 9.8059965889400274e+01 0 2 0 0 -77 0 V -18 0 0 0 0 0 1 1 0 P 30 21 5.8824258421725748e+00 1.5389219389384763e+00 5.3628540776189800e+02 5.3631987637310999e+02 0 2 0 0 -18 0 P 95 21 5.8824258421725748e+00 1.5389219389384763e+00 5.3628540776189800e+02 5.3631987637310999e+02 0 2 0 0 -77 0 V -19 0 0 0 0 0 1 1 0 P 31 21 1.0526582121808259e+00 1.1174124109522687e+00 4.6223697490287705e+01 4.6249182797985220e+01 0 2 0 0 -19 0 P 96 21 1.0526582121808259e+00 1.1174124109522687e+00 4.6223697490287705e+01 4.6249182797985220e+01 0 2 0 0 -77 0 V -20 0 0 0 0 0 1 1 0 P 32 21 7.4841078080504264e-01 8.3638624844636589e-01 2.7081823712442088e+01 2.7105070305114612e+01 0 2 0 0 -20 0 P 97 21 7.4841078080504264e-01 8.3638624844636589e-01 2.7081823712442088e+01 2.7105070305114612e+01 0 2 0 0 -77 0 V -21 0 0 0 0 0 1 1 0 P 33 21 1.6107077233171159e+00 1.8893465517052777e+00 7.1677080609676537e+01 7.1720066191327945e+01 0 2 0 0 -21 0 P 98 21 1.6107077233171159e+00 1.8893465517052777e+00 7.1677080609676537e+01 7.1720066191327945e+01 0 2 0 0 -77 0 V -22 0 0 0 0 0 1 1 0 P 34 21 -4.9636507142120523e-01 2.5600622312123722e+00 3.6086349340678190e+01 3.6180449218455983e+01 0 2 0 0 -22 0 P 99 21 -4.9636507142120523e-01 2.5600622312123722e+00 3.6086349340678190e+01 3.6180449218455983e+01 0 2 0 0 -77 0 V -23 0 0 0 0 0 1 1 0 P 35 21 -2.4097308519209211e+00 -7.1042988298161269e-01 8.6350921012386294e+01 8.6387459003519197e+01 0 2 0 0 -23 0 P 100 21 -2.4097308519209211e+00 -7.1042988298161269e-01 8.6350921012386294e+01 8.6387459003519197e+01 0 2 0 0 -77 0 V -24 0 0 0 0 0 1 1 0 P 36 21 -1.6107077233171159e+00 -1.8893465517052777e+00 7.5083579793784679e+01 7.5124616234707148e+01 0 2 0 0 -24 0 P 101 21 -1.6107077233171159e+00 -1.8893465517052777e+00 7.5083579793784679e+01 7.5124616234707148e+01 0 2 0 0 -77 0 V -25 0 0 0 0 0 1 1 0 P 37 21 -6.4585330888425121e+00 -9.9035977117283966e+00 1.7396334674018283e+02 1.7436467505300638e+02 0 2 0 0 -25 0 P 102 21 -6.4585330888425121e+00 -9.9035977117283966e+00 1.7396334674018283e+02 1.7436467505300638e+02 0 2 0 0 -77 0 V -26 0 0 0 0 0 1 1 0 P 38 21 -1.0526582121808259e+00 -1.1174124109522687e+00 2.0710722617877760e+01 2.0767540325288774e+01 0 2 0 0 -26 0 P 103 21 -1.0526582121808259e+00 -1.1174124109522687e+00 2.0710722617877760e+01 2.0767540325288774e+01 0 2 0 0 -77 0 V -27 0 0 0 0 0 1 1 0 P 39 21 -8.4703015267269799e-01 -3.2669351485034098e-01 5.2719781793070926e+00 5.3495740629766155e+00 0 2 0 0 -27 0 P 104 21 -8.4703015267269799e-01 -3.2669351485034098e-01 5.2719781793070926e+00 5.3495740629766155e+00 0 2 0 0 -77 0 V -28 0 0 0 0 0 1 1 0 P 40 21 -4.8975594800000499e-01 2.9727632938791316e-02 2.3615174323990717e+00 2.4119513270972597e+00 0 2 0 0 -28 0 P 105 21 -4.8975594800000499e-01 2.9727632938791316e-02 2.3615174323990717e+00 2.4119513270972597e+00 0 2 0 0 -77 0 V -29 0 0 0 0 0 1 1 0 P 41 21 -8.4744336672053933e-01 -1.9198597882051363e+00 9.3806397349719965e+00 9.6125139117455216e+00 0 2 0 0 -29 0 P 106 21 -8.4744336672053933e-01 -1.9198597882051363e+00 9.3806397349719965e+00 9.6125139117455216e+00 0 2 0 0 -77 0 V -30 0 0 0 0 0 1 1 0 P 42 21 -8.2223734663494874e-01 -1.3135132007943364e+00 4.0717202740116312e+00 4.3566382880220402e+00 0 2 0 0 -30 0 P 107 21 -8.2223734663494874e-01 -1.3135132007943364e+00 4.0717202740116312e+00 4.3566382880220402e+00 0 2 0 0 -77 0 V -31 0 0 0 0 0 1 1 0 P 43 21 -9.1755787463826555e-01 -1.3169454473772977e+00 4.4842884329141484e+00 4.7628878334731031e+00 0 2 0 0 -31 0 P 108 21 -9.1755787463826555e-01 -1.3169454473772977e+00 4.4842884329141484e+00 4.7628878334731031e+00 0 2 0 0 -77 0 V -32 0 0 0 0 0 1 1 0 P 44 21 9.1755787463826555e-01 1.3169454473772977e+00 4.9989485576659707e+00 5.2503089858473251e+00 0 2 0 0 -32 0 P 109 21 9.1755787463826555e-01 1.3169454473772977e+00 4.9989485576659707e+00 5.2503089858473251e+00 0 2 0 0 -77 0 V -33 0 0 0 0 0 1 1 0 P 45 21 7.4813331156756224e-01 -1.1808569117413252e+00 1.1451547952039975e+00 1.8070711117338512e+00 0 2 0 0 -33 0 P 110 21 7.4813331156756224e-01 -1.1808569117413252e+00 1.1451547952039975e+00 1.8070711117338512e+00 0 2 0 0 -77 0 V -34 0 0 0 0 0 1 1 0 P 46 21 7.5587866153434635e-01 -4.3334422249465859e-01 1.4401825882380304e+00 1.6832307190627336e+00 0 2 0 0 -34 0 P 111 21 7.5587866153434635e-01 -4.3334422249465859e-01 1.4401825882380304e+00 1.6832307190627336e+00 0 2 0 0 -77 0 V -35 0 0 0 0 0 1 1 0 P 47 21 5.3337158008743550e+00 -4.5028203812965444e+00 1.3075100112182579e+01 1.4821678669243683e+01 0 2 0 0 -35 0 P 112 21 5.3337158008743550e+00 -4.5028203812965444e+00 1.3075100112182579e+01 1.4821678669243683e+01 0 2 0 0 -77 0 V -36 0 0 0 0 0 1 1 0 P 48 21 4.9636507142120523e-01 -2.5600622312123722e+00 7.3607026018969268e+00 7.8089845502074873e+00 0 2 0 0 -36 0 P 113 21 4.9636507142120523e-01 -2.5600622312123722e+00 7.3607026018969268e+00 7.8089845502074873e+00 0 2 0 0 -77 0 V -37 0 0 0 0 0 1 1 0 P 49 21 -4.0113985015629638e-01 -3.0326284746715868e+00 6.2290053557032170e+00 6.9396150012916200e+00 0 2 0 0 -37 0 P 114 21 -4.0113985015629638e-01 -3.0326284746715868e+00 6.2290053557032170e+00 6.9396150012916200e+00 0 2 0 0 -77 0 V -38 0 0 0 0 0 1 1 0 P 50 21 -2.1030152593257312e+00 -2.7424433581108293e-01 1.6434884361685107e+00 2.6830835574951726e+00 0 2 0 0 -38 0 P 115 21 -2.1030152593257312e+00 -2.7424433581108293e-01 1.6434884361685107e+00 2.6830835574951726e+00 0 2 0 0 -77 0 V -39 0 0 0 0 0 1 1 0 P 51 21 -7.4841078080504264e-01 -8.3638624844636589e-01 7.3574243484838919e-01 1.3420050610381602e+00 0 2 0 0 -39 0 P 116 21 -7.4841078080504264e-01 -8.3638624844636589e-01 7.3574243484838919e-01 1.3420050610381602e+00 0 2 0 0 -77 0 V -40 0 0 0 0 0 1 1 0 P 52 21 -1.2695078101222426e+00 -6.3355587067339780e-01 2.7894614073984775e-01 1.4459785858233702e+00 0 2 0 0 -40 0 P 117 21 -1.2695078101222426e+00 -6.3355587067339780e-01 2.7894614073984775e-01 1.4459785858233702e+00 0 2 0 0 -77 0 V -41 0 0 0 0 0 1 1 0 P 53 21 -3.6834975936726573e+00 -1.1113516326783370e+00 3.8841822584240621e-01 3.8670564635411808e+00 0 2 0 0 -41 0 P 118 21 -3.6834975936726573e+00 -1.1113516326783370e+00 3.8841822584240621e-01 3.8670564635411808e+00 0 2 0 0 -77 0 V -42 0 0 0 0 0 1 1 0 P 54 21 -5.3337158008743550e+00 4.5028203812965444e+00 -2.2132003241028055e+00 7.3227161153034661e+00 0 2 0 0 -42 0 P 119 21 -5.3337158008743550e+00 4.5028203812965444e+00 -2.2132003241028055e+00 7.3227161153034661e+00 0 2 0 0 -77 0 V -43 0 0 0 0 0 1 1 0 P 55 21 -3.4502124565064218e-01 4.0199911926232001e-01 1.3943558234589526e-01 5.4780035912925495e-01 0 2 0 0 -43 0 P 120 21 -3.4502124565064218e-01 4.0199911926232001e-01 1.3943558234589526e-01 5.4780035912925495e-01 0 2 0 0 -77 0 V -44 0 0 0 0 0 1 1 0 P 56 21 -4.0318955084952124e-01 4.0314927226811542e-01 -1.2952649362379035e-01 5.8469501639318211e-01 0 2 0 0 -44 0 P 121 21 -4.0318955084952124e-01 4.0314927226811542e-01 -1.2952649362379035e-01 5.8469501639318211e-01 0 2 0 0 -77 0 V -45 0 0 0 0 0 1 1 0 P 57 21 8.2223734663494874e-01 1.3135132007943364e+00 -4.2348494860318925e-01 1.6064652764861460e+00 0 2 0 0 -45 0 P 122 21 8.2223734663494874e-01 1.3135132007943364e+00 -4.2348494860318925e-01 1.6064652764861460e+00 0 2 0 0 -77 0 V -46 0 0 0 0 0 1 1 0 P 58 21 6.4585330888425121e+00 9.9035977117283966e+00 -6.9412675756983617e+00 1.3710400900515891e+01 0 2 0 0 -46 0 P 123 21 6.4585330888425121e+00 9.9035977117283966e+00 -6.9412675756983617e+00 1.3710400900515891e+01 0 2 0 0 -77 0 V -47 0 0 0 0 0 1 1 0 P 59 21 2.5614725499358548e-01 1.3012858538031083e-01 -1.0807226135519041e-01 3.0696006034703333e-01 0 2 0 0 -47 0 P 124 21 2.5614725499358548e-01 1.3012858538031083e-01 -1.0807226135519041e-01 3.0696006034703333e-01 0 2 0 0 -77 0 V -48 0 0 0 0 0 1 1 0 P 60 21 3.6834975936726573e+00 1.1113516326783370e+00 -1.3311231979219125e+00 4.0712585206659284e+00 0 2 0 0 -48 0 P 125 21 3.6834975936726573e+00 1.1113516326783370e+00 -1.3311231979219125e+00 4.0712585206659284e+00 0 2 0 0 -77 0 V -49 0 0 0 0 0 1 1 0 P 61 21 1.3404033489127325e+00 1.9221003546056024e+00 4.8144665313281937e-01 2.3922670818209752e+00 0 2 0 0 -49 0 P 126 21 1.3404033489127325e+00 1.9221003546056024e+00 4.8144665313281937e-01 2.3922670818209752e+00 0 2 0 0 -77 0 V -50 0 0 0 0 0 1 1 0 P 62 21 2.4097308519209211e+00 7.1042988298161269e-01 1.6830354699696033e+00 3.0239248982917215e+00 0 2 0 0 -50 0 P 127 21 2.4097308519209211e+00 7.1042988298161269e-01 1.6830354699696033e+00 3.0239248982917215e+00 0 2 0 0 -77 0 V -51 0 0 0 0 0 1 1 0 P 63 21 2.1030152593257312e+00 2.7424433581108293e-01 1.7209292915555781e+00 2.7312050020486045e+00 0 2 0 0 -51 0 P 128 21 2.1030152593257312e+00 2.7424433581108293e-01 1.7209292915555781e+00 2.7312050020486045e+00 0 2 0 0 -77 0 V -52 0 0 0 0 0 1 1 0 P 64 21 -2.1055242211571716e+00 -7.1434071428696552e-02 -6.0649448650116895e+00 6.4204276561668427e+00 0 2 0 0 -52 0 P 129 21 -2.1055242211571716e+00 -7.1434071428696552e-02 -6.0649448650116895e+00 6.4204276561668427e+00 0 2 0 0 -77 0 V -53 0 0 0 0 0 1 1 0 P 65 21 -1.3404033489127325e+00 -1.9221003546056024e+00 -5.7497269413929279e+00 6.2089057660372911e+00 0 2 0 0 -53 0 P 130 21 -1.3404033489127325e+00 -1.9221003546056024e+00 -5.7497269413929279e+00 6.2089057660372911e+00 0 2 0 0 -77 0 V -54 0 0 0 0 0 1 1 0 P 66 21 2.6734586692454065e-01 -8.1727932143369608e-01 -3.6479150530730555e+00 3.7478932130253857e+00 0 2 0 0 -54 0 P 131 21 2.6734586692454065e-01 -8.1727932143369608e-01 -3.6479150530730555e+00 3.7478932130253857e+00 0 2 0 0 -77 0 V -55 0 0 0 0 0 1 1 0 P 67 21 2.8557939565352104e+00 -5.2472304900184135e+00 -1.3133026530463999e+01 1.4427937232585716e+01 0 2 0 0 -55 0 P 132 21 2.8557939565352104e+00 -5.2472304900184135e+00 -1.3133026530463999e+01 1.4427937232585716e+01 0 2 0 0 -77 0 V -56 0 0 0 0 0 1 1 0 P 68 21 5.2163797569524006e-01 -6.4960137682059516e-01 -1.3284958198304146e+00 1.5681164720012115e+00 0 2 0 0 -56 0 P 133 21 5.2163797569524006e-01 -6.4960137682059516e-01 -1.3284958198304146e+00 1.5681164720012115e+00 0 2 0 0 -77 0 V -57 0 0 0 0 0 1 1 0 P 69 21 3.4918400796166540e+00 -1.6840571327135552e+00 -1.3251856477064637e+01 1.3807269666975460e+01 0 2 0 0 -57 0 P 134 21 3.4918400796166540e+00 -1.6840571327135552e+00 -1.3251856477064637e+01 1.3807269666975460e+01 0 2 0 0 -77 0 V -58 0 0 0 0 0 1 1 0 P 70 21 8.4744336672053933e-01 1.9198597882051363e+00 -4.7705207082839003e+00 5.2117069846962076e+00 0 2 0 0 -58 0 P 135 21 8.4744336672053933e-01 1.9198597882051363e+00 -4.7705207082839003e+00 5.2117069846962076e+00 0 2 0 0 -77 0 V -59 0 0 0 0 0 1 1 0 P 71 21 4.0113985015629638e-01 3.0326284746715868e+00 -1.1777479765487954e+01 1.2168269321117547e+01 0 2 0 0 -59 0 P 136 21 4.0113985015629638e-01 3.0326284746715868e+00 -1.1777479765487954e+01 1.2168269321117547e+01 0 2 0 0 -77 0 V -60 0 0 0 0 0 1 1 0 P 72 21 -2.6734586692454065e-01 8.1727932143369608e-01 -2.4369525411446036e+00 2.5842130310011009e+00 0 2 0 0 -60 0 P 137 21 -2.6734586692454065e-01 8.1727932143369608e-01 -2.4369525411446036e+00 2.5842130310011009e+00 0 2 0 0 -77 0 V -61 0 0 0 0 0 1 1 0 P 73 21 1.2695078101222426e+00 6.3355587067339780e-01 -6.7679494098514240e+01 6.7694364348533838e+01 0 2 0 0 -61 0 P 138 21 1.2695078101222426e+00 6.3355587067339780e-01 -6.7679494098514240e+01 6.7694364348533838e+01 0 2 0 0 -77 0 V -62 0 0 0 0 0 1 1 0 P 74 21 2.1055242211571716e+00 7.1434071428696552e-02 -1.4424221068508984e+02 1.4425759487248595e+02 0 2 0 0 -62 0 P 139 21 2.1055242211571716e+00 7.1434071428696552e-02 -1.4424221068508984e+02 1.4425759487248595e+02 0 2 0 0 -77 0 V -63 0 0 0 0 0 1 1 0 P 75 21 -7.4813331156756224e-01 1.1808569117413252e+00 -6.2789468515768014e+01 6.2805027529573671e+01 0 2 0 0 -63 0 P 140 21 -7.4813331156756224e-01 1.1808569117413252e+00 -6.2789468515768014e+01 6.2805027529573671e+01 0 2 0 0 -77 0 V -64 0 0 0 0 0 1 1 0 P 76 21 -2.8557939565352104e+00 5.2472304900184135e+00 -3.2571661880230477e+02 3.2577139952878531e+02 0 2 0 0 -64 0 P 141 21 -2.8557939565352104e+00 5.2472304900184135e+00 -3.2571661880230477e+02 3.2577139952878531e+02 0 2 0 0 -77 0 V -65 0 0 0 0 0 1 1 0 P 77 21 -3.4918400796166540e+00 1.6840571327135552e+00 -4.6637478222900256e+02 4.6639089452380762e+02 0 2 0 0 -65 0 P 142 21 -3.4918400796166540e+00 1.6840571327135552e+00 -4.6637478222900256e+02 4.6639089452380762e+02 0 2 0 0 -77 0 V -66 0 0 0 0 0 1 1 0 P 78 21 -5.2163797569524006e-01 6.4960137682059516e-01 -4.3342953815813428e+02 4.3343033885054706e+02 0 2 0 0 -66 0 P 143 21 -5.2163797569524006e-01 6.4960137682059516e-01 -4.3342953815813428e+02 4.3343033885054706e+02 0 2 0 0 -77 0 V -67 0 0 0 0 0 0 1 0 P 145 2101 3.2480506284443372e-01 -3.0570270664329768e-01 -1.1188399554051284e+03 1.1188401943024180e+03 5.7933000000000001e-01 2 0 0 -77 0 V -68 0 0 0 0 0 4 1 0 P 14 2 -7.4624067797338367e-01 -7.0443417555011467e-01 -4.5467950167009128e+01 4.5479529406610737e+01 0 2 0 0 -68 0 P 15 21 3.4502124565064218e-01 -4.0199911926232001e-01 -9.1598767841924307e+00 9.1751831400482384e+00 0 2 0 0 -68 0 P 16 21 4.0318955084952124e-01 -4.0314927226811542e-01 -1.1775403109039617e+01 1.1789198850219824e+01 0 2 0 0 -68 0 P 17 -2 7.4624067797338367e-01 7.0443417555011467e-01 -5.2115669048647577e+00 5.3116412022111188e+00 0 2 0 0 -68 0 P 146 92 7.4821079650016342e-01 -8.0514839153043538e-01 -7.1614796965105924e+01 7.1755552599089924e+01 4.3556975467808385e+00 2 0 0 -69 0 V -69 0 0 0 0 0 0 4 0 P 147 213 2.9209843838499655e-01 -4.0189042240681466e-01 -1.1808188818686572e+01 1.1847347636417780e+01 8.2430906282175864e-01 2 0 0 -79 0 P 148 2112 -3.0768771653380156e-01 -5.5826234304140498e-01 -3.7392692999504931e+01 3.7409926625358260e+01 9.3957000000000002e-01 1 0 0 0 0 P 149 -2212 5.1394700428940943e-01 1.2193127380088571e-01 -1.1845750239047769e+01 1.1894585241930423e+01 9.3827000000000005e-01 1 0 0 0 0 P 150 113 2.4985307035955906e-01 3.3073100116898568e-02 -1.0568164907866667e+01 1.0603693095383457e+01 8.2986586536553442e-01 2 0 0 -80 0 V -70 0 0 0 0 0 3 1 0 P 18 3 -2.3681661160835141e-01 -9.3692309686229769e-01 1.1640418215609557e+01 1.1680464170197283e+01 0 2 0 0 -70 0 P 19 21 -5.1089689670552296e-01 2.4384496912571746e-01 1.1964805939095662e+00 1.3236471658389346e+00 0 2 0 0 -70 0 P 20 -3 2.3681661160835141e-01 9.3692309686229769e-01 1.9789087630694320e-02 9.6659122950550014e-01 0 2 0 0 -70 0 P 151 92 -5.1089689670552296e-01 2.4384496912571740e-01 1.2856687897149818e+01 1.3970702565541718e+01 5.4374286645512928e+00 2 0 0 -71 0 V -71 0 0 0 0 0 0 4 0 P 152 -313 -4.6414081593643869e-01 -3.0961745198774732e-01 9.0302238900682088e+00 9.0905232492146837e+00 8.8395688591725907e-01 2 0 0 -81 0 P 153 -211 3.3412749841174882e-01 -2.5327526140517698e-01 2.3470877969550830e+00 2.3883237751088560e+00 1.3957000000000000e-01 1 0 0 0 0 P 154 223 -2.9091088191570552e-01 7.8520892586552782e-01 2.6744039042641504e-01 1.1799912324238691e+00 7.8719295454792859e-01 2 0 0 -82 0 P 155 321 -8.9972697265127646e-02 2.1528756653113958e-02 1.2119358197001122e+00 1.3118643087943105e+00 4.9359999999999998e-01 1 0 0 0 0 V -72 0 0 0 0 0 2 1 0 P 21 1 -4.0360457420319301e-01 5.8340741341648412e-02 8.4132204503299462e+01 8.4133192824707535e+01 0 2 0 0 -72 0 P 22 -1 4.0360457420319301e-01 -5.8340741341648412e-02 -5.4467494447584865e+00 5.4619941237971794e+00 0 2 0 0 -72 0 P 156 92 0 0 7.8685455058540981e+01 8.9595186948504718e+01 4.2847364989784815e+01 2 0 0 -73 0 V -73 0 0 0 0 0 0 7 0 P 157 -213 3.7409893552937012e-01 -1.4406622304669983e-01 2.5912372956211229e+01 2.5923586611661914e+01 6.4851021608207726e-01 2 0 0 -83 0 P 158 113 -8.3548474562940622e-01 -5.8389541106674714e-02 3.5963710363274387e+01 3.5983329748273242e+01 8.4268177907573438e-01 2 0 0 -84 0 P 159 113 -3.1459755419904943e-02 2.0605145560740473e-01 8.2459034619401699e+00 8.2824893737101153e+00 7.4917247908279971e-01 2 0 0 -85 0 P 160 213 4.8868022339024386e-01 2.2677881346910572e-01 8.9995584711201744e+00 9.0502866540337639e+00 7.9082163229110736e-01 2 0 0 -86 0 P 161 1114 -1.1821118914882505e+00 -5.2458211168674540e-01 4.5403791035129988e+00 4.9032151811927038e+00 1.3243495737762907e+00 2 0 0 -87 0 P 162 213 8.3523030780496288e-01 3.7268645801946626e-01 -2.5900005536657598e+00 2.8624110963991054e+00 8.0547473810960557e-01 2 0 0 -88 0 P 163 -2112 3.5104692581298486e-01 -7.8478851255856699e-02 -2.3864687438522205e+00 2.5898682832338746e+00 9.3957000000000002e-01 1 0 0 0 0 V -74 0 0 0 0 0 4 1 0 P 80 21 -1.2389719448840186e+00 -2.6496858070191570e-01 -1.7255126126497579e+01 1.7301579045575817e+01 0 2 0 0 -74 0 P 81 21 4.8975594800000499e-01 -2.9727632938791316e-02 2.0331314232760760e+00 2.0914989851955772e+00 0 2 0 0 -74 0 P 82 21 5.1089689670552296e-01 -2.4384496912571746e-01 9.9433970511313845e+00 9.9594990297945998e+00 0 2 0 0 -74 0 P 83 21 1.2389719448840186e+00 2.6496858070191570e-01 3.9034717885526291e+01 3.9055274422689635e+01 0 2 0 0 -74 0 P 164 92 1.0006528447055278e+00 -2.7357260206450879e-01 3.3756120233436171e+01 6.8407851483255627e+01 5.9490186949250230e+01 2 0 0 -75 0 V -75 0 0 0 0 0 0 18 0 P 165 113 -3.3804724687892013e-01 1.0174402965064333e-01 -8.3924373484313280e-02 8.6269145644185108e-01 7.8266561177878469e-01 2 0 0 -89 0 P 166 -2212 2.7163383272830272e-01 -1.6187376392179151e-01 3.1411027940286718e-01 1.0387511323966980e+00 9.3827000000000005e-01 1 0 0 0 0 P 167 2114 -4.2391524264182340e-01 1.7028239138575318e-01 2.0413523457696583e-01 1.2184314032032508e+00 1.1109471925145331e+00 2 0 0 -90 0 P 168 213 4.1028101683833518e-01 -2.9915166310496438e-01 -5.3052761908229407e-01 9.8445833171955843e-01 6.5564961829209034e-01 2 0 0 -91 0 P 169 111 -4.5836745447453597e-01 -8.3710651007494613e-02 -1.1485863232618496e+00 1.2468273091321582e+00 1.3497999999999999e-01 2 0 0 -92 0 P 170 -211 2.5780547998459064e-01 1.3403392050781809e-01 -2.9484488802084136e-01 4.3685472442083506e-01 1.3957000000000000e-01 1 0 0 0 0 P 171 211 -3.2212987920234598e-01 3.0571734752392148e-02 -2.4396416439215290e-01 4.2860306630757344e-01 1.3957000000000000e-01 1 0 0 0 0 P 172 -213 -4.5595594129784173e-01 3.8829566990976477e-02 -1.1935895590168185e+01 1.1974333722139159e+01 8.4241379029859720e-01 2 0 0 -93 0 P 173 211 -3.4069450381577970e-01 -4.1541466166086155e-01 -4.9489594365425493e-01 7.4366919123930642e-01 1.3957000000000000e-01 1 0 0 0 0 P 174 -211 -3.9512724486467388e-01 -8.1763144702043600e-02 2.6693951610567052e-01 5.0353474718696900e-01 1.3957000000000000e-01 1 0 0 0 0 P 175 213 8.1328738401881540e-01 2.8502228878652480e-01 1.7301474800836476e+00 2.0771530344016917e+00 7.6057895801493425e-01 2 0 0 -94 0 P 176 113 2.9493883752918676e-01 -3.5342134298620659e-01 5.3568656288488663e+00 5.4242763539154941e+00 7.1754375096098943e-01 2 0 0 -95 0 P 177 -213 3.7958129170317884e-01 -3.3213502649997484e-01 1.0476521663122339e+01 1.0510154180166204e+01 6.7189217896497311e-01 2 0 0 -96 0 P 178 223 7.4650389124460492e-01 9.3161161094413680e-01 1.9840318825804758e+01 1.9891697736103424e+01 7.8499647236805625e-01 2 0 0 -97 0 P 179 213 4.5803524984234839e-01 -1.6900849674386570e-01 4.3746961854481334e+00 4.4646547997660901e+00 7.4620077997157275e-01 2 0 0 -98 0 P 180 -213 -1.6606404065744923e-01 -2.5959430830733066e-01 2.2042672511647168e+00 2.3216087504149168e+00 6.6038368009878556e-01 2 0 0 -99 0 P 181 113 -1.9873393009809731e-01 5.2641104246208947e-01 3.4339907284257767e+00 3.6219080022679537e+00 1.0046499357389040e+00 2 0 0 -100 0 P 182 211 4.6762134474763223e-01 -3.3600612861030943e-01 2.8676634251631528e-01 6.5824354203247326e-01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 183 -211 1.2018244564987135e-01 7.2147019658169859e-02 -8.8869120343146086e+00 8.8891132461699325e+00 1.3957000000000000e-01 1 0 0 0 0 P 184 211 -5.0485019960660731e-02 1.7900443505156086e-01 -4.9781910786631887e+00 4.9836189185761706e+00 1.3957000000000000e-01 1 0 0 0 0 P 185 111 -6.9697425689210626e-02 -2.5115145470973071e-01 -4.8457329507104534e+00 4.8546145278849435e+00 1.3497999999999999e-01 2 0 0 -101 0 V -77 0 0 0 0 0 0 1 0 P 186 92 -9.4120800042343933e-01 -5.9739965684273710e-01 1.8134723744318535e+03 7.2406671759298106e+03 7.0098914297584543e+03 2 0 0 -78 0 V -78 0 0 0 0 0 0 104 0 P 187 111 1.5769349405507760e-01 -1.0677567023658008e-01 1.2962333241096232e+02 1.2962354258854776e+02 1.3497999999999999e-01 2 0 0 -102 0 P 188 2112 -2.9380345577644373e-01 -3.0482964014882935e-01 6.5038629082433783e+02 6.5038710728734873e+02 9.3957000000000002e-01 1 0 0 0 0 P 189 -2212 4.5004604800569659e-01 -2.3557839986278956e-01 9.4730419394499404e+02 9.4730479480207191e+02 9.3827000000000005e-01 1 0 0 0 0 P 190 111 -1.0298652102091461e+00 -7.3886949982419992e-01 5.8710660746789779e+02 5.8710799117585987e+02 1.3497999999999999e-01 2 0 0 -103 0 P 191 213 -1.8544340876530907e-01 -2.7142313938977375e-01 1.7169532212351652e+02 1.7169921155789464e+02 1.1079488824451715e+00 2 0 0 -104 0 P 192 -213 -4.5323648820877738e-01 3.2225988308646131e-01 1.3893246614674567e+02 1.3893603977108734e+02 8.2687538967033414e-01 2 0 0 -105 0 P 193 111 -1.1790380042463260e+00 -6.6685460331536484e-01 1.9139784445809929e+02 1.9140268521753970e+02 1.3497999999999999e-01 2 0 0 -106 0 P 194 323 -3.1685359766365434e-01 2.2732072399899200e-01 2.0436404215998988e+02 2.0436616262803173e+02 8.4535697967037826e-01 2 0 0 -107 0 P 195 -323 1.5204613796045796e-01 -2.3444943578231209e-01 7.7958667633982841e+01 7.7963746223141200e+01 8.4485579512227260e-01 2 0 0 -108 0 P 196 211 -1.8335702011717372e+00 2.0403929183880809e-01 3.1119958777129335e+02 3.1120508755565527e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 9.7743157032231187e-02 8.5475506948565164e-02 3.3205208538691082e+01 3.3211342154379366e+01 6.2491104187543589e-01 2 0 0 -109 0 P 198 211 2.3364605890400134e-01 -9.3421927393390253e-02 7.7005560294131090e+00 7.7059302543164669e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 1.5019923065848966e+00 4.7837512885833955e-01 1.8974301791933047e+02 1.8975141268749258e+02 8.3722405054166216e-01 2 0 0 -110 0 P 200 211 1.8832922720866571e-01 8.1405738291999752e-01 3.1691645998567662e+01 3.1702966157820899e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 311 2.5792715646643307e+00 7.9689989497005909e-01 1.9661539938292489e+02 1.9663456115643265e+02 4.9767000000000000e-01 2 0 0 -111 0 P 202 -313 8.3009784034744460e-01 8.7501134376941581e-01 3.6391716898188477e+01 3.6422444134712094e+01 8.8468676493536169e-01 2 0 0 -112 0 P 203 223 2.3051587090434891e-01 1.4278784236649344e-01 3.3030535200065373e+01 3.3040384806668762e+01 7.5976748767214797e-01 2 0 0 -113 0 P 204 -211 8.0742920530569667e-02 2.4927553745031686e-01 5.1442107531863011e+00 5.1527703006134979e+00 1.3957000000000000e-01 1 0 0 0 0 P 205 213 5.8140521510310017e-01 9.9053221621535537e-01 5.7552745884723400e+01 5.7569469166668810e+01 7.7848260415667880e-01 2 0 0 -114 0 P 206 313 1.5385460447198765e-01 5.6828067164974783e-01 2.6595315539196136e+01 2.6617655888091065e+01 9.1770484706875444e-01 2 0 0 -115 0 P 207 333 5.3445973040352346e-01 1.3145924114978398e+00 4.1660398658272378e+01 4.1696988262990189e+01 1.0179456891052641e+00 2 0 0 -116 0 P 208 -313 -5.3704269361411303e-02 5.2955574144195112e-02 2.2311970344376729e+01 2.2328338904676862e+01 8.5147469274144338e-01 2 0 0 -117 0 P 209 -213 -8.5580231341577839e-01 7.5422291145806020e-01 3.7943650551516868e+01 3.7966192179519020e+01 6.4021999088504356e-01 2 0 0 -118 0 P 210 331 -7.2627518302119876e-01 -3.7956380111044102e-01 2.6284121673966066e+01 2.6314324224952951e+01 9.5763402378320517e-01 2 0 0 -119 0 P 211 213 -9.7432655064721296e-01 -3.2673971042289496e-01 2.0168772780589141e+01 2.0208810185126040e+01 7.4869390124216073e-01 2 0 0 -120 0 P 212 2112 -8.3547586342911484e-01 -1.2119755805186596e+00 3.9932296237942332e+01 3.9970463837011316e+01 9.3957000000000002e-01 1 0 0 0 0 P 213 -2112 -2.1241777199225855e+00 -2.5402171928939694e+00 6.0536968698409396e+01 6.0634744209487586e+01 9.3957000000000002e-01 1 0 0 0 0 P 214 223 -1.1462130655495077e+00 -1.8357782210609073e+00 4.6487394964514777e+01 4.6544458990996290e+01 7.9049738088336841e-01 2 0 0 -121 0 P 215 113 -5.2880161659827873e-01 -4.2670487932447493e-01 1.4166037597813373e+01 1.4201127403038715e+01 7.3054095772840866e-01 2 0 0 -122 0 P 216 -211 -4.1786941515628726e+00 -6.4907182834678334e+00 1.0318211360188442e+02 1.0347057048158540e+02 1.3957000000000000e-01 1 0 0 0 0 P 217 111 -3.5318871516366934e-01 1.4468400635779496e-01 1.7363572085675227e+00 1.7829278410409957e+00 1.3497999999999999e-01 2 0 0 -123 0 P 218 213 -1.2783873162038697e+00 -2.1119946709080595e+00 9.1046213022510099e+00 9.4695247272568022e+00 8.2642233909191298e-01 2 0 0 -124 0 P 219 313 -5.6939045676037703e-01 6.2736571586477788e-02 1.0129617730685714e+01 1.0180098678763265e+01 8.3493255408503075e-01 2 0 0 -125 0 P 220 333 -3.7667055402462912e-01 -8.7486150437377930e-01 3.2695526481755932e+00 3.5544458249054345e+00 1.0182569640769792e+00 2 0 0 -126 0 P 221 -311 -2.7910938691953835e-01 1.5545589185059163e-02 1.4156585645928190e+00 1.5264037197329912e+00 4.9767000000000000e-01 2 0 0 -127 0 P 222 -211 2.9747168862670115e-01 -3.8934184820557155e-01 8.9464922064924624e-01 1.0295404281556189e+00 1.3957000000000000e-01 1 0 0 0 0 P 223 213 6.1626489483926028e-01 -2.2996046146545099e+00 4.9139921929640931e+00 5.5234268852719079e+00 8.3244307918374094e-01 2 0 0 -128 0 P 224 111 -5.4288980716578068e-04 2.5937909479108645e-01 6.2873643971271309e-01 6.9340242324829260e-01 1.3497999999999999e-01 2 0 0 -129 0 P 225 -213 1.4032548081208998e+00 -8.7451184340001320e-01 3.5973340772170044e+00 4.0665838114819195e+00 9.2865300943828566e-01 2 0 0 -130 0 P 226 213 8.5875697402678064e-01 -2.4628014507246726e-01 3.1624575557880483e+00 3.3980837059425477e+00 8.6470667288669201e-01 2 0 0 -131 0 P 227 -213 4.7537016645102209e-01 -9.0077178244735523e-01 2.3482926249428631e+00 2.6947076427751626e+00 8.4238021609293112e-01 2 0 0 -132 0 P 228 323 1.1172500137106149e+00 -1.1761771867820514e+00 3.2792836812203454e+00 3.7707207415823638e+00 9.1268454640060770e-01 2 0 0 -133 0 P 229 -323 1.0028949930535045e+00 -1.9915966780554089e+00 4.1749321686084917e+00 4.8215834197844449e+00 9.1943045757965125e-01 2 0 0 -134 0 P 230 321 1.5980861442068615e+00 -2.2068549171907970e+00 6.6102381559604133e+00 7.1667968708726546e+00 4.9359999999999998e-01 1 0 0 0 0 P 231 333 -5.2293840200811204e-01 -1.5338556316559417e+00 4.1495173788942541e+00 4.5696836389739923e+00 1.0184971337729434e+00 2 0 0 -135 0 P 232 -323 -1.4645283456916147e+00 -7.7162777300971697e-01 2.0525317343030913e+00 2.7741895039812667e+00 8.6196762599555832e-01 2 0 0 -136 0 P 233 223 -1.1672222731046999e+00 -8.2153862188728632e-01 4.5879801025648048e-01 1.6923324630203422e+00 7.8495860342633883e-01 2 0 0 -137 0 P 234 211 2.6983265051005692e-02 -5.4058383918492847e-01 1.8660764231713906e-01 5.8928870755504104e-01 1.3957000000000000e-01 1 0 0 0 0 P 235 223 -2.8983900276154819e+00 -4.8370425824816293e-01 1.3377233417784475e+00 3.3214590463317535e+00 7.7971270073781973e-01 2 0 0 -138 0 P 236 -213 -1.1341009492178302e+00 -7.4923053244665236e-02 1.4563849433075704e-01 1.4427257925621031e+00 8.7661206617792575e-01 2 0 0 -139 0 P 237 113 -9.5148606404140856e-01 -5.2943026043758379e-01 -3.0265508340296893e-01 1.3634077147429828e+00 7.6266530429737367e-01 2 0 0 -140 0 P 238 113 -2.5698641131610067e+00 2.1321667011067804e+00 -3.9886654954813316e-01 3.4688753727425636e+00 8.5068526838663983e-01 2 0 0 -141 0 P 239 213 -3.7905644924937526e-01 1.6988731719471534e-02 -4.8944592807635257e-01 9.3369720034334991e-01 6.9875656468866698e-01 2 0 0 -142 0 P 240 -211 -1.6569416573560318e+00 1.9267699461237495e+00 -1.0139300939448413e-01 2.5470882215623276e+00 1.3957000000000000e-01 1 0 0 0 0 P 241 323 -1.1302028907712971e+00 1.8506815863193544e+00 -9.7903029106487227e-01 2.5500920403746536e+00 9.1765363580725701e-01 2 0 0 -143 0 P 242 3122 2.9807374939094800e+00 4.4869219770616491e+00 -2.9397411543205170e+00 6.2373139052513871e+00 1.1156800000000000e+00 2 0 0 -144 0 P 243 111 5.8915223209612855e-01 7.1027409100749159e-02 4.5410654601122882e-02 6.1026795211506735e-01 1.3497999999999999e-01 2 0 0 -145 0 P 244 -2212 2.9791143714286865e+00 3.4414906353043171e+00 -2.8023761792680673e+00 5.4270289361647359e+00 9.3827000000000005e-01 1 0 0 0 0 P 245 2224 1.8517275821993644e+00 2.4273375400205439e+00 -1.7370459872772763e+00 3.6818234711144355e+00 1.1034639725256881e+00 2 0 0 -146 0 P 246 -2224 2.7128512387505550e+00 1.9157471741762573e+00 8.6354297308314051e-02 3.5709406005846627e+00 1.3093932294332375e+00 2 0 0 -147 0 P 247 2224 1.8496344732994203e+00 4.6503816366413608e-01 8.4898045958413282e-01 2.4321489168059851e+00 1.2478671220458957e+00 2 0 0 -148 0 P 248 -211 2.9270522688976830e-01 2.4555694253847595e-02 2.8515163823314016e-01 4.3251655882280721e-01 1.3957000000000000e-01 1 0 0 0 0 P 249 -3122 1.2288606357665461e+00 1.2636986553781897e+00 -2.3308762434530902e-01 2.0990722847877690e+00 1.1156800000000000e+00 2 0 0 -149 0 P 250 -313 1.6253682042302526e+00 -1.7605727519145911e-03 1.3655123285302528e+00 2.3106853376897680e+00 9.1258857734867238e-01 2 0 0 -150 0 P 251 223 -5.8894216209011108e-01 2.1116244689137320e-01 -1.9516075808433506e+00 2.1927547051805734e+00 7.7971699880263035e-01 2 0 0 -151 0 P 252 313 2.2060964483475790e-01 -3.8139224348007089e-01 -8.3752249780977794e-01 1.2370952780474800e+00 7.9676353697252145e-01 2 0 0 -152 0 P 253 -313 -1.0940049427342937e+00 -9.1364258507788376e-01 -3.9700452735963210e+00 4.3230071750190548e+00 9.4633079463096959e-01 2 0 0 -153 0 P 254 223 -7.5917103643478409e-02 -8.5403095970199094e-01 -1.3842566828776541e+00 1.8048838500069742e+00 7.7865708830616365e-01 2 0 0 -154 0 P 255 -211 -3.4416471693987594e-02 -1.1933043338676690e-02 -2.7298293285318529e+00 2.7336376568338117e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 111 -6.0072472564223733e-01 -1.1838939281741072e+00 -2.6774461441000712e+00 2.9915568662691001e+00 1.3497999999999999e-01 2 0 0 -155 0 P 257 211 1.2335603601705298e+00 -1.6971295225149756e+00 -5.7646128953767866e+00 6.1361357055414194e+00 1.3957000000000000e-01 1 0 0 0 0 P 258 221 6.4000122930611114e-01 -3.2890050842039220e-01 -2.7549609663668844e+00 2.8995324703575376e+00 5.4744999999999999e-01 2 0 0 -156 0 P 259 -213 5.4513802635183595e-01 -1.7270750635404395e+00 -5.0832924428306834e+00 5.4442545219410121e+00 7.2116676119857226e-01 2 0 0 -157 0 P 260 111 3.0528841652059213e-01 4.2143601467322718e-02 -1.0909670369775706e+00 1.1416679800090335e+00 1.3497999999999999e-01 2 0 0 -158 0 P 261 211 2.2432125466332956e-01 -3.0075480634129081e-01 -8.8357809622960193e-01 9.7003273958554892e-01 1.3957000000000000e-01 1 0 0 0 0 P 262 -213 1.4213361943237435e+00 -1.4356622629941220e+00 -5.3918802929480893e+00 5.8072141527313050e+00 7.5501020623610637e-01 2 0 0 -159 0 P 263 113 2.7188431138376107e-01 -1.7003019292568639e-01 -2.1404474580273036e+00 2.2516754178742566e+00 6.2104389667775850e-01 2 0 0 -160 0 P 264 111 3.5541607266622921e-01 4.9316325054413140e-01 -1.6128580921606868e+00 1.7288902227281380e+00 1.3497999999999999e-01 2 0 0 -161 0 P 265 113 -3.6030843403846080e-01 3.5022178413174315e-01 -2.2596452523002597e+00 2.3968941271193502e+00 6.2179363510449248e-01 2 0 0 -162 0 P 266 211 8.9637967010592179e-01 6.4498948076758522e-01 -3.3656731939685973e+00 3.5449603350078291e+00 1.3957000000000000e-01 1 0 0 0 0 P 267 223 4.1604707882066094e-01 -4.6669530620000826e-04 -1.6903154780955087e+00 1.9089333192677471e+00 7.8343130670251859e-01 2 0 0 -163 0 P 268 311 1.1605563167193152e-01 2.9121997396961880e-01 -3.8318499698125845e+00 3.8767289823940931e+00 4.9767000000000000e-01 2 0 0 -164 0 P 269 -321 1.3274646207232688e-01 -4.6700250130966353e-01 -4.1440335645290709e+00 4.2014721352599400e+00 4.9359999999999998e-01 1 0 0 0 0 P 270 213 7.4161761062435039e-01 6.1352747536907748e-01 -7.1810794816671359e+00 7.2983173910077959e+00 8.7813528254203443e-01 2 0 0 -165 0 P 271 -213 7.8705893093698776e-01 5.2870334973719024e-01 -4.0073185073839319e+00 4.1775870447772601e+00 7.0330854130887710e-01 2 0 0 -166 0 P 272 223 -2.2074136853107595e-01 5.2436859927642543e-01 -4.1914894928962463e+00 4.3037574839033566e+00 7.9376012214423042e-01 2 0 0 -167 0 P 273 111 2.9679776158496890e-01 5.9802872948382102e-01 -7.0773333775540088e+00 7.1100347826160402e+00 1.3497999999999999e-01 2 0 0 -168 0 P 274 2214 4.6885572774945622e-01 2.8885441652965710e-01 -3.1805801219155175e+01 3.1837315641975650e+01 1.3047656981168874e+00 2 0 0 -169 0 P 275 213 -5.7955440888145415e-02 6.2902784349955310e-01 -1.1309598328041462e+01 1.1352176832452297e+01 7.5224306750025849e-01 2 0 0 -170 0 P 276 -2224 3.6362222046790926e-01 1.6432976812084243e-01 -2.9575659921969727e+01 2.9601999218741117e+01 1.1829930407380540e+00 2 0 0 -171 0 P 277 321 6.9708927672868304e-01 1.3142658166732221e-01 -1.4107634327499673e+01 1.4134079159412757e+01 4.9359999999999998e-01 1 0 0 0 0 P 278 -313 -4.3795711354540778e-01 6.1325248761752615e-01 -2.8196258672025380e+01 2.8220216623567797e+01 8.8528985900198520e-01 2 0 0 -172 0 P 279 113 -1.7886805425256275e-01 1.1355047296369201e-01 -4.1560092330164153e+01 4.1563903773141050e+01 5.2147375812885921e-01 2 0 0 -173 0 P 280 -211 1.7943585488877350e-01 8.0519591868770690e-01 -3.8700143374056161e+01 3.8709186437471068e+01 1.3957000000000000e-01 1 0 0 0 0 P 281 2114 6.4315192460790604e-01 1.0898584410294943e+00 -9.3117174082378668e+01 9.3134249231482116e+01 1.2565170130980361e+00 2 0 0 -174 0 P 282 -1114 -6.9539062157737852e-01 8.6640680494422251e-01 -9.5816605847647864e+01 9.5831349999835069e+01 1.2615299279641961e+00 2 0 0 -175 0 P 283 1114 -1.4490205464737931e+00 1.6963351846951393e+00 -1.7509919873402754e+02 1.7511747612499903e+02 1.1932449405704992e+00 2 0 0 -176 0 P 284 -1114 -1.7613337645736089e+00 1.6687124381403879e+00 -1.9033661448579167e+02 1.9035592221973974e+02 1.2097158274957889e+00 2 0 0 -177 0 P 285 -211 -4.1500315675247805e-02 6.4275704275758239e-01 -5.5312152400116908e+01 5.5316078510780876e+01 1.3957000000000000e-01 1 0 0 0 0 P 286 113 -2.0143354819715706e-01 1.5209870756777241e-01 -1.2268936391527259e+02 1.2269226004340246e+02 8.0433023846943441e-01 2 0 0 -178 0 P 287 211 -1.4668544110741004e+00 1.8163896463940810e-01 -2.7094145338969099e+02 2.7094552090647255e+02 1.3957000000000000e-01 1 0 0 0 0 P 288 331 -3.1060630643691539e-01 6.7614954037065977e-01 -2.8511843633208673e+02 2.8512101634455757e+02 9.5789896165602872e-01 2 0 0 -179 0 P 289 2112 -3.9073508851141713e-02 4.2733726948709055e-01 -1.9866565331316875e+02 1.9866833854948817e+02 9.3957000000000002e-01 1 0 0 0 0 P 290 223 -1.1359981317281845e-01 -2.5748252913305303e-01 -9.2471048172833571e+02 9.2471085338871342e+02 7.7984258770706893e-01 2 0 0 -180 0 V -79 0 0 0 0 0 0 2 0 P 291 211 -1.8911175199881555e-01 -3.9701983318043543e-01 -5.9731235006493195e+00 5.9909158015775734e+00 1.3957000000000000e-01 1 0 0 0 0 P 292 111 4.8121019038381208e-01 -4.8705892263792060e-03 -5.8350653180372518e+00 5.8564318348402047e+00 1.3497999999999999e-01 2 0 0 -181 0 V -80 0 0 0 0 0 0 2 0 P 293 211 2.6006162696688723e-01 3.5755014281314768e-01 -7.6816814967710982e+00 7.6956601118540719e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 -211 -1.0208556607328164e-02 -3.2447704269624911e-01 -2.8864834110955684e+00 2.9080329835293850e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 295 -321 -7.8833474108553805e-02 -3.6810551435218608e-01 4.7671599262944380e+00 4.8074079407934693e+00 4.9359999999999998e-01 1 0 0 0 0 P 296 211 -3.8530734182788490e-01 5.8488062364438792e-02 4.2630639637737708e+00 4.2831153084212144e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 297 22 -4.8920667359853220e-01 4.1037105981553718e-01 -3.8907482358820668e-02 6.3971975771502509e-01 0 1 0 0 0 0 P 298 111 1.9829579168282671e-01 3.7483786604999059e-01 3.0634787278523568e-01 5.4027147470884362e-01 1.3497999999999999e-01 2 0 0 -182 0 V -83 0 0 0 0 0 0 2 0 P 299 -211 4.8353349992505934e-01 4.0426256012748671e-02 1.8469764510371778e+01 1.8476664195173701e+01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 -1.0943456439568924e-01 -1.8449247905944849e-01 7.4426084458394497e+00 7.4469224164882153e+00 1.3497999999999999e-01 2 0 0 -183 0 V -84 0 0 0 0 0 0 2 0 P 301 211 -2.2505124336705409e-01 -3.8596266229490472e-01 1.7042877720909246e+01 1.7049304268315218e+01 1.3957000000000000e-01 1 0 0 0 0 P 302 -211 -6.1043350226235216e-01 3.2757312118823001e-01 1.8920832642365141e+01 1.8934025479958020e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 303 211 -2.4677014896201302e-01 3.7313594135224781e-01 4.6368939018106001e+00 4.6605140037012971e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 -211 2.1531039354210807e-01 -1.6708448574484308e-01 3.6090095601295702e+00 3.6219753700088173e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 305 211 6.4895432810827036e-01 2.7422753529415600e-01 5.9542773265501028e+00 5.9974361795230973e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 -1.6027410471802656e-01 -4.7448721825050291e-02 3.0452811445700707e+00 3.0528504745106657e+00 1.3497999999999999e-01 2 0 0 -184 0 V -87 0 0 0 0 0 0 2 0 P 307 2112 -7.8098441238774718e-01 -5.6335718538539792e-01 2.7331185430926714e+00 3.0463152703249543e+00 9.3957000000000002e-01 1 0 0 0 0 P 308 -211 -4.0112747910050323e-01 3.8775073698652476e-02 1.8072605604203273e+00 1.8568999108677495e+00 1.3957000000000000e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 309 211 5.3718611086344370e-01 -1.1349620427987088e-01 -8.1018223450363391e-01 9.8859766543110528e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 2.9804419694151918e-01 4.8618266229933715e-01 -1.7798183191621260e+00 1.8738134309680037e+00 1.3497999999999999e-01 2 0 0 -185 0 V -89 0 0 0 0 0 0 2 0 P 311 211 -2.6081506431040391e-01 -8.5431171215666984e-02 2.8483886600420832e-01 4.1944719247252576e-01 1.3957000000000000e-01 1 0 0 0 0 P 312 -211 -7.7232182568516203e-02 1.8717520086631032e-01 -3.6876323948852158e-01 4.4324426396932531e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 313 2212 -3.4745674924502018e-01 1.1589222628858142e-01 8.1955026408011028e-02 1.0105564902387092e+00 9.3827000000000005e-01 1 0 0 0 0 P 314 -211 -7.6458493396803204e-02 5.4390165097171775e-02 1.2218020816895482e-01 2.0787491296454158e-01 1.3957000000000000e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 315 211 1.5114654680423553e-01 -2.3622700835965799e-01 -6.0068022343120986e-01 6.7745479097188999e-01 1.3957000000000000e-01 1 0 0 0 0 P 316 111 2.5913447003409962e-01 -6.2924654745306410e-02 7.0152604348915876e-02 3.0700354074766828e-01 1.3497999999999999e-01 2 0 0 -186 0 V -92 0 -8.5773889011169849e-05 -1.5664698744374974e-05 -2.1493392440820127e-04 2.3331767163137126e-04 0 2 0 P 317 22 -4.0431044877736144e-01 -7.0700167245463991e-02 -8.5988751371130356e-01 9.5282316768416964e-01 0 1 0 0 0 0 P 318 22 -5.4057005697174532e-02 -1.3010483762030624e-02 -2.8869880955054605e-01 2.9400414144798859e-01 0 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 319 -211 -1.8628635585759606e-01 -1.4033720506724301e-01 -1.0186087073278330e+01 1.0189712792165080e+01 1.3957000000000000e-01 1 0 0 0 0 P 320 111 -2.6966958544024566e-01 1.7916677205821949e-01 -1.7498085168898558e+00 1.7846209299740807e+00 1.3497999999999999e-01 2 0 0 -187 0 V -94 0 0 0 0 0 0 2 0 P 321 211 -9.4664854372424501e-02 -3.9732487168033667e-02 3.1276369305508800e-01 3.5754862296388107e-01 1.3957000000000000e-01 1 0 0 0 0 P 322 111 9.0795223839123995e-01 3.2475477595455848e-01 1.4173837870285597e+00 1.7196044114378108e+00 1.3497999999999999e-01 2 0 0 -188 0 V -95 0 0 0 0 0 0 2 0 P 323 211 -1.2693977600126147e-01 6.6064763029372378e-02 2.1818588655257005e+00 2.1909966119596067e+00 1.3957000000000000e-01 1 0 0 0 0 P 324 -211 4.2187861353044825e-01 -4.1948610601557895e-01 3.1750067633231658e+00 3.2332797419558879e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 325 -211 1.4160907908024109e-01 2.6437566906075485e-02 7.1935176570476367e+00 7.1963135106370943e+00 1.3957000000000000e-01 1 0 0 0 0 P 326 111 2.3797221262293780e-01 -3.5857259340605030e-01 3.2830040060747034e+00 3.3138406695291112e+00 1.3497999999999999e-01 2 0 0 -189 0 V -97 0 0 0 0 0 0 3 0 P 327 211 4.5413708781015905e-01 5.0712229226306049e-01 8.0465602924559274e+00 8.0765107465330139e+00 1.3957000000000000e-01 1 0 0 0 0 P 328 -211 3.2693619426760534e-01 4.4548271686012947e-01 9.6150880725620169e+00 9.6319645220571513e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 111 -3.4569390833159477e-02 -2.0993398179053272e-02 2.1786704607868135e+00 2.1832224675132643e+00 1.3497999999999999e-01 2 0 0 -190 0 V -98 0 0 0 0 0 0 2 0 P 330 211 3.5175340213509987e-01 -2.8068641952120632e-01 1.2932806941354567e+00 1.3764338199640187e+00 1.3957000000000000e-01 1 0 0 0 0 P 331 111 1.0628184770724849e-01 1.1167792277734059e-01 3.0814154913126766e+00 3.0882209798020726e+00 1.3497999999999999e-01 2 0 0 -191 0 V -99 0 0 0 0 0 0 2 0 P 332 -211 -1.1139727035280111e-01 1.6038794805558751e-01 1.1937772230552777e+00 1.2176688749036444e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 111 -5.4666770304648137e-02 -4.1998225636291814e-01 1.0104900281094393e+00 1.1039398755112728e+00 1.3497999999999999e-01 2 0 0 -192 0 V -100 0 0 0 0 0 0 2 0 P 334 -211 -3.9473999955401190e-01 -1.1037961023614785e-01 9.1051272311471709e-01 1.0082244439893147e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 211 1.9600606945591462e-01 6.3679065269823731e-01 2.5234780053110599e+00 2.6136835582786393e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 -1.5944414227785765e-05 -5.7454960326071637e-05 -1.1085398440378624e-03 1.1105716485710396e-03 0 2 0 P 336 22 -3.1298003943061726e-03 -2.1437412653362750e-01 -3.2439587448022031e+00 3.2510358964115191e+00 0 1 0 0 0 0 P 337 22 -6.6567625294904453e-02 -3.6777328176103220e-02 -1.6017742059082500e+00 1.6035786314734244e+00 0 1 0 0 0 0 V -102 0 6.1550069150497291e-05 -4.1676100374545446e-05 5.0593875931406775e-02 5.0593957966781761e-02 0 2 0 P 338 22 1.3247564093684291e-02 2.4134593403957603e-02 6.8374447880986233e+00 6.8375002162230469e+00 0 1 0 0 0 0 P 339 22 1.4444592996139330e-01 -1.3091026364053768e-01 1.2278588762286370e+02 1.2278604237232472e+02 0 1 0 0 0 0 V -103 0 -4.1671785108673652e-05 -2.9897127036434579e-05 2.3756293677806743e-02 2.3756349667251073e-02 0 2 0 P 340 22 -1.2137054186724094e-01 -9.9696963259505916e-02 5.5009306508176032e+01 5.5009530745166103e+01 0 1 0 0 0 0 P 341 22 -9.0849466834190518e-01 -6.3917253656469397e-01 5.3209730095972179e+02 5.3209846043069388e+02 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 342 211 -2.1498430140325045e-01 -6.5081961234198604e-01 1.3153183509272827e+02 1.3153369494948137e+02 1.3957000000000000e-01 1 0 0 0 0 P 343 111 2.9540892637941400e-02 3.7939647295221235e-01 4.0163487030788232e+01 4.0165516608413256e+01 1.3497999999999999e-01 2 0 0 -193 0 V -105 0 0 0 0 0 0 2 0 P 344 -211 -3.4447723194886337e-01 4.7776361227041142e-01 5.6457235013410553e+01 5.6460479875545794e+01 1.3957000000000000e-01 1 0 0 0 0 P 345 111 -1.0875925625991398e-01 -1.5550372918395011e-01 8.2475231133335114e+01 8.2475559895541551e+01 1.3497999999999999e-01 2 0 0 -194 0 V -106 0 -2.5534168410341944e-04 -1.4441924420537065e-04 4.1450612924844310e-02 4.1451661277538111e-02 0 2 0 P 346 22 -6.1054950829701626e-01 -2.6938471169638567e-01 9.5757690166383270e+01 9.5760015480502261e+01 0 1 0 0 0 0 P 347 22 -5.6848849594930972e-01 -3.9746989161897922e-01 9.5640154291716001e+01 9.5642669737037409e+01 0 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 348 321 -1.0485154521614043e-01 3.8407839871916150e-01 1.4269133630076530e+02 1.4269274545792788e+02 4.9359999999999998e-01 1 0 0 0 0 P 349 111 -2.1200205244751391e-01 -1.5675767472016949e-01 6.1672705859224557e+01 6.1673417170103818e+01 1.3497999999999999e-01 2 0 0 -195 0 V -108 0 0 0 0 0 0 2 0 P 350 -311 2.3571358292204594e-01 -5.8535353201602497e-02 6.7763290979220741e+01 6.7765553690973320e+01 4.9767000000000000e-01 2 0 0 -196 0 P 351 -211 -8.3667444961587997e-02 -1.7591408258070959e-01 1.0195376654762102e+01 1.0198192532167878e+01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 352 -211 3.1936007549003505e-02 2.7573590648068719e-01 9.9019018055522956e+00 9.9067749217593875e+00 1.3957000000000000e-01 1 0 0 0 0 P 353 111 6.5807149483227675e-02 -1.9026039953212204e-01 2.3303306733138786e+01 2.3304567232619977e+01 1.3497999999999999e-01 2 0 0 -197 0 V -110 0 0 0 0 0 0 2 0 P 354 -211 2.0658692747398472e-01 -1.8981997189127775e-01 2.7255194535187233e+01 2.7256995775692740e+01 1.3957000000000000e-01 1 0 0 0 0 P 355 111 1.2954053791109119e+00 6.6819510074961730e-01 1.6248782338414324e+02 1.6249441691179985e+02 1.3497999999999999e-01 2 0 0 -198 0 V -111 0 0 0 0 0 0 1 0 P 356 130 2.5792715646643307e+00 7.9689989497005909e-01 1.9661539938292489e+02 1.9663456115643265e+02 4.9767000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 357 -321 7.5344964275741066e-01 9.5514171555739180e-01 3.1018965211826526e+01 3.1046736154279944e+01 4.9359999999999998e-01 1 0 0 0 0 P 358 211 7.6648197590033898e-02 -8.0130371787976037e-02 5.3727516863619522e+00 5.3757079804321481e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 3 0 P 359 211 3.4062182386670331e-01 9.0496931577205758e-02 1.3588431056229142e+01 1.3593717345756156e+01 1.3957000000000000e-01 1 0 0 0 0 P 360 -211 3.9865836527773021e-02 -4.6130402114189568e-02 1.2514563104840803e+01 1.2515489874106565e+01 1.3957000000000000e-01 1 0 0 0 0 P 361 111 -1.4997178949012738e-01 9.8421312903477262e-02 6.9275410389954253e+00 6.9311775868060348e+00 1.3497999999999999e-01 2 0 0 -199 0 V -114 0 0 0 0 0 0 2 0 P 362 211 3.4520500366766205e-01 2.6802105390512693e-01 3.5959134974108359e+01 3.5962061532272266e+01 1.3957000000000000e-01 1 0 0 0 0 P 363 111 2.3620021143543810e-01 7.2251116231022838e-01 2.1593610910615038e+01 2.1607407634396537e+01 1.3497999999999999e-01 2 0 0 -200 0 V -115 0 0 0 0 0 0 2 0 P 364 321 3.7990679021298057e-01 4.9206186489451853e-01 1.7249559654915128e+01 1.7267814085651057e+01 4.9359999999999998e-01 1 0 0 0 0 P 365 -211 -2.2605218574099292e-01 7.6218806755229310e-02 9.3457558842810098e+00 9.3498418024400074e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 366 321 1.7555659578071064e-01 7.1669321849671386e-01 1.9763909766208947e+01 1.9783837835329390e+01 4.9359999999999998e-01 1 0 0 0 0 P 367 -321 3.5890313462281281e-01 5.9789919300112571e-01 2.1896488892063431e+01 2.1913150427660799e+01 4.9359999999999998e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 368 -321 1.0080151535121691e-01 -1.5974070861494835e-01 1.6827995306504608e+01 1.6836292496723470e+01 4.9359999999999998e-01 1 0 0 0 0 P 369 211 -1.5450578471262821e-01 2.1269628275914346e-01 5.4839750378721197e+00 5.4920464079533904e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 370 -211 -4.1331600417505970e-01 4.5449275213632750e-01 2.8144592633436787e+01 2.8151642368928602e+01 1.3957000000000000e-01 1 0 0 0 0 P 371 111 -4.4248630924071858e-01 2.9973015932173258e-01 9.7990579180800754e+00 9.8145498105904139e+00 1.3497999999999999e-01 2 0 0 -201 0 V -119 0 0 0 0 0 0 2 0 P 372 22 -3.5313190999262617e-01 -6.6128431302647353e-02 4.6689798377600997e+00 4.6827820620537013e+00 0 1 0 0 0 0 P 373 113 -3.7314327302857264e-01 -3.1343536980779368e-01 2.1615141836205968e+01 2.1631542162899251e+01 6.8686396959918750e-01 2 0 0 -202 0 V -120 0 0 0 0 0 0 2 0 P 374 211 4.1937576073248987e-02 -1.6028916300637353e-01 2.4210228593962855e+00 2.4306959593259601e+00 1.3957000000000000e-01 1 0 0 0 0 P 375 111 -1.0162641267204620e+00 -1.6645054741652140e-01 1.7747749921192856e+01 1.7778114225800081e+01 1.3497999999999999e-01 2 0 0 -203 0 V -121 0 0 0 0 0 0 3 0 P 376 211 -6.1702514290714536e-03 -9.0701324942038197e-02 3.3991632949277837e+00 3.4032419386275268e+00 1.3957000000000000e-01 1 0 0 0 0 P 377 -211 -7.7232801550909080e-01 -1.4383287838161398e+00 3.2364194522250628e+01 3.2405645296967499e+01 1.3957000000000000e-01 1 0 0 0 0 P 378 111 -3.6771479861134548e-01 -3.0674811230272903e-01 1.0724037147336361e+01 1.0735571755401258e+01 1.3497999999999999e-01 2 0 0 -204 0 V -122 0 0 0 0 0 0 2 0 P 379 -211 -5.4473005486996040e-01 -5.2714748677132062e-01 1.2946462481405826e+01 1.2969386487912088e+01 1.3957000000000000e-01 1 0 0 0 0 P 380 211 1.5928438271681698e-02 1.0044260744684567e-01 1.2195751164075470e+00 1.2317409151266259e+00 1.3957000000000000e-01 1 0 0 0 0 V -123 0 -1.2683376415046182e-05 5.1957540971332079e-06 6.2354404661641685e-05 6.4026804815406810e-05 0 2 0 P 381 22 -2.8637897565806636e-01 1.7012764854379461e-01 1.4526721528245348e+00 1.4903733485572910e+00 0 1 0 0 0 0 P 382 22 -6.6809739505602997e-02 -2.5443642185999645e-02 2.8368505574298797e-01 2.9255449248370446e-01 0 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 383 211 -3.2563315490161776e-01 -1.2898907152577652e+00 4.7249103532217775e+00 4.9106122469363953e+00 1.3957000000000000e-01 1 0 0 0 0 P 384 111 -9.5275416130225199e-01 -8.2210395565029437e-01 4.3797109490292323e+00 4.5589124803204060e+00 1.3497999999999999e-01 2 0 0 -205 0 V -125 0 0 0 0 0 0 2 0 P 385 321 -1.5255044883946678e-01 6.1858071248306147e-02 3.8330715266036202e+00 3.8682265120438708e+00 4.9359999999999998e-01 1 0 0 0 0 P 386 -211 -4.1684000792091025e-01 8.7850033817163994e-04 6.2965462040820945e+00 6.3118721667193940e+00 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 387 321 -6.1662259089498239e-02 -4.5034854063512697e-01 1.5896470988612525e+00 1.7254665749200144e+00 4.9359999999999998e-01 1 0 0 0 0 P 388 -321 -3.1500829493513088e-01 -4.2451296373865238e-01 1.6799055493143404e+00 1.8289792499854198e+00 4.9359999999999998e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 1 0 P 389 130 -2.7910938691953835e-01 1.5545589185059163e-02 1.4156585645928190e+00 1.5264037197329912e+00 4.9767000000000000e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 390 211 -4.1834292137934576e-02 -1.3045265986760377e+00 2.7963612466156955e+00 3.0891189295859167e+00 1.3957000000000000e-01 1 0 0 0 0 P 391 111 6.5809918697719483e-01 -9.9507801597847212e-01 2.1176309463483975e+00 2.4343079556859908e+00 1.3497999999999999e-01 2 0 0 -206 0 V -129 0 -6.9447212509508631e-09 3.3180131361316828e-06 8.0428832085011129e-06 8.8700993841329421e-06 0 2 0 P 392 22 -3.0092086618271667e-02 2.3759341667190581e-01 6.0228454409391841e-01 6.4815340574380276e-01 0 1 0 0 0 0 P 393 22 2.9549196811105887e-02 2.1785678119180668e-02 2.6451895618794692e-02 4.5249017504489855e-02 0 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 394 -211 7.0389497138327017e-01 -9.1696570817882794e-01 2.4971702474918995e+00 2.7552918666764343e+00 1.3957000000000000e-01 1 0 0 0 0 P 395 111 6.9935983673762969e-01 4.2453864778814708e-02 1.1001638297251051e+00 1.3112919448054854e+00 1.3497999999999999e-01 2 0 0 -207 0 V -131 0 0 0 0 0 0 2 0 P 396 211 9.2910839911847176e-01 -3.1977637381794588e-01 2.1053467012188745e+00 2.3275445997440825e+00 1.3957000000000000e-01 1 0 0 0 0 P 397 111 -7.0351425091691094e-02 7.3496228745478620e-02 1.0571108545691734e+00 1.0705391061984646e+00 1.3497999999999999e-01 2 0 0 -208 0 V -132 0 0 0 0 0 0 2 0 P 398 -211 3.2458778739952365e-01 3.5935559060836259e-02 7.7554109690713036e-01 8.5299025435572717e-01 1.3957000000000000e-01 1 0 0 0 0 P 399 111 1.5078237905149844e-01 -9.3670734150819157e-01 1.5727515280357327e+00 1.8417173884194356e+00 1.3497999999999999e-01 2 0 0 -209 0 V -133 0 0 0 0 0 0 2 0 P 400 311 5.7295082497424299e-01 -2.9154336202728481e-01 1.4694419700064976e+00 1.6793466919898983e+00 4.9767000000000000e-01 2 0 0 -210 0 P 401 211 5.4429918873637195e-01 -8.8463382475476660e-01 1.8098417112138476e+00 2.0913740495924653e+00 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 402 -311 7.7601143758314928e-01 -1.8370135001409909e+00 3.2372207502500050e+00 3.8345907168444100e+00 4.9767000000000000e-01 2 0 0 -211 0 P 403 -211 2.2688355547035521e-01 -1.5458317791441784e-01 9.3771141835848704e-01 9.8699270294003483e-01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 404 321 -1.8532572949512696e-01 -8.6609196634274899e-01 2.0606291114498010e+00 2.2965831609438285e+00 4.9359999999999998e-01 1 0 0 0 0 P 405 -321 -3.3761267251298510e-01 -6.6776366531319276e-01 2.0888882674444531e+00 2.2731004780301638e+00 4.9359999999999998e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 406 -321 -7.0624220409733085e-01 -1.7322598992489355e-01 8.1595677322197158e-01 1.1992546477710759e+00 4.9359999999999998e-01 1 0 0 0 0 P 407 111 -7.5828614159428398e-01 -5.9840178308482339e-01 1.2365749610811196e+00 1.5749348562101910e+00 1.3497999999999999e-01 2 0 0 -212 0 V -137 0 0 0 0 0 0 3 0 P 408 -211 -8.1852233198497182e-01 -5.7148625278142007e-01 3.2828753099785624e-01 1.0601074629418161e+00 1.3957000000000000e-01 1 0 0 0 0 P 409 211 -1.7817727632170463e-01 5.8880666447888017e-02 4.3371343938410729e-03 2.3390739687645359e-01 1.3957000000000000e-01 1 0 0 0 0 P 410 111 -1.7052266479802342e-01 -3.0893303555375418e-01 1.2617334486478313e-01 3.9831760320207249e-01 1.3497999999999999e-01 2 0 0 -213 0 V -138 0 0 0 0 0 0 3 0 P 411 -211 -3.6649451678392764e-01 -1.4715564825596132e-02 2.9579687132866694e-02 3.9356006081880213e-01 1.3957000000000000e-01 1 0 0 0 0 P 412 211 -2.1446000804887730e+00 -2.8730146825720410e-01 1.0340624850295712e+00 2.4022107831621957e+00 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -3.8729543034278113e-01 -1.8168722516536270e-01 2.7408116961600942e-01 5.2568820235075564e-01 1.3497999999999999e-01 2 0 0 -214 0 V -139 0 0 0 0 0 0 2 0 P 414 -211 -1.1239176128298367e+00 1.2900550504233771e-01 2.6520257878766795e-01 1.1703185094050153e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 111 -1.0183336387993564e-02 -2.0392855828700296e-01 -1.1956408445691093e-01 2.7240728315708801e-01 1.3497999999999999e-01 2 0 0 -215 0 V -140 0 0 0 0 0 0 2 0 P 416 -211 -5.3920494801050689e-01 -3.1592547058822928e-01 -5.2689974529270933e-01 8.2924906114805430e-01 1.3957000000000000e-01 1 0 0 0 0 P 417 211 -4.1228111603090173e-01 -2.1350478984935450e-01 2.2424466188974040e-01 5.3415865359492853e-01 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 2 0 P 418 -211 -1.2293391849964748e+00 5.1607288545883934e-01 -1.9543491412107705e-01 1.3547253025728581e+00 1.3957000000000000e-01 1 0 0 0 0 P 419 211 -1.3405249281645319e+00 1.6160938156479412e+00 -2.0343163542705611e-01 2.1141500701697056e+00 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 420 211 -5.5207250606844005e-01 -1.8043056964531894e-02 -3.8879096347161157e-01 6.8974473686900806e-01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 1.7301605681906473e-01 3.5031788684003431e-02 -1.0065496460474109e-01 2.4395246347434205e-01 1.3497999999999999e-01 2 0 0 -216 0 V -143 0 0 0 0 0 0 2 0 P 422 321 -1.1941082381103589e+00 1.6926135646095639e+00 -8.2524343778675902e-01 2.2837475462566847e+00 4.9359999999999998e-01 1 0 0 0 0 P 423 111 6.3905347339061877e-02 1.5806802170979056e-01 -1.5378685327811331e-01 2.6634449411796918e-01 1.3497999999999999e-01 2 0 0 -217 0 V -144 0 4.7107562771074065e+01 7.0911295984711856e+01 -4.6459656793269104e+01 9.8574482628843597e+01 0 2 0 P 424 2212 2.7666025826560841e+00 4.0449445156841506e+00 -2.6998198711209120e+00 5.6731863987288431e+00 9.3827000000000005e-01 1 0 0 0 0 P 425 -211 2.1413491125339598e-01 4.4197746137749905e-01 -2.3992128319960482e-01 5.6412750652254440e-01 1.3957000000000000e-01 1 0 0 0 0 V -145 0 7.6912609854428582e-06 9.2724818943662430e-07 5.9282673820040807e-07 7.9669223590463821e-06 0 2 0 P 426 22 3.5860342123147738e-02 -1.9811419859497772e-02 2.7385609071118772e-02 4.9279083577463717e-02 0 1 0 0 0 0 P 427 22 5.5329188997298084e-01 9.0838828960246934e-02 1.8025045530004113e-02 5.6098886853760388e-01 0 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 428 2212 1.7149845841719380e+00 2.2640126573254276e+00 -1.5842255643550405e+00 3.3848259435505965e+00 9.3827000000000005e-01 1 0 0 0 0 P 429 211 1.3674299802742673e-01 1.6332488269511655e-01 -1.5282042292223580e-01 2.9699752756383918e-01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 430 -2212 1.8293212994848160e+00 1.6315189949969124e+00 1.6005217177932232e-01 2.6294938559304200e+00 9.3827000000000005e-01 1 0 0 0 0 P 431 -211 8.8352993926573908e-01 2.8422817917934495e-01 -7.3697874471008271e-02 9.4144674465424272e-01 1.3957000000000000e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 432 2212 1.6201725299045691e+00 5.2309893471723024e-01 9.1654473179234563e-01 2.1491850456477626e+00 9.3827000000000005e-01 1 0 0 0 0 P 433 211 2.2946194339485129e-01 -5.8060771053094165e-02 -6.7564272208212803e-02 2.8296387115822264e-01 1.3957000000000000e-01 1 0 0 0 0 V -149 0 2.5756662117188586e+02 2.6486859727765773e+02 -4.8854678954016364e+01 4.3996116423005583e+02 0 2 0 P 434 -2212 1.0154035448560836e+00 1.0334392710720441e+00 -9.4823678008601239e-02 1.7286940760907632e+00 9.3827000000000005e-01 1 0 0 0 0 P 435 211 2.1345709091046236e-01 2.3025938430614548e-01 -1.3826394633670780e-01 3.7037820869700555e-01 1.3957000000000000e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 2 0 P 436 -321 1.5658555445552651e+00 2.6781856554667031e-02 1.0220726698271168e+00 1.9341391771696552e+00 4.9359999999999998e-01 1 0 0 0 0 P 437 211 5.9512659674987596e-02 -2.8542429306581622e-02 3.4343965870313609e-01 3.7654616052011297e-01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 438 22 1.0120694948312209e-01 -1.5508347124114638e-01 -5.7559488357805244e-01 6.0465130420525393e-01 0 1 0 0 0 0 P 439 111 -6.9014911157323311e-01 3.6624591813251961e-01 -1.3760126972652982e+00 1.5881034009753194e+00 1.3497999999999999e-01 2 0 0 -218 0 V -152 0 0 0 0 0 0 2 0 P 440 321 1.3026757609162007e-01 -4.9298681505420611e-01 -6.7083294880419364e-01 9.7655693454063697e-01 4.9359999999999998e-01 1 0 0 0 0 P 441 -211 9.0342068743137827e-02 1.1159457157413519e-01 -1.6668954900558433e-01 2.6053834350684302e-01 1.3957000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 442 -321 -4.1064623224805330e-01 -3.0498928312305734e-01 -1.1212804541672545e+00 1.3276142541329401e+00 4.9359999999999998e-01 1 0 0 0 0 P 443 211 -6.8335871048624031e-01 -6.0865330195482636e-01 -2.8487648194290665e+00 2.9953929208861152e+00 1.3957000000000000e-01 1 0 0 0 0 V -154 0 0 0 0 0 0 3 0 P 444 -211 1.2647761687002446e-01 -5.9299666934741435e-01 -7.5936069657765071e-01 9.8170774155710017e-01 1.3957000000000000e-01 1 0 0 0 0 P 445 211 -1.9791245365644264e-01 -1.7731335852670563e-02 -1.9667534048843516e-01 3.1248154191835981e-01 1.3957000000000000e-01 1 0 0 0 0 P 446 111 -4.4822668570602547e-03 -2.4330295450190614e-01 -4.2822064581156832e-01 5.1069456653151413e-01 1.3497999999999999e-01 2 0 0 -219 0 V -155 0 -1.5423719900714626e-04 -3.0396698455839810e-04 -6.8743931476597682e-04 7.6808783129518653e-04 0 2 0 P 447 22 -4.1286166127738555e-01 -8.1329011935553741e-01 -1.9747845113519753e+00 2.1752400869489614e+00 0 1 0 0 0 0 P 448 22 -1.8786306436485181e-01 -3.7060380881856986e-01 -7.0266163274809612e-01 8.1631677932013846e-01 0 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 449 -211 1.4929108192035712e-01 -1.3096916834052169e-01 -1.1760439472760995e+00 1.2008330029698167e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 211 1.4923132432167519e-01 -1.0596752268996941e-01 -8.0358087565631597e-01 8.3589539575500815e-01 1.3957000000000000e-01 1 0 0 0 0 P 451 111 3.4147882306407884e-01 -9.1963817389901129e-02 -7.7533614343446888e-01 8.6280407163271244e-01 1.3497999999999999e-01 2 0 0 -220 0 V -157 0 0 0 0 0 0 2 0 P 452 -211 -1.7694314717089633e-02 -7.4618236022479545e-01 -2.6671244708156316e+00 2.7731090730816046e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 111 5.6283234106892555e-01 -9.8089270331564393e-01 -2.4161679720150513e+00 2.6711454488594075e+00 1.3497999999999999e-01 2 0 0 -221 0 V -158 0 1.9098751803134654e-04 2.6364910719117541e-05 -6.8250570729500384e-04 7.1422406523923715e-04 0 2 0 P 454 22 2.2171174761855247e-01 9.0721964622802548e-02 -7.5817364862712355e-01 7.9511876809044180e-01 0 1 0 0 0 0 P 455 22 8.3576668902039686e-02 -4.8578363155479830e-02 -3.3279338835044708e-01 3.4654921191859461e-01 0 1 0 0 0 0 V -159 0 0 0 0 0 0 2 0 P 456 -211 9.7208075064648514e-01 -1.3582175574812225e+00 -4.0257672589924880e+00 4.3607313294565149e+00 1.3957000000000000e-01 1 0 0 0 0 P 457 111 4.4925544367725823e-01 -7.7444705512899337e-02 -1.3661130339556005e+00 1.4464828232747893e+00 1.3497999999999999e-01 2 0 0 -222 0 V -160 0 0 0 0 0 0 2 0 P 458 211 -6.8627719398491632e-02 1.1602667203351609e-02 -1.4004629270521679e-01 2.0961186692681569e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 -211 3.4051203078225273e-01 -1.8163286012903798e-01 -2.0004011653220868e+00 2.0420635509474407e+00 1.3957000000000000e-01 1 0 0 0 0 V -161 0 4.4800165286412693e-06 6.2163185170046877e-06 -2.0330062332375952e-05 2.1792646336796628e-05 0 2 0 P 460 22 3.2154219538330225e-01 3.4983430328265414e-01 -1.2522019478465423e+00 1.3393218960936348e+00 0 1 0 0 0 0 P 461 22 3.3873877282926977e-02 1.4332894726147732e-01 -3.6065614431414433e-01 3.8956832663450336e-01 0 1 0 0 0 0 V -162 0 0 0 0 0 0 2 0 P 462 211 -3.2824967278965933e-01 4.7182945188542297e-02 -5.6802377857145958e-01 6.7238744480082457e-01 1.3957000000000000e-01 1 0 0 0 0 P 463 -211 -3.2058761248801471e-02 3.0303883894320083e-01 -1.6916214737288002e+00 1.7245066823185258e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 0 0 0 0 0 3 0 P 464 -211 -4.2568875700513480e-02 -9.1849140306745680e-02 -3.5493560025906040e-01 3.9459781928534976e-01 1.3957000000000000e-01 1 0 0 0 0 P 465 211 2.9841988249666490e-01 -1.2502044946123722e-01 -4.0710681155953932e-01 5.3842388503017524e-01 1.3957000000000000e-01 1 0 0 0 0 P 466 111 1.6019607202450947e-01 2.1640289446178290e-01 -9.2827306627690909e-01 9.7591161495222212e-01 1.3497999999999999e-01 2 0 0 -223 0 V -164 0 0 0 0 0 0 1 0 P 467 130 1.1605563167193152e-01 2.9121997396961880e-01 -3.8318499698125845e+00 3.8767289823940931e+00 4.9767000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 468 211 5.4492281858674940e-01 1.9393737463210839e-01 -5.8898170135775887e+00 5.9197953361432818e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 111 1.9669479203760107e-01 4.1959010073696906e-01 -1.2912624680895477e+00 1.3785220548645152e+00 1.3497999999999999e-01 2 0 0 -224 0 V -166 0 0 0 0 0 0 2 0 P 470 -211 2.6333850073362119e-01 8.9346151351301500e-02 -2.4724894186121258e+00 2.4919898897826309e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 5.2372043020336656e-01 4.3935719838588883e-01 -1.5348290887718068e+00 1.6855971549946303e+00 1.3497999999999999e-01 2 0 0 -225 0 V -167 0 0 0 0 0 0 3 0 P 472 211 -2.4154972601659841e-01 3.6013745428606764e-01 -1.9255345836913655e+00 1.9786885742859648e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 -211 -1.5395134568075225e-01 1.6911284748454020e-01 -8.2845533309984487e-01 8.7069983109152993e-01 1.3957000000000000e-01 1 0 0 0 0 P 474 111 1.7475970316627470e-01 -4.8817024941824562e-03 -1.4374995761050360e+00 1.4543690785258618e+00 1.3497999999999999e-01 2 0 0 -226 0 V -168 0 3.4811683492447674e-05 7.0143341846671530e-05 -8.3010696642135077e-04 8.3394254441458910e-04 0 2 0 P 475 22 2.0704216013425636e-01 3.4303803864679672e-01 -4.8054467179349292e+00 4.8221219095895202e+00 0 1 0 0 0 0 P 476 22 8.9755601450712513e-02 2.5499069083702436e-01 -2.2718866596190801e+00 2.2879128730265195e+00 0 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 477 2212 6.2015132849498478e-01 1.8300582938363652e-01 -2.2636130179613861e+01 2.2664792496406136e+01 9.3827000000000005e-01 1 0 0 0 0 P 478 111 -1.5129560074552850e-01 1.0584858714602059e-01 -9.1696710395413117e+00 9.1725231455695120e+00 1.3497999999999999e-01 2 0 0 -227 0 V -170 0 0 0 0 0 0 2 0 P 479 211 -1.4120458548875903e-01 7.3961868482697768e-01 -7.8770907956343272e+00 7.9142285613618260e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 111 8.3249144600613612e-02 -1.1059084132742447e-01 -3.4325075324071364e+00 3.4379482710904727e+00 1.3497999999999999e-01 2 0 0 -228 0 V -171 0 0 0 0 0 0 2 0 P 481 -2212 1.5462218317447296e-01 2.4153713966752344e-01 -2.2243599487628565e+01 2.2265226631864724e+01 9.3827000000000005e-01 1 0 0 0 0 P 482 -211 2.0900003729343633e-01 -7.7207371546681003e-02 -7.3320604343411624e+00 7.3367725868763927e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 483 -311 -3.8404568226110497e-01 5.2191589027494178e-01 -2.6928062634013713e+01 2.6940455080284938e+01 4.9767000000000000e-01 2 0 0 -229 0 P 484 111 -5.3911431284302792e-02 9.1336597342584300e-02 -1.2681960380116664e+00 1.2797615432828615e+00 1.3497999999999999e-01 2 0 0 -230 0 V -173 0 0 0 0 0 0 2 0 P 485 -211 -1.4209556297791420e-01 8.2704457666011293e-03 -5.9050876764816698e+00 5.9084515569755558e+00 1.3957000000000000e-01 1 0 0 0 0 P 486 211 -3.6772491274648524e-02 1.0528002719709088e-01 -3.5655004653682482e+01 3.5655452216165493e+01 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 487 2112 3.8317955854451424e-01 1.0103929922947328e+00 -6.6931550685873802e+01 6.6946866913796342e+01 9.3957000000000002e-01 1 0 0 0 0 P 488 111 2.5997236606339180e-01 7.9465448734761399e-02 -2.6185623396504873e+01 2.6187382317685795e+01 1.3497999999999999e-01 2 0 0 -231 0 V -175 0 0 0 0 0 0 2 0 P 489 -2112 -6.4073018867660969e-01 8.3937882255228780e-01 -9.2914154011934954e+01 9.2924904624760842e+01 9.3957000000000002e-01 1 0 0 0 0 P 490 211 -5.4660432900768809e-02 2.7027982391934803e-02 -2.9024518357129065e+00 2.9064453750742159e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 491 2112 -1.1674245986523368e+00 1.3312696037486340e+00 -1.2637158274507190e+02 1.2638747911178092e+02 9.3957000000000002e-01 1 0 0 0 0 P 492 -211 -2.8159594782145614e-01 3.6506558094650526e-01 -4.8727615988955641e+01 4.8729997013218117e+01 1.3957000000000000e-01 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 493 -2112 -1.5508375920400423e+00 1.4471304109031449e+00 -1.5036462760797031e+02 1.5038252329021324e+02 9.3957000000000002e-01 1 0 0 0 0 P 494 211 -2.1049617253356664e-01 2.2158202723724299e-01 -3.9971986877821372e+01 3.9973398929526496e+01 1.3957000000000000e-01 1 0 0 0 0 V -178 0 0 0 0 0 0 2 0 P 495 211 -2.9992149955550701e-01 2.3178833041728272e-01 -1.1455626743318666e+02 1.1455697956364202e+02 1.3957000000000000e-01 1 0 0 0 0 P 496 -211 9.8487951358349965e-02 -7.9689622849510311e-02 -8.1330964820859215e+00 8.1352804797604268e+00 1.3957000000000000e-01 1 0 0 0 0 V -179 0 0 0 0 0 0 2 0 P 497 22 -1.4284014437466641e-01 -7.8219321589893018e-02 -8.4429153507921342e+01 8.4429310571822512e+01 0 1 0 0 0 0 P 498 113 -1.6776616206224901e-01 7.5436886196055286e-01 -2.0068928282416542e+02 2.0069170577273511e+02 6.1262356075442603e-01 2 0 0 -232 0 V -180 0 0 0 0 0 0 3 0 P 499 211 -1.5853835850156153e-01 1.0990055778410363e-02 -1.1783755785999148e+02 1.1783774767613382e+02 1.3957000000000000e-01 1 0 0 0 0 P 500 -211 2.3055849717826322e-02 -9.8504043352466958e-02 -1.0027085956445785e+02 1.0027100773503221e+02 1.3957000000000000e-01 1 0 0 0 0 P 501 111 2.1882695610916773e-02 -1.6996854155899646e-01 -7.0660206430388644e+02 7.0660209797754749e+02 1.3497999999999999e-01 2 0 0 -233 0 V -181 0 7.1999184372342395e-06 -7.2874277959974355e-08 -8.7304872601084817e-05 8.7624560715225444e-05 0 2 0 P 502 22 4.2572506911892882e-01 1.8071658360437115e-02 -4.5331262291665135e+00 4.5531090288801144e+00 0 1 0 0 0 0 P 503 22 5.5485121264883287e-02 -2.2942247586816320e-02 -1.3019390888707387e+00 1.3033228059600901e+00 0 1 0 0 0 0 V -182 0 3.6322432037658303e-05 6.8660170743909798e-05 5.6114654248038631e-05 9.8963138629718769e-05 0 2 0 P 504 22 1.7202148702246775e-01 3.7591857377951426e-01 3.0536050733557840e-01 5.1395642378521478e-01 0 1 0 0 0 0 P 505 22 2.6274304660358971e-02 -1.0807077295236908e-03 9.8736544965726198e-04 2.6315050923629194e-02 0 1 0 0 0 0 V -183 0 -1.1748420546955638e-06 -1.9806312966200173e-06 7.9900618667323064e-05 7.9946931586544502e-05 0 2 0 P 506 22 -5.3690692848969948e-02 6.2023109120924302e-03 1.3735643601705250e+00 1.3746272988304560e+00 0 1 0 0 0 0 P 507 22 -5.5743871546719302e-02 -1.9069478997154091e-01 6.0690440856689252e+00 6.0722951176577586e+00 0 1 0 0 0 0 V -184 0 -3.4092380262983263e-05 -1.0092958374642454e-05 6.4777078599833650e-04 6.4938088062419484e-04 0 2 0 P 508 22 -4.1342632919210087e-02 4.5162918185010149e-02 1.1232631604101808e+00 1.1249306778687949e+00 0 1 0 0 0 0 P 509 22 -1.1893147179881647e-01 -9.2611640010060448e-02 1.9220179841598899e+00 1.9279197966418709e+00 0 1 0 0 0 0 V -185 0 7.1214719610043184e-05 1.1616854926286398e-04 -4.2527002322685479e-04 4.4772922760211571e-04 0 2 0 P 510 22 2.8810617400478572e-01 4.7413983624073963e-01 -1.6027988937019575e+00 1.6961067317425176e+00 0 1 0 0 0 0 P 511 22 9.9380229367334455e-03 1.2042826058597522e-02 -1.7701942546016847e-01 1.7770669922548418e-01 0 1 0 0 0 0 V -186 0 1.1506311750234061e-04 -2.7940346731180345e-05 3.1149763118092022e-05 1.3631835424301203e-04 0 2 0 P 512 22 2.3574912489548550e-01 -7.0959967936424645e-02 1.5108210292486135e-02 2.4666014059180222e-01 0 1 0 0 0 0 P 513 22 2.3385345138614122e-02 8.0353131911182259e-03 5.5044394056429746e-02 6.0343400155866117e-02 0 1 0 0 0 0 V -187 0 -1.0180664844040460e-05 6.7639695241698004e-06 -6.6059411270354292e-05 6.7373662224699712e-05 0 2 0 P 514 22 -2.1669433565875984e-01 6.7147813248268740e-02 -1.1309957425959427e+00 1.1535235731014615e+00 0 1 0 0 0 0 P 515 22 -5.2975249781485823e-02 1.1201895880995075e-01 -6.1881277429391301e-01 6.3109735687261870e-01 0 1 0 0 0 0 V -188 0 3.9739256139550257e-05 1.4213867953084358e-05 6.2036057602076971e-05 7.5263650746551250e-05 0 2 0 P 516 22 4.9174909408084994e-01 1.0428918434754181e-01 7.3572915174652864e-01 8.9106160854953154e-01 0 1 0 0 0 0 P 517 22 4.1620314431039002e-01 2.2046559160701670e-01 6.8165463528203118e-01 8.2854280288827931e-01 0 1 0 0 0 0 V -189 0 3.9424903516159012e-05 -5.9404792445123622e-05 5.4389592278885636e-04 5.4900463892025011e-04 0 2 0 P 518 22 2.3931858680341114e-01 -2.8496491396181750e-01 2.5257039011505866e+00 2.5529705412452643e+00 0 1 0 0 0 0 P 519 22 -1.3463741804733446e-03 -7.3607679444232826e-02 7.5730010492411681e-01 7.6087012828384648e-01 0 1 0 0 0 0 V -190 0 -3.0800151065602308e-08 -1.8704403511645133e-08 1.9411212548770943e-06 1.9451769379958089e-06 0 2 0 P 520 22 1.5921989794308943e-02 3.6812943337804417e-02 2.6544567926190132e-01 2.6845877000950180e-01 0 1 0 0 0 0 P 521 22 -5.0491380627468420e-02 -5.7806341516857693e-02 1.9132247815249122e+00 1.9147636975037616e+00 0 1 0 0 0 0 V -191 0 4.5317436017110756e-05 4.7618264352406512e-05 1.3138824021420590e-03 1.3167841891907077e-03 0 3 0 P 522 22 -1.9131475630927097e-02 4.7195948132030999e-02 4.2187636560558811e-01 4.2493898236861938e-01 0 1 0 0 0 0 P 523 11 2.9458229701394421e-02 1.3126220671927976e-02 6.4071287796031950e-01 6.4152422951160892e-01 5.1000000000000004e-04 1 0 0 0 0 P 524 -11 9.5955093636781161e-02 5.1355753973381615e-02 2.0188262477467691e+00 2.0217577679218439e+00 5.1000000000000004e-04 1 0 0 0 0 V -192 0 -5.8018033369912525e-06 -4.4572862871987030e-05 1.0724365797375899e-04 1.1716152276576739e-04 0 2 0 P 525 22 4.0614119672149132e-02 -1.4786298090005445e-01 2.9328118125213498e-01 3.3094836321402332e-01 0 1 0 0 0 0 P 526 22 -9.5280889976797262e-02 -2.7211927546286369e-01 7.1720884685730435e-01 7.7299151229724927e-01 0 1 0 0 0 0 V -193 0 4.3097686639371244e-06 5.5350765813949307e-05 5.8595161615874114e-03 5.8598122599537190e-03 0 2 0 P 527 22 -3.0381679786579820e-02 1.3655872076786951e-01 1.9786342569412572e+01 1.9786837129890987e+01 0 1 0 0 0 0 P 528 22 5.9922572424521224e-02 2.4283775218434281e-01 2.0377144461375657e+01 2.0378679478522269e+01 0 1 0 0 0 0 V -194 0 -9.6308291708555532e-06 -1.3770136930897704e-05 7.3033311295706187e-03 7.3033602420595860e-03 0 2 0 P 529 22 -3.7137411313745108e-02 -9.9125182764869438e-02 2.1495022662969109e+01 2.1495283302872117e+01 0 1 0 0 0 0 P 530 22 -7.1621844946168856e-02 -5.6378546419080681e-02 6.0980208470366001e+01 6.0980276592669433e+01 0 1 0 0 0 0 V -195 0 -5.4259144147220964e-05 -4.0120070398519366e-05 1.5784320003190921e-02 1.5784502053879042e-02 0 2 0 P 531 22 -1.2862395546827055e-01 -1.6761733124455083e-01 4.6138601832070030e+01 4.6139085585975266e+01 0 1 0 0 0 0 P 532 22 -8.3378096979243366e-02 1.0859656524381327e-02 1.5534104027154525e+01 1.5534331584128561e+01 0 1 0 0 0 0 V -196 0 0 0 0 0 0 1 0 P 533 310 2.3571358292204594e-01 -5.8535353201602497e-02 6.7763290979220741e+01 6.7765553690973320e+01 4.9767000000000000e-01 2 0 0 -234 0 V -197 0 4.0739664661821293e-05 -1.1778575635369731e-04 1.4426531300548171e-02 1.4427311646248803e-02 0 2 0 P 534 22 9.1668625213305349e-02 -1.6333728990642449e-01 1.4894690688479296e+01 1.4895868316838543e+01 0 1 0 0 0 0 P 535 22 -2.5861475730077674e-02 -2.6923109625697571e-02 8.4086160446594906e+00 8.4086989157814340e+00 0 1 0 0 0 0 V -198 0 4.8729725345609528e-04 2.5135733000552010e-04 6.1123623023316746e-02 6.1126103334090076e-02 0 2 0 P 536 22 1.2226650904299889e+00 6.2843933164845411e-01 1.5615367938122466e+02 1.5615973050121221e+02 0 1 0 0 0 0 P 537 22 7.2740288680922957e-02 3.9755769101163067e-02 6.3341440029185678e+00 6.3346864105876195e+00 0 1 0 0 0 0 V -199 0 -1.9758045298509003e-05 1.2966523672864796e-05 9.1266944350732154e-04 9.1314854078699322e-04 0 2 0 P 538 22 -6.9519188735904236e-02 1.9943666584301325e-02 1.0171172109719897e+00 1.0196852888488501e+00 0 1 0 0 0 0 P 539 22 -8.0452600754223128e-02 7.8477646319175934e-02 5.9104238280234362e+00 5.9114922979571842e+00 0 1 0 0 0 0 V -200 0 4.3748754513526123e-05 1.3382275689381617e-04 3.9995458812165999e-03 4.0021012958715652e-03 0 2 0 P 540 22 2.6875597508563446e-02 2.5419534540309130e-01 6.2517855392448789e+00 6.2570088700654267e+00 0 1 0 0 0 0 P 541 22 2.0932461392687465e-01 4.6831581690713697e-01 1.5341825371370158e+01 1.5350398764331114e+01 0 1 0 0 0 0 V -201 0 -4.8353849586290462e-05 3.2753797660287576e-05 1.0708177016171291e-03 1.0725106187189880e-03 0 2 0 P 542 22 -4.8710405379008039e-02 2.4371303977541267e-02 4.7374765039230388e-01 4.7686843080873120e-01 0 1 0 0 0 0 P 543 22 -3.9377590386171052e-01 2.7535885534419130e-01 9.3253102676877724e+00 9.3376813797816851e+00 0 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 544 211 -1.1946480069053503e-01 -3.7267141990897823e-01 6.3701370172142022e+00 6.3836730201979845e+00 1.3957000000000000e-01 1 0 0 0 0 P 545 -211 -2.5367847233803759e-01 5.9236050101184545e-02 1.5245004818991767e+01 1.5247869142701269e+01 1.3957000000000000e-01 1 0 0 0 0 V -203 0 -4.8771697693462172e-05 -7.9881554076963557e-06 8.5173516523591453e-04 8.5319238353776959e-04 0 2 0 P 546 22 -3.2864360780004664e-01 -9.0447743358496424e-02 4.9988728261389035e+00 5.0104807101850444e+00 0 1 0 0 0 0 P 547 22 -6.8762051892041531e-01 -7.6002804058024981e-02 1.2748877095053953e+01 1.2767633515615037e+01 0 1 0 0 0 0 V -204 0 -1.5866363555674143e-04 -1.3235738915571871e-04 4.6272674585510548e-03 4.6322444756773974e-03 0 2 0 P 548 22 2.3436842095963199e-03 -2.1522801766633067e-02 2.0000505998058321e-01 2.0117342734416180e-01 0 1 0 0 0 0 P 549 22 -3.7005848282094184e-01 -2.8522531053609596e-01 1.0524032087355778e+01 1.0534398328057094e+01 0 1 0 0 0 0 V -205 0 -3.0937985490774614e-04 -2.6695491119191719e-04 1.4221867434265367e-03 1.4803773512474779e-03 0 2 0 P 550 22 -4.8691445555853996e-01 -3.9909894967429010e-01 2.4266706345219315e+00 2.5070093791436174e+00 0 1 0 0 0 0 P 551 22 -4.6583970574371203e-01 -4.2300500597600421e-01 1.9530403145073005e+00 2.0519031011767885e+00 0 1 0 0 0 0 V -206 0 3.2261469304116241e-05 -4.8780912517375326e-05 1.0381092565524303e-04 1.1933512902493679e-04 0 2 0 P 552 22 6.4757648504216081e-01 -9.6895926731966220e-01 2.0980487858266703e+00 2.4000095986085106e+00 0 1 0 0 0 0 P 553 22 1.0522701935034082e-02 -2.6118748658810007e-02 1.9582160521726909e-02 3.4298357077480281e-02 0 1 0 0 0 0 V -207 0 2.7856627541685415e-04 1.6910057408575322e-05 4.3821295461357574e-04 5.2230867982432550e-04 0 2 0 P 554 22 2.8137775966064393e-01 2.0093287850833107e-02 3.2514317623713157e-01 4.3045936962955045e-01 0 1 0 0 0 0 P 555 22 4.1798207707698576e-01 2.2360576927981601e-02 7.7502065348797344e-01 8.8083257517593494e-01 0 1 0 0 0 0 V -208 0 -7.6764132559347549e-07 8.0195592892067634e-07 1.1534691395989541e-05 1.1681214097806556e-05 0 2 0 P 556 22 -3.1512825969546673e-02 -3.4548853457993627e-02 4.6902760847038893e-01 4.7135292402116419e-01 0 1 0 0 0 0 P 557 22 -3.8838599122144414e-02 1.0804508220347224e-01 5.8808324609878448e-01 5.9918618217730069e-01 0 1 0 0 0 0 V -209 0 4.9817757559948753e-05 -3.0948350554902234e-04 5.1962938122207883e-04 6.0849438062576854e-04 0 2 0 P 558 22 8.2785330198062612e-02 -7.4793284608397526e-01 1.3148753904306660e+00 1.5149766485023701e+00 0 1 0 0 0 0 P 559 22 6.7997048853435840e-02 -1.8877449542421629e-01 2.5787613760506656e-01 3.2674073991706515e-01 0 1 0 0 0 0 V -210 0 0 0 0 0 0 1 0 P 560 130 5.7295082497424299e-01 -2.9154336202728481e-01 1.4694419700064976e+00 1.6793466919898983e+00 4.9767000000000000e-01 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 561 130 7.7601143758314928e-01 -1.8370135001409909e+00 3.2372207502500050e+00 3.8345907168444100e+00 4.9767000000000000e-01 1 0 0 0 0 V -212 0 -1.4148148058904222e-04 -1.1165016161308399e-04 2.3072089381095566e-04 2.9385228486363235e-04 0 2 0 P 562 22 -6.6711222572588724e-01 -4.6419698298747553e-01 1.0468380778916655e+00 1.3252877129331346e+00 0 1 0 0 0 0 P 563 22 -9.1173915868396752e-02 -1.3420480009734786e-01 1.8973688318945414e-01 2.4964714327705650e-01 0 1 0 0 0 0 V -213 0 -2.1192451903327275e-05 -3.8394007653331716e-05 1.5680745698502806e-05 4.9502666745836386e-05 0 2 0 P 564 22 -6.1587715550007076e-02 -1.3852342642168055e-02 2.5063536064270444e-02 6.7919915660942881e-02 0 1 0 0 0 0 P 565 22 -1.0893494924801635e-01 -2.9508069291158612e-01 1.0110980880051268e-01 3.3039768754112964e-01 0 1 0 0 0 0 V -214 0 -1.8581074520057148e-04 -8.7167149562081877e-05 1.3149451912386649e-04 2.5220673669062137e-04 0 2 0 P 566 22 -8.8212145357972310e-02 -8.2691236037290172e-02 2.3566445677079099e-02 1.2318522828603107e-01 0 1 0 0 0 0 P 567 22 -2.9908328498480879e-01 -9.8995989128072531e-02 2.5051472393893032e-01 4.0250297406472446e-01 0 1 0 0 0 0 V -215 0 -4.4708208325372745e-06 -8.9531368895343316e-05 -5.2492579960675010e-05 1.1959578963820820e-04 0 2 0 P 568 22 -6.0304461248366345e-02 -5.7939846704992345e-02 -7.3474601316835073e-02 1.1132012810503583e-01 0 1 0 0 0 0 P 569 22 5.0121124860372776e-02 -1.4598871158201060e-01 -4.6089483140075854e-02 1.6108715505205212e-01 0 1 0 0 0 0 V -216 0 3.3701027083147921e-05 6.8236860839185581e-06 -1.9606132231675559e-05 4.7518413780214690e-05 0 2 0 P 570 22 3.9982802883209483e-02 -4.4701372810778635e-02 -5.7211750303057932e-02 8.2885593623411122e-02 0 1 0 0 0 0 P 571 22 1.3303325393585527e-01 7.9733161494782059e-02 -4.3443214301683158e-02 1.6106686985093088e-01 0 1 0 0 0 0 V -217 0 1.5881443291142647e-05 3.9282289001701484e-05 -3.8218354033837646e-05 6.6190626533956269e-05 0 2 0 P 572 22 -2.3888699417987568e-02 3.1906521013136532e-04 6.6759084715391822e-03 2.4806037902326102e-02 0 1 0 0 0 0 P 573 22 8.7794046757049451e-02 1.5774895649965920e-01 -1.6046276174965249e-01 2.4153845621564290e-01 0 1 0 0 0 0 V -218 0 -1.9017965764979574e-04 1.0092387595385136e-04 -3.7917838232255413e-04 4.3762276303084698e-04 0 2 0 P 574 22 -3.4149252291318311e-01 2.5735066746475332e-01 -7.4602049603530796e-01 8.5987969493117578e-01 0 1 0 0 0 0 P 575 22 -3.4865658866005000e-01 1.0889525066776629e-01 -6.2999220122999011e-01 7.2822370604414366e-01 0 1 0 0 0 0 V -219 0 -1.2253901993016582e-06 -6.6515686239911260e-05 -1.1706964338581961e-04 1.3961688061445859e-04 0 2 0 P 576 22 6.2187353434695634e-02 -1.1263031476303220e-01 -1.6357269090685447e-01 2.0810785651037012e-01 0 1 0 0 0 0 P 577 22 -6.6669620291755882e-02 -1.3067263973887397e-01 -2.6464795490471388e-01 3.0258671002114401e-01 0 1 0 0 0 0 V -220 0 3.7306367029964748e-05 -1.0046994698644919e-05 -8.4705032303382066e-05 9.4260853667162372e-05 0 2 0 P 578 22 1.1262056445874168e-01 2.1919304150381264e-02 -1.6375452057908313e-01 1.9994846947033096e-01 0 1 0 0 0 0 P 579 22 2.2885825860533718e-01 -1.1388312154028239e-01 -6.1158162285538575e-01 6.6285560216238149e-01 0 1 0 0 0 0 V -221 0 1.8806788567298028e-04 -3.2776086824412955e-04 -8.0735161924889488e-04 8.9255119195517788e-04 0 2 0 P 580 22 4.3132487557381349e-01 -6.3330628652476739e-01 -1.6802141257925605e+00 1.8466828394051360e+00 0 1 0 0 0 0 P 581 22 1.3150746549511211e-01 -3.4758641679087643e-01 -7.3595384622249072e-01 8.2446260945427152e-01 0 1 0 0 0 0 V -222 0 5.7442403158248427e-05 -9.9021838447429852e-06 -1.7467304350036948e-04 1.8494923248102638e-04 0 2 0 P 582 22 1.4661062681030543e-01 -1.0251913220930232e-02 -2.7042681046561895e-01 3.0778310128564240e-01 0 1 0 0 0 0 P 583 22 3.0264481686695283e-01 -6.7192792291969103e-02 -1.0956862234899816e+00 1.1386997219891473e+00 0 1 0 0 0 0 V -223 0 5.7642807351358640e-05 7.7867516962765827e-05 -3.3401733795737669e-04 3.5115895478409414e-04 0 2 0 P 584 22 1.8192808744445374e-01 1.6735539027060892e-01 -7.4421651533760957e-01 7.8419632577249354e-01 0 1 0 0 0 0 P 585 22 -2.1732015419944278e-02 4.9047504191173985e-02 -1.8405655093929943e-01 1.9171528917972822e-01 0 1 0 0 0 0 V -224 0 2.3381796873621706e-07 4.9878140666473810e-07 -1.5349687923424829e-06 1.6386973106277267e-06 0 2 0 P 586 22 -1.1305869014928260e-02 6.2598800390814988e-02 -1.0975756565874092e-01 1.2685880223257917e-01 0 1 0 0 0 0 P 587 22 2.0800066105252932e-01 3.5699130034615406e-01 -1.1815049024308066e+00 1.2516632526319358e+00 0 1 0 0 0 0 V -225 0 3.9625513309434878e-04 3.3242458205183349e-04 -1.1612758826540061e-03 1.2753493781720322e-03 0 2 0 P 588 22 3.3268869824469260e-01 3.5798984780705817e-01 -1.1046482724275186e+00 1.2079264492715480e+00 0 1 0 0 0 0 P 589 22 1.9103173195867393e-01 8.1367350578830683e-02 -4.3018081634428840e-01 4.7767070572308207e-01 0 1 0 0 0 0 V -226 0 3.0189526100256284e-05 -8.4330816653760653e-07 -2.4832630283561395e-04 2.5124048885450003e-04 0 2 0 P 590 22 -1.4629124553256160e-02 -2.6331904976095347e-02 -2.1526392304817904e-01 2.1736130536725501e-01 0 1 0 0 0 0 P 591 22 1.8938882771953086e-01 2.1450202481912890e-02 -1.2222356530568570e+00 1.2370077731586062e+00 0 1 0 0 0 0 V -227 0 -6.8811320178468430e-05 4.8141393303259053e-05 -4.1704925108455608e-03 4.1717896878958006e-03 0 2 0 P 592 22 -5.5848360461494342e-02 5.4210232312280913e-02 -1.4485213304224269e+00 1.4506108483471183e+00 0 1 0 0 0 0 P 593 22 -9.5447240284034174e-02 5.1638354833739679e-02 -7.7211497091188841e+00 7.7219122972223921e+00 0 1 0 0 0 0 V -228 0 2.7997492308463259e-05 -3.7192769298775777e-05 -1.1543854738490930e-03 1.1562152468776309e-03 0 2 0 P 594 22 6.1137211600401462e-02 1.5068619773478054e-02 -1.4247576445532049e+00 1.4261483680378231e+00 0 1 0 0 0 0 P 595 22 2.2111933000212150e-02 -1.2565946110090254e-01 -2.0077498878539317e+00 2.0117999030526494e+00 0 1 0 0 0 0 V -229 0 0 0 0 0 0 1 0 P 596 130 -3.8404568226110497e-01 5.2191589027494178e-01 -2.6928062634013713e+01 2.6940455080284938e+01 4.9767000000000000e-01 1 0 0 0 0 V -230 0 -3.7915623628042340e-06 6.4236544380445947e-06 -8.9191554589323989e-05 9.0004950439673918e-05 0 2 0 P 597 22 -9.9357194854599915e-02 6.7888029266726269e-02 -9.1693259607854272e-01 9.2479512457540070e-01 0 1 0 0 0 0 P 598 22 4.5445763570297122e-02 2.3448568075858042e-02 -3.5126344193312364e-01 3.5496641870746087e-01 0 1 0 0 0 0 V -231 0 1.4366904176061801e-05 4.3915147773886186e-06 -1.4471012739726847e-03 1.4471984775810613e-03 0 2 0 P 599 22 7.6300993312193033e-02 2.6191092800178305e-02 -1.4237240744480845e+01 1.4237469291669358e+01 0 1 0 0 0 0 P 600 22 1.8367137275119874e-01 5.3274355934583094e-02 -1.1948382652024028e+01 1.1949913026016437e+01 0 1 0 0 0 0 V -232 0 0 0 0 0 0 2 0 P 601 -211 -3.2817114911586770e-01 5.4240267323782165e-01 -1.5992150714782628e+02 1.5992282459105141e+02 1.3957000000000000e-01 1 0 0 0 0 P 602 211 1.6040498705361869e-01 2.1196618872273118e-01 -4.0767775676339149e+01 4.0768881181683696e+01 1.3957000000000000e-01 1 0 0 0 0 V -233 0 6.4398577037915035e-06 -5.0020035978330401e-05 -2.0794589607380290e-01 2.0794590598362336e-01 0 2 0 P 603 22 -5.2796347049855743e-03 -1.8624741800530448e-01 -5.9414204244133384e+02 5.9414207165654818e+02 0 1 0 0 0 0 P 604 22 2.7162330315902348e-02 1.6278876446308006e-02 -1.1246002186255264e+02 1.1246002632099915e+02 0 1 0 0 0 0 V -234 0 4.3267257891858248e+00 -1.0744668132265998e+00 1.2438535573779852e+03 1.2438950914006411e+03 0 2 0 P 605 -211 2.3383041441304928e-01 1.7556305434280044e-02 6.0072567789847582e+01 6.0073187575966855e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 211 1.8831685089966594e-03 -7.6091658635882548e-02 7.6907231893731547e+00 7.6923661150064602e+00 1.3957000000000000e-01 1 0 0 0 0 E 9 51 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 309 1 2 0 4 0.23 0.34 0.11 0.065 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -9.5802904850995474e-01 3.4892974578914365e-01 1.5677975928920182e+01 1.5711094833049845e+01 0 3 0 0 -3 0 P 12 2101 2.5787537037233477e-01 -1.1110299643709216e-01 1.2403958218239170e+03 1.2403959888942973e+03 5.7933000000000001e-01 2 0 0 -9 0 P 25 2 7.0015367813761997e-01 -2.3782674935205150e-01 2.3333682308044050e+00 2.4698753078332274e+00 3.3000000000000002e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 2.7745239600449745e-01 -1.8469236508822412e-01 -1.2668437617555701e+03 1.2668438056011901e+03 0 3 0 0 -4 0 P 116 2203 -2.7745239600449745e-01 1.8469236508822412e-01 -1.8910900158159372e+03 1.8910902024916190e+03 7.7132999999999996e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 3 0 P 5 -2 2.1641937170955747e-01 2.1585758680319689e+00 6.7210685943817223e+00 7.0625101892235298e+00 0 3 0 0 -5 0 P 11 2 -7.8613112624186288e-01 -1.2686604299929187e+00 7.9479243119334866e+00 8.0935716653711971e+00 3.3000000000000002e-01 2 0 0 -9 0 P 26 21 -3.8825477811099457e-01 -5.4115869652245197e-01 6.3755964759046990e-01 9.2199610182667313e-01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 3 0 P 6 1 2.5842389710676084e-01 1.0209235102430092e+00 -7.2160803882991831e+02 7.2160880729913856e+02 0 3 0 0 -5 0 P 114 21 -5.2865744956173000e-01 -6.9649191122955012e-01 -4.4717703814957508e+02 4.4717789304471205e+02 0 2 0 0 -15 0 P 115 21 5.4762343259355273e-01 -5.0895095982937877e-01 -9.7687261399730332e+01 9.7690122132601928e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 3 0 0 -6 0 P 8 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 6 0 P 13 3 2.3630480898948672e+01 -3.3485870839025779e+01 -1.8716832175387171e+02 1.9160358514788896e+02 5.0000000000000000e-01 2 0 0 -11 0 P 14 21 2.1678474294330585e+00 -5.7647767925118565e-01 -9.1238201043902460e+00 9.3955299099758065e+00 0 2 0 0 -11 0 P 15 21 -6.7346922259594131e-03 2.1414349995112662e-02 -6.6107589858462634e-01 6.6145693295524743e-01 0 2 0 0 -11 0 P 16 21 3.3764665257654020e-01 7.3229494210984691e-01 -9.2744676446560570e-01 1.2289909052362948e+00 0 2 0 0 -11 0 P 17 21 7.9505379403523882e-02 2.0787135033438138e+00 -5.1470482330796514e+00 5.5515291990573523e+00 0 2 0 0 -11 0 P 18 -4 1.0113429576180263e+01 4.0532269037603918e+01 -1.2801602896015814e+02 1.3466811041169737e+02 1.5000000000000000e+00 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 124 92 -5.2825575586952811e-01 -1.3797634264300109e+00 1.2483437461358506e+03 1.2484895605596685e+03 1.9023446289477928e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 4 0 P 125 321 -5.8300296905006943e-01 -8.3754713871767816e-01 5.2130254825213198e+00 5.3348526983331048e+00 4.9359999999999998e-01 1 0 0 0 0 P 126 -321 -5.6024842041286405e-01 9.9682405893232934e-02 2.0270147074255881e+01 2.0284139573730606e+01 4.9359999999999998e-01 1 0 0 0 0 P 127 2214 4.7811432563610745e-01 -6.6583676148553717e-01 1.1617906836670844e+02 1.1618877689694931e+02 1.2585779083646447e+00 2 0 0 -21 0 P 128 223 1.3688130795729797e-01 2.3938067879971422e-02 1.1066815052123648e+03 1.1066817913906555e+03 7.8364979506277710e-01 2 0 0 -22 0 V -11 0 0 0 0 0 0 1 0 P 129 92 3.6322175244316099e+01 9.3023433147757260e+00 -3.3104374171454992e+02 3.4310920250681102e+02 8.2025190709107449e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 14 0 P 130 -321 8.4774237942142285e+00 -1.1575249821477136e+01 -6.6017595908298702e+01 6.7560489437893608e+01 4.9359999999999998e-01 1 0 0 0 0 P 131 113 8.1166531719425414e+00 -1.1935464788455144e+01 -6.6411749488034161e+01 6.7968219806545932e+01 9.0722388608265891e-01 2 0 0 -23 0 P 132 213 4.4640857480875296e+00 -6.2464911552612126e+00 -3.4037849594606975e+01 3.4900217244072529e+01 7.0939787097003992e-01 2 0 0 -24 0 P 133 -213 2.6219761201134175e+00 -1.5905307818721801e+00 -1.5758999082365960e+01 1.6091483712895801e+01 1.0886914447407658e+00 2 0 0 -25 0 P 134 211 1.0991665653485541e+00 -1.7747942066025924e+00 -6.2642892043534646e+00 6.6044576336630119e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 221 -1.0539935670700662e-01 -1.9008242486428576e-02 -2.2895443225905412e+00 2.3565196891354958e+00 5.4744999999999999e-01 2 0 0 -26 0 P 136 -211 3.7094048605218444e-01 1.0848859760136005e+00 -4.5535756686736004e+00 4.6977766635271028e+00 1.3957000000000000e-01 1 0 0 0 0 P 137 213 3.5612107659123227e-01 -2.2610769118583549e-01 -2.1425609141914284e+00 2.3142161217116470e+00 7.6621281493029081e-01 2 0 0 -27 0 P 138 -211 -1.2806866025349489e-01 9.3356523387269782e-02 -6.4814017320824868e-01 6.8167623636481678e-01 1.3957000000000000e-01 1 0 0 0 0 P 139 111 1.3741706190609260e+00 2.0556848430328345e+00 -6.8256340665829400e+00 7.2609699817216429e+00 1.3497999999999999e-01 2 0 0 -28 0 P 140 111 -2.7368763101259033e-02 1.1354557010925908e+00 -6.7655318092670651e+00 6.8615340093117556e+00 1.3497999999999999e-01 2 0 0 -29 0 P 141 2214 2.0766566444824259e+00 7.3115436382185655e+00 -2.1956232593249634e+01 2.3269209316796356e+01 1.2683766583146068e+00 2 0 0 -30 0 P 142 -323 1.2897259685408347e+00 4.2009194012475897e+00 -1.2360417564658022e+01 1.3146440715478059e+01 8.5899023461601665e-01 2 0 0 -31 0 P 143 -4314 6.3360918299439941e+00 2.6788143919123808e+01 -8.5011621324469345e+01 8.9395991937693410e+01 2.6299999999999999e+00 2 0 0 -32 0 V -13 0 0 0 0 0 6 1 0 P 19 2 -1.3422716221329383e+00 2.2458209152218909e+00 1.2243765530778314e+00 2.8886852778657341e+00 0 2 0 0 -13 0 P 20 21 -3.1136850524464815e-01 1.1424832197198764e+00 4.2154796869102973e-01 1.2569490615404091e+00 0 2 0 0 -13 0 P 21 21 -1.0366767212476704e+00 6.4496905084407596e-01 1.1318981087915423e+00 1.6648955011079218e+00 0 2 0 0 -13 0 P 22 21 -1.9193652015049112e+00 1.6799815126144066e+00 3.7499482821555006e+00 4.5352412039841017e+00 0 2 0 0 -13 0 P 23 21 1.6385288267246378e+00 -1.7821619094090042e+00 3.0468215298537345e+01 3.0564244163161977e+01 0 2 0 0 -13 0 P 24 -2 1.3422716221329383e+00 -2.2458209152218909e+00 8.7851492924509799e+01 8.7890444382515369e+01 0 2 0 0 -13 0 P 144 92 -1.6288816012725915e+00 1.6852718737693544e+00 1.2484747913576305e+02 1.2880045959017551e+02 3.1578029506702293e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 10 0 P 145 321 -1.1010053635793597e+00 1.9303424342721458e+00 1.3214859368578387e+00 2.6321855492148107e+00 4.9359999999999998e-01 1 0 0 0 0 P 146 333 -2.2742645850539889e+00 1.8224975026383272e+00 2.4028292558239515e+00 3.9128320814196207e+00 1.0212198170763180e+00 2 0 0 -33 0 P 147 333 -4.5546778245550490e-01 1.0958084876084577e+00 1.4565589353781194e+00 2.1380684792764288e+00 1.0205516878021945e+00 2 0 0 -34 0 P 148 -313 2.9421386514592190e-01 -7.1874852810811476e-02 5.9218326847841043e+00 5.9968596558591178e+00 8.9582118337464256e-01 2 0 0 -35 0 P 149 313 2.7548192965343210e-01 -2.2221641303721607e-01 3.6869876420023866e+00 3.8215580130646662e+00 9.4082801146210371e-01 2 0 0 -36 0 P 150 -311 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -37 0 P 151 113 7.6713384223317649e-01 -1.4337349851236222e-01 1.7498595349866797e+01 1.7536011090934025e+01 8.3773233852236728e-01 2 0 0 -38 0 P 152 223 3.0597082946051074e-01 -8.1635843373088079e-01 4.6141761958922793e+01 4.6156652536640770e+01 7.8378407325468757e-01 2 0 0 -39 0 P 153 113 2.6009135348849310e-01 -7.6182406810884840e-01 1.6415535872747945e+01 1.6450982214462886e+01 7.1900932413296093e-01 2 0 0 -40 0 P 154 -213 1.0999640936951034e+00 -1.2737984655891550e+00 2.3070773839530055e+01 2.3159199511647177e+01 1.1204610333156111e+00 2 0 0 -41 0 V -15 0 0 0 0 0 87 1 0 P 27 21 5.2847330830817318e-01 3.9482837243296416e+00 7.0850922196230783e+01 7.0962817055566134e+01 0 2 0 0 -15 0 P 28 21 -5.7917808217076661e-01 2.0509273516155622e+00 4.7843281643543889e+01 4.7890722991785530e+01 0 2 0 0 -15 0 P 29 21 -3.6941404946741234e+00 1.8687682072877096e+00 1.6063205049313078e+02 1.6068539017046533e+02 0 2 0 0 -15 0 P 30 21 -7.8285328618851413e-01 2.2745788741529469e+00 1.7376288796631704e+02 1.7377953792871381e+02 0 2 0 0 -15 0 P 31 21 -1.6385288267246378e+00 1.7821619094090042e+00 4.5366984237005170e+02 4.5367630173269453e+02 0 2 0 0 -15 0 P 32 21 -2.6531228347646882e+00 -5.5253588200530759e+00 2.7403897665525697e+03 2.7403966211621473e+03 0 2 0 0 -15 0 P 33 21 6.3759445235574630e-01 2.0594842167424357e-01 2.7690485029478161e+01 2.7698590263871175e+01 0 2 0 0 -15 0 P 34 21 8.8753932067569985e-01 9.5420023664512799e-02 3.9744074807287475e+01 3.9754098069430839e+01 0 2 0 0 -15 0 P 35 21 1.6843215363312323e+00 -2.7821864416007021e+00 1.0736410900449084e+02 1.0741335765519001e+02 0 2 0 0 -15 0 P 36 21 5.2725985674785902e-01 -9.3860440241317822e-01 3.4755869739806450e+01 3.4772538914366905e+01 0 2 0 0 -15 0 P 37 21 7.8285328618851413e-01 -2.2745788741529469e+00 6.8500764443718325e+01 6.8542988683717482e+01 0 2 0 0 -15 0 P 38 21 -5.6362905336703299e+00 -6.2420799417268809e+00 2.6598779293208821e+02 2.6612071945239870e+02 0 2 0 0 -15 0 P 39 21 -1.3897196033319998e+00 -1.5471710640558063e+00 5.5330799198385002e+01 5.5369869051762613e+01 0 2 0 0 -15 0 P 40 21 -1.5858347610022412e+00 -2.7473769215456776e+00 3.2616100677436002e+01 3.2770001147984203e+01 0 2 0 0 -15 0 P 41 21 -2.0185257136541477e+00 -2.1264412338423813e+00 2.5855386277297548e+01 2.6021091405356817e+01 0 2 0 0 -15 0 P 42 21 -2.8599757261838490e+00 -2.5688235222694822e-01 2.8305965682677051e+01 2.8451241500611840e+01 0 2 0 0 -15 0 P 43 21 -1.8535663224563970e+00 5.7728168876603392e-01 2.0409299686710998e+01 2.0501426193363006e+01 0 2 0 0 -15 0 P 44 21 -2.4247486989411180e+00 3.2791812337924786e-01 1.9996455113056196e+01 2.0145598865189601e+01 0 2 0 0 -15 0 P 45 21 -7.7619559597960892e+00 1.2490160387269378e+00 5.1477609326338026e+01 5.2074487643585080e+01 0 2 0 0 -15 0 P 46 21 -1.6843215363312323e+00 2.7821864416007021e+00 2.0364105336307141e+01 2.0622179481853728e+01 0 2 0 0 -15 0 P 47 21 4.2114615912387715e-01 1.0217234629964247e+00 1.3173009510357799e+01 1.3219283735594725e+01 0 2 0 0 -15 0 P 48 21 1.4624059777523883e+00 2.2397226244353168e+00 2.1481799152918637e+01 2.1647694646878897e+01 0 2 0 0 -15 0 P 49 21 1.3897196033319998e+00 1.5471710640558063e+00 1.2560810093045554e+01 1.2731810910899199e+01 0 2 0 0 -15 0 P 50 21 1.9372001777844456e+00 -1.2827480084352952e-01 2.9200030987296010e+01 2.9264500826297837e+01 0 2 0 0 -15 0 P 51 21 7.7619559597960892e+00 -1.2490160387269378e+00 7.1494086453218344e+01 7.1925047091865494e+01 0 2 0 0 -15 0 P 52 21 1.0346584559188690e+00 2.4641502772336282e-01 8.0203549012479822e+00 8.0905705131507784e+00 0 2 0 0 -15 0 P 53 21 5.6362905336703299e+00 6.2420799417268809e+00 3.0354535817447225e+01 3.1498082126877776e+01 0 2 0 0 -15 0 P 54 21 8.5200287437891176e-01 4.8496411120420584e+00 1.8643195705153385e+01 1.9282470638230155e+01 0 2 0 0 -15 0 P 55 21 1.7037463727801377e-01 2.3431367096279225e+00 5.4376283413198969e+00 5.9234381177960280e+00 0 2 0 0 -15 0 P 56 21 1.5858347610022412e+00 2.7473769215456776e+00 7.6104127916923217e+00 8.2450794234015081e+00 0 2 0 0 -15 0 P 57 21 2.0185257136541477e+00 2.1264412338423813e+00 3.0983765767253653e+00 4.2656928849682192e+00 0 2 0 0 -15 0 P 58 21 2.6531228347646882e+00 5.5253588200530759e+00 7.0764229453390852e+00 9.3618594610264054e+00 0 2 0 0 -15 0 P 59 21 -5.4958283952121656e-01 2.9060742837279863e+00 4.0558675757773539e+00 5.0196982810009008e+00 0 2 0 0 -15 0 P 60 21 -2.4973477455846362e+00 3.3661783072244771e+00 -4.0445481404606944e-02 4.1916032726596830e+00 0 2 0 0 -15 0 P 61 21 -1.3441969160771789e+00 1.3112345489852457e+00 -7.9560756534537536e-01 2.0394099121262346e+00 0 2 0 0 -15 0 P 62 21 -8.8753932067569985e-01 -9.5420023664512799e-02 9.9640965813476101e-01 1.3377829545504945e+00 0 2 0 0 -15 0 P 63 21 -5.9163429359758224e+00 -7.3953762176103388e-02 5.3728533689185758e+00 7.9922547643897532e+00 0 2 0 0 -15 0 P 64 21 -3.4026097992283950e+00 -1.0490545054749216e+00 7.6673137586059559e-01 3.6422720661685082e+00 0 2 0 0 -15 0 P 65 21 -2.6407486104449145e+00 -3.9050172412465817e-01 -5.7600510296339077e-03 2.6694714829529347e+00 0 2 0 0 -15 0 P 66 21 -6.3759445235574630e-01 -2.0594842167424357e-01 -1.0647452673764712e-01 6.7843810543699712e-01 0 2 0 0 -15 0 P 67 21 -2.3111809738720206e+00 -1.5156191657255100e+00 -8.7350441149539659e-01 2.8985632486465485e+00 0 2 0 0 -15 0 P 68 21 -1.4624059777523883e+00 -2.2397226244353168e+00 9.1784142594430213e-02 2.6764553063716825e+00 0 2 0 0 -15 0 P 69 21 -1.7037463727801377e-01 -2.3431367096279225e+00 1.0043874402615933e+00 2.5550168858911322e+00 0 2 0 0 -15 0 P 70 21 6.1363209212199210e-01 -1.4727619173352384e+00 5.0948147557915768e-01 1.6748562277381591e+00 0 2 0 0 -15 0 P 71 21 -8.5200287437891176e-01 -4.8496411120420584e+00 2.6976624699897158e+00 5.6144733159531066e+00 0 2 0 0 -15 0 P 72 21 5.4958283952121656e-01 -2.9060742837279863e+00 2.4806170017111224e+00 3.8601515189458055e+00 0 2 0 0 -15 0 P 73 21 5.7917808217076661e-01 -2.0509273516155622e+00 3.9498846714721818e+00 4.4881331498076946e+00 0 2 0 0 -15 0 P 74 21 1.8535663224563970e+00 -5.7728168876603392e-01 1.3239861314488808e+00 2.3498726638262908e+00 0 2 0 0 -15 0 P 75 21 3.6941404946741234e+00 -1.8687682072877096e+00 1.3698292678439965e+00 4.3606651820568061e+00 0 2 0 0 -15 0 P 76 21 3.4026097992283950e+00 1.0490545054749216e+00 8.5365778392455860e-01 3.6615571022882216e+00 0 2 0 0 -15 0 P 77 21 8.0027583532907598e-01 7.2225688798810728e-01 -5.5235642504880245e-01 1.2112778562949993e+00 0 2 0 0 -15 0 P 78 21 2.5249116086388907e+00 1.2712899341906045e+00 -2.0235598552540077e+00 3.4765142335404589e+00 0 2 0 0 -15 0 P 79 21 2.8599757261838490e+00 2.5688235222694822e-01 -2.5145198343890223e+00 3.8168389663152258e+00 0 2 0 0 -15 0 P 80 21 4.5243527644201125e+00 -1.4453032263767607e+00 -1.4282200794269138e+00 4.9596856703191596e+00 0 2 0 0 -15 0 P 81 21 1.9193652015049112e+00 -1.6799815126144066e+00 -1.1030943101881863e+00 2.7790497866435802e+00 0 2 0 0 -15 0 P 82 21 4.4842555716047272e-01 -7.5493427251315082e-01 -2.8765951844044063e-01 9.2399092781207914e-01 0 2 0 0 -15 0 P 83 21 1.3441969160771789e+00 -1.3112345489852457e+00 -6.9608922544577423e-01 2.0026835999292643e+00 0 2 0 0 -15 0 P 84 21 5.8282497851138615e+00 -7.7105256426171707e+00 -6.2054388130251672e+00 1.1485998959835227e+01 0 2 0 0 -15 0 P 85 21 3.1136850524464815e-01 -1.1424832197198764e+00 -4.9383638733881891e-01 1.2830014149873872e+00 0 2 0 0 -15 0 P 86 21 -5.2847330830817318e-01 -3.9482837243296416e+00 -1.2977179899770348e+00 4.1895465610147555e+00 0 2 0 0 -15 0 P 87 21 -6.1363209212199210e-01 1.4727619173352384e+00 -1.8903676382598003e+00 2.4736737491866050e+00 0 2 0 0 -15 0 P 88 21 -4.4842555716047272e-01 7.5493427251315082e-01 -2.2310748267761786e+00 2.3976459535978192e+00 0 2 0 0 -15 0 P 89 21 6.7732806682179603e-01 2.7745959877202684e+00 -9.9674458406715871e+00 1.0368564644727797e+01 0 2 0 0 -15 0 P 90 21 -5.2725985674785902e-01 9.3860440241317822e-01 -5.7793854616152487e+00 5.8787989840355044e+00 0 2 0 0 -15 0 P 91 21 -1.9372001777844456e+00 1.2827480084352952e-01 -1.4544901177980950e+01 1.4673900273293777e+01 0 2 0 0 -15 0 P 92 21 -1.3461311705244356e+00 2.2615002471675072e-01 -1.0101494546248885e+01 1.0193301968931992e+01 0 2 0 0 -15 0 P 93 21 -1.9314754602611099e+00 2.2368463567760051e+00 -2.3796213393013595e+01 2.3979029399107308e+01 0 2 0 0 -15 0 P 94 21 -5.8282497851138615e+00 7.7105256426171707e+00 -8.0893963492787165e+01 8.1469344116762841e+01 0 2 0 0 -15 0 P 95 21 -1.1595476048730318e+00 7.1533408734022323e+00 -8.3670200783024256e+01 8.3983434886712317e+01 0 2 0 0 -15 0 P 96 21 2.3111809738720206e+00 1.5156191657255100e+00 -2.0500855447634013e+01 2.0686317531989296e+01 0 2 0 0 -15 0 P 97 21 5.9163429359758224e+00 7.3953762176103388e-02 -6.3289088211230968e+01 6.3565063277747043e+01 0 2 0 0 -15 0 P 98 21 2.4247486989411180e+00 -3.2791812337924786e-01 -1.6499642496191235e+01 1.6680082105636558e+01 0 2 0 0 -15 0 P 99 21 1.0366767212476704e+00 -6.4496905084407596e-01 -3.4799418378807259e+00 3.6879098275250999e+00 0 2 0 0 -15 0 P 100 21 2.4973477455846362e+00 -3.3661783072244771e+00 -2.6779995437190731e+01 2.7106015158528219e+01 0 2 0 0 -15 0 P 101 21 -6.7732806682179603e-01 -2.7745959877202684e+00 -1.9384033357688871e+01 1.9593312772912416e+01 0 2 0 0 -15 0 P 102 21 -4.2114615912387715e-01 -1.0217234629964247e+00 -2.4391922343815637e+01 2.4416944087025197e+01 0 2 0 0 -15 0 P 103 21 1.9314754602611099e+00 -2.2368463567760051e+00 -4.5510256054231363e+01 4.5606112366645718e+01 0 2 0 0 -15 0 P 104 21 3.6613162463384313e-01 -2.5172544962865279e-01 -1.1495383306573240e+01 1.1503966943345695e+01 0 2 0 0 -15 0 P 105 21 2.1489368818706622e+00 3.4062409825483048e-01 -6.9569518582389307e+01 6.9603533461197117e+01 0 2 0 0 -15 0 P 106 21 2.6407486104449145e+00 3.9050172412465817e-01 -1.7282354599157296e+02 1.7284416129543237e+02 0 2 0 0 -15 0 P 107 21 5.8857977426890551e-01 2.1863311847542044e-01 -8.9377764843706004e+01 8.9379970211720149e+01 0 2 0 0 -15 0 P 108 21 1.3461311705244356e+00 -2.2615002471675072e-01 -7.9117499390447946e+01 7.9129273488131233e+01 0 2 0 0 -15 0 P 109 21 1.1595476048730318e+00 -7.1533408734022323e+00 -5.2797615538703258e+02 5.2802588524955013e+02 0 2 0 0 -15 0 P 110 21 -3.6613162463384313e-01 2.5172544962865279e-01 -1.6292945304739521e+03 1.6292945910578617e+03 0 2 0 0 -15 0 P 111 21 -5.8857977426890551e-01 -2.1863311847542044e-01 -3.8687281312035248e+02 3.8687332262414571e+02 0 2 0 0 -15 0 P 112 21 -2.1489368818706622e+00 -3.4062409825483048e-01 -2.3501688939757997e+02 2.3502696070156060e+02 0 2 0 0 -15 0 P 113 21 -4.5243527644201125e+00 1.4453032263767607e+00 -1.3300985226359649e+02 1.3309462599420328e+02 0 2 0 0 -15 0 P 155 92 6.0421399882133819e+00 -1.2450459757124852e+00 -1.5395010229486406e+03 1.1011830204374652e+04 1.0903683001294694e+04 2 0 0 -16 0 V -16 0 0 0 0 0 0 163 0 P 156 221 1.8165572807868086e-01 -6.0160239653196425e-02 1.2915962211331227e+00 1.4158179116412846e+00 5.4744999999999999e-01 2 0 0 -42 0 P 157 213 -5.3597162004113172e-02 -9.9845238084615928e-02 3.3191484434642105e+00 3.4115809658474312e+00 7.8057451241923836e-01 2 0 0 -43 0 P 158 2114 4.4149662418739066e-01 -6.3222835626578738e-02 5.7512007177449558e+00 5.8910422717021103e+00 1.1954718545735590e+00 2 0 0 -44 0 P 159 -213 -7.8704970943413013e-02 5.8871372637053498e-01 6.5088177272712837e+00 6.5913624637824535e+00 8.5356464198742310e-01 2 0 0 -45 0 P 160 -1114 -7.4630965933767657e-01 2.2606487064529914e+00 5.1016155635761841e+01 5.1088038448627401e+01 1.2930684415561233e+00 2 0 0 -46 0 P 161 313 2.2073358893449499e-01 6.4393754468203523e-01 1.7403603859317190e+01 1.7437593555878546e+01 8.4903642397834189e-01 2 0 0 -47 0 P 162 -321 -1.8000749627380799e-01 1.7259669392466912e+00 4.5963975898605860e+01 4.5999370495059033e+01 4.9359999999999998e-01 1 0 0 0 0 P 163 2224 -1.6345542144489289e+00 1.4994653481876703e+00 1.0873485569765424e+02 1.0876350393474506e+02 1.1448933414195375e+00 2 0 0 -48 0 P 164 -2224 -1.4132855118930063e+00 1.1461356416346355e+00 1.8173523469621284e+02 1.8174891982765669e+02 1.2896998043202212e+00 2 0 0 -49 0 P 165 321 -5.4435213182232578e-01 1.5277767401501612e+00 7.3178574446850774e+01 7.3198209131401896e+01 4.9359999999999998e-01 1 0 0 0 0 P 166 -311 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 2 0 0 -50 0 P 167 -211 -4.7228145882501238e-02 4.2962468283138122e-01 1.3805262834679914e+02 1.3805337547887126e+02 1.3957000000000000e-01 1 0 0 0 0 P 168 2224 -1.2377390866873145e-01 7.7858231979998655e-03 2.6821955586202665e+02 2.6822236050000436e+02 1.2203051962378006e+00 2 0 0 -51 0 P 169 111 -2.7863633177704455e-01 3.5148613196916430e-02 1.3824363250696737e+02 1.3824398367362045e+02 1.3497999999999999e-01 2 0 0 -52 0 P 170 -2224 -2.0076223782297234e-01 -8.3155972687518265e-01 3.7131743420163679e+02 3.7132010358255786e+02 1.1182957654914161e+00 2 0 0 -53 0 P 171 211 -9.0159311494263239e-01 4.0222294603082764e-01 2.5721020011470176e+02 2.5721213263816520e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 -213 -2.1390170311781478e-01 -4.7293062190977475e-01 4.0647663068551151e+02 4.0647787660817539e+02 8.6224192288579649e-01 2 0 0 -54 0 P 173 213 -1.6394981974144815e-01 -3.6390764273644982e-01 3.1530768998372338e+02 3.1530860269396891e+02 6.4518341228499854e-01 2 0 0 -55 0 P 174 -211 -6.8922251856284578e-01 -5.5121725590629100e-01 2.2874450224070739e+02 2.2874624729878568e+02 1.3957000000000000e-01 1 0 0 0 0 P 175 321 -4.1772769247750424e-01 -1.5798410967589427e+00 5.1081385101672851e+02 5.1081670335436024e+02 4.9359999999999998e-01 1 0 0 0 0 P 176 -311 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -56 0 P 177 113 -5.2643273927719736e-01 -4.3391462681262000e-01 3.0178378185602827e+02 3.0178561155077705e+02 7.9933373333579127e-01 2 0 0 -57 0 P 178 311 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -58 0 P 179 -321 7.2317674462283765e-01 -1.2226574062176467e+00 4.4456491915052922e+01 4.4481919811200910e+01 4.9359999999999998e-01 1 0 0 0 0 P 180 213 3.9201411601302034e-02 -5.3432434859259026e-01 1.7917308663988145e+01 1.7935856599788213e+01 6.1478691216654369e-01 2 0 0 -59 0 P 181 331 1.2599340251930209e+00 -2.7659863369956459e+00 1.2307250247953787e+02 1.2311375362021128e+02 9.5778375322348541e-01 2 0 0 -60 0 P 182 -213 -1.5530659506175648e+00 -2.2616086947259535e+00 8.0747599468933487e+01 8.0796786087538621e+01 6.4725137708597513e-01 2 0 0 -61 0 P 183 213 -1.6396015234384054e+00 -1.8820239306898225e+00 8.4482738305729626e+01 8.4522463821248692e+01 6.9534994682336593e-01 2 0 0 -62 0 P 184 -211 -1.4900955021410117e-01 -5.5436673909137790e-01 2.4068021231383486e+01 2.4075270551059063e+01 1.3957000000000000e-01 1 0 0 0 0 P 185 321 -2.3490349330881353e+00 -2.9247785702907758e+00 9.3533148652207558e+01 9.3609646044401075e+01 4.9359999999999998e-01 1 0 0 0 0 P 186 333 -6.9519406392065963e-01 -6.6028658822733255e-01 2.6147485254333493e+01 2.6184991534611676e+01 1.0215299197743888e+00 2 0 0 -63 0 P 187 -313 -2.1592410406662772e+00 -2.1385722289257187e+00 3.5777276528790495e+01 3.5916418958711979e+01 8.6012903110637817e-01 2 0 0 -64 0 P 188 223 -1.6953630936206241e+00 -1.9669557779668789e+00 3.2090263544607552e+01 3.2204688649761835e+01 7.8344471026469786e-01 2 0 0 -65 0 P 189 113 -7.9987358115612073e-01 -1.7550273094835359e-01 1.0517749031625208e+01 1.0574965987068071e+01 7.3229910623443761e-01 2 0 0 -66 0 P 190 113 -2.9543327199843792e+00 7.0888064205805207e-02 2.5974406783582687e+01 2.6151198016211328e+01 6.9443717214128031e-01 2 0 0 -67 0 P 191 -211 -2.4949348211979636e+00 5.2980481463842022e-01 1.5372612213153992e+01 1.5583391124673458e+01 1.3957000000000000e-01 1 0 0 0 0 P 192 213 -1.3898104129259063e+00 -3.3134373125214639e-01 1.2047036725250917e+01 1.2157769658158903e+01 7.9931692662395637e-01 2 0 0 -68 0 P 193 111 -2.2799119642017178e+00 4.3752770426735177e-01 2.3246460482696069e+01 2.3362482180420418e+01 1.3497999999999999e-01 2 0 0 -69 0 P 194 313 -2.4419822723539255e+00 7.5246315720506707e-01 2.0137219005222946e+01 2.0317671494227596e+01 8.7789945984415341e-01 2 0 0 -70 0 P 195 -311 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406863e+01 4.9767000000000000e-01 2 0 0 -71 0 P 196 311 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251241e+00 4.9767000000000000e-01 2 0 0 -72 0 P 197 3122 -1.9236510625059072e-01 8.2977576326676017e-01 1.4477039072603571e+01 1.4544928130571776e+01 1.1156800000000000e+00 2 0 0 -73 0 P 198 -211 6.3338164498712834e-01 3.5399408796871440e-01 5.6360731374143551e+00 5.6843015681530389e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 -1114 2.8418767416834040e-01 1.9009231667892663e+00 1.4825560697947701e+01 1.4996992817447840e+01 1.1909122712715725e+00 2 0 0 -74 0 P 200 331 -1.6773077680880741e-01 2.3066748177860730e-01 7.9825334923997175e+00 8.0448349089223949e+00 9.5769862372992598e-01 2 0 0 -75 0 P 201 -211 1.2745143823559155e+00 8.7315785472443819e-01 1.4945371702992986e+01 1.5025658277613747e+01 1.3957000000000000e-01 1 0 0 0 0 P 202 223 1.3935469391089825e+00 1.2208505817155041e-01 9.7353675813556713e+00 9.8665054363242177e+00 7.8337076022504715e-01 2 0 0 -76 0 P 203 111 1.3973791152251329e+00 9.4387948276398770e-01 2.5238089010764789e+01 2.5294721453009451e+01 1.3497999999999999e-01 2 0 0 -77 0 P 204 223 1.9819196620715647e+00 2.7256017120108078e-01 1.2901543418614215e+01 1.3078424181843234e+01 7.7010512529335406e-01 2 0 0 -78 0 P 205 111 5.0694484478662449e-01 1.0981187792552677e-01 7.2324938379395425e+00 7.2523264157387963e+00 1.3497999999999999e-01 2 0 0 -79 0 P 206 2214 2.6231820800260413e+00 -2.1009869920493901e-01 3.3031506472103509e+01 3.3159857071285359e+01 1.2531861326555973e+00 2 0 0 -80 0 P 207 -2114 2.3006062341126947e+00 1.2299131996010686e+00 1.2138140113143205e+01 1.2475417039766334e+01 1.2231555039343724e+00 2 0 0 -81 0 P 208 -211 7.6302633964084460e-02 1.5294205975419628e-01 1.0724296502066093e+00 1.0948965728021911e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 211 1.1560279240236406e+00 4.6289713561619972e-01 8.6267685373819454e+00 8.7172982914287811e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 331 1.1556392388883838e+00 -2.5755365958322113e-01 7.8237588787425363e+00 7.9706004239347426e+00 9.5782680443949475e-01 2 0 0 -82 0 P 211 -211 4.0447479049561608e+00 4.8918526123536763e+00 2.6712656438317385e+01 2.7456796997685622e+01 1.3957000000000000e-01 1 0 0 0 0 P 212 213 7.7822367947735926e-01 3.3900130568191416e+00 8.2081009398129634e+00 8.9417149654048735e+00 6.9535952117122202e-01 2 0 0 -83 0 P 213 223 1.1445980353394032e+00 4.3636285502617325e+00 1.5423787965164273e+01 1.6089060175042317e+01 7.8311131687929891e-01 2 0 0 -84 0 P 214 -213 7.5834067266838456e-01 1.5923984093401140e+00 3.8430376052075017e+00 4.3410912392275440e+00 9.8250793501480560e-01 2 0 0 -85 0 P 215 221 1.6837706068490421e+00 1.9558629699116810e+00 2.7880387003202403e+00 3.8384039274865156e+00 5.4744999999999999e-01 2 0 0 -86 0 P 216 111 8.3865023530752991e-01 2.5156120799758663e+00 3.5029630868211119e+00 4.3955213959362291e+00 1.3497999999999999e-01 2 0 0 -87 0 P 217 211 5.3811991830180717e-01 4.3516930755823646e-01 9.7424349476318306e-01 1.2031523364488135e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -213 -1.2664119511626293e-02 2.0289922277049239e+00 2.5027726718674566e+00 3.3278210192726152e+00 8.3279760401676484e-01 2 0 0 -88 0 P 219 213 7.9782984590529493e-01 1.4807864674439419e+00 1.7275967053669015e+00 2.5231282680978273e+00 7.4318561322013754e-01 2 0 0 -89 0 P 220 -211 -1.7206740038871476e-01 1.3579752606481117e+00 4.3740045976586339e-01 1.4437807818059591e+00 1.3957000000000000e-01 1 0 0 0 0 P 221 111 -6.7844388624597163e-01 9.5974588766622640e-02 9.6285525260314364e-01 1.1894566265059532e+00 1.3497999999999999e-01 2 0 0 -90 0 P 222 323 -5.1707067933979345e-01 2.3286957007650688e+00 1.3434126861683076e+00 2.8809638889100553e+00 8.9722323289757167e-01 2 0 0 -91 0 P 223 -321 1.5948369342205113e-01 3.4592572994388832e-01 2.1793282552963544e-01 6.6048113943403508e-01 4.9359999999999998e-01 1 0 0 0 0 P 224 213 -7.3609700918726173e-01 2.2196956683538419e-01 4.4047036829215229e-02 8.9044876371975390e-01 4.4704537109904641e-01 2 0 0 -92 0 P 225 -213 -1.1297770832448866e+00 8.3254897042943654e-01 1.0200247749153839e+00 1.8955811807234102e+00 7.6370375492277087e-01 2 0 0 -93 0 P 226 113 -1.6995621736599003e+00 1.4685684665883294e+00 -2.0508783389087765e-01 2.4313022385442888e+00 9.0772497616142289e-01 2 0 0 -94 0 P 227 213 -1.6133273961280552e+00 3.8441715104224972e-01 1.6498158834705128e+00 2.4577948404164869e+00 7.5383101230550731e-01 2 0 0 -95 0 P 228 -211 -1.9628702716387874e+00 -7.3483760608346527e-01 4.5330462307682795e-01 2.1489092295396355e+00 1.3957000000000000e-01 1 0 0 0 0 P 229 111 -1.5606454837837023e+00 -1.6798349234264481e-01 2.0745900868571594e+00 2.6049906734267005e+00 1.3497999999999999e-01 2 0 0 -96 0 P 230 2212 -3.9697249978842710e+00 -1.1210073588914939e+00 -2.4957019805628813e-01 4.2376892210465380e+00 9.3827000000000005e-01 1 0 0 0 0 P 231 -2112 -1.4701127234394118e+00 -3.3130613402121328e-01 7.1818390386388109e-01 1.9156134993071257e+00 9.3957000000000002e-01 1 0 0 0 0 P 232 221 -1.1000387119379464e+00 1.2047991748431918e-02 2.3597353472712018e-01 1.2512455128626347e+00 5.4744999999999999e-01 2 0 0 -97 0 P 233 313 -1.8638580036210914e+00 -2.0849135666065326e+00 1.1058371658996702e+00 3.1375648291712075e+00 8.9476588104641208e-01 2 0 0 -98 0 P 234 -311 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 2 0 0 -99 0 P 235 -211 1.8567812528727759e-01 -4.3364559606164149e-01 1.0788064812559593e-01 5.0362971351366170e-01 1.3957000000000000e-01 1 0 0 0 0 P 236 111 1.7230464101786414e-01 -4.3405194404859709e-01 4.3813477170707515e-01 6.5442467712294616e-01 1.3497999999999999e-01 2 0 0 -100 0 P 237 323 -1.1716969209035828e+00 -3.7853144588899852e+00 1.9043310292409132e+00 4.5060519066309812e+00 9.8820437622307189e-01 2 0 0 -101 0 P 238 -313 -1.6410076009926275e-01 -1.4570587045948526e+00 1.4852836485052954e+00 2.2646186615896742e+00 8.7890900427872454e-01 2 0 0 -102 0 P 239 -213 2.9859903663276971e-01 -4.4692505472942984e-01 4.5483781888333707e-01 8.3920055178797315e-01 4.5659252667095346e-01 2 0 0 -103 0 P 240 113 2.0016506456433403e-01 -1.6011853898426920e+00 1.4138708387925774e+00 2.2452471327698023e+00 6.6199942047199278e-01 2 0 0 -104 0 P 241 213 -2.3003149142417012e-01 -2.1132565309966589e+00 9.9307006781204110e-01 2.4679901291257655e+00 7.6551908208165509e-01 2 0 0 -105 0 P 242 313 7.8845462100362285e-01 -2.7171349343182998e+00 1.5555868003253859e+00 3.3321395556195985e+00 8.2390581021335585e-01 2 0 0 -106 0 P 243 -323 6.0139418868086758e-01 -8.5371777867186660e-01 2.5315930098409281e+00 2.8823457853053944e+00 8.9913571989593200e-01 2 0 0 -107 0 P 244 2224 3.9634867640488403e+00 -3.9023657068966511e-01 1.2944872592527801e+00 4.4053619303472136e+00 1.3674811015479447e+00 2 0 0 -108 0 P 245 111 5.2320674801323763e-01 -5.6791094765218242e-01 1.5001282470688018e-01 7.9811753119845985e-01 1.3497999999999999e-01 2 0 0 -109 0 P 246 -2214 8.3297739830777207e-01 -4.7410979366851758e-01 3.8046826545214280e-01 1.5927212525905523e+00 1.2138259532953917e+00 2 0 0 -110 0 P 247 313 2.6284615862436369e+00 6.0363541092985762e-01 -2.9923948889033092e-01 2.8507710309611904e+00 8.7416541888209409e-01 2 0 0 -111 0 P 248 -321 4.4240074925043749e-01 -2.1249433327407575e-02 -3.4740324441317399e-01 7.4866543634849603e-01 4.9359999999999998e-01 1 0 0 0 0 P 249 213 1.4537845118565145e+00 2.2536052458945438e-01 -1.6664223186205686e-03 1.6484904677325376e+00 7.4380190392642742e-01 2 0 0 -112 0 P 250 313 1.0031861708363126e+00 5.9899961604393381e-01 -8.0983003889045202e-01 1.6663566341385945e+00 8.6933118365234718e-01 2 0 0 -113 0 P 251 -321 3.7542620166599701e+00 3.7190791184469779e-01 -1.8249241162302015e+00 4.2198089737127971e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 223 1.5743038305878552e+00 -6.6745849204711316e-01 -1.2041977792193024e+00 2.2336983203172096e+00 7.8446319550494170e-01 2 0 0 -114 0 P 253 111 5.2731372264649645e-01 -5.6678153196328673e-01 -9.8680125732414192e-02 7.9199648653294008e-01 1.3497999999999999e-01 2 0 0 -115 0 P 254 321 1.4899047689225020e+00 -1.8809308091704732e-01 -1.1434221997793363e+00 1.9509614333694805e+00 4.9359999999999998e-01 1 0 0 0 0 P 255 -313 3.1052134391028487e+00 -3.5657054276055744e+00 -2.5280934294163124e+00 5.4387420809940288e+00 9.1216957682030386e-01 2 0 0 -116 0 P 256 -211 1.2618409992918820e+00 -7.8480952235684842e-01 -9.4767655723319455e-01 1.7679760563721671e+00 1.3957000000000000e-01 1 0 0 0 0 P 257 223 1.1709311169445527e+00 -1.8646477719970616e+00 -7.0979192653750589e-01 2.4425339235323915e+00 7.8369406938300235e-01 2 0 0 -117 0 P 258 323 3.4106114137506363e+00 -3.4158924657143168e+00 -2.0092476388205687e+00 5.3050049247467328e+00 8.9744616805193944e-01 2 0 0 -118 0 P 259 -313 -4.3502962198863682e-02 -2.6662449307525620e+00 -1.3432122691050827e+00 3.1423548809952644e+00 9.7950010707325930e-01 2 0 0 -119 0 P 260 313 3.6920573172873611e-01 2.3888315855645803e-01 -1.5368886029575397e+00 1.8477927043744620e+00 9.2678652593542199e-01 2 0 0 -120 0 P 261 -313 6.9940661833834539e-01 -9.0010452164849564e-01 -9.4850223978499193e-01 1.7314727607553249e+00 8.9385885613612015e-01 2 0 0 -121 0 P 262 -211 -7.0474633150104674e-02 -4.2047661255068347e-01 -3.0125961647395372e-01 5.4037431197066821e-01 1.3957000000000000e-01 1 0 0 0 0 P 263 213 -5.3596663719210880e-01 -7.7738508685707131e-01 -6.0080544106670308e-01 1.3427313454637180e+00 7.4187093124387660e-01 2 0 0 -122 0 P 264 313 -3.5040429490065950e-01 -1.6292595689125591e-01 -1.7293537519727651e+00 1.9724781187916283e+00 8.6641646587292043e-01 2 0 0 -123 0 P 265 221 4.4271297585370617e-01 7.8838628116886092e-02 -1.1070645363442759e-01 7.1705490002433458e-01 5.4744999999999999e-01 2 0 0 -124 0 P 266 -313 -1.7820965573683964e-01 3.6297589758039939e-01 -2.1940742894976419e+00 2.4004974357213138e+00 8.8595472087905380e-01 2 0 0 -125 0 P 267 313 -1.0396082963222222e+00 1.1121991439442469e+00 -8.5679143107978817e+00 8.7473029042015877e+00 8.8790771767458732e-01 2 0 0 -126 0 P 268 -321 3.2912897810216402e-01 4.1537724024442807e-01 -3.1899781715514406e+00 3.2711566503171818e+00 4.9359999999999998e-01 1 0 0 0 0 P 269 213 -1.0438824976090404e+00 5.9520783524058085e-01 -4.9427476983163094e+00 5.1363639180054683e+00 7.1240189010911914e-01 2 0 0 -127 0 P 270 223 2.1254945277292651e-02 1.5109947998573003e+00 -7.6200163263667164e+00 7.8070210467847216e+00 7.7548162644240393e-01 2 0 0 -128 0 P 271 -213 -8.2219215832088577e-01 1.1362848530341856e+00 -1.1282600740130793e+01 1.1391832628618344e+01 7.1388231860324336e-01 2 0 0 -129 0 P 272 213 -9.7351598645880755e-01 7.1555250722650965e-01 -8.9429352701951412e+00 9.0490871372354711e+00 6.7092324739213716e-01 2 0 0 -130 0 P 273 -213 -3.7930638808420949e+00 3.3946186517059886e+00 -4.7693776986657603e+01 4.7970601025530172e+01 7.5592995899535609e-01 2 0 0 -131 0 P 274 221 -4.1631208965072786e-01 2.5053579526899976e+00 -2.0059935753462330e+01 2.0227477800324802e+01 5.4744999999999999e-01 2 0 0 -132 0 P 275 213 -1.0048000360083025e+00 2.5979660555292576e+00 -2.7575400521401797e+01 2.7723889100912139e+01 6.7250444303650447e-01 2 0 0 -133 0 P 276 -213 -1.8897596138514399e+00 2.0488860322336140e+00 -2.7462631029994004e+01 2.7616803608220788e+01 8.5006651164553226e-01 2 0 0 -134 0 P 277 323 -8.9696983610258751e-01 1.4423053243558148e+00 -1.8143005004609364e+01 1.8240245626033762e+01 8.0816481315406463e-01 2 0 0 -135 0 P 278 -311 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -136 0 P 279 -211 5.1454959247626297e-01 1.3714370366104331e+00 -7.0417532310864175e+00 7.1938424489920747e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 113 -1.5522679982297477e-01 1.5797034356125750e+00 -2.7936808333457513e+01 2.7993820487850048e+01 8.1802649209089873e-01 2 0 0 -137 0 P 281 2212 1.4724695105171033e+00 6.4391110390161321e-01 -1.8512991776106723e+01 1.8606289341623853e+01 9.3827000000000005e-01 1 0 0 0 0 P 282 -2112 2.4631015040795057e+00 3.1782396234435648e-03 -2.4002839143825927e+01 2.4147172875305465e+01 9.3957000000000002e-01 1 0 0 0 0 P 283 111 2.7925940523902619e-02 -5.5472408808229241e-02 -2.4619485436848509e-01 2.8755617366116737e-01 1.3497999999999999e-01 2 0 0 -138 0 P 284 311 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 2 0 0 -139 0 P 285 -323 1.2149894988745846e+00 2.8126001053118044e-01 -1.5867995640197217e+01 1.5939009753910748e+01 8.3871307492165326e-01 2 0 0 -140 0 P 286 111 1.4701215289329348e+00 2.0257739530499569e-01 -1.0246762632681136e+01 1.0354547742988640e+01 1.3497999999999999e-01 2 0 0 -141 0 P 287 221 2.4742944322276328e+00 -2.1889539237695113e+00 -2.5489290973132327e+01 2.5708312041696626e+01 5.4744999999999999e-01 2 0 0 -142 0 P 288 211 1.0920348541005535e-01 2.7899557451340989e-01 -5.5127425853781209e-01 6.4276513972849081e-01 1.3957000000000000e-01 1 0 0 0 0 P 289 223 1.1034186693568511e+00 -4.1280946986221387e+00 -3.0890263315788975e+01 3.1196321959364010e+01 8.6222820230003172e-01 2 0 0 -143 0 P 290 -213 4.8751681044854056e-02 -2.3693416705232451e-01 -4.0466609114571508e+00 4.1088518321851835e+00 6.6983902589715094e-01 2 0 0 -144 0 P 291 2212 8.0410663991472264e-01 -2.2749831680509103e+00 -3.8548531817409440e+01 3.8635369698942938e+01 9.3827000000000005e-01 1 0 0 0 0 P 292 -2212 3.8701868692076369e-01 -1.0146124093407376e+00 -2.2846150079256496e+01 2.2891180525303312e+01 9.3827000000000005e-01 1 0 0 0 0 P 293 211 8.7412050987943168e-01 -1.2452971111903675e-01 -8.9355965003826583e+00 8.9801981557922250e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 -211 8.6892355883605532e-01 -1.2082322036524880e-02 -6.1745104569172916e+01 6.1751377249229058e+01 1.3957000000000000e-01 1 0 0 0 0 P 295 213 1.7081611541563861e+00 -5.7932635894194628e-01 -1.2477442885938915e+02 1.2478940072257220e+02 6.9498341937365571e-01 2 0 0 -145 0 P 296 -213 6.9617780643707183e-01 2.6210426802024800e-01 -4.6550497074325975e+01 4.6564405009410663e+01 8.6120486999776258e-01 2 0 0 -146 0 P 297 223 6.3889112496883238e-01 -3.6058594501588370e-01 -4.4738186984386196e+01 4.4751035320656143e+01 7.8203806007384802e-01 2 0 0 -147 0 P 298 221 1.5692289495223868e+00 -1.0193024182541098e-01 -9.1874706839159060e+01 9.1889794468994964e+01 5.4744999999999999e-01 2 0 0 -148 0 P 299 213 1.0531408697158957e+00 -3.1242044722714932e+00 -2.0346999410597067e+02 2.0349839635146830e+02 8.3009448831115984e-01 2 0 0 -149 0 P 300 313 7.3621987424404223e-01 8.6893003089341225e-02 -1.4720006889004748e+02 1.4720458551476847e+02 8.8325831037160563e-01 2 0 0 -150 0 P 301 -313 3.7255610227274127e-01 -8.5161418207003303e-01 -8.6674628809694639e+01 8.6684221906256170e+01 8.9386991798089355e-01 2 0 0 -151 0 P 302 -213 9.4170324307306083e-02 -7.1957469828364529e-01 -1.4329891754246052e+02 1.4330287884534638e+02 7.8016711461893740e-01 2 0 0 -152 0 P 303 211 -4.5120026787354511e-01 -1.5894556763202117e-01 -6.0764575775260319e+01 6.0766619079124787e+01 1.3957000000000000e-01 1 0 0 0 0 P 304 3212 3.0514676584537620e-01 -3.2892463865811306e-01 -2.1879895037475299e+02 2.1880266032789169e+02 1.1925500000000000e+00 2 0 0 -153 0 P 305 -3322 -9.4097277055493167e-01 -5.8894171144694929e-01 -5.4165333361151420e+02 5.4165606712799843e+02 1.3149000000000000e+00 2 0 0 -154 0 P 306 -313 2.0649051041945177e-01 -7.5848415393842872e-01 -2.4148146439685010e+02 2.4148469113781218e+02 9.6977839462858995e-01 2 0 0 -155 0 P 307 2112 4.2778927057065519e-01 5.7125015057551069e-02 -3.1787588628924232e+02 3.1787756785102590e+02 9.3957000000000002e-01 1 0 0 0 0 P 308 221 -1.3190068515466569e+00 -4.6578333167382737e-03 -3.5394622875142039e+02 3.5394910983024829e+02 5.4744999999999999e-01 2 0 0 -156 0 P 309 -2112 -2.3989354435229902e+00 9.8281899945084195e-01 -8.7756585665258584e+01 8.7799897174522030e+01 9.3957000000000002e-01 1 0 0 0 0 P 310 -211 -3.9662298283597591e-01 -6.0413446470482035e-01 -4.6774529481667196e+02 4.6774587394349317e+02 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -4.2672931306698003e-01 -2.3090676102758495e-01 -5.6274245176992679e+01 5.6276509894129916e+01 1.3957000000000000e-01 1 0 0 0 0 P 312 313 -1.7865835516067197e+00 6.2968574057666271e-01 -6.7387947123314731e+01 6.7420716824772796e+01 9.1063425851607227e-01 2 0 0 -157 0 P 313 -321 -2.3041265158966925e-01 5.1032141117892726e-01 -8.3700840329905716e+01 8.3704168539118115e+01 4.9359999999999998e-01 1 0 0 0 0 P 314 213 -7.8760798121659548e-01 -5.6618594630365937e-01 -1.3811232527239807e+02 1.3811810805796154e+02 8.1023978190677848e-01 2 0 0 -158 0 P 315 -213 3.2088574587708457e-01 -4.8175169867612921e-01 -1.6802059835364230e+02 1.6802338629388333e+02 7.7576941578643599e-01 2 0 0 -159 0 P 316 331 -2.1624890421805518e-01 -1.0258729185735911e-01 -2.4700316793464120e+02 2.4700514452338271e+02 9.5873016411597090e-01 2 0 0 -160 0 P 317 2224 -2.8190748331736332e-01 4.8138431144231691e-02 -5.2424415849457421e+02 5.2424545547994126e+02 1.1305248998194504e+00 2 0 0 -161 0 P 318 223 1.8038463663845153e-01 -8.6773010817760621e-02 -1.2449355926405819e+03 1.2449358522978935e+03 7.7874588461348127e-01 2 0 0 -162 0 V -17 0 0 0 0 0 4 1 0 P 117 21 1.1046570476529272e+00 2.8533800296792613e+00 1.0622002836134497e+02 1.0626408833595492e+02 0 2 0 0 -17 0 P 118 21 -1.1046570476529272e+00 -2.8533800296792613e+00 1.2677472698946275e+01 1.3041486066366435e+01 0 2 0 0 -17 0 P 119 21 -8.0027583532907598e-01 -7.2225688798810728e-01 5.8653299018286402e+00 5.9635720237239598e+00 0 2 0 0 -17 0 P 120 21 -2.5249116086388907e+00 -1.2712899341906045e+00 8.4958119689861782e+00 8.9537800810932691e+00 0 2 0 0 -17 0 P 319 92 -3.3251874439679669e+00 -1.9935468221787118e+00 1.3325864293110607e+02 1.3422292650713857e+02 1.5585152672686750e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 14 0 P 320 -213 -2.8480004165306860e-01 5.9576816893411100e-02 5.2376360130968678e+00 5.3018150371256416e+00 7.6925367816187462e-01 2 0 0 -163 0 P 321 111 6.5183842329488442e-02 -7.2012445035361494e-01 4.2344957846876685e+00 4.2979067356371941e+00 1.3497999999999999e-01 2 0 0 -164 0 P 322 111 1.2502523672386964e-01 1.0021852270277111e-01 7.9973630980928678e-01 8.2672415456303261e-01 1.3497999999999999e-01 2 0 0 -165 0 P 323 213 -5.7951255899824528e-01 -6.1566977336730366e-01 1.3722141760877589e+01 1.3769789640887952e+01 7.7139365618962863e-01 2 0 0 -166 0 P 324 111 -9.2424961714341142e-02 9.6321817969330384e-02 2.0534940757776016e-01 2.7965737207760372e-01 1.3497999999999999e-01 2 0 0 -167 0 P 325 -213 -1.1067600447339856e+00 -1.6218532971014071e-01 6.0389272983154685e+00 6.2006422649470814e+00 8.5328758675814831e-01 2 0 0 -168 0 P 326 211 -2.0498004014864751e-01 -4.5270767112597400e-03 1.0122361628257261e+00 1.0421799966968472e+00 1.3957000000000000e-01 1 0 0 0 0 P 327 111 -3.8255127661839133e-01 -1.9081742065836602e+00 1.2677249287337471e+01 1.2826470417679680e+01 1.3497999999999999e-01 2 0 0 -169 0 P 328 -211 -8.1729685617042191e-01 2.1791621288724021e-02 1.1939970820232670e+00 1.4538080487617762e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 223 -2.7131083404504175e-01 2.2030189280282422e-01 2.3163028516552117e+01 2.3179612650792340e+01 8.0399632432182300e-01 2 0 0 -170 0 P 330 211 -9.9126330579208961e-03 7.5749306203032651e-01 1.5234962660263182e+01 1.5254424310469131e+01 1.3957000000000000e-01 1 0 0 0 0 P 331 113 2.2031514708745323e-01 -1.2504058092678683e-01 1.2349971029631249e+01 1.2362771509823645e+01 5.0215641035580594e-01 2 0 0 -171 0 P 332 -213 -1.3587985301966357e-01 5.2511456700412673e-01 1.4701157426952882e+01 1.4737191883200287e+01 8.7554912327975243e-01 2 0 0 -172 0 P 333 211 1.4971743005094948e-01 -2.3864370521745951e-01 2.2687754191155520e+01 2.2689932484476365e+01 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 3 1 0 P 121 21 -1.7526455339572602e+00 -1.6402911423441666e+00 1.1232651365346609e+02 1.1235216059756776e+02 0 2 0 0 -19 0 P 122 21 1.7526455339572602e+00 1.6402911423441666e+00 6.0230130902450367e+02 6.0230609259248740e+02 0 2 0 0 -19 0 P 123 21 -1.0346584559188690e+00 -2.4641502772336282e-01 3.3310302304817554e+01 3.3327278288582555e+01 0 2 0 0 -19 0 P 334 92 -1.0346584559188690e+00 -2.4641502772336282e-01 7.4793812498278737e+02 7.4798553147863765e+02 8.3537572460591214e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 8 0 P 335 -313 4.8542659709619368e-01 2.1568580876425061e-01 8.8452633747117673e+01 8.8458036504785539e+01 8.2075948423400813e-01 2 0 0 -173 0 P 336 313 -6.4832044132540001e-01 1.5477146596683491e-01 6.5132897050042757e+01 6.5143350318356681e+01 9.5788254361141645e-01 2 0 0 -174 0 P 337 -313 2.0698906709717108e-01 -9.4320638447488919e-02 2.1680836829305770e+02 2.1681088551026144e+02 1.0196925952559621e+00 2 0 0 -175 0 P 338 -213 -4.9985847065148958e-01 7.0337786165625538e-01 9.1704333136889161e+01 9.1710638387419195e+01 6.4177756229868965e-01 2 0 0 -176 0 P 339 223 1.6532552377892859e-01 -6.4894137994897416e-01 5.1310672477646385e+01 5.1320679500312195e+01 7.6064237460428186e-01 2 0 0 -177 0 P 340 223 -5.0062651592458085e-01 -2.6584103501101658e-02 9.7772110140335585e+01 9.7776755163349847e+01 8.1055250091657272e-01 2 0 0 -178 0 P 341 223 -2.1942864235462733e-01 -3.8082064426386303e-01 1.0447815140000758e+02 1.0448199912859234e+02 7.8156807258233552e-01 2 0 0 -179 0 P 342 321 -2.4165573635064514e-02 -1.6958339794927593e-01 3.2278958737690516e+01 3.2283186965560510e+01 4.9359999999999998e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 343 2212 4.2703213642904175e-01 -7.9813291226967820e-01 1.0311535374488091e+02 1.0312359526857088e+02 9.3827000000000005e-01 1 0 0 0 0 P 344 111 5.1082189207065733e-02 1.3229615078414103e-01 1.3063714621827531e+01 1.3065181628378417e+01 1.3497999999999999e-01 2 0 0 -180 0 V -22 0 0 0 0 0 0 3 0 P 345 211 2.1776891658702804e-01 1.4667198137665299e-01 2.6957894967833710e+02 2.6957911366690013e+02 1.3957000000000000e-01 1 0 0 0 0 P 346 -211 -1.5210313885320217e-01 -1.9229827923117676e-01 4.8175528836764261e+02 4.8175537097573539e+02 1.3957000000000000e-01 1 0 0 0 0 P 347 111 7.1215530223472059e-02 6.9564365734495190e-02 3.5534726716638522e+02 3.5534730674802006e+02 1.3497999999999999e-01 2 0 0 -181 0 V -23 0 0 0 0 0 0 2 0 P 348 -211 6.9351459176469330e+00 -9.9571581001823137e+00 -5.4470746165444318e+01 5.5806118965004615e+01 1.3957000000000000e-01 1 0 0 0 0 P 349 211 1.1815072542956082e+00 -1.9783066882728300e+00 -1.1941003322589840e+01 1.2162100841541307e+01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 350 211 3.0186545477769307e+00 -4.5886947121995734e+00 -2.5167158245603247e+01 2.5759924852078239e+01 1.3957000000000000e-01 1 0 0 0 0 P 351 111 1.4454312003105978e+00 -1.6577964430616390e+00 -8.8706913490037280e+00 9.1402923919942918e+00 1.3497999999999999e-01 2 0 0 -182 0 V -25 0 0 0 0 0 0 2 0 P 352 -211 9.1455216081853052e-01 -9.8289000639705093e-01 -4.9483535427792180e+00 5.1291481737973488e+00 1.3957000000000000e-01 1 0 0 0 0 P 353 111 1.7074239592948872e+00 -6.0764077547512907e-01 -1.0810645539586742e+01 1.0962335539098452e+01 1.3497999999999999e-01 2 0 0 -183 0 V -26 0 0 0 0 0 0 3 0 P 354 111 -5.2101895132735616e-02 -2.7951792743423822e-02 -1.4584156859397457e+00 1.4658416775317493e+00 1.3497999999999999e-01 2 0 0 -184 0 P 355 111 5.1409819858218207e-02 -1.1826177758111430e-02 -4.4319556981907693e-01 4.6628826016261354e-01 1.3497999999999999e-01 2 0 0 -185 0 P 356 111 -1.0470728143248921e-01 2.0769728015106678e-02 -3.8793306683171846e-01 4.2438975144113289e-01 1.3497999999999999e-01 2 0 0 -186 0 V -27 0 0 0 0 0 0 2 0 P 357 211 3.4684553451869282e-01 1.6291744491796858e-01 -6.6296555978386895e-01 7.7836176488423159e-01 1.3957000000000000e-01 1 0 0 0 0 P 358 111 9.2755420725394548e-03 -3.8902513610380407e-01 -1.4795953544075593e+00 1.5358543568274154e+00 1.3497999999999999e-01 2 0 0 -187 0 V -28 0 2.1102570769762575e-04 3.1568303294152541e-04 -1.0481844389672740e-03 1.1150371778514147e-03 0 2 0 P 359 22 3.1320131910570148e-01 4.8679418852937290e-01 -1.7680141049283331e+00 1.8603595145834197e+00 0 1 0 0 0 0 P 360 22 1.0609692999552245e+00 1.5688906545034618e+00 -5.0576199616546074e+00 5.4006104671382227e+00 0 1 0 0 0 0 V -29 0 -1.1851815173083341e-05 4.9169964520442955e-04 -2.9297572657699215e-03 2.9713302198317989e-03 0 2 0 P 361 22 1.1841076177942948e-02 1.0169469996359737e+00 -6.1418145836920681e+00 6.2254484008468207e+00 0 1 0 0 0 0 P 362 22 -3.9209839279201984e-02 1.1850870145661702e-01 -6.2371722557499676e-01 6.3608560846493456e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 363 2212 1.4882630359469244e+00 4.5861111788280926e+00 -1.3721630598223710e+01 1.4574321235506892e+01 9.3827000000000005e-01 1 0 0 0 0 P 364 111 5.8839360853550149e-01 2.7254324593904724e+00 -8.2346019950259244e+00 8.6948880812894629e+00 1.3497999999999999e-01 2 0 0 -188 0 V -31 0 0 0 0 0 0 2 0 P 365 -311 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 2 0 0 -189 0 P 366 -211 2.8966372111981192e-01 6.5671604788001436e-01 -1.5189103093889327e+00 1.6857488993750240e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 367 -4132 6.1932746264626175e+00 2.6422707217778360e+01 -8.4052347087424351e+01 8.8359580919728643e+01 2.4702999999999999e+00 2 0 0 -190 0 P 368 22 1.4281720348137575e-01 3.6543670134544759e-01 -9.5927423704498971e-01 1.0364110179647501e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 369 22 -9.2275782543600859e-01 6.2896337763484900e-01 1.3580062462352611e+00 1.7581973437652592e+00 0 1 0 0 0 0 P 370 221 -1.3515067596179804e+00 1.1935341250034783e+00 1.0448230095886901e+00 2.1546347376543618e+00 5.4744999999999999e-01 2 0 0 -191 0 V -34 0 0 0 0 0 0 3 0 P 371 -211 -1.6576177375707235e-01 2.7787931788032871e-01 -3.2018964475850183e-02 3.5383453750423144e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 211 -2.2270823658959865e-01 1.7465271223669632e-01 3.8269392481484193e-01 4.9602112205698540e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 111 -6.6997772108833897e-02 6.4327645749143270e-01 1.1058839750391278e+00 1.2882128197152116e+00 1.3497999999999999e-01 2 0 0 -192 0 V -35 0 0 0 0 0 0 2 0 P 374 -321 2.3088659145579091e-01 2.3884583942541135e-01 4.0077372094797328e+00 4.0516607031405405e+00 4.9359999999999998e-01 1 0 0 0 0 P 375 211 6.3327273690130970e-02 -3.1072069223622284e-01 1.9140954753043713e+00 1.9451989527185771e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 376 321 2.0739891592609752e-01 -1.5008835806955192e-01 3.5726648215625678e+00 3.6156763838576635e+00 4.9359999999999998e-01 1 0 0 0 0 P 377 -211 6.8083013727334607e-02 -7.2128054967664168e-02 1.1432282043981888e-01 2.0588162920700304e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 1 0 P 378 310 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -193 0 V -38 0 0 0 0 0 0 2 0 P 379 211 1.4276982042613318e-02 2.1777535620317029e-01 2.4591674133331107e+00 2.4727745731637416e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 -211 7.5285686019056319e-01 -3.6114885471553254e-01 1.5039427936533686e+01 1.5063236517770283e+01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 381 211 -3.2564748328028643e-02 -4.4951821422832400e-01 1.2129972911179671e+01 1.2139145344652947e+01 1.3957000000000000e-01 1 0 0 0 0 P 382 -211 3.3570438762405375e-01 -2.2475947898224130e-01 2.2843365525610821e+01 2.2847364018215043e+01 1.3957000000000000e-01 1 0 0 0 0 P 383 111 2.8311901644856694e-03 -1.4208074052031550e-01 1.1168423522132302e+01 1.1170143173772781e+01 1.3497999999999999e-01 2 0 0 -194 0 V -40 0 0 0 0 0 0 2 0 P 384 211 4.1170657522114390e-01 -5.8600038434651192e-01 8.6485618301443488e+00 8.6792857004055559e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 -211 -1.5161522173265082e-01 -1.7582368376233651e-01 7.7669740426035965e+00 7.7716965140573295e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 386 -211 8.8968567793816111e-01 -2.0505212342513832e-01 1.0841477853633208e+01 1.0880749460150653e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 2.1027841575694231e-01 -1.0687463421640166e+00 1.2229295985896846e+01 1.2278450051496520e+01 1.3497999999999999e-01 2 0 0 -195 0 V -42 0 0 0 0 0 0 3 0 P 388 211 2.0477302601016806e-01 2.9926708139069717e-02 6.9643984775708101e-01 7.3982149636605465e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 -1.7942048213989335e-02 -2.6279955290552579e-02 4.3046327500712783e-01 4.5364189530294569e-01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -5.1752497174978492e-03 -6.3806992501713566e-02 1.6469309836891391e-01 2.2235451997228423e-01 1.3497999999999999e-01 2 0 0 -196 0 V -43 0 0 0 0 0 0 2 0 P 391 211 -9.6998340142361542e-02 -3.5415583248679028e-01 1.0026780585523312e+00 1.0768835153706535e+00 1.3957000000000000e-01 1 0 0 0 0 P 392 111 4.3401178138248377e-02 2.5431059440217435e-01 2.3164703849118795e+00 2.3346974504767779e+00 1.3497999999999999e-01 2 0 0 -197 0 V -44 0 0 0 0 0 0 2 0 P 393 2112 3.7203063582527385e-01 -1.7583068964110157e-01 3.9902577890296973e+00 4.1199844942941706e+00 9.3957000000000002e-01 1 0 0 0 0 P 394 111 6.9465988362116801e-02 1.1260785401452283e-01 1.7609429287152587e+00 1.7710577774079406e+00 1.3497999999999999e-01 2 0 0 -198 0 V -45 0 0 0 0 0 0 2 0 P 395 -211 4.5659270866253085e-02 2.5304423324417319e-02 4.3542211986285642e+00 4.3567702618272390e+00 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -1.2436424180966610e-01 5.6340930304611758e-01 2.1545965286427187e+00 2.2345922019552154e+00 1.3497999999999999e-01 2 0 0 -199 0 V -46 0 0 0 0 0 0 2 0 P 397 -2112 -7.7577062635964089e-01 2.1836498478976050e+00 4.9526950996446381e+01 4.9590037442133948e+01 9.3957000000000002e-01 1 0 0 0 0 P 398 211 2.9460967021964348e-02 7.6998858555386393e-02 1.4892046393154574e+00 1.4980010064934481e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 399 321 3.3381760456813248e-01 3.6762918413813089e-01 1.4157483297276345e+01 1.4174786054216423e+01 4.9359999999999998e-01 1 0 0 0 0 P 400 -211 -1.1308401563363750e-01 2.7630836054390440e-01 3.2461205620408458e+00 3.2628075016621292e+00 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 401 2212 -1.4693914225262659e+00 1.3718629277384442e+00 1.0163868586425282e+02 1.0166289359373096e+02 9.3827000000000005e-01 1 0 0 0 0 P 402 211 -1.6516279192266309e-01 1.2760242044922626e-01 7.0961698334014214e+00 7.1006103410141126e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 403 -2212 -9.1390721957133725e-01 7.0795529763213272e-01 1.0302908485290651e+02 1.0303984231029150e+02 9.3827000000000005e-01 1 0 0 0 0 P 404 -211 -4.9937829232166903e-01 4.3818034400250272e-01 7.8706149843306349e+01 7.8709077517365202e+01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 1 0 P 405 130 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 406 2212 4.9754496854899223e-02 -1.3733105716182045e-01 1.9316292574205696e+02 1.9316525973154057e+02 9.3827000000000005e-01 1 0 0 0 0 P 407 211 -1.7352840552363066e-01 1.4511688035982032e-01 7.5056630119969697e+01 7.5057100768463812e+01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 -6.1881305703396353e-05 7.8060246645409220e-06 3.0702013732928451e-02 3.0702091722223220e-02 0 2 0 P 408 22 -1.0641333515515250e-02 -2.6841500845066445e-02 6.5167008755383504e+00 6.5167648419586923e+00 0 1 0 0 0 0 P 409 22 -2.6799499826152934e-01 6.1990114041982874e-02 1.3172693163142904e+02 1.3172721883166176e+02 0 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 410 -2212 -2.0509311894932511e-01 -7.5844595228929157e-01 3.0014973307008194e+02 3.0015222790458233e+02 9.3827000000000005e-01 1 0 0 0 0 P 411 -211 4.3308811263527832e-03 -7.3113774585891050e-02 7.1167701131554878e+01 7.1167875677975545e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 412 -211 -9.0600469820506457e-02 -6.6602013092826295e-01 2.2393397044676266e+02 2.2393502269876501e+02 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -1.2330123329730834e-01 1.9308950901848823e-01 1.8254266023874885e+02 1.8254285390941035e+02 1.3497999999999999e-01 2 0 0 -200 0 V -55 0 0 0 0 0 0 2 0 P 414 211 -2.8174637945878134e-01 -8.2458417284482555e-02 7.7885956018908786e+01 7.7886634316660604e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 1.1779655971733316e-01 -2.8144922545196727e-01 2.3742173396481462e+02 2.3742196837730833e+02 1.3497999999999999e-01 2 0 0 -201 0 V -56 0 0 0 0 0 0 1 0 P 416 310 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -202 0 V -57 0 0 0 0 0 0 2 0 P 417 211 -2.1124342068482702e-01 -4.0228384217061497e-01 2.5877969129574996e+02 2.5878012783631783e+02 1.3957000000000000e-01 1 0 0 0 0 P 418 -211 -3.1518931859237037e-01 -3.1630784642005007e-02 4.3004090560278321e+01 4.3005483714459146e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 1 0 P 419 310 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -203 0 V -59 0 0 0 0 0 0 2 0 P 420 211 1.3608658690979444e-01 -2.5282171118196906e-01 3.4211693972318886e+00 3.4360323348649877e+00 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -9.6885175308492402e-02 -2.8150263741062120e-01 1.4496139266756256e+01 1.4499824264923223e+01 1.3497999999999999e-01 2 0 0 -204 0 V -60 0 0 0 0 0 0 3 0 P 422 -211 2.5205438547994158e-01 -5.8887644427160113e-01 2.6311317594760464e+01 2.6319483662053653e+01 1.3957000000000000e-01 1 0 0 0 0 P 423 211 1.2907148587371026e-01 -1.3161144221356708e-01 1.1123105810374851e+01 1.1125508692814092e+01 1.3957000000000000e-01 1 0 0 0 0 P 424 221 8.7880815383936906e-01 -2.0454984505104776e+00 8.5638079074402569e+01 8.5668761265343520e+01 5.4744999999999999e-01 2 0 0 -205 0 V -61 0 0 0 0 0 0 2 0 P 425 -211 -1.5303794146600642e+00 -2.0392859333538551e+00 7.1862357021913098e+01 7.1907708799548004e+01 1.3957000000000000e-01 1 0 0 0 0 P 426 111 -2.2686535957500534e-02 -2.2232276137209814e-01 8.8852424470203903e+00 8.8890772879906255e+00 1.3497999999999999e-01 2 0 0 -206 0 V -62 0 0 0 0 0 0 2 0 P 427 211 -1.4567424831221007e-01 -7.3919574209108385e-02 1.1251435733221703e+01 1.1253487056632304e+01 1.3957000000000000e-01 1 0 0 0 0 P 428 111 -1.4939272751261954e+00 -1.8081043564807144e+00 7.3231302572507929e+01 7.3268976764616397e+01 1.3497999999999999e-01 2 0 0 -207 0 V -63 0 0 0 0 0 0 2 0 P 429 130 -2.4475005945396067e-01 -3.8069210975122858e-01 1.3098865230824227e+01 1.3116126518077866e+01 4.9767000000000000e-01 1 0 0 0 0 P 430 310 -4.5044400446669897e-01 -2.7959447847610397e-01 1.3048620023509267e+01 1.3068865016533811e+01 4.9767000000000000e-01 2 0 0 -208 0 V -64 0 0 0 0 0 0 2 0 P 431 -321 -1.4681054948386378e+00 -1.0884780864011612e+00 2.1136007562234159e+01 2.1220616742200743e+01 4.9359999999999998e-01 1 0 0 0 0 P 432 211 -6.9113554582763925e-01 -1.0500941425245576e+00 1.4641268966556334e+01 1.4695802216511233e+01 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 3 0 P 433 211 -4.3018667221439905e-01 -7.6358381810188447e-01 9.5552365537666510e+00 9.5963610917657913e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 -211 -8.8064940984377915e-01 -1.0586598586157425e+00 1.6649598390478797e+01 1.6707031765949232e+01 1.3957000000000000e-01 1 0 0 0 0 P 435 111 -3.8452701156244590e-01 -1.4471210124925199e-01 5.8854286003621024e+00 5.9012957920468052e+00 1.3497999999999999e-01 2 0 0 -209 0 V -66 0 0 0 0 0 0 2 0 P 436 211 -8.1639098647959640e-01 -7.8935342042376108e-02 6.4220344622251169e+00 6.4757031625867105e+00 1.3957000000000000e-01 1 0 0 0 0 P 437 -211 1.6517405323475644e-02 -9.6567388905977478e-02 4.0957145694000898e+00 4.0992628244813609e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 438 -211 -2.6062580481261710e+00 -6.3972279868279566e-02 2.1191598909602646e+01 2.1351815323208143e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 211 -3.4807467185820817e-01 1.3486034407408479e-01 4.7828078739800386e+00 4.7993826930031780e+00 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 440 211 -1.3822909515300794e+00 -3.1701713614728161e-01 9.4159258935073957e+00 9.5231490777061776e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -7.5194613958268972e-03 -1.4326595104864758e-02 2.6311108317435226e+00 2.6346205804527285e+00 1.3497999999999999e-01 2 0 0 -210 0 V -69 0 -3.2894213052368456e-04 6.3125812515849269e-05 3.3539629417182757e-03 3.3707023707118793e-03 0 2 0 P 442 22 -4.8186379190428402e-01 1.4824942523018392e-01 4.9461812084873484e+00 4.9718084389106165e+00 0 1 0 0 0 0 P 443 22 -1.7980481722974337e+00 2.8927827903716785e-01 1.8300279274208723e+01 1.8390673741509801e+01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 444 311 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 2 0 0 -211 0 P 445 111 -1.4620556163168672e+00 2.4813037811528996e-01 1.0592684088258299e+01 1.0696838369527132e+01 1.3497999999999999e-01 2 0 0 -212 0 V -71 0 0 0 0 0 0 1 0 P 446 130 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406864e+01 4.9767000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 1 0 P 447 310 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251250e+00 4.9767000000000000e-01 2 0 0 -213 0 V -73 0 -1.9472591318257961e+00 8.3995921291674325e+00 1.4654708998628274e+02 1.4723431227236318e+02 0 2 0 P 448 2212 -9.3545545269659622e-02 7.5649194101478967e-01 1.3035061116275278e+01 1.3090996895721572e+01 9.3827000000000005e-01 1 0 0 0 0 P 449 -211 -9.8819560980931087e-02 7.3283822251970498e-02 1.4419779563282928e+00 1.4539312348502051e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 450 -2112 2.9133267477638297e-01 1.6172779667688766e+00 1.1317897326733288e+01 1.1475105857139834e+01 9.3957000000000002e-01 1 0 0 0 0 P 451 211 -7.1450006080425775e-03 2.8364520002038962e-01 3.5076633712144134e+00 3.5218869603080050e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 3 0 P 452 211 -8.9225259645836996e-02 -5.9408438952089790e-02 1.6800231451730891e+00 1.6892152209812905e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 -211 1.1630693744121963e-01 8.7192875310218548e-02 1.7971980900530726e+00 1.8084608541498020e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 221 -1.9481245460419003e-01 2.0288304542047858e-01 4.5053122571735562e+00 4.5471588337913031e+00 5.4744999999999999e-01 2 0 0 -214 0 V -76 0 0 0 0 0 0 2 0 P 455 22 1.0022458329071902e+00 -1.9223542467573798e-01 5.0271274686520160e+00 5.1296648773731528e+00 0 1 0 0 0 0 P 456 111 3.9130110620179237e-01 3.1432048284728842e-01 4.7082401127036553e+00 4.7368405589510640e+00 1.3497999999999999e-01 2 0 0 -215 0 V -77 0 4.0153636320777204e-05 2.7122341438058723e-05 7.2521553852361901e-04 7.2684286962158178e-04 0 2 0 P 457 22 6.3762516781812406e-01 5.1208879147255471e-01 1.2209129422220263e+01 1.2236488141354586e+01 0 1 0 0 0 0 P 458 22 7.5975394740700897e-01 4.3179069129143305e-01 1.3028959588544526e+01 1.3058233311654865e+01 0 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 459 -211 3.9200224519627397e-01 6.7036711704883095e-02 3.4972968056970180e+00 3.5226019379137474e+00 1.3957000000000000e-01 1 0 0 0 0 P 460 211 1.2860876453298151e+00 -1.1186266750594271e-02 7.4847706976630288e+00 7.5957500449612549e+00 1.3957000000000000e-01 1 0 0 0 0 P 461 111 3.0382977154547536e-01 2.1670972624679194e-01 1.9194759152541676e+00 1.9600721989682317e+00 1.3497999999999999e-01 2 0 0 -216 0 V -79 0 1.2364522635710453e-04 2.6783415676147990e-05 1.7640249169410100e-03 1.7688621366039612e-03 0 2 0 P 462 22 2.0036052118735095e-01 8.2793776830612023e-02 2.2819925965955972e+00 2.2922672965536681e+00 0 1 0 0 0 0 P 463 22 3.0658432359927351e-01 2.7018101094914749e-02 4.9505012413439449e+00 4.9600591191851287e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 464 2112 1.9496405700625017e+00 -2.5711196714691569e-03 2.6746309193694472e+01 2.6833727885493200e+01 9.3957000000000002e-01 1 0 0 0 0 P 465 211 6.7354150996353956e-01 -2.0752757953346984e-01 6.2851972784090346e+00 6.3261291857921558e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 466 -2112 1.3462739229625320e+00 7.7425325317696203e-01 7.6486544610351199e+00 7.8610831585040799e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 111 9.5433231115016270e-01 4.5565994642410657e-01 4.4894856521080859e+00 4.6143338812622563e+00 1.3497999999999999e-01 2 0 0 -217 0 V -82 0 0 0 0 0 0 3 0 P 468 -211 3.1549491408771663e-01 4.6567377454487337e-02 1.4474850154494627e+00 1.4887572724621485e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 211 9.5243535602676552e-02 -1.5209731860964573e-01 1.1476132120066047e+00 1.1699148664216805e+00 1.3957000000000000e-01 1 0 0 0 0 P 470 221 7.4490078919799063e-01 -1.5202371842806270e-01 5.2286606512864680e+00 5.3119282850509109e+00 5.4744999999999999e-01 2 0 0 -218 0 V -83 0 0 0 0 0 0 2 0 P 471 211 8.1894668694024209e-01 2.3325557372599750e+00 5.9305418993343562e+00 6.4266863116333273e+00 1.3957000000000000e-01 1 0 0 0 0 P 472 111 -4.0723007462882800e-02 1.0574573195591666e+00 2.2775590404786064e+00 2.5150286537715449e+00 1.3497999999999999e-01 2 0 0 -219 0 V -84 0 0 0 0 0 0 2 0 P 473 22 9.7849810237617163e-01 2.9329241145962222e+00 1.1451736197173155e+01 1.1861777452303665e+01 0 1 0 0 0 0 P 474 111 1.6609993296323144e-01 1.4307044356655101e+00 3.9720517679911169e+00 4.2272827227386527e+00 1.3497999999999999e-01 2 0 0 -220 0 V -85 0 0 0 0 0 0 2 0 P 475 -211 2.8137841195477081e-01 1.2848410923924741e-01 1.4733443763819121e+00 1.5119211002421380e+00 1.3957000000000000e-01 1 0 0 0 0 P 476 111 4.7696226071361375e-01 1.4639143001008668e+00 2.3696932288255899e+00 2.8291701389854058e+00 1.3497999999999999e-01 2 0 0 -221 0 V -86 0 0 0 0 0 0 3 0 P 477 22 5.7680613643623646e-01 8.5068187069240031e-01 9.5896780536495674e-01 1.4056970569371274e+00 0 1 0 0 0 0 P 478 211 2.0358806942319194e-01 2.0701396234629021e-01 3.5019977835089117e-01 4.7583878811503688e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 -211 9.0337640098961369e-01 8.9816713687299043e-01 1.4788711166043924e+00 1.9568680824343512e+00 1.3957000000000000e-01 1 0 0 0 0 V -87 0 3.2474631983916332e-05 9.7410783509234710e-05 1.3564348080823553e-04 1.7020556806749825e-04 0 2 0 P 480 22 3.9001811079315468e-02 1.5271838292545140e-01 1.6207399367084319e-01 2.2607968766620315e-01 0 1 0 0 0 0 P 481 22 7.9964842422821447e-01 2.3628936970504149e+00 3.3408890931502686e+00 4.1694417082700257e+00 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 482 -211 -1.1441099565012297e-01 1.3904297631243436e+00 2.1816410435693205e+00 2.5933419037978593e+00 1.3957000000000000e-01 1 0 0 0 0 P 483 111 1.0174687613849669e-01 6.3856246458058019e-01 3.2113162829813596e-01 7.3447911547475564e-01 1.3497999999999999e-01 2 0 0 -222 0 V -89 0 0 0 0 0 0 2 0 P 484 211 3.9779167190723447e-01 1.5889195636751455e-01 4.5397661523884070e-01 6.3957753253281457e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 111 4.0003817399806046e-01 1.3218945110764273e+00 1.2736200901280608e+00 1.8835507355650123e+00 1.3497999999999999e-01 2 0 0 -223 0 V -90 0 -8.4995179063576421e-05 1.2023658143504478e-05 1.2062612143230178e-04 1.4901465103862350e-04 0 2 0 P 486 22 -4.6194329145719348e-01 1.1785630989943167e-01 5.9984472343393835e-01 7.6622151270827321e-01 0 1 0 0 0 0 P 487 22 -2.1650059478877809e-01 -2.1881721132809034e-02 3.6301052916920529e-01 4.2323511379768003e-01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 488 311 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 2 0 0 -224 0 P 489 211 -3.8198541151957377e-01 6.4838416885081673e-01 2.2544827281917265e-01 7.9788570211985288e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 490 211 -3.8355905440942223e-01 2.2046827761504406e-01 1.6759697766551432e-01 4.9324673488692167e-01 1.3957000000000000e-01 1 0 0 0 0 P 491 111 -3.5253795477783950e-01 1.5012892203401249e-03 -1.2354994083629908e-01 3.9720202883283229e-01 1.3497999999999999e-01 2 0 0 -225 0 V -93 0 0 0 0 0 0 2 0 P 492 -211 -1.0903142327166899e+00 5.2865137402408924e-01 9.6701452576942848e-01 1.5565520483656223e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -3.9462850528196543e-02 3.0389759640534730e-01 5.3010249145955493e-02 3.3902913235778781e-01 1.3497999999999999e-01 2 0 0 -226 0 V -94 0 0 0 0 0 0 2 0 P 494 211 -1.2361325495235732e-02 1.4230680560034584e-01 -1.9723024651120868e-01 2.8068413622263361e-01 1.3957000000000000e-01 1 0 0 0 0 P 495 -211 -1.6872008481646645e+00 1.3262616609879836e+00 -7.8575873796689465e-03 2.1506181023216553e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 496 211 -1.0885790322625848e-01 2.2612266225162836e-01 1.5295726796725564e-01 3.2535705340838750e-01 1.3957000000000000e-01 1 0 0 0 0 P 497 111 -1.5044694929017968e+00 1.5829448879062136e-01 1.4968586155032573e+00 2.1324377870080999e+00 1.3497999999999999e-01 2 0 0 -227 0 V -96 0 -3.2554406769056885e-04 -3.5040648225571856e-05 4.3275074492165266e-04 5.4339007092584282e-04 0 2 0 P 498 22 -1.5542977715021760e+00 -1.6533880291179975e-01 2.0752910663201551e+00 2.5980784230259841e+00 0 1 0 0 0 0 P 499 22 -6.3477122815262799e-03 -2.6446894308450376e-03 -7.0097946299553786e-04 6.9122504007164713e-03 0 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 500 111 -6.2353150947055946e-01 -9.0116747774047601e-02 1.5221604244427969e-01 6.6204372628203678e-01 1.3497999999999999e-01 2 0 0 -228 0 P 501 111 -3.5805485482381427e-01 3.4710721190687049e-02 9.8967965370352393e-02 3.9676488226407791e-01 1.3497999999999999e-01 2 0 0 -229 0 P 502 111 -1.1845234764357272e-01 6.7454018331792445e-02 -1.5210473087511882e-02 1.9243690431652011e-01 1.3497999999999999e-01 2 0 0 -230 0 V -98 0 0 0 0 0 0 2 0 P 503 321 -1.6678250697673029e+00 -1.5086562075239927e+00 7.6560955002661513e-01 2.4264136001384720e+00 4.9359999999999998e-01 1 0 0 0 0 P 504 -211 -1.9603293385378842e-01 -5.7625735908253983e-01 3.4022761587305511e-01 7.1115122903273542e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 1 0 P 505 130 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 1 0 0 0 0 V -100 0 2.4784462981138953e-05 -6.2434443295398604e-05 6.3021721098028584e-05 9.4133066226671541e-05 0 2 0 P 506 22 3.1410186598358023e-02 -1.4480480589819336e-01 6.5194531758202029e-02 1.6188069250076839e-01 0 1 0 0 0 0 P 507 22 1.4089445441950610e-01 -2.8924713815040376e-01 3.7294023994887310e-01 4.9254398462217774e-01 0 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 508 321 -1.0257296027806273e+00 -3.6848502762598798e+00 1.7505002102640654e+00 4.2353435188432540e+00 4.9359999999999998e-01 1 0 0 0 0 P 509 111 -1.4596731812295549e-01 -1.0046418263010555e-01 1.5383081897684797e-01 2.7070838778772827e-01 1.3497999999999999e-01 2 0 0 -231 0 V -102 0 0 0 0 0 0 2 0 P 510 -321 6.2500809318834630e-02 -7.1273415170284204e-01 1.0469390988621148e+00 1.3607419883634428e+00 4.9359999999999998e-01 1 0 0 0 0 P 511 211 -2.2660156941809736e-01 -7.4432455289201060e-01 4.3834454964318059e-01 9.0387667322623122e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 512 -211 2.0360668152390449e-01 -7.7249685061133971e-02 3.2219910915490019e-01 4.1317701466009982e-01 1.3957000000000000e-01 1 0 0 0 0 P 513 111 9.4992355108865181e-02 -3.6967536966829589e-01 1.3263870972843683e-01 4.2602353712787333e-01 1.3497999999999999e-01 2 0 0 -232 0 V -104 0 0 0 0 0 0 2 0 P 514 -211 2.9481347638730043e-01 -1.5034953496218688e+00 1.1685860468671678e+00 1.9319643852894353e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -9.4648411822966391e-02 -9.7690040220823046e-02 2.4528479192540964e-01 3.1328274748036694e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 516 211 -4.8823976241588701e-01 -1.3475917088973037e+00 6.2437563827297571e-01 1.5696197635292004e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 111 2.5820827099171689e-01 -7.6566482209935494e-01 3.6869442953906528e-01 8.9837036559656480e-01 1.3497999999999999e-01 2 0 0 -233 0 V -106 0 0 0 0 0 0 2 0 P 518 311 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -234 0 P 519 111 4.3122583000365111e-01 -9.4305119800959158e-01 7.6444474015925989e-01 1.2953364967014640e+00 1.3497999999999999e-01 2 0 0 -235 0 V -107 0 0 0 0 0 0 2 0 P 520 -311 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -236 0 P 521 -211 3.5535698437635393e-01 -7.0098858679047649e-01 1.5780827514139777e+00 1.7684706784015041e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 522 2212 2.4512438852886342e+00 -5.1337536525883387e-01 9.8873679260435876e-01 2.8513333527963920e+00 9.3827000000000005e-01 1 0 0 0 0 P 523 211 1.5122428787602060e+00 1.2313879456916881e-01 3.0575046664842115e-01 1.5540285775508218e+00 1.3957000000000000e-01 1 0 0 0 0 V -109 0 1.0971462260821673e-04 -1.1908893670300572e-04 3.1457163944474797e-05 1.6736245100994987e-04 0 2 0 P 524 22 3.1853088413534097e-01 -3.3413156370193076e-01 2.2283367807392554e-02 4.6217136918115015e-01 0 1 0 0 0 0 P 525 22 2.0467586387789666e-01 -2.3377938395025166e-01 1.2772945689948761e-01 3.3594616201730970e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 526 -2212 7.5978565726629566e-01 -1.9014739034781902e-01 2.7137807095332911e-01 1.2519692190058080e+00 9.3827000000000005e-01 1 0 0 0 0 P 527 111 7.3191741041476452e-02 -2.8396240332069861e-01 1.0909019449881370e-01 3.4075203358474421e-01 1.3497999999999999e-01 2 0 0 -237 0 V -111 0 0 0 0 0 0 2 0 P 528 321 1.8281708448208533e+00 6.3811732635462859e-01 -3.7858685294090250e-01 2.0338071012922216e+00 4.9359999999999998e-01 1 0 0 0 0 P 529 -211 8.0029074142278345e-01 -3.4481915424770984e-02 7.9347364050571564e-02 8.1696392966896858e-01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 530 211 1.1403325962761759e+00 -1.1350723537513931e-01 -9.5876406440765255e-02 1.1584102869123987e+00 1.3957000000000000e-01 1 0 0 0 0 P 531 111 3.1345191558033864e-01 3.3886775996459373e-01 9.4209984122144680e-02 4.9008018082013888e-01 1.3497999999999999e-01 2 0 0 -238 0 V -113 0 0 0 0 0 0 2 0 P 532 311 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -239 0 P 533 111 3.5757720671230186e-01 1.3540099758327029e-01 -5.6804795938670838e-01 6.9792046357025561e-01 1.3497999999999999e-01 2 0 0 -240 0 V -114 0 0 0 0 0 0 3 0 P 534 211 3.8846428976296371e-01 -5.8515519060278111e-02 -4.8557609063497448e-01 6.3999413676086325e-01 1.3957000000000000e-01 1 0 0 0 0 P 535 -211 3.4136747847378457e-01 6.4763654972160275e-03 -1.9050995828055373e-01 4.1514759757664699e-01 1.3957000000000000e-01 1 0 0 0 0 P 536 111 8.4447206235110672e-01 -6.1541933848405095e-01 -5.2811173030377401e-01 1.1785565859796994e+00 1.3497999999999999e-01 2 0 0 -241 0 V -115 0 8.5814370191757743e-05 -9.2237311704393624e-05 -1.6059079209375197e-05 1.2888850937693450e-04 0 2 0 P 537 22 -8.2210746879714906e-03 -5.9756489793695300e-03 8.5154693932728513e-04 1.0198999065581039e-02 0 1 0 0 0 0 P 538 22 5.3553479733446796e-01 -5.6080588298391720e-01 -9.9531672671741483e-02 7.8179748746735900e-01 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 539 -321 2.1312527234463374e+00 -1.9889389125683865e+00 -1.5254584753989664e+00 3.3269777109702261e+00 4.9359999999999998e-01 1 0 0 0 0 P 540 211 9.7396071565651121e-01 -1.5767665150371877e+00 -1.0026349540173458e+00 2.1117643700238022e+00 1.3957000000000000e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 3 0 P 541 -211 4.9111497523019360e-01 -8.2946656483207570e-01 -4.4635437474071360e-01 1.0714106186798089e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 211 5.3315892504720708e-01 -4.6847413534888277e-01 -2.6511382769233804e-01 7.7038404798000548e-01 1.3957000000000000e-01 1 0 0 0 0 P 543 111 1.4665721666715198e-01 -5.6670707181610314e-01 1.6762758955457706e-03 6.0073925687257679e-01 1.3497999999999999e-01 2 0 0 -242 0 V -118 0 0 0 0 0 0 2 0 P 544 311 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 2 0 0 -243 0 P 545 211 1.3800726882087853e+00 -1.7691735401852144e+00 -8.8733395516209135e-01 2.4169023507198029e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 546 -321 -3.1195537120779965e-01 -1.1031140689059398e+00 -6.2055739697654777e-01 1.3938827947807961e+00 4.9359999999999998e-01 1 0 0 0 0 P 547 211 2.6845240900893597e-01 -1.5631308618466222e+00 -7.2265487212853508e-01 1.7484720862144680e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 548 321 1.3929316808297021e-01 -3.4255715454587804e-02 -1.2981052658220242e+00 1.3961712938858055e+00 4.9359999999999998e-01 1 0 0 0 0 P 549 -211 2.2991256364576590e-01 2.7313887401104586e-01 -2.3878333713551556e-01 4.5162141048865656e-01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 550 -311 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -244 0 P 551 111 3.8999362575834590e-01 -1.9929949933398994e-01 -6.9151628053952960e-02 4.6348340491265927e-01 1.3497999999999999e-01 2 0 0 -245 0 V -122 0 0 0 0 0 0 2 0 P 552 211 -1.5536671083745418e-01 -7.2973955177834704e-01 -2.3183190520181396e-01 7.9365259744778438e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 -3.8059992635465462e-01 -4.7645535078724238e-02 -3.6897353586488912e-01 5.4907874801593359e-01 1.3497999999999999e-01 2 0 0 -246 0 V -123 0 0 0 0 0 0 2 0 P 554 321 -1.5321551811203027e-01 -6.3670986621277445e-02 -1.5968430735118158e+00 1.6796064273961109e+00 4.9359999999999998e-01 1 0 0 0 0 P 555 -211 -1.9718877678862928e-01 -9.9254970269978496e-02 -1.3251067846094938e-01 2.9287169139551761e-01 1.3957000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 3 0 P 556 211 7.3701270062135935e-02 2.3440173600653293e-02 -9.3517261011000462e-03 1.5983916487604236e-01 1.3957000000000000e-01 1 0 0 0 0 P 557 -211 3.2057533662789278e-01 4.5639136669046503e-02 -1.7727187754385837e-01 3.9466008249873386e-01 1.3957000000000000e-01 1 0 0 0 0 P 558 111 4.8436369163677419e-02 9.7593178471862916e-03 7.5917150010530829e-02 1.6255565264955840e-01 1.3497999999999999e-01 2 0 0 -247 0 V -125 0 0 0 0 0 0 2 0 P 559 -321 -3.9684362250671479e-01 2.7377417853337127e-01 -1.7126579727948870e+00 1.8464223388308987e+00 4.9359999999999998e-01 1 0 0 0 0 P 560 211 2.1863396676987515e-01 8.9201719047028172e-02 -4.8141631670275498e-01 5.5407509689041534e-01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 561 311 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -248 0 P 562 111 -8.0485031244081850e-01 6.3442935549394852e-01 -5.0100165855366425e+00 5.1155420455999367e+00 1.3497999999999999e-01 2 0 0 -249 0 V -127 0 0 0 0 0 0 2 0 P 563 211 -2.5648980130092658e-01 2.7079627430371095e-01 -6.8642645852325646e-01 7.9358598035054739e-01 1.3957000000000000e-01 1 0 0 0 0 P 564 111 -7.8739269630811382e-01 3.2441156093686990e-01 -4.2563212397930528e+00 4.3427779376549207e+00 1.3497999999999999e-01 2 0 0 -250 0 V -128 0 0 0 0 0 0 3 0 P 565 -211 1.1064791628146634e-01 3.6783581785418351e-01 -1.1705761568557398e+00 1.2398687326378708e+00 1.3957000000000000e-01 1 0 0 0 0 P 566 211 1.9601539694647892e-02 8.6425514861375141e-01 -3.9289817684673118e+00 4.0253818084887678e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 111 -1.0899451069882157e-01 2.7890383338936536e-01 -2.5204584010436650e+00 2.5417705056580830e+00 1.3497999999999999e-01 2 0 0 -251 0 V -129 0 0 0 0 0 0 2 0 P 568 -211 -3.4479822045339553e-01 2.8801578257251337e-01 -1.8778933266544979e+00 1.9359240778068190e+00 1.3957000000000000e-01 1 0 0 0 0 P 569 111 -4.7739393786749029e-01 8.4826907046167233e-01 -9.4047074134762951e+00 9.4559085508115253e+00 1.3497999999999999e-01 2 0 0 -252 0 V -130 0 0 0 0 0 0 2 0 P 570 211 -1.0146392264150319e+00 5.7709586525715317e-01 -7.2572446439651097e+00 7.3518441227175968e+00 1.3957000000000000e-01 1 0 0 0 0 P 571 111 4.1123239956224314e-02 1.3845664196935642e-01 -1.6856906262300306e+00 1.6972430145178741e+00 1.3497999999999999e-01 2 0 0 -253 0 V -131 0 0 0 0 0 0 2 0 P 572 -211 -2.4719131510665512e-01 3.7533207946098579e-01 -3.3887167587110185e+00 3.4212364390386081e+00 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -3.5458725657354400e+00 3.0192865722450031e+00 -4.4305060227946583e+01 4.4549364586491564e+01 1.3497999999999999e-01 2 0 0 -254 0 V -132 0 0 0 0 0 0 3 0 P 574 111 -3.9553579765962431e-02 4.6132811797115725e-01 -3.9094286650084178e+00 3.9390659051725212e+00 1.3497999999999999e-01 2 0 0 -255 0 P 575 111 -1.4022200828605086e-02 4.6580852717875432e-01 -3.2668051470350230e+00 3.3026367761537201e+00 1.3497999999999999e-01 2 0 0 -256 0 P 576 111 -3.6273630905616033e-01 1.5782213075400859e+00 -1.2883701941418890e+01 1.2985775118998561e+01 1.3497999999999999e-01 2 0 0 -257 0 V -133 0 0 0 0 0 0 2 0 P 577 211 3.8100751365880502e-02 3.3494356918345564e-01 -2.9936548703032515e+00 3.0158063812490310e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 111 -1.0429007873741831e+00 2.2630224863458022e+00 -2.4581745651098544e+01 2.4708082719663107e+01 1.3497999999999999e-01 2 0 0 -258 0 V -134 0 0 0 0 0 0 2 0 P 579 -211 -4.2929060271745229e-01 2.5422565295510141e-01 -7.9782186368012722e+00 7.9950217951988796e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -1.4604690111339875e+00 1.7946603792785125e+00 -1.9484412393192731e+01 1.9621781813021908e+01 1.3497999999999999e-01 2 0 0 -259 0 V -135 0 0 0 0 0 0 2 0 P 581 311 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 2 0 0 -260 0 P 582 211 -2.4445528601288491e-01 2.4975364963508259e-01 -2.2299522763905060e+00 2.2614823042077701e+00 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 1 0 P 583 310 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -261 0 V -137 0 0 0 0 0 0 2 0 P 584 -211 -2.9967223315772812e-01 2.0862329553960912e-01 -5.0554832516896031e+00 5.0705737170246952e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 211 1.4444543333475335e-01 1.3710801400729660e+00 -2.2881325081767912e+01 2.2923246770825354e+01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 8.7103622244021213e-07 -1.7302363505580758e-06 -7.6790479357282175e-06 8.9691461969131791e-06 0 2 0 P 586 22 -3.7330375548358934e-02 -6.4597192447063162e-02 -8.3231111894584861e-02 1.1177554382705249e-01 0 1 0 0 0 0 P 587 22 6.5256316072261553e-02 9.1247836388339276e-03 -1.6296374247390022e-01 1.7578062983411483e-01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 1 0 P 588 130 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 589 -321 1.1804077913916842e+00 2.5432481593847861e-01 -1.2468626407813948e+01 1.2536679349956099e+01 4.9359999999999998e-01 1 0 0 0 0 P 590 111 3.4581707482900445e-02 2.6935194592701807e-02 -3.3993692323832683e+00 3.4023304039546467e+00 1.3497999999999999e-01 2 0 0 -262 0 V -141 0 4.7813783231145052e-05 6.5885652825406035e-06 -3.3326257571074819e-04 3.3676814569143449e-04 0 2 0 P 591 22 5.0031277022003218e-01 1.2474131327401576e-01 -3.7798245607535468e+00 3.8148324961075692e+00 0 1 0 0 0 0 P 592 22 9.6980875871290273e-01 7.7836082030979942e-02 -6.4669380719275891e+00 6.5397152468810686e+00 0 1 0 0 0 0 V -142 0 0 0 0 0 0 3 0 P 593 211 1.4765586212938988e+00 -1.2287157083785445e+00 -1.5048198279817107e+01 1.5170949835383547e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 -211 6.3388671792337425e-01 -6.1184057820052018e-01 -6.0484572541297492e+00 6.1138757105642245e+00 1.3957000000000000e-01 1 0 0 0 0 P 595 111 3.6384909301035945e-01 -3.4839763719044642e-01 -4.3926354391854696e+00 4.4234864957488531e+00 1.3497999999999999e-01 2 0 0 -263 0 V -143 0 0 0 0 0 0 3 0 P 596 211 2.7403696569266053e-02 -5.8737576679686765e-01 -4.9964233153207394e+00 5.0328408463596936e+00 1.3957000000000000e-01 1 0 0 0 0 P 597 -211 6.3313694644344165e-01 -1.2579374520113713e+00 -1.0217288689588599e+01 1.0314830923355927e+01 1.3957000000000000e-01 1 0 0 0 0 P 598 111 4.4287802634414347e-01 -2.2827814798139006e+00 -1.5676551310879637e+01 1.5848650189648389e+01 1.3497999999999999e-01 2 0 0 -264 0 V -144 0 0 0 0 0 0 2 0 P 599 -211 -2.1889466677890226e-01 -9.7573203754683979e-02 -2.9615072609576862e+00 2.9744647328284626e+00 1.3957000000000000e-01 1 0 0 0 0 P 600 111 2.6764634782375629e-01 -1.3936096329764053e-01 -1.0851536504994650e+00 1.1343870993567216e+00 1.3497999999999999e-01 2 0 0 -265 0 V -145 0 0 0 0 0 0 2 0 P 601 211 8.6337712446234738e-01 -2.6367366432140288e-01 -8.2966721302920419e+01 8.2971749815233323e+01 1.3957000000000000e-01 1 0 0 0 0 P 602 111 8.4478402969403887e-01 -3.1565269462054341e-01 -4.1807707556468742e+01 4.1817650907338887e+01 1.3497999999999999e-01 2 0 0 -266 0 V -146 0 0 0 0 0 0 2 0 P 603 -211 8.7452626824318952e-02 3.7856557858886258e-01 -1.0165811398854835e+01 1.0174190928089452e+01 1.3957000000000000e-01 1 0 0 0 0 P 604 111 6.0872517961275285e-01 -1.1646131056861458e-01 -3.6384685675471133e+01 3.6390214081321204e+01 1.3497999999999999e-01 2 0 0 -267 0 V -147 0 0 0 0 0 0 3 0 P 605 211 2.0641916258513257e-01 1.2592649415801263e-01 -1.3498926563830947e+01 1.3501813378698953e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -2.8769692802774584e-03 -1.2157472425517003e-01 -4.9109042297012939e+00 4.9143920100789700e+00 1.3957000000000000e-01 1 0 0 0 0 P 607 111 4.3534893166397720e-01 -3.6493771491872629e-01 -2.6328356190853949e+01 2.6334829931878211e+01 1.3497999999999999e-01 2 0 0 -268 0 V -148 0 0 0 0 0 0 2 0 P 608 22 -8.2706559572206014e-03 -5.9321617721436126e-02 -8.1286488242441344e+00 8.1288694888012927e+00 0 1 0 0 0 0 P 609 22 1.5774996054796075e+00 -4.2608624103974854e-02 -8.3746058014914937e+01 8.3760924980193678e+01 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 610 211 -8.6387955802294428e-02 -4.7459259601925996e-01 -2.4954090132624273e+01 2.4959142516183125e+01 1.3957000000000000e-01 1 0 0 0 0 P 611 111 1.1395288255181901e+00 -2.6496118762522336e+00 -1.7851590397334641e+02 1.7853925383528519e+02 1.3497999999999999e-01 2 0 0 -269 0 V -150 0 0 0 0 0 0 2 0 P 612 321 7.7811070249969116e-01 2.2597030472746757e-01 -1.2516984843507953e+02 1.2517344413678464e+02 4.9359999999999998e-01 1 0 0 0 0 P 613 -211 -4.1890828255649049e-02 -1.3907730163812634e-01 -2.2030220454967942e+01 2.2031141377983822e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 614 -321 2.4875219142127142e-01 -3.9989688858790529e-01 -3.1288850806598013e+01 3.1296287654157773e+01 4.9359999999999998e-01 1 0 0 0 0 P 615 211 1.2380391085146980e-01 -4.5171729348212764e-01 -5.5385778003096625e+01 5.5387934252098397e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 616 -211 -1.7160566534893104e-01 5.1350245553554733e-02 -4.0610989314430611e+01 4.0611624176260122e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.6577598965623711e-01 -7.7092494383720001e-01 -1.0268792822802989e+02 1.0269125466908623e+02 1.3497999999999999e-01 2 0 0 -270 0 V -153 0 0 0 0 0 0 2 0 P 618 3122 2.5665947751140833e-01 -3.1011370428576662e-01 -2.1579684862941454e+02 2.1580010812056105e+02 1.1156800000000000e+00 2 0 0 -271 0 P 619 22 4.8487288333967843e-02 -1.8810934372346415e-02 -3.0021017453384418e+00 3.0025522073306337e+00 0 1 0 0 0 0 V -154 0 -7.7492381941262678e+01 -4.8501399267561105e+01 -4.4607036804293253e+04 4.4607261918887496e+04 0 2 0 P 620 -3122 -6.9235537172918693e-01 -4.1701401614409078e-01 -4.0893541102044969e+02 4.0893773167192211e+02 1.1156800000000000e+00 2 0 0 -272 0 P 621 111 -2.4861739882574477e-01 -1.7192769530285856e-01 -1.3271792259106454e+02 1.3271833545607635e+02 1.3497999999999999e-01 2 0 0 -273 0 V -155 0 0 0 0 0 0 2 0 P 622 -321 -2.3411617728133400e-02 -6.5232230856388274e-01 -1.1568864861813621e+02 1.1569154304679614e+02 4.9359999999999998e-01 1 0 0 0 0 P 623 211 2.2990212814758515e-01 -1.0616184537454590e-01 -1.2579281577871387e+02 1.2579314809101602e+02 1.3957000000000000e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 624 111 -4.3927707335301913e-01 9.8569205808876362e-02 -1.0808464474333476e+02 1.0808566662203083e+02 1.3497999999999999e-01 2 0 0 -274 0 P 625 111 -2.2207926295417768e-01 2.9408095632049314e-02 -5.3039822882697464e+01 5.3040467711582643e+01 1.3497999999999999e-01 2 0 0 -275 0 P 626 111 -6.5765051523946005e-01 -1.3263513475766395e-01 -1.9282176112538815e+02 1.9282297549663477e+02 1.3497999999999999e-01 2 0 0 -276 0 V -157 0 0 0 0 0 0 2 0 P 627 321 -1.2897257610442938e+00 1.6839958820118497e-01 -4.9003144009236280e+01 4.9022887661886635e+01 4.9359999999999998e-01 1 0 0 0 0 P 628 -211 -4.9685779056242585e-01 4.6128615237547776e-01 -1.8384803114078451e+01 1.8397829162886165e+01 1.3957000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 629 211 -4.8378664284063333e-01 -8.0413758485326461e-02 -9.9398903073761019e+01 9.9400210904907951e+01 1.3957000000000000e-01 1 0 0 0 0 P 630 111 -3.0382133837596209e-01 -4.8577218781833292e-01 -3.8713422198637055e+01 3.8717897153053585e+01 1.3497999999999999e-01 2 0 0 -277 0 V -159 0 0 0 0 0 0 2 0 P 631 -211 8.5805581558979674e-02 8.3027654605316289e-02 -1.0962875129040640e+01 1.0964413667364697e+01 1.3957000000000000e-01 1 0 0 0 0 P 632 111 2.3508016431810488e-01 -5.6477935328144557e-01 -1.5705772322460166e+02 1.5705897262651862e+02 1.3497999999999999e-01 2 0 0 -278 0 V -160 0 0 0 0 0 0 2 0 P 633 22 -1.1826159119951234e-01 -1.6186743966905534e-01 -3.6712014271588117e+01 3.6712561593401077e+01 0 1 0 0 0 0 P 634 113 -9.7987313018542840e-02 5.9280147811696236e-02 -2.1029115366305308e+02 2.1029258292998162e+02 7.6681860694569770e-01 2 0 0 -279 0 V -161 0 0 0 0 0 0 2 0 P 635 2212 -3.5302386687277360e-01 7.8037839027768764e-04 -4.5012253740932857e+02 4.5012365374512910e+02 9.3827000000000005e-01 1 0 0 0 0 P 636 211 7.1116383555410306e-02 4.7358052753954001e-02 -7.4121621085245621e+01 7.4121801734812138e+01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 0 0 0 0 0 3 0 P 637 211 -2.4548359173950322e-02 -2.0581985447976094e-02 -5.3648734582717566e+02 5.3648736493855336e+02 1.3957000000000000e-01 1 0 0 0 0 P 638 -211 6.1716837644396998e-02 1.5323336215082284e-01 -1.4280631838436983e+02 1.4280648213479046e+02 1.3957000000000000e-01 1 0 0 0 0 P 639 111 1.4321615816800487e-01 -2.1942438752060736e-01 -5.6564192842903651e+02 5.6564200522454962e+02 1.3497999999999999e-01 2 0 0 -280 0 V -163 0 0 0 0 0 0 2 0 P 640 -211 9.7855876042737558e-02 -1.6373976034273754e-01 3.3446785750497643e+00 3.3530196893084465e+00 1.3957000000000000e-01 1 0 0 0 0 P 641 111 -3.8265591769580620e-01 2.2331657723614864e-01 1.8929574380471039e+00 1.9487953478171953e+00 1.3497999999999999e-01 2 0 0 -281 0 V -164 0 2.8431227347185748e-05 -3.1409658029638097e-04 1.8469594312437588e-03 1.8746173768069280e-03 0 2 0 P 642 22 8.0474890970902282e-02 -3.9610817574688773e-01 2.6384796414490626e+00 2.6692607053848221e+00 0 1 0 0 0 0 P 643 22 -1.5291048641413833e-02 -3.2401627460672716e-01 1.5960161432386062e+00 1.6286460302523722e+00 0 1 0 0 0 0 V -165 0 4.9518262439976248e-05 3.9693163065173995e-05 3.1674847022588156e-04 3.2743744162256743e-04 0 2 0 P 644 22 -2.0840241077519799e-03 8.0365993919266188e-02 2.8112048781632437e-01 2.9238974811918661e-01 0 1 0 0 0 0 P 645 22 1.2710926083162161e-01 1.9852528783504918e-02 5.1861582199296241e-01 5.3433440644384600e-01 0 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 646 211 -5.9255362752556828e-01 -5.9212017658873661e-01 7.8082688359773718e+00 7.8543152537196139e+00 1.3957000000000000e-01 1 0 0 0 0 P 647 111 1.3041068527323001e-02 -2.3549596778567120e-02 5.9138729249002173e+00 5.9154743871683380e+00 1.3497999999999999e-01 2 0 0 -282 0 V -167 0 -1.8899636156857891e-05 1.9696489777446890e-05 4.1991135470968582e-05 5.7186094349548713e-05 0 2 0 P 648 22 -1.8243290188374818e-02 7.3279362659785088e-02 1.8431000302853914e-01 1.9918047054142049e-01 0 1 0 0 0 0 P 649 22 -7.4181671525966317e-02 2.3042455309545299e-02 2.1039404549221000e-02 8.0476901536183282e-02 0 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 650 -211 -8.0533756546595370e-01 2.7160722614549743e-01 3.7685258388601572e+00 3.8656960385811159e+00 1.3957000000000000e-01 1 0 0 0 0 P 651 111 -3.0142247926803184e-01 -4.3379255585563814e-01 2.2704014594553108e+00 2.3349462263659646e+00 1.3497999999999999e-01 2 0 0 -283 0 V -169 0 -7.6711134932358558e-05 -3.8263683323609167e-04 2.5421067451362371e-03 2.5720293279743512e-03 0 2 0 P 652 22 -2.4796545140232665e-02 -1.1981409363355952e-01 6.0650430944957090e-01 6.1872268672243125e-01 0 1 0 0 0 0 P 653 22 -3.5775473147815867e-01 -1.7883601129501008e+00 1.2070744977887900e+01 1.2207747730957248e+01 0 1 0 0 0 0 V -170 0 0 0 0 0 0 3 0 P 654 211 -3.1317702558067601e-01 2.4649858180520168e-01 1.0350445771567724e+01 1.0359056368957923e+01 1.3957000000000000e-01 1 0 0 0 0 P 655 -211 1.4953891873198336e-01 1.9344874000060928e-02 1.0106431063785744e+01 1.0108519414054614e+01 1.3957000000000000e-01 1 0 0 0 0 P 656 111 -1.0767272719634909e-01 -4.5541563002438383e-02 2.7061516811986510e+00 2.7120368677798039e+00 1.3497999999999999e-01 2 0 0 -284 0 V -171 0 0 0 0 0 0 2 0 P 657 -211 1.4541589324493778e-01 1.4556811293786326e-01 5.6458157753451461e+00 5.6512875888197929e+00 1.3957000000000000e-01 1 0 0 0 0 P 658 211 7.4899253842515445e-02 -2.7060869386465009e-01 6.7041552542861025e+00 6.7114839210038530e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 659 -211 1.7028538573734212e-01 -7.3687049697008650e-02 1.4660710025635930e+00 1.4843418957054952e+00 1.3957000000000000e-01 1 0 0 0 0 P 660 111 -3.0616523875700569e-01 5.9880161670113530e-01 1.3235086424389289e+01 1.3252849987494791e+01 1.3497999999999999e-01 2 0 0 -285 0 V -173 0 0 0 0 0 0 2 0 P 661 -311 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 2 0 0 -286 0 P 662 111 -5.5261957942046398e-03 3.9843570042760463e-04 3.6538160709534502e+01 3.6538410451657057e+01 1.3497999999999999e-01 2 0 0 -287 0 V -174 0 0 0 0 0 0 2 0 P 663 311 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -288 0 P 664 111 -6.2777541923746638e-01 1.9448482545552981e-02 3.2186440271673021e+01 3.2192850715381624e+01 1.3497999999999999e-01 2 0 0 -289 0 V -175 0 0 0 0 0 0 2 0 P 665 -321 -6.4351916287137684e-02 -3.5002433531645633e-01 1.5786338280768058e+02 1.5786455565024323e+02 4.9359999999999998e-01 1 0 0 0 0 P 666 211 2.7134098338430873e-01 2.5570369686896743e-01 5.8944985485377110e+01 5.8946329860018210e+01 1.3957000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 667 -211 -4.5421763141989729e-01 6.2425330852400984e-01 5.1503199604186612e+01 5.1509174475072726e+01 1.3957000000000000e-01 1 0 0 0 0 P 668 111 -4.5640839231592317e-02 7.9124553132245534e-02 4.0201133532702542e+01 4.0201463912346462e+01 1.3497999999999999e-01 2 0 0 -290 0 V -177 0 0 0 0 0 0 3 0 P 669 -211 1.0370774191255924e-01 -3.1397961181753531e-01 8.8675221091625804e+00 8.8747826245918198e+00 1.3957000000000000e-01 1 0 0 0 0 P 670 211 -3.4119362058425258e-02 -1.5865509427344407e-01 2.7056259978793161e+01 2.7057106633835605e+01 1.3957000000000000e-01 1 0 0 0 0 P 671 111 9.5737143924794599e-02 -1.7630667385799484e-01 1.5386890389690647e+01 1.5388790241884777e+01 1.3497999999999999e-01 2 0 0 -291 0 V -178 0 0 0 0 0 0 2 0 P 672 22 -3.5658524969334016e-01 -3.5750914631672842e-01 3.7303429147365428e+01 3.7306846449177542e+01 0 1 0 0 0 0 P 673 111 -1.4404126623124075e-01 3.3092504281562679e-01 6.0468680992970157e+01 6.0469908714172291e+01 1.3497999999999999e-01 2 0 0 -292 0 V -179 0 0 0 0 0 0 3 0 P 674 211 -6.4088371711647524e-02 -1.6853907306660940e-01 1.3645855447586628e+01 1.3647760381098008e+01 1.3957000000000000e-01 1 0 0 0 0 P 675 -211 1.0120490930013099e-01 -1.7321198751651401e-01 6.1470833901023184e+01 6.1471319695434936e+01 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -2.5654517994311077e-01 -3.9069583680739609e-02 2.9361462051397748e+01 2.9362919052059368e+01 1.3497999999999999e-01 2 0 0 -293 0 V -180 0 2.7874310402828541e-06 7.2190797405105633e-06 7.1285518893231389e-04 7.1293523991798461e-04 0 2 0 P 677 22 -2.0472067600532211e-02 1.1710557708470458e-01 9.2661389801761018e+00 9.2669015545475180e+00 0 1 0 0 0 0 P 678 22 7.1554256807597943e-02 1.5190573699436449e-02 3.7975756416514295e+00 3.7982800738309006e+00 0 1 0 0 0 0 V -181 0 6.8699890293909516e-06 6.7107052061940235e-06 3.4279486783242566e-02 3.4279490601586637e-02 0 2 0 P 679 22 4.7209951929092032e-02 1.0543355578252174e-01 3.0210765287072019e+02 3.0210767495724076e+02 0 1 0 0 0 0 P 680 22 2.4005578294380023e-02 -3.5869190048026550e-02 5.3239614295665028e+01 5.3239631790779363e+01 0 1 0 0 0 0 V -182 0 2.2064386563502137e-04 -2.5306124259287359e-04 -1.3541036264325438e-03 1.3952580004988353e-03 0 2 0 P 681 22 7.5279082376440476e-01 -8.0679834100198666e-01 -4.6814294843943811e+00 4.8097192854411448e+00 0 1 0 0 0 0 P 682 22 6.9264037654619304e-01 -8.5099810205965243e-01 -4.1892618646093469e+00 4.3305731065531452e+00 0 1 0 0 0 0 V -183 0 1.8858877061785453e-05 -6.7115273977681676e-06 -1.1940598237464134e-04 1.2108143212847695e-04 0 2 0 P 683 22 1.3501778070345933e+00 -4.9390965344496285e-01 -8.8793476233960753e+00 8.9949842175228074e+00 0 1 0 0 0 0 P 684 22 3.5724615226029388e-01 -1.1373112203016625e-01 -1.9312979161906665e+00 1.9673513215756446e+00 0 1 0 0 0 0 V -184 0 -3.0922713758710697e-06 -1.6589517211335248e-06 -8.6557639952703560e-05 8.6998375960077397e-05 0 2 0 P 685 22 -1.2378422738514841e-04 -2.0255687437457568e-02 -1.2720232401748697e+00 1.2721845116731587e+00 0 1 0 0 0 0 P 686 22 -5.1978110905350462e-02 -7.6961053059662540e-03 -1.8639244576487590e-01 1.9365716585859055e-01 0 1 0 0 0 0 V -185 0 2.4651623082129744e-05 -5.6707935837792154e-06 -2.1251757288745076e-04 2.2359079391547974e-04 0 2 0 P 687 22 6.0640802277366547e-02 4.6535683630569633e-02 -3.2839784071453820e-01 3.3717653912717349e-01 0 1 0 0 0 0 P 688 22 -9.2309824191483363e-03 -5.8361861388681067e-02 -1.1479772910453874e-01 1.2911172103544014e-01 0 1 0 0 0 0 V -186 0 -1.4832730474643106e-05 2.9422192369530004e-06 -5.4954216591198518e-05 6.0118634666164664e-05 0 2 0 P 689 22 -1.2640580876616897e-01 4.7177821781676815e-02 -3.3746011804611964e-01 3.6343294653841440e-01 0 1 0 0 0 0 P 690 22 2.1698527333679749e-02 -2.6408093766570138e-02 -5.0472948785598819e-02 6.0956804902718556e-02 0 1 0 0 0 0 V -187 0 9.7712690300578037e-07 -4.0981640044293525e-05 -1.5586716280811184e-04 1.6179373662674135e-04 0 2 0 P 691 22 7.9394382566176040e-03 -2.9018871046713950e-02 -3.1018489693273164e-02 4.3211992079839966e-02 0 1 0 0 0 0 P 692 22 1.3361038159218500e-03 -3.6000626505709010e-01 -1.4485768647142860e+00 1.4926423647475755e+00 0 1 0 0 0 0 V -188 0 1.9176385299722858e-04 8.8824797196092515e-04 -2.6837460223185948e-03 2.8337582456032834e-03 0 2 0 P 693 22 5.0314286580798862e-01 2.4241644791864827e+00 -7.1865354125248873e+00 7.6010537033385850e+00 0 1 0 0 0 0 P 694 22 8.5250742727512957e-02 3.0126798020398959e-01 -1.0480665825010369e+00 1.0938343779508795e+00 0 1 0 0 0 0 V -189 0 0 0 0 0 0 1 0 P 695 130 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 1 0 0 0 0 V -190 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 4 0 P 696 -211 2.0725484551154222e-01 1.1124373119939290e+00 -3.5934346215628152e+00 3.7699765925600368e+00 1.3957000000000000e-01 1 0 0 0 0 P 697 -211 3.1337716993121384e-01 1.0537898241530332e+00 -3.0351918280270906e+00 3.2311836007792887e+00 1.3957000000000000e-01 1 0 0 0 0 P 698 -3112 3.1991115434626538e+00 1.3444156387045226e+01 -4.2430664477738212e+01 4.4640506339006059e+01 1.1974400000000001e+00 2 0 0 -294 0 P 699 323 2.4735310675572069e+00 1.0812323694586169e+01 -3.4993056160096224e+01 3.6717914387383253e+01 8.1642998283846813e-01 2 0 0 -295 0 V -191 0 0 0 0 0 0 2 0 P 700 22 1.8983806908161149e-02 1.7362657703381851e-01 7.3873501760517088e-02 1.8964141804882165e-01 0 1 0 0 0 0 P 701 22 -1.3704905665261415e+00 1.0199075479696598e+00 9.7094950782817302e-01 1.9649933196055396e+00 0 1 0 0 0 0 V -192 0 -4.6997728532604423e-06 4.5124683058843886e-05 7.7575765897137122e-05 9.0365805440288039e-05 0 2 0 P 702 22 1.3324926704386489e-02 3.4288906286411369e-01 6.7035004936878473e-01 7.5307347038136963e-01 0 1 0 0 0 0 P 703 22 -8.0322698813220392e-02 3.0038739462731900e-01 4.3553392567034310e-01 5.3513934933384222e-01 0 1 0 0 0 0 V -193 0 -9.7600780826877997e+00 1.5361365577876793e+00 8.4454766310167997e+01 8.5246695089912620e+01 0 2 0 P 704 -211 -7.9285124718928887e-02 -8.9100832825820486e-02 1.5225500634850293e+00 1.5335786807758569e+00 1.3957000000000000e-01 1 0 0 0 0 P 705 211 -7.2171465914144683e-01 2.1517001386551807e-01 5.4085675963640245e+00 5.4625317768801551e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 1.2716116432762454e-06 -6.3814690442655613e-05 5.0162287104313008e-03 5.0170010813853404e-03 0 2 0 P 706 22 -5.3124113350063948e-04 2.0691351623261963e-02 3.1445633804797661e+00 3.1446314995724811e+00 0 1 0 0 0 0 P 707 22 3.3624312979863087e-03 -1.6277209214357746e-01 8.0238601416525359e+00 8.0255116742002990e+00 0 1 0 0 0 0 V -195 0 5.6424540710598678e-05 -2.8677941706789788e-04 3.2815180137927033e-03 3.2947076489035468e-03 0 2 0 P 708 22 2.2129278247067530e-01 -8.4449592202847690e-01 9.6857270744122257e+00 9.7249911474457598e+00 0 1 0 0 0 0 P 709 22 -1.1014366713732959e-02 -2.2425042013553978e-01 2.5435689114846194e+00 2.5534589040507631e+00 0 1 0 0 0 0 V -196 0 -1.2570459193487190e-07 -1.5498444312552478e-06 4.0003245939914675e-06 5.4008957487570616e-06 0 2 0 P 710 22 -2.5331579215445051e-02 -9.9973730546892750e-02 1.4086450724835456e-01 1.7458306076860042e-01 0 1 0 0 0 0 P 711 22 2.0156329497947201e-02 3.6166738045179184e-02 2.3828591120559357e-02 4.7771459203683843e-02 0 1 0 0 0 0 V -197 0 9.4412890987401761e-06 5.5321536087690306e-05 5.0391412239911271e-04 5.0787915290754126e-04 0 2 0 P 712 22 5.7975534397695254e-02 2.0617575857106443e-01 1.3467179724438043e+00 1.3636417796893010e+00 0 1 0 0 0 0 P 713 22 -1.4574356259446879e-02 4.8134835831109918e-02 9.6975241246807509e-01 9.7105567078747701e-01 0 1 0 0 0 0 V -198 0 3.4005524300272399e-06 5.5124661814798012e-06 8.6203031103025443e-05 8.6698180947031910e-05 0 2 0 P 714 22 9.9388352207220837e-02 1.2139537353315158e-01 1.5288395993128989e+00 1.5368687002138293e+00 0 1 0 0 0 0 P 715 22 -2.9922363845104029e-02 -8.7875195186287360e-03 2.3210332940235986e-01 2.3418907719411133e-01 0 1 0 0 0 0 V -199 0 -3.1751718579696859e-05 1.4384531578524084e-04 5.5009496005256153e-04 5.7051883808736752e-04 0 2 0 P 716 22 -8.4245225274086843e-02 1.1851795814052958e-01 5.6722523277629699e-01 5.8556658808491291e-01 0 1 0 0 0 0 P 717 22 -4.0119016535579248e-02 4.4489134490558802e-01 1.5873712958664217e+00 1.6490256138703019e+00 0 1 0 0 0 0 V -200 0 -2.1860320961568040e-05 3.4233223209356850e-05 3.2363351406028681e-02 3.2363385742285575e-02 0 2 0 P 718 22 -4.5483352791465939e-02 9.3532564159593795e-02 1.3004722086957409e+02 1.3004726245859899e+02 0 1 0 0 0 0 P 719 22 -7.7817880505842402e-02 9.9556944858894450e-02 5.2495439369174754e+01 5.2495591450811361e+01 0 1 0 0 0 0 V -201 0 2.2199023141811921e-05 -5.3039731245512057e-05 4.4742652750651611e-02 4.4742696926206353e-02 0 2 0 P 720 22 6.6205091243347419e-02 -2.6727801909111137e-01 2.1146345735761838e+02 2.1146363663356138e+02 0 1 0 0 0 0 P 721 22 5.1591468473985748e-02 -1.4171206360855906e-02 2.5958276607196254e+01 2.5958331743746964e+01 0 1 0 0 0 0 V -202 0 1.2999308436397550e+02 2.5108727436240727e+01 1.4229354800096778e+04 1.4230076817044011e+04 0 2 0 P 722 -211 2.6685586729241118e-01 -8.1108204032047090e-02 4.0488586354586793e+01 4.0489787544174661e+01 1.3957000000000000e-01 1 0 0 0 0 P 723 211 9.1045510119082751e-01 3.0851091826085342e-01 8.8382696010616314e+01 8.8388033926362922e+01 1.3957000000000000e-01 1 0 0 0 0 V -203 0 2.7363225273066167e+01 -2.1373490947568285e+01 1.0415390354526505e+03 1.0421995956974124e+03 0 2 0 P 724 -211 7.2489758038794805e-01 -3.7887502919494193e-01 1.9820686504652318e+01 1.9838047184398125e+01 1.3957000000000000e-01 1 0 0 0 0 P 725 211 3.1690428588277286e-01 -4.3487929017670479e-01 1.9833897342831033e+01 1.9841686216506282e+01 1.3957000000000000e-01 1 0 0 0 0 V -204 0 -3.7161138508547294e-06 -1.0797274676986123e-05 5.5601183299288683e-04 5.5615317425263119e-04 0 2 0 P 726 22 -1.0203530149602461e-01 -2.6159332671702568e-01 1.4267316207454684e+01 1.4270078977876521e+01 0 1 0 0 0 0 P 727 22 5.1501261875322099e-03 -1.9909310693595528e-02 2.2882305930157293e-01 2.2974528704670483e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 728 22 1.3398938831493382e-01 -2.8168125127713017e-01 6.4585134479593540e+00 6.4660415588653537e+00 0 1 0 0 0 0 P 729 -11 2.8592288824210077e-01 -7.2276444124703509e-01 3.2320127085609279e+01 3.2329471932365159e+01 5.1000000000000004e-04 1 0 0 0 0 P 730 11 4.5889587728233433e-01 -1.0410527579863120e+00 4.6859438540833928e+01 4.6873247774113004e+01 5.1000000000000004e-04 1 0 0 0 0 V -206 0 -4.1784848742943209e-06 -4.0948177251253058e-05 1.6365147697675645e-03 1.6372210840774910e-03 0 2 0 P 731 22 -2.4716554148417149e-03 1.8669719255098305e-02 5.2483838463482613e-01 5.2517615852554422e-01 0 1 0 0 0 0 P 732 22 -2.0214880542658818e-02 -2.4099248062719644e-01 8.3604040623855642e+00 8.3639011294650789e+00 0 1 0 0 0 0 V -207 0 -6.6357726067545197e-04 -8.0312941323564240e-04 3.2528107603266763e-02 3.2544841843021095e-02 0 2 0 P 733 22 -1.6978077908428943e-01 -2.2914579108914412e-01 7.6881637487780461e+00 7.6934514448682423e+00 0 1 0 0 0 0 P 734 22 -1.3241464960419060e+00 -1.5789585653915703e+00 6.5543138823729876e+01 6.5575525319748152e+01 0 1 0 0 0 0 V -208 0 -1.9185409250505920e+01 -1.1908548988451217e+01 5.5576966908853410e+02 5.5663194824553909e+02 0 2 0 P 735 211 -3.1372636994174885e-01 4.4975243109516228e-02 6.7182563856611566e+00 6.7271759049445476e+00 1.3957000000000000e-01 1 0 0 0 0 P 736 -211 -1.3671763452495014e-01 -3.2456972158562020e-01 6.3303636378481105e+00 6.3416891115892637e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 -1.4539267113275475e-04 -5.4716777529803165e-05 2.2253265940689157e-03 2.2313261033700717e-03 0 2 0 P 737 22 -3.8468416547776196e-01 -1.4929627784085295e-01 5.3644270119134116e+00 5.3802740127146613e+00 0 1 0 0 0 0 P 738 22 1.5715391531603848e-04 4.5841765916009442e-03 5.2100158844869027e-01 5.2102177933214522e-01 0 1 0 0 0 0 V -210 0 -2.8363000894961221e-06 -5.4039140357384783e-06 9.9244074737718947e-04 9.9376460557048423e-04 0 2 0 P 739 22 -4.3026960238468220e-02 4.7754327164595239e-02 1.3072049332033679e+00 1.3087843720267780e+00 0 1 0 0 0 0 P 740 22 3.5507498842641323e-02 -6.2080922269460000e-02 1.3239058985401544e+00 1.3258362084259505e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 741 130 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 1 0 0 0 0 V -212 0 -8.8538078053875373e-05 1.5026095136142807e-05 6.4146389517578928e-04 6.4777119277904729e-04 0 2 0 P 742 22 -7.7983274945426995e-01 1.9647554485541990e-01 5.8880896098635800e+00 5.9427553382779514e+00 0 1 0 0 0 0 P 743 22 -6.8222286686259725e-01 5.1654833259870067e-02 4.7045944783947178e+00 4.7540830312491806e+00 0 1 0 0 0 0 V -213 0 -6.3534965157973911e-02 8.6485374397461928e-02 6.9236259580253534e-01 7.0234914930299941e-01 0 2 0 P 744 111 -1.6505271178654668e-01 2.4278520744795476e-01 1.0958430706822513e+00 1.1424879389236215e+00 1.3497999999999999e-01 2 0 0 -296 0 P 745 111 -4.7877543116970306e-01 6.3360966980973132e-01 5.9201759544256864e+00 5.9747292875015034e+00 1.3497999999999999e-01 2 0 0 -297 0 V -214 0 0 0 0 0 0 3 0 P 746 111 -9.8576060081403155e-02 -3.4742542340549541e-02 6.5130757674160544e-01 6.7330932251861741e-01 1.3497999999999999e-01 2 0 0 -298 0 P 747 111 -7.8036095414182050e-03 5.8506008690904859e-02 1.2294543013758501e+00 1.2382492999983463e+00 1.3497999999999999e-01 2 0 0 -299 0 P 748 111 -8.8432784981368667e-02 1.7911957907012327e-01 2.6245503790561009e+00 2.6356002112743395e+00 1.3497999999999999e-01 2 0 0 -300 0 V -215 0 1.2483117079168445e-04 1.0027314836518818e-04 1.5020022083302700e-03 1.5111261978453612e-03 0 2 0 P 749 22 7.9080599247424721e-02 1.1552153501489100e-01 1.7374338802173952e+00 1.7430649598786627e+00 0 1 0 0 0 0 P 750 22 3.1222050695436765e-01 1.9879894783239740e-01 2.9708062324862601e+00 2.9937755990724022e+00 0 1 0 0 0 0 V -216 0 1.2803321640575294e-04 9.1321015503690144e-05 8.0886304851986559e-04 8.2597023571746430e-04 0 2 0 P 751 22 1.7736451536358298e-02 -9.7427532151740594e-04 3.2879122276151196e-01 3.2927070791449675e-01 0 1 0 0 0 0 P 752 22 2.8609332000911708e-01 2.1768400156830933e-01 1.5906846924926556e+00 1.6308014910537347e+00 0 1 0 0 0 0 V -217 0 6.2931424959365278e-04 3.0047531022833670e-04 2.9604963189529009e-03 3.0428248419687057e-03 0 2 0 P 753 22 5.8170899209270899e-01 2.3538083525002693e-01 2.4177051293440934e+00 2.4978165628286746e+00 0 1 0 0 0 0 P 754 22 3.7262331905745372e-01 2.2027911117407961e-01 2.0717805227639920e+00 2.1165173184335808e+00 0 1 0 0 0 0 V -218 0 0 0 0 0 0 3 0 P 755 22 2.7296384981771588e-01 4.1193242995714828e-02 1.5089012072781871e+00 1.5339455661467860e+00 0 1 0 0 0 0 P 756 -211 1.4881621464025929e-01 -2.0539802718801009e-01 1.2405600104643622e+00 1.2738930644979274e+00 1.3957000000000000e-01 1 0 0 0 0 P 757 211 3.2312072474001546e-01 1.2181065764232569e-02 2.4791994335439189e+00 2.5040896544061981e+00 1.3957000000000000e-01 1 0 0 0 0 V -219 0 -2.4671788581451044e-06 6.4065414239974683e-05 1.3798454148966445e-04 1.5237149485754223e-04 0 2 0 P 758 22 -3.0908596580837319e-02 3.0216712382390964e-01 7.9697772075333473e-01 8.5289729712304263e-01 0 1 0 0 0 0 P 759 22 -9.8144108820454826e-03 7.5529019573525691e-01 1.4805813197252715e+00 1.6621313566485028e+00 0 1 0 0 0 0 V -220 0 4.0567384792548925e-06 3.4942781932908585e-05 9.7011329031475023e-05 1.0324495728616244e-04 0 2 0 P 760 22 1.8068605299296200e-01 1.0776192675902039e+00 2.9492644755356836e+00 3.1451663997767412e+00 0 1 0 0 0 0 P 761 22 -1.4586120029730540e-02 3.5308516807530621e-01 1.0227872924554335e+00 1.0821163229619100e+00 0 1 0 0 0 0 V -221 0 2.0675182460147988e-05 6.3457211929768438e-05 1.0272057962666369e-04 1.2263781362242262e-04 0 2 0 P 762 22 5.9120950754609006e-02 9.1366976056781901e-02 2.0661266069486495e-01 2.3352088277347030e-01 0 1 0 0 0 0 P 763 22 4.1784130995900476e-01 1.3725473240440851e+00 2.1630805681307250e+00 2.5956492562119360e+00 0 1 0 0 0 0 V -222 0 1.5377275143954877e-06 9.6507638240328226e-06 4.8533474374632963e-06 1.1100377598591108e-05 0 2 0 P 764 22 7.7472181555053917e-03 2.5065186328143901e-01 1.8907486681031971e-01 3.1406318029171515e-01 0 1 0 0 0 0 P 765 22 9.3999657982991286e-02 3.8791060129914118e-01 1.3205676148781625e-01 4.2041593518304071e-01 0 1 0 0 0 0 V -223 0 5.4954268885320472e-05 1.8159203576425541e-04 1.7496045487644607e-04 2.5874819032116849e-04 0 2 0 P 766 22 2.2627081669604437e-01 8.2327951744218397e-01 7.0174352480374225e-01 1.1051839760565256e+00 0 1 0 0 0 0 P 767 22 1.7376735730201609e-01 4.9861499363424333e-01 5.7187656532431863e-01 7.7836675950848699e-01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 768 130 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 1 0 0 0 0 V -225 0 -1.8082820781383619e-04 7.7006017492616700e-07 -6.3372791706959298e-05 2.0373786720105999e-04 0 2 0 P 769 22 -2.1264881636648886e-02 3.5330874902066163e-02 -3.0983967508055987e-02 5.1579764975292451e-02 0 1 0 0 0 0 P 770 22 -3.3127307314119059e-01 -3.3829585681726032e-02 -9.2565973328243095e-02 3.4562226385753986e-01 0 1 0 0 0 0 V -226 0 -1.2297308265662378e-06 9.4699758739430153e-06 1.6518912502826024e-06 1.0564735430515539e-05 0 2 0 P 771 22 -7.7408455670575693e-02 1.9416267633283169e-01 -5.3166459872710410e-03 2.0909203862076006e-01 0 1 0 0 0 0 P 772 22 3.7945605142379144e-02 1.0973492007251560e-01 5.8326895133226531e-02 1.2993709373702780e-01 0 1 0 0 0 0 V -227 0 -2.3608690580570848e-04 2.4840155444158006e-05 2.3489257883266889e-04 3.3463000834060537e-04 0 2 0 P 773 22 -2.5052439834052270e-01 3.2445645815808749e-02 1.8343834876288742e-01 3.1219356478495913e-01 0 1 0 0 0 0 P 774 22 -1.2539450945612740e+00 1.2584884297481261e-01 1.3134202667403698e+00 1.8202442222231403e+00 0 1 0 0 0 0 V -228 0 -2.6089566168031577e-04 -3.7706303822482873e-05 6.3689652421221289e-05 2.7700979566584223e-04 0 2 0 P 775 22 -1.4059160255266409e-01 3.4741577955301153e-02 2.1745791104954771e-02 1.4644403496875816e-01 0 1 0 0 0 0 P 776 22 -4.8293990691789540e-01 -1.2485832572934877e-01 1.3047025133932491e-01 5.1559969131327865e-01 0 1 0 0 0 0 V -229 0 -2.6501319287119539e-05 2.5691032884143488e-06 7.3250833332978362e-06 2.9366429990093739e-05 0 2 0 P 777 22 -3.0331334702049934e-01 -2.0932356712419369e-02 9.5306405529795538e-02 3.1862275652144439e-01 0 1 0 0 0 0 P 778 22 -5.4741507803314937e-02 5.5643077903106422e-02 3.6615598405568602e-03 7.8142125742633448e-02 0 1 0 0 0 0 V -230 0 -2.8564513768493680e-05 1.6266382842630464e-05 -3.6679709315757982e-06 4.6405721053801357e-05 0 2 0 P 779 22 -2.6786843097393261e-02 -3.7865117055441037e-02 -2.4592819968008901e-02 5.2498655665888391e-02 0 1 0 0 0 0 P 780 22 -9.1665504546179458e-02 1.0531913538723349e-01 9.3823468804970205e-03 1.3993824865063176e-01 0 1 0 0 0 0 V -231 0 -5.4623174923645008e-05 -3.7595214407808302e-05 5.7565815702264965e-05 1.0130316710327741e-04 0 2 0 P 781 22 -7.1958126703669398e-02 2.5472642242451462e-02 6.0038356493111136e-02 9.7115558752998862e-02 0 1 0 0 0 0 P 782 22 -7.4009191419286108e-02 -1.2593682487255700e-01 9.3792462483736821e-02 1.7359282903472953e-01 0 1 0 0 0 0 V -232 0 6.6156749195451250e-05 -2.5745777843756999e-04 9.2375284759031441e-05 2.9670105836229993e-04 0 2 0 P 783 22 4.0549566629202595e-02 -1.4443016568080131e-02 2.9336346243940083e-02 5.2091163284633139e-02 0 1 0 0 0 0 P 784 22 5.4442788479662593e-02 -3.5523235310021578e-01 1.0330236348449674e-01 3.7393237384324013e-01 0 1 0 0 0 0 V -233 0 1.0181494648366103e-04 -3.0191179619094551e-04 1.4538110444009777e-04 3.5423935238176570e-04 0 3 0 P 785 22 1.1764545742433479e-03 -1.1680143638895212e-01 2.1305382893816848e-02 1.1873448921075895e-01 0 1 0 0 0 0 P 786 -11 1.8768868087602619e-01 -4.6968018883035584e-01 2.4818429153344063e-01 5.6340236365554708e-01 5.1000000000000004e-04 1 0 0 0 0 P 787 11 6.9343135541447359e-02 -1.7918319688004694e-01 9.9204755111807819e-02 2.1623351273025873e-01 5.1000000000000004e-04 1 0 0 0 0 V -234 0 0 0 0 0 0 1 0 P 788 310 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -301 0 V -235 0 1.1400149726289859e-04 -2.4931078123903997e-04 2.0209328590582162e-04 3.4244307694182959e-04 0 2 0 P 789 22 1.6471041977504419e-01 -2.5778262260651164e-01 1.7103424549907614e-01 3.5047698360063639e-01 0 1 0 0 0 0 P 790 22 2.6651541022860692e-01 -6.8526857540308006e-01 5.9341049466018381e-01 9.4485951310082783e-01 0 1 0 0 0 0 V -236 0 0 0 0 0 0 1 0 P 791 310 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -302 0 V -237 0 9.6400603553581464e-06 -3.7400595582401066e-05 1.4368233958943263e-05 4.4880339273613988e-05 0 2 0 P 792 22 9.9977700365546998e-02 -2.7020529430595508e-01 8.0295871654573484e-02 2.9908839604056625e-01 0 1 0 0 0 0 P 793 22 -2.6785959324070546e-02 -1.3757109014743554e-02 2.8794322844240220e-02 4.1663637544177935e-02 0 1 0 0 0 0 V -238 0 4.9214316492429608e-05 5.3204795884247146e-05 1.4791678547409143e-05 7.6946287218869109e-05 0 2 0 P 794 22 2.4581610879340962e-01 2.8121587286393135e-01 1.2824843499334984e-01 3.9491212639168188e-01 0 1 0 0 0 0 P 795 22 6.7635806786929029e-02 5.7651887100662380e-02 -3.4038450871205155e-02 9.5168054428457063e-02 0 1 0 0 0 0 V -239 0 0 0 0 0 0 1 0 P 796 310 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -303 0 V -240 0 1.1279258363679956e-05 4.2710296008058427e-06 -1.7918255349085802e-05 2.2014896582157827e-05 0 2 0 P 797 22 1.7312205521361410e-01 5.7123939550538558e-02 -1.5682251056273419e-01 2.4047388691988597e-01 0 1 0 0 0 0 P 798 22 1.8445515149868780e-01 7.8277058032731717e-02 -4.1122544882397422e-01 4.5744657665036964e-01 0 1 0 0 0 0 V -241 0 6.5399807658158475e-04 -4.7660909295107020e-04 -4.0899405822526817e-04 9.1272852559190693e-04 0 2 0 P 799 22 2.5469071716046998e-01 -1.1258865883322625e-01 -1.3219763816046462e-01 3.0825279080777884e-01 0 1 0 0 0 0 P 800 22 5.8978134519063674e-01 -5.0283067965082473e-01 -3.9591409214330936e-01 8.7030379517192058e-01 0 1 0 0 0 0 V -242 0 3.1857498697690236e-05 -1.2310249855162448e-04 3.6412771476850070e-07 1.3049511321972345e-04 0 2 0 P 801 22 9.9050131199567043e-02 -2.2979514999698891e-01 5.5326538858207985e-02 2.5627673588294908e-01 0 1 0 0 0 0 P 802 22 4.7607085467584936e-02 -3.3691192181911422e-01 -5.3650262962662211e-02 3.4446252098962760e-01 0 1 0 0 0 0 V -243 0 0 0 0 0 0 1 0 P 803 130 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 1 0 0 0 0 V -244 0 0 0 0 0 0 1 0 P 804 310 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -304 0 V -245 0 6.4965936568868685e-06 -3.3199718602483327e-06 -1.1519419767570312e-06 7.7208014427745386e-06 0 2 0 P 805 22 9.7374705017344854e-02 -2.1443819351663635e-02 -6.8644774646092407e-02 1.2105278043818127e-01 0 1 0 0 0 0 P 806 22 2.9261892074100104e-01 -1.7785567998232629e-01 -5.0685340786055071e-04 3.4243062447447803e-01 0 1 0 0 0 0 V -246 0 -2.2469514871277152e-04 -2.8128540886888134e-05 -2.1783126525091215e-04 3.2416015452797986e-04 0 2 0 P 807 22 7.5040267329632955e-03 -4.9708818776737530e-03 -3.2283997862810970e-02 3.3515318913249173e-02 0 1 0 0 0 0 P 808 22 -3.8810395308761791e-01 -4.2674653201050482e-02 -3.3668953800207813e-01 5.1556342910268438e-01 0 1 0 0 0 0 V -247 0 4.4830817241213456e-06 9.0328445827070299e-07 7.0265957922959573e-06 1.5045518236167562e-05 0 2 0 P 809 22 6.7417540520481947e-02 4.7308195042312748e-02 8.6223522757306686e-02 1.1923793844524530e-01 0 1 0 0 0 0 P 810 22 -1.8981171356804521e-02 -3.7548877195126451e-02 -1.0306372746775861e-02 4.3317714204313074e-02 0 1 0 0 0 0 V -248 0 0 0 0 0 0 1 0 P 811 310 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -305 0 V -249 0 -3.4082685073129327e-04 2.6865934684020671e-04 -2.1215723576991949e-03 2.1662588163728230e-03 0 2 0 P 812 22 -2.4417377576979460e-01 2.5875852985578829e-01 -1.9194596956287622e+00 1.9521532554310552e+00 0 1 0 0 0 0 P 813 22 -5.6067653667102391e-01 3.7567082563816023e-01 -3.0905568899078801e+00 3.1633887901688817e+00 0 1 0 0 0 0 V -250 0 -3.5066053650164268e-04 1.4447471069879404e-04 -1.8955267129949741e-03 1.9340296762540333e-03 0 2 0 P 814 22 -4.6809727571721355e-01 2.0409707477442379e-01 -2.8705134147554303e+00 2.9155819212905398e+00 0 1 0 0 0 0 P 815 22 -3.1929542059090027e-01 1.2031448616244612e-01 -1.3858078250376222e+00 1.4271960163643809e+00 0 1 0 0 0 0 V -251 0 -3.0610493066481829e-05 7.8328567222722323e-05 -7.0785651419358266e-04 7.1384189846980962e-04 0 2 0 P 816 22 -5.1128943322413717e-02 6.1370396501252297e-02 -3.1959967490815711e-01 3.2943048828757066e-01 0 1 0 0 0 0 P 817 22 -5.7865567376407863e-02 2.1753343688811308e-01 -2.2008587261355079e+00 2.2123400173705123e+00 0 1 0 0 0 0 V -252 0 -3.1595202136812678e-05 5.6140706074658872e-05 -6.2242858192481298e-04 6.2581720954536378e-04 0 2 0 P 818 22 -1.5560660365060733e-01 3.1238322669717611e-01 -3.9926092799943222e+00 4.0078330252292442e+00 0 1 0 0 0 0 P 819 22 -3.2178733421688299e-01 5.3588584376449622e-01 -5.4120981334819724e+00 5.4480755255822810e+00 0 1 0 0 0 0 V -253 0 8.2670086277064431e-06 2.7833951190187880e-05 -3.3887453823001315e-04 3.4119691588673190e-04 0 2 0 P 820 22 -9.1812336919902763e-03 1.4428471142650589e-02 -9.0507229751793461e-01 9.0523385904749176e-01 0 1 0 0 0 0 P 821 22 5.0304473648214588e-02 1.2402817082670582e-01 -7.8061832871209613e-01 7.9200915547038275e-01 0 1 0 0 0 0 V -254 0 -2.9932024793535637e-03 2.5486917215391401e-03 -3.7399543740989902e-02 3.7605770106477469e-02 0 2 0 P 822 22 -2.8581195043282608e+00 2.4839794409922482e+00 -3.6355592283186461e+01 3.6552265199650492e+01 0 1 0 0 0 0 P 823 22 -6.8775306140717929e-01 5.3530713125275498e-01 -7.9494679447601255e+00 7.9970993868410662e+00 0 1 0 0 0 0 V -255 0 -6.7191018409440153e-06 7.8367384825347102e-05 -6.6410801488824998e-04 6.6914259421394960e-04 0 2 0 P 824 22 -8.7737849848401814e-02 3.4919304490414788e-01 -2.9680208188315538e+00 2.9897794724566187e+00 0 1 0 0 0 0 P 825 22 4.8184270082439383e-02 1.1213507306700937e-01 -9.4140784617686379e-01 9.4928643271590196e-01 0 1 0 0 0 0 V -256 0 -1.0166947831838920e-05 3.3773949277570250e-04 -2.3686322791022234e-03 2.3946123879619134e-03 0 2 0 P 826 22 1.4865786985915693e-03 4.6900792525798518e-01 -3.1797381757151806e+00 3.2141414887916078e+00 0 1 0 0 0 0 P 827 22 -1.5508779527196656e-02 -3.1993980792308662e-03 -8.7066971319842257e-02 8.8495287362112221e-02 0 1 0 0 0 0 V -257 0 -8.8938464324596629e-05 3.8696037852455615e-04 -3.1589246427167401e-03 3.1839517255756061e-03 0 2 0 P 828 22 -2.4999787180030134e-01 7.9860978746036337e-01 -6.7874761436946081e+00 6.8388675180731191e+00 0 1 0 0 0 0 P 829 22 -1.1273843725585900e-01 7.7961152007972256e-01 -6.0962257977242826e+00 6.1469076009254415e+00 0 1 0 0 0 0 V -258 0 -1.4802412875733451e-04 3.2120210853710468e-04 -3.4890101986592226e-03 3.5069418511523716e-03 0 2 0 P 830 22 -3.5118457102437489e-01 8.7996114299297690e-01 -8.9161133568262390e+00 8.9663113713431990e+00 0 1 0 0 0 0 P 831 22 -6.9171621634980818e-01 1.3830613433528252e+00 -1.5665632294272305e+01 1.5741771348319908e+01 0 1 0 0 0 0 V -259 0 -1.7868539407029648e-05 2.1957302390465356e-05 -2.3838779735576340e-04 2.4006848408915227e-04 0 2 0 P 832 22 -6.2197838045647003e-01 8.6890930820452361e-01 -8.8741517570603534e+00 8.9382565357555652e+00 0 1 0 0 0 0 P 833 22 -8.3849063067751761e-01 9.2575107107398880e-01 -1.0610260636132377e+01 1.0683525277266343e+01 0 1 0 0 0 0 V -260 0 0 0 0 0 0 1 0 P 834 130 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 1 0 0 0 0 V -261 0 1.8873150902798748e+00 7.7750143658049794e+01 -1.4428808303284700e+03 1.4456868319154903e+03 0 2 0 P 835 -211 -1.8859357892682854e-01 4.3023155444858407e-01 -7.0435719255908014e+00 7.0605985570861192e+00 1.3957000000000000e-01 1 0 0 0 0 P 836 211 2.0930465456036404e-01 4.2298533239426150e-01 -8.7903575337873399e+00 8.8041234876933192e+00 1.3957000000000000e-01 1 0 0 0 0 V -262 0 1.3947021024975306e-05 1.0863134085613558e-05 -1.3709870797775638e-03 1.3721813389732671e-03 0 2 0 P 837 22 3.3616722167114178e-02 -4.8125144015729558e-02 -9.5060532242121420e-01 9.5241618660716609e-01 0 1 0 0 0 0 P 838 22 9.6498531578626781e-04 7.5060338608431365e-02 -2.4487639099620542e+00 2.4499142173474806e+00 0 1 0 0 0 0 V -263 0 1.0780920313932128e-05 -1.0323090633636669e-05 -1.3015465353012292e-04 1.3106877641458204e-04 0 2 0 P 839 22 2.1830435080113278e-03 -1.7139312219983723e-02 -4.3819330445397577e-02 4.7102605267807671e-02 0 1 0 0 0 0 P 840 22 3.6166604950234810e-01 -3.3125832497046265e-01 -4.3488161087400723e+00 4.3763838904810459e+00 0 1 0 0 0 0 V -264 0 4.2854331215892163e-05 -2.2088942735991985e-04 -1.5169145503672566e-03 1.5335674026514853e-03 0 2 0 P 841 22 1.1475161950229236e-01 -3.5679017599192719e-01 -2.6721909446520997e+00 2.6983460876143059e+00 0 1 0 0 0 0 P 842 22 3.2812640684185113e-01 -1.9259913038219734e+00 -1.3004360366227537e+01 1.3150304102034083e+01 0 1 0 0 0 0 V -265 0 1.6814293329160212e-05 -8.7550461068270593e-06 -6.8172392169991289e-05 7.1265375345077396e-05 0 2 0 P 843 22 1.0968956376357341e-02 -1.6074597892518031e-02 -2.7427689497955537e-01 2.7496640853205806e-01 0 1 0 0 0 0 P 844 22 2.5667739144739893e-01 -1.2328636540512249e-01 -8.1087675551990968e-01 8.5942069082466377e-01 0 1 0 0 0 0 V -266 0 1.1551216755063298e-05 -4.3161004075825854e-06 -5.7166077369144184e-04 5.7179673483314828e-04 0 2 0 P 845 22 4.7333165389760246e-01 -1.3982624625537882e-01 -2.0141913981453921e+01 2.0147960022543529e+01 0 1 0 0 0 0 P 846 22 3.7145237579643647e-01 -1.7582644836516459e-01 -2.1665793575014817e+01 2.1669690884795351e+01 0 1 0 0 0 0 V -267 0 9.3043479648438978e-05 -1.7801079933336813e-05 -5.5613893995878072e-03 5.5622344149320506e-03 0 2 0 P 847 22 3.9580953748357922e-01 -3.3466911524511089e-02 -2.0095039346034426e+01 2.0098964937100661e+01 0 1 0 0 0 0 P 848 22 2.1291564212917369e-01 -8.2994399044103509e-02 -1.6289646329436707e+01 1.6291249144220551e+01 0 1 0 0 0 0 V -268 0 4.3057210299589143e-04 -3.6093346726380151e-04 -2.6039470569485027e-02 2.6045873277943304e-02 0 2 0 P 849 22 1.8756957728983165e-01 -2.1208705518794599e-01 -1.0605788090201759e+01 1.0609566639574327e+01 0 1 0 0 0 0 P 850 22 2.4777935437414558e-01 -1.5285065973078030e-01 -1.5722568100652190e+01 1.5725263292303884e+01 0 1 0 0 0 0 V -269 0 5.4473263963224242e-05 -1.2666025106433589e-04 -8.5336533319827473e-03 8.5347695329637263e-03 0 2 0 P 851 22 9.0519872288476333e-01 -2.1314399596635889e+00 -1.3994761345912491e+02 1.3996677082055655e+02 0 1 0 0 0 0 P 852 22 2.3433010263342685e-01 -5.1817191658864448e-01 -3.8568290514221495e+01 3.8572483014728633e+01 0 1 0 0 0 0 V -270 0 1.5684118308229876e-05 -4.5494245140606384e-05 -6.0598762786608362e-03 6.0600725804228614e-03 0 2 0 P 853 22 8.9993522781378898e-02 -4.6370871294303867e-01 -5.9912700506580229e+01 5.9914562558661657e+01 0 1 0 0 0 0 P 854 22 1.7578246687485821e-01 -3.0721623089416134e-01 -4.2775227721449660e+01 4.2776692110424591e+01 0 1 0 0 0 0 V -271 0 6.4264702668150537e+00 -7.7649051546743326e+00 -5.4033151038721280e+03 5.4033967179357942e+03 0 2 0 P 855 2112 2.1443340026434654e-01 -1.5625284761175928e-01 -1.8063827215395455e+02 1.8064091052468316e+02 9.3957000000000002e-01 1 0 0 0 0 P 856 111 4.2226077247061802e-02 -1.5386085667400737e-01 -3.5158576475460016e+01 3.5159197595877906e+01 1.3497999999999999e-01 2 0 0 -306 0 V -272 0 -1.3251752657357954e+02 -8.1643709544901299e+01 -7.7107297588689515e+04 7.7107707137734804e+04 0 2 0 P 857 -2112 -6.1757359492483122e-01 -4.5449380058941408e-01 -3.4777952924375683e+02 3.4778164372858140e+02 9.3957000000000002e-01 1 0 0 0 0 P 858 111 -7.4781776804355687e-02 3.7479784445323287e-02 -6.1155881776692887e+01 6.1156087943340694e+01 1.3497999999999999e-01 2 0 0 -307 0 V -273 0 -7.7492383577918346e+01 -4.8501400399366197e+01 -4.4607037677979257e+04 4.4607262792576214e+04 0 2 0 P 859 22 -1.6833817595152048e-01 -1.5278137566466343e-01 -1.1453001020463921e+02 1.1453023582165977e+02 0 1 0 0 0 0 P 860 22 -8.0279222874224301e-02 -1.9146319638195151e-02 -1.8187912386425317e+01 1.8188099634416581e+01 0 1 0 0 0 0 V -274 0 -5.1883992298091892e-05 1.1642228163605630e-05 -1.2766117823086330e-02 1.2766238519452277e-02 0 2 0 P 861 22 -3.7353977013517270e-01 2.9641474255999962e-02 -8.5631810076762349e+01 8.5632629923409269e+01 0 1 0 0 0 0 P 862 22 -6.5737303217846446e-02 6.8927731552876403e-02 -2.2452834666572414e+01 2.2453036698621581e+01 0 1 0 0 0 0 V -275 0 -1.1920018931715163e-04 1.5784682100284478e-05 -2.8468920712647720e-02 2.8469266822069052e-02 0 2 0 P 863 22 -1.3739525262877536e-01 -1.5612861198574154e-02 -4.2018804897122976e+01 4.2019032428167186e+01 0 1 0 0 0 0 P 864 22 -8.4684010325402334e-02 4.5020956830623474e-02 -1.1021017985574492e+01 1.1021435283415459e+01 0 1 0 0 0 0 V -276 0 -5.9085767758302491e-05 -1.1916433709519678e-05 -1.7323824025977080e-02 1.7323933129605510e-02 0 2 0 P 865 22 -3.0781796945104134e-01 1.2091668385156247e-04 -7.9160671740163636e+01 7.9161270216380956e+01 0 1 0 0 0 0 P 866 22 -3.4983254578841871e-01 -1.3275605144151550e-01 -1.1366108938522451e+02 1.1366170528025384e+02 0 1 0 0 0 0 V -277 0 -1.5989814324876999e-05 -2.5565706243426140e-05 -2.0374488380101021e-03 2.0376843504024016e-03 0 2 0 P 867 22 -6.8388798473445520e-02 -7.0058844393298098e-02 -1.0231171894658548e+01 1.0231640318516156e+01 0 1 0 0 0 0 P 868 22 -2.3543253990251659e-01 -4.1571334342503485e-01 -2.8482250303978507e+01 2.8486256834537429e+01 0 1 0 0 0 0 V -278 0 3.1728354452903333e-05 -7.6227271495126877e-05 -2.1197803423741977e-02 2.1197972053311340e-02 0 2 0 P 869 22 2.3625020922498387e-02 -1.1858128734633575e-02 -3.1487189993181333e+00 3.1488299562691000e+00 0 1 0 0 0 0 P 870 22 2.1145514339560648e-01 -5.5292122454681203e-01 -1.5390900422528352e+02 1.5391014267024951e+02 0 1 0 0 0 0 V -279 0 0 0 0 0 0 2 0 P 871 211 -2.2682609437294937e-01 1.3669907563566838e-01 -3.4209413114697526e+01 3.4210722911848954e+01 1.3957000000000000e-01 1 0 0 0 0 P 872 -211 1.2883878135440655e-01 -7.7418927823972167e-02 -1.7608174054835555e+02 1.7608186001813266e+02 1.3957000000000000e-01 1 0 0 0 0 V -280 0 6.7337505139416272e-06 -1.0316916059882883e-05 -2.6595404282509800e-02 2.6595407893288313e-02 0 2 0 P 873 22 5.8620549340157688e-02 -1.8170113597611967e-01 -3.0075020770068483e+02 3.0075026830191973e+02 0 1 0 0 0 0 P 874 22 8.4595608827847196e-02 -3.7723251544487676e-02 -2.6489172072835169e+02 2.6489173692263000e+02 0 1 0 0 0 0 V -281 0 -6.4429183937020525e-05 3.7600633272765823e-05 3.1872420448974192e-04 3.2812583868084284e-04 0 2 0 P 875 22 -3.5134981217224825e-01 1.4971859696988479e-01 1.5073768992703573e+00 1.5550072235349974e+00 0 1 0 0 0 0 P 876 22 -3.1306105523557989e-02 7.3597980266263852e-02 3.8558053877674675e-01 3.9378812428219800e-01 0 1 0 0 0 0 V -282 0 1.1207701133734363e-06 -2.0238896986174594e-06 5.0824761902214233e-04 5.0838525122950669e-04 0 2 0 P 877 22 -5.0071123477724307e-02 -3.5032085498748908e-02 4.1231987469852216e+00 4.1236515700967287e+00 0 1 0 0 0 0 P 878 22 6.3112192005047307e-02 1.1482488720181786e-02 1.7906741779149959e+00 1.7918228170716093e+00 0 1 0 0 0 0 V -283 0 -8.2859234777522517e-06 -1.1924697626291465e-05 6.2411976712909128e-05 6.4186273708971813e-05 0 2 0 P 879 22 -5.4529905096834183e-03 -5.4436188084502866e-02 3.9659826274296861e-01 4.0035386308790732e-01 0 1 0 0 0 0 P 880 22 -2.9596948875834839e-01 -3.7935636777113524e-01 1.8738031967123421e+00 1.9345923632780577e+00 0 1 0 0 0 0 V -284 0 -1.5678020198773831e-05 -6.6312200241192554e-06 3.9403757872139055e-04 3.9489450950131415e-04 0 2 0 P 881 22 -2.3570358772930459e-02 -5.5643209794369673e-02 4.2090544495396509e-01 4.2522126263958182e-01 0 1 0 0 0 0 P 882 22 -8.4102368423418630e-02 1.0101646791931288e-02 2.2852462362446859e+00 2.2868156051402222e+00 0 1 0 0 0 0 V -285 0 -1.6813379206574424e-04 3.2883807097044721e-04 7.2681839319340569e-03 7.2779389754447201e-03 0 2 0 P 883 22 -6.4921929949543780e-02 1.1057861743330907e-01 3.7038362870560779e+00 3.7060552787209193e+00 0 1 0 0 0 0 P 884 22 -2.4124330880746189e-01 4.8822299926782625e-01 9.5312501373332115e+00 9.5467947087738718e+00 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 885 130 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 1 0 0 0 0 V -287 0 -3.8038450459167854e-06 2.7425515157775186e-07 2.5150303532066168e-02 2.5150475437002405e-02 0 2 0 P 886 22 1.0529793067655197e-02 6.4706887245832984e-02 1.4188459323642903e+01 1.4188610778947609e+01 0 1 0 0 0 0 P 887 22 -1.6055988861859837e-02 -6.4308451545405376e-02 2.2349701385891599e+01 2.2349799672709448e+01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 888 310 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -308 0 V -289 0 -4.6486154383588651e-05 1.4401410670670431e-06 2.3833743496114428e-03 2.3838490366838785e-03 0 2 0 P 889 22 -1.6865108008256671e-01 -1.3645704997106036e-02 6.0859581203726316e+00 6.0883097518939895e+00 0 1 0 0 0 0 P 890 22 -4.5912433915489964e-01 3.3094187542659019e-02 2.6100482151300390e+01 2.6104540963487629e+01 0 1 0 0 0 0 V -290 0 -7.6733232239886483e-06 1.3302741171269238e-05 6.7587778130431429e-03 6.7588333578104415e-03 0 2 0 P 891 22 -7.8945623805223158e-02 1.9993694539028198e-03 1.9598744442085753e+01 1.9598903543698135e+01 0 1 0 0 0 0 P 892 22 3.3304784573630841e-02 7.7125183678342715e-02 2.0602389090616789e+01 2.0602560368648327e+01 0 1 0 0 0 0 V -291 0 4.4979176954494166e-05 -8.2832313108760350e-05 7.2290611276326121e-03 7.2299537152378385e-03 0 2 0 P 893 22 1.0099680549739821e-01 -1.6055518792352039e-01 1.5194665281581971e+01 1.5195849148448479e+01 0 1 0 0 0 0 P 894 22 -5.2596615726036256e-03 -1.5751485934474459e-02 1.9222510810867460e-01 1.9294109343629703e-01 0 1 0 0 0 0 V -292 0 -3.0017737324045102e-05 6.8963716225881009e-05 1.2601478936352042e-02 1.2601734789507995e-02 0 2 0 P 895 22 -3.4861181404083038e-03 1.7136340832012836e-01 2.4550627991649026e+01 2.4551226290250177e+01 0 1 0 0 0 0 P 896 22 -1.4055514809083244e-01 1.5956163449549843e-01 3.5918053001321127e+01 3.5918682423922114e+01 0 1 0 0 0 0 V -293 0 -6.0089343615353204e-06 -9.1510806760094115e-07 6.8771940390648968e-04 6.8775353053222605e-04 0 2 0 P 897 22 -3.4333016589369889e-03 1.4269097782557709e-02 3.5450228848659221e-01 3.5480595718510782e-01 0 1 0 0 0 0 P 898 22 -2.5311187828417375e-01 -5.3338681463297316e-02 2.9006959762911155e+01 2.9008113094874265e+01 0 1 0 0 0 0 V -294 0 3.0172165798551441e+02 1.2679839093659461e+03 -4.0018577847538872e+03 4.2102779230643928e+03 0 2 0 P 899 -2112 2.2433504297897615e+00 9.2990747662889905e+00 -2.8954924633877429e+01 3.0508619519707747e+01 9.3957000000000002e-01 1 0 0 0 0 P 900 211 9.5576111367289240e-01 4.1450816207562351e+00 -1.3475739843860779e+01 1.4131886819298311e+01 1.3957000000000000e-01 1 0 0 0 0 V -295 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 2 0 P 901 311 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 2 0 0 -309 0 P 902 211 9.5907365410764833e-01 3.5533099932890289e+00 -1.1009113140839961e+01 1.1608871009496410e+01 1.3957000000000000e-01 1 0 0 0 0 V -296 0 -6.3542480825888759e-02 8.6496429611121028e-02 6.9241249496818302e-01 7.0240117244065481e-01 0 2 0 P 903 22 -1.6332316298713009e-01 1.3223849371523858e-01 7.8182884949936748e-01 8.0957879461958515e-01 0 1 0 0 0 0 P 904 22 -1.7295487994165946e-03 1.1054671373271617e-01 3.1401422118288380e-01 3.3290914430403634e-01 0 1 0 0 0 0 V -297 0 -6.3635987780062450e-02 8.6619067369276395e-02 6.9361176536973812e-01 7.0360982973812103e-01 0 2 0 P 905 22 -1.7793407499752598e-02 7.6165807755422407e-02 7.7855022268054364e-01 7.8246935074634849e-01 0 1 0 0 0 0 P 906 22 -4.6098202366995045e-01 5.5744386205430896e-01 5.1416257317451430e+00 5.1922599367551543e+00 0 1 0 0 0 0 V -298 0 -1.4533882853552200e-05 -5.1223800179794811e-06 9.6027656351618218e-05 9.9271555483239679e-05 0 2 0 P 907 22 -1.2312509430800810e-01 -1.7818593130385213e-03 5.5677807040586080e-01 5.7023221897385012e-01 0 1 0 0 0 0 P 908 22 2.4549034226604937e-02 -3.2960683027511019e-02 9.4529506335744695e-02 1.0307710354476726e-01 0 1 0 0 0 0 V -299 0 -7.0722287233100335e-06 5.3022626638857538e-05 1.1142256641670921e-03 1.1221963656161281e-03 0 2 0 P 909 22 5.8390923454788482e-02 5.3573450783977454e-02 5.7440019651630847e-01 5.7984066805354395e-01 0 1 0 0 0 0 P 910 22 -6.6194532996206687e-02 4.9325579069274070e-03 6.5505410485954152e-01 6.5840863194480259e-01 0 1 0 0 0 0 V -300 0 -4.4576067352408903e-05 9.0288306790825817e-05 1.3229497916552486e-03 1.3285196497717468e-03 0 2 0 P 911 22 -4.4869857889043414e-02 2.5558475405449053e-02 1.3649296386073730e+00 1.3659060941956764e+00 0 1 0 0 0 0 P 912 22 -4.3562927092325260e-02 1.5356110366467421e-01 1.2596207404487278e+00 1.2696941170786631e+00 0 1 0 0 0 0 V -301 0 4.4216848208305670e+00 -2.1959145862124011e+01 9.7925501154733610e+00 2.5211017128348697e+01 0 2 0 P 913 211 2.0940276717338838e-01 -1.5453334033939878e+00 7.1620579293458486e-01 1.7217245335065001e+00 1.3957000000000000e-01 1 0 0 0 0 P 914 -211 1.4782602382658336e-01 -2.2875033291472027e-01 7.4936267231541009e-02 3.1507852541163428e-01 1.3957000000000000e-01 1 0 0 0 0 V -302 0 8.2642611624942131e+00 -5.1300937694053594e+00 3.2027911465799008e+01 3.7414482951373842e+01 0 2 0 P 915 -211 3.3809492791803003e-01 -1.7785263753722091e-01 6.7266449280062446e-01 7.8606427583090521e-01 1.3957000000000000e-01 1 0 0 0 0 P 916 211 -9.2057723613516385e-02 2.5123445655830780e-02 2.8084576562632596e-01 3.2781083107298525e-01 1.3957000000000000e-01 1 0 0 0 0 V -303 0 3.6427544455342655e+00 2.6157876085759240e+00 -1.3642201299943590e+00 5.4642598873152712e+00 0 2 0 P 917 211 5.3899441789760905e-01 1.6646556459765430e-01 -2.2405964135415515e-01 6.2282282754034546e-01 1.3957000000000000e-01 1 0 0 0 0 P 918 -211 1.0661454622640182e-01 2.9713305386300926e-01 -1.7722438149588546e-02 3.4561334302799351e-01 1.3957000000000000e-01 1 0 0 0 0 V -304 0 6.6673336398945082e+00 -1.5101178723373868e+01 -1.8948538217380435e+01 2.7323054590385826e+01 0 2 0 P 919 -211 2.6070712297237070e-01 -5.5080873379264950e-01 -8.5031250318031415e-01 1.0554002099467124e+00 1.3957000000000000e-01 1 0 0 0 0 P 920 211 4.8705869607628884e-02 -1.4999628852185634e-01 -2.9038108550724868e-02 2.1258914589595349e-01 1.3957000000000000e-01 1 0 0 0 0 V -305 0 -3.0953682088713720e+01 6.2995660035799247e+01 -4.6912157478541900e+02 4.7886069381214571e+02 0 2 0 P 921 -211 2.9048817697976771e-02 3.3314350502044077e-01 -1.2970331913412130e+00 1.3467008996387158e+00 1.3957000000000000e-01 1 0 0 0 0 P 922 211 -2.6380680157938041e-01 1.4462628342985762e-01 -2.2608645339200257e+00 2.2850599589629352e+00 1.3957000000000000e-01 1 0 0 0 0 V -306 0 6.4264747537197922e+00 -7.7649215037896635e+00 -5.4033188397906333e+03 5.4034004539202988e+03 0 2 0 P 923 22 4.5821044601333891e-02 -1.7296783165094021e-01 -3.3887806926761776e+01 3.3888279326994429e+01 0 1 0 0 0 0 P 924 22 -3.5949673542720862e-03 1.9106974976932853e-02 -1.2707695486982380e+00 1.2709182688834759e+00 0 1 0 0 0 0 V -307 0 -1.3251754549370838e+02 -8.1643700062345786e+01 -7.7107313061405075e+04 7.7107722610502533e+04 0 2 0 P 925 22 -5.1199629974816488e-02 1.4148846571079097e-02 -7.1989735928065892e+00 7.1991695619630649e+00 0 1 0 0 0 0 P 926 22 -2.3582146829539196e-02 2.3330937874244190e-02 -5.3956908183886291e+01 5.3956918381377626e+01 0 1 0 0 0 0 V -308 0 -1.5487673078074202e-01 1.0201196758067184e+00 2.4836378830859363e+02 2.4839426476441406e+02 0 2 0 P 927 -211 -9.0674855235478663e-02 -1.1538687304506388e-01 1.7884263157970235e+01 1.7885409823324558e+01 1.3957000000000000e-01 1 0 0 0 0 P 928 211 7.0129833147545048e-02 2.5070985646634580e-01 1.5062193620399494e+01 1.5065089779650497e+01 1.3957000000000000e-01 1 0 0 0 0 V -309 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 1 0 P 929 130 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 1 0 0 0 0 E 11 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 13 51 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 295 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 -2.1551626618856239e+00 -5.7060381394760873e-01 1.0848016630084121e+03 1.0848039538924202e+03 0 3 0 0 -3 0 P 14 2114 1.5492098134827681e+00 4.7632158028302551e-01 5.5018467058392525e+02 5.5018844811967790e+02 1.2368368943044752e+00 2 0 0 -9 0 P 25 2 6.0595284840285579e-01 9.4282233664583243e-02 1.5207867777558295e+02 1.5208027223135701e+02 3.3000000000000002e-01 2 0 0 -14 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 5.9527177284296340e-01 1.3884159202585735e+00 -1.2362854570920354e+03 1.2362863800368077e+03 0 3 0 0 -4 0 P 19 2 -3.6196973926095277e-01 -9.3310826315368356e-01 -5.7236308521572209e+02 5.7236405541471845e+02 3.3000000000000002e-01 2 0 0 -10 0 P 97 2101 -2.3330203358201063e-01 -4.5530765710488996e-01 -2.0445780054885727e+03 2.0445781515720498e+03 5.7933000000000001e-01 2 0 0 -14 0 V -3 0 0 0 0 0 0 8 0 P 5 -1 3.4226183881587251e+00 -1.5086871101428240e+01 4.1792282521999010e+02 4.1820905757302819e+02 0 3 0 0 -5 0 P 26 21 6.0661147084619671e-01 8.7804679650724349e-01 7.0644039784327745e+01 7.0652100469151662e+01 0 2 0 0 -14 0 P 27 21 7.3714314107729739e-01 -7.1096592784046075e-01 4.9155201678709908e+01 4.9165869306213153e+01 0 2 0 0 -14 0 P 28 21 -2.5440042510055711e+00 8.8647795169577981e-01 5.5077525493379305e+01 5.5143373266983083e+01 0 2 0 0 -14 0 P 29 21 -1.6085878644926288e+00 9.9000215926047463e+00 3.3163206990206453e+02 3.3178370630574921e+02 0 2 0 0 -14 0 P 30 21 -9.2303267542851763e-01 1.3808215372857116e+00 5.4784590660660847e+01 5.4809762189722264e+01 0 2 0 0 -14 0 P 31 21 -2.0088113194277750e+00 3.6039659731362077e+00 9.6228190780284493e+01 9.6316606016301336e+01 0 2 0 0 -14 0 P 32 21 8.3389579824069929e-02 -8.8598175389203548e-01 9.6520980174254334e-01 1.3128394614851895e+00 0 2 0 0 -14 0 V -4 0 0 0 0 0 0 13 0 P 6 2 -2.4616052976209285e-01 4.2225605963005197e+00 -7.8027784096853114e+00 8.8754697851152446e+00 0 3 0 0 -5 0 P 15 -2 -2.7229784326919177e+00 1.6854181935820307e+00 4.9595302117234674e-01 3.2573172138084168e+00 3.3000000000000002e-01 2 0 0 -10 0 P 16 21 -2.2139374641736842e-01 -2.1547749169695046e-01 -5.6903529315123647e-01 6.4749278392306509e-01 0 2 0 0 -10 0 P 17 21 7.7666442504069622e-01 3.8959981627314075e+00 -3.5150149908218826e+00 5.3044641292813788e+00 0 2 0 0 -10 0 P 18 21 -1.3127500044470748e+00 -1.3100498608120534e+00 2.1779280839688533e+00 2.8605793033806486e+00 0 2 0 0 -10 0 P 89 21 -5.9573699067692838e-02 -2.6391157660949984e-02 2.1886571845644878e-01 2.2835875621212920e-01 0 2 0 0 -14 0 P 90 21 -3.8662886027556664e-01 3.5328732996217499e-01 -1.3478191494938967e+00 1.4459980196570938e+00 0 2 0 0 -14 0 P 91 21 -4.4058303665622758e-02 3.8230659403390219e+00 -4.7047168501140693e+00 6.0623539123057997e+00 0 2 0 0 -14 0 P 92 21 -2.0935314516086406e-01 7.8907353072943692e-02 -1.1568219861495597e+00 1.1782581285086626e+00 0 2 0 0 -14 0 P 93 21 4.7878721843365355e+00 -1.3554050573032637e+01 -4.9841987834705051e+01 5.1873497648652496e+01 0 2 0 0 -14 0 P 94 21 4.0308154015795100e-01 -1.1443832503200757e+00 -6.6887222335315251e+00 6.7978741433604224e+00 0 2 0 0 -14 0 P 95 21 -3.1060341972369447e-02 1.9065143278252661e+00 -3.4576970830092881e+02 3.4577496575104516e+02 0 2 0 0 -14 0 P 96 21 -5.8878444659398205e-02 1.1368974671517706e+00 -8.0938958887424462e+02 8.0939038947873655e+02 0 2 0 0 -14 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.4323412094594423e+00 -7.7877169175573133e+00 4.1413875524014617e+02 4.2196894771020681e+02 8.0500431186760608e+01 3 0 0 -6 0 P 8 22 7.4411664893718987e-01 -3.0765935875704078e+00 -4.0187084298414053e+00 5.1155796479365883e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.4323412094594423e+00 -7.7877169175573133e+00 4.1413875524014617e+02 4.2196894771020681e+02 8.0500431186760608e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 7.4411664893718987e-01 -3.0765935875704078e+00 -4.0187084298414053e+00 5.1155796479366087e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 3 0 P 11 14 7.7847339954700097e+00 -2.7598548293201073e+01 5.3105501292784524e+01 6.0352930490824697e+01 0 1 0 0 0 0 P 12 -13 -5.3493027818758279e+00 1.9795026720907309e+01 3.6071932316003409e+02 3.6130167365818045e+02 1.0566000000000000e-01 1 0 0 0 0 P 13 22 -3.0900041347315128e-03 1.5804654736441954e-02 3.1393078732819357e-01 3.1434356120237344e-01 0 1 0 0 0 0 V -9 0 0 0 0 0 0 2 0 P 137 2112 1.2925002450780527e+00 6.1826268945472573e-01 4.7250358444864582e+02 4.7250669086716664e+02 9.3957000000000002e-01 1 0 0 0 0 P 138 111 2.5670956840471526e-01 -1.4194110917170027e-01 7.7681086135279415e+01 7.7681757252511233e+01 1.3497999999999999e-01 2 0 0 -20 0 V -10 0 0 0 0 0 0 1 0 P 139 92 -3.8424274977766175e+00 3.1227807406507511e+00 -5.7377325439455399e+02 5.8443390884511189e+02 1.1100779405442275e+02 2 0 0 -11 0 V -11 0 0 0 0 0 0 19 0 P 140 113 -1.5771335292961923e+00 7.3431391033062299e-01 -4.9185481143481902e-01 1.9750838897189356e+00 7.9527864787152480e-01 2 0 0 -21 0 P 141 -211 -6.4748085747183104e-01 9.6943343993983966e-01 6.2089524177450994e-01 1.3281654043921927e+00 1.3957000000000000e-01 1 0 0 0 0 P 142 -2112 -3.8738134056328866e-02 1.4260581049662389e+00 -1.7201554530614231e+00 2.4242254287435845e+00 9.3957000000000002e-01 1 0 0 0 0 P 143 2112 -7.4350613405529564e-01 5.2517656548403469e-01 3.9069949892200090e-01 1.3653020470464874e+00 9.3957000000000002e-01 1 0 0 0 0 P 144 211 3.7532865664565668e-01 -1.8756789425330606e-01 -7.0118496351306103e-01 8.2897132242971161e-01 1.3957000000000000e-01 1 0 0 0 0 P 145 -213 1.1631796660668370e-01 6.9207297357612940e-01 -1.2140742076766046e-01 1.1411936754812675e+00 8.9167728076416075e-01 2 0 0 -22 0 P 146 211 -1.0590532895387644e-03 -2.1361574550782386e-01 -5.3448254937404638e-01 5.9227036799768495e-01 1.3957000000000000e-01 1 0 0 0 0 P 147 113 -5.2838574857181286e-01 5.5987769885024052e-01 -9.2598454186101270e-02 1.0948718190937599e+00 7.7299113162078814e-01 2 0 0 -23 0 P 148 -213 -2.3541647479112840e-01 -1.0887104796218293e-01 -4.7920306162468990e-01 1.1299658424842276e+00 9.8990575774825673e-01 2 0 0 -24 0 P 149 211 -4.2252844042249005e-01 2.9947187462031277e-01 1.9117311429771144e-01 5.6942131254875572e-01 1.3957000000000000e-01 1 0 0 0 0 P 150 -213 -1.5733942553515698e-01 -5.0713516462593522e-01 -1.7718512220734386e-01 1.0779083414482202e+00 9.2116776702407299e-01 2 0 0 -25 0 P 151 221 1.5009897124205076e-02 -2.9717227821191461e-01 -2.3607945846565510e+00 2.4416365891330014e+00 5.4744999999999999e-01 2 0 0 -26 0 P 152 223 5.7337680990436934e-01 9.5488552043142175e-02 -9.5139692511834930e+00 9.5621163124129946e+00 7.6195697381302929e-01 2 0 0 -27 0 P 153 213 -8.3868880023670034e-01 3.9747623626739548e-01 -3.1493562789546086e+01 3.1521332323068929e+01 9.4260701261373137e-01 2 0 0 -28 0 P 154 -213 4.4433622373264448e-01 -4.7272685589115265e-01 -1.2133348914703250e+01 1.2197927617433178e+01 1.0725562522342638e+00 2 0 0 -29 0 P 155 221 2.8805133445850012e-01 -3.5174479496440314e-01 -1.2816268200844084e+01 1.2836009117733404e+01 5.4744999999999999e-01 2 0 0 -30 0 P 156 211 -4.2833101948977476e-01 2.8093538850092814e-01 -5.0317189019594771e+01 5.0319989892420466e+01 1.3957000000000000e-01 1 0 0 0 0 P 157 -213 1.6029992828527492e-01 -2.0515642097118472e-01 -1.2966927168593793e+02 1.2967245231985163e+02 8.7010680869334422e-01 2 0 0 -31 0 P 158 213 -1.9654069731770174e-01 -5.1353380154023098e-01 -3.2235354596691292e+02 3.2235506522167350e+02 8.2287995219336829e-01 2 0 0 -32 0 V -12 0 0 0 0 0 5 1 0 P 20 1 -8.5362064756804390e-01 1.0575146391357586e+00 3.6574388868438068e-01 1.4073997349903449e+00 0 2 0 0 -12 0 P 21 21 6.6743339796178047e-01 -5.4393596564277058e-01 -2.5203011960032884e-01 8.9713591869922238e-01 0 2 0 0 -12 0 P 22 21 -1.6747833430591663e-01 -3.1423574583648045e-01 -3.3217870739419852e-01 4.8696590236830145e-01 0 2 0 0 -12 0 P 23 21 -2.8245808783277353e-02 -6.1788743489390596e-01 -3.5933269892039521e-01 7.1533397544574084e-01 0 2 0 0 -12 0 P 24 -1 8.5362064756804390e-01 -1.0575146391357586e+00 -1.2840449126314997e+00 1.8696996442198293e+00 0 2 0 0 -12 0 P 159 92 4.7170925487258647e-01 -1.4760591463731569e+00 -1.8618425498620415e+00 5.3765351757234390e+00 4.7999388111298229e+00 2 0 0 -13 0 V -13 0 0 0 0 0 0 6 0 P 160 -211 -2.3547700057924684e-01 -2.4091449384976104e-02 9.2297660029391402e-04 2.7479165293194802e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 113 4.9418025487136674e-01 -6.6618742062032466e-01 -9.5324949219992605e-01 1.4889021010395662e+00 7.8748020191184964e-01 2 0 0 -33 0 P 162 211 -2.9471533660994081e-01 7.9949802612539067e-01 -6.9986519150670362e-02 8.6627485313515451e-01 1.3957000000000000e-01 1 0 0 0 0 P 163 -213 -1.0014213657235842e-01 -6.0667135994397092e-01 1.6178026405040258e-01 1.0162299252016671e+00 7.9276214626180541e-01 2 0 0 -34 0 P 164 211 7.6127920162088669e-01 -9.0709830411774417e-01 -8.1084563683901334e-01 1.4419860567407323e+00 1.3957000000000000e-01 1 0 0 0 0 P 165 111 -1.5341572785812083e-01 -7.1508638431531768e-02 -1.9046414232312822e-01 2.8835058667437008e-01 1.3497999999999999e-01 2 0 0 -35 0 V -14 0 0 0 0 0 56 1 0 P 33 21 3.3416811018899928e+00 -4.8724382776364035e+00 2.1646486439293281e+02 2.1654548022068457e+02 0 2 0 0 -14 0 P 34 21 9.8001475540509453e-01 -4.2472289595602836e-01 5.3933650122750990e+01 5.3944225214776040e+01 0 2 0 0 -14 0 P 35 21 2.3209125879570056e+00 -1.6492515103545144e+00 4.8390098996180349e+01 4.8473790306159046e+01 0 2 0 0 -14 0 P 36 21 1.1621012229865215e+01 -4.6778353956840091e+00 1.6015566845962152e+02 1.6064485117483224e+02 0 2 0 0 -14 0 P 37 21 2.4423873175799491e+00 -5.4105946794996551e-01 4.2580791859885501e+01 4.2654212412982439e+01 0 2 0 0 -14 0 P 38 21 7.2845783888237658e-01 2.4189853766590519e-01 2.1470822002835632e+01 2.1484537770289702e+01 0 2 0 0 -14 0 P 39 21 -3.3416811018899928e+00 4.8724382776364035e+00 8.9564494718713775e+01 8.9759156644737999e+01 0 2 0 0 -14 0 P 40 21 -2.7823408713858182e+00 1.9349460134413070e+00 6.8282248261951480e+01 6.8366299186852970e+01 0 2 0 0 -14 0 P 41 21 -2.4423873175799491e+00 5.4105946794996551e-01 5.7030575378807825e+01 5.7085414329711362e+01 0 2 0 0 -14 0 P 42 21 -1.1621012229865215e+01 4.6778353956840091e+00 1.7815563733671641e+02 1.7859552397551124e+02 0 2 0 0 -14 0 P 43 21 -8.7983720646968022e-01 -6.9304702314628958e-02 7.1571324123463116e+00 7.2113425254601120e+00 0 2 0 0 -14 0 P 44 21 -2.3209125879570056e+00 1.6492515103545144e+00 9.0016350645022793e+00 9.4411916419391098e+00 0 2 0 0 -14 0 P 45 21 -4.6731348147360058e-01 1.9758276478266323e+00 2.1189830784940273e+00 2.9346832999196226e+00 0 2 0 0 -14 0 P 46 21 7.9835234032516877e-01 2.1887585637789819e-01 -3.5391734153732540e-01 9.0029472088237872e-01 0 2 0 0 -14 0 P 47 21 4.2057807463993848e+00 1.8746715350018899e+00 -2.0037113227282375e+00 5.0217371611584225e+00 0 2 0 0 -14 0 P 48 21 6.1467098501311375e+00 3.4702841741027743e+00 -3.7302463064992439e+00 7.9837116517243141e+00 0 2 0 0 -14 0 P 49 21 2.9951437503593041e+00 1.5884736242319581e+00 -5.2668973067525320e+00 6.2637322564166231e+00 0 2 0 0 -14 0 P 50 21 3.7288467823223428e+00 1.7542881623395118e-01 -6.7409818586042354e+00 7.7055765529668410e+00 0 2 0 0 -14 0 P 51 21 2.7823408713858182e+00 -1.9349460134413070e+00 -3.0837650303142308e+00 4.5820348712886645e+00 0 2 0 0 -14 0 P 52 21 4.6731348147360058e-01 -1.9758276478266323e+00 -3.5731155312157750e+00 4.1096753379431918e+00 0 2 0 0 -14 0 P 53 21 4.6114667057830855e-01 -1.4825766041107393e+00 -7.9309132918398362e+00 8.0814649217529730e+00 0 2 0 0 -14 0 P 54 21 2.1292858447130147e-01 -4.6916837545665863e-01 -2.0478140877763389e+00 2.1116344581174156e+00 0 2 0 0 -14 0 P 55 21 4.4087336193371196e-01 -6.0869635061321892e-01 -3.2299946379942792e+00 3.3162849591047481e+00 0 2 0 0 -14 0 P 56 21 6.7594363433726112e-01 -9.1472709041225242e-01 -9.3128038991430628e+00 9.3820009545208087e+00 0 2 0 0 -14 0 P 57 21 2.2881954303852634e+00 -1.6600141624810760e+00 -1.2577663882331755e+01 1.2891435687470441e+01 0 2 0 0 -14 0 P 58 21 2.7890441883877877e+00 1.0145863917589899e+00 -2.6749664723110012e+01 2.6913801586359337e+01 0 2 0 0 -14 0 P 59 21 8.7983720646968022e-01 6.9304702314628958e-02 -6.7989326063686599e+00 6.8559755861288068e+00 0 2 0 0 -14 0 P 60 21 6.1861057635151662e-01 -4.6885653918289482e-03 -3.9271574290643558e+00 3.9755837936678873e+00 0 2 0 0 -14 0 P 61 21 9.3587007261054189e-01 -1.8657494409961131e-01 -9.4907442658620162e+00 9.5385999875540737e+00 0 2 0 0 -14 0 P 62 21 1.5000973411483665e+00 -5.4098088102938513e-01 -3.8508967460675684e+01 3.8541970982734369e+01 0 2 0 0 -14 0 P 63 21 4.2783400232833326e+00 -3.5650378058299363e+00 -1.9812091892373189e+02 1.9819917306360227e+02 0 2 0 0 -14 0 P 64 21 -2.8758690494965577e-01 -4.8099706299822598e-01 -6.4655208449430319e+01 6.4657637167173050e+01 0 2 0 0 -14 0 P 65 21 1.7287597473304730e+00 -1.8160870267326539e+00 -6.9588547656738012e+02 6.9588999366262078e+02 0 2 0 0 -14 0 P 66 21 5.5718830811887055e-01 -1.6466594031626829e+00 -5.4099942120669130e+02 5.4100221412853364e+02 0 2 0 0 -14 0 P 67 21 -2.1292858447130147e-01 4.6916837545665863e-01 -2.3677140062688983e+02 2.3677196120395206e+02 0 2 0 0 -14 0 P 68 21 2.2135504570078873e-01 1.0394873900229302e+00 -2.7537704974930256e+02 2.7537910062443035e+02 0 2 0 0 -14 0 P 69 21 -5.5718830811887055e-01 1.6466594031626829e+00 -1.7148260063075816e+02 1.7149141163652723e+02 0 2 0 0 -14 0 P 70 21 -4.4087336193371196e-01 6.0869635061321892e-01 -1.0316367955301251e+02 1.0316641730468866e+02 0 2 0 0 -14 0 P 71 21 -1.7287597473304730e+00 1.8160870267326539e+00 -2.5563808320105596e+02 2.5565037916080365e+02 0 2 0 0 -14 0 P 72 21 -4.6114667057830855e-01 1.4825766041107393e+00 -4.0896832260277833e+01 4.0926294464123472e+01 0 2 0 0 -14 0 P 73 21 -2.2881954303852634e+00 1.6600141624810760e+00 -4.5174015116320525e+01 4.5262380925850877e+01 0 2 0 0 -14 0 P 74 21 -2.7890441883877877e+00 -1.0145863917589899e+00 -2.4988948326149483e+01 2.5164572149712605e+01 0 2 0 0 -14 0 P 75 21 -3.7288467823223428e+00 -1.7542881623395118e-01 -3.0302630663864665e+01 3.0531696624101844e+01 0 2 0 0 -14 0 P 76 21 -7.9898599201002896e-01 -5.9019638732865365e-01 -1.1950486384367929e+01 1.1991698595862360e+01 0 2 0 0 -14 0 P 77 21 -7.1950735712823854e-01 -1.8708981320067051e+00 -1.6390054641053581e+01 1.6512172534043781e+01 0 2 0 0 -14 0 P 78 21 8.5412010991020221e-02 -1.5499732831609971e+00 -1.1048192164325382e+01 1.1156713785429613e+01 0 2 0 0 -14 0 P 79 21 -2.2135504570078873e-01 -1.0394873900229302e+00 -3.6335617740295421e+00 3.7858028548727409e+00 0 2 0 0 -14 0 P 80 21 -6.1467098501311375e+00 -3.4702841741027743e+00 -1.2205417617876510e+01 1.4099543732245296e+01 0 2 0 0 -14 0 P 81 21 -4.2057807463993848e+00 -1.8746715350018899e+00 -4.6285793939792841e+00 6.5289150903729594e+00 0 2 0 0 -14 0 P 82 21 -9.3587007261054189e-01 1.8657494409961131e-01 -8.4026602214095336e-01 1.2714991114972969e+00 0 2 0 0 -14 0 P 83 21 -4.2783400232833326e+00 3.5650378058299363e+00 -1.3675592849140910e+01 1.4766026130523363e+01 0 2 0 0 -14 0 P 84 21 -4.5078914157710631e-01 1.0618204468673818e+00 -4.6641258850206171e+00 4.8046585500812462e+00 0 2 0 0 -14 0 P 85 21 2.8245808783277353e-02 6.1788743489390596e-01 -3.7008120262155857e+00 3.7521450346828948e+00 0 2 0 0 -14 0 P 86 21 1.3048008951647500e-01 4.5618700806913826e-01 -2.7738810375213774e+00 2.8141690870329685e+00 0 2 0 0 -14 0 P 87 21 2.8758690494965577e-01 4.8099706299822598e-01 -1.9316509743052332e+00 2.0113030326248200e+00 0 2 0 0 -14 0 P 88 21 7.7943200561397766e-02 1.1494378125527345e+00 -3.0843903324850306e+00 3.2925288382285869e+00 0 2 0 0 -14 0 P 166 92 5.7661786818527734e+00 6.7036016687674795e+00 -4.4176969643959374e+03 7.9747910093247583e+03 6.6393649535239429e+03 2 0 0 -15 0 V -15 0 0 0 0 0 0 123 0 P 167 2212 1.1018174240662579e+00 3.7133030697579522e-01 1.4857613371045349e+02 1.4858364562350840e+02 9.3827000000000005e-01 1 0 0 0 0 P 168 -2212 -3.8645703548336768e-01 3.2152925163903327e-02 6.4626635373124984e+01 6.4634609406219965e+01 9.3827000000000005e-01 1 0 0 0 0 P 169 213 9.4518313073499494e-01 2.6738440307693967e-01 4.5398720099052859e+01 4.5415838261492780e+01 7.6792759573535019e-01 2 0 0 -36 0 P 170 113 -1.5647941188222179e+00 6.1225019063881292e-01 5.3649778053480084e+01 5.3683618352706013e+01 8.9931269371784262e-01 2 0 0 -37 0 P 171 111 1.9542907521701117e-01 7.7014422459536525e-01 2.6389627193779575e+01 2.6401930945996892e+01 1.3497999999999999e-01 2 0 0 -38 0 P 172 223 -1.1715319449581667e+00 9.9600218025059128e-01 3.5343431207184167e+01 3.5385316449751805e+01 7.7329380638625156e-01 2 0 0 -39 0 P 173 -211 -6.9019224083214570e-01 3.0746297980979560e+00 1.1870304144642883e+02 1.1874494196445656e+02 1.3957000000000000e-01 1 0 0 0 0 P 174 211 1.2875183291562481e-02 1.2008996314417553e-01 4.5779880285620296e+00 4.5817072739482549e+00 1.3957000000000000e-01 1 0 0 0 0 P 175 311 -2.9572052526908682e-01 1.3696794269130943e+00 5.3910373938877470e+01 5.3930877667808041e+01 4.9767000000000000e-01 2 0 0 -40 0 P 176 -321 -1.2301776917792668e+00 3.9248031410521400e+00 1.2642044654317858e+02 1.2648830128508341e+02 4.9359999999999998e-01 1 0 0 0 0 P 177 211 -5.6774662808269554e-03 9.1297206152097221e-01 2.8284428260411580e+01 2.8299503741620828e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 113 -4.1561825213616255e-01 1.0926985894333154e+00 3.5291285783233654e+01 3.5317485557530482e+01 6.9512958047140017e-01 2 0 0 -41 0 P 179 -211 9.2219467409806424e-02 5.7149819811465219e-01 6.0383412179046090e+00 6.0676320809161952e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 3122 -6.3534609686946175e-01 -9.4766254068093282e-03 2.4627928316075089e+01 2.4661373633140741e+01 1.1156800000000000e+00 2 0 0 -42 0 P 181 -3122 -5.2450935728377224e-01 1.3833182863948725e+00 3.2575763703723368e+01 3.2628420162345797e+01 1.1156800000000000e+00 2 0 0 -43 0 P 182 2214 -8.2516467134882021e-01 -5.3881377364028626e-01 1.1039071094188907e+01 1.1143768882797332e+01 1.1624445247573671e+00 2 0 0 -44 0 P 183 -2112 1.4547280444961949e-01 2.8118459821831149e-01 4.0937956656526495e+00 4.2121469409466306e+00 9.3957000000000002e-01 1 0 0 0 0 P 184 -213 7.1274001274417476e-01 -1.0129007271520809e+00 2.5124381056131192e+01 2.5166227892925114e+01 7.5533879559181061e-01 2 0 0 -45 0 P 185 331 5.4546249407050751e-01 -2.6726884285836877e-01 2.0337192141098068e+01 2.0368793078875274e+01 9.5780234876283576e-01 2 0 0 -46 0 P 186 213 1.0081344704688819e+00 -1.8182358661033080e+00 8.8243248096120553e+01 8.8274939409010770e+01 1.1277306130928062e+00 2 0 0 -47 0 P 187 -211 1.6037611699459591e+00 -8.5523363826655385e-01 3.4900304911342225e+01 3.4947878864901192e+01 1.3957000000000000e-01 1 0 0 0 0 P 188 211 -6.8386999491007044e-02 -8.0347042312152409e-02 4.9954069916443444e+00 4.9984700885347815e+00 1.3957000000000000e-01 1 0 0 0 0 P 189 113 1.3766487137137167e+00 -1.7951645664258560e+00 5.9794351346104015e+01 5.9842218701698528e+01 7.8032604663933869e-01 2 0 0 -48 0 P 190 -211 9.8616997905105669e-02 3.1972039317712734e-03 1.4314570383501261e+01 1.4315590822019896e+01 1.3957000000000000e-01 1 0 0 0 0 P 191 223 1.2054652844389269e+00 -9.6340126509054547e-01 4.4981708817750196e+01 4.5014993828050251e+01 7.8374270329702189e-01 2 0 0 -49 0 P 192 213 3.7713030002443695e+00 -1.4682092927417105e+00 5.4258538147110620e+01 5.4416766931541211e+01 9.0398925506371430e-01 2 0 0 -50 0 P 193 331 2.1786001065327589e+00 -3.3348908158630813e-01 3.7621575527928940e+01 3.7698232971647201e+01 9.5724113430490398e-01 2 0 0 -51 0 P 194 313 2.6940396267686633e+00 -7.2283266300548077e-01 4.6597732364046031e+01 4.6688229161623724e+01 8.1347661780958092e-01 2 0 0 -52 0 P 195 -323 6.2701574067203358e-01 -4.1360184827713836e-01 1.6863886909202783e+01 1.6903510401091669e+01 8.7964024776303917e-01 2 0 0 -53 0 P 196 331 2.8252126137531324e+00 -1.1140951045094742e+00 4.5171052872372407e+01 4.5283162075928509e+01 9.5797483335781741e-01 2 0 0 -54 0 P 197 111 2.1902293200130107e+00 -5.4875215002292710e-01 2.3412522193165316e+01 2.3521535843610600e+01 1.3497999999999999e-01 2 0 0 -55 0 P 198 113 1.4308749106313431e-01 1.4588484406931634e-01 2.9754023606181867e+01 2.9762780433340382e+01 6.9240302438222445e-01 2 0 0 -56 0 P 199 211 -1.6444972303018739e+00 1.0402256245934325e+00 2.5637340104711878e+01 2.5711459078008367e+01 1.3957000000000000e-01 1 0 0 0 0 P 200 -213 -9.5790452308159701e-01 1.6609489133651203e+00 3.8658587440815353e+01 3.8708902433923143e+01 4.6520140978558577e-01 2 0 0 -57 0 P 201 323 -2.3807011977896351e+00 5.9268326653552184e-01 5.5095311944695077e+01 5.5157585466870003e+01 9.2023073422897461e-01 2 0 0 -58 0 P 202 -313 -1.9464809382332111e+00 1.7644143992182209e+00 3.7269211965141473e+01 3.7373355645982144e+01 9.3359815946004576e-01 2 0 0 -59 0 P 203 223 -3.0120765380713501e+00 2.4714005073455563e+00 7.2278523233130358e+01 7.2387639593393672e+01 7.7783005983467779e-01 2 0 0 -60 0 P 204 -211 -2.4925981004438573e+00 6.8754677051942559e-01 3.2382443397507075e+01 3.2485810533672016e+01 1.3957000000000000e-01 1 0 0 0 0 P 205 2212 -1.7381605482748481e+00 2.1063643059381640e-01 2.7931374292181570e+01 2.8001921188381232e+01 9.3827000000000005e-01 1 0 0 0 0 P 206 -2112 -3.1204494900728403e+00 1.7647316053568927e+00 4.8884471036022084e+01 4.9024746637954422e+01 9.3957000000000002e-01 1 0 0 0 0 P 207 223 -1.3278733155185176e+00 3.8717467634274544e-01 1.9311792138182000e+01 1.9376991176283973e+01 7.8058931927854869e-01 2 0 0 -61 0 P 208 -213 -1.6818463715185232e+00 5.8834953930351563e-01 2.9292061301775462e+01 2.9356115036532358e+01 7.6280556720621406e-01 2 0 0 -62 0 P 209 323 -9.8248159495140319e-01 1.0273462693044255e+00 4.2390950035543833e+00 4.5578638141259722e+00 8.8514725186674625e-01 2 0 0 -63 0 P 210 -321 -6.1142072381555790e-01 1.0418170672354525e+00 1.7205796670523250e+00 2.1594567496868540e+00 4.9359999999999998e-01 1 0 0 0 0 P 211 223 -2.9497074385175687e-01 2.5434793044619047e-01 2.6870150524458483e+00 2.8266235829621267e+00 7.8616180156273729e-01 2 0 0 -64 0 P 212 223 -1.2228714753502792e-01 -6.5294728274323593e-03 1.4529315213250882e+00 1.6545780982330065e+00 7.8206259150061830e-01 2 0 0 -65 0 P 213 211 -7.8396873895517538e-01 6.5077216030936258e-01 1.4173370700555021e+00 1.7511240799401386e+00 1.3957000000000000e-01 1 0 0 0 0 P 214 113 5.4875026282454664e+00 3.2057698840271174e+00 -1.9865768834142594e+00 6.6795343852518858e+00 5.2919395849749340e-01 2 0 0 -66 0 P 215 111 5.5934638694971436e-02 1.8263970422823378e-01 -7.6088902891234433e-01 7.9602616796540304e-01 1.3497999999999999e-01 2 0 0 -67 0 P 216 111 -2.5755233433080848e-02 -8.5754184339986314e-02 4.8932345821185996e-03 1.6205140025832693e-01 1.3497999999999999e-01 2 0 0 -68 0 P 217 -213 3.3296895304947411e+00 1.6949217701159178e+00 -1.9905431255224684e+00 4.3622537147090288e+00 1.0523323432399099e+00 2 0 0 -69 0 P 218 213 1.3012101636578328e+00 4.7550581300534661e-01 -1.5172404622102269e+00 2.1231048892885838e+00 5.3507203491199828e-01 2 0 0 -70 0 P 219 -211 2.6194580997013368e+00 4.5294904780843714e-01 -4.3079832768307753e+00 5.0640816812483509e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 213 1.8570962191368274e+00 9.5402679936719936e-01 -1.2298273774694242e+00 2.5173634811530428e+00 6.8240018817884496e-01 2 0 0 -71 0 P 221 -213 1.1041165049903170e+00 3.1282655992679520e-01 -1.1799678794040225e+00 1.8108993006736203e+00 7.5504858622959881e-01 2 0 0 -72 0 P 222 213 7.2199394724264898e-01 8.8643461225565393e-02 -1.0611704613713866e+00 1.4496760660058610e+00 6.6809058157558110e-01 2 0 0 -73 0 P 223 1114 1.3503867278665322e+00 -1.0253622466109173e+00 -3.2492018531690299e+00 3.8711438825234308e+00 1.2464069259228534e+00 2 0 0 -74 0 P 224 213 1.7498544628137169e+00 -4.1149723501289048e-01 -4.7118914628428064e+00 5.1242836538348220e+00 9.0831778133839103e-01 2 0 0 -75 0 P 225 -2112 5.1315106660714138e-01 -5.3217128301117911e-01 -1.5815756682573099e+00 1.9826002297350236e+00 9.3957000000000002e-01 1 0 0 0 0 P 226 2214 1.1746464265445575e+00 -1.4835130781864727e+00 -5.1337064151880059e+00 5.6311997434348440e+00 1.3322401107060129e+00 2 0 0 -76 0 P 227 111 8.4876597618850569e-01 -6.3139465929775229e-01 -6.1939520698663584e+00 6.2850874888363091e+00 1.3497999999999999e-01 2 0 0 -77 0 P 228 -2224 7.9177356320220971e-01 -1.0109766208039659e+00 -6.2754283074646766e+00 6.5154186210062655e+00 1.1919313158181928e+00 2 0 0 -78 0 P 229 111 7.5052812694600279e-01 -7.1709575637224787e-01 -1.9357536952368577e+00 2.2006546212814291e+00 1.3497999999999999e-01 2 0 0 -79 0 P 230 111 2.4650496558335324e+00 -2.3036810968315824e+00 -2.6193913799790639e+01 2.6410656109852454e+01 1.3497999999999999e-01 2 0 0 -80 0 P 231 111 1.4580110042479812e+00 9.2932946899683067e-01 -2.1875614550250500e+01 2.1944251659648490e+01 1.3497999999999999e-01 2 0 0 -81 0 P 232 323 1.2872414757687654e+00 -8.1690193485162588e-01 -1.2831766537407198e+01 1.2951852086486893e+01 8.7859012719704044e-01 2 0 0 -82 0 P 233 221 4.5362213114236055e-01 5.3022987100643265e-02 -1.1586802072806497e+01 1.1608715185235452e+01 5.4744999999999999e-01 2 0 0 -83 0 P 234 221 -9.4047763715803645e-02 -2.9906486342356770e-01 -7.0266054000011335e+00 7.0548685121850134e+00 5.4744999999999999e-01 2 0 0 -84 0 P 235 -313 1.5866850161175921e+00 1.7251479606938169e-01 -2.7687730322003386e+01 2.7748626184186623e+01 9.1022746086174722e-01 2 0 0 -85 0 P 236 -211 1.3021516687927621e+00 -7.8478740844233480e-02 -2.1495952208338799e+01 2.1535951314241728e+01 1.3957000000000000e-01 1 0 0 0 0 P 237 111 1.1983119619712053e+00 -8.2888392592534921e-01 -4.5110079555842240e+01 4.5133806589469899e+01 1.3497999999999999e-01 2 0 0 -86 0 P 238 213 7.5481861817918450e-01 -1.2976856420300165e+00 -4.2602882809757467e+01 4.2636110791731326e+01 7.6064483892255297e-01 2 0 0 -87 0 P 239 2112 1.1069216621100032e-01 -6.7050311712723354e-01 -5.8848947845713440e+01 5.8860371061675593e+01 9.3957000000000002e-01 1 0 0 0 0 P 240 -2212 2.0220030487560208e+00 -6.6110263673557224e-01 -1.7270314818331440e+02 1.7271879832851499e+02 9.3827000000000005e-01 1 0 0 0 0 P 241 111 1.1777392302565072e-01 -8.7922828095862782e-01 -1.8920407371301451e+02 1.8920620138427600e+02 1.3497999999999999e-01 2 0 0 -88 0 P 242 213 6.6957779002702256e-01 -1.4500430460463409e-01 -8.8832346659483932e+01 8.8838024738550999e+01 7.3448332276549932e-01 2 0 0 -89 0 P 243 113 4.3380928594803986e-01 -1.0195301396815946e+00 -2.5213332813195910e+02 2.5213699702763421e+02 7.8897592660499138e-01 2 0 0 -90 0 P 244 113 1.8298278714803295e-01 -3.5198610196324387e-01 -4.2538022216055884e+02 4.2538099523582594e+02 7.0733693459637070e-01 2 0 0 -91 0 P 245 2114 3.5181098214964279e-01 1.1576699469984415e-01 -2.5351669021760162e+02 2.5351964126522964e+02 1.1658110477763703e+00 2 0 0 -92 0 P 246 -2114 2.8461532652587856e-01 -3.7036808790880726e-02 -2.6036944271739014e+02 2.6037236006170474e+02 1.1986682311732040e+00 2 0 0 -93 0 P 247 223 -4.6417917433014666e-01 1.6020463727475148e-01 -1.7282442605776379e+02 1.7282685797532150e+02 7.7425292688973202e-01 2 0 0 -94 0 P 248 -213 -9.3184785474386800e-01 2.0195525509523780e+00 -3.0734078164737241e+02 3.0735019018379603e+02 9.1455424513528116e-01 2 0 0 -95 0 P 249 213 -9.1479642583185461e-01 1.4442921622804810e+00 -2.0987139339553738e+02 2.0987967514440143e+02 7.4393587380079951e-01 2 0 0 -96 0 P 250 313 -1.1586323229070250e+00 1.3202335037449560e+00 -6.4101231521567328e+01 6.4131671904818404e+01 9.0444091106126501e-01 2 0 0 -97 0 P 251 -323 -2.2358826342506588e-01 1.0596496613352728e+00 -2.9656793486856628e+01 2.9690493311019559e+01 9.0947458091257694e-01 2 0 0 -98 0 P 252 113 -5.2451134936372164e+00 2.4246775660221878e-01 -5.1829741162255836e+01 5.2097311624572221e+01 4.8765088662283529e-01 2 0 0 -99 0 P 253 111 1.0718923973231674e-01 -2.2558589600329407e-01 -7.9094360037464346e+00 7.9145294255154788e+00 1.3497999999999999e-01 2 0 0 -100 0 P 254 223 -7.1136448160296073e-01 -1.1361768737509061e+00 -1.4001495042011960e+01 1.4087258452438647e+01 7.8233623218276171e-01 2 0 0 -101 0 P 255 213 -2.7294820982398709e+00 -4.3813876728287365e-01 -2.2102787300249464e+01 2.2286718190835714e+01 7.2288531154707136e-01 2 0 0 -102 0 P 256 311 -4.5991482628962566e-01 -8.4583284208824416e-01 -6.4736118661859257e+00 6.5637093832008837e+00 4.9767000000000000e-01 2 0 0 -103 0 P 257 -321 -2.1663289309305050e-01 -3.0492597914556380e-01 -4.5095243022192983e+00 4.5518523762787160e+00 4.9359999999999998e-01 1 0 0 0 0 P 258 213 -6.1654831219352058e-01 -1.1399456200470635e+00 -1.3161746053299550e+01 1.3248167703316785e+01 7.7638939052928968e-01 2 0 0 -104 0 P 259 223 -4.8565778914675628e-01 -8.4376389807744723e-01 -3.2579903645046175e+00 3.4889481089710972e+00 7.8131727744258939e-01 2 0 0 -105 0 P 260 2112 -1.6365984115639047e+00 -5.5863203988508148e-01 -5.7878344725381261e+00 6.1132923848872425e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -2112 -1.3695677595104507e+00 -1.0780526166036797e+00 -3.2830058918216061e+00 3.8339056799420477e+00 9.3957000000000002e-01 1 0 0 0 0 P 262 -213 -1.6898041888414619e+00 -1.1797939572486444e+00 -2.2472062180306875e+00 3.2214248566637815e+00 1.0393701662973169e+00 2 0 0 -106 0 P 263 213 -4.4635561880383170e+00 -1.9310727688369116e+00 -8.1233801646287738e+00 9.4986869384073316e+00 7.6378817251070263e-01 2 0 0 -107 0 P 264 113 -1.9772915369471529e+00 -5.5896265576880599e-01 -3.2346881976033712e+00 3.9277453727734755e+00 8.6130999355745930e-01 2 0 0 -108 0 P 265 -211 -1.1469482687697270e+00 1.5985083711611809e+00 -5.8513720681194332e+00 6.1748485170386598e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 211 -7.7856064598612151e-01 -1.1384781873431064e-01 -1.0071140332231288e+00 1.2856424332308904e+00 1.3957000000000000e-01 1 0 0 0 0 P 267 113 -6.3311589130967794e-01 7.8022934519951703e-01 -2.1953233487034716e+00 2.5290895165037157e+00 7.5316373663836167e-01 2 0 0 -109 0 P 268 -213 -1.9272203666822207e+00 2.0852614863382843e+00 -8.9246986122467167e+00 9.3974955550457206e+00 7.7471516023962128e-01 2 0 0 -110 0 P 269 213 4.0264322710997758e-01 1.3373139198593129e+00 -5.7549251847965781e+00 5.9839648968745003e+00 8.5915185842393682e-01 2 0 0 -111 0 P 270 -213 -1.2702232748467174e-01 6.9089665468103456e-01 -2.3351695410309059e+00 2.6170975515334352e+00 9.5011049344523180e-01 2 0 0 -112 0 P 271 213 -1.2184021077811484e-01 1.4046875423891882e+00 -2.1261338013470317e+00 2.6926155302020951e+00 8.6124405574105245e-01 2 0 0 -113 0 P 272 2112 5.9184690936132663e-02 1.0316405824906618e+00 -4.1485304430707979e+00 4.3773144439334111e+00 9.3957000000000002e-01 1 0 0 0 0 P 273 -2112 -2.2586894261978621e-01 1.7348394738570112e+00 -1.8229324308217776e+00 2.6956556181260334e+00 9.3957000000000002e-01 1 0 0 0 0 P 274 221 1.8386112633174946e-02 6.6546130728505404e-02 -1.3874961885291999e+00 1.4931890745433922e+00 5.4744999999999999e-01 2 0 0 -114 0 P 275 111 1.6145351814450937e-01 -1.2875161174311109e+00 -4.4294203976851199e+00 4.6175480128521809e+00 1.3497999999999999e-01 2 0 0 -115 0 P 276 223 1.9213368534890631e+00 -3.0107739446160267e+00 -1.1764157966770275e+01 1.2319181982312644e+01 7.8136866846446151e-01 2 0 0 -116 0 P 277 -211 -7.0557912191524158e-02 -9.1866868731512230e-01 -5.1969663139758397e+00 5.2798550386848451e+00 1.3957000000000000e-01 1 0 0 0 0 P 278 221 5.3334352748608371e-01 -8.5281971743465146e-01 -3.8177819813839404e+00 3.9858396290664411e+00 5.4744999999999999e-01 2 0 0 -117 0 P 279 111 -1.4365611157507349e-01 -1.7576743993832261e-01 -3.2414285632953438e-01 4.1811417465186584e-01 1.3497999999999999e-01 2 0 0 -118 0 P 280 223 2.3862674919342974e+00 -5.9899708458308103e+00 -2.2497170831070836e+01 2.3416219381742508e+01 7.8905732018877095e-01 2 0 0 -119 0 P 281 213 1.9690882168589066e-01 -1.3160638159918412e+00 -6.7555695189015115e+00 6.9087825104511698e+00 5.6811900178046626e-01 2 0 0 -120 0 P 282 -213 1.5376829087286017e-01 -3.3183249117166008e-01 -2.8511609267241617e+01 2.8525937914790351e+01 8.2674870495241937e-01 2 0 0 -121 0 P 283 213 -3.2014572346585091e-01 6.8296528189945060e-01 -1.7829555603228636e+02 1.7829861901297684e+02 7.2339906827006906e-01 2 0 0 -122 0 P 284 2112 2.1756596988318264e-01 5.5583084581431752e-01 -2.5534307553444543e+02 2.5534550181676357e+02 9.3957000000000002e-01 1 0 0 0 0 P 285 -2212 1.1778291602446631e-01 1.9392146417174905e-01 -1.2074997705011900e+02 1.2075383549414379e+02 9.3827000000000005e-01 1 0 0 0 0 P 286 223 -5.6281662254517884e-01 1.6736984748125727e-01 -2.1606129713421430e+02 2.1606356178500062e+02 7.9613860921478519e-01 2 0 0 -123 0 P 287 211 2.3009712696303056e-01 3.7651784654119963e-01 -1.0067767523958388e+02 1.0067873897605503e+02 1.3957000000000000e-01 1 0 0 0 0 P 288 1114 4.6624609025605675e-02 2.6188169875886680e-01 -1.5518324305727970e+03 1.5518329182349755e+03 1.2011595760299778e+00 2 0 0 -124 0 P 289 213 -2.1152712188035178e-01 2.5260752740527914e-01 -7.4983436344884842e+02 7.4983477449142561e+02 7.1265249680939990e-01 2 0 0 -125 0 V -16 0 0 0 0 0 34 1 0 P 98 21 6.7034945795689245e+00 -4.5719806421128245e-01 1.8306330601126303e+03 1.8306453907425603e+03 0 2 0 0 -16 0 P 99 21 -4.3328167447430943e-01 -3.0636763644933573e-01 4.5863740863678612e+02 4.5863771562662009e+02 0 2 0 0 -16 0 P 100 21 -3.8924681237583068e+00 -5.1646289511019789e+00 8.1698488377417164e+02 8.1701048035860208e+02 0 2 0 0 -16 0 P 101 21 -5.2962004245388072e-01 -1.5288068381519362e-01 7.6178033368952768e+01 7.6180027814737201e+01 0 2 0 0 -16 0 P 102 21 -9.8001475540509453e-01 4.2472289595602836e-01 6.2706067873548307e+01 6.2715163769388404e+01 0 2 0 0 -16 0 P 103 21 -2.6932686676296265e+00 -2.1242469401992845e+00 1.1725392507359837e+02 1.1730408802059713e+02 0 2 0 0 -16 0 P 104 21 -1.2035735788013651e+00 -1.6285059875496966e+00 2.8244039635025892e+01 2.8316539266230741e+01 0 2 0 0 -16 0 P 105 21 -7.7943200561397766e-02 -1.1494378125527345e+00 1.6012721438907509e+01 1.6054112566800068e+01 0 2 0 0 -16 0 P 106 21 -1.3048008951647500e-01 -4.5618700806913826e-01 4.1816065968729745e+00 4.2084397787188159e+00 0 2 0 0 -16 0 P 107 21 4.5078914157710631e-01 -1.0618204468673818e+00 7.1783129274897153e+00 7.2704092041999564e+00 0 2 0 0 -16 0 P 108 21 1.6852502755855306e-01 -2.5544015500002959e+00 7.7374538140314035e+00 8.1499422996624116e+00 0 2 0 0 -16 0 P 109 21 -6.1841840164261586e-01 -2.9193456876440655e+00 6.5655863541583424e+00 7.2119307218917763e+00 0 2 0 0 -16 0 P 110 21 -7.6331178485123041e-01 -2.7973559669505965e+00 -2.4656967016844802e-02 2.8997333071766009e+00 0 2 0 0 -16 0 P 111 21 -7.9835234032516877e-01 -2.1887585637789819e-01 5.9428990327508990e-01 1.0190454302642979e+00 0 2 0 0 -16 0 P 112 21 -6.1861057635151662e-01 4.6885653918289482e-03 1.2353441638810958e+00 1.3815846811015504e+00 0 2 0 0 -16 0 P 113 21 -7.2845783888237658e-01 -2.4189853766590519e-01 1.3583584389399499e+00 1.5602254241594269e+00 0 2 0 0 -16 0 P 114 21 -3.1230043327422061e+00 -1.9838298095535978e+00 1.4321088123837005e+00 3.9673256012214462e+00 0 2 0 0 -16 0 P 115 21 -2.9951437503593041e+00 -1.5884736242319581e+00 -3.9819897425484939e-02 3.3905339055122257e+00 0 2 0 0 -16 0 P 116 21 -1.3176139926478319e+00 -1.4151625917406427e+00 -8.7304708668087316e-01 2.1215567421696302e+00 0 2 0 0 -16 0 P 117 21 -6.7034945795689245e+00 4.5719806421128245e-01 -2.8391443696213758e+00 7.2942861473746188e+00 0 2 0 0 -16 0 P 118 21 -1.5000973411483665e+00 5.4098088102938513e-01 1.0400672039667984e+00 1.9038624255252905e+00 0 2 0 0 -16 0 P 119 21 5.2962004245388072e-01 1.5288068381519362e-01 1.0413222848572889e+00 1.1782283283782717e+00 0 2 0 0 -16 0 P 120 21 1.3176139926478319e+00 1.4151625917406427e+00 2.8761081172946494e+00 3.4656586238479443e+00 0 2 0 0 -16 0 P 121 21 7.1950735712823854e-01 1.8708981320067051e+00 4.6983283372589195e+00 5.1080563644108317e+00 0 2 0 0 -16 0 P 122 21 6.1841840164261586e-01 2.9193456876440655e+00 1.7886247898559642e+01 1.8133474141823609e+01 0 2 0 0 -16 0 P 123 21 2.6932686676296265e+00 2.1242469401992845e+00 3.9665041331722932e+01 3.9813083591029091e+01 0 2 0 0 -16 0 P 124 21 1.6747833430591663e-01 3.1423574583648045e-01 4.3827651121632742e+00 4.3972062863616994e+00 0 2 0 0 -16 0 P 125 21 3.8924681237583068e+00 5.1646289511019789e+00 1.1545520685260300e+02 1.1563619454856850e+02 0 2 0 0 -16 0 P 126 21 -1.6852502755855306e-01 2.5544015500002959e+00 5.3442280102114950e+01 5.3503557549722515e+01 0 2 0 0 -16 0 P 127 21 -8.5412010991020221e-02 1.5499732831609971e+00 3.3401541580189374e+01 3.3437593997224951e+01 0 2 0 0 -16 0 P 128 21 7.6331178485123041e-01 2.7973559669505965e+00 9.9329704189232402e+01 9.9372018091649622e+01 0 2 0 0 -16 0 P 129 21 1.2035735788013651e+00 1.6285059875496966e+00 1.0541871028942838e+02 1.0543815770487222e+02 0 2 0 0 -16 0 P 130 21 3.1230043327422061e+00 1.9838298095535978e+00 2.5101331001574178e+02 2.5104057548897248e+02 0 2 0 0 -16 0 P 131 21 4.3328167447430943e-01 3.0636763644933573e-01 6.9214498612448395e+01 6.9216532796079292e+01 0 2 0 0 -16 0 P 290 92 -6.5767370705294574e+00 -1.1193782383593698e-02 4.2320216645314913e+03 4.2589827313474561e+03 4.7841747800027940e+02 2 0 0 -17 0 V -17 0 0 0 0 0 0 63 0 P 291 -213 -4.4699857485479233e-01 -9.2740850121843699e-01 2.8179349585769115e-01 1.4680986952077764e+00 1.0079741814692644e+00 2 0 0 -126 0 P 292 111 -9.5022453818346864e-01 -4.7472680253593654e-03 1.1428103365339393e+00 1.4923753801267650e+00 1.3497999999999999e-01 2 0 0 -127 0 P 293 211 -1.2402191760746450e+00 -1.9309693980331288e+00 2.0411917204868710e+00 3.0745292071352726e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 223 -4.6150718141631991e-01 -7.8131785182304225e-01 9.4423685479434791e-02 1.1996042105891433e+00 7.7890176890765428e-01 2 0 0 -128 0 P 295 313 -1.0280956559680203e+00 -5.3091364743433711e-01 7.6737852617764235e-01 1.6666563836735053e+00 9.2196730958788897e-01 2 0 0 -129 0 P 296 333 -1.4829780776224801e+00 -7.6065114605031858e-01 1.0293205144100415e+00 2.2074546775855528e+00 1.0176154909947341e+00 2 0 0 -130 0 P 297 -313 -2.1858407402863400e+00 -8.7042256996599687e-01 -4.5811241666154690e-01 2.5511602526282808e+00 8.7350813166745322e-01 2 0 0 -131 0 P 298 113 -2.0787395083113469e+00 -1.0525250807765831e+00 -6.2707389536587466e-01 2.5296349158365690e+00 7.5951573261644856e-01 2 0 0 -132 0 P 299 221 -2.3956329630750810e+00 -1.5392509257936760e-01 -2.5994347683589381e-01 2.4758881924567984e+00 5.4744999999999999e-01 2 0 0 -133 0 P 300 221 -1.3777896448502884e+00 3.8708769317583165e-02 -7.9099434763396981e-02 1.4851804258603245e+00 5.4744999999999999e-01 2 0 0 -134 0 P 301 -213 -1.6537212264590628e-01 -5.1432807805691561e-01 -2.0493240387929654e-01 7.4965585091612319e-01 4.7760369955319265e-01 2 0 0 -135 0 P 302 223 -8.9278820532611236e-01 2.5318316547386294e-01 -6.6900772688345309e-02 1.2144109863926327e+00 7.8047795333119019e-01 2 0 0 -136 0 P 303 111 -1.1193184540066470e+00 -1.6268462685918808e-01 -3.3747077078209904e-02 1.1396045607610854e+00 1.3497999999999999e-01 2 0 0 -137 0 P 304 323 -6.1918594821322126e-01 2.8828195420112248e-02 -5.9549080880368666e-01 1.2236067648053119e+00 8.7085125491771953e-01 2 0 0 -138 0 P 305 -321 -5.5231800197183234e-01 1.6753204609985153e-01 -7.4376347733368930e-02 7.6308254001432552e-01 4.9359999999999998e-01 1 0 0 0 0 P 306 223 -5.3878572717427586e-01 1.1864373117302802e-02 4.5187118767126994e-01 1.0425686701901615e+00 7.6963045590624724e-01 2 0 0 -139 0 P 307 211 4.0227595634052921e-01 3.8286689268120472e-01 5.3426995492068641e-01 7.8315845918434712e-01 1.3957000000000000e-01 1 0 0 0 0 P 308 -213 -4.6783159062710827e-01 7.6791249294715525e-01 1.3262861560913810e+00 1.6814156814772250e+00 5.0947790144898819e-01 2 0 0 -140 0 P 309 223 5.6515724753616536e-01 1.8216449980945959e-01 9.7219896207090273e-01 1.3802280385439698e+00 7.7927658574969938e-01 2 0 0 -141 0 P 310 221 3.9236730587279112e-01 1.0985880437150304e+00 4.5135198164944317e+00 4.6938694516251109e+00 5.4744999999999999e-01 2 0 0 -142 0 P 311 211 -3.5772964379731920e-01 -5.4766893244402634e-02 1.8854168369107696e+00 1.9249016453973986e+00 1.3957000000000000e-01 1 0 0 0 0 P 312 -211 8.6958204480712786e-01 1.5207333984327387e+00 6.5207482376719650e+00 6.7534021326855527e+00 1.3957000000000000e-01 1 0 0 0 0 P 313 321 -6.8595138983778892e-02 4.1570227928883952e-01 1.3351569831299530e+00 1.4845197229066436e+00 4.9359999999999998e-01 1 0 0 0 0 P 314 -313 1.2099675511348194e+00 1.1001003607405728e+00 1.1971600109139043e+01 1.2115077944797656e+01 8.8411659688296385e-01 2 0 0 -143 0 P 315 -211 -9.1517834559755568e-02 3.9745657806570128e-01 5.6560206335866372e+00 5.6724242117412187e+00 1.3957000000000000e-01 1 0 0 0 0 P 316 111 1.6217923766916038e+00 1.1506940015225788e+00 1.4270237101670613e+01 1.4408754066071484e+01 1.3497999999999999e-01 2 0 0 -144 0 P 317 223 8.3519806846155076e-01 1.1896405933524292e+00 2.1392424129495634e+01 2.1456106955604216e+01 7.8480252241364534e-01 2 0 0 -145 0 P 318 113 1.4693653949231567e-01 3.9305428382579026e+00 6.4550354957935525e+01 6.4674716348733526e+01 7.7450128705528898e-01 2 0 0 -146 0 P 319 2224 2.3591779260387469e+00 2.4021116607764612e+00 6.1311561959016402e+01 6.1418260434368207e+01 1.3263574224263728e+00 2 0 0 -147 0 P 320 113 1.0878235137896282e+00 2.7555573497819554e+00 7.8341921172224090e+01 7.8403008663996616e+01 8.9369922606175156e-01 2 0 0 -148 0 P 321 -2224 8.7689383875958082e-01 2.0732201805966120e+00 8.5871055205944430e+01 8.5909665178243145e+01 1.2511051649640936e+00 2 0 0 -149 0 P 322 211 3.0302135032978206e-01 4.1462705896410290e-01 5.3805010150583321e+00 5.4067558197799768e+00 1.3957000000000000e-01 1 0 0 0 0 P 323 111 1.3074595733007730e+00 9.6599073970634997e-01 1.0654152913790948e+02 1.0655401559438963e+02 1.3497999999999999e-01 2 0 0 -150 0 P 324 -213 2.3990530380313682e-01 6.4289910441948950e-01 4.1686662934041834e+01 4.1703014425876987e+01 9.4481311127133905e-01 2 0 0 -151 0 P 325 211 3.6487086141797492e-01 -2.4249175637197043e-02 3.1820604392839151e+01 3.1823011524343595e+01 1.3957000000000000e-01 1 0 0 0 0 P 326 -213 1.3183168323731649e+00 3.2366486385939650e+00 2.0279972232792684e+02 2.0283156289338834e+02 8.3766091593375924e-01 2 0 0 -152 0 P 327 323 2.4195586392651540e+00 -8.4742581400334172e-01 5.2045648847928669e+02 5.2046326915263899e+02 6.9695218156296945e-01 2 0 0 -153 0 P 328 -323 1.7402820993795560e+00 7.0710517923089722e-01 2.9121513038154848e+02 2.9122257364079235e+02 8.9813991367298174e-01 2 0 0 -154 0 P 329 211 -2.4198597928934795e-01 -1.4358526237314711e-02 2.0377211790297503e+02 2.0377230988981378e+02 1.3957000000000000e-01 1 0 0 0 0 P 330 -211 3.1247336880567866e-01 2.5864987028487002e-01 9.2023679163442679e+01 9.2024679004725385e+01 1.3957000000000000e-01 1 0 0 0 0 P 331 223 1.9684772190872746e-01 -9.4631363231885465e-02 2.0745379339699247e+02 2.0745539058645292e+02 7.8420944598968401e-01 2 0 0 -155 0 P 332 213 5.4327761041638289e-01 -5.6173411314641675e-01 2.3332670605799788e+02 2.3332933355930504e+02 7.8450212124042207e-01 2 0 0 -156 0 P 333 -211 4.6110725994195317e-01 -3.3331054819824335e-01 9.7529340859359365e+01 9.7531100291510683e+01 1.3957000000000000e-01 1 0 0 0 0 P 334 323 9.6731723451003254e-02 -4.3002411429429749e-01 3.0388215232843402e+02 3.0388406194932031e+02 9.8301845942819754e-01 2 0 0 -157 0 P 335 -313 7.5062737570757565e-01 8.4873959499639495e-02 1.7137285532421507e+02 1.7137676421563731e+02 8.7699829055562384e-01 2 0 0 -158 0 P 336 111 1.8586527808509090e-01 -1.3727603861894995e+00 2.7924983377551246e+02 2.7925330239807590e+02 1.3497999999999999e-01 2 0 0 -159 0 P 337 313 -1.1335663076022156e+00 -3.4523493041404907e-01 2.4675256190082243e+02 2.4675705515162778e+02 9.0183299638085912e-01 2 0 0 -160 0 P 338 -323 -4.0578642602552395e-01 -2.4886084862878524e-01 1.4532254932861267e+02 1.4532636631132567e+02 9.3957838471414812e-01 2 0 0 -161 0 P 339 211 -9.9401134701635496e-01 -1.5356764862528114e+00 2.5845455577540235e+02 2.5846106716810152e+02 1.3957000000000000e-01 1 0 0 0 0 P 340 -211 -1.7998458507093926e-01 -4.0097701240310196e-01 7.4351233099314001e+01 7.4352663168098857e+01 1.3957000000000000e-01 1 0 0 0 0 P 341 223 -9.3088610511745928e-01 -1.8880768184130708e-01 7.5773206794684782e+01 7.5783149061806739e+01 7.7757089228705201e-01 2 0 0 -162 0 P 342 211 -5.9641105930240923e-01 -6.3477470643968414e-01 5.4328456406388412e+01 5.4335617235523699e+01 1.3957000000000000e-01 1 0 0 0 0 P 343 -211 -1.3132754532512787e+00 -4.1811854536580839e-01 7.6897180519295745e+01 7.6909657177341188e+01 1.3957000000000000e-01 1 0 0 0 0 P 344 213 -8.8411796774091977e-01 -1.5901428527233690e+00 2.4578544944298198e+01 2.4658426684921061e+01 7.8925035558502010e-01 2 0 0 -163 0 P 345 223 -1.0368362197858654e+00 -8.2531139232246364e-01 6.1122733739943548e+01 6.1142091990601919e+01 7.8145051170051727e-01 2 0 0 -164 0 P 346 -211 9.3072638049641235e-02 -3.3977381079973606e-01 8.4007999466117429e+00 8.4093417272905935e+00 1.3957000000000000e-01 1 0 0 0 0 P 347 113 -1.2378786196585061e+00 -9.2896968637229960e-01 2.4546050984450666e+01 2.4602509481059158e+01 6.1605655515374969e-01 2 0 0 -165 0 P 348 321 5.6117463619867425e-01 -1.1158419992718869e+00 8.9369665009651040e+00 9.0373132920699533e+00 4.9359999999999998e-01 1 0 0 0 0 P 349 -323 -4.5550595464659904e-01 -2.2686294504628117e+00 8.7539047117956184e+00 9.0990746321040366e+00 8.9896952071578995e-01 2 0 0 -166 0 P 350 211 -5.7026629191437569e-02 -2.4048327328797384e-01 9.9685174788077702e-01 1.0364735564987639e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 223 2.5482288329518077e-01 -5.7623163496713725e-01 3.4403092048234130e+00 3.5846155550993184e+00 7.8534301682737484e-01 2 0 0 -167 0 P 352 113 1.3520914897795053e-01 -1.4270440881347084e+00 4.1315133934921517e+00 4.4410675662734462e+00 7.7391334408533685e-01 2 0 0 -168 0 P 353 221 -2.3979236251412472e-01 -1.6813634577870407e+00 2.8612430060582068e+00 3.3720759921031886e+00 5.4744999999999999e-01 2 0 0 -169 0 V -18 0 0 0 0 0 5 1 0 P 132 21 -7.6021906403713668e-01 1.2152127243517128e+00 -2.3644665766101166e+01 2.3688074936165417e+01 0 2 0 0 -18 0 P 133 21 7.9898599201002896e-01 5.9019638732865365e-01 -5.7538644117288051e+01 5.7547217806310769e+01 0 2 0 0 -18 0 P 134 21 7.6021906403713668e-01 -1.2152127243517128e+00 -9.2510732410734676e+01 9.2521836807108983e+01 0 2 0 0 -18 0 P 135 21 -6.7594363433726112e-01 9.1472709041225242e-01 -1.6754337877707595e+01 1.6792899188857252e+01 0 2 0 0 -18 0 P 136 21 -6.6743339796178047e-01 5.4393596564277058e-01 -8.5502396154467100e+00 8.5934818994973661e+00 0 2 0 0 -18 0 P 354 92 -5.4439104028901264e-01 2.0488594433836766e+00 -1.9899861978727822e+02 1.9914351063793981e+02 7.2933507620325448e+00 2 0 0 -19 0 V -19 0 0 0 0 0 0 6 0 P 355 113 -5.2022745828316752e-01 1.2804566332172678e+00 -1.9225434426751207e+01 1.9290474764993959e+01 7.7128591563463211e-01 2 0 0 -170 0 P 356 313 -9.3998285242733981e-01 1.3281305729148589e+00 -3.5355904680403526e+01 3.5400619386942608e+01 7.1858098209495125e-01 2 0 0 -171 0 P 357 -311 6.4139340939898065e-02 1.6384061357925953e-01 -2.0831480748975281e+01 2.0838167463228189e+01 4.9767000000000000e-01 2 0 0 -172 0 P 358 313 -1.3983468864296544e-01 -2.4612330625252413e-01 -3.2408158235364354e+01 3.2420749031036742e+01 8.5797267032633229e-01 2 0 0 -173 0 P 359 -323 9.4790945552731287e-01 -1.3285716835224981e-01 -6.6073266012655480e+01 6.6086333674991891e+01 9.0046302543302947e-01 2 0 0 -174 0 P 360 211 4.3605162597249295e-02 -3.4458790172293563e-01 -2.5104375683128321e+01 2.5107166316746369e+01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 4.0800468032560938e-05 -2.2559594187529415e-05 1.2346344124580220e-02 1.2346450789467443e-02 0 2 0 P 361 22 6.0199045181099420e-02 -9.8772575796044176e-02 3.5953170215850626e+01 3.5953356290014128e+01 0 1 0 0 0 0 P 362 22 1.9651052322361584e-01 -4.3168533375656112e-02 4.1727915919428781e+01 4.1728400962497105e+01 0 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 363 211 -2.3281742677854995e-02 -5.1448109898321007e-02 2.6735629570988895e-02 1.5291673009446907e-01 1.3957000000000000e-01 1 0 0 0 0 P 364 -211 -1.5538517866183374e+00 7.8576202022894392e-01 -5.1859044100580798e-01 1.8221671596244591e+00 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 365 -211 -1.4723047043520160e-01 6.2876253179513064e-01 -3.6299277408188058e-01 7.5383199172604276e-01 1.3957000000000000e-01 1 0 0 0 0 P 366 111 2.6354843704188530e-01 6.3310441780998872e-02 2.4158535331422012e-01 3.8736168375522428e-01 1.3497999999999999e-01 2 0 0 -175 0 V -23 0 0 0 0 0 0 2 0 P 367 211 1.6660163942762424e-01 9.3337429240648528e-02 -6.7132316618680438e-02 2.4587499830567552e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 -211 -6.9498738799943716e-01 4.6654026960959205e-01 -2.5466137567420832e-02 8.4899682078808392e-01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 369 -211 -2.9895425737450998e-01 -8.7547177396875231e-02 2.2564531104861593e-01 4.0918669036361793e-01 1.3957000000000000e-01 1 0 0 0 0 P 370 111 6.3537782583381594e-02 -2.1323870565307702e-02 -7.0484837267330580e-01 7.2077915212061072e-01 1.3497999999999999e-01 2 0 0 -176 0 V -25 0 0 0 0 0 0 2 0 P 371 -211 1.9367177826270371e-02 1.3718701290450705e-01 -3.2554637540201437e-01 3.8033615595155429e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 111 -1.7670660336142735e-01 -6.4432217753044230e-01 1.4836125319467047e-01 6.9757218549666722e-01 1.3497999999999999e-01 2 0 0 -177 0 V -26 0 0 0 0 0 0 3 0 P 373 -211 2.1509537759403227e-02 3.5878125010707818e-03 -1.0525995572794851e+00 1.0620363202349221e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 211 -5.6084275574923237e-02 -1.3249692370735108e-01 -4.3787130800611263e-01 4.8157237050484891e-01 1.3957000000000000e-01 1 0 0 0 0 P 375 111 4.9584634939725085e-02 -1.6826316700563426e-01 -8.7032371937095343e-01 8.9802789839323027e-01 1.3497999999999999e-01 2 0 0 -178 0 V -27 0 0 0 0 0 0 3 0 P 376 211 4.5278069911441088e-01 1.2326837401975693e-01 -4.3291166472066935e+00 4.3567116250156070e+00 1.3957000000000000e-01 1 0 0 0 0 P 377 -211 -9.4555710906027657e-02 -9.6910879320181526e-02 -1.8550313283010171e+00 1.8651953020726251e+00 1.3957000000000000e-01 1 0 0 0 0 P 378 111 2.1515182169598610e-01 6.9131057343566768e-02 -3.3298212756757826e+00 3.3402093853247639e+00 1.3497999999999999e-01 2 0 0 -179 0 V -28 0 0 0 0 0 0 2 0 P 379 211 -4.9209432246828161e-01 2.2122941232098406e-01 -6.3519585326981520e+00 6.3763591697063511e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 111 -3.4659447776841878e-01 1.7624682394641145e-01 -2.5141604256847938e+01 2.5144973153362585e+01 1.3497999999999999e-01 2 0 0 -180 0 V -29 0 0 0 0 0 0 2 0 P 381 -211 8.3878241036313729e-03 2.7034421156664162e-01 -5.3662698350469817e+00 5.3748942385646945e+00 1.3957000000000000e-01 1 0 0 0 0 P 382 111 4.3594839962901305e-01 -7.4307106745779428e-01 -6.7670790796562663e+00 6.8230333788684829e+00 1.3497999999999999e-01 2 0 0 -181 0 V -30 0 0 0 0 0 0 3 0 P 383 111 2.2212930135492368e-01 -1.1529875738764742e-01 -7.8640465460084270e+00 7.8691856572432339e+00 1.3497999999999999e-01 2 0 0 -182 0 P 384 111 7.8776826410462783e-02 -9.8400367687320689e-02 -2.6970286762794791e+00 2.7033445399752773e+00 1.3497999999999999e-01 2 0 0 -183 0 P 385 111 -1.2854793306886329e-02 -1.3804566988943504e-01 -2.2551929785561780e+00 2.2634789205148942e+00 1.3497999999999999e-01 2 0 0 -184 0 V -31 0 0 0 0 0 0 2 0 P 386 -211 -2.6073149312540606e-01 -8.0340060369667954e-02 -2.1275257870720836e+01 2.1277464902741034e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 4.2103142141068101e-01 -1.2481636060151677e-01 -1.0839401381521711e+02 1.0839498741711060e+02 1.3497999999999999e-01 2 0 0 -185 0 V -32 0 0 0 0 0 0 2 0 P 388 211 1.1458156765124490e-01 -2.6884012890922265e-01 -2.5581793037710418e+02 2.5581813537386356e+02 1.3957000000000000e-01 1 0 0 0 0 P 389 111 -3.1112226496894663e-01 -2.4469367263100827e-01 -6.6535615589808728e+01 6.6536929847809958e+01 1.3497999999999999e-01 2 0 0 -186 0 V -33 0 0 0 0 0 0 2 0 P 390 211 5.0095167013417641e-01 -7.2361607682835324e-02 -5.3262923172229226e-01 7.4790538269338891e-01 1.3957000000000000e-01 1 0 0 0 0 P 391 -211 -6.7714152628097256e-03 -5.9382581293748937e-01 -4.2062026047763379e-01 7.4099671834617731e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 392 -211 2.2188429411416508e-01 -3.4822449715552657e-03 -8.6974978177339388e-02 2.7620499223137135e-01 1.3957000000000000e-01 1 0 0 0 0 P 393 111 -3.2202643068652348e-01 -6.0318911497241567e-01 2.4875524222774195e-01 7.4002493297029592e-01 1.3497999999999999e-01 2 0 0 -187 0 V -35 0 -1.2085397514903749e-05 -5.6331272761930131e-06 -1.5003904126693902e-05 2.2714955710657314e-05 0 2 0 P 394 22 -1.6346371622874326e-01 -5.4357013783528189e-02 -2.0191174450860819e-01 2.6541180087042709e-01 0 1 0 0 0 0 P 395 22 1.0047988370622409e-02 -1.7151624648003582e-02 1.1447602185479962e-02 2.2938785803942957e-02 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 396 211 9.9262112689813087e-01 3.4861282732781324e-01 3.5864760375134523e+01 3.5880459085073888e+01 1.3957000000000000e-01 1 0 0 0 0 P 397 111 -4.7437996163135931e-02 -8.1228424250873565e-02 9.5339597239183327e+00 9.5353791764188998e+00 1.3497999999999999e-01 2 0 0 -188 0 V -37 0 0 0 0 0 0 2 0 P 398 211 -1.5272748363901121e+00 3.8996458413746182e-01 4.0040226820840871e+01 4.0071484679907186e+01 1.3957000000000000e-01 1 0 0 0 0 P 399 -211 -3.7519282432105706e-02 2.2228560650135104e-01 1.3609551232639211e+01 1.3612133672798814e+01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 1.2234007402048305e-04 4.8211608911734311e-04 1.6520105519994392e-02 1.6527807761614912e-02 0 2 0 P 400 22 9.3437535508100217e-02 5.5371705504399860e-01 1.7073862920553562e+01 1.7083094806853417e+01 0 1 0 0 0 0 P 401 22 1.0199153970891095e-01 2.1642716955136665e-01 9.3157642732260140e+00 9.3188361391434729e+00 0 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 402 211 -4.7410124486037830e-01 3.6793572146221959e-01 1.1404621705827996e+01 1.1421253202842898e+01 1.3957000000000000e-01 1 0 0 0 0 P 403 -211 -4.1129446253381469e-02 2.1359106104870371e-01 3.2509302512213476e+00 3.2611869090739209e+00 1.3957000000000000e-01 1 0 0 0 0 P 404 111 -6.5630125384440696e-01 4.1447539773966796e-01 2.0687879250134820e+01 2.0702876337834994e+01 1.3497999999999999e-01 2 0 0 -189 0 V -40 0 0 0 0 0 0 1 0 P 405 310 -2.9572052526908682e-01 1.3696794269130943e+00 5.3910373938877470e+01 5.3930877667808019e+01 4.9767000000000000e-01 2 0 0 -190 0 V -41 0 0 0 0 0 0 2 0 P 406 211 -3.8163952721507033e-01 1.0928269296370734e+00 3.3561267587606849e+01 3.3581513981634643e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 -211 -3.3978724921092246e-02 -1.2834020375788468e-04 1.7300181956268008e+00 1.7359715758958389e+00 1.3957000000000000e-01 1 0 0 0 0 V -42 0 -7.5738913593105181e+01 -1.1296981540881736e+00 2.9358684092012963e+03 2.9398553888834113e+03 0 2 0 P 408 2212 -4.5848284669655504e-01 3.1064463882888249e-02 1.8874741440551681e+01 1.8903634215732442e+01 9.3827000000000005e-01 1 0 0 0 0 P 409 -211 -1.7686325017290672e-01 -4.0541089289697581e-02 5.7531868755234070e+00 5.7577394174083025e+00 1.3957000000000000e-01 1 0 0 0 0 V -43 0 -1.0603924890689960e+01 2.7966332735820195e+01 6.5857919744272601e+02 6.5964374495648917e+02 0 2 0 P 410 -2212 -4.9422401245662367e-01 1.1616805740029168e+00 2.6164745737814279e+01 2.6211982550884528e+01 9.3827000000000005e-01 1 0 0 0 0 P 411 211 -3.0285344827148598e-02 2.2163771239195565e-01 6.4110179659090862e+00 6.4164376114612631e+00 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 412 2212 -7.1070989260967365e-01 -5.8556626203174045e-01 1.0237277318284461e+01 1.0321346515016563e+01 9.3827000000000005e-01 1 0 0 0 0 P 413 111 -1.1445477873914650e-01 4.6752488391454100e-02 8.0179377590444778e-01 8.2242236778077227e-01 1.3497999999999999e-01 2 0 0 -191 0 V -45 0 0 0 0 0 0 2 0 P 414 -211 -6.9591306999472302e-02 -2.8164079897353556e-01 9.0034683416494357e+00 9.0092223001566563e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 111 7.8233131974364700e-01 -7.3125992817854535e-01 1.6120912714481754e+01 1.6157005592768453e+01 1.3497999999999999e-01 2 0 0 -192 0 V -46 0 0 0 0 0 0 3 0 P 416 111 1.5436864476659573e-01 -1.8301303128775867e-01 4.0189684625377815e+00 4.0283558124105063e+00 1.3497999999999999e-01 2 0 0 -193 0 P 417 111 1.0507182989210334e-01 6.8963114172339492e-03 1.6334007872208747e+00 1.6423475212761189e+00 1.3497999999999999e-01 2 0 0 -194 0 P 418 221 2.8602201941180838e-01 -9.1152122987844045e-02 1.4684822891339410e+01 1.4698089745188643e+01 5.4744999999999999e-01 2 0 0 -195 0 V -47 0 0 0 0 0 0 2 0 P 419 211 5.6765330756665899e-01 -1.6617380937653852e+00 7.8280087608196339e+01 7.8299905488459288e+01 1.3957000000000000e-01 1 0 0 0 0 P 420 111 4.4048116290222289e-01 -1.5649777233792264e-01 9.9631604879242133e+00 9.9750339205514820e+00 1.3497999999999999e-01 2 0 0 -196 0 V -48 0 0 0 0 0 0 2 0 P 421 -211 1.4080228780313453e-01 -6.7165618511619973e-01 2.1016044297974148e+01 2.1027708982068567e+01 1.3957000000000000e-01 1 0 0 0 0 P 422 211 1.2358464259105821e+00 -1.1235083813096562e+00 3.8778307048129868e+01 3.8814509719629946e+01 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 3 0 P 423 211 8.4818204535950525e-01 -7.2125986359203975e-01 2.5854222786718527e+01 2.5878561479786207e+01 1.3957000000000000e-01 1 0 0 0 0 P 424 -211 3.4883403779660968e-02 -3.9328160766120272e-02 2.8206877214711885e+00 2.8246278627541055e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 111 3.2239983529976074e-01 -2.0281324073238552e-01 1.6306798309560484e+01 1.6311804485509946e+01 1.3497999999999999e-01 2 0 0 -197 0 V -50 0 0 0 0 0 0 2 0 P 426 211 1.0411318849275433e+00 -4.8804964531190748e-01 1.0983449913903570e+01 1.1044356018085898e+01 1.3957000000000000e-01 1 0 0 0 0 P 427 111 2.7301711153168258e+00 -9.8015964742980299e-01 4.3275088233207050e+01 4.3372410913455290e+01 1.3497999999999999e-01 2 0 0 -198 0 V -51 0 0 0 0 0 0 3 0 P 428 -211 3.9099541813908101e-01 7.1630267422298208e-02 8.0845473100368519e+00 8.0955168646196292e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 211 4.3684226835677131e-01 -3.9151348757916711e-02 5.8592748968240560e+00 5.8773247397931998e+00 1.3957000000000000e-01 1 0 0 0 0 P 430 221 1.3507624200369068e+00 -3.6596800025068971e-01 2.3677753321068035e+01 2.3725391367234383e+01 5.4744999999999999e-01 2 0 0 -199 0 V -52 0 0 0 0 0 0 2 0 P 431 321 1.7000864120819792e+00 -6.9347800109898894e-01 3.0692044884819069e+01 3.0750877478834688e+01 4.9359999999999998e-01 1 0 0 0 0 P 432 -211 9.9395321468668407e-01 -2.9354661906491872e-02 1.5905687479226964e+01 1.5937351682789053e+01 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 433 -311 7.1889759292124167e-01 -2.2968656018423947e-01 1.3786410642136589e+01 1.3816018365924180e+01 4.9767000000000000e-01 2 0 0 -200 0 P 434 -211 -9.1881852249208029e-02 -1.8391528809289892e-01 3.0774762670661944e+00 3.0874920351674948e+00 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 3 0 P 435 -211 3.0201264424183000e-01 -7.0136357694458487e-02 4.8667589102075697e+00 4.8786220207080362e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 211 4.6728328494277627e-01 -1.7418364318465582e-01 9.8699753908756822e+00 9.8835513663526626e+00 1.3957000000000000e-01 1 0 0 0 0 P 437 221 2.0559166845685262e+00 -8.6977510363035981e-01 3.0434318571289154e+01 3.0520988688867835e+01 5.4744999999999999e-01 2 0 0 -201 0 V -55 0 1.1158991147753262e-03 -2.7958352709752044e-04 1.1928437150980910e-02 1.1983978474859087e-02 0 2 0 P 438 22 6.5640137936880560e-01 -2.2499929791129475e-01 7.3995695951244915e+00 7.4320332109045850e+00 0 1 0 0 0 0 P 439 22 1.5338279406442052e+00 -3.2375285211163229e-01 1.6012952598040822e+01 1.6089502632706015e+01 0 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 440 -211 -1.3184400216182249e-01 -1.6803026409107416e-01 7.3272567981454619e+00 7.3316975511422626e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 211 2.7493149322495680e-01 3.1391510816039053e-01 2.2426766808036405e+01 2.2431082882198123e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 -211 -1.2092540600166614e-01 1.8725196564877009e-01 3.9963668205076996e+00 4.0050110863031101e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 -8.3697911707993100e-01 1.4736969477163502e+00 3.4662220620307650e+01 3.4703891347620043e+01 1.3497999999999999e-01 2 0 0 -202 0 V -58 0 0 0 0 0 0 2 0 P 444 311 -7.5764483036665731e-01 7.1919842623218627e-02 1.8527276952714814e+01 1.8549578562982013e+01 4.9767000000000000e-01 2 0 0 -203 0 P 445 211 -1.6230563674229779e+00 5.2076342391230324e-01 3.6568034991980262e+01 3.6608006903887983e+01 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 446 -311 -1.2030700090314150e+00 1.0680340938334749e+00 1.8673363419817409e+01 1.8749140009869691e+01 4.9767000000000000e-01 2 0 0 -204 0 P 447 111 -7.4341092920179630e-01 6.9638030538474616e-01 1.8595848545324067e+01 1.8624215636112456e+01 1.3497999999999999e-01 2 0 0 -205 0 V -60 0 0 0 0 0 0 3 0 P 448 211 -1.4308452458378493e+00 1.2273382406137279e+00 3.0196230942145309e+01 3.0255338705271228e+01 1.3957000000000000e-01 1 0 0 0 0 P 449 -211 -4.5309170166870311e-01 2.8459421730065149e-01 1.3554606174128073e+01 1.3565880519865008e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -1.1281395905647975e+00 9.5946804943117692e-01 2.8527686116856977e+01 2.8566420368257436e+01 1.3497999999999999e-01 2 0 0 -206 0 V -61 0 0 0 0 0 0 3 0 P 451 -211 -2.1239516802995795e-01 1.3646255834776908e-01 2.4186192425163298e+00 2.4357611874737550e+00 1.3957000000000000e-01 1 0 0 0 0 P 452 211 -6.7461473026601648e-01 -5.7836594497672006e-02 7.5434987322020444e+00 7.5751107591631177e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -4.4086341722254307e-01 3.0854871249264837e-01 9.3496741634636233e+00 9.3661192296471008e+00 1.3497999999999999e-01 2 0 0 -207 0 V -62 0 0 0 0 0 0 2 0 P 454 -211 -9.4433990527022993e-01 1.1262577966238592e-01 1.0779708693223510e+01 1.0822479462608781e+01 1.3957000000000000e-01 1 0 0 0 0 P 455 111 -7.3750646624829330e-01 4.7572375964112973e-01 1.8512352608551950e+01 1.8533635573923572e+01 1.3497999999999999e-01 2 0 0 -208 0 V -63 0 0 0 0 0 0 2 0 P 456 311 -1.0300497241933897e+00 8.1750518361043256e-01 3.3657040177512969e+00 3.6475959375385902e+00 4.9767000000000000e-01 2 0 0 -209 0 P 457 211 4.7568129241986397e-02 2.0984108569399304e-01 8.7339098580308627e-01 9.1026787658738284e-01 1.3957000000000000e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 458 22 1.3632217417176662e-01 3.7447906041998180e-01 1.0144640458650391e+00 1.0899337604720818e+00 0 1 0 0 0 0 P 459 111 -4.3129291802352349e-01 -1.2013112997379133e-01 1.6725510065808091e+00 1.7366898224900449e+00 1.3497999999999999e-01 2 0 0 -210 0 V -65 0 0 0 0 0 0 2 0 P 460 -211 2.9481687894592046e-01 4.7367455066093592e-03 4.1971371192295631e-01 5.3158142720147239e-01 1.3957000000000000e-01 1 0 0 0 0 P 461 211 -4.1710402648094841e-01 -1.1266218334041719e-02 1.0332178094021318e+00 1.1229966710315351e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 462 -211 6.8297065535658985e-01 3.0606836369975426e-01 -1.7752317133654108e-01 7.8174229807362849e-01 1.3957000000000000e-01 1 0 0 0 0 P 463 211 4.8045319728888769e+00 2.8997015203273633e+00 -1.8090537120777184e+00 5.8977920871782583e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 1.3058922813257191e-05 4.2640443485461332e-05 -1.7764289409656655e-04 1.8584627571264963e-04 0 2 0 P 464 22 4.6744902833035382e-02 1.9926161305502355e-01 -5.9846788059283651e-01 6.3249828496166016e-01 0 1 0 0 0 0 P 465 22 9.1897358619360599e-03 -1.6621908826789759e-02 -1.6242114831950782e-01 1.6352788300374288e-01 0 1 0 0 0 0 V -68 0 -1.1852315967735319e-05 -3.9463268348694507e-05 2.2518204900844274e-06 7.4574528857061233e-05 0 2 0 P 466 22 -7.3958765199503007e-02 -6.6496269052321588e-02 -2.4457620409032862e-02 1.0241986108068250e-01 0 1 0 0 0 0 P 467 22 4.8203531766422163e-02 -1.9257915287664722e-02 2.9350854991151462e-02 5.9631539177644431e-02 0 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 468 -211 2.4374186068011054e+00 1.6066631757681202e+00 -1.2004139036354615e+00 3.1595647406076157e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 111 8.9227092369363525e-01 8.8258594347797481e-02 -7.9012922188700652e-01 1.2026889741014126e+00 1.3497999999999999e-01 2 0 0 -211 0 V -70 0 0 0 0 0 0 2 0 P 470 211 8.2924243197944492e-01 3.2193167763252900e-01 -1.2582131537342229e+00 1.5472114080461978e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 4.7196773167838807e-01 1.5357413537281769e-01 -2.5902730847600397e-01 5.7589348124238593e-01 1.3497999999999999e-01 2 0 0 -212 0 V -71 0 0 0 0 0 0 2 0 P 472 211 1.7121002422174079e+00 6.6504406477023637e-01 -9.7515708693693637e-01 2.0842221514489179e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 111 1.4499597691941959e-01 2.8898273459696294e-01 -2.5467029053248780e-01 4.3314132970412478e-01 1.3497999999999999e-01 2 0 0 -213 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 9.5282875114566112e-01 5.0377721615206950e-01 -8.5432441390223712e-01 1.3823979534175859e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5128775384465579e-01 -1.9095065622527430e-01 -3.2564346550178525e-01 4.2850134725603423e-01 1.3497999999999999e-01 2 0 0 -214 0 V -73 0 0 0 0 0 0 2 0 P 476 211 8.0790909715401260e-01 9.8994090227534581e-02 -9.1700700452166950e-01 1.2340577662354362e+00 1.3957000000000000e-01 1 0 0 0 0 P 477 111 -8.5915149911363592e-02 -1.0350629001969192e-02 -1.4416345684971713e-01 2.1561829977042471e-01 1.3497999999999999e-01 2 0 0 -215 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 1.0127157440818515e+00 -9.4501627477216865e-01 -2.9514566540401184e+00 3.3930129830982398e+00 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 3.3767098378468069e-01 -8.0345971838748725e-02 -2.9774519912891162e-01 4.7813089942519121e-01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 5.5459283634897361e-01 2.5960304903525161e-01 -1.7024758202357069e+00 1.8146268653872735e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 1.1952616264647435e+00 -6.7110028404814215e-01 -3.0094156426070997e+00 3.3096567884475490e+00 1.3497999999999999e-01 2 0 0 -216 0 V -76 0 0 0 0 0 0 2 0 P 482 2112 1.0508405788603485e+00 -8.4318988341279677e-01 -3.4846500315406486e+00 3.8523775423607538e+00 9.3957000000000002e-01 1 0 0 0 0 P 483 211 1.2380584768420907e-01 -6.4032319477367616e-01 -1.6490563836473571e+00 1.7788222010740906e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 4.9306112424807248e-04 -3.6678680495132973e-04 -3.5981613975872993e-03 3.6511033549663295e-03 0 2 0 P 484 22 2.5738690966743255e-01 -2.1949130621574739e-01 -1.6473974194948595e+00 1.6817677344183910e+00 0 1 0 0 0 0 P 485 22 5.9137906652107319e-01 -4.1190335308200493e-01 -4.5465546503714993e+00 4.6033197544179183e+00 0 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 486 -2212 6.4650223439337451e-01 -7.5565066836175943e-01 -5.6175567091191487e+00 5.7815453855124890e+00 9.3827000000000005e-01 1 0 0 0 0 P 487 -211 1.4527132880883517e-01 -2.5532595244220635e-01 -6.5787159834552755e-01 7.3387323549377625e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 1.8706739353094027e-04 -1.7873445276795833e-04 -4.8248211530638315e-04 5.4850805624044694e-04 0 2 0 P 488 22 5.1142988557969560e-01 -5.6769713251371345e-01 -1.3765453926685955e+00 1.5743944169760926e+00 0 1 0 0 0 0 P 489 22 2.3909824136630725e-01 -1.4939862385853439e-01 -5.5920830256826226e-01 6.2626020430533647e-01 0 1 0 0 0 0 V -80 0 2.2489344136084341e-03 -2.1017133202097396e-03 -2.3897447271309727e-02 2.4095187401545839e-02 0 2 0 P 490 22 2.0168307911317198e+00 -1.8792046095875228e+00 -2.1795293602557468e+01 2.1968928959474436e+01 0 1 0 0 0 0 P 491 22 4.4821886470181260e-01 -4.2447648724405979e-01 -4.3986201972331722e+00 4.4417271503780178e+00 0 1 0 0 0 0 V -81 0 2.0253792467055535e-04 1.2909673619568491e-04 -3.0388258792230405e-03 3.0483605244708144e-03 0 2 0 P 492 22 4.6695043757588378e-01 3.3947244893044648e-01 -6.6422849640679376e+00 6.6673258356419138e+00 0 1 0 0 0 0 P 493 22 9.9106056667209752e-01 5.8985702006638430e-01 -1.5233329586182563e+01 1.5276925824006577e+01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 494 311 8.2941117525994312e-01 -8.3613093820046891e-01 -9.6052625597671515e+00 9.6899835972217563e+00 4.9767000000000000e-01 2 0 0 -217 0 P 495 211 4.5783030050882229e-01 1.9229003348842998e-02 -3.2265039776400477e+00 3.2618684892651388e+00 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 2 0 P 496 22 4.0344488608576462e-01 -1.0729019854295466e-01 -4.3552109020079364e+00 4.3751732495732014e+00 0 1 0 0 0 0 P 497 22 5.0177245056595925e-02 1.6031318564359792e-01 -7.2315911707985610e+00 7.2335419356622506e+00 0 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 498 22 -2.8169774741968689e-01 -1.0797734176263259e-02 -3.6112522229915665e+00 3.6222386489609155e+00 0 1 0 0 0 0 P 499 22 1.8764998370388325e-01 -2.8826712924730447e-01 -3.4153531770095671e+00 3.4326298632240979e+00 0 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 500 -321 1.1944949701982799e+00 2.3085214946664834e-01 -2.4211766493862388e+01 2.4247337764423950e+01 4.9359999999999998e-01 1 0 0 0 0 P 501 211 3.9219004591931222e-01 -5.8337353397266659e-02 -3.4759638281409986e+00 3.5012884197626759e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 1.4126252716111426e-04 -9.7712650641347984e-05 -5.3177837163661005e-03 5.3205807682512925e-03 0 2 0 P 502 22 1.1513646070389609e+00 -8.2332240959670511e-01 -4.3858132181783070e+01 4.3880966930130896e+01 0 1 0 0 0 0 P 503 22 4.6947354932244272e-02 -5.5615163286442185e-03 -1.2519473740591729e+00 1.2528396593390019e+00 0 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 504 211 7.8593703070467635e-01 -8.5771187048286157e-01 -2.5350531530528748e+01 2.5377594356720110e+01 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -3.1118412525491881e-02 -4.3997377154715472e-01 -1.7252351279228719e+01 1.7258516435011220e+01 1.3497999999999999e-01 2 0 0 -218 0 V -88 0 4.0679175600111242e-05 -3.0368591547986562e-04 -6.5351187606714975e-02 6.5351922505499371e-02 0 2 0 P 506 22 -4.5744074475365642e-03 -4.7339523188180649e-01 -9.9798664567394283e+01 9.9799787441687712e+01 0 1 0 0 0 0 P 507 22 1.2234833047318727e-01 -4.0583304907682144e-01 -8.9405409145620226e+01 8.9406413942588287e+01 0 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 508 211 2.4542971125706450e-01 -3.0933190519837311e-01 -6.2503909906269683e+01 6.2505313016788570e+01 1.3957000000000000e-01 1 0 0 0 0 P 509 111 4.2414807876995808e-01 1.6432760059373902e-01 -2.6328436753214259e+01 2.6332711721762433e+01 1.3497999999999999e-01 2 0 0 -219 0 V -90 0 0 0 0 0 0 2 0 P 510 211 5.1369925185299670e-01 -6.6764933770544799e-01 -1.1703556508856846e+02 1.1703868000770061e+02 1.3957000000000000e-01 1 0 0 0 0 P 511 -211 -7.9889965904956908e-02 -3.5188080197614657e-01 -1.3509776304339064e+02 1.3509831701993360e+02 1.3957000000000000e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 512 -211 -2.3011916931714804e-01 -2.1837164434969081e-01 -1.5411323902167044e+02 1.5411362873718394e+02 1.3957000000000000e-01 1 0 0 0 0 P 513 211 4.1310195646518100e-01 -1.3361445761355303e-01 -2.7126698313888841e+02 2.7126736649864205e+02 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 514 2212 3.4314515172910021e-01 4.9222092844525521e-02 -1.7934361157094654e+02 1.7934640094887052e+02 9.3827000000000005e-01 1 0 0 0 0 P 515 -211 8.6658304205426140e-03 6.6544901855318639e-02 -7.4173078646655100e+01 7.4173240316359127e+01 1.3957000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 -2112 2.5671385974961901e-02 -3.2510417198878185e-02 -1.9931474742058677e+02 1.9931696628000458e+02 9.3957000000000002e-01 1 0 0 0 0 P 517 111 2.5894394055091668e-01 -4.5263915920025453e-03 -6.1054695296803388e+01 6.1055393781700197e+01 1.3497999999999999e-01 2 0 0 -220 0 V -94 0 0 0 0 0 0 3 0 P 518 -211 -8.9895452038645874e-04 -1.1062468293363717e-03 -7.4297048497269413e+00 7.4310158101606341e+00 1.3957000000000000e-01 1 0 0 0 0 P 519 211 -1.9162607329379522e-01 -2.9597667555839480e-04 -9.3360787706874945e+01 9.3361088691556290e+01 1.3957000000000000e-01 1 0 0 0 0 P 520 111 -2.7165414651596492e-01 1.6160686077964623e-01 -7.2033933501161883e+01 7.2034753473604553e+01 1.3497999999999999e-01 2 0 0 -221 0 V -95 0 0 0 0 0 0 2 0 P 521 -211 -9.2371551068094793e-01 1.9560610909411908e+00 -3.0030151049153136e+02 3.0030933403511852e+02 1.3957000000000000e-01 1 0 0 0 0 P 522 111 -8.1323440629201462e-03 6.3491460011186995e-02 -7.0392711558410417e+00 7.0408561486775163e+00 1.3497999999999999e-01 2 0 0 -222 0 V -96 0 0 0 0 0 0 2 0 P 523 211 -8.9543532644769441e-01 1.4664199543308893e+00 -1.9121856618811464e+02 1.9122633638369373e+02 1.3957000000000000e-01 1 0 0 0 0 P 524 111 -1.9361099384160200e-02 -2.2127792050408358e-02 -1.8652827207422753e+01 1.8653338760707715e+01 1.3497999999999999e-01 2 0 0 -223 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -3.8745716994440327e-01 8.5847225453367904e-01 -3.2860510368142471e+01 3.2877710995218997e+01 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -7.7117515296262173e-01 4.6176124921127704e-01 -3.1240721153424861e+01 3.1253960909599407e+01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -311 -1.9805731114461828e-01 9.4303790503380425e-01 -1.8234972062882342e+01 1.8267195426551606e+01 4.9767000000000000e-01 2 0 0 -224 0 P 528 -211 -2.5530952280447581e-02 1.1661175630146861e-01 -1.1421821423974285e+01 1.1423297884467953e+01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 529 211 -2.0228497762174165e+00 6.5271949803463805e-02 -2.1903329393773550e+01 2.1997079350714230e+01 1.3957000000000000e-01 1 0 0 0 0 P 530 -211 -3.2222637174197999e+00 1.7719580679875496e-01 -2.9926411768482286e+01 3.0100232273857991e+01 1.3957000000000000e-01 1 0 0 0 0 V -100 0 2.7813915949392826e-05 -5.8535979604605781e-05 -2.0523738088327795e-03 2.0536954713926856e-03 0 2 0 P 531 22 1.2209114134338864e-01 -2.0438065898198848e-01 -5.7353705408690034e+00 5.7403094813457969e+00 0 1 0 0 0 0 P 532 22 -1.4901901611071905e-02 -2.1205237021305588e-02 -2.1740654628774312e+00 2.1742199441696819e+00 0 1 0 0 0 0 V -101 0 0 0 0 0 0 3 0 P 533 -211 -2.3002736917605615e-01 -1.0633476970956099e-01 -1.4957900328993678e+00 1.5235114969176751e+00 1.3957000000000000e-01 1 0 0 0 0 P 534 211 -4.6512706777003210e-01 -8.0271681712930942e-01 -1.0124267290116137e+01 1.0167643061412518e+01 1.3957000000000000e-01 1 0 0 0 0 P 535 111 -1.6210044656872504e-02 -2.2712528691203568e-01 -2.3814377189964548e+00 2.3961038941084527e+00 1.3497999999999999e-01 2 0 0 -225 0 V -102 0 0 0 0 0 0 2 0 P 536 211 -9.0088833977294266e-02 4.0957564589871293e-02 -1.2415390533088355e+00 1.2532727260638530e+00 1.3957000000000000e-01 1 0 0 0 0 P 537 111 -2.6393932642625764e+00 -4.7909633187274486e-01 -2.0861248246940626e+01 2.1033445464771859e+01 1.3497999999999999e-01 2 0 0 -226 0 V -103 0 0 0 0 0 0 1 0 P 538 310 -4.5991482628962566e-01 -8.4583284208824416e-01 -6.4736118661859257e+00 6.5637093832008828e+00 4.9767000000000000e-01 2 0 0 -227 0 V -104 0 0 0 0 0 0 2 0 P 539 211 -3.7458874744546344e-01 -4.9382422850895369e-01 -9.3895340572442354e+00 9.4110046591968395e+00 1.3957000000000000e-01 1 0 0 0 0 P 540 111 -2.4195956474805708e-01 -6.4612139153810966e-01 -3.7722119960553133e+00 3.8371630441199427e+00 1.3497999999999999e-01 2 0 0 -228 0 V -105 0 0 0 0 0 0 3 0 P 541 -211 7.5507256784006896e-02 -1.6983713415789514e-01 -4.2773602892460105e-01 4.8680991496291443e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 211 -2.0245585685634049e-01 -3.1234203379628348e-02 -5.8073022435544985e-01 6.3142008822663076e-01 1.3957000000000000e-01 1 0 0 0 0 P 543 111 -3.5870918907442273e-01 -6.4269256053992385e-01 -2.2495241112245670e+00 2.3707181057815525e+00 1.3497999999999999e-01 2 0 0 -229 0 V -106 0 0 0 0 0 0 2 0 P 544 -211 -8.7785946982055618e-01 -8.0015078975582365e-01 -5.9244572171356835e-01 1.3346723392567956e+00 1.3957000000000000e-01 1 0 0 0 0 P 545 111 -8.1194471902090559e-01 -3.7964316749282057e-01 -1.6547604963171192e+00 1.8867525174069857e+00 1.3497999999999999e-01 2 0 0 -230 0 V -107 0 0 0 0 0 0 2 0 P 546 211 -5.2103454465001120e-01 -4.5726202880628980e-01 -1.0278967352150092e+00 1.2476445979814779e+00 1.3957000000000000e-01 1 0 0 0 0 P 547 111 -3.9425216433883055e+00 -1.4738107400306217e+00 -7.0954834294137639e+00 8.2510423404258528e+00 1.3497999999999999e-01 2 0 0 -231 0 V -108 0 0 0 0 0 0 2 0 P 548 211 -1.8447911223872699e+00 -6.8734135638490668e-01 -2.6934336632138445e+00 3.3391252010772936e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 -211 -1.3250041455988276e-01 1.2837870061610068e-01 -5.4125453438952675e-01 5.8862017169618186e-01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 550 211 -6.9435418228674517e-01 3.9409526199588246e-01 -1.1737946043902707e+00 1.4264334419041114e+00 1.3957000000000000e-01 1 0 0 0 0 P 551 -211 6.1238290977067268e-02 3.8613408320363463e-01 -1.0215287443132008e+00 1.1026560745996044e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 -211 -9.0794565031551688e-01 1.0593917106390580e+00 -5.5326411673195262e+00 5.7075628924889115e+00 1.3957000000000000e-01 1 0 0 0 0 P 553 111 -1.0192747163667040e+00 1.0258697756992261e+00 -3.3920574449271910e+00 3.6899326625568101e+00 1.3497999999999999e-01 2 0 0 -232 0 V -111 0 0 0 0 0 0 2 0 P 554 211 1.1141006442013232e-01 9.6714865968862018e-01 -4.9076233577886477e+00 5.0052008490373607e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 111 2.9123316268984523e-01 3.7016526017069268e-01 -8.4730182700793044e-01 9.7876404783713999e-01 1.3497999999999999e-01 2 0 0 -233 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 1.9713299335822443e-01 -2.2405812810901045e-02 -1.3483461463404220e-01 2.7753125179266130e-01 1.3957000000000000e-01 1 0 0 0 0 P 557 111 -3.2415532084289617e-01 7.1330246749193549e-01 -2.2003349263968635e+00 2.3395662997407736e+00 1.3497999999999999e-01 2 0 0 -234 0 V -113 0 0 0 0 0 0 2 0 P 558 211 -1.2828761763846236e-01 2.1021207215067056e-01 -1.0217154493266472e+00 1.0602023733278394e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 6.4474068603475225e-03 1.1944754702385176e+00 -1.1044183520203847e+00 1.6324131568742557e+00 1.3497999999999999e-01 2 0 0 -235 0 V -114 0 0 0 0 0 0 2 0 P 560 22 1.9793717913077247e-01 -4.8895606032813677e-02 -1.1729619693442443e+00 1.1905501621937193e+00 0 1 0 0 0 0 P 561 22 -1.7955106649759750e-01 1.1544173676131908e-01 -2.1453421918495549e-01 3.0263891234967277e-01 0 1 0 0 0 0 V -115 0 2.3823507362603365e-05 -1.8998130270308816e-04 -6.5358953257288065e-04 6.8134897489751300e-04 0 2 0 P 562 22 1.7819335501843106e-01 -9.8661913826946590e-01 -3.4663046123102164e+00 3.6083843837783394e+00 0 1 0 0 0 0 P 563 22 -1.6739836873921689e-02 -3.0089697916164493e-01 -9.6311578537490350e-01 1.0091636290738415e+00 0 1 0 0 0 0 V -116 0 0 0 0 0 0 3 0 P 564 -211 8.7723148216891889e-01 -1.2669677593315940e+00 -4.5305321305182895e+00 4.7874777855414212e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 211 2.4085197659935542e-01 -1.8542671571137573e-01 -9.7638534379639519e-01 1.0320856873398296e+00 1.3957000000000000e-01 1 0 0 0 0 P 566 111 8.0325339472078905e-01 -1.5583794695730571e+00 -6.2572404924555904e+00 6.4996185094313921e+00 1.3497999999999999e-01 2 0 0 -236 0 V -117 0 0 0 0 0 0 2 0 P 567 22 2.6084095135550200e-01 -5.3701926312100912e-01 -1.2601745547632301e+00 1.3944416801500807e+00 0 1 0 0 0 0 P 568 22 2.7250257613058171e-01 -3.1580045431364240e-01 -2.5576074266207103e+00 2.5913979489163603e+00 0 1 0 0 0 0 V -118 0 -8.3855541066581285e-06 -1.0259969879675710e-05 -1.8921001203750089e-05 2.4406333958661126e-05 0 2 0 P 569 22 2.1353308286058342e-02 -5.0261373488074794e-02 -4.7269615160005198e-02 7.2225936872028093e-02 0 1 0 0 0 0 P 570 22 -1.6500941986113182e-01 -1.2550606645024784e-01 -2.7687324116952922e-01 3.4588823777983774e-01 0 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 571 22 5.4615687599567675e-01 -2.3779261751880423e+00 -8.4017826731420655e+00 8.7488726310623601e+00 0 1 0 0 0 0 P 572 111 1.8401106159386209e+00 -3.6120446706427689e+00 -1.4095388157928772e+01 1.4667346750680148e+01 1.3497999999999999e-01 2 0 0 -237 0 V -120 0 0 0 0 0 0 2 0 P 573 211 -1.5292711829585062e-01 -3.9784469494988522e-01 -2.4202808406120737e+00 2.4614845595989276e+00 1.3957000000000000e-01 1 0 0 0 0 P 574 111 3.4983593998174128e-01 -9.1821912104195602e-01 -4.3352886782894373e+00 4.4472979508522412e+00 1.3497999999999999e-01 2 0 0 -238 0 V -121 0 0 0 0 0 0 2 0 P 575 -211 -2.3308758127571916e-01 8.0757322064629794e-02 -5.8404624426929583e+00 5.8473355380907472e+00 1.3957000000000000e-01 1 0 0 0 0 P 576 111 3.8685587214857931e-01 -4.1258981323628985e-01 -2.2671146824548657e+01 2.2678602376699601e+01 1.3497999999999999e-01 2 0 0 -239 0 V -122 0 0 0 0 0 0 2 0 P 577 211 -2.6889149561161160e-02 -1.1594462884474813e-01 -3.1492657870848905e+01 3.1493192053816387e+01 1.3957000000000000e-01 1 0 0 0 0 P 578 111 -2.9325657390468973e-01 7.9890991074419870e-01 -1.4680289816143744e+02 1.4680542695916046e+02 1.3497999999999999e-01 2 0 0 -240 0 V -123 0 0 0 0 0 0 3 0 P 579 -211 9.0849174030942281e-02 -6.4670869371891149e-02 -2.5815368650460346e+01 2.5815986795740315e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 211 -2.3164390166163532e-01 5.0329214424403107e-02 -9.9757164865333394e+01 9.9757544144195975e+01 1.3957000000000000e-01 1 0 0 0 0 P 581 111 -4.2202189491448577e-01 1.8171150242874531e-01 -9.0488763618420549e+01 9.0490030845064325e+01 1.3497999999999999e-01 2 0 0 -241 0 V -124 0 0 0 0 0 0 2 0 P 582 2112 -8.5985053550955939e-02 3.4063415705152295e-01 -1.3736340707089028e+03 1.3736344369697326e+03 9.3957000000000002e-01 1 0 0 0 0 P 583 -211 1.3260966257656162e-01 -7.8752458292656174e-02 -1.7819835986389421e+02 1.7819848126524295e+02 1.3957000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -2.3135985051838345e-01 -1.3790846325688211e-01 -1.7558751930585859e+02 1.7558778135706035e+02 1.3957000000000000e-01 1 0 0 0 0 P 585 111 1.9832728638031684e-02 3.9051599066216125e-01 -5.7424684414298986e+02 5.7424699313436531e+02 1.3497999999999999e-01 2 0 0 -242 0 V -126 0 0 0 0 0 0 2 0 P 586 -211 -5.9650494753047933e-01 -1.8517062543829826e-01 2.8113396134052449e-01 6.9901530889714136e-01 1.3957000000000000e-01 1 0 0 0 0 P 587 111 1.4950637267568695e-01 -7.4223787578013878e-01 6.5953451716666304e-04 7.6908338631063500e-01 1.3497999999999999e-01 2 0 0 -243 0 V -127 0 -1.2025136913619526e-05 -6.0076903591361844e-08 1.4462319389679710e-05 1.8886081711641016e-05 0 2 0 P 588 22 -5.3559016282390881e-01 -6.5588479121751267e-02 6.0748212892902032e-01 8.1252274311269634e-01 0 1 0 0 0 0 P 589 22 -4.1463437535955983e-01 6.0841211096391901e-02 5.3532820760491895e-01 6.7985263701406884e-01 0 1 0 0 0 0 V -128 0 0 0 0 0 0 3 0 P 590 -211 -5.9282520388308189e-02 -1.4853462871904657e-01 2.0221485282249790e-01 2.9316818509913328e-01 1.3957000000000000e-01 1 0 0 0 0 P 591 211 1.2500356107807467e-02 -3.5739706324910403e-01 -3.4165442893988783e-02 3.8540366125667314e-01 1.3957000000000000e-01 1 0 0 0 0 P 592 111 -4.1472501713581922e-01 -2.7538615985489162e-01 -7.3625724449074337e-02 5.2103236423333676e-01 1.3497999999999999e-01 2 0 0 -244 0 V -129 0 0 0 0 0 0 2 0 P 593 311 -1.1109777780491592e+00 -4.5147236914205385e-01 6.3418105744252029e-01 1.4449774966886850e+00 4.9767000000000000e-01 2 0 0 -245 0 P 594 111 8.2882122081138959e-02 -7.9441278292283285e-02 1.3319746873512206e-01 2.2167888698482008e-01 1.3497999999999999e-01 2 0 0 -246 0 V -130 0 0 0 0 0 0 2 0 P 595 130 -6.8685376002794407e-01 -2.5469955077573142e-01 4.3885678779247600e-01 9.8838790862768766e-01 4.9767000000000000e-01 1 0 0 0 0 P 596 310 -7.9612431759453606e-01 -5.0595159527458711e-01 5.9046372661756541e-01 1.2190667689578649e+00 4.9767000000000000e-01 2 0 0 -247 0 V -131 0 0 0 0 0 0 2 0 P 597 -311 -1.7204594727288618e+00 -4.3355798361830000e-01 -2.1631676398130181e-01 1.8553764291218593e+00 4.9767000000000000e-01 2 0 0 -248 0 P 598 111 -4.6538126755747844e-01 -4.3686458634769704e-01 -2.4179565268024508e-01 6.9578382350642176e-01 1.3497999999999999e-01 2 0 0 -249 0 V -132 0 0 0 0 0 0 2 0 P 599 -211 -1.7121164686493344e+00 -1.0940670285369751e+00 -6.4039248969552154e-01 2.1349257108645308e+00 1.3957000000000000e-01 1 0 0 0 0 P 600 211 -3.6662303966201248e-01 4.1541947760392044e-02 1.3318594329646884e-02 3.9470920497203815e-01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 601 22 -2.2365385816834640e-01 1.4900395480003026e-01 -4.3319757334861063e-02 2.7221283620576658e-01 0 1 0 0 0 0 P 602 22 -2.1719791049067347e+00 -3.0292904737939785e-01 -2.1662371950103276e-01 2.2036753562510318e+00 0 1 0 0 0 0 V -134 0 0 0 0 0 0 3 0 P 603 -211 -3.5367569298139995e-01 1.2553834638448491e-01 -8.8190073012115303e-02 4.1000444643528761e-01 1.3957000000000000e-01 1 0 0 0 0 P 604 211 -3.5272477079145553e-01 -5.0317051068993195e-02 6.0697230664546173e-02 3.8744097391539478e-01 1.3957000000000000e-01 1 0 0 0 0 P 605 111 -6.7138918107743295e-01 -3.6512525997908545e-02 -5.1606592415827865e-02 6.8773500550964206e-01 1.3497999999999999e-01 2 0 0 -250 0 V -135 0 0 0 0 0 0 2 0 P 606 -211 -1.3307271676342663e-02 1.5588490031878652e-02 -9.8817511809263917e-02 1.7223463658949667e-01 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -1.5206485096956363e-01 -5.2991656808879428e-01 -1.0611489207003259e-01 5.7742121432662652e-01 1.3497999999999999e-01 2 0 0 -251 0 V -136 0 0 0 0 0 0 3 0 P 608 -211 -1.6087359675351046e-01 2.6339059703384165e-02 1.6991741062914317e-01 2.7372572318542221e-01 1.3957000000000000e-01 1 0 0 0 0 P 609 211 -8.5435430709352722e-02 -7.8172857647784699e-02 -6.9645920210618120e-02 1.9426926569917644e-01 1.3957000000000000e-01 1 0 0 0 0 P 610 111 -6.4647917786324915e-01 3.0501696341826351e-01 -1.6717226310687036e-01 7.4641599750803411e-01 1.3497999999999999e-01 2 0 0 -252 0 V -137 0 -5.7980041949042623e-04 -8.4269686218396413e-05 -1.7480788757196400e-05 5.9030850426643330e-04 0 2 0 P 611 22 -4.8170841170150530e-01 -3.0478536795782904e-03 -6.9457786178443795e-03 4.8176812592433638e-01 0 1 0 0 0 0 P 612 22 -6.3761004230514162e-01 -1.5963677317960978e-01 -2.6801298460365525e-02 6.5783643483674903e-01 0 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 613 311 -4.7458306110182519e-01 -2.4425569650999043e-01 -3.9911004380928555e-01 8.3177772459462340e-01 4.9767000000000000e-01 2 0 0 -253 0 P 614 211 -1.4460288711139604e-01 2.7308389193010268e-01 -1.9638076499440113e-01 3.9182904021068854e-01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 615 22 -1.2140440213321929e-01 1.0418020805542255e-01 5.5919368310524242e-01 5.8162713127277843e-01 0 1 0 0 0 0 P 616 111 -4.1738132504105652e-01 -9.2315834938119748e-02 -1.0732249543397256e-01 4.6094153891738299e-01 1.3497999999999999e-01 2 0 0 -254 0 V -140 0 0 0 0 0 0 2 0 P 617 -211 -2.5372871016346835e-02 2.2531185879121240e-01 6.3384519131092587e-01 6.8749452924626797e-01 1.3957000000000000e-01 1 0 0 0 0 P 618 111 -4.4245871961076144e-01 5.4260063415594284e-01 6.9244096478045514e-01 9.9392115223095701e-01 1.3497999999999999e-01 2 0 0 -255 0 V -141 0 0 0 0 0 0 3 0 P 619 211 6.7815563833619918e-02 -1.3789901200121374e-01 1.3904926756333677e-01 2.4985910413447635e-01 1.3957000000000000e-01 1 0 0 0 0 P 620 -211 4.2602240650968887e-01 6.0203535501585394e-02 5.8811410610985515e-01 7.4194173844082345e-01 1.3957000000000000e-01 1 0 0 0 0 P 621 111 7.1319277192856578e-02 2.5985997630908791e-01 2.4503558839771081e-01 3.8842719596867004e-01 1.3497999999999999e-01 2 0 0 -256 0 V -142 0 0 0 0 0 0 2 0 P 622 22 -7.3486528189345937e-02 6.0662238093652321e-01 2.1234544568610030e+00 2.2096266230386701e+00 0 1 0 0 0 0 P 623 22 4.6585383406213704e-01 4.9196566277850717e-01 2.3900653596334287e+00 2.4842428285864409e+00 0 1 0 0 0 0 V -143 0 0 0 0 0 0 2 0 P 624 -321 1.1724770098267654e+00 1.1371588860743693e+00 1.0786847438059532e+01 1.0920968422384606e+01 4.9359999999999998e-01 1 0 0 0 0 P 625 211 3.7490541308053960e-02 -3.7058525333796499e-02 1.1847526710795122e+00 1.1941095224130513e+00 1.3957000000000000e-01 1 0 0 0 0 V -144 0 4.8638274867861298e-05 3.4509825017815516e-05 4.2797075911560546e-04 4.3212494450038018e-04 0 2 0 P 626 22 7.7382761100087705e-01 5.6682198247848192e-01 7.3601249650617362e+00 7.4223672660879005e+00 0 1 0 0 0 0 P 627 22 8.4796476569072676e-01 5.8387201904409691e-01 6.9101121366088778e+00 6.9863867999835838e+00 0 1 0 0 0 0 V -145 0 0 0 0 0 0 3 0 P 628 -211 1.4683485556392756e-01 5.0441578375455187e-01 6.4400085694190743e+00 6.4629084719497856e+00 1.3957000000000000e-01 1 0 0 0 0 P 629 211 5.9535842526244054e-02 3.4268857343195547e-01 4.6975399541320240e+00 4.7124665919741897e+00 1.3957000000000000e-01 1 0 0 0 0 P 630 111 6.2882737037137915e-01 3.4253623616592188e-01 1.0254875605944537e+01 1.0280731891680244e+01 1.3497999999999999e-01 2 0 0 -257 0 V -146 0 0 0 0 0 0 2 0 P 631 -211 -2.7622381356589076e-01 2.2076334447225232e+00 3.5894731346798544e+01 3.5963886932104273e+01 1.3957000000000000e-01 1 0 0 0 0 P 632 211 4.2316035305820643e-01 1.7229093935353796e+00 2.8655623611136985e+01 2.8710829416629263e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 633 2212 1.5812928896719929e+00 1.5006519745129634e+00 3.5835003719228020e+01 3.5913511185924484e+01 9.3827000000000005e-01 1 0 0 0 0 P 634 211 7.7788503636675388e-01 9.0145968626349782e-01 2.5476558239788382e+01 2.5504749248443726e+01 1.3957000000000000e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 635 -211 1.1987654696095709e+00 2.1793650963477087e+00 6.3163932720752896e+01 6.3213040960002907e+01 1.3957000000000000e-01 1 0 0 0 0 P 636 211 -1.1094195581994272e-01 5.7619225343424663e-01 1.5177988451471194e+01 1.5189967703993702e+01 1.3957000000000000e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 637 -2212 5.6711896871522860e-01 1.1389981488258429e+00 5.2026722359903765e+01 5.2050736121741025e+01 9.3827000000000005e-01 1 0 0 0 0 P 638 -211 3.0977487004435228e-01 9.3422203177076901e-01 3.3844332846040665e+01 3.3858929056502127e+01 1.3957000000000000e-01 1 0 0 0 0 V -150 0 7.4150335171750442e-04 5.4784513865466407e-04 6.0423207390974808e-02 6.0430288871366380e-02 0 2 0 P 639 22 5.4399659282653201e-01 4.2642177253661656e-01 4.9502512412040687e+01 4.9507337869505186e+01 0 1 0 0 0 0 P 640 22 7.6346298047424099e-01 5.3956896716973346e-01 5.7039016725868798e+01 5.7046677724884439e+01 0 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 641 -211 4.8079516400951805e-01 7.1858633788765847e-01 2.9553564139921569e+01 2.9566537901352127e+01 1.3957000000000000e-01 1 0 0 0 0 P 642 111 -2.4088986020638123e-01 -7.5687233468168955e-02 1.2133098794120269e+01 1.2136476524524861e+01 1.3497999999999999e-01 2 0 0 -258 0 V -152 0 0 0 0 0 0 2 0 P 643 -211 6.4123715261097802e-01 2.3733642983361958e+00 1.2813730122834394e+02 1.2816095930136743e+02 1.3957000000000000e-01 1 0 0 0 0 P 644 111 6.7707967976218686e-01 8.6328434025776901e-01 7.4662421099582886e+01 7.4670603592020882e+01 1.3497999999999999e-01 2 0 0 -259 0 V -153 0 0 0 0 0 0 2 0 P 645 311 2.0629075697271246e+00 -7.7183164484213551e-01 4.2803652534638491e+02 4.2804248155733859e+02 4.9767000000000000e-01 2 0 0 -260 0 P 646 211 3.5665106953802916e-01 -7.5594169161206121e-02 9.2419963132901742e+01 9.2420787595300396e+01 1.3957000000000000e-01 1 0 0 0 0 V -154 0 0 0 0 0 0 2 0 P 647 -311 1.1723725480492164e+00 2.1310327698164550e-01 2.0381019982747901e+02 2.0381429071471879e+02 4.9767000000000000e-01 2 0 0 -261 0 P 648 -211 5.6790955133033949e-01 4.9400190224925167e-01 8.7404930554069452e+01 8.7408282926073554e+01 1.3957000000000000e-01 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 649 -211 -1.7606767771898507e-01 -1.1086824689442504e-01 9.4562138699614451e+01 9.4562470604491551e+01 1.3957000000000000e-01 1 0 0 0 0 P 650 211 8.9324158970260678e-02 -6.5484108634295046e-02 2.3467128806788974e+01 2.3467805206136859e+01 1.3957000000000000e-01 1 0 0 0 0 P 651 111 2.8359124065745184e-01 8.1720992296834633e-02 8.9424525890589024e+01 8.9425114775824511e+01 1.3497999999999999e-01 2 0 0 -262 0 V -156 0 0 0 0 0 0 2 0 P 652 211 4.6072531432271047e-01 -2.8697061090091464e-01 6.7568674027454378e+01 6.7570998287431465e+01 1.3957000000000000e-01 1 0 0 0 0 P 653 111 8.2552296093672373e-02 -2.7476350224550217e-01 1.6575803203054352e+02 1.6575833527187356e+02 1.3497999999999999e-01 2 0 0 -263 0 V -157 0 0 0 0 0 0 2 0 P 654 311 1.6242886330190237e-01 1.6558355164107235e-03 2.2270346182608398e+02 2.2270407713068113e+02 4.9767000000000000e-01 2 0 0 -264 0 P 655 211 -6.5697139850899103e-02 -4.3167994981070823e-01 8.1178690502350051e+01 8.1179984818639198e+01 1.3957000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 656 -321 4.9865146324579224e-01 4.6320433062507167e-02 1.5295430580034170e+02 1.5295592209093689e+02 4.9359999999999998e-01 1 0 0 0 0 P 657 211 2.5197591246178352e-01 3.8553526437132335e-02 1.8418549523873356e+01 1.8420842124700410e+01 1.3957000000000000e-01 1 0 0 0 0 V -159 0 2.9377654636438710e-04 -2.1697694663333823e-03 4.4137911386462336e-01 4.4138459633002963e-01 0 2 0 P 658 22 1.2544558431089226e-01 -9.8973959616090090e-01 1.8847344687793051e+02 1.8847608734030675e+02 0 1 0 0 0 0 P 659 22 6.0419693774198646e-02 -3.8302079002859857e-01 9.0776386897581929e+01 9.0777215057769169e+01 0 1 0 0 0 0 V -160 0 0 0 0 0 0 2 0 P 660 311 -4.1878074581412728e-01 6.1734890461569478e-02 1.0175231679867260e+02 1.0175441434078472e+02 4.9767000000000000e-01 2 0 0 -265 0 P 661 111 -7.1478556178808816e-01 -4.0696982087561856e-01 1.4500024510214982e+02 1.4500264081084305e+02 1.3497999999999999e-01 2 0 0 -266 0 V -161 0 0 0 0 0 0 2 0 P 662 -311 -3.1158702097676805e-01 1.0559302699692382e-02 1.2577059738403939e+02 1.2577196841799666e+02 4.9767000000000000e-01 2 0 0 -267 0 P 663 -211 -9.4199405048755860e-02 -2.5942015132847762e-01 1.9551951944573268e+01 1.9554397893328989e+01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 0 0 0 0 0 3 0 P 664 -211 -5.8310567610831987e-01 -1.5359011795729205e-01 4.0882334279257194e+01 4.0887019187752877e+01 1.3957000000000000e-01 1 0 0 0 0 P 665 211 -1.0237569372752213e-01 -1.6346268569892181e-01 2.3125463803432947e+01 2.3126689273241631e+01 1.3957000000000000e-01 1 0 0 0 0 P 666 111 -2.4540473528161741e-01 1.2824512181490674e-01 1.1765408711994647e+01 1.1769440600812237e+01 1.3497999999999999e-01 2 0 0 -268 0 V -163 0 0 0 0 0 0 2 0 P 667 211 1.0334058535001629e-01 -1.8825963241184884e-01 2.5499672385937382e+00 2.5627980155637906e+00 1.3957000000000000e-01 1 0 0 0 0 P 668 111 -9.8745855309093600e-01 -1.4018832203115201e+00 2.2028577705704460e+01 2.2095628669357271e+01 1.3497999999999999e-01 2 0 0 -269 0 V -164 0 0 0 0 0 0 3 0 P 669 211 -6.1197965302008328e-01 -6.4171550324113413e-01 4.2656995277161776e+01 4.2666439314096891e+01 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 -8.0758582570292600e-02 -1.6968074668540178e-01 6.5950263265651756e+00 6.5991791563377209e+00 1.3957000000000000e-01 1 0 0 0 0 P 671 111 -3.4409798419548965e-01 -1.3915142395927832e-02 1.1870712136216600e+01 1.1876473520167313e+01 1.3497999999999999e-01 2 0 0 -270 0 V -165 0 0 0 0 0 0 2 0 P 672 -211 -7.5418381302729501e-02 1.2071337319732254e-02 2.9440482660178873e+00 2.9483442178561750e+00 1.3957000000000000e-01 1 0 0 0 0 P 673 211 -1.1624602383557765e+00 -9.4104102369203180e-01 2.1602002718432779e+01 2.1654165263202984e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 674 -311 -5.8747652079299484e-01 -1.5548826548622425e+00 5.7889405235137454e+00 6.0433679804024916e+00 4.9767000000000000e-01 2 0 0 -271 0 P 675 -211 1.3197056614639577e-01 -7.1374679560056919e-01 2.9649641882818734e+00 3.0557066517015454e+00 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 3 0 P 676 -211 6.4501005491364380e-02 -3.4778121190248018e-01 7.7800405839855336e-01 8.6595741861039244e-01 1.3957000000000000e-01 1 0 0 0 0 P 677 211 -3.2470635389184613e-02 -2.4631331026749539e-01 1.2132045321229012e+00 1.2462221353519030e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 111 2.2279251319300100e-01 1.7862887202838344e-02 1.4491006143019587e+00 1.4724360011370237e+00 1.3497999999999999e-01 2 0 0 -272 0 V -168 0 0 0 0 0 0 2 0 P 679 211 -1.6483597195965674e-01 -1.5152326793323345e-01 3.6260668813719055e-01 4.4843460343607849e-01 1.3957000000000000e-01 1 0 0 0 0 P 680 -211 3.0004512093760727e-01 -1.2755208202014752e+00 3.7689067053549614e+00 3.9926329628373676e+00 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 3 0 P 681 -211 -6.1804641746023167e-02 -7.6805755736820036e-01 1.5240459524982486e+00 1.7134550111975670e+00 1.3957000000000000e-01 1 0 0 0 0 P 682 211 -6.0689560942566903e-02 -2.7856827146467644e-01 3.6300892846451344e-01 4.8222274077356975e-01 1.3957000000000000e-01 1 0 0 0 0 P 683 111 -1.1729815982553467e-01 -6.3473762895416386e-01 9.7418812509544506e-01 1.1763982401320519e+00 1.3497999999999999e-01 2 0 0 -273 0 V -170 0 0 0 0 0 0 2 0 P 684 -211 2.2689832891848293e-03 5.9454314331402569e-01 -1.1420190164588028e+01 1.1436507765826072e+01 1.3957000000000000e-01 1 0 0 0 0 P 685 211 -5.2249644157235231e-01 6.8591348990324208e-01 -7.8052442621631792e+00 7.8539669991678887e+00 1.3957000000000000e-01 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 686 321 -8.3000416592017956e-01 1.0067641353705976e+00 -2.5837185457611898e+01 2.5874819308948712e+01 4.9359999999999998e-01 1 0 0 0 0 P 687 -211 -1.0997868650716018e-01 3.2136643754426103e-01 -9.5187192227916260e+00 9.5258000779938978e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 1 0 P 688 310 6.4139340939898065e-02 1.6384061357925953e-01 -2.0831480748975281e+01 2.0838167463228189e+01 4.9767000000000000e-01 2 0 0 -274 0 V -173 0 0 0 0 0 0 2 0 P 689 321 -1.2801232699976869e-01 -1.3910605090197081e-01 -3.0471826834820988e+01 3.0476410701730902e+01 4.9359999999999998e-01 1 0 0 0 0 P 690 -211 -1.1822361643196735e-02 -1.0701725535055331e-01 -1.9363314005433658e+00 1.9443383293058389e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 691 -311 6.2823773796126536e-01 -1.0497489316067193e-01 -5.7823824009597359e+01 5.7829473462114287e+01 4.9767000000000000e-01 2 0 0 -275 0 P 692 -211 3.1967171756604751e-01 -2.7882275191577863e-02 -8.2494420030581175e+00 8.2568602128775925e+00 1.3957000000000000e-01 1 0 0 0 0 V -175 0 1.9595276464704697e-05 4.7072394878369170e-06 1.7962283674113196e-05 2.8801002844918390e-05 0 2 0 P 693 22 2.5068481998704956e-02 5.2791939087381820e-02 2.0315952910337318e-02 6.1872090355670706e-02 0 1 0 0 0 0 P 694 22 2.3847995504318034e-01 1.0518502693617052e-02 2.2126940040388282e-01 3.2548959339955380e-01 0 1 0 0 0 0 V -176 0 3.6246504559836256e-06 -1.2164663925192458e-06 -4.0209602405574568e-05 4.1118408231652443e-05 0 2 0 P 695 22 7.9954141110922222e-02 3.5158793857272661e-03 -2.0535205307313364e-01 2.2039621546204294e-01 0 1 0 0 0 0 P 696 22 -1.6416358527540639e-02 -2.4839749951034967e-02 -4.9949631960017221e-01 5.0038293665856726e-01 0 1 0 0 0 0 V -177 0 -8.9327290523337830e-05 -3.2571252713838917e-04 7.4998378750002609e-05 3.5263103975469406e-04 0 2 0 P 697 22 -1.4545102672183620e-02 -1.1733042634631758e-03 1.5179478680482104e-02 2.1055954683894620e-02 0 1 0 0 0 0 P 698 22 -1.6216150068924373e-01 -6.4314887326697912e-01 1.3318177451418836e-01 6.7651623081277190e-01 0 1 0 0 0 0 V -178 0 6.1823353456988063e-06 -2.0979469265482938e-05 -1.0851412134036629e-04 1.1196834713836183e-04 0 2 0 P 699 22 -3.0873712599393578e-02 -1.2725930844320235e-01 -5.2716013823453201e-01 5.4318130403997056e-01 0 1 0 0 0 0 P 700 22 8.0458347539118666e-02 -4.1003858562431897e-02 -3.4316358113642143e-01 3.5484659435325966e-01 0 1 0 0 0 0 V -179 0 1.4824711283373880e-04 4.7633710825877742e-05 -2.2943630524718964e-03 2.3015208225113143e-03 0 2 0 P 701 22 1.8176341264778920e-01 8.5754621399936309e-02 -2.0461805562097388e+00 2.0560269117595742e+00 0 1 0 0 0 0 P 702 22 3.3388409048196892e-02 -1.6623564056369541e-02 -1.2836407194660437e+00 1.2841824735651892e+00 0 1 0 0 0 0 V -180 0 -6.2161035555961024e-05 3.1609520037645421e-05 -4.5090971045073829e-03 4.5097013094484986e-03 0 2 0 P 703 22 -3.0737608580344106e-01 1.4173608380483832e-01 -1.8029178814388519e+01 1.8032355860973126e+01 0 1 0 0 0 0 P 704 22 -3.9218391964977728e-02 3.4510740141573119e-02 -7.1124254424594167e+00 7.1126172923894506e+00 0 1 0 0 0 0 V -181 0 1.9236688077838438e-04 -3.2788803345800219e-04 -2.9860458156101047e-03 3.0107362468968220e-03 0 2 0 P 705 22 3.9602153835212733e-02 -1.3002304154121086e-01 -7.9985501687748561e-01 8.1132137278892025e-01 0 1 0 0 0 0 P 706 22 3.9634624579380034e-01 -6.1304802591658347e-01 -5.9672240627787811e+00 6.0117120060795628e+00 0 1 0 0 0 0 V -182 0 4.7305116351543494e-05 -2.4554262315425721e-05 -1.6747436496839117e-03 1.6758380854626368e-03 0 2 0 P 707 22 5.7727424054869657e-02 -9.7067478521739706e-02 -2.4312645267097261e+00 2.4338861414847752e+00 0 1 0 0 0 0 P 708 22 1.6440187730005401e-01 -1.8231278865907707e-02 -5.4327820192987009e+00 5.4352995157584578e+00 0 1 0 0 0 0 V -183 0 5.1339187957720720e-06 -6.4127932058167156e-06 -1.7576648926858116e-04 1.7617809675287408e-04 0 2 0 P 709 22 3.3797020688659057e-02 -1.1438454385787375e-01 -2.3528628225189627e+00 2.3558840217788530e+00 0 1 0 0 0 0 P 710 22 4.4979805721803719e-02 1.5984176170553061e-02 -3.4416585376051634e-01 3.4746051819642410e-01 0 1 0 0 0 0 V -184 0 -1.9670894780292056e-06 -2.1124274676710057e-05 -3.4509822702997035e-04 3.4636617345691292e-04 0 2 0 P 711 22 4.3847602256823194e-02 -1.1598978728463746e-01 -1.7955701481887758e+00 1.7998467712682293e+00 0 1 0 0 0 0 P 712 22 -5.6702395563709519e-02 -2.2055882604797565e-02 -4.5962283036740204e-01 4.6363214924666474e-01 0 1 0 0 0 0 V -185 0 7.9349822962380631e-05 -2.3523555755897704e-05 -2.0428512859209422e-02 2.0428696349405060e-02 0 2 0 P 713 22 3.4879397994660666e-01 -8.7906493562799920e-02 -7.3592458658789440e+01 7.3593337716383616e+01 0 1 0 0 0 0 P 714 22 7.2237441464074362e-02 -3.6909867038716862e-02 -3.4801555156427661e+01 3.4801649700726990e+01 0 1 0 0 0 0 V -186 0 -4.6768454882198725e-05 -3.6782790166255202e-05 -1.0001752642427812e-02 1.0001950204039290e-02 0 2 0 P 715 22 -1.1925229752597588e-01 -1.3115510091702370e-01 -2.0195350000260529e+01 2.0196127955724208e+01 0 1 0 0 0 0 P 716 22 -1.9186996744297072e-01 -1.1353857171398457e-01 -4.6340265589548196e+01 4.6340801892085750e+01 0 1 0 0 0 0 V -187 0 -1.3575256865070603e-04 -2.5427872974613655e-04 1.0486456973656652e-04 3.1196285752729792e-04 0 2 0 P 717 22 -3.1078092087665993e-01 -6.0920418281955424e-01 2.4708614294654369e-01 7.2716303480167732e-01 0 1 0 0 0 0 P 718 22 -1.1245509809863543e-02 6.0150678471385674e-03 1.6690992811982466e-03 1.2861898168618536e-02 0 1 0 0 0 0 V -188 0 -5.6846995516443385e-06 -9.7339521958676267e-06 1.1424954878273455e-03 1.1426655869387369e-03 0 2 0 P 719 22 -2.6258231794404171e-02 -3.9094441370235836e-02 8.6737162848943896e+00 8.6738441339999373e+00 0 1 0 0 0 0 P 720 22 -2.1179764368731761e-02 -4.2133982880637737e-02 8.6024343902394274e-01 8.6153504241896073e-01 0 1 0 0 0 0 V -189 0 -4.0940485280380988e-05 2.5855236175221184e-05 1.2905229282454491e-03 1.2914584560151142e-03 0 2 0 P 721 22 -4.4941104847510438e-01 3.4931090085240230e-01 1.5577552279646445e+01 1.5587948018294901e+01 0 1 0 0 0 0 P 722 22 -2.0689020536930255e-01 6.5164496887265638e-02 5.1103269704883738e+00 5.1149283195400894e+00 0 1 0 0 0 0 V -190 0 -4.2145797902383384e+00 1.9520536244551973e+01 7.6832533785146757e+02 7.6861755497605395e+02 0 2 0 P 723 211 -1.0623070092216927e-01 6.5997833123117822e-01 3.3173980879212237e+01 3.3181008777895109e+01 1.3957000000000000e-01 1 0 0 0 0 P 724 -211 -1.8948982434691752e-01 7.0970109568191619e-01 2.0736393059665236e+01 2.0749868889912911e+01 1.3957000000000000e-01 1 0 0 0 0 V -191 0 -7.2096106408243662e-05 2.9449817780020695e-05 5.0505719395797777e-04 5.1805133165455457e-04 0 2 0 P 725 22 1.2170620437494338e-02 1.8547248712613134e-02 1.9781076531297428e-02 2.9722305182776902e-02 0 1 0 0 0 0 P 726 22 -1.2662539917664084e-01 2.8205239678840966e-02 7.8201269937315032e-01 7.9270006259799519e-01 0 1 0 0 0 0 V -192 0 3.3278133077998520e-04 -3.1105702392826752e-04 6.8573744283574514e-03 6.8727273047728618e-03 0 2 0 P 727 22 3.8340218065260218e-01 -2.7158514701339603e-01 6.7042313251110022e+00 6.7206750691286290e+00 0 1 0 0 0 0 P 728 22 3.9892913909104483e-01 -4.5967478116514932e-01 9.4166813893707531e+00 9.4363305236398265e+00 0 1 0 0 0 0 V -193 0 7.6899834460628319e-05 -9.1169238619965361e-05 2.0020776235934105e-03 2.0067539984642791e-03 0 2 0 P 729 22 7.1818645567055348e-02 2.3062818866023890e-03 1.1046663081229418e+00 1.1070008532468243e+00 0 1 0 0 0 0 P 730 22 8.2549999199540369e-02 -1.8531931317436104e-01 2.9143021544148398e+00 2.9213549591636823e+00 0 1 0 0 0 0 V -194 0 1.1346085648033334e-04 7.4469189387675360e-06 1.7638129314397652e-03 1.7734739805492386e-03 0 2 0 P 731 22 -5.3671754872275917e-03 -2.4103020998603340e-03 9.4999103066627277e-01 9.5000924967880762e-01 0 1 0 0 0 0 P 732 22 1.1043900537933092e-01 9.3066135170942824e-03 6.8340975655460190e-01 6.9233827159731176e-01 0 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 733 22 -5.3557789721616851e-02 9.1830099732849897e-03 1.1084500182488484e+00 1.1097811529612078e+00 0 1 0 0 0 0 P 734 211 8.4939410578089569e-02 -1.8680319283632085e-01 7.8544327241850436e+00 7.8583524570976122e+00 1.3957000000000000e-01 1 0 0 0 0 P 735 -211 2.5464039855533566e-01 8.6468059875191822e-02 5.7219401489055173e+00 5.7299561351298225e+00 1.3957000000000000e-01 1 0 0 0 0 V -196 0 1.0687575069635741e-04 -3.7971696203126582e-05 2.4174024819571078e-03 2.4202833816010811e-03 0 2 0 P 736 22 2.8600228419896506e-01 -1.6772030766187385e-01 6.8909889597681104e+00 6.8989605196591173e+00 0 1 0 0 0 0 P 737 22 1.5447887870325783e-01 1.1222535323951193e-02 3.0721715281561028e+00 3.0760734008923647e+00 0 1 0 0 0 0 V -197 0 2.2006915378755165e-05 -1.3843970553951524e-05 1.1130971272465527e-03 1.1134388473047793e-03 0 2 0 P 738 22 7.5511970916879653e-02 1.2039370871628185e-02 2.8321698049933040e+00 2.8332018651198414e+00 0 1 0 0 0 0 P 739 22 2.4688786438288110e-01 -2.1485261160401370e-01 1.3474628504567180e+01 1.3478602620390104e+01 0 1 0 0 0 0 V -198 0 8.9130742985879898e-04 -3.1998857921423127e-04 1.4127835231154171e-02 1.4159607755415521e-02 0 2 0 P 740 22 2.3754561024928398e+00 -8.0386009036330897e-01 3.7307825422044388e+01 3.7392015464019742e+01 0 1 0 0 0 0 P 741 22 3.5471501282398593e-01 -1.7629955706649403e-01 5.9672628111626675e+00 5.9803954494355613e+00 0 1 0 0 0 0 V -199 0 0 0 0 0 0 3 0 P 742 111 4.5224604019849179e-01 -1.2691730405745244e-01 6.4567508183721651e+00 6.4752208621709615e+00 1.3497999999999999e-01 2 0 0 -276 0 P 743 111 6.2412391711782300e-01 -1.9256408176649675e-01 9.7618021892225801e+00 9.7845599375452661e+00 1.3497999999999999e-01 2 0 0 -277 0 P 744 111 2.7439246272059215e-01 -4.6486614426740507e-02 7.4592003134732918e+00 7.4656105675181577e+00 1.3497999999999999e-01 2 0 0 -278 0 V -200 0 0 0 0 0 0 1 0 P 745 130 7.1889759292124167e-01 -2.2968656018423947e-01 1.3786410642136589e+01 1.3816018365924180e+01 4.9767000000000000e-01 1 0 0 0 0 V -201 0 0 0 0 0 0 3 0 P 746 111 4.6944761591374884e-01 -1.7406879680011755e-01 6.7041593250700791e+00 6.7241841785030427e+00 1.3497999999999999e-01 2 0 0 -279 0 P 747 111 1.2682665180364525e+00 -5.6420715886056216e-01 1.7367457186212203e+01 1.7423364152602552e+01 1.3497999999999999e-01 2 0 0 -280 0 P 748 111 3.1820255061832475e-01 -1.3149914796968018e-01 6.3627020600068747e+00 6.3734403577622416e+00 1.3497999999999999e-01 2 0 0 -281 0 V -202 0 -1.2240438310662581e-07 2.1552146533915303e-07 5.0691918657862254e-06 5.0752860198292467e-06 0 2 0 P 749 22 -5.5785754656726094e-01 9.6036332047092077e-01 2.1388632054498064e+01 2.1417448118584762e+01 0 1 0 0 0 0 P 750 22 -2.7912157051267000e-01 5.1333362724542930e-01 1.3273588565809586e+01 1.3286443229035275e+01 0 1 0 0 0 0 V -203 0 0 0 0 0 0 1 0 P 751 130 -7.5764483036665731e-01 7.1919842623218627e-02 1.8527276952714814e+01 1.8549578562982013e+01 4.9767000000000000e-01 1 0 0 0 0 V -204 0 0 0 0 0 0 1 0 P 752 130 -1.2030700090314150e+00 1.0680340938334749e+00 1.8673363419817409e+01 1.8749140009869691e+01 4.9767000000000000e-01 1 0 0 0 0 V -205 0 -4.6900352891691733e-04 4.3933282100703521e-04 1.1731759984112482e-02 1.1749656231211169e-02 0 2 0 P 753 22 -3.2907574912343740e-01 3.9633657654640109e-01 9.7029339939508041e+00 9.7165992827498950e+00 0 1 0 0 0 0 P 754 22 -4.1433518007835890e-01 3.0004372883834507e-01 8.8929145513732628e+00 8.9076163533625579e+00 0 1 0 0 0 0 V -206 0 -6.8216729463269326e-04 5.8017441196199135e-04 1.7250218521915436e-02 1.7273640481137914e-02 0 2 0 P 755 22 -5.0198837953633690e-01 4.4757514210239357e-01 1.4217524416497133e+01 1.4233422510932137e+01 0 1 0 0 0 0 P 756 22 -6.2615121102846061e-01 5.1189290732878323e-01 1.4310161700359842e+01 1.4332997857325299e+01 0 1 0 0 0 0 V -207 0 -1.7981091473953645e-04 1.2584493080541412e-04 3.8133657685649300e-03 3.8200730667391188e-03 0 2 0 P 757 22 -1.7174373296083090e-01 4.3771488648120228e-02 3.0168904190587726e+00 3.0220919333531877e+00 0 1 0 0 0 0 P 758 22 -2.6911968426171218e-01 2.6477722384452818e-01 6.3327837444048507e+00 6.3440272962939126e+00 0 1 0 0 0 0 V -208 0 -5.4483235188267082e-05 3.5144057262337654e-05 1.3675986682404218e-03 1.3691709457198922e-03 0 2 0 P 759 22 -7.2110045784763432e-01 4.6316831063179859e-01 1.8345646533691411e+01 1.8365654289826580e+01 0 1 0 0 0 0 P 760 22 -1.6406008400659037e-02 1.2555449009331135e-02 1.6670607486053793e-01 1.6798128409699606e-01 0 1 0 0 0 0 V -209 0 0 0 0 0 0 1 0 P 761 310 -1.0300497241933897e+00 8.1750518361043256e-01 3.3657040177512969e+00 3.6475959375385902e+00 4.9767000000000000e-01 2 0 0 -282 0 V -210 0 -5.8983876823322832e-05 -1.6429205018001760e-05 2.2873907367870649e-04 2.3751073641437376e-04 0 2 0 P 762 22 -1.0064806977019297e-01 -5.5168519779884510e-02 6.4979027313053894e-01 6.5984922412489766e-01 0 1 0 0 0 0 P 763 22 -3.3064484825333051e-01 -6.4962610193906811e-02 1.0227607334502702e+00 1.0768405983651470e+00 0 1 0 0 0 0 V -211 0 1.7857515772444241e-04 1.7663684860369885e-05 -1.5813296911780744e-04 2.4070085390045709e-04 0 2 0 P 764 22 8.8134248544053206e-01 9.1801467060768971e-02 -7.9475366618039589e-01 1.1903047827780009e+00 0 1 0 0 0 0 P 765 22 1.0928438253103145e-02 -3.5428727129714925e-03 4.6244442933892974e-03 1.2384191323411720e-02 0 1 0 0 0 0 V -212 0 1.7777053496611690e-04 5.7844963478961500e-05 -9.7564770021164510e-05 2.1691502484691229e-04 0 2 0 P 766 22 2.6028315124032930e-01 5.0246019984837575e-02 -7.0829265553188192e-02 2.7438798480020382e-01 0 1 0 0 0 0 P 767 22 2.1168458043805879e-01 1.0332811538798012e-01 -1.8819804292281578e-01 3.0150549644218222e-01 0 1 0 0 0 0 V -213 0 1.0519476673444144e-05 2.0965734361790457e-05 -1.8476362155651951e-05 3.1424458877637104e-05 0 2 0 P 768 22 1.2247027521764227e-01 9.7116672501527376e-02 -9.8740205423100136e-02 1.8487899977187777e-01 0 1 0 0 0 0 P 769 22 2.2525701701777333e-02 1.9186606209543552e-01 -1.5593008510938769e-01 2.4826232993224701e-01 0 1 0 0 0 0 V -214 0 2.4326285432274090e-05 -3.0703874231523966e-05 -5.2361778727215607e-05 6.8900792143213553e-05 0 2 0 P 770 22 4.6502285693232823e-02 4.9122421601447655e-04 -1.1975573674364161e-01 1.2846844110106512e-01 0 1 0 0 0 0 P 771 22 1.0478546815142298e-01 -1.9144188044128876e-01 -2.0588772875814365e-01 3.0003290615496914e-01 0 1 0 0 0 0 V -215 0 -6.9069638295344597e-05 -8.3211657319212512e-06 -1.1589711279429978e-04 1.7334169806331958e-04 0 2 0 P 772 22 -1.1810288660777664e-01 -2.6977970441531249e-02 -1.2705331250904733e-01 1.7555240509248271e-01 0 1 0 0 0 0 P 773 22 3.2187736696413047e-02 1.6627341439562057e-02 -1.7110144340669795e-02 4.0065894677942117e-02 0 1 0 0 0 0 V -216 0 5.5483858604600403e-04 -3.1152370698761495e-04 -1.3969660557977444e-03 1.5363375282373482e-03 0 2 0 P 774 22 1.0775676638098870e+00 -6.3246755327859228e-01 -2.6574669915084925e+00 2.9365452639106562e+00 0 1 0 0 0 0 P 775 22 1.1769396265485663e-01 -3.8632730769549803e-02 -3.5194865109860723e-01 3.7311152453689289e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 776 130 8.2941117525994312e-01 -8.3613093820046891e-01 -9.6052625597671515e+00 9.6899835972217563e+00 4.9767000000000000e-01 1 0 0 0 0 V -218 0 -1.6722184801720693e-05 -2.3642988567281574e-04 -9.2709422795629846e-03 9.2742552658614287e-03 0 2 0 P 777 22 -7.9694873782687831e-02 -1.8319347798503061e-01 -7.2557574660575233e+00 7.2585072521512961e+00 0 1 0 0 0 0 P 778 22 4.8576461257195946e-02 -2.5678029356212412e-01 -9.9965938131711969e+00 1.0000009182859920e+01 0 1 0 0 0 0 V -219 0 3.5207098442280088e-04 1.3640278715078866e-04 -2.1854345475050496e-02 2.1857893981952842e-02 0 2 0 P 779 22 1.1263714295641156e-01 1.1005495787377902e-01 -8.0510966777703992e+00 8.0526366448841795e+00 0 1 0 0 0 0 P 780 22 3.1151093581354655e-01 5.4272642719959997e-02 -1.8277340075443860e+01 1.8280075076878251e+01 0 1 0 0 0 0 V -220 0 4.0732591237932530e-04 -7.1201379768761560e-06 -9.6040708324364385e-02 9.6041807060242373e-02 0 2 0 P 781 22 7.3516208383785447e-02 -6.3071667332222553e-02 -1.8314609818664195e+01 1.8314865969425654e+01 0 1 0 0 0 0 P 782 22 1.8542773216713121e-01 5.8545275740220004e-02 -4.2740085478139200e+01 4.2740527812274529e+01 0 1 0 0 0 0 V -221 0 -5.1199299762933120e-05 3.0458427434007305e-05 -1.3576405888626594e-02 1.3576560430773025e-02 0 2 0 P 783 22 -1.1605516885830293e-01 5.1307057689435186e-02 -4.3359301807833631e+01 4.3359487479433987e+01 0 1 0 0 0 0 P 784 22 -1.5559897765766198e-01 1.1029980309021103e-01 -2.8674631693328251e+01 2.8675265994170566e+01 0 1 0 0 0 0 V -222 0 -1.0112023221480850e-06 7.8947362904405682e-06 -8.7528605331296480e-04 8.7548313651854856e-04 0 2 0 P 785 22 -1.0124690408002537e-02 8.5118768635605857e-03 -6.3261133720516255e-02 6.4629191881094672e-02 0 1 0 0 0 0 P 786 22 1.9923463450823901e-03 5.4979583147626403e-02 -6.9760100221205255e+00 6.9762269567964204e+00 0 1 0 0 0 0 V -223 0 -2.1608929989441920e-06 -2.4696836669791418e-06 -2.0818427158124883e-03 2.0818998102930305e-03 0 2 0 P 787 22 -6.9749352578358625e-02 -1.9912443505653885e-02 -6.4597688689007953e+00 6.4601761057428861e+00 0 1 0 0 0 0 P 788 22 5.0388253194198429e-02 -2.2153485447544714e-03 -1.2193058338521956e+01 1.2193162654964828e+01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 789 310 -1.9805731114461828e-01 9.4303790503380425e-01 -1.8234972062882342e+01 1.8267195426551606e+01 4.9767000000000000e-01 2 0 0 -283 0 V -225 0 -3.1906116725609348e-06 -4.4704910251314926e-05 -4.6873670890755883e-04 4.7162344182499863e-04 0 2 0 P 790 22 5.0738318176894961e-02 -1.6055032141692413e-01 -1.3830194786786927e+00 1.3932313738368014e+00 0 1 0 0 0 0 P 791 22 -6.6948362833767469e-02 -6.6574965495111535e-02 -9.9841824031776205e-01 1.0028725202716513e+00 0 1 0 0 0 0 V -226 0 -5.3452508805069076e-04 -9.7025711343016162e-05 -4.2247817735333619e-03 4.2596548385932737e-03 0 2 0 P 792 22 -1.6278408957896222e+00 -2.6922568176812567e-01 -1.3296538076639056e+01 1.3398517577450161e+01 0 1 0 0 0 0 P 793 22 -1.0115523684729542e+00 -2.0987065010461919e-01 -7.5647101703015700e+00 7.6349278873216990e+00 0 1 0 0 0 0 V -227 0 -1.6933450098999007e+01 -3.1142436392290037e+01 -2.3834974919315820e+02 2.4166701952498209e+02 0 2 0 P 794 211 -4.4445277093260582e-01 -5.3034317813934584e-01 -5.0344323959165571e+00 5.0836789322441218e+00 1.3957000000000000e-01 1 0 0 0 0 P 795 -211 -1.5462055357019841e-02 -3.1548966394889838e-01 -1.4391794702693683e+00 1.4800304509567606e+00 1.3957000000000000e-01 1 0 0 0 0 V -228 0 -9.0659989502631471e-05 -2.4209565195434596e-04 -1.4134126101614313e-03 1.4377491613610323e-03 0 2 0 P 796 22 -5.5247848464409319e-02 -2.0018364169409472e-01 -8.3535711404560742e-01 8.6078297099121459e-01 0 1 0 0 0 0 P 797 22 -1.8671171628364777e-01 -4.4593774984401496e-01 -2.9368548820097056e+00 2.9763800731287282e+00 0 1 0 0 0 0 V -229 0 -2.0274777981390234e-04 -3.6325941381263813e-04 -1.2714645542408923e-03 1.3399652062219851e-03 0 2 0 P 798 22 -7.5556374146420885e-02 -1.8679547450775494e-01 -8.0152470648754337e-01 8.2646425819915159e-01 0 1 0 0 0 0 P 799 22 -2.8315281492800182e-01 -4.5589708603216894e-01 -1.4479994047370235e+00 1.5442538475824008e+00 0 1 0 0 0 0 V -230 0 -5.6490569110586285e-04 -2.6413446738684772e-04 -1.1512897367125241e-03 1.3126968004383028e-03 0 2 0 P 800 22 -1.4765757277047786e-01 -1.0275986319426580e-01 -2.4541842118144513e-01 3.0429023930347543e-01 0 1 0 0 0 0 P 801 22 -6.6428714625042773e-01 -2.7688330429855479e-01 -1.4093420751356740e+00 1.5824622781035100e+00 0 1 0 0 0 0 V -231 0 -3.6426491262522456e-05 -1.3617110798711625e-05 -6.5557931832374930e-05 7.6234590170041298e-05 0 2 0 P 802 22 -2.3676180985526991e+00 -9.2803126889044674e-01 -4.3882108998899891e+00 5.0718095783010240e+00 0 1 0 0 0 0 P 803 22 -1.5749035448356059e+00 -5.4577947114017500e-01 -2.7072725295237756e+00 3.1792327621248284e+00 0 1 0 0 0 0 V -232 0 -1.6012261014008652e-07 1.6115865871207156e-07 -5.3287409479060166e-07 5.7966869940212338e-07 0 2 0 P 804 22 -6.0400056424279469e-01 5.4392352478067496e-01 -2.0276396654892017e+00 2.1844889781092074e+00 0 1 0 0 0 0 P 805 22 -4.1527415212390933e-01 4.8194625091855109e-01 -1.3644177794379893e+00 1.5054436844476022e+00 0 1 0 0 0 0 V -233 0 4.8828151083376019e-04 6.2061906283250340e-04 -1.4205862148475143e-03 1.6409957698967415e-03 0 2 0 P 806 22 5.9093508154473347e-02 6.6130121986183538e-02 -7.2012175289775188e-02 1.1424092580977990e-01 0 1 0 0 0 0 P 807 22 2.3213965453537191e-01 3.0403513818450917e-01 -7.7528965171815534e-01 8.6452312202736026e-01 0 1 0 0 0 0 V -234 0 -5.3539085469682272e-05 1.1781254021523465e-04 -3.6341812739635113e-04 3.8641426510631528e-04 0 2 0 P 808 22 -1.0844828497823429e-01 3.4445201679576332e-01 -1.1595976831109218e+00 1.2145266605001337e+00 0 1 0 0 0 0 P 809 22 -2.1570703586466189e-01 3.6885045069617217e-01 -1.0407372432859416e+00 1.1250396392406399e+00 0 1 0 0 0 0 V -235 0 3.1089672279158675e-06 5.7598119243257740e-04 -5.3255526395539908e-04 7.8715662235517587e-04 0 2 0 P 810 22 -5.2942697678171795e-03 1.1755622300905504e+00 -1.0607735409029089e+00 1.5834187984192742e+00 0 1 0 0 0 0 P 811 22 1.1741676628164702e-02 1.8913240147967088e-02 -4.3644811117475805e-02 4.8994358454981374e-02 0 1 0 0 0 0 V -236 0 4.6069916186710796e-06 -8.9379530820753407e-06 -3.5887871366883539e-05 3.7278009896140274e-05 0 2 0 P 812 22 3.4515398157929245e-01 -7.2436511513909230e-01 -2.6332885877303100e+00 2.7528248904173331e+00 0 1 0 0 0 0 P 813 22 4.5809941314149660e-01 -8.3401435443396477e-01 -3.6239519047252799e+00 3.7467936190140598e+00 0 1 0 0 0 0 V -237 0 3.3218734342795085e-04 -6.5206706221401008e-04 -2.5445804758752288e-03 2.6478337280608066e-03 0 2 0 P 814 22 9.2551455157177454e-01 -1.8498243517570576e+00 -6.9539742736688455e+00 7.2550799800121215e+00 0 1 0 0 0 0 P 815 22 9.1459606436684626e-01 -1.7622203188857115e+00 -7.1414138842599257e+00 7.4122667706680279e+00 0 1 0 0 0 0 V -238 0 1.0104700811723301e-05 -2.6521944824241803e-05 -1.2522096794529599e-04 1.2845625642779148e-04 0 2 0 P 816 22 1.5801069105175258e-01 -3.5293548904244915e-01 -1.4331491208570930e+00 1.4844013071018716e+00 0 1 0 0 0 0 P 817 22 1.9182524892998870e-01 -5.6528363199950693e-01 -2.9021395574323443e+00 2.9628966437503705e+00 0 1 0 0 0 0 V -239 0 2.2343738426335052e-06 -2.3830060567831932e-06 -1.3094235112920774e-04 1.3098541236184703e-04 0 2 0 P 818 22 3.3209649145029907e-01 -3.9938664206069330e-01 -1.9315025248348554e+01 1.9322008128396806e+01 0 1 0 0 0 0 P 819 22 5.4759380698280229e-02 -1.3203171175596546e-02 -3.3561215762001009e+00 3.3565942483027942e+00 0 1 0 0 0 0 V -240 0 -9.0012058024867766e-05 2.4521709534095713e-04 -4.5059624108616594e-02 4.5060400296800023e-02 0 2 0 P 820 22 -2.2764756391559216e-02 4.9467671678819145e-02 -5.1465272437677569e+00 5.1468153216837536e+00 0 1 0 0 0 0 P 821 22 -2.7049181751313051e-01 7.4944223906537955e-01 -1.4165637091766968e+02 1.4165861163747670e+02 0 1 0 0 0 0 V -241 0 -6.9230886624502755e-06 2.9808994686310331e-06 -1.4844294597861328e-03 1.4844502480971565e-03 0 2 0 P 822 22 -3.2183079181152702e-01 1.8222282181773755e-01 -6.3086668053557908e+01 6.3087752110177085e+01 0 1 0 0 0 0 P 823 22 -1.0019110310295880e-01 -5.1131938899225918e-04 -2.7402095564862645e+01 2.7402278734887240e+01 0 1 0 0 0 0 V -242 0 9.4609369126326688e-06 1.8629041008225253e-04 -2.7393674687289155e-01 2.7393681794722669e-01 0 2 0 P 824 22 -1.9210359786280256e-02 2.1115280615025306e-01 -3.8975887882914219e+02 3.8975893649882534e+02 0 1 0 0 0 0 P 825 22 3.9043088424311943e-02 1.7936318451190819e-01 -1.8448796531384770e+02 1.8448805663553986e+02 0 1 0 0 0 0 V -243 0 5.0704170108123206e-05 -2.5172542708855642e-04 2.2367708982639012e-07 2.6082991747392883e-04 0 2 0 P 826 22 1.8792700414879831e-02 -6.7556995272138917e-02 4.0005560666914186e-02 8.0731394657576533e-02 0 1 0 0 0 0 P 827 22 1.3071367226080710e-01 -6.7468088050799979e-01 -3.9346026149747519e-02 6.8835199165305849e-01 0 1 0 0 0 0 V -244 0 -1.4342158038191584e-05 -9.5234954800811365e-06 -2.5461492123566643e-06 1.8018513960058157e-05 0 2 0 P 828 22 -4.7226674031423763e-02 -5.1966913450665148e-02 3.3509970940907331e-02 7.7806407101984429e-02 0 1 0 0 0 0 P 829 22 -3.6749834310439544e-01 -2.2341924640422645e-01 -1.0713569538998166e-01 4.4322595713135232e-01 0 1 0 0 0 0 V -245 0 0 0 0 0 0 1 0 P 830 130 -1.1109777780491592e+00 -4.5147236914205385e-01 6.3418105744252029e-01 1.4449774966886850e+00 4.9767000000000000e-01 1 0 0 0 0 V -246 0 2.7637561767556640e-05 -2.6490190894813834e-05 4.4415528669081379e-05 7.3920210749531295e-05 0 2 0 P 831 22 -3.0466666926336591e-02 -7.5720119042913155e-03 -1.6329134129450503e-03 3.1435959729157907e-02 0 1 0 0 0 0 P 832 22 1.1334878900747555e-01 -7.1869266387991973e-02 1.3483038214806711e-01 1.9024292725566219e-01 0 1 0 0 0 0 V -247 0 -1.4307539643374238e+01 -9.0927036733305204e+00 1.0611512536234185e+01 2.1908445376326107e+01 0 2 0 P 833 211 -2.1296385184455152e-01 1.5068558326127085e-02 2.4209862591622258e-01 3.5167057484671510e-01 1.3957000000000000e-01 1 0 0 0 0 P 834 -211 -5.8316046574998448e-01 -5.2102015360071419e-01 3.4836510070134286e-01 8.6739619411114977e-01 1.3957000000000000e-01 1 0 0 0 0 V -248 0 0 0 0 0 0 1 0 P 835 310 -1.7204594727288618e+00 -4.3355798361830000e-01 -2.1631676398130181e-01 1.8553764291218593e+00 4.9767000000000000e-01 2 0 0 -284 0 V -249 0 -4.8345109811602011e-04 -4.5382717079756491e-04 -2.5118409776454234e-04 7.2279972782530902e-04 0 2 0 P 836 22 -3.6514962891044267e-01 -4.0618899328039176e-01 -2.1933107674569369e-01 5.8858293466766221e-01 0 1 0 0 0 0 P 837 22 -1.0023163864703578e-01 -3.0675593067305301e-02 -2.2464575934551392e-02 1.0720088883875958e-01 0 1 0 0 0 0 V -250 0 -8.9147531817677169e-05 -4.8481591078348192e-06 -6.8523599561270166e-06 9.1317941983235792e-05 0 2 0 P 838 22 -6.1924574768857288e-01 -2.9053482403095115e-02 -8.4461617265824046e-02 6.2565419015721879e-01 0 1 0 0 0 0 P 839 22 -5.2143433388860017e-02 -7.4590435948134323e-03 3.2855024849996188e-02 6.2080815352423338e-02 0 1 0 0 0 0 V -251 0 -2.3310608007403398e-04 -8.1232956311638456e-04 -1.6266761431197208e-04 8.8515126911352664e-04 0 2 0 P 840 22 -1.5176692007110432e-01 -4.0680428149342662e-01 -3.5853459921178846e-02 4.3567004953011357e-01 0 1 0 0 0 0 P 841 22 -2.9793089845933120e-04 -1.2311228659536767e-01 -7.0261432148853747e-02 1.4175116479651298e-01 0 1 0 0 0 0 V -252 0 -7.9564699258294770e-04 3.7539620445727658e-04 -2.0574538660919181e-04 9.1864311174874927e-04 0 2 0 P 842 22 -3.2287021892481904e-01 2.2329664538579821e-01 -1.1099047640789292e-01 4.0795276192515545e-01 0 1 0 0 0 0 P 843 22 -3.2360895893843011e-01 8.1720318032465281e-02 -5.6181786698977450e-02 3.3846323558287866e-01 0 1 0 0 0 0 V -253 0 0 0 0 0 0 1 0 P 844 310 -4.7458306110182519e-01 -2.4425569650999043e-01 -3.9911004380928555e-01 8.3177772459462340e-01 4.9767000000000000e-01 2 0 0 -285 0 V -254 0 -1.5926590153154257e-05 -3.5226215920442659e-06 -4.0952512641108544e-06 1.7588776819804356e-05 0 2 0 P 845 22 -2.6186964823575010e-01 4.2977673784498399e-04 -9.8090156220580108e-02 2.7963829516455307e-01 0 1 0 0 0 0 P 846 22 -1.5551167680530642e-01 -9.2745611675964734e-02 -9.2323392133924539e-03 1.8130324375282994e-01 0 1 0 0 0 0 V -255 0 -1.9254404414230622e-04 2.3612263884520852e-04 3.0132841275208155e-04 4.3252305746733588e-04 0 2 0 P 847 22 -3.8768604532424472e-01 3.9553091584371330e-01 5.7104752572381989e-01 7.9551269742387876e-01 0 1 0 0 0 0 P 848 22 -5.4772674286516707e-02 1.4706971831222959e-01 1.2139343905663522e-01 1.9840845480707825e-01 0 1 0 0 0 0 V -256 0 4.8919229658336480e-06 1.7824283083658922e-05 1.6807450517030552e-05 2.6642949778854824e-05 0 2 0 P 849 22 4.3235110435006080e-02 1.7990297807804781e-01 2.4066506608596891e-01 3.0356882305309535e-01 0 1 0 0 0 0 P 850 22 2.8084166757850502e-02 7.9956998231040091e-02 4.3705223117418831e-03 8.4858372915574673e-02 0 1 0 0 0 0 V -257 0 7.8490880139251535e-05 4.2755725852663104e-05 1.2800241369165482e-03 1.2832515451372322e-03 0 2 0 P 851 22 5.0989093615169800e-01 3.2714708009054089e-01 8.8761711625197073e+00 8.8968212573439907e+00 0 1 0 0 0 0 P 852 22 1.1893643421968116e-01 1.5389156075381025e-02 1.3787044434248290e+00 1.3839106343362542e+00 0 1 0 0 0 0 V -258 0 -2.8029065560321863e-05 -8.8066904399427981e-06 1.4117631238562626e-03 1.4121561442468852e-03 0 2 0 P 853 22 -8.3739264816948419e-02 -4.5547795598169065e-02 7.5184487358152472e+00 7.5190530161209672e+00 0 1 0 0 0 0 P 854 22 -1.5715059538943282e-01 -3.0139437869999886e-02 4.6146500583050214e+00 4.6174235084038919e+00 0 1 0 0 0 0 V -259 0 3.4316533639322077e-05 4.3753973111644649e-05 3.7841269821551602e-03 3.7845416966790116e-03 0 2 0 P 855 22 2.4065027853164148e-01 2.1040141152307071e-01 2.2550700777153473e+01 2.2552966253937385e+01 0 1 0 0 0 0 P 856 22 4.3642940123054541e-01 6.5288292873469822e-01 5.2111720322429420e+01 5.2117637338083497e+01 0 1 0 0 0 0 V -260 0 0 0 0 0 0 1 0 P 857 130 2.0629075697271246e+00 -7.7183164484213551e-01 4.2803652534638491e+02 4.2804248155733859e+02 4.9767000000000000e-01 1 0 0 0 0 V -261 0 0 0 0 0 0 1 0 P 858 310 1.1723725480492164e+00 2.1310327698164550e-01 2.0381019982747901e+02 2.0381429071471879e+02 4.9767000000000000e-01 2 0 0 -286 0 V -262 0 1.7224832372027556e-05 4.9635891091890251e-06 5.4314881688252862e-03 5.4315239366770855e-03 0 2 0 P 859 22 2.6661422018779757e-01 1.0188247240638224e-01 8.6477950535367569e+01 8.6478421539584488e+01 0 1 0 0 0 0 P 860 22 1.6977020469654283e-02 -2.0161480109547603e-02 2.9465753552214493e+00 2.9466932362400136e+00 0 1 0 0 0 0 V -263 0 6.2651823593478381e-06 -2.0852762778491618e-05 1.2579956552868993e-02 1.2579979566913684e-02 0 2 0 P 861 22 1.4086216045245559e-02 -1.1200728273678850e-01 1.0081556373271252e+02 1.0081562693748170e+02 0 1 0 0 0 0 P 862 22 6.8466080048426817e-02 -1.6275621950871369e-01 6.4942468297830999e+01 6.4942708334391867e+01 0 1 0 0 0 0 V -264 0 0 0 0 0 0 1 0 P 863 310 1.6242886330190237e-01 1.6558355164107235e-03 2.2270346182608398e+02 2.2270407713068113e+02 4.9767000000000000e-01 2 0 0 -287 0 V -265 0 0 0 0 0 0 1 0 P 864 130 -4.1878074581412728e-01 6.1734890461569478e-02 1.0175231679867260e+02 1.0175441434078472e+02 4.9767000000000000e-01 1 0 0 0 0 V -266 0 -2.4256578200719060e-05 -1.3810708851907005e-05 4.9206502935582128e-03 4.9207315930393028e-03 0 2 0 P 865 22 -5.3102695187781634e-01 -3.4349357004281228e-01 1.1808429359072542e+02 1.1808598718847603e+02 0 1 0 0 0 0 P 866 22 -1.8375860991027182e-01 -6.3476250832806308e-02 2.6915951511424399e+01 2.6916653622367058e+01 0 1 0 0 0 0 V -267 0 0 0 0 0 0 1 0 P 867 130 -3.1158702097676805e-01 1.0559302699692382e-02 1.2577059738403939e+02 1.2577196841799666e+02 4.9767000000000000e-01 1 0 0 0 0 V -268 0 -7.9122630246911103e-05 4.1348392657079382e-05 3.7933664244687903e-03 3.7946663735009254e-03 0 2 0 P 868 22 -1.8150541662921432e-01 1.2709842785293868e-01 1.0572026809119979e+01 1.0574348636175184e+01 0 1 0 0 0 0 P 869 22 -6.3899318652403114e-02 1.1466939619680621e-03 1.1933819028746684e+00 1.1950919646370517e+00 0 1 0 0 0 0 V -269 0 -5.6567824089165948e-05 -8.0308670325358552e-05 1.2619352019284777e-03 1.2657763019979932e-03 0 2 0 P 870 22 -5.3356944795546335e-01 -7.1558318479906746e-01 1.2268886228340472e+01 1.2301313951530590e+01 0 1 0 0 0 0 P 871 22 -4.5388910513547259e-01 -6.8630003551245267e-01 9.7596914773639885e+00 9.7943147178266816e+00 0 1 0 0 0 0 V -270 0 -9.8881030585708924e-05 -3.9986971271372835e-06 3.4112035051868388e-03 3.4128591137890761e-03 0 2 0 P 872 22 -1.9280581258700627e-01 1.1982246467290803e-02 4.4734471257447828e+00 4.4776162008854667e+00 0 1 0 0 0 0 P 873 22 -1.5129217160848338e-01 -2.5897388863218636e-02 7.3972650104718163e+00 7.3988573192818476e+00 0 1 0 0 0 0 V -271 0 0 0 0 0 0 1 0 P 874 310 -5.8747652079299484e-01 -1.5548826548622425e+00 5.7889405235137454e+00 6.0433679804024916e+00 4.9767000000000000e-01 2 0 0 -288 0 V -272 0 3.0609116760208033e-05 2.4541542811739393e-06 1.9908967884407018e-04 2.0229569133543412e-04 0 2 0 P 875 22 1.7231432157806784e-01 -3.7715345004690870e-02 1.1779047170671126e+00 1.1910391241091483e+00 0 1 0 0 0 0 P 876 22 5.0478191614933166e-02 5.5578232207529214e-02 2.7119589723484622e-01 2.8139687702787536e-01 0 1 0 0 0 0 V -273 0 -1.3063418628470775e-05 -7.0690310731252756e-05 1.0849468840717890e-04 1.3101469543511001e-04 0 2 0 P 877 22 -1.0766615719333296e-01 -5.2816886598799107e-01 8.8888909787526071e-01 1.0395567231879723e+00 0 1 0 0 0 0 P 878 22 -9.6320026322017031e-03 -1.0656876296617269e-01 8.5299027220184426e-02 1.3684151694407951e-01 0 1 0 0 0 0 V -274 0 7.3077318523378720e-01 1.8667221287503903e+00 -2.3734399694455576e+02 2.3742018219064246e+02 0 2 0 P 879 -211 1.1485485557728180e-01 1.3102123427869275e-01 -1.8673502574362900e+01 1.8674836984062789e+01 1.3957000000000000e-01 1 0 0 0 0 P 880 211 -5.0715514637383739e-02 3.2819379300566769e-02 -2.1579781746123832e+00 2.1633304791654009e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 881 310 6.2823773796126536e-01 -1.0497489316067193e-01 -5.7823824009597359e+01 5.7829473462114287e+01 4.9767000000000000e-01 2 0 0 -289 0 V -276 0 8.4899219687806603e-05 -2.3825924655146904e-05 1.2121125614672251e-03 1.2155799048306497e-03 0 2 0 P 882 22 6.2398710633393077e-02 2.5246693146351584e-02 6.7657455480862161e-01 6.7991479085104489e-01 0 1 0 0 0 0 P 883 22 3.8984732956509871e-01 -1.5216399720380402e-01 5.7801762635635434e+00 5.7953060713199145e+00 0 1 0 0 0 0 V -277 0 6.3443387480934961e-05 -1.9574506471149975e-05 9.9230582552113753e-04 9.9461919407733230e-04 0 2 0 P 884 22 6.2319777247723085e-02 -5.7646994779522669e-02 9.2402871383688856e-01 9.2792025230532060e-01 0 1 0 0 0 0 P 885 22 5.6180413987009981e-01 -1.3491708698697411e-01 8.8377734753856920e+00 8.8566396852399425e+00 0 1 0 0 0 0 V -278 0 1.6368642697006427e-05 -2.7731183801489867e-06 4.4497207950267698e-04 4.4535447760872207e-04 0 2 0 P 886 22 1.7116304294497448e-01 2.2114326238582945e-02 3.2432674926248239e+00 3.2478561943860869e+00 0 1 0 0 0 0 P 887 22 1.0322941977561768e-01 -6.8600940665323448e-02 4.2159328208484679e+00 4.2177543731320677e+00 0 1 0 0 0 0 V -279 0 1.7748784942479378e-04 -6.5811595050661886e-05 2.5346956305056321e-03 2.5422665884791747e-03 0 2 0 P 888 22 4.5546287002250047e-01 -1.5659934259393682e-01 5.8703443858894380e+00 5.8900690139431813e+00 0 1 0 0 0 0 P 889 22 1.3984745891248413e-02 -1.7469454206180748e-02 8.3381493918064054e-01 8.3411516455985812e-01 0 1 0 0 0 0 V -280 0 1.0412242449283585e-04 -4.6320403843609023e-05 1.4258373329161435e-03 1.4304271953810251e-03 0 2 0 P 890 22 2.1716265557235334e-01 -1.5335731915740630e-01 3.1834809363982104e+00 3.1945624048882184e+00 0 1 0 0 0 0 P 891 22 1.0511038624640994e+00 -4.1084983970315592e-01 1.4183976249813991e+01 1.4228801747714323e+01 0 1 0 0 0 0 V -281 0 1.1397414632442999e-04 -4.7100512246400252e-05 2.2789997572200903e-03 2.2828460127490508e-03 0 2 0 P 892 22 3.0488930317455015e-01 -1.0233118831867910e-01 6.1428206679521500e+00 6.1512336094407134e+00 0 1 0 0 0 0 P 893 22 1.3313247443774621e-02 -2.9167959651001076e-02 2.1988139205472487e-01 2.2220674832152401e-01 0 1 0 0 0 0 V -282 0 -8.2390983860444784e+00 6.5390101862724572e+00 2.6921386307125317e+01 2.9176166058828262e+01 0 2 0 P 894 211 -3.5510023328406298e-01 4.7534897540972360e-01 1.1414774736370914e+00 1.2940260553104743e+00 1.3957000000000000e-01 1 0 0 0 0 P 895 -211 -6.7494949090932677e-01 3.4215620820070902e-01 2.2242265441142055e+00 2.3535698822281161e+00 1.3957000000000000e-01 1 0 0 0 0 V -283 0 -1.9569999912523571e+01 9.3181370646510658e+01 -1.8017936304048119e+03 1.8049776139727210e+03 0 2 0 P 896 211 -2.4194470239333218e-01 8.8339096544100981e-01 -1.5521030645699497e+01 1.5548658750081369e+01 1.3957000000000000e-01 1 0 0 0 0 P 897 -211 4.3887391248713915e-02 5.9646939592794448e-02 -2.7139414171828462e+00 2.7185366764702366e+00 1.3957000000000000e-01 1 0 0 0 0 V -284 0 -1.3903870948638146e+00 -3.5037932299673691e-01 -1.7481611267788522e-01 1.4994200584532400e+00 0 2 0 P 898 111 -3.7360424747528692e-01 -2.1136119797617639e-01 -1.7570184746477871e-01 4.8305737686535355e-01 1.3497999999999999e-01 2 0 0 -290 0 P 899 111 -1.3468552252535748e+00 -2.2219678564212361e-01 -4.0614916516523110e-02 1.3723190522565056e+00 1.3497999999999999e-01 2 0 0 -291 0 V -285 0 -6.3381918078819730e+01 -3.2621043217468781e+01 -5.3302281885966373e+01 1.1108628166720875e+02 0 2 0 P 900 111 -1.4335279157893477e-01 -2.1555095417411863e-01 4.1644723968920737e-03 2.9197462206361524e-01 1.3497999999999999e-01 2 0 0 -292 0 P 901 111 -3.3123026952289042e-01 -2.8704742335871811e-02 -4.0327451620617760e-01 5.3980310253100805e-01 1.3497999999999999e-01 2 0 0 -293 0 V -286 0 6.7131451885745761e+01 1.2202548080124034e+01 1.1670415386567258e+04 1.1670649635655027e+04 0 2 0 P 902 111 1.0810432728977477e+00 1.4791498965995190e-01 1.6258827387253211e+02 1.6259199105076470e+02 1.3497999999999999e-01 2 0 0 -294 0 P 903 111 9.1329275151468700e-02 6.5188287321693600e-02 4.1221925954946883e+01 4.1222299663954061e+01 1.3497999999999999e-01 2 0 0 -295 0 V -287 0 1.1963815423657785e+01 1.2196176275305469e-01 1.6403384579159836e+04 1.6403429899865037e+04 0 2 0 P 904 211 1.3626108015891641e-01 -1.8587664838366000e-01 8.8824955038153718e+01 8.8825363689237491e+01 1.3957000000000000e-01 1 0 0 0 0 P 905 -211 2.6167783142985936e-02 1.8753248390007071e-01 1.3387850678793026e+02 1.3387871344144364e+02 1.3957000000000000e-01 1 0 0 0 0 V -288 0 -1.5876649786634818e+01 -4.2020959981921315e+01 1.5644707162666592e+02 1.6332301557702868e+02 0 2 0 P 906 211 -5.9635361937237930e-01 -1.2852911204298385e+00 4.9705654597111613e+00 5.1704556547530656e+00 1.3957000000000000e-01 1 0 0 0 0 P 907 -211 8.8770985793845316e-03 -2.6959153443240397e-01 8.1837506380258418e-01 8.7291232564942622e-01 1.3957000000000000e-01 1 0 0 0 0 V -289 0 5.5698594249179649e+01 -9.3069130158935955e+00 -5.1265715458263530e+03 5.1270724176213089e+03 0 2 0 P 908 -211 1.3478705056815510e-01 -5.1264238263441404e-02 -3.1269479657343474e+01 3.1270123654968859e+01 1.3957000000000000e-01 1 0 0 0 0 P 909 211 4.9345068739311027e-01 -5.3710654897230523e-02 -2.6554344352253885e+01 2.6559349807145431e+01 1.3957000000000000e-01 1 0 0 0 0 V -290 0 -1.3904520446845010e+00 -3.5041606741814374e-01 -1.7484665784316167e-01 1.4995040363261380e+00 0 2 0 P 910 22 -3.8312133544937621e-01 -1.9344438361365254e-01 -1.6287185488097117e-01 4.5905329575175435e-01 0 1 0 0 0 0 P 911 22 9.5170879740893114e-03 -1.7916814362523840e-02 -1.2829992583807544e-02 2.4004081113599324e-02 0 1 0 0 0 0 V -291 0 -1.3905878267013387e+00 -3.5041243863399146e-01 -1.7482216582054702e-01 1.4996245853540262e+00 0 2 0 P 912 22 -3.9484700900656616e-02 7.6572063088915709e-03 1.6956715891491701e-02 4.3648649778612957e-02 0 1 0 0 0 0 P 913 22 -1.3073705243529181e+00 -2.2985399195101519e-01 -5.7571632408014814e-02 1.3286704024778926e+00 0 1 0 0 0 0 V -292 0 -6.3381918284834789e+01 -3.2621043527241206e+01 -5.3302281879981528e+01 1.1108628208681110e+02 0 2 0 P 914 22 -7.0379797730159899e-02 -3.4643437828558457e-02 -4.5494834668191667e-02 9.0682212669329548e-02 0 1 0 0 0 0 P 915 22 -7.2972993848774870e-02 -1.8090751634556018e-01 4.9659307065083737e-02 2.0129240939428575e-01 0 1 0 0 0 0 V -293 0 -6.3381987740786833e+01 -3.2621049254443662e+01 -5.3302366699761087e+01 1.1108639519471343e+02 0 2 0 P 916 22 -1.2278947561675163e-01 -7.3023090858334916e-02 -1.2910379936066169e-01 1.9255497430629903e-01 0 1 0 0 0 0 P 917 22 -2.0844079390613879e-01 4.4318348522463101e-02 -2.7417071684551592e-01 3.4724812822470913e-01 0 1 0 0 0 0 V -294 0 6.7131572813437444e+01 1.2202564626194587e+01 1.1670433574021125e+04 1.1670667823524704e+04 0 2 0 P 918 22 6.8998893878657874e-01 1.5870514020833162e-01 1.0628632656808149e+02 1.0628868466301597e+02 0 1 0 0 0 0 P 919 22 3.9105433411116897e-01 -1.0790150548379746e-02 5.6301947304450614e+01 5.6303306387748762e+01 0 1 0 0 0 0 V -295 0 6.7131452258809730e+01 1.2202548346406685e+01 1.1670415554951551e+04 1.1670649804040848e+04 0 3 0 P 920 22 -3.4347152710584430e-02 1.3300495599083820e-02 1.2041239836222122e+01 1.2041296168747992e+01 0 1 0 0 0 0 P 921 -11 1.0450823268270487e-01 4.5281992881121787e-02 2.4603048308630033e+01 2.4603311947102991e+01 5.1000000000000004e-04 1 0 0 0 0 P 922 11 2.1168195179348245e-02 6.6057988414879951e-03 4.5776378100947275e+00 4.5776915481030764e+00 5.1000000000000004e-04 1 0 0 0 0 E 15 20 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 217 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 9.6139969707411088e-01 1.3417891137876226e+00 5.7133730717022263e+02 5.7133969164755638e+02 0 3 0 0 -3 0 P 18 1 -4.1832787698476792e-01 -8.3308203502492817e-01 1.6987419300713916e+02 1.6987707135960554e+02 3.3000000000000002e-01 2 0 0 -10 0 P 30 2203 -5.4307182008934296e-01 -5.0870707876269439e-01 4.4074008587765966e+03 4.4074009890869411e+03 7.7132999999999996e-01 2 0 0 -18 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -3 -2.3568469439544986e+00 -5.6464875955504557e-01 -1.6670691507869240e+03 1.6670709124272951e+03 0 3 0 0 -4 0 P 11 3122 8.4041015348311587e-01 2.1894195339623912e-01 -1.7572309795651445e+03 1.7572315483481807e+03 1.1156800000000000e+00 2 0 0 -9 0 P 77 2 1.5164367904713827e+00 3.4570680615880645e-01 -2.7479480242348136e+03 2.7479484842132233e+03 3.3000000000000002e-01 2 0 0 -18 0 V -3 0 0 0 0 0 0 16 0 P 5 4 -2.3623725227656958e+01 3.7885856163807318e+01 -3.2201917402851814e+02 3.2509962616543498e+02 0 3 0 0 -5 0 P 12 -4 1.9857114606506716e+01 -2.0103384039397405e+01 -4.2848008455746019e+01 5.1348348356642624e+01 1.5000000000000000e+00 2 0 0 -10 0 P 13 21 1.1690065956430225e+01 -1.5263318378342829e+01 -2.7273121816782897e+01 3.3368393782401725e+01 0 2 0 0 -10 0 P 14 21 3.2113304454386982e-02 -2.9473317541712579e-01 -4.4451668514325937e-01 5.3431637854850944e-01 0 2 0 0 -10 0 P 15 21 2.6854588543654456e-01 -2.9216599812845923e-01 -1.2848672969063617e+00 1.3447534471815854e+00 0 2 0 0 -10 0 P 16 21 5.7268498438189874e-01 -1.8117861165881033e-01 1.0049065983078954e+02 1.0049245497552599e+02 0 2 0 0 -10 0 P 17 21 -2.1257179248459507e-02 -5.0122296038611391e-01 2.6641958069049105e+02 2.6642005302082794e+02 0 2 0 0 -10 0 P 31 21 1.0772652278985702e+00 1.2225725967778733e+00 7.2947521400217227e+01 7.2965718406391247e+01 0 2 0 0 -18 0 P 32 21 -1.5168650654232160e-01 3.3541693731637263e+00 8.5862759349879013e+01 8.5928382413236278e+01 0 2 0 0 -18 0 P 33 21 -4.6787930298782610e-01 8.2357489350893598e-01 2.2103984688206204e+01 2.2124270061266134e+01 0 2 0 0 -18 0 P 34 21 2.6869455128327352e-01 -2.8464167925927697e-01 3.8903215244623328e+00 3.9099640933333122e+00 0 2 0 0 -18 0 P 35 21 -6.6832179830500031e+00 -1.1336080725420256e+01 -2.9623783489580466e+00 1.3488803294013261e+01 0 2 0 0 -18 0 P 36 21 -6.2200338220713325e-01 -2.5298822031700818e+00 -1.4311084403962269e+00 2.9724171203865621e+00 0 2 0 0 -18 0 P 37 21 5.9064257025208811e-01 1.3350238818373557e+00 2.3352761848966450e+00 2.7540265559023762e+00 0 2 0 0 -18 0 P 38 21 -9.1937064448515571e-02 3.3241664912768427e+00 -6.9192128852021761e-01 3.3966587045293033e+00 0 2 0 0 -18 0 P 39 21 -7.7015522796096736e-01 8.7322844265458899e-01 9.2528462288898911e-02 1.1680019283160952e+00 0 2 0 0 -18 0 V -4 0 0 0 0 0 0 4 0 P 6 -3 -9.7540976290528680e-01 -2.9870842713968124e+00 -1.1208992963559292e+03 1.1209037008895398e+03 0 3 0 0 -5 0 P 74 21 -1.6998836993681865e+00 3.9162274628693323e+00 -7.0187203426521563e+01 7.0316925181411548e+01 0 2 0 0 -18 0 P 75 21 -5.0324606922412263e-01 1.9457042047102280e+00 -5.6048606287037920e+01 5.6084626130320267e+01 0 2 0 0 -18 0 P 76 21 -1.4217292793900160e-01 -1.2969111390280882e-01 -3.7842733213439912e+00 3.7891631658058724e+00 0 2 0 0 -18 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -2.9006822904833638e+00 1.9428454537884308e+00 -3.2343379623332524e+01 3.2531258992953710e+01 0 3 0 0 -6 0 P 8 24 -2.1698452700078874e+01 3.2955926438622058e+01 -1.4105750907611146e+03 1.4134720680620208e+03 8.1389708064314803e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -2.9006822904833638e+00 1.9428454537884308e+00 -3.2343379623332524e+01 3.2531258992953710e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.1698452700078874e+01 3.2955926438622058e+01 -1.4105750907611146e+03 1.4134720680620208e+03 8.1389708064314803e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 7 0 P 19 4 -1.7441307017546233e+01 4.3099863433650277e+01 -3.9798485720231804e+02 4.0069438975462219e+02 1.5000000000000000e+00 2 0 0 -12 0 P 20 21 -1.1138577554280831e+00 1.6742939390618772e+00 -3.2645088429621929e+01 3.2706967726641096e+01 0 2 0 0 -12 0 P 21 21 -2.8749021481953996e+00 9.7783449783089352e-02 -2.5059460084636783e+02 2.5061111028307417e+02 0 2 0 0 -12 0 P 22 21 -3.0683345450477301e-01 -1.0024824445860847e+00 -1.3842335038334394e+02 1.3842732045795913e+02 0 2 0 0 -12 0 P 23 21 -2.1841987366732596e-01 -1.2625059019041631e+00 -1.0182088409751005e+02 1.0182894513247267e+02 0 2 0 0 -12 0 P 24 21 2.4718735835897447e-02 -1.3938644888528549e+00 -9.4285216183996695e+01 9.4295521951427673e+01 0 2 0 0 -12 0 P 25 -3 2.3214881342686805e-01 -8.2571615485298295e+00 -3.9482109361796603e+02 3.9490781275583390e+02 5.0000000000000000e-01 2 0 0 -12 0 V -9 0 7.9657159530341104e+01 2.0752122088585772e+01 -1.6655680311659924e+05 1.6655685702794345e+05 0 2 0 P 78 2212 7.5513197681830768e-01 9.8748765288322882e-02 -1.4661395481673712e+03 1.4661400461847556e+03 9.3827000000000005e-01 1 0 0 0 0 P 79 -211 8.5278176664808275e-02 1.2019318810791622e-01 -2.9109143139777314e+02 2.9109150216342493e+02 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 1 0 P 80 92 3.1980939680976547e+01 -3.7469085198355678e+01 4.6493391927384118e+02 6.2338539132073390e+02 4.1233370462804754e+02 2 0 0 -11 0 V -11 0 0 0 0 0 0 15 0 P 81 -413 1.6905748205178817e+01 -1.8826015131038289e+01 -3.7385938770698409e+01 4.5188180820402579e+01 2.0099999999999998e+00 2 0 0 -20 0 P 82 221 4.5848501219479543e+00 -5.2072478512167635e+00 -1.0855938949872755e+01 1.2895246907701766e+01 5.4744999999999999e-01 2 0 0 -21 0 P 83 -313 6.1475881889877408e+00 -6.9016722824894936e+00 -1.3823956650284421e+01 1.6654759115778205e+01 9.2374395770075968e-01 2 0 0 -22 0 P 84 311 1.5875239630485138e+00 -1.7428201148410596e+00 -3.1765648209144524e+00 3.9869654847163094e+00 4.9767000000000000e-01 2 0 0 -23 0 P 85 221 3.2563294513199770e-01 -5.7878521593075205e-01 -7.1398889022839174e-01 1.1182623927347808e+00 5.4744999999999999e-01 2 0 0 -24 0 P 86 213 6.5642462680518354e-01 -9.0850793189940804e-01 -1.5195292601306776e+00 2.0833867349829052e+00 8.8048348201938798e-01 2 0 0 -25 0 P 87 221 1.0128684025924986e+00 -9.3783572466448306e-01 -2.8517453116269098e+00 3.2152124459066931e+00 5.4744999999999999e-01 2 0 0 -26 0 P 88 331 9.3456185900536615e-01 -1.0327798463221882e+00 -6.5165582075026152e-01 1.8111802881910468e+00 9.5691099290229531e-01 2 0 0 -27 0 P 89 -323 -3.6229350947658417e-01 1.2537211081908642e-01 1.9501551914230071e+00 2.2220640369469860e+00 9.9372458985321344e-01 2 0 0 -28 0 P 90 -3212 2.4088360479625034e-01 -1.5072528676341806e-01 3.9039473408185561e+00 4.0919095011392699e+00 1.1925500000000000e+00 2 0 0 -29 0 P 91 211 -2.5051774339334199e-02 -1.3530705816795687e-02 2.6244961067572867e+00 2.6283588550046977e+00 1.3957000000000000e-01 1 0 0 0 0 P 92 1114 -1.5502084697356113e-02 -5.1630574990949377e-02 1.5813938910383843e+01 1.5863189618207938e+01 1.2478841977379562e+00 2 0 0 -30 0 P 93 223 1.7052424526150614e-01 -8.2603504930587601e-02 1.9936856911714423e+02 1.9937027951551522e+02 8.0380371976025300e-01 2 0 0 -31 0 P 94 211 2.0330154744788886e-01 -2.8222853714726037e-01 4.1109126508588815e+01 4.1110834904565422e+01 1.3957000000000000e-01 1 0 0 0 0 P 95 -213 -3.8612066071389733e-01 -8.7807460112330493e-01 2.7114300457323179e+02 2.7114556069894013e+02 6.8268116517385247e-01 2 0 0 -32 0 V -12 0 0 0 0 0 0 1 0 P 96 92 -2.1698452700079049e+01 3.2955926438622306e+01 -1.4105750907611246e+03 1.4134720680620308e+03 8.1389708064311648e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 10 0 P 97 433 -1.2546649628810584e+01 3.0584130209674179e+01 -2.8657378052892659e+02 2.8848189086663973e+02 2.1124000000000001e+00 2 0 0 -33 0 P 98 -313 -3.8192229307241128e+00 1.0205028795547076e+01 -9.2931597126236824e+01 9.3573173750805296e+01 9.6334046561673670e-01 2 0 0 -34 0 P 99 111 -9.1322929055325541e-01 1.5227438016838557e+00 -1.6915277344580531e+01 1.7008749620920710e+01 1.3497999999999999e-01 2 0 0 -35 0 P 100 113 -8.1178239278420017e-01 2.1274323933470658e+00 -2.8404020969246556e+01 2.8511906928857520e+01 9.7748158905357119e-01 2 0 0 -36 0 P 101 -213 -5.9665894942570663e-01 3.3503728233471147e-01 -2.8609707306083813e+01 2.8627667607626986e+01 7.4816350519515962e-01 2 0 0 -37 0 P 102 113 -1.4061632276801905e+00 -8.0245862367452875e-02 -1.0978707944202841e+02 1.0979818176268289e+02 6.7392251749438570e-01 2 0 0 -38 0 P 103 213 -9.7783699064135499e-01 -1.5485839120640585e+00 -1.7922057847217889e+02 1.7923178338759379e+02 8.1372666291982620e-01 2 0 0 -39 0 P 104 313 -7.8326905021035020e-01 5.4322519857531108e-02 -1.1297912233213243e+02 1.1298556565573345e+02 9.1624356255636052e-01 2 0 0 -40 0 P 105 331 -4.5066426018228206e-01 -4.1395095455442750e+00 -2.3491605180048307e+02 2.3495490486147278e+02 9.5775121165231591e-01 2 0 0 -41 0 P 106 333 6.0702402093298891e-01 -6.1044292438463259e+00 -3.2023787543922725e+02 3.2029824361969764e+02 1.0175782417166555e+00 2 0 0 -42 0 V -14 0 0 0 0 0 2 1 0 P 26 1 -3.0099105716249901e+00 -1.0033486592470302e+00 -4.4352782792719916e+00 5.4532525703266863e+00 0 2 0 0 -14 0 P 27 -1 3.0099105716249901e+00 1.0033486592470302e+00 -1.4544308524770983e+01 1.4886342084102413e+01 0 2 0 0 -14 0 P 107 92 0 0 -1.8979586804042974e+01 2.0339594654429099e+01 7.3126189189837181e+00 2 0 0 -15 0 V -15 0 0 0 0 0 0 6 0 P 108 -211 -4.5033954189185060e-01 -3.0304523750465012e-01 -6.5889726059895148e-01 8.6502456837387820e-01 1.3957000000000000e-01 1 0 0 0 0 P 109 223 -5.4510554278839829e-01 1.3157029268098477e-01 -1.8555996439876010e+00 2.0808988010281850e+00 7.5659697769607293e-01 2 0 0 -43 0 P 110 323 -6.1255887287778810e-01 -2.6307293211864591e-01 -1.9791044642482383e+00 2.3132671739572994e+00 9.9494462024088359e-01 2 0 0 -44 0 P 111 333 -7.4910409039848269e-01 -4.2630252018530868e-01 -3.2396396453289884e+00 3.5041139399238879e+00 1.0201268035952653e+00 2 0 0 -45 0 P 112 -321 7.6821702962165406e-01 6.7243431561594336e-01 -4.9655989600094284e+00 5.0934408119723269e+00 4.9359999999999998e-01 1 0 0 0 0 P 113 211 1.5888910183348655e+00 1.8841608151167658e-01 -6.2807468298697664e+00 6.4828493591735219e+00 1.3957000000000000e-01 1 0 0 0 0 V -16 0 0 0 0 0 2 1 0 P 28 1 -5.1615060426844606e-01 5.9540441412765210e-01 7.9933643486098083e+00 8.0321100261559959e+00 0 2 0 0 -16 0 P 29 -1 5.1615060426844606e-01 -5.9540441412765210e-01 -1.2615041837561074e+00 1.4873838335424845e+00 0 2 0 0 -16 0 P 114 92 0 0 6.7318601648537006e+00 9.5194938596984802e+00 6.7307371116165999e+00 2 0 0 -17 0 V -17 0 0 0 0 0 0 6 0 P 115 -213 -5.3849661230924428e-01 4.4441438834684366e-01 3.4990014500795636e+00 3.6031825697394595e+00 5.0242485326378217e-01 2 0 0 -46 0 P 116 211 5.0081088710487087e-01 -3.3425062489509683e-01 3.5510590978465073e-01 7.1282186901743883e-01 1.3957000000000000e-01 1 0 0 0 0 P 117 111 -1.4902520708778203e-02 3.0041880432355733e-01 -2.0754544227482880e-01 3.8957445260659196e-01 1.3497999999999999e-01 2 0 0 -47 0 P 118 -211 -3.8450215085617447e-02 -1.0966955642542804e-01 1.1251641820299445e-01 2.1364821532582837e-01 1.3957000000000000e-01 1 0 0 0 0 P 119 111 8.4777573179271905e-03 2.3470605096686828e-01 3.3965697000904944e+00 3.4073544181230160e+00 1.3497999999999999e-01 2 0 0 -48 0 P 120 213 8.2560703680841924e-02 -5.3561906231674439e-01 -4.2378787102917448e-01 1.1929123348861450e+00 9.7454585801937976e-01 2 0 0 -49 0 V -18 0 0 0 0 0 34 1 0 P 40 21 -3.5850638793262974e+00 -5.7729758065515713e-01 -7.4179981815815355e+00 8.2590951403545034e+00 0 2 0 0 -18 0 P 41 21 -2.0229640679631364e+00 -1.0472797055839630e-01 -2.8322673955439237e+00 3.4821100166347994e+00 0 2 0 0 -18 0 P 42 21 -2.7017204737902119e+00 2.2834818089383262e+00 -8.7950928039287524e-01 3.6451501017854739e+00 0 2 0 0 -18 0 P 43 21 1.1045194827091491e+00 1.4607258357064574e+00 -8.4163194554512794e-02 1.8332394001062806e+00 0 2 0 0 -18 0 P 44 21 3.5850638793262974e+00 5.7729758065515713e-01 2.7726158545074995e+00 4.5687366078760512e+00 0 2 0 0 -18 0 P 45 21 2.0229640679631364e+00 1.0472797055839630e-01 5.8183044148507435e+00 6.1608455452120285e+00 0 2 0 0 -18 0 P 46 21 1.5496167448960179e+00 -1.4827110940651259e-01 4.8855474584466556e+00 5.1275598823106243e+00 0 2 0 0 -18 0 P 47 21 2.8122325727955761e+00 3.3378071559907498e+00 1.9931094557670388e+01 2.0403385476946557e+01 0 2 0 0 -18 0 P 48 21 -3.8935233765228788e-01 6.1279462422097342e-01 2.3534237653371952e+00 2.4628674169681419e+00 0 2 0 0 -18 0 P 49 21 -1.0222652031730108e+00 1.2481197472380896e+00 2.8785113577298875e+00 3.2997964612448434e+00 0 2 0 0 -18 0 P 50 21 -1.5496167448960179e+00 1.4827110940651259e-01 4.8076376026987075e+00 5.0533825994901020e+00 0 2 0 0 -18 0 P 51 21 -1.1167753710636499e+00 -8.0408863887821869e-02 3.2278361748198261e+00 3.4165156499395066e+00 0 2 0 0 -18 0 P 52 21 -1.2303466314844276e-01 8.4349920647459731e-01 8.5487540570602523e+00 8.5911480238535898e+00 0 2 0 0 -18 0 P 53 21 -1.5750101254735689e+00 1.6518521929738619e+00 4.7519137315177950e+01 4.7573918103741619e+01 0 2 0 0 -18 0 P 54 21 -3.0666041319639686e-01 3.7808717744500981e+00 1.0375872963502288e+03 1.0375942302168808e+03 0 2 0 0 -18 0 P 55 21 -1.1045194827091491e+00 -1.4607258357064574e+00 2.2953841497267621e+02 2.2954572013309959e+02 0 2 0 0 -18 0 P 56 21 -2.8122325727955761e+00 -3.3378071559907498e+00 4.0905264648660824e+02 4.0907593085679360e+02 0 2 0 0 -18 0 P 57 21 1.2303466314844276e-01 -8.4349920647459731e-01 1.9379309861275040e+01 1.9398048333246603e+01 0 2 0 0 -18 0 P 58 21 1.1167753710636499e+00 8.0408863887821869e-02 1.6272561143995897e+01 1.6311036110556898e+01 0 2 0 0 -18 0 P 59 21 1.0222652031730108e+00 -1.2481197472380896e+00 1.3461369895909513e+01 1.3557702922086873e+01 0 2 0 0 -18 0 P 60 21 3.0666041319639686e-01 -3.7808717744500981e+00 5.8991330175803443e+00 7.0134729159640870e+00 0 2 0 0 -18 0 P 61 21 3.8935233765228788e-01 -6.1279462422097342e-01 4.1801469479049147e-01 8.3776415498051293e-01 0 2 0 0 -18 0 P 62 21 1.5750101254735689e+00 -1.6518521929738619e+00 1.2559077526305535e+00 2.6051059183638485e+00 0 2 0 0 -18 0 P 63 21 2.7017204737902119e+00 -2.2834818089383262e+00 -1.7456851851646277e+01 1.7811660766491581e+01 0 2 0 0 -18 0 P 64 21 6.5122618602188098e-01 -8.2146837600611056e-01 -5.4141895971493534e+00 5.5147397791753514e+00 0 2 0 0 -18 0 P 65 21 -2.1425743403558579e+00 -2.0269214757733822e+00 -2.8443149692068584e+01 2.8595660507816984e+01 0 2 0 0 -18 0 P 66 21 -8.8128406324169550e-01 5.0643305614745726e-02 -1.0237503574706340e+01 1.0275490537519484e+01 0 2 0 0 -18 0 P 67 21 -6.5122618602188098e-01 8.2146837600611056e-01 -1.0317367889459373e+01 1.0370486295472650e+01 0 2 0 0 -18 0 P 68 21 3.3324426782530079e+00 9.8092744031317469e-01 -7.2616170087129959e+01 7.2699212863482842e+01 0 2 0 0 -18 0 P 69 21 2.2376212605526442e+00 1.7270874043358433e+00 -8.9487701285102645e+01 8.9532331931541108e+01 0 2 0 0 -18 0 P 70 21 2.1425743403558579e+00 2.0269214757733822e+00 -1.5698758095597205e+02 1.5701528463777271e+02 0 2 0 0 -18 0 P 71 21 -2.2376212605526442e+00 -1.7270874043358433e+00 -8.4595411920845550e+01 8.4642622229379384e+01 0 2 0 0 -18 0 P 72 21 -3.3324426782530079e+00 -9.8092744031317469e-01 -1.5149291599628464e+02 1.5153273900350496e+02 0 2 0 0 -18 0 P 73 21 8.8128406324169550e-01 -5.0643305614745726e-02 -1.6146356033232124e+02 1.6146597332420743e+02 0 2 0 0 -18 0 P 121 92 -8.2222148439121074e+00 2.3513713524425723e+00 2.7474609105381896e+03 1.0143521394219879e+04 9.7643438943073324e+03 2 0 0 -19 0 V -19 0 0 0 0 0 0 107 0 P 122 213 -1.4799096475053183e-01 -7.2425749306043410e-02 1.6548727452077906e+03 1.6548729803190656e+03 8.6660932551653969e-01 2 0 0 -50 0 P 123 2114 -1.2328205009351564e-01 -3.2987731809452370e-01 1.3747548693069043e+03 1.3747554076190850e+03 1.1645073481398578e+00 2 0 0 -51 0 P 124 -313 2.4178829941241700e-01 4.6058408054572864e-01 7.5216376295149075e+02 7.5216447032460610e+02 8.9079855858818124e-01 2 0 0 -52 0 P 125 321 -4.2839822720343418e-01 2.1067895042364032e-01 3.3794862534632529e+02 3.3794932301321768e+02 4.9359999999999998e-01 1 0 0 0 0 P 126 -213 6.9642259671019099e-02 -5.0296045257704280e-01 1.3821252735336097e+02 1.3821609708061220e+02 8.5378892735771417e-01 2 0 0 -53 0 P 127 -313 5.3465254728874934e-01 6.1871518500392586e-01 1.6980265375105992e+02 1.6980664996353869e+02 8.2975243954246780e-01 2 0 0 -54 0 P 128 311 -1.1042230933477806e-01 3.0525583662991440e-01 2.0711679256443183e+01 2.0720200463867968e+01 4.9767000000000000e-01 2 0 0 -55 0 P 129 -1114 -5.4429182157587165e-02 1.8737097031596390e+00 5.4692007187045157e+01 5.4736916585119523e+01 1.1834849010227348e+00 2 0 0 -56 0 P 130 311 -1.1079526329143065e-01 1.4001308808220789e-01 2.2650861693664769e+01 2.2657031803606404e+01 4.9767000000000000e-01 2 0 0 -57 0 P 131 3212 2.5900191791762384e-01 9.0079131270325385e-01 4.7628255576048041e+01 4.7652401951028423e+01 1.1925500000000000e+00 2 0 0 -58 0 P 132 111 1.7397303701805919e-01 6.1595381784468231e-02 4.5893627359850403e-01 5.1274039463547461e-01 1.3497999999999999e-01 2 0 0 -59 0 P 133 -213 4.8785670519381297e-01 5.7294854162544906e-01 7.2039915599651074e+00 7.2882771789434244e+00 8.0945391771596720e-01 2 0 0 -60 0 P 134 213 -7.9980173672150945e-01 2.8350954703599895e-01 4.5586576328196031e+00 4.6975289238049545e+00 7.5190298270216693e-01 2 0 0 -61 0 P 135 223 -6.0208193492753692e-02 -3.7576017841793347e-01 2.0672790106374492e+00 2.2440446455064569e+00 7.8566731187934147e-01 2 0 0 -62 0 P 136 -211 -5.6070619490001583e-02 -3.1075139530123042e-01 -6.4694135775967526e-02 3.5124843082276319e-01 1.3957000000000000e-01 1 0 0 0 0 P 137 -313 -7.6071436082202515e-01 4.5186134104341269e-01 2.1525594082532153e+00 2.5105248816490788e+00 9.4146596594315368e-01 2 0 0 -63 0 P 138 311 5.5842614084397968e-01 -7.8365288802270150e-01 1.6409031237939105e+00 1.9662629768830093e+00 4.9767000000000000e-01 2 0 0 -64 0 P 139 211 -4.3884128205153687e-03 8.7359903038375167e-02 -3.6635077127764493e-01 4.0167609256922787e-01 1.3957000000000000e-01 1 0 0 0 0 P 140 -2214 -3.0843826422709459e+00 -5.8957022879881498e+00 -1.2549073294834212e+00 6.8702237189717819e+00 1.1629530474616061e+00 2 0 0 -65 0 P 141 2214 -2.1499948324938587e+00 -4.6081683389187322e+00 3.6304138611608749e-01 5.2561766602708424e+00 1.2798049915434497e+00 2 0 0 -66 0 P 142 223 -4.1102317117325821e-01 -1.4358966713542787e-01 3.8440349109345122e-02 8.9869125288341167e-01 7.8524535517258753e-01 2 0 0 -67 0 P 143 113 -4.5685008165838936e-01 -1.2866952428719320e+00 -3.6720328395161717e-01 1.5991798124794576e+00 7.4715538929759717e-01 2 0 0 -68 0 P 144 -2224 -2.6728758556921106e-01 4.9565662129503224e-01 -2.3204978819268152e-01 1.3977193088672255e+00 1.2580357795178088e+00 2 0 0 -69 0 P 145 223 -1.4358780782050914e-01 5.2289880856148019e-01 -4.6769733186116347e-01 1.0750829033609406e+00 8.0188642108419750e-01 2 0 0 -70 0 P 146 2224 1.6479973791106167e-01 1.8001615525369349e-01 -2.7569882299384024e-01 1.2620577561720858e+00 1.2071516761145034e+00 2 0 0 -71 0 P 147 -213 -9.2145407655935985e-01 8.6834331214754290e-01 8.2641260095832347e-01 1.7238925217670100e+00 8.2810018513600936e-01 2 0 0 -72 0 P 148 211 3.2548291137864316e-01 8.8459387776130716e-01 -3.1675982948327480e-01 1.0041225167511072e+00 1.3957000000000000e-01 1 0 0 0 0 P 149 -2212 -8.3797757107752080e-01 5.6334927438158600e-01 -1.7903621619448038e+00 2.2594946511109320e+00 9.3827000000000005e-01 1 0 0 0 0 P 150 3122 -3.1854474913201031e-01 2.5597052821163657e-01 -3.7874874579005274e-01 1.2470702239048359e+00 1.1156800000000000e+00 2 0 0 -73 0 P 151 311 -4.0610558665752505e-01 -7.6204636609355766e-02 -1.4996914639836001e+00 1.6332418100821724e+00 4.9767000000000000e-01 2 0 0 -74 0 P 152 211 -1.4226529402051655e+00 -1.9785759383567567e-02 -1.2125438883745576e+00 1.8745867092997532e+00 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 -4.3265991893267414e-01 6.0092791390910838e-01 -3.4233076043207489e-01 8.2763464016677279e-01 1.3957000000000000e-01 1 0 0 0 0 P 154 -313 -9.4291312641644609e-01 -5.7782540819058181e-01 -2.5850372113128848e+00 2.9645517698853783e+00 9.3977787063708984e-01 2 0 0 -75 0 P 155 323 -2.3459833806741854e+00 1.1224682682272316e+00 -1.6509571205215967e+00 3.1839464537589377e+00 8.0515996611023599e-01 2 0 0 -76 0 P 156 -323 -3.6819077142716247e-02 5.3542018282958359e-01 -1.1729559712249453e+00 1.6121731439107307e+00 9.6708123696608284e-01 2 0 0 -77 0 P 157 313 -1.8386080227950907e-01 1.1200761982634371e+00 -2.1409264480878376e-01 1.5298908275526868e+00 1.0031723676106143e+00 2 0 0 -78 0 P 158 -2114 1.6207282995970024e-01 3.7313679022416324e-01 5.6527015948255613e-02 1.3558457498741976e+00 1.2921392059255743e+00 2 0 0 -79 0 P 159 111 -2.6446472745990297e-03 9.2956619151139355e-02 1.3280283174855811e-01 2.1095999555283659e-01 1.3497999999999999e-01 2 0 0 -80 0 P 160 2112 1.1053189343769532e+00 1.1128721936263206e+00 7.0698689693321770e-01 1.9603154652693331e+00 9.3957000000000002e-01 1 0 0 0 0 P 161 211 6.3907005241285086e-01 -4.1254282294003231e-01 1.5234167166613708e+00 1.7084731166025431e+00 1.3957000000000000e-01 1 0 0 0 0 P 162 -323 1.9362037414810536e+00 3.5257998342010227e-01 3.3103584984187031e+00 3.9576725959523862e+00 9.1186699439436736e-01 2 0 0 -81 0 P 163 -3222 1.1645455252137962e+00 1.1624676986010134e+00 5.8513763527491749e+00 6.1936018316484027e+00 1.1893700000000000e+00 2 0 0 -82 0 P 164 2224 1.5237611168712801e+00 8.8579853014480303e-01 7.1892455841858407e+00 7.5031600909135889e+00 1.2270583942287769e+00 2 0 0 -83 0 P 165 -211 5.5334217934833951e-01 -1.8400360374563257e-01 7.7104554987307461e-01 9.7674762273394955e-01 1.3957000000000000e-01 1 0 0 0 0 P 166 211 5.5534134454836948e-01 4.8134141899442567e-01 3.0014928991159184e+00 3.0933045402849748e+00 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -5.8439371247543337e-01 1.7938048719348318e-01 1.6773987871141536e+00 1.7904132656397025e+00 1.3497999999999999e-01 2 0 0 -84 0 P 168 113 1.0929309494971260e+00 2.6200822614307434e-01 3.9237921584163868e+00 4.1415540926050713e+00 7.0226706357949431e-01 2 0 0 -85 0 P 169 111 1.1309062457234843e-01 8.5106743977742838e-01 3.0142906909627922e+00 3.1370803697770344e+00 1.3497999999999999e-01 2 0 0 -86 0 P 170 -211 -9.0405565257848219e-01 -1.6509957458978031e-01 2.6280046807207804e+00 2.7875550002249572e+00 1.3957000000000000e-01 1 0 0 0 0 P 171 223 -2.0331418546325550e-01 5.3634156170315528e-01 5.7521934854791530e+00 5.8336360878771849e+00 7.8395228335240874e-01 2 0 0 -87 0 P 172 -2112 7.4352031991290979e-02 1.2088296144518413e+00 5.9818493957269157e+00 6.1751203421063368e+00 9.3957000000000002e-01 1 0 0 0 0 P 173 2112 -9.1073678254151247e-01 4.7182849137209243e-01 4.5880970217793857e+00 4.7943184790442741e+00 9.3957000000000002e-01 1 0 0 0 0 P 174 111 -1.5689113173444158e-01 -2.7651640765827512e-01 1.5987255638278211e+00 1.6356097272142081e+00 1.3497999999999999e-01 2 0 0 -88 0 P 175 213 -1.1532534506007375e+00 1.3940199240263142e+00 2.2644421721420919e+01 2.2730065036526042e+01 7.8277480621135376e-01 2 0 0 -89 0 P 176 331 -5.1623351177990207e-01 3.6661473547239157e-02 1.1406911237150075e+01 1.1458734502926255e+01 9.5766974161486318e-01 2 0 0 -90 0 P 177 -2224 -7.1637188091242288e-01 1.3226728606770437e+00 4.0088253024485574e+01 4.0137022545184116e+01 1.2844828022623458e+00 2 0 0 -91 0 P 178 331 3.9118070446545916e-01 8.5331646492787339e-01 4.2148802147221670e+02 4.2149015484974927e+02 9.5771570362528891e-01 2 0 0 -92 0 P 179 2224 -1.1446660051908961e+00 5.1639169459167422e-01 1.1655877814162687e+02 1.1657165147092012e+02 1.1934170029763052e+00 2 0 0 -93 0 P 180 -211 1.4675582312416233e-01 1.2321491767598007e+00 3.4882846875069350e+02 3.4883070366526493e+02 1.3957000000000000e-01 1 0 0 0 0 P 181 211 1.8171931199702746e-01 -2.5106947264199847e-01 9.1385222936753323e+01 9.1385855080386762e+01 1.3957000000000000e-01 1 0 0 0 0 P 182 111 -1.0872295492080672e+00 5.1548313710499427e-01 1.0825208943578212e+02 1.0825886050467317e+02 1.3497999999999999e-01 2 0 0 -94 0 P 183 -321 -1.1906846085323428e+00 -2.5458424026392898e+00 3.6909627348529619e+02 3.6910730389016771e+02 4.9359999999999998e-01 1 0 0 0 0 P 184 -3122 -6.8645722765495498e-01 -1.8373361874380023e+00 1.3860706743216477e+02 1.3862543385612230e+02 1.1156800000000000e+00 2 0 0 -95 0 P 185 111 -7.9694722940128443e-02 2.4734074257524644e-01 4.0326451855046086e+00 4.0432629749220705e+00 1.3497999999999999e-01 2 0 0 -96 0 P 186 2212 2.9269481398415759e-01 -5.0444886691261004e-01 6.0892809997456588e+01 6.0902830795396618e+01 9.3827000000000005e-01 1 0 0 0 0 P 187 223 -2.4440035134881025e-01 -6.4960031496544834e-01 1.2822628416179047e+01 1.2865104546506924e+01 7.8064293515544692e-01 2 0 0 -97 0 P 188 113 6.2130061385500135e-01 -7.7598957874099331e-02 1.0098082582396939e+01 1.0146657747070657e+01 7.6899645268413053e-01 2 0 0 -98 0 P 189 223 7.1305640845965979e-01 -6.7760757429490603e-01 1.6641204962008679e+01 1.6688597979210520e+01 7.8230330290739913e-01 2 0 0 -99 0 P 190 -213 4.1583150237193334e-02 -3.8341604958414077e-01 2.3967105750097333e+00 2.5422385183922906e+00 7.5499541625865862e-01 2 0 0 -100 0 P 191 111 3.9052694272210836e-01 -1.6605097549862118e+00 2.6749347228864684e+00 3.1754211234889702e+00 1.3497999999999999e-01 2 0 0 -101 0 P 192 211 1.1141583419100506e-02 1.4356313866779513e-01 4.6717719969256183e-01 5.0839829905086942e-01 1.3957000000000000e-01 1 0 0 0 0 P 193 -213 1.0809426544061558e+00 -1.9249613366712710e+00 2.9780555914772844e+00 3.7988561414462994e+00 8.2980703038795411e-01 2 0 0 -102 0 P 194 -2112 -5.9668897536498944e-01 -6.5958550377236969e-01 9.0972127421082472e-01 1.5816053084636945e+00 9.3957000000000002e-01 1 0 0 0 0 P 195 2112 1.0117116263990293e+00 -1.2853143941764384e+00 1.4854484711393631e-01 1.8922079334397204e+00 9.3957000000000002e-01 1 0 0 0 0 P 196 111 6.0541268157473616e-01 -4.1695652493711616e-01 4.4251242203001612e-01 8.6857014843363101e-01 1.3497999999999999e-01 2 0 0 -103 0 P 197 213 1.5368389512420828e+00 -1.6295441568552431e+00 -1.0064950445438575e+01 1.0345821254307674e+01 8.4587341591654774e-01 2 0 0 -104 0 P 198 -213 1.0035934822199828e-01 -1.8046850256961208e-01 -2.8654599916385974e+00 3.0185770880767073e+00 9.2644794445501411e-01 2 0 0 -105 0 P 199 223 -3.7794154939145824e-01 -6.2146664261796070e-01 -6.3233167536937334e+00 6.4127666363099651e+00 7.8114055174668751e-01 2 0 0 -106 0 P 200 213 3.0400389548093942e-01 -1.4438843199843661e+00 -1.6536282158842258e+01 1.6620510254988147e+01 7.8454649406964172e-01 2 0 0 -107 0 P 201 111 -3.3803081597004714e-01 4.3513685214321746e-01 -1.9274581976343055e+00 2.0092096995252069e+00 1.3497999999999999e-01 2 0 0 -108 0 P 202 -211 -6.5593854203418997e-02 -5.9281396234751327e-01 -7.4520208628425735e+00 7.4771535809293352e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 113 -2.7825174063619592e-03 1.7869220236960817e-01 -9.2104099929297938e+00 9.2466517265021153e+00 7.9810855638360867e-01 2 0 0 -109 0 P 204 213 -2.3714475549255459e-01 -2.4718850697225533e-01 -1.3016934154296830e+01 1.3050494480917090e+01 8.7033994858978259e-01 2 0 0 -110 0 P 205 -211 -4.4057507656455230e-01 -4.0104360693422203e-01 -2.5356436884197664e+00 2.6084307681584478e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 211 4.8309024262511463e-01 1.4140699321054395e-01 -3.0845881284803060e+01 3.0850303793339087e+01 1.3957000000000000e-01 1 0 0 0 0 P 207 -321 3.4005970095311289e-01 4.6189402547187502e-01 -1.3257128100931995e+01 1.3278707509976252e+01 4.9359999999999998e-01 1 0 0 0 0 P 208 313 1.0112982107097062e+00 1.0843176623644077e+00 -5.1157858765026127e+01 5.1187238601116803e+01 8.9911807978804748e-01 2 0 0 -111 0 P 209 221 1.1699613466911698e+00 9.4423031923293999e-01 -5.0825636406402097e+01 5.0850815117034223e+01 5.4744999999999999e-01 2 0 0 -112 0 P 210 -2114 6.2400470723580737e-01 3.6919132932187892e-01 -4.9215102552037870e+01 4.9236774412150069e+01 1.2680501539972391e+00 2 0 0 -113 0 P 211 111 5.9889418167290720e-01 8.3743996929022541e-02 -7.6137388432014808e+00 7.6389086963216366e+00 1.3497999999999999e-01 2 0 0 -114 0 P 212 2112 1.3853856293310163e+00 8.7462696687956276e-01 -6.1168590713388575e+01 6.1197741357995369e+01 9.3957000000000002e-01 1 0 0 0 0 P 213 213 -8.0373980284287938e-01 -2.2903411926845393e-01 -4.5250502931153321e+01 4.5265175963373579e+01 7.9352704704672206e-01 2 0 0 -115 0 P 214 221 1.1234925015202368e-01 -2.6413886894744126e-01 -4.0028983052181289e+01 4.0033755474479477e+01 5.4744999999999999e-01 2 0 0 -116 0 P 215 113 -8.5655976087528829e-01 4.4478731583436265e-01 -5.0657518417878613e+01 5.0671906209863614e+01 7.2551795513664252e-01 2 0 0 -117 0 P 216 223 2.2580092332432706e-02 -3.2313863215977695e-01 -5.2567763367950263e+01 5.2574584132548871e+01 7.8244665344150899e-01 2 0 0 -118 0 P 217 223 -1.8729040288025216e+00 -1.3302422057752687e+00 -8.6178127263345786e+01 8.6212295068719044e+01 7.8287200187822725e-01 2 0 0 -119 0 P 218 -213 -1.5971194265175355e-02 2.1618813025736358e-01 -9.7336192425056311e+01 9.7340233475076246e+01 8.6006092112884525e-01 2 0 0 -120 0 P 219 113 -1.7159034509324003e+00 5.7248386037376109e-01 -4.7946081598939458e+01 4.7986255936716454e+01 7.6286021562533102e-01 2 0 0 -121 0 P 220 213 2.7326376569990141e-01 2.0431504552473547e+00 -4.6310299656065226e+01 4.6361675538565663e+01 7.1551914038743358e-01 2 0 0 -122 0 P 221 223 7.9718018980302841e-01 7.4357177113707174e-01 -5.4873387172273723e+01 5.4889854464565872e+01 7.8683425771948812e-01 2 0 0 -123 0 P 222 -213 -5.5138016313798532e-01 5.0979224872774642e-01 -3.5291545945613933e+01 3.5308030759381538e+01 7.7454028487129190e-01 2 0 0 -124 0 P 223 211 -5.4116606392338384e-01 5.1606281723702685e-01 -1.3740048246591069e+01 1.3761089605973332e+01 1.3957000000000000e-01 1 0 0 0 0 P 224 223 -9.4523994290142044e-01 9.3229433650155336e-01 -4.3138667275416815e+01 4.3166262636485044e+01 7.8674292075488950e-01 2 0 0 -125 0 P 225 111 8.4439116607810460e-01 4.7208212461308396e-01 -2.3563548530476601e+02 2.3563750977377674e+02 1.3497999999999999e-01 2 0 0 -126 0 P 226 -211 -4.3178131650118690e-01 -8.9648244187495563e-02 -1.1562854862254470e+02 1.1562947378698067e+02 1.3957000000000000e-01 1 0 0 0 0 P 227 223 6.4947700866730729e-01 -8.3290037653642360e-02 -1.6441471283552614e+03 1.6441474454773058e+03 7.8360263056089063e-01 2 0 0 -127 0 P 228 213 6.9399762669195553e-01 3.1047714390960784e-01 -7.2291666417243550e+02 7.2291731631759353e+02 6.0404045144454055e-01 2 0 0 -128 0 V -20 0 0 0 0 0 0 2 0 P 229 -421 1.5444100653242572e+01 -1.7164523165720929e+01 -3.4139584516861781e+01 4.1256862359224634e+01 1.8645000000000000e+00 2 0 0 -129 0 P 230 -211 1.4616475519362462e+00 -1.6614919653173603e+00 -3.2463542538366315e+00 3.9313184611779493e+00 1.3957000000000000e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 3 0 P 231 211 1.2112938842678904e+00 -1.3735940648946232e+00 -2.9916047879798735e+00 3.5104376538464019e+00 1.3957000000000000e-01 1 0 0 0 0 P 232 -211 7.4583044680998123e-01 -9.7661224486483744e-01 -1.9519724930707114e+00 2.3107814545762224e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 111 2.6277257908700826e+00 -2.8570415414573032e+00 -5.9123616688221707e+00 7.0740277992791496e+00 1.3497999999999999e-01 2 0 0 -130 0 V -22 0 0 0 0 0 0 2 0 P 234 -311 3.8194330629922679e+00 -3.9393102450872242e+00 -8.5662050815856912e+00 1.0184978107900488e+01 4.9767000000000000e-01 2 0 0 -131 0 P 235 111 2.3281551259954729e+00 -2.9623620374022686e+00 -5.2577515686987280e+00 6.4697810078777049e+00 1.3497999999999999e-01 2 0 0 -132 0 V -23 0 0 0 0 0 0 1 0 P 236 310 1.5875239630485138e+00 -1.7428201148410596e+00 -3.1765648209144524e+00 3.9869654847163063e+00 4.9767000000000000e-01 2 0 0 -133 0 V -24 0 0 0 0 0 0 2 0 P 237 22 2.8971711081267792e-01 -1.4049763995121101e-01 -5.5956876178855426e-02 3.2681304001095407e-01 0 1 0 0 0 0 P 238 22 3.5915834319319766e-02 -4.3828757597954099e-01 -6.5803201404953637e-01 7.9144935272382677e-01 0 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 239 211 -8.5056232613142622e-03 -6.8147114182213586e-01 -6.0276087049294247e-01 9.2047580884064450e-01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 6.6493025006649775e-01 -2.2703679007727207e-01 -9.1676838963773510e-01 1.1629109261422617e+00 1.3497999999999999e-01 2 0 0 -134 0 V -26 0 0 0 0 0 0 3 0 P 241 -211 4.2764892945855570e-01 -4.8672273346941308e-01 -1.3816821500243219e+00 1.5324189945112332e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 211 4.9611531062943759e-01 -3.5257404249057916e-01 -1.2027913205203546e+00 1.3552216064165266e+00 1.3957000000000000e-01 1 0 0 0 0 P 243 111 8.9104162504505313e-02 -9.8538948704490717e-02 -2.6727184108223340e-01 3.2757184497893310e-01 1.3497999999999999e-01 2 0 0 -135 0 V -27 0 0 0 0 0 0 2 0 P 244 22 -9.9649096834825368e-02 -2.6304378639370619e-02 -4.4617740553310338e-02 1.1230585740593549e-01 0 1 0 0 0 0 P 245 113 1.0342109558401915e+00 -1.0064754676828174e+00 -6.0703808019695105e-01 1.6988744307851109e+00 6.5961650414388973e-01 2 0 0 -136 0 V -28 0 0 0 0 0 0 2 0 P 246 -311 -4.9839510965221196e-03 -3.7464835958399391e-03 1.6350366041412070e+00 1.7091105879051467e+00 4.9767000000000000e-01 2 0 0 -137 0 P 247 -211 -3.5730955838006206e-01 1.2911859441492637e-01 3.1511858728180031e-01 5.1295344904183926e-01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 248 -3122 2.4283310709603331e-01 -7.1599058062044627e-02 3.7114945037389360e+00 3.8838161203514279e+00 1.1156800000000000e+00 2 0 0 -138 0 P 249 22 -1.9495022997829835e-03 -7.9126228701373438e-02 1.9245283707961969e-01 2.0809338078784140e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 250 2112 -1.8125685315944101e-01 4.1501859453231031e-02 1.4180667126590020e+01 1.4212976056801271e+01 9.3957000000000002e-01 1 0 0 0 0 P 251 -211 1.6575476846208489e-01 -9.3132434444180415e-02 1.6332717837938240e+00 1.6502135614066680e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 3 0 P 252 211 7.7046477627578117e-02 -3.2856717568421778e-01 8.7758862757460818e+01 8.7759622633739681e+01 1.3957000000000000e-01 1 0 0 0 0 P 253 -211 -7.6815206395511385e-02 7.0134714435054757e-02 3.3767462981286116e+01 3.3767911623781693e+01 1.3957000000000000e-01 1 0 0 0 0 P 254 111 1.7029297402943941e-01 1.7582895631857545e-01 7.7842243378397299e+01 7.7842745257993840e+01 1.3497999999999999e-01 2 0 0 -139 0 V -32 0 0 0 0 0 0 2 0 P 255 -211 -2.4520501445389831e-01 -4.4378389923286049e-02 4.2941957759319614e+01 4.2942907574228080e+01 1.3957000000000000e-01 1 0 0 0 0 P 256 111 -1.4091564625999906e-01 -8.3369621120001891e-01 2.2820104681391220e+02 2.2820265312471210e+02 1.3497999999999999e-01 2 0 0 -140 0 V -33 0 0 0 0 0 0 2 0 P 257 431 -1.1695248463227021e+01 2.8832478356020246e+01 -2.6916455322382023e+02 2.7096406099185134e+02 1.9684999999999999e+00 2 0 0 -141 0 P 258 22 -8.5140116558356382e-01 1.7516518536539341e+00 -1.7409227305106317e+01 1.7517829874788308e+01 0 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 259 -321 -2.6796095471402537e+00 7.3945518462902911e+00 -6.9678424744003905e+01 7.0122651262615676e+01 4.9359999999999998e-01 1 0 0 0 0 P 260 211 -1.1396133835838591e+00 2.8104769492567847e+00 -2.3253172382232918e+01 2.3450522488189616e+01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 -1.3516508426899152e-04 2.2537800353511579e-04 -2.5035934692025307e-03 2.5174280978538747e-03 0 2 0 P 261 22 -4.0508067801601938e-01 6.3041890829564295e-01 -7.7399646878853670e+00 7.7761540446001343e+00 0 1 0 0 0 0 P 262 22 -5.0814861253723598e-01 8.9232489338821286e-01 -9.1753126566951639e+00 9.2325955763205769e+00 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 263 -211 -4.7544624609129166e-01 1.1145998542421665e+00 -2.0316167471735831e+01 2.0352752209284031e+01 1.3957000000000000e-01 1 0 0 0 0 P 264 211 -3.3633614669290851e-01 1.0128325391048993e+00 -8.0878534975107250e+00 8.1591547195734915e+00 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 265 -211 -4.8631643720877554e-01 6.2459356103213301e-03 -8.8477363816351744e+00 8.8621928185196790e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 -1.1034251221693105e-01 3.2879134672439014e-01 -1.9761970924448637e+01 1.9765474789107305e+01 1.3497999999999999e-01 2 0 0 -142 0 V -38 0 0 0 0 0 0 2 0 P 267 211 -1.1859165687493254e+00 -2.8727758676375420e-01 -8.5532609162074863e+01 8.5541426434079554e+01 1.3957000000000000e-01 1 0 0 0 0 P 268 -211 -2.2024665893086506e-01 2.0703172439630133e-01 -2.4254470279953551e+01 2.4256755328603347e+01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 269 211 -1.8925956383103190e-01 -3.9704121377594342e-01 -7.9597372221828138e+01 7.9598709821912919e+01 1.3957000000000000e-01 1 0 0 0 0 P 270 111 -7.8857742681032317e-01 -1.1515426982881152e+00 -9.9623206250350748e+01 9.9633073565680888e+01 1.3497999999999999e-01 2 0 0 -143 0 V -40 0 0 0 0 0 0 2 0 P 271 321 -7.7542056577060248e-01 -1.5242310758189642e-01 -9.7251497761078525e+01 9.7255961090262261e+01 4.9359999999999998e-01 1 0 0 0 0 P 272 -211 -7.8484844397477341e-03 2.0674562743942754e-01 -1.5727624571053907e+01 1.5729604565471185e+01 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 3 0 P 273 211 -9.9660958939028974e-02 -9.2363681519455421e-01 -4.7275890092128748e+01 4.7285222861492961e+01 1.3957000000000000e-01 1 0 0 0 0 P 274 -211 -2.6503580598198052e-02 -4.1608189538148987e-01 -3.2243139216783291e+01 3.2246136713119874e+01 1.3957000000000000e-01 1 0 0 0 0 P 275 221 -3.2449972064505506e-01 -2.7997908349682303e+00 -1.5539702249157102e+02 1.5542354528685993e+02 5.4744999999999999e-01 2 0 0 -144 0 V -42 0 0 0 0 0 0 2 0 P 276 -321 3.4627206664052362e-01 -2.8773524236525305e+00 -1.4612317413979014e+02 1.4615274449342874e+02 4.9359999999999998e-01 1 0 0 0 0 P 277 321 2.6075195429246528e-01 -3.2270768201937954e+00 -1.7411470129943712e+02 1.7414549912626887e+02 4.9359999999999998e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 3 0 P 278 -211 -2.6698248960702919e-01 -7.1596910939385333e-02 -1.2397117011474650e+00 1.2777991447308028e+00 1.3957000000000000e-01 1 0 0 0 0 P 279 211 -2.3919803137785489e-01 1.4535643318317354e-01 -5.5964152341809936e-01 6.4111045110535103e-01 1.3957000000000000e-01 1 0 0 0 0 P 280 111 -3.8925021803514218e-02 5.7810770437196610e-02 -5.6246419422036779e-02 1.6198920519203117e-01 1.3497999999999999e-01 2 0 0 -145 0 V -44 0 0 0 0 0 0 2 0 P 281 311 -1.8453847131374837e-01 -3.3556893289981732e-01 -1.6049010612068204e+00 1.7233815019562893e+00 4.9767000000000000e-01 2 0 0 -146 0 P 282 211 -4.2802040156403970e-01 7.2496000781171438e-02 -3.7420340304141786e-01 5.8988567200101005e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 283 130 -4.8267817641839444e-01 -2.4286833976002284e-01 -1.6075296446001146e+00 1.7674247479359757e+00 4.9767000000000000e-01 1 0 0 0 0 P 284 310 -2.6642591398008830e-01 -1.8343418042528581e-01 -1.6321100007288738e+00 1.7366891919879119e+00 4.9767000000000000e-01 2 0 0 -147 0 V -46 0 0 0 0 0 0 2 0 P 285 -211 -5.2262680901176795e-01 2.0761276303929041e-01 2.1417838347458589e+00 2.2187743509769775e+00 1.3957000000000000e-01 1 0 0 0 0 P 286 111 -1.5869803297476393e-02 2.3680162530755328e-01 1.3572176153337050e+00 1.3844082187624820e+00 1.3497999999999999e-01 2 0 0 -148 0 V -47 0 -4.5557433991174203e-09 9.1838891655531392e-08 -6.3447238030241699e-08 1.1909402950078318e-07 0 2 0 P 287 22 -6.5438725584856069e-02 8.4278987062277363e-02 -5.3287241520895125e-02 1.1926736592764943e-01 0 1 0 0 0 0 P 288 22 5.0536204876077871e-02 2.1613981726127995e-01 -1.5425820075393368e-01 2.7030708667894254e-01 0 1 0 0 0 0 V -48 0 1.3964137647810267e-06 3.8659606303482399e-05 5.5946596539333308e-04 5.6124237018355394e-04 0 2 0 P 289 22 1.9132987571407637e-02 1.0129936862834117e-01 2.3503315923651673e+00 2.3525913855507699e+00 0 1 0 0 0 0 P 290 22 -1.0655230253480445e-02 1.3340668233852709e-01 1.0462381077253271e+00 1.0547630325722459e+00 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 291 211 2.5957839130211095e-02 -3.5284839110287375e-01 -7.2062629585466520e-01 8.1483608148719822e-01 1.3957000000000000e-01 1 0 0 0 0 P 292 111 5.6602864550630821e-02 -1.8277067121387061e-01 2.9683842482549072e-01 3.7807625339894640e-01 1.3497999999999999e-01 2 0 0 -149 0 V -50 0 0 0 0 0 0 2 0 P 293 211 1.5391234735369044e-01 2.1149946905031001e-02 1.1077842133318796e+02 1.1077861819497993e+02 1.3957000000000000e-01 1 0 0 0 0 P 294 111 -3.0190331210422228e-01 -9.3575696211074422e-02 1.5440943238746027e+03 1.5440943621240858e+03 1.3497999999999999e-01 2 0 0 -150 0 V -51 0 0 0 0 0 0 2 0 P 295 2112 2.8472988999931732e-02 -2.2029169354348874e-01 1.1953167900430039e+03 1.1953171799525167e+03 9.3957000000000002e-01 1 0 0 0 0 P 296 111 -1.5175503909344737e-01 -1.0958562455103497e-01 1.7943807926390028e+02 1.7943822766656820e+02 1.3497999999999999e-01 2 0 0 -151 0 V -52 0 0 0 0 0 0 2 0 P 297 -321 -1.3075587113627571e-01 1.6758844471879372e-01 3.9589469857106661e+02 3.9589506334459429e+02 4.9359999999999998e-01 1 0 0 0 0 P 298 211 3.7254417054869271e-01 2.9299563582693489e-01 3.5626906438042414e+02 3.5626940698001187e+02 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 299 -211 -3.3293528226652280e-01 -3.6897754460389919e-02 5.0498595148207329e+01 5.0499899000630791e+01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 4.0257754193754192e-01 -4.6606269811665291e-01 8.7713932205153640e+01 8.7716198079981424e+01 1.3497999999999999e-01 2 0 0 -152 0 V -54 0 0 0 0 0 0 2 0 P 301 -321 4.1847747686820885e-01 2.4855979634535447e-01 1.3031582999323732e+02 1.3031767375593125e+02 4.9359999999999998e-01 1 0 0 0 0 P 302 211 1.1617507042054044e-01 3.7015538865857134e-01 3.9486823757822584e+01 3.9488976207607386e+01 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 1 0 P 303 310 -1.1042230933477806e-01 3.0525583662991440e-01 2.0711679256443183e+01 2.0720200463867968e+01 4.9767000000000000e-01 2 0 0 -153 0 V -56 0 0 0 0 0 0 2 0 P 304 -2112 -2.4119462442173514e-02 1.1923846223556160e+00 3.8667216358882087e+01 3.8697012488893726e+01 9.3957000000000002e-01 1 0 0 0 0 P 305 211 -3.0309719715413651e-02 6.8132508080402288e-01 1.6024790828163070e+01 1.6039904096225797e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 1 0 P 306 130 -1.1079526329143065e-01 1.4001308808220789e-01 2.2650861693664769e+01 2.2657031803606404e+01 4.9767000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 307 3122 2.8195271990273163e-01 8.9717084970131800e-01 4.4221610318110535e+01 4.4245677459600891e+01 1.1156800000000000e+00 2 0 0 -154 0 P 308 22 -2.2950801985107818e-02 3.6204630019358655e-03 3.4066452579375035e+00 3.4067244914275334e+00 0 1 0 0 0 0 V -59 0 2.2861505840193375e-06 8.0941461075280730e-07 6.0308048183694523e-06 6.7378357746580926e-06 0 2 0 P 309 22 1.3417178545820704e-01 9.3115652059666709e-02 2.5686233696614641e-01 3.0438602599864889e-01 0 1 0 0 0 0 P 310 22 3.9801251559852147e-02 -3.1520270275198485e-02 2.0207393663235765e-01 2.0835436863682572e-01 0 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 311 -211 2.8604404881953782e-01 5.6809303864208271e-01 2.6875932232420787e+00 2.7653549531543713e+00 1.3957000000000000e-01 1 0 0 0 0 P 312 111 2.0181265637427512e-01 4.8555029833663244e-03 4.5163983367230287e+00 4.5229222257890536e+00 1.3497999999999999e-01 2 0 0 -155 0 V -61 0 0 0 0 0 0 2 0 P 313 211 -7.7657752337165309e-01 2.4008831361471442e-01 4.4252991809500992e+00 4.5014961594960878e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 111 -2.3224213349856474e-02 4.3421233421284545e-02 1.3335845186950379e-01 1.9603276430886774e-01 1.3497999999999999e-01 2 0 0 -156 0 V -62 0 0 0 0 0 0 2 0 P 315 22 -1.4472780020568152e-01 3.4624137646407351e-02 2.0207782305813882e-02 1.5017763324094643e-01 0 1 0 0 0 0 P 316 111 8.4519606712927839e-02 -4.1038431606434089e-01 2.0470712283316352e+00 2.0938670122655103e+00 1.3497999999999999e-01 2 0 0 -157 0 V -63 0 0 0 0 0 0 2 0 P 317 -311 -7.7708120411371884e-01 5.7513394261936779e-01 1.9783856915945139e+00 2.2575029619793701e+00 4.9767000000000000e-01 2 0 0 -158 0 P 318 111 1.6366843291693762e-02 -1.2327260157595510e-01 1.7417371665870118e-01 2.5302191966970877e-01 1.3497999999999999e-01 2 0 0 -159 0 V -64 0 0 0 0 0 0 1 0 P 319 130 5.5842614084397968e-01 -7.8365288802270150e-01 1.6409031237939105e+00 1.9662629768830096e+00 4.9767000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 320 -2212 -2.7739298798906415e+00 -5.4374912358616587e+00 -1.2468068073206438e+00 6.3004663102268514e+00 9.3827000000000005e-01 1 0 0 0 0 P 321 111 -3.1045276238030411e-01 -4.5821105212649071e-01 -8.1005221627774206e-03 5.6975740874492964e-01 1.3497999999999999e-01 2 0 0 -160 0 V -66 0 0 0 0 0 0 2 0 P 322 2212 -1.6392405640280252e+00 -3.0030406188115357e+00 3.6484296548743367e-01 3.5663459685443524e+00 9.3827000000000005e-01 1 0 0 0 0 P 323 111 -5.1075426846583349e-01 -1.6051277201071972e+00 -1.8015793713461665e-03 1.6898306917264903e+00 1.3497999999999999e-01 2 0 0 -161 0 V -67 0 0 0 0 0 0 3 0 P 324 -211 -1.1720729570423537e-01 9.4433953142369936e-02 6.4760599497296636e-02 2.1524182172534373e-01 1.3957000000000000e-01 1 0 0 0 0 P 325 211 2.0350029247650368e-02 7.0975185505161326e-02 1.2174247921739420e-01 1.9938058279047624e-01 1.3957000000000000e-01 1 0 0 0 0 P 326 111 -3.1416590471667316e-01 -3.0899880578295907e-01 -1.4806272960534569e-01 4.8406884836759156e-01 1.3497999999999999e-01 2 0 0 -162 0 V -68 0 0 0 0 0 0 2 0 P 327 -211 -1.0253165501156886e-01 -5.9827171365892673e-01 -5.0329040501239897e-01 8.0076388550017963e-01 1.3957000000000000e-01 1 0 0 0 0 P 328 211 -3.5431842664682056e-01 -6.8842352921300531e-01 1.3608712106078175e-01 7.9841592697927799e-01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 329 -2212 -3.5883521517880518e-01 2.8750664776169360e-01 -3.5554640919528763e-01 1.1037149206888748e+00 9.3827000000000005e-01 1 0 0 0 0 P 330 -211 9.1547629609594172e-02 2.0814997353333864e-01 1.2349662100260610e-01 2.9400438817835073e-01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 3 0 P 331 211 -8.9346424792102100e-02 3.1296706435493504e-01 -2.9820164870621030e-01 4.6296347068119625e-01 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -1.0185628312752884e-01 2.1423673120924708e-01 1.1132811993730904e-01 2.9689360821774924e-01 1.3957000000000000e-01 1 0 0 0 0 P 333 111 4.7614900099121796e-02 -4.3049870027019495e-03 -2.8082380309226218e-01 3.1522582446199487e-01 1.3497999999999999e-01 2 0 0 -163 0 V -71 0 0 0 0 0 0 2 0 P 334 2212 1.2042548246353132e-01 1.6751925263097739e-01 -1.2696985207615427e-02 9.6076886042480480e-01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 4.4374255447530327e-02 1.2496902622716109e-02 -2.6300183778622482e-01 3.0128889574728113e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 336 -211 -4.8582909194407842e-01 -2.0423445011427090e-02 3.6323445977291213e-01 6.2278895410232016e-01 1.3957000000000000e-01 1 0 0 0 0 P 337 111 -4.3562498461528149e-01 8.8876675715897002e-01 4.6317814118541140e-01 1.1011035676646901e+00 1.3497999999999999e-01 2 0 0 -164 0 V -73 0 -6.6072665072921183e+01 5.3093497931297861e+01 -7.8560199455695198e+01 2.5866774903996372e+02 0 2 0 P 338 2212 -2.9059303019304539e-01 1.1749422991370938e-01 -3.0430540635085496e-01 1.0349886842348330e+00 9.3827000000000005e-01 1 0 0 0 0 P 339 -211 -2.7951718938964913e-02 1.3847629829792721e-01 -7.4443339439197828e-02 2.1208153967000296e-01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 1 0 P 340 310 -4.0610558665752505e-01 -7.6204636609355766e-02 -1.4996914639836001e+00 1.6332418100821722e+00 4.9767000000000000e-01 2 0 0 -165 0 V -75 0 0 0 0 0 0 2 0 P 341 -321 -3.5468649270279207e-01 -5.6452278717842552e-01 -1.7140107884330469e+00 1.9041960057237755e+00 4.9359999999999998e-01 1 0 0 0 0 P 342 211 -5.8822663371365402e-01 -1.3302621012156396e-02 -8.7102642287983822e-01 1.0603557641616030e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 343 311 -1.6828297136056429e+00 7.2296576961601067e-01 -1.3991947988544429e+00 2.3579688002753230e+00 4.9767000000000000e-01 2 0 0 -166 0 P 344 211 -6.6315366706854251e-01 3.9950249861122084e-01 -2.5176232166715373e-01 8.2597765348361529e-01 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 345 -311 2.0073487869418979e-01 5.8936398482484043e-01 -1.0132201963047931e+00 1.2891605769774801e+00 4.9767000000000000e-01 2 0 0 -167 0 P 346 -211 -2.3755395583690606e-01 -5.3943801995256863e-02 -1.5973577492015220e-01 3.2301256693325064e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 347 321 -2.8924854141547257e-01 9.5471484284368013e-01 -4.4281369199683551e-01 1.1978606244788579e+00 4.9359999999999998e-01 1 0 0 0 0 P 348 -211 1.0538773913596348e-01 1.6536135541975699e-01 2.2872104718805172e-01 3.3203020307382891e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 349 -2112 -7.8780256136186930e-02 2.5702361285744657e-01 2.3774118325694490e-01 1.0057733946767482e+00 9.3957000000000002e-01 1 0 0 0 0 P 350 111 2.4085308609588718e-01 1.1611317736671668e-01 -1.8121416730868931e-01 3.5007235519744928e-01 1.3497999999999999e-01 2 0 0 -168 0 V -80 0 -1.1094118523935450e-07 3.8994680324748600e-06 5.5709900139939895e-06 8.8496307880108829e-06 0 2 0 P 351 22 1.0238734866653299e-02 1.2521031087488946e-01 1.2060309622321495e-01 1.7414809921352034e-01 0 1 0 0 0 0 P 352 22 -1.2883382141252328e-02 -3.2253691723750103e-02 1.2199735525343149e-02 3.6811896339316245e-02 0 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 353 -321 1.9259597077357102e+00 2.6470192208401250e-01 3.0178885099844188e+00 3.6236280054763306e+00 4.9359999999999998e-01 1 0 0 0 0 P 354 111 1.0244033745343346e-02 8.7878061336089788e-02 2.9246998843428479e-01 3.3404459047605600e-01 1.3497999999999999e-01 2 0 0 -169 0 V -82 0 6.0601213425480680e+01 6.0493086425465570e+01 3.0449690416410573e+02 3.2230580801318627e+02 0 2 0 P 355 -2112 1.0014544161904320e+00 1.1825394635874593e+00 5.1288890804664575e+00 5.4396328474702313e+00 9.3957000000000002e-01 1 0 0 0 0 P 356 -211 1.6309110902336424e-01 -2.0071764986445965e-02 7.2248727228271736e-01 7.5396898417817115e-01 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 2 0 P 357 2212 1.0904974872288600e+00 5.2770364580465434e-01 5.7770893863036026e+00 5.9768527067085833e+00 9.3827000000000005e-01 1 0 0 0 0 P 358 211 4.3326362964242005e-01 3.5809488434014863e-01 1.4121561978822377e+00 1.5263073842050054e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 -1.6968616453618340e-05 5.2085411281309245e-06 4.8705412208727698e-05 5.1986931668754982e-05 0 2 0 P 359 22 -2.1788908016932040e-01 7.1737511121474001e-02 4.5233219238762551e-01 5.0717485547800167e-01 0 1 0 0 0 0 P 360 22 -3.6650463230611297e-01 1.0764297607200918e-01 1.2250665947265280e+00 1.2832384101617007e+00 0 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 361 211 5.3446729303359575e-01 -1.1313931701153529e-01 1.1089693571939541e+00 1.2440854522385782e+00 1.3957000000000000e-01 1 0 0 0 0 P 362 -211 5.5846365646353024e-01 3.7514754315460963e-01 2.8148228012224328e+00 2.8974686403664940e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 5.3571197843961197e-05 4.0315191791785303e-04 1.4278740043696002e-03 1.4860396587006188e-03 0 2 0 P 363 22 9.4907794352502017e-02 4.5706206698696294e-01 1.8412573345349059e+00 1.8995109356057516e+00 0 1 0 0 0 0 P 364 22 1.8182830219846416e-02 3.9400537279046549e-01 1.1730333564278863e+00 1.2375694341712828e+00 0 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 365 -211 -3.0989578718184813e-01 3.5883138664468872e-01 2.6936643985947044e+00 2.7386315999255864e+00 1.3957000000000000e-01 1 0 0 0 0 P 366 211 1.5322551232489892e-01 -1.1474411992708352e-02 9.0573589081853856e-01 9.2921849345278196e-01 1.3957000000000000e-01 1 0 0 0 0 P 367 111 -4.6643910606306321e-02 1.8898458705117496e-01 2.1527931960659101e+00 2.1657859944988167e+00 1.3497999999999999e-01 2 0 0 -170 0 V -88 0 -2.1524832306723884e-06 -3.7936939067891648e-06 2.1933871778115339e-05 2.2439907666115438e-05 0 2 0 P 368 22 -1.0406595085100843e-01 -7.9846684258047015e-02 8.3319415228765181e-01 8.4345581420716265e-01 0 1 0 0 0 0 P 369 22 -5.2825180883433152e-02 -1.9666972340022809e-01 7.6553141154016924e-01 7.9215391300704541e-01 0 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 370 211 -9.2782934504138020e-02 -3.8379824939647443e-02 2.8190206580271902e+00 2.8242590070993221e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 111 -1.0604705160965995e+00 1.4323997489659617e+00 1.9825401063393727e+01 1.9905806029426717e+01 1.3497999999999999e-01 2 0 0 -171 0 V -90 0 0 0 0 0 0 3 0 P 372 -211 -2.1747105119210652e-01 1.0535379041347492e-02 1.5863852467530508e+00 1.6073277787476588e+00 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -1.4169477078612341e-01 -4.8990688674409567e-02 2.5094056833155123e+00 2.5177518074665577e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 221 -1.5706768980167207e-01 7.5116783180301239e-02 7.3111203070815112e+00 7.3336549167120371e+00 5.4744999999999999e-01 2 0 0 -172 0 V -91 0 0 0 0 0 0 2 0 P 375 -2212 -3.2656362996381499e-01 1.1210080800678319e+00 3.2850838061361785e+01 3.2884969436609005e+01 9.3827000000000005e-01 1 0 0 0 0 P 376 -211 -3.8980825094860783e-01 2.0166478060921178e-01 7.2374149631237898e+00 7.2520531085751090e+00 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 377 22 9.4917857083427412e-02 3.0173405695510086e-01 1.1722784446145020e+02 1.1722827120587712e+02 0 1 0 0 0 0 P 378 113 2.9626284738203174e-01 5.5158240797277258e-01 3.0426017701076648e+02 3.0426188364387212e+02 8.0405787522981231e-01 2 0 0 -173 0 V -93 0 0 0 0 0 0 2 0 P 379 2212 -9.4958013536350205e-01 2.7196812682429744e-01 8.3672467223773495e+01 8.3683557470998053e+01 9.3827000000000005e-01 1 0 0 0 0 P 380 211 -1.9508586982739407e-01 2.4442356776737678e-01 3.2886310917853379e+01 3.2888093999922049e+01 1.3957000000000000e-01 1 0 0 0 0 V -94 0 -7.1492143256016594e-04 3.3896240504882006e-04 7.1182519747952339e-02 7.1186972149264519e-02 0 2 0 P 381 22 -7.4948893306394904e-01 3.6696679638162477e-01 6.9320945239142091e+01 6.9325968057709574e+01 0 1 0 0 0 0 P 382 22 -3.3774061614411816e-01 1.4851634072336950e-01 3.8931144196640034e+01 3.8932892446963592e+01 0 1 0 0 0 0 V -95 0 -1.2318174804338302e+02 -3.2970194528382183e+02 2.4872432206429083e+04 2.4875727980903077e+04 0 2 0 P 383 -2112 -6.6622227471582462e-01 -1.6986045073031295e+00 1.2973888060524808e+02 1.2975511181406023e+02 9.3957000000000002e-01 1 0 0 0 0 P 384 111 -2.0234952939130350e-02 -1.3873168013487297e-01 8.8681868269166770e+00 8.8703220420620568e+00 1.3497999999999999e-01 2 0 0 -174 0 V -96 0 -4.9536576560191220e-05 1.5374184361288272e-04 2.5066080864840964e-03 2.5132078827939880e-03 0 2 0 P 385 22 -7.2957848942654835e-02 2.2130766041403621e-01 3.9375435567481740e+00 3.9444326828543197e+00 0 1 0 0 0 0 P 386 22 -6.7368739974736106e-03 2.6033082161210207e-02 9.5101628756434797e-02 9.8830292067750625e-02 0 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 387 211 -3.4632756716585417e-02 -9.5836709387891558e-02 3.4148711425806551e+00 3.4192409695770491e+00 1.3957000000000000e-01 1 0 0 0 0 P 388 -211 -2.7563771261813041e-01 -4.4005954848689266e-01 8.5847552459514063e+00 8.6015772374967394e+00 1.3957000000000000e-01 1 0 0 0 0 P 389 111 6.5870117985905613e-02 -1.1370405709066417e-01 8.2300202764698482e-01 8.4428633943313480e-01 1.3497999999999999e-01 2 0 0 -175 0 V -98 0 0 0 0 0 0 2 0 P 390 -211 1.5463802667647195e-01 -2.3822704526285587e-01 6.9389069845494262e+00 6.9461194180288803e+00 1.3957000000000000e-01 1 0 0 0 0 P 391 211 4.6666258717852943e-01 1.6062808738875656e-01 3.1591755978475136e+00 3.2005383290417759e+00 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 3 0 P 392 -211 1.3146881734579865e-02 -3.4929437330533597e-01 4.5176273239889575e+00 4.5332787056471320e+00 1.3957000000000000e-01 1 0 0 0 0 P 393 211 5.2414406366703226e-01 -1.4935566548823226e-01 6.4085323663628904e+00 6.4331796951361131e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 111 1.7576546305804761e-01 -1.7895753550133772e-01 5.7150452716568303e+00 5.7221395784272699e+00 1.3497999999999999e-01 2 0 0 -176 0 V -100 0 0 0 0 0 0 2 0 P 395 -211 1.7749065697037272e-01 1.5643068394402396e-01 8.0792234483880698e-01 8.5334154497528469e-01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -1.3590750673317939e-01 -5.3984673352816470e-01 1.5887882301709260e+00 1.6888969734170056e+00 1.3497999999999999e-01 2 0 0 -177 0 V -101 0 5.2055282079806740e-05 -2.2133761908864225e-04 3.5655537765036751e-04 4.2326770376766991e-04 0 2 0 P 397 22 3.1068238053860231e-01 -1.4814118146964919e+00 2.4076651539636611e+00 2.8439331918859039e+00 0 1 0 0 0 0 P 398 22 7.9844562183506065e-02 -1.7909794028971981e-01 2.6726956892280751e-01 3.3148793160306633e-01 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 399 -211 6.4242327320004056e-01 -7.4467113923214279e-01 7.8349341656173299e-01 1.2651420814477434e+00 1.3957000000000000e-01 1 0 0 0 0 P 400 111 4.3851938120611522e-01 -1.1802901974391282e+00 2.1945621749155517e+00 2.5337140599985561e+00 1.3497999999999999e-01 2 0 0 -178 0 V -103 0 6.0390230254606170e-05 -4.1591630491811038e-05 4.4140844535013619e-05 8.6640324612541624e-05 0 2 0 P 401 22 1.7269066079478956e-01 -6.2900933136224677e-02 6.9692832140764258e-02 1.9655961580891843e-01 0 1 0 0 0 0 P 402 22 4.3272202077994654e-01 -3.5405559180089147e-01 3.7281958988925185e-01 6.7201053262471255e-01 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 403 211 1.1360007827092329e+00 -1.3709274115138739e+00 -6.2954566317421179e+00 6.5438668792237769e+00 1.3957000000000000e-01 1 0 0 0 0 P 404 111 4.0083816853284998e-01 -2.5861674534136908e-01 -3.7694938136964566e+00 3.8019543750838976e+00 1.3497999999999999e-01 2 0 0 -179 0 V -105 0 0 0 0 0 0 2 0 P 405 -211 -3.8835673713320956e-01 -6.0213771620230519e-02 -1.0492044156436071e+00 1.1290510813402241e+00 1.3957000000000000e-01 1 0 0 0 0 P 406 111 4.8871608535520783e-01 -1.2025473094938154e-01 -1.8162555759949901e+00 1.8895260067364832e+00 1.3497999999999999e-01 2 0 0 -180 0 V -106 0 0 0 0 0 0 3 0 P 407 211 -6.7829767615265657e-02 5.3615083493357758e-02 -1.4865325494214254e+00 1.4955715495896889e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 -211 -1.9232275674046562e-01 -2.9219800029669635e-01 -1.2477561355047411e+00 1.3033583055811500e+00 1.3957000000000000e-01 1 0 0 0 0 P 409 111 -1.1778902503572694e-01 -3.8288372581462204e-01 -3.5890280687675666e+00 3.6138367811391263e+00 1.3497999999999999e-01 2 0 0 -181 0 V -107 0 0 0 0 0 0 2 0 P 410 211 4.9660636127608931e-01 -7.1469198808816137e-01 -7.4431479145315311e+00 7.4951539796319304e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 111 -1.9260246579514992e-01 -7.2919233189620447e-01 -9.0931342443107255e+00 9.1253562753562107e+00 1.3497999999999999e-01 2 0 0 -182 0 V -108 0 -5.1484457270288234e-05 6.6274385684648101e-05 -2.9356536306193840e-04 3.0601668852410263e-04 0 2 0 P 412 22 -2.0562477933231560e-01 3.6096984576514335e-01 -1.3942372947829509e+00 1.4548121574934878e+00 0 1 0 0 0 0 P 413 22 -1.3240603663773154e-01 7.4167006378074093e-02 -5.3322090285135471e-01 5.5439754203171898e-01 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 414 211 -6.4610000630742098e-02 -1.0734631151693638e-01 -7.6792960211520516e+00 7.6815860893541723e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 6.1827483224380135e-02 2.8603851388654455e-01 -1.5311139717777418e+00 1.5650656371479426e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 416 211 -4.5683482099176514e-01 -9.5953927581707968e-02 -4.1467471829383236e+00 4.1752721101738812e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 111 2.1969006549921058e-01 -1.5123457939054738e-01 -8.8701869713585086e+00 8.8752223707432094e+00 1.3497999999999999e-01 2 0 0 -183 0 V -111 0 0 0 0 0 0 2 0 P 418 321 9.0619748387936416e-01 9.9447914183811437e-01 -3.6589177184653472e+01 3.6617232427551194e+01 4.9359999999999998e-01 1 0 0 0 0 P 419 -211 1.0510072683034193e-01 8.9838520526293444e-02 -1.4568681580372658e+01 1.4570006173565616e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 3 0 P 420 111 2.8857812442902242e-01 1.9000564218777558e-01 -1.0952504644654240e+01 1.0958784470438994e+01 1.3497999999999999e-01 2 0 0 -184 0 P 421 111 5.4329175130469942e-01 3.3610555582273111e-01 -2.5123472497081814e+01 2.5131956206863741e+01 1.3497999999999999e-01 2 0 0 -185 0 P 422 111 3.3809147095744790e-01 4.1811912122243333e-01 -1.4749659264666047e+01 1.4760074439731493e+01 1.3497999999999999e-01 2 0 0 -186 0 V -113 0 0 0 0 0 0 2 0 P 423 -2112 5.0468490760310680e-01 4.7548098593259541e-01 -3.3627992714642680e+01 3.3648261096599136e+01 9.3957000000000002e-01 1 0 0 0 0 P 424 111 1.1931979963270056e-01 -1.0628965661071649e-01 -1.5587109837395191e+01 1.5588513315550934e+01 1.3497999999999999e-01 2 0 0 -187 0 V -114 0 1.1495583189382939e-04 1.6074393653648648e-05 -1.4614329364458789e-03 1.4662642096367308e-03 0 2 0 P 425 22 4.0888292217886751e-01 2.5201673473971814e-02 -5.7563233167545089e+00 5.7708819512624832e+00 0 1 0 0 0 0 P 426 22 1.9001125949403966e-01 5.8542323455050720e-02 -1.8574155264469718e+00 1.8680267450591579e+00 0 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 427 211 -6.1208775072580601e-01 -1.7293642539156046e-01 -4.2246592096376951e+01 4.2251610406756988e+01 1.3957000000000000e-01 1 0 0 0 0 P 428 111 -1.9165205211707337e-01 -5.6097693876893458e-02 -3.0039108347763701e+00 3.0135655566165904e+00 1.3497999999999999e-01 2 0 0 -188 0 V -116 0 0 0 0 0 0 3 0 P 429 111 8.8526124568909736e-02 -8.3746359561435113e-02 -1.3736640928134777e+01 1.3737844587721121e+01 1.3497999999999999e-01 2 0 0 -189 0 P 430 111 -6.9396720680510060e-02 -2.0646186834084193e-01 -1.8675684441719721e+01 1.8677442313523873e+01 1.3497999999999999e-01 2 0 0 -190 0 P 431 111 9.3219846263623993e-02 2.6069358954835815e-02 -7.6166576823267906e+00 7.6184685732344821e+00 1.3497999999999999e-01 2 0 0 -191 0 V -117 0 0 0 0 0 0 2 0 P 432 -211 -1.3749553245298821e-01 -1.2011795367007206e-02 -2.9232348197685103e+00 2.9298175542308953e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 211 -7.1906422842230011e-01 4.5679911120136979e-01 -4.7734283598110103e+01 4.7742088655632713e+01 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 434 211 -5.6614079522552688e-03 -2.9680762534906263e-01 -1.9646459255984009e+01 1.9649197640105946e+01 1.3957000000000000e-01 1 0 0 0 0 P 435 -211 -1.2866851799964399e-01 -4.9598222463536838e-02 -2.6457550732273212e+01 2.6458278215086228e+01 1.3957000000000000e-01 1 0 0 0 0 P 436 111 1.5691001828433193e-01 2.3267215652822540e-02 -6.4637533796930393e+00 6.4671082773566901e+00 1.3497999999999999e-01 2 0 0 -192 0 V -119 0 0 0 0 0 0 3 0 P 437 211 -8.8046415598858352e-01 -5.0761593833132979e-01 -4.1799174496677850e+01 4.1811761018395920e+01 1.3957000000000000e-01 1 0 0 0 0 P 438 -211 -4.3688620980244286e-01 -6.1249646073436692e-01 -2.7306755318961308e+01 2.7317474028710073e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 111 -5.5555366301149511e-01 -2.1012980670957190e-01 -1.7072197447706618e+01 1.7083060021613036e+01 1.3497999999999999e-01 2 0 0 -193 0 V -120 0 0 0 0 0 0 2 0 P 440 -211 -1.7678734458489728e-01 4.6427757678383627e-02 -8.7589821080042114e+01 8.7590122992952686e+01 1.3957000000000000e-01 1 0 0 0 0 P 441 111 1.6081615031972193e-01 1.6976037257897994e-01 -9.7463713450141878e+00 9.7501104821235476e+00 1.3497999999999999e-01 2 0 0 -194 0 V -121 0 0 0 0 0 0 2 0 P 442 211 -1.4126751955446068e-01 -2.0028337752354334e-03 -2.1101636386629847e+00 2.1194883557735364e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 -1.5746359313779397e+00 5.7448669414899656e-01 -4.5835917960276475e+01 4.5866767580942920e+01 1.3957000000000000e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 444 211 1.4996611546623037e-01 1.8133584258792143e-01 -3.5776670055284856e+00 3.5881128063290126e+00 1.3957000000000000e-01 1 0 0 0 0 P 445 111 1.2329765023367104e-01 1.8618146126594335e+00 -4.2732632650536743e+01 4.2773562732236655e+01 1.3497999999999999e-01 2 0 0 -195 0 V -123 0 0 0 0 0 0 3 0 P 446 211 5.0269099219515312e-01 3.8471975469084135e-01 -3.1552643151418643e+01 3.1559300961031273e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.4472380402119770e-01 4.3075611395333813e-01 -1.7226066632936231e+01 1.7233754437069763e+01 1.3957000000000000e-01 1 0 0 0 0 P 448 111 4.9765393586677573e-02 -7.1904097507107759e-02 -6.0946773879188498e+00 6.0967990664648353e+00 1.3497999999999999e-01 2 0 0 -196 0 V -124 0 0 0 0 0 0 2 0 P 449 -211 -9.3021611316220984e-02 -1.4669398547674911e-01 -4.2213114454846172e+00 4.2271884569091958e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -4.5835855182176438e-01 6.5648623420449559e-01 -3.1070234500129320e+01 3.1080842302472345e+01 1.3497999999999999e-01 2 0 0 -197 0 V -125 0 0 0 0 0 0 2 0 P 451 22 -7.3298947232961364e-01 9.1906195800358648e-01 -4.0081824707755509e+01 4.0099060093129815e+01 0 1 0 0 0 0 P 452 111 -2.1225047057180679e-01 1.3232378497966969e-02 -3.0568425676613082e+00 3.0672025433552390e+00 1.3497999999999999e-01 2 0 0 -198 0 V -126 0 6.6000034099559146e-05 3.6899292145571623e-05 -1.8417945011686917e-02 1.8418103249988205e-02 0 2 0 P 453 22 7.2813993477545536e-01 4.5581689064124287e-01 -2.0927191796842530e+02 2.0927368111395600e+02 0 1 0 0 0 0 P 454 22 1.1625123130264929e-01 1.6265233971841112e-02 -2.6363567336340722e+01 2.6363828659820769e+01 0 1 0 0 0 0 V -127 0 0 0 0 0 0 3 0 P 455 211 1.6916880117273494e-01 -1.2162001876971813e-01 -5.4702866041393224e+02 5.4702871789656376e+02 1.3957000000000000e-01 1 0 0 0 0 P 456 -211 3.7889105804857065e-01 -6.0431702010448616e-04 -3.3992475828123861e+02 3.3992499809684853e+02 1.3957000000000000e-01 1 0 0 0 0 P 457 111 1.0141714944600168e-01 3.8934298136180261e-02 -7.5719370966009058e+02 7.5719372948389355e+02 1.3497999999999999e-01 2 0 0 -199 0 V -128 0 0 0 0 0 0 2 0 P 458 211 1.0135139084425947e-01 3.1397595322952992e-01 -2.3376705002127230e+02 2.3376732450972818e+02 1.3957000000000000e-01 1 0 0 0 0 P 459 111 5.9264623584769605e-01 -3.4988093199221173e-03 -4.8914961415116323e+02 4.8914999180786543e+02 1.3497999999999999e-01 2 0 0 -200 0 V -129 0 4.7862273752201578e-01 -5.3193975164313334e-01 -1.0580079582616513e+00 1.2785770338653697e+00 0 2 0 P 460 311 4.8975236837863623e+00 -6.3385842999888222e+00 -1.1439708751351988e+01 1.3974190527754100e+01 4.9767000000000000e-01 2 0 0 -201 0 P 461 223 1.0546576969456209e+01 -1.0825938865732107e+01 -2.2699875765509791e+01 2.7282671831470537e+01 7.9283314568959318e-01 2 0 0 -202 0 V -130 0 5.8476802379879122e-04 -6.3579942089613602e-04 -1.3157233000008256e-03 1.5742377956082171e-03 0 2 0 P 462 22 2.5544451559557264e+00 -2.7407417198005373e+00 -5.7001651063374021e+00 6.8211976564931263e+00 0 1 0 0 0 0 P 463 22 7.3280634914356130e-02 -1.1629982165676597e-01 -2.1219656248476829e-01 2.5283014278601906e-01 0 1 0 0 0 0 V -131 0 0 0 0 0 0 1 0 P 464 130 3.8194330629922679e+00 -3.9393102450872242e+00 -8.5662050815856912e+00 1.0184978107900488e+01 4.9767000000000000e-01 1 0 0 0 0 V -132 0 1.1967564418141830e-04 -1.5227618691134615e-04 -2.7026756031166044e-04 3.3257028330507224e-04 0 2 0 P 465 22 9.6703834069832351e-01 -1.2566408989954012e+00 -2.3240843172954304e+00 2.8134813692838119e+00 0 1 0 0 0 0 P 466 22 1.3611167852971495e+00 -1.7057211384068673e+00 -2.9336672514032975e+00 3.6562996385938975e+00 0 1 0 0 0 0 V -133 0 1.8174402839328934e+01 -1.9952275103162631e+01 -3.6366171499973618e+01 4.5643857045526815e+01 0 2 0 P 467 111 1.1423479955337608e+00 -1.0912292516387612e+00 -1.8394002762436539e+00 2.4284466638527027e+00 1.3497999999999999e-01 2 0 0 -203 0 P 468 111 4.4517596751475319e-01 -6.5159086320229853e-01 -1.3371645446707983e+00 1.5585188208636034e+00 1.3497999999999999e-01 2 0 0 -204 0 V -134 0 5.4767844094170441e-05 -1.8700180238979080e-05 -7.5510819712476418e-05 9.5784669583008495e-05 0 2 0 P 469 22 3.7357112256778363e-01 -1.4184657662722097e-01 -6.2530942054676053e-01 7.4208335538667147e-01 0 1 0 0 0 0 P 470 22 2.9135912749871418e-01 -8.5190213450051094e-02 -2.9145896909097457e-01 4.2082757075558952e-01 0 1 0 0 0 0 V -135 0 6.6765541225425822e-06 -7.3835004528628446e-06 -2.0026616740008135e-05 2.4544881973526134e-05 0 2 0 P 471 22 5.7245778776784578e-02 -1.2361323918494664e-01 -1.4590983308058611e-01 1.9961711219021255e-01 0 1 0 0 0 0 P 472 22 3.1858383727720728e-02 2.5074290480455921e-02 -1.2136200800164727e-01 1.2795473278872060e-01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 473 -211 5.3529614214955434e-01 -6.6759715980879941e-01 -5.3880915916578752e-02 8.6868340929534338e-01 1.3957000000000000e-01 1 0 0 0 0 P 474 211 4.9891481369063728e-01 -3.3887830787401790e-01 -5.5315716428037232e-01 8.3019102148976764e-01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 1 0 P 475 130 -4.9839510965221196e-03 -3.7464835958399391e-03 1.6350366041412070e+00 1.7091105879051467e+00 4.9767000000000000e-01 1 0 0 0 0 V -138 0 1.7752564212462111e+01 -5.2343228277171487e+00 2.7133262547997089e+02 2.8393037461184167e+02 0 2 0 P 476 -2212 2.7872225113333204e-01 -1.2755569349544912e-01 3.1174014399419452e+00 3.2699386659189877e+00 9.3827000000000005e-01 1 0 0 0 0 P 477 211 -3.5889144037298717e-02 5.5956635433404490e-02 5.9409306379699112e-01 6.1387745443244013e-01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 2.7376831471671283e-05 2.8266813310461848e-05 1.2514162668735783e-02 1.2514243352470457e-02 0 2 0 P 478 22 7.1778250057738552e-02 4.8303276760327876e-02 4.7105882476582551e+01 4.7105961928627828e+01 0 1 0 0 0 0 P 479 22 9.8514723971700871e-02 1.2752567955824759e-01 3.0736360901814745e+01 3.0736783329366009e+01 0 1 0 0 0 0 V -140 0 -2.4385040091597229e-05 -1.4426868892057203e-04 3.9489523152272714e-02 3.9489801119654576e-02 0 2 0 P 480 22 -1.4860495983433195e-01 -5.6669784346723728e-01 1.4718197628813991e+02 1.4718314228865495e+02 0 1 0 0 0 0 P 481 22 7.6893135743328744e-03 -2.6699836773278168e-01 8.1019070525772278e+01 8.1019510836057108e+01 0 1 0 0 0 0 V -141 0 -4.6237743497357786e-01 1.1399062985370163e+00 -1.0641553798259242e+01 1.0712698228291103e+01 0 3 0 P 482 211 -1.7160505726944242e+00 3.9968587132103046e+00 -4.0150907682057159e+01 4.0386069090954948e+01 1.3957000000000000e-01 1 0 0 0 0 P 483 221 -8.5914404256161170e+00 2.0823630966196617e+01 -1.9227495674232603e+02 1.9359079303254350e+02 5.4744999999999999e-01 2 0 0 -205 0 P 484 221 -1.3877574649164786e+00 4.0119886766133259e+00 -3.6738688799437035e+01 3.6987198868352891e+01 5.4744999999999999e-01 2 0 0 -206 0 V -142 0 -1.8261482278223610e-05 5.4414361525832950e-05 -3.2705697429663456e-03 3.2711496261055273e-03 0 2 0 P 485 22 -1.1712802837259459e-01 1.5307870148154051e-01 -8.9628777267006896e+00 8.9649500393290005e+00 0 1 0 0 0 0 P 486 22 6.7855161556635351e-03 1.7571264524284966e-01 -1.0799093197747947e+01 1.0800524749778305e+01 0 1 0 0 0 0 V -143 0 -3.5472326738170613e-05 -5.1799477715021895e-05 -4.4813188948491234e-03 4.4817627531457457e-03 0 2 0 P 487 22 -5.3454749158226088e-02 -7.2705702252370066e-02 -4.4573773336569102e+00 4.4582907289617122e+00 0 1 0 0 0 0 P 488 22 -7.3512267765209705e-01 -1.0788369960357451e+00 -9.5165828916693840e+01 9.5174782836719160e+01 0 1 0 0 0 0 V -144 0 0 0 0 0 0 3 0 P 489 22 -9.2657664766509652e-03 -1.2914280073351297e-01 -7.3629899971994384e+00 7.3641282862446591e+00 0 1 0 0 0 0 P 490 -211 -2.0812753420803345e-01 -1.4994539743596835e+00 -7.0936505041625125e+01 7.0952793508058051e+01 1.3957000000000000e-01 1 0 0 0 0 P 491 211 -1.0710641996037062e-01 -1.1711940598750337e+00 -7.7097527452746448e+01 7.7106623492557205e+01 1.3957000000000000e-01 1 0 0 0 0 V -145 0 -8.5999306079451018e-06 1.2772468482133252e-05 -1.2426847348129714e-05 3.5789213707309416e-05 0 2 0 P 492 22 -7.2992612963086359e-02 5.8465403251551362e-02 3.0827563577401976e-03 9.3571514422427879e-02 0 1 0 0 0 0 P 493 22 3.4067591159572141e-02 -6.5463281435474720e-04 -5.9329175779776977e-02 6.8417690769603343e-02 0 1 0 0 0 0 V -146 0 0 0 0 0 0 1 0 P 494 130 -1.8453847131374837e-01 -3.3556893289981732e-01 -1.6049010612068204e+00 1.7233815019562893e+00 4.9767000000000000e-01 1 0 0 0 0 V -147 0 -1.0899981635563593e+01 -7.5046348461422712e+00 -6.6772667753685411e+01 7.1051197747846572e+01 0 2 0 P 495 -211 -2.3434791590349174e-01 -2.9876165930793336e-01 -1.0110165201920422e+00 1.0889497985499450e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 211 -3.2077998076596559e-02 1.1532747888264755e-01 -6.2109348053683144e-01 6.4773939343796672e-01 1.3957000000000000e-01 1 0 0 0 0 V -148 0 -1.5760199449122369e-06 2.3516616902976043e-05 1.3478440729585388e-04 1.3748468861092013e-04 0 2 0 P 497 22 -2.3164590973599263e-02 -8.1738376244894963e-03 2.0136539096084000e-01 2.0285815382502531e-01 0 1 0 0 0 0 P 498 22 7.2947876761228700e-03 2.4497546293204275e-01 1.1558522243728651e+00 1.1815500649374568e+00 0 1 0 0 0 0 V -149 0 7.6390252846287838e-06 -2.4666415556450345e-05 4.0060803471580358e-05 5.1024521146785046e-05 0 2 0 P 499 22 -3.7952422690649371e-02 -4.6977275232158250e-02 3.9615436662609596e-02 7.2226266678383055e-02 0 1 0 0 0 0 P 500 22 9.4555287241280192e-02 -1.3579339598171236e-01 2.5722298816288114e-01 3.0584998672056352e-01 0 1 0 0 0 0 V -150 0 -1.3873413929340304e-04 -4.3000997843119732e-05 7.0956027450477299e-01 7.0956029208162263e-01 0 2 0 P 501 22 -1.0592202580688545e-01 -2.5128412465344904e-02 2.7932799817948217e+02 2.7932801939273736e+02 0 1 0 0 0 0 P 502 22 -1.9598128629733685e-01 -6.8447283745729517e-02 1.2647663256951205e+03 1.2647663427313485e+03 0 1 0 0 0 0 V -151 0 -5.0588763147740820e-05 -3.6531249558018374e-05 5.9817127298008484e-02 5.9817176769231727e-02 0 2 0 P 503 22 -1.6751880979556857e-01 -1.1178605001543859e-01 1.7558908726609428e+02 1.7558920275920354e+02 0 1 0 0 0 0 P 504 22 1.5763770702121205e-02 2.2004254644036199e-03 3.8489919978059892e+00 3.8490249073646581e+00 0 1 0 0 0 0 V -152 0 8.5738953272843649e-05 -9.9259704611735921e-05 1.8680874989995877e-02 1.8681357564694523e-02 0 2 0 P 505 22 1.8485637651632730e-01 -1.2799813628312512e-01 3.6040264240135748e+01 3.6040965607231421e+01 0 1 0 0 0 0 P 506 22 2.1772116542121467e-01 -3.3806456183352779e-01 5.1673667965017891e+01 5.1675232472750004e+01 0 1 0 0 0 0 V -153 0 -1.0996726388139543e+01 3.0399789082698955e+01 2.0626327342193772e+03 2.0634813434099606e+03 0 2 0 P 507 111 -2.1364066743111604e-01 2.9850681924290262e-01 1.7155245859944873e+01 1.7159703632973113e+01 1.3497999999999999e-01 2 0 0 -207 0 P 508 111 1.0321835809633798e-01 6.7490173870117633e-03 3.5564333964983099e+00 3.5604968308948539e+00 1.3497999999999999e-01 2 0 0 -208 0 V -154 0 3.6333180197764054e+00 1.1561183081200440e+01 5.6985147611893854e+02 5.7016161172923353e+02 0 2 0 P 509 2212 1.5350599115754013e-01 6.7305296680236737e-01 3.4763189195952627e+01 3.4782700269702183e+01 9.3827000000000005e-01 1 0 0 0 0 P 510 -211 1.2844672874519150e-01 2.2411788289895063e-01 9.4584211221579046e+00 9.4629771898987070e+00 1.3957000000000000e-01 1 0 0 0 0 V -155 0 4.5787255228256336e-05 1.1016165108527501e-06 1.0246804490422906e-03 1.0261605889855105e-03 0 2 0 P 511 22 1.6795946598046249e-01 -3.7939988766787544e-02 2.5715316517641229e+00 2.5772902166781262e+00 0 1 0 0 0 0 P 512 22 3.3853190393812647e-02 4.2795491750153868e-02 1.9448666849589060e+00 1.9456320091109265e+00 0 1 0 0 0 0 V -156 0 -1.6141851206292378e-07 3.0179669749046479e-07 9.2689997923754742e-07 1.3625140560687615e-06 0 2 0 P 513 22 -2.3279168207437091e-02 6.9999464505053566e-02 1.5714756507493117e-02 7.5424122636688226e-02 0 1 0 0 0 0 P 514 22 5.4954857580616617e-05 -2.6578231083769027e-02 1.1764369536201068e-01 1.2060864167217929e-01 0 1 0 0 0 0 V -157 0 2.8737777833029577e-06 -1.3953606458763750e-05 6.9603113947267479e-05 7.1194232143997652e-05 0 2 0 P 515 22 -1.3768929033345772e-02 3.9819154937020514e-03 6.8579389700730672e-02 7.0061200028610632e-02 0 1 0 0 0 0 P 516 22 9.8288535746273623e-02 -4.1436623155804297e-01 1.9784918386309045e+00 2.0238058122369003e+00 0 1 0 0 0 0 V -158 0 0 0 0 0 0 1 0 P 517 310 -7.7708120411371884e-01 5.7513394261936779e-01 1.9783856915945139e+00 2.2575029619793701e+00 4.9767000000000000e-01 2 0 0 -209 0 V -159 0 4.3032235802804355e-07 -3.2411232664113096e-06 4.5794319114131479e-06 6.6525344664544320e-06 0 2 0 P 518 22 -5.4481789879369739e-02 -3.8136290383927143e-02 3.4990300386686719e-02 7.5146278642774955e-02 0 1 0 0 0 0 P 519 22 7.0848633171063505e-02 -8.5136311192027955e-02 1.3918341627201447e-01 1.7787564102693376e-01 0 1 0 0 0 0 V -160 0 -1.2781178608108009e-05 -1.8864310475239360e-05 -3.3349428037804459e-07 2.3456615907128247e-05 0 2 0 P 520 22 -1.9038472159641900e-01 -2.5201416206985561e-01 -6.9449499201018963e-02 3.2338941392752762e-01 0 1 0 0 0 0 P 521 22 -1.2006804078388512e-01 -2.0619689005663513e-01 6.1348977038241541e-02 2.4636799481740213e-01 0 1 0 0 0 0 V -161 0 -7.9712531259621864e-05 -2.5050949441705851e-04 -2.8116936229721940e-07 2.6372894002887220e-04 0 2 0 P 522 22 -2.0724929953221860e-01 -6.6565697044212757e-01 -6.7092252758649787e-02 7.0039477784676363e-01 0 1 0 0 0 0 P 523 22 -3.0350496893361489e-01 -9.3947074966506949e-01 6.5290673387303627e-02 9.8943591387972663e-01 0 1 0 0 0 0 V -162 0 -9.5775337808443907e-05 -9.4200117078134499e-05 -4.5137800543891050e-05 1.4757125702982124e-04 0 2 0 P 524 22 -4.3390844996154802e-02 -4.5420796396413457e-02 2.6054489455273645e-02 6.8004783622475765e-02 0 1 0 0 0 0 P 525 22 -2.7077505972051835e-01 -2.6357800938654563e-01 -1.7411721906061933e-01 4.1606406474511587e-01 0 1 0 0 0 0 V -163 0 6.2720928900023606e-06 -5.6707623695502575e-07 -3.6991634447446557e-05 4.1523255288520008e-05 0 2 0 P 526 22 4.2872530820233859e-02 -2.1999939799864806e-02 -1.7502150181620265e-02 5.1267694614733482e-02 0 1 0 0 0 0 P 527 22 4.7423692788879368e-03 1.7694952797162856e-02 -2.6332165291064191e-01 2.6395812984726152e-01 0 1 0 0 0 0 V -164 0 -6.4346999610878240e-05 1.3128143746754138e-04 6.8416929063300241e-05 1.6264611384177012e-04 0 2 0 P 528 22 -3.9350617667601527e-02 2.0218791442152349e-02 2.2238071163939322e-02 4.9515678802733117e-02 0 1 0 0 0 0 P 529 22 -3.9627436694767998e-01 8.6854796571681758e-01 4.4094007002147206e-01 1.0515878888619568e+00 0 1 0 0 0 0 V -165 0 -1.8365640749795260e+00 -3.4462637930080559e-01 -6.7821757611733053e+00 7.3861412713857098e+00 0 2 0 P 530 111 -1.7993434151976981e-01 -2.4036841246506618e-01 -8.9358174467016926e-01 9.5229264187901452e-01 1.3497999999999999e-01 2 0 0 -210 0 P 531 111 -2.2617124513775522e-01 1.6416377585571043e-01 -6.0610971931343083e-01 6.8094916820315776e-01 1.3497999999999999e-01 2 0 0 -211 0 V -166 0 0 0 0 0 0 1 0 P 532 130 -1.6828297136056429e+00 7.2296576961601067e-01 -1.3991947988544429e+00 2.3579688002753230e+00 4.9767000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 1 0 P 533 130 2.0073487869418979e-01 5.8936398482484043e-01 -1.0132201963047931e+00 1.2891605769774801e+00 4.9767000000000000e-01 1 0 0 0 0 V -168 0 5.2957833298650278e-05 2.5530510696114335e-05 -3.9844661404366219e-05 7.6972538444584120e-05 0 2 0 P 534 22 1.9896839090778534e-01 8.0941788249268093e-02 -1.9874072326899767e-01 2.9263948597362410e-01 0 1 0 0 0 0 P 535 22 4.1884695188101839e-02 3.5171389117448590e-02 1.7526555960308363e-02 5.7432869223825143e-02 0 1 0 0 0 0 V -169 0 2.0959485086149064e-06 1.7980016092886593e-05 5.9839907922219788e-05 6.8346149439172949e-05 0 2 0 P 536 22 -5.3247245440490580e-02 7.6251612013724504e-02 2.0705968966020608e-01 2.2698742820665704e-01 0 1 0 0 0 0 P 537 22 6.3491279185833929e-02 1.1626449322365286e-02 8.5410298774078700e-02 1.0705716226939901e-01 0 1 0 0 0 0 V -170 0 -5.8458828833948352e-06 2.3685444644483496e-05 2.6980964359084119e-04 2.7143803145495950e-04 0 2 0 P 538 22 4.6693981267855997e-02 5.7901327916500357e-02 8.0181434562830178e-01 8.0525718656617951e-01 0 1 0 0 0 0 P 539 22 -9.3337891874162318e-02 1.3108325913467461e-01 1.3509788504376083e+00 1.3605288079326372e+00 0 1 0 0 0 0 V -171 0 -2.3115707484320575e-04 3.1222870504299133e-04 4.3214607552465173e-03 4.3389871046064848e-03 0 2 0 P 540 22 -1.0869093219050262e-02 1.1920017708808926e-02 3.8547937916184355e-01 3.8581676449913771e-01 0 1 0 0 0 0 P 541 22 -1.0496014228775492e+00 1.4204797312571527e+00 1.9439921684231884e+01 1.9519989264927585e+01 0 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 542 22 -7.4237154911891548e-02 -1.7379257314455565e-01 1.0387559307360077e+00 1.0558072254388335e+00 0 1 0 0 0 0 P 543 22 -8.2830534889780538e-02 2.4890935632485692e-01 6.2723643763455037e+00 6.2778476912732044e+00 0 1 0 0 0 0 V -173 0 0 0 0 0 0 2 0 P 544 -211 1.5889404260631609e-01 1.3911727162646780e-02 1.9858795221074281e+01 1.9859926189953253e+01 1.3957000000000000e-01 1 0 0 0 0 P 545 211 1.3736880477571564e-01 5.3767068081012581e-01 2.8440138178969221e+02 2.8440195745391890e+02 1.3957000000000000e-01 1 0 0 0 0 V -174 0 -1.2318174808435371e+02 -3.2970194556471859e+02 2.4872432224384931e+04 2.4875727998863247e+04 0 2 0 P 546 22 -7.5062726566718418e-02 -5.6137343449516729e-02 3.7192427621252038e+00 3.7204237040785979e+00 0 1 0 0 0 0 P 547 22 5.4827773627588075e-02 -8.2594336685356262e-02 5.1489440647914737e+00 5.1498983379834593e+00 0 1 0 0 0 0 V -175 0 2.8622129864132389e-05 -4.9407111868602939e-05 3.5761391711483840e-04 3.6686245582464037e-04 0 2 0 P 548 22 9.9877277537470749e-02 -5.7663643902202598e-02 4.0216305795853280e-01 4.1837267069316952e-01 0 1 0 0 0 0 P 549 22 -3.4007159551565136e-02 -5.6040413188461584e-02 4.2083896968845197e-01 4.2591366873996539e-01 0 1 0 0 0 0 V -176 0 1.4321579124772720e-05 -1.4581672986633897e-05 4.6566869074080009e-04 4.6624674330004903e-04 0 2 0 P 550 22 5.1897507223183918e-02 -3.2850413911430593e-02 2.8681717527193342e+00 2.8688293264060225e+00 0 1 0 0 0 0 P 551 22 1.2386795583486368e-01 -1.4610712158990713e-01 2.8468735189374965e+00 2.8533102520212483e+00 0 1 0 0 0 0 V -177 0 -4.3312907707609893e-06 -1.7204591790110216e-05 5.0633728507308577e-05 5.3824134145059642e-05 0 2 0 P 552 22 -2.5245501035903561e-02 -2.1632952630353494e-01 8.0152111723686026e-01 8.3058527596502107e-01 0 1 0 0 0 0 P 553 22 -1.1066200569727581e-01 -3.2351720722462973e-01 7.8726711293406582e-01 8.5831169745198455e-01 0 1 0 0 0 0 V -178 0 9.0961956012337218e-05 -2.4482727473974103e-04 4.5521743525214975e-04 5.2556761856119999e-04 0 2 0 P 554 22 2.5570520379477363e-01 -8.3548700347597038e-01 1.5863478473822561e+00 1.8110558183334109e+00 0 1 0 0 0 0 P 555 22 1.8281417741134162e-01 -3.4480319396315784e-01 6.0821432753329563e-01 7.2265824166514525e-01 0 1 0 0 0 0 V -179 0 9.6185299013348751e-05 -6.2057785244271359e-05 -9.0452935389472076e-04 9.1231860414157267e-04 0 2 0 P 556 22 1.2123828174690929e-01 -8.2227073336485754e-02 -7.3134638911607319e-01 7.4587368463000858e-01 0 1 0 0 0 0 P 557 22 2.7959988678594072e-01 -1.7638967200488334e-01 -3.0381474245803832e+00 3.0560806904538889e+00 0 1 0 0 0 0 V -180 0 1.0521659920555824e-04 -2.5889865727822389e-05 -3.9102505671658019e-04 4.0679958466022882e-04 0 2 0 P 558 22 2.3351903991832457e-01 -1.9110624214754963e-02 -6.3649094627074809e-01 6.7824559168997622e-01 0 1 0 0 0 0 P 559 22 2.5519704543688332e-01 -1.0114410673462657e-01 -1.1797646297242419e+00 1.2112804150465069e+00 0 1 0 0 0 0 V -181 0 -2.8946447130292827e-05 -9.4093006737943857e-05 -8.8199737802572241e-04 8.8809407575130570e-04 0 2 0 P 560 22 -3.6308940096248368e-02 -2.4000057393961788e-01 -2.5910526266093101e+00 2.6023974193964419e+00 0 1 0 0 0 0 P 561 22 -8.1480084939478586e-02 -1.4288315187500419e-01 -9.9797544215825684e-01 1.0114393617426840e+00 0 1 0 0 0 0 V -182 0 -1.1656409851826517e-06 -4.4131131168546595e-06 -5.5032161271547810e-05 5.5227170820659177e-05 0 2 0 P 562 22 -7.4269483715051682e-02 -1.0555911481534917e-01 -1.2864945766334568e+00 1.2929528137713298e+00 0 1 0 0 0 0 P 563 22 -1.1833298208009825e-01 -6.2363321708085528e-01 -7.8066396676772678e+00 7.8324034615848843e+00 0 1 0 0 0 0 V -183 0 7.3642555001361055e-05 -5.0695514180708870e-05 -2.9733853937649831e-03 2.9750733156803364e-03 0 2 0 P 564 22 5.7929271778087890e-02 -1.0634803968191324e-01 -4.8855835885769467e+00 4.8870842746002765e+00 0 1 0 0 0 0 P 565 22 1.6176079372112270e-01 -4.4886539708634127e-02 -3.9846033827815615e+00 3.9881380961429311e+00 0 1 0 0 0 0 V -184 0 7.5152859210898747e-05 4.9482154286183335e-05 -2.8523022706416689e-03 2.8539376921207027e-03 0 2 0 P 566 22 5.7151359838638074e-02 6.7432542615379357e-02 -4.6517620409183156e+00 4.6526018001827225e+00 0 1 0 0 0 0 P 567 22 2.3142676459038433e-01 1.2257309957239622e-01 -6.3007426037359249e+00 6.3061826702562715e+00 0 1 0 0 0 0 V -185 0 2.9632280572560882e-05 1.8331907503138162e-05 -1.3702872981279984e-03 1.3707500175930932e-03 0 2 0 P 568 22 1.2291817821188049e-01 7.7520072344639715e-02 -8.2041676062476494e+00 8.2054545487471025e+00 0 1 0 0 0 0 P 569 22 4.2037357309281892e-01 2.5858548347809140e-01 -1.6919304890834166e+01 1.6926501658116635e+01 0 1 0 0 0 0 V -186 0 1.4708518231431575e-04 1.8190085363568181e-04 -6.4167732947350486e-03 6.4213043700650421e-03 0 2 0 P 570 22 1.5130459745528719e-02 3.0238941173466229e-02 -3.6501123197485003e-01 3.6657403596436172e-01 0 1 0 0 0 0 P 571 22 3.2296101121191917e-01 3.8788018004896713e-01 -1.4384648032691198e+01 1.4393500403767129e+01 0 1 0 0 0 0 V -187 0 3.1111629580087605e-06 -2.7714129883277589e-06 -4.0642071892339722e-04 4.0645731343046099e-04 0 2 0 P 572 22 7.8457948866855962e-02 -1.6129905107455239e-02 -3.1800215660774969e+00 3.1810301765775724e+00 0 1 0 0 0 0 P 573 22 4.0861850765844608e-02 -9.0159751503261248e-02 -1.2407088271317695e+01 1.2407483138973358e+01 0 1 0 0 0 0 V -188 0 -1.8121893269536511e-04 -5.3043857859825718e-05 -2.8403844852007303e-03 2.8495136250561524e-03 0 2 0 P 574 22 2.0199408059374910e-02 4.3731386993072089e-03 -2.4045963931785416e-01 2.4134617993435287e-01 0 1 0 0 0 0 P 575 22 -2.1185146017644826e-01 -6.0470832576200666e-02 -2.7634511954585159e+00 2.7722193766822376e+00 0 1 0 0 0 0 V -189 0 2.7672291790421166e-05 -2.6178189878464947e-05 -4.2939227017409340e-03 4.2942989524742837e-03 0 2 0 P 576 22 1.0388728505000855e-01 -1.0983496581529621e-01 -1.1087714021630545e+01 1.1088744677066620e+01 0 1 0 0 0 0 P 577 22 -1.5361160481098811e-02 2.6088606253861103e-02 -2.6489269065042338e+00 2.6490999106545012e+00 0 1 0 0 0 0 V -190 0 -3.2589047173377623e-06 -9.6955526152881103e-06 -8.7701948348295532e-04 8.7710203402221489e-04 0 2 0 P 578 22 -2.3185694158347734e-02 -2.0467198213050236e-01 -1.3779183833235297e+01 1.3780723323061668e+01 0 1 0 0 0 0 P 579 22 -4.6211026522162330e-02 -1.7898862103395479e-03 -4.8965006084844234e+00 4.8967189904622055e+00 0 1 0 0 0 0 V -191 0 1.3528625381826714e-05 3.7833423394302061e-06 -1.1053752240097910e-03 1.1056380314019877e-03 0 2 0 P 580 22 8.9084839855495895e-02 4.8562271258240988e-02 -7.3823979255332155e+00 7.3830951188372858e+00 0 1 0 0 0 0 P 581 22 4.1350064081280974e-03 -2.2492912303405173e-02 -2.3425975679357522e-01 2.3537345439719606e-01 0 1 0 0 0 0 V -192 0 3.5588496475236389e-05 5.2771979208399815e-06 -1.4660329970337717e-03 1.4667939157117697e-03 0 2 0 P 582 22 1.3894777397343516e-01 6.8407675243668808e-02 -4.2478618494552940e+00 4.2506842256255837e+00 0 1 0 0 0 0 P 583 22 1.7962244310896772e-02 -4.5140459590846269e-02 -2.2158915302377453e+00 2.2164240517311060e+00 0 1 0 0 0 0 V -193 0 -3.0942721664607287e-05 -1.1703618489718206e-05 -9.5087169610953378e-04 9.5147670985226706e-04 0 2 0 P 584 22 -1.1366295191906542e-01 -3.3634694537773124e-02 -2.1374277507970598e+00 2.1407120192106612e+00 0 1 0 0 0 0 P 585 22 -4.4189071109242972e-01 -1.7649511217179878e-01 -1.4934769696909559e+01 1.4942348002402383e+01 0 1 0 0 0 0 V -194 0 4.0049623673851233e-05 4.2277091094420603e-05 -2.4272344772424000e-03 2.4281656712412435e-03 0 2 0 P 586 22 3.5070474377550065e-02 3.8346783454604141e-02 -4.9784803871404497e+00 4.9787515884121492e+00 0 1 0 0 0 0 P 587 22 1.2574567594217184e-01 1.3141358912437581e-01 -4.7678909578737381e+00 4.7713588937113984e+00 0 1 0 0 0 0 V -195 0 6.3976647896609244e-06 9.6605780967548674e-05 -2.2173095655897146e-03 2.2194333444454611e-03 0 2 0 P 588 22 1.5050866492746784e-01 1.6910469976957663e+00 -3.8642901295846997e+01 3.8680177266491526e+01 0 1 0 0 0 0 P 589 22 -2.7211014693796807e-02 1.7076761496366721e-01 -4.0897313546897456e+00 4.0933854657451292e+00 0 1 0 0 0 0 V -196 0 4.4590118325139683e-06 -6.4426541916522371e-06 -5.4608708239696675e-04 5.4627718618314232e-04 0 2 0 P 590 22 9.6587459634796924e-02 -5.4256249076963782e-02 -4.1670953868342346e+00 4.1685677205603575e+00 0 1 0 0 0 0 P 591 22 -4.6822066048119358e-02 -1.7647848430143973e-02 -1.9275820010846150e+00 1.9282313459044789e+00 0 1 0 0 0 0 V -197 0 -3.0445384355443881e-04 4.3605547763808010e-04 -2.0637669518993651e-02 2.0644715501188512e-02 0 2 0 P 592 22 -2.9017144478865692e-01 3.5398165386613478e-01 -1.5475490048940731e+01 1.5482257417234349e+01 0 1 0 0 0 0 P 593 22 -1.6818710703310749e-01 3.0250458033836081e-01 -1.5594744451188589e+01 1.5598584885237988e+01 0 1 0 0 0 0 V -198 0 -7.7378978670796899e-05 4.8240549516788832e-06 -1.1144161669268278e-03 1.1181930458948276e-03 0 2 0 P 594 22 -3.8879266638490000e-02 6.0729695143193548e-02 -8.6052586963166866e-01 8.6354181459375323e-01 0 1 0 0 0 0 P 595 22 -1.7337120393331679e-01 -4.7497316645226578e-02 -2.1963166980296394e+00 2.2036607287614864e+00 0 1 0 0 0 0 V -199 0 1.4573983828623470e-05 5.5949889591169787e-06 -1.0881127048041515e-01 1.0881127332916203e-01 0 2 0 P 596 22 3.8128361183042872e-02 4.6419255647117040e-02 -6.3769914241349920e+02 6.3769914524282683e+02 0 1 0 0 0 0 P 597 22 6.3288788262958792e-02 -7.4849575109367794e-03 -1.1949456724659130e+02 1.1949458424106696e+02 0 1 0 0 0 0 V -200 0 5.9977432167946342e-04 -3.5408914451982858e-06 -4.9503288856234401e-01 4.9503327076133335e-01 0 2 0 P 598 22 1.3715823678108643e-01 -5.6083543748900080e-02 -1.3280570954021925e+02 1.3280579220887500e+02 0 1 0 0 0 0 P 599 22 4.5548799906660964e-01 5.2584734428977958e-02 -3.5634390461094392e+02 3.5634419959899037e+02 0 1 0 0 0 0 V -201 0 4.7862273752201578e-01 -5.3193975164313334e-01 -1.0580079582616513e+00 1.2785770338653697e+00 0 1 0 P 600 130 4.8975236837863623e+00 -6.3385842999888222e+00 -1.1439708751351988e+01 1.3974190527754100e+01 4.9767000000000000e-01 1 0 0 0 0 V -202 0 4.7862273752201578e-01 -5.3193975164313334e-01 -1.0580079582616513e+00 1.2785770338653697e+00 0 3 0 P 601 211 6.0847497172588776e+00 -5.8948370383197233e+00 -1.2557169376266460e+01 1.5148441020751021e+01 1.3957000000000000e-01 1 0 0 0 0 P 602 -211 3.4503806435496980e+00 -3.7448996569127204e+00 -7.8836358245322629e+00 9.3861916464813309e+00 1.3957000000000000e-01 1 0 0 0 0 P 603 111 1.0114466086476350e+00 -1.1862021704996644e+00 -2.2590705647110711e+00 2.7480391642381874e+00 1.3497999999999999e-01 2 0 0 -212 0 V -203 0 1.8174449001355551e+01 -1.9952319199492258e+01 -3.6366245829726765e+01 4.5643955178512542e+01 0 2 0 P 604 22 7.6825436792816371e-01 -7.2767023826316179e-01 -1.3268104890634813e+00 1.6970989433098909e+00 0 1 0 0 0 0 P 605 22 3.7409362760559706e-01 -3.6355901337559926e-01 -5.1258978718017267e-01 7.3134772054281405e-01 0 1 0 0 0 0 V -204 0 1.8174597866511650e+01 -1.9952560558666985e+01 -3.6366757298518472e+01 4.5644539817187962e+01 0 2 0 P 606 22 5.1067194961664994e-02 -1.6677156629034343e-01 -3.3114214726773133e-01 3.7426693070757838e-01 0 1 0 0 0 0 P 607 22 3.9410877255308818e-01 -4.8481929691195508e-01 -1.0060223974030669e+00 1.1842518901560264e+00 0 1 0 0 0 0 V -205 0 -4.6237743497357786e-01 1.1399062985370163e+00 -1.0641553798259242e+01 1.0712698228291103e+01 0 3 0 P 608 111 -3.2985691604540164e+00 8.3698547523333229e+00 -7.7657543663720134e+01 7.8177025618556598e+01 1.3497999999999999e-01 2 0 0 -213 0 P 609 111 -2.5150082232178339e+00 5.8748540415879908e+00 -5.3990959358679582e+01 5.4368015307198831e+01 1.3497999999999999e-01 2 0 0 -214 0 P 610 111 -2.7778630419442676e+00 6.5789221722753046e+00 -6.0626453719926317e+01 6.1045752106788093e+01 1.3497999999999999e-01 2 0 0 -215 0 V -206 0 -4.6237743497357786e-01 1.1399062985370163e+00 -1.0641553798259242e+01 1.0712698228291103e+01 0 2 0 P 611 22 -5.0223690539420100e-02 5.1438970465669853e-01 -3.4377279168379653e+00 3.4763619514594999e+00 0 1 0 0 0 0 P 612 22 -1.3375337743770586e+00 3.4975989719566276e+00 -3.3300960882599071e+01 3.3510836916893389e+01 0 1 0 0 0 0 V -207 0 -1.0996852929524541e+01 3.0399965891107172e+01 2.0626428954335188e+03 2.0634915072644831e+03 0 3 0 P 613 22 -1.6343895133886197e-01 1.2669742615754528e-01 7.8166694088321780e+00 7.8194044003096863e+00 0 1 0 0 0 0 P 614 -11 -3.3990843843961303e-02 1.2812288292472795e-01 6.6959562683073646e+00 6.6972682085891453e+00 5.1000000000000004e-04 1 0 0 0 0 P 615 11 -1.6210872248292794e-02 4.3686510160629424e-02 2.6426201828053331e+00 2.6430310240742836e+00 5.1000000000000004e-04 1 0 0 0 0 V -208 0 -1.0996710827175818e+01 3.0399790100165390e+01 2.0626332703791468e+03 2.0634818801823239e+03 0 2 0 P 616 22 1.1703843511690346e-01 -1.5106295212375840e-02 3.3911704475967408e+00 3.3932231285465355e+00 0 1 0 0 0 0 P 617 22 -1.3820077020565473e-02 2.1855312599387604e-02 1.6526294890156903e-01 1.6727370234831876e-01 0 1 0 0 0 0 V -209 0 -6.6416149962761878e+01 4.9155972348151735e+01 1.6909012865262261e+02 1.9294592955083158e+02 0 2 0 P 618 111 -5.7363734079696760e-01 4.4932255922617387e-01 1.0216074038728515e+00 1.2620823463760209e+00 1.3497999999999999e-01 2 0 0 -216 0 P 619 111 -2.0344386331675135e-01 1.2581138339319392e-01 9.5677828772166229e-01 9.9542061560334893e-01 1.3497999999999999e-01 2 0 0 -217 0 V -210 0 -1.8365765193934342e+00 -3.4464300338706910e-01 -6.7822375620557693e+00 7.3862071327643513e+00 0 2 0 P 620 22 -8.5925393184989568e-02 -2.0477593273582648e-01 -5.2024552501872712e-01 5.6566046540644310e-01 0 1 0 0 0 0 P 621 22 -9.4008948334780254e-02 -3.5592479729239707e-02 -3.7333621965144215e-01 3.8663217647257142e-01 0 1 0 0 0 0 V -211 0 -1.8365916364345607e+00 -3.4460637413824025e-01 -6.7822496223123059e+00 7.3862242525350990e+00 0 2 0 P 622 22 -1.1901036436403392e-01 5.0717271752834490e-02 -1.4586776887841019e-01 1.9496952191990494e-01 0 1 0 0 0 0 P 623 22 -1.0716088077372130e-01 1.1344650410287593e-01 -4.6024195043502064e-01 4.8597964628325296e-01 0 1 0 0 0 0 V -212 0 4.7868007675629609e-01 -5.3200699782654681e-01 -1.0581360257001677e+00 1.2787328210914106e+00 0 2 0 P 624 22 9.0662585664963036e-01 -9.9639249039144784e-01 -1.9157234858117056e+00 2.3419574959731224e+00 0 1 0 0 0 0 P 625 22 1.0482075199800471e-01 -1.8980968010821650e-01 -3.4334707889936561e-01 4.0608166826506442e-01 0 1 0 0 0 0 V -213 0 -4.6251197176014175e-01 1.1402476748452306e+00 -1.0644721170495124e+01 1.0715886788329781e+01 0 2 0 P 626 22 -2.4840682000881653e+00 6.2301883501259567e+00 -5.8346834606067773e+01 5.8731073123590754e+01 0 1 0 0 0 0 P 627 22 -8.1450096036585085e-01 2.1396664022073661e+00 -1.9310709057652357e+01 1.9445952494965859e+01 0 1 0 0 0 0 V -214 0 -4.6242048024034860e-01 1.1400068487686716e+00 -1.0642477872871543e+01 1.0713628756351047e+01 0 2 0 P 628 22 -1.4965470536102188e+00 3.6418657975755622e+00 -3.3528448387876040e+01 3.3758846112829268e+01 0 1 0 0 0 0 P 629 22 -1.0184611696076153e+00 2.2329882440124287e+00 -2.0462510970803539e+01 2.0609169194369567e+01 0 1 0 0 0 0 V -215 0 -4.6281901481413829e-01 1.1409521094211481e+00 -1.0651191213554076e+01 1.0722402296877343e+01 0 2 0 P 630 22 -9.4422927620953068e-01 2.0875492086892038e+00 -1.9661959784534677e+01 1.9795001722490682e+01 0 1 0 0 0 0 P 631 22 -1.8336337657347370e+00 4.4913729635861008e+00 -4.0964493935391637e+01 4.1250750384297419e+01 0 1 0 0 0 0 V -216 0 -6.6416380412157395e+01 4.9156152856122191e+01 1.6909053906664542e+02 1.9294643657171937e+02 0 2 0 P 632 22 -4.5649776729984082e-01 3.7916067394044206e-01 7.3537588817790567e-01 9.4495011779784110e-01 0 1 0 0 0 0 P 633 22 -1.1713957349712674e-01 7.0161885285731820e-02 2.8623151569494593e-01 3.1713222857818008e-01 0 1 0 0 0 0 V -217 0 -6.6416175241058880e+01 4.9155987980461617e+01 1.6909024753419183e+02 1.9294605323378545e+02 0 2 0 P 634 22 -4.1173713184639846e-02 2.6368359727582950e-02 5.4195967908406369e-02 7.2991561085259837e-02 0 1 0 0 0 0 P 635 22 -1.6227015013211152e-01 9.9443023665610988e-02 9.0258231981325598e-01 9.2242905451808921e-01 0 1 0 0 0 0 E 17 26 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 206 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 -5.2348192889701839e-01 -3.1208154001272687e-01 1.3486491378854607e+03 1.3486492755892518e+03 0 3 0 0 -3 0 P 27 2203 5.2348192889701839e-01 3.1208154001272687e-01 5.0216995567049471e+03 5.0216996529251774e+03 7.7132999999999996e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -1.8617478704414410e+00 3.4596286898733231e-01 -2.1343981094086467e+02 2.1344821079107635e+02 0 3 0 0 -4 0 P 17 2101 6.0457318338647215e-01 -3.6669826589250254e-01 -1.9480816762237878e+03 1.9480818906910674e+03 5.7933000000000001e-01 2 0 0 -9 0 P 76 2 1.2571746870549689e+00 2.0735396905170234e-02 -2.6072382765054874e+02 2.6072706825894295e+02 3.3000000000000002e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 1 0 P 5 1 -5.1647861553646113e-01 -3.0790641056105877e-01 1.3306064662960976e+03 1.3306066021576421e+03 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 14 0 P 6 -2 8.9973596873587980e-01 -2.6707394396368653e+00 -2.1772212588332112e+00 3.5612731400137658e+00 0 3 0 0 -5 0 P 11 22 8.2888234823325690e-02 -3.2074060753080524e-01 6.4757376795135890e-01 7.2739039155743401e-01 0 1 0 0 0 0 P 12 22 -4.0437473203523544e-01 1.4480132406097526e-01 1.1982700084141913e+00 1.2729247269274511e+00 0 1 0 0 0 0 P 13 2 -5.9684107555590749e-01 2.2261085313055182e+00 1.5587150985452038e+00 2.8018335462790662e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 -1.4556147124643842e-01 2.6821848176665909e-03 2.3770807943139753e+00 2.3815348913512024e+00 0 2 0 0 -9 0 P 15 21 -9.4568374868501792e-01 -4.5541450056545185e-01 -6.3138637557576580e-02 1.0515258472357467e+00 0 2 0 0 -9 0 P 16 21 7.5212141023961497e-03 8.1648906353988235e-02 -4.7126101025815215e-01 4.7834093736571470e-01 0 2 0 0 -9 0 P 69 21 1.3741577336529354e-01 1.7263145954075040e-01 3.6720076391960232e-01 4.2839364679683450e-01 0 2 0 0 -13 0 P 70 21 8.3533286731916645e-01 -1.3207483648331140e+00 7.8945610945736844e+00 8.0477482638555156e+00 0 2 0 0 -13 0 P 71 21 -2.1143557890455527e+00 -2.1331703582047334e-01 2.4188480444971305e-01 2.1388110760572920e+00 0 2 0 0 -13 0 P 72 21 -2.6621960228455943e-01 8.0886783790374917e-01 5.6821153212238495e-01 1.0237208609149777e+00 0 2 0 0 -13 0 P 73 21 2.8356154721029120e-01 8.6165699446024002e-01 -3.5262290787851413e+01 3.5273956561947358e+01 0 2 0 0 -13 0 P 74 21 -1.4048948925588507e-02 1.2368892717118611e+00 -1.6814728612641164e+02 1.6815183592253993e+02 0 2 0 0 -13 0 P 75 21 3.7187857843484312e-01 -2.1253882218993347e-01 -4.1294393995132639e+00 4.1515944144736814e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 1.8095943556698075e+00 -1.4323681479400313e-01 1.3283429303479122e+03 1.3309927482343298e+03 8.3925324536629759e+01 3 0 0 -6 0 P 8 22 -1.4263370024703879e+00 -2.8354090354039205e+00 8.6314689352027282e-02 3.1751270633259585e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 1.8095943556698075e+00 -1.4323681479400313e-01 1.3283429303479122e+03 1.3309927482343298e+03 8.3925324536629759e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.4263370024703879e+00 -2.8354090354039205e+00 8.6314689352027282e-02 3.1751270633258661e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 18 3 -9.9970559079939747e+00 3.4885135135113856e+00 3.9424420259461829e+02 3.9438667844239865e+02 5.0000000000000000e-01 2 0 0 -11 0 P 19 21 -5.1305271275665367e+00 9.9711018847304922e-01 2.0237243657486613e+02 2.0243991608026039e+02 0 2 0 0 -11 0 P 20 21 -8.5619297845278499e+00 5.1258358671205526e+00 5.3009808347827732e+02 5.3019200195996405e+02 0 2 0 0 -11 0 P 21 21 4.0420608911707040e-01 -2.2580500460165517e-01 1.2151048496567737e+01 1.2159866365570123e+01 0 2 0 0 -11 0 P 22 21 4.3088311945341201e-01 -1.8690804939043797e+00 1.7366185602101140e+01 1.7471792252712618e+01 0 2 0 0 -11 0 P 23 21 1.0960553836727633e+00 -1.8340314113813485e+00 3.2753218168115367e+01 3.2822832129329946e+01 0 2 0 0 -11 0 P 24 21 3.9844306048835620e-01 -9.5841317310054699e-02 7.9274482017652115e-01 8.9240505403754822e-01 0 2 0 0 -11 0 P 25 21 2.0645876868892361e+00 -8.5174742216850052e-01 1.0543238476742449e+01 1.0777192285817664e+01 0 2 0 0 -11 0 P 26 -4 2.1104931836137336e+01 -4.8781907345330655e+00 1.2802177213645140e+02 1.2985006366424304e+02 1.5000000000000000e+00 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 86 92 -1.0759918979984953e+00 1.4883268560192184e+00 -1.9446802799787442e+03 1.9547951259132992e+03 1.9859310179557937e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 12 0 P 87 221 -2.1161794456211738e-01 5.4301088869997838e-01 9.1282842278560838e-01 1.2135074007408018e+00 5.4744999999999999e-01 2 0 0 -21 0 P 88 213 -9.0809299312878033e-01 1.3299156002890158e+00 1.8644478011109924e+00 2.6027589743707420e+00 8.3957149042719592e-01 2 0 0 -22 0 P 89 -213 1.3730344312019171e-01 3.7729408310708240e-01 5.1407596602335914e-01 1.0106797282784603e+00 7.7200800104007905e-01 2 0 0 -23 0 P 90 213 -5.1286492502520165e-01 -3.1286139950094538e-01 3.9921607360550426e-01 9.8234361863137798e-01 6.6686792172213449e-01 2 0 0 -24 0 P 91 223 4.4554672419498537e-02 2.0622623270558571e-01 -1.3797149219839253e+00 1.6004062462789586e+00 7.8305332468054156e-01 2 0 0 -25 0 P 92 111 -7.9767155354965119e-02 -7.1685510349070269e-01 -5.7615306305711367e-01 9.3296087321183174e-01 1.3497999999999999e-01 2 0 0 -26 0 P 93 2214 1.9191480596209798e-01 5.5362365975787464e-01 -4.4391693491879181e+01 4.4413690247133985e+01 1.2688970967043198e+00 2 0 0 -27 0 P 94 -211 -4.8017802882509358e-01 2.2470678024496174e-01 -8.5568749122498033e+01 8.5570505258823630e+01 1.3957000000000000e-01 1 0 0 0 0 P 95 -2212 2.4510933882742425e-01 -2.1996694070637335e-01 -6.2285618824497824e+01 6.2293556063099508e+01 9.3827000000000005e-01 1 0 0 0 0 P 96 223 4.7525690731738054e-02 -5.0510158950323825e-01 -1.0022356256406279e+02 1.0022790597848997e+02 7.8310758738402653e-01 2 0 0 -28 0 P 97 323 -1.4677273137347052e-01 1.9109577961399851e-01 -6.7940342742440441e+02 6.7940404413363774e+02 8.8313604974714743e-01 2 0 0 -29 0 P 98 3122 5.9689392921018269e-01 -1.8276113519801923e-01 -9.7454192882988639e+02 9.7454276739060197e+02 1.1156800000000000e+00 2 0 0 -30 0 V -11 0 0 0 0 0 0 1 0 P 99 92 1.8095943556698160e+00 -1.4323681479401795e-01 1.3283429303479163e+03 1.3309927482343339e+03 8.3925324536629631e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 16 0 P 100 -311 -4.5512873262010185e+00 1.3311358868782830e+00 1.7053204838582840e+02 1.7059869091282732e+02 4.9767000000000000e-01 2 0 0 -31 0 P 101 -211 -8.1289122029695253e+00 2.9236887201436912e+00 3.6744315833592577e+02 3.6754472007770835e+02 1.3957000000000000e-01 1 0 0 0 0 P 102 211 -9.3410285836148654e-01 2.1156053223570886e-01 2.6879778304049832e+01 2.6897198134165706e+01 1.3957000000000000e-01 1 0 0 0 0 P 103 -211 -1.0511779259864265e+00 1.4651442594421382e-01 4.9192018258533757e+01 4.9203664311125337e+01 1.3957000000000000e-01 1 0 0 0 0 P 104 211 -1.4141164528604675e+00 9.9357801186573036e-01 6.7668499352830892e+01 6.7690709902148967e+01 1.3957000000000000e-01 1 0 0 0 0 P 105 -211 -6.2163290048937725e+00 3.5261611889749878e+00 3.7340754886432717e+02 3.7347596119118231e+02 1.3957000000000000e-01 1 0 0 0 0 P 106 111 -4.9961905384556127e-01 -8.3061278149468599e-03 5.0842255680929355e+01 5.0844890308821768e+01 1.3497999999999999e-01 2 0 0 -32 0 P 107 211 -6.4899567182912776e-01 4.6372710091207070e-01 1.5075187309748548e+01 1.5096919898279813e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 5.8795417044116838e-01 -1.5735902070933212e+00 3.2758961739839158e+01 3.2809465920397749e+01 6.9971670202754410e-01 2 0 0 -33 0 P 109 2112 9.5617789525497432e-01 -5.3706771421281785e-01 1.1312838352424720e+01 1.1404640339353787e+01 9.3957000000000002e-01 1 0 0 0 0 P 110 -2212 6.9650258561035683e-01 -1.4320151741326077e+00 1.3277799120430476e+01 1.3405822741857818e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 211 7.9675102870168446e-01 -3.7449962899760231e-01 8.0808650358712502e+00 8.1298783316063830e+00 1.3957000000000000e-01 1 0 0 0 0 P 112 313 1.4848755134928255e+00 -5.5513620043105472e-01 9.4006184134169608e+00 9.5735592591721446e+00 8.7657221186109369e-01 2 0 0 -34 0 P 113 -313 1.2130960769261407e+00 -6.5559006040893231e-01 1.4251961119784834e+01 1.4345606302430207e+01 8.8126273341503270e-01 2 0 0 -35 0 P 114 313 2.1456373875350225e+00 -8.4272508418817796e-02 1.3887390539751973e+01 1.4084868206305121e+01 9.5552850869501504e-01 2 0 0 -36 0 P 115 -433 1.7373140194655029e+01 -4.5191250602386033e+00 1.0433200153422341e+02 1.0588615239695136e+02 2.1124000000000001e+00 2 0 0 -37 0 V -13 0 0 0 0 0 41 1 0 P 28 21 2.2262751456517131e+00 -2.5344855510217728e+00 1.4981696168068393e+02 1.4985493627259666e+02 0 2 0 0 -13 0 P 29 21 1.6650722576409620e+00 -1.1014335610621973e+00 7.3371860365132932e+01 7.3399015762836797e+01 0 2 0 0 -13 0 P 30 21 1.4555774078109540e+00 -1.5675326530450915e+00 3.8246833784202458e+01 3.8306607246334188e+01 0 2 0 0 -13 0 P 31 21 -2.2262751456517131e+00 2.5344855510217728e+00 1.1663463653292031e+02 1.1668341080547360e+02 0 2 0 0 -13 0 P 32 21 4.1044255750733299e-01 9.3485709173135187e-02 6.8863392012651534e+00 6.8991934503762069e+00 0 2 0 0 -13 0 P 33 21 4.2319648376073999e+00 4.2104122074150947e+00 9.5770422362708615e+01 9.5956296806799983e+01 0 2 0 0 -13 0 P 34 21 6.5343411866321777e-01 1.2597397146808837e+00 1.6167482752646631e+01 1.6229646294768834e+01 0 2 0 0 -13 0 P 35 21 3.6815296761051606e+00 1.8747189055540667e+00 2.2595871790680878e+01 2.2970451752453034e+01 0 2 0 0 -13 0 P 36 21 5.9631269450857938e-01 2.2872229652955745e+00 1.9993936125822453e+00 3.0958928503167296e+00 0 2 0 0 -13 0 P 37 21 -2.1466288512672288e-01 3.6517616699406537e+00 5.4039320417131229e+00 6.5256359812475324e+00 0 2 0 0 -13 0 P 38 21 -1.9196421403374819e+00 2.4314263732450372e+00 7.8030586204119956e+00 8.3955097515908435e+00 0 2 0 0 -13 0 P 39 21 -1.6650722576409620e+00 1.1014335610621973e+00 4.0218491674800321e+00 4.4900882216900317e+00 0 2 0 0 -13 0 P 40 21 -1.9199259154645010e+00 1.3946971302371585e+00 1.9562812518395479e+01 1.9706215497549366e+01 0 2 0 0 -13 0 P 41 21 -1.4555774078109540e+00 1.5675326530450915e+00 1.9660307165841232e+01 1.9776337933594288e+01 0 2 0 0 -13 0 P 42 21 1.9199259154645010e+00 -1.3946971302371585e+00 8.1642726818002753e+00 8.5021552578598705e+00 0 2 0 0 -13 0 P 43 21 2.1466288512672288e-01 -3.6517616699406537e+00 1.1120521320167201e+01 1.1706726181157222e+01 0 2 0 0 -13 0 P 44 21 8.1031652534725440e-01 -3.0731087783940660e+00 3.7079345412917699e+00 4.8835836224639513e+00 0 2 0 0 -13 0 P 45 21 1.5726723532689560e-01 -1.3924584117443772e+00 1.3442406108553069e+00 1.9418177647806416e+00 0 2 0 0 -13 0 P 46 21 -6.5343411866321777e-01 -1.2597397146808837e+00 1.9347880746967727e+00 2.3994426832425679e+00 0 2 0 0 -13 0 P 47 21 -4.2319648376073999e+00 -4.2104122074150947e+00 3.0270244948024443e+00 6.6932783174786232e+00 0 2 0 0 -13 0 P 48 21 -7.5320025679759950e-01 1.0664745734836321e+00 -2.7646420988895659e-01 1.3345827445597331e+00 0 2 0 0 -13 0 P 49 21 -3.6845610735891532e-01 4.1701406928455609e-01 -4.4138915267660667e-01 7.1027108988886900e-01 0 2 0 0 -13 0 P 50 21 -3.6815296761051606e+00 -1.8747189055540667e+00 -6.0820519874062668e+00 7.3525225676904471e+00 0 2 0 0 -13 0 P 51 21 -1.5944030951476866e+00 2.5380279614091311e-01 -2.2688615471905380e+00 2.7846489562358325e+00 0 2 0 0 -13 0 P 52 21 -1.9520637655318320e+00 1.8050734944807263e+00 -2.9555305133219463e+01 2.9674650878871144e+01 0 2 0 0 -13 0 P 53 21 -7.9044821180423208e-01 6.5537444444559445e-01 -1.5847673380678790e+01 1.5880902859052188e+01 0 2 0 0 -13 0 P 54 21 -1.9836733454952873e+00 4.5535072773536829e+00 -6.7882054375357185e+01 6.8063519558464591e+01 0 2 0 0 -13 0 P 55 21 -2.5169128198189710e-02 1.3548658594811489e+00 -1.4090035139295788e+01 1.4155048046855649e+01 0 2 0 0 -13 0 P 56 21 -1.5726723532689560e-01 1.3924584117443772e+00 -2.6796657287887474e+01 2.6833272540192297e+01 0 2 0 0 -13 0 P 57 21 -1.0049861535178997e+00 4.2547196830950701e-01 -3.5597438421652285e+01 3.5614163555359632e+01 0 2 0 0 -13 0 P 58 21 -8.1031652534725440e-01 3.0731087783940660e+00 -8.6712035004559277e+02 8.6712617425241319e+02 0 2 0 0 -13 0 P 59 21 1.9836733454952873e+00 -4.5535072773536829e+00 -8.5745303710248766e+02 8.5746742225273294e+02 0 2 0 0 -13 0 P 60 21 2.5169128198189710e-02 -1.3548658594811489e+00 -5.5189579365365454e+01 5.5206213106027967e+01 0 2 0 0 -13 0 P 61 21 7.5320025679759950e-01 -1.0664745734836321e+00 -3.6695536001266099e+01 3.6718755984686403e+01 0 2 0 0 -13 0 P 62 21 3.6845610735891532e-01 -4.1701406928455609e-01 -9.8660644977396892e+00 9.8817452563092747e+00 0 2 0 0 -13 0 P 63 21 1.5944030951476866e+00 -2.5380279614091311e-01 -2.0312788529974362e+01 2.0376847522435934e+01 0 2 0 0 -13 0 P 64 21 3.9796476712336265e-01 3.5244304390040798e-01 -4.5767218324863457e+00 4.6074911597335175e+00 0 2 0 0 -13 0 P 65 21 1.0049861535178997e+00 -4.2547196830950701e-01 1.5793960351190764e-01 1.1027096095243607e+00 0 2 0 0 -13 0 P 66 21 1.9520637655318320e+00 -1.8050734944807263e+00 -6.4070937953174867e-01 2.7348403562546633e+00 0 2 0 0 -13 0 P 67 21 1.9196421403374819e+00 -2.4314263732450372e+00 -2.5780887220393396e+00 4.0303103620164809e+00 0 2 0 0 -13 0 P 68 21 -5.9631269450857938e-01 -2.2872229652955745e+00 -3.8938372537711166e+00 4.5551011274683413e+00 0 2 0 0 -13 0 P 116 92 1.0321801548523450e+00 2.7675614752101141e+00 3.1127424104939701e+03 8.1862702181720915e+03 7.5713833640921357e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 114 0 P 117 213 -6.5340509943200453e-02 6.0836839784014544e-02 7.4004659637739371e+02 7.4004708675368158e+02 8.4724987021239995e-01 2 0 0 -38 0 P 118 2112 5.3682536929165714e-01 -4.4820567171193905e-02 2.7332573150356311e+03 2.7332575296114951e+03 9.3957000000000002e-01 1 0 0 0 0 P 119 223 3.8747024883616960e-01 1.6241740228812288e-01 2.1944726413606890e+02 2.1944901481223812e+02 7.6931960199378879e-01 2 0 0 -39 0 P 120 -2112 -3.7542274333619112e-02 -3.8398535676383300e-01 6.1525809230066557e+02 6.1525893068480991e+02 9.3957000000000002e-01 1 0 0 0 0 P 121 2112 3.6385272264700633e-02 6.7082884362008688e-01 3.7460866086582058e+02 3.7461044155588314e+02 9.3957000000000002e-01 1 0 0 0 0 P 122 211 2.6678533588466569e-01 -6.1372110555327197e-01 2.7451813318962905e+02 2.7451898433025474e+02 1.3957000000000000e-01 1 0 0 0 0 P 123 -213 8.2555479803566012e-01 -1.0717071660810997e+00 7.4827135384012095e+01 7.4843339570794029e+01 7.7148645971205732e-01 2 0 0 -40 0 P 124 113 8.7858900173148491e-01 -3.3942312724490792e-01 3.5544169826786749e+01 3.5565894651052062e+01 8.1100367508667826e-01 2 0 0 -41 0 P 125 111 -4.2497052679937702e-01 -1.6556313142840637e-01 8.6334335765894910e+00 8.6465256618435671e+00 1.3497999999999999e-01 2 0 0 -42 0 P 126 111 1.5359794792902626e+00 -9.8467521374026701e-01 1.0474252081398575e+02 1.0475849705062589e+02 1.3497999999999999e-01 2 0 0 -43 0 P 127 111 -3.0174215349724426e-01 -3.7028686565654151e-01 3.2653454660499065e+01 3.2657227095326739e+01 1.3497999999999999e-01 2 0 0 -44 0 P 128 113 1.0425131798007135e+00 -5.7392550097600747e-01 5.8380232051832252e+01 5.8397773369573535e+01 7.9512004600648101e-01 2 0 0 -45 0 P 129 213 9.7143414760401547e-01 -7.7212074818205756e-01 2.7660856842220372e+01 2.7696221727339687e+01 6.4640697029730643e-01 2 0 0 -46 0 P 130 -323 -6.7501376213616748e-01 8.9735316812621524e-01 3.9995819739535420e+01 4.0022031836682942e+01 9.1463075152352646e-01 2 0 0 -47 0 P 131 313 -2.9640902757521181e-01 8.8825031432869539e-01 3.2385895468064817e+01 3.2408797481366705e+01 7.7915466198097350e-01 2 0 0 -48 0 P 132 -313 -1.0457619769847899e-02 8.8570232172205599e-01 3.7475770361730412e+01 3.7497927177612077e+01 9.3626943121712891e-01 2 0 0 -49 0 P 133 323 1.3462357916093066e+00 2.1456493185370871e+00 4.9731177777905188e+01 4.9804037468339516e+01 9.1429927562445434e-01 2 0 0 -50 0 P 134 -211 3.9970853221057173e-01 3.7489106111759785e-01 2.7441262837595284e+00 2.8017885474367419e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 211 1.1060805152772863e+00 -1.1825559712435910e-02 8.2248373840547337e+00 8.3000592605825947e+00 1.3957000000000000e-01 1 0 0 0 0 P 136 -211 2.1360472047710894e+00 1.6009968741856309e+00 3.3061310696834639e+01 3.3169197057355717e+01 1.3957000000000000e-01 1 0 0 0 0 P 137 -313 1.1113558967158479e+00 1.8445054570280053e+00 2.5484430761738203e+01 2.5589458460030087e+01 8.5256126912131869e-01 2 0 0 -51 0 P 138 323 1.4520650093372003e-01 6.7975510290661167e-01 2.0707278774835522e+00 2.3551282364727326e+00 8.8066062691744784e-01 2 0 0 -52 0 P 139 -2212 1.2593564980101919e+00 5.6216110229180472e-01 5.9971433503912852e+00 6.2247958080609225e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 223 3.7264746301143892e-01 9.6352162476620418e-01 2.1526869122019461e+00 2.5153439342336874e+00 7.9098300388800158e-01 2 0 0 -53 0 P 141 2114 -2.4046787446339049e-01 2.4027952558223644e+00 6.3248191561773259e+00 6.8803378747703006e+00 1.2265651522033529e+00 2 0 0 -54 0 P 142 -313 2.3179989028018352e-01 3.1669660164251440e-01 1.9164823226792929e+00 2.1647817535368872e+00 9.2701004346134219e-01 2 0 0 -55 0 P 143 221 -8.2010295208887718e-01 1.4413830357284811e+00 2.5811621453477449e+00 3.1164488493775915e+00 5.4744999999999999e-01 2 0 0 -56 0 P 144 313 -3.9628976308164990e-02 9.9941336235133849e-01 1.9227682093392164e+00 2.3474620022407895e+00 9.0174427667114154e-01 2 0 0 -57 0 P 145 223 -1.3039302275083957e+00 1.9061697677481699e+00 6.1294258682891076e+00 6.5961519137530535e+00 7.7822964012506413e-01 2 0 0 -58 0 P 146 223 -4.3038043352772870e-01 8.4093605032094310e-01 3.4523096545737015e+00 3.6641485551882109e+00 7.8430984000722404e-01 2 0 0 -59 0 P 147 -1114 -1.9339813900484437e+00 1.3681208137967713e+00 1.8608696774963857e+01 1.8805072650667594e+01 1.3172407358332450e+00 2 0 0 -60 0 P 148 2112 -6.4236933910841469e-04 1.8068053991619165e-01 3.5963016327111230e+00 3.7214006890529086e+00 9.3957000000000002e-01 1 0 0 0 0 P 149 221 -7.2498449852552294e-01 2.2352443987281806e-01 4.2705556560387041e+00 4.3718317456355669e+00 5.4744999999999999e-01 2 0 0 -61 0 P 150 -321 -1.3946415385017305e-01 9.4856812552442715e-01 7.3974822747860411e+00 7.4756683115788212e+00 4.9359999999999998e-01 1 0 0 0 0 P 151 313 2.7852487460743802e-01 -2.1983850619103884e+00 1.0736450926049816e+01 1.1000639067059810e+01 9.1225457523694931e-01 2 0 0 -62 0 P 152 211 2.0213466861788085e-01 -9.5364992340217530e-02 9.6715922729979337e-02 2.8068961617919114e-01 1.3957000000000000e-01 1 0 0 0 0 P 153 221 -2.3824222297811445e-01 -2.9365236350179058e-01 6.0324132360371534e+00 6.0689951408957299e+00 5.4744999999999999e-01 2 0 0 -63 0 P 154 -213 1.7063822712640178e-01 -9.9753223773634003e-01 1.6253307087143294e+00 2.0396134878951924e+00 7.0294757801279584e-01 2 0 0 -64 0 P 155 223 3.0364814002934115e-01 -1.7279747398074710e+00 1.8750919698882467e+00 2.6796132811649529e+00 7.6567522272843858e-01 2 0 0 -65 0 P 156 211 -5.8034280803252798e-02 1.0595202857790649e-01 1.1591061873862389e+00 1.1737123790116499e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 -211 5.3198444459399141e-01 -9.1065061082209908e-01 1.5436118585906140e+00 1.8747024668363268e+00 1.3957000000000000e-01 1 0 0 0 0 P 158 113 -7.6408552807123642e-01 -1.8308477273333774e+00 4.3952235993918700e+00 4.8735802749977415e+00 7.0566572348821321e-01 2 0 0 -66 0 P 159 213 -8.0940360669199118e-01 -8.3108639766900372e-01 5.2244792146718821e-01 1.3297617355999769e+00 3.8662080117866521e-01 2 0 0 -67 0 P 160 111 -4.8842763754206370e-01 -9.4402017362447577e-01 1.3110083132150723e+00 1.6931326123620489e+00 1.3497999999999999e-01 2 0 0 -68 0 P 161 -213 6.2315704388770807e-02 -6.2916150766691770e-01 1.2642216671810327e+00 1.6249193356097995e+00 8.0148547942269355e-01 2 0 0 -69 0 P 162 -2112 1.8177825894028421e-01 -1.8443078453097841e+00 1.5782287983496039e+00 2.6092360354200639e+00 9.3957000000000002e-01 1 0 0 0 0 P 163 2212 -1.0806131163647081e+00 -9.8859597675403021e-01 6.3757809559144252e-01 1.8525396442159374e+00 9.3827000000000005e-01 1 0 0 0 0 P 164 -321 -6.4474831562546087e-01 2.9348423686520098e-01 1.3335010000602510e-01 8.7364557857396341e-01 4.9359999999999998e-01 1 0 0 0 0 P 165 -3114 -1.2428871080163413e+00 -4.8025284721409822e-01 -1.2528407417689871e+00 2.2973868800855399e+00 1.3903112572450933e+00 2 0 0 -70 0 P 166 -213 -9.5493538436749381e-01 -8.7017162182037422e-01 -5.4265561938175122e-01 1.5361895745358385e+00 6.2952605023733132e-01 2 0 0 -71 0 P 167 2212 -7.7244785544941863e-01 -1.2373521436898510e-01 -1.3027478032881723e+00 1.7859139185681663e+00 9.3827000000000005e-01 1 0 0 0 0 P 168 -2212 -9.3101020132924495e-01 1.3032902615465056e-01 -1.1026399023129061e+00 1.7262476638970887e+00 9.3827000000000005e-01 1 0 0 0 0 P 169 -211 -2.1595341457434486e-01 -4.1011361562267638e-02 -5.7408699672481687e-03 2.6044299094329804e-01 1.3957000000000000e-01 1 0 0 0 0 P 170 2224 -9.8387276344752539e-01 -6.7218597514532449e-02 -2.1403006240487330e+00 2.6582674306373089e+00 1.2300304943284917e+00 2 0 0 -72 0 P 171 -213 -3.0104417285776297e-01 -3.6602377245188328e-01 -9.8851220604082202e-01 1.3262443613800292e+00 7.4643601774640245e-01 2 0 0 -73 0 P 172 211 -9.7112610240753394e-01 -5.2658244283354541e-02 -3.0579246551905133e+00 3.2118906860586454e+00 1.3957000000000000e-01 1 0 0 0 0 P 173 223 -2.6582764576591889e-01 5.4433970608279825e-01 -3.8952615775521422e+00 4.0208533091931216e+00 7.9197760298098729e-01 2 0 0 -74 0 P 174 -211 -1.1118313544875604e+00 7.4220106702355071e-01 -1.5320747188694853e+01 1.5379590553376696e+01 1.3957000000000000e-01 1 0 0 0 0 P 175 -2212 -4.2630356907060385e-01 4.8959640079234895e-01 -1.1026551933602311e+01 1.1085424552357031e+01 9.3827000000000005e-01 1 0 0 0 0 P 176 2224 -7.7527538085421499e-01 1.4938653882796027e+00 -1.6089197105905804e+01 1.6217004964202072e+01 1.1385520549402224e+00 2 0 0 -75 0 P 177 221 -2.2097147748417198e-01 5.9488803835771675e-01 -9.2611244103299200e+00 9.2989702127790110e+00 5.4744999999999999e-01 2 0 0 -76 0 P 178 -211 -3.4312390471377574e-01 5.4600500305502775e-01 -5.6004537921628943e+00 5.6391859288729691e+00 1.3957000000000000e-01 1 0 0 0 0 P 179 211 -7.0279810292722200e-01 6.9201559344360819e-01 -1.9882895073934879e+01 1.9907832806738433e+01 1.3957000000000000e-01 1 0 0 0 0 P 180 -211 -7.4141930195199635e-01 1.1938899714434412e+00 -1.7787975863182805e+01 1.7843952503279489e+01 1.3957000000000000e-01 1 0 0 0 0 P 181 211 1.9246838212504630e-01 9.3099538833925480e-02 -5.2253416624811173e+00 5.2315759458130620e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 113 -8.9717090065306493e-01 1.4170155915730125e+00 -3.0642820996526982e+01 3.0698312201345622e+01 7.6879423407752279e-01 2 0 0 -77 0 P 183 221 -5.2842807535430925e-01 4.9477200018357187e-01 -5.0046976880867291e+01 5.0055205842944581e+01 5.4744999999999999e-01 2 0 0 -78 0 P 184 111 7.6224216289340133e-02 8.6405525402038430e-01 -9.1156869481382348e+00 9.1578583604468893e+00 1.3497999999999999e-01 2 0 0 -79 0 P 185 223 -2.3391121313970803e-01 6.0288563316160249e-01 -2.0343462073233049e+01 2.0369514552898639e+01 8.0155377447350751e-01 2 0 0 -80 0 P 186 -211 3.0203680344919032e-01 -1.0594328870966660e-01 -3.3225941615347807e+01 3.3227776426093598e+01 1.3957000000000000e-01 1 0 0 0 0 P 187 221 -5.2604413534636874e-01 1.3371592506161598e+00 -1.8943337606818474e+02 1.8943961673152381e+02 5.4744999999999999e-01 2 0 0 -81 0 P 188 213 1.3201019752580090e-01 3.4754951763662001e-01 -1.1844378048038844e+02 1.1844693438162571e+02 7.8032849444876440e-01 2 0 0 -82 0 P 189 223 -7.0739825107887844e-01 3.4402322414826714e-01 -6.2404329199493844e+01 6.2414212697257881e+01 7.8414253510714760e-01 2 0 0 -83 0 P 190 111 -3.9410182945557626e-01 8.2595539460772260e-01 -1.5217346956387331e+02 1.5217628125720955e+02 1.3497999999999999e-01 2 0 0 -84 0 P 191 -211 -1.7668961971879929e-01 3.7512436706501601e-01 -2.0376380926989603e+02 2.0376427897321932e+02 1.3957000000000000e-01 1 0 0 0 0 P 192 111 8.2503294692049117e-02 -4.1579447150064709e-02 -1.7160151103203074e+01 1.7160930660346544e+01 1.3497999999999999e-01 2 0 0 -85 0 P 193 213 8.9033861353822641e-01 -1.4512884360296392e+00 -3.8773670798170417e+02 3.8774138332648010e+02 8.5245907337383930e-01 2 0 0 -86 0 P 194 223 3.1899791310565562e-01 -4.9577296235794160e-01 -1.2179133030524409e+02 1.2179528924017372e+02 7.8536174960225724e-01 2 0 0 -87 0 P 195 -321 7.7936377371269039e-01 -2.0293149732613651e+00 -3.1380272825422952e+02 3.1381064581672541e+02 4.9359999999999998e-01 1 0 0 0 0 P 196 321 -1.5339059948650027e-01 -3.5750787047173932e-01 -2.4897089710843758e+01 2.4905020730432291e+01 4.9359999999999998e-01 1 0 0 0 0 P 197 223 6.3685791712309192e-01 -4.2639145263533840e-01 -4.2546459006014615e+01 4.2560618686147166e+01 7.8593340662791489e-01 2 0 0 -88 0 P 198 113 8.1334238592556854e-02 -5.6202284372838829e-01 -5.1585089991775568e+01 5.1594795561411289e+01 8.2397489585666872e-01 2 0 0 -89 0 P 199 -211 -1.2304493768173821e-01 -1.0450727684743684e+00 -4.4856674914012480e+01 4.4869233125543751e+01 1.3957000000000000e-01 1 0 0 0 0 P 200 -2214 1.0885209524731787e+00 2.3219192044403617e-01 -3.0189118134625218e+01 3.0232715446053874e+01 1.1812868169137645e+00 2 0 0 -90 0 P 201 111 1.3849683303392762e-01 -5.5416459298672179e-02 -8.1487597527227551e-01 8.3934189231657630e-01 1.3497999999999999e-01 2 0 0 -91 0 P 202 2224 8.2712455706967425e-01 -8.2970591173490948e-01 -1.8262727772572127e+01 1.8345219453361331e+01 1.2834734761708784e+00 2 0 0 -92 0 P 203 111 3.9795924837601165e-01 -3.9062913623767334e-02 -3.6701350392930991e+00 3.6943210853464992e+00 1.3497999999999999e-01 2 0 0 -93 0 P 204 -213 2.9403627626119283e-01 -3.7830973430720671e-01 -5.7966083851993959e+00 5.8734954161540580e+00 8.1713159612735342e-01 2 0 0 -94 0 P 205 211 -1.6108938684068544e-01 1.9293314270266265e-01 3.7705734027500895e-02 2.8995602319039110e-01 1.3957000000000000e-01 1 0 0 0 0 P 206 -213 1.1419874924144693e+00 2.5541047289296986e-02 -6.6393386787009934e-01 1.5045227792308233e+00 7.1971719056291061e-01 2 0 0 -95 0 P 207 111 6.1505977467720141e-01 -5.9910061210374221e-01 -8.7629839111275931e-01 1.2342360149160527e+00 1.3497999999999999e-01 2 0 0 -96 0 P 208 211 8.6112634080908870e-02 -4.0038201196757267e-01 -8.1093527842053925e-01 9.1913924513239642e-01 1.3957000000000000e-01 1 0 0 0 0 P 209 331 4.6671280109011243e-01 -1.0865281418965986e+00 -1.4941228925313206e+00 2.1326531937694204e+00 9.5783202341229678e-01 2 0 0 -97 0 P 210 -211 1.1569029158259478e+00 -9.2170312056613379e-01 9.1107562839689765e-02 1.4885366545753977e+00 1.3957000000000000e-01 1 0 0 0 0 P 211 213 4.7329486225544543e-01 -1.3834953957177905e+00 -1.8269175749555218e+00 2.4693283150567349e+00 7.8859810122130114e-01 2 0 0 -98 0 P 212 113 5.5288367170844699e-01 -1.0795017176686408e+00 -1.2131532152366729e+00 1.8628710836506512e+00 7.2632199317610857e-01 2 0 0 -99 0 P 213 221 -3.8837404734251263e-02 -3.0372217322155104e-01 -1.1947785181993815e+00 1.3494268088946595e+00 5.4744999999999999e-01 2 0 0 -100 0 P 214 -211 1.9882699927291175e-01 -4.2563772849757170e-01 -6.3970094050425708e-01 8.0585155564934785e-01 1.3957000000000000e-01 1 0 0 0 0 P 215 213 1.1053062557414590e-01 -1.4708027426045342e-01 4.1555084752545163e-01 8.1631339632116839e-01 6.7811166327378380e-01 2 0 0 -101 0 P 216 -323 1.3570108888567189e-01 -5.9896781664738918e-01 3.6112412441114858e+00 3.7671586047999885e+00 8.7934259514857305e-01 2 0 0 -102 0 P 217 313 9.1592514664634556e-02 -2.6073301333585086e-01 7.9929073294097630e-01 1.2280586489833054e+00 8.9044453875106322e-01 2 0 0 -103 0 P 218 211 -8.7479418710866641e-01 3.0481218321555154e-01 2.9499428441605096e+00 3.0951280919453947e+00 1.3957000000000000e-01 1 0 0 0 0 P 219 223 4.0372594794685808e-02 -5.1244868699707324e-01 3.5473780507139085e-01 1.0027117859277304e+00 7.8444783897721981e-01 2 0 0 -104 0 P 220 -211 -1.3306101109983462e-02 7.3988034213432379e-03 8.2445580474633587e-02 1.6281539625789715e-01 1.3957000000000000e-01 1 0 0 0 0 P 221 113 -6.0857378241519844e-01 1.5302721304471245e-01 4.4981940847960755e-01 1.0662584432905744e+00 7.3538438320929955e-01 2 0 0 -105 0 P 222 211 -1.6306111397572226e-01 -2.6773481724355114e-01 3.4240629023789222e-02 3.4485223622790379e-01 1.3957000000000000e-01 1 0 0 0 0 P 223 223 9.8034675650393913e-04 4.5323487365744886e-01 -1.1980738092409768e+00 1.5011187795053504e+00 7.8265824343413237e-01 2 0 0 -106 0 P 224 223 -4.2018552631130196e-01 -1.5870068916210339e-01 -1.2252784795525637e+01 1.2285518377310387e+01 7.7555449099660312e-01 2 0 0 -107 0 P 225 -323 4.0093815596004695e-01 1.4047817004670344e+00 -6.0996072849096805e+01 6.1019802569109707e+01 8.7249041824598650e-01 2 0 0 -108 0 P 226 323 -3.9808961352244987e-01 -4.0773890390187872e-01 -2.3214369255907791e+01 2.3242671713812292e+01 9.9504878888605097e-01 2 0 0 -109 0 P 227 -211 -2.0363595580857700e-02 3.1705630455572875e-01 -3.8520975763560590e+00 3.8676963297228673e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 -313 3.0934772247301201e-01 5.7611378041675398e-01 -1.0031878177183441e+02 1.0032484709241221e+02 8.8846205859968863e-01 2 0 0 -110 0 P 229 313 1.3477706566220473e+00 5.4128856610526843e-01 -2.2634268179958949e+02 2.2634908799876533e+02 8.8913136709086193e-01 2 0 0 -111 0 P 230 213 2.7181410757594227e-01 -3.3861191428562532e-01 -4.0015283332858893e+01 4.0025563741138022e+01 7.9643684580418439e-01 2 0 0 -112 0 V -15 0 0 0 0 0 5 1 0 P 77 21 -1.0882437595310530e+00 -6.7091011800522482e-01 -8.3165914156574257e+00 8.4142787950950879e+00 0 2 0 0 -15 0 P 78 21 -3.9796476712336265e-01 -3.5244304390040798e-01 -8.9457379773922895e+01 8.9458959238697460e+01 0 2 0 0 -15 0 P 79 21 -4.1044255750733299e-01 -9.3485709173135187e-02 -9.2765645699828312e+01 9.2766600804259866e+01 0 2 0 0 -15 0 P 80 21 7.9044821180423208e-01 -6.5537444444559445e-01 -8.6461396756130603e+02 8.6461457726905178e+02 0 2 0 0 -15 0 P 81 21 1.0882437595310530e+00 6.7091011800522482e-01 -1.4428578157121071e+03 1.4428583820861907e+03 0 2 0 0 -15 0 P 231 92 -1.7959112826463564e-02 -1.1013031975191376e+00 -2.4980114001628217e+03 2.4981127981932946e+03 2.2480746483347275e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 11 0 P 232 -2214 9.8969306919265823e-02 8.1804310666851468e-02 -6.0150735085448829e+01 6.0165977476727193e+01 1.3481200025380786e+00 2 0 0 -113 0 P 233 113 -1.2352002643938850e-01 -7.2340025678158015e-01 -2.0865392259960689e+01 2.0892638674077375e+01 7.7407459271244350e-01 2 0 0 -114 0 P 234 2212 -1.1081575690717762e+00 4.6714623255021498e-01 -5.3489144396150678e+01 5.3510888215629855e+01 9.3827000000000005e-01 1 0 0 0 0 P 235 223 2.5096941008146950e-01 -7.5439105137020390e-01 -3.2061057824084905e+01 3.2079861797772281e+01 7.5763623307600547e-01 2 0 0 -115 0 P 236 -211 -5.9362522870325996e-01 -5.0490156134033050e-02 -1.9369986094783975e+01 1.9379648636263870e+01 1.3957000000000000e-01 1 0 0 0 0 P 237 331 8.8089070577022477e-01 4.2010577316990827e-01 -5.0543147217890299e+02 5.0543332202775753e+02 9.5785687109885342e-01 2 0 0 -116 0 P 238 223 -3.4667055792203361e-01 -8.2437695371611097e-01 -6.4464720560923558e+02 6.4464820662892953e+02 7.0059422023991380e-01 2 0 0 -117 0 P 239 113 4.6289577957395261e-01 1.0663100830582638e-01 -3.2170717975950305e+02 3.2170851526002161e+02 7.9601464790572829e-01 2 0 0 -118 0 P 240 221 1.0209887078138041e-01 -3.4431313820505499e-01 -3.3666482761467705e+02 3.3666546426688802e+02 5.4744999999999999e-01 2 0 0 -119 0 P 241 113 4.5801007263092852e-01 1.4408944034192311e-01 -4.7580440599401737e+02 4.7580521340687631e+02 7.3335315500235398e-01 2 0 0 -120 0 P 242 211 -9.9819876447226841e-02 3.7589159365312097e-01 -2.7819993346056695e+01 2.7823061802351152e+01 1.3957000000000000e-01 1 0 0 0 0 V -17 0 0 0 0 0 2 1 0 P 82 21 -1.0144071919865973e+00 -3.7752646529214556e-01 1.1835012175304144e+01 1.1884404123587663e+01 0 2 0 0 -17 0 P 83 21 1.0144071919865973e+00 3.7752646529214556e-01 -7.4254258644272009e-01 1.3125995870146994e+00 0 2 0 0 -17 0 P 243 92 0 0 1.1092469588861423e+01 1.3197003710602361e+01 7.1496870811131998e+00 2 0 0 -18 0 V -18 0 0 0 0 0 0 7 0 P 244 111 -4.2953917452392382e-01 -1.7851313234788124e-01 4.2447050926066443e-01 6.4402302327118233e-01 1.3497999999999999e-01 2 0 0 -121 0 P 245 -211 -4.0382838613955496e-01 2.3123207635235762e-01 3.4940886470995642e+00 3.5277019286323443e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 213 -2.6682472853210676e-01 -6.5476711847066860e-01 2.7814327790855424e+00 2.9737861316030347e+00 7.7917920708679267e-01 2 0 0 -122 0 P 247 -211 -5.1298293365699882e-02 3.9000637036027791e-01 -4.3383432647143925e-03 4.1741476967892999e-01 1.3957000000000000e-01 1 0 0 0 0 P 248 223 1.6727323510351091e-01 4.4837025578925854e-02 1.6504675485427849e+00 1.8340432697333118e+00 7.8082065316977123e-01 2 0 0 -123 0 P 249 221 1.0092133529399723e+00 1.1688415149779319e-01 2.7704897101099796e-01 1.1868576711054923e+00 5.4744999999999999e-01 2 0 0 -124 0 P 250 213 -2.4996005482197658e-02 5.0320627029195306e-02 2.4692994771265830e+00 2.6131769165780656e+00 8.5328583944898084e-01 2 0 0 -125 0 V -19 0 0 0 0 0 2 1 0 P 84 21 5.1052037950344764e-01 8.1358056028909678e-02 -6.7678348541275399e+00 6.7875502800283316e+00 0 2 0 0 -19 0 P 85 21 -5.1052037950344764e-01 -8.1358056028909678e-02 -4.6442899386103838e+00 4.6729732745915413e+00 0 2 0 0 -19 0 P 251 92 0 0 -1.1412124792737924e+01 1.1460523554619872e+01 1.0521444107028795e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 2 0 P 252 111 3.8660190314771314e-01 3.2138820119280120e-01 -6.5342505087445364e+00 6.5549523811246422e+00 1.3497999999999999e-01 2 0 0 -126 0 P 253 111 -3.8660190314771314e-01 -3.2138820119280120e-01 -4.8778742839933864e+00 4.9055711734952299e+00 1.3497999999999999e-01 2 0 0 -127 0 V -21 0 0 0 0 0 0 3 0 P 254 111 -1.7858206848455424e-01 2.7445389892679395e-01 4.0106118932791257e-01 5.3505717059531177e-01 1.3497999999999999e-01 2 0 0 -128 0 P 255 111 6.6146059470294630e-02 1.9145618485212668e-01 1.9486466624469589e-01 3.1180540478355434e-01 1.3497999999999999e-01 2 0 0 -129 0 P 256 111 -9.9181935547857800e-02 7.7100804921057711e-02 3.1690256721299992e-01 3.6664482536193571e-01 1.3497999999999999e-01 2 0 0 -130 0 V -22 0 0 0 0 0 0 2 0 P 257 211 -7.8625211794817618e-01 1.3412615954810150e+00 1.3739503028781912e+00 2.0795177999164478e+00 1.3957000000000000e-01 1 0 0 0 0 P 258 111 -1.2184087518060426e-01 -1.1345995191999287e-02 4.9049749823280114e-01 5.2324117445429430e-01 1.3497999999999999e-01 2 0 0 -131 0 V -23 0 0 0 0 0 0 2 0 P 259 -211 4.8975159393753138e-02 1.2539538951357296e-01 6.5277268753099416e-01 6.8096588492768206e-01 1.3957000000000000e-01 1 0 0 0 0 P 260 111 8.8328283726438570e-02 2.5189869359350942e-01 -1.3869672150763507e-01 3.2971384335077814e-01 1.3497999999999999e-01 2 0 0 -132 0 V -24 0 0 0 0 0 0 2 0 P 261 211 6.0538601430969591e-02 1.2279409164349815e-02 -6.3955384368700144e-02 1.6548650169240839e-01 1.3957000000000000e-01 1 0 0 0 0 P 262 111 -5.7340352645617121e-01 -3.2514080866529516e-01 4.6317145797420439e-01 8.1685711693896945e-01 1.3497999999999999e-01 2 0 0 -133 0 V -25 0 0 0 0 0 0 3 0 P 263 -211 -8.7888632108731268e-02 5.4259812544897826e-02 -7.4062946235785715e-02 1.8876875752220293e-01 1.3957000000000000e-01 1 0 0 0 0 P 264 211 1.3535248923922086e-01 2.3084861952556365e-01 -1.1576102688716405e+00 1.1963079457134704e+00 1.3957000000000000e-01 1 0 0 0 0 P 265 111 -2.9091847109910490e-03 -7.8882199364875755e-02 -1.4804170687649917e-01 2.1532954304328508e-01 1.3497999999999999e-01 2 0 0 -134 0 V -26 0 -4.1544617155896494e-07 -3.7335505695600881e-06 -3.0007411347927647e-06 4.8590804230809073e-06 0 2 0 P 266 22 -3.0105322179520659e-02 -2.9819921391694687e-01 -3.2557111242399106e-01 4.4252192132052942e-01 0 1 0 0 0 0 P 267 22 -4.9661833175444453e-02 -4.1865588957375577e-01 -2.5058195063312261e-01 4.9043895189130232e-01 0 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 268 2212 2.7714062805345618e-01 2.7371048652636082e-01 -2.7177459587288421e+01 2.7196440659942024e+01 9.3827000000000005e-01 1 0 0 0 0 P 269 111 -8.5225822091358178e-02 2.7991317323151382e-01 -1.7214233904590756e+01 1.7217249587191958e+01 1.3497999999999999e-01 2 0 0 -135 0 V -28 0 0 0 0 0 0 3 0 P 270 211 -6.7400722539340152e-02 -5.4391871455470164e-01 -6.4169783025495335e+01 6.4172275351194230e+01 1.3957000000000000e-01 1 0 0 0 0 P 271 -211 3.4428805209294686e-02 -8.1484468437773867e-03 -2.6874204027033262e+01 2.6874589738474612e+01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 8.0497608061783521e-02 4.6965571895240935e-02 -9.1795755115341819e+00 9.1810408888211121e+00 1.3497999999999999e-01 2 0 0 -136 0 V -29 0 0 0 0 0 0 2 0 P 273 311 -1.5973589231480551e-01 -1.1123098636438077e-01 -5.1612944831685502e+02 5.1612972495602071e+02 4.9767000000000000e-01 2 0 0 -137 0 P 274 211 1.2963160941334997e-02 3.0232676597837926e-01 -1.6327397910754939e+02 1.6327431917761697e+02 1.3957000000000000e-01 1 0 0 0 0 V -30 0 3.2153028989313476e+01 -9.8448380701699811e+00 -5.2495884705061362e+04 5.2495929876013310e+04 0 2 0 P 275 2212 6.0106434532037911e-01 -2.1268897612296303e-01 -8.5128951779647264e+02 8.5129027362920783e+02 9.3827000000000005e-01 1 0 0 0 0 P 276 -211 -4.1704161101964376e-03 2.9927840924943792e-02 -1.2325241103341378e+02 1.2325249376139418e+02 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 1 0 P 277 130 -4.5512873262010185e+00 1.3311358868782830e+00 1.7053204838582840e+02 1.7059869091282732e+02 4.9767000000000000e-01 1 0 0 0 0 V -32 0 -7.7800918053561131e-05 -1.2934341965125328e-06 7.9171803746157909e-03 7.9175906401314500e-03 0 2 0 P 278 22 -3.8693668077328436e-01 4.9545519145358562e-02 3.9582132052662573e+01 3.9584054271736903e+01 0 1 0 0 0 0 P 279 22 -1.1268237307227685e-01 -5.7851646960305418e-02 1.1260123628266784e+01 1.1260836037084863e+01 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 280 -211 2.1985444281189312e-01 -1.1459066663505105e-01 7.4481434276534682e+00 7.4535754709200832e+00 1.3957000000000000e-01 1 0 0 0 0 P 281 211 3.6809972762927523e-01 -1.4589995404582701e+00 2.5310818312185688e+01 2.5355890449477663e+01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 282 321 9.7709476078185886e-01 -1.4057948241952664e-01 6.7434668255400920e+00 6.8331883150974599e+00 4.9359999999999998e-01 1 0 0 0 0 P 283 -211 5.0778075271096679e-01 -4.1455671801152805e-01 2.6571515878768692e+00 2.7403709440746837e+00 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 284 -321 7.8569499274829968e-01 -1.3071321252180929e-01 7.4777871755966769e+00 7.5362686104647070e+00 4.9359999999999998e-01 1 0 0 0 0 P 285 211 4.2740108417784106e-01 -5.2487684788712297e-01 6.7741739441881563e+00 6.8093376919654993e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 286 321 8.0547473347056875e-01 1.9618488007156248e-01 6.3446355004249151e+00 6.4175788773243987e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -211 1.3401626540644540e+00 -2.8045738849038032e-01 7.5427550393270577e+00 7.6672893289807220e+00 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 288 -431 1.6290254346324268e+01 -4.1919454064923691e+00 9.7852525907946898e+01 9.9307283780065035e+01 1.9684999999999999e+00 2 0 0 -138 0 P 289 111 1.0828858483307631e+00 -3.2717965374623448e-01 6.4794756262765025e+00 6.5788686168863268e+00 1.3497999999999999e-01 2 0 0 -139 0 V -38 0 0 0 0 0 0 2 0 P 290 211 1.1992666412557995e-01 3.9135005456791966e-01 3.0882111303918992e+02 3.0882141583092806e+02 1.3957000000000000e-01 1 0 0 0 0 P 291 111 -1.8526717406878040e-01 -3.3051321478390511e-01 4.3122548333820373e+02 4.3122567092275335e+02 1.3497999999999999e-01 2 0 0 -140 0 V -39 0 0 0 0 0 0 3 0 P 292 211 -1.3182466227590528e-01 7.1063141169140392e-02 7.0770531740396947e+01 7.0770827819907893e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 -211 3.0640626157357981e-01 -5.0261767019728475e-02 1.0132604557420726e+02 1.0132661744346143e+02 1.3957000000000000e-01 1 0 0 0 0 P 294 111 2.1288864953849515e-01 1.4161602813871096e-01 4.7350686821464691e+01 4.7351569548868788e+01 1.3497999999999999e-01 2 0 0 -141 0 V -40 0 0 0 0 0 0 2 0 P 295 -211 2.8159384476454369e-01 -2.4659464975083265e-01 3.9800303584927178e+01 3.9802308340747807e+01 1.3957000000000000e-01 1 0 0 0 0 P 296 111 5.4396095327111638e-01 -8.2511251633026705e-01 3.5026831799084917e+01 3.5041031230046222e+01 1.3497999999999999e-01 2 0 0 -142 0 V -41 0 0 0 0 0 0 2 0 P 297 -211 1.0617444423893700e-01 -3.2082819581052641e-01 5.8930399853303426e+00 5.9043715836182544e+00 1.3957000000000000e-01 1 0 0 0 0 P 298 211 7.7241455749254795e-01 -1.8594931434381505e-02 2.9651129841456410e+01 2.9661523067433816e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 -5.4032203943677371e-06 -2.1050261885847626e-06 1.0976842259103206e-04 1.0993487983356696e-04 0 2 0 P 299 22 -2.8828671570882591e-01 -4.2266575957889442e-02 5.4094294080103777e+00 5.4172707348022486e+00 0 1 0 0 0 0 P 300 22 -1.3668381109055114e-01 -1.2329655547051695e-01 3.2240041685791136e+00 3.2292549270413189e+00 0 1 0 0 0 0 V -43 0 1.0437884427042258e-03 -6.6914475211239232e-04 7.1178706590444396e-02 7.1189563383381879e-02 0 2 0 P 301 22 8.0594935106843923e-01 -4.5192843006730421e-01 5.5229271154494832e+01 5.5237000153150113e+01 0 1 0 0 0 0 P 302 22 7.3003012822182334e-01 -5.3274678367296269e-01 4.9513249659490917e+01 4.9521496897475778e+01 0 1 0 0 0 0 V -44 0 -4.1953682503990215e-06 -5.1484015133782421e-06 4.5400771937472394e-04 4.5406017062530089e-04 0 2 0 P 303 22 -1.2436365171758404e-01 -1.7106941631336661e-01 1.0230483290405267e+01 1.0232669222560050e+01 0 1 0 0 0 0 P 304 22 -1.7737850177966022e-01 -1.9921744934317490e-01 2.2422971370093798e+01 2.2424557872766691e+01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 305 -211 9.5250112857805980e-01 -2.1485577974686182e-01 4.7741235081791764e+01 4.7751423312042100e+01 1.3957000000000000e-01 1 0 0 0 0 P 306 211 9.0012051222653558e-02 -3.5906972122914566e-01 1.0638996970040486e+01 1.0646350057531432e+01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 307 211 9.3396210820245920e-02 -2.4697803142953639e-01 3.2908148748924821e+00 3.3043400741930320e+00 1.3957000000000000e-01 1 0 0 0 0 P 308 111 8.7803793678376973e-01 -5.2514271675252122e-01 2.4370041967327893e+01 2.4391881653146658e+01 1.3497999999999999e-01 2 0 0 -143 0 V -47 0 0 0 0 0 0 2 0 P 309 -311 -4.5749086460961730e-01 5.9989081153489043e-01 1.7993770705492295e+01 1.8016454326745258e+01 4.9767000000000000e-01 2 0 0 -144 0 P 310 -211 -2.1752289752655010e-01 2.9746235659132464e-01 2.2002049034043122e+01 2.2005577509937680e+01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 311 321 -7.2846906316860527e-02 6.0538235471866231e-01 2.5493081563780311e+01 2.5505149343705483e+01 4.9359999999999998e-01 1 0 0 0 0 P 312 -211 -2.2356212125835126e-01 2.8286795961003314e-01 6.8928139042845036e+00 6.9036481376612224e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 313 -321 -2.0254992097111504e-01 3.2037817432936999e-01 2.4204609115923905e+01 2.4212608534805550e+01 4.9359999999999998e-01 1 0 0 0 0 P 314 211 1.9209230120126713e-01 5.6532414739268599e-01 1.3271161245806505e+01 1.3285318642806523e+01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 315 311 1.2570972056717891e+00 2.0969803888911049e+00 4.4384176768668233e+01 4.4454251124017269e+01 4.9767000000000000e-01 2 0 0 -145 0 P 316 211 8.9138585937517570e-02 4.8668929645982011e-02 5.3470010092369522e+00 5.3497863443222489e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 317 -321 1.1137375594428904e+00 1.7388426180047034e+00 2.4235201891945028e+01 2.4328021635653794e+01 4.9359999999999998e-01 1 0 0 0 0 P 318 211 -2.3816627270423687e-03 1.0566283902330222e-01 1.2492288697931762e+00 1.2614368243762928e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 319 311 1.0525807560521797e-01 3.0443320042390359e-01 6.5553929479060447e-01 8.8383597568497829e-01 4.9767000000000000e-01 2 0 0 -146 0 P 320 211 3.9948425328502055e-02 3.7532190248270797e-01 1.4151885826929476e+00 1.4712922607877539e+00 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 3 0 P 321 -211 -1.4028960520136784e-03 1.6288899449460797e-01 1.8170643518987337e-01 2.8112596133087536e-01 1.3957000000000000e-01 1 0 0 0 0 P 322 211 9.3662169274552454e-02 3.4900468491187268e-02 6.7978875103081160e-01 7.0112992774674088e-01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 2.8038818978890023e-01 7.6573216178040904e-01 1.2911917259812613e+00 1.5330880451560711e+00 1.3497999999999999e-01 2 0 0 -147 0 V -54 0 0 0 0 0 0 2 0 P 324 2112 -3.8045875258650991e-01 2.1845669996363570e+00 5.7893373220902964e+00 6.2702711466225702e+00 9.3957000000000002e-01 1 0 0 0 0 P 325 111 1.3999087812311942e-01 2.1822825618600750e-01 5.3548183408702910e-01 6.1006672814773000e-01 1.3497999999999999e-01 2 0 0 -148 0 V -55 0 0 0 0 0 0 2 0 P 326 -321 8.1104352764626506e-02 3.4007525392234589e-01 1.8519358595827522e+00 1.9482136644568080e+00 4.9359999999999998e-01 1 0 0 0 0 P 327 211 1.5069553751555700e-01 -2.3378652279831460e-02 6.4546463096540663e-02 2.1656808908007893e-01 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 328 111 -4.0853273952869501e-01 5.6011700089558469e-01 8.9873708656001783e-01 1.1430564312917688e+00 1.3497999999999999e-01 2 0 0 -149 0 P 329 111 -3.0508438556034817e-01 5.8539380200296454e-01 1.2684297728673777e+00 1.4362785505717923e+00 1.3497999999999999e-01 2 0 0 -150 0 P 330 111 -1.0648582699983396e-01 2.9587223282993180e-01 4.1399528592034929e-01 5.3711386751403067e-01 1.3497999999999999e-01 2 0 0 -151 0 V -57 0 0 0 0 0 0 2 0 P 331 321 -2.1877755081705605e-01 6.5594632163176037e-01 8.6525747354634219e-01 1.2126172723211333e+00 4.9359999999999998e-01 1 0 0 0 0 P 332 -211 1.7914857450889105e-01 3.4346704071957807e-01 1.0575107357928744e+00 1.1348447299196567e+00 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 3 0 P 333 211 -9.0361220311436385e-01 1.2440265096517318e+00 3.6392805284056133e+00 3.9532214104026231e+00 1.3957000000000000e-01 1 0 0 0 0 P 334 -211 -1.6410567017421449e-01 6.1955438238941000e-02 5.4986746808330811e-01 5.9380397831864951e-01 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -2.3621235421981743e-01 6.0018781985749736e-01 1.9402778718001867e+00 2.0491265250317818e+00 1.3497999999999999e-01 2 0 0 -152 0 V -59 0 0 0 0 0 0 3 0 P 336 -211 -4.5562280097360280e-01 4.6255587221920008e-01 1.7080604604199456e+00 1.8326211809977240e+00 1.3957000000000000e-01 1 0 0 0 0 P 337 211 -6.1425271597001625e-02 2.9009439229997941e-01 7.2052462098052106e-01 7.9155753724778799e-01 1.3957000000000000e-01 1 0 0 0 0 P 338 111 8.6667639042875805e-02 8.8285785801763522e-02 1.0237245731732347e+00 1.0399698369426984e+00 1.3497999999999999e-01 2 0 0 -153 0 V -60 0 0 0 0 0 0 2 0 P 339 -2112 -1.1707342868545216e+00 7.7138206463259507e-01 1.0069764376587571e+01 1.0210220146742463e+01 9.3957000000000002e-01 1 0 0 0 0 P 340 211 -7.6324710319392219e-01 5.9673874916417624e-01 8.5389323983762875e+00 8.5948525039251340e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 3 0 P 341 111 -2.6552669271688117e-01 3.6786026190790888e-03 1.1128883116023889e+00 1.1520668171436976e+00 1.3497999999999999e-01 2 0 0 -154 0 P 342 111 -2.7565746280044207e-01 3.7101463477259657e-02 2.0933868515042939e+00 2.1160934917533281e+00 1.3497999999999999e-01 2 0 0 -155 0 P 343 111 -1.8380034300819970e-01 1.8274437377647934e-01 1.0642804929320215e+00 1.1036714367385414e+00 1.3497999999999999e-01 2 0 0 -156 0 V -62 0 0 0 0 0 0 2 0 P 344 321 6.0207402752890458e-02 -6.7174329488481188e-01 4.3078396518692559e+00 4.3881644695460063e+00 4.9359999999999998e-01 1 0 0 0 0 P 345 -211 2.1831747185454756e-01 -1.5266417670255765e+00 6.4286112741805601e+00 6.6124745975138035e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 346 22 -1.9738576107475744e-01 -4.5423876778850025e-01 4.1985087457270582e+00 4.2276198604869464e+00 0 1 0 0 0 0 P 347 22 -4.0856461903356997e-02 1.6058640428670964e-01 1.8339044903100956e+00 1.8413752804087835e+00 0 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 348 -211 3.1069643705477779e-01 -1.7670320897254066e-01 5.9512609813771267e-01 7.0810391726380473e-01 1.3957000000000000e-01 1 0 0 0 0 P 349 111 -1.4005820992837600e-01 -8.2082902876379948e-01 1.0302046105766169e+00 1.3315095706313878e+00 1.3497999999999999e-01 2 0 0 -157 0 V -65 0 0 0 0 0 0 3 0 P 350 211 2.1153788948073218e-01 -2.3555907396355147e-01 2.1153527062296298e-01 4.0554076444922099e-01 1.3957000000000000e-01 1 0 0 0 0 P 351 -211 5.5403176308403253e-02 -6.9895810103318412e-01 1.0057759713075123e+00 1.2339680013292664e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 111 3.6707074240205743e-02 -7.9345756481073537e-01 6.5778072795777143e-01 1.0401045153864654e+00 1.3497999999999999e-01 2 0 0 -158 0 V -66 0 0 0 0 0 0 2 0 P 353 211 -8.2698273214955473e-02 -7.8493110981161696e-01 2.2395300740938104e+00 2.3786404917964084e+00 1.3957000000000000e-01 1 0 0 0 0 P 354 -211 -6.8138725485628104e-01 -1.0459166175217605e+00 2.1556935252980600e+00 2.4949397832013336e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 355 211 -6.0143065148359576e-01 -4.3895411866946576e-01 2.9364037900862006e-01 8.1246784793319415e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 111 -2.0797295520839545e-01 -3.9213227899953790e-01 2.2880754245856810e-01 5.1729388766678286e-01 1.3497999999999999e-01 2 0 0 -159 0 V -68 0 -4.9930111845265191e-05 -9.6503615336872582e-05 1.3401942616988717e-04 1.7308254940185002e-04 0 2 0 P 357 22 -4.6541697494509937e-01 -8.2846248204792849e-01 1.2053422605344737e+00 1.5348657953575018e+00 0 1 0 0 0 0 P 358 22 -2.3010662596964326e-02 -1.1555769157654718e-01 1.0566605268059860e-01 1.5826681700454703e-01 0 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 359 -211 -2.3066545921984538e-01 -1.2670780269703008e-01 9.6050525447977778e-02 3.1299666081324939e-01 1.3957000000000000e-01 1 0 0 0 0 P 360 111 2.9298116360861620e-01 -5.0245370496988762e-01 1.1681711417330549e+00 1.3119226747965502e+00 1.3497999999999999e-01 2 0 0 -160 0 V -70 0 0 0 0 0 0 2 0 P 361 -3122 -1.0030961010912167e+00 -4.6332438559871308e-01 -7.9065530073710499e-01 1.7580525991273719e+00 1.1156800000000000e+00 2 0 0 -161 0 P 362 211 -2.3979100692512437e-01 -1.6928461615385131e-02 -4.6218544103188203e-01 5.3933428095816782e-01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 363 -211 -1.9680092942923369e-01 3.5085991403225915e-02 -4.5981810954462778e-02 2.4810430156611435e-01 1.3957000000000000e-01 1 0 0 0 0 P 364 111 -7.5813445493826004e-01 -9.0525761322359999e-01 -4.9667380842728837e-01 1.2880852729697241e+00 1.3497999999999999e-01 2 0 0 -162 0 V -72 0 0 0 0 0 0 2 0 P 365 2212 -9.1463156602036366e-01 -9.8702202278281151e-02 -2.1251704054159792e+00 2.4985981812311007e+00 9.3827000000000005e-01 1 0 0 0 0 P 366 211 -6.9241197427161685e-02 3.1483604763748708e-02 -1.5130218632753907e-02 1.5966924940620864e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 367 -211 1.1411251144407360e-01 -1.8320346658135231e-01 -7.5685155378954283e-01 7.9930547027350174e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 111 -4.1515668430183661e-01 -1.8282030587053097e-01 -2.3166065225127921e-01 5.2693889110652803e-01 1.3497999999999999e-01 2 0 0 -163 0 V -74 0 0 0 0 0 0 3 0 P 369 -211 -1.8744038222933385e-01 -1.4036944152636394e-02 -5.2180242315530667e-01 5.7191650299862196e-01 1.3957000000000000e-01 1 0 0 0 0 P 370 211 5.6361953461940131e-02 3.9588627380461899e-01 -1.4948469296002000e+00 1.5536890742423650e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 111 -1.3474921699852513e-01 1.6249037643081563e-01 -1.8786122247966355e+00 1.8952477319521341e+00 1.3497999999999999e-01 2 0 0 -164 0 V -75 0 0 0 0 0 0 2 0 P 372 2212 -5.2279374128405065e-01 1.2795501620004313e+00 -1.3505531131106890e+01 1.3608463676668224e+01 9.3827000000000005e-01 1 0 0 0 0 P 373 211 -2.5248163957016428e-01 2.1431522627917138e-01 -2.5836659747989139e+00 2.6085412875338494e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 374 111 -2.4272605959269211e-01 2.0379393868061715e-01 -4.6736725090054945e+00 4.6863506304247089e+00 1.3497999999999999e-01 2 0 0 -165 0 P 375 111 -2.3039637627134176e-02 2.0710229812689498e-01 -2.2790156601973823e+00 2.2924995456087536e+00 1.3497999999999999e-01 2 0 0 -166 0 P 376 111 4.4794219735654305e-02 1.8399180155020464e-01 -2.3084362411270432e+00 2.3201200367455490e+00 1.3497999999999999e-01 2 0 0 -167 0 V -77 0 0 0 0 0 0 2 0 P 377 211 -2.8911490803371964e-01 7.4833221814994511e-01 -9.1892353704557923e+00 9.2252433581615811e+00 1.3957000000000000e-01 1 0 0 0 0 P 378 -211 -6.0805599261934529e-01 6.6868337342306727e-01 -2.1453585626071188e+01 2.1473068843184038e+01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 379 22 -3.8466933421028499e-01 5.5434242563021174e-01 -2.9829760003373714e+01 2.9837390098338187e+01 0 1 0 0 0 0 P 380 22 -1.4375874114402432e-01 -5.9570425446639867e-02 -2.0217216877493573e+01 2.0217815744606394e+01 0 1 0 0 0 0 V -79 0 1.1121049657168325e-05 1.2606494175056176e-04 -1.3299711318071473e-03 1.3361239057316076e-03 0 2 0 P 381 22 2.1003071978686005e-02 1.6909653869733127e-01 -1.2954046869858484e+00 1.3065634586566643e+00 0 1 0 0 0 0 P 382 22 5.5221144310654134e-02 6.9495871532305309e-01 -7.8202822611523866e+00 7.8512949017902249e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 383 -211 -8.8872866323236280e-02 4.2515176734990578e-01 -5.7820723002501682e+00 5.8000424379369440e+00 1.3957000000000000e-01 1 0 0 0 0 P 384 211 -1.8399411103815230e-01 2.3264600999897034e-01 -1.1013346107239002e+01 1.1018223552896430e+01 1.3957000000000000e-01 1 0 0 0 0 P 385 111 3.8955764221680546e-02 -5.4912144187273616e-02 -3.5480436657438781e+00 3.5512485620652625e+00 1.3497999999999999e-01 2 0 0 -168 0 V -81 0 0 0 0 0 0 3 0 P 386 111 -2.7790185330665337e-02 4.4127560064931748e-01 -4.9753713738305102e+01 4.9755861431631743e+01 1.3497999999999999e-01 2 0 0 -169 0 P 387 111 -2.2131574345458010e-01 5.0956188157833604e-01 -6.9279086039063898e+01 6.9281444961676982e+01 1.3497999999999999e-01 2 0 0 -170 0 P 388 111 -2.7693820656112328e-01 3.8632176838850635e-01 -7.0400576290815778e+01 7.0402310338215159e+01 1.3497999999999999e-01 2 0 0 -171 0 V -82 0 0 0 0 0 0 2 0 P 389 211 3.7197036131147043e-01 -1.7912478952029964e-02 -4.6609142382710623e+01 4.6610839042472598e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -2.3996016378566953e-01 3.6546199658864992e-01 -7.1834638097677811e+01 7.1836095339153132e+01 1.3497999999999999e-01 2 0 0 -172 0 V -83 0 0 0 0 0 0 3 0 P 391 -211 -2.4223973734043411e-01 -1.2445246999169110e-02 -2.2927930945229598e+01 2.2929638727826408e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 211 -2.3129174720936169e-01 -7.8252973749946497e-02 -1.7191691213886688e+01 1.7193991566205813e+01 1.3957000000000000e-01 1 0 0 0 0 P 393 111 -2.3386676652908267e-01 4.3472144489738274e-01 -2.2284707040377562e+01 2.2290582403225667e+01 1.3497999999999999e-01 2 0 0 -173 0 V -84 0 -2.7346175769269940e-04 5.7311891776096158e-04 -1.0559104614819870e-01 1.0559299714295273e-01 0 2 0 P 394 22 -1.1711171126457039e-01 1.2717614350072981e-01 -2.6552325842907198e+01 2.6552888667568894e+01 0 1 0 0 0 0 P 395 22 -2.7699011819100589e-01 6.9877925110699279e-01 -1.2562114372096612e+02 1.2562339258964066e+02 0 1 0 0 0 0 V -85 0 2.9259851535203523e-07 -1.4746180198837317e-07 -6.0858596674899680e-05 6.0861361379796163e-05 0 2 0 P 396 22 2.2714470350599307e-02 -7.8775413309534498e-02 -1.2254241208480911e+01 1.2254515457925585e+01 0 1 0 0 0 0 P 397 22 5.9788824341449803e-02 3.7195966159469789e-02 -4.9059098947221624e+00 4.9064152024209582e+00 0 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 398 211 7.5807702847305392e-01 -4.6806486466216685e-01 -1.7721078092257980e+02 1.7721307547828999e+02 1.3957000000000000e-01 1 0 0 0 0 P 399 111 1.3226158506517255e-01 -9.8322357136747229e-01 -2.1052592705912434e+02 2.1052830784819014e+02 1.3497999999999999e-01 2 0 0 -174 0 V -87 0 0 0 0 0 0 3 0 P 400 -211 -2.4986425611081883e-02 -5.3749733187941351e-02 -6.2984102656969787e+00 6.3002353142735616e+00 1.3957000000000000e-01 1 0 0 0 0 P 401 211 1.7253396297622817e-01 -3.8886961051249724e-01 -9.1091606055099660e+01 9.1092706409595323e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 111 1.7145037574050934e-01 -5.3153618657502961e-02 -2.4401313984447455e+01 2.4402347516304840e+01 1.3497999999999999e-01 2 0 0 -175 0 V -88 0 0 0 0 0 0 3 0 P 403 211 1.7850620513402132e-01 -2.5395304184758183e-01 -2.1996845907622568e+01 2.1999478772946571e+01 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 3.8821457659791114e-01 -2.7407198452069281e-01 -1.3299786932459206e+01 1.3309005907425801e+01 1.3957000000000000e-01 1 0 0 0 0 P 405 111 7.0137135391159497e-02 1.0163357373293627e-01 -7.2498261659328440e+00 7.2521340057747921e+00 1.3497999999999999e-01 2 0 0 -176 0 V -89 0 0 0 0 0 0 2 0 P 406 211 -2.4686561770078452e-01 -1.2796060072007459e-01 -7.9444085926962886e+00 7.9504983630679442e+00 1.3957000000000000e-01 1 0 0 0 0 P 407 -211 3.2819985629334142e-01 -4.3406224300831364e-01 -4.3640681399079284e+01 4.3644297198343345e+01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 408 -2112 6.4298987478704139e-01 1.4333676714297330e-01 -2.1098085565039007e+01 2.1129268508457670e+01 9.3957000000000002e-01 1 0 0 0 0 P 409 -211 4.4553107768613720e-01 8.8855153301062861e-02 -9.0910325695862113e+00 9.1034469375961979e+00 1.3957000000000000e-01 1 0 0 0 0 V -91 0 4.4046584917474541e-05 -1.7624271449779551e-05 -2.5915757823319737e-04 2.6693855104729551e-04 0 2 0 P 410 22 4.3534460564578478e-02 -8.0992119598101181e-02 -5.3125710229447298e-01 5.3915589715031598e-01 0 1 0 0 0 0 P 411 22 9.4962372469349146e-02 2.5575660299428996e-02 -2.8361887297780253e-01 3.0018599516626032e-01 0 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 412 2212 8.5035379822772705e-01 -6.4900117403947277e-01 -1.7158241119866432e+01 1.7217139513474361e+01 9.3827000000000005e-01 1 0 0 0 0 P 413 211 -2.3229241158052843e-02 -1.8070473769543674e-01 -1.1044866527056965e+00 1.1280799398869699e+00 1.3957000000000000e-01 1 0 0 0 0 V -93 0 3.6101601516558282e-05 -3.5436636979184488e-06 -3.3294301675664787e-04 3.3513709818695547e-04 0 3 0 P 414 22 4.8775670025967159e-02 -3.7029787775788713e-02 -9.2950463902584879e-01 9.3151980394395018e-01 0 1 0 0 0 0 P 415 -11 2.2739992696153505e-01 4.3100290048524989e-04 -1.7533615578347499e+00 1.7680463583114310e+00 5.1000000000000004e-04 1 0 0 0 0 P 416 11 1.2178365138850947e-01 -2.4641287484638715e-03 -9.8726884243250035e-01 9.9475492309111802e-01 5.1000000000000004e-04 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 417 -211 -1.8419201334863830e-01 -3.7228682563559595e-01 -3.1881192851555378e+00 3.2180908221496658e+00 1.3957000000000000e-01 1 0 0 0 0 P 418 111 4.7822828960983110e-01 -6.0229086716107683e-03 -2.6084891000438577e+00 2.6554045940043913e+00 1.3497999999999999e-01 2 0 0 -177 0 V -95 0 0 0 0 0 0 2 0 P 419 -211 1.0645576308929128e+00 4.6410044193571198e-02 -3.1182510763001214e-01 1.1189957660075613e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 111 7.7429861521556384e-02 -2.0868996904274212e-02 -3.5210876024008725e-01 3.8552701322326199e-01 1.3497999999999999e-01 2 0 0 -178 0 V -96 0 2.7527393128575270e-04 -2.6813130612557179e-04 -3.9219294291776549e-04 5.5239021303045465e-04 0 2 0 P 421 22 4.1574823539793587e-01 -3.4456338697065458e-01 -4.7711860239605336e-01 7.2056414261989876e-01 0 1 0 0 0 0 P 422 22 1.9931153927926554e-01 -2.5453722513308763e-01 -3.9917978871670595e-01 5.1367187229615396e-01 0 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 423 22 1.1283973023867633e-01 9.6947694804742357e-02 -1.9458949489031238e-01 2.4494230294083047e-01 0 1 0 0 0 0 P 424 113 3.5387307085143610e-01 -1.1834758367013409e+00 -1.2995333976410082e+00 1.8877108908285898e+00 5.9061336713515122e-01 2 0 0 -179 0 V -98 0 0 0 0 0 0 2 0 P 425 211 6.0716988193356725e-01 -6.6295711330465057e-01 -1.1110231590736255e+00 1.4359734135792332e+00 1.3957000000000000e-01 1 0 0 0 0 P 426 111 -1.3387501967812185e-01 -7.2053828241313977e-01 -7.1589441588189651e-01 1.0333549014775014e+00 1.3497999999999999e-01 2 0 0 -180 0 V -99 0 0 0 0 0 0 2 0 P 427 -211 6.0385542808317316e-01 -9.8411185415257818e-01 -7.9443885888002430e-01 1.4084496458545235e+00 1.3957000000000000e-01 1 0 0 0 0 P 428 211 -5.0971756374726222e-02 -9.5389863516062504e-02 -4.1871435635664850e-01 4.5442143779612765e-01 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 3 0 P 429 211 -6.9731857628744075e-03 -1.1158085363128616e-01 -2.9930334331813196e-01 3.4865626114868731e-01 1.3957000000000000e-01 1 0 0 0 0 P 430 -211 4.8748807166683977e-02 -1.7200139872352987e-01 -2.5633528364533775e-01 3.4226961580683873e-01 1.3957000000000000e-01 1 0 0 0 0 P 431 111 -8.0613026138060831e-02 -2.0139920866734995e-02 -6.3913989123591175e-01 6.5850093193913339e-01 1.3497999999999999e-01 2 0 0 -181 0 V -101 0 0 0 0 0 0 2 0 P 432 211 -8.0363105716468680e-02 1.8104134476594255e-01 6.8386057930713761e-03 2.4240616474060683e-01 1.3957000000000000e-01 1 0 0 0 0 P 433 111 1.9089373129061460e-01 -3.2812161902639597e-01 4.0871224173238030e-01 5.7390723158056156e-01 1.3497999999999999e-01 2 0 0 -182 0 V -102 0 0 0 0 0 0 2 0 P 434 -311 2.9697991631482862e-01 -5.1436825461244273e-01 3.2346703476056589e+00 3.3261899312316379e+00 4.9767000000000000e-01 2 0 0 -183 0 P 435 -211 -1.6127882742915675e-01 -8.4599562034946493e-02 3.7657089650582698e-01 4.4096867356835079e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 436 321 2.7127556468720054e-01 -1.9017425188162740e-02 3.2946282248263148e-01 6.5279308042852968e-01 4.9359999999999998e-01 1 0 0 0 0 P 437 -211 -1.7968305002256602e-01 -2.4171558814768812e-01 4.6982791045834482e-01 5.7526556855477562e-01 1.3957000000000000e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 3 0 P 438 -211 5.1476602680395389e-02 2.0204756724287218e-02 -8.6997733728168061e-02 1.7351214191416159e-01 1.3957000000000000e-01 1 0 0 0 0 P 439 211 8.1524499883539006e-02 -4.9781821864105591e-01 2.6824970529298148e-01 5.8813851445215415e-01 1.3957000000000000e-01 1 0 0 0 0 P 440 111 -9.2628507769248594e-02 -3.4835225080304559e-02 1.7348583350657740e-01 2.4106112956141459e-01 1.3497999999999999e-01 2 0 0 -184 0 V -105 0 0 0 0 0 0 2 0 P 441 211 -4.0569198544804763e-01 3.9898496951659490e-01 4.1183800070857735e-01 7.1614615595182474e-01 1.3957000000000000e-01 1 0 0 0 0 P 442 -211 -2.0288179696715075e-01 -2.4595775647188245e-01 3.7981407771030207e-02 3.5011228733874977e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 443 22 -3.6684101452673168e-01 2.1145709992628722e-01 -4.1596382531068138e-01 5.9355904425367212e-01 0 1 0 0 0 0 P 444 111 3.6782136128323567e-01 2.4177777373116169e-01 -7.8210998393029552e-01 9.0755973525167832e-01 1.3497999999999999e-01 2 0 0 -185 0 V -107 0 0 0 0 0 0 3 0 P 445 211 -2.2546196574514901e-01 -2.8837011346151054e-01 -6.5736828924895923e+00 6.5853456231427829e+00 1.3957000000000000e-01 1 0 0 0 0 P 446 -211 -1.1403482570080198e-01 2.3794159564109360e-01 -3.3758066669671805e+00 3.3889778078424926e+00 1.3957000000000000e-01 1 0 0 0 0 P 447 111 -8.0688734865350942e-02 -1.0827217134168643e-01 -2.3032952360688643e+00 2.3111949463251125e+00 1.3497999999999999e-01 2 0 0 -186 0 V -108 0 0 0 0 0 0 2 0 P 448 -321 3.8121276822136041e-01 1.3017907237539066e+00 -4.5737501912083040e+01 4.5760274304039157e+01 4.9359999999999998e-01 1 0 0 0 0 P 449 111 1.9725387738686536e-02 1.0299097671312801e-01 -1.5258570937013767e+01 1.5259528265070546e+01 1.3497999999999999e-01 2 0 0 -187 0 V -109 0 0 0 0 0 0 2 0 P 450 311 -4.4967199808576908e-03 5.6760757842703596e-02 -8.1703878075159917e+00 8.1857287005023220e+00 4.9767000000000000e-01 2 0 0 -188 0 P 451 211 -3.9359289354159216e-01 -4.6449966174458224e-01 -1.5043981448391797e+01 1.5056943013309967e+01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 452 -311 3.1241629116587499e-01 5.9887099499075613e-01 -6.0360412642782428e+01 6.0366243383562441e+01 4.9767000000000000e-01 2 0 0 -189 0 P 453 111 -3.0685686928629695e-03 -2.2757214574002125e-02 -3.9958369129051974e+01 3.9958603708849772e+01 1.3497999999999999e-01 2 0 0 -190 0 V -111 0 0 0 0 0 0 2 0 P 454 311 1.2216799289959628e+00 6.4508744628643877e-01 -2.0797921449152736e+02 2.0798439839469668e+02 4.9767000000000000e-01 2 0 0 -191 0 P 455 111 1.2609072762608459e-01 -1.0379888018117039e-01 -1.8363467308062141e+01 1.8364689604068651e+01 1.3497999999999999e-01 2 0 0 -192 0 V -112 0 0 0 0 0 0 2 0 P 456 211 -3.6809689432997228e-03 -1.7869827482293982e-01 -3.3732607745294118e+01 3.3733370002206030e+01 1.3957000000000000e-01 1 0 0 0 0 P 457 111 2.7549507651924199e-01 -1.5991363946268547e-01 -6.2826755875647731e+00 6.2921937389319877e+00 1.3497999999999999e-01 2 0 0 -193 0 V -113 0 0 0 0 0 0 2 0 P 458 -2112 3.1364834483749621e-01 -1.5701344375851226e-01 -4.3463862347458203e+01 4.3475431572894536e+01 9.3957000000000002e-01 1 0 0 0 0 P 459 -211 -2.1467903791823037e-01 2.3881775442536374e-01 -1.6686872737990626e+01 1.6690545903832657e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 460 211 1.9642135931904781e-01 -4.5920549651057951e-01 -6.5284309925500672e+00 6.5489954991441648e+00 1.3957000000000000e-01 1 0 0 0 0 P 461 -211 -3.1994138575843634e-01 -2.6419476027100064e-01 -1.4336961267410622e+01 1.4343643174933211e+01 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 3 0 P 462 -211 3.1420388931506997e-02 -1.9343644111816130e-01 -4.7782450647210029e+00 4.7842983373765149e+00 1.3957000000000000e-01 1 0 0 0 0 P 463 211 6.3347955553151800e-02 -8.7610248964824888e-02 -2.0854181024599949e+00 2.0928776758722161e+00 1.3957000000000000e-01 1 0 0 0 0 P 464 111 1.5620106559681074e-01 -4.7334436128721769e-01 -2.5197394656903910e+01 2.5202685784523556e+01 1.3497999999999999e-01 2 0 0 -194 0 V -116 0 0 0 0 0 0 2 0 P 465 22 2.2280188590423813e-01 7.8669610882418542e-02 -1.0818548462775863e+02 1.0818574265461709e+02 0 1 0 0 0 0 P 466 113 6.5808881986598677e-01 3.4143616228748974e-01 -3.9724598755114437e+02 3.9724757937314047e+02 8.4559611389194145e-01 2 0 0 -195 0 V -117 0 0 0 0 0 0 3 0 P 467 -211 -1.2039523748214939e-01 -1.6504160443245022e-01 -2.8725798271838556e+02 2.8725808926636967e+02 1.3957000000000000e-01 1 0 0 0 0 P 468 211 -1.8557870356225051e-01 -5.9169930218982048e-01 -3.0445325943945261e+02 3.0445392296800998e+02 1.3957000000000000e-01 1 0 0 0 0 P 469 111 -4.0696616877633755e-02 -6.7636047093840260e-02 -5.2935963451397470e+01 5.2936194394549943e+01 1.3497999999999999e-01 2 0 0 -196 0 V -118 0 0 0 0 0 0 2 0 P 470 -211 3.2117813391251554e-01 3.9082160248208674e-02 -3.0218374327577220e+02 3.0218394871791526e+02 1.3957000000000000e-01 1 0 0 0 0 P 471 211 1.4171764566143713e-01 6.7548848057617697e-02 -1.9523436483730855e+01 1.9524566542106349e+01 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 3 0 P 472 211 1.6373136395614947e-02 -2.6720035716385041e-02 -8.5060382415221198e+01 8.5060502693368065e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 -211 -9.6474420435492522e-02 -1.1542906365447612e-01 -9.4806844023934374e+01 9.4807066111899360e+01 1.3957000000000000e-01 1 0 0 0 0 P 474 111 1.8220015482125798e-01 -2.0216403883419382e-01 -1.5679760117552149e+02 1.5679789546162064e+02 1.3497999999999999e-01 2 0 0 -197 0 V -120 0 0 0 0 0 0 2 0 P 475 211 1.9090106233119916e-01 3.3143593804953003e-01 -3.6760976345237339e+02 3.6760998892615993e+02 1.3957000000000000e-01 1 0 0 0 0 P 476 -211 2.6710901029972933e-01 -1.8734649770760695e-01 -1.0819464254164400e+02 1.0819522448071638e+02 1.3957000000000000e-01 1 0 0 0 0 V -121 0 -6.1519886240719163e-05 -2.5567185127382212e-05 6.0793936830555093e-05 9.2238905035751196e-05 0 2 0 P 477 22 -3.4192917113492760e-01 -1.2743394629237495e-01 2.5036559763044802e-01 4.4253576264243083e-01 0 1 0 0 0 0 P 478 22 -8.7610003388996244e-02 -5.1079186055506279e-02 1.7410491163021644e-01 2.0148726062875150e-01 0 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 479 211 -3.0773859040702334e-01 -7.8708668774410295e-01 2.1907225789583662e+00 2.3522231392679736e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 111 4.0913861874916600e-02 1.3231956927343433e-01 5.9071020012717612e-01 6.2156299233506129e-01 1.3497999999999999e-01 2 0 0 -198 0 V -123 0 0 0 0 0 0 3 0 P 481 211 -8.7542182957723022e-02 -1.0479646629370960e-01 5.6389092358649517e-01 5.9674005374860051e-01 1.3957000000000000e-01 1 0 0 0 0 P 482 -211 1.8688069167901861e-01 2.9667760823111505e-01 6.2985089646623937e-01 7.3425740229669378e-01 1.3957000000000000e-01 1 0 0 0 0 P 483 111 6.7934726382215330e-02 -1.4704411635847964e-01 4.5672572849005044e-01 5.0304581368801771e-01 1.3497999999999999e-01 2 0 0 -199 0 V -124 0 0 0 0 0 0 3 0 P 484 211 5.5905940934014609e-01 1.2469592618174466e-01 2.2270421241278532e-01 6.3021698509678004e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 -211 1.3714820015503368e-01 3.3607633527040132e-02 7.5977697862749868e-02 2.1258291866840176e-01 1.3957000000000000e-01 1 0 0 0 0 P 486 111 3.1300574344479254e-01 -4.1419408210991611e-02 -2.1632939264537240e-02 3.4405776734031046e-01 1.3497999999999999e-01 2 0 0 -200 0 V -125 0 0 0 0 0 0 2 0 P 487 211 3.9081753626770159e-03 -2.6181775704261914e-02 2.4500736459498662e+00 2.4541885450575642e+00 1.3957000000000000e-01 1 0 0 0 0 P 488 111 -2.8904180844874675e-02 7.6502402733457223e-02 1.9225831176716970e-02 1.5898837152050121e-01 1.3497999999999999e-01 2 0 0 -201 0 V -126 0 5.0425969744234986e-05 4.1919896352166119e-05 -8.5228736789045244e-04 8.5498759254477689e-04 0 2 0 P 489 22 -6.8309695239733431e-03 4.3294368643381244e-03 -2.8970834137633444e-02 3.0078487309537497e-02 0 1 0 0 0 0 P 490 22 3.9343287267168653e-01 3.1705876432846308e-01 -6.5052796746069026e+00 6.5248738938151041e+00 0 1 0 0 0 0 V -127 0 -9.5960568163684756e-05 -7.9773519313954940e-05 -1.2107637958113896e-03 1.2176385919035035e-03 0 2 0 P 491 22 -1.1267601970618943e-01 -1.5270510384954078e-01 -2.2727457464038592e+00 2.2806551606841756e+00 0 1 0 0 0 0 P 492 22 -2.7392588344152374e-01 -1.6868309734326042e-01 -2.6051285375895268e+00 2.6249160128110542e+00 0 1 0 0 0 0 V -128 0 -2.3818528633102785e-05 3.6605511995287136e-05 5.3491862328044237e-05 7.1363685314652182e-05 0 2 0 P 493 22 -1.4591619636729170e-01 2.7982610098430327e-01 3.8627311694920252e-01 4.9879966322365110e-01 0 1 0 0 0 0 P 494 22 -3.2665872117262552e-02 -5.3722020575093380e-03 1.4788072378710083e-02 3.6257507371660648e-02 0 1 0 0 0 0 V -129 0 3.5079398284031922e-05 1.0153541747086443e-04 1.0334304557858782e-04 1.6536050777791518e-04 0 2 0 P 495 22 1.0310458548184748e-01 9.5721852492709078e-02 1.1718455574293114e-01 1.8309955952073637e-01 0 1 0 0 0 0 P 496 22 -3.6958526011552841e-02 9.5734332359417612e-02 7.7680110501764751e-02 1.2870584526281797e-01 0 1 0 0 0 0 V -130 0 -3.0455975004794257e-06 2.3675482582130039e-06 9.7311840232610973e-06 1.1258628474206511e-05 0 2 0 P 497 22 -2.4462866284127437e-02 3.8939247937841800e-02 2.6284568372146766e-01 2.6683806008102667e-01 0 1 0 0 0 0 P 498 22 -7.4719069263730356e-02 3.8161556983215911e-02 5.4056883491532266e-02 9.9806765280908968e-02 0 1 0 0 0 0 V -131 0 -6.7713626726776603e-05 -6.3055890080896544e-06 2.7259624043673042e-04 2.9079368908471558e-04 0 2 0 P 499 22 -1.3399030710329521e-01 2.1948896683240252e-02 2.9753587583521712e-01 3.2705160735314637e-01 0 1 0 0 0 0 P 500 22 1.2149431922690971e-02 -3.3294891875239541e-02 1.9296162239758402e-01 1.9618956710114782e-01 0 1 0 0 0 0 V -132 0 1.6674614638704912e-05 4.7553438903825668e-05 -2.6183169028329538e-05 6.2243383964619221e-05 0 2 0 P 501 22 5.8013961197736878e-02 9.1022083889316374e-02 1.0202747303006061e-02 1.0841925798461852e-01 0 1 0 0 0 0 P 502 22 3.0314322528701698e-02 1.6087660970419307e-01 -1.4889946881064114e-01 2.2129458536615962e-01 0 1 0 0 0 0 V -133 0 -1.0681897425172326e-04 -6.0570272184500353e-05 8.6283913092155312e-05 1.5217178708493726e-04 0 2 0 P 503 22 -3.4799878167603304e-01 -1.3222656516012646e-01 3.0103175658386327e-01 4.7875581986438009e-01 0 1 0 0 0 0 P 504 22 -2.2540474478013814e-01 -1.9291424350516873e-01 1.6213970139034109e-01 3.3810129707458936e-01 0 1 0 0 0 0 V -134 0 -1.9051846126656105e-07 -5.1658855443381525e-06 -9.6950455193948918e-06 1.4101632340788358e-05 0 2 0 P 505 22 -5.0111980568536343e-02 1.2470356413254429e-02 -3.4276972998274632e-02 6.1980894342526321e-02 0 1 0 0 0 0 P 506 22 4.7202795857545297e-02 -9.1352555778130173e-02 -1.1376473387822453e-01 1.5334864870075882e-01 0 1 0 0 0 0 V -135 0 -1.0334621964277384e-05 3.3942727182708046e-05 -2.0874260340708549e-03 2.0877917206536638e-03 0 2 0 P 507 22 -9.9283473267120809e-02 2.7197835832203904e-01 -1.6976248987003430e+01 1.6978717828628714e+01 0 1 0 0 0 0 P 508 22 1.4057651175762633e-02 7.9348149094747647e-03 -2.3798491758732679e-01 2.3853175856324413e-01 0 1 0 0 0 0 V -136 0 1.4834206076573482e-05 8.6548779370363774e-06 -1.6916243614226523e-03 1.6918944030944192e-03 0 2 0 P 509 22 5.6877008681565616e-02 -3.6274234215701209e-02 -5.6597530021567506e+00 5.6601550208105476e+00 0 1 0 0 0 0 P 510 22 2.3620599380217905e-02 8.3239806110942144e-02 -3.5198225093774314e+00 3.5208858680105646e+00 0 1 0 0 0 0 V -137 0 0 0 0 0 0 1 0 P 511 130 -1.5973589231480551e-01 -1.1123098636438077e-01 -5.1612944831685502e+02 5.1612972495602071e+02 4.9767000000000000e-01 1 0 0 0 0 V -138 0 3.1103610925874383e+00 -8.0038430446891684e-01 1.8683360181184486e+01 1.8961122712595945e+01 0 2 0 P 512 -2212 8.7654618352699281e+00 -2.0697872198957854e+00 5.1025630987566998e+01 5.1822897531819613e+01 9.3827000000000005e-01 1 0 0 0 0 P 513 2112 7.5247925110543390e+00 -2.1221581865965837e+00 4.6826894920379900e+01 4.7484386248245421e+01 9.3957000000000002e-01 1 0 0 0 0 V -139 0 7.1935284517609324e-05 -2.1734295924993361e-05 4.3042664507953366e-04 4.3702924596271549e-04 0 2 0 P 514 22 1.0475079878031972e+00 -3.0982561395005187e-01 6.0706674700743166e+00 6.1681657263557321e+00 0 1 0 0 0 0 P 515 22 3.5377860527565870e-02 -1.7354039796182597e-02 4.0880815620218564e-01 4.1070289053059511e-01 0 1 0 0 0 0 V -140 0 -1.1707031317631365e-05 -2.0885127523614689e-05 2.7249135006112129e-02 2.7249146859578396e-02 0 2 0 P 516 22 -1.1435554774602175e-02 -1.1647040356313480e-01 8.9836429135879598e+01 8.9836505363981843e+01 0 1 0 0 0 0 P 517 22 -1.7383161929417823e-01 -2.1404281122077029e-01 3.4138905420232413e+02 3.4138916555877154e+02 0 1 0 0 0 0 V -141 0 2.7410658711507129e-06 1.8233891866966257e-06 6.0966778596805110e-04 6.0967915159964377e-04 0 2 0 P 518 22 2.1539593451955413e-01 1.2808073855046279e-01 4.6906639893999625e+01 4.6907309304942579e+01 0 1 0 0 0 0 P 519 22 -2.5072849810589700e-03 1.3535289588248183e-02 4.4404692746506685e-01 4.4426024392621538e-01 0 1 0 0 0 0 V -142 0 3.7608948798080923e-06 -5.7047503488461257e-06 2.4217222132747620e-04 2.4227039485790600e-04 0 2 0 P 520 22 6.6904994578847757e-02 -1.0030933947479381e-01 2.9451732628128635e+00 2.9476403766187689e+00 0 1 0 0 0 0 P 521 22 4.7705595869226863e-01 -7.2480317685547335e-01 3.2081658536272052e+01 3.2093390853427458e+01 0 1 0 0 0 0 V -143 0 7.8018199129901164e-05 -4.6661638786690765e-05 2.1654039163449741e-03 2.1673444850673056e-03 0 2 0 P 522 22 8.1623604747978107e-01 -4.6191732002022412e-01 2.1434817325912338e+01 2.1455325741898488e+01 0 1 0 0 0 0 P 523 22 6.1801889303988736e-02 -6.3225396732297115e-02 2.9352246414155534e+00 2.9365559112481692e+00 0 1 0 0 0 0 V -144 0 0 0 0 0 0 1 0 P 524 130 -4.5749086460961730e-01 5.9989081153489043e-01 1.7993770705492295e+01 1.8016454326745258e+01 4.9767000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 1 0 P 525 310 1.2570972056717891e+00 2.0969803888911049e+00 4.4384176768668233e+01 4.4454251124017269e+01 4.9767000000000000e-01 2 0 0 -202 0 V -146 0 0 0 0 0 0 1 0 P 526 130 1.0525807560521797e-01 3.0443320042390359e-01 6.5553929479060447e-01 8.8383597568497829e-01 4.9767000000000000e-01 1 0 0 0 0 V -147 0 3.5527658296401298e-05 9.7025023096661126e-05 1.6360538748204739e-04 1.9425578605008326e-04 0 2 0 P 527 22 1.2732768215435458e-01 3.4386707261574906e-01 7.0687564060962793e-01 7.9632284505682571e-01 0 1 0 0 0 0 P 528 22 1.5306050763454562e-01 4.2186508916465992e-01 5.8431608537163349e-01 7.3676520009924562e-01 0 1 0 0 0 0 V -148 0 1.3832812369015166e-05 2.1563623015376146e-05 5.2912159972505265e-05 6.0282060489860201e-05 0 2 0 P 529 22 7.6832650235730285e-02 2.1406892031382496e-01 4.4339153926809610e-01 4.9832200019776812e-01 0 1 0 0 0 0 P 530 22 6.3158227887389132e-02 4.1593358721825381e-03 9.2090294818932980e-02 1.1174472794996190e-01 0 1 0 0 0 0 V -149 0 -8.8880897960889798e-05 1.2185976100763233e-04 1.9553037383579776e-04 2.4868479855589767e-04 0 2 0 P 531 22 -7.3468540489164388e-02 1.6650593277258352e-01 3.1109630300793600e-01 3.6042025724878668e-01 0 1 0 0 0 0 P 532 22 -3.3506419903953066e-01 3.9361106812300117e-01 5.8764078355208182e-01 7.8263617404298191e-01 0 1 0 0 0 0 V -150 0 -1.5908253457090334e-04 3.0524646344546555e-04 6.6140724580944813e-04 7.4892994525145075e-04 0 2 0 P 533 22 -2.5573054560936437e-01 5.4792401080466013e-01 1.0777749653217852e+00 1.2358065016208255e+00 0 1 0 0 0 0 P 534 22 -4.9353839950983816e-02 3.7469791198304389e-02 1.9065480754559253e-01 2.0047204895096662e-01 0 1 0 0 0 0 V -151 0 -4.2843928286616638e-06 1.1904240294237941e-05 1.6656849874487477e-05 2.1610451521923493e-05 0 2 0 P 535 22 -5.2510176402075200e-03 1.1771810208934656e-01 7.0998703246529626e-02 1.3757158357911112e-01 0 1 0 0 0 0 P 536 22 -1.0123480935962643e-01 1.7815413074058528e-01 3.4299658267381966e-01 3.9954228393491947e-01 0 1 0 0 0 0 V -152 0 -1.1910832198083747e-04 3.0264024222051520e-04 9.7837067942520826e-04 1.0332568028843751e-03 0 2 0 P 537 22 -1.4867752461688991e-01 3.5725952874375305e-01 9.5122001036481119e-01 1.0269171754931581e+00 0 1 0 0 0 0 P 538 22 -8.7534829602927522e-02 2.4292829111374425e-01 9.8905786143537566e-01 1.0222093495386237e+00 0 1 0 0 0 0 V -153 0 1.4520043180533051e-05 1.4791142763618101e-05 1.7151182577033658e-04 1.7423350982700124e-04 0 2 0 P 539 22 5.2579591362265393e-02 -3.9412621625710869e-03 6.9132198656806776e-01 6.9332981768252000e-01 0 1 0 0 0 0 P 540 22 3.4088047680610412e-02 9.2227047964334619e-02 3.3240258660516703e-01 3.4664001926017834e-01 0 1 0 0 0 0 V -154 0 -7.5114036440622331e-06 1.0406286778659085e-07 3.1482158097444615e-05 3.2590466894126237e-05 0 2 0 P 541 22 -1.3600775470479920e-01 6.0708544773076939e-02 4.4216971965169533e-01 4.6658085872136273e-01 0 1 0 0 0 0 P 542 22 -1.2951893801208197e-01 -5.7029942153997849e-02 6.7071859195069361e-01 6.8548595842233462e-01 0 1 0 0 0 0 V -155 0 -7.8639143668307127e-05 1.0584249332675758e-05 5.9719823180686717e-04 6.0367594776139966e-04 0 2 0 P 543 22 -2.5304090658429107e-01 6.2912952279781081e-02 1.5632022324114434e+00 1.5847993435718222e+00 0 1 0 0 0 0 P 544 22 -2.2616556216151031e-02 -2.5811488802521421e-02 5.3018461909285053e-01 5.3129414818150600e-01 0 1 0 0 0 0 V -156 0 -1.2684878795988227e-05 1.2612001664762917e-05 7.3450728311072987e-05 7.6169272464295790e-05 0 2 0 P 545 22 -5.8110418027491340e-02 9.4690682628659206e-02 2.3040796858011886e-01 2.5579479675167022e-01 0 1 0 0 0 0 P 546 22 -1.2568992498070836e-01 8.8053691147820121e-02 8.3387252435190273e-01 8.4787663998687113e-01 0 1 0 0 0 0 V -157 0 -3.5852060965116454e-05 -2.1011558262972504e-04 2.6371148484494406e-04 3.4083944330235853e-04 0 2 0 P 547 22 -3.3516333863788716e-02 -2.7708238075890002e-01 2.5085444262105477e-01 3.7526782668570069e-01 0 1 0 0 0 0 P 548 22 -1.0654187606458729e-01 -5.4374664800489947e-01 7.7935016795556211e-01 9.5624174394568706e-01 0 1 0 0 0 0 V -158 0 4.3166650345182991e-06 -9.3308731281039868e-05 7.7353456452959458e-05 1.2231382878496040e-04 0 2 0 P 549 22 1.0176369952474533e-02 -6.8343506617503980e-01 5.0433232893903046e-01 8.4943401521022044e-01 0 1 0 0 0 0 P 550 22 2.6530704287731209e-02 -1.1002249863569566e-01 1.5344839901874094e-01 1.9067050017624496e-01 0 1 0 0 0 0 V -159 0 -2.0786707388537182e-05 -3.9193264013563306e-05 2.2869105401761182e-05 5.1703052764882601e-05 0 2 0 P 551 22 -6.5061580676291737e-03 -2.1967713097763256e-02 5.8352310701349892e-02 6.2688935831879330e-02 0 1 0 0 0 0 P 552 22 -2.0146679714076629e-01 -3.7016456590177466e-01 1.7045523175721822e-01 4.5460495183490340e-01 0 1 0 0 0 0 V -160 0 7.0352111967943550e-05 -1.2065171315235383e-04 2.8050713550551083e-04 3.1502547731657849e-04 0 2 0 P 553 22 1.1116923471609839e-01 -3.1782052399045996e-01 6.1750230050842192e-01 7.0333318942740575e-01 0 1 0 0 0 0 P 554 22 1.8181192889251779e-01 -1.8463318097942760e-01 5.5066884122463289e-01 6.0858948536914448e-01 0 1 0 0 0 0 V -161 0 -1.7048233808690077e+02 -7.8744822618309172e+01 -1.3437672037986113e+02 2.9879182787465794e+02 0 2 0 P 555 -2212 -8.8459009132244704e-01 -4.7070478247318365e-01 -6.1496553106025853e-01 1.5041927466921279e+00 9.3827000000000005e-01 1 0 0 0 0 P 556 211 -1.1850600976876979e-01 7.3803968744705194e-03 -1.7568976967684644e-01 2.5385985243524389e-01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 -1.9493233691090343e-04 -2.3276079975343390e-04 -1.2770529756104304e-04 3.3119385455308869e-04 0 2 0 P 557 22 -3.7301427129798909e-01 -4.5310905557141046e-01 -1.7392793216089425e-01 6.1212612133330013e-01 0 1 0 0 0 0 P 558 22 -3.8512018364027090e-01 -4.5214855765218959e-01 -3.2274587626639412e-01 6.7595915163642395e-01 0 1 0 0 0 0 V -163 0 -1.3943505830635796e-04 -6.1402263223853649e-05 -7.7805844818004606e-05 1.7697837415019856e-04 0 2 0 P 559 22 -2.7678824433633803e-01 -1.2732798618812449e-01 -8.1591822688523719e-02 3.1540668001669048e-01 0 1 0 0 0 0 P 560 22 -1.3836843996549858e-01 -5.5492319682406484e-02 -1.5006882956275550e-01 2.1153221108983730e-01 0 1 0 0 0 0 V -164 0 -1.1086843471384140e-05 1.3369319757267737e-05 -1.5456772323936384e-04 1.5593645300275921e-04 0 2 0 P 561 22 -9.6741421919788503e-02 5.5922283746966867e-02 -1.3524419578036559e+00 1.3570502767997672e+00 0 1 0 0 0 0 P 562 22 -3.8007795078736639e-02 1.0656809268384874e-01 -5.2617026699297953e-01 5.3819745515236694e-01 0 1 0 0 0 0 V -165 0 -3.4290410711072866e-06 2.8790389748476593e-06 -6.6025934805590160e-05 6.6205041239913374e-05 0 2 0 P 563 22 1.3414054859388661e-02 1.3139311780093893e-02 -1.1631760202676175e-01 1.1782343961657768e-01 0 1 0 0 0 0 P 564 22 -2.5614011445208079e-01 1.9065462690052329e-01 -4.5573549069787331e+00 4.5685271908081315e+00 0 1 0 0 0 0 V -166 0 -7.4889100966099795e-06 6.7317486350003584e-05 -7.4078176333311474e-04 7.4516462764864658e-04 0 2 0 P 565 22 4.8184051318167088e-02 1.1348318492369537e-01 -1.4415907947874040e+00 1.4468531907825468e+00 0 1 0 0 0 0 P 566 22 -7.1223688945301261e-02 9.3619113203199600e-02 -8.3742486540997829e-01 8.4564635482620676e-01 0 1 0 0 0 0 V -167 0 1.4450924198441823e-05 5.9357024031840090e-05 -7.4471745091946517e-04 7.4848672396026156e-04 0 2 0 P 567 22 2.8376164708713042e-02 7.4177888257119948e-02 -1.6851865829753450e+00 1.6870570189741603e+00 0 1 0 0 0 0 P 568 22 1.6418055026941259e-02 1.0981391329308471e-01 -6.2324965815169808e-01 6.3306301777138840e-01 0 1 0 0 0 0 V -168 0 2.4136597578597354e-06 -3.4023009249257642e-06 -2.1983319763417791e-04 2.2003176976935718e-04 0 2 0 P 569 22 -1.4021930459243413e-02 -8.3029218199412405e-02 -1.5314619808878385e+00 1.5337751675240776e+00 0 1 0 0 0 0 P 570 22 5.2977694680923962e-02 2.8117074012138792e-02 -2.0165816848560394e+00 2.0174733945411853e+00 0 1 0 0 0 0 V -169 0 -1.9033264010881989e-05 3.0222594447584079e-04 -3.4075899740692209e-02 3.4077370677773548e-02 0 2 0 P 571 22 -5.1277834524705641e-02 1.9623470560289144e-01 -1.6711957854585901e+01 1.6713188588939332e+01 0 1 0 0 0 0 P 572 22 2.3487649194040304e-02 2.4504089504642607e-01 -3.3041755883719198e+01 3.3042672842692397e+01 0 1 0 0 0 0 V -170 0 -2.6370149967783381e-04 6.0715171118607173e-04 -8.2547217832969561e-02 8.2550028529673636e-02 0 2 0 P 573 22 -1.1830839713135069e-01 4.0887112049909685e-01 -5.4174190671885832e+01 5.4175862775075863e+01 0 1 0 0 0 0 P 574 22 -1.0300734632322943e-01 1.0069076107923920e-01 -1.5104895367178070e+01 1.5105582186601106e+01 0 1 0 0 0 0 V -171 0 -1.6049667435237252e-04 2.2388878669436302e-04 -4.0799926118798603e-02 4.0800931068040606e-02 0 2 0 P 575 22 -6.5252950908230870e-02 1.7864952868097905e-01 -3.3659113689002609e+01 3.3659651036974552e+01 0 1 0 0 0 0 P 576 22 -2.1168525565289242e-01 2.0767223970752732e-01 -3.6741462601813176e+01 3.6742659301240579e+01 0 1 0 0 0 0 V -172 0 -3.2195750631724617e-05 4.9034486065986978e-05 -9.6381418416548806e-03 9.6383373615378850e-03 0 2 0 P 577 22 -1.3025985043949251e-02 8.7566657249905824e-02 -9.0782846526466692e+00 9.0787163096017203e+00 0 1 0 0 0 0 P 578 22 -2.2693417874172028e-01 2.7789533933874411e-01 -6.2756353445031145e+01 6.2757379029551394e+01 0 1 0 0 0 0 V -173 0 -6.9893345460649700e-05 1.2992070903578823e-04 -6.6600002675830852e-03 6.6617561766048909e-03 0 2 0 P 579 22 -1.7042157036684227e-01 1.9403419799297666e-01 -9.8532503913795200e+00 9.8566341139791600e+00 0 1 0 0 0 0 P 580 22 -6.3445196162240425e-02 2.4068724690440610e-01 -1.2431456648998040e+01 1.2433948289246503e+01 0 1 0 0 0 0 V -174 0 3.1744787228104440e-05 -2.3598857563469691e-04 -5.0529416815912248e-02 5.0529988241411881e-02 0 2 0 P 581 22 -1.6756793175478527e-02 -2.4768743798381396e-01 -5.9006566008306521e+01 5.9007088234801813e+01 0 1 0 0 0 0 P 582 22 1.4901837824065109e-01 -7.3553613338365831e-01 -1.5151936105081782e+02 1.5152121961338833e+02 0 1 0 0 0 0 V -175 0 6.3430636636438372e-05 -1.9664978023021423e-05 -9.0276318970669098e-03 9.0280142676707337e-03 0 2 0 P 583 22 1.9140289652554052e-01 -5.8163865769033658e-02 -2.0404691833136749e+01 2.0405672419926695e+01 0 1 0 0 0 0 P 584 22 -1.9952520785031184e-02 5.0102471115306968e-03 -3.9966221513107065e+00 3.9966750963781399e+00 0 1 0 0 0 0 V -176 0 4.5851463606994967e-06 6.6441950919083979e-06 -4.7395026721637289e-04 4.7410113998004328e-04 0 2 0 P 585 22 4.5102410137303761e-02 6.3933202574946862e-02 -6.6974746780802032e+00 6.6979316766683441e+00 0 1 0 0 0 0 P 586 22 2.5034725253855732e-02 3.7700371157989410e-02 -5.5235148785264143e-01 5.5420232910644918e-01 0 1 0 0 0 0 V -177 0 2.0935199903530284e-04 -2.6366235494715361e-06 -1.1419073681348221e-03 1.1624453677884596e-03 0 2 0 P 587 22 1.1331105782922390e-01 2.2621224909282967e-02 -9.5005898133911171e-01 9.5705965522839020e-01 0 1 0 0 0 0 P 588 22 3.6491723178060720e-01 -2.8644133580893738e-02 -1.6584301187047459e+00 1.6983449387760015e+00 0 1 0 0 0 0 V -178 0 1.3269098354601872e-06 -3.5763046329045071e-07 -6.0340618972202622e-06 6.6067480378886946e-06 0 2 0 P 589 22 1.1450944006868816e-01 -4.1071728670363386e-03 -2.3282233582032108e-01 2.5949088768323741e-01 0 1 0 0 0 0 P 590 22 -3.7079578547131772e-02 -1.6761824037237874e-02 -1.1928642441976615e-01 1.2603612554002450e-01 0 1 0 0 0 0 V -179 0 0 0 0 0 0 2 0 P 591 211 -9.4768301506259159e-02 -5.2631117055099041e-01 -4.2540132643778433e-01 6.9744573455729253e-01 1.3957000000000000e-01 1 0 0 0 0 P 592 -211 4.4864137235769530e-01 -6.5716466615035063e-01 -8.7413207120322378e-01 1.1902651562712974e+00 1.3957000000000000e-01 1 0 0 0 0 V -180 0 -4.0192980217038108e-06 -2.1632550269856467e-05 -2.1493128564395962e-05 3.1024169566603698e-05 0 2 0 P 593 22 -4.2569457740821125e-02 -1.1577419247173880e-01 -1.9107307831502474e-01 2.2743074469299521e-01 0 1 0 0 0 0 P 594 22 -9.1305561937300744e-02 -6.0476408994140096e-01 -5.2482133756687177e-01 8.0592415678450646e-01 0 1 0 0 0 0 V -181 0 -2.6703759291777610e-05 -6.6715222681215876e-06 -2.1172059438764136e-04 2.1813410589249029e-04 0 2 0 P 595 22 -5.6451819660528021e-02 5.5125083738003247e-02 -2.9176972404036355e-01 3.0225015246761505e-01 0 1 0 0 0 0 P 596 22 -2.4161206477532809e-02 -7.5265004604738242e-02 -3.4737016719554825e-01 3.5625077947151834e-01 0 1 0 0 0 0 V -182 0 1.3517199744955607e-04 -2.3234316994232717e-04 2.8940945165425595e-04 4.0638415058998604e-04 0 2 0 P 597 22 7.9928373390332888e-02 -8.6408539580031279e-02 5.1315954977179223e-02 1.2840680597381976e-01 0 1 0 0 0 0 P 598 22 1.1096535790028170e-01 -2.4171307944636466e-01 3.5739628675520108e-01 4.4550042560674180e-01 0 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 599 130 2.9697991631482862e-01 -5.1436825461244273e-01 3.2346703476056589e+00 3.3261899312316379e+00 4.9767000000000000e-01 1 0 0 0 0 V -184 0 -3.8662914927579313e-05 -1.4540138626847470e-05 7.2412566968198299e-05 1.0061833196964556e-04 0 2 0 P 600 22 3.1511660168946722e-02 9.8637129591760218e-03 1.9774341305952847e-02 3.8487688083704293e-02 0 1 0 0 0 0 P 601 22 -1.2414016793819532e-01 -4.4698938039480579e-02 1.5371149220062455e-01 2.0257344147771031e-01 0 1 0 0 0 0 V -185 0 4.4008230153445079e-05 2.8927661719339855e-05 -9.3576066539560211e-05 1.0858558504491051e-04 0 2 0 P 602 22 3.3099499723692399e-01 2.1595108049813894e-01 -7.6178460275148507e-01 8.5820063991669393e-01 0 1 0 0 0 0 P 603 22 3.6826364046311642e-02 2.5826693233022745e-02 -2.0325381178810383e-02 4.9359095334984379e-02 0 1 0 0 0 0 V -186 0 -8.9883035568030857e-07 -1.2060954288070936e-06 -2.5657505719073381e-05 2.5745504364624631e-05 0 2 0 P 604 22 5.4345814601653112e-03 -4.0129352811318367e-02 -1.5854942600179125e-01 1.6363929881969036e-01 0 1 0 0 0 0 P 605 22 -8.6123316325516244e-02 -6.8142818530368063e-02 -2.1447458100670733e+00 2.1475556475054223e+00 0 1 0 0 0 0 V -187 0 9.1386172641992285e-07 4.7714910870999392e-06 -7.0691761114799619e-04 7.0696196340521464e-04 0 2 0 P 606 22 1.5328222835042518e-02 7.0076309926399988e-02 -1.4552579405043414e+01 1.4552756198869060e+01 0 1 0 0 0 0 P 607 22 4.3971649036440184e-03 3.2914666786728018e-02 -7.0599153197035358e-01 7.0677206620148603e-01 0 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 608 310 -4.4967199808576908e-03 5.6760757842703596e-02 -8.1703878075159917e+00 8.1857287005023220e+00 4.9767000000000000e-01 2 0 0 -203 0 V -189 0 0 0 0 0 0 1 0 P 609 310 3.1241629116587499e-01 5.9887099499075613e-01 -6.0360412642782428e+01 6.0366243383562441e+01 4.9767000000000000e-01 2 0 0 -204 0 V -190 0 -1.1721393071759545e-06 -8.6928559839858129e-06 -1.5263394694648142e-02 1.5263484300007903e-02 0 2 0 P 610 22 4.5093267116126816e-02 3.6020332922153404e-02 -2.1641676946823985e+01 2.1641753901609174e+01 0 1 0 0 0 0 P 611 22 -4.8161835808989785e-02 -5.8777547496155526e-02 -1.8316692182227989e+01 1.8316849807240605e+01 0 1 0 0 0 0 V -191 0 0 0 0 0 0 1 0 P 612 130 1.2216799289959628e+00 6.4508744628643877e-01 -2.0797921449152736e+02 2.0798439839469668e+02 4.9767000000000000e-01 1 0 0 0 0 V -192 0 5.1452573293636509e-06 -4.2356163620188520e-06 -7.4933951558695195e-04 7.4938939258904834e-04 0 2 0 P 613 22 -7.0807305084964805e-03 -2.4529159276990089e-02 -8.2091378823920138e+00 8.2091775829569578e+00 0 1 0 0 0 0 P 614 22 1.3317145813458106e-01 -7.9269720904180316e-02 -1.0154329425670126e+01 1.0155512021111694e+01 0 1 0 0 0 0 V -193 0 1.1664880828797954e-04 -6.7709868749734272e-05 -2.6601804627830626e-03 2.6642105929331845e-03 0 2 0 P 615 22 7.0318409198100937e-02 -9.0911144686896303e-02 -1.3948556688488027e+00 1.3995827420413824e+00 0 1 0 0 0 0 P 616 22 2.0517666732114107e-01 -6.9002494775789167e-02 -4.8878199187159703e+00 4.8926109968906060e+00 0 1 0 0 0 0 V -194 0 3.4830139185460629e-06 -1.0554761533344733e-05 -5.6185837123307329e-04 5.6197635423833393e-04 0 2 0 P 617 22 1.2247058539818817e-01 -2.3650901472437696e-01 -1.5811293685693707e+01 1.5813536719329784e+01 0 1 0 0 0 0 P 618 22 3.3730480198622563e-02 -2.3683534656284075e-01 -9.3861009712102010e+00 9.3891490651937719e+00 0 1 0 0 0 0 V -195 0 0 0 0 0 0 2 0 P 619 -211 5.5943604875194686e-01 -9.3515548930096060e-02 -2.8798876007779404e+02 2.8798935245036517e+02 1.3957000000000000e-01 1 0 0 0 0 P 620 211 9.8652771114039903e-02 4.3495171121758580e-01 -1.0925722747335033e+02 1.0925822692277528e+02 1.3957000000000000e-01 1 0 0 0 0 V -196 0 -7.4109158991594334e-06 -1.2316627160217677e-05 -9.6397195461937410e-03 9.6397616012934458e-03 0 2 0 P 621 22 4.0997938789507395e-02 1.0422367268873908e-02 -1.1823758005995874e+01 1.1823833677833768e+01 0 1 0 0 0 0 P 622 22 -8.1694555667141150e-02 -7.8058414362714171e-02 -4.1112205445401599e+01 4.1112360716716175e+01 0 1 0 0 0 0 V -197 0 1.3238165458015232e-05 -1.4688686726820622e-05 -1.1392485312747143e-02 1.1392506694771083e-02 0 2 0 P 623 22 -7.2734407054828656e-03 -2.3001938696594039e-02 -4.0593036509883129e+00 4.0593753365574043e+00 0 1 0 0 0 0 P 624 22 1.8947359552674084e-01 -1.7916210013759976e-01 -1.5273829752453318e+02 1.5273852012506322e+02 0 1 0 0 0 0 V -198 0 1.6312861461908897e-05 5.2757444624906639e-05 2.3552344406575884e-04 2.4782483293339961e-04 0 2 0 P 625 22 -3.4611439123449148e-02 1.4736233207012155e-02 4.7108918875726602e-02 6.0285641117661368e-02 0 1 0 0 0 0 P 626 22 7.5525300998365755e-02 1.1758333606642217e-01 5.4360128125144946e-01 5.6127735121739986e-01 0 1 0 0 0 0 V -199 0 1.7953555056254423e-05 -3.8860311645140647e-05 1.2070189943681989e-04 1.3294321170962252e-04 0 2 0 P 627 22 5.2108978383551822e-02 -6.9710600866127487e-02 3.9027947609092523e-01 3.9986620632294134e-01 0 1 0 0 0 0 P 628 22 1.5825747998663500e-02 -7.7333515492352151e-02 6.6446252399125216e-02 1.0317960736507638e-01 0 1 0 0 0 0 V -200 0 1.1174559845602403e-04 -1.4787065909057255e-05 -7.7231354219700097e-06 1.2283142376800404e-04 0 2 0 P 629 22 3.1232612311069752e-01 -5.5681141193566396e-02 1.0533350736669543e-03 3.1725243289335681e-01 0 1 0 0 0 0 P 630 22 6.7962033409501373e-04 1.4261732982574783e-02 -2.2686274338204193e-02 2.6805334446953610e-02 0 1 0 0 0 0 V -201 0 -1.1154485496546789e-05 2.9523235628822404e-05 7.4194891102673765e-06 6.1355604359204430e-05 0 2 0 P 631 22 3.6411483449542321e-02 1.1323156302676832e-02 -3.5170221137375363e-02 5.1874410362943310e-02 0 1 0 0 0 0 P 632 22 -6.5315664294416986e-02 6.5179246430780394e-02 5.4396052314092329e-02 1.0711396115755813e-01 0 1 0 0 0 0 V -202 0 4.4964440811740964e+01 7.5005775332455357e+01 1.5875539936676016e+03 1.5900604459843328e+03 0 2 0 P 633 211 2.7051502487310380e-01 8.1343791245405295e-01 1.4704526272098068e+01 1.4730153844675961e+01 1.3957000000000000e-01 1 0 0 0 0 P 634 -211 9.8658218079868532e-01 1.2835424764370522e+00 2.9679650496570165e+01 2.9724097279341308e+01 1.3957000000000000e-01 1 0 0 0 0 V -203 0 -1.2618717471600049e-01 1.5928231460709468e+00 -2.2927781986723826e+02 2.2970831675203578e+02 0 2 0 P 635 -211 -5.7053546414652219e-02 -7.1670738619085683e-02 -6.7170822906825673e+00 6.7191566499549671e+00 1.3957000000000000e-01 1 0 0 0 0 P 636 211 5.2556826433794522e-02 1.2843149646178928e-01 -1.4533055168334243e+00 1.4665720505473550e+00 1.3957000000000000e-01 1 0 0 0 0 V -204 0 2.6039782426987394e+01 4.9915676142230957e+01 -5.0310180898559911e+03 5.0315040799454755e+03 0 2 0 P 637 111 3.9202126895635397e-01 4.9649191715437468e-01 -4.3870620606127133e+01 4.3875388965412725e+01 1.3497999999999999e-01 2 0 0 -205 0 P 638 111 -7.9604977790479009e-02 1.0237907783638146e-01 -1.6489792036655295e+01 1.6490854418149716e+01 1.3497999999999999e-01 2 0 0 -206 0 V -205 0 2.6039791476112278e+01 4.9915687602877917e+01 -5.0310191025324866e+03 5.0315050927320399e+03 0 2 0 P 639 22 3.1189130952407507e-01 3.7702896514269574e-01 -2.9608336807247824e+01 2.9612379767944010e+01 0 1 0 0 0 0 P 640 22 8.0129959432278880e-02 1.1946295201167896e-01 -1.4262283798879313e+01 1.4263009197468723e+01 0 1 0 0 0 0 V -206 0 2.6039779808587234e+01 4.9915679509726324e+01 -5.0310186322451145e+03 5.0315046223695435e+03 0 2 0 P 641 22 -5.2498772589820060e-03 3.5314692984887673e-03 -9.2750832292094447e+00 9.2750853872753645e+00 0 1 0 0 0 0 P 642 22 -7.4355100531496993e-02 9.8847608537892692e-02 -7.2147088074458496e+00 7.2157690308743563e+00 0 1 0 0 0 0 E 18 40 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 219 1 2 0 5 0.23 0.12 1.34 0.014 3.54 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 N 5 "0" "p1" "p 2" "3" "4" V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -3.1410233325201048e-01 4.1184766785753961e+00 7.1390134753684538e+02 7.1391329622395415e+02 0 3 0 0 -3 0 P 54 2101 3.1410233325201048e-01 -4.1184766785753961e+00 2.8196940829706500e+03 2.8196971677244655e+03 5.7933000000000001e-01 2 0 0 -10 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -7.6780376358711888e-01 -1.2934196904331927e+00 -1.5345071570435563e+01 1.5418614678912338e+01 0 3 0 0 -4 0 P 58 1 4.4388699579991542e-01 2.7387929144970635e-01 -6.2316178603176073e+00 6.2621088052152736e+00 3.3000000000000002e-01 2 0 0 -12 0 P 60 2203 3.2391676778720346e-01 1.0195403989834864e+00 -2.6457158393169570e+03 2.6457161680246991e+03 7.7132999999999996e-01 2 0 0 -14 0 V -3 0 0 0 0 0 0 1 0 P 5 2 -3.1020025913426502e-01 4.0673130941294575e+00 7.0503259466256543e+02 7.0504439491186349e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 6 0 P 6 -1 1.6285067613798643e+00 -1.9071492713409388e+00 -1.1991323138172993e+01 1.2250758475258626e+01 0 3 0 0 -5 0 P 13 1 -5.3412244936010811e-01 -1.4542908888535993e+00 2.1666373129408201e+00 2.6839273511293951e+00 3.3000000000000002e-01 2 0 0 -10 0 P 55 -1 4.5991111564601900e-01 -1.0793343291424645e-01 3.7323134613524288e-02 5.7746071434583257e-01 3.3000000000000002e-01 2 0 0 -12 0 P 56 21 -4.2425764127993371e-01 6.3379673462519126e-01 8.4509759231255621e-01 1.1383684761703687e+00 0 2 0 0 -12 0 P 57 21 -1.3518050980022980e+00 9.2098641435326034e-01 4.8286364260132686e+00 5.0981685665570602e+00 0 2 0 0 -12 0 P 59 1 -5.4993852608840832e-01 6.7233433814307830e-01 -2.3626900238629132e+00 2.5388324075416864e+00 3.3000000000000002e-01 2 0 0 -14 0 V -5 0 0 0 0 0 0 2 0 P 7 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033562e+01 0 3 0 0 -6 0 P 8 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033583e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 -15 1.0850533131842932e+01 2.2987430442201006e+01 2.9604459103757250e+02 2.9713921592274522e+02 1.7769999999999999e+00 2 0 0 -9 0 P 12 16 -3.3318084775284674e+01 -5.5337032829059574e+01 3.5497923972353345e+02 3.6080817979934341e+02 0 1 0 0 0 0 V -9 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 99 -16 3.7779982345953385e+00 8.8172237174551213e+00 1.0425857679604805e+02 1.0469893762728306e+02 0 1 0 0 0 0 P 100 213 7.0725348972475919e+00 1.4170206724745883e+01 1.9178601424152444e+02 1.9244027829546215e+02 7.5494588540254526e-01 2 0 0 -30 0 V -10 0 0 0 0 0 40 1 0 P 14 21 1.3929204664533565e+00 2.8407328198885767e-01 -3.9781910974353806e+01 3.9807302920780963e+01 0 2 0 0 -10 0 P 15 21 2.9568382149066377e+00 1.0292741166592101e+00 -7.2809186542315942e+01 7.2876470430380465e+01 0 2 0 0 -10 0 P 16 21 1.2650634913664724e+00 1.3778845565554025e+00 -4.8035446572798911e+01 4.8071853292093920e+01 0 2 0 0 -10 0 P 17 21 1.9942637464441160e+00 -1.5967219838243523e+00 -4.6774523100972125e+01 4.6844237855977383e+01 0 2 0 0 -10 0 P 18 21 2.8124816225447402e+00 -7.9134419118784982e-01 -3.4910351676410329e+01 3.5032398328928664e+01 0 2 0 0 -10 0 P 19 21 2.5183687095674840e+00 3.1396150922964710e+00 -8.5129580891689933e+00 9.4164653301040815e+00 0 2 0 0 -10 0 P 20 21 -4.8604162704783915e-01 4.4805287193126347e-01 -1.5205429797645378e+00 1.6580225549070144e+00 0 2 0 0 -10 0 P 21 21 -1.7909508627676911e+00 1.0886553103426566e-01 -2.6329276379508761e+00 3.1861677048424948e+00 0 2 0 0 -10 0 P 22 21 -1.5527611081126074e+00 -3.5633050659470139e-01 -2.0423671050618739e+00 2.5902320128969043e+00 0 2 0 0 -10 0 P 23 21 -8.1858222642740464e-01 -9.3508705088232957e-01 -2.7624164052919555e+00 3.0290937671813314e+00 0 2 0 0 -10 0 P 24 21 -4.3510641327334225e+00 -5.1953278002191912e+00 -1.6233808380677498e+01 1.7591467379938621e+01 0 2 0 0 -10 0 P 25 21 -2.5183687095674840e+00 -3.1396150922964710e+00 -2.2406827729750205e+00 4.6065196378840501e+00 0 2 0 0 -10 0 P 26 21 -3.9998383868616751e+00 -2.3334229478203432e+00 3.1757234065285198e+00 5.6150502160888900e+00 0 2 0 0 -10 0 P 27 21 -2.8360382924746732e+00 7.3613381622880194e+00 4.6561222236585903e-01 7.9024810963112770e+00 0 2 0 0 -10 0 P 28 21 -3.7287934837490419e-02 1.3170726275440601e+00 3.0109250586432484e-01 1.3515647943764730e+00 0 2 0 0 -10 0 P 29 21 -4.9995236867785348e-01 2.0507226444561018e+00 1.3306012526188160e-01 2.1149753502975703e+00 0 2 0 0 -10 0 P 30 21 -1.5127652223692316e+00 3.3862903404124922e+00 -2.7622519106447081e+00 4.6244412100751289e+00 0 2 0 0 -10 0 P 31 21 -1.0031830177760117e+00 1.8935131419854179e+00 -2.3617684265267416e+00 3.1889995745632009e+00 0 2 0 0 -10 0 P 32 21 1.3299732528289634e+00 3.2515719337466917e+00 -6.4332977281482917e-01 3.5714733780555656e+00 0 2 0 0 -10 0 P 33 21 3.9998383868616751e+00 2.3334229478203432e+00 9.0305395860629323e-01 4.7179525460289744e+00 0 2 0 0 -10 0 P 34 21 2.5993650469852851e+00 4.8539935980158577e-01 1.1857519188066898e+00 2.8979852999865874e+00 0 2 0 0 -10 0 P 35 21 1.5455237168893123e+00 9.4820344049031013e-01 3.2730835552882112e+00 3.7417655303243058e+00 0 2 0 0 -10 0 P 36 21 4.3510641327334225e+00 5.1953278002191912e+00 2.0066857517307266e+01 2.1180225698957997e+01 0 2 0 0 -10 0 P 37 21 3.7287934837490419e-02 -1.3170726275440601e+00 2.4420841180840294e-01 1.3400404638324328e+00 0 2 0 0 -10 0 P 38 21 8.8522632601036022e-01 -3.3748367869032077e+00 2.5292441676367368e+00 4.3093183969186377e+00 0 2 0 0 -10 0 P 39 21 1.5127652223692316e+00 -3.3862903404124922e+00 1.0104000223774685e+01 1.0763189183955639e+01 0 2 0 0 -10 0 P 40 21 4.1823331179364909e-01 -2.1216008959167789e+00 8.4439069477434519e+00 8.7164025840250687e+00 0 2 0 0 -10 0 P 41 21 1.0885105597808160e+00 -8.9890075088024568e-01 9.3956793709183373e+00 9.5011403862793138e+00 0 2 0 0 -10 0 P 42 21 1.0031830177760117e+00 -1.8935131419854179e+00 2.3484295314524928e+01 2.3581855198559829e+01 0 2 0 0 -10 0 P 43 21 4.9995236867785348e-01 -2.0507226444561018e+00 2.3541942986559114e+01 2.3636380757591283e+01 0 2 0 0 -10 0 P 44 21 -1.9756779591267767e-01 -2.6145170257635817e+00 5.6547783834784617e+01 5.6608538127543248e+01 0 2 0 0 -10 0 P 45 21 -2.4698490047492405e+00 -2.1129646240121569e+00 7.3367288852546594e+01 7.3439252768404415e+01 0 2 0 0 -10 0 P 46 21 -7.1751238809425899e-01 -5.2235835518124177e-02 2.1769629426330660e+01 2.1781513215783306e+01 0 2 0 0 -10 0 P 47 21 -1.0885105597808160e+00 8.9890075088024568e-01 8.7800519323714141e+01 8.7811867485622855e+01 0 2 0 0 -10 0 P 48 21 2.4698490047492405e+00 2.1129646240121569e+00 1.1214366175799709e+02 1.1219075561783443e+02 0 2 0 0 -10 0 P 49 21 5.7548395374757400e-01 3.7837025068570346e-01 3.0029956120090755e+01 3.0037852959261272e+01 0 2 0 0 -10 0 P 50 21 2.0173726863664050e+00 -5.9209092629134409e-02 8.5980073616271000e+01 8.6003757809363933e+01 0 2 0 0 -10 0 P 51 21 2.8360382924746732e+00 -7.3613381622880194e+00 5.7465038669001149e+02 5.7470453220391062e+02 0 2 0 0 -10 0 P 52 21 1.9756779591267767e-01 2.6145170257635817e+00 8.9980556439700217e+02 8.9980938450991914e+02 0 2 0 0 -10 0 P 53 21 -6.3314715763410501e-01 -4.9505380802813853e-01 1.3344525639164242e+03 1.3344528059458357e+03 0 2 0 0 -10 0 P 101 92 1.3573730350144873e+01 -7.0434923760203176e+00 5.9216311885040304e+03 6.5266868286012177e+03 2.7443926776306075e+03 2 0 0 -11 0 V -11 0 0 0 0 0 0 91 0 P 102 223 -2.0748164925503010e-01 -5.8626181783009357e-01 9.5456731384514981e-01 1.3810122684773649e+00 7.8054120659989479e-01 2 0 0 -31 0 P 103 -213 -4.9257000459653066e-01 -1.2748800340129449e-01 -6.1113728432809510e-02 9.6611792377233841e-01 8.1900583294121942e-01 2 0 0 -32 0 P 104 223 3.3086974401874941e-01 -7.1401668620527645e-02 -3.9660042157565983e-01 9.3898572672508673e-01 7.8091568995034399e-01 2 0 0 -33 0 P 105 111 1.1391885908489846e-01 -6.4826447391926029e-02 -1.2379388613706153e-01 2.2522100564019076e-01 1.3497999999999999e-01 2 0 0 -34 0 P 106 213 2.9852534732093487e-02 -5.0798993676476556e-01 -2.7217211611674497e+00 2.9457142743137661e+00 1.0052470129600175e+00 2 0 0 -35 0 P 107 -211 -1.1388382351648388e-01 2.1432779589139200e-01 -2.8767179819663075e-01 4.0142343943531583e-01 1.3957000000000000e-01 1 0 0 0 0 P 108 111 -1.9599035438555143e-01 -7.1282012524033794e-02 1.0610699831870526e-01 2.7013263374471486e-01 1.3497999999999999e-01 2 0 0 -36 0 P 109 223 8.2316738601997497e-01 -2.2080300031358368e-03 -2.6921217906279531e+00 2.9196354496806687e+00 7.7404263619954250e-01 2 0 0 -37 0 P 110 2212 7.4955613574521962e-01 6.4919700042379916e-02 -2.2646869845526815e+01 2.2678781126004473e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 -2112 4.1350142857250616e-01 7.3610295881520099e-02 -2.0186093444576702e+01 2.0212312144956904e+01 9.3957000000000002e-01 1 0 0 0 0 P 112 -211 1.3917633448255307e+00 1.0962910634503154e+00 -3.7727789733950814e+01 3.7769623473075590e+01 1.3957000000000000e-01 1 0 0 0 0 P 113 113 1.6066471334474972e+00 -6.7439777317844563e-02 -5.9877604437566710e+01 5.9907691672478400e+01 1.0090318171599266e+00 2 0 0 -38 0 P 114 223 6.2132283911471697e-01 1.0830526508889199e-01 -1.7737943734308050e+01 1.7765503279164623e+01 7.6202804389301848e-01 2 0 0 -39 0 P 115 2212 2.1451243362106545e+00 2.8214099617659722e-04 -3.4495106316809157e+01 3.4574474238927657e+01 9.3827000000000005e-01 1 0 0 0 0 P 116 -2212 1.5621157128965870e+00 -4.6964766713982103e-01 -2.3072626809080184e+01 2.3149238278952364e+01 9.3827000000000005e-01 1 0 0 0 0 P 117 213 7.9679418597883689e-02 -4.1196652321288030e-01 -7.5954324935795370e+00 7.6461235174999853e+00 7.7236316221474233e-01 2 0 0 -40 0 P 118 -211 5.8385464407250764e-01 7.5976102923402927e-02 -6.1976821347634061e+00 6.2271504110697329e+00 1.3957000000000000e-01 1 0 0 0 0 P 119 211 1.1227002128604000e+00 6.7572817127988472e-01 -8.4617806861184519e+00 8.5637769993318624e+00 1.3957000000000000e-01 1 0 0 0 0 P 120 223 3.3063977614282025e-01 4.1163687917442521e-01 -1.1149629123163751e+00 1.4658424435107005e+00 7.9169703264075575e-01 2 0 0 -41 0 P 121 -211 9.1955776670667111e-01 1.7587314188637599e+00 -3.8793537358085524e+00 4.3597692464671640e+00 1.3957000000000000e-01 1 0 0 0 0 P 122 223 -1.0617299367722848e+00 1.1318728789250672e-01 -2.6333877711447315e+00 2.9473095837641861e+00 7.8218975226901910e-01 2 0 0 -42 0 P 123 211 -3.2954695847980436e-01 2.8756788992051779e-01 -6.0211144176106335e-01 7.5717531811081451e-01 1.3957000000000000e-01 1 0 0 0 0 P 124 223 -1.0267775286850447e+00 -6.3605273017002473e-01 -3.1919891705004231e+00 3.5039545824899605e+00 7.9376802819911751e-01 2 0 0 -43 0 P 125 2114 -1.2592359502665480e+00 -1.5362654268390121e+00 -4.5371030949712834e+00 5.0952900236058127e+00 1.1961978473958392e+00 2 0 0 -44 0 P 126 -213 -1.4238617093304717e+00 -7.2563517196796889e-01 -4.1561726629699347e+00 4.5211526483207001e+00 7.8302074998325488e-01 2 0 0 -45 0 P 127 -1114 -3.2660167272524698e+00 -3.0182597803527762e+00 -8.0627747388887823e+00 9.2833433326579851e+00 1.1812576253952995e+00 2 0 0 -46 0 P 128 -213 -2.5131127353271937e-01 -1.2464200136185575e+00 -1.8013930339428830e+00 2.3056037788013777e+00 6.7384843661741511e-01 2 0 0 -47 0 P 129 211 -3.5890312335702512e-01 -9.0730774541786768e-02 -4.0876101696176864e-01 5.6886631056163073e-01 1.3957000000000000e-01 1 0 0 0 0 P 130 -211 -8.4695249730381494e-01 -7.5548711333791696e-01 -9.7897652699873472e-01 1.5053119731216289e+00 1.3957000000000000e-01 1 0 0 0 0 P 131 213 -3.8027283316423138e-01 -2.0152358516946922e-01 3.1706069617718452e-01 1.0499592183931830e+00 9.0369668152879434e-01 2 0 0 -48 0 P 132 223 -1.7520779495751202e+00 -1.4734533106028989e+00 -6.8994641425270486e-01 2.5171249411851924e+00 7.8679737867026334e-01 2 0 0 -49 0 P 133 313 -7.0050574067036986e-01 -9.5920825624524553e-01 4.9194533517634220e-01 1.5447374357767283e+00 8.5639638084657499e-01 2 0 0 -50 0 P 134 333 -1.1135052236137697e+00 -2.4250958763589278e-01 5.1647240051368815e-01 1.6213477009634201e+00 1.0311740123841930e+00 2 0 0 -51 0 P 135 -323 -9.1455740622984327e-01 -2.2264069624092109e-01 4.9963951575127846e-01 1.4086411127513092e+00 9.2121984885290742e-01 2 0 0 -52 0 P 136 323 -1.1631054682627238e+00 1.4982581655588041e+00 5.3966262060463532e-01 2.1573167774586151e+00 8.7475029194638099e-01 2 0 0 -53 0 P 137 -311 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521394e-01 4.9767000000000000e-01 2 0 0 -54 0 P 138 111 -4.2683779844818148e-01 1.0831703099617001e+00 -1.4210131280919769e-01 1.1806188250526557e+00 1.3497999999999999e-01 2 0 0 -55 0 P 139 221 -7.8495502539906492e-01 1.3662062215293831e+00 2.1685209199656871e-01 1.6820820919170760e+00 5.4744999999999999e-01 2 0 0 -56 0 P 140 -211 -7.8445825130098693e-02 4.5841878119012303e-01 -4.6933439479007230e-02 4.8783609857154864e-01 1.3957000000000000e-01 1 0 0 0 0 P 141 221 -6.5523912092518888e-01 3.2243594649372209e+00 4.2669822350934122e-01 3.3626782690538626e+00 5.4744999999999999e-01 2 0 0 -57 0 P 142 113 -1.3072427183672559e+00 2.5331067891371437e+00 -1.0519254502916864e+00 3.1567755117109670e+00 8.5625402099480863e-01 2 0 0 -58 0 P 143 323 -5.7057868564338654e-01 1.2046694907051487e+00 -9.0184918985162799e-01 1.7650583916806721e+00 7.2478310304530957e-01 2 0 0 -59 0 P 144 -323 -5.9007929479415289e-01 2.5822897905475206e+00 -1.5740710791246635e+00 3.2148786163000507e+00 9.1724076386514519e-01 2 0 0 -60 0 P 145 2212 -1.5764521534060036e-01 2.0300708033813919e+00 -8.7336311190774019e-01 2.4060659173851646e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -2212 7.2365141780465592e-01 1.2430021913724214e+00 -1.0531920479450281e+00 2.0145197703179702e+00 9.3827000000000005e-01 1 0 0 0 0 P 147 211 2.2241991878269509e+00 1.1843112947233121e+00 7.9923449495463117e-01 2.6472458957876688e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 6.4749064233649767e-01 4.5496979398408177e-01 8.4575817056419178e-01 1.1666311813625316e+00 1.3957000000000000e-01 1 0 0 0 0 P 149 211 7.4930102238880791e-01 6.3840903930251058e-01 -4.2849557911211827e-01 1.0826386146053979e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 113 1.3435253011165857e+00 9.9939041499436132e-01 1.7611070260073296e+00 2.5002366990309786e+00 5.8808516203516847e-01 2 0 0 -61 0 P 151 313 1.5062269049378567e+00 7.7912652310414487e-01 2.4412884596394493e+00 3.1092733123682219e+00 9.1210391933894797e-01 2 0 0 -62 0 P 152 221 1.7561036050702450e-01 1.9617870342530644e-01 2.9124035317355462e-01 6.7368206760436955e-01 5.4744999999999999e-01 2 0 0 -63 0 P 153 -313 9.5917686540083469e-01 2.0310537413449883e-01 1.6350355071088831e+00 2.1224962192571186e+00 9.3293999760513857e-01 2 0 0 -64 0 P 154 313 1.7407526781137117e+00 1.8494300859639754e+00 6.6863027514660720e+00 7.2181922776954472e+00 9.7213360413609928e-01 2 0 0 -65 0 P 155 -323 9.0427674707556271e-01 9.1029036267049834e-01 2.0362099856102240e+00 2.5725590348822687e+00 9.0860547146891735e-01 2 0 0 -66 0 P 156 321 8.6382831146018524e-01 6.8773613355695284e-01 2.2142691125827949e+00 2.5230554896827417e+00 4.9359999999999998e-01 1 0 0 0 0 P 157 -311 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 2 0 0 -67 0 P 158 -213 -1.6602513881248579e-01 -1.9784274193529106e-01 2.2646584205545799e+00 2.4207488753579938e+00 8.1525533331837119e-01 2 0 0 -68 0 P 159 331 5.1620771162131607e-01 -6.4002033012468196e-01 9.4032750164386014e-01 1.5740156532052576e+00 9.5771240029414251e-01 2 0 0 -69 0 P 160 211 -8.4799439646089533e-02 -9.8831134457310066e-01 1.0927606558186655e+00 1.4824155606918801e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 113 5.0126111132881723e-01 -4.3179711117534747e-01 1.5371815355241629e+00 1.9236481447149212e+00 9.4856927240911548e-01 2 0 0 -70 0 P 162 2114 6.4711665824334352e-01 -1.0448010103200167e+00 2.6382163035971300e+00 3.1323556191604474e+00 1.1580575718756674e+00 2 0 0 -71 0 P 163 221 -1.3981216061220206e-01 -1.4326992519303943e+00 1.7533934277153054e+00 2.3337233344148127e+00 5.4744999999999999e-01 2 0 0 -72 0 P 164 -2114 7.0262469379130088e-01 -1.5351082564629341e+00 3.3250980913109447e+00 3.9095704221752330e+00 1.1739781725917031e+00 2 0 0 -73 0 P 165 221 5.6327815323546571e-01 -1.6312680393081156e+00 6.6999903819016007e+00 6.9403090935530001e+00 5.4744999999999999e-01 2 0 0 -74 0 P 166 -213 7.0423490553950796e-01 -1.0006986557040105e+00 3.9967597953351519e+00 4.2482885757863542e+00 7.5929069521581427e-01 2 0 0 -75 0 P 167 211 7.6418744823686524e-01 -1.0704977293789804e+00 8.4438415583385531e+00 8.5468057127720858e+00 1.3957000000000000e-01 1 0 0 0 0 P 168 -211 5.2372258404576174e-03 -2.3482517504405259e-01 4.8057016549318456e+00 4.8134622126369342e+00 1.3957000000000000e-01 1 0 0 0 0 P 169 2212 2.0003033394174879e-01 -1.5010801108721556e+00 1.4698718944362916e+01 1.4806280519834349e+01 9.3827000000000005e-01 1 0 0 0 0 P 170 213 6.3159966958329494e-01 -9.1749176770289220e-01 1.2733709180813570e+01 1.2804106985966232e+01 7.4638925508959320e-01 2 0 0 -76 0 P 171 -2212 4.7361667833955118e-01 -1.5840762027944670e+00 3.6337015602613633e+01 3.6386709986913459e+01 9.3827000000000005e-01 1 0 0 0 0 P 172 -213 -6.0952058896008998e-01 -1.8069308779011817e+00 1.8612817522071094e+01 1.8724460299567959e+01 7.2933041503898699e-01 2 0 0 -77 0 P 173 213 -4.7321050360378542e-01 -1.4611884798605018e-01 2.9941318100501928e+01 2.9956088506777341e+01 7.9964375316480341e-01 2 0 0 -78 0 P 174 223 -1.7560572926702317e-01 -1.3404016943138539e+00 4.6968532063610319e+01 4.6994150414073992e+01 7.6135067869491690e-01 2 0 0 -79 0 P 175 113 -4.3134179050242744e-01 1.0973587207868786e-02 1.2871076482854550e+01 1.2890720525938937e+01 5.6558791582026013e-01 2 0 0 -80 0 P 176 -213 -1.2501268431343457e+00 -1.1745115211022394e+00 6.2507076325949292e+01 6.2535966680650212e+01 8.1868396113299058e-01 2 0 0 -81 0 P 177 213 -4.6281070091042303e-01 5.8393261537029106e-01 3.1213144798142149e+01 3.1232240006769871e+01 7.9827101069615036e-01 2 0 0 -82 0 P 178 223 1.0031372976855530e+00 7.8370618483776744e-01 5.2661003312281423e+01 5.2682258696146789e+01 7.8653140398757571e-01 2 0 0 -83 0 P 179 -213 1.8609393907630062e-01 4.7087974756006179e-01 4.7345711458362551e+01 4.7354375164417895e+01 7.5106259598804104e-01 2 0 0 -84 0 P 180 213 1.3380931368508377e+00 6.3715354177187031e-02 6.1408852998635467e+01 6.1428565438091873e+01 7.9175266634869734e-01 2 0 0 -85 0 P 181 113 8.2448148830641443e-01 4.8703237968489921e-01 1.1982262412103316e+02 1.1982867466157809e+02 7.3010248356707108e-01 2 0 0 -86 0 P 182 223 1.3736434430544133e+00 -3.2854396964776109e+00 2.0083136786729793e+02 2.0086443786783431e+02 7.7657594818138642e-01 2 0 0 -87 0 P 183 113 8.1937534954823310e-01 2.6671720877831295e-01 1.0843040649543882e+02 1.0843677941065161e+02 7.9972630025099722e-01 2 0 0 -88 0 P 184 2112 4.1284275122129448e-02 2.1785557114613488e-01 6.8470889871054808e+01 6.8477695032472198e+01 9.3957000000000002e-01 1 0 0 0 0 P 185 -211 4.9692799164784396e-01 -4.5143707676763412e-01 6.2609785685328688e+01 6.2613540677802696e+01 1.3957000000000000e-01 1 0 0 0 0 P 186 -2112 1.4651936158971004e+00 -2.7185979355670793e+00 2.5540781641928450e+02 2.5542821505644039e+02 9.3957000000000002e-01 1 0 0 0 0 P 187 221 -1.5613844695571832e-01 5.6548206245058699e-02 8.2576614295373119e+01 8.2578595936862271e+01 5.4744999999999999e-01 2 0 0 -89 0 P 188 223 1.0600406665999704e-01 2.5492099931411084e-02 3.7240084764324325e+02 3.7240161638693974e+02 7.4878267209803262e-01 2 0 0 -90 0 P 189 2212 -2.6959746734500439e-01 1.3575454822855444e+00 9.0043408955781308e+02 9.0043564212048580e+02 9.3827000000000005e-01 1 0 0 0 0 P 190 -2112 1.9580022939934716e-01 -4.8950229014925795e-01 5.9384678292044839e+02 5.9384776022729341e+02 9.3957000000000002e-01 1 0 0 0 0 P 191 113 -1.5736385716531065e-01 -1.4804920438155920e+00 9.6701055914748656e+02 9.6701203983749474e+02 8.0440528513598242e-01 2 0 0 -91 0 P 192 2112 -1.0790175788540123e-01 -2.3833877274373352e+00 1.9804652392727123e+03 1.9804668992283500e+03 9.3957000000000002e-01 1 0 0 0 0 V -12 0 0 0 0 0 0 1 0 P 193 92 -8.7226462783629732e-01 1.7207290075139114e+00 -5.2056070737825788e-01 1.3076106562288535e+01 1.2922531697774431e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 8 0 P 194 211 2.9311158783897240e-03 5.3752555149700273e-02 -2.1995324781658038e-01 2.6600215177790593e-01 1.3957000000000000e-01 1 0 0 0 0 P 195 331 3.1759291946618406e-01 3.9967604905194953e-01 1.2655854117268379e+00 1.6672042491491539e+00 9.5773554143321526e-01 2 0 0 -92 0 P 196 -321 -6.0173090597412993e-01 1.0800519107475366e+00 2.5983670579928191e+00 2.9195452627380361e+00 4.9359999999999998e-01 1 0 0 0 0 P 197 321 -6.5221812347676422e-01 -4.0707566782054477e-01 1.5727573506906443e+00 1.8188748511303765e+00 4.9359999999999998e-01 1 0 0 0 0 P 198 -211 -4.0663638488017689e-01 4.2709903090390200e-01 -1.2559795267689029e+00 1.3945361552394793e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 111 2.2986081111496354e-01 -4.9818705056104168e-02 1.6232187692062083e-01 3.1604728758040185e-01 1.3497999999999999e-01 2 0 0 -93 0 P 200 211 -1.2037434346537397e-01 4.5842844064854220e-02 -2.6226988656582737e+00 2.6295666323069034e+00 1.3957000000000000e-01 1 0 0 0 0 P 201 -211 3.5831028350061028e-01 1.7120099047261800e-01 -2.0209607644654231e+00 2.0643299723662785e+00 1.3957000000000000e-01 1 0 0 0 0 V -14 0 0 0 0 0 0 1 0 P 202 92 -2.2602175830120486e-01 1.6918747371265646e+00 -2.6480785293408198e+03 2.6482550004322406e+03 3.0524354744471182e+01 2 0 0 -15 0 V -15 0 0 0 0 0 0 7 0 P 203 -213 -5.4948297913438748e-01 9.5903886946949701e-01 -8.9799152358473773e+00 9.0973357600802771e+00 9.4918554093485974e-01 2 0 0 -94 0 P 204 211 2.9889740077264110e-01 -2.5277391376300806e-01 -1.7162699519135116e+00 1.7658699387012955e+00 1.3957000000000000e-01 1 0 0 0 0 P 205 -211 -4.2451348704537578e-01 3.4001512028456304e-02 -1.8315587197478209e+02 1.8315642027084709e+02 1.3957000000000000e-01 1 0 0 0 0 P 206 2224 3.9747452716477527e-01 -1.8937081086197274e-04 -1.3634046587949891e+02 1.3634617772235450e+02 1.1830288337409314e+00 2 0 0 -95 0 P 207 -2214 -3.5552241237768090e-01 6.7454950182330650e-02 -3.9843850756557049e+02 3.9844071052458770e+02 1.2745767545025275e+00 2 0 0 -96 0 P 208 2114 2.1613866127831893e-01 7.8391954525838436e-01 -1.1219864055512307e+03 1.1219873516270043e+03 1.2090175490814592e+00 2 0 0 -97 0 P 209 211 1.9098653104050403e-01 1.0042314476176620e-01 -7.9746109318197693e+02 7.9746113458866546e+02 1.3957000000000000e-01 1 0 0 0 0 V -16 0 0 0 0 0 9 1 0 P 61 1 -8.6065710259298001e-01 3.7912432933034372e+00 -4.1189328693785676e+01 4.1372394837644798e+01 0 2 0 0 -16 0 P 62 21 -8.8522632601036022e-01 3.3748367869032077e+00 -1.7300727107672188e+01 1.7649031345675610e+01 0 2 0 0 -16 0 P 63 21 -1.5621497140726917e-01 4.8573435420028033e-01 -2.0282804347019647e+00 2.0914737631481128e+00 0 2 0 0 -16 0 P 64 21 -1.5358120632735701e+00 1.2830740326538903e+00 -9.9218846240528435e+00 1.0121699074759315e+01 0 2 0 0 -16 0 P 65 21 -2.8124816225447402e+00 7.9134419118784982e-01 -1.1404262529845585e+01 1.1772573310696293e+01 0 2 0 0 -16 0 P 66 21 -2.5993650469852851e+00 -4.8539935980158577e-01 -8.2753623994528347e+00 8.6875735408836903e+00 0 2 0 0 -16 0 P 67 21 -5.7548395374757400e-01 -3.7837025068570346e-01 -3.1084297450257559e+00 3.1838155265947474e+00 0 2 0 0 -16 0 P 68 21 -1.3299732528289634e+00 -3.2515719337466917e+00 -3.5154601680047463e+01 3.5329698104800805e+01 0 2 0 0 -16 0 P 69 -1 8.6065710259298001e-01 -3.7912432933034372e+00 -1.6244622152453920e+02 1.6249273566518880e+02 0 2 0 0 -16 0 P 210 92 -9.8945572367977626e+00 1.8196478207112481e+00 -2.9082909873912354e+02 2.9270099516939217e+02 3.1481653683343659e+01 2 0 0 -17 0 V -17 0 0 0 0 0 0 14 0 P 211 -213 -4.0151496016342902e-01 3.7692035091442104e+00 -3.4327358400619815e+01 3.4544630232420268e+01 7.7190269688648883e-01 2 0 0 -98 0 P 212 331 -1.9103546610924991e+00 2.0569511421273083e+00 -1.7160035389899534e+01 1.7414493202784929e+01 9.5773482498096330e-01 2 0 0 -99 0 P 213 211 -7.3583794373030598e-01 1.5449679177345517e+00 -1.1611060732749708e+01 1.1737316323196051e+01 1.3957000000000000e-01 1 0 0 0 0 P 214 -213 -5.2657313727511046e-01 7.3211451499706859e-01 -2.6863684280968041e+00 2.9409800321932509e+00 7.8709420421889431e-01 2 0 0 -100 0 P 215 111 -1.9886352915998822e+00 2.8516872474544769e-01 -1.0273752022868901e+01 1.0469202059009671e+01 1.3497999999999999e-01 2 0 0 -101 0 P 216 211 -1.2236169289295014e+00 1.1387515839325153e+00 -6.8336246496330801e+00 7.0364692279327503e+00 1.3957000000000000e-01 1 0 0 0 0 P 217 223 -1.2950663359447676e+00 -7.6465123341031382e-01 -7.8257531534250715e+00 8.0066894906056429e+00 7.7638640983667129e-01 2 0 0 -102 0 P 218 223 -1.0194062682557754e+00 -1.0740229285285248e-01 -5.4002943803493828e+00 5.5515999730020722e+00 7.7869022950995559e-01 2 0 0 -103 0 P 219 111 -4.3302487932554351e-01 -1.1282303182206530e+00 -9.0705608394909572e+00 9.1517051821162863e+00 1.3497999999999999e-01 2 0 0 -104 0 P 220 223 -2.3738449997160477e-02 7.3895439371345073e-02 -7.8045195328321135e+00 7.8437923405874406e+00 7.8008274813128187e-01 2 0 0 -105 0 P 221 2112 -4.1253808300065847e-01 -1.2531578894324771e+00 -1.9164148162278675e+01 1.9232471472393811e+01 9.3957000000000002e-01 1 0 0 0 0 P 222 -2214 -1.6527631246943678e-01 -1.3041024854301384e+00 -2.7767373839325042e+01 2.7821954935539765e+01 1.1428591122286682e+00 2 0 0 -106 0 P 223 321 -1.4905537012243913e-01 -1.6963072750784520e+00 -6.0114990459445579e+01 6.0141128978213231e+01 4.9359999999999998e-01 1 0 0 0 0 P 224 -311 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -107 0 V -18 0 0 0 0 0 11 1 0 P 70 1 -5.2814132470876707e-01 -3.7790259024332915e+00 -1.9544912358720660e+02 1.9548636750688598e+02 0 2 0 0 -18 0 P 71 21 -1.2650634913664724e+00 -1.3778845565554025e+00 -8.5462912591169356e+01 8.5483380724291877e+01 0 2 0 0 -18 0 P 72 21 4.4236034888581199e-01 -1.4189626612674393e+00 -1.6214455942675107e+02 1.6215137153107139e+02 0 2 0 0 -18 0 P 73 21 1.5358120632735701e+00 -1.2830740326538903e+00 -1.7580058451842277e+02 1.7581197488989787e+02 0 2 0 0 -18 0 P 74 21 1.7909508627676911e+00 -1.0886553103426566e-01 -6.7699524182289360e+02 6.7699761949916399e+02 0 2 0 0 -18 0 P 75 21 -2.9568382149066377e+00 -1.0292741166592101e+00 -3.3213907999518472e+02 3.3215383598188970e+02 0 2 0 0 -18 0 P 76 21 -1.3929204664533565e+00 -2.8407328198885767e-01 -8.3922590765229089e+01 8.3934630313140232e+01 0 2 0 0 -18 0 P 77 21 -1.9942637464441160e+00 1.5967219838243523e+00 -2.9782333053268803e+02 2.9783428751331968e+02 0 2 0 0 -18 0 P 78 21 -4.1823331179364909e-01 2.1216008959167789e+00 -4.1139307264994937e+02 4.1139875587297439e+02 0 2 0 0 -18 0 P 79 21 -4.4236034888581199e-01 1.4189626612674393e+00 -1.5106009013227225e+02 1.5106740207100455e+02 0 2 0 0 -18 0 P 80 -1 5.2814132470876707e-01 3.7790259024332915e+00 -1.1688392700829701e+02 1.1694619430708735e+02 0 2 0 0 -18 0 P 225 92 -4.7005563049229702e+00 -3.6484863915049548e-01 -2.6890745130300643e+03 2.6892658202107268e+03 3.1728327748096785e+01 2 0 0 -19 0 V -19 0 0 0 0 0 0 18 0 P 226 -211 1.9949917944299295e-01 -1.3749025677242002e+00 -5.6317918871676987e+01 5.6335225417273548e+01 1.3957000000000000e-01 1 0 0 0 0 P 227 213 -1.3609081538419352e+00 -4.4320243975493412e+00 -3.0800857953830581e+02 3.0804434845210523e+02 7.3527737181296549e-01 2 0 0 -108 0 P 228 2114 6.9668643918452122e-01 -9.2490570707507003e-01 -1.2951269679632762e+02 1.2952376562880053e+02 1.2354791157414682e+00 2 0 0 -109 0 P 229 211 -7.2906435289257290e-02 1.1685305944877628e-01 -8.9625240121129135e+00 8.9646687857616740e+00 1.3957000000000000e-01 1 0 0 0 0 P 230 -2224 7.7062045499559184e-01 -1.2284044122682334e+00 -2.4708811747772657e+02 2.4709520529528140e+02 1.1831516997934051e+00 2 0 0 -110 0 P 231 321 4.5803316039516617e-01 3.0198686173057687e-01 -1.1914265633812468e+02 1.1914494194343779e+02 4.9359999999999998e-01 1 0 0 0 0 P 232 -321 -1.6491069397593583e-01 -7.6302358422499372e-01 -1.8525743880335440e+02 1.8525974110277082e+02 4.9359999999999998e-01 1 0 0 0 0 P 233 2212 6.1225979015057819e-01 3.0418751195681504e-01 -2.6175878723717318e+02 2.6176136162268421e+02 9.3827000000000005e-01 1 0 0 0 0 P 234 -211 -6.0720435157590313e-01 -3.6692773639914572e-01 -7.5939756336117725e+01 7.5943198545110960e+01 1.3957000000000000e-01 1 0 0 0 0 P 235 -1114 -8.7484216173256701e-01 -3.5010515751792939e-02 -1.5931011873468503e+02 1.5931750180844546e+02 1.2593159573434576e+00 2 0 0 -111 0 P 236 -213 -2.1712612685434944e+00 -3.2823806221932161e-01 -2.1291580519543123e+02 2.1292812390016576e+02 6.5094539229835768e-01 2 0 0 -112 0 P 237 211 -5.1053935921726790e-01 9.2482005992371052e-01 -1.0321182185381051e+02 1.0321732215451127e+02 1.3957000000000000e-01 1 0 0 0 0 P 238 1114 -5.2623977286571588e-01 9.2029791209866507e-01 -2.2125572499479415e+02 2.2126133210857773e+02 1.1650609189207797e+00 2 0 0 -113 0 P 239 -1114 -1.2537659450274838e+00 1.4775347844706543e+00 -2.8708343490117772e+02 2.8709237032908857e+02 1.1728036628335905e+00 2 0 0 -114 0 P 240 313 1.0067805419488426e-01 1.0460617989003338e+00 -4.2788632014641685e+01 4.2810592006916174e+01 8.8055490487576349e-01 2 0 0 -115 0 P 241 -313 -3.9173806062460098e-01 1.4220257261643379e+00 -1.5962915455210754e+02 1.5963842383939780e+02 8.8530618012404305e-01 2 0 0 -116 0 P 242 -211 7.6871957408836122e-01 1.9251793035913369e+00 -8.1537911820692656e+01 8.1564378186794968e+01 1.3957000000000000e-01 1 0 0 0 0 P 243 211 -3.7273675468090528e-01 6.4964132577639710e-01 -2.9353433551803132e+01 2.9363319083602732e+01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 7 1 0 P 81 2 1.8488247010320389e+00 -1.6008342585849420e+00 7.0399918993020938e+00 7.4526712688031873e+00 0 2 0 0 -20 0 P 82 21 1.5527611081126074e+00 3.5633050659470139e-01 1.4438586644885602e+01 1.4526211577375086e+01 0 2 0 0 -20 0 P 83 21 7.1751238809425899e-01 5.2235835518124177e-02 1.0831306326871731e+01 1.0855171548902975e+01 0 2 0 0 -20 0 P 84 21 6.3314715763410501e-01 4.9505380802813853e-01 6.3261757921053512e+00 6.3770254624458786e+00 0 2 0 0 -20 0 P 85 21 -1.5455237168893123e+00 -9.4820344049031013e-01 1.4517992048568290e+01 1.4630783521271754e+01 0 2 0 0 -20 0 P 86 21 -2.0173726863664050e+00 5.9209092629134409e-02 6.9514804891213959e+00 7.2385343311324162e+00 0 2 0 0 -20 0 P 87 -2 -1.8488247010320389e+00 1.6008342585849420e+00 4.9193045353882958e-01 2.4945578104594666e+00 0 2 0 0 -20 0 P 244 92 -6.5947574941474607e-01 1.4625802279788491e-02 6.0597463654393287e+01 6.3574955520390759e+01 1.9216847969841190e+01 2 0 0 -21 0 V -21 0 0 0 0 0 0 11 0 P 245 111 2.4054182034315141e-01 1.6817783133907804e-01 1.5024392890041587e+00 1.5367783079648263e+00 1.3497999999999999e-01 2 0 0 -117 0 P 246 223 1.5682006719996129e+00 -1.1011446231514121e+00 9.9834273520692971e+00 1.0195555671111880e+01 7.8023132463450573e-01 2 0 0 -118 0 P 247 211 -1.8417357799866718e-03 1.4365836300598361e-03 2.2648518148254004e-01 2.6604657128854065e-01 1.3957000000000000e-01 1 0 0 0 0 P 248 111 1.6243441749863650e+00 -1.5551870214874833e-01 6.9439000540971643e+00 7.1343288140665875e+00 1.3497999999999999e-01 2 0 0 -119 0 P 249 331 2.8820561273211375e-02 -1.3102248921275680e-01 8.7919471241252012e+00 8.8449856661032378e+00 9.5783071715555534e-01 2 0 0 -120 0 P 250 113 2.8206140318432488e-01 2.4555021207596181e-01 1.5814260176302563e+01 1.5839299583756057e+01 8.0791883154731026e-01 2 0 0 -121 0 P 251 111 8.6230201664537001e-02 2.4224115023465881e-01 6.2379615320978810e-01 6.8808259947875927e-01 1.3497999999999999e-01 2 0 0 -122 0 P 252 111 -1.1161104965547421e+00 -3.5821412312951101e-01 4.1793640298044643e+00 4.3427322381828386e+00 1.3497999999999999e-01 2 0 0 -123 0 P 253 221 2.6877585511991986e-01 -5.4721732157604386e-01 1.9792203094410024e+00 2.1421255315998735e+00 5.4744999999999999e-01 2 0 0 -124 0 P 254 -211 -1.6570630102597235e+00 4.4995918179559341e-01 1.0065893431001440e+01 1.0212248108738404e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 -1.9834351953914149e+00 1.2003781024229085e+00 4.8673055385567743e-01 2.3727724280997657e+00 1.3497999999999999e-01 2 0 0 -125 0 V -22 0 0 0 0 0 2 1 0 P 88 1 2.3497909442372764e+00 -5.4846848995548543e-02 -3.6728179136005600e+01 3.6803310561754920e+01 0 2 0 0 -22 0 P 89 -1 -2.3497909442372764e+00 5.4846848995548543e-02 -7.4108419020636703e+01 7.4145682918135776e+01 0 2 0 0 -22 0 P 256 92 0 0 -1.1083659815664231e+02 1.1094899347989070e+02 4.9927610861951086e+00 2 0 0 -23 0 V -23 0 0 0 0 0 0 4 0 P 257 -213 1.8256691796405293e+00 5.6273475595900277e-02 -3.1485274250821060e+01 3.1546713134329167e+01 7.3237986912236286e-01 2 0 0 -126 0 P 258 213 4.5058259894467330e-02 6.2491642775392466e-02 -1.1813081671562822e+01 1.1821298498454530e+01 4.3389417874450209e-01 2 0 0 -127 0 P 259 -211 -1.1915895614269676e+00 -4.6821900866330639e-02 -4.7247582704814576e+01 4.7262835602685712e+01 1.3957000000000000e-01 1 0 0 0 0 P 260 213 -6.7913787810802906e-01 -7.1943217504962104e-02 -2.0290659529443822e+01 2.0318146244421271e+01 8.0610085340163251e-01 2 0 0 -128 0 V -24 0 0 0 0 0 4 1 0 P 90 1 7.5769167851755326e-01 1.2556996586281193e+00 -5.8789782529126677e+00 6.0591471025709227e+00 0 2 0 0 -24 0 P 91 21 8.1858222642740464e-01 9.3508705088232957e-01 -6.6895240298497542e+00 6.8039838624211884e+00 0 2 0 0 -24 0 P 92 21 4.8604162704783915e-01 -4.4805287193126347e-01 -4.8593638405727352e-01 8.2044013103932334e-01 0 2 0 0 -24 0 P 93 -1 -7.5769167851755326e-01 -1.2556996586281193e+00 -1.6210048017782981e+00 2.1859860200289072e+00 0 2 0 0 -24 0 P 261 92 1.3046238534752441e+00 4.8703417895106593e-01 -1.4675443468597994e+01 1.5869557116060342e+01 5.8766449926265576e+00 2 0 0 -25 0 V -25 0 0 0 0 0 0 6 0 P 262 -211 -1.2605936402499596e-01 1.5057371897507288e-01 -1.9934474466451280e+00 2.0079531656740279e+00 1.3957000000000000e-01 1 0 0 0 0 P 263 211 8.4095744167351105e-01 -1.1469816322793629e-01 -1.8247275765362030e+00 2.0172941284863750e+00 1.3957000000000000e-01 1 0 0 0 0 P 264 2112 -3.2022114448484328e-03 3.5485340289505374e-01 -1.9776757554839368e+00 2.2180902529954225e+00 9.3957000000000002e-01 1 0 0 0 0 P 265 113 4.2082129723615885e-01 8.6963761258957373e-01 -5.0332734567012771e+00 5.1794887343703202e+00 7.4826580711497215e-01 2 0 0 -129 0 P 266 -2212 2.9848035908897141e-01 7.6144801945563514e-02 -2.6579725499699327e+00 2.8354994665700217e+00 9.3827000000000005e-01 1 0 0 0 0 P 267 213 -1.2637366905355291e-01 -8.4947719422626133e-01 -1.1883466832615162e+00 1.6112313679641745e+00 6.6806951266502279e-01 2 0 0 -130 0 V -26 0 0 0 0 0 3 1 0 P 94 1 -4.8287486780671490e-01 1.2761023729390071e+00 -1.1383200487310590e+00 1.7769012177166736e+00 0 2 0 0 -26 0 P 95 21 1.5621497140726917e-01 -4.8573435420028033e-01 -2.3619765661507044e+00 2.4164590373493215e+00 0 2 0 0 -26 0 P 96 -1 4.8287486780671490e-01 -1.2761023729390071e+00 -2.2017850240909422e+02 2.2018272985980460e+02 0 2 0 0 -26 0 P 268 92 1.5621497140726920e-01 -4.8573435420028033e-01 -2.2367879902397598e+02 2.2437609011487061e+02 1.7668173121411101e+01 2 0 0 -27 0 V -27 0 0 0 0 0 0 6 0 P 269 313 -2.8543117315447136e-01 2.2482482489894967e-01 -9.0341200093274154e-01 1.3217361221462267e+00 8.9376505674459228e-01 2 0 0 -131 0 P 270 221 4.1238714735209003e-01 2.2411899452297654e-01 -9.6698372983086163e+00 9.6966874426923582e+00 5.4744999999999999e-01 2 0 0 -132 0 P 271 -313 -7.1452535519722837e-01 1.2615975732829462e-01 -3.4389877916850984e+00 3.6634749075678412e+00 1.0334159856665626e+00 2 0 0 -133 0 P 272 223 2.9518440687517600e-01 -6.7587691309211138e-03 -6.1846089388196880e+01 6.1851744831168652e+01 7.8255129680869040e-01 2 0 0 -134 0 P 273 223 -7.1475168838994643e-02 -2.6715068557088228e-01 -1.7827325999504673e+01 1.7843612536382814e+01 7.1026605394107112e-01 2 0 0 -135 0 P 274 113 5.2007511437069753e-01 -7.8692847624869777e-01 -1.2999314654534800e+02 1.2999883427491272e+02 7.6748258910931000e-01 2 0 0 -136 0 V -28 0 0 0 0 0 2 1 0 P 97 3 2.7933547404477370e-03 4.5160821789481753e-01 -6.9749067594193650e+02 6.9749082215017336e+02 0 2 0 0 -28 0 P 98 -3 -2.7933547404477370e-03 -4.5160821789481753e-01 -8.5705274275953133e-02 4.5967725562567846e-01 0 2 0 0 -28 0 P 275 92 0 0 -6.9757638121621244e+02 6.9795049940579906e+02 2.2849332377506720e+01 2 0 0 -29 0 V -29 0 0 0 0 0 0 7 0 P 276 -313 7.4754027829760331e-02 6.7622667534388892e-01 -5.6128142380157919e+02 5.6128242301330602e+02 8.1167005533660608e-01 2 0 0 -137 0 P 277 111 3.1985609755234451e-01 -2.4118651425109322e-01 -5.4722554391411123e+01 5.4724187134932819e+01 1.3497999999999999e-01 2 0 0 -138 0 P 278 -211 -5.7660524700388271e-01 1.8519245211609431e-01 -1.1572207736933230e+01 1.1588884396128494e+01 1.3957000000000000e-01 1 0 0 0 0 P 279 323 4.7016327779864553e-01 1.2608243070388506e-01 -5.0242507469607531e+01 5.0252637084772871e+01 8.8375723657481486e-01 2 0 0 -139 0 P 280 -323 -2.9340181810227189e-01 -1.0902889962350583e-01 -1.6654982782813086e+01 1.6682011254030524e+01 8.9614510877530373e-01 2 0 0 -140 0 P 281 321 -1.7091842733929916e-01 -3.0692804215831166e-02 -6.8335184307022190e-01 8.6067755777773114e-01 4.9359999999999998e-01 1 0 0 0 0 P 282 221 1.7615208926470335e-01 -6.0659334007343801e-01 -2.4193531907980739e+00 2.5596789648505904e+00 5.4744999999999999e-01 2 0 0 -141 0 V -30 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 283 211 5.6975865540499546e+00 1.1330876234577410e+01 1.5021801775047430e+02 1.5075252430871902e+02 1.3957000000000000e-01 1 0 0 0 0 P 284 111 1.3749483431976381e+00 2.8393304901684724e+00 4.1567996491050160e+01 4.1687753986743168e+01 1.3497999999999999e-01 2 0 0 -142 0 V -31 0 0 0 0 0 0 2 0 P 285 22 -4.8425593179708420e-01 -3.7941731719233979e-01 6.9555917814895751e-01 9.2858164873819682e-01 0 1 0 0 0 0 P 286 111 2.7677428254205411e-01 -2.0684450063775386e-01 2.5900813569619241e-01 4.5243061973916815e-01 1.3497999999999999e-01 2 0 0 -143 0 V -32 0 0 0 0 0 0 2 0 P 287 -211 1.2086441549120626e-01 -6.6626754639345240e-02 2.0268340549126157e-01 2.8214832823771546e-01 1.3957000000000000e-01 1 0 0 0 0 P 288 111 -6.1343442008773696e-01 -6.0861248761949253e-02 -2.6379713392407106e-01 6.8396959553462333e-01 1.3497999999999999e-01 2 0 0 -144 0 V -33 0 0 0 0 0 0 3 0 P 289 211 1.5650772444410885e-01 1.2556032321315094e-01 -2.8281242327341727e-01 3.7379501633093848e-01 1.3957000000000000e-01 1 0 0 0 0 P 290 -211 2.8637689616156098e-01 -6.1545467400357816e-02 -2.1606036427427738e-02 3.2518637259694833e-01 1.3957000000000000e-01 1 0 0 0 0 P 291 111 -1.1201487658692037e-01 -1.3541652443332075e-01 -9.2181961874814866e-02 2.4000433779720101e-01 1.3497999999999999e-01 2 0 0 -145 0 V -34 0 3.2060726993416450e-05 -1.8244415792794160e-05 -3.4839902881546210e-05 6.3385020118851183e-05 0 2 0 P 292 22 9.1312929032954696e-02 2.4513449271720920e-02 -7.6611343405081037e-02 1.2168918662767823e-01 0 1 0 0 0 0 P 293 22 2.2605930051943775e-02 -8.9339896663646945e-02 -4.7182542731980512e-02 1.0353181901251253e-01 0 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 294 211 2.3521656847716066e-01 -5.7442171875550820e-02 -2.1861578301465836e+00 2.2039492463319497e+00 1.3957000000000000e-01 1 0 0 0 0 P 295 111 -2.0536403374506718e-01 -4.5054776488921472e-01 -5.3556333102086606e-01 7.4176502798182520e-01 1.3497999999999999e-01 2 0 0 -146 0 V -36 0 -9.1559870712433641e-05 -3.3300474767159021e-05 4.9569495795866960e-05 1.2619656257276831e-04 0 2 0 P 296 22 -8.4024681070091131e-02 5.0886996525857696e-03 1.0502499963480008e-01 1.3459677723249733e-01 0 1 0 0 0 0 P 297 22 -1.1196567331546031e-01 -7.6370712176619573e-02 1.0819986839051790e-03 1.3553585651221753e-01 0 1 0 0 0 0 V -37 0 0 0 0 0 0 3 0 P 298 211 2.6686053765618595e-01 -2.7853579602186887e-02 -2.9605080343987927e-01 4.2322125604960115e-01 1.3957000000000000e-01 1 0 0 0 0 P 299 -211 7.1975412359191374e-02 -6.6361870680359092e-02 -8.8395747329463348e-01 9.0024716459309384e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 4.8433143600459772e-01 9.2007420279410140e-02 -1.5121135138934403e+00 1.5961670290379748e+00 1.3497999999999999e-01 2 0 0 -147 0 V -38 0 0 0 0 0 0 2 0 P 301 -211 1.3700899235692003e+00 2.0647988874548268e-01 -5.3617076847975170e+01 5.3635158150691581e+01 1.3957000000000000e-01 1 0 0 0 0 P 302 211 2.3655720987829679e-01 -2.7391966606332724e-01 -6.2605275895915451e+00 6.2725335217867562e+00 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 303 -211 7.6058597263690339e-02 9.5331259892183606e-02 -1.5955122519410254e+00 1.6062416039700482e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 211 1.2718162954678505e-01 -1.6596692473159425e-01 -7.0263617142971331e+00 7.0308576227967796e+00 1.3957000000000000e-01 1 0 0 0 0 P 305 111 4.1808261230424149e-01 1.7894092992830260e-01 -9.1160697680698899e+00 9.1284040523977996e+00 1.3497999999999999e-01 2 0 0 -148 0 V -40 0 0 0 0 0 0 2 0 P 306 211 -2.9122588501405933e-01 -3.3684082652828878e-01 -4.6635582309991701e+00 4.6868464256191062e+00 1.3957000000000000e-01 1 0 0 0 0 P 307 111 3.7090530361194302e-01 -7.5125696684591542e-02 -2.9318742625803669e+00 2.9592770918808839e+00 1.3497999999999999e-01 2 0 0 -149 0 V -41 0 0 0 0 0 0 3 0 P 308 -211 1.4504900297074907e-01 3.5879574393377839e-01 -5.5188056275372821e-01 6.8834986712657509e-01 1.3957000000000000e-01 1 0 0 0 0 P 309 211 -9.8582801360054262e-02 1.2670073071007715e-01 -2.1199629453041532e-01 3.0032292233709035e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 2.8417357453212544e-01 -7.3859595469430273e-02 -3.5108605503223167e-01 4.7716965404703654e-01 1.3497999999999999e-01 2 0 0 -150 0 V -42 0 0 0 0 0 0 2 0 P 311 22 -1.0730730754671272e-01 -1.8672610568622816e-01 -1.3883704539384237e-01 2.5623665227941311e-01 0 1 0 0 0 0 P 312 111 -9.5442262922557208e-01 2.9991339357873487e-01 -2.4945507257508890e+00 2.6910729314847739e+00 1.3497999999999999e-01 2 0 0 -151 0 V -43 0 0 0 0 0 0 3 0 P 313 211 -6.3323774426540858e-01 -1.1255111736749875e-01 -1.4589519703761096e+00 1.6005244239146581e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 -211 -4.2660195365594117e-01 -3.9901435866671309e-01 -1.3159947460453554e+00 1.4465557859288571e+00 1.3957000000000000e-01 1 0 0 0 0 P 315 111 3.3062169236304978e-02 -1.2448725413581298e-01 -4.1704245407895840e-01 4.5687437264644720e-01 1.3497999999999999e-01 2 0 0 -152 0 V -44 0 0 0 0 0 0 2 0 P 316 2212 -1.2343932503498354e+00 -1.3486551019384820e+00 -4.2743490607469745e+00 4.7426793868553325e+00 9.3827000000000005e-01 1 0 0 0 0 P 317 -211 -2.4842699916712615e-02 -1.8761032490053006e-01 -2.6275403422430921e-01 3.5261063675048676e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 318 -211 -5.4010433013124859e-01 -6.4877349465559186e-01 -2.4200749546584195e+00 2.5668779296762643e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 111 -8.8375737919922326e-01 -7.6861677312377114e-02 -1.7360977083115159e+00 1.9542747186444511e+00 1.3497999999999999e-01 2 0 0 -153 0 V -46 0 0 0 0 0 0 2 0 P 320 -2112 -2.6766242311314188e+00 -2.6825556264374533e+00 -6.6946110588537957e+00 7.7499052237971684e+00 9.3957000000000002e-01 1 0 0 0 0 P 321 211 -5.8939249612105094e-01 -3.3570415391532266e-01 -1.3681636800349863e+00 1.5334381088608311e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 322 -211 -1.5413501151578968e-01 -8.7100911742999540e-02 -5.3553172868274723e-01 5.8104921299952383e-01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 -9.7176262016929679e-02 -1.1593191018755580e+00 -1.2658613052601357e+00 1.7245545658018560e+00 1.3497999999999999e-01 2 0 0 -154 0 V -48 0 0 0 0 0 0 2 0 P 324 211 -5.9509985910772289e-01 -2.4537451572840885e-01 2.2934680228601213e-02 6.5905863148597865e-01 1.3957000000000000e-01 1 0 0 0 0 P 325 111 2.1482702594349154e-01 4.3850930558939641e-02 2.9412601594858329e-01 3.9090058690720431e-01 1.3497999999999999e-01 2 0 0 -155 0 V -49 0 0 0 0 0 0 2 0 P 326 22 -1.4729585917556347e+00 -8.9874920679701553e-01 -2.8534654522184699e-01 1.7489367628976895e+00 0 1 0 0 0 0 P 327 111 -2.7911935781948527e-01 -5.7470410380588333e-01 -4.0459986903085787e-01 7.6818817828750319e-01 1.3497999999999999e-01 2 0 0 -156 0 V -50 0 0 0 0 0 0 2 0 P 328 321 -3.0593436265306406e-01 -6.2947238346167100e-01 5.9462952582352520e-02 8.5849176963012552e-01 4.9359999999999998e-01 1 0 0 0 0 P 329 -211 -3.9457137801730585e-01 -3.2973587278357458e-01 4.3248238259398969e-01 6.8624566614660343e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 330 321 -7.6312948724507468e-01 -9.8292277421156843e-02 2.8732408547725447e-01 9.5824009319111092e-01 4.9359999999999998e-01 1 0 0 0 0 P 331 -321 -3.5037573636869501e-01 -1.4421731021473594e-01 2.2914831503643365e-01 6.6310760777230970e-01 4.9359999999999998e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 332 -321 -6.1284827128046937e-01 1.6452355202546848e-01 3.5949133910142839e-01 8.8063953219888724e-01 4.9359999999999998e-01 1 0 0 0 0 P 333 111 -3.0170913494937390e-01 -3.8716424826638957e-01 1.4014817664985008e-01 5.2800158055242186e-01 1.3497999999999999e-01 2 0 0 -157 0 V -53 0 0 0 0 0 0 2 0 P 334 321 -4.1090121515246270e-01 8.6110473017422617e-01 1.3300828011507695e-01 1.0824386021947703e+00 4.9359999999999998e-01 1 0 0 0 0 P 335 111 -7.5220425311026118e-01 6.3715343538457803e-01 4.0665434048955834e-01 1.0748781752638450e+00 1.3497999999999999e-01 2 0 0 -158 0 V -54 0 0 0 0 0 0 1 0 P 336 310 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521350e-01 4.9767000000000000e-01 2 0 0 -159 0 V -55 0 -2.0392913757103350e-04 5.1750334191608572e-04 -6.7891358905529012e-05 5.6406105473422305e-04 0 2 0 P 337 22 -6.1262135287171917e-03 6.2046980428774039e-02 1.7479980352246530e-02 6.4752667787845081e-02 0 1 0 0 0 0 P 338 22 -4.2071158491946425e-01 1.0211233295329261e+00 -1.5958129316144423e-01 1.1158661572648105e+00 0 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 339 111 -1.4339050666386671e-01 2.7065318764901369e-01 6.5930004188256536e-02 3.4114564519887419e-01 1.3497999999999999e-01 2 0 0 -160 0 P 340 111 -2.4164224281110458e-01 2.3923226942222706e-01 1.2253120834007535e-01 3.8581932256040363e-01 1.3497999999999999e-01 2 0 0 -161 0 P 341 111 -3.9992227592409368e-01 8.5632076445814231e-01 2.8390879468236811e-02 9.5511712415779881e-01 1.3497999999999999e-01 2 0 0 -162 0 V -57 0 0 0 0 0 0 3 0 P 342 211 -2.4471078018673106e-01 1.1262759358575185e+00 1.9667685510391394e-01 1.1775153586535054e+00 1.3957000000000000e-01 1 0 0 0 0 P 343 -211 -3.4371558545151815e-01 1.8125521817847505e+00 2.0244398499703575e-01 1.8611687637977430e+00 1.3957000000000000e-01 1 0 0 0 0 P 344 111 -6.6812755286939696e-02 2.8553134729495211e-01 2.7577383408391491e-02 3.2399414660261450e-01 1.3497999999999999e-01 2 0 0 -163 0 V -58 0 0 0 0 0 0 2 0 P 345 -211 -6.5742788697386811e-01 1.5736712111710887e+00 -2.2396981487714127e-01 1.7257736729698094e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 211 -6.4981483139338791e-01 9.5943557796605505e-01 -8.2795563541454520e-01 1.4310018387411592e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 347 311 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 2 0 0 -164 0 P 348 211 -5.4408604599649928e-03 7.8852405375660795e-02 -6.5848956842328984e-02 1.7338735482524456e-01 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 349 -321 -5.4942812877044434e-01 1.7387252193230223e+00 -7.6676258835511502e-01 2.0387747506517533e+00 4.9359999999999998e-01 1 0 0 0 0 P 350 111 -4.0651166023708565e-02 8.4356457122449835e-01 -8.0730849076954858e-01 1.1761038656482961e+00 1.3497999999999999e-01 2 0 0 -165 0 V -61 0 0 0 0 0 0 2 0 P 351 211 1.2851692555344616e+00 9.4793127548327738e-01 1.6759754690659709e+00 2.3191824585877794e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 -211 5.8356045582124039e-02 5.1459139511083926e-02 8.5131556941358835e-02 1.8105424044319968e-01 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 353 321 1.1422211627213763e+00 3.6857937973079874e-01 1.3086573151746401e+00 1.8430260096622104e+00 4.9359999999999998e-01 1 0 0 0 0 P 354 -211 3.6400574221648024e-01 4.1054714337334614e-01 1.1326311444648089e+00 1.2662473027060110e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 3 0 P 355 -211 3.0563832193197818e-02 9.2061879970179963e-02 4.3649550299795219e-02 1.7548391870297442e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 211 -7.2872017997011734e-02 9.1957200922732126e-03 7.2495685068559662e-02 1.7358082131540922e-01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 2.1791854631083843e-01 9.4921103362853254e-02 1.7509511780519976e-01 3.2461732758598588e-01 1.3497999999999999e-01 2 0 0 -166 0 V -64 0 0 0 0 0 0 2 0 P 358 -311 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 2 0 0 -167 0 P 359 111 4.1104135675830361e-01 3.7329422097730236e-01 8.9565830231595311e-01 1.0624156283151398e+00 1.3497999999999999e-01 2 0 0 -168 0 V -65 0 0 0 0 0 0 2 0 P 360 321 9.1246343574899591e-01 8.1459452796934884e-01 2.5265770799552967e+00 2.8501555163765890e+00 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 8.2828924236471579e-01 1.0348355579946267e+00 4.1597256715107758e+00 4.3680367613188578e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 362 -311 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 2 0 0 -169 0 P 363 -211 4.3159119413565189e-01 4.0336422123606865e-02 4.7466589796963654e-01 6.5778832872018422e-01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 1 0 P 364 130 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 365 -211 1.3272235991429066e-01 1.6818792182867751e-01 2.9346844832497537e-01 3.8923760986386785e-01 1.3957000000000000e-01 1 0 0 0 0 P 366 111 -2.9874749872677647e-01 -3.6603066376396853e-01 1.9711899722296045e+00 2.0315112654941259e+00 1.3497999999999999e-01 2 0 0 -170 0 V -69 0 0 0 0 0 0 3 0 P 367 211 2.7848348520160093e-01 -3.3423424484720043e-01 3.8549778481142249e-01 5.9779085720101344e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 -211 3.5899433419374238e-02 -1.2781310195533430e-01 1.1729520868379965e-01 2.2552806750259019e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 221 2.0182479300034090e-01 -1.7797298332214723e-01 4.3753450814863803e-01 7.5069672850165425e-01 5.4744999999999999e-01 2 0 0 -171 0 V -70 0 0 0 0 0 0 2 0 P 370 211 6.8983184216840976e-01 -4.1143035497139790e-01 7.7094495687011755e-01 1.1220422536093815e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 -211 -1.8857073083959253e-01 -2.0366756203949593e-02 7.6623657865404549e-01 8.0160589110553970e-01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 372 2212 6.5675069035641587e-01 -9.7147107194644045e-01 2.5255427405922277e+00 2.9383318805693981e+00 9.3827000000000005e-01 1 0 0 0 0 P 373 -211 -9.6340321130723439e-03 -7.3329938373576167e-02 1.1267356300490225e-01 1.9402373859104938e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 374 22 1.5114081988176223e-01 -1.0421467584987865e+00 1.1928799948306383e+00 1.5911870084157937e+00 0 1 0 0 0 0 P 375 22 -2.9095298049396429e-01 -3.9055249343160792e-01 5.6051343288466704e-01 7.4253632599901898e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 376 -2112 7.6964311807977337e-01 -1.3732545698925434e+00 3.0166237874413904e+00 3.5300126774270302e+00 9.3957000000000002e-01 1 0 0 0 0 P 377 111 -6.7018424288472503e-02 -1.6185368657039093e-01 3.0847430386955427e-01 3.7955774474820320e-01 1.3497999999999999e-01 2 0 0 -172 0 V -74 0 0 0 0 0 0 2 0 P 378 22 2.2640706598129223e-01 -9.7084278252676171e-01 2.8430472060192771e+00 3.0127584177236284e+00 0 1 0 0 0 0 P 379 22 3.3687108725417347e-01 -6.6042525678135389e-01 3.8569431758823236e+00 3.9275506758293717e+00 0 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 380 -211 3.4851583694759375e-01 -5.0471081241815048e-02 1.5589876174455641e+00 1.6043480903138185e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.5571906859191427e-01 -9.5022757446219552e-01 2.4377721778895882e+00 2.6439404854725366e+00 1.3497999999999999e-01 2 0 0 -173 0 V -76 0 0 0 0 0 0 2 0 P 382 211 4.5431790825533552e-01 -3.9623843775284906e-01 3.5975213639881711e+00 3.6503492176181767e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 111 1.7728176132795945e-01 -5.2125332995004325e-01 9.1361878168253998e+00 9.1537577683480578e+00 1.3497999999999999e-01 2 0 0 -174 0 V -77 0 0 0 0 0 0 2 0 P 384 -211 -3.1360534094101078e-01 -1.4326321398964859e+00 1.5775650170230223e+01 1.5844286075318005e+01 1.3957000000000000e-01 1 0 0 0 0 P 385 111 -2.9591524801907926e-01 -3.7429873800469604e-01 2.8371673518408707e+00 2.8801742242499566e+00 1.3497999999999999e-01 2 0 0 -175 0 V -78 0 0 0 0 0 0 2 0 P 386 211 -5.1234342909888853e-01 1.6481351159925531e-01 1.3854720010185996e+01 1.3865871975050640e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 3.9132925495103138e-02 -3.1093235958530552e-01 1.6086598090315931e+01 1.6090216531726703e+01 1.3497999999999999e-01 2 0 0 -176 0 V -79 0 0 0 0 0 0 3 0 P 388 211 -2.2010665653869918e-01 -3.7840520821899098e-01 1.0356827592199917e+01 1.0367014758420739e+01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 1.8014414327519915e-01 -5.0257743408370981e-01 1.6312098132895112e+01 1.6321429510668075e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -1.3564321600352311e-01 -4.5941905201115307e-01 2.0299606338515286e+01 2.0305706144985173e+01 1.3497999999999999e-01 2 0 0 -177 0 V -80 0 0 0 0 0 0 2 0 P 391 -211 -3.6013316151179109e-01 1.3581563341815253e-01 1.1230011184642867e+01 1.1237471814087240e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 211 -7.1208628990636291e-02 -1.2484204621028375e-01 1.6410652982116831e+00 1.6532487118516974e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 393 -211 -5.1257537386430607e-01 -8.8186007329528260e-01 4.2945534614920597e+01 4.2957872780772185e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 111 -7.3755146927003945e-01 -2.9265144780695673e-01 1.9561541711028688e+01 1.9578093899878024e+01 1.3497999999999999e-01 2 0 0 -178 0 V -82 0 0 0 0 0 0 2 0 P 395 211 -6.3436402900425559e-01 5.8402474956215134e-01 2.5205975701515957e+01 2.5221106111344689e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 1.7155332809383256e-01 -9.2134191860241137e-05 6.0071690966261970e+00 6.0111338954251865e+00 1.3497999999999999e-01 2 0 0 -179 0 V -83 0 0 0 0 0 0 2 0 P 397 22 9.0896224106974899e-01 2.6426185446286166e-01 3.5422143972163397e+01 3.5434789829602288e+01 0 1 0 0 0 0 P 398 111 9.4175056615804026e-02 5.1944433037490578e-01 1.7238859340118029e+01 1.7247468866544502e+01 1.3497999999999999e-01 2 0 0 -180 0 V -84 0 0 0 0 0 0 2 0 P 399 -211 1.7998652190564260e-01 -1.4562572699266582e-01 1.6405261095718068e+01 1.6407488333197456e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 111 6.1074171706580428e-03 6.1650547455272764e-01 3.0940450362644491e+01 3.0946886831220446e+01 1.3497999999999999e-01 2 0 0 -181 0 V -85 0 0 0 0 0 0 2 0 P 401 211 1.3838395600779609e+00 7.7675880220554036e-02 5.2136695552433721e+01 5.2155302207757046e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 111 -4.5746423227123197e-02 -1.3960526043366997e-02 9.2721574462017475e+00 9.2732632303348321e+00 1.3497999999999999e-01 2 0 0 -182 0 V -86 0 0 0 0 0 0 2 0 P 403 211 7.2857996074761644e-01 4.1553357159059978e-01 6.2819157675742417e+01 6.2824911840630620e+01 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 9.5901527558797967e-02 7.1498808094299482e-02 5.7003466445290741e+01 5.7003762820947479e+01 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 405 -211 5.5026146329129742e-02 -4.6602149520370451e-01 2.1850271128066328e+01 2.1855755124581734e+01 1.3957000000000000e-01 1 0 0 0 0 P 406 211 8.8140392276748003e-01 -1.5355520998161576e+00 9.7032872564722794e+01 9.7049124834142390e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 4.3721337395780346e-01 -1.2838661014577484e+00 8.1948224174508795e+01 8.1959557909110188e+01 1.3497999999999999e-01 2 0 0 -183 0 V -88 0 0 0 0 0 0 2 0 P 408 -211 7.7031758809808171e-01 1.2716369997181484e-01 1.0215387523999424e+02 1.0215695407619754e+02 1.3957000000000000e-01 1 0 0 0 0 P 409 211 4.9057761450151387e-02 1.3955350880649811e-01 6.2765312554445902e+00 6.2798253344540997e+00 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 3 0 P 410 111 -2.1677261634769962e-02 2.1837712318713929e-02 2.0777508768179796e+01 2.0777969992314929e+01 1.3497999999999999e-01 2 0 0 -184 0 P 411 111 6.9883225600702974e-03 -8.7477035247187127e-02 1.3332849320704190e+01 1.3333821345636443e+01 1.3497999999999999e-01 2 0 0 -185 0 P 412 111 -1.4144950788101865e-01 1.2218752917353191e-01 4.8466256206489128e+01 4.8466804598910905e+01 1.3497999999999999e-01 2 0 0 -186 0 V -90 0 0 0 0 0 0 3 0 P 413 -211 6.9092256790205822e-02 -7.3852907243934229e-02 8.5719036118345215e+01 8.5719209403930748e+01 1.3957000000000000e-01 1 0 0 0 0 P 414 211 1.5804983505946495e-02 1.4777288371142786e-02 1.8221189996498669e+01 1.8221737371588869e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 2.1106826363844720e-02 8.4567718804202538e-02 2.6846062152839943e+02 2.6846066961142020e+02 1.3497999999999999e-01 2 0 0 -187 0 V -91 0 0 0 0 0 0 2 0 P 416 211 -8.7858801090971057e-03 -5.9160013497779995e-01 6.1462034723411580e+02 6.1462064786490976e+02 1.3957000000000000e-01 1 0 0 0 0 P 417 -211 -1.4857797705621353e-01 -8.8889190883779212e-01 3.5239021191337071e+02 3.5239139197258504e+02 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 418 211 1.9173187324304894e-01 1.4177184931694289e-01 4.1974107468740074e-01 5.0251639093244382e-01 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 2.4777939303405997e-02 1.4976450907929015e-01 3.7345849962036537e-01 4.2660800542720539e-01 1.3957000000000000e-01 1 0 0 0 0 P 420 221 1.0108310691972915e-01 1.0813969065571651e-01 4.7238583741907175e-01 7.3807985278950483e-01 5.4744999999999999e-01 2 0 0 -188 0 V -93 0 8.8614260160638382e-05 -1.9205743115992772e-05 6.2577143800353726e-05 1.2184024074772208e-04 0 2 0 P 421 22 1.4937475289244201e-01 -7.2625272438234315e-02 1.6253872286247756e-01 2.3239208985714457e-01 0 1 0 0 0 0 P 422 22 8.0486058222521528e-02 2.2806567382130150e-02 -2.1684594185671696e-04 8.3655197723257274e-02 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 423 -211 -7.8204128223218805e-01 7.5614889943791963e-01 -7.4861984916674462e+00 7.5661084691392366e+00 1.3957000000000000e-01 1 0 0 0 0 P 424 111 2.3255830309780054e-01 2.0288997003157741e-01 -1.4937167441799306e+00 1.5312272909410396e+00 1.3497999999999999e-01 2 0 0 -189 0 V -95 0 0 0 0 0 0 2 0 P 425 2212 4.5647545228043396e-01 -1.1140433831688563e-01 -1.2126566885452833e+02 1.2127020893069391e+02 9.3827000000000005e-01 1 0 0 0 0 P 426 211 -5.9000925115658708e-02 1.1121496750602367e-01 -1.5074797024970575e+01 1.5075968791660573e+01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 427 -2212 -1.3072230570276372e-01 -1.7892225551353019e-01 -2.9712410467673669e+02 2.9712566875320618e+02 9.3827000000000005e-01 1 0 0 0 0 P 428 111 -2.2480010667491718e-01 2.4637720569586083e-01 -1.0131440288883377e+02 1.0131504177138149e+02 1.3497999999999999e-01 2 0 0 -190 0 V -97 0 0 0 0 0 0 2 0 P 429 2112 2.9357461669539409e-01 8.3186522226129234e-01 -1.0235777711237882e+03 1.0235785824822296e+03 9.3957000000000002e-01 1 0 0 0 0 P 430 111 -7.7435955417075167e-02 -4.7945677002907923e-02 -9.8408634427442522e+01 9.8408769144774695e+01 1.3497999999999999e-01 2 0 0 -191 0 V -98 0 0 0 0 0 0 2 0 P 431 -211 7.8595314844738667e-02 2.1843479597838567e-01 -1.8052883068822703e+00 1.8254962721067158e+00 1.3957000000000000e-01 1 0 0 0 0 P 432 111 -4.8011027500816772e-01 3.5507687131658252e+00 -3.2522070093737547e+01 3.2719133960313556e+01 1.3497999999999999e-01 2 0 0 -192 0 V -99 0 0 0 0 0 0 2 0 P 433 22 -6.1183810521068949e-01 3.8868096624442550e-01 -3.0994279392832174e+00 3.1830602117016138e+00 0 1 0 0 0 0 P 434 113 -1.2985165558818097e+00 1.6682701758828831e+00 -1.4060607450616317e+01 1.4231432991083315e+01 6.0310237416879398e-01 2 0 0 -193 0 V -100 0 0 0 0 0 0 2 0 P 435 -211 -3.7918697642735721e-01 6.7511573006078118e-01 -1.1669516784687082e+00 1.4074160780837193e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -1.4738616084775324e-01 5.6998784936287329e-02 -1.5194167496280955e+00 1.5335639541095309e+00 1.3497999999999999e-01 2 0 0 -194 0 V -101 0 -4.9275822512791998e-05 7.0661138953492902e-06 -2.5457034950437956e-04 2.5941334979290564e-04 0 2 0 P 437 22 -1.8229556149851037e-01 -1.2849175469491584e-02 -9.3033545487038249e-01 9.4811435578266867e-01 0 1 0 0 0 0 P 438 22 -1.8063397301013717e+00 2.9801790021493929e-01 -9.3434165679985188e+00 9.5210877032270034e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 439 211 -6.7102305857259514e-01 -4.0575526931628320e-01 -4.6805218233447254e+00 4.7478072420244990e+00 1.3957000000000000e-01 1 0 0 0 0 P 440 -211 -6.1718875130524686e-01 -3.1552968940478576e-01 -2.4896427087015871e+00 2.5881038506065761e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -6.8545260669255689e-03 -4.3366274689244914e-02 -6.5558862137875962e-01 6.7077839797456795e-01 1.3497999999999999e-01 2 0 0 -195 0 V -103 0 0 0 0 0 0 3 0 P 442 211 -4.1476258190075632e-01 -9.3001270880391340e-02 -2.8739040796315165e+00 2.9085188119647816e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 -6.4231756251543967e-02 -3.6009712601321874e-02 -2.2291965308975625e-01 2.7312153804935418e-01 1.3957000000000000e-01 1 0 0 0 0 P 444 111 -5.4041193010347521e-01 2.1608690628860755e-02 -2.3034706476281102e+00 2.3699596229879365e+00 1.3497999999999999e-01 2 0 0 -196 0 V -104 0 -4.6906263753148636e-05 -1.2221253652488468e-04 -9.8254428195633362e-04 9.9133402619271073e-04 0 2 0 P 445 22 -2.4212067568491508e-01 -5.5171204703804555e-01 -4.9784026847355571e+00 5.0147284967207586e+00 0 1 0 0 0 0 P 446 22 -1.9090420364062843e-01 -5.7651827118260746e-01 -4.0921581547554000e+00 4.1369766853955277e+00 0 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 447 -211 -2.5193142070019092e-01 2.3805514906495040e-01 -6.0423533634480142e+00 6.0538957414547436e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 211 2.2819297070303043e-01 -1.6415970969360533e-01 -1.7621661693840995e+00 1.7898965991326967e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 449 -2112 -2.6308173180292155e-01 -1.1419800220779119e+00 -2.4648583485377404e+01 2.4694306833538640e+01 9.3957000000000002e-01 1 0 0 0 0 P 450 -211 9.7805419333484772e-02 -1.6212246335222635e-01 -3.1187903539476376e+00 3.1276481020011224e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 1 0 P 451 310 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -197 0 V -108 0 0 0 0 0 0 2 0 P 452 211 -2.1972790853334513e-02 -3.2624597759583773e-01 -1.7206669552161703e+01 1.7210342126280462e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -1.3389353629886009e+00 -4.1057784199535039e+00 -2.9080190998614410e+02 2.9083400632582476e+02 1.3497999999999999e-01 2 0 0 -198 0 V -109 0 0 0 0 0 0 2 0 P 454 2112 5.8846751214971771e-01 -7.4027463896910151e-01 -1.2091036663083530e+02 1.2091771520807804e+02 9.3957000000000002e-01 1 0 0 0 0 P 455 111 1.0821892703480351e-01 -1.8463106810596860e-01 -8.6023301654923312e+00 8.6060504207224948e+00 1.3497999999999999e-01 2 0 0 -199 0 V -110 0 0 0 0 0 0 2 0 P 456 -2212 7.9081465387851435e-01 -9.9785310864047527e-01 -2.2194887736288482e+02 2.2195451248370915e+02 9.3827000000000005e-01 1 0 0 0 0 P 457 -211 -2.0194198882922419e-02 -2.3055130362775828e-01 -2.5139240114841765e+01 2.5140692811572286e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 458 -2112 -7.7491382199421210e-01 1.0558817986814673e-01 -1.0827771937645640e+02 1.0828462007804612e+02 9.3957000000000002e-01 1 0 0 0 0 P 459 211 -9.9928339738354868e-02 -1.4059869561993965e-01 -5.1032399358228631e+01 5.1032881730399339e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 460 -211 -1.7336432491089007e+00 -2.2414381816314603e-02 -1.6316635351593828e+02 1.6317562446883034e+02 1.3957000000000000e-01 1 0 0 0 0 P 461 111 -4.3761801943459389e-01 -3.0582368040300700e-01 -4.9749451679492942e+01 4.9752499431335430e+01 1.3497999999999999e-01 2 0 0 -200 0 V -113 0 0 0 0 0 0 2 0 P 462 2112 -3.0637156620669509e-01 8.0125595836388264e-01 -1.9162861096553587e+02 1.9163283436565089e+02 9.3957000000000002e-01 1 0 0 0 0 P 463 -211 -2.1986820665902077e-01 1.1904195373478234e-01 -2.9627114029258273e+01 2.9628497742926839e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 464 -2112 -8.8617158525268902e-01 9.6898483102912891e-01 -2.1553676080218526e+02 2.1554280846403714e+02 9.3957000000000002e-01 1 0 0 0 0 P 465 211 -3.6759435977479488e-01 5.0854995344152532e-01 -7.1546674098992469e+01 7.1549561865051444e+01 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 466 321 7.9718700036665910e-02 9.9199918773705331e-01 -4.1153373238873421e+01 4.1168363914025413e+01 4.9359999999999998e-01 1 0 0 0 0 P 467 -211 2.0959354158218355e-02 5.4062611163280497e-02 -1.6352587757682648e+00 1.6422280928907671e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 468 -321 -5.3554684720145317e-02 6.4237427019267368e-01 -9.6145960796342720e+01 9.6149388615940410e+01 4.9359999999999998e-01 1 0 0 0 0 P 469 211 -3.3818337590445563e-01 7.7965145597166419e-01 -6.3483193755764816e+01 6.3489035223457392e+01 1.3957000000000000e-01 1 0 0 0 0 V -117 0 5.2318908866169861e-05 3.6579421485158085e-05 3.2678718455786247e-04 3.3425607292410947e-04 0 2 0 P 470 22 1.8266412630151260e-01 1.5932520980673923e-01 1.3792066253718847e+00 1.4003433939527687e+00 0 1 0 0 0 0 P 471 22 5.7877694041638790e-02 8.8526215323388273e-03 1.2323266363227396e-01 1.3643491401205765e-01 0 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 472 -211 5.8240180193788149e-01 -7.5473666151519558e-01 4.6725645894455701e+00 4.7708656357705408e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 211 5.3111079302644382e-01 -2.3403290644079899e-01 3.4379787548848668e+00 3.4894165385786211e+00 1.3957000000000000e-01 1 0 0 0 0 P 474 111 4.5468807703528752e-01 -1.1237505519541752e-01 1.8728840077388604e+00 1.9352734967627176e+00 1.3497999999999999e-01 2 0 0 -201 0 V -119 0 3.5077352219168098e-04 -3.3583918826718676e-05 1.4995198168166006e-03 1.5406424852077560e-03 0 2 0 P 475 22 1.5939966107531871e+00 -1.3355826438208993e-01 6.8043520657159329e+00 6.9898404873995581e+00 0 1 0 0 0 0 P 476 22 3.0347564233177846e-02 -2.1960437766658396e-02 1.3954798838123139e-01 1.4448832666703018e-01 0 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 477 22 8.1526290073245911e-02 4.0771981638271351e-02 1.8785239564833603e-01 2.0879993537029071e-01 0 1 0 0 0 0 P 478 113 -5.2705728800034539e-02 -1.7179447085102814e-01 8.6040947284768645e+00 8.6361857307329455e+00 7.2178019164331098e-01 2 0 0 -202 0 V -121 0 0 0 0 0 0 2 0 P 479 -211 -1.1492326116213154e-01 1.3553570072240281e-01 1.3712950593471820e+00 1.3897867486835682e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 211 3.9698466434645641e-01 1.1001451135355901e-01 1.4442965116955381e+01 1.4449512835072490e+01 1.3957000000000000e-01 1 0 0 0 0 V -122 0 1.9686373992394057e-06 5.5303707840317438e-06 1.4241279888082432e-05 1.5708940869343237e-05 0 2 0 P 481 22 5.2347122365422195e-02 1.1036021575484060e-01 1.4146929533133645e-01 1.8690414645732278e-01 0 1 0 0 0 0 P 482 22 3.3883079299114813e-02 1.3188093447981819e-01 4.8232685787845164e-01 5.0117845302143660e-01 0 1 0 0 0 0 V -123 0 -1.0796146644315501e-04 -3.4650083619040744e-05 4.0427024998893838e-04 4.2007287114622017e-04 0 2 0 P 483 22 -9.2458993266648781e-01 -3.0798553088771941e-01 3.6391071529418921e+00 3.7673362607308167e+00 0 1 0 0 0 0 P 484 22 -1.9152056388825436e-01 -5.0228592241791631e-02 5.4025687686257207e-01 5.7539597745202176e-01 0 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 485 22 5.4439475698488553e-02 -3.0736169358088400e-01 1.6594688086673335e+00 1.6885708732934530e+00 0 1 0 0 0 0 P 486 22 2.1433637942143127e-01 -2.3985562799515983e-01 3.1975150077366887e-01 4.5355465830642044e-01 0 1 0 0 0 0 V -125 0 -5.2216246139961579e-05 3.1601354358726787e-05 1.2813749833128471e-05 6.2466003138217694e-05 0 2 0 P 487 22 -2.9465078976023806e-01 1.2446978490510306e-01 7.2947601427002712e-02 3.2807494237537743e-01 0 1 0 0 0 0 P 488 22 -1.6887844056311767e+00 1.0759083175178057e+00 4.1378295242867474e-01 2.0446974857243863e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 489 -211 1.3952162275891509e+00 -1.1200017921607484e-01 -1.8920237025580249e+01 1.8972454275894574e+01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 4.3045295205137857e-01 1.6827365481197512e-01 -1.2565037225240808e+01 1.2574258858434590e+01 1.3497999999999999e-01 2 0 0 -203 0 V -127 0 0 0 0 0 0 2 0 P 491 211 1.8725300200231912e-01 6.5108299074054105e-02 -7.1054858346587348e+00 7.1096210524051937e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 -1.4219474210785180e-01 -2.6166562986616455e-03 -4.7075958369040869e+00 4.7116774460493360e+00 1.3497999999999999e-01 2 0 0 -204 0 V -128 0 0 0 0 0 0 2 0 P 493 211 1.5061846814412688e-01 3.2693588382798254e-02 -4.4353266663800088e+00 4.4401978802829305e+00 1.3957000000000000e-01 1 0 0 0 0 P 494 111 -8.2975634625215589e-01 -1.0463680588776036e-01 -1.5855332863063813e+01 1.5877948364138343e+01 1.3497999999999999e-01 2 0 0 -205 0 V -129 0 0 0 0 0 0 2 0 P 495 211 2.0801151128511147e-02 -8.8401138894077413e-02 -9.1822740812415726e-01 9.3320351862626882e-01 1.3957000000000000e-01 1 0 0 0 0 P 496 -211 4.0002014610764774e-01 9.5803875148365114e-01 -4.1150460485771196e+00 4.2462852157440514e+00 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 497 211 -6.6620043579804306e-02 -3.8671234659421558e-02 -5.3881783861967358e-01 5.6190581302513298e-01 1.3957000000000000e-01 1 0 0 0 0 P 498 111 -5.9753625473748587e-02 -8.1080595956683976e-01 -6.4952884464184257e-01 1.0493255549390417e+00 1.3497999999999999e-01 2 0 0 -206 0 V -131 0 0 0 0 0 0 2 0 P 499 321 -9.9178269242689854e-02 4.0401998341760498e-01 -7.5268094976009992e-01 9.9158360626953856e-01 4.9359999999999998e-01 1 0 0 0 0 P 500 -211 -1.8625290391178151e-01 -1.7919515851865531e-01 -1.5073105117264160e-01 3.3015251587668815e-01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 501 22 4.7425473385707850e-01 7.9323364794636100e-02 -4.7379618395365597e+00 4.7622990395073739e+00 0 1 0 0 0 0 P 502 22 -6.1867586504988442e-02 1.4479562972834045e-01 -4.9318754587720566e+00 4.9343884031849843e+00 0 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 503 -311 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 2 0 0 -207 0 P 504 111 8.6409255727351850e-02 -9.5414871722545147e-02 -1.3258601716960836e+00 1.3389157376441405e+00 1.3497999999999999e-01 2 0 0 -208 0 V -134 0 0 0 0 0 0 3 0 P 505 -211 1.4225854778794583e-01 1.7041821011440441e-02 -5.5083339604025987e+00 5.5119643252026496e+00 1.3957000000000000e-01 1 0 0 0 0 P 506 211 -1.4107720881536270e-02 8.5127213061654231e-02 -3.9087883622364373e+01 3.9088228042859569e+01 1.3957000000000000e-01 1 0 0 0 0 P 507 111 1.6703357996876647e-01 -1.0892780320401577e-01 -1.7249871805429915e+01 1.7251552463106442e+01 1.3497999999999999e-01 2 0 0 -209 0 V -135 0 0 0 0 0 0 3 0 P 508 211 -2.5817525732431779e-01 3.3706163801431002e-02 -7.1403369450109677e+00 7.1464454130820343e+00 1.3957000000000000e-01 1 0 0 0 0 P 509 -211 1.1734115969327032e-01 -1.7309197020497577e-01 -7.3396762323509277e+00 7.3439809884384033e+00 1.3957000000000000e-01 1 0 0 0 0 P 510 111 6.9358928792052854e-02 -1.2776487916733750e-01 -3.3473128221427770e+00 3.3531861348623742e+00 1.3497999999999999e-01 2 0 0 -210 0 V -136 0 0 0 0 0 0 2 0 P 511 -211 -1.2047649407579651e-01 -4.2771179832827311e-01 -5.4212052512571177e+01 5.4214053246171595e+01 1.3957000000000000e-01 1 0 0 0 0 P 512 211 6.4055160844649406e-01 -3.5921667792042467e-01 -7.5781094032776821e+01 7.5784781028741136e+01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 513 -321 -4.8377072580336111e-03 3.5469088021954326e-01 -2.2965032716714978e+02 2.2965113158432914e+02 4.9359999999999998e-01 1 0 0 0 0 P 514 211 7.9591735087793936e-02 3.2153579512434560e-01 -3.3163109663442941e+02 3.3163129142897691e+02 1.3957000000000000e-01 1 0 0 0 0 V -138 0 1.7527944554182279e-06 -1.3216893100866474e-06 -2.9987669660695124e-04 2.9988564395488004e-04 0 2 0 P 515 22 4.2687248114623806e-03 -1.2493951962920221e-02 -7.8910727507023308e+00 7.8910837961413147e+00 0 1 0 0 0 0 P 516 22 3.1558737274088211e-01 -2.2869256228817300e-01 -4.6831481640708795e+01 4.6833103338791503e+01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 517 311 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -211 0 P 518 211 2.2872942692541226e-01 2.9508018390042912e-01 -1.4610750785719796e+01 1.4616186498980641e+01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 519 -311 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 2 0 0 -212 0 P 520 -211 -9.8727393571171440e-02 -7.9162813741766619e-02 -9.8295384096922744e-01 1.0008455863403845e+00 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 3 0 P 521 111 -4.7809061756595085e-02 -1.1744692207374245e-01 -6.7080065987515902e-01 6.9589698345343498e-01 1.3497999999999999e-01 2 0 0 -213 0 P 522 111 2.7383748699990303e-03 -2.5570859930017142e-01 -6.5590826218892662e-01 7.1681910916261293e-01 1.3497999999999999e-01 2 0 0 -214 0 P 523 111 2.2122277615129943e-01 -2.3343781869952412e-01 -1.0926442687339883e+00 1.1469628722345426e+00 1.3497999999999999e-01 2 0 0 -215 0 V -142 0 4.3553295221904181e-01 9.2269902071506338e-01 1.1883062990838523e+01 1.1927000312671099e+01 0 2 0 P 524 22 2.8931379374386579e-01 5.5117985952323578e-01 8.8785811440121361e+00 8.9003766684114201e+00 0 1 0 0 0 0 P 525 22 1.0856345494537722e+00 2.2881506306452364e+00 3.2689415347038022e+01 3.2787377318331743e+01 0 1 0 0 0 0 V -143 0 7.4549140510790131e-05 -5.5713556911073003e-05 6.9763829659713370e-05 1.2186216700677129e-04 0 2 0 P 526 22 -8.2019968566538447e-03 2.0234355144485333e-03 -6.3406266212371505e-03 1.0562698029747521e-02 0 1 0 0 0 0 P 527 22 2.8497627939870795e-01 -2.0886793615220239e-01 2.6534876231742960e-01 4.4186792170942063e-01 0 1 0 0 0 0 V -144 0 -1.0446871824117720e-05 -1.0364753656648250e-06 -4.4925011630097772e-06 1.1648095480396876e-05 0 2 0 P 528 22 -2.2244031186969035e-01 -1.2533908917936615e-02 -2.7281509057465479e-02 2.2445728313846441e-01 0 1 0 0 0 0 P 529 22 -3.9099410821804659e-01 -4.8327339844012634e-02 -2.3651562486660557e-01 4.5951231239615881e-01 0 1 0 0 0 0 V -145 0 -4.9209201804216552e-06 -5.9489768515649160e-06 -4.0496413537414356e-06 1.0543619073119500e-05 0 2 0 P 530 22 -1.3747186497283917e-01 -1.1834859580333407e-01 -1.0163655706251823e-01 2.0793002072633451e-01 0 1 0 0 0 0 P 531 22 2.5456988385918800e-02 -1.7067928629986677e-02 9.4545951877033560e-03 3.2074317070866158e-02 0 1 0 0 0 0 V -146 0 -1.3827182148201422e-05 -3.0335428740758462e-05 -3.6059535814902079e-05 4.9943117916170825e-05 0 2 0 P 532 22 -1.0291102724851901e-01 -1.7471342736489895e-01 -3.1251663828659632e-01 3.7253471037862934e-01 0 1 0 0 0 0 P 533 22 -1.0245300649654818e-01 -2.7583433752431574e-01 -2.2304669273426975e-01 3.6923031760319242e-01 0 1 0 0 0 0 V -147 0 1.7866387459979162e-04 3.3940399026452637e-05 -5.5779996742632101e-04 5.8880626925412994e-04 0 2 0 P 534 22 9.0156284313061538e-02 7.3364227371896754e-02 -3.6696477417450074e-01 3.8493325518062893e-01 0 1 0 0 0 0 P 535 22 3.9417515169153622e-01 1.8643192907513383e-02 -1.1451487397189395e+00 1.2112337738573453e+00 0 1 0 0 0 0 V -148 0 1.5526811023645269e-04 6.6455334941560720e-05 -3.3855388481017429e-03 3.3901195720121634e-03 0 2 0 P 536 22 2.5818611403193403e-01 1.7033042577315605e-01 -6.6000404199358647e+00 6.6072843187053891e+00 0 1 0 0 0 0 P 537 22 1.5989649827230745e-01 8.6105041551465412e-03 -2.5160293481340248e+00 2.5211197336924069e+00 0 1 0 0 0 0 V -149 0 7.2529715193879701e-05 -1.4690664520602360e-05 -5.7332155452730202e-04 5.7868011744165789e-04 0 2 0 P 538 22 3.0671920491466848e-01 -2.1415875940039346e-02 -1.9799760299708333e+00 2.0037066625793365e+00 0 1 0 0 0 0 P 539 22 6.4186098697274596e-02 -5.3709820744552196e-02 -9.5189823260953343e-01 9.5557042930154579e-01 0 1 0 0 0 0 V -150 0 3.4977500751212862e-05 -9.0910073544654049e-06 -4.3213422549400324e-05 5.8732420705780224e-05 0 2 0 P 540 22 2.8122996468926652e-02 2.3139561216032611e-02 -6.4180389790431582e-03 3.6980176419242311e-02 0 1 0 0 0 0 P 541 22 2.5605057806319881e-01 -9.6999156685462884e-02 -3.4466801605318848e-01 4.4018947762779376e-01 0 1 0 0 0 0 V -151 0 -1.0775534259433855e-04 3.3860545091989095e-05 -2.8163746315440030e-04 3.0382503180355569e-04 0 2 0 P 542 22 -4.1748328940694612e-01 2.0120342520193288e-01 -1.1243106915250403e+00 1.2160796217043304e+00 0 1 0 0 0 0 P 543 22 -5.3693933981862596e-01 9.8709968376802001e-02 -1.3702400342258485e+00 1.4749933097804426e+00 0 1 0 0 0 0 V -152 0 2.2637848897208109e-05 -8.5237106755244250e-05 -2.8555125925595285e-04 3.1282439270862881e-04 0 2 0 P 544 22 3.3322368581920503e-02 2.1747731258736615e-02 -7.5544789244305063e-02 8.5383600561103321e-02 0 1 0 0 0 0 P 545 22 -2.6019934561552401e-04 -1.4623498539454957e-01 -3.4149766483465338e-01 3.7149077208534353e-01 0 1 0 0 0 0 V -153 0 -1.5980756545795372e-04 -1.3898698689719089e-05 -3.1393406685190805e-04 3.5338645240572673e-04 0 2 0 P 546 22 -5.3506827370041254e-01 -4.6631344643884895e-02 -1.1907466742080999e+00 1.3062733947997545e+00 0 1 0 0 0 0 P 547 22 -3.4868910549881071e-01 -3.0230332668492219e-02 -5.4535103410341612e-01 6.4800132384468989e-01 0 1 0 0 0 0 V -154 0 -6.3130523609729116e-05 -7.5315123686702683e-04 -8.2236634091199269e-04 1.1203562523700783e-03 0 2 0 P 548 22 1.1015665929753610e-02 -6.3897991812966881e-01 -6.6253692779380602e-01 9.2052803398882310e-01 0 1 0 0 0 0 P 549 22 -1.0819192794668329e-01 -5.2033918374588917e-01 -6.0332437746632972e-01 8.0402653181303152e-01 0 1 0 0 0 0 V -155 0 3.2143381626660110e-05 6.5611725966495973e-06 4.4008451615632758e-05 5.8488296283302674e-05 0 2 0 P 550 22 1.0544295108123020e-01 -3.4498365327997006e-03 2.3557776238824138e-01 2.5812206305674928e-01 0 1 0 0 0 0 P 551 22 1.0938407486226136e-01 4.7300767091739339e-02 5.8548253560341892e-02 1.3277852385045502e-01 0 1 0 0 0 0 V -156 0 -3.5452259046247017e-05 -7.2995864286289443e-05 -5.1390127431563749e-05 9.7571184262060991e-05 0 2 0 P 552 22 -1.9798126262379626e-01 -2.6504570114930182e-01 -1.7509571553794673e-01 3.7430510769635916e-01 0 1 0 0 0 0 P 553 22 -8.1138095195689000e-02 -3.0965840265658151e-01 -2.2950415349291114e-01 3.9388307059114364e-01 0 1 0 0 0 0 V -157 0 -1.3345338878477742e-05 -1.7125229223215404e-05 6.1990993773087014e-06 2.3354811653370376e-05 0 2 0 P 554 22 -4.4316209452028396e-02 -8.6217726714066106e-02 8.3541828664441375e-02 1.2797132474322642e-01 0 1 0 0 0 0 P 555 22 -2.5739292549734549e-01 -3.0094652155232349e-01 5.6606347985408700e-02 4.0003025580919543e-01 0 1 0 0 0 0 V -158 0 -2.5727603064668183e-04 2.1792525911790159e-04 1.3908777321292520e-04 3.6764002492298324e-04 0 2 0 P 556 22 -1.4865321497905377e-02 1.5943997275793709e-02 3.5712994186855307e-02 4.1840253179886044e-02 0 1 0 0 0 0 P 557 22 -7.3733893161235586e-01 6.2120943810878437e-01 3.7094134630270303e-01 1.0330379220839589e+00 0 1 0 0 0 0 V -159 0 3.0627117761726698e+01 1.3141971120815964e+02 3.2651209389538309e+01 1.7218819217960470e+02 0 2 0 P 558 -211 -2.6612427220895882e-02 4.6849662704332645e-01 -4.4504203352452962e-02 4.9158694027567257e-01 1.3957000000000000e-01 1 0 0 0 0 P 559 211 1.7626517655937549e-01 1.7365720710385671e-01 2.0404723617668519e-01 3.4977320871954093e-01 1.3957000000000000e-01 1 0 0 0 0 V -160 0 -3.0530269283521600e-06 5.7626651119506302e-06 1.4037615380282384e-06 7.2635690152330765e-06 0 2 0 P 560 22 -9.0960275379681418e-02 8.8826735685521838e-02 8.1907555029945775e-02 1.5123758871615420e-01 0 1 0 0 0 0 P 561 22 -5.2430231284185287e-02 1.8182645196349184e-01 -1.5977550841689239e-02 1.8990805648271983e-01 0 1 0 0 0 0 V -161 0 -2.2844142250951500e-05 2.2616310501518673e-05 1.1583737681535141e-05 3.6474216532683863e-05 0 2 0 P 562 22 -2.3283718133738132e-01 2.3881311161042698e-01 8.0819077585636820e-02 3.4318592423347427e-01 0 1 0 0 0 0 P 563 22 -8.8050614737232667e-03 4.1915781180006394e-04 4.1712130754438539e-02 4.2633398326929202e-02 0 1 0 0 0 0 V -162 0 -7.0456826195412692e-06 1.5086342247262502e-05 5.0018000512883158e-07 1.6826899941382884e-05 0 2 0 P 564 22 -3.8761452320086198e-01 7.9971159026074501e-01 -4.0777907404131487e-03 8.8870708029750911e-01 0 1 0 0 0 0 P 565 22 -1.2307752723231700e-02 5.6609174197397277e-02 3.2468670208649957e-02 6.6410043860289328e-02 0 1 0 0 0 0 V -163 0 -2.3109962223415762e-05 9.8762857799358292e-05 9.5387817199204668e-06 1.1206681203967465e-04 0 2 0 P 566 22 -2.2336516007126720e-02 4.3719835493910252e-02 -4.6077346222812135e-02 6.7331016611128794e-02 0 1 0 0 0 0 P 567 22 -4.4476239279812979e-02 2.4181151180104188e-01 7.3654729631203633e-02 2.5666312999148572e-01 0 1 0 0 0 0 V -164 0 0 0 0 0 0 1 0 P 568 130 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 1 0 0 0 0 V -165 0 -1.9613561677516819e-06 4.0700691677651203e-05 -3.8951391621231090e-05 5.6745200604099134e-05 0 2 0 P 569 22 1.4775738055481847e-02 5.5526797721820642e-01 -5.9375573838335094e-01 8.1307239888108473e-01 0 1 0 0 0 0 P 570 22 -5.5426904079190410e-02 2.8829659400629187e-01 -2.1355275238619759e-01 3.6303146676721182e-01 0 1 0 0 0 0 V -166 0 7.8237635988022883e-05 3.4078800809782420e-05 6.2863066600044894e-05 1.1654488679843942e-04 0 2 0 P 571 22 1.1175372484247184e-01 1.1034915211480543e-01 6.2319827408693455e-02 1.6896624300987670e-01 0 1 0 0 0 0 P 572 22 1.0616482146836660e-01 -1.5428048751952181e-02 1.1277529039650631e-01 1.5565108457610918e-01 0 1 0 0 0 0 V -167 0 0 0 0 0 0 1 0 P 573 130 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 1 0 0 0 0 V -168 0 1.5493882988471805e-04 1.4071034179404914e-04 3.3761140346509285e-04 4.0046927540475497e-04 0 2 0 P 574 22 3.3370271180238198e-01 2.4852931957147076e-01 5.7497661222605501e-01 7.0973405382429888e-01 0 1 0 0 0 0 P 575 22 7.7338644955921618e-02 1.2476490140583157e-01 3.2068169008989816e-01 3.5268157449084070e-01 0 1 0 0 0 0 V -169 0 0 0 0 0 0 1 0 P 576 130 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 1 0 0 0 0 V -170 0 -2.0276210216922056e-05 -2.4842767607923537e-05 1.3378609837657492e-04 1.3788014846235198e-04 0 2 0 P 577 22 -5.4717313373058546e-02 -1.1285578451512142e-01 3.2899766715906870e-01 3.5209356352736459e-01 0 1 0 0 0 0 P 578 22 -2.4403018535371790e-01 -2.5317487924884713e-01 1.6421923050705356e+00 1.6794177019667613e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 579 22 -1.6086181504354044e-01 -6.0677298924980222e-02 2.9941127658110411e-01 3.4526130783489201e-01 0 1 0 0 0 0 P 580 22 3.6268660804388131e-01 -1.1729568439716702e-01 1.3812323156753387e-01 4.0543542066676214e-01 0 1 0 0 0 0 V -172 0 -9.2393718058419983e-06 -2.2313660821585120e-05 4.2527242564390301e-05 5.2327030406155359e-05 0 2 0 P 581 22 1.3943816139045334e-02 -1.3432906142987217e-01 1.7522874901361241e-01 2.2123255012322540e-01 0 1 0 0 0 0 P 582 22 -8.0962240427517831e-02 -2.7524625140518767e-02 1.3324555485594183e-01 1.5832519462497774e-01 0 1 0 0 0 0 V -173 0 2.6315961380831131e-04 -7.0297474497312863e-04 1.8034545840499604e-03 1.9559771137467982e-03 0 2 0 P 583 22 2.2926720213869609e-01 -4.6947447537701975e-01 1.1323030197722768e+00 1.2470284125040818e+00 0 1 0 0 0 0 P 584 22 1.2645186645321813e-01 -4.8075309908517572e-01 1.3054691581173115e+00 1.3969120729684543e+00 0 1 0 0 0 0 V -174 0 6.2468250889524703e-05 -1.8367249709394737e-04 3.2192915302746285e-03 3.2254826022247982e-03 0 2 0 P 585 22 7.5341761928015019e-02 -3.0457864354941522e-01 6.1426509764610753e+00 6.1506589524875315e+00 0 1 0 0 0 0 P 586 22 1.0193999939994444e-01 -2.1667468640062801e-01 2.9935368403643245e+00 3.0030988158605263e+00 0 1 0 0 0 0 V -175 0 -1.3941300077281751e-08 -1.7634140383110248e-08 1.3366597931759887e-07 1.3569213957008366e-07 0 2 0 P 587 22 -2.1704839426217112e-01 -2.9359709181515714e-01 2.4444473847419288e+00 2.4715647421311382e+00 0 1 0 0 0 0 P 588 22 -7.8866853756908106e-02 -8.0701646189538859e-02 3.9271996709894169e-01 4.0860948211881826e-01 0 1 0 0 0 0 V -176 0 8.9381173201513184e-06 -7.1018199468698127e-05 3.6742435990725561e-03 3.6750700656205180e-03 0 2 0 P 589 22 5.4003005372682156e-02 -3.1523884214362824e-01 1.5767194633722832e+01 1.5770438119148228e+01 0 1 0 0 0 0 P 590 22 -1.4870079877579013e-02 4.3064825583227374e-03 3.1940345659309782e-01 3.1977841257847550e-01 0 1 0 0 0 0 V -177 0 -4.8092656890535008e-05 -1.6288822610025237e-04 7.1972785032300363e-03 7.1994412055626572e-03 0 2 0 P 591 22 -6.5003819847065353e-02 -6.5064487704687091e-02 2.7845648367790230e+00 2.7860833107394996e+00 0 1 0 0 0 0 P 592 22 -7.0639396156457757e-02 -3.9435456430646598e-01 1.7515041501736263e+01 1.7519622834245673e+01 0 1 0 0 0 0 V -178 0 -3.3351555116958019e-04 -1.3233491218248413e-04 8.8455906296782214e-03 8.8530754122556499e-03 0 2 0 P 593 22 -5.7146156102573520e-01 -2.4377032932303166e-01 1.6463137954116490e+01 1.6474856709102486e+01 0 1 0 0 0 0 P 594 22 -1.6608990824430428e-01 -4.8881118483925054e-02 3.0984037569121963e+00 3.1032371907755381e+00 0 1 0 0 0 0 V -179 0 3.3392512947562540e-06 -1.7933736575040648e-09 1.1692834762585951e-04 1.1700552164323406e-04 0 2 0 P 595 22 8.3092113277213012e-02 1.3864082624491623e-02 1.1273307696862198e+00 1.1304738724788010e+00 0 1 0 0 0 0 P 596 22 8.8461214816619546e-02 -1.3956216816351865e-02 4.8798383269399777e+00 4.8806600229463850e+00 0 1 0 0 0 0 V -180 0 3.7881267448364677e-06 2.0894290176796522e-05 6.9342123555268668e-04 6.9376754781931517e-04 0 2 0 P 597 22 -1.7008055498074472e-02 2.1241870150833311e-01 5.6731806420242963e+00 5.6771814816633714e+00 0 1 0 0 0 0 P 598 22 1.1118311211387850e-01 3.0702562886657264e-01 1.1565678698093732e+01 1.1570287384881127e+01 0 1 0 0 0 0 V -181 0 4.2848433363917432e-07 4.3252807212474440e-05 2.1707209259958326e-03 2.1711724959265731e-03 0 2 0 P 599 22 6.2604039713167900e-02 4.2970682649130676e-01 2.0251891721644245e+01 2.0256546732543637e+01 0 1 0 0 0 0 P 600 22 -5.6496622542509860e-02 1.8679864806142088e-01 1.0688558641000245e+01 1.0690340098676810e+01 0 1 0 0 0 0 V -182 0 -1.0856455606341898e-05 -3.3130859319539594e-06 2.2004510645548892e-03 2.2007134871773401e-03 0 2 0 P 601 22 -1.4129831260776927e-02 5.9980859085423562e-02 3.4478178746791981e+00 3.4483685204086680e+00 0 1 0 0 0 0 P 602 22 -3.1616591966346273e-02 -7.3941385128790560e-02 5.8243395715225486e+00 5.8248947099261628e+00 0 1 0 0 0 0 V -183 0 5.9270025063243236e-05 -1.7404494131186669e-04 1.1109159943447154e-02 1.1110696380285313e-02 0 2 0 P 603 22 3.6979185162852352e-01 -9.9396790785838718e-01 6.0977798410630506e+01 6.0987020071674877e+01 0 1 0 0 0 0 P 604 22 6.7421522329279962e-02 -2.8989819359936131e-01 2.0970425763878296e+01 2.0972537837435311e+01 0 1 0 0 0 0 V -184 0 -1.2619145634172405e-06 1.2712549984865108e-06 1.2095365802126941e-03 1.2095634297965084e-03 0 2 0 P 605 22 4.7447799774845589e-02 4.0539640970956494e-03 3.6257585026865802e+00 3.6260712138804458e+00 0 1 0 0 0 0 P 606 22 -6.9125061409615551e-02 1.7783748221618281e-02 1.7151750265493217e+01 1.7151898778434482e+01 0 1 0 0 0 0 V -185 0 2.1214523662777376e-06 -2.6555494802208933e-05 4.0474669704353063e-03 4.0477620490575192e-03 0 2 0 P 607 22 4.2587000092977084e-02 1.8428580378439384e-02 2.8648434219497414e+00 2.8652192058270840e+00 0 1 0 0 0 0 P 608 22 -3.5598677532906783e-02 -1.0590561562562652e-01 1.0468005898754448e+01 1.0468602139809358e+01 0 1 0 0 0 0 V -186 0 -2.3477925341504178e-05 2.0280803592558862e-05 8.0444758122121419e-03 8.0445668349136638e-03 0 2 0 P 609 22 -1.3371682069126956e-01 1.4021119136715113e-01 4.7189657976406295e+01 4.7190055724660112e+01 0 1 0 0 0 0 P 610 22 -7.7326871897490787e-03 -1.8023662193619217e-02 1.2765982300828291e+00 1.2767488742507889e+00 0 1 0 0 0 0 V -187 0 1.0965398689753128e-05 4.3934542170654282e-05 1.3947041098515944e-01 1.3947043596520542e-01 0 2 0 P 611 22 7.8628750911548986e-02 5.4202122757459600e-02 1.6496580741708874e+02 1.6496583506024089e+02 0 1 0 0 0 0 P 612 22 -5.7521924547704266e-02 3.0365596046742941e-02 1.0349481411131067e+02 1.0349483455117931e+02 0 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 613 111 -1.0007671194680588e-01 6.5324508566010589e-02 2.3756431331142164e-01 2.9822649622828962e-01 1.3497999999999999e-01 2 0 0 -216 0 P 614 111 1.4811202823700551e-01 8.9489737385213403e-02 1.3342491717846466e-01 2.5684118620235763e-01 1.3497999999999999e-01 2 0 0 -217 0 P 615 111 5.3047790629529530e-02 -4.6674555295507486e-02 1.0139660692918552e-01 1.8301217035885767e-01 1.3497999999999999e-01 2 0 0 -218 0 V -189 0 7.1575932317251089e-05 6.2444722761509646e-05 -4.5973060156706368e-04 4.7127545857880032e-04 0 2 0 P 616 22 1.3413135534606807e-01 9.4576119148161025e-02 -1.0797231129539018e+00 1.0921253881523698e+00 0 1 0 0 0 0 P 617 22 9.8426947751732469e-02 1.0831385088341638e-01 -4.1399363122602895e-01 4.3910190278866984e-01 0 1 0 0 0 0 V -190 0 -6.0334114165957099e-05 6.6125193071370409e-05 -2.7191778691592217e-02 2.7191950161317667e-02 0 2 0 P 618 22 -2.3270893257734387e-01 2.4966336221171562e-01 -9.1711157820598530e+01 9.1711792884211263e+01 0 1 0 0 0 0 P 619 22 7.9088259024267075e-03 -3.2861565158548230e-03 -9.6032450682352355e+00 9.6032488871702260e+00 0 1 0 0 0 0 V -191 0 -2.5000937051640845e-05 -1.5479719287917333e-05 -3.1772166578265156e-02 3.1772210073041235e-02 0 2 0 P 620 22 -5.7857561140387904e-02 3.0993497743476657e-02 -2.3836856533279331e+01 2.3836946899349861e+01 0 1 0 0 0 0 P 621 22 -1.9578394276687262e-02 -7.8939174746384580e-02 -7.4571777894163191e+01 7.4571822245424826e+01 0 1 0 0 0 0 V -192 0 -3.3885487787946758e-05 2.5060811261695470e-04 -2.2953606001899132e-03 2.3092690824530623e-03 0 2 0 P 622 22 -4.4140050050192048e-01 3.0499956332031197e+00 -2.8291877298078887e+01 2.8459227480976235e+01 0 1 0 0 0 0 P 623 22 -3.8709774506247206e-02 5.0077307996270559e-01 -4.2301927956586605e+00 4.2599064793373209e+00 0 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 624 -211 -8.3440250211859313e-01 6.9414865635304823e-01 -7.9088417535738627e+00 7.9841923549368348e+00 1.3957000000000000e-01 1 0 0 0 0 P 625 211 -4.6411405376321657e-01 9.7412151952983472e-01 -6.1517656970424541e+00 6.2472406361464801e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 -7.4236737301190179e-05 2.8709641390097327e-05 -7.6531298084143464e-04 7.7243876725580107e-04 0 2 0 P 626 22 -1.0828373806067951e-01 8.5871616229304837e-02 -7.5090700056749005e-01 7.6351858255283578e-01 0 1 0 0 0 0 P 627 22 -3.9102422787073723e-02 -2.8872831293017501e-02 -7.6850974906060543e-01 7.7004537155669517e-01 0 1 0 0 0 0 V -195 0 -9.3906586457413829e-07 -5.9411530187208128e-06 -8.9815238796829471e-05 9.1896228868551310e-05 0 2 0 P 628 22 -1.3320942921857294e-02 3.5555959758585776e-02 -6.8037915792382997e-02 7.7915542608987476e-02 0 1 0 0 0 0 P 629 22 6.4664168549317252e-03 -7.8922234447830683e-02 -5.8755070558637668e-01 5.9286285536558037e-01 0 1 0 0 0 0 V -196 0 -1.5939618486369118e-04 6.3735507198752916e-06 -6.7941585432267201e-04 6.9902698504997296e-04 0 2 0 P 630 22 -4.1061900666324386e-01 6.2097683569687978e-02 -1.8747789158167412e+00 1.9202239645751809e+00 0 1 0 0 0 0 P 631 22 -1.2979292344023130e-01 -4.0488992940827223e-02 -4.2869173181136894e-01 4.4973565841275553e-01 0 1 0 0 0 0 V -197 0 2.0643820895390459e+01 -8.0840928111842871e+01 -3.7462971438793988e+03 3.7473186924516558e+03 0 2 0 P 632 -211 1.9795272173451232e-02 -2.9044275379573697e-01 -9.3415415783931603e+00 9.3471186839464622e+00 1.3957000000000000e-01 1 0 0 0 0 P 633 211 3.7028611293529395e-01 -1.2371107631205758e+00 -6.1447717169715723e+01 6.1461443035450593e+01 1.3957000000000000e-01 1 0 0 0 0 V -198 0 -3.4382591530053092e-04 -1.0543249975194654e-03 -7.4675175244422784e-02 7.4683417280351883e-02 0 2 0 P 634 22 -6.5579686232794987e-01 -2.1359617010724024e+00 -1.5414485687642863e+02 1.5416104989058601e+02 0 1 0 0 0 0 P 635 22 -6.8313850066065096e-01 -1.9698167188811015e+00 -1.3665705310971549e+02 1.3667295643523875e+02 0 1 0 0 0 0 V -199 0 2.2362966388621159e-05 -3.8153200031461547e-05 -1.7776337802061094e-03 1.7784025546243075e-03 0 2 0 P 636 22 5.7763677263542090e-02 -1.9136128225376486e-01 -7.2721877316519059e+00 7.2749343768274146e+00 0 1 0 0 0 0 P 637 22 5.0455249771261416e-02 6.7302141477962457e-03 -1.3301424338404253e+00 1.3311160438950789e+00 0 1 0 0 0 0 V -200 0 -3.3049270089520947e-05 -2.3096054011827400e-05 -3.7571192052041915e-03 3.7573493739114544e-03 0 2 0 P 638 22 -3.9424131655850264e-01 -2.9923501467436614e-01 -4.7757460552618383e+01 4.7760025190996181e+01 0 1 0 0 0 0 P 639 22 -4.3376702876091230e-02 -6.5886657286408756e-03 -1.9919911268745627e+00 1.9924742403392508e+00 0 1 0 0 0 0 V -201 0 9.3367098934036936e-05 -2.3075451999006639e-05 3.8458397146173416e-04 3.9739522798756203e-04 0 2 0 P 640 22 9.9017072473670226e-02 -8.1128339776451522e-02 5.8291298957693749e-01 5.9680293361683656e-01 0 1 0 0 0 0 P 641 22 3.5567100456161727e-01 -3.1246715418965992e-02 1.2899710181619228e+00 1.3384705631458809e+00 0 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 642 211 -2.4576207637755104e-01 1.5574702289929518e-01 2.9481866443683988e+00 2.9657950718584045e+00 1.3957000000000000e-01 1 0 0 0 0 P 643 -211 1.9305634757751650e-01 -3.2754149375032332e-01 5.6559080841084652e+00 5.6703906588745410e+00 1.3957000000000000e-01 1 0 0 0 0 V -203 0 4.7947559207063651e-05 1.8743769763073063e-05 -1.3996021247504021e-03 1.4006293097225057e-03 0 2 0 P 644 22 1.8835468060241567e-01 5.9945266369590633e-02 -7.1479463080354080e+00 7.1506788029684287e+00 0 1 0 0 0 0 P 645 22 2.4209827144896290e-01 1.0832838844238450e-01 -5.4170909172053996e+00 5.4235800554661626e+00 0 1 0 0 0 0 V -204 0 -4.9660074040994333e-05 -9.1384072016398563e-07 -1.6440801843321086e-03 1.6455056450021364e-03 0 2 0 P 646 22 -1.7136842177076752e-02 -3.2810632171762479e-02 -2.5384196567090056e+00 2.5386895364557631e+00 0 1 0 0 0 0 P 647 22 -1.2505789993077504e-01 3.0193975873100833e-02 -2.1691761801950813e+00 2.1729879095935729e+00 0 1 0 0 0 0 V -205 0 -4.7084066677389482e-04 -5.9375578958587187e-05 -8.9970212712279281e-03 9.0098543127026358e-03 0 2 0 P 648 22 -4.0907063650597941e-01 -4.3870732628050670e-02 -6.5450530036438286e+00 6.5579708940601300e+00 0 1 0 0 0 0 P 649 22 -4.2068570974617642e-01 -6.0766073259709688e-02 -9.3102798594199854e+00 9.3199774700782108e+00 0 1 0 0 0 0 V -206 0 -1.0627626530457704e-05 -1.4420786786789068e-04 -1.1552353395938867e-04 1.8663035118524687e-04 0 2 0 P 650 22 -1.5229367191954694e-02 -7.4079450504613986e-01 -5.9116431297389904e-01 9.4788378890322045e-01 0 1 0 0 0 0 P 651 22 -4.4524258281793891e-02 -7.0011454520699914e-02 -5.8364531667943483e-02 1.0144176603582128e-01 0 1 0 0 0 0 V -207 0 0 0 0 0 0 1 0 P 652 130 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 1 0 0 0 0 V -208 0 2.6428534901832397e-06 -2.9182930072095719e-06 -4.0551838489598011e-05 4.0951146963461157e-05 0 2 0 P 653 22 9.2096994972170346e-02 -6.1082785226852163e-02 -1.2561510057633618e+00 1.2610028994472136e+00 0 1 0 0 0 0 P 654 22 -5.6877392448184943e-03 -3.4332086495692984e-02 -6.9709165932721667e-02 7.7912838196926931e-02 0 1 0 0 0 0 V -209 0 9.3781386746660198e-05 -6.1157765053290885e-05 -9.6849801065021085e-03 9.6859237156110122e-03 0 2 0 P 655 22 6.7540719358148787e-02 -1.2295956317095448e-01 -1.0196066521405267e+01 1.0197031593158272e+01 0 1 0 0 0 0 P 656 22 9.9492860610617684e-02 1.4031759966938716e-02 -7.0538052840246479e+00 7.0545208699481705e+00 0 1 0 0 0 0 V -210 0 1.5298275171739444e-05 -2.8180687228403756e-05 -7.3830599074793321e-04 7.3960144838718632e-04 0 2 0 P 657 22 4.6247397676361457e-03 1.3829320064062008e-02 -4.7162264777538591e-02 4.9365144892922992e-02 0 1 0 0 0 0 P 658 22 6.4734189024416716e-02 -1.4159419923139951e-01 -3.3001505573652383e+00 3.3038209899694513e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 659 310 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -219 0 V -212 0 0 0 0 0 0 1 0 P 660 130 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 1 0 0 0 0 V -213 0 -7.3342785183459024e-06 -1.8017262961502671e-05 -1.0290599081116587e-04 1.0675596025517438e-04 0 2 0 P 661 22 4.3335705601751880e-02 -1.0322778658087705e-02 -1.6117016656036340e-01 1.6721353332885724e-01 0 1 0 0 0 0 P 662 22 -9.1144767358346965e-02 -1.0712414341565475e-01 -5.0963049331479560e-01 5.2868345012457774e-01 0 1 0 0 0 0 V -214 0 2.3289013549293327e-06 -2.1747208897570036e-04 -5.5782926481562258e-04 6.0963201673284323e-04 0 2 0 P 663 22 4.1351835940388942e-03 -1.7996740470468281e-01 -2.7659605885261906e-01 3.3001628182908943e-01 0 1 0 0 0 0 P 664 22 -1.3968087240398643e-03 -7.5741194595488615e-02 -3.7931220333630755e-01 3.8680282733352339e-01 0 1 0 0 0 0 V -215 0 6.1129297576019006e-06 -6.4504614457150077e-06 -3.0192450257694374e-05 3.1693406956216335e-05 0 2 0 P 665 22 4.1122060335194123e-03 1.6913040658006116e-02 -5.3825317938393985e-02 5.6569656477043206e-02 0 1 0 0 0 0 P 666 22 2.1711057011778001e-01 -2.5035085935753026e-01 -1.0388189507955945e+00 1.0903932157574994e+00 0 1 0 0 0 0 V -216 0 -1.6851219132982025e-10 1.0999538126165820e-10 4.0001796860742436e-10 5.0216278507187129e-10 0 2 0 P 667 22 -9.2566380960936570e-02 9.0685254050486871e-02 1.1633093648067099e-01 1.7414142806603056e-01 0 1 0 0 0 0 P 668 22 -7.5103309858693089e-03 -2.5360745484476279e-02 1.2123337683075065e-01 1.2408506816225907e-01 0 1 0 0 0 0 V -217 0 1.6393039358514227e-05 9.9047241780487354e-06 1.4767469899292045e-05 2.8427182615886741e-05 0 2 0 P 669 22 9.8940591396890376e-02 1.2133965356437675e-01 7.3234360240121477e-02 1.7284624286593350e-01 0 1 0 0 0 0 P 670 22 4.9171436840115122e-02 -3.1849916179163336e-02 6.0190556938343173e-02 8.3994943336424072e-02 0 1 0 0 0 0 V -218 0 7.3548058078630191e-07 -6.4711892105781862e-07 1.4058122773641915e-06 2.5373704681975370e-06 0 2 0 P 671 22 2.6853549766319547e-02 -1.4033837957733747e-03 1.2338045730684905e-01 1.2627675901121962e-01 0 1 0 0 0 0 P 672 22 2.6194240863209987e-02 -4.5271171499734107e-02 -2.1983850377663518e-02 5.6735411347638029e-02 0 1 0 0 0 0 V -219 0 2.5678622015421473e+00 -1.7974403382515305e+00 -3.7897519685896702e+02 3.7902512065065866e+02 0 2 0 P 673 -211 -6.7514417930739964e-02 -1.0120446765128294e-02 -1.8254475337189451e+01 1.8255136544025881e+01 1.3957000000000000e-01 1 0 0 0 0 P 674 211 3.0894826880397325e-01 -1.5887730643141576e-01 -1.7377281346698286e+01 1.7381314041766348e+01 1.3957000000000000e-01 1 0 0 0 0 E 19 47 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 331 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -2 1.4161646436849859e-01 8.8026988335379530e-01 9.1894888336241223e+01 9.1899213449412969e+01 0 3 0 0 -3 0 P 11 2224 6.9228342478685756e-03 -4.4683775508229889e-01 9.4295725809607416e+02 9.4295819427000674e+02 1.2513324820290623e+00 2 0 0 -65 0 P 39 1 -1.4853929861636717e-01 -4.3343212827149641e-01 2.1854674955095584e+02 2.1854747897567080e+02 3.3000000000000002e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 -6.6703271005549147e-01 -1.6539733176196159e+00 -5.7400018665432391e+01 5.7427717203138691e+01 0 3 0 0 -4 0 P 92 2101 6.6703271005549147e-01 1.6539733176196159e+00 -3.6695799306479134e+03 3.6695804097468099e+03 5.7933000000000001e-01 2 0 0 -64 0 V -3 0 0 0 0 0 0 3 0 P 5 -1 -1.1682840435104571e+00 -2.3693354246323537e+00 3.1692764305382628e+01 3.1802672014742313e+01 0 3 0 0 -5 0 P 12 1 2.1711082554057085e-02 1.8420414981480011e+00 1.2749185760959755e+01 1.2885814907077625e+01 3.3000000000000002e-01 2 0 0 -66 0 P 13 -2 1.2865532889400102e+00 1.4035068484870805e+00 4.7312144186466263e+01 4.7351588551599889e+01 3.3000000000000002e-01 2 0 0 -66 0 V -4 0 0 0 0 0 0 1 0 P 6 2 -6.6539657367060279e-01 -1.6499163562685484e+00 -5.7259224581999803e+01 5.7286855179131848e+01 0 3 0 0 -5 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -4.7948078521893839e-01 -6.9067462202719456e+00 -2.0098820455191202e+01 8.2759711514162163e+01 7.9982962067197150e+01 3 0 0 -6 0 P 8 22 -1.3541998319621211e+00 2.8874944393710442e+00 -5.4676398214259683e+00 6.3298156797120013e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -4.7948078521893839e-01 -6.9067462202719456e+00 -2.0098820455191202e+01 8.2759711514162163e+01 7.9982962067197150e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.3541998319621211e+00 2.8874944393710442e+00 -5.4676398214259683e+00 6.3298156797120031e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 11 0 P 14 -1 2.4056546901686932e+01 -2.5617910519221130e+01 -3.6841638807035473e+00 3.5336620547298580e+01 3.3000000000000002e-01 2 0 0 -68 0 P 15 21 3.2501300850508308e+00 -3.0490537865065233e+00 1.4084317753955353e-01 4.4586894221757278e+00 0 2 0 0 -68 0 P 16 21 4.8639379203997446e-01 3.0976766894481436e-02 -5.0738487060162707e-01 7.0354664943960243e-01 0 2 0 0 -68 0 P 17 21 -1.0110667803226264e-01 -4.5174647041823286e-02 -2.5375041696976214e-02 1.1360986673346737e-01 0 2 0 0 -68 0 P 18 21 5.4042405895167200e-01 9.4830408069790206e-01 5.4164019061977799e-02 1.0928277695607116e+00 0 2 0 0 -68 0 P 19 21 -1.1549382070549910e-01 6.2347845773653354e-01 9.9297089342784528e-01 1.1781576316764975e+00 0 2 0 0 -68 0 P 20 21 3.5293110387722604e-01 2.5650537029015602e-01 -3.5478414811388076e-01 5.6234078708962543e-01 0 2 0 0 -68 0 P 21 21 -7.5905188215666008e-01 -1.5956661435955127e-01 -2.5973548027001102e-02 7.7607724449364501e-01 0 2 0 0 -68 0 P 22 21 -8.7286555031751634e-01 4.4045365599203390e-01 -6.8593956343865795e-02 9.8010143498249902e-01 0 2 0 0 -68 0 P 23 21 -7.7193713629288681e+00 5.2867614853844254e+00 -4.1252518528263122e+00 1.0225274768503649e+01 0 2 0 0 -68 0 P 24 2 -1.9598017432684795e+01 1.4378479529861558e+01 -1.2495271246907389e+01 2.7332465392208139e+01 3.3000000000000002e-01 2 0 0 -68 0 V -9 0 0 0 0 0 2 1 0 P 37 1 2.7538763887480144e-01 -1.9184371823773239e-01 -2.5984138602428249e+01 2.5986306033641529e+01 0 2 0 0 -9 0 P 38 -1 -2.7538763887480144e-01 1.9184371823773239e-01 -3.5971855992316577e+00 3.6128086856616055e+00 0 2 0 0 -9 0 P 119 91 0 0 -2.9581324201659907e+01 2.9599114719303135e+01 1.0260851050265498e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 120 223 0 0 -2.2610442999049550e+01 2.2624041155857999e+01 7.8428668781753630e-01 2 0 0 -84 0 P 174 21 0 0 -6.9708812026103582e+00 6.9750735634451351e+00 2.4179841720901352e-01 2 0 0 -85 0 V -11 0 0 0 0 0 0 1 0 P 121 1 -1.4853929861636717e-01 -4.3343212827149641e-01 2.1854674955095584e+02 2.1854747897567080e+02 3.3000000000000002e-01 2 0 0 -85 0 V -12 0 0 0 0 0 1 1 0 P 40 21 -6.8338261873164230e-01 -1.3971084174197204e+00 1.5878346112051068e+01 1.5954334802419586e+01 0 2 0 0 -12 0 P 122 21 -6.8338261873164230e-01 -1.3971084174197204e+00 1.5878346112051068e+01 1.5954334802419586e+01 0 2 0 0 -85 0 V -13 0 0 0 0 0 1 1 0 P 41 21 -6.6444121140937584e-01 -1.4048547590297249e+00 2.0208971282104912e+01 2.0268636345307709e+01 0 2 0 0 -13 0 P 123 21 -6.6444121140937584e-01 -1.4048547590297249e+00 2.0208971282104912e+01 2.0268636345307709e+01 0 2 0 0 -85 0 V -14 0 0 0 0 0 1 1 0 P 42 21 -1.3366508856085526e-02 -1.2352236914377299e+00 1.0998841432472569e+01 1.1067993001810368e+01 0 2 0 0 -14 0 P 124 21 -1.3366508856085526e-02 -1.2352236914377299e+00 1.0998841432472569e+01 1.1067993001810368e+01 0 2 0 0 -85 0 V -15 0 0 0 0 0 1 1 0 P 43 21 -2.6069476407972897e-01 -1.5433395963179697e+00 1.5034504216642594e+01 1.5115759190653490e+01 0 2 0 0 -15 0 P 125 21 -2.6069476407972897e-01 -1.5433395963179697e+00 1.5034504216642594e+01 1.5115759190653490e+01 0 2 0 0 -85 0 V -16 0 0 0 0 0 1 1 0 P 44 21 1.0599134464762482e-01 -2.2110978892718145e+00 1.5494209830529527e+02 1.5495791046374131e+02 0 2 0 0 -16 0 P 126 21 1.0599134464762482e-01 -2.2110978892718145e+00 1.5494209830529527e+02 1.5495791046374131e+02 0 2 0 0 -85 0 V -17 0 0 0 0 0 1 1 0 P 45 21 -2.5799661286127318e-01 -4.6502340019751358e+00 1.1759850022680021e+03 1.1759942248148152e+03 0 2 0 0 -17 0 P 127 21 -2.5799661286127318e-01 -4.6502340019751358e+00 1.1759850022680021e+03 1.1759942248148152e+03 0 2 0 0 -85 0 V -18 0 0 0 0 0 1 1 0 P 46 21 -9.5079595685149099e-01 -1.3476566404377811e-02 3.3758147829226704e+02 3.3758281751380912e+02 0 2 0 0 -18 0 P 128 21 -9.5079595685149099e-01 -1.3476566404377811e-02 3.3758147829226704e+02 3.3758281751380912e+02 0 2 0 0 -85 0 V -19 0 0 0 0 0 1 1 0 P 47 21 2.5266872960774260e+00 -5.7966300965256443e-02 7.6161220357117736e+02 7.6161639697247108e+02 0 2 0 0 -19 0 P 129 21 2.5266872960774260e+00 -5.7966300965256443e-02 7.6161220357117736e+02 7.6161639697247108e+02 0 2 0 0 -85 0 V -20 0 0 0 0 0 1 1 0 P 48 21 -1.5133306433408764e-01 8.8548638927993313e+00 7.2961513783701002e+02 7.2966888441071376e+02 0 2 0 0 -20 0 P 130 21 -1.5133306433408764e-01 8.8548638927993313e+00 7.2961513783701002e+02 7.2966888441071376e+02 0 2 0 0 -85 0 V -21 0 0 0 0 0 1 1 0 P 49 21 1.6901033286666145e+00 7.9041620992253563e+00 1.0460404156051022e+03 1.0460716434867390e+03 0 2 0 0 -21 0 P 131 21 1.6901033286666145e+00 7.9041620992253563e+00 1.0460404156051022e+03 1.0460716434867390e+03 0 2 0 0 -85 0 V -22 0 0 0 0 0 1 1 0 P 50 21 8.2161403558859316e+00 4.9547113422221658e+00 3.7032550684215141e+02 3.7044977411887930e+02 0 2 0 0 -22 0 P 132 21 8.2161403558859316e+00 4.9547113422221658e+00 3.7032550684215141e+02 3.7044977411887930e+02 0 2 0 0 -85 0 V -23 0 0 0 0 0 1 1 0 P 51 21 4.3572987651685553e+00 -1.4449065886615817e+00 1.6206856496453599e+02 1.6213356702806152e+02 0 2 0 0 -23 0 P 133 21 4.3572987651685553e+00 -1.4449065886615817e+00 1.6206856496453599e+02 1.6213356702806152e+02 0 2 0 0 -85 0 V -24 0 0 0 0 0 1 1 0 P 52 21 8.9818864714375579e-01 -4.3386011018006887e-01 3.8663710884097299e+01 3.8676575814957140e+01 0 2 0 0 -24 0 P 134 21 8.9818864714375579e-01 -4.3386011018006887e-01 3.8663710884097299e+01 3.8676575814957140e+01 0 2 0 0 -85 0 V -25 0 0 0 0 0 1 1 0 P 53 21 1.3659365637162217e+00 -3.8122488837939908e-02 1.4588171938959823e+01 1.4652030457957247e+01 0 2 0 0 -25 0 P 135 21 1.3659365637162217e+00 -3.8122488837939908e-02 1.4588171938959823e+01 1.4652030457957247e+01 0 2 0 0 -85 0 V -26 0 0 0 0 0 1 1 0 P 54 21 3.7869466358585298e+00 -3.2505406527423406e+00 3.0462950216775766e+01 3.0869051091145149e+01 0 2 0 0 -26 0 P 136 21 3.7869466358585298e+00 -3.2505406527423406e+00 3.0462950216775766e+01 3.0869051091145149e+01 0 2 0 0 -85 0 V -27 0 0 0 0 0 1 1 0 P 55 21 -2.1060712075081600e+00 -1.7412997622683302e+00 1.1895290791745524e+01 1.2205146611710834e+01 0 2 0 0 -27 0 P 137 21 -2.1060712075081600e+00 -1.7412997622683302e+00 1.1895290791745524e+01 1.2205146611710834e+01 0 2 0 0 -85 0 V -28 0 0 0 0 0 1 1 0 P 56 21 -1.8410301852498301e+00 -2.1136520526590750e+00 1.1715900089552997e+01 1.2046544402902390e+01 0 2 0 0 -28 0 P 138 21 -1.8410301852498301e+00 -2.1136520526590750e+00 1.1715900089552997e+01 1.2046544402902390e+01 0 2 0 0 -85 0 V -29 0 0 0 0 0 1 1 0 P 57 21 -1.6901033286666145e+00 -7.9041620992253563e+00 1.9833165422548284e+01 2.1416971738099797e+01 0 2 0 0 -29 0 P 139 21 -1.6901033286666145e+00 -7.9041620992253563e+00 1.9833165422548284e+01 2.1416971738099797e+01 0 2 0 0 -85 0 V -30 0 0 0 0 0 1 1 0 P 58 21 -2.5218112483232108e-01 -1.6018138151199686e+00 3.3191741551409084e+00 3.6940925665427291e+00 0 2 0 0 -30 0 P 140 21 -2.5218112483232108e-01 -1.6018138151199686e+00 3.3191741551409084e+00 3.6940925665427291e+00 0 2 0 0 -85 0 V -31 0 0 0 0 0 1 1 0 P 59 21 1.5133306433408764e-01 -8.8548638927993313e+00 8.9689591811094100e+00 1.2604512884231935e+01 0 2 0 0 -31 0 P 141 21 1.5133306433408764e-01 -8.8548638927993313e+00 8.9689591811094100e+00 1.2604512884231935e+01 0 2 0 0 -85 0 V -32 0 0 0 0 0 1 1 0 P 60 21 -7.8192342042685414e-01 -3.3320323503063123e+00 3.4538458732146815e-01 3.4399323150403789e+00 0 2 0 0 -32 0 P 142 21 -7.8192342042685414e-01 -3.3320323503063123e+00 3.4538458732146815e-01 3.4399323150403789e+00 0 2 0 0 -85 0 V -33 0 0 0 0 0 1 1 0 P 61 21 -1.6279354968964391e+01 -9.6530042509536766e+00 2.0037084399658273e+01 2.7562340983913256e+01 0 2 0 0 -33 0 P 143 21 -1.6279354968964391e+01 -9.6530042509536766e+00 2.0037084399658273e+01 2.7562340983913256e+01 0 2 0 0 -85 0 V -34 0 0 0 0 0 1 1 0 P 62 21 -8.2161403558859316e+00 -4.9547113422221658e+00 1.3171316290888373e+00 9.6844701744963100e+00 0 2 0 0 -34 0 P 144 21 -8.2161403558859316e+00 -4.9547113422221658e+00 1.3171316290888373e+00 9.6844701744963100e+00 0 2 0 0 -85 0 V -35 0 0 0 0 0 1 1 0 P 63 21 -3.1622223881117895e-01 -6.3923458735977460e-03 -3.4620766122144853e-01 4.6893188321220736e-01 0 2 0 0 -35 0 P 145 21 -3.1622223881117895e-01 -6.3923458735977460e-03 -3.4620766122144853e-01 4.6893188321220736e-01 0 2 0 0 -85 0 V -36 0 0 0 0 0 1 1 0 P 64 21 -1.3659365637162217e+00 3.8122488837939908e-02 -7.7905326775783401e-01 1.5729462846061331e+00 0 2 0 0 -36 0 P 146 21 -1.3659365637162217e+00 3.8122488837939908e-02 -7.7905326775783401e-01 1.5729462846061331e+00 0 2 0 0 -85 0 V -37 0 0 0 0 0 1 1 0 P 65 21 -3.7869466358585298e+00 3.2505406527423406e+00 -4.6530046452286733e-01 5.0123331772993733e+00 0 2 0 0 -37 0 P 147 21 -3.7869466358585298e+00 3.2505406527423406e+00 -4.6530046452286733e-01 5.0123331772993733e+00 0 2 0 0 -85 0 V -38 0 0 0 0 0 1 1 0 P 66 21 -1.7244858100560836e-01 4.7681769534841933e-01 1.3307889257967800e-01 5.2421714903125727e-01 0 2 0 0 -38 0 P 148 21 -1.7244858100560836e-01 4.7681769534841933e-01 1.3307889257967800e-01 5.2421714903125727e-01 0 2 0 0 -85 0 V -39 0 0 0 0 0 1 1 0 P 67 21 3.4278312441482994e-01 1.1287995436626865e+00 7.6385417933600763e-02 1.1821689440302401e+00 0 2 0 0 -39 0 P 149 21 3.4278312441482994e-01 1.1287995436626865e+00 7.6385417933600763e-02 1.1821689440302401e+00 0 2 0 0 -85 0 V -40 0 0 0 0 0 1 1 0 P 68 21 1.9505083408306072e+00 4.6431276432254487e+00 5.9716531655453109e-01 5.0714616743331256e+00 0 2 0 0 -40 0 P 150 21 1.9505083408306072e+00 4.6431276432254487e+00 5.9716531655453109e-01 5.0714616743331256e+00 0 2 0 0 -85 0 V -41 0 0 0 0 0 1 1 0 P 69 21 1.8410301852498301e+00 2.1136520526590750e+00 2.1950304835223361e-01 2.8116007417389239e+00 0 2 0 0 -41 0 P 151 21 1.8410301852498301e+00 2.1136520526590750e+00 2.1950304835223361e-01 2.8116007417389239e+00 0 2 0 0 -85 0 V -42 0 0 0 0 0 1 1 0 P 70 21 1.6279354968964391e+01 9.6530042509536766e+00 3.2874988341076000e-01 1.8928971598064116e+01 0 2 0 0 -42 0 P 152 21 1.6279354968964391e+01 9.6530042509536766e+00 3.2874988341076000e-01 1.8928971598064116e+01 0 2 0 0 -85 0 V -43 0 0 0 0 0 1 1 0 P 71 21 2.1906503460231281e+00 -2.4375663618662413e+00 -2.5348229047362740e+00 4.1431878868099519e+00 0 2 0 0 -43 0 P 153 21 2.1906503460231281e+00 -2.4375663618662413e+00 -2.5348229047362740e+00 4.1431878868099519e+00 0 2 0 0 -85 0 V -44 0 0 0 0 0 1 1 0 P 72 21 3.2987184248182744e+00 3.0258957438370051e+00 -7.8325233418994351e+00 9.0214195224590874e+00 0 2 0 0 -44 0 P 154 21 3.2987184248182744e+00 3.0258957438370051e+00 -7.8325233418994351e+00 9.0214195224590874e+00 0 2 0 0 -85 0 V -45 0 0 0 0 0 1 1 0 P 73 21 6.8338261873164230e-01 1.3971084174197204e+00 -2.3272333926740618e+00 2.7990961036711077e+00 0 2 0 0 -45 0 P 155 21 6.8338261873164230e-01 1.3971084174197204e+00 -2.3272333926740618e+00 2.7990961036711077e+00 0 2 0 0 -85 0 V -46 0 0 0 0 0 1 1 0 P 74 21 2.5218112483232108e-01 1.6018138151199686e+00 -2.2434555618727394e+00 2.7681213261214928e+00 0 2 0 0 -46 0 P 156 21 2.5218112483232108e-01 1.6018138151199686e+00 -2.2434555618727394e+00 2.7681213261214928e+00 0 2 0 0 -85 0 V -47 0 0 0 0 0 1 1 0 P 75 21 -6.5868264014940847e-01 2.0115381690547434e+00 -7.5505579470330622e+00 7.8416244450689190e+00 0 2 0 0 -47 0 P 157 21 -6.5868264014940847e-01 2.0115381690547434e+00 -7.5505579470330622e+00 7.8416244450689190e+00 0 2 0 0 -85 0 V -48 0 0 0 0 0 1 1 0 P 76 21 -2.1906503460231281e+00 2.4375663618662413e+00 -1.3424247561990382e+01 1.3818505755422249e+01 0 2 0 0 -48 0 P 158 21 -2.1906503460231281e+00 2.4375663618662413e+00 -1.3424247561990382e+01 1.3818505755422249e+01 0 2 0 0 -85 0 V -49 0 0 0 0 0 1 1 0 P 77 21 -1.0724222870148741e+00 1.8828964492508722e+00 -1.3299106300408287e+01 1.3474480212232573e+01 0 2 0 0 -49 0 P 159 21 -1.0724222870148741e+00 1.8828964492508722e+00 -1.3299106300408287e+01 1.3474480212232573e+01 0 2 0 0 -85 0 V -50 0 0 0 0 0 1 1 0 P 78 21 -1.2403441460882145e+00 1.2094704908124416e+00 -1.7570220894719416e+01 1.7655422248083340e+01 0 2 0 0 -50 0 P 160 21 -1.2403441460882145e+00 1.2094704908124416e+00 -1.7570220894719416e+01 1.7655422248083340e+01 0 2 0 0 -85 0 V -51 0 0 0 0 0 1 1 0 P 79 21 -1.9677400806874470e+00 7.4484156144314984e-01 -5.9519149306076482e+00 6.3128504907044292e+00 0 2 0 0 -51 0 P 161 21 -1.9677400806874470e+00 7.4484156144314984e-01 -5.9519149306076482e+00 6.3128504907044292e+00 0 2 0 0 -85 0 V -52 0 0 0 0 0 1 1 0 P 80 21 -1.9505083408306072e+00 -4.6431276432254487e+00 -3.2521990077287953e+01 3.2909617981467818e+01 0 2 0 0 -52 0 P 162 21 -1.9505083408306072e+00 -4.6431276432254487e+00 -3.2521990077287953e+01 3.2909617981467818e+01 0 2 0 0 -85 0 V -53 0 0 0 0 0 1 1 0 P 81 21 -3.2987184248182744e+00 -3.0258957438370051e+00 -1.1777839799311072e+02 1.1786343208189041e+02 0 2 0 0 -53 0 P 163 21 -3.2987184248182744e+00 -3.0258957438370051e+00 -1.1777839799311072e+02 1.1786343208189041e+02 0 2 0 0 -85 0 V -54 0 0 0 0 0 1 1 0 P 82 21 -1.0734018087568900e+00 -2.5175955957044933e+00 -8.9960442790568905e+01 9.0002065232425494e+01 0 2 0 0 -54 0 P 164 21 -1.0734018087568900e+00 -2.5175955957044933e+00 -8.9960442790568905e+01 9.0002065232425494e+01 0 2 0 0 -85 0 V -55 0 0 0 0 0 1 1 0 P 83 21 1.7244858100560836e-01 -4.7681769534841933e-01 -2.8380090722589838e+01 2.8384619832756577e+01 0 2 0 0 -55 0 P 165 21 1.7244858100560836e-01 -4.7681769534841933e-01 -2.8380090722589838e+01 2.8384619832756577e+01 0 2 0 0 -85 0 V -56 0 0 0 0 0 1 1 0 P 84 21 1.4461178873371241e+00 -2.1941006425524843e+00 -1.1522772132108403e+02 1.1525768128599121e+02 0 2 0 0 -56 0 P 166 21 1.4461178873371241e+00 -2.1941006425524843e+00 -1.1522772132108403e+02 1.1525768128599121e+02 0 2 0 0 -85 0 V -57 0 0 0 0 0 1 1 0 P 85 21 6.6444121140937584e-01 1.4048547590297249e+00 -3.4877546994118347e+01 3.4912152373411772e+01 0 2 0 0 -57 0 P 167 21 6.6444121140937584e-01 1.4048547590297249e+00 -3.4877546994118347e+01 3.4912152373411772e+01 0 2 0 0 -85 0 V -58 0 0 0 0 0 1 1 0 P 86 21 -1.0599134464762482e-01 2.2110978892718145e+00 -5.9219496745736279e+01 5.9260855401009458e+01 0 2 0 0 -58 0 P 168 21 -1.0599134464762482e-01 2.2110978892718145e+00 -5.9219496745736279e+01 5.9260855401009458e+01 0 2 0 0 -85 0 V -59 0 0 0 0 0 1 1 0 P 87 21 -3.8071358131788902e-01 1.5314236910005039e+00 -1.6786938316118443e+02 1.6787680007752385e+02 0 2 0 0 -59 0 P 169 21 -3.8071358131788902e-01 1.5314236910005039e+00 -1.6786938316118443e+02 1.6787680007752385e+02 0 2 0 0 -85 0 V -60 0 0 0 0 0 1 1 0 P 88 21 -1.9604192265180551e+00 -5.4361209455636206e-01 -2.0792848825059863e+02 2.0793844037077989e+02 0 2 0 0 -60 0 P 170 21 -1.9604192265180551e+00 -5.4361209455636206e-01 -2.0792848825059863e+02 2.0793844037077989e+02 0 2 0 0 -85 0 V -61 0 0 0 0 0 1 1 0 P 89 21 -1.4461178873371241e+00 2.1941006425524843e+00 -1.3370361384283281e+03 1.3370387207549036e+03 0 2 0 0 -61 0 P 171 21 -1.4461178873371241e+00 2.1941006425524843e+00 -1.3370361384283281e+03 1.3370387207549036e+03 0 2 0 0 -85 0 V -62 0 0 0 0 0 1 1 0 P 90 21 2.3760575200846012e-01 1.2172728454343023e+00 -5.0070389806534160e+02 5.0070543411021777e+02 0 2 0 0 -62 0 P 172 21 2.3760575200846012e-01 1.2172728454343023e+00 -5.0070389806534160e+02 5.0070543411021777e+02 0 2 0 0 -85 0 V -63 0 0 0 0 0 1 1 0 P 91 21 -3.4278312441482994e-01 -1.1287995436626865e+00 -3.1165787719214768e+02 3.1166010990275282e+02 0 2 0 0 -63 0 P 173 21 -3.4278312441482994e-01 -1.1287995436626865e+00 -3.1165787719214768e+02 3.1166010990275282e+02 0 2 0 0 -85 0 V -64 0 0 0 0 0 0 1 0 P 175 2101 6.6703271005549147e-01 1.6539733176196159e+00 -3.6695799306479134e+03 3.6695804097468099e+03 5.7933000000000001e-01 2 0 0 -85 0 V -65 0 0 0 0 0 0 2 0 P 176 2212 -1.1587004317499836e-01 -5.1501312318437797e-01 6.7056392686592119e+02 6.7056479107452492e+02 9.3827000000000005e-01 1 0 0 0 0 P 177 211 1.2279287742286693e-01 6.8175368102079012e-02 2.7239333123015297e+02 2.7239340319548177e+02 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 1 0 P 178 92 1.3082643714940674e+00 3.2455483466350818e+00 6.0061329947426017e+01 6.0237403458677520e+01 2.9893612451248761e+00 2 0 0 -67 0 V -67 0 0 0 0 0 0 3 0 P 179 223 7.2936591321386923e-01 1.6841833553821020e+00 2.1853572164932320e+01 2.1944281546913682e+01 7.7744969767005689e-01 2 0 0 -87 0 P 180 113 -1.5778339868762084e-01 1.5173953482020919e-01 5.2120404893188343e+00 5.2477096624997168e+00 5.7023692643067359e-01 2 0 0 -88 0 P 181 -213 7.3668185696781896e-01 1.4096254564327706e+00 3.2995717293174870e+01 3.3045412249264125e+01 8.6727558877640154e-01 2 0 0 -89 0 V -68 0 0 0 0 0 0 1 0 P 182 92 -4.7948078521896775e-01 -6.9067462202719341e+00 -2.0098820455191223e+01 8.2759711514162149e+01 7.9982962067197136e+01 2 0 0 -69 0 V -69 0 0 0 0 0 0 13 0 P 183 331 1.2514458285246631e+01 -1.2850310426189072e+01 -1.5150086939035052e+00 1.8026502426884399e+01 9.5780696451022018e-01 2 0 0 -90 0 P 184 111 2.1311608803302904e+00 -2.3022366893436037e+00 -1.0756937488079774e-02 3.1401394529087554e+00 1.3497999999999999e-01 2 0 0 -91 0 P 185 223 5.9640390682904876e+00 -6.7107238728546967e+00 -1.3818501525129963e+00 9.1167072649692145e+00 7.7541253881082250e-01 2 0 0 -92 0 P 186 213 4.5495445069412268e+00 -4.4587053215731407e+00 -1.3060039747701055e+00 6.5353513551402962e+00 6.5327068490408113e-01 2 0 0 -93 0 P 187 -213 1.6307555759586425e+00 -1.3542154307019141e+00 7.5293267191347590e-01 2.4183872287870156e+00 8.8793355531481166e-01 2 0 0 -94 0 P 188 223 9.7442273135153179e-01 5.6541543603014791e-02 6.4467365723438310e-03 1.2546175954606194e+00 7.8824307475509225e-01 2 0 0 -95 0 P 189 213 1.3230587682027095e-01 9.4613100191316871e-02 2.9572497486641730e-01 9.1541606961542465e-01 8.5092704504053462e-01 2 0 0 -96 0 P 190 221 -4.3335611337173799e-02 -1.6750316224513254e-01 -6.0675448586897007e-01 8.3533693393396902e-01 5.4744999999999999e-01 2 0 0 -97 0 P 191 223 2.2397687531765323e-01 9.8990692619426379e-01 7.7605860449098518e-01 1.5020142451085876e+00 7.8974582727621279e-01 2 0 0 -98 0 P 192 -323 -2.3656033998060599e+00 1.1524802926143030e+00 -1.0873141348785200e+00 2.9943990289986213e+00 9.2729889837253832e-01 2 0 0 -99 0 P 193 321 -1.6623181883751246e+00 1.4177152767421795e+00 -1.0347561918287045e+00 2.4673021099652055e+00 4.9359999999999998e-01 1 0 0 0 0 P 194 111 -1.5692606401745842e+01 1.0938873863233498e+01 -1.0146554627196162e+01 2.1653813693641208e+01 1.3497999999999999e-01 2 0 0 -100 0 P 195 113 -8.8362809842114967e+00 6.2868176800570446e+00 -4.8409842445874025e+00 1.1899724108748829e+01 7.5124379117511730e-01 2 0 0 -101 0 V -70 0 0 0 0 0 3 1 0 P 25 1 -3.7821102487591580e+00 3.3893900964685864e-01 1.4162965003773835e+00 4.0527932790867434e+00 0 2 0 0 -70 0 P 26 21 -8.9818864714375579e-01 4.3386011018006887e-01 2.5480453743706966e-01 1.0295158052997102e+00 0 2 0 0 -70 0 P 27 -1 3.7821102487591580e+00 -3.3893900964685864e-01 2.2660078851219896e+00 4.4219938174385192e+00 0 2 0 0 -70 0 P 196 92 -8.9818864714375612e-01 4.3386011018006887e-01 3.9371089229364427e+00 9.5043029018249729e+00 8.5927859008303855e+00 2 0 0 -71 0 V -71 0 0 0 0 0 0 5 0 P 197 -213 -3.1807273599269119e+00 5.0940911405040568e-01 1.6245739052353418e+00 3.6802082730882688e+00 7.2675193571842978e-01 2 0 0 -102 0 P 198 321 -2.1542841650035877e-01 5.1686191052450059e-01 -1.8466692575872007e-01 7.6895934265477617e-01 4.9359999999999998e-01 1 0 0 0 0 P 199 331 -3.6923335577646982e-01 -7.0151186369212548e-01 5.2098799238453897e-01 1.3480702329258039e+00 9.5781663107977333e-01 2 0 0 -103 0 P 200 -311 1.2006999732173709e+00 3.4056170113206115e-02 8.6033313750636131e-01 1.5590666389858114e+00 4.9767000000000000e-01 2 0 0 -104 0 P 201 113 1.6665005118426137e+00 7.5044779184082019e-02 1.1158808135689211e+00 2.1479984141703135e+00 7.6540938218215160e-01 2 0 0 -105 0 V -72 0 0 0 0 0 3 1 0 P 28 2 -2.8564569014699264e+00 -3.5268376060462714e-01 4.1782959787993796e+01 4.1881970590100650e+01 0 2 0 0 -72 0 P 29 21 9.5079595685149099e-01 1.3476566404377811e-02 4.1891741119653389e+01 4.1902531768444085e+01 0 2 0 0 -72 0 P 30 -2 2.8564569014699264e+00 3.5268376060462714e-01 1.1735885695836522e+02 1.1739414396995694e+02 0 2 0 0 -72 0 P 202 92 9.5079595685149099e-01 1.3476566404377832e-02 2.0103355786601242e+02 2.0117864632850169e+02 7.5797200298952294e+00 2 0 0 -73 0 V -73 0 0 0 0 0 0 5 0 P 203 111 -2.0802205438829908e+00 -4.5907602694104305e-01 3.6990995979591617e+01 3.7052531242443720e+01 1.3497999999999999e-01 2 0 0 -106 0 P 204 111 -9.7383302651708969e-02 -8.0449294793336762e-03 4.7408811659201749e-01 5.0252101569929208e-01 1.3497999999999999e-01 2 0 0 -107 0 P 205 213 1.3023329775785781e+00 1.4024068094004083e-01 4.6399620567358369e+01 4.6429605890160389e+01 1.0333323220102848e+00 2 0 0 -108 0 P 206 113 5.9012589190503717e-01 -1.7571893229612362e-01 6.6740176557488496e+01 6.6747335247165793e+01 7.5925618952972507e-01 2 0 0 -109 0 P 207 -211 1.2359409339025760e+00 5.1607577418083728e-01 5.0428676644981913e+01 5.0446652933032503e+01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 4 1 0 P 31 2 -1.0749545182392612e+00 1.9846431344135826e+00 -1.4784717835240704e+00 2.6981872436758012e+00 0 2 0 0 -74 0 P 32 21 1.9677400806874470e+00 -7.4484156144314984e-01 4.4113150392365181e+00 4.8873807251114778e+00 0 2 0 0 -74 0 P 33 21 3.6863001121687872e-01 -1.8068644979521356e+00 5.5068533157779349e+00 5.8074160209704297e+00 0 2 0 0 -74 0 P 34 -2 1.0749545182392612e+00 -1.9846431344135826e+00 8.7105950292250682e+00 8.9982665747586310e+00 0 2 0 0 -74 0 P 208 92 2.3363700919043255e+00 -2.5517060593952854e+00 1.7150291600715452e+01 2.2391250564516341e+01 1.3973752925877955e+01 2 0 0 -75 0 V -75 0 0 0 0 0 0 6 0 P 209 111 -2.4010966773512271e-01 3.3100556745817455e-01 -4.1090264882506350e-01 5.9521250443823159e-01 1.3497999999999999e-01 2 0 0 -110 0 P 210 113 -3.9379336218013788e-01 6.8206674788205390e-01 -8.2183739790316268e-01 1.3515225922741680e+00 7.2863457794130837e-01 2 0 0 -111 0 P 211 211 7.5261471887404507e-02 1.0115527906788684e+00 4.3603414182741895e-01 1.1128831453571568e+00 1.3957000000000000e-01 1 0 0 0 0 P 212 1114 6.1465942104925453e-01 -6.1457533094425154e-01 1.4301191677928033e+00 2.0594013124023460e+00 1.2001599435684744e+00 2 0 0 -112 0 P 213 -1114 1.0073876651054978e+00 -1.6225889185903193e+00 7.0602672583950037e+00 7.4164316169506410e+00 1.2281935769258030e+00 2 0 0 -113 0 P 214 -213 1.2729645637774301e+00 -2.3391669158798121e+00 9.4566110794284555e+00 9.8557993930938004e+00 7.8558763251426855e-01 2 0 0 -114 0 V -76 0 0 0 0 0 2 1 0 P 35 2 -9.4024276545184471e-01 -5.2912005254062788e-01 8.5199292132516224e-01 1.3747423125710918e+00 0 2 0 0 -76 0 P 36 -2 9.4024276545184471e-01 5.2912005254062788e-01 3.4572407066573803e+01 3.4589237558305143e+01 0 2 0 0 -76 0 P 215 92 0 0 3.5424399987898965e+01 3.5963979870876237e+01 6.2064268021249500e+00 2 0 0 -77 0 V -77 0 0 0 0 0 0 5 0 P 216 323 -4.0191700090928290e-01 -6.2239504783171451e-01 2.0243651569190479e+00 2.3365479549362869e+00 9.0138182030907887e-01 2 0 0 -115 0 P 217 -323 -3.0709520505408699e-01 7.2004596868925286e-01 5.9906477754362246e+00 6.1021237037211193e+00 8.5748426468553918e-01 2 0 0 -116 0 P 218 213 1.4357911279212290e-01 -1.3713667198698697e-02 5.2783402332800318e+00 5.3422612097748621e+00 8.1121895250558806e-01 2 0 0 -117 0 P 219 331 3.2898394424613148e-01 -3.7608851406594290e-01 1.3723975312014188e+01 1.3766421091644959e+01 9.5769426318017115e-01 2 0 0 -118 0 P 220 -211 2.3644914892511551e-01 2.9215126040710321e-01 8.4070715102494731e+00 8.4166259107990076e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 8 1 0 P 93 21 1.0816131884979585e+00 -4.8562751153396935e+00 6.2353669491196960e+01 6.2551845649052012e+01 0 2 0 0 -78 0 P 94 21 7.8192342042685414e-01 3.3320323503063123e+00 6.0107185645699310e+01 6.0204548084554716e+01 0 2 0 0 -78 0 P 95 21 2.5799661286127318e-01 4.6502340019751358e+00 1.1617897744543487e+02 1.1627229265303164e+02 0 2 0 0 -78 0 P 96 21 -1.0816131884979585e+00 4.8562751153396935e+00 8.7588647116869637e+01 8.7729837563105718e+01 0 2 0 0 -78 0 P 97 21 -4.3572987651685553e+00 1.4449065886615817e+00 5.4503083099789833e+01 5.4696068185578874e+01 0 2 0 0 -78 0 P 98 21 -2.5266872960774260e+00 5.7966300965256443e-02 2.6305099281962658e+01 2.6426232365173039e+01 0 2 0 0 -78 0 P 99 21 -6.2382264315382852e-01 -1.9231089799320605e-01 6.5572420293672309e+00 6.5896556209940487e+00 0 2 0 0 -78 0 P 100 21 -1.0845769988698768e+00 -5.7759028083983344e-01 1.0737481264994472e+01 1.0807563171922961e+01 0 2 0 0 -78 0 P 221 92 -7.5524656699815598e+00 8.7152380630752457e+00 4.2433138537531494e+02 4.2527804329341308e+02 2.5909349292248976e+01 2 0 0 -79 0 V -79 0 0 0 0 0 0 19 0 P 222 111 -2.5555431650015176e-01 -9.1754153062781601e-03 4.2903353223814573e+00 4.3000684850129893e+00 1.3497999999999999e-01 2 0 0 -119 0 P 223 111 -9.7814075740376027e-01 1.8674527855926912e+00 3.2064553797043374e+01 3.2134062442392825e+01 1.3497999999999999e-01 2 0 0 -120 0 P 224 -213 -2.3393742613075847e+00 1.4096069932002150e-01 2.5816819465950541e+01 2.5933418808035267e+01 7.3586811471441538e-01 2 0 0 -121 0 P 225 323 -7.1993917835539567e-01 -2.8132028822426153e-01 1.6973355341833141e+01 1.7015423275169258e+01 9.1235089079717036e-01 2 0 0 -122 0 P 226 3322 -1.2137407452107347e+00 4.6023657128595680e-01 1.7386515661430298e+01 1.7484418010139620e+01 1.3149000000000000e+00 2 0 0 -123 0 P 227 -3222 -1.4898391081065712e+00 1.3826259091846689e-02 2.4004040629656117e+01 2.4079625812719058e+01 1.1893700000000000e+00 2 0 0 -124 0 P 228 211 -5.6306910521791476e-01 -4.6713254722504310e-01 1.2325346607243707e+01 1.2347830109275145e+01 1.3957000000000000e-01 1 0 0 0 0 P 229 -211 -2.9300223017877292e-01 -1.3980337478073082e+00 1.1896146151179781e+01 1.1982408843885581e+01 1.3957000000000000e-01 1 0 0 0 0 P 230 221 3.8708981890489680e-01 -1.4164346583668333e-01 9.4130445530480298e+00 9.4379558517446576e+00 5.4744999999999999e-01 2 0 0 -125 0 P 231 211 -8.9393403852308817e-02 -7.1138450240508533e-01 7.0536591124370567e+00 7.0913782687345597e+00 1.3957000000000000e-01 1 0 0 0 0 P 232 311 5.1885032073033299e-01 -9.7631906713303640e-01 2.0377672835274122e+01 2.0413711817955559e+01 4.9767000000000000e-01 2 0 0 -126 0 P 233 -323 2.2250519405491267e-01 3.5916272540674039e-02 1.0034449823461140e+01 1.0072348132964944e+01 8.4333570543908853e-01 2 0 0 -127 0 P 234 221 -3.9027850954570606e-02 9.7304126454295747e-01 1.9951093915919458e+01 1.9982346769586197e+01 5.4744999999999999e-01 2 0 0 -128 0 P 235 213 1.1840491820573293e-01 2.4291328974743598e+00 6.2451078407726740e+01 6.2502977747181589e+01 7.5519972086615161e-01 2 0 0 -129 0 P 236 111 -4.0937082104825823e-01 4.1663555507265775e+00 6.6619681064573896e+01 6.6751226414127714e+01 1.3497999999999999e-01 2 0 0 -130 0 P 237 -211 1.4099811974383858e-01 4.3159103908424395e-01 2.3521893416243877e+01 2.3526689120333661e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.7006061479703294e-02 5.2497937554661389e-01 4.1008038777056752e+00 4.1366610665103165e+00 1.3957000000000000e-01 1 0 0 0 0 P 239 -211 -6.8659156570687851e-01 7.0703232145647177e-01 2.7052629959291480e+01 2.7070935894071688e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 211 1.5373536370133120e-01 9.4972206035052642e-01 2.8998265432915098e+01 2.9014556423572419e+01 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 16 1 0 P 101 21 -2.2819881625638159e+00 1.8091038258602177e+00 2.2262742474551803e+01 2.2452394730073593e+01 0 2 0 0 -80 0 P 102 21 3.8071358131788902e-01 -1.5314236910005039e+00 -1.4408585557267168e+00 2.1368843510982010e+00 0 2 0 0 -80 0 P 103 21 -2.3760575200846012e-01 -1.2172728454343023e+00 -9.5581845345887828e-01 1.5658220172138819e+00 0 2 0 0 -80 0 P 104 21 6.5868264014940847e-01 -2.0115381690547434e+00 -2.7778641738522105e+00 3.4923742632154888e+00 0 2 0 0 -80 0 P 105 21 1.0724222870148741e+00 -1.8828964492508722e+00 -5.0691868919699132e+00 5.5128979988756681e+00 0 2 0 0 -80 0 P 106 21 1.2403441460882145e+00 -1.2094704908124416e+00 -3.7568228127622980e+01 3.7608151205795849e+01 0 2 0 0 -80 0 P 107 21 2.2819881625638159e+00 -1.8091038258602177e+00 -5.2995335784646215e+01 5.3075285600307673e+01 0 2 0 0 -80 0 P 108 21 3.1622223881117895e-01 6.3923458735977460e-03 -4.2630941656624195e+00 4.2748110170754314e+00 0 2 0 0 -80 0 P 109 21 1.9604192265180551e+00 5.4361209455636206e-01 -1.5581544209058992e+01 1.5713792590966364e+01 0 2 0 0 -80 0 P 110 21 6.2382264315382852e-01 1.9231089799320605e-01 -3.0010914495917627e+00 3.0712681518244493e+00 0 2 0 0 -80 0 P 111 21 1.0845769988698768e+00 5.7759028083983344e-01 1.2092756214549425e+00 1.7240259068945176e+00 0 2 0 0 -80 0 P 112 21 2.1060712075081600e+00 1.7412997622683302e+00 3.7214354253773165e+00 4.6170057849675556e+00 0 2 0 0 -80 0 P 113 21 1.0734018087568900e+00 2.5175955957044933e+00 3.6120763622143777e+00 4.5318400979095763e+00 0 2 0 0 -80 0 P 114 21 1.3366508856085526e-02 1.2352236914377299e+00 2.3079466976750131e+00 2.6177421933332266e+00 0 2 0 0 -80 0 P 115 21 2.6069476407972897e-01 1.5433395963179697e+00 2.5359675305095788e+00 2.9800990227474573e+00 0 2 0 0 -80 0 P 116 21 -3.6863001121687872e-01 1.8068644979521356e+00 1.0434573271543764e+01 1.0596271361113073e+01 0 2 0 0 -80 0 P 241 92 1.0184502287898850e+01 2.3116271173907945e+00 -7.7569004428263298e+01 1.7597066629341199e+02 1.5760601905058499e+02 2 0 0 -81 0 V -81 0 0 0 0 0 0 26 0 P 242 321 -5.3847133785009649e-01 4.2152814575467479e-01 3.4572343576362141e+00 3.5586159841952227e+00 4.9359999999999998e-01 1 0 0 0 0 P 243 -211 1.1419830030629359e+00 -2.5574929657818881e+00 -2.0726653221365354e+00 3.4871645748079954e+00 1.3957000000000000e-01 1 0 0 0 0 P 244 223 3.7269340793979944e-01 -1.5141078045032650e+00 -2.9833395607058693e+00 3.4566862289612041e+00 7.8545651123271210e-01 2 0 0 -131 0 P 245 -2112 4.2363190498850262e-01 -5.3036948462711009e-01 -4.7910841221955680e+00 4.9293036660366436e+00 9.3957000000000002e-01 1 0 0 0 0 P 246 2112 4.7775759098517456e-01 -1.7309446862000701e+00 -2.2304798197555100e+00 3.0136777919453812e+00 9.3957000000000002e-01 1 0 0 0 0 P 247 -2112 2.7280850812743500e+00 -2.1308344921745017e+00 -5.0207002674604730e+01 5.0334966109021856e+01 9.3957000000000002e-01 1 0 0 0 0 P 248 -211 -4.2092689502448655e-02 1.8815440853084289e-01 -1.8537000867883646e+00 1.8689188512662425e+00 1.3957000000000000e-01 1 0 0 0 0 P 249 2224 1.3011231060632957e+00 -5.1924318392190261e-01 -2.9688986087932559e+01 2.9747200486391360e+01 1.2237266961737086e+00 2 0 0 -132 0 P 250 -323 8.3395742791751504e-01 -6.4050731673912764e-01 -1.2166668993575041e+01 1.2243596537748568e+01 8.7868490687691070e-01 2 0 0 -133 0 P 251 -3224 5.8432874270900381e-01 3.8251108429789576e-01 -6.6388637459585906e+00 6.8179656372583173e+00 1.3865023563864742e+00 2 0 0 -134 0 P 252 2212 1.0640387753031206e+00 -2.8351140364236388e-01 -7.8056230341317594e+00 7.9385552070393839e+00 9.3827000000000005e-01 1 0 0 0 0 P 253 211 1.3495887252110143e-02 6.2948164603656098e-01 -2.1890746847506621e+00 2.2820948801453964e+00 1.3957000000000000e-01 1 0 0 0 0 P 254 111 8.4750232553806182e-01 -1.0265331412802604e-01 4.0700955733093042e-01 9.5533987399909670e-01 1.3497999999999999e-01 2 0 0 -135 0 P 255 -321 7.1857484748079259e-01 5.2641094583411363e-01 1.1684506881549273e+00 1.5499600852846933e+00 4.9359999999999998e-01 1 0 0 0 0 P 256 321 1.5034382108530089e-01 1.7689443696515109e-01 6.0470847518705871e-02 5.4881015822174550e-01 4.9359999999999998e-01 1 0 0 0 0 P 257 -211 -5.6345348320049948e-02 3.9645130099047382e-01 1.4400720568113872e+00 1.5012114261633256e+00 1.3957000000000000e-01 1 0 0 0 0 P 258 211 1.0804267827476497e+00 1.0985335732559378e+00 1.0474310997571168e+00 1.8683387642735723e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 113 5.9564532748776922e-01 1.5640489914592641e+00 2.5773060887423815e+00 3.1532686862780985e+00 7.0679143242593145e-01 2 0 0 -136 0 P 260 -2212 5.5351144921287310e-01 1.6630821056177825e+00 4.2438824962742920e+00 4.6864812225719126e+00 9.3827000000000005e-01 1 0 0 0 0 P 261 2212 7.4759724065035049e-01 1.7158173866512405e+00 3.6656839267239980e+00 4.2214357962789606e+00 9.3827000000000005e-01 1 0 0 0 0 P 262 -321 -2.2231119300881533e-01 2.8764021008770602e-01 2.4594527697987560e+00 2.5347007799476202e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 313 -6.1562719132150900e-01 1.3377380013028133e+00 8.7618858381973990e+00 8.9259781009478747e+00 8.5668069791074897e-01 2 0 0 -137 0 P 264 -2112 -5.7399249243875683e-01 9.2002579262960682e-01 5.5060131245952677e+00 5.6898934219891268e+00 9.3957000000000002e-01 1 0 0 0 0 P 265 221 -1.1930074750175203e-01 1.5734546640293764e-01 3.6718393733411148e+00 3.7176734862370719e+00 5.4744999999999999e-01 2 0 0 -138 0 P 266 2212 -1.0594672030100396e+00 6.8696585802218180e-01 5.2887889371225691e+00 5.5177922993414805e+00 9.3827000000000005e-01 1 0 0 0 0 P 267 -321 -2.2258623084628271e-01 1.6866241526986853e-01 1.3029625422668085e+00 1.4210362370599157e+00 4.9359999999999998e-01 1 0 0 0 0 V -82 0 0 0 0 0 2 1 0 P 117 21 -1.3114888288005098e+00 -1.6496579221085508e+00 1.6662773017079198e+00 2.6866064568952148e+00 0 2 0 0 -82 0 P 118 21 1.3114888288005098e+00 1.6496579221085508e+00 1.1881128483473624e+01 1.2066589752239540e+01 0 2 0 0 -82 0 P 268 92 0 0 1.3547405785181544e+01 1.4753196209134755e+01 5.8416260473311477e+00 2 0 0 -83 0 V -83 0 0 0 0 0 0 6 0 P 269 111 -8.2744871062270731e-01 -7.4155277437187117e-01 9.5897367048657134e-01 1.4739138329550636e+00 1.3497999999999999e-01 2 0 0 -139 0 P 270 -211 2.3622889621070284e-01 -1.4395595100633788e-02 1.6343144617020311e+00 1.6572491874161919e+00 1.3957000000000000e-01 1 0 0 0 0 P 271 -2112 3.5739781590668296e-01 4.9374852542124614e-01 3.6700751613283389e+00 3.8371557539236996e+00 9.3957000000000002e-01 1 0 0 0 0 P 272 223 4.6513631689811821e-04 -1.3816526522484304e-01 1.8403689545836543e+00 2.0032317722348694e+00 7.7903131351023269e-01 2 0 0 -140 0 P 273 2112 8.2388172487704008e-03 2.9673771091837098e-01 4.5633172049710931e+00 4.6684876400474620e+00 9.3957000000000002e-01 1 0 0 0 0 P 274 213 2.2511804493965293e-01 1.0362739835773092e-01 8.8035633210985575e-01 1.1131580225574693e+00 6.3456815225024754e-01 2 0 0 -141 0 V -84 0 0 0 0 0 0 3 0 P 275 211 -8.4588887779227059e-02 -1.5079941925554041e-01 -5.8294136952253517e+00 5.8336471919172848e+00 1.3957000000000000e-01 1 0 0 0 0 P 276 -211 1.3037624317892466e-01 -7.9281299194219071e-02 -1.1949959096106991e+01 1.1951748226628503e+01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -4.5787355399697589e-02 2.3008071844975947e-01 -4.8310702077172074e+00 4.8386457373122118e+00 1.3497999999999999e-01 2 0 0 -142 0 V -85 0 0 0 0 0 0 1 0 P 278 92 -4.5025206080902276e+00 -7.7019546083070987e+00 -1.5726973016874658e+03 1.2000053842324363e+04 1.1896547222751316e+04 2 0 0 -86 0 V -86 0 0 0 0 0 0 126 0 P 279 -211 3.8454351970230859e-02 -3.5447599861781753e-01 1.6590921334019626e+01 1.6595339179037865e+01 1.3957000000000000e-01 1 0 0 0 0 P 280 321 -7.3414435347269591e-01 -1.9547298561261744e-01 7.7911285472439161e+01 7.7916552943182424e+01 4.9359999999999998e-01 1 0 0 0 0 P 281 -311 3.9679463817992838e-01 3.8730525665197618e-01 5.8728557500322296e+01 5.8733283518327838e+01 4.9767000000000000e-01 2 0 0 -143 0 P 282 113 5.6636818080893978e-02 -3.7214692505533548e-01 1.7157487385597626e+01 1.7178555992550837e+01 7.6270016341426505e-01 2 0 0 -144 0 P 283 113 -5.3164648920238411e-01 -1.6514832142521045e+00 4.8963227593686710e+01 4.8999381263356575e+01 7.2915225034143383e-01 2 0 0 -145 0 P 284 113 -1.5223059381185816e-01 -5.7192456652332013e-01 1.8282624164333448e+01 1.8307099177920502e+01 7.3841865663255124e-01 2 0 0 -146 0 P 285 -211 5.6141166746445481e-02 -3.5093811928418928e-01 1.6866133138900714e+00 1.7292928177904472e+00 1.3957000000000000e-01 1 0 0 0 0 P 286 213 -4.2657781253478250e-01 -4.7688977757012369e-01 1.5865345698488104e+01 1.5895084481055429e+01 7.3152172712525498e-01 2 0 0 -147 0 P 287 223 -8.2509700876185210e-01 -2.1306812303487979e+00 3.0382244156400922e+01 3.0478190852035883e+01 7.8661938365224271e-01 2 0 0 -148 0 P 288 113 1.4342420876424608e-01 -5.5600815905688250e-01 4.7987039711927821e+01 4.7995733525468488e+01 7.1045109405545426e-01 2 0 0 -149 0 P 289 -213 -3.1206132927888924e-01 -1.2645858532267460e+00 5.4446529686158613e+01 5.4467579266561330e+01 7.7203409249722144e-01 2 0 0 -150 0 P 290 321 7.4947454400303448e-01 -2.7767160205606206e-01 8.4961677768345353e+01 8.4966870860252627e+01 4.9359999999999998e-01 1 0 0 0 0 P 291 -323 -3.3583325227930499e-01 -2.5635040862114935e+00 6.1382712475222024e+02 6.1383317977483796e+02 8.6554822941042642e-01 2 0 0 -151 0 P 292 111 -1.3988825331856031e-01 -8.0976171820095103e-02 1.5711249640539465e+01 1.5712660841867956e+01 1.3497999999999999e-01 2 0 0 -152 0 P 293 213 -3.2641355149318840e-01 -1.2707081876758901e+00 3.8109974519204724e+02 3.8110315806787310e+02 9.3811446961887146e-01 2 0 0 -153 0 P 294 -213 -1.3154649192084780e-01 -1.4218442886615621e+00 4.2904618334736779e+02 4.2904898425123554e+02 6.0373538333974741e-01 2 0 0 -154 0 P 295 211 2.4329190512519056e-01 3.7505019236335774e-01 1.2085981422506518e+02 1.2086072160921454e+02 1.3957000000000000e-01 1 0 0 0 0 P 296 -211 4.2813423708338366e-01 1.6352966108504016e-01 1.4051539629853664e+02 1.4051621300616782e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 213 1.2630892330836577e-01 -2.7542461360584077e-02 2.3465439916643098e+02 2.3465577262811397e+02 7.9238059486401047e-01 2 0 0 -155 0 P 298 111 1.1634821476964758e+00 -2.8559233057469231e-02 2.5178108510824228e+02 2.5178381112419072e+02 1.3497999999999999e-01 2 0 0 -156 0 P 299 113 1.9943753543484924e-01 2.7145323503484344e+00 2.7163162045534438e+02 2.7164610075517720e+02 6.7702517235794490e-01 2 0 0 -157 0 P 300 111 -4.8330821261189101e-02 1.5702142051831087e+00 1.2998463228476507e+02 1.2999419509472119e+02 1.3497999999999999e-01 2 0 0 -158 0 P 301 223 -7.5793208360555364e-02 6.7028227989830891e-01 1.0106882416032255e+02 1.0107428630058605e+02 8.0567429986190431e-01 2 0 0 -159 0 P 302 113 8.8424258542205825e-01 3.8563817218179519e+00 5.3557296131244050e+02 5.3558796179754347e+02 6.4371463842991372e-01 2 0 0 -160 0 P 303 2112 5.0239664002076623e-01 5.2606064585333572e+00 4.3570299754489770e+02 4.3573605685562620e+02 9.3957000000000002e-01 1 0 0 0 0 P 304 -2112 1.4364255392673200e-01 1.5974738661361396e+00 2.0140792551649326e+02 2.0141650331732623e+02 9.3957000000000002e-01 1 0 0 0 0 P 305 313 7.1689792275567477e-01 6.0222689168457000e-01 1.1359046088105114e+02 1.1359794885550430e+02 9.0805349371058997e-01 2 0 0 -161 0 P 306 3322 3.4673235669968081e+00 2.6807640126783494e+00 2.0953474193197292e+02 2.0958469855148874e+02 1.3149000000000000e+00 2 0 0 -162 0 P 307 -3222 1.8793811026669935e+00 4.4761309211395339e-01 9.5296537150708019e+01 9.5323538670794562e+01 1.1893700000000000e+00 2 0 0 -163 0 P 308 113 2.5084233163001950e+00 1.5878162724140037e+00 9.5504973021001788e+01 9.5555067710907949e+01 8.7048575245140636e-01 2 0 0 -164 0 P 309 211 2.0627864184786029e+00 -2.9330338268703737e-01 9.0270469097582122e+01 9.0294618807351881e+01 1.3957000000000000e-01 1 0 0 0 0 P 310 -213 2.5960594232162086e+00 -7.4988515713700787e-01 7.6104273535870448e+01 7.6156562874824758e+01 8.1225993794005535e-01 2 0 0 -165 0 P 311 2212 -2.0659403505205021e-01 -1.7393525245278493e-01 1.6397911185904210e+01 1.6426952743009501e+01 9.3827000000000005e-01 1 0 0 0 0 P 312 223 2.3682423783576438e+00 -7.0697885182415721e-01 3.8589416642965006e+01 3.8676356155604090e+01 7.8042140617372302e-01 2 0 0 -166 0 P 313 -2112 1.3361304131339615e+00 -1.2424101088955473e+00 1.5514109867080974e+01 1.5649256343748306e+01 9.3957000000000002e-01 1 0 0 0 0 P 314 113 -5.4448729414757380e-01 -5.0002542590202625e-01 7.6518192609318136e+00 7.7179593228140178e+00 6.8561378822780550e-01 2 0 0 -167 0 P 315 -213 5.8742611732216310e-01 -1.3474244767521697e+00 7.3676618034723971e+00 7.5680542015062100e+00 9.1234959457798215e-01 2 0 0 -168 0 P 316 211 1.2049397994975912e-01 -1.0976831773629744e-01 3.7047859009673587e+00 3.7109953165814309e+00 1.3957000000000000e-01 1 0 0 0 0 P 317 223 -2.7230866400926007e-01 -1.0355540893522888e+00 5.4849106519309219e+00 5.6409788124684797e+00 7.6803178487888635e-01 2 0 0 -169 0 P 318 113 -1.3069101468829039e-01 -8.9785519165433492e-01 4.8299964755134495e+00 4.9753341711923040e+00 7.7579641341048244e-01 2 0 0 -170 0 P 319 221 -7.7785382297652983e-01 -8.9417174341192651e-01 4.1718943565032811e+00 4.3713846434464507e+00 5.4744999999999999e-01 2 0 0 -171 0 P 320 -211 -3.3906819512860920e-01 -4.0355361426072611e-01 2.6820017977885957e+00 2.7368661254748883e+00 1.3957000000000000e-01 1 0 0 0 0 P 321 211 -2.3484286438063426e-01 -2.2411655333188010e-01 1.8359051619925160e+00 1.8696007459237463e+00 1.3957000000000000e-01 1 0 0 0 0 P 322 -211 -3.0428334126832318e-01 -2.0060275912530437e-01 1.5223026829357709e+00 1.5715327111185264e+00 1.3957000000000000e-01 1 0 0 0 0 P 323 213 -6.2510428624905989e-01 -3.1028279035912583e+00 8.1471969171571903e+00 8.7823148845071195e+00 8.5670342342504879e-01 2 0 0 -172 0 P 324 113 -3.9914197000139706e-01 -2.7678223186936215e+00 6.7202311145389988e+00 7.2986321321421359e+00 5.3700099389521871e-01 2 0 0 -173 0 P 325 2214 -6.3961757759416604e-01 -3.2700207148333287e+00 5.9954709174056413e+00 6.9770416702342173e+00 1.2772207427540994e+00 2 0 0 -174 0 P 326 -211 9.6221680351115599e-02 -8.6433058325591405e-01 7.6356271622957450e-01 1.1656902570738878e+00 1.3957000000000000e-01 1 0 0 0 0 P 327 -2212 -5.3720333045278112e-01 -3.1518780911896305e+00 3.5869655008276413e+00 4.8958753065206269e+00 9.3827000000000005e-01 1 0 0 0 0 P 328 211 3.4405910143981899e-01 -4.4094427613409698e-01 2.6539962563860636e-01 6.3460638676908288e-01 1.3957000000000000e-01 1 0 0 0 0 P 329 2114 -3.8134390328843115e-01 -1.0210096635350485e+00 2.0698988326770005e+00 2.6782630574770314e+00 1.3041195964793251e+00 2 0 0 -175 0 P 330 -2114 -7.2967111846732646e-01 -6.6788399458540697e+00 5.7256719783930627e+00 8.9169840457559602e+00 1.2609369154122865e+00 2 0 0 -176 0 P 331 -211 1.0201647261401033e-01 1.7803211968139589e-02 -1.2069311797296478e-01 2.1159141917153357e-01 1.3957000000000000e-01 1 0 0 0 0 P 332 211 -5.9671923759470786e+00 -3.6835104419719209e+00 6.8056779117296662e+00 9.7730428041005837e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 111 -5.7792772338600329e-01 -4.6181234821948636e-01 1.5285103055715767e+00 1.7034771654074614e+00 1.3497999999999999e-01 2 0 0 -177 0 P 334 111 -3.0133418311712207e-01 6.8790556528632016e-02 2.9715260072739208e-01 4.4950383658144127e-01 1.3497999999999999e-01 2 0 0 -178 0 P 335 -211 -6.8268649030378485e+00 -4.1111682565499317e+00 7.1606458637585284e+00 1.0714575017659632e+01 1.3957000000000000e-01 1 0 0 0 0 P 336 331 -1.5342084255499826e+00 -6.5493435746899498e-01 1.2876509538672409e+00 2.3147549128725671e+00 9.5776344785682255e-01 2 0 0 -179 0 P 337 223 -2.1331698986384287e+00 -1.9956879052253285e+00 1.9177306140798496e+00 3.5833786710727558e+00 7.9355400610187077e-01 2 0 0 -180 0 P 338 223 -2.6486458764916612e+00 -1.4362141149183769e+00 7.5222809622246278e-01 3.2021345917807151e+00 7.8088595337931366e-01 2 0 0 -181 0 P 339 113 -1.4185759189397582e+00 -4.6013649847427801e-01 3.8745782898471076e-01 1.7418909704493597e+00 8.1238989941254092e-01 2 0 0 -182 0 P 340 213 -1.3379090512341651e+00 -8.1525083348797733e-01 -3.3597920063877636e-02 1.8114645602335577e+00 9.0864761149325224e-01 2 0 0 -183 0 P 341 113 -1.8662079408945902e+00 -5.4002408592921114e-01 1.3171778368218298e-01 2.1129707863076970e+00 8.2032790834514091e-01 2 0 0 -184 0 P 342 113 -1.3324288981068528e+00 2.0347671098703218e-01 -2.0965519096694138e-01 1.5796815040707870e+00 7.9666104133415316e-01 2 0 0 -185 0 P 343 -211 -2.8839593244719247e-01 -1.3796775114562616e-03 -2.0297321775633595e-01 3.7927830070870411e-01 1.3957000000000000e-01 1 0 0 0 0 P 344 211 -9.0100657784179194e-02 -1.0093888303732981e-01 2.7283204984404858e-02 1.9629300755805484e-01 1.3957000000000000e-01 1 0 0 0 0 P 345 2112 -2.8815085889549290e+00 1.7372478130703868e+00 -9.8905264291124756e-02 3.4948098300827994e+00 9.3957000000000002e-01 1 0 0 0 0 P 346 -2212 2.7178629707613489e-01 1.4258384950729575e+00 -2.6347387681846557e-01 1.7483284250895268e+00 9.3827000000000005e-01 1 0 0 0 0 P 347 221 6.9301186785965174e-01 2.7234060995422587e+00 1.0840032673392233e-01 2.8650756299536533e+00 5.4744999999999999e-01 2 0 0 -186 0 P 348 2212 8.5083291011730233e-01 1.3024101979633360e+00 6.0403165311671958e-01 1.9145218190358895e+00 9.3827000000000005e-01 1 0 0 0 0 P 349 -2212 8.7734591612761204e-01 9.7283766041340514e-01 5.6109973920769045e-02 1.6123423619497865e+00 9.3827000000000005e-01 1 0 0 0 0 P 350 321 7.9862368576265719e-01 5.8159616553533677e-01 -1.8222926249215224e-01 1.1193312089524583e+00 4.9359999999999998e-01 1 0 0 0 0 P 351 -313 4.1105608065407333e+00 3.2393383384953345e+00 9.6978184431670528e-02 5.3040009984151819e+00 8.5615349524432005e-01 2 0 0 -187 0 P 352 111 2.4543106294653563e+00 1.3966759367264858e+00 8.3343918978546240e-03 2.8271245817306578e+00 1.3497999999999999e-01 2 0 0 -188 0 P 353 113 7.9581811521923740e-01 1.2089636880382539e+00 -2.5300900529617631e-01 1.6689183757739414e+00 7.9142612840922455e-01 2 0 0 -189 0 P 354 223 6.0206226942351524e+00 3.9493894934230647e+00 4.5781784016697702e-01 7.2584516796017819e+00 7.9369302204249004e-01 2 0 0 -190 0 P 355 313 1.0846462964045251e+00 7.7299888340339040e-01 -2.4649829432693285e-01 1.6206234654028533e+00 8.8976072371246229e-01 2 0 0 -191 0 P 356 -323 1.0109630510655390e+00 8.7477600055508323e-02 -1.2135558954158281e-01 1.3936646371246328e+00 9.4756283196816782e-01 2 0 0 -192 0 P 357 213 1.2546412860039535e+00 -3.2964234903137613e-01 -3.7896636775283016e-01 1.5461420862122370e+00 7.5109986556274744e-01 2 0 0 -193 0 P 358 -213 1.0817140033809582e+00 -6.2104499019182566e-02 -9.3177761637481960e-01 1.5642038177575781e+00 6.3605180858272747e-01 2 0 0 -194 0 P 359 111 -7.9332389711124392e-03 -1.7738905253268802e-01 1.0296706976284474e-01 2.4566568766224570e-01 1.3497999999999999e-01 2 0 0 -195 0 P 360 213 2.0623195160870318e+00 2.2108357229508209e+00 -4.5886149141569472e+00 5.5424909451940216e+00 7.2309243311296112e-01 2 0 0 -196 0 P 361 221 1.3272606423767960e-01 1.1858260667374236e-01 -1.1607115888923625e+00 1.2956199048419241e+00 5.4744999999999999e-01 2 0 0 -197 0 P 362 113 5.7886830205443129e-01 8.9869591623345887e-02 -1.3579728481251878e+00 1.6649413901418790e+00 7.6470551308357326e-01 2 0 0 -198 0 P 363 113 4.2594996581370542e-01 8.9617703900198942e-01 -2.2730048106972607e+00 2.6235372677581594e+00 8.5547078690741363e-01 2 0 0 -199 0 P 364 -213 -5.5441634983031604e-03 5.3374785914087941e-01 -1.6970407705718804e+00 1.9199190894218150e+00 7.2195873708732239e-01 2 0 0 -200 0 P 365 211 7.9792817368085056e-01 4.0913366103251425e-01 -2.0440391854478110e+00 2.2364381725166642e+00 1.3957000000000000e-01 1 0 0 0 0 P 366 -213 4.3570400023304817e-01 1.3391444503865997e+00 -2.8206211561928303e+00 3.2360787404895337e+00 7.3017537144540878e-01 2 0 0 -201 0 P 367 223 -1.1752417590897115e+00 1.4585689123955150e+00 -8.2840381418512141e+00 8.5280011259746562e+00 7.6999922367778195e-01 2 0 0 -202 0 P 368 213 -7.5514215111982397e-01 1.6694550193064277e+00 -8.2173397932700940e+00 8.4500932138634486e+00 7.2255263824555505e-01 2 0 0 -203 0 P 369 -211 -1.4406945908544399e-02 4.9292224603518220e-01 -3.6308728318117063e+00 3.6668647652204380e+00 1.3957000000000000e-01 1 0 0 0 0 P 370 2224 -1.2165343001512745e+00 1.3204495607270939e+00 -7.1366932038384077e+00 7.4518736939007617e+00 1.1723859937187666e+00 2 0 0 -204 0 P 371 -211 -1.3984029796023976e+00 -8.4400394434941461e-02 -9.3151118880090866e+00 9.4209046057674239e+00 1.3957000000000000e-01 1 0 0 0 0 P 372 -2112 -2.4943826228452223e-01 3.6240939238623721e-01 -5.4826585793872855e+00 5.5799549189406799e+00 9.3957000000000002e-01 1 0 0 0 0 P 373 -211 -1.8223381991830839e-01 -1.5586080536039991e-02 -2.4863386908042351e+00 2.4969605446059040e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 323 -2.0028089313088788e+00 1.4671678967105171e+00 -1.5321041608484958e+01 1.5548500180672697e+01 9.2612992986027043e-01 2 0 0 -205 0 P 375 -313 -1.8488786359484979e-01 -2.8583574368423448e-01 -6.2508747603524650e+00 6.3253748991026040e+00 9.0611630054513670e-01 2 0 0 -206 0 P 376 -213 -1.4417840315695746e-01 -8.2523435035679438e-01 -5.4317437359050649e+00 5.5401470837549844e+00 6.9827684491844566e-01 2 0 0 -207 0 P 377 221 -1.3378184056377823e-01 -3.5194355042467018e-01 -5.2162255993858402e+00 5.2583716918584527e+00 5.4744999999999999e-01 2 0 0 -208 0 P 378 213 -9.0766533282673256e-01 -1.3763429077963676e+00 -1.0084732663858464e+01 1.0244342601400920e+01 7.2563508537493904e-01 2 0 0 -209 0 P 379 -211 -1.3630536621192655e+00 -5.8836572225956907e-01 -2.3551810060451988e+01 2.3598968757499854e+01 1.3957000000000000e-01 1 0 0 0 0 P 380 213 -1.1111334423590697e+00 -2.5023811036946459e+00 -6.1969134981723819e+01 6.2034503348759316e+01 7.8063219845680376e-01 2 0 0 -210 0 P 381 113 -9.0910723595491183e-01 -9.7075064949796097e-01 -5.9279563227831112e+01 5.9299487159546054e+01 7.7053754793267637e-01 2 0 0 -211 0 P 382 3112 -5.5828767795415446e-01 -1.9379613398465865e+00 -8.8444329871653864e+01 8.8475424431226202e+01 1.1974400000000001e+00 2 0 0 -212 0 P 383 -3112 1.3871889707356336e-01 -1.0177792860827790e+00 -3.7286436245315095e+01 3.7319797802736439e+01 1.1974400000000001e+00 2 0 0 -213 0 P 384 -211 9.9443065808687836e-02 -1.1331811901219424e-01 -5.4630649566273348e+00 5.4669267806203070e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 221 1.5826769413864022e-01 -4.4440524877985599e-01 -4.3607374894904609e+01 4.3613362532776669e+01 5.4744999999999999e-01 2 0 0 -214 0 P 386 323 5.2857411690195655e-01 4.1844776115920429e-01 -2.4709349113618920e+01 2.4734445083890147e+01 8.8676426596894620e-01 2 0 0 -215 0 P 387 -321 6.4778751713708960e-01 6.0865336031755056e-02 -2.1301158958586495e+01 2.1316809029389425e+01 4.9359999999999998e-01 1 0 0 0 0 P 388 213 -7.3487326821713528e-01 5.8459921700185902e-01 -7.7633150346268394e+01 7.7643557038963792e+01 8.5680920376226555e-01 2 0 0 -216 0 P 389 113 1.3663179756330071e-01 1.1390676488393761e+00 -8.5624386435751234e+01 8.5638614636615799e+01 1.0585938896423097e+00 2 0 0 -217 0 P 390 -211 -2.0677571639925585e-01 1.4605379567678409e-01 -3.3878896582113072e+00 3.4002005866182583e+00 1.3957000000000000e-01 1 0 0 0 0 P 391 113 -2.8512797922549343e-01 8.2333488060313786e-01 -4.5566778664009853e+01 4.5578140354367115e+01 5.2572051260090902e-01 2 0 0 -218 0 P 392 211 2.7687516320763321e-02 -2.7852029303271381e-01 -1.2218200245127413e+02 1.2218240275481674e+02 1.3957000000000000e-01 1 0 0 0 0 P 393 223 -4.2813226974380303e-01 1.3733258271085471e+00 -2.8157796026454923e+02 2.8158269339674615e+02 7.7213519157662436e-01 2 0 0 -219 0 P 394 113 -1.4395331684757573e+00 1.1391211645358121e-01 -3.4351995836301336e+02 3.4352383785114472e+02 7.6167351254498528e-01 2 0 0 -220 0 P 395 -213 -4.3021763464186635e-01 6.0741246855485087e-01 -4.2485649743262121e+02 4.2485771651986886e+02 6.9414598050443443e-01 2 0 0 -221 0 P 396 221 -1.3462809706240439e-01 1.1080069893541571e-01 -2.4682499874051186e+02 2.4682566743812441e+02 5.4744999999999999e-01 2 0 0 -222 0 P 397 211 6.5614362896413550e-02 1.0228720285813191e+00 -5.9597712547502113e+02 5.9597802320361234e+02 1.3957000000000000e-01 1 0 0 0 0 P 398 313 -9.6601878080128856e-01 1.5997712442295278e-01 -3.9517692730594553e+02 3.9517910903538206e+02 8.7496175037540691e-01 2 0 0 -223 0 P 399 333 -1.2754591299715951e-01 -6.1034078487044952e-01 -4.2576929682044681e+02 4.2577097398706309e+02 1.0195053119172499e+00 2 0 0 -224 0 P 400 -321 4.3533553384878249e-01 -3.7550148540677036e-01 -2.8454863230495681e+02 2.8454964119811166e+02 4.9359999999999998e-01 1 0 0 0 0 P 401 111 -1.2854661763482453e-01 1.5727905599821579e-01 -8.0741265859452326e+01 8.0741634198977678e+01 1.3497999999999999e-01 2 0 0 -225 0 P 402 113 7.8224647900470415e-02 1.7133588520994522e-01 -6.3214919864804608e+02 6.3215015656092658e+02 1.0842571448142484e+00 2 0 0 -226 0 P 403 213 3.3225253524952680e-01 6.9444761187343418e-01 -9.5166350043517230e+02 9.5166412953340591e+02 7.7764440281538316e-01 2 0 0 -227 0 P 404 2112 3.6067038987137634e-01 1.0253345098352638e+00 -1.2849294750798051e+03 1.2849302783087633e+03 9.3957000000000002e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 405 -211 1.9570661233297890e-01 2.9292260501017664e-01 4.6080063096343444e+00 4.6235599558312996e+00 1.3957000000000000e-01 1 0 0 0 0 P 406 211 1.5552443904002372e-01 9.2301162909370138e-01 1.2398713963267801e+01 1.2434778890129605e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 3.7813486184086664e-01 4.6824912127822410e-01 4.8468518920301760e+00 4.8859427009527794e+00 1.3497999999999999e-01 2 0 0 -228 0 V -88 0 0 0 0 0 0 2 0 P 408 211 -1.2139167628770184e-01 1.5243886927829486e-01 8.4635398711818000e-01 8.7964106563394573e-01 1.3957000000000000e-01 1 0 0 0 0 P 409 -211 -3.6391722399918988e-02 -6.9933445808565927e-04 4.3656865022006546e+00 4.3680685968657711e+00 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 410 -211 1.0493563469256055e-01 5.3323568841274205e-01 5.5930256532740117e+00 5.6211002063569842e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 111 6.3174622227525845e-01 8.7638976802002855e-01 2.7402691639900862e+01 2.7424312042907143e+01 1.3497999999999999e-01 2 0 0 -229 0 V -90 0 0 0 0 0 0 2 0 P 412 22 7.8844314776738866e-01 -9.7377879024494585e-01 -8.6787369275580659e-02 1.2559537320530698e+00 0 1 0 0 0 0 P 413 113 1.1726015137479244e+01 -1.1876531635944126e+01 -1.4282213246279247e+00 1.6770548694831330e+01 8.1243625572277045e-01 2 0 0 -230 0 V -91 0 3.0522450203433342e-04 -3.2972595056322943e-04 -1.5406067737620796e-06 4.4973024311702713e-04 0 2 0 P 414 22 1.7512995636368747e+00 -1.8483806827129299e+00 -5.2496914440416813e-02 2.5468249323121501e+00 0 1 0 0 0 0 P 415 22 3.7986131669341561e-01 -4.5385600663067388e-01 4.1739976952337041e-02 5.9331452059660506e-01 0 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 416 211 3.6515213882608402e+00 -3.9610480334852665e+00 -8.0362747308887983e-01 5.4487436049888682e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 -211 6.7196104632796294e-01 -9.9510324982046883e-01 -8.3016334644208767e-02 1.2116656396478314e+00 1.3957000000000000e-01 1 0 0 0 0 P 418 111 1.6405566337016853e+00 -1.7545725895489623e+00 -4.9520634477990771e-01 2.4562980203325151e+00 1.3497999999999999e-01 2 0 0 -231 0 V -93 0 0 0 0 0 0 2 0 P 419 211 4.1564203122175476e+00 -4.2034268852056753e+00 -1.1556231487884967e+00 6.0249126166277582e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 111 3.9312419472367938e-01 -2.5527843636746528e-01 -1.5038082598160876e-01 5.1043873851253718e-01 1.3497999999999999e-01 2 0 0 -232 0 V -94 0 0 0 0 0 0 2 0 P 421 -211 7.3348985786729792e-01 -8.5307054620669798e-01 -6.0112142013225038e-03 1.1336898376521496e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 111 8.9726571809134459e-01 -5.0114488449521621e-01 7.5894388611479846e-01 1.2846973911348665e+00 1.3497999999999999e-01 2 0 0 -233 0 V -95 0 0 0 0 0 0 3 0 P 423 -211 4.8707995145241229e-01 1.6134834863577102e-01 -8.2515182960083158e-02 5.3811588810711641e-01 1.3957000000000000e-01 1 0 0 0 0 P 424 211 4.7910346205112725e-01 -1.4425366992639044e-01 -4.5914014719218653e-02 5.2147591534436621e-01 1.3957000000000000e-01 1 0 0 0 0 P 425 111 8.2393178479923685e-03 3.9446864893634213e-02 1.3487593425164565e-01 1.9502579200913686e-01 1.3497999999999999e-01 2 0 0 -234 0 V -96 0 0 0 0 0 0 2 0 P 426 211 -3.1586964488121994e-01 -7.2545399041293746e-03 -1.2791586144183508e-02 3.4564384918972979e-01 1.3957000000000000e-01 1 0 0 0 0 P 427 111 4.4817552170149089e-01 1.0186764009544624e-01 3.0851656101060082e-01 5.6977222042569486e-01 1.3497999999999999e-01 2 0 0 -235 0 V -97 0 0 0 0 0 0 3 0 P 428 -211 1.5016480093666978e-01 -8.0360096843762732e-02 -2.0042960114063255e-01 2.9775664983083355e-01 1.3957000000000000e-01 1 0 0 0 0 P 429 211 -1.0316194120713844e-01 -7.1710073971888583e-02 -1.9671679635647260e-01 2.7195956260340015e-01 1.3957000000000000e-01 1 0 0 0 0 P 430 111 -9.0338471066705173e-02 -1.5432991429481230e-02 -2.0960808837186490e-01 2.6562072149973520e-01 1.3497999999999999e-01 2 0 0 -236 0 V -98 0 0 0 0 0 0 3 0 P 431 -211 1.8496528853230093e-01 5.5817072707425608e-01 1.7220974028680089e-01 6.2841284047518353e-01 1.3957000000000000e-01 1 0 0 0 0 P 432 211 -1.0428209230910937e-01 5.5640831029951834e-02 8.0742616737230211e-02 1.9992451553434987e-01 1.3957000000000000e-01 1 0 0 0 0 P 433 111 1.4329367909446167e-01 3.7609536809005589e-01 5.2310624746695411e-01 6.7367688909905421e-01 1.3497999999999999e-01 2 0 0 -237 0 V -99 0 0 0 0 0 0 2 0 P 434 -311 -9.8387377533228437e-01 7.7653168363384129e-01 -5.9167540252308926e-01 1.4726724932328539e+00 4.9767000000000000e-01 2 0 0 -238 0 P 435 -211 -1.3817296244737758e+00 3.7594860898046162e-01 -4.9563873235543082e-01 1.5217265357657677e+00 1.3957000000000000e-01 1 0 0 0 0 V -100 0 -4.2748460186664153e-03 2.9798747375538227e-03 -2.7640378877039338e-03 5.8987472754626754e-03 0 2 0 P 436 22 -7.8752715169542240e+00 5.4387116616570745e+00 -5.1365681186487002e+00 1.0862035630668563e+01 0 1 0 0 0 0 P 437 22 -7.8173348847916193e+00 5.5001622015764235e+00 -5.0099865085474615e+00 1.0791778062972645e+01 0 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 438 211 -6.9700446329947150e+00 5.2529000695383958e+00 -4.0084594266194280e+00 9.6052958354362552e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 -211 -1.8662363512167826e+00 1.0339176105186485e+00 -8.3252481796797473e-01 2.2944282733125765e+00 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 440 -211 -2.6158968815414312e+00 6.4434614446519456e-01 1.4286143343670308e+00 3.0526246330009688e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -5.6483047838548062e-01 -1.3493703041478891e-01 1.9595957086831101e-01 6.2758364008729961e-01 1.3497999999999999e-01 2 0 0 -239 0 V -103 0 0 0 0 0 0 3 0 P 442 -211 -2.7926439801008490e-02 -7.5166629761934889e-02 2.1024911049547929e-01 2.6479120384534566e-01 1.3957000000000000e-01 1 0 0 0 0 P 443 211 1.3814076302403454e-02 -6.2402126948401131e-02 -2.9162035005734686e-02 1.5625320264701359e-01 1.3957000000000000e-01 1 0 0 0 0 P 444 221 -3.5512099227786481e-01 -5.6394310698178951e-01 3.3990091689479446e-01 9.2702582643344478e-01 5.4744999999999999e-01 2 0 0 -240 0 V -104 0 0 0 0 0 0 1 0 P 445 310 1.2006999732173709e+00 3.4056170113206115e-02 8.6033313750636131e-01 1.5590666389858114e+00 4.9767000000000000e-01 2 0 0 -241 0 V -105 0 0 0 0 0 0 2 0 P 446 -211 5.1480334767005576e-01 -7.0621076312509523e-02 9.2657680120533294e-03 5.3812216322010631e-01 1.3957000000000000e-01 1 0 0 0 0 P 447 211 1.1516971641725580e+00 1.4566585549659153e-01 1.1066150455568677e+00 1.6098762509502071e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 -8.0869056576605774e-04 -1.7846687124029688e-04 1.4380335563433672e-02 1.4404257539724486e-02 0 2 0 P 448 22 -7.3593351196140866e-01 -1.2844839251350579e-01 1.2023166687380639e+01 1.2046353569280068e+01 0 1 0 0 0 0 P 449 22 -1.3442870319215823e+00 -3.3062763442753729e-01 2.4967829292210979e+01 2.5006177673163652e+01 0 1 0 0 0 0 V -107 0 -4.5089545975560637e-07 -3.7248913083786561e-08 2.1950804036699604e-06 2.3267278705977454e-06 0 2 0 P 450 22 -9.7666662757856099e-02 -9.5707985165511718e-03 1.5516064517803732e-01 1.8358976826219375e-01 0 1 0 0 0 0 P 451 22 2.8336010614712887e-04 1.5258690372174965e-03 3.1892747141398020e-01 3.1893124743709833e-01 0 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 452 211 6.4732661778248629e-02 1.7845951392462103e-01 1.9237971014822087e+01 1.9239413885761849e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 1.2376003158003295e+00 -3.8218832984580203e-02 2.7161649552536282e+01 2.7190192004398540e+01 1.3497999999999999e-01 2 0 0 -242 0 V -109 0 0 0 0 0 0 2 0 P 454 211 2.5480783224157721e-01 2.6020307116402580e-01 3.4064923265970116e+01 3.4067155877339495e+01 1.3957000000000000e-01 1 0 0 0 0 P 455 -211 3.3531805966345990e-01 -4.3592200346014942e-01 3.2675253291518381e+01 3.2680179369826291e+01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 -6.8920474183945525e-05 9.5011004271221671e-05 -1.1794446124386559e-04 1.7084829791756050e-04 0 2 0 P 456 22 -1.3677234177964182e-01 2.5862827193441890e-01 -3.4671779517516166e-01 4.5366120179137631e-01 0 1 0 0 0 0 P 457 22 -1.0333732595548092e-01 7.2377295523755644e-02 -6.4184853649901855e-02 1.4155130264685531e-01 0 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 458 -211 -5.0159122184184435e-01 2.1493585359253059e-01 -5.2868744626977682e-01 7.7251626243827531e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 211 1.0779785966170642e-01 4.6713089428952331e-01 -2.9314995163338592e-01 5.7900632983589329e-01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 460 2112 5.7367618396674669e-01 -4.0589267245006994e-01 1.3586942935810309e+00 1.7951866738333830e+00 9.3957000000000002e-01 1 0 0 0 0 P 461 -211 4.0983237082507777e-02 -2.0868265849418158e-01 7.1424874211772502e-02 2.6421463856896305e-01 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 462 -2112 6.0544336173166247e-01 -9.3641713358615652e-01 4.3002804341960044e+00 4.5407755185615182e+00 9.3957000000000002e-01 1 0 0 0 0 P 463 211 4.0194430337383530e-01 -6.8617178500416276e-01 2.7599868241989998e+00 2.8756560983891237e+00 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 464 -211 7.0044204539718347e-01 -1.8293615941863692e+00 7.4205982451519494e+00 7.6760628581387005e+00 1.3957000000000000e-01 1 0 0 0 0 P 465 111 5.7252251838024670e-01 -5.0980532169344284e-01 2.0360128342765065e+00 2.1797365349551003e+00 1.3497999999999999e-01 2 0 0 -243 0 V -115 0 0 0 0 0 0 2 0 P 466 321 -2.1445661503779612e-01 -6.6571831203992748e-01 1.8664399883610356e+00 2.0533902943356637e+00 4.9359999999999998e-01 1 0 0 0 0 P 467 111 -1.8746038587148678e-01 4.3323264208212982e-02 1.5792516855801247e-01 2.8315766060062370e-01 1.3497999999999999e-01 2 0 0 -244 0 V -116 0 0 0 0 0 0 2 0 P 468 -311 -3.4958540790935128e-01 6.0396797221270782e-01 5.6422069457037001e+00 5.7069398030756338e+00 4.9767000000000000e-01 2 0 0 -245 0 P 469 -211 4.2490202855264239e-02 1.1607799647654506e-01 3.4844082973252472e-01 3.9518390064548503e-01 1.3957000000000000e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 470 211 9.9396104860088166e-02 -1.9457689981185047e-01 4.8428296825817645e+00 4.8497648267721951e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 4.4183007932034737e-02 1.8086323261315179e-01 4.3551055069826655e-01 4.9249638300266602e-01 1.3497999999999999e-01 2 0 0 -246 0 V -118 0 0 0 0 0 0 2 0 P 472 22 6.1195361073691765e-02 1.7080364674464117e-02 3.9059123879586655e+00 3.9064290846607359e+00 0 1 0 0 0 0 P 473 113 2.6778858317243970e-01 -3.9316887874040701e-01 9.8180629240555231e+00 9.8599920069842248e+00 7.7381542023380057e-01 2 0 0 -247 0 V -119 0 -5.2263287708870648e-06 -1.8764596762352329e-07 8.7741436885891639e-05 8.7940489316660759e-05 0 2 0 P 474 22 -3.2166059637911720e-02 -5.7812752207479778e-03 1.6423113038599610e+00 1.6426364470941259e+00 0 1 0 0 0 0 P 475 22 -2.2338825686224004e-01 -3.3941400855301818e-03 2.6480240185214958e+00 2.6574320379188632e+00 0 1 0 0 0 0 V -120 0 -1.9202035959965179e-05 3.6660261083145972e-05 6.2946432851372560e-04 6.3082886372752369e-04 0 3 0 P 476 22 -3.1402158476212755e-01 5.5411478247626988e-01 1.0539499254277896e+01 1.0558726120076209e+01 0 1 0 0 0 0 P 477 -11 -9.2433634510138182e-02 1.6591606999477646e-01 2.6470303013148833e+00 2.6538352991944372e+00 5.1000000000000004e-04 1 0 0 0 0 P 478 11 -5.7168553813149459e-01 1.1474219331216449e+00 1.8878024241450593e+01 1.8921501023122175e+01 5.1000000000000004e-04 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 479 -211 -1.4779408621804386e+00 6.3886541315608725e-02 1.2529863362550186e+01 1.2617660098106201e+01 1.3957000000000000e-01 1 0 0 0 0 P 480 111 -8.6143339912714623e-01 7.7074158004412779e-02 1.3286956103400357e+01 1.3315758709929067e+01 1.3497999999999999e-01 2 0 0 -248 0 V -122 0 0 0 0 0 0 2 0 P 481 311 -4.8020147792929346e-01 -4.7423587635258480e-01 1.0599549191125474e+01 1.0632667191716953e+01 4.9767000000000000e-01 2 0 0 -249 0 P 482 211 -2.3973770042610226e-01 1.9291558812832327e-01 6.3738061507076678e+00 6.3827560834523034e+00 1.3957000000000000e-01 1 0 0 0 0 V -123 0 -1.3823583317180604e+02 5.2417442636650847e+01 1.9801918061135671e+03 1.9913421385026804e+03 0 2 0 P 483 3122 -1.1431798871981154e+00 3.9044332417385158e-01 1.6535756089099912e+01 1.6617318602725621e+01 1.1156800000000000e+00 2 0 0 -250 0 P 484 111 -7.0560858012619451e-02 6.9793247112105244e-02 8.5075957233038701e-01 8.6709940741400082e-01 1.3497999999999999e-01 2 0 0 -251 0 V -124 0 -7.3160120206048269e+00 6.7895303033427598e-02 1.1787437236282349e+02 1.1824554137353022e+02 0 2 0 P 485 -2212 -1.1602476188103739e+00 1.3661615447690303e-01 2.0704145621146548e+01 2.0758295570811228e+01 9.3827000000000005e-01 1 0 0 0 0 P 486 111 -3.2959148929619730e-01 -1.2278989538505636e-01 3.2998950085095680e+00 3.3213302419078294e+00 1.3497999999999999e-01 2 0 0 -252 0 V -125 0 0 0 0 0 0 2 0 P 487 22 1.8402162180339565e-01 -9.6022003344253967e-02 9.5260485488141322e-01 9.7495650772792641e-01 0 1 0 0 0 0 P 488 22 2.0306819710150117e-01 -4.5621462492429363e-02 8.4604396981666152e+00 8.4629993440167315e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 1 0 P 489 310 5.1885032073033299e-01 -9.7631906713303640e-01 2.0377672835274122e+01 2.0413711817955559e+01 4.9767000000000000e-01 2 0 0 -253 0 V -127 0 0 0 0 0 0 2 0 P 490 -311 2.7275083425792734e-01 2.4336100006899178e-01 6.9574506204847104e+00 6.9847986484454978e+00 4.9767000000000000e-01 2 0 0 -254 0 P 491 -211 -5.0245640203014676e-02 -2.0744472752831772e-01 3.0769992029764279e+00 3.0875494845194433e+00 1.3957000000000000e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 3 0 P 492 111 3.0663580810477955e-02 1.1556062935316606e-01 3.9242341422566160e+00 3.9283746916373876e+00 1.3497999999999999e-01 2 0 0 -255 0 P 493 111 -1.3362832784259146e-01 6.3279778665751762e-01 1.1857650987896223e+01 1.1876042948724837e+01 1.3497999999999999e-01 2 0 0 -256 0 P 494 111 6.3936896077542882e-02 2.2468284853227383e-01 4.1692087857666182e+00 4.1779291292239709e+00 1.3497999999999999e-01 2 0 0 -257 0 V -129 0 0 0 0 0 0 2 0 P 495 211 3.4455973660763300e-01 7.8550272744562233e-01 1.8530672728429145e+01 1.8551038987074641e+01 1.3957000000000000e-01 1 0 0 0 0 P 496 111 -2.2615481840190008e-01 1.6436301700287372e+00 4.3920405679297588e+01 4.3951938760106941e+01 1.3497999999999999e-01 2 0 0 -258 0 V -130 0 -8.3157275926322813e-06 8.4632992955326996e-05 1.3532745656430966e-03 1.3559467035599273e-03 0 2 0 P 497 22 -3.7227028513925409e-01 3.2606190888103330e+00 5.1870940703149273e+01 5.1974654510031520e+01 0 1 0 0 0 0 P 498 22 -3.7100535909004112e-02 9.0573646191624468e-01 1.4748740361424627e+01 1.4776571904096196e+01 0 1 0 0 0 0 V -131 0 0 0 0 0 0 3 0 P 499 211 1.0711462036543209e-01 -6.5785772280755217e-01 -8.8773347786341339e-01 1.1188390581191918e+00 1.3957000000000000e-01 1 0 0 0 0 P 500 -211 -8.3159908026757295e-02 -4.3533117798229359e-01 -1.0989864131680804e+00 1.1931805085797005e+00 1.3957000000000000e-01 1 0 0 0 0 P 501 111 3.4873869560112458e-01 -4.2091890371341917e-01 -9.9661966967437521e-01 1.1446666622623116e+00 1.3497999999999999e-01 2 0 0 -259 0 V -132 0 0 0 0 0 0 2 0 P 502 2212 1.2012889150615864e+00 -5.0078102009166670e-01 -2.8566708523936807e+01 2.8611729468384077e+01 9.3827000000000005e-01 1 0 0 0 0 P 503 211 9.9834191001709385e-02 -1.8462163830235915e-02 -1.1222775639957521e+00 1.1354710180072849e+00 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 504 -311 3.9376596453032253e-01 -2.9980010422092823e-01 -4.3869007646964384e+00 4.4426912435490689e+00 4.9767000000000000e-01 2 0 0 -260 0 P 505 -211 4.4019146338719251e-01 -3.4070721251819946e-01 -7.7797682288786021e+00 7.8009052941994996e+00 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 506 -3122 2.8881101327504299e-01 1.9580392137225608e-01 -4.7262909405889886e+00 4.8687081340441072e+00 1.1156800000000000e+00 2 0 0 -261 0 P 507 -211 2.9551772943396087e-01 1.8670716292563971e-01 -1.9125728053696025e+00 1.9492575032142101e+00 1.3957000000000000e-01 1 0 0 0 0 V -135 0 7.3930463952013857e-05 -8.9547921120789295e-06 3.5504805709265389e-05 8.3337494173565802e-05 0 2 0 P 508 22 1.3782727530113320e-01 2.9317057103669327e-02 8.8136360373302858e-02 1.6620428897596742e-01 0 1 0 0 0 0 P 509 22 7.0967505023692867e-01 -1.3197037123169536e-01 3.1887319695762756e-01 7.8913558502312942e-01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 510 211 5.6075156273784210e-01 1.3137901968304266e+00 1.6744606041741155e+00 2.2053990786775546e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 -211 3.4893764749927066e-02 2.5025879462883749e-01 9.0284548456826608e-01 9.4786960760054395e-01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 512 321 -6.2319501945978129e-01 1.0751837128198050e+00 5.9499929626364612e+00 6.0983972701043241e+00 4.9359999999999998e-01 1 0 0 0 0 P 513 -211 7.5678281382723237e-03 2.6255428848300832e-01 2.8118928755609378e+00 2.8275808308435515e+00 1.3957000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 514 22 -1.9693267420158786e-01 2.8266946928840564e-01 1.4269117068702686e+00 1.4679105988579140e+00 0 1 0 0 0 0 P 515 22 7.7631926699835832e-02 -1.2532400288546802e-01 2.2449276664708462e+00 2.2497628873791569e+00 0 1 0 0 0 0 V -139 0 -4.3440947635442323e-05 -3.8931422367148957e-05 5.0345990595627675e-05 7.7380280873686703e-05 0 2 0 P 516 22 -6.4493972941219113e-01 -5.5274943378468033e-01 8.0072429157558267e-01 1.1673211135941874e+00 0 1 0 0 0 0 P 517 22 -1.8250898121051626e-01 -1.8880334058719089e-01 1.5824937891098859e-01 3.0659271936087623e-01 0 1 0 0 0 0 V -140 0 0 0 0 0 0 3 0 P 518 -211 -1.1581712851407372e-01 -1.0048305416221669e-02 1.8757673225344840e-01 2.6111183634960905e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 211 -9.0720596581404800e-02 -7.7968762671748709e-02 1.2732344354313698e+00 1.2864350224806882e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 111 2.0700286141237662e-01 -5.0148197136872651e-02 3.7955778689883612e-01 4.5568491340457229e-01 1.3497999999999999e-01 2 0 0 -262 0 V -141 0 0 0 0 0 0 2 0 P 521 211 2.8423551329306274e-01 1.4899693098390795e-01 8.9233904324991609e-01 9.5850856306439425e-01 1.3957000000000000e-01 1 0 0 0 0 P 522 111 -5.9117468353409822e-02 -4.5369532626177024e-02 -1.1982711140060288e-02 1.5464945949307510e-01 1.3497999999999999e-01 2 0 0 -263 0 V -142 0 -8.6479505710646621e-06 4.3455811394639028e-05 -9.1245401698735015e-04 9.1388482260858217e-04 0 2 0 P 523 22 -4.3607335426625732e-02 2.2364474396480619e-01 -3.4304215390922641e+00 3.4379805856162475e+00 0 1 0 0 0 0 P 524 22 -2.1800199730718614e-03 6.4359744849532821e-03 -1.4006486686249429e+00 1.4006651516959645e+00 0 1 0 0 0 0 V -143 0 0 0 0 0 0 1 0 P 525 310 3.9679463817992838e-01 3.8730525665197618e-01 5.8728557500322296e+01 5.8733283518327838e+01 4.9767000000000000e-01 2 0 0 -264 0 V -144 0 0 0 0 0 0 2 0 P 526 -211 3.4897218382980760e-01 -7.2703517019916286e-02 1.0134318620648093e+01 1.0141546286251849e+01 1.3957000000000000e-01 1 0 0 0 0 P 527 211 -2.9233536574891361e-01 -2.9944340803541919e-01 7.0231687649495340e+00 7.0370097062989885e+00 1.3957000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 528 211 -6.4764762766471673e-01 -9.7071168292934984e-01 3.1730785507962334e+01 3.1752542533759524e+01 1.3957000000000000e-01 1 0 0 0 0 P 529 -211 1.1600113846233259e-01 -6.8077153132275470e-01 1.7232442085724379e+01 1.7246838729597052e+01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 530 211 -3.2368323488939649e-01 -4.5397014117849704e-01 7.6649073993049477e+00 7.6864260193180698e+00 1.3957000000000000e-01 1 0 0 0 0 P 531 -211 1.7145264107753830e-01 -1.1795442534482305e-01 1.0617716765028501e+01 1.0620673158602433e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 532 211 2.0083091237098866e-02 1.0798083514304349e-01 5.4531903302635012e+00 5.4560817217387036e+00 1.3957000000000000e-01 1 0 0 0 0 P 533 111 -4.4666090377188133e-01 -5.8487061271316709e-01 1.0412155368224601e+01 1.0439002759316724e+01 1.3497999999999999e-01 2 0 0 -265 0 V -148 0 0 0 0 0 0 3 0 P 534 -211 -1.0855164115172669e-01 -8.1082530426898405e-02 2.3055472177243028e+00 2.3137384453722154e+00 1.3957000000000000e-01 1 0 0 0 0 P 535 211 -5.7355654273493173e-01 -1.3374133627622962e+00 2.0385303066125005e+01 2.0437654035952235e+01 1.3957000000000000e-01 1 0 0 0 0 P 536 111 -1.4298882487519377e-01 -7.1218533715960319e-01 7.6913938725516156e+00 7.7267983707114336e+00 1.3497999999999999e-01 2 0 0 -266 0 V -149 0 0 0 0 0 0 2 0 P 537 -211 -1.0871355791083064e-01 -5.1216694051052170e-01 3.9444349044867771e+01 3.9448070738261542e+01 1.3957000000000000e-01 1 0 0 0 0 P 538 211 2.5213776667507670e-01 -4.3841218546360798e-02 8.5426906670600466e+00 8.5476627872069422e+00 1.3957000000000000e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 2 0 P 539 -211 -3.5905920325406115e-01 -1.0633461030249638e+00 3.2520436502381571e+01 3.2540096781303397e+01 1.3957000000000000e-01 1 0 0 0 0 P 540 111 4.6997873975171960e-02 -2.0123975020178220e-01 2.1926093183777041e+01 2.1927482485257936e+01 1.3497999999999999e-01 2 0 0 -267 0 V -151 0 0 0 0 0 0 2 0 P 541 -311 -4.7493558670528740e-01 -2.0433375575766055e+00 4.6075314950285951e+02 4.6075819389829525e+02 4.9767000000000000e-01 2 0 0 -268 0 P 542 -211 1.3910233442598244e-01 -5.2016652863488777e-01 1.5307397524936067e+02 1.5307498587654268e+02 1.3957000000000000e-01 1 0 0 0 0 V -152 0 -1.2908394615693506e-05 -7.4721955241062515e-06 1.4497787016034449e-03 1.4499089222845833e-03 0 2 0 P 543 22 -1.0614123253518838e-01 -3.6594882695297919e-02 4.9760569189749546e+00 4.9773233376546981e+00 0 1 0 0 0 0 P 544 22 -3.3747020783371919e-02 -4.4381289124797177e-02 1.0735192721564509e+01 1.0735337504213261e+01 0 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 545 211 -1.7494056826986848e-02 -1.0837450687715238e+00 3.3561740838667873e+02 3.3561918762399699e+02 1.3957000000000000e-01 1 0 0 0 0 P 546 111 -3.0891949466620156e-01 -1.8696311890436623e-01 4.5482336805368483e+01 4.5483970443876068e+01 1.3497999999999999e-01 2 0 0 -269 0 V -154 0 0 0 0 0 0 2 0 P 547 -211 1.7181223704568319e-01 -7.6674577268444244e-01 1.9083244774897994e+02 1.9083411647862337e+02 1.3957000000000000e-01 1 0 0 0 0 P 548 111 -3.0335872896653099e-01 -6.5509851597711966e-01 2.3821373559838787e+02 2.3821486777261222e+02 1.3497999999999999e-01 2 0 0 -270 0 V -155 0 0 0 0 0 0 2 0 P 549 211 1.8643741770967959e-01 2.1027480548497643e-01 4.2076429414614118e+01 4.2077599343028687e+01 1.3957000000000000e-01 1 0 0 0 0 P 550 111 -6.0128494401313834e-02 -2.3781726684556051e-01 1.9257796975181685e+02 1.9257817328508528e+02 1.3497999999999999e-01 2 0 0 -271 0 V -156 0 4.4585809641933577e-04 -1.0944186218421653e-05 9.6485051827405618e-02 9.6486096464217602e-02 0 2 0 P 551 22 6.1267623528791271e-01 4.5708575691498124e-02 1.3846295954014960e+02 1.3846432257466284e+02 0 1 0 0 0 0 P 552 22 5.5080591240856314e-01 -7.4267808748967351e-02 1.1331812556809267e+02 1.1331948854952786e+02 0 1 0 0 0 0 V -157 0 0 0 0 0 0 2 0 P 553 -211 1.8556176172203270e-01 1.5977022050917256e+00 1.3038262675740702e+02 1.3039262220482331e+02 1.3957000000000000e-01 1 0 0 0 0 P 554 211 1.3875773712816527e-02 1.1168301452567089e+00 1.4124899369793735e+02 1.4125347855035392e+02 1.3957000000000000e-01 1 0 0 0 0 V -158 0 -1.5814239506863816e-05 5.1378691422705063e-04 4.2532033462746137e-02 4.2535162492277567e-02 0 2 0 P 555 22 -7.3982425790436138e-02 5.7997372937414460e-01 4.5538393661607167e+01 4.5542146855474357e+01 0 1 0 0 0 0 P 556 22 2.5651604529247037e-02 9.9024047580896413e-01 8.4446238623157910e+01 8.4452048239246807e+01 0 1 0 0 0 0 V -159 0 0 0 0 0 0 2 0 P 557 22 -2.7260438050071073e-01 1.2084696787377717e-03 4.7077026522223221e+01 4.7077815803016790e+01 0 1 0 0 0 0 P 558 111 1.9681117214015537e-01 6.6907381021957113e-01 5.3991797638099328e+01 5.3996470497569277e+01 1.3497999999999999e-01 2 0 0 -272 0 V -160 0 0 0 0 0 0 2 0 P 559 211 -2.1681143814614695e-02 6.7326737152626537e-01 7.9948465709550760e+01 7.9951425303878565e+01 1.3957000000000000e-01 1 0 0 0 0 P 560 -211 9.0592372923667286e-01 3.1831143502916865e+00 4.5562449560288974e+02 4.5563653649366489e+02 1.3957000000000000e-01 1 0 0 0 0 V -161 0 0 0 0 0 0 2 0 P 561 311 7.9511997687169655e-01 4.9510524232000291e-01 8.1083492014629428e+01 8.1090429137438704e+01 4.9767000000000000e-01 2 0 0 -273 0 P 562 111 -7.8222054116021733e-02 1.0712164936456703e-01 3.2506968866421715e+01 3.2507519718065595e+01 1.3497999999999999e-01 2 0 0 -274 0 V -162 0 1.8169232216000898e+02 1.4047556543688484e+02 1.0979896481883030e+04 1.0982514274549829e+04 0 2 0 P 563 3122 2.7013332227952507e+00 2.0704133422656743e+00 1.6826272828367769e+02 1.6830084457279932e+02 1.1156800000000000e+00 2 0 0 -275 0 P 564 111 7.6599034420155765e-01 6.1035067041267532e-01 4.1272013648295214e+01 4.1283853978689415e+01 1.3497999999999999e-01 2 0 0 -276 0 V -163 0 5.1699454261340435e+01 1.2313283638791008e+01 2.6214901047454723e+03 2.6222328832328803e+03 0 2 0 P 565 -2212 1.2026795966073183e+00 2.9670814306365390e-01 6.9184647617973184e+01 6.9202097443287641e+01 9.3827000000000005e-01 1 0 0 0 0 P 566 111 6.7670150605967505e-01 1.5090494905029944e-01 2.6111889532734832e+01 2.6121441227506921e+01 1.3497999999999999e-01 2 0 0 -277 0 V -164 0 0 0 0 0 0 2 0 P 567 -211 2.3653079896974036e+00 1.3952840161334137e+00 7.9170279794451034e+01 7.9218016775783809e+01 1.3957000000000000e-01 1 0 0 0 0 P 568 211 1.4311532660279117e-01 1.9253225628059006e-01 1.6334693226550765e+01 1.6337050935124140e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 569 -211 2.2291641295953788e+00 -7.6097213930513008e-01 7.0010432204317226e+01 7.0050184500354263e+01 1.3957000000000000e-01 1 0 0 0 0 P 570 111 3.6689529362082968e-01 1.1086982168122308e-02 6.0938413315532163e+00 6.1063783744705002e+00 1.3497999999999999e-01 2 0 0 -278 0 V -166 0 0 0 0 0 0 3 0 P 571 211 3.8631261114588955e-01 -1.6532490374111389e-01 4.7830421383576791e+00 4.8034926500966524e+00 1.3957000000000000e-01 1 0 0 0 0 P 572 -211 6.5875252291418984e-01 -8.0490088684560882e-02 8.2933218333382719e+00 8.3210035667008064e+00 1.3957000000000000e-01 1 0 0 0 0 P 573 111 1.3231772442975649e+00 -4.6116385939848253e-01 2.5513052671269062e+01 2.5551859938806640e+01 1.3497999999999999e-01 2 0 0 -279 0 V -167 0 0 0 0 0 0 2 0 P 574 -211 -5.4031102213536086e-01 -2.0159066505392104e-01 3.2420332766755062e+00 3.2958814221463064e+00 1.3957000000000000e-01 1 0 0 0 0 P 575 211 -4.1762720122128939e-03 -2.9843476084810527e-01 4.4097859842563070e+00 4.4220779006677109e+00 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 576 -211 6.1070739344497804e-01 -4.9159036890706892e-01 2.4976958897315864e+00 2.6215623497625624e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 111 -2.3281276122814863e-02 -8.5583410784510094e-01 4.8699659137408107e+00 4.9464918517436471e+00 1.3497999999999999e-01 2 0 0 -280 0 V -169 0 0 0 0 0 0 3 0 P 578 211 -6.3731493336231126e-02 -5.5751180071888354e-02 1.2017967917476877e+00 1.2128335462367905e+00 1.3957000000000000e-01 1 0 0 0 0 P 579 -211 -3.1558753737760675e-01 -4.7707233968176777e-01 2.4322101354601102e+00 2.5024626748410026e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 111 1.0701036670457778e-01 -5.0273056959863271e-01 1.8509037247231244e+00 1.9256825913906863e+00 1.3497999999999999e-01 2 0 0 -281 0 V -170 0 0 0 0 0 0 2 0 P 581 -211 1.2865250703501696e-01 -6.1701904604799818e-01 3.9907567261829660e+00 4.0426331769314618e+00 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -2.5934352172330732e-01 -2.8083614560633674e-01 8.3923974933048318e-01 9.3270099426084208e-01 1.3957000000000000e-01 1 0 0 0 0 V -171 0 0 0 0 0 0 3 0 P 583 211 -3.1545303049654944e-01 -4.3977270315175998e-01 1.5453753374133830e+00 1.6433427406577090e+00 1.3957000000000000e-01 1 0 0 0 0 P 584 -211 -2.8031546431000021e-01 -2.2837273421392493e-01 1.8098133790072024e+00 1.8508471349620268e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -1.8208532816998013e-01 -2.2602630604624149e-01 8.1670564008269531e-01 8.7719476782671457e-01 1.3497999999999999e-01 2 0 0 -282 0 V -172 0 0 0 0 0 0 2 0 P 586 211 -4.8018792575073022e-01 -2.2240226071014169e+00 4.7648246279330291e+00 5.2820346951522481e+00 1.3957000000000000e-01 1 0 0 0 0 P 587 111 -1.4491636049832970e-01 -8.7880529648984129e-01 3.3823722892241612e+00 3.5002801893548710e+00 1.3497999999999999e-01 2 0 0 -283 0 V -173 0 0 0 0 0 0 2 0 P 588 211 -4.4547835710618555e-01 -2.4724104203046120e+00 5.8635917283766315e+00 6.3806310028920894e+00 1.3957000000000000e-01 1 0 0 0 0 P 589 -211 4.6336387104788518e-02 -2.9541189838900933e-01 8.5663938616236746e-01 9.1800112925004662e-01 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 590 2212 -3.2479482612257260e-01 -2.0732875261131558e+00 3.4845167785112068e+00 4.1744724957338644e+00 9.3827000000000005e-01 1 0 0 0 0 P 591 111 -3.1482275147159344e-01 -1.1967331887201731e+00 2.5109541388944350e+00 2.8025691745003534e+00 1.3497999999999999e-01 2 0 0 -284 0 V -175 0 0 0 0 0 0 2 0 P 592 2212 -8.7894914837744458e-03 -8.4047240345298979e-01 1.4653533577555540e+00 1.9323773368863715e+00 9.3827000000000005e-01 1 0 0 0 0 P 593 -211 -3.7255441180465670e-01 -1.8053726008205867e-01 6.0454547492144639e-01 7.4588572059065983e-01 1.3957000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 594 -2112 -8.0891603611874674e-01 -6.3653943528910597e+00 5.4559915058070079e+00 8.4748584364368984e+00 9.3957000000000002e-01 1 0 0 0 0 P 595 111 7.9244917651420291e-02 -3.1344559296301028e-01 2.6968047258605504e-01 4.4212560931906159e-01 1.3497999999999999e-01 2 0 0 -285 0 V -177 0 -4.5922123267234316e-05 -3.6695598295604811e-05 1.2145539282394618e-04 1.3535825537912741e-04 0 2 0 P 596 22 -3.8393089390926102e-02 -7.1190708162331889e-02 2.3511876581519109e-01 2.4864227371887629e-01 0 1 0 0 0 0 P 597 22 -5.3953463399507717e-01 -3.9062164005715444e-01 1.2933915397563855e+00 1.4548348916885849e+00 0 1 0 0 0 0 V -178 0 -6.8503142603519086e-05 1.5638349605443612e-05 6.7552531784033332e-05 1.0218696431861187e-04 0 2 0 P 598 22 -2.5018342083022066e-01 -1.5537237018183033e-03 2.1541063021615267e-01 3.3014526761074880e-01 0 1 0 0 0 0 P 599 22 -5.1150762286901422e-02 7.0344280230450321e-02 8.1741970511239395e-02 1.1935856897069247e-01 0 1 0 0 0 0 V -179 0 0 0 0 0 0 3 0 P 600 -211 -2.0574462704181692e-01 -6.0551142362629748e-02 2.6099101881789383e-01 3.6550429436820303e-01 1.3957000000000000e-01 1 0 0 0 0 P 601 211 -1.9021190539033270e-01 4.4554247915416692e-02 1.7777023454234253e-01 2.9874352068081539e-01 1.3957000000000000e-01 1 0 0 0 0 P 602 221 -1.1382518931178329e+00 -6.3893746302178178e-01 8.4888970050700441e-01 1.6505070978235485e+00 5.4744999999999999e-01 2 0 0 -286 0 V -180 0 0 0 0 0 0 3 0 P 603 -211 -4.9184518010657774e-01 -1.5647055481771871e-01 4.4066131803747999e-01 6.9286138428517263e-01 1.3957000000000000e-01 1 0 0 0 0 P 604 211 -6.6571347374395318e-01 -6.9579298007345258e-01 5.1640201503440819e-01 1.1015684846051716e+00 1.3957000000000000e-01 1 0 0 0 0 P 605 111 -9.7561124478789774e-01 -1.1434243703341571e+00 9.6066728100796117e-01 1.7889488021824114e+00 1.3497999999999999e-01 2 0 0 -287 0 V -181 0 0 0 0 0 0 3 0 P 606 -211 -1.2388910927771200e+00 -6.4470451336096102e-01 6.7366184612676253e-02 1.4051736679285409e+00 1.3957000000000000e-01 1 0 0 0 0 P 607 211 -1.0446228108474320e+00 -5.3370320353806633e-01 3.8690823496438681e-01 1.2430823358059762e+00 1.3957000000000000e-01 1 0 0 0 0 P 608 111 -3.6513197286710880e-01 -2.5780639801934946e-01 2.9795367664539962e-01 5.5387858804619783e-01 1.3497999999999999e-01 2 0 0 -288 0 V -182 0 0 0 0 0 0 2 0 P 609 211 -4.7159852115915923e-01 -3.7821600155342172e-01 -1.5379564906376211e-01 6.3920684880679102e-01 1.3957000000000000e-01 1 0 0 0 0 P 610 -211 -9.4697739778059897e-01 -8.1920496920856262e-02 5.4125347804847290e-01 1.1026841216425689e+00 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 2 0 P 611 211 -4.7272897322265345e-01 -3.9353296445852171e-01 -4.2836801708537303e-01 7.6244332195994136e-01 1.3957000000000000e-01 1 0 0 0 0 P 612 111 -8.6518007801151176e-01 -4.2171786902945568e-01 3.9477009702149540e-01 1.0490212382736164e+00 1.3497999999999999e-01 2 0 0 -289 0 V -184 0 0 0 0 0 0 2 0 P 613 -211 -5.7898056391503772e-01 -5.5472945685958497e-01 6.1450141691732775e-02 8.1621024773831363e-01 1.3957000000000000e-01 1 0 0 0 0 P 614 211 -1.2872273769795526e+00 1.4705370930373803e-02 7.0267641990450200e-02 1.2967605385693834e+00 1.3957000000000000e-01 1 0 0 0 0 V -185 0 0 0 0 0 0 2 0 P 615 211 -6.9364513960441987e-01 -2.6788601584997451e-01 -5.1863052841554458e-02 7.5833769412765828e-01 1.3957000000000000e-01 1 0 0 0 0 P 616 -211 -6.3878375850243285e-01 4.7136272683700675e-01 -1.5779213812538692e-01 8.2134380994312872e-01 1.3957000000000000e-01 1 0 0 0 0 V -186 0 0 0 0 0 0 3 0 P 617 111 3.0419430425973082e-01 7.2271075091167059e-01 -4.5452783302969799e-02 7.9695078903114158e-01 1.3497999999999999e-01 2 0 0 -290 0 P 618 111 2.7231764609908798e-01 1.0459842991342823e+00 1.2595986885515920e-01 1.0965060617134739e+00 1.3497999999999999e-01 2 0 0 -291 0 P 619 111 1.1649991750083291e-01 9.5471104949630581e-01 2.7893241181732923e-02 9.7161877920903772e-01 1.3497999999999999e-01 2 0 0 -292 0 V -187 0 0 0 0 0 0 2 0 P 620 -321 2.4902186620336062e+00 1.9551199221898696e+00 -2.0039293014473236e-01 3.2105266205618288e+00 4.9359999999999998e-01 1 0 0 0 0 P 621 211 1.6203421445071271e+00 1.2842184163054646e+00 2.9737111457640286e-01 2.0934743778533531e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 1.2663849729026294e-04 7.2066241210486993e-05 4.3004127232353272e-07 1.4587510007269328e-04 0 2 0 P 622 22 2.1232134837015795e-01 1.6293420327376784e-01 -1.3955264758419888e-02 2.6799749809402523e-01 0 1 0 0 0 0 P 623 22 2.2419892810951985e+00 1.2337417334527181e+00 2.2289656656274512e-02 2.5591270836366324e+00 0 1 0 0 0 0 V -189 0 0 0 0 0 0 2 0 P 624 -211 6.3916407267869679e-01 5.0391042938803399e-01 1.3578604245368986e-01 8.3688354439222090e-01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 1.5665404254054063e-01 7.0505325865021995e-01 -3.8879504774986617e-01 8.3203483138172052e-01 1.3957000000000000e-01 1 0 0 0 0 V -190 0 0 0 0 0 0 3 0 P 626 -211 1.0220436236437784e+00 6.7654812677416809e-01 -6.2215380315826657e-02 1.2351684398981315e+00 1.3957000000000000e-01 1 0 0 0 0 P 627 211 3.2119843394375853e+00 1.8311267338940287e+00 2.6292616118721429e-01 3.7092423031544270e+00 1.3957000000000000e-01 1 0 0 0 0 P 628 111 1.7865947311537895e+00 1.4417146327548680e+00 2.5710705929558941e-01 2.3140409365492243e+00 1.3497999999999999e-01 2 0 0 -293 0 V -191 0 0 0 0 0 0 2 0 P 629 311 5.1013694195585835e-01 5.1816706794340728e-01 -3.8739434047079946e-01 9.6254174651178015e-01 4.9767000000000000e-01 2 0 0 -294 0 P 630 111 5.7450935444866680e-01 2.5483181545998312e-01 1.4089604614386658e-01 6.5808171889107303e-01 1.3497999999999999e-01 2 0 0 -295 0 V -192 0 0 0 0 0 0 2 0 P 631 -311 6.0805680772554627e-01 1.0530365813696393e-01 2.4652331002799399e-01 8.3022353202349486e-01 4.9767000000000000e-01 2 0 0 -296 0 P 632 -211 4.0290624333999275e-01 -1.7826058081455605e-02 -3.6787889956957681e-01 5.6344110510113798e-01 1.3957000000000000e-01 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 633 211 3.6437837152841168e-01 -2.5717014470308047e-01 1.6032994611022713e-01 4.9405825312811941e-01 1.3957000000000000e-01 1 0 0 0 0 P 634 111 8.9026291447554196e-01 -7.2472204328295625e-02 -5.3929631386305732e-01 1.0520838330841176e+00 1.3497999999999999e-01 2 0 0 -297 0 V -194 0 0 0 0 0 0 2 0 P 635 -211 1.8546675626918549e-01 -1.2238777208952767e-01 7.2670927953652356e-04 2.6240616883836515e-01 1.3957000000000000e-01 1 0 0 0 0 P 636 111 8.9624724711177273e-01 6.0283273070345103e-02 -9.3250432565435615e-01 1.3017976489192129e+00 1.3497999999999999e-01 2 0 0 -298 0 V -195 0 -2.2273265087224957e-06 -4.9803534281763855e-05 2.8908909065183903e-05 6.8972799181534389e-05 0 2 0 P 637 22 2.3778026262002115e-03 2.1683461062820035e-02 2.0522420805340350e-02 2.9949894569154381e-02 0 1 0 0 0 0 P 638 22 -1.0311041597312651e-02 -1.9907251359550807e-01 8.2444648957504391e-02 2.1571579309309130e-01 0 1 0 0 0 0 V -196 0 0 0 0 0 0 2 0 P 639 211 1.8477573376473810e+00 2.0558424167336260e+00 -3.8104581682729042e+00 4.7095399412605676e+00 1.3957000000000000e-01 1 0 0 0 0 P 640 111 2.1456217843965089e-01 1.5499330621719465e-01 -7.7815674588404327e-01 8.3295100393345411e-01 1.3497999999999999e-01 2 0 0 -299 0 V -197 0 0 0 0 0 0 2 0 P 641 22 -1.4551086848278080e-01 -7.6130080934838536e-03 -8.4051425275688707e-01 8.5305074868164354e-01 0 1 0 0 0 0 P 642 22 2.7823693272046041e-01 1.2619561476722621e-01 -3.2019733613547546e-01 4.4256915616028053e-01 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 643 -211 4.2890091820265680e-01 2.5356445998236149e-01 -3.5312688352320937e-01 6.2644178801229644e-01 1.3957000000000000e-01 1 0 0 0 0 P 644 211 1.4996738385177447e-01 -1.6369486835901559e-01 -1.0048459646019783e+00 1.0384996021295825e+00 1.3957000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 2 0 P 645 -211 3.9877748777308863e-01 1.0222307546838516e+00 -2.0593910423162565e+00 2.3376377928688119e+00 1.3957000000000000e-01 1 0 0 0 0 P 646 211 2.7172478040616795e-02 -1.2605371568186222e-01 -2.1361376838100446e-01 2.8589947488934808e-01 1.3957000000000000e-01 1 0 0 0 0 V -200 0 0 0 0 0 0 2 0 P 647 -211 -2.3294602417567481e-01 2.8048976255950281e-01 -3.5109894818201037e-01 5.2506058068993744e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 2.2740186067737164e-01 2.5325809658137655e-01 -1.3459418223898700e+00 1.3948585087318774e+00 1.3497999999999999e-01 2 0 0 -300 0 V -201 0 0 0 0 0 0 2 0 P 649 -211 3.0596837846073166e-01 1.0025029220872839e+00 -2.5633055154598474e+00 2.7728403682683043e+00 1.3957000000000000e-01 1 0 0 0 0 P 650 111 1.2973562177231651e-01 3.3664152829931571e-01 -2.5731564073298235e-01 4.6323837222122888e-01 1.3497999999999999e-01 2 0 0 -301 0 V -202 0 0 0 0 0 0 3 0 P 651 211 -5.3014335244960120e-01 2.9971536848243607e-01 -2.6979016255978054e+00 2.7693021219351177e+00 1.3957000000000000e-01 1 0 0 0 0 P 652 -211 -1.2094632771135819e-01 2.8165659297632623e-01 -9.1052420799022737e-01 9.7082056467203348e-01 1.3957000000000000e-01 1 0 0 0 0 P 653 111 -5.2415207892875215e-01 8.7719695093675276e-01 -4.6756123082631813e+00 4.7878784393675060e+00 1.3497999999999999e-01 2 0 0 -302 0 V -203 0 0 0 0 0 0 2 0 P 654 211 -3.9786346178018994e-01 2.4664001988340589e-01 -2.3915372371667307e+00 2.4409131027717645e+00 1.3957000000000000e-01 1 0 0 0 0 P 655 111 -3.5727868933963397e-01 1.4228149994230217e+00 -5.8258025561033628e+00 6.0091801110916832e+00 1.3497999999999999e-01 2 0 0 -303 0 V -204 0 0 0 0 0 0 2 0 P 656 2212 -7.7341839634173337e-01 9.8353092621516947e-01 -5.4678574169286120e+00 5.6871191673274017e+00 9.3827000000000005e-01 1 0 0 0 0 P 657 211 -4.4311590380954108e-01 3.3691863451192439e-01 -1.6688357869097956e+00 1.7647545265733597e+00 1.3957000000000000e-01 1 0 0 0 0 V -205 0 0 0 0 0 0 2 0 P 658 311 -1.7551969153518847e+00 1.2216259846553017e+00 -1.4131945196197261e+01 1.4301490716539609e+01 4.9767000000000000e-01 2 0 0 -304 0 P 659 211 -2.4761201595699370e-01 2.4554191205521536e-01 -1.1890964122876955e+00 1.2470094641330862e+00 1.3957000000000000e-01 1 0 0 0 0 V -206 0 0 0 0 0 0 2 0 P 660 -311 -9.5594136991898046e-02 -3.7607386992050788e-02 -1.9778266007302230e+00 2.0420641630565051e+00 4.9767000000000000e-01 2 0 0 -305 0 P 661 111 -8.9293726602951748e-02 -2.4822835669218365e-01 -4.2730481596222418e+00 4.2833107360460989e+00 1.3497999999999999e-01 2 0 0 -306 0 V -207 0 0 0 0 0 0 2 0 P 662 -211 1.9217962591286086e-01 -5.0605462331496842e-01 -2.0809189192523827e+00 2.1546989636134710e+00 1.3957000000000000e-01 1 0 0 0 0 P 663 111 -3.3635802906981832e-01 -3.1917972704182590e-01 -3.3508248166526817e+00 3.3854481201415130e+00 1.3497999999999999e-01 2 0 0 -307 0 V -208 0 0 0 0 0 0 3 0 P 664 111 -1.0013162472456499e-01 -2.2237625749041232e-01 -3.5899947594842065e+00 3.6007998438804520e+00 1.3497999999999999e-01 2 0 0 -308 0 P 665 111 -5.3667588124910029e-02 -5.6129590056373337e-02 -6.0846190970420311e-01 6.2807343269392257e-01 1.3497999999999999e-01 2 0 0 -309 0 P 666 111 2.0017372285696784e-02 -7.3437702877884495e-02 -1.0177689301974306e+00 1.0294984152840776e+00 1.3497999999999999e-01 2 0 0 -310 0 V -209 0 0 0 0 0 0 2 0 P 667 211 -7.1200853524084146e-02 -1.9960717512721213e-01 -3.1178914642300777e+00 3.1282006894576955e+00 1.3957000000000000e-01 1 0 0 0 0 P 668 111 -8.3646447930264844e-01 -1.1767357326691554e+00 -6.9668411996283863e+00 7.1161419119432239e+00 1.3497999999999999e-01 2 0 0 -311 0 V -210 0 0 0 0 0 0 2 0 P 669 211 -4.9211794692220479e-01 -1.0612833545790832e+00 -3.4675298463067669e+01 3.4695306681453509e+01 1.3957000000000000e-01 1 0 0 0 0 P 670 111 -6.1901549543686485e-01 -1.4410977491155625e+00 -2.7293836518656143e+01 2.7339196667305799e+01 1.3497999999999999e-01 2 0 0 -312 0 V -211 0 0 0 0 0 0 2 0 P 671 -211 -3.3288442309908545e-01 -6.4465552700495521e-01 -1.9195989952060707e+01 1.9210203091382340e+01 1.3957000000000000e-01 1 0 0 0 0 P 672 211 -5.7622281285582644e-01 -3.2609512249300571e-01 -4.0083573275770405e+01 4.0089284068163707e+01 1.3957000000000000e-01 1 0 0 0 0 V -212 0 -1.1576140563350815e+01 -4.0183786535668460e+01 -1.8339003976901467e+03 1.8345451459204571e+03 0 2 0 P 673 2112 -5.8184249732198401e-01 -1.4661547446821321e+00 -6.5026755782347436e+01 6.5052670274086367e+01 9.3957000000000002e-01 1 0 0 0 0 P 674 -211 2.3554819367829580e-02 -4.7180659516445445e-01 -2.3417574089306420e+01 2.3422754157139838e+01 1.3957000000000000e-01 1 0 0 0 0 V -213 0 4.7143654350210318e-01 -3.4589256316279204e+00 -1.2671805351567265e+02 1.2683143285798553e+02 0 2 0 P 675 -2112 1.9787745201633405e-01 -6.2859802119572583e-01 -2.9267399446694295e+01 2.9289891654212877e+01 9.3957000000000002e-01 1 0 0 0 0 P 676 211 -5.9158554942770683e-02 -3.8918126488705329e-01 -8.0190367986208013e+00 8.0299061485235654e+00 1.3957000000000000e-01 1 0 0 0 0 V -214 0 0 0 0 0 0 3 0 P 677 -211 7.7119192787890298e-02 -4.6958798050016584e-02 -1.6265348828018453e+01 1.6266198227632412e+01 1.3957000000000000e-01 1 0 0 0 0 P 678 211 -4.8181378098385325e-02 -2.2232192984155338e-01 -1.6167964009584065e+01 1.6170166618986631e+01 1.3957000000000000e-01 1 0 0 0 0 P 679 111 1.2932987944913524e-01 -1.7512452088828603e-01 -1.1174062057302093e+01 1.1176997686157627e+01 1.3497999999999999e-01 2 0 0 -313 0 V -215 0 0 0 0 0 0 2 0 P 680 311 5.2382405679296543e-02 3.3122443439230143e-01 -1.5059383840489161e+01 1.5071336059767539e+01 4.9767000000000000e-01 2 0 0 -314 0 P 681 211 4.7619171122265996e-01 8.7223326766902864e-02 -9.6499652731297605e+00 9.6631090241226083e+00 1.3957000000000000e-01 1 0 0 0 0 V -216 0 0 0 0 0 0 2 0 P 682 211 4.3711383961217751e-02 3.7288215952671546e-04 -2.6966105856078850e+00 2.7005738759458904e+00 1.3957000000000000e-01 1 0 0 0 0 P 683 111 -7.7858465217835304e-01 5.8422633484233222e-01 -7.4936539760660494e+01 7.4942983163017885e+01 1.3497999999999999e-01 2 0 0 -315 0 V -217 0 0 0 0 0 0 2 0 P 684 -211 -2.8004081989902130e-01 1.0022104803320113e+00 -6.8494584514228762e+01 6.8502630871152846e+01 1.3957000000000000e-01 1 0 0 0 0 P 685 211 4.1667261746232204e-01 1.3685716850736473e-01 -1.7129801921522471e+01 1.7135983765462949e+01 1.3957000000000000e-01 1 0 0 0 0 V -218 0 0 0 0 0 0 2 0 P 686 211 -2.2627560815000672e-01 3.7163114367557087e-01 -1.3304768807915959e+01 1.3312612935663184e+01 1.3957000000000000e-01 1 0 0 0 0 P 687 -211 -5.8852371075486722e-02 4.5170373692756705e-01 -3.2262009856093890e+01 3.2265527418703925e+01 1.3957000000000000e-01 1 0 0 0 0 V -219 0 0 0 0 0 0 3 0 P 688 -211 5.6679234576493091e-02 1.7882291099458039e-01 -6.5071001514124632e+01 6.5071421592011021e+01 1.3957000000000000e-01 1 0 0 0 0 P 689 211 -4.1653582156255015e-01 6.5194582248133204e-01 -1.0878272918192158e+02 1.0878556973927327e+02 1.3957000000000000e-01 1 0 0 0 0 P 690 111 -6.8275682757746023e-02 5.4255709363263482e-01 -1.0772422956850305e+02 1.0772570206546186e+02 1.3497999999999999e-01 2 0 0 -316 0 V -220 0 0 0 0 0 0 2 0 P 691 211 -3.1580904854491126e-01 -1.8456661100417621e-01 -4.9533804522475094e+01 4.9535351724245530e+01 1.3957000000000000e-01 1 0 0 0 0 P 692 -211 -1.1237241199308461e+00 2.9847872745775744e-01 -2.9398615384053824e+02 2.9398848612689915e+02 1.3957000000000000e-01 1 0 0 0 0 V -221 0 0 0 0 0 0 2 0 P 693 -211 -5.5002156533471888e-02 -1.0138493160656560e-01 -4.7985822354260776e+01 4.7986163953176685e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 -3.7521547810839440e-01 7.0879740016141646e-01 -3.7687067507836042e+02 3.7687155256669217e+02 1.3497999999999999e-01 2 0 0 -317 0 V -222 0 0 0 0 0 0 2 0 P 695 22 -1.9721795025003357e-02 2.2988656071368729e-01 -4.4282892387678736e+01 4.4283493482320594e+01 0 1 0 0 0 0 P 696 22 -1.1490630203740104e-01 -1.1908586177827160e-01 -2.0254210635283314e+02 2.0254217395580378e+02 0 1 0 0 0 0 V -223 0 0 0 0 0 0 2 0 P 697 311 -7.6500445597715794e-01 -1.4388746295732247e-01 -2.7223000958552433e+02 2.7223157739282050e+02 4.9767000000000000e-01 2 0 0 -318 0 P 698 111 -2.0101432482413051e-01 3.0386458738027522e-01 -1.2294691772042115e+02 1.2294753164256149e+02 1.3497999999999999e-01 2 0 0 -319 0 V -224 0 0 0 0 0 0 2 0 P 699 130 -3.4065973638343627e-02 -3.6829608610001324e-01 -1.9107760238899476e+02 1.9107860846430003e+02 4.9767000000000000e-01 1 0 0 0 0 P 700 310 -9.3479939358815878e-02 -2.4204469877043630e-01 -2.3469169443145205e+02 2.3469236552276305e+02 4.9767000000000000e-01 2 0 0 -320 0 V -225 0 -5.8595372749882840e-06 7.1692472983968224e-06 -3.6804271138210854e-03 3.6804439038325104e-03 0 2 0 P 701 22 -1.4962905736525414e-01 1.1741601980277931e-01 -7.2080937064615682e+01 7.2081187999987918e+01 0 1 0 0 0 0 P 702 22 2.1082439730429618e-02 3.9863036195436477e-02 -8.6603287948366479e+00 8.6604461989897796e+00 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 703 -211 4.2966122498258158e-01 -2.4850640544663094e-01 -3.6186293375561246e+02 3.6186330108233614e+02 1.3957000000000000e-01 1 0 0 0 0 P 704 211 -3.5143657708211118e-01 4.1984229065657619e-01 -2.7028626489243362e+02 2.7028685547859044e+02 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 2 0 P 705 211 8.5478538379114385e-02 6.1941663834340366e-01 -8.4167793118799204e+02 8.4167817502429966e+02 1.3957000000000000e-01 1 0 0 0 0 P 706 111 2.4677399687041243e-01 7.5030973530030562e-02 -1.0998556924718017e+02 1.0998595450910622e+02 1.3497999999999999e-01 2 0 0 -321 0 V -228 0 3.3224715091774890e-05 4.1142579583127931e-05 4.2586730147219895e-04 4.2930200459065159e-04 0 2 0 P 707 22 1.0627801845913357e-01 7.7550876762141716e-02 7.4041919251593968e-01 7.5201711173359143e-01 0 1 0 0 0 0 P 708 22 2.7185684338173310e-01 3.9069824451608237e-01 4.1064326995142357e+00 4.1339255892191868e+00 0 1 0 0 0 0 V -229 0 3.2549609698171015e-05 4.5154436839819250e-05 1.4118753482145498e-03 1.4129893013409131e-03 0 2 0 P 709 22 1.0515233197239550e-01 2.3065186191428264e-01 5.7110292315114384e+00 5.7166521826591721e+00 0 1 0 0 0 0 P 710 22 5.2659389030286297e-01 6.4573790610574588e-01 2.1691662408389426e+01 2.1707659860247972e+01 0 1 0 0 0 0 V -230 0 0 0 0 0 0 2 0 P 711 211 1.0777445601317277e+01 -1.0854280899065802e+01 -1.4797561834395914e+00 1.5368080741345210e+01 1.3957000000000000e-01 1 0 0 0 0 P 712 -211 9.4856953616196760e-01 -1.0222507368783234e+00 5.1534858811666730e-02 1.4024679534861193e+00 1.3957000000000000e-01 1 0 0 0 0 V -231 0 7.1469438756755475e-04 -7.6436445811753383e-04 -2.1573238499147091e-04 1.0700651067216741e-03 0 2 0 P 713 22 9.8038885753547425e-02 -6.3329936807208040e-02 -2.9233120759439551e-02 1.2031990427663275e-01 0 1 0 0 0 0 P 714 22 1.5425177479481378e+00 -1.6912426527417543e+00 -4.6597322402046820e-01 2.3359781160558826e+00 0 1 0 0 0 0 V -232 0 1.8286745679785466e-04 -1.1874649044855520e-04 -6.9951836003751125e-05 2.3743802903940285e-04 0 2 0 P 715 22 7.1181509231554807e-02 -1.1480968589054742e-01 -2.4365268771970854e-02 1.3726520882255080e-01 0 1 0 0 0 0 P 716 22 3.2194268549212457e-01 -1.4046875047691784e-01 -1.2601555720963792e-01 3.7317352968998652e-01 0 1 0 0 0 0 V -233 0 3.0722043680180678e-04 -1.7159014014612949e-04 2.5985955720701266e-04 4.3987559727810192e-04 0 2 0 P 717 22 2.9582083249468905e-01 -1.6421001023950121e-01 1.7335482181121173e-01 3.8016678793117226e-01 0 1 0 0 0 0 P 718 22 6.0144488559665554e-01 -3.3693487425571500e-01 5.8558906430358670e-01 9.0453060320369405e-01 0 1 0 0 0 0 V -234 0 2.8235870314972278e-06 1.3518310399207214e-05 4.6221537491336761e-05 6.6834695211892317e-05 0 2 0 P 719 22 1.0776885920858266e-02 5.4348840875069825e-02 -3.7917394391470210e-03 5.5536610110711974e-02 0 1 0 0 0 0 P 720 22 -2.5375680728658987e-03 -1.4901975981435609e-02 1.3866767369079266e-01 1.3948918189842488e-01 0 1 0 0 0 0 V -235 0 1.8751328449934897e-05 4.2620658321489846e-06 1.2908102044018684e-05 2.3838843331490607e-05 0 2 0 P 721 22 1.2004753775784180e-01 5.8610251654158049e-02 1.5591274096725072e-01 2.0531769460181751e-01 0 1 0 0 0 0 P 722 22 3.2812798394364912e-01 4.3257388441288201e-02 1.5260382004335013e-01 3.6445452582387738e-01 0 1 0 0 0 0 V -236 0 -4.7688572968058175e-06 -8.1468872475912573e-07 -1.1064954386527052e-05 1.4021792719643354e-05 0 2 0 P 723 22 -6.3842624372326309e-02 -5.1817900558454470e-02 -2.0438990005228297e-01 2.2030934330711910e-01 0 1 0 0 0 0 P 724 22 -2.6495846694378863e-02 3.6384909128973242e-02 -5.2181883195819446e-03 4.5311378192616159e-02 0 1 0 0 0 0 V -237 0 2.0002543911070635e-05 5.2499622889942100e-05 7.3021055438289367e-05 9.4039399652752134e-05 0 2 0 P 725 22 1.4511309900268147e-02 7.1094407336949814e-02 2.7367316326483277e-02 7.7549744503302917e-02 0 1 0 0 0 0 P 726 22 1.2878236919419353e-01 3.0500096075310607e-01 4.9573893114047085e-01 5.9612714459575133e-01 0 1 0 0 0 0 V -238 0 0 0 0 0 0 1 0 P 727 130 -9.8387377533228437e-01 7.7653168363384129e-01 -5.9167540252308926e-01 1.4726724932328539e+00 4.9767000000000000e-01 1 0 0 0 0 V -239 0 -8.5544862079572136e-05 -2.0436520510110052e-05 2.9678523211102837e-05 9.5048971309271920e-05 0 2 0 P 728 22 -1.7142161136229778e-01 -1.2386499116491749e-02 1.1731646668298169e-01 2.0809120009598839e-01 0 1 0 0 0 0 P 729 22 -3.9340886702318284e-01 -1.2255053129829716e-01 7.8643104185329299e-02 4.1949243999131125e-01 0 1 0 0 0 0 V -240 0 0 0 0 0 0 3 0 P 730 211 -1.6312772796902170e-01 -1.4612797940038749e-01 2.2085918854069816e-01 3.4091437056661439e-01 1.3957000000000000e-01 1 0 0 0 0 P 731 -211 -2.7762385217454675e-03 -1.8436255861453529e-01 -1.2035012378614251e-02 2.3156400182709960e-01 1.3957000000000000e-01 1 0 0 0 0 P 732 111 -1.8921702578709768e-01 -2.3345256896686678e-01 1.3107674073271053e-01 3.5454745403973087e-01 1.3497999999999999e-01 2 0 0 -322 0 V -241 0 9.4300153398370256e+01 2.6746915444920467e+00 6.7568542225546963e+01 1.2244542891151333e+02 0 2 0 P 733 211 8.7454254741203252e-01 -1.4899969337962141e-01 5.4651231745514406e-01 1.0512759266202858e+00 1.3957000000000000e-01 1 0 0 0 0 P 734 -211 3.2615742580533835e-01 1.8305586349282754e-01 3.1382082005121720e-01 5.0779071236552564e-01 1.3957000000000000e-01 1 0 0 0 0 V -242 0 3.2369058420240435e-04 -9.9960190849763790e-06 7.1040465159188868e-03 7.1115117070633220e-03 0 2 0 P 735 22 4.8929637562803863e-01 4.4886990107437727e-02 1.1332004100048518e+01 1.1342651484930677e+01 0 1 0 0 0 0 P 736 22 7.4830394017229085e-01 -8.3105823092017930e-02 1.5829645452487764e+01 1.5847540519467863e+01 0 1 0 0 0 0 V -243 0 1.3083329690498927e-04 -1.1650111371263585e-04 4.6527125675840930e-04 4.9811511005585726e-04 0 2 0 P 737 22 4.6838327185965317e-01 -4.1145699502297978e-01 1.7848420009002335e+00 1.8905926891556635e+00 0 1 0 0 0 0 P 738 22 1.0413924652059350e-01 -9.8348326670463032e-02 2.5117083337627299e-01 2.8914384579943686e-01 0 1 0 0 0 0 V -244 0 -8.0694819145046753e-05 1.8649075930375374e-05 6.7980991589211264e-05 1.2188898526735244e-04 0 2 0 P 739 22 -5.2280951073119419e-02 -4.2992343781572344e-02 8.0151248975452768e-02 1.0490882794726010e-01 0 1 0 0 0 0 P 740 22 -1.3517943479836736e-01 8.6315607989785326e-02 7.7773919582559706e-02 1.7824883265336353e-01 0 1 0 0 0 0 V -245 0 0 0 0 0 0 1 0 P 741 130 -3.4958540790935128e-01 6.0396797221270782e-01 5.6422069457037001e+00 5.7069398030756338e+00 4.9767000000000000e-01 1 0 0 0 0 V -246 0 5.3909307564331715e-06 2.2067785989175069e-05 5.3138238712085592e-05 6.0091289000633081e-05 0 2 0 P 742 22 4.1623775912652740e-02 -2.7551338280614492e-03 4.7451081994180334e-02 6.3180176211021163e-02 0 1 0 0 0 0 P 743 22 2.5592320193819997e-03 1.8361836644121327e-01 3.8805946870408620e-01 4.2931620679164484e-01 0 1 0 0 0 0 V -247 0 0 0 0 0 0 2 0 P 744 -211 3.3988986226351886e-01 -4.1319231154468239e-01 9.3405919557043600e+00 9.3569434578102566e+00 1.3957000000000000e-01 1 0 0 0 0 P 745 211 -7.2101279091079176e-02 2.0023432804275383e-02 4.7747096835116365e-01 5.0304854917396880e-01 1.3957000000000000e-01 1 0 0 0 0 V -248 0 -1.0140525165589793e-04 9.0729293715837555e-06 1.5640990107551108e-03 1.5674895637175911e-03 0 2 0 P 746 22 -7.8003056926810532e-01 2.8713139885810510e-02 1.1911073783834709e+01 1.1936622253273718e+01 0 1 0 0 0 0 P 747 22 -8.1402829859040932e-02 4.8361018118602266e-02 1.3758823195656478e+00 1.3791364566553506e+00 0 1 0 0 0 0 V -249 0 0 0 0 0 0 1 0 P 748 310 -4.8020147792929346e-01 -4.7423587635258480e-01 1.0599549191125474e+01 1.0632667191716953e+01 4.9767000000000000e-01 2 0 0 -323 0 V -250 0 -1.4912801227545262e+02 5.6137573356539654e+01 2.1377439280093899e+03 2.1496713852556704e+03 0 2 0 P 749 2212 -9.0706711776621218e-01 3.9272459820887629e-01 1.3132225781607504e+01 1.3202753801316900e+01 9.3827000000000005e-01 1 0 0 0 0 P 750 -211 -2.3611276943190329e-01 -2.2812740350247160e-03 3.4035303074924084e+00 3.4145648014087233e+00 1.3957000000000000e-01 1 0 0 0 0 V -251 0 -1.3823583858554787e+02 5.2417447991498179e+01 1.9801918713876132e+03 1.9913422050303911e+03 0 2 0 P 751 22 1.9660064486820179e-02 -2.8064475976724377e-02 1.5880364732310279e-01 1.6245839883057586e-01 0 1 0 0 0 0 P 752 22 -9.0220922499439637e-02 9.7857723088829632e-02 6.9195592500728420e-01 7.0464100858342471e-01 0 1 0 0 0 0 V -252 0 -7.3160411090885136e+00 6.7884466067107865e-02 1.1787466359893013e+02 1.1824583450142853e+02 0 2 0 P 753 22 -3.2541547389267116e-02 2.8459990574138321e-02 4.1101101464481754e-01 4.1327832937299092e-01 0 1 0 0 0 0 P 754 22 -2.9704994190693018e-01 -1.5124988595919467e-01 2.8888839938647504e+00 2.9080519125348383e+00 0 1 0 0 0 0 V -253 0 1.0640220062952732e+01 -2.0021669662514118e+01 4.1789108472164173e+02 4.1863014701235340e+02 0 2 0 P 755 111 1.2644951208846558e-01 -2.6105355928505503e-01 3.1503220538210415e+00 3.1665260275440703e+00 1.3497999999999999e-01 2 0 0 -324 0 P 756 111 3.9240080864186744e-01 -7.1526550784798149e-01 1.7227350781453083e+01 1.7247185790411489e+01 1.3497999999999999e-01 2 0 0 -325 0 V -254 0 0 0 0 0 0 1 0 P 757 130 2.7275083425792734e-01 2.4336100006899178e-01 6.9574506204847104e+00 6.9847986484454978e+00 4.9767000000000000e-01 1 0 0 0 0 V -255 0 8.3675663466698496e-06 3.1534517744422171e-05 1.0708563278421447e-03 1.0719862128959945e-03 0 2 0 P 758 22 -1.9475686562390477e-02 -2.4327737281033948e-02 5.7166775925761448e-01 5.7251652215714566e-01 0 1 0 0 0 0 P 759 22 5.0139267372868432e-02 1.3988836663420001e-01 3.3525663829990018e+00 3.3558581694802423e+00 0 1 0 0 0 0 V -256 0 -7.1031616403150283e-06 3.3637066607289240e-05 6.3030656000338250e-04 6.3128420503387255e-04 0 2 0 P 760 22 -8.5700557904276095e-02 5.5127752199274505e-01 9.3690800198714541e+00 9.3856758899204511e+00 0 1 0 0 0 0 P 761 22 -4.7927769938315365e-02 8.1520264664772552e-02 2.4885709680247694e+00 2.4903670588043871e+00 0 1 0 0 0 0 V -257 0 4.8917532193911151e-06 1.7190278463263732e-05 3.1898233651118702e-04 3.1964952198309301e-04 0 2 0 P 762 22 5.9913952567154311e-03 1.7955967178784599e-01 2.1895303161627386e+00 2.1968888405983091e+00 0 1 0 0 0 0 P 763 22 5.7945500820827452e-02 4.5123176744427833e-02 1.9796784696038794e+00 1.9810402886256615e+00 0 1 0 0 0 0 V -258 0 -1.1945059231669786e-04 8.6813360310822351e-04 2.3197907125102755e-02 2.3214562287291490e-02 0 2 0 P 764 22 -2.3903480647132844e-01 1.3988220665085549e+00 3.7764892683704652e+01 3.7791546147573598e+01 0 1 0 0 0 0 P 765 22 1.2879988069428343e-02 2.4480810352018248e-01 6.1555129955929369e+00 6.1603926125333395e+00 0 1 0 0 0 0 V -259 0 3.2160127050996782e-05 -3.8816470877303440e-05 -9.1906678560585282e-05 1.0555933641359199e-04 0 2 0 P 766 22 1.5186656410168251e-01 -2.8650950364902089e-01 -5.5327444626407418e-01 6.4129849669407191e-01 0 1 0 0 0 0 P 767 22 1.9687213149944208e-01 -1.3440940006439828e-01 -4.4334522341030108e-01 5.0336816556823971e-01 0 1 0 0 0 0 V -260 0 0 0 0 0 0 1 0 P 768 130 3.9376596453032253e-01 -2.9980010422092823e-01 -4.3869007646964384e+00 4.4426912435490689e+00 4.9767000000000000e-01 1 0 0 0 0 V -261 0 3.2658826400190080e+01 2.2141559645037148e+01 -5.3445023995151485e+02 5.5055481416670784e+02 0 2 0 P 769 -2112 1.9764060790109333e-01 9.3555253545919828e-02 -4.1693894844117443e+00 4.2795344201187104e+00 9.3957000000000002e-01 1 0 0 0 0 P 770 111 9.1170405373949673e-02 1.0224866782633625e-01 -5.5690145617724385e-01 5.8917371392539686e-01 1.3497999999999999e-01 2 0 0 -326 0 V -262 0 4.5965155334197332e-05 -1.1135448347906181e-05 8.4281118212919815e-05 1.0118520915691599e-04 0 2 0 P 771 22 4.4295526734109927e-02 4.4414120151963450e-02 7.6226441840399006e-02 9.8717669103220940e-02 0 1 0 0 0 0 P 772 22 1.6270733467826670e-01 -9.4562317288836101e-02 3.0333134505843712e-01 3.5696724430135129e-01 0 1 0 0 0 0 V -263 0 -3.5816264928506948e-06 -2.7487090457045422e-06 -7.2597147460462332e-07 9.3694235672304481e-06 0 2 0 P 773 22 4.3529261169674344e-02 -5.6748941826005057e-03 -7.2571410025146213e-03 4.4493450051572882e-02 0 1 0 0 0 0 P 774 22 -1.0264672952308417e-01 -3.9694638443576520e-02 -4.7255701375456668e-03 1.1015600944150222e-01 0 1 0 0 0 0 V -264 0 1.4643850448063995e+01 1.4293641371204089e+01 2.1673987758757721e+03 2.1675731912892606e+03 0 2 0 P 775 211 3.0131386979928804e-01 4.5383660545643789e-01 4.3040037402641389e+01 4.3043711005421635e+01 1.3957000000000000e-01 1 0 0 0 0 P 776 -211 9.5480768380640346e-02 -6.6531348804461696e-02 1.5688520097680904e+01 1.5689572512906205e+01 1.3957000000000000e-01 1 0 0 0 0 V -265 0 -2.2770279547763614e-04 -2.9816057860197677e-04 5.3080018068988452e-03 5.3216883103544520e-03 0 2 0 P 777 22 -1.1601842401439140e-01 -7.1802820420619931e-02 2.1593906610762295e+00 2.1636968241586838e+00 0 1 0 0 0 0 P 778 22 -3.3064247975748995e-01 -5.1306779229254718e-01 8.2527647071483710e+00 8.2753059351580411e+00 0 1 0 0 0 0 V -266 0 -6.6532057801449361e-06 -3.3137663771001188e-05 3.5787710133919240e-04 3.5952445673221440e-04 0 2 0 P 779 22 -1.6834647565620817e-01 -6.1844295076450462e-01 6.7931608091078486e+00 6.8233310045471907e+00 0 1 0 0 0 0 P 780 22 2.5357650781014388e-02 -9.3742386395098576e-02 8.9823306344376697e-01 9.0346736616424295e-01 0 1 0 0 0 0 V -267 0 3.1884431518688612e-06 -1.3652564449056550e-05 1.4875162586287316e-03 1.4876105120154909e-03 0 2 0 P 781 22 5.0587696343096199e-03 -1.6878441562291016e-01 1.1346880814860866e+01 1.1348137203821823e+01 0 1 0 0 0 0 P 782 22 4.1939104340862343e-02 -3.2455334578872057e-02 1.0579212368916176e+01 1.0579345281436114e+01 0 1 0 0 0 0 V -268 0 0 0 0 0 0 1 0 P 783 130 -4.7493558670528740e-01 -2.0433375575766055e+00 4.6075314950285951e+02 4.6075819389829525e+02 4.9767000000000000e-01 1 0 0 0 0 V -269 0 -2.3663550037924858e-05 -1.4321566608220960e-05 3.4839936340001466e-03 3.4841187723848571e-03 0 2 0 P 784 22 -3.2099792509188280e-01 -1.8034271789745268e-01 4.4665546220749214e+01 4.4667063731139706e+01 0 1 0 0 0 0 P 785 22 1.2078430425681226e-02 -6.6204010069135623e-03 8.1679058461926968e-01 8.1690671273636173e-01 0 1 0 0 0 0 V -270 0 -1.0696813703785042e-04 -2.3099604903099456e-04 8.3997185776045119e-02 8.3997584995042340e-02 0 2 0 P 786 22 -2.9298756042256402e-01 -5.2191604813998427e-01 1.8694260384332836e+02 1.8694356199076628e+02 0 1 0 0 0 0 P 787 22 -1.0371168543966938e-02 -1.3318246783713544e-01 5.1271131755059493e+01 5.1271305781845911e+01 0 1 0 0 0 0 V -271 0 -1.8836223088281010e-05 -7.4500104104558316e-05 6.0328162816167125e-02 6.0328226576254390e-02 0 2 0 P 788 22 -4.1592053799682172e-02 -2.2688174895009175e-01 1.3326016477827048e+02 1.3326036440727131e+02 0 1 0 0 0 0 P 789 22 -1.8536440601631659e-02 -1.0935517895468752e-02 5.9317804973546373e+01 5.9317808877813960e+01 0 1 0 0 0 0 V -272 0 9.0053594408564914e-06 3.0614370556158629e-05 2.4704671960533915e-03 2.4706810090127174e-03 0 2 0 P 790 22 2.1209518038657402e-01 6.3848351640784429e-01 5.2300652752996591e+01 5.2304979915451639e+01 0 1 0 0 0 0 P 791 22 -1.5284008246418649e-02 3.0590293811726874e-02 1.6911448851027395e+00 1.6914905821176551e+00 0 1 0 0 0 0 V -273 0 0 0 0 0 0 1 0 P 792 310 7.9511997687169655e-01 4.9510524232000291e-01 8.1083492014629428e+01 8.1090429137438704e+01 4.9767000000000000e-01 2 0 0 -327 0 V -274 0 -9.8306898546792785e-06 1.3462695700406881e-05 4.0853686681190399e-03 4.0854378973374256e-03 0 2 0 P 793 22 -2.3921879081292931e-02 3.9143478606577957e-02 2.4766807796625843e+00 2.4771055998011620e+00 0 1 0 0 0 0 P 794 22 -5.4300175034728802e-02 6.7978170757989079e-02 3.0030288086759132e+01 3.0030414118264439e+01 0 1 0 0 0 0 V -275 0 6.8780568622650458e+02 5.2838174925005467e+02 4.2505076248686477e+04 4.2514835390354696e+04 0 2 0 P 795 2212 2.4043584530163620e+00 1.8092557119958799e+00 1.4399127097285512e+02 1.4402576440614044e+02 9.3827000000000005e-01 1 0 0 0 0 P 796 -211 2.9697476977888893e-01 2.6115763026979461e-01 2.4271457310822569e+01 2.4275080166658888e+01 1.3957000000000000e-01 1 0 0 0 0 V -276 0 1.8169238702056333e+02 1.4047561711858438e+02 1.0979899976608132e+04 1.0982517770277516e+04 0 2 0 P 797 22 1.2940305040978692e-01 5.6067135354202227e-02 7.2471655334653269e+00 7.2485375726811254e+00 0 1 0 0 0 0 P 798 22 6.3658729379177081e-01 5.5428353505847316e-01 3.4024848114829886e+01 3.4035316406008299e+01 0 1 0 0 0 0 V -277 0 5.1699587057199096e+01 1.2313313252368200e+01 2.6214952289409421e+03 2.6222380093027741e+03 0 2 0 P 799 22 1.1119881367714477e-02 1.9458046115780007e-02 4.2177499225248422e-01 4.2236999350079196e-01 0 1 0 0 0 0 P 800 22 6.6558162469196058e-01 1.3144690293451944e-01 2.5690114540482348e+01 2.5699071234006130e+01 0 1 0 0 0 0 V -278 0 1.1239602894769099e-04 3.3964261476698928e-06 1.8668093557278765e-03 1.8706499987209857e-03 0 2 0 P 801 22 2.9944712851567312e-01 3.5750269895889836e-02 5.4908607243403633e+00 5.4991361284003046e+00 0 1 0 0 0 0 P 802 22 6.7448165105156568e-02 -2.4663287727767526e-02 6.0298060721285351e-01 6.0724224607019628e-01 0 1 0 0 0 0 V -279 0 5.2385502615226920e-04 -1.8257796275352562e-04 1.0100794078745685e-02 1.0116158144473395e-02 0 2 0 P 803 22 2.1333396045644559e-02 6.0886159771484857e-03 2.5463212846436739e-01 2.5559676421592592e-01 0 1 0 0 0 0 P 804 22 1.3018438482519203e+00 -4.6725247537563103e-01 2.5258420542804693e+01 2.5296263174590717e+01 0 1 0 0 0 0 V -280 0 -4.4953680448650823e-06 -1.6525250934772728e-04 9.4033888145671359e-04 9.5511523024818519e-04 0 2 0 P 805 22 2.2058149978507600e-02 -4.5669518554586258e-01 2.9197865654599631e+00 2.9553697978969953e+00 0 1 0 0 0 0 P 806 22 -4.5339426101322459e-02 -3.9913892229923831e-01 1.9501793482808478e+00 1.9911220538466510e+00 0 1 0 0 0 0 V -281 0 2.0771367356980743e-05 -9.7583081567653962e-05 3.5927174527646308e-04 3.7378678113629419e-04 0 2 0 P 807 22 -1.1572510653290690e-02 -5.3921895705050814e-02 9.9049716730096743e-02 1.1336816230123573e-01 0 1 0 0 0 0 P 808 22 1.1858287735786847e-01 -4.4880867389358187e-01 1.7518540079930276e+00 1.8123144290894511e+00 0 1 0 0 0 0 V -282 0 -1.8506587976719517e-06 -2.2972612675266239e-06 8.3007428062319291e-06 8.9155355385627267e-06 0 2 0 P 809 22 -2.7659991606256016e-02 -1.0842548832039089e-01 1.8370170374185066e-01 2.1509876245769535e-01 0 1 0 0 0 0 P 810 22 -1.5442533656372412e-01 -1.1760081772585060e-01 6.3300393634084473e-01 6.6209600536901936e-01 0 1 0 0 0 0 V -283 0 -3.1509028854191155e-07 -1.9107781446549355e-06 7.3542604637803514e-06 7.6106265093103477e-06 0 2 0 P 811 22 3.9974623290221197e-03 -1.8687519880669096e-01 8.8665034884032345e-01 9.0613859907454519e-01 0 1 0 0 0 0 P 812 22 -1.4891382282735183e-01 -6.9193009768315028e-01 2.4957219403838380e+00 2.5941415902803260e+00 0 1 0 0 0 0 V -284 0 -6.9354768371491854e-05 -2.6363772223639146e-04 5.5315774314416294e-04 6.1739990211632904e-04 0 2 0 P 813 22 -1.4035129142012157e-01 -3.7608173955033736e-01 9.2565227263118455e-01 1.0089440468399526e+00 0 1 0 0 0 0 P 814 22 -1.7447146005147188e-01 -8.2065144916983579e-01 1.5853018662632503e+00 1.7936251276604007e+00 0 1 0 0 0 0 V -285 0 3.5466882777681042e-05 -1.4028581809751638e-04 1.2069828567066235e-04 1.9787789076526250e-04 0 2 0 P 815 22 -2.0857042787578581e-02 -3.2735713662808537e-02 -1.9808315023780816e-03 3.8866011839357666e-02 0 1 0 0 0 0 P 816 22 1.0010196043899887e-01 -2.8070987930020175e-01 2.7166130408843309e-01 4.0325959747970402e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 3 0 P 817 -211 -4.9823018931276247e-01 -3.1606657509861374e-01 4.2061120708569666e-01 7.3791935457967595e-01 1.3957000000000000e-01 1 0 0 0 0 P 818 211 -4.9220201503923988e-01 -1.4154859919751284e-01 2.3530437172109370e-01 5.8064340329889641e-01 1.3957000000000000e-01 1 0 0 0 0 P 819 111 -1.4781968876583068e-01 -1.8132228872565526e-01 1.9297412170021402e-01 3.3194433994497624e-01 1.3497999999999999e-01 2 0 0 -328 0 V -287 0 -4.7214098892265761e-05 -5.5335310642632404e-05 4.6490895067465902e-05 8.6575063695379514e-05 0 2 0 P 820 22 -5.6115200084946215e-01 -7.2182884473487841e-01 6.4349948932968459e-01 1.1180429517313764e+00 0 1 0 0 0 0 P 821 22 -4.1445924393843570e-01 -4.2159552559927871e-01 3.1716779167827663e-01 6.7090585045103490e-01 0 1 0 0 0 0 V -288 0 -1.8616115515534776e-05 -1.3144161680738073e-05 1.5191055494687705e-05 2.8239290291902402e-05 0 2 0 P 822 22 -1.2494897808080377e-01 -1.2569271728426190e-01 1.8844537529327404e-01 2.5869396160552621e-01 0 1 0 0 0 0 P 823 22 -2.4018299478630500e-01 -1.3211368073508756e-01 1.0950830135212561e-01 2.9518462644067162e-01 0 1 0 0 0 0 V -289 0 -1.8272494758415014e-04 -8.9066285126229502e-05 8.3374949469285886e-05 2.2155197010402774e-04 0 2 0 P 824 22 -6.1941338304852778e-01 -2.3954055467525931e-01 3.0017447521054857e-01 7.2880541436084378e-01 0 1 0 0 0 0 P 825 22 -2.4576669496298398e-01 -1.8217731435419637e-01 9.4595621810946787e-02 3.2021582391277253e-01 0 1 0 0 0 0 V -290 0 4.3718090573122953e-05 1.0386629080191073e-04 -6.5323672054789928e-06 1.1453589462160591e-04 0 2 0 P 826 22 1.1789113731035020e-01 4.5061823618398966e-01 -2.0178106220936326e-02 4.6622126829281518e-01 0 1 0 0 0 0 P 827 22 1.8630316694938062e-01 2.7209251472768098e-01 -2.5274677082033469e-02 3.3072952073832651e-01 0 1 0 0 0 0 V -291 0 1.3614793045392605e-05 5.2295031061855887e-05 6.2974896083810173e-06 5.4820917105810118e-05 0 2 0 P 828 22 1.9636145457904228e-01 5.5511267819953147e-01 1.1336553744850351e-01 5.9963293056939582e-01 0 1 0 0 0 0 P 829 22 7.5956191520045707e-02 4.9087162093475073e-01 1.2594331406655690e-02 4.9687313114407800e-01 0 1 0 0 0 0 V -292 0 4.0836500508165241e-05 3.3465309756659811e-04 9.7773662173114281e-06 3.4057973277645532e-04 0 2 0 P 830 22 3.7504510619133610e-02 5.9382349748722774e-01 -3.8570858566281618e-02 5.9625552040654872e-01 0 1 0 0 0 0 P 831 22 7.8995406881699301e-02 3.6088755200907807e-01 6.6464099748014538e-02 3.7536325880248894e-01 0 1 0 0 0 0 V -293 0 1.0579544844511253e-03 8.5372940736078162e-04 1.5224917079552041e-04 1.3702883722514446e-03 0 2 0 P 832 22 8.6176442473652401e-02 4.5096533221941078e-02 -8.4451294776696426e-03 9.7628872563125316e-02 0 1 0 0 0 0 P 833 22 1.7004182886801371e+00 1.3966180995329269e+00 2.6555218877325903e-01 2.2164120639860991e+00 0 1 0 0 0 0 V -294 0 0 0 0 0 0 1 0 P 834 130 5.1013694195585835e-01 5.1816706794340728e-01 -3.8739434047079946e-01 9.6254174651178015e-01 4.9767000000000000e-01 1 0 0 0 0 V -295 0 2.6631017279171227e-04 1.1812567416434924e-04 6.5311469871975460e-05 3.0504961305135350e-04 0 2 0 P 835 22 3.9654952059618570e-01 2.2628057086485737e-01 1.4100514440750886e-01 4.7784607331793877e-01 0 1 0 0 0 0 P 836 22 1.7795983385248110e-01 2.8551244595125761e-02 -1.0909826364227490e-04 1.8023564557313437e-01 0 1 0 0 0 0 V -296 0 0 0 0 0 0 1 0 P 837 130 6.0805680772554627e-01 1.0530365813696393e-01 2.4652331002799399e-01 8.3022353202349486e-01 4.9767000000000000e-01 1 0 0 0 0 V -297 0 8.9010301502306943e-05 -7.2459187650184981e-06 -5.3919945125774711e-05 1.0518948690981649e-04 0 2 0 P 838 22 8.2494312757096933e-01 -9.3230091542017418e-02 -4.6728265870034730e-01 9.5266788379664125e-01 0 1 0 0 0 0 P 839 22 6.5319786904572699e-02 2.0757887213721803e-02 -7.2013655162710022e-02 9.9415949287476491e-02 0 1 0 0 0 0 V -298 0 1.7932244238113662e-04 1.2061564257563773e-05 -1.8657681097062243e-04 2.6046555193614081e-04 0 2 0 P 840 22 4.6493159459021854e-01 -3.6343591313375397e-02 -4.7802465245011794e-01 6.6782468704579423e-01 0 1 0 0 0 0 P 841 22 4.3131565252155413e-01 9.6626864383720493e-02 -4.5447967320423827e-01 6.3397296187341867e-01 0 1 0 0 0 0 V -299 0 1.7779061838074295e-04 1.2843063002821608e-04 -6.4479662750433723e-04 6.9020027270016928e-04 0 2 0 P 842 22 1.4340927425826441e-01 3.1809035951905713e-02 -2.9920339264783052e-01 3.3331772362633749e-01 0 1 0 0 0 0 P 843 22 7.1152904181386492e-02 1.2318427026528894e-01 -4.7895335323621274e-01 4.9963328030711640e-01 0 1 0 0 0 0 V -300 0 1.6890680998972072e-04 1.8811199288434660e-04 -9.9972242520109827e-04 1.0360561711989754e-03 0 2 0 P 844 22 1.1353216820821919e-01 9.7612778261554331e-02 -8.4332916067862473e-01 8.5651729751880257e-01 0 1 0 0 0 0 P 845 22 1.1386969246915246e-01 1.5564531831982223e-01 -5.0261266171124530e-01 5.3834121121307532e-01 0 1 0 0 0 0 V -301 0 5.7746476328841434e-05 1.4984213109455797e-04 -1.1453347472065316e-04 2.0619150955341034e-04 0 2 0 P 846 22 -2.5355612779474800e-02 2.2095730302492633e-02 -3.1798812109384907e-02 4.6284909512616747e-02 0 1 0 0 0 0 P 847 22 1.5509123455179133e-01 3.1454579799682303e-01 -2.2551682862359745e-01 4.1695346270861205e-01 0 1 0 0 0 0 V -302 0 -9.9412690268282504e-05 1.6637253250236731e-04 -8.8679453330780221e-04 9.0808735760013822e-04 0 2 0 P 848 22 -3.7617222403141309e-01 7.1581997696443334e-01 -3.8244699023145938e+00 3.9090246629132817e+00 0 1 0 0 0 0 P 849 22 -1.4797985489733903e-01 1.6137697397231948e-01 -8.5114240594858748e-01 8.7885377645422336e-01 0 1 0 0 0 0 V -303 0 -1.2867206147658880e-05 5.1241942085590406e-05 -2.0981324859731644e-04 2.1641749585104880e-04 0 2 0 P 850 22 -2.9433792508931955e-01 9.2874442033584803e-01 -3.7573399971008636e+00 3.8815982360703920e+00 0 1 0 0 0 0 P 851 22 -6.2940764250314390e-02 4.9407057908717372e-01 -2.0684625590024992e+00 2.1275818750212920e+00 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 852 130 -1.7551969153518847e+00 1.2216259846553017e+00 -1.4131945196197261e+01 1.4301490716539609e+01 4.9767000000000000e-01 1 0 0 0 0 V -305 0 0 0 0 0 0 1 0 P 853 130 -9.5594136991898046e-02 -3.7607386992050788e-02 -1.9778266007302230e+00 2.0420641630565051e+00 4.9767000000000000e-01 1 0 0 0 0 V -306 0 -1.8221176273430233e-05 -5.0653196091411403e-05 -8.7195334659444853e-04 8.7404751626518184e-04 0 2 0 P 854 22 -4.3584707732576909e-02 -5.3269860986582138e-02 -2.0802751023131472e+00 2.0814134154803652e+00 0 1 0 0 0 0 P 855 22 -4.5709018870374839e-02 -1.9495849570560153e-01 -2.1927730573090942e+00 2.2018973205657337e+00 0 1 0 0 0 0 V -307 0 -2.3686876470016278e-05 -2.2477152655107056e-05 -2.3597050358575489e-04 2.3840873262102375e-04 0 2 0 P 856 22 -2.9045049451343485e-01 -1.9322025821225128e-01 -2.4367088982538125e+00 2.4615535364431986e+00 0 1 0 0 0 0 P 857 22 -4.5907534556383453e-02 -1.2595946882957462e-01 -9.1411591839886908e-01 9.2389458369831468e-01 0 1 0 0 0 0 V -308 0 -1.2946397682006423e-06 -2.8751870075277507e-06 -4.6416404368198923e-05 4.6556107404044208e-05 0 2 0 P 858 22 5.1017818752666505e-03 -1.4978559437807487e-01 -1.7823444230787424e+00 1.7886345056890158e+00 0 1 0 0 0 0 P 859 22 -1.0523340659983164e-01 -7.2590663112337445e-02 -1.8076503364054639e+00 1.8121653381914358e+00 0 1 0 0 0 0 V -309 0 -2.8639296094212762e-05 -2.9953124510268855e-05 -3.2470102352113176e-04 3.3516656209636606e-04 0 2 0 P 860 22 1.6434921686603814e-02 -7.7636557819511148e-02 -3.7748969120183862e-01 3.8574085695524468e-01 0 1 0 0 0 0 P 861 22 -7.0102509811513836e-02 2.1506967763137808e-02 -2.3097221850236446e-01 2.4233257573867778e-01 0 1 0 0 0 0 V -310 0 6.1720098763978450e-07 -2.2643243128677020e-06 -3.1381141337706563e-05 3.1742799685099012e-05 0 2 0 P 862 22 -1.7036797768662820e-02 6.9198019906041549e-03 -6.8252117936413070e-01 6.8276884552416650e-01 0 1 0 0 0 0 P 863 22 3.7054170054359604e-02 -8.0357504868488652e-02 -3.3524775083330005e-01 3.4672956975991093e-01 0 1 0 0 0 0 V -311 0 -5.0168323377279274e-04 -7.0576647576670059e-04 -4.1784768016986914e-03 4.2680223424981451e-03 0 2 0 P 864 22 -5.2014531477339898e-01 -6.3574553479480134e-01 -3.7683591073507192e+00 3.8568450701895398e+00 0 1 0 0 0 0 P 865 22 -3.1631916452924941e-01 -5.4099019787435421e-01 -3.1984820922776671e+00 3.2592968417536841e+00 0 1 0 0 0 0 V -312 0 -3.9577814400164075e-04 -9.2139049292679878e-04 -1.7450781183456967e-02 1.7479782970288703e-02 0 2 0 P 866 22 -9.7386944492509855e-02 -1.8025009172407652e-01 -2.8999450170107952e+00 2.9071730967057792e+00 0 1 0 0 0 0 P 867 22 -5.2162855094435501e-01 -1.2608476573914860e+00 -2.4393891501645346e+01 2.4432023570600023e+01 0 1 0 0 0 0 V -313 0 8.4087456346290708e-06 -1.1386212968017493e-05 -7.2651305286623442e-04 7.2670392102778376e-04 0 2 0 P 868 22 1.1335770783110380e-01 -4.7204410517025799e-02 -6.4922982159716023e+00 6.4934593516403130e+00 0 1 0 0 0 0 P 869 22 1.5972171618031439e-02 -1.2792011037126025e-01 -4.6817638413304907e+00 4.6835383345173138e+00 0 1 0 0 0 0 V -314 0 0 0 0 0 0 1 0 P 870 130 5.2382405679296543e-02 3.3122443439230143e-01 -1.5059383840489161e+01 1.5071336059767539e+01 4.9767000000000000e-01 1 0 0 0 0 V -315 0 -6.2260578857296315e-05 4.6718452115888682e-05 -5.9924021492177588e-03 5.9929174046359840e-03 0 2 0 P 871 22 -7.8134829083322244e-01 5.6739030745092955e-01 -7.3558654914440226e+01 7.3564992691729941e+01 0 1 0 0 0 0 P 872 22 2.7636386548694461e-03 1.6836027391402626e-02 -1.3778848462202673e+00 1.3779904712879507e+00 0 1 0 0 0 0 V -316 0 -5.5137038456936655e-06 4.3815001371498475e-05 -8.6994296483817509e-03 8.6995485620537452e-03 0 2 0 P 873 22 -6.2847682037017794e-02 5.3349103120367669e-01 -1.0728707743492984e+02 1.0728842224135904e+02 0 1 0 0 0 0 P 874 22 -5.4280007207282224e-03 9.0660624289581292e-03 -4.3715213357320065e-01 4.3727982410281807e-01 0 1 0 0 0 0 V -317 0 -1.5299108203336167e-05 2.8900641769847796e-05 -1.5366597523523618e-02 1.5366633302401934e-02 0 2 0 P 875 22 -1.2676180432103176e-01 2.2327637720461910e-01 -1.5149595654822386e+02 1.5149617411458607e+02 0 1 0 0 0 0 P 876 22 -2.4845367378736266e-01 4.8552102295679733e-01 -2.2537471853013656e+02 2.2537537845210605e+02 0 1 0 0 0 0 V -318 0 0 0 0 0 0 1 0 P 877 310 -7.6500445597715794e-01 -1.4388746295732247e-01 -2.7223000958552433e+02 2.7223157739282050e+02 4.9767000000000000e-01 2 0 0 -329 0 V -319 0 -2.7591331636064731e-05 4.1708612608581086e-05 -1.6875758398930199e-02 1.6875842666205117e-02 0 2 0 P 878 22 -2.6802696906340084e-02 1.0834961864852735e-01 -5.4247116001704327e+01 5.4247230828188719e+01 0 1 0 0 0 0 P 879 22 -1.7421162791779043e-01 1.9551496873174790e-01 -6.8699801718716827e+01 6.8700300814372767e+01 0 1 0 0 0 0 V -320 0 -5.6893667348453525e-01 -1.4731300287266551e+00 -1.4283782471419304e+03 1.4283823315311663e+03 0 2 0 P 880 -211 8.2742325615125747e-02 5.4949330156702336e-02 -1.0370986118401038e+02 1.0371000266277566e+02 1.3957000000000000e-01 1 0 0 0 0 P 881 211 -1.7622226497394161e-01 -2.9699402892713861e-01 -1.3098183324744167e+02 1.3098236285998740e+02 1.3957000000000000e-01 1 0 0 0 0 V -321 0 7.0904213661419133e-06 2.1558236466831835e-06 -3.1601547976993862e-03 3.1601658672181640e-03 0 2 0 P 882 22 1.8160629253898133e-01 -7.0147541344634688e-03 -5.9917833122394278e+01 5.9918108749653932e+01 0 1 0 0 0 0 P 883 22 6.5167704331431098e-02 8.2045727664494042e-02 -5.0067736124785888e+01 5.0067845759452304e+01 0 1 0 0 0 0 V -322 0 -2.7550316504371176e-05 -3.3991085828780024e-05 1.9084993427657064e-05 5.1622704320509570e-05 0 2 0 P 884 22 -1.3002286961723250e-01 -1.2969169978925432e-01 9.1805523353690709e-03 1.8387540933716057e-01 0 1 0 0 0 0 P 885 22 -5.9194156169865175e-02 -1.0376086917761246e-01 1.2189618839734145e-01 1.7067204470257030e-01 0 1 0 0 0 0 V -323 0 -3.0011215160821585e+01 -2.9638382171522245e+01 6.6244142511660061e+02 6.6451120517169966e+02 0 2 0 P 886 211 -3.9791320295326026e-02 -2.2042210149056673e-02 3.6964341752329966e+00 3.6993478621142866e+00 1.3957000000000000e-01 1 0 0 0 0 P 887 -211 -4.4041015763396746e-01 -4.5219366620352813e-01 6.9031150158924772e+00 6.9333193296026661e+00 1.3957000000000000e-01 1 0 0 0 0 V -324 0 1.0640222201356702e+01 -2.0021674077224450e+01 4.1789113799714335e+02 4.1863020056188248e+02 0 2 0 P 888 22 7.1429280627788097e-02 -7.8127975367269953e-02 1.7549283483602141e+00 1.7581182072159711e+00 0 1 0 0 0 0 P 889 22 5.5020231460677492e-02 -1.8292558391778507e-01 1.3953937054608276e+00 1.4084078203280992e+00 0 1 0 0 0 0 V -325 0 1.0640340242892421e+01 -2.0021888725685503e+01 4.1789636091356675e+02 4.1863542927911345e+02 0 2 0 P 890 22 2.9861163755549819e-01 -4.6246497803151038e-01 1.2552670706482482e+01 1.2564735756527979e+01 0 1 0 0 0 0 P 891 22 9.3789171086369222e-02 -2.5280052981647111e-01 4.6746800749705999e+00 4.6824500338835113e+00 0 1 0 0 0 0 V -326 0 3.2658844258576913e+01 2.2141579673425262e+01 -5.3445034903693124e+02 5.5055492957358854e+02 0 2 0 P 892 22 -1.6492943317129700e-02 8.0037836864985543e-02 -2.1347005205395755e-01 2.2857719841053140e-01 0 1 0 0 0 0 P 893 22 1.0766334869107937e-01 2.2210830961350715e-02 -3.4343140412328627e-01 3.6059651551486549e-01 0 1 0 0 0 0 V -327 0 8.5516520682833388e+01 5.3249420120996213e+01 8.7206689853100052e+03 8.7214150847961919e+03 0 2 0 P 894 211 3.8609737043390202e-01 8.0385963300560886e-02 2.2614476855039062e+01 2.2618346011469299e+01 1.3957000000000000e-01 1 0 0 0 0 P 895 -211 4.0902260643779448e-01 4.1471927901944200e-01 5.8469015159590363e+01 5.8472083125969398e+01 1.3957000000000000e-01 1 0 0 0 0 V -328 0 -7.1960031728424625e-05 -8.8269416332209381e-05 9.3941639549184323e-05 1.6159366478136575e-04 0 2 0 P 896 22 3.6569760123170598e-03 -3.7532814957621674e-02 -1.1736092244083840e-02 3.9494575999235351e-02 0 1 0 0 0 0 P 897 22 -1.5147666477814775e-01 -1.4378947376803358e-01 2.0471021394429786e-01 2.9244976394574090e-01 0 1 0 0 0 0 V -329 0 -8.2528660681867251e+01 -1.5522575736649273e+01 -2.9368166306701925e+04 2.9368335441711995e+04 0 2 0 P 898 111 -6.7584829442686359e-02 2.8077904380749578e-02 -8.5429494449189150e+01 8.5429632432325988e+01 1.3497999999999999e-01 2 0 0 -330 0 P 899 111 -6.9741962653447154e-01 -1.7196536733807205e-01 -1.8680051513633518e+02 1.8680194496049452e+02 1.3497999999999999e-01 2 0 0 -331 0 V -330 0 -8.2528668498516879e+01 -1.5522572489246821e+01 -2.9368176187209603e+04 2.9368345322235633e+04 0 2 0 P 900 22 -6.0881009814061421e-03 2.8582403748306999e-02 -7.1100969400564452e+01 7.1100975406240252e+01 0 1 0 0 0 0 P 901 22 -6.1496728461280216e-02 -5.0449936755741977e-04 -1.4328525048624693e+01 1.4328657026085745e+01 0 1 0 0 0 0 V -331 0 -8.2529042470527983e+01 -1.5522669875708155e+01 -2.9368268566970757e+04 2.9368437702763556e+04 0 2 0 P 902 22 -5.3059879175309121e-01 -8.7535261080143936e-02 -1.2725460794689637e+02 1.2725574423662786e+02 0 1 0 0 0 0 P 903 22 -1.6682083478138032e-01 -8.4430106257928114e-02 -5.9545907189438807e+01 5.9546200723866683e+01 0 1 0 0 0 0 E 21 48 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 324 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 1.2832384026711655e-01 3.0888263573933505e-01 2.3347615974816659e+01 2.3350011717302376e+01 0 3 0 0 -3 0 P 15 2101 -4.5306911082154794e-01 2.4017800876878731e-01 1.8626973699257246e+03 1.8626975306014006e+03 5.7933000000000001e-01 2 0 0 -10 0 P 50 2 3.2474527055443136e-01 -5.4906064450812231e-01 8.6291421063967462e+01 8.6294409878746038e+01 3.3000000000000002e-01 2 0 0 -20 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 3 5.9720400953417707e-01 6.0709165794960829e-01 -6.4089695194285071e+02 6.4089751772225395e+02 0 3 0 0 -4 0 P 11 323 -6.2592749048911167e-01 -2.9954338645414419e-01 -3.0143019971106281e+02 3.0143252881383296e+02 9.6052995128119123e-01 2 0 0 -9 0 P 117 2103 2.8723480954934599e-02 -3.0754827149546410e-01 -2.1899086932410914e+03 2.1899088508643122e+03 7.7132999999999996e-01 2 0 0 -20 0 V -3 0 0 0 0 0 0 7 0 P 5 -4 -5.5463842038725248e+00 -1.8815496227565363e+00 3.8594975489019983e+00 7.0141519836571931e+00 0 3 0 0 -5 0 P 12 4 2.2726141905478050e+00 -2.8302573725377935e+00 -3.4955811803219841e+00 5.2577770818193716e+00 1.5000000000000000e+00 2 0 0 -10 0 P 13 21 -2.5917616522311054e-01 -6.6059359707238714e-03 -1.7809998793601248e-01 3.1454018616484314e-01 0 2 0 0 -10 0 P 14 21 -2.6280335758147289e-01 1.2072917314796050e+00 1.5028933418481593e+01 1.5079637218010516e+01 0 2 0 0 -10 0 P 51 21 1.1030115620120240e+00 2.0291045792104889e-01 -7.8479010823476164e-02 1.1242624760285145e+00 0 2 0 0 -20 0 P 52 21 1.0342210921989932e+00 -8.9632122704891748e-01 -3.1684907928608352e-01 1.4047769747017476e+00 0 2 0 0 -20 0 P 53 21 1.7704531099856740e+00 4.5049241419369341e+00 -6.1434935716927006e+00 7.8212121186356853e+00 0 2 0 0 -20 0 V -4 0 0 0 0 0 0 2 0 P 6 3 -5.5766668344669479e-01 -2.7467364391343380e-01 -4.2786683902032956e+02 4.2786729060654909e+02 0 3 0 0 -5 0 P 116 21 1.1712583051768493e+00 8.9025576457402422e-01 -1.9835842508183455e+02 1.9836388079055516e+02 0 2 0 0 -20 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -5.3557733466327040e+00 -3.7021823268478524e+00 -4.8289840616209707e+00 8.1061426825041263e+00 0 3 0 0 -6 0 P 8 -24 -7.4827754068651464e-01 1.5459590601778823e+00 -4.1917835740980667e+02 4.2677529990770216e+02 8.0148059127042430e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -5.3557733466327040e+00 -3.7021823268478524e+00 -4.8289840616209707e+00 8.1061426825041281e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 -7.4827754068651464e-01 1.5459590601778823e+00 -4.1917835740980667e+02 4.2677529990770216e+02 8.0148059127042430e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 7 0 P 16 1 1.8761714209076239e+01 -8.4947087223134918e+00 -2.7887074898840632e+02 2.7963040882152774e+02 3.3000000000000002e-01 2 0 0 -12 0 P 17 21 3.2521645400010040e+00 -3.4046325236242105e+00 -7.0708163776568156e+01 7.0864748087255236e+01 0 2 0 0 -12 0 P 18 21 2.8396263323376458e-01 -2.0453373089485111e-02 -7.3461611143377581e-01 7.8785401485419426e-01 0 2 0 0 -12 0 P 19 21 -4.6942067682602282e+00 -2.1569822061148014e+00 -1.6172107050010467e+01 1.6977196348563396e+01 0 2 0 0 -12 0 P 20 21 -8.4911055121790091e-01 -9.9762865982741131e-02 -1.2344700470722108e+00 1.5016183452319447e+00 0 2 0 0 -12 0 P 21 21 -2.6217042512252826e+00 1.6156041693486128e-01 -9.4414213774481084e+00 9.7999934987604469e+00 0 2 0 0 -12 0 P 22 -2 -1.4881097352294116e+01 1.5560938334367757e+01 -4.2016830058867583e+01 4.7213480791509213e+01 3.3000000000000002e-01 2 0 0 -12 0 V -9 0 0 0 0 0 0 2 0 P 123 311 -7.6333228866413050e-01 -3.4292095591044724e-01 -2.3280697588206078e+02 2.3280901177949332e+02 4.9767000000000000e-01 2 0 0 -24 0 P 124 211 1.3740479817501883e-01 4.3377569456303076e-02 -6.8623223829002043e+01 6.8623517034339670e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 1 0 P 125 92 1.2975655569216740e+00 -1.3893935682601253e+00 1.8740526221759483e+03 1.8833494850873954e+03 1.8689151453061652e+02 2 0 0 -11 0 V -11 0 0 0 0 0 0 15 0 P 126 423 1.8747460344553095e+00 -2.5225289806037985e+00 -3.0562053307924875e+00 4.8213132096614881e+00 2.0066999999999999e+00 2 0 0 -25 0 P 127 321 4.0633078871934453e-01 9.2800394533451902e-02 7.7725045312967977e-01 1.0106808843433923e+00 4.9359999999999998e-01 1 0 0 0 0 P 128 -321 2.6291034163637605e-01 -2.1065842066377266e-01 -4.3459414101871603e-02 5.9918986858089396e-01 4.9359999999999998e-01 1 0 0 0 0 P 129 223 -4.6769641105192444e-01 -5.4248571512926613e-01 2.4622790620367545e+00 2.6865378111933813e+00 8.0102218920387080e-01 2 0 0 -26 0 P 130 213 -5.4041886585899046e-01 9.7274327781718473e-01 4.3042493890522575e+00 4.5542925074016116e+00 9.8829924855930396e-01 2 0 0 -27 0 P 131 -211 -5.7654135209038284e-03 -4.7938279708779966e-02 4.9186431762421484e-01 5.1355779665626611e-01 1.3957000000000000e-01 1 0 0 0 0 P 132 211 5.1455679144045052e-01 -8.7592730453414078e-02 7.5733450094392207e+00 7.5925934696218080e+00 1.3957000000000000e-01 1 0 0 0 0 P 133 -211 -6.3318180816237712e-01 4.5185283705270579e-01 6.3632002393796512e+01 6.3636909876404005e+01 1.3957000000000000e-01 1 0 0 0 0 P 134 113 2.8641695047338522e-01 -2.0567035710933990e-01 3.6849189321433052e+01 3.6857641307556349e+01 7.0614031492096052e-01 2 0 0 -28 0 P 135 323 1.9900776834694026e-01 7.9702374676961041e-01 1.3305037636520805e+02 1.3305612031100844e+02 9.2393200467657965e-01 2 0 0 -29 0 P 136 -313 2.8688006889103213e-01 -4.8267978937758871e-01 1.4596836449003760e+02 1.4597239632985003e+02 9.2832021918468077e-01 2 0 0 -30 0 P 137 223 -8.3291080031307640e-01 5.0654983862280967e-01 2.7439306601784187e+02 2.7439589862958417e+02 7.7728561355667836e-01 2 0 0 -31 0 P 138 221 -1.6993667580874905e-01 -3.7801531252586296e-01 3.3168508031746001e+02 3.3168579104440499e+02 5.4744999999999999e-01 2 0 0 -32 0 P 139 111 2.4717996527192934e-02 4.6283130620511187e-01 1.7048169677920185e+02 1.7048238026292768e+02 1.3497999999999999e-01 2 0 0 -33 0 P 140 2112 9.1908791147664232e-02 -1.9562538368917684e-01 7.0548352300458134e+02 7.0548418177820054e+02 9.3957000000000002e-01 1 0 0 0 0 V -12 0 0 0 0 0 0 1 0 P 141 92 -7.4827754068652297e-01 1.5459590601778892e+00 -4.1917835740980655e+02 4.2677529990770211e+02 8.0148059127042572e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 14 0 P 142 -213 1.5190216775851253e+01 -6.6615559573537197e+00 -2.2495501996375071e+02 2.2556702290977029e+02 7.7576028194279512e-01 2 0 0 -34 0 P 143 2212 2.3496210070500960e+00 -2.1781824510839933e+00 -4.9158670233920049e+01 4.9271902819225261e+01 9.3827000000000005e-01 1 0 0 0 0 P 144 -2212 3.0127132387559108e+00 -1.5379645808282751e+00 -3.9831040728181023e+01 3.9985421495762338e+01 9.3827000000000005e-01 1 0 0 0 0 P 145 213 6.8640806798947362e-01 -1.0405825974919347e+00 -2.7856824940624833e+01 2.7896654350213506e+01 8.1649248904342919e-01 2 0 0 -35 0 P 146 -211 8.0651546916015240e-02 -4.0264387447537348e-01 -7.9673269478279030e-01 9.0713258871475533e-01 1.3957000000000000e-01 1 0 0 0 0 P 147 113 -1.1168869738407275e-01 -5.3659979541132508e-01 -1.1194726574317638e+01 1.1235644743679842e+01 7.8574552298318201e-01 2 0 0 -36 0 P 148 323 -7.7475357880387596e-01 -6.5488727019036441e-01 -4.2373879827038667e+00 4.4609091431356154e+00 9.5662585310087578e-01 2 0 0 -37 0 P 149 -323 -1.9542124365307632e+00 -2.1961829205252015e-02 -5.2665064925936802e+00 5.6732004246659082e+00 7.9352621435244208e-01 2 0 0 -38 0 P 150 213 -3.0160790212518434e+00 -5.1620767289700842e-01 -8.8506416863297463e+00 9.4018360645342032e+00 8.3514076692790418e-01 2 0 0 -39 0 P 151 313 -2.5341709825754659e+00 1.6957121840656384e+00 -7.0865847495973151e+00 7.7650683929983408e+00 8.8268984054447319e-01 2 0 0 -40 0 P 152 -313 -8.4181347412697105e-01 1.0658095279743915e+00 -3.4893922653770342e+00 3.8487743645700623e+00 8.9028414147164214e-01 2 0 0 -41 0 P 153 -213 -6.0541966534436886e-01 4.9113488994007931e-01 -2.1229139076785781e+00 2.3959584179243518e+00 7.9126912596492038e-01 2 0 0 -42 0 P 154 213 -6.7659759670390951e+00 6.0475671619485931e+00 -1.8107957001513846e+01 2.0275284221956415e+01 9.1517438098468329e-01 2 0 0 -43 0 P 155 -213 -5.4637743541928154e+00 5.7963213251864332e+00 -1.6223958188435653e+01 1.8090489970551449e+01 7.7384557643508256e-01 2 0 0 -44 0 V -14 0 0 0 0 0 17 1 0 P 23 3 -7.4585471210636465e+00 1.5014640885560882e+00 -7.6464118036395750e+00 1.0786655322072223e+01 0 2 0 0 -14 0 P 24 21 -2.3079543562230374e+00 -5.5348917743129367e-01 -2.3860657033309383e+00 3.3654588276421729e+00 0 2 0 0 -14 0 P 25 21 -2.1074846391739448e+00 -5.5835485704600107e-01 -3.4922168777903715e+00 4.1168957203534955e+00 0 2 0 0 -14 0 P 26 21 -2.5675973329991622e+00 1.8617180871048964e+00 -4.3713852544035303e+00 5.4006998937817814e+00 0 2 0 0 -14 0 P 27 21 2.3856195095670811e+00 1.8396851693686822e+00 -1.3721761081479411e+01 1.4048571071252235e+01 0 2 0 0 -14 0 P 28 21 1.6465685750692243e+00 1.9282437768069309e+00 -1.7156788310220399e+01 1.7343145541017510e+01 0 2 0 0 -14 0 P 29 21 6.6714678530695792e-01 9.8627443047921828e-02 -3.5958929526659982e+00 3.6585869311389296e+00 0 2 0 0 -14 0 P 30 21 2.0597665618056009e+00 -3.2033190084719996e+00 -2.4492659311406680e+01 2.4786977449939450e+01 0 2 0 0 -14 0 P 31 21 7.0094698658843058e-01 -6.2868158765659077e+00 -1.0366437842725347e+02 1.0385720357901354e+02 0 2 0 0 -14 0 P 32 21 2.2778981272521706e+00 -1.2161445735295373e+00 -2.8256038254854040e+01 2.8373782359101142e+01 0 2 0 0 -14 0 P 33 21 2.7619430481149494e+00 -4.4467788503125216e-01 -4.7564586046749334e+01 4.7646782825507621e+01 0 2 0 0 -14 0 P 34 21 2.0045571328561658e+00 -7.8936722327505732e-02 -3.7195684813267000e+01 3.7249744281443299e+01 0 2 0 0 -14 0 P 35 21 2.1074846391739448e+00 5.5835485704600107e-01 -5.0357744467653859e+01 5.0404917215687043e+01 0 2 0 0 -14 0 P 36 21 1.8380077932004180e+00 -8.9525500854456219e-01 -7.9419321220904891e+01 7.9445631329655015e+01 0 2 0 0 -14 0 P 37 21 2.5675973329991622e+00 -1.8617180871048964e+00 -1.4084543156030810e+02 1.4088113479706823e+02 0 2 0 0 -14 0 P 38 21 7.6620464242717456e-01 5.3260986573066660e-02 -5.4954933566486417e+01 5.4960300486657673e+01 0 2 0 0 -14 0 P 39 -3 7.4585471210636465e+00 -1.5014640885560882e+00 -4.8589963017301585e+02 4.8595919059303725e+02 0 2 0 0 -14 0 P 156 92 1.4800704805965136e+01 -8.7588208761054567e+00 -1.1050209298254299e+03 1.1122856782243687e+03 1.2574735315263338e+02 2 0 0 -15 0 V -15 0 0 0 0 0 0 32 0 P 157 -321 -1.6980230034481465e+00 1.4468811193882228e-01 -2.4802302529025537e+00 3.0494917342712293e+00 4.9359999999999998e-01 1 0 0 0 0 P 158 221 -2.1193021639976344e+00 1.7812982120107748e-01 -2.1125295010172898e+00 3.0472371569496430e+00 5.4744999999999999e-01 2 0 0 -45 0 P 159 111 -1.4221097064078754e+00 2.3959527415722939e-01 -1.2120700297522322e+00 1.8886861226475797e+00 1.3497999999999999e-01 2 0 0 -46 0 P 160 223 -3.2648565450545797e+00 4.5534539665908580e-01 -3.9469000208578762e+00 5.2014760984448047e+00 7.8147689537205001e-01 2 0 0 -47 0 P 161 321 -1.7972503005210581e+00 3.5935184488542377e-01 -2.3519143138396430e+00 3.0223143931082666e+00 4.9359999999999998e-01 1 0 0 0 0 P 162 -313 -2.1343779933483389e+00 -2.0694500078031483e-01 -2.6837678202675317e+00 3.5545929852085969e+00 9.1330494663774731e-01 2 0 0 -48 0 P 163 111 -5.2978279622052704e-01 3.6145164846340871e-01 -8.7497296425998305e-01 1.0932128767692308e+00 1.3497999999999999e-01 2 0 0 -49 0 P 164 -213 -5.4919575658277520e-01 4.3771002934015768e-01 -2.5737204263787206e+00 2.7465268062217518e+00 6.5281438043451845e-01 2 0 0 -50 0 P 165 321 -4.6142272757381791e-01 9.7972520637385818e-02 -6.8923453916857169e-01 9.7015192537283468e-01 4.9359999999999998e-01 1 0 0 0 0 P 166 -323 3.5831879983715614e-01 9.3182066249502815e-01 -4.7491792903761469e+00 4.9353712418787428e+00 8.9805526202824981e-01 2 0 0 -51 0 P 167 213 1.3249765859319138e+00 1.0228642698756250e+00 -1.0765583486541765e+01 1.0925262746107922e+01 8.1348878169087024e-01 2 0 0 -52 0 P 168 111 -3.0541000066760225e-02 3.0616210796986416e-02 -3.6078869859513329e-01 3.8763151378933741e-01 1.3497999999999999e-01 2 0 0 -53 0 P 169 1114 9.9314311850519832e-01 -6.8111994559090561e-02 -7.4485198731645932e+00 7.6184092999409110e+00 1.2524932985294679e+00 2 0 0 -54 0 P 170 213 1.6899414569536206e+00 1.1280948207616868e+00 -1.3730518227665518e+01 1.3917023402611260e+01 1.0138587357292927e+00 2 0 0 -55 0 P 171 -2112 9.0876535511578338e-01 -1.0883731016589235e+00 -1.4888362827192246e+01 1.4985211040825993e+01 9.3957000000000002e-01 1 0 0 0 0 P 172 113 2.6437666790017378e-01 -2.8036085631769109e-01 -7.7009408214140684e+00 7.7503231773500900e+00 7.8391491002737745e-01 2 0 0 -56 0 P 173 -211 4.6788028955197203e-01 -2.0326430882762758e+00 -1.9752924571822884e+01 1.9863233845844256e+01 1.3957000000000000e-01 1 0 0 0 0 P 174 323 1.8841175816796177e-01 -1.3562997350099453e+00 -2.6241437954005029e+01 2.6293426638493152e+01 9.2529483848210170e-01 2 0 0 -57 0 P 175 -323 9.6369565171344063e-01 -1.7380609674841001e+00 -2.5647623459128457e+01 2.5741254580707650e+01 9.2845735052461009e-01 2 0 0 -58 0 P 176 213 5.1019492311050929e-01 -8.7306239591476587e-01 -3.0022308962579519e+01 3.0050872878201393e+01 8.3269951994059377e-01 2 0 0 -59 0 P 177 -211 1.0195462739594139e+00 -8.2161438995107927e-01 -1.0529731857811015e+01 1.0611750920221386e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 211 5.7405748329907225e-01 -5.5870211361294331e-01 -1.5443765944211179e+01 1.5465156849200213e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 -213 5.0680679875289536e-01 -2.5781801030902468e-01 -1.1981429519639887e+01 1.2017572561938515e+01 7.3761350967662920e-01 2 0 0 -60 0 P 180 221 1.7869946230790905e+00 -5.3197352734229286e-01 -4.4943255775058212e+01 4.4985245211974892e+01 5.4744999999999999e-01 2 0 0 -61 0 P 181 113 1.0279704640251153e+00 -2.3232907136331557e-01 -2.0024467386696958e+01 2.0068125417648314e+01 7.9978971315195679e-01 2 0 0 -62 0 P 182 213 1.8115826895903002e+00 -5.7024001427184767e-01 -5.1951871494177617e+01 5.1991560449513820e+01 7.2000049500305263e-01 2 0 0 -63 0 P 183 311 1.8666623373595062e+00 -5.3353569114321342e-01 -3.7524906207759024e+01 3.7578389400630940e+01 4.9767000000000000e-01 2 0 0 -64 0 P 184 -311 3.6941808949880300e-01 -2.6032417508950956e-01 -3.3629447808748864e+01 3.3636166157147706e+01 4.9767000000000000e-01 2 0 0 -65 0 P 185 313 2.4530580386744698e+00 -5.6108559409176556e-02 -7.8999920996773980e+01 7.9043054270525346e+01 8.9233906399946217e-01 2 0 0 -66 0 P 186 -321 1.1220282018740591e+00 -7.8657276098119544e-01 -7.2576868573047733e+01 7.2591481158766570e+01 4.9359999999999998e-01 1 0 0 0 0 P 187 213 4.4355764827294211e+00 -1.0837649203991624e+00 -2.6050667539802225e+02 2.6054767198394688e+02 7.1593588191994229e-01 2 0 0 -67 0 P 188 313 4.1641607095567759e+00 -8.0962111344350596e-01 -2.8667506082255358e+02 2.8670779337810961e+02 8.7895697713003207e-01 2 0 0 -68 0 V -16 0 0 0 0 0 6 1 0 P 40 2 -2.5636501414574120e+00 -4.4477352540613131e+00 2.8677423751110229e+00 5.8803568997146654e+00 0 2 0 0 -16 0 P 41 21 -1.0959587917665892e+00 -2.5433751589254765e+00 8.4151728996386033e-01 2.8944834118712435e+00 0 2 0 0 -16 0 P 42 21 -2.8674133223817960e-01 -9.4454157973584296e-01 1.2883846069203055e+00 1.6230570793452701e+00 0 2 0 0 -16 0 P 43 21 -3.6571394815337666e+00 -1.3038366542379864e+00 4.7338857618677226e+00 6.1224450683318929e+00 0 2 0 0 -16 0 P 44 21 -9.5403074503838747e-01 1.0288323549136510e-01 1.0202879046194337e+00 1.4006238006461218e+00 0 2 0 0 -16 0 P 45 -2 2.5636501414574120e+00 4.4477352540613131e+00 1.0284982426123412e+01 1.1495021289396634e+01 0 2 0 0 -16 0 P 189 92 -5.9938703505769233e+00 -4.6888701574079414e+00 2.1036800364605757e+01 2.9415987549305829e+01 1.9100821154811193e+01 2 0 0 -17 0 V -17 0 0 0 0 0 0 9 0 P 190 223 -6.9612388236073464e-01 -2.2827818623806992e+00 1.5227470015443689e+00 2.9372895429704662e+00 7.8308999337496865e-01 2 0 0 -69 0 P 191 223 -1.4547336478761832e+00 -1.7556807831222576e+00 1.3457009845836838e+00 2.7609568113153413e+00 7.8313879711782253e-01 2 0 0 -70 0 P 192 2212 -2.3615655732070135e+00 -2.4619091090514216e+00 2.4156143276398039e+00 4.2841021918933766e+00 9.3827000000000005e-01 1 0 0 0 0 P 193 -3212 -1.5030331645293074e+00 -2.0827903081243879e+00 1.7450831955118491e+00 3.3263516084517750e+00 1.1925500000000000e+00 2 0 0 -71 0 P 194 -321 -7.2953939443660987e-01 -1.2322444382535669e+00 1.8938558412393030e+00 2.4250742238203786e+00 4.9359999999999998e-01 1 0 0 0 0 P 195 211 1.1850406248969704e-01 2.5686546753017705e+00 4.5145069047226229e+00 5.1973341658454517e+00 1.3957000000000000e-01 1 0 0 0 0 P 196 2112 1.7552574179735830e-01 4.7423833624449208e-01 3.1296798808847028e+00 3.3065691021528560e+00 9.3957000000000002e-01 1 0 0 0 0 P 197 -2212 3.1613734934724835e-01 1.2422141931132260e+00 2.4756328872235893e+00 2.9414533330357719e+00 9.3827000000000005e-01 1 0 0 0 0 P 198 221 1.4095815819862237e-01 8.4142913886490378e-01 1.9939793412558326e+00 2.2368565698204090e+00 5.4744999999999999e-01 2 0 0 -72 0 V -18 0 0 0 0 0 4 1 0 P 46 2 1.8181181346014041e+00 2.9028709232327904e-01 2.1088520101159483e+00 2.7994779777497927e+00 0 2 0 0 -18 0 P 47 21 7.3064399426987836e-01 -2.4030584985020609e-01 1.6491331064912096e+00 1.8196778700528891e+00 0 2 0 0 -18 0 P 48 21 -7.3064399426987836e-01 2.4030584985020609e-01 -5.6591734205930812e-02 7.7122640788247554e-01 0 2 0 0 -18 0 P 49 -2 -1.8181181346014041e+00 -2.9028709232327904e-01 -3.9214448562281240e-01 1.8824445396718528e+00 0 2 0 0 -18 0 P 199 92 0 0 3.3092488967784148e+00 7.2728267953570098e+00 6.4763323983898289e+00 2 0 0 -19 0 V -19 0 0 0 0 0 0 7 0 P 200 113 5.1724654872512640e-02 -2.5467596718544816e-01 6.8050603127912590e-01 1.0679075141867931e+00 7.8089865671918346e-01 2 0 0 -73 0 P 201 213 1.2079440377847768e+00 5.4134357689203216e-01 2.0766900558992285e+00 2.5558783566689716e+00 6.8387931622187015e-01 2 0 0 -74 0 P 202 221 -2.1508077341924125e-02 -3.9208070801051459e-02 -1.3543634117964143e-01 5.6572464611241269e-01 5.4744999999999999e-01 2 0 0 -75 0 P 203 -211 -4.8855050297025075e-02 6.5828594709929888e-01 6.3993095201266825e-01 9.2990247463472520e-01 1.3957000000000000e-01 1 0 0 0 0 P 204 211 -2.4014323272059201e-01 -5.8096210359753242e-01 -4.0258896127950555e-01 7.5943623477029176e-01 1.3957000000000000e-01 1 0 0 0 0 P 205 111 -8.3834002222671000e-01 -2.8122293027917722e-01 6.6267239203253581e-01 1.1132181407720638e+00 1.3497999999999999e-01 2 0 0 -76 0 P 206 -211 -1.1082231007103824e-01 -4.3560452128121679e-02 -2.1252523198599693e-01 2.8075942821175132e-01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 62 1 0 P 54 21 -7.6620464242717456e-01 -5.3260986573066660e-02 3.0666526012888045e+00 3.1613706621905444e+00 0 2 0 0 -20 0 P 55 21 -2.4622809504409449e+00 -1.0162751345293342e+00 8.8223415878789506e+00 9.2157123284738791e+00 0 2 0 0 -20 0 P 56 21 -1.6465685750692243e+00 -1.9282437768069309e+00 7.3899413772702003e+00 7.8128449168462533e+00 0 2 0 0 -20 0 P 57 21 -2.3856195095670811e+00 -1.8396851693686822e+00 1.1637100032022840e+01 1.2020720407784557e+01 0 2 0 0 -20 0 P 58 21 -1.1153743687480565e-01 -4.5241321620112179e-01 1.0369940949588441e+00 1.1368707362746022e+00 0 2 0 0 -20 0 P 59 21 2.5286770123366695e-02 -1.4541299350497183e+00 3.7745175328701386e+00 4.0450112354225976e+00 0 2 0 0 -20 0 P 60 21 4.5574319250048462e-01 -1.2327391522864430e+00 2.7708798275981422e+01 2.7739950424867768e+01 0 2 0 0 -20 0 P 61 21 6.3231833040468088e-01 -1.0646557913243480e+00 2.1889627415097337e+01 2.1924623298856179e+01 0 2 0 0 -20 0 P 62 21 4.3374437149537254e-01 -1.7761759785446687e+00 2.4416616903422486e+01 2.4484977359496572e+01 0 2 0 0 -20 0 P 63 21 1.1581381414841199e+00 -1.1880358412020253e+00 6.4391140443591715e+00 6.6494287567432755e+00 0 2 0 0 -20 0 P 64 21 7.0695000468798366e+00 -4.0972805184888506e+00 4.8689815785777235e+01 4.9370676517675392e+01 0 2 0 0 -20 0 P 65 21 3.6571394815337666e+00 1.3038366542379864e+00 4.6193713535017906e+01 4.6356594238183895e+01 0 2 0 0 -20 0 P 66 21 8.8800289222103335e-01 7.7685623074589455e-02 1.6269959674946833e+01 1.6294360129106678e+01 0 2 0 0 -20 0 P 67 21 1.0959587917665892e+00 2.5433751589254765e+00 5.1867632527715564e+01 5.1941516986919311e+01 0 2 0 0 -20 0 P 68 21 2.7588024080348352e-02 1.7454243891908545e+00 3.2373159437890436e+01 3.2420189996181847e+01 0 2 0 0 -20 0 P 69 21 -4.3374437149537254e-01 1.7761759785446687e+00 3.7604943244250990e+01 3.7649365090130019e+01 0 2 0 0 -20 0 P 70 21 -6.3231833040468088e-01 1.0646557913243480e+00 4.5022564414075035e+01 4.5039589527930893e+01 0 2 0 0 -20 0 P 71 21 -7.3320893173040880e-01 9.6698455964527563e-01 6.0675776551496220e+01 6.0687910778039310e+01 0 2 0 0 -20 0 P 72 21 2.3079543562230374e+00 5.5348917743129367e-01 9.2739451819359800e+01 9.2769816898252529e+01 0 2 0 0 -20 0 P 73 21 9.5403074503838747e-01 -1.0288323549136510e-01 4.6548650800468884e+01 4.6558540043332719e+01 0 2 0 0 -20 0 P 74 21 5.2220436585735310e+00 -6.7330770781587743e+00 3.1821587588012994e+02 3.1832993533293524e+02 0 2 0 0 -20 0 P 75 21 5.9627825282340619e-01 1.0045948781966898e+00 3.8688984414328172e+02 3.8689160789533406e+02 0 2 0 0 -20 0 P 76 21 7.6721106927395422e-01 4.6499006672266016e-02 5.9947243301292713e+02 5.9947292575847064e+02 0 2 0 0 -20 0 P 77 21 7.3320893173040880e-01 -9.6698455964527563e-01 4.8565390905302371e+02 4.8565542520696584e+02 0 2 0 0 -20 0 P 78 21 2.0778168405051881e-01 -1.7095919830472586e+00 4.3613992391980224e+02 4.3614332405156404e+02 0 2 0 0 -20 0 P 79 21 -3.2691470201533472e+00 -1.0031404359685361e+01 1.5749173289608093e+03 1.5749526689576157e+03 0 2 0 0 -20 0 P 80 21 -5.6974097177042082e-01 -6.1210990605476590e-01 1.9395453922029495e+02 1.9395634191092833e+02 0 2 0 0 -20 0 P 81 21 -7.6721106927395422e-01 -4.6499006672266016e-02 5.4315451345483659e+01 5.4320889442700043e+01 0 2 0 0 -20 0 P 82 21 -8.8800289222103335e-01 -7.7685623074589455e-02 6.0728246461221616e+01 6.0734788239093263e+01 0 2 0 0 -20 0 P 83 21 -5.9627825282340619e-01 -1.0045948781966898e+00 3.1397407582600199e+01 3.1419133685256341e+01 0 2 0 0 -20 0 P 84 21 -2.7619430481149494e+00 4.4467788503125216e-01 3.1728738140821399e+01 3.1851827134895746e+01 0 2 0 0 -20 0 P 85 21 -5.2220436585735310e+00 6.7330770781587743e+00 1.0137131179463401e+02 1.0172879101747637e+02 0 2 0 0 -20 0 P 86 21 -2.5286770123366695e-02 1.4541299350497183e+00 9.2491205166371291e+00 9.3627647423199125e+00 0 2 0 0 -20 0 P 87 21 -2.8539167564036396e+00 8.0915210708142968e+00 2.7481111035982295e+01 2.8789390717135731e+01 0 2 0 0 -20 0 P 88 21 -2.0597665618056009e+00 3.2033190084719996e+00 1.0043182259395287e+01 1.0741014889413510e+01 0 2 0 0 -20 0 P 89 21 -4.5574319250048462e-01 1.2327391522864430e+00 2.0239146235319607e+00 2.4132090830338240e+00 0 2 0 0 -20 0 P 90 21 3.2691470201533472e+00 1.0031404359685361e+01 1.4507303301675236e+01 1.7938178412360859e+01 0 2 0 0 -20 0 P 91 21 2.9813447080154125e+00 1.2357317877675240e+00 5.4937481611588570e+00 6.3715553970397956e+00 0 2 0 0 -20 0 P 92 21 2.4622809504409449e+00 1.0162751345293342e+00 2.0948962673155402e+00 3.3888394766910341e+00 0 2 0 0 -20 0 P 93 21 1.1685924022184568e+00 -6.5064735607400404e-01 2.0457578428922746e-01 1.3530711126937667e+00 0 2 0 0 -20 0 P 94 21 2.8539167564036396e+00 -8.0915210708142968e+00 8.1279274559940493e+00 1.1818661464895893e+01 0 2 0 0 -20 0 P 95 21 2.8674133223817960e-01 9.4454157973584296e-01 2.6582910404948329e-01 1.0222741804542257e+00 0 2 0 0 -20 0 P 96 21 1.1153743687480565e-01 4.5241321620112179e-01 1.5346797961418043e-01 4.9058204082997448e-01 0 2 0 0 -20 0 P 97 21 5.6974097177042082e-01 6.1210990605476590e-01 -2.2136858268364798e-01 8.6503604630306874e-01 0 2 0 0 -20 0 P 98 21 -7.0094698658843058e-01 6.2868158765659077e+00 -3.9417858867178581e+00 7.4533922827513015e+00 0 2 0 0 -20 0 P 99 21 1.7096809933195425e-02 1.5360408738833482e+00 -1.8772269198473786e+00 2.4256328608736086e+00 0 2 0 0 -20 0 P 100 21 -3.4828195276915874e-01 1.0082914735837534e+00 -3.6135820233699985e+00 3.7677482736973298e+00 0 2 0 0 -20 0 P 101 21 -1.1685924022184568e+00 6.5064735607400404e-01 -3.7986943813593621e+00 4.0272855855352478e+00 0 2 0 0 -20 0 P 102 21 -7.0695000468798366e+00 4.0972805184888506e+00 -2.6827995336440996e+01 2.8044729849512226e+01 0 2 0 0 -20 0 P 103 21 -1.8380077932004180e+00 8.9525500854456219e-01 -1.7387397360301755e+01 1.7507179702716769e+01 0 2 0 0 -20 0 P 104 21 -2.0045571328561658e+00 7.8936722327505732e-02 -3.9720312223089657e+01 3.9770940187588501e+01 0 2 0 0 -20 0 P 105 21 -1.1581381414841199e+00 1.1880358412020253e+00 -2.9873085859909320e+01 2.9919123849274982e+01 0 2 0 0 -20 0 P 106 21 6.0021103239134910e-01 3.2639541764121520e+00 -1.2996647157351796e+02 1.3000883578979997e+02 0 2 0 0 -20 0 P 107 21 -2.0778168405051881e-01 1.7095919830472586e+00 -5.7591569590465411e+01 5.7617313074024430e+01 0 2 0 0 -20 0 P 108 21 -2.2778981272521706e+00 1.2161445735295373e+00 -1.2276245267547534e+02 1.2278960711070049e+02 0 2 0 0 -20 0 P 109 21 -1.1663024944494242e-02 7.0637343542125408e-01 -2.1418738943904719e+02 2.1418855453588196e+02 0 2 0 0 -20 0 P 110 21 1.4139603570412562e+00 7.4440619632439831e-01 -8.3338260367055705e+02 8.3338413563325832e+02 0 2 0 0 -20 0 P 111 21 -1.7096809933195425e-02 -1.5360408738833482e+00 -3.2638616345964653e+02 3.2638977835063133e+02 0 2 0 0 -20 0 P 112 21 -6.0021103239134910e-01 -3.2639541764121520e+00 -5.1726656637265921e+02 5.1727721227317738e+02 0 2 0 0 -20 0 P 113 21 -2.9813447080154125e+00 -1.2357317877675240e+00 -2.3809664515499671e+02 2.3811851646477166e+02 0 2 0 0 -20 0 P 114 21 -1.4139603570412562e+00 -7.4440619632439831e-01 -9.6263846551436089e+01 9.6277108272708546e+01 0 2 0 0 -20 0 P 115 21 -6.6714678530695792e-01 -9.8627443047921828e-02 -2.5705998644067613e+01 2.5714843544040349e+01 0 2 0 0 -20 0 P 207 92 -3.7067785881386133e+00 2.0752940553088763e+01 -4.8788216965528136e+01 1.0146891637273040e+04 1.0146752445176622e+04 2 0 0 -21 0 V -21 0 0 0 0 0 0 144 0 P 208 2212 2.4897650228662171e-01 -2.5598870356747777e-01 3.4077141704471245e+01 3.4091926564137708e+01 9.3827000000000005e-01 1 0 0 0 0 P 209 223 1.0851312832178057e-01 -5.6567273413806907e-01 3.3989233406725972e+01 3.4002998899787784e+01 7.7729393469113328e-01 2 0 0 -77 0 P 210 -2212 -2.4900457924053021e-01 5.8425779934016264e-01 6.6325397808416229e+00 6.7286176138876561e+00 9.3827000000000005e-01 1 0 0 0 0 P 211 323 3.6360380370028050e-01 -2.3328308296140027e-01 8.5789314491528099e+00 8.6540221067143897e+00 1.0523331655787196e+00 2 0 0 -78 0 P 212 -323 -1.8463750259450209e-02 4.5733205975426167e-01 1.4089077178566864e+00 1.7520818946209877e+00 9.3556212250700621e-01 2 0 0 -79 0 P 213 213 6.1066630017190948e-01 -3.8613127920340073e-01 4.0280679931900359e-01 9.1509350306205117e-01 3.9132097672352434e-01 2 0 0 -80 0 P 214 -211 1.4474447472067437e-01 -3.9972057020398338e-01 -6.4453975837035091e-02 4.5206370912467936e-01 1.3957000000000000e-01 1 0 0 0 0 P 215 223 1.1267070856166751e-01 1.7266079523201508e-01 3.9679204918034522e-01 9.0433976874163424e-01 7.8605346399401799e-01 2 0 0 -81 0 P 216 113 9.0633307844943434e-01 -4.0339541116138286e-02 4.1015128682020086e-01 1.2610230054269305e+00 7.7387855278888096e-01 2 0 0 -82 0 P 217 211 8.4407256114408535e-01 4.6621193938179012e-01 -5.1238630205951985e-01 1.1008322162512756e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 113 1.4929911790318251e-01 1.3846359558312393e+00 -2.4309652273571807e+00 2.9104498711372551e+00 7.8842853765941079e-01 2 0 0 -83 0 P 219 2112 9.2694172328255456e-02 2.9419127882283347e-01 -1.7777823520734160e-01 1.0047574851338363e+00 9.3957000000000002e-01 1 0 0 0 0 P 220 -2212 5.6940885305157651e-01 9.8685571769845648e-01 -1.2445124495881346e+00 1.9306145341749363e+00 9.3827000000000005e-01 1 0 0 0 0 P 221 211 -1.0644005920991136e-01 9.6307201556788924e-01 -7.9965580013104542e-01 1.2640278386799195e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -213 -2.4388582678450166e-01 -9.0244847247338134e-01 3.9567326599051627e+00 4.1128066756558530e+00 6.2092823046087331e-01 2 0 0 -84 0 P 223 2224 -1.0101537303580297e+00 -4.7469223057236595e-02 2.4062634996725691e+00 2.8835626041790547e+00 1.2256285637457669e+00 2 0 0 -85 0 P 224 111 -7.8204286347471230e-01 -6.0067902409904805e-01 1.9927991238936209e+00 2.2275264934216823e+00 1.3497999999999999e-01 2 0 0 -86 0 P 225 -2212 -5.0440056312205772e-01 -5.5552229039336098e-01 4.5574445148360079e+00 4.7131386614347086e+00 9.3827000000000005e-01 1 0 0 0 0 P 226 113 -1.1986015871385665e+00 -9.8661777672173034e-01 4.5309993074249126e+00 4.8455350166150950e+00 7.3429862544035440e-01 2 0 0 -87 0 P 227 2114 -2.3654233374778980e-01 -1.1808681608696376e+00 8.9424185333132176e+00 9.1110177388937110e+00 1.2622967656148303e+00 2 0 0 -88 0 P 228 223 -1.9000793074700525e-01 3.6794797448328621e-02 4.1141414433110519e+00 4.1909210295187220e+00 7.7472729991055134e-01 2 0 0 -89 0 P 229 -2112 -1.7285126075947799e+00 -1.4685583043715535e+00 7.0313545825744930e+00 7.4476277014056009e+00 9.3957000000000002e-01 1 0 0 0 0 P 230 -211 -5.5327196829793493e-02 -3.7300002074523919e-01 2.8334919141398074e+00 2.8618781117616909e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 111 -9.0870084451012390e-01 -1.2557540563419463e+00 9.7717171687479478e+00 9.8948133636383471e+00 1.3497999999999999e-01 2 0 0 -90 0 P 232 213 5.8063857440772977e-02 -3.4545379918539532e-01 4.9171869753190052e+00 4.9549312113680433e+00 4.9990581135829593e-01 2 0 0 -91 0 P 233 2114 7.8393684504452243e-01 -1.1611851302917040e+00 1.8159931685489862e+01 1.8263340877183072e+01 1.3429792592212835e+00 2 0 0 -92 0 P 234 -2214 1.3565696078807634e+00 -1.8941030941337234e+00 1.6874503534440027e+01 1.7081705948309629e+01 1.2680303381445217e+00 2 0 0 -93 0 P 235 213 6.6824404857780395e-01 -7.3904622109135099e-01 1.8015809024248238e+01 1.8057108705944550e+01 7.0502524404818745e-01 2 0 0 -94 0 P 236 -213 8.1962765597054676e-01 -1.0083318028087125e+00 1.6151924566542789e+01 1.6226320641804882e+01 8.4870009331186080e-01 2 0 0 -95 0 P 237 213 2.1860545285430111e+00 -1.3045047307390858e+00 1.2849464574048598e+01 1.3118504523280279e+01 7.1123420426126405e-01 2 0 0 -96 0 P 238 -211 1.4460171055363694e-01 -1.4407020259090911e-01 2.2822263301398391e+00 2.2955832994803700e+00 1.3957000000000000e-01 1 0 0 0 0 P 239 113 9.1648741134231482e-01 -2.1903832197613970e-01 8.0974632743512736e+00 8.1871321822255734e+00 7.5650177007259922e-01 2 0 0 -97 0 P 240 223 1.4003871656869027e+00 -1.1209075459336786e+00 1.6028846602880723e+01 1.6147955845905113e+01 7.8424271897704712e-01 2 0 0 -98 0 P 241 213 2.1414842635045011e+00 -3.9237015617731136e-01 1.4011375625066300e+01 1.4199717627036105e+01 7.5724803767443871e-01 2 0 0 -99 0 P 242 -213 1.1255517007965901e+00 7.3506681100349092e-01 2.0634200046091820e+01 2.0696948584642435e+01 8.8672392850985471e-01 2 0 0 -100 0 P 243 113 1.3340440191970326e+00 5.4955799056189003e-01 2.2436034953284409e+01 2.2512659476457365e+01 1.1672552624769310e+00 2 0 0 -101 0 P 244 113 1.5997659069920627e+00 1.2900214772858318e+00 3.2220546056542283e+01 3.2304005786971103e+01 1.0778661020122675e+00 2 0 0 -102 0 P 245 223 2.0082517941349107e-02 2.1916415963876452e+00 5.9828316484744548e+01 5.9873542344704681e+01 7.8097587020655601e-01 2 0 0 -103 0 P 246 321 1.2502100004777392e-01 2.5506768120499707e-01 3.2908570823045821e+01 3.2913498208909225e+01 4.9359999999999998e-01 1 0 0 0 0 P 247 -323 -9.8831192476141486e-02 1.6245851452015387e+00 5.0663906011546516e+01 5.0697763316355662e+01 8.8475331917025335e-01 2 0 0 -104 0 P 248 223 1.2252669197254653e+00 9.8395506930835963e-01 3.5051808834054739e+01 3.5095606494784704e+01 7.7643164197849590e-01 2 0 0 -105 0 P 249 323 -3.3795358056890384e-01 7.5982780276598105e-01 4.8293383615965439e+01 4.8309444980681548e+01 9.2737389990401553e-01 2 0 0 -106 0 P 250 -321 -8.2531606449385453e-02 7.5012311696261519e-02 1.1350340771533210e+01 1.1361615857918196e+01 4.9359999999999998e-01 1 0 0 0 0 P 251 213 6.0164804535560057e-01 -1.2953321746764797e+00 5.4787717198871761e+01 5.4812921141769088e+01 8.5000142177296578e-01 2 0 0 -107 0 P 252 -211 9.1111369866472403e-01 -4.4540581990451505e-01 5.0843455673085138e+01 5.0853760717199400e+01 1.3957000000000000e-01 1 0 0 0 0 P 253 213 1.0148761450212163e+00 4.6199786235803086e-01 7.9651583431876077e+01 7.9664927711194053e+01 9.3944047714759027e-01 2 0 0 -108 0 P 254 -211 9.3332828390529776e-01 -1.3819687511064789e+00 4.3574139100747310e+01 4.3606261218668450e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 223 1.5659202595493460e+00 -5.2006395306504438e-01 1.0019534172567845e+02 1.0021185317295000e+02 7.6579374302992198e-01 2 0 0 -109 0 P 256 2224 1.4612762841703500e-01 -7.3969684589781382e-01 6.8747839528458314e+01 6.8761937955102084e+01 1.1705412436279903e+00 2 0 0 -110 0 P 257 221 9.9566593157148009e-01 -1.3610779740205829e+00 1.9855950922409119e+02 1.9856742504427334e+02 5.4744999999999999e-01 2 0 0 -111 0 P 258 -2214 9.6093006338083542e-01 8.6892047514446624e-02 7.4935838856954035e+01 7.4952296797399896e+01 1.2393196502561268e+00 2 0 0 -112 0 P 259 -211 3.1016041147919299e-02 -2.5845303072856951e-01 1.2744430443094148e+01 1.2747852645354282e+01 1.3957000000000000e-01 1 0 0 0 0 P 260 213 4.4194591334472166e-01 -4.4366181274341399e-01 4.2485343655650883e+02 4.2485453569217231e+02 7.3606544644277594e-01 2 0 0 -113 0 P 261 311 2.0415040959310582e-01 -7.0080528371231632e-01 1.3770998196966920e+02 1.3771281572515659e+02 4.9767000000000000e-01 2 0 0 -114 0 P 262 -311 -1.6870292078225307e-02 8.6754163892089568e-03 4.1896206755344764e+02 4.1896236356498434e+02 4.9767000000000000e-01 2 0 0 -115 0 P 263 -213 6.3036987629666552e-01 7.3900243478665278e-02 2.0146265859130594e+02 2.0146487022169828e+02 6.9878418822016908e-01 2 0 0 -116 0 P 264 111 -9.2698317802731978e-01 -2.8980784524905658e+00 5.2777638729127841e+02 5.2778517538707263e+02 1.3497999999999999e-01 2 0 0 -117 0 P 265 223 3.3401232863700248e-01 -7.0658283871489913e-01 2.8146748075981657e+02 2.8146965414619314e+02 7.8272367807667720e-01 2 0 0 -118 0 P 266 211 -1.3719812345721735e-01 -1.1481551430399848e+00 1.5897123058794168e+02 1.5897549722516044e+02 1.3957000000000000e-01 1 0 0 0 0 P 267 2112 -4.3075513969666740e-01 -1.9016075285302856e+00 3.2352565701434452e+02 3.2353289662649627e+02 9.3957000000000002e-01 1 0 0 0 0 P 268 213 -4.6712794287204384e-01 -4.3637354862487898e-01 2.3772668400554056e+02 2.3772805882258425e+02 4.9500797467730495e-01 2 0 0 -119 0 P 269 -3224 -1.3769167169937930e+00 -1.1749207296618043e+00 1.9020924880991404e+02 1.9022277425254111e+02 1.3671770678700834e+00 2 0 0 -120 0 P 270 3212 -1.2723550495021774e+00 -3.0127720160056644e+00 3.8790317278036645e+02 3.8791879216038211e+02 1.1925500000000000e+00 2 0 0 -121 0 P 271 113 1.2797797622253834e-01 3.0614037479728285e-02 6.1046797138509916e+01 6.1049567513620595e+01 5.6651314905124595e-01 2 0 0 -122 0 P 272 -2112 -1.0712025477196210e+00 -7.5535695736404196e-01 1.0451265538729379e+02 1.0452509730643358e+02 9.3957000000000002e-01 1 0 0 0 0 P 273 111 7.0781087745719307e-01 1.0825918791152857e-01 2.3517932128555845e+01 2.3529217315792152e+01 1.3497999999999999e-01 2 0 0 -123 0 P 274 111 -9.2204982814288938e-01 2.5783916503019928e-02 4.1024654660493418e+01 4.1035245220530520e+01 1.3497999999999999e-01 2 0 0 -124 0 P 275 113 -1.0775343958022121e+00 -4.6270926016942843e-01 4.3130937105922882e+01 4.3153492592422467e+01 7.5565008807109557e-01 2 0 0 -125 0 P 276 -211 6.2910984217576751e-02 1.6740939171514024e-01 1.4639465082605732e+00 1.4814192047891042e+00 1.3957000000000000e-01 1 0 0 0 0 P 277 2212 -1.1441919173939090e+00 5.9420852698746141e-01 2.1390770444675962e+01 2.1450120506120630e+01 9.3827000000000005e-01 1 0 0 0 0 P 278 -2212 -2.8535974774908301e+00 3.3641378877104224e+00 5.2417612343922848e+01 5.2611280888434408e+01 9.3827000000000005e-01 1 0 0 0 0 P 279 211 -3.0854350262711538e-01 4.5753778189057265e-01 3.1861814797816712e+00 3.2366297474185202e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 -213 -1.2966661133095601e+00 9.1331356094983462e-01 2.4703612985485073e+01 2.4773967700722203e+01 9.8259677883658636e-01 2 0 0 -126 0 P 281 213 -1.0115909932586822e+00 1.4142857997848906e+00 1.6296040235247045e+01 1.6401591419462495e+01 6.5402834883509309e-01 2 0 0 -127 0 P 282 2112 -2.8256169793404760e-02 4.4975111118104888e-01 3.5079035146237350e+00 3.6594061438913190e+00 9.3957000000000002e-01 1 0 0 0 0 P 283 -2112 -9.9687119569145710e-01 2.0451608406241499e+00 1.3912690589149644e+01 1.4128771576437028e+01 9.3957000000000002e-01 1 0 0 0 0 P 284 331 -1.4324423809359659e+00 2.9100676054238588e+00 1.3593813210879018e+01 1.4008164949186112e+01 9.5736251676080453e-01 2 0 0 -128 0 P 285 223 -2.8569842399382772e-01 1.3677133292608998e+00 5.2541752502165853e+00 5.4926665152104430e+00 7.8151426526649415e-01 2 0 0 -129 0 P 286 111 -7.6100657025383739e-02 1.0729056587376731e+00 1.8142706612230968e+00 2.1134605496970860e+00 1.3497999999999999e-01 2 0 0 -130 0 P 287 -213 -1.8454325978990336e+00 3.8683231566062313e+00 1.5564747329052043e+01 1.6165377613316974e+01 8.2977614244595843e-01 2 0 0 -131 0 P 288 213 -3.1248219498123214e-01 1.6577109945288397e+00 2.7065009409510203e+00 3.3096280795092490e+00 8.8478235614485301e-01 2 0 0 -132 0 P 289 313 1.1437160367263854e+00 4.8555098264906009e+00 7.8332176837295773e+00 9.3272031530011983e+00 8.6796159410991458e-01 2 0 0 -133 0 P 290 3224 9.0336225251144897e-01 1.4634137854200584e+00 4.9188847701793081e+00 5.3895810534851449e+00 1.3764131949251557e+00 2 0 0 -134 0 P 291 -2224 7.4397302763478435e-01 3.5011716720541881e+00 4.3201603091015288e+00 5.7509143481805074e+00 1.2639350460879815e+00 2 0 0 -135 0 P 292 111 1.8924562489649193e+00 1.6553332353504722e+00 2.2864339695917426e+00 3.4011055073321805e+00 1.3497999999999999e-01 2 0 0 -136 0 P 293 221 2.0787847922450191e+00 6.1193746997786935e-01 2.6038914453433000e+00 3.4315835763192628e+00 5.4744999999999999e-01 2 0 0 -137 0 P 294 213 5.9097883957815456e-01 1.1475624583306349e-01 1.3013828943271726e+00 1.6094429848012761e+00 7.3094753497896914e-01 2 0 0 -138 0 P 295 -211 4.8458021133405860e-01 -5.9740417085601578e-02 1.6534780928530148e+00 1.7296983803816681e+00 1.3957000000000000e-01 1 0 0 0 0 P 296 211 5.4068262942874992e-02 -2.2614365049516358e-01 4.0251020458152313e-02 2.7416100609835303e-01 1.3957000000000000e-01 1 0 0 0 0 P 297 113 2.2904997889501959e+00 -2.3301588870160548e+00 3.2451344920066871e+00 4.6386407150187177e+00 5.5683039598882378e-01 2 0 0 -139 0 P 298 111 9.8674578850917502e-02 -1.3557276927778579e+00 5.1343454961827961e-01 1.4593042474473599e+00 1.3497999999999999e-01 2 0 0 -140 0 P 299 -211 2.5274709055014538e-01 -1.6124305949406698e-01 3.3312189505266976e-01 4.6939364916885329e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 323 4.8327987192292504e-01 -9.7182627702070701e-01 1.1026988395068564e+00 1.7727308852737158e+00 8.6523078634535278e-01 2 0 0 -141 0 P 301 221 4.4319198567469587e-01 -1.5515507805236972e+00 1.4192663740522424e+00 2.2175994912800134e+00 5.4744999999999999e-01 2 0 0 -142 0 P 302 -321 3.5584063047892095e-01 -1.0658941553124268e-01 2.3806171407943760e-01 6.6204093341225345e-01 4.9359999999999998e-01 1 0 0 0 0 P 303 323 -1.7712179250825910e-01 1.2693458621124426e-01 7.7518849558725456e-01 1.2042836632260447e+00 8.9548725242984439e-01 2 0 0 -143 0 P 304 -321 5.1767234712209564e-01 -1.1004548352903142e-01 3.6830005509580171e-01 8.1202251077393683e-01 4.9359999999999998e-01 1 0 0 0 0 P 305 111 -6.1288353937418183e-01 5.2439615182877453e-01 -8.3750468970622638e-01 1.1705773202008374e+00 1.3497999999999999e-01 2 0 0 -144 0 P 306 111 7.0900435078770474e-01 1.4385701706142155e+00 -1.0133786974407362e+00 1.9019272567697196e+00 1.3497999999999999e-01 2 0 0 -145 0 P 307 223 -3.8587193547647836e-01 2.2111399965318377e+00 -5.2549555809394422e-01 2.4337534726777474e+00 7.8036731693693473e-01 2 0 0 -146 0 P 308 211 3.4083708863724210e-01 1.3032463547319392e-01 -6.7922503228845299e-01 7.8356930835069216e-01 1.3957000000000000e-01 1 0 0 0 0 P 309 -211 1.7935001331443899e-02 6.4450522150138168e-01 -1.1378304695021846e+00 1.3152363312511048e+00 1.3957000000000000e-01 1 0 0 0 0 P 310 2212 -4.0761244025010392e-02 2.2871861541704090e+00 -2.7487461784965324e+00 3.6971391817921302e+00 9.3827000000000005e-01 1 0 0 0 0 P 311 223 -1.1283756295878444e+00 5.9349146225934124e-01 -1.5569290809144956e+00 2.1618717778774528e+00 7.9006186071931561e-01 2 0 0 -147 0 P 312 -2214 -3.1204906964814688e-01 1.1361514751098114e+00 -2.6950860576832243e+00 3.1914625433463777e+00 1.2384383355669963e+00 2 0 0 -148 0 P 313 211 -9.5169081494688812e-01 1.8273151984060998e+00 -5.0369554168080253e+00 5.4438218098493918e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 221 -2.1088883272723447e+00 7.2363516287395235e-01 -8.6730058821049347e+00 8.9717217054130671e+00 5.4744999999999999e-01 2 0 0 -149 0 P 315 -211 -4.7148163660113268e-01 1.7207549699792539e-02 -2.5953018771268019e+00 2.6415265760042344e+00 1.3957000000000000e-01 1 0 0 0 0 P 316 111 -1.8453668248169075e+00 1.5447263540114142e+00 -8.7830043727306215e+00 9.1077408636125270e+00 1.3497999999999999e-01 2 0 0 -150 0 P 317 213 -1.4347407761531250e+00 7.6862270627714668e-01 -7.5612387225075866e+00 7.7719616524462651e+00 7.6275484199435761e-01 2 0 0 -151 0 P 318 -211 -8.3946457321656481e-02 5.0814336185635814e-02 -3.1332007316737891e+00 3.1378425254177449e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 221 -4.0777662291583239e-01 -2.1753182770009627e-01 -5.4494455781066335e+00 5.4963406446021086e+00 5.4744999999999999e-01 2 0 0 -152 0 P 320 111 -6.3199348459106430e-01 4.4376804810902382e-01 -3.8576706497072002e+00 3.9365198192185469e+00 1.3497999999999999e-01 2 0 0 -153 0 P 321 211 -7.3282736529688153e-01 2.2859392371412757e-01 -7.9854861663823078e+00 8.0235129605223552e+00 1.3957000000000000e-01 1 0 0 0 0 P 322 -211 -1.0547911721153505e+00 1.2007219118198409e+00 -1.3395982004903386e+01 1.3491706014692587e+01 1.3957000000000000e-01 1 0 0 0 0 P 323 213 -6.9521401902784585e-01 -2.7505861297585532e-01 -1.1411156997817464e+01 1.1450611576069097e+01 5.8568051388454778e-01 2 0 0 -154 0 P 324 -211 4.6588721139738613e-03 -3.8957739375083802e-02 -1.0953500836725427e+00 1.1049031637424329e+00 1.3957000000000000e-01 1 0 0 0 0 P 325 211 -1.1487630880193727e+00 1.1437156298360236e+00 -4.6890146323117854e+01 4.6918365743732274e+01 1.3957000000000000e-01 1 0 0 0 0 P 326 223 -2.9771198688664396e-01 1.2323384966883746e+00 -3.0593347518841092e+01 3.0629443957504424e+01 7.7629513702442698e-01 2 0 0 -155 0 P 327 223 -1.3126517161518028e-01 1.0166377852275823e+00 -5.6155993608537841e+01 5.6170936547851333e+01 7.9228250578049608e-01 2 0 0 -156 0 P 328 -211 7.5595430789933429e-02 1.0355746000185430e-01 -2.6612070936316869e+00 2.6679471128142631e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 111 -1.1615104777464062e-01 2.3756389509017162e-01 -1.0106634063895703e+01 1.0110993985362988e+01 1.3497999999999999e-01 2 0 0 -157 0 P 330 223 -3.7191934150324352e-01 1.8565514672461021e+00 -8.2250742448460940e+01 8.2276265451930826e+01 7.8365556618617715e-01 2 0 0 -158 0 P 331 223 -3.0396012517947474e-01 3.4245832493208683e-01 -2.8251233892071795e+01 2.8265973902704236e+01 7.8955353320498922e-01 2 0 0 -159 0 P 332 213 -7.8452856145113470e-01 1.4181435689590551e+00 -1.1869839904708927e+02 1.1871307105396858e+02 9.2557359331200617e-01 2 0 0 -160 0 P 333 311 -5.9348308687469264e-01 -1.9720386623097619e-01 -1.0423437921016395e+02 1.0423744335072892e+02 4.9767000000000000e-01 2 0 0 -161 0 P 334 -321 2.9503966203191118e-01 5.3308553250813417e-01 -2.9118382352009365e+02 2.9118487932811377e+02 4.9359999999999998e-01 1 0 0 0 0 P 335 223 2.6147564559590497e-01 6.4982758753080139e-01 -2.6413017149654740e+02 2.6413228820271263e+02 7.9216854175051210e-01 2 0 0 -162 0 P 336 223 3.6548808675767480e-01 -3.8792571839277473e-01 -1.8356410702260473e+02 1.8356651428809658e+02 7.7441137074112343e-01 2 0 0 -163 0 P 337 111 5.5701861319504864e-01 -1.0533255892109152e+00 -3.5710924686359715e+02 3.5711126022518289e+02 1.3497999999999999e-01 2 0 0 -164 0 P 338 111 -4.9815860914364973e-01 -2.5998816147132542e-01 -1.2113384960727647e+02 1.2113522813831922e+02 1.3497999999999999e-01 2 0 0 -165 0 P 339 113 3.1655315375423743e-01 -7.7858981586029019e-01 -1.3808444798754689e+02 1.3808882013509583e+02 7.0785752577292238e-01 2 0 0 -166 0 P 340 223 -6.6896710159305706e-01 -1.0397918762598020e+00 -2.3729141723948734e+02 2.3729593437022118e+02 7.8427608843295471e-01 2 0 0 -167 0 P 341 211 -9.5925899051807129e-01 -6.6921978576433117e-01 -1.2399822592391590e+02 1.2400382068708987e+02 1.3957000000000000e-01 1 0 0 0 0 P 342 111 6.7863854964709813e-02 -1.6859530316849283e-01 -9.1686374888384776e+00 9.1714318882710728e+00 1.3497999999999999e-01 2 0 0 -168 0 P 343 -213 -7.6833016073783011e-01 -1.0891150606118947e+00 -1.4876377189653562e+02 1.4877312084435385e+02 1.0025737045650738e+00 2 0 0 -169 0 P 344 213 -4.9212074396270250e-01 -1.4618688323127307e-01 -5.6902459434508025e+01 5.6909629170034570e+01 7.4326922682883789e-01 2 0 0 -170 0 P 345 111 -1.0852125834463431e+00 -4.5296546220126188e-01 -1.5626531587887965e+02 1.5626979884285913e+02 1.3497999999999999e-01 2 0 0 -171 0 P 346 -211 1.6212213945956677e-01 4.6513068430317800e-01 -3.4155468750900198e+01 3.4159305547979208e+01 1.3957000000000000e-01 1 0 0 0 0 P 347 323 -1.6039538760687779e+00 -2.9142786999365367e-01 -1.6939581947405915e+02 1.6940585753214705e+02 8.6215582935956836e-01 2 0 0 -172 0 P 348 -323 8.7933334352008324e-03 -2.2639341182666889e-01 -2.5487547795619267e+02 2.5487719117412519e+02 9.0663449872008994e-01 2 0 0 -173 0 P 349 331 2.4999689521011295e-01 2.6385841206510802e-01 -2.7947602965051664e+02 2.7947791244414077e+02 9.5930975660334572e-01 2 0 0 -174 0 P 350 213 3.1073994391133847e-01 -8.4928241782227298e-02 -3.4291224143046713e+02 3.4291365641902581e+02 9.3094773199414294e-01 2 0 0 -175 0 P 351 2114 4.3212932938908083e-01 -2.5234917573115460e-02 -1.3385495922492473e+03 1.3385502569269017e+03 1.2617590459223291e+00 2 0 0 -176 0 V -22 0 0 0 0 0 5 1 0 P 118 21 2.1187640229719484e+00 6.0318676177727948e+00 3.1627478443533008e+01 3.2267165674095416e+01 0 2 0 0 -22 0 P 119 21 -2.1187640229719484e+00 -6.0318676177727948e+00 -4.0885235371542201e+01 4.1382062047821904e+01 0 2 0 0 -22 0 P 120 21 1.1663024944494242e-02 -7.0637343542125408e-01 -4.8801077329314202e+00 4.9309787001605194e+00 0 2 0 0 -22 0 P 121 21 3.4828195276915874e-01 -1.0082914735837534e+00 -3.1977542086649056e+00 3.3709915445400500e+00 0 2 0 0 -22 0 P 122 21 -2.7588024080348352e-02 -1.7454243891908545e+00 -1.8163645910859529e+00 2.5192156964431938e+00 0 2 0 0 -22 0 P 352 92 3.3235695363330464e-01 -3.4600892981958618e+00 -1.9151983460691472e+01 8.4470413663061080e+01 8.2197138848222323e+01 2 0 0 -23 0 V -23 0 0 0 0 0 0 19 0 P 353 221 3.0007698001521390e-02 -4.3316315185595444e-01 -6.3512940232947332e-02 7.0161682857680163e-01 5.4744999999999999e-01 2 0 0 -177 0 P 354 213 1.7733453641421729e-01 2.7168234598247902e-02 -1.7788748327764852e+00 1.9718217521699717e+00 8.3156461015886118e-01 2 0 0 -178 0 P 355 2112 -1.2594334643986452e-01 -2.0824705005993430e-01 -1.0651238420080424e+00 1.4410097654371083e+00 9.3957000000000002e-01 1 0 0 0 0 P 356 -2212 -1.9162880744741537e-01 -9.4079284094480048e-02 -4.7368824234404867e+00 4.8336299194227585e+00 9.3827000000000005e-01 1 0 0 0 0 P 357 111 -1.7599860910032261e-01 2.6386911205051405e-02 -9.0693911861641510e-02 2.4107419093913521e-01 1.3497999999999999e-01 2 0 0 -179 0 P 358 113 -2.0895787401498109e-01 -2.2993883985585684e+00 -1.3283023852955274e+01 1.3504178169177923e+01 7.7023045005000557e-01 2 0 0 -180 0 P 359 213 -4.2563907221175354e-02 -1.2748863521743967e+00 -2.0712113067781059e+00 2.6175726999706739e+00 9.6675936258606809e-01 2 0 0 -181 0 P 360 111 -1.4024145498495435e+00 -3.1030272891413175e+00 -1.9954592897800772e+01 2.0243506174676028e+01 1.3497999999999999e-01 2 0 0 -182 0 P 361 -213 3.0271647403445412e-01 -7.8132866615775187e-01 -5.3713940162182707e+00 5.4920456968230429e+00 7.8011570315906087e-01 2 0 0 -183 0 P 362 213 -8.0369269516604711e-02 2.1345767993398747e-02 7.9792877513889338e-01 1.1190225211160818e+00 7.8013217551673653e-01 2 0 0 -184 0 P 363 311 7.8247670403502126e-02 2.0703273050152021e-01 -9.1777284087718813e-01 1.0672242809148762e+00 4.9767000000000000e-01 2 0 0 -185 0 P 364 -311 1.7411155450783702e-01 3.4740871424399039e-01 8.0662754813928628e-01 1.0243686243062087e+00 4.9767000000000000e-01 2 0 0 -186 0 P 365 311 -3.1171137919313420e-03 2.5749281338306781e-02 2.8611728869490238e+00 2.9042483467844211e+00 4.9767000000000000e-01 2 0 0 -187 0 P 366 333 5.4769055812873813e-01 8.4565599344794562e-01 6.7339677093618038e+00 6.8847829146809314e+00 1.0192230692234161e+00 2 0 0 -188 0 P 367 -313 -1.2789388921535033e-01 4.2137457368821629e-01 4.4322476163663751e+00 4.5403208649146674e+00 8.8078444885482732e-01 2 0 0 -189 0 P 368 -213 1.0160724871506384e+00 1.3867113189452109e+00 3.0964167661327546e+00 3.6175388929859085e+00 7.3716977111275783e-01 2 0 0 -190 0 P 369 323 4.3965379605039284e-01 1.0885453079977208e+00 9.5869367305144237e+00 9.6997546931414238e+00 8.9311750866676087e-01 2 0 0 -191 0 P 370 -323 3.9450600447827555e-01 5.3016278066492617e-01 7.5205017493319870e-01 1.3353731554724722e+00 8.8370494915875208e-01 2 0 0 -192 0 P 371 111 -4.6909645893908336e-01 -1.9351072077799486e-01 1.1137511967219857e+00 1.2313241715506367e+00 1.3497999999999999e-01 2 0 0 -193 0 V -24 0 0 0 0 0 0 1 0 P 372 130 -7.6333228866413050e-01 -3.4292095591044724e-01 -2.3280697588206078e+02 2.3280901177949329e+02 4.9767000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 373 421 1.7751962343176839e+00 -2.3796048130695011e+00 -2.9176337033885553e+00 4.5610072806199335e+00 1.8645000000000000e+00 2 0 0 -194 0 P 374 111 9.9549800137625502e-02 -1.4292416753429760e-01 -1.3857162740393217e-01 2.6030592904155553e-01 1.3497999999999999e-01 2 0 0 -195 0 V -26 0 0 0 0 0 0 3 0 P 375 -211 -1.5011661906517124e-01 -3.6344448336286062e-01 1.4119724884159415e+00 1.4723358939963260e+00 1.3957000000000000e-01 1 0 0 0 0 P 376 211 -3.5898226157156488e-01 -1.9761770900307973e-01 5.8606422362465294e-01 7.2860969122530106e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 111 4.1402469584811703e-02 1.8576477236674199e-02 4.6424234999616015e-01 4.8559222597175422e-01 1.3497999999999999e-01 2 0 0 -196 0 V -27 0 0 0 0 0 0 2 0 P 378 211 -6.2182822954557559e-01 2.8923608805630208e-01 1.3828902807721155e+00 1.5499010211132447e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 111 8.1409363686585107e-02 6.8350718976088254e-01 2.9213591082801424e+00 3.0043914862883669e+00 1.3497999999999999e-01 2 0 0 -197 0 V -28 0 0 0 0 0 0 2 0 P 380 -211 1.6753778718719387e-01 1.0697821049156239e-01 4.5943075954748389e+00 4.6007233468655073e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 211 1.1887916328619139e-01 -3.1264856760090232e-01 3.2254881725958214e+01 3.2256917960690842e+01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 382 321 4.8965779716318575e-02 4.9034602628618373e-01 4.9237402016174528e+01 4.9242341893287993e+01 4.9359999999999998e-01 1 0 0 0 0 P 383 111 1.5004198863062165e-01 3.0667772048342662e-01 8.3812974349033510e+01 8.3813778417720457e+01 1.3497999999999999e-01 2 0 0 -198 0 V -30 0 0 0 0 0 0 2 0 P 384 -321 6.0087056237492838e-02 -1.6658509648509115e-01 4.2928733801051123e+01 4.2931936687857529e+01 4.9359999999999998e-01 1 0 0 0 0 P 385 211 2.2679301265353929e-01 -3.1609469289249759e-01 1.0303963068898649e+02 1.0304045964199253e+02 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 3 0 P 386 211 -4.8737048373501035e-01 4.8543373835443715e-01 1.6525023521966810e+02 1.6525172584830477e+02 1.3957000000000000e-01 1 0 0 0 0 P 387 -211 -2.6254824731948495e-01 4.1643296009067545e-03 9.4627710937623590e+01 9.4628178181782403e+01 1.3957000000000000e-01 1 0 0 0 0 P 388 111 -8.2992069258581186e-02 1.6951770667465824e-02 1.4515119860550200e+01 1.4515994599497047e+01 1.3497999999999999e-01 2 0 0 -199 0 V -32 0 0 0 0 0 0 2 0 P 389 22 -1.8011839900495108e-01 -3.7514745535546379e-01 1.2187714660066374e+02 1.2187785706095511e+02 0 1 0 0 0 0 P 390 22 1.0181723196202027e-02 -2.8678571703991975e-03 2.0980793371679624e+02 2.0980793398344989e+02 0 1 0 0 0 0 V -33 0 2.4671625788028134e-06 4.6196303883749852e-05 1.7016187464940165e-02 1.7016255685091814e-02 0 2 0 P 391 22 -1.8018417867728547e-02 4.2392060123087061e-01 1.5273883160436588e+02 1.5273942095348656e+02 0 1 0 0 0 0 P 392 22 4.2736414394921485e-02 3.8910704974241220e-02 1.7742865174835959e+01 1.7742959309441126e+01 0 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 393 -211 1.3400642082343115e+00 -4.3498911162023396e-01 -1.8013146432458225e+01 1.8068699781431459e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 111 1.3850152567616941e+01 -6.2265668457334860e+00 -2.0694187353129249e+02 2.0749832312833882e+02 1.3497999999999999e-01 2 0 0 -200 0 V -35 0 0 0 0 0 0 2 0 P 395 211 -5.5919397498419871e-02 -5.8102299587222413e-02 -7.7677688730250480e+00 7.7694411578871447e+00 1.3957000000000000e-01 1 0 0 0 0 P 396 111 7.4232746548789341e-01 -9.8248029790471225e-01 -2.0089056067599785e+01 2.0127213192326362e+01 1.3497999999999999e-01 2 0 0 -201 0 V -36 0 0 0 0 0 0 2 0 P 397 -211 -7.5824941507133869e-02 -1.1296603852075297e-01 -5.8759206076217174e-01 6.1907589388084583e-01 1.3957000000000000e-01 1 0 0 0 0 P 398 211 -3.5863755876938880e-02 -4.2363375689057214e-01 -1.0607134513555467e+01 1.0616568849798997e+01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 399 311 -2.8870169318448535e-01 -6.7201982425777729e-01 -2.5359747559612695e+00 2.6858523234935801e+00 4.9767000000000000e-01 2 0 0 -202 0 P 400 211 -4.8605188561939061e-01 1.7132554067412872e-02 -1.7014132267425972e+00 1.7750568196420347e+00 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 0 2 0 P 401 -311 -1.8313342698787602e+00 -1.1429060572267533e-01 -4.7834192988919693e+00 5.1473899374829735e+00 4.9767000000000000e-01 2 0 0 -203 0 P 402 -211 -1.2287816665200293e-01 9.2328776517423314e-02 -4.8308719370171060e-01 5.2581048718293533e-01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 403 211 -2.0989962700055380e+00 -2.6446877207938035e-02 -5.3958036985322213e+00 5.7914300580085758e+00 1.3957000000000000e-01 1 0 0 0 0 P 404 111 -9.1708275124630534e-01 -4.8976079568907033e-01 -3.4548379877975246e+00 3.6104060065256278e+00 1.3497999999999999e-01 2 0 0 -204 0 V -40 0 0 0 0 0 0 2 0 P 405 311 -2.4914342225239330e+00 1.5845796038221698e+00 -6.6718651625789978e+00 7.3129745782785225e+00 4.9767000000000000e-01 2 0 0 -205 0 P 406 111 -4.2736760051533117e-02 1.1113258024346881e-01 -4.1471958701831768e-01 4.5209381471981819e-01 1.3497999999999999e-01 2 0 0 -206 0 V -41 0 0 0 0 0 0 2 0 P 407 -321 -8.5836949850670496e-01 8.7361300003885722e-01 -2.4577704206926323e+00 2.7900312311218278e+00 4.9359999999999998e-01 1 0 0 0 0 P 408 211 1.6556024379733997e-02 1.9219652793553432e-01 -1.0316218446844017e+00 1.0587431334482338e+00 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 409 -211 -4.9176866621677512e-01 1.7049560018903268e-01 -1.8824099385728046e+00 1.9580225056148139e+00 1.3957000000000000e-01 1 0 0 0 0 P 410 111 -1.1365099912759380e-01 3.2063928975104666e-01 -2.4050396910577351e-01 4.3793591230953743e-01 1.3497999999999999e-01 2 0 0 -207 0 V -43 0 0 0 0 0 0 2 0 P 411 211 -3.7219410183391882e-01 2.3386396015567082e-01 -6.7532737029802259e-01 8.1778214903071422e-01 1.3957000000000000e-01 1 0 0 0 0 P 412 111 -6.3937818652051766e+00 5.8137032017929231e+00 -1.7432629631215825e+01 1.9457502072925699e+01 1.3497999999999999e-01 2 0 0 -208 0 V -44 0 0 0 0 0 0 2 0 P 413 -211 -3.2308158059392911e+00 3.7536281077322258e+00 -1.0666299554690870e+01 1.1760838436028411e+01 1.3957000000000000e-01 1 0 0 0 0 P 414 111 -2.2329585482535239e+00 2.0426932174542070e+00 -5.5576586337447829e+00 6.3296515345230366e+00 1.3497999999999999e-01 2 0 0 -209 0 V -45 0 0 0 0 0 0 2 0 P 415 22 -6.4890292408647032e-01 9.7627425568963547e-02 -3.2816666301313546e-01 7.3368895168482107e-01 0 1 0 0 0 0 P 416 22 -1.4703992399111641e+00 8.0502395632113935e-02 -1.7843628380041545e+00 2.3135482052648220e+00 0 1 0 0 0 0 V -46 0 -7.9650467644771237e-04 1.3419411699470567e-04 -6.7886425535926894e-04 1.0578279033271944e-03 0 2 0 P 417 22 -1.0785164057352192e+00 1.9155995610025101e-01 -9.9213484803028451e-01 1.4779121796971639e+00 0 1 0 0 0 0 P 418 22 -3.4359330067265603e-01 4.8035318056978395e-02 -2.1993518172194765e-01 4.1077394295041580e-01 0 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 419 211 -1.5415605628346334e+00 3.8474932339913109e-01 -1.4913418342810081e+00 2.1835799189220810e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 -211 -5.0904557384082472e-01 -2.3409058099455766e-02 -7.7962513256283084e-01 9.4179111934210225e-01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -1.2142504083791215e+00 9.4005131359410465e-02 -1.6759330540140376e+00 2.0761050601806215e+00 1.3497999999999999e-01 2 0 0 -210 0 V -48 0 0 0 0 0 0 2 0 P 422 -311 -1.4434736364490475e+00 -3.0715243020940630e-01 -1.4359268579717073e+00 2.1183767665010587e+00 4.9767000000000000e-01 2 0 0 -211 0 P 423 111 -6.9090435689929153e-01 1.0020742942909143e-01 -1.2478409622958244e+00 1.4362162187075382e+00 1.3497999999999999e-01 2 0 0 -212 0 V -49 0 -6.2549263169978635e-05 4.2675100898424307e-05 -1.0330443834445044e-04 1.2907112201013105e-04 0 2 0 P 424 22 -1.3652481659049975e-01 1.6852529462617941e-01 -2.7045992965087834e-01 3.4668194937243019e-01 0 1 0 0 0 0 P 425 22 -3.9325797963002723e-01 1.9292635383722934e-01 -6.0451303460910466e-01 7.4653092739680071e-01 0 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 426 -211 9.8940902229587208e-02 1.7669299426824017e-02 -5.4849085656247432e-01 5.7482476539279015e-01 1.3957000000000000e-01 1 0 0 0 0 P 427 111 -6.4813665881236238e-01 4.2004072991333363e-01 -2.0252295698162461e+00 2.1717020408289613e+00 1.3497999999999999e-01 2 0 0 -213 0 V -51 0 0 0 0 0 0 2 0 P 428 -311 3.4786793858009823e-01 5.8689202608148783e-01 -4.1086141705351231e+00 4.1945011841924682e+00 4.9767000000000000e-01 2 0 0 -214 0 P 429 -211 1.0450861257057876e-02 3.4492863641354038e-01 -6.4056511984102382e-01 7.4087005768627456e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 430 211 1.0960384998808918e-01 1.7666888384681098e-01 -3.5062482243192483e+00 3.5151787001365622e+00 1.3957000000000000e-01 1 0 0 0 0 P 431 111 1.2153727359438247e+00 8.4619538602881395e-01 -7.2593352622225167e+00 7.4100840459713604e+00 1.3497999999999999e-01 2 0 0 -215 0 V -53 0 -5.3710533026062023e-06 5.3842801399753063e-06 -6.3449635797664539e-05 6.8170312621767360e-05 0 2 0 P 432 22 -4.2410132396616514e-02 -8.9230340167996709e-03 -3.3742416391405639e-01 3.4019598213245184e-01 0 1 0 0 0 0 P 433 22 1.1869132329856289e-02 3.9539244813786088e-02 -2.3364534681076930e-02 4.7435531656885591e-02 0 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 434 2112 6.3098169011455207e-01 -2.2925224180111764e-01 -6.0021400298301755e+00 6.1122149181962211e+00 9.3957000000000002e-01 1 0 0 0 0 P 435 -211 3.6216142839064630e-01 1.6114024724202708e-01 -1.4463798433344173e+00 1.5061943817446899e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 436 211 1.7904169318733891e+00 1.0807351725782037e+00 -1.2678180398226493e+01 1.2850265339597508e+01 1.3957000000000000e-01 1 0 0 0 0 P 437 111 -1.0047547491976852e-01 4.7359648183483045e-02 -1.0523378294390258e+00 1.0667580630137541e+00 1.3497999999999999e-01 2 0 0 -216 0 V -56 0 0 0 0 0 0 2 0 P 438 211 5.9964623896675992e-02 8.5827629180456555e-02 -4.0471882544033272e-01 4.4072582249694681e-01 1.3957000000000000e-01 1 0 0 0 0 P 439 -211 2.0441204400349780e-01 -3.6618848549814759e-01 -7.2962219959737356e+00 7.3095973548531434e+00 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 440 311 -8.1289227733025802e-03 -3.2826852663753514e-01 -9.1662962603288793e+00 9.1856675786785047e+00 4.9767000000000000e-01 2 0 0 -217 0 P 441 211 1.9654068094126434e-01 -1.0280312083724101e+00 -1.7075141693676148e+01 1.7107759059814644e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 442 -321 6.7394690149016334e-01 -9.4810582224829942e-01 -1.8479697475448599e+01 1.8522849910861737e+01 4.9359999999999998e-01 1 0 0 0 0 P 443 111 2.8974875022327728e-01 -7.8995514523580068e-01 -7.1679259836798579e+00 7.2184046698459161e+00 1.3497999999999999e-01 2 0 0 -218 0 V -59 0 0 0 0 0 0 2 0 P 444 211 3.6362398929138351e-01 -7.9188206249819468e-02 -5.2404360950439601e+00 5.2554869830242028e+00 1.3957000000000000e-01 1 0 0 0 0 P 445 111 1.4657093381912575e-01 -7.9387418966494627e-01 -2.4781872867535558e+01 2.4795385895177187e+01 1.3497999999999999e-01 2 0 0 -219 0 V -60 0 0 0 0 0 0 2 0 P 446 -211 2.2298260045829452e-01 1.9395872702160749e-01 -2.6763931601365569e+00 2.6962754607830282e+00 1.3957000000000000e-01 1 0 0 0 0 P 447 111 2.8382419829460093e-01 -4.5177673733063217e-01 -9.3050363595033296e+00 9.3212971011554853e+00 1.3497999999999999e-01 2 0 0 -220 0 V -61 0 0 0 0 0 0 2 0 P 448 22 1.7845013351676440e+00 -5.8710563163067908e-01 -4.4220284395252229e+01 4.4260170470016213e+01 0 1 0 0 0 0 P 449 22 2.4932879114465591e-03 5.5132104288386177e-02 -7.2297137980598469e-01 7.2507474195867849e-01 0 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 450 -211 8.8428683486783910e-01 -1.8763028120112685e-01 -1.0047878822975738e+01 1.0089425997292834e+01 1.3957000000000000e-01 1 0 0 0 0 P 451 211 1.4368362915727612e-01 -4.4698790162188709e-02 -9.9765885637212204e+00 9.9786994203554809e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 452 211 1.5016572741260492e+00 -3.2695405698237234e-01 -3.4191235000332505e+01 3.4226041315892424e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 3.0992541546425123e-01 -2.4328595728947536e-01 -1.7760636493845116e+01 1.7765519133621396e+01 1.3497999999999999e-01 2 0 0 -221 0 V -64 0 0 0 0 0 0 1 0 P 454 130 1.8666623373595062e+00 -5.3353569114321342e-01 -3.7524906207759024e+01 3.7578389400630940e+01 4.9767000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 455 310 3.6941808949880300e-01 -2.6032417508950956e-01 -3.3629447808748864e+01 3.3636166157147706e+01 4.9767000000000000e-01 2 0 0 -222 0 V -66 0 0 0 0 0 0 2 0 P 456 311 1.2217278075960452e+00 -1.9396929819124384e-01 -3.4714593034920071e+01 3.4740191247797057e+01 4.9767000000000000e-01 2 0 0 -223 0 P 457 111 1.2313302310784244e+00 1.3786073878206728e-01 -4.4285327961853909e+01 4.4302863022728282e+01 1.3497999999999999e-01 2 0 0 -224 0 V -67 0 0 0 0 0 0 2 0 P 458 211 2.1930900027932752e+00 -3.2275156451429049e-01 -1.1151558814973897e+02 1.1153770525028678e+02 1.3957000000000000e-01 1 0 0 0 0 P 459 111 2.2424864799361459e+00 -7.6101335588487196e-01 -1.4899108724828326e+02 1.4900996673366009e+02 1.3497999999999999e-01 2 0 0 -225 0 V -68 0 0 0 0 0 0 2 0 P 460 321 1.9351097730933291e+00 -5.0283902970975236e-01 -1.5011573531721231e+02 1.5012986087954343e+02 4.9359999999999998e-01 1 0 0 0 0 P 461 -211 2.2290509364634463e+00 -3.0678208373375360e-01 -1.3655932550534121e+02 1.3657793249856613e+02 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 3 0 P 462 -211 -2.4853313343826625e-01 -3.7003610255314667e-01 1.3245991525666662e-01 4.8551091610711417e-01 1.3957000000000000e-01 1 0 0 0 0 P 463 211 -3.0988296150524799e-02 -4.3500450308495936e-01 1.7957389360084847e-01 4.9184932689338295e-01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 -4.1660245277194358e-01 -1.4777412567425932e+00 1.2107131926868537e+00 1.9599292999699689e+00 1.3497999999999999e-01 2 0 0 -226 0 V -70 0 0 0 0 0 0 3 0 P 465 211 -1.5135850592266756e-01 -3.2070690124458501e-01 4.1897301221656934e-02 3.8340250725667463e-01 1.3957000000000000e-01 1 0 0 0 0 P 466 -211 -9.9958615687429275e-01 -8.9017809221045208e-01 8.1113085925200878e-01 1.5713060098520149e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -3.0378898507922281e-01 -5.4479578966722064e-01 4.9267282411001800e-01 8.0624829420665167e-01 1.3497999999999999e-01 2 0 0 -227 0 V -71 0 0 0 0 0 0 2 0 P 468 -3122 -1.3791371663054639e+00 -1.8294741839964381e+00 1.6035815759687753e+00 3.0108488581429986e+00 1.1156800000000000e+00 2 0 0 -228 0 P 469 22 -1.2389599822384353e-01 -2.5331612412794979e-01 1.4150161954307361e-01 3.1550275030877661e-01 0 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 470 22 3.4991123456138201e-01 5.9830945357035070e-01 1.3638038767736218e+00 1.5298277970434067e+00 0 1 0 0 0 0 P 471 22 -2.0895307636275964e-01 2.4311968529455297e-01 6.3017546448221073e-01 7.0702877277700227e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 472 211 -1.2372149241095426e-01 -1.7467016944928790e-01 7.7177050844800432e-01 8.1297366401989180e-01 1.3957000000000000e-01 1 0 0 0 0 P 473 -211 1.7544614728346689e-01 -8.0005797736160261e-02 -9.1264477168878477e-02 2.5493385016690129e-01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 474 211 7.5069176475342536e-01 -1.5436835578637613e-04 9.6408986869088775e-01 1.2298321874591731e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 4.5725227303135141e-01 5.4149794524781847e-01 1.1126001872083409e+00 1.3260461692097987e+00 1.3497999999999999e-01 2 0 0 -229 0 V -75 0 0 0 0 0 0 2 0 P 476 22 1.6589022221460342e-02 -2.0979230870323251e-01 -2.7200492694950290e-01 3.4391087324203767e-01 0 1 0 0 0 0 P 477 22 -3.8097099563384466e-02 1.7058423790218105e-01 1.3656858576986147e-01 2.2181377287037504e-01 0 1 0 0 0 0 V -76 0 -2.9326598002216240e-04 -9.8376692113506394e-05 2.3181437523031386e-04 3.8942314618934260e-04 0 2 0 P 478 22 -2.6783389459606266e-01 -4.1415553101594324e-02 1.5110660597798148e-01 3.1029574522282888e-01 0 1 0 0 0 0 P 479 22 -5.7050612763064734e-01 -2.3980737717758288e-01 5.1156578605455438e-01 8.0292239554923495e-01 0 1 0 0 0 0 V -77 0 0 0 0 0 0 3 0 P 480 -211 2.6758898004096348e-02 9.2461921324661286e-02 9.3447901990228779e+00 9.3463280968608995e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 211 -1.0816409113278974e-01 -2.6735168483848593e-01 1.0821060649763218e+01 1.0825802961662960e+01 1.3957000000000000e-01 1 0 0 0 0 P 482 111 1.8991832145047396e-01 -3.9078297062424439e-01 1.3823382557939876e+01 1.3830867841263935e+01 1.3497999999999999e-01 2 0 0 -230 0 V -78 0 0 0 0 0 0 2 0 P 483 321 -2.2757742237252548e-02 6.3867125436825434e-02 6.2986998740585429e+00 6.3183746318185667e+00 4.9359999999999998e-01 1 0 0 0 0 P 484 111 3.8636154593753302e-01 -2.9715020839822570e-01 2.2802315750942679e+00 2.3356474748958234e+00 1.3497999999999999e-01 2 0 0 -231 0 V -79 0 0 0 0 0 0 2 0 P 485 -311 2.1205413590321498e-01 5.4575672375175875e-02 8.8283708942132988e-01 1.0368327810822664e+00 4.9767000000000000e-01 2 0 0 -232 0 P 486 -211 -2.3051788616266519e-01 4.0275638737908576e-01 5.2607062843535657e-01 7.1524911353872134e-01 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 487 211 3.2921578871885321e-01 -5.0755646011365951e-02 2.1201343846269535e-01 4.1879428617470749e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 2.8145051145305633e-01 -3.3537563319203478e-01 1.9079336085630824e-01 4.9629921688734380e-01 1.3497999999999999e-01 2 0 0 -233 0 V -81 0 0 0 0 0 0 3 0 P 489 -211 2.7442296134707805e-01 2.7420533316514112e-01 1.2164673487688947e-01 4.2985374193661985e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 211 -3.4148016224394930e-02 -8.0236090187451550e-02 2.2883885106511775e-01 2.8187039900889477e-01 1.3957000000000000e-01 1 0 0 0 0 P 491 111 -1.2760423656101555e-01 -2.1308447745674471e-02 4.6306463238337987e-02 1.9261562779611965e-01 1.3497999999999999e-01 2 0 0 -234 0 V -82 0 0 0 0 0 0 2 0 P 492 -211 9.5063350644438571e-01 5.0957634596977490e-02 4.7951548041828523e-01 1.0750421503174867e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 211 -4.4300427994951347e-02 -9.1297175713115783e-02 -6.9364193598084364e-02 1.8598085510944382e-01 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 2 0 P 494 -211 2.8941767115191419e-01 2.5870637352380255e-01 -3.7228436817941252e-01 5.5566807697363640e-01 1.3957000000000000e-01 1 0 0 0 0 P 495 211 -1.4011855324873168e-01 1.1259295823074369e+00 -2.0586808591777679e+00 2.3547817941636184e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 496 -211 -5.6904603731630199e-02 -5.3290550833288108e-01 1.1969811021746077e+00 1.3188896688504763e+00 1.3957000000000000e-01 1 0 0 0 0 P 497 111 -1.8698122305287146e-01 -3.6954296414050020e-01 2.7597515577305551e+00 2.7939170068053776e+00 1.3497999999999999e-01 2 0 0 -235 0 V -85 0 0 0 0 0 0 2 0 P 498 2212 -7.7933731378678883e-01 -2.1374965743530333e-01 1.6450188003643935e+00 2.0590029167454875e+00 9.3827000000000005e-01 1 0 0 0 0 P 499 211 -2.3081641657124077e-01 1.6628043437806672e-01 7.6124469930817551e-01 8.2455968743356700e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -8.4437207455679417e-05 -6.4855344561003618e-05 2.1516262202569519e-04 2.4050614796531616e-04 0 2 0 P 500 22 -2.6082602021251000e-01 -2.6767953810983364e-01 6.6766339153603371e-01 7.6515158781772763e-01 0 1 0 0 0 0 P 501 22 -5.2121684326220230e-01 -3.3299948598921436e-01 1.3251357323575872e+00 1.4623749056039548e+00 0 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 502 -211 -2.4195366393456844e-01 -4.1762914372083715e-01 2.2267690430813665e+00 2.2827474309046689e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 211 -9.5664792320399805e-01 -5.6898863300089331e-01 2.3042302643435457e+00 2.5627875857104261e+00 1.3957000000000000e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 504 2112 -8.1727692019496700e-02 -7.6930558222772316e-01 7.4677160798239637e+00 7.5662464755155154e+00 9.3957000000000002e-01 1 0 0 0 0 P 505 111 -1.5481464172829310e-01 -4.1156257864191437e-01 1.4747024534892539e+00 1.5447712633781956e+00 1.3497999999999999e-01 2 0 0 -236 0 V -89 0 0 0 0 0 0 3 0 P 506 -211 -1.4150011947625833e-02 1.3969731424143009e-01 1.5139438318560889e+00 1.5268337412303556e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 211 1.1295674141612924e-01 5.1570126562592342e-02 1.4089775372807212e+00 1.4213079148610543e+00 1.3957000000000000e-01 1 0 0 0 0 P 508 111 -2.8881466021550867e-01 -1.5447264335569380e-01 1.1912200741742420e+00 1.2427793734273118e+00 1.3497999999999999e-01 2 0 0 -237 0 V -90 0 -1.8826369992639038e-04 -2.6016582494974645e-04 2.0244942435532478e-03 2.0499971857337622e-03 0 2 0 P 509 22 -1.0728583499859441e-01 -2.2522957304723273e-01 1.7003030013392453e+00 1.7185077559701698e+00 0 1 0 0 0 0 P 510 22 -8.0141500951152944e-01 -1.0305244832947136e+00 8.0714141674087028e+00 8.1763056076681764e+00 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 511 211 2.3397162559333770e-01 -2.4608338369973112e-01 2.8795117690657284e+00 2.9028206224987341e+00 1.3957000000000000e-01 1 0 0 0 0 P 512 111 -1.7590776815256473e-01 -9.9370415485664221e-02 2.0376752062532768e+00 2.0521105888693096e+00 1.3497999999999999e-01 2 0 0 -238 0 V -92 0 0 0 0 0 0 2 0 P 513 2212 5.1185620318870173e-01 -1.2273514641414722e+00 1.5363333546310722e+01 1.5449296315281462e+01 9.3827000000000005e-01 1 0 0 0 0 P 514 -211 2.7208064185582076e-01 6.6166333849768263e-02 2.7965981391791410e+00 2.8140445619016110e+00 1.3957000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 515 -2112 1.2764122655624119e+00 -1.8021651248511481e+00 1.4251820347438724e+01 1.4452480839270342e+01 9.3957000000000002e-01 1 0 0 0 0 P 516 -211 8.0157342318351463e-02 -9.1937969282575013e-02 2.6226831870013028e+00 2.6292251090392877e+00 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 517 211 5.9568904435150927e-01 -8.2890234441861388e-01 1.4305789144071424e+01 1.4342838190319059e+01 1.3957000000000000e-01 1 0 0 0 0 P 518 111 7.2555004226294725e-02 8.9856123327262963e-02 3.7100198801768132e+00 3.7142705156254920e+00 1.3497999999999999e-01 2 0 0 -239 0 V -95 0 0 0 0 0 0 2 0 P 519 -211 6.1791418275312548e-01 -7.0739240753038402e-01 6.7516946873463155e+00 6.8181436543622018e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 111 2.0171347321742120e-01 -3.0093939527832841e-01 9.4002298791964716e+00 9.4081769874426797e+00 1.3497999999999999e-01 2 0 0 -240 0 V -96 0 0 0 0 0 0 2 0 P 521 211 1.5021766538901142e+00 -1.2209184441848424e+00 9.5270409180476587e+00 9.7227138693832611e+00 1.3957000000000000e-01 1 0 0 0 0 P 522 111 6.8387787465289684e-01 -8.3586286554243369e-02 3.3224236560009395e+00 3.3957906538970186e+00 1.3497999999999999e-01 2 0 0 -241 0 V -97 0 0 0 0 0 0 2 0 P 523 -211 9.5695898149625358e-01 -4.8308650728763607e-02 5.9873774449992059e+00 6.0651688081855397e+00 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -4.0471570153938721e-02 -1.7072967124737609e-01 2.1100858293520681e+00 2.1219633740400345e+00 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 3 0 P 525 211 5.1615703887420605e-01 -3.5916753983063776e-01 4.2978050111460186e+00 4.3458056916041716e+00 1.3957000000000000e-01 1 0 0 0 0 P 526 -211 6.6798912266008237e-01 -7.1985199391119503e-01 1.0328215231807583e+01 1.0375736408591550e+01 1.3957000000000000e-01 1 0 0 0 0 P 527 111 2.1624100415261405e-01 -4.1888012191845757e-02 1.4028263599271213e+00 1.4264137457093899e+00 1.3497999999999999e-01 2 0 0 -242 0 V -99 0 0 0 0 0 0 2 0 P 528 211 1.1083072049988385e+00 -5.0997574316938954e-01 6.4339824414566014e+00 6.5501167898859141e+00 1.3957000000000000e-01 1 0 0 0 0 P 529 111 1.0331770585056625e+00 1.1760558699207820e-01 7.5773931836096988e+00 7.6496008371501905e+00 1.3497999999999999e-01 2 0 0 -243 0 V -100 0 0 0 0 0 0 2 0 P 530 -211 -1.0729965497650057e-01 3.1199593501280497e-02 1.8090250041321243e+00 1.8178387940265643e+00 1.3957000000000000e-01 1 0 0 0 0 P 531 111 1.2328513557730907e+00 7.0386721750221037e-01 1.8825175041959696e+01 1.8879109790615871e+01 1.3497999999999999e-01 2 0 0 -244 0 V -101 0 0 0 0 0 0 2 0 P 532 211 1.4610366240076285e+00 6.6537709983572924e-01 2.0686292465795173e+01 2.0748964563731647e+01 1.3957000000000000e-01 1 0 0 0 0 P 533 -211 -1.2699260481059582e-01 -1.1581910927383914e-01 1.7497424874892382e+00 1.7636949127257222e+00 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 534 -211 6.8004726955913786e-01 1.1988285897579636e+00 1.8887298085863812e+01 1.8938034825335777e+01 1.3957000000000000e-01 1 0 0 0 0 P 535 211 9.1971863743292470e-01 9.1192887527868402e-02 1.3333247970678469e+01 1.3365970961635322e+01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 536 -211 -3.3641373420679127e-01 7.4632576485911561e-01 2.2255077952301701e+01 2.2270566916802562e+01 1.3957000000000000e-01 1 0 0 0 0 P 537 211 3.5649625214814035e-01 1.4453158315285297e+00 3.7573238532442844e+01 3.7602975427902116e+01 1.3957000000000000e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 538 -311 -3.3377793651777199e-01 1.2671747504038453e+00 3.7667400077563990e+01 3.7693472161518031e+01 4.9767000000000000e-01 2 0 0 -245 0 P 539 -211 2.3494674404163052e-01 3.5741039479769332e-01 1.2996505933982524e+01 1.3004291154837627e+01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 3 0 P 540 -211 4.2394342516510974e-01 4.2273056737583564e-01 9.0148783041806375e+00 9.0358142845247436e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 3.5254021583888795e-01 8.6292859871111391e-02 6.6286191863814956e+00 6.6400152985074774e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 111 4.4878327872146762e-01 4.7493164206141264e-01 1.9408311343492606e+01 1.9419776911752486e+01 1.3497999999999999e-01 2 0 0 -246 0 V -106 0 0 0 0 0 0 2 0 P 543 311 -4.6034052579918833e-01 4.3041338591680411e-01 3.9168073497787084e+01 3.9176304394868851e+01 4.9767000000000000e-01 2 0 0 -247 0 P 544 211 1.2238694523028447e-01 3.2941441684917694e-01 9.1253101181783496e+00 9.1331405858126953e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 545 211 5.8018189018029298e-01 -1.2724993592723803e+00 4.0227716057767182e+01 4.0252260615452165e+01 1.3957000000000000e-01 1 0 0 0 0 P 546 111 2.1466155175307599e-02 -2.2832815404099260e-02 1.4560001141104577e+01 1.4560660526316925e+01 1.3497999999999999e-01 2 0 0 -248 0 V -108 0 0 0 0 0 0 2 0 P 547 211 4.7044609378542435e-01 -8.5471648363558125e-02 5.1576852402911214e+01 5.1579257541248303e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 5.4443005123579191e-01 5.4746951072158900e-01 2.8074731028964855e+01 2.8085670169945747e+01 1.3497999999999999e-01 2 0 0 -249 0 V -109 0 0 0 0 0 0 3 0 P 549 -211 3.7283782790480025e-01 5.5057640819483937e-02 2.2224717565077579e+01 2.2228351041453735e+01 1.3957000000000000e-01 1 0 0 0 0 P 550 211 9.8496076792554532e-01 -3.2164929945713572e-01 5.2503799669380264e+01 5.2514208224950977e+01 1.3957000000000000e-01 1 0 0 0 0 P 551 111 2.0812166371900040e-01 -2.5347229442739261e-01 2.5466824491220606e+01 2.5469293906545293e+01 1.3497999999999999e-01 2 0 0 -250 0 V -110 0 0 0 0 0 0 2 0 P 552 2212 8.9772260518628258e-02 -7.9037702288141498e-01 6.2301695155588590e+01 6.2313837345728018e+01 9.3827000000000005e-01 1 0 0 0 0 P 553 211 5.6355367898406721e-02 5.0680176983601208e-02 6.4461443728697212e+00 6.4481006093740527e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 554 22 9.8936043150707559e-02 -7.4191537725162890e-02 4.8866694953709837e+00 4.8882339839551108e+00 0 1 0 0 0 0 P 555 22 8.9672988842077250e-01 -1.2868864362954200e+00 1.9367283972872019e+02 1.9367919106031826e+02 0 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -2212 7.2418565495081222e-01 6.7115229622320666e-02 4.6521760285595327e+01 4.6536904495036822e+01 9.3827000000000005e-01 1 0 0 0 0 P 557 111 2.3674440843002328e-01 1.9776817892125962e-02 2.8414078571358715e+01 2.8415392302363085e+01 1.3497999999999999e-01 2 0 0 -251 0 V -113 0 0 0 0 0 0 2 0 P 558 211 2.0713372551638201e-01 -3.1989659231956441e-01 3.7442344991625248e+02 3.7442366987836567e+02 1.3957000000000000e-01 1 0 0 0 0 P 559 111 2.3481218782833962e-01 -1.2376522042384951e-01 5.0429986640256317e+01 5.0430865813806626e+01 1.3497999999999999e-01 2 0 0 -252 0 V -114 0 0 0 0 0 0 1 0 P 560 130 2.0415040959310582e-01 -7.0080528371231632e-01 1.3770998196966920e+02 1.3771281572515659e+02 4.9767000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 1 0 P 561 130 -1.6870292078225307e-02 8.6754163892089568e-03 4.1896206755344764e+02 4.1896236356498434e+02 4.9767000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 562 -211 5.0629213202588474e-01 1.4671904632678931e-01 7.2127104381394702e+01 7.2129165560340525e+01 1.3957000000000000e-01 1 0 0 0 0 P 563 111 1.2407774427078073e-01 -7.2818802848124017e-02 1.2933555420991121e+02 1.2933570466135774e+02 1.3497999999999999e-01 2 0 0 -253 0 V -117 0 -3.1664405119243548e-04 -9.8994169864328649e-04 1.8028078325137956e-01 1.8028378513784363e-01 0 2 0 P 564 22 -3.5421736668067821e-01 -1.0800122574804634e+00 1.8605502521605351e+02 1.8605849699641635e+02 0 1 0 0 0 0 P 565 22 -5.7276581134664151e-01 -1.8180661950101025e+00 3.4172136207522487e+02 3.4172667839065628e+02 0 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 566 211 3.2807464397832292e-01 -3.6413912646891144e-01 1.5166183274987463e+02 1.5166268896175913e+02 1.3957000000000000e-01 1 0 0 0 0 P 567 -211 1.1965829007923962e-01 -2.4951523301265902e-01 4.4282704769669991e+01 4.4283789330414614e+01 1.3957000000000000e-01 1 0 0 0 0 P 568 111 -1.1372060542056006e-01 -9.2928479233328615e-02 8.5522943240271957e+01 8.5523175854019414e+01 1.3497999999999999e-01 2 0 0 -254 0 V -119 0 0 0 0 0 0 2 0 P 569 211 -5.0066099303933209e-01 -2.5246836474808060e-01 1.7154525510488449e+02 1.7154622826075177e+02 1.3957000000000000e-01 1 0 0 0 0 P 570 111 3.3533050167288317e-02 -1.8390518387679836e-01 6.6181428900656059e+01 6.6181830561832470e+01 1.3497999999999999e-01 2 0 0 -255 0 V -120 0 0 0 0 0 0 2 0 P 571 -3222 -1.2778446418357627e+00 -1.1571479011726216e+00 1.7918530895658830e+02 1.7919754860225839e+02 1.1893700000000000e+00 2 0 0 -256 0 P 572 111 -9.9072075158030237e-02 -1.7772828489182785e-02 1.1023939853325734e+01 1.1025225650282721e+01 1.3497999999999999e-01 2 0 0 -257 0 V -121 0 0 0 0 0 0 2 0 P 573 3122 -1.1938001658098507e+00 -2.9561260141501888e+00 3.8038052483854045e+02 3.8039552081767908e+02 1.1156800000000000e+00 2 0 0 -258 0 P 574 22 -7.8554883692326646e-02 -5.6646001855475185e-02 7.5226479418260226e+00 7.5232713427030813e+00 0 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 575 -211 -1.0419227189265945e-02 2.9787916246991980e-02 5.3558573889895939e+01 5.3558765041630608e+01 1.3957000000000000e-01 1 0 0 0 0 P 576 211 1.3839720341180431e-01 8.2612123273630882e-04 7.4882232486139744e+00 7.4908024719899888e+00 1.3957000000000000e-01 1 0 0 0 0 V -123 0 2.0498882387209863e-04 3.1352899920183668e-05 6.8110188759116135e-03 6.8142871744535311e-03 0 2 0 P 577 22 1.6640466214580052e-01 3.9484558364287603e-02 7.6239595186910067e+00 7.6258775419339306e+00 0 1 0 0 0 0 P 578 22 5.4140621531139255e-01 6.8774629547240965e-02 1.5893972609864838e+01 1.5903339773858221e+01 0 1 0 0 0 0 V -124 0 -1.1149987370947467e-04 3.1179480176388473e-06 4.9609507794528438e-03 4.9622314543910171e-03 0 2 0 P 579 22 -1.8359297381025061e-01 -1.6161727067770689e-02 6.2093867868235666e+00 6.2121213647057321e+00 0 1 0 0 0 0 P 580 22 -7.3845685433263886e-01 4.1945643570790614e-02 3.4815267873669853e+01 3.4823123855824790e+01 0 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 581 211 -1.0761689688327174e+00 -5.6260609315590460e-01 3.7241268179674165e+01 3.7261323120373035e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 -211 -1.3654269694947801e-03 9.9896832986476183e-02 5.8896689262487136e+00 5.8921694720494262e+00 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 583 -211 -7.0869872030281458e-02 3.8713039002517324e-01 1.0191036840436750e+01 1.0199588430210392e+01 1.3957000000000000e-01 1 0 0 0 0 P 584 111 -1.2257962412792784e+00 5.2618317092466138e-01 1.4512576145048323e+01 1.4574379270511811e+01 1.3497999999999999e-01 2 0 0 -259 0 V -127 0 0 0 0 0 0 2 0 P 585 211 -5.2346723075648038e-01 4.7297633618882112e-01 8.8569938803908173e+00 8.8861434232433396e+00 1.3957000000000000e-01 1 0 0 0 0 P 586 111 -4.8812376250220185e-01 9.4130946359606937e-01 7.4390463548562291e+00 7.5154479962191596e+00 1.3497999999999999e-01 2 0 0 -260 0 V -128 0 0 0 0 0 0 2 0 P 587 22 -4.2350683884328430e-02 2.1727520736168033e-02 2.8645436503262761e-01 2.9038210831429812e-01 0 1 0 0 0 0 P 588 113 -1.3900916970516375e+00 2.8883400846876910e+00 1.3307358845846391e+01 1.3717782840871815e+01 9.0382700013077677e-01 2 0 0 -261 0 V -129 0 0 0 0 0 0 3 0 P 589 -211 8.1634707709878074e-02 1.1964147688954871e-01 4.8916991755417449e-01 5.2890954012491354e-01 1.3957000000000000e-01 1 0 0 0 0 P 590 211 -1.4811748204494779e-01 2.8908871969084254e-01 1.8721283857392554e+00 1.9052179806863299e+00 1.3957000000000000e-01 1 0 0 0 0 P 591 111 -2.1921564965875803e-01 9.5898313268050872e-01 2.8928769469231557e+00 3.0585389943992003e+00 1.3497999999999999e-01 2 0 0 -262 0 V -130 0 -1.1932428906351487e-05 1.6822943449541051e-04 2.8447396550995474e-04 3.3138633411834007e-04 0 2 0 P 592 22 -2.0199582874968029e-02 9.1457254525072662e-01 1.5693025970658407e+00 1.8164695441521472e+00 0 1 0 0 0 0 P 593 22 -5.5901074150415703e-02 1.5833311348694651e-01 2.4496806415725600e-01 2.9699100554493923e-01 0 1 0 0 0 0 V -131 0 0 0 0 0 0 2 0 P 594 -211 -5.7859143974976796e-02 2.5660954762939264e-01 6.4576354279490311e-01 7.1111636078711005e-01 1.3957000000000000e-01 1 0 0 0 0 P 595 111 -1.7875734539240569e+00 3.6117136089768382e+00 1.4918983786257140e+01 1.5454261252529864e+01 1.3497999999999999e-01 2 0 0 -263 0 V -132 0 0 0 0 0 0 2 0 P 596 211 -3.1888365750145370e-01 3.2323661921525509e-01 1.2105294272954392e+00 1.3003960851492273e+00 1.3957000000000000e-01 1 0 0 0 0 P 597 111 6.4014625202215274e-03 1.3344743753135846e+00 1.4959715136555809e+00 2.0092319943600216e+00 1.3497999999999999e-01 2 0 0 -264 0 V -133 0 0 0 0 0 0 2 0 P 598 321 5.4891113084354226e-01 3.4463247627074982e+00 5.5993862423066876e+00 6.6162848374407401e+00 4.9359999999999998e-01 1 0 0 0 0 P 599 -211 5.9480490588284307e-01 1.4091850637831032e+00 2.2338314414228897e+00 2.7109183155604581e+00 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 600 3122 8.8379673402380754e-01 1.4754649465076939e+00 4.4439448064211131e+00 4.8940250081462890e+00 1.1156800000000000e+00 2 0 0 -265 0 P 601 211 1.9565518487641511e-02 -1.2051161087635496e-02 4.7493996375819503e-01 4.9555604533885567e-01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 602 -2212 6.1643053053912056e-01 3.0595663724795630e+00 4.0545847687540322e+00 5.2020131897661201e+00 9.3827000000000005e-01 1 0 0 0 0 P 603 -211 1.2754249709566381e-01 4.4160529957462502e-01 2.6557554034749670e-01 5.4890115841438758e-01 1.3957000000000000e-01 1 0 0 0 0 V -136 0 5.8942595345486798e-04 5.1557142790785329e-04 7.1213457287339044e-04 1.0593110712896771e-03 0 2 0 P 604 22 7.0590552916257587e-01 6.8167362269079856e-01 9.5241445501522548e-01 1.3675067963621395e+00 0 1 0 0 0 0 P 605 22 1.1865507198023433e+00 9.7365961265967360e-01 1.3340195145765170e+00 2.0335987109700406e+00 0 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 606 22 2.0675761631360356e+00 5.9136291871692004e-01 2.6294905087296438e+00 3.3968811618160868e+00 0 1 0 0 0 0 P 607 22 1.1208629108983520e-02 2.0574551260949370e-02 -2.5599063386343952e-02 3.4702414503176356e-02 0 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 608 211 7.0169429710672337e-01 1.9449645643873750e-01 9.1210394023992836e-01 1.1754221117796479e+00 1.3957000000000000e-01 1 0 0 0 0 P 609 111 -1.1071545752856878e-01 -7.9740210605674003e-02 3.8927895408724417e-01 4.3402087302162817e-01 1.3497999999999999e-01 2 0 0 -266 0 V -139 0 0 0 0 0 0 2 0 P 610 211 1.8264951662252589e+00 -1.9369286359490594e+00 2.3927719347655789e+00 3.5822638721492210e+00 1.3957000000000000e-01 1 0 0 0 0 P 611 -211 4.6400462272493703e-01 -3.9323025106699533e-01 8.5236255724110865e-01 1.0563768428694968e+00 1.3957000000000000e-01 1 0 0 0 0 V -140 0 1.0098895153366424e-05 -1.3875257422243001e-04 5.2547695111472007e-05 1.4935316434538953e-04 0 2 0 P 612 22 -3.3207538895510609e-03 -5.4193516108208639e-01 1.5067614191380338e-01 5.6250159641150388e-01 0 1 0 0 0 0 P 613 22 1.0199533274046856e-01 -8.1379253169577159e-01 3.6275840770447620e-01 8.9680265103585599e-01 0 1 0 0 0 0 V -141 0 0 0 0 0 0 2 0 P 614 311 3.5306258372593724e-01 -4.3580972409636198e-01 8.9362671032105956e-01 1.1665450826879433e+00 4.9767000000000000e-01 2 0 0 -267 0 P 615 211 1.3021728819698777e-01 -5.3601655292434502e-01 2.0907212918579671e-01 6.0618580258577237e-01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 3 0 P 616 -211 1.0225408389665154e-01 -3.6839039430775572e-01 5.0154480358311149e-01 6.4590584081039948e-01 1.3957000000000000e-01 1 0 0 0 0 P 617 211 2.3213662820597933e-01 -5.0634764217543593e-01 4.6805406631947505e-01 7.4083044132220965e-01 1.3957000000000000e-01 1 0 0 0 0 P 618 111 1.0880127357206502e-01 -6.7681274404050562e-01 4.4966750414965584e-01 8.3086320914740419e-01 1.3497999999999999e-01 2 0 0 -268 0 V -143 0 0 0 0 0 0 2 0 P 619 311 -3.3850470440249802e-01 2.0664781458469339e-01 3.6108515778279709e-01 7.3167388517445386e-01 4.9767000000000000e-01 2 0 0 -269 0 P 620 211 1.6138291189423895e-01 -7.9713228373449116e-02 4.1410333780445752e-01 4.7260977805159088e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 -1.6852163360117574e-04 1.4419068303024162e-04 -2.3028462895586225e-04 3.2186800523010059e-04 0 2 0 P 621 22 -2.7307692206385409e-01 2.6758782762258354e-01 -4.8580793356949770e-01 6.1820999601648896e-01 0 1 0 0 0 0 P 622 22 -3.3980661731032780e-01 2.5680832420619099e-01 -3.5169675613672868e-01 5.5236732418434864e-01 0 1 0 0 0 0 V -145 0 1.2614164915614846e-04 2.5594146713840715e-04 -1.8029404188121779e-04 3.3837908114022017e-04 0 2 0 P 623 22 3.6667800772716225e-01 8.7384068311211160e-01 -6.3648472716772297e-01 1.1415616972947076e+00 0 1 0 0 0 0 P 624 22 3.4232634306054249e-01 5.6472948750210394e-01 -3.7689397027301319e-01 7.6036555947501216e-01 0 1 0 0 0 0 V -146 0 0 0 0 0 0 3 0 P 625 -211 -5.9820060308685532e-03 6.7210935446856801e-01 -3.2404384071150810e-01 7.5911195772650941e-01 1.3957000000000000e-01 1 0 0 0 0 P 626 211 -1.9430803625200921e-01 1.3309219098045031e+00 -1.4889918130568008e-01 1.3604262177873814e+00 1.3957000000000000e-01 1 0 0 0 0 P 627 111 -1.8558189319360063e-01 2.0810873225876683e-01 -5.2552536076756050e-02 3.1421529716385682e-01 1.3497999999999999e-01 2 0 0 -270 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 -3.2909452997644867e-01 1.0632035449706957e-01 -4.3638417660051243e-01 5.7403672524335014e-01 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -1.8446492526421149e-01 -1.0061992836473337e-01 -1.6486020800818174e-01 3.0134755967380283e-01 1.3957000000000000e-01 1 0 0 0 0 P 630 111 -6.1481617434718427e-01 5.8779103612700512e-01 -9.5568469630580144e-01 1.2864874929602998e+00 1.3497999999999999e-01 2 0 0 -271 0 V -148 0 0 0 0 0 0 2 0 P 631 -2212 -7.0650637518005127e-02 7.7582342497268408e-01 -1.6485498019844562e+00 2.0506000443384949e+00 9.3827000000000005e-01 1 0 0 0 0 P 632 111 -2.4139843213014175e-01 3.6032805013712743e-01 -1.0465362556987683e+00 1.1408624990078833e+00 1.3497999999999999e-01 2 0 0 -272 0 V -149 0 0 0 0 0 0 2 0 P 633 22 -1.1963439933353492e+00 3.5640829136630631e-01 -3.7789310540145080e+00 3.9797720702999340e+00 0 1 0 0 0 0 P 634 22 -9.1254433393699552e-01 3.6722687150764605e-01 -4.8940748280904263e+00 4.9919496351131336e+00 0 1 0 0 0 0 V -150 0 -2.6127993076511619e-04 2.1871315198656910e-04 -1.2435591360782461e-03 1.2895375977659107e-03 0 3 0 P 635 22 -4.9035158122366984e-01 3.3558897556135281e-01 -2.1321212480389233e+00 2.2133697499663105e+00 0 1 0 0 0 0 P 636 -11 -8.8792321177652289e-01 7.9480118161798330e-01 -4.3582673440391533e+00 4.5182530972192092e+00 5.1000000000000004e-04 1 0 0 0 0 P 637 11 -4.6709203181671471e-01 4.1433619683207806e-01 -2.2926157806525445e+00 2.3761180164270068e+00 5.1000000000000004e-04 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 638 211 -2.1486015791877905e-01 5.1659795752074356e-02 -2.5401673709875219e+00 2.5535786025669323e+00 1.3957000000000000e-01 1 0 0 0 0 P 639 111 -1.2198806182343458e+00 7.1696291052507233e-01 -5.0210713515200638e+00 5.2183830498793311e+00 1.3497999999999999e-01 2 0 0 -273 0 V -152 0 0 0 0 0 0 3 0 P 640 -211 -4.1172759516140495e-02 5.0283709435319568e-02 -7.8641395667907577e-01 8.0134283781686655e-01 1.3957000000000000e-01 1 0 0 0 0 P 641 211 -1.0471962130500487e-01 -1.4818854317707633e-01 -1.9763795339445529e+00 1.9895933982877245e+00 1.3957000000000000e-01 1 0 0 0 0 P 642 111 -2.6188424209468703e-01 -1.1962699395833949e-01 -2.6866520874830049e+00 2.7054044084975177e+00 1.3497999999999999e-01 2 0 0 -274 0 V -153 0 -5.8146777898056993e-05 4.0829031882102594e-05 -3.5492631481402032e-04 3.6218085977185194e-04 0 2 0 P 643 22 -2.2272460357404186e-01 9.9120137670941980e-02 -1.4250145972309665e+00 1.4457170030993116e+00 0 1 0 0 0 0 P 644 22 -4.0926888101702247e-01 3.4464791043808185e-01 -2.4326560524762337e+00 2.4908028161192357e+00 0 1 0 0 0 0 V -154 0 0 0 0 0 0 2 0 P 645 211 -4.0207323654080904e-02 -2.3336989659968507e-01 -2.8211507230290134e+00 2.8345104205949738e+00 1.3957000000000000e-01 1 0 0 0 0 P 646 111 -6.5500669537376499e-01 -4.1688716376170276e-02 -8.5900062747884505e+00 8.6161011554741229e+00 1.3497999999999999e-01 2 0 0 -275 0 V -155 0 0 0 0 0 0 3 0 P 647 -211 8.1195430528100729e-02 4.8126934695061595e-02 -2.7185381860213167e+00 2.7237544958270115e+00 1.3957000000000000e-01 1 0 0 0 0 P 648 211 -3.2703565380587740e-01 6.0348630077902532e-01 -1.3016489169944023e+01 1.3035321941949046e+01 1.3957000000000000e-01 1 0 0 0 0 P 649 111 -5.1871763608867298e-02 5.8072526121428769e-01 -1.4858320162875751e+01 1.4870367519728367e+01 1.3497999999999999e-01 2 0 0 -276 0 V -156 0 0 0 0 0 0 3 0 P 650 -211 -2.9278191360269479e-01 7.4486931716611737e-01 -3.4400897331529585e+01 3.4410489222734505e+01 1.3957000000000000e-01 1 0 0 0 0 P 651 211 1.5174545544763476e-01 2.4456688606703988e-01 -1.1588163444181712e+01 1.1592577428638503e+01 1.3957000000000000e-01 1 0 0 0 0 P 652 111 9.7712865398797335e-03 2.7201581994425104e-02 -1.0166932832826539e+01 1.0167869896478313e+01 1.3497999999999999e-01 2 0 0 -277 0 V -157 0 -3.8702611807304975e-05 7.9158504268901202e-05 -3.3676246779311566e-03 3.3690774444045685e-03 0 2 0 P 653 22 1.5114120314660221e-02 6.5003942584138039e-02 -1.3206584500158487e+00 1.3223436356645846e+00 0 1 0 0 0 0 P 654 22 -1.3126516808930083e-01 1.7255995250603356e-01 -8.7859756138798542e+00 8.7886503496984041e+00 0 1 0 0 0 0 V -158 0 0 0 0 0 0 3 0 P 655 -211 -2.8115128279042234e-01 1.2515332844498157e+00 -4.6959275752590479e+01 4.6976999059099469e+01 1.3957000000000000e-01 1 0 0 0 0 P 656 211 -2.0670708799936385e-01 3.5370529785378457e-01 -1.9585463905618877e+01 1.9590245313450232e+01 1.3957000000000000e-01 1 0 0 0 0 P 657 111 1.1593902928654264e-01 2.5131288494250187e-01 -1.5706002790251592e+01 1.5709021079381134e+01 1.3497999999999999e-01 2 0 0 -278 0 V -159 0 0 0 0 0 0 3 0 P 658 211 -1.6125922895463202e-01 2.9980622571268956e-01 -2.3479486923058531e+01 2.3482369434681750e+01 1.3957000000000000e-01 1 0 0 0 0 P 659 -211 -8.1207786480590363e-02 8.4066200692198792e-02 -2.7212474684646897e+00 2.7273300864049039e+00 1.3957000000000000e-01 1 0 0 0 0 P 660 111 -6.1493109744252351e-02 -4.1414101472801480e-02 -2.0504995005485784e+00 2.0562743816175866e+00 1.3497999999999999e-01 2 0 0 -279 0 V -160 0 0 0 0 0 0 2 0 P 661 211 2.3539790072071735e-02 2.5496785100277347e-01 -7.6466656980130052e+00 7.6522244353410294e+00 1.3957000000000000e-01 1 0 0 0 0 P 662 111 -8.0806835152320644e-01 1.1631757179562816e+00 -1.1105173334907626e+02 1.1106084661862754e+02 1.3497999999999999e-01 2 0 0 -280 0 V -161 0 0 0 0 0 0 1 0 P 663 310 -5.9348308687469264e-01 -1.9720386623097619e-01 -1.0423437921016395e+02 1.0423744335072892e+02 4.9767000000000000e-01 2 0 0 -281 0 V -162 0 0 0 0 0 0 3 0 P 664 211 2.6307898202694135e-01 4.8408925497057798e-01 -1.5740105179687885e+02 1.5740207793897196e+02 1.3957000000000000e-01 1 0 0 0 0 P 665 -211 6.8950777969144325e-02 -5.2528715792995929e-02 -1.9750315711917118e+01 1.9750999062859215e+01 1.3957000000000000e-01 1 0 0 0 0 P 666 111 -7.0554114400180695e-02 2.1826704835321936e-01 -8.6978803987751434e+01 8.6979211200881451e+01 1.3497999999999999e-01 2 0 0 -282 0 V -163 0 0 0 0 0 0 3 0 P 667 -211 1.3608612391748631e-01 -3.0977568713890080e-01 -8.5754854622550809e+01 8.5755635683779929e+01 1.3957000000000000e-01 1 0 0 0 0 P 668 211 2.1462611756692171e-01 1.8854417826677815e-02 -8.6633841104431639e+01 8.6634221437906518e+01 1.3957000000000000e-01 1 0 0 0 0 P 669 111 1.4775845273266766e-02 -9.7004449080551711e-02 -1.1175411295622290e+01 1.1176657166410143e+01 1.3497999999999999e-01 2 0 0 -283 0 V -164 0 1.0797370126824733e-04 -2.0417892654483907e-04 -6.9222834260077068e-02 6.9223224534472313e-02 0 2 0 P 670 22 5.2105434884150992e-01 -9.9512371947502420e-01 -3.2519138680664128e+02 3.2519332684124697e+02 0 1 0 0 0 0 P 671 22 3.5964264353538680e-02 -5.8201869735890997e-02 -3.1917860056955899e+01 3.1917933383935932e+01 0 1 0 0 0 0 V -165 0 -1.1477786277219017e-04 -5.9902378423304232e-05 -2.7909754267203428e-02 2.7910071886620105e-02 0 3 0 P 672 22 -1.6345390773987434e-01 -1.5721956467236259e-01 -4.4474404873845067e+01 4.4474983125957053e+01 0 1 0 0 0 0 P 673 11 -4.0764400868836245e-02 -9.3764270690769713e-03 -9.4912519744017434e+00 9.4913441595723302e+00 5.1000000000000004e-04 1 0 0 0 0 P 674 -11 -2.9394030053493908e-01 -9.3392169729885857e-02 -6.7168192759029665e+01 6.7168900852789832e+01 5.1000000000000004e-04 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 675 -211 2.4510363015315664e-01 -8.6499436502076421e-01 -1.0759919095254132e+02 1.0760303743141911e+02 1.3957000000000000e-01 1 0 0 0 0 P 676 211 7.1449523601080756e-02 8.6404549160473978e-02 -3.0485257035005564e+01 3.0485782703676719e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 3 0 P 677 -211 -6.6575644861117778e-02 -3.4388988880666144e-01 -3.7006227852531751e+01 3.7008148727415545e+01 1.3957000000000000e-01 1 0 0 0 0 P 678 211 -4.8252891519133262e-01 -3.0150429484024244e-01 -1.1705409443893721e+02 1.1705556049884318e+02 1.3957000000000000e-01 1 0 0 0 0 P 679 111 -1.1986254154060665e-01 -3.9439769261289803e-01 -8.3231094948018381e+01 8.3232225143962438e+01 1.3497999999999999e-01 2 0 0 -284 0 V -168 0 1.1088746580329787e-06 -2.7547957486963582e-06 -1.4981273559173781e-04 1.4985839522479056e-04 0 2 0 P 680 22 1.6243193665859072e-02 -4.9851344130807792e-03 -1.2304041417457111e-01 1.2420803688100518e-01 0 1 0 0 0 0 P 681 22 5.1620661298850748e-02 -1.6361016875541204e-01 -9.0455970746639061e+00 9.0472238513900756e+00 0 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 682 -211 -6.2898847106668865e-01 -1.0095620888807022e+00 -7.9397281499311887e+01 7.9406313548570637e+01 1.3957000000000000e-01 1 0 0 0 0 P 683 111 -1.3934168967114149e-01 -7.9552971731192537e-02 -6.9366490397223743e+01 6.9366807295783232e+01 1.3497999999999999e-01 2 0 0 -285 0 V -170 0 0 0 0 0 0 2 0 P 684 211 9.2206842565081604e-02 1.5121846486217513e-01 -1.1223868414120208e+01 1.1226133398829553e+01 1.3957000000000000e-01 1 0 0 0 0 P 685 111 -5.8432758652778405e-01 -2.9740534809344821e-01 -4.5678591020387820e+01 4.5683495771205017e+01 1.3497999999999999e-01 2 0 0 -286 0 V -171 0 -2.8381138146716165e-05 -1.1846227692641554e-05 -4.0867453853275417e-03 4.0868626265224460e-03 0 2 0 P 686 22 -4.9423644862721894e-01 -1.8703050689082032e-01 -7.8833192026092561e+01 7.8834963151513207e+01 0 1 0 0 0 0 P 687 22 -5.9097613481912414e-01 -2.6593495531044153e-01 -7.7432123852787072e+01 7.7434835691345924e+01 0 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 688 311 -6.8579706169248711e-01 -2.2973230726990125e-02 -6.4190221766380077e+01 6.4195818331298739e+01 4.9767000000000000e-01 2 0 0 -287 0 P 689 211 -9.1815681437629093e-01 -2.6845463926666352e-01 -1.0520559770767908e+02 1.0521003920084831e+02 1.3957000000000000e-01 1 0 0 0 0 V -173 0 0 0 0 0 0 2 0 P 690 -321 5.1394556316450318e-02 1.5319735362284043e-01 -1.6132037430260672e+02 1.6132121037520983e+02 4.9359999999999998e-01 1 0 0 0 0 P 691 111 -4.2601222881249491e-02 -3.7959076544950932e-01 -9.3555103653585945e+01 9.3555980798915343e+01 1.3497999999999999e-01 2 0 0 -288 0 V -174 0 0 0 0 0 0 3 0 P 692 211 -8.1294095163777169e-02 1.4858317862968115e-01 -5.0903004129859760e+01 5.0903477238007028e+01 1.3957000000000000e-01 1 0 0 0 0 P 693 -211 -1.0163942015069490e-03 6.0429272283912080e-02 -3.2450843705831993e+01 3.2451200127811020e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 221 3.3230738457539705e-01 5.4845961151514758e-02 -1.9612218181482487e+02 1.9612323507832269e+02 5.4744999999999999e-01 2 0 0 -289 0 V -175 0 0 0 0 0 0 2 0 P 695 211 3.6788222607688975e-01 2.9531777972374364e-02 -5.7474485719893252e+01 5.7475840124432167e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 111 -5.7142282165551277e-02 -1.1446001975460166e-01 -2.8543775571057387e+02 2.8543781629459363e+02 1.3497999999999999e-01 2 0 0 -290 0 V -176 0 0 0 0 0 0 2 0 P 697 2212 2.8455583307833465e-01 2.1637481062513814e-01 -9.2745746222668981e+02 9.2745800572351823e+02 9.3827000000000005e-01 1 0 0 0 0 P 698 -211 1.4757349631074615e-01 -2.4160972819825360e-01 -4.1109213002255751e+02 4.1109225120338357e+02 1.3957000000000000e-01 1 0 0 0 0 V -177 0 0 0 0 0 0 3 0 P 699 111 -5.0492579643297099e-02 -1.7773396255903151e-01 -8.7348101401464442e-02 2.4492479103678017e-01 1.3497999999999999e-01 2 0 0 -291 0 P 700 111 1.4826010992471267e-01 -2.0159888303632484e-01 -3.3751818126748531e-02 2.8632491240414754e-01 1.3497999999999999e-01 2 0 0 -292 0 P 701 111 -6.7759832279894169e-02 -5.3830306260598038e-02 5.7586979295265656e-02 1.7036712513587390e-01 1.3497999999999999e-01 2 0 0 -293 0 V -178 0 0 0 0 0 0 2 0 P 702 211 -2.3248781206990840e-01 2.2224653010041720e-01 -1.0068124064250454e+00 1.0661121467904395e+00 1.3957000000000000e-01 1 0 0 0 0 P 703 111 4.0982234848412569e-01 -1.9507829550216929e-01 -7.7206242635143973e-01 9.0570960537953227e-01 1.3497999999999999e-01 2 0 0 -294 0 V -179 0 -3.3413268522967398e-05 5.0095449850033145e-06 -1.7218204427422439e-05 4.5767842808433162e-05 0 2 0 P 704 22 -6.8189431190022340e-02 -2.0372722388640834e-02 2.5708866526940322e-02 7.5668964322524276e-02 0 1 0 0 0 0 P 705 22 -1.0780917791030027e-01 4.6759633593692243e-02 -1.1640277838858183e-01 1.6540522661661095e-01 0 1 0 0 0 0 V -180 0 0 0 0 0 0 2 0 P 706 211 -1.9191456561370668e-01 -2.0090993707005986e+00 -1.2402929477342843e+01 1.2566839335596052e+01 1.3957000000000000e-01 1 0 0 0 0 P 707 -211 -1.7043308401274399e-02 -2.9028902785796978e-01 -8.8009437561243165e-01 9.3733883358187076e-01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 708 211 3.0125263001650704e-01 -1.7813530824004853e-01 -2.2565945761379519e-01 4.3918937924794105e-01 1.3957000000000000e-01 1 0 0 0 0 P 709 111 -3.4381653723768241e-01 -1.0967510439343482e+00 -1.8455518491643106e+00 2.1783833207227326e+00 1.3497999999999999e-01 2 0 0 -295 0 V -182 0 -2.9085031072621381e-05 -6.4354470034234788e-05 -4.1384336360194695e-04 4.1983520933408882e-04 0 2 0 P 710 22 -1.3164743158330210e+00 -2.8226867945068523e+00 -1.8278629682446372e+01 1.8542086409898456e+01 0 1 0 0 0 0 P 711 22 -8.5940234016522565e-02 -2.8034049463446548e-01 -1.6759632153544013e+00 1.7014197647775740e+00 0 1 0 0 0 0 V -183 0 0 0 0 0 0 2 0 P 712 -211 3.9018766020248691e-01 -7.1932236871815969e-01 -5.1222226954685954e+00 5.1890573524664534e+00 1.3957000000000000e-01 1 0 0 0 0 P 713 111 -8.7471186168032775e-02 -6.2006297439592101e-02 -2.4917132074967596e-01 3.0298834435659022e-01 1.3497999999999999e-01 2 0 0 -296 0 V -184 0 0 0 0 0 0 2 0 P 714 211 4.3504492446328133e-02 -3.4030513319139577e-01 2.9803048055567150e-01 4.7539686239990131e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -1.2387376196293283e-01 3.6165090118479454e-01 4.9989829458322177e-01 6.4362565871618027e-01 1.3497999999999999e-01 2 0 0 -297 0 V -185 0 0 0 0 0 0 1 0 P 716 130 7.8247670403502126e-02 2.0703273050152021e-01 -9.1777284087718813e-01 1.0672242809148762e+00 4.9767000000000000e-01 1 0 0 0 0 V -186 0 0 0 0 0 0 1 0 P 717 310 1.7411155450783702e-01 3.4740871424399039e-01 8.0662754813928628e-01 1.0243686243062087e+00 4.9767000000000000e-01 2 0 0 -298 0 V -187 0 0 0 0 0 0 1 0 P 718 130 -3.1171137919313420e-03 2.5749281338306781e-02 2.8611728869490238e+00 2.9042483467844211e+00 4.9767000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 2 0 P 719 321 2.0481991874729438e-01 2.6999476879636825e-01 2.6315816965083783e+00 2.6988352227749970e+00 4.9359999999999998e-01 1 0 0 0 0 P 720 -321 3.4287063938144380e-01 5.7566122465157743e-01 4.1023860128534260e+00 4.1859476919059349e+00 4.9359999999999998e-01 1 0 0 0 0 V -189 0 0 0 0 0 0 2 0 P 721 -311 -3.2614549201173154e-01 4.4600559803029000e-01 3.3376167968643569e+00 3.4194521764523951e+00 4.9767000000000000e-01 2 0 0 -299 0 P 722 111 1.9825160279638121e-01 -2.4631024342073676e-02 1.0946308195020185e+00 1.1208686884622723e+00 1.3497999999999999e-01 2 0 0 -300 0 V -190 0 0 0 0 0 0 2 0 P 723 -211 3.4925400855626043e-01 9.0146074144150834e-01 2.1072864732716110e+00 2.3226592294579924e+00 1.3957000000000000e-01 1 0 0 0 0 P 724 111 6.6681847859437804e-01 4.8525057750370265e-01 9.8913029286114362e-01 1.2948796635279163e+00 1.3497999999999999e-01 2 0 0 -301 0 V -191 0 0 0 0 0 0 2 0 P 725 321 1.1500365287339610e-01 9.8956540080223909e-01 6.5223518158908700e+00 6.6164325503169792e+00 4.9359999999999998e-01 1 0 0 0 0 P 726 22 3.2465014317699675e-01 9.8979907195481651e-02 3.0645849146235538e+00 3.0833221428244451e+00 0 1 0 0 0 0 V -192 0 0 0 0 0 0 2 0 P 727 -311 4.6031785040445838e-01 6.1985924806143555e-01 5.7349262430130743e-01 1.0829068426398782e+00 4.9767000000000000e-01 2 0 0 -302 0 P 728 -211 -6.5811845926182805e-02 -8.9696467396509355e-02 1.7855755063189138e-01 2.5246631283259385e-01 1.3957000000000000e-01 1 0 0 0 0 V -193 0 -1.2943697848960713e-04 -5.3395080106759753e-05 3.0731545068345633e-04 3.3975715925715384e-04 0 2 0 P 729 22 -1.5468436440039826e-01 -1.0974159366133281e-01 5.3149118557504094e-01 5.6431671099945901e-01 0 1 0 0 0 0 P 730 22 -3.1441209453868507e-01 -8.3769127116662054e-02 5.8226001114694481e-01 6.6700746055117766e-01 0 1 0 0 0 0 V -194 0 3.3014456595586168e-02 -4.4255028428407464e-02 -5.4261094858261680e-02 8.4823961423090788e-02 0 2 0 P 731 -321 6.0420461744266296e-02 -2.8438832518406215e-01 -1.2579904000759661e+00 1.3822836750760226e+00 4.9359999999999998e-01 1 0 0 0 0 P 732 211 1.7147757725734176e+00 -2.0952164878854389e+00 -1.6596433033125895e+00 3.1787236055439108e+00 1.3957000000000000e-01 1 0 0 0 0 V -195 0 2.1968233192435943e-05 -3.1539907030325892e-05 -3.0579406693498356e-05 5.7443222815645267e-05 0 2 0 P 733 22 2.9531631856442954e-02 1.8860254518646771e-02 -5.5000113484468469e-02 6.5213794276341733e-02 0 1 0 0 0 0 P 734 22 7.0018168281182541e-02 -1.6178442205294438e-01 -8.3571513919463700e-02 1.9509213476521381e-01 0 1 0 0 0 0 V -196 0 1.6382978723370940e-05 7.3507216930669008e-06 1.8370093906825598e-04 1.9214909608309934e-04 0 2 0 P 735 22 -1.5305290310823999e-02 2.7782927027936032e-03 -1.9685836493601645e-03 1.5679481605765159e-02 0 1 0 0 0 0 P 736 22 5.6707759895635701e-02 1.5798184533880596e-02 4.6621093364552035e-01 4.6991274436598907e-01 0 1 0 0 0 0 V -197 0 2.8084940574281034e-06 2.3579915057967020e-05 1.0078226046336519e-04 1.0364674594329100e-04 0 2 0 P 737 22 8.4710136492625335e-02 1.9415426741285235e-01 8.4579914210982610e-01 8.7192194350924468e-01 0 1 0 0 0 0 P 738 22 -3.3007728060402293e-03 4.8935292234803018e-01 2.0755599661703164e+00 2.1324695427791220e+00 0 1 0 0 0 0 V -198 0 9.4659235456519160e-06 1.9347836440621945e-05 5.2876345785763616e-03 5.2876853060612843e-03 0 2 0 P 739 22 -3.9249127675122976e-04 1.1131660800456575e-01 3.5543099214626835e+01 3.5543273531317759e+01 0 1 0 0 0 0 P 740 22 1.5043447990737288e-01 1.9536111247886090e-01 4.8269875134406675e+01 4.8270504886402684e+01 0 1 0 0 0 0 V -199 0 -2.6164465645005853e-05 5.3442940417474537e-06 4.5761041785958292e-03 4.5763799528635105e-03 0 2 0 P 741 22 2.1556796640146297e-02 -3.4375964224496243e-02 4.9345647359067728e+00 4.9347315565542598e+00 0 1 0 0 0 0 P 742 22 -1.0454886589872749e-01 5.1327734891962067e-02 9.5805551246434266e+00 9.5812630429427870e+00 0 1 0 0 0 0 V -200 0 2.5168927586737157e-04 -1.1315110738972102e-04 -3.7606120251345325e-03 3.7707240001076271e-03 0 2 0 P 743 22 4.8327632830253666e+00 -2.1710496909823984e+00 -7.1323379059962264e+01 7.1519881559196790e+01 0 1 0 0 0 0 P 744 22 9.0173892845915748e+00 -4.0555171547510875e+00 -1.3561849447133022e+02 1.3597844156914203e+02 0 1 0 0 0 0 V -201 0 1.7582241859410668e-04 -2.3270331522103998e-04 -4.7581513406034859e-03 4.7671889665407315e-03 0 2 0 P 745 22 3.3285486740463810e-01 -4.4742779736517541e-01 -8.0190802506013235e+00 8.0384471175839796e+00 0 1 0 0 0 0 P 746 22 4.0947259808325526e-01 -5.3505250053953690e-01 -1.2069975816998461e+01 1.2088766074742379e+01 0 1 0 0 0 0 V -202 0 0 0 0 0 0 1 0 P 747 310 -2.8870169318448535e-01 -6.7201982425777729e-01 -2.5359747559612695e+00 2.6858523234935801e+00 4.9767000000000000e-01 2 0 0 -303 0 V -203 0 0 0 0 0 0 1 0 P 748 130 -1.8313342698787602e+00 -1.1429060572267533e-01 -4.7834192988919693e+00 5.1473899374829735e+00 4.9767000000000000e-01 1 0 0 0 0 V -204 0 -1.3144264912155027e-04 -7.0195907985145514e-05 -4.9517129919272624e-04 5.1746838467647772e-04 0 2 0 P 749 22 -8.5756712689347947e-01 -4.4779282579590390e-01 -3.0730634913949300e+00 3.2217478197566947e+00 0 1 0 0 0 0 P 750 22 -5.9515624352825820e-02 -4.1967969893166396e-02 -3.8177449640259448e-01 3.8865818676893327e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 1 0 P 751 130 -2.4914342225239330e+00 1.5845796038221698e+00 -6.6718651625789978e+00 7.3129745782785225e+00 4.9767000000000000e-01 1 0 0 0 0 V -206 0 -2.6041676599880940e-05 6.7718720626481181e-05 -2.5270968954465179e-04 2.7548370305899343e-04 0 2 0 P 752 22 3.5073275091280431e-05 7.3040034577947915e-02 -3.7583381862821819e-01 3.8286539032139072e-01 0 1 0 0 0 0 P 753 22 -4.2771833326624396e-02 3.8092545665520901e-02 -3.8885768390099516e-02 6.9228424398427552e-02 0 1 0 0 0 0 V -207 0 -1.9511119483770036e-05 5.5045987642399042e-05 -4.1288697095179102e-05 7.5182972229855568e-05 0 2 0 P 754 22 2.0050899098515311e-02 1.3304301533569063e-01 -7.2680076817576336e-02 1.5292114324213141e-01 0 1 0 0 0 0 P 755 22 -1.3370189822610912e-01 1.8759627441535601e-01 -1.6782389228819716e-01 2.8501476906740614e-01 0 1 0 0 0 0 V -208 0 -4.8548757730971798e-04 4.4144150397061182e-04 -1.3236806172343487e-03 1.4774316267013247e-03 0 2 0 P 756 22 -1.5177088688815099e+00 1.3782076600210380e+00 -4.2659324229804234e+00 4.7329774986004187e+00 0 1 0 0 0 0 P 757 22 -4.8760729963236660e+00 4.4354955417718847e+00 -1.3166697208235403e+01 1.4724524574325280e+01 0 1 0 0 0 0 V -209 0 -1.3200526174815528e-03 1.2075739294494471e-03 -3.2855073965801160e-03 3.7418845425627686e-03 0 2 0 P 758 22 -1.2512997184847701e+00 1.1486644902061638e+00 -2.9788292707381259e+00 3.4290822271778327e+00 0 1 0 0 0 0 P 759 22 -9.8165882976875385e-01 8.9402872724804305e-01 -2.5788293630066570e+00 2.9005693073452039e+00 0 1 0 0 0 0 V -210 0 -4.0519557689098996e-04 3.1369529027159899e-05 -5.5925915772051318e-04 6.9279662723698780e-04 0 2 0 P 760 22 -1.2141508960596810e+00 1.0022884381553228e-01 -1.6606538615359818e+00 2.0596066292788757e+00 0 1 0 0 0 0 P 761 22 -9.9512319440582010e-05 -6.2237124561218132e-03 -1.5279192478055696e-02 1.6498430901745777e-02 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 762 310 -1.4434736364490475e+00 -3.0715243020940630e-01 -1.4359268579717073e+00 2.1183767665010587e+00 4.9767000000000000e-01 2 0 0 -304 0 V -212 0 -1.4980255218125299e-05 2.1727071954459818e-06 -2.7055808666071657e-05 3.1140179230025993e-05 0 2 0 P 763 22 -2.4922561569932269e-01 -4.9217173148691784e-03 -5.4762066225753803e-01 6.0168598168265364e-01 0 1 0 0 0 0 P 764 22 -4.4167874119996886e-01 1.0512914674396059e-01 -7.0022030003828639e-01 8.3453023702488460e-01 0 1 0 0 0 0 V -213 0 -1.1943459669146936e-04 7.7402496046305298e-05 -3.7319672261998540e-04 4.0018775956250646e-04 0 2 0 P 765 22 -1.9425080300358927e-01 1.3317708131409403e-01 -4.5734915511431951e-01 5.1442954730328427e-01 0 1 0 0 0 0 P 766 22 -4.5388585580877311e-01 2.8686364859923957e-01 -1.5678804147019265e+00 1.6572724935256775e+00 0 1 0 0 0 0 V -214 0 0 0 0 0 0 1 0 P 767 130 3.4786793858009823e-01 5.8689202608148783e-01 -4.1086141705351231e+00 4.1945011841924682e+00 4.9767000000000000e-01 1 0 0 0 0 V -215 0 2.6075903958057417e-04 1.8155179035428474e-04 -1.5574952728395182e-03 1.5898385259879128e-03 0 2 0 P 768 22 1.3602594430577827e-01 6.3377048135558278e-02 -5.9105858140398138e-01 6.0981140888469965e-01 0 1 0 0 0 0 P 769 22 1.0793467916380464e+00 7.8281833789325561e-01 -6.6682766808185354e+00 6.8002726370866604e+00 0 1 0 0 0 0 V -216 0 -5.4458448150407395e-05 2.5669278469011780e-05 -5.7037486179567173e-04 5.7819073470468925e-04 0 2 0 P 770 22 -7.1537241784607367e-02 3.4365132321381975e-03 -1.9379746021695798e-01 2.0660794314809736e-01 0 1 0 0 0 0 P 771 22 -2.8938233135161154e-02 4.3923134951344846e-02 -8.5854036922206778e-01 8.6015011986565648e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 772 310 -8.1289227733025802e-03 -3.2826852663753514e-01 -9.1662962603288793e+00 9.1856675786785047e+00 4.9767000000000000e-01 2 0 0 -305 0 V -218 0 5.0123036320484063e-05 -1.3665270481993746e-04 -1.2399646733443062e-03 1.2486968767383220e-03 0 2 0 P 773 22 3.7974027275967041e-02 -2.1343198144510458e-01 -2.2457376534404472e+00 2.2561765989237950e+00 0 1 0 0 0 0 P 774 22 2.5177472294731024e-01 -5.7652316379069601e-01 -4.9221883302394112e+00 4.9622280709221194e+00 0 1 0 0 0 0 V -219 0 7.5594788449731090e-05 -4.0944510524495520e-04 -1.2781391153046114e-02 1.2788360573512144e-02 0 2 0 P 775 22 -2.1748873740592041e-02 -1.9397170867975849e-01 -6.1723490515177071e+00 6.1754344665819794e+00 0 1 0 0 0 0 P 776 22 1.6831980755971779e-01 -5.9990248098518784e-01 -1.8609523816017852e+01 1.8619951428595208e+01 0 1 0 0 0 0 V -220 0 1.0574617494180257e-04 -1.6832131364223640e-04 -3.4668361916433202e-03 3.4728945589064513e-03 0 2 0 P 777 22 2.3572296019904654e-01 -4.3771216353286418e-01 -8.1233737763924321e+00 8.1385722803849259e+00 0 1 0 0 0 0 P 778 22 4.8101238095554368e-02 -1.4064573797767975e-02 -1.1816625831108967e+00 1.1827248207705607e+00 0 1 0 0 0 0 V -221 0 6.3454363169404413e-05 -4.9810550273000268e-05 -3.6363261028852911e-03 3.6373257782333916e-03 0 2 0 P 779 22 3.0460384020777348e-01 -2.0596038732244321e-01 -1.6971167794035328e+01 1.6975150646575049e+01 0 1 0 0 0 0 P 780 22 5.3215752564777655e-03 -3.7325569967032152e-02 -7.8946869980978851e-01 7.9036848704634743e-01 0 1 0 0 0 0 V -222 0 4.9796703566843149e+01 -3.5091096366728635e+01 -4.5331717402385520e+03 4.5340773580552914e+03 0 2 0 P 781 211 1.4083475677494916e-02 -1.6062694282804180e-01 -5.7963075865706752e+00 5.8002293732305281e+00 1.3957000000000000e-01 1 0 0 0 0 P 782 -211 3.5533461382130810e-01 -9.9697232261467761e-02 -2.7833140222178191e+01 2.7835936783917180e+01 1.3957000000000000e-01 1 0 0 0 0 V -223 0 0 0 0 0 0 1 0 P 783 310 1.2217278075960452e+00 -1.9396929819124384e-01 -3.4714593034920071e+01 3.4740191247797057e+01 4.9767000000000000e-01 2 0 0 -306 0 V -224 0 1.9510323026680338e-06 2.1843917078030557e-07 -7.0169726371577956e-05 7.0197510526739311e-05 0 2 0 P 784 22 7.8986910691685508e-01 1.1127414393428958e-01 -3.0577301795696144e+01 3.0587704396476902e+01 0 1 0 0 0 0 P 785 22 4.4146112416156935e-01 2.6586594847777714e-02 -1.3708026166157767e+01 1.3715158626251378e+01 0 1 0 0 0 0 V -225 0 7.6727968917293836e-05 -2.6038511107385849e-05 -5.0978160241419200e-03 5.0984619966283218e-03 0 2 0 P 786 22 3.2060851523696288e-01 -1.1957289459563480e-01 -2.4606816963673598e+01 2.4609196016548353e+01 0 1 0 0 0 0 P 787 22 1.9218779646991830e+00 -6.4144046128923715e-01 -1.2438427028460966e+02 1.2440077071711174e+02 0 1 0 0 0 0 V -226 0 -9.2492191357129193e-05 -3.2808142675478096e-04 2.6879706432716131e-04 4.3513463411724531e-04 0 2 0 P 788 22 -4.2141454033092324e-01 -1.4256176505196680e+00 1.1481542996364891e+00 1.8783594427183790e+00 0 1 0 0 0 0 P 789 22 4.8120875589796400e-03 -5.2123606222925084e-02 6.2558893050364661e-02 8.1569857251590230e-02 0 1 0 0 0 0 V -227 0 -2.6427093010999049e-05 -4.7392663041359890e-05 4.2858402332631175e-05 7.0136837434714991e-05 0 2 0 P 790 22 -2.0995996566823161e-01 -3.9985325537855471e-01 2.7634870872686917e-01 5.2946616684660852e-01 0 1 0 0 0 0 P 791 22 -9.3829019410991199e-02 -1.4494253428866599e-01 2.1632411538314883e-01 2.7678212736004321e-01 0 1 0 0 0 0 V -228 0 -5.0445444975562026e+01 -6.6917665289402137e+01 5.8655069365624570e+01 1.1012944478181498e+02 0 2 0 P 792 -2112 -1.1006279134054588e+00 -1.4748434948360887e+00 1.1908993607995391e+00 2.3848644008581146e+00 9.3957000000000002e-01 1 0 0 0 0 P 793 111 -2.7850925290000517e-01 -3.5463068916034923e-01 4.1268221516923609e-01 6.2598445728488417e-01 1.3497999999999999e-01 2 0 0 -307 0 V -229 0 7.5262560527950239e-05 8.9129183786868340e-05 1.8313115947580014e-04 2.1826382493710672e-04 0 2 0 P 794 22 1.6536832695726578e-01 2.9031365759197769e-01 5.6962522750663802e-01 6.6037989305934064e-01 0 1 0 0 0 0 P 795 22 2.9188394607408563e-01 2.5118428765584078e-01 5.4297495970170295e-01 6.6566627615045781e-01 0 1 0 0 0 0 V -230 0 7.9189534278183453e-05 -1.6294331800762517e-04 5.7638842769463161e-03 5.7670053876208681e-03 0 2 0 P 796 22 1.3038448608061778e-01 -1.2147997323179439e-01 4.9933558548134460e+00 4.9965348183422682e+00 0 1 0 0 0 0 P 797 22 5.9533835369856181e-02 -2.6930299739245001e-01 8.8300267031264301e+00 8.8343330229216619e+00 0 1 0 0 0 0 V -231 0 8.8875657102549245e-05 -6.8354162848860824e-05 5.2452704393943369e-04 5.3727449399127857e-04 0 2 0 P 798 22 1.8265920508417910e-01 -1.1119788276753001e-01 7.1473584895736963e-01 7.4604067457396550e-01 0 1 0 0 0 0 P 799 22 2.0370234085335392e-01 -1.8595232563069569e-01 1.5654957261368982e+00 1.5896068003218580e+00 0 1 0 0 0 0 V -232 0 0 0 0 0 0 1 0 P 800 310 2.1205413590321498e-01 5.4575672375175875e-02 8.8283708942132988e-01 1.0368327810822664e+00 4.9767000000000000e-01 2 0 0 -308 0 V -233 0 4.9444954926060978e-05 -5.8918468404507300e-05 3.3518393976361009e-05 8.7189368682057141e-05 0 2 0 P 801 22 2.6489158976234689e-01 -2.9656272048444748e-01 2.1028357659339733e-01 4.4981794549892201e-01 0 1 0 0 0 0 P 802 22 1.6558921690709435e-02 -3.8812912707587272e-02 -1.9490215737089089e-02 4.6481271388421709e-02 0 1 0 0 0 0 V -234 0 -3.1669157426069086e-05 -5.2883870030463916e-06 1.1492460702417101e-05 4.7803856704081017e-05 0 2 0 P 803 22 -2.8515693299927876e-02 2.1207037376623328e-02 -4.0724570406124767e-02 5.4049734813710837e-02 0 1 0 0 0 0 P 804 22 -9.9088543261087667e-02 -4.2515485122297796e-02 8.7031033644462755e-02 1.3856589298240884e-01 0 1 0 0 0 0 V -235 0 -2.2618575407341918e-05 -4.4702538919114175e-05 3.3383912937828695e-04 3.3797202450865012e-04 0 2 0 P 805 22 -1.9863835158380599e-01 -3.2180361393386742e-01 2.2247122945018534e+00 2.2566257009013544e+00 0 1 0 0 0 0 P 806 22 1.1657128530934506e-02 -4.7739350206632822e-02 5.3503926322870166e-01 5.3729130590402263e-01 0 1 0 0 0 0 V -236 0 -2.7647335826697297e-05 -7.3498273150316825e-05 2.6335748040955906e-04 2.7587061157306026e-04 0 2 0 P 807 22 -1.7630967456630262e-01 -3.9178114488036764e-01 1.3510079895998652e+00 1.4176742061532037e+00 0 1 0 0 0 0 P 808 22 2.1495032838009517e-02 -1.9781433761546757e-02 1.2369446388938869e-01 1.2709705722499184e-01 0 1 0 0 0 0 V -237 0 -5.2981204153167692e-05 -2.8337019483708351e-05 2.1852171179289777e-04 2.2797993582377915e-04 0 2 0 P 809 22 -1.5591231207007153e-01 -7.6254354750390808e-03 5.1071270074258579e-01 5.3403582185187304e-01 0 1 0 0 0 0 P 810 22 -1.3290234814543714e-01 -1.4684720788065472e-01 6.8050737343165624e-01 7.0874355157543900e-01 0 1 0 0 0 0 V -238 0 -1.7407231337030746e-04 -9.8333565855692972e-05 2.0164137193884051e-03 2.0306984805035532e-03 0 2 0 P 811 22 -1.8728141764598163e-02 2.3667540820285122e-02 1.0796672324639192e-01 1.1210579427932227e-01 0 1 0 0 0 0 P 812 22 -1.5717962638796656e-01 -1.2303795630594935e-01 1.9297084830068849e+00 1.9400047945899870e+00 0 1 0 0 0 0 V -239 0 5.1727842803047114e-05 6.4062616657933630e-05 2.6450460199741138e-03 2.6480764960197982e-03 0 2 0 P 813 22 6.6206129556138282e-03 7.4609094632445319e-02 3.0225067503492435e+00 3.0234347033505666e+00 0 1 0 0 0 0 P 814 22 6.5934391270680889e-02 1.5247028694817644e-02 6.8751312982756940e-01 6.9083581227492563e-01 0 1 0 0 0 0 V -240 0 2.1476504264896342e-05 -3.2041123000266453e-05 1.0008457733210708e-03 1.0016919047242982e-03 0 2 0 P 815 22 1.1199700550928993e-01 -1.4227520941923125e-01 3.0787943628438370e+00 3.0841141828955232e+00 0 1 0 0 0 0 P 816 22 8.9716467708131284e-02 -1.5866418585909717e-01 6.3214355163526346e+00 6.3240628045471565e+00 0 1 0 0 0 0 V -241 0 9.5899374765334472e-05 -1.1721204789051685e-05 4.6589948750390848e-04 4.7618765369178894e-04 0 2 0 P 817 22 4.4363885383429619e-01 7.7545911083005768e-03 2.0009944698764657e+00 2.0495986033345313e+00 0 1 0 0 0 0 P 818 22 2.4023902081860060e-01 -9.1340877662543951e-02 1.3214291861244740e+00 1.3461920505624867e+00 0 1 0 0 0 0 V -242 0 3.1300227621919023e-05 -6.0631623561513233e-06 2.0305484869445937e-04 2.0646905104190112e-04 0 2 0 P 819 22 2.1052770885081583e-02 -3.2961571987665750e-02 5.5443507159189354e-01 5.5581285789458468e-01 0 1 0 0 0 0 P 820 22 1.9518823326753246e-01 -8.9264402041800087e-03 8.4839128833522781e-01 8.7060088781480505e-01 0 1 0 0 0 0 V -243 0 1.0888590512537484e-04 1.2394381661895234e-05 7.9857688330936321e-04 8.0618680423047602e-04 0 2 0 P 821 22 1.4226722035193951e-01 3.5004514871361733e-02 1.4204637029948564e+00 1.4279994431280101e+00 0 1 0 0 0 0 P 822 22 8.9090983815372315e-01 8.2601072120716462e-02 6.1569294806148429e+00 6.2216013940221808e+00 0 1 0 0 0 0 V -244 0 9.4673241160352802e-05 5.4051439790700962e-05 1.4456246718532470e-03 1.4497664343151515e-03 0 2 0 P 823 22 5.3018345198022454e-01 3.4778566395367733e-01 7.6799878855704025e+00 7.7061185614622811e+00 0 1 0 0 0 0 P 824 22 7.0266790379286603e-01 3.5608155354853310e-01 1.1145187156389294e+01 1.1172991229153590e+01 0 1 0 0 0 0 V -245 0 0 0 0 0 0 1 0 P 825 130 -3.3377793651777199e-01 1.2671747504038453e+00 3.7667400077563990e+01 3.7693472161518031e+01 4.9767000000000000e-01 1 0 0 0 0 V -246 0 1.6683904529474229e-05 1.7655992435263614e-05 7.2152067353228910e-04 7.2194691589757718e-04 0 2 0 P 826 22 1.8113019605181194e-01 2.7316447036156943e-01 1.0694644801664321e+01 1.0699666088694327e+01 0 1 0 0 0 0 P 827 22 2.6765308266965565e-01 2.0176717169984321e-01 8.7136665418282853e+00 8.7201108230581585e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 1 0 P 828 310 -4.6034052579918833e-01 4.3041338591680411e-01 3.9168073497787084e+01 3.9176304394868851e+01 4.9767000000000000e-01 2 0 0 -309 0 V -248 0 2.7746630702912535e-06 -2.9513142514411019e-06 1.8819903769302963e-03 1.8820756074610018e-03 0 2 0 P 829 22 2.4987001962835018e-02 5.3101806779321921e-02 8.0895435731393626e+00 8.0897564471293375e+00 0 1 0 0 0 0 P 830 22 -3.5208467875274194e-03 -7.5934622183421174e-02 6.4704575679652150e+00 6.4709040791875880e+00 0 1 0 0 0 0 V -249 0 2.6458932684788105e-05 2.6606648362404173e-05 1.3644129613212615e-03 1.3649445961826838e-03 0 2 0 P 831 22 4.0711786482516510e-01 3.1888525705156973e-01 1.8582086353922904e+01 1.8589280944341890e+01 0 1 0 0 0 0 P 832 22 1.3731218641062687e-01 2.2858425367001925e-01 9.4926446750419515e+00 9.4963892256038598e+00 0 1 0 0 0 0 V -250 0 5.4351806288001570e-05 -6.6195305187901046e-05 6.6507632448403750e-03 6.6514081425457549e-03 0 2 0 P 833 22 1.5877329983506291e-01 -2.6012353474608840e-01 2.2107288135796939e+01 2.2109388547248827e+01 0 1 0 0 0 0 P 834 22 4.9348363883937492e-02 6.6512403186958068e-03 3.3595363554236672e+00 3.3599053592964698e+00 0 1 0 0 0 0 V -251 0 5.7272745448548902e-06 4.7843692040263419e-07 6.8738784580566229e-04 6.8741962732983856e-04 0 2 0 P 835 22 1.6344281004928390e-01 -1.4983946104951516e-02 2.4048080388466886e+01 2.4048640469701468e+01 0 1 0 0 0 0 P 836 22 7.3301598380739380e-02 3.4760763997077476e-02 4.3659981828918291e+00 4.3667518326616159e+00 0 1 0 0 0 0 V -252 0 3.1780973016885587e-05 -1.6751171083141434e-05 6.8255147208438642e-03 6.8256337137766335e-03 0 2 0 P 837 22 2.2592831641400363e-01 -6.3545906631300594e-02 4.2317324713444378e+01 4.2317975525649828e+01 0 1 0 0 0 0 P 838 22 8.8838714143360045e-03 -6.0219313792548905e-02 8.1126619268119367e+00 8.1128902881567999e+00 0 1 0 0 0 0 V -253 0 4.1630455469131899e-05 -2.4432100592259155e-05 4.3394551228790837e-02 4.3394601708127659e-02 0 2 0 P 839 22 1.3997195052071218e-01 -9.0288349739720775e-02 9.8000651011134281e+01 9.8000792561790874e+01 0 1 0 0 0 0 P 840 22 -1.5894206249931445e-02 1.7469546891596761e-02 3.1334903198776928e+01 3.1334912099566861e+01 0 1 0 0 0 0 V -254 0 -2.7751469576474709e-05 -2.2677524927822181e-05 2.0870336986386507e-02 2.0870393751590235e-02 0 2 0 P 841 22 1.0723919386370604e-02 -4.7224955623918645e-02 1.0099573855664863e+01 1.0099689958850709e+01 0 1 0 0 0 0 P 842 22 -1.2444452480693068e-01 -4.5703523609409963e-02 7.5423369384607099e+01 7.5423485895168682e+01 0 1 0 0 0 0 V -255 0 1.6013783658417529e-07 -8.7824334904595888e-07 3.1605090480373401e-04 3.1605282294573157e-04 0 2 0 P 843 22 -4.6705137118167137e-02 -4.7322918748874010e-02 2.6918157149223397e+01 2.6918239265203788e+01 0 1 0 0 0 0 P 844 22 8.0238187285455453e-02 -1.3658226512792435e-01 3.9263271751432661e+01 3.9263591296628697e+01 0 1 0 0 0 0 V -256 0 -7.1378586833190724e+01 -6.4636638319378818e+01 1.0009036870253434e+04 1.0009720559477202e+04 0 2 0 P 845 -2212 -7.5804388179832827e-01 -7.6111355118414414e-01 1.2440920761667169e+02 1.2441738308920321e+02 9.3827000000000005e-01 1 0 0 0 0 P 846 111 -5.1980076003743436e-01 -3.9603434998847736e-01 5.4776101339916607e+01 5.4780165513055181e+01 1.3497999999999999e-01 2 0 0 -310 0 V -257 0 -1.0495549267465774e-04 -1.8828271915460902e-05 1.1678599006592169e-02 1.1679961160891299e-02 0 2 0 P 847 22 -7.1801010884152167e-02 -7.5280541113548746e-02 7.3156926406076916e+00 7.3164322833520350e+00 0 1 0 0 0 0 P 848 22 -2.7271064273878078e-02 5.7507712624365957e-02 3.7082472127180433e+00 3.7087933669306858e+00 0 1 0 0 0 0 V -258 0 -7.8602828923476435e+00 -1.9463882986551372e+01 2.5045217931782649e+03 2.5046205305060466e+03 0 2 0 P 849 2212 -9.4359526268380745e-01 -2.3823638402134715e+00 2.9748672781970419e+02 2.9749924303929680e+02 9.3827000000000005e-01 1 0 0 0 0 P 850 -211 -2.5020490312604332e-01 -5.7376217393671725e-01 8.2893797018836281e+01 8.2896277778382299e+01 1.3957000000000000e-01 1 0 0 0 0 V -259 0 -1.6253040911108372e-05 6.9767521842374403e-06 1.9242471617051218e-04 1.9324417432576332e-04 0 2 0 P 851 22 -1.4234578560126132e-01 6.4532620301116533e-02 1.2823173048381040e+00 1.2918066620236281e+00 0 1 0 0 0 0 P 852 22 -1.0834504556780171e+00 4.6165055062354482e-01 1.3230258840210219e+01 1.3282572608488186e+01 0 1 0 0 0 0 V -260 0 -6.0042373164572538e-05 1.1578713928380788e-04 9.1505071364931959e-04 9.2444860863722886e-04 0 2 0 P 853 22 -8.8321479080716359e-02 2.6283098418576512e-01 1.6614054802553251e+00 1.6843838575982288e+00 0 1 0 0 0 0 P 854 22 -3.9980228342148544e-01 6.7847847941030426e-01 5.7776408746009036e+00 5.8310641386209303e+00 0 1 0 0 0 0 V -261 0 0 0 0 0 0 2 0 P 855 -211 -3.4952361755562100e-01 1.1721604012232800e+00 6.6530534240571084e+00 6.7659978136031871e+00 1.3957000000000000e-01 1 0 0 0 0 P 856 211 -1.0405680794960166e+00 1.7161796834644107e+00 6.6543054217892825e+00 6.9517850272686275e+00 1.3957000000000000e-01 1 0 0 0 0 V -262 0 -2.9584592022880497e-05 1.2942107363840414e-04 3.9041274827022110e-04 4.1276992986689556e-04 0 2 0 P 857 22 -1.4617776265863650e-01 8.3636388282911101e-01 2.5263298708453408e+00 2.6651857532116416e+00 0 1 0 0 0 0 P 858 22 -7.3037887000121524e-02 1.2261924985139767e-01 3.6654707607781489e-01 3.9335324118755821e-01 0 1 0 0 0 0 V -263 0 -2.5467864466051523e-04 5.1456700971754150e-04 2.1255331142087941e-03 2.2017950095330925e-03 0 2 0 P 859 22 -1.6068159788219807e+00 3.3055152624071464e+00 1.3706377563181883e+01 1.4190598107349103e+01 0 1 0 0 0 0 P 860 22 -1.8075747510207613e-01 3.0619834656969169e-01 1.2126062230752570e+00 1.2636631451807601e+00 0 1 0 0 0 0 V -264 0 3.8501815474106888e-07 8.0262418144205050e-05 8.9975718816353139e-05 1.2084594613676541e-04 0 2 0 P 861 22 -2.7674689368479426e-02 8.0158840758956473e-01 8.0982663676823807e-01 1.1397934221748134e+00 0 1 0 0 0 0 P 862 22 3.4076151888700952e-02 5.3288596772401975e-01 6.8614487688734271e-01 8.6943857218520837e-01 0 1 0 0 0 0 V -265 0 5.7387366745171448e+01 9.5806020485476125e+01 2.8855762935475894e+02 3.1778258188829892e+02 0 2 0 P 863 2212 8.0704401198038467e-01 1.2957103876800715e+00 4.1009641494604407e+00 4.4753148485972734e+00 9.3827000000000005e-01 1 0 0 0 0 P 864 -211 7.6752722043422844e-02 1.7975455882762234e-01 3.4298065696067204e-01 4.1871015954901580e-01 1.3957000000000000e-01 1 0 0 0 0 V -266 0 -8.0552943881550296e-05 -5.8016367844249779e-05 2.8322662835735413e-04 3.1577938445416487e-04 0 2 0 P 865 22 -4.2997812130779071e-04 3.0457259682120281e-02 1.1036106304621368e-01 1.1448752676697696e-01 0 1 0 0 0 0 P 866 22 -1.1028547940726099e-01 -1.1019747028779429e-01 2.7891789104103049e-01 3.1953334625465130e-01 0 1 0 0 0 0 V -267 0 0 0 0 0 0 1 0 P 867 130 3.5306258372593724e-01 -4.3580972409636198e-01 8.9362671032105956e-01 1.1665450826879433e+00 4.9767000000000000e-01 1 0 0 0 0 V -268 0 4.6605582207796671e-06 -2.8991620176919541e-05 1.9261737609110395e-05 3.5590450668488587e-05 0 2 0 P 868 22 -2.6005779526926603e-02 -1.9664985722093212e-01 1.5356626380272292e-01 2.5085865401086649e-01 0 1 0 0 0 0 P 869 22 1.3480705309899163e-01 -4.8016288681957348e-01 2.9610124034693291e-01 5.8000455513653781e-01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 1 0 P 870 310 -3.3850470440249802e-01 2.0664781458469339e-01 3.6108515778279709e-01 7.3167388517445386e-01 4.9767000000000000e-01 2 0 0 -311 0 V -270 0 -1.0001355121495822e-04 1.1215368586809910e-04 -2.8321544025340400e-05 1.6933649708291885e-04 0 2 0 P 871 22 -1.1116080024348814e-01 1.0737917984528689e-01 3.8617692084706660e-02 1.5930580001044642e-01 0 1 0 0 0 0 P 872 22 -7.4421092950112511e-02 1.0072955241347994e-01 -9.1170228161462710e-02 1.5490949715341040e-01 0 1 0 0 0 0 V -271 0 -1.5463848415681704e-05 1.4784112490885257e-05 -2.4037369043766114e-05 3.2357716680001283e-05 0 2 0 P 873 22 -4.4300038252727125e-01 3.3428053701559862e-01 -6.1883466839007195e-01 8.3123351902350284e-01 0 1 0 0 0 0 P 874 22 -1.7181579181991305e-01 2.5351049911140650e-01 -3.3685002791572943e-01 4.5525397393679701e-01 0 1 0 0 0 0 V -272 0 -3.4462667963718161e-05 5.1441369524699913e-05 -1.4940623753801149e-04 1.6287249734236016e-04 0 2 0 P 875 22 -2.3805806511448291e-01 2.6254554369756011e-01 -7.7349576551072252e-01 8.5082166412504878e-01 0 1 0 0 0 0 P 876 22 -3.3403670156588365e-03 9.7782506439567318e-02 -2.7304049018804577e-01 2.9004083488283444e-01 0 1 0 0 0 0 V -273 0 -5.4457331904715684e-05 3.2006318157875911e-05 -2.2414828551236090e-04 2.3295658075504305e-04 0 2 0 P 877 22 -1.1434932528980604e+00 6.3082205109785183e-01 -4.6431402671090698e+00 4.8233043465682703e+00 0 1 0 0 0 0 P 878 22 -7.6387365336285429e-02 8.6140859427220523e-02 -3.7793108441099416e-01 3.9507870331106093e-01 0 1 0 0 0 0 V -274 0 -6.1388676405767161e-06 -2.8041942358822637e-06 -6.2978212928802661e-05 6.3417788887023462e-05 0 2 0 P 879 22 -4.4776597742284520e-02 1.9892054813126499e-02 -2.2565803721802805e-01 2.3091597456901011e-01 0 1 0 0 0 0 P 880 22 -2.1710764435240251e-01 -1.3951904877146598e-01 -2.4609940502649770e+00 2.4744884339285083e+00 0 1 0 0 0 0 V -275 0 -3.2748771596194484e-04 -2.0843363287495576e-05 -4.2947981370236206e-03 4.3078449546125209e-03 0 2 0 P 881 22 -3.5735465899959218e-01 3.0562986972095248e-02 -4.0985114930009088e+00 4.1141746325043016e+00 0 1 0 0 0 0 P 882 22 -2.9765203637417281e-01 -7.2251703348265528e-02 -4.4914947817875417e+00 4.5019265229698195e+00 0 1 0 0 0 0 V -276 0 -3.2478964297913102e-05 3.6361507135359525e-04 -9.3033823514438608e-03 9.3109256784078467e-03 0 2 0 P 883 22 -2.8185934612376340e-02 3.9819695306141867e-01 -1.1586035134552388e+01 1.1592910135053224e+01 0 1 0 0 0 0 P 884 22 -2.3685828996490958e-02 1.8252830815286905e-01 -3.2722850283233620e+00 3.2774573846751425e+00 0 1 0 0 0 0 V -277 0 1.7615161625763769e-06 4.9037581832510800e-06 -1.8328411960655498e-03 1.8330101249738602e-03 0 2 0 P 885 22 6.4467082766561781e-02 4.3712471053904085e-02 -6.8761640162234103e+00 6.8766051481011869e+00 0 1 0 0 0 0 P 886 22 -5.4695796226682046e-02 -1.6510889059478982e-02 -3.2907688166031295e+00 3.2912647483771300e+00 0 1 0 0 0 0 V -278 0 5.3839783816050345e-05 1.1670471521761113e-04 -7.2935559323298671e-03 7.2949575658887190e-03 0 2 0 P 887 22 1.0399033804999828e-01 9.7193115609004940e-02 -5.4723731676492964e+00 5.4742240160718234e+00 0 1 0 0 0 0 P 888 22 1.1948691236544341e-02 1.5411976933349694e-01 -1.0233629622602296e+01 1.0234797063309308e+01 0 1 0 0 0 0 V -279 0 -5.3187423349249422e-06 -3.5820425358607752e-06 -1.7735447998431313e-04 1.7785396853756133e-04 0 2 0 P 889 22 2.4999051054825322e-03 3.9511991657868825e-02 -2.8169258270931613e-01 2.8446117162761042e-01 0 1 0 0 0 0 P 890 22 -6.3993014849734881e-02 -8.0926093130670312e-02 -1.7688069178392622e+00 1.7718132099899762e+00 0 1 0 0 0 0 V -280 0 -4.5401298890434661e-05 6.5352996851668506e-05 -6.2394386917620382e-03 6.2399507205699823e-03 0 2 0 P 891 22 -2.7472232428522481e-01 4.3360927299296742e-01 -3.5577500902025591e+01 3.5581203742857241e+01 0 1 0 0 0 0 P 892 22 -5.3334602723798163e-01 7.2956644496331413e-01 -7.5474232447050667e+01 7.5479642875770324e+01 0 1 0 0 0 0 V -281 0 -4.2235162061332417e+01 -1.4033992599935980e+01 -7.4178287396303876e+03 7.4180467988745386e+03 0 2 0 P 893 -211 -1.8196544900584416e-01 -2.7106207575754721e-01 -5.1333271163091482e+01 5.1334499064098459e+01 1.3957000000000000e-01 1 0 0 0 0 P 894 211 -4.1151763786884848e-01 7.3858209526571003e-02 -5.2901108047072469e+01 5.2902944286630465e+01 1.3957000000000000e-01 1 0 0 0 0 V -282 0 -5.7655751757992389e-06 1.7836452011040630e-05 -7.1077758874286594e-03 7.1078091642677727e-03 0 2 0 P 895 22 1.8173717246781948e-02 1.1150856816175381e-01 -5.3519862911422230e+01 5.3519982160892027e+01 0 1 0 0 0 0 P 896 22 -8.8727831646962643e-02 1.0675848019146554e-01 -3.3458941076329204e+01 3.3459229039989424e+01 0 1 0 0 0 0 V -283 0 1.0089069178294464e-06 -6.6235438939436947e-06 -7.6306631243235154e-04 7.6315138151864350e-04 0 2 0 P 897 22 -5.8226939905740613e-02 -3.8477756686133659e-02 -5.9381237967308182e+00 5.9385339217344892e+00 0 1 0 0 0 0 P 898 22 7.3002785179007379e-02 -5.8526692394418059e-02 -5.2372874988914715e+00 5.2381232446756538e+00 0 1 0 0 0 0 V -284 0 -2.1129615700060438e-05 -6.9525237582901699e-05 -1.4672148846026960e-02 1.4672348079295806e-02 0 2 0 P 899 22 -9.7647759251000651e-02 -3.9153582241903040e-01 -8.1279006841436853e+01 8.1280008541556271e+01 0 1 0 0 0 0 P 900 22 -2.2214782289606001e-02 -2.8618701938676193e-03 -1.9520881065815239e+00 1.9522166024061516e+00 0 1 0 0 0 0 V -285 0 -1.3967537985059419e-06 -7.9743482162604902e-07 -6.9532606630515312e-04 6.9532924287971413e-04 0 2 0 P 901 22 -1.4761354787958686e-01 -1.0393843800526661e-01 -6.4063551814266361e+01 6.4063806193650422e+01 0 1 0 0 0 0 P 902 22 8.2718582084453634e-03 2.4385466274074067e-02 -5.3029385829573856e+00 5.3030011021328001e+00 0 1 0 0 0 0 V -286 0 -4.9153289670742496e-07 -2.5017561315788017e-07 -3.8424559578272462e-05 3.8428685425540990e-05 0 2 0 P 903 22 -4.1616612586707402e-02 8.6186740968315322e-03 -1.9261433078896237e+00 1.9266121214490373e+00 0 1 0 0 0 0 P 904 22 -5.4271097394107670e-01 -3.0602402219027974e-01 -4.3752447712498196e+01 4.3756883649755970e+01 0 1 0 0 0 0 V -287 0 0 0 0 0 0 1 0 P 905 310 -6.8579706169248711e-01 -2.2973230726990125e-02 -6.4190221766380077e+01 6.4195818331298739e+01 4.9767000000000000e-01 2 0 0 -312 0 V -288 0 -8.8438263635034416e-06 -7.8801372162074426e-05 -1.9421627741490161e-02 1.9421809832999844e-02 0 2 0 P 906 22 -4.4554081263093542e-02 -3.4379075408204857e-01 -9.0544998101043831e+01 9.0545661730790727e+01 0 1 0 0 0 0 P 907 22 1.9528583818440505e-03 -3.5800011367460756e-02 -3.0101055525421141e+00 3.0103190681246126e+00 0 1 0 0 0 0 V -289 0 0 0 0 0 0 3 0 P 908 111 8.6519237424960579e-02 -2.9568512771477637e-02 -4.8977810731006848e+01 4.8978082072271079e+01 1.3497999999999999e-01 2 0 0 -313 0 P 909 111 2.8582845472259094e-01 2.8362245768921200e-03 -1.0124990009526437e+02 1.0125039355405545e+02 1.3497999999999999e-01 2 0 0 -314 0 P 910 111 -4.0040307572154474e-02 8.1578249346100279e-02 -4.5894470988553657e+01 4.5894759451996151e+01 1.3497999999999999e-01 2 0 0 -315 0 V -290 0 -2.2395132264220594e-05 -4.4859028800129760e-05 -1.1186841074741521e-01 1.1186843449142897e-01 0 2 0 P 911 22 -5.4539186732645614e-02 -1.4226844980577141e-01 -2.6130641769260660e+02 2.6130646211331566e+02 0 1 0 0 0 0 P 912 22 -2.6030954329056603e-03 2.7808430051169751e-02 -2.4131338017967231e+01 2.4131354181277899e+01 0 1 0 0 0 0 V -291 0 -6.9677379741879906e-06 -2.4526449014372526e-05 -1.2053626243851482e-05 3.3798466613966701e-05 0 2 0 P 913 22 -5.5363979339062119e-02 -1.6852920813627811e-01 -2.1996669855296431e-02 1.7874875576635479e-01 0 1 0 0 0 0 P 914 22 4.8713996957650187e-03 -9.2047544227533765e-03 -6.5351431546168001e-02 6.6176035270425357e-02 0 1 0 0 0 0 V -292 0 2.1053617076580886e-06 -2.8627968026386361e-06 -4.7929133118801200e-07 4.0659453633911571e-06 0 2 0 P 915 22 1.1172258714381392e-01 -2.1408707957621834e-01 -4.5976476803390377e-02 2.4582320992704051e-01 0 1 0 0 0 0 P 916 22 3.6537522780898730e-02 1.2488196539893510e-02 1.2224658676641848e-02 4.0501702477107021e-02 0 1 0 0 0 0 V -293 0 -2.5519681384459777e-07 -2.0273548773319041e-07 2.1688385494199706e-07 6.4163599666169076e-07 0 2 0 P 917 22 -3.4618434963242510e-02 -9.5944045195092711e-02 1.7607764385021742e-02 1.0350714571632570e-01 0 1 0 0 0 0 P 918 22 -3.3141397316651659e-02 4.2113738934494681e-02 3.9979214910243914e-02 6.6859979419548174e-02 0 1 0 0 0 0 V -294 0 5.5947931925716506e-05 -2.6631605712354005e-05 -1.0540005012339393e-04 1.2364523197349355e-04 0 2 0 P 919 22 2.9660858016172720e-01 -1.4111571834598702e-01 -4.2807779662171552e-01 5.3957473601936057e-01 0 1 0 0 0 0 P 920 22 1.1321376832239848e-01 -5.3962577156182259e-02 -3.4398462972972416e-01 3.6613486936017187e-01 0 1 0 0 0 0 V -295 0 -6.4349340215274711e-05 -2.0526995770654282e-04 -3.4541690397138763e-04 4.0771025893836352e-04 0 2 0 P 921 22 -3.2779595463591538e-01 -1.0307563747785475e+00 -1.7863496688923468e+00 2.0882897384161234e+00 0 1 0 0 0 0 P 922 22 -1.6020582601766996e-02 -6.5994669155800767e-02 -5.9202180271963764e-02 9.0093582306609021e-02 0 1 0 0 0 0 V -296 0 -1.1930615228374514e-05 -8.4573367402015940e-06 -3.3985673271876836e-05 4.1326035618821827e-05 0 2 0 P 923 22 -1.1248206692770737e-01 -5.1842463640856533e-02 -2.4649147568828123e-01 2.7585848546613412e-01 0 1 0 0 0 0 P 924 22 2.5010880759674604e-02 -1.0163833798735568e-02 -2.6798450613947440e-03 2.7129858890456195e-02 0 1 0 0 0 0 V -297 0 -5.2378496014306884e-05 1.5291963355360558e-04 2.1137584275692856e-04 2.7214919015585310e-04 0 2 0 P 925 22 1.8265742836662987e-02 8.6449438461599429e-03 8.0604533117807024e-03 2.1756454744966149e-02 0 1 0 0 0 0 P 926 22 -1.4213950479959583e-01 3.5300595733863460e-01 4.9183784127144109e-01 6.2186920397121415e-01 0 1 0 0 0 0 V -298 0 2.4826838662307016e+00 4.9537551501367156e+00 1.1501828270291472e+01 1.4606632304368357e+01 0 2 0 P 927 211 1.9677175791941889e-01 3.9608201082970573e-01 4.9264472128151010e-01 6.7659344537479693e-01 1.3957000000000000e-01 1 0 0 0 0 P 928 -211 -2.2660203411581866e-02 -4.8673296585715384e-02 3.1398282685777612e-01 3.4777517893141180e-01 1.3957000000000000e-01 1 0 0 0 0 V -299 0 0 0 0 0 0 1 0 P 929 310 -3.2614549201173154e-01 4.4600559803029000e-01 3.3376167968643569e+00 3.4194521764523951e+00 4.9767000000000000e-01 2 0 0 -316 0 V -300 0 1.0685092924649054e-04 -1.3275291609856992e-05 5.8996910287664565e-04 6.0411042955600788e-04 0 2 0 P 930 22 1.2655512390021370e-01 -7.3016383535027526e-02 5.3497028510540900e-01 5.5456361005361254e-01 0 1 0 0 0 0 P 931 22 7.1696478896167509e-02 4.8385359192953850e-02 5.5966053439660945e-01 5.6630507840865973e-01 0 1 0 0 0 0 V -301 0 1.1223527417851432e-04 8.1674748615566717e-05 1.6648505280111563e-04 2.1794713063529576e-04 0 2 0 P 932 22 4.8465729984173933e-01 2.7553436204589510e-01 6.4174236575424637e-01 8.5008537627804259e-01 0 1 0 0 0 0 P 933 22 1.8216117875263868e-01 2.0971621545780753e-01 3.4738792710689725e-01 4.4479428724987391e-01 0 1 0 0 0 0 V -302 0 0 0 0 0 0 1 0 P 934 130 4.6031785040445838e-01 6.1985924806143555e-01 5.7349262430130743e-01 1.0829068426398782e+00 4.9767000000000000e-01 1 0 0 0 0 V -303 0 -3.5834875178952652e+00 -8.3413942794822802e+00 -3.1477591223815740e+01 3.3337934980515961e+01 0 2 0 P 935 211 -2.6077952541457794e-01 -6.8007464803157369e-01 -2.1590686515563307e+00 2.2828851733725011e+00 1.3957000000000000e-01 1 0 0 0 0 P 936 -211 -2.7922167769907438e-02 8.0548237737964410e-03 -3.7690610440493905e-01 4.0296715012107948e-01 1.3957000000000000e-01 1 0 0 0 0 V -304 0 -1.1531573096792395e+02 -2.4537688887276186e+01 -1.1471283649545660e+02 1.6923216269849735e+02 0 2 0 P 937 211 -1.2753555979231030e+00 -1.5751638381583039e-01 -1.1949425892803083e+00 1.7603155651473799e+00 1.3957000000000000e-01 1 0 0 0 0 P 938 -211 -1.6811803852594451e-01 -1.4963604639357594e-01 -2.4098426869139908e-01 3.5806120135367892e-01 1.3957000000000000e-01 1 0 0 0 0 V -305 0 -7.3637411375139850e-01 -2.9736836247121094e+01 -8.3034658752701512e+02 8.3210137568034224e+02 0 2 0 P 939 111 9.3066053332765797e-02 3.1953524580486468e-02 -1.5461865068317049e+00 1.5551831507332128e+00 1.3497999999999999e-01 2 0 0 -317 0 P 940 111 -1.0119497610606838e-01 -3.6022205121802159e-01 -7.6201097534971742e+00 7.6304844279452917e+00 1.3497999999999999e-01 2 0 0 -318 0 V -306 0 6.7131193515359922e+00 -1.0658176405542179e+00 -1.9074887616904635e+02 1.9088953258789905e+02 0 2 0 P 941 111 2.9435485169386022e-01 -2.2556537437264881e-01 -9.6602232676344109e+00 9.6682810104887231e+00 1.3497999999999999e-01 2 0 0 -319 0 P 942 111 9.2737295590218494e-01 3.1596076181404954e-02 -2.5054369767285660e+01 2.5071910237308337e+01 1.3497999999999999e-01 2 0 0 -320 0 V -307 0 -5.0445556363430242e+01 -6.6917807121517441e+01 5.8655234415050110e+01 1.1012969514001136e+02 0 2 0 P 943 22 -1.3039711343134374e-02 -3.5101217098087216e-02 -3.9276188163411292e-03 3.7650440943577168e-02 0 1 0 0 0 0 P 944 22 -2.6546954155687080e-01 -3.1952947206226201e-01 4.1660983398557727e-01 5.8833401634130689e-01 0 1 0 0 0 0 V -308 0 4.0479909276296155e+01 1.0418180513339790e+01 1.6852849925943354e+02 1.9792538699672517e+02 0 2 0 P 945 211 2.7200306622473264e-01 1.5068456331187738e-01 4.2378700744654413e-01 5.4384438788742195e-01 1.3957000000000000e-01 1 0 0 0 0 P 946 -211 -5.9948930321517664e-02 -9.6108890936701510e-02 4.5905008197478570e-01 4.9298839319484433e-01 1.3957000000000000e-01 1 0 0 0 0 V -309 0 -4.3162448638104358e+01 4.0356420131671584e+01 3.6724769292617261e+03 3.6732486746385225e+03 0 2 0 P 947 111 4.3325877443940508e-02 1.5954305100879540e-01 9.2593351997585813e+00 9.2617945916906290e+00 1.3497999999999999e-01 2 0 0 -321 0 P 948 111 -5.0366640324312884e-01 2.7087033490800871e-01 2.9908738298028506e+01 2.9914509803178227e+01 1.3497999999999999e-01 2 0 0 -322 0 V -310 0 -7.1378612270338422e+01 -6.4636657699851156e+01 1.0009039550795456e+04 1.0009723240218109e+04 0 2 0 P 949 22 -4.0077862641840328e-01 -2.4211421080355094e-01 4.1432020697714108e+01 4.1434666426728690e+01 0 1 0 0 0 0 P 950 22 -1.1902213361903106e-01 -1.5392013918492639e-01 1.3344080642202501e+01 1.3345499086326502e+01 0 1 0 0 0 0 V -311 0 -2.4710461007578879e-01 1.5085057011570363e-01 2.6358808594866401e-01 5.3411367034855506e-01 0 2 0 P 951 111 -2.3341911871622661e-01 -9.7455601357405580e-02 1.4530365503176035e-01 3.2142624625842592e-01 1.3497999999999999e-01 2 0 0 -323 0 P 952 111 -1.0508558568627141e-01 3.0410341594209894e-01 2.1578150275103672e-01 4.1024763891602789e-01 1.3497999999999999e-01 2 0 0 -324 0 V -312 0 -1.6598152113760523e+01 -5.5601459885239490e-01 -1.5535777631723704e+03 1.5537132152485360e+03 0 2 0 P 953 211 -2.2039688419618023e-01 9.7573552071239855e-02 -3.6567231593236002e+01 3.6568292297602362e+01 1.3957000000000000e-01 1 0 0 0 0 P 954 -211 -4.6540017749630691e-01 -1.2054678279822997e-01 -2.7622990173144078e+01 2.7627526033696373e+01 1.3957000000000000e-01 1 0 0 0 0 V -313 0 4.2143825477609475e-06 -1.4402926782085981e-06 -2.3857264224192644e-03 2.3857396395478765e-03 0 2 0 P 955 22 3.7199952020127248e-02 5.1403131830624109e-02 -2.5687878669689649e+01 2.5687957035682864e+01 0 1 0 0 0 0 P 956 22 4.9319285404833331e-02 -8.0971644602101739e-02 -2.3289932061317199e+01 2.3290125036588215e+01 0 1 0 0 0 0 V -314 0 2.3612633167046483e-05 2.3430393093127584e-07 -8.3643762881128684e-03 8.3644170533383900e-03 0 2 0 P 957 22 9.9748235759190465e-02 3.7276839322107971e-02 -5.5487494439249737e+01 5.5487596617794303e+01 0 1 0 0 0 0 P 958 22 1.8608021896340049e-01 -3.4440614745215849e-02 -4.5762405656014629e+01 4.5762796936261161e+01 0 1 0 0 0 0 V -315 0 -2.1463763137501919e-06 4.3730338933621518e-06 -2.4601910283634345e-03 2.4602064915588465e-03 0 2 0 P 959 22 -5.2201461977151212e-02 1.0263033683314161e-01 -2.4114577161525705e+01 2.4114852055483322e+01 0 1 0 0 0 0 P 960 22 1.2161154404996736e-02 -2.1052087487041338e-02 -2.1779893827027948e+01 2.1779907396512829e+01 0 1 0 0 0 0 V -316 0 -3.0943444880834569e+01 4.2315316253696722e+01 3.1666039824767819e+02 3.2442462807641226e+02 0 2 0 P 961 211 2.5545968551286109e-02 2.6146601866205654e-01 9.6621889495169810e-01 1.0109776522188267e+00 1.3957000000000000e-01 1 0 0 0 0 P 962 -211 -3.5169146056301764e-01 1.8453957936823343e-01 2.3713979019126588e+00 2.4084745242335681e+00 1.3957000000000000e-01 1 0 0 0 0 V -317 0 -7.3632077835991294e-01 -2.9736817934818362e+01 -8.3034747363381450e+02 8.3210226694304447e+02 0 2 0 P 963 22 4.0712326595200521e-02 3.2575496887900569e-03 -1.0357541518097002e-01 1.1133719862058471e-01 0 1 0 0 0 0 P 964 22 5.2353726737565283e-02 2.8695974891696410e-02 -1.4426110916507349e+00 1.4438459521126283e+00 0 1 0 0 0 0 V -318 0 -7.3638370349722482e-01 -2.9736870383577717e+01 -8.3034730964701077e+02 8.3210209878349428e+02 0 2 0 P 965 22 -1.1879183767783436e-01 -2.4887332252125707e-01 -6.0821836814849330e+00 6.0884322913770887e+00 0 1 0 0 0 0 P 966 22 1.7596861571765973e-02 -1.1134872869676449e-01 -1.5379260720122419e+00 1.5420521365682049e+00 0 1 0 0 0 0 V -319 0 6.7131324631354445e+00 -1.0658276880286257e+00 -1.9074930646933657e+02 1.9088996324710945e+02 0 2 0 P 967 22 2.9454759761456789e-01 -2.0707237474302470e-01 -9.5245573781225730e+00 9.5313603701041227e+00 0 1 0 0 0 0 P 968 22 -1.9274592070768706e-04 -1.8492999629624113e-02 -1.3566588951183681e-01 1.3692064038460069e-01 0 1 0 0 0 0 V -320 0 6.7136029940364281e+00 -1.0658011626041213e+00 -1.9076194249577497e+02 1.9090260806231385e+02 0 2 0 P 969 22 4.9150644694111950e-01 5.8035156403590648e-03 -1.5030936642732259e+01 1.5038971661187801e+01 0 1 0 0 0 0 P 970 22 4.3586650896106538e-01 2.5792560541045888e-02 -1.0023433124553401e+01 1.0032938576120532e+01 0 1 0 0 0 0 V -321 0 -4.3162447029454547e+01 4.0356426055357694e+01 3.6724772730522891e+03 3.6732490185204006e+03 0 2 0 P 971 22 1.7817855385547341e-02 4.3222632430722219e-02 6.1530184566679926e+00 6.1531960638372123e+00 0 1 0 0 0 0 P 972 22 2.5508022058393164e-02 1.1632041857807318e-01 3.1063167430905883e+00 3.1085985278534172e+00 0 1 0 0 0 0 V -322 0 -4.3162571697667190e+01 4.0356486312748551e+01 3.6724842367895581e+03 3.6732559835764923e+03 0 2 0 P 973 22 -2.9889515905697300e-01 8.5335201237818681e-02 1.5257395404166113e+01 1.5260561422560681e+01 0 1 0 0 0 0 P 974 22 -2.0477124418615583e-01 1.8553513367019003e-01 1.4651342893862394e+01 1.4653948380617550e+01 0 1 0 0 0 0 V -323 0 -2.4712872238495115e-01 1.5084050290440382e-01 2.6360309588731778e-01 5.3414687383704951e-01 0 2 0 P 975 22 -1.5265048443235518e-01 8.7892322411127176e-03 8.5438517431499203e-02 1.7515467810399335e-01 0 1 0 0 0 0 P 976 22 -8.0768634283871432e-02 -1.0624483359851830e-01 5.9865137600261145e-02 1.4627156815443257e-01 0 1 0 0 0 0 V -324 0 -2.4716025267414493e-01 1.5101159223992253e-01 2.6370234180413504e-01 5.3433089561736502e-01 0 2 0 P 977 22 -2.7332904532474896e-02 2.5395958217156500e-01 1.4461624708100437e-01 2.9352413183030007e-01 0 1 0 0 0 0 P 978 22 -7.7752681153796521e-02 5.0143833770533969e-02 7.1165255670032346e-02 1.1672350708572787e-01 0 1 0 0 0 0 E 23 12 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 141 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 3 -3.8958998952848295e-01 1.1213376044388110e+00 2.9493708788137792e+02 2.9493947681911067e+02 0 3 0 0 -3 0 P 11 321 3.7173549118925631e-01 -8.6493705471816773e-01 3.4113929372287548e+03 3.4113931028420889e+03 4.9359999999999998e-01 1 0 0 0 0 P 13 2101 1.7854498339226671e-02 -2.5640054972064330e-01 3.0680804337875779e+03 3.0680804992492367e+03 5.7933000000000001e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 -1.0130640761139280e+00 -2.9109428375918178e-01 -6.2960042452010399e+01 6.2968865165757165e+01 0 3 0 0 -4 0 P 39 2103 1.0130640761139280e+00 2.9109428375918178e-01 -5.1444333080081660e+03 5.1444334738169682e+03 7.7132999999999996e-01 2 0 0 -11 0 V -3 0 0 0 0 0 0 5 0 P 5 -1 4.2860856184574653e-01 -7.2758368823279351e-01 5.2987460275165120e+01 5.2994188641160193e+01 0 3 0 0 -5 0 P 12 1 -2.3342376187377414e+00 1.1566959754050776e-01 3.2710660985436640e+01 3.2795705310614871e+01 3.3000000000000002e-01 2 0 0 -9 0 P 14 3 4.9676635165995159e-01 1.6014664902259874e+00 2.0286164287759996e+02 2.0286918845089897e+02 5.0000000000000000e-01 2 0 0 -11 0 P 15 21 -1.5057097645820813e-01 6.7810579492450063e-01 1.1194326574265792e+00 1.3174325647162741e+00 0 2 0 0 -11 0 P 16 21 1.1568807459159600e+00 -5.4325564171240048e-01 4.5412442941010367e+00 4.7176688619728964e+00 0 2 0 0 -11 0 V -4 0 0 0 0 0 0 3 0 P 6 2 -1.4341020760286485e+00 -5.5966268859491852e-01 -3.7245242096822572e+01 3.7277042934497899e+01 0 3 0 0 -5 0 P 37 21 -9.0029057140588065e-02 1.1171472925920685e+00 -2.2418060073515847e-01 1.1429699235856507e+00 0 2 0 0 -11 0 P 38 21 5.2403000330111604e-01 -8.5164383606332361e-01 -2.4773972962804184e+01 2.4794145297420865e+01 0 2 0 0 -11 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -4.0971201475458248e+00 -4.3144150138402324e+00 2.2072248570778175e+01 8.2603690250944567e+01 7.9377483682015878e+01 3 0 0 -6 0 P 8 22 3.0916266333629228e+00 3.0271686370125201e+00 -6.3300303924356225e+00 7.6675413247135396e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -4.0971201475458248e+00 -4.3144150138402324e+00 2.2072248570778175e+01 8.2603690250944567e+01 7.9377483682015878e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 3.0916266333629228e+00 3.0271686370125201e+00 -6.3300303924356225e+00 7.6675413247135404e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 10 0 P 40 4 -4.3588607871787346e+00 1.4631025629708093e+01 -1.4498459866756679e+01 2.1107390100321112e+01 1.5000000000000000e+00 2 0 0 -13 0 P 41 21 -3.2594957713978721e+00 5.9021979995572673e+00 -5.1531323575309127e+00 8.4861668027425967e+00 0 2 0 0 -13 0 P 42 21 -3.3470543723948400e-02 -3.5484915666851560e+00 1.0277694799731071e+01 1.0873082500953993e+01 0 2 0 0 -13 0 P 43 21 -2.6761663525863394e-01 -2.0443579081293670e+00 1.0133482482997294e+01 1.0341106572954910e+01 0 2 0 0 -13 0 P 44 21 -1.0849914538841120e-01 -1.4417029313142042e+00 3.2186347569948337e+00 3.5284400385503472e+00 0 2 0 0 -13 0 P 45 21 -5.2558016525959927e-01 -4.1603049236831700e+00 7.3095070613610682e+00 8.4269368722106872e+00 0 2 0 0 -13 0 P 46 21 -1.9478787143061374e-01 -2.2033113349708455e+00 6.0022369900526913e+00 6.3968251530289830e+00 0 2 0 0 -13 0 P 47 21 2.9957552461864256e-01 -5.2107171168025834e-01 5.9674828922822576e-01 8.4697682634222249e-01 0 2 0 0 -13 0 P 48 21 4.8730561089737745e-01 -9.2038547355652678e-01 8.6949988389257371e-01 1.3566894362510300e+00 0 2 0 0 -13 0 P 49 -3 3.8643096365759706e+00 -1.0008012793086056e+01 3.3160365308079820e+00 1.1240075947588659e+01 5.0000000000000000e-01 2 0 0 -13 0 V -9 0 0 0 0 0 0 1 0 P 52 92 -2.3163831203985148e+00 -1.4073095218013554e-01 3.1007910947730147e+03 3.1008762045598519e+03 2.2856883994102741e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 4 0 P 53 -213 -1.5970180784299139e+00 1.3453623975115866e-01 2.8256827973379146e+01 2.8316531299009675e+01 8.9947259436516835e-01 2 0 0 -17 0 P 54 113 -1.3719838227696730e+00 -1.3532969684855511e-02 4.9949171730356646e+01 4.9973829691581663e+01 7.6247933961484993e-01 2 0 0 -18 0 P 55 2224 5.1442142601364194e-01 -3.7146266055374705e-01 1.7444471790468683e+03 1.7444476936905467e+03 1.1802219190524532e+00 2 0 0 -19 0 P 56 -213 1.3819735478742978e-01 1.0972843830730840e-01 1.2781379160224103e+03 1.2781381498787139e+03 7.5276984018438309e-01 2 0 0 -20 0 V -11 0 0 0 0 0 20 1 0 P 17 21 8.5627342364940706e-01 -4.6651162515082634e-01 5.1562937465089689e+01 5.1572156802883462e+01 0 2 0 0 -11 0 P 18 21 1.4991115630138943e+00 5.1216388453463035e-01 4.6065035081166315e+01 4.6092267294548080e+01 0 2 0 0 -11 0 P 19 21 -1.6121527802884799e+00 -2.2120277255226828e+00 4.6542953849605858e+01 4.6623370280279111e+01 0 2 0 0 -11 0 P 20 21 -1.5972917483932860e+00 1.2416448949871755e+00 5.0387483477696790e+01 5.0428082594819131e+01 0 2 0 0 -11 0 P 21 21 -1.7282527014846261e+00 -1.7666910266557601e-01 1.2169936416599496e+01 1.2293308007045953e+01 0 2 0 0 -11 0 P 22 21 -2.6862873308232356e+00 1.4103156078008365e+00 8.0685394805003927e+00 8.6201194357005058e+00 0 2 0 0 -11 0 P 23 21 -1.4991115630138943e+00 -5.1216388453463035e-01 8.3581842422568697e-01 1.7911559846252012e+00 0 2 0 0 -11 0 P 24 21 1.7282527014846261e+00 1.7666910266557601e-01 1.7663425318457706e+00 2.4775058651460133e+00 0 2 0 0 -11 0 P 25 21 2.6862873308232356e+00 -1.4103156078008365e+00 2.5546846480186760e+00 3.9663009704471963e+00 0 2 0 0 -11 0 P 26 21 1.6480033855828966e+00 -2.0849943823874297e+00 -2.3144625876754923e-01 2.6677113982170795e+00 0 2 0 0 -11 0 P 27 21 1.6121527802884799e+00 2.2120277255226828e+00 1.6038152662361163e-01 2.7418653284862566e+00 0 2 0 0 -11 0 P 28 21 -1.6480033855828966e+00 2.0849943823874297e+00 -2.9818266135702278e+00 3.9942967700053940e+00 0 2 0 0 -11 0 P 29 21 -8.5627342364940706e-01 4.6651162515082634e-01 -4.1977260950259767e+00 4.3094943602830229e+00 0 2 0 0 -11 0 P 30 21 1.5972917483932860e+00 -1.2416448949871755e+00 -9.1675557256030213e+00 9.3881361812007036e+00 0 2 0 0 -11 0 P 31 21 4.5075167599639236e+00 1.7679273133307152e+00 -4.9233136836086430e+01 4.9470648237590204e+01 0 2 0 0 -11 0 P 32 21 1.6036385004003362e+00 1.8594777882833773e+00 -5.6334289986795639e+01 5.6387778307018522e+01 0 2 0 0 -11 0 P 33 21 3.4926088106318596e+00 1.3743706538344020e+00 -3.0742700627933664e+02 3.0744991689846580e+02 0 2 0 0 -11 0 P 34 21 -1.6036385004003362e+00 -1.8594777882833773e+00 -4.4464496108876233e+01 4.4532243692647633e+01 0 2 0 0 -11 0 P 35 21 -3.4926088106318596e+00 -1.3743706538344020e+00 -1.5410335303940053e+02 1.5414905328604630e+02 0 2 0 0 -11 0 P 36 21 -4.5075167599639236e+00 -1.7679273133307152e+00 -3.2389115220988538e+02 3.2392734023878523e+02 0 2 0 0 -11 0 P 57 92 2.9501411433921603e+00 2.2929143837260142e+00 -5.6928270179945530e+03 6.5621576308498034e+03 3.2639882589437134e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 68 0 P 58 -311 1.1392562163019743e-01 6.3659896442009034e-01 5.6061330356469568e+01 5.6067269186708948e+01 4.9767000000000000e-01 2 0 0 -21 0 P 59 1114 6.8412911642327867e-01 5.5939087833313217e-01 7.3335030293093268e+01 7.3350982468291605e+01 1.2486032884772031e+00 2 0 0 -22 0 P 60 -2112 -4.9181731876922274e-01 3.1338522261247281e-01 4.4084599144591884e+01 4.4098466731815513e+01 9.3957000000000002e-01 1 0 0 0 0 P 61 113 2.4264297731206381e-02 1.7702504714631345e-02 5.3107372655371163e+00 5.3746641521608174e+00 8.2594328506288472e-01 2 0 0 -23 0 P 62 323 -3.5369236560509204e-01 8.7468635841338002e-02 1.0794598699055362e+01 1.0836635695500581e+01 8.8122816092455181e-01 2 0 0 -24 0 P 63 -321 1.0298551784336871e+00 7.2961516596599676e-02 1.3853641831869817e+01 1.3900825804145061e+01 4.9359999999999998e-01 1 0 0 0 0 P 64 113 -1.8187836310845795e-01 1.3014202714896828e-01 5.8218428485678899e+00 5.8836403677743174e+00 8.2058097570130406e-01 2 0 0 -25 0 P 65 2214 2.6874105098087558e-01 3.2829417697477292e-01 1.2168047656424850e+01 1.2241920709053577e+01 1.2740643855828917e+00 2 0 0 -26 0 P 66 111 1.3605133965502698e+00 -7.6091879883652691e-01 2.1942154858060068e+01 2.1997872022904943e+01 1.3497999999999999e-01 2 0 0 -27 0 P 67 -2112 1.9435807829198021e-01 3.6083066458151619e-01 3.2750238044884505e+01 3.2766276224383475e+01 9.3957000000000002e-01 1 0 0 0 0 P 68 -211 1.4746806069232396e-01 -8.6113495820241370e-01 1.3518542769296447e+01 1.3547463918953996e+01 1.3957000000000000e-01 1 0 0 0 0 P 69 223 4.2759946518169084e-01 1.1231187797956343e-01 3.2779826955047390e+01 3.2792129930929057e+01 7.8184074051055852e-01 2 0 0 -28 0 P 70 223 -3.5797109352500250e-01 -1.4163422518914071e-01 1.3277902095522011e+01 1.3306672140351862e+01 7.8526163474607802e-01 2 0 0 -29 0 P 71 223 -7.4415221741488258e-01 -2.5182149852049701e-01 1.8557300836177721e+01 1.8590354411198788e+01 7.8146415130573688e-01 2 0 0 -30 0 P 72 321 -9.7634151320949392e-01 -6.1658558859858559e-01 3.1217787509485468e+01 3.1243036319888450e+01 4.9359999999999998e-01 1 0 0 0 0 P 73 -323 -1.4748934555360771e+00 7.2496719989713643e-01 2.2327360613668436e+01 2.2405260607773730e+01 8.8531507575402801e-01 2 0 0 -31 0 P 74 213 -7.7510304243351191e-01 5.5185547441108518e-01 4.2558720459089860e+00 4.4088087422761761e+00 6.4793399647967698e-01 2 0 0 -32 0 P 75 -211 -5.9034630351870876e-01 5.7698034303713752e-01 2.0420099102974758e+00 2.2069660923952958e+00 1.3957000000000000e-01 1 0 0 0 0 P 76 323 -1.4663941428841480e+00 -4.8080250499875932e-01 4.1664503647324072e+00 4.5343654663612218e+00 9.0536109351589256e-01 2 0 0 -33 0 P 77 -321 -3.6925556766515641e-02 -1.4596649996961455e-01 1.4148210334101174e+00 1.5059977531309832e+00 4.9359999999999998e-01 1 0 0 0 0 P 78 211 -6.6956789381909121e-01 2.6617547338389547e-01 3.2420536765422967e+00 3.3240882018300777e+00 1.3957000000000000e-01 1 0 0 0 0 P 79 -211 -6.0589605178353267e-02 -2.4051808926940466e-01 -3.5905592962647691e-02 2.8686067703237528e-01 1.3957000000000000e-01 1 0 0 0 0 P 80 213 1.8033499630655944e-01 7.8579979844478121e-01 1.9373251596238963e+00 2.2222346636734964e+00 7.3150262623695250e-01 2 0 0 -34 0 P 81 -211 -4.2843258681162272e-01 -6.3122824474806993e-01 3.6313720791690407e-01 8.5635973462296378e-01 1.3957000000000000e-01 1 0 0 0 0 P 82 321 1.1373052136141917e+00 -4.0582952267902045e-01 1.1224595278130554e+00 1.7209640036822964e+00 4.9359999999999998e-01 1 0 0 0 0 P 83 -313 8.2340566611573374e-01 -2.1851926555959400e-01 3.9107872755732381e-01 1.2975334348602570e+00 8.9716379943698266e-01 2 0 0 -35 0 P 84 313 1.6217244049427546e+00 -9.6017199984362156e-01 1.1589150310213525e+00 2.3960554863504187e+00 9.1982472769114176e-01 2 0 0 -36 0 P 85 -321 9.9355495057975152e-01 -1.1527461158013665e+00 6.1568109345470090e-01 1.7142576282911051e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 113 1.5300081575170437e+00 1.0811468816670797e+00 -7.8043435993461708e-03 1.9208281546334982e+00 4.2392965223792306e-01 2 0 0 -37 0 P 87 331 1.5769385558553475e-02 4.0883781467434022e-01 -4.1147422406176065e-01 1.1199860742648866e+00 9.5794610352120524e-01 2 0 0 -38 0 P 88 213 -4.2801451139856110e-02 6.8255573535277803e-01 -1.0814100490699987e+00 1.5621003592810476e+00 8.9610018533295233e-01 2 0 0 -39 0 P 89 -213 -6.8543824697985867e-01 4.1262424022134725e-01 -5.3551037597901330e-01 1.2149780745644663e+00 7.4115855580983980e-01 2 0 0 -40 0 P 90 2224 2.3741431482864714e-02 7.9566258127713985e-01 -3.8272686665756890e+00 4.0903270355563102e+00 1.2038053052040283e+00 2 0 0 -41 0 P 91 111 -6.5469979689977822e-02 3.5844477615304307e-02 -3.9203931355289448e-02 1.5914676701029903e-01 1.3497999999999999e-01 2 0 0 -42 0 P 92 -3224 -1.2919750622652287e-01 -1.5320336216079350e-01 -4.5920658720312044e+00 4.7980508461819609e+00 1.3762484091475624e+00 2 0 0 -43 0 P 93 -311 1.1339748377923020e+00 6.0863526318946193e-01 -1.0043461684327076e+01 1.0137807151933293e+01 4.9767000000000000e-01 2 0 0 -44 0 P 94 113 -7.6654081527434303e-02 6.8839517695425734e-02 -4.4233735587117495e+00 4.4683487902241312e+00 6.2393312444192151e-01 2 0 0 -45 0 P 95 113 7.1165595847582552e-01 4.3478802404590899e-02 -3.4328995527174646e+00 3.5815937852415152e+00 7.3121138799952479e-01 2 0 0 -46 0 P 96 221 3.5710877581187461e-01 3.4008584630192928e-01 -2.2185780012721672e+01 2.2198011652758389e+01 5.4744999999999999e-01 2 0 0 -47 0 P 97 221 3.5474197082732299e+00 1.7106044494176995e+00 -5.7304831944158224e+01 5.7442613274638973e+01 5.4744999999999999e-01 2 0 0 -48 0 P 98 113 2.7233251118692681e-01 -1.0685861790379224e-01 -1.5871157303379018e+01 1.5893288835582016e+01 7.8575575197712866e-01 2 0 0 -49 0 P 99 113 7.4832055903665540e-01 1.3597088005986616e-01 -4.5287213683775214e+01 4.5302760556408430e+01 9.1099893087589634e-01 2 0 0 -50 0 P 100 -213 8.8440025970148783e-01 1.0911319893531306e+00 -8.3111411508586187e+01 8.3126332665825444e+01 7.1254942451463665e-01 2 0 0 -51 0 P 101 113 3.2447798543348411e-01 4.1967566112957355e-01 -3.5612750699732935e+01 3.5623128553658205e+01 6.7665495309943946e-01 2 0 0 -52 0 P 102 213 1.6387140718921505e+00 3.4612773808253494e-01 -1.1396561686713173e+02 1.1397988331316596e+02 6.6841899777008662e-01 2 0 0 -53 0 P 103 111 -5.7262232173631200e-01 4.8535233404245398e-02 -2.3463415526879519e+01 2.3470840201825823e+01 1.3497999999999999e-01 2 0 0 -54 0 P 104 311 1.0250677464438143e-01 -4.6850181709810423e-01 -8.0363621199598647e+00 8.0660270978653443e+00 4.9767000000000000e-01 2 0 0 -55 0 P 105 -321 -8.8396670317825776e-01 -1.0126808398315046e+00 -6.9952130812513772e+01 6.9966786161626217e+01 4.9359999999999998e-01 1 0 0 0 0 P 106 323 -2.3366633469628288e+00 -9.2806114115218319e-01 -9.1066089028977117e+01 9.1104965724682813e+01 8.7230475367637972e-01 2 0 0 -56 0 P 107 -323 -1.2111994778170132e+00 -1.1011193888423636e+00 -1.3330595322602338e+02 1.3331894565492470e+02 8.8579735746333177e-01 2 0 0 -57 0 P 108 223 -1.1753206119412805e+00 -1.1147751686062075e-01 -3.9331795124684241e+01 3.9357287907594454e+01 7.8243078513449515e-01 2 0 0 -58 0 P 109 331 -1.0237091419113271e+00 -4.0971763893144636e-01 -5.6138225712625662e+01 5.6157214547526635e+01 9.5734561384503780e-01 2 0 0 -59 0 P 110 211 -4.8170415617849593e-01 -1.5418416701404705e-01 -9.2367398627577479e+00 9.2516298417411544e+00 1.3957000000000000e-01 1 0 0 0 0 P 111 113 -1.0224878973675876e-01 -4.2859609981606583e-01 -4.2245921402042555e+01 4.2255797248282462e+01 8.0023530828029010e-01 2 0 0 -60 0 P 112 223 -1.0647506580860617e+00 -1.6697873649024805e-01 -6.1129554095141415e+01 6.1144112119182893e+01 7.8643951455487382e-01 2 0 0 -61 0 P 113 -211 -8.1952393684115166e-01 3.1254427706526688e-01 -8.1643650637734630e+00 8.2125294573381318e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 223 8.4451038578783300e-01 2.4852285804537863e-01 -2.1948462868527634e+00 2.4895656055344042e+00 7.7821929985959881e-01 2 0 0 -62 0 P 115 221 -3.0805119912329659e-01 -1.3395929518957945e-02 -3.4863675272239876e+00 3.5425322905502048e+00 5.4744999999999999e-01 2 0 0 -63 0 P 116 323 -1.0768637987895527e-01 2.9331328781167609e-01 -7.2261492316850511e+00 7.2898693523601006e+00 9.0957870175059241e-01 2 0 0 -64 0 P 117 3122 3.1862990161466387e-01 -6.5582356158394661e-01 -6.8559359323098521e+00 6.9842844249406815e+00 1.1156800000000000e+00 2 0 0 -65 0 P 118 223 -7.1326471848013689e-02 4.9524139910689430e-01 -1.5947281099922195e+00 1.8453629519013555e+00 7.8221171716811322e-01 2 0 0 -66 0 P 119 -2212 -8.3026661048265032e-02 -3.6159380805629021e-01 -1.6088646226306885e+01 1.6120252215664252e+01 9.3827000000000005e-01 1 0 0 0 0 P 120 211 -3.2448198020842911e-01 8.2289646038388875e-01 -1.9201668873990400e+01 1.9222539230581997e+01 1.3957000000000000e-01 1 0 0 0 0 P 121 2112 1.0019925362826907e+00 -3.9220573647220502e-01 -1.8536617248105765e+02 1.8537167665650705e+02 9.3957000000000002e-01 1 0 0 0 0 P 122 -2212 -3.7662890470684862e-01 -6.0963591128243289e-01 -1.9584207282889383e+02 1.9584563141869376e+02 9.3827000000000005e-01 1 0 0 0 0 P 123 213 4.1811084657310221e-01 3.8917851228351369e-01 -1.4664014383099877e+03 1.4664017769058155e+03 8.1655271582375366e-01 2 0 0 -67 0 P 124 2112 1.0555469205954014e-01 -1.8939361380867700e-01 -2.4522493610369011e+03 2.4522495506186574e+03 9.3957000000000002e-01 1 0 0 0 0 P 125 113 5.1431033214017419e-01 1.0790091784612156e-01 -8.2099068485912915e+02 8.2099130474873800e+02 8.6121417053610461e-01 2 0 0 -68 0 V -13 0 0 0 0 0 0 1 0 P 126 92 -4.0971201475458230e+00 -4.3144150138402217e+00 2.2072248570778150e+01 8.2603690250944567e+01 7.9377483682015907e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 19 0 P 127 413 -3.7732251175281175e+00 8.9009591051681944e+00 -8.4866558717155272e+00 1.3020281435681232e+01 2.0099999999999998e+00 2 0 0 -69 0 P 128 223 -2.0474227665717468e-01 1.6503872117384124e+00 -1.5078771956206600e+00 2.4114437726551667e+00 8.8072134247110367e-01 2 0 0 -70 0 P 129 -211 -2.2455245400575583e+00 5.9663926796949021e+00 -5.7765541272250500e+00 8.6039688189799026e+00 1.3957000000000000e-01 1 0 0 0 0 P 130 213 -1.0463129532021751e+00 2.7758984836240455e+00 -2.5781817975453283e+00 4.0047968252681683e+00 7.6876071898803966e-01 2 0 0 -71 0 P 131 2114 -6.2063006531478816e-02 1.4168584871537696e-01 1.5297207336070029e-01 1.2032487121620512e+00 1.1834189079043145e+00 2 0 0 -72 0 P 132 113 -4.8414298029610545e-02 3.9153192496308137e-01 -3.3437608436608403e-02 7.5902790052269886e-01 6.4758326692012358e-01 2 0 0 -73 0 P 133 -2212 7.5954680321619825e-02 -5.2805426944356992e-01 1.0800826063831563e+00 1.5269379340535665e+00 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -7.3490516497665692e-01 -3.1373867676948067e-02 3.5891909481833012e-01 8.3028466359892950e-01 1.3957000000000000e-01 1 0 0 0 0 P 135 2112 5.5539678531283410e-01 -1.2832316635944352e+00 6.2023385086162772e+00 6.4270478333330896e+00 9.3957000000000002e-01 1 0 0 0 0 P 136 223 -2.3883417000110280e-01 -7.1509171302926766e-01 1.9561530759326933e+00 2.2300275346405201e+00 7.6032231978989651e-01 2 0 0 -74 0 P 137 -2112 -5.8231894263115681e-02 -1.3427608390171000e+00 3.1431907107219086e+00 3.5452555977215345e+00 9.3957000000000002e-01 1 0 0 0 0 P 138 1114 -3.2703507306031432e-01 -4.2486160861721292e+00 9.7688534224514463e+00 1.0727689309681075e+01 1.2227551467943698e+00 2 0 0 -75 0 P 139 213 -1.5142675925637822e-01 -1.5324713866749449e+00 5.4733688893311774e+00 5.8011751390981487e+00 1.1508550653299920e+00 2 0 0 -76 0 P 140 -3122 6.0281367010633469e-01 -1.1956400780867902e+00 1.9792776697685712e+00 2.6372753882821871e+00 1.1156800000000000e+00 2 0 0 -77 0 P 141 -323 -9.6801332035710112e-03 -2.7165119204987613e+00 4.4797714946146980e+00 5.3178750600378537e+00 9.1209198605156749e-01 2 0 0 -78 0 P 142 211 -2.5685450130279563e-01 -1.6698368966187635e-01 3.9223363091708413e-01 5.1689921026734131e-01 1.3957000000000000e-01 1 0 0 0 0 P 143 313 4.5413329802911012e-01 -1.2249624721241412e+00 1.5345533638136639e+00 2.2176852647346266e+00 9.2547490324588222e-01 2 0 0 -79 0 P 144 -323 2.2862821010783452e-01 -2.1604274803954069e+00 8.4147809516499428e-01 2.4989467224050088e+00 9.0384267451336442e-01 2 0 0 -80 0 P 145 323 3.1432030966464937e+00 -6.9951448013688662e+00 3.0917625354266178e+00 8.3238231278214414e+00 9.5669189862856430e-01 2 0 0 -81 0 V -15 0 0 0 0 0 2 1 0 P 50 2 -6.2484192554613793e-01 -3.2055504512990418e-01 -1.0524805623263189e+00 1.2652660996617133e+00 0 2 0 0 -15 0 P 51 -2 6.2484192554613793e-01 3.2055504512990418e-01 -8.3404266861924702e+02 8.3404296427731106e+02 0 2 0 0 -15 0 P 146 92 0 0 -8.3509514918157333e+02 8.3530823037697280e+02 1.8866148226801524e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 7 0 P 147 321 -1.3352204769137149e-01 4.9296202288796004e-01 -3.2798334434952370e+00 3.3558587679309912e+00 4.9359999999999998e-01 1 0 0 0 0 P 148 -313 -1.6924480383505880e-01 -1.2378704055303065e-01 -4.9894141238107830e+00 5.0727457043385131e+00 8.9136336416092010e-01 2 0 0 -82 0 P 149 221 -1.3739883147175472e-01 -8.5872539904907663e-01 -1.2365624064248676e+01 1.2408249181519839e+01 5.4744999999999999e-01 2 0 0 -83 0 P 150 -213 -3.6154236993967837e-01 2.3480870396448497e-01 -6.9607456368707844e+01 6.9612528568263230e+01 7.2132068664257343e-01 2 0 0 -84 0 P 151 211 1.0118905422867266e+00 -3.0725703950395555e-01 -1.1330868310712944e+02 1.1331370383415536e+02 1.3957000000000000e-01 1 0 0 0 0 P 152 -211 -1.3657970927710039e-01 1.9880052580319868e-01 -2.8621389570046125e+02 2.8621403136024878e+02 1.3957000000000000e-01 1 0 0 0 0 P 153 113 -7.3602780071762700e-02 3.6319822645041916e-01 -3.4533024237372007e+02 3.4533111296051607e+02 6.8113899867877314e-01 2 0 0 -85 0 V -17 0 0 0 0 0 0 2 0 P 154 -211 -5.2625773714557944e-01 4.3149572656040536e-01 8.6974359744375143e+00 8.7251365652513027e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 111 -1.0707603412843345e+00 -2.9695948680924672e-01 1.9559391998941631e+01 1.9591394733758371e+01 1.3497999999999999e-01 2 0 0 -86 0 V -18 0 0 0 0 0 0 2 0 P 156 -211 -4.7900536626054746e-01 1.4069127556072655e-01 9.3917665576603220e+00 9.4060618238672085e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 211 -8.9297845650912555e-01 -1.5422424524558206e-01 4.0557405172696321e+01 4.0567767867714451e+01 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 158 2212 4.6290357495615170e-01 -1.3252120208010565e-01 1.3197052251654168e+03 1.3197056465443668e+03 9.3827000000000005e-01 1 0 0 0 0 P 159 211 5.1517851057490238e-02 -2.3894145847364143e-01 4.2474195388145165e+02 4.2474204714617991e+02 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 0 2 0 P 160 -211 -1.0013837565306248e-01 1.4908421867049057e-01 1.2898599116736952e+02 1.2898619170675661e+02 1.3957000000000000e-01 1 0 0 0 0 P 161 111 2.3833573044049225e-01 -3.9355780363182158e-02 1.1491519248550408e+03 1.1491519581719572e+03 1.3497999999999999e-01 2 0 0 -87 0 V -21 0 0 0 0 0 0 1 0 P 162 310 1.1392562163019743e-01 6.3659896442009034e-01 5.6061330356469568e+01 5.6067269186708948e+01 4.9767000000000000e-01 2 0 0 -88 0 V -22 0 0 0 0 0 0 2 0 P 163 2112 4.5511112375741286e-01 4.6983057728531935e-01 6.6835804127930771e+01 6.6845608472945798e+01 9.3957000000000002e-01 1 0 0 0 0 P 164 -211 2.2901799266586589e-01 8.9560301047812874e-02 6.4992261651624998e+00 6.5053739953458081e+00 1.3957000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 165 -211 2.4802595452544285e-01 2.9518051097941739e-01 3.4978177673961217e+00 3.5217690621323068e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 211 -2.2376165679423646e-01 -2.7747800626478603e-01 1.8129194981409946e+00 1.8528950900285148e+00 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 167 321 6.9269713661624294e-02 4.2142114593793772e-03 5.2038009021869014e+00 5.2276190414384827e+00 4.9359999999999998e-01 1 0 0 0 0 P 168 111 -4.2296207926671636e-01 8.3254424381958625e-02 5.5907977968684603e+00 5.6090166540621027e+00 1.3497999999999999e-01 2 0 0 -89 0 V -25 0 0 0 0 0 0 2 0 P 169 -211 -1.1709978924729229e-01 -3.2431803638096862e-02 2.7023972138130448e-01 3.2752629580115461e-01 1.3957000000000000e-01 1 0 0 0 0 P 170 211 -6.4778573861165645e-02 1.6257383078706514e-01 5.5516031271865858e+00 5.5561140719729778e+00 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 171 2212 1.4842564203788020e-01 5.9714320471976404e-02 1.0477735756315488e+01 1.0520878914965035e+01 9.3827000000000005e-01 1 0 0 0 0 P 172 111 1.2031540894299537e-01 2.6857985650279653e-01 1.6903119001093621e+00 1.7210417940885412e+00 1.3497999999999999e-01 2 0 0 -90 0 V -27 0 2.0152503710103690e-04 -1.1271053232936070e-04 3.2501654030452371e-03 3.2584184667350169e-03 0 2 0 P 173 22 8.8786629697730002e-01 -4.2375152716533848e-01 1.3593693537733072e+01 1.3629247078099684e+01 0 1 0 0 0 0 P 174 22 4.7264709957296980e-01 -3.3716727167118848e-01 8.3484613203269973e+00 8.3686249448052585e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 3 0 P 175 211 1.8108056159369224e-01 2.6425360978964640e-01 7.4398888155790859e+00 7.4480900580721174e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 -211 2.4788753018237134e-01 -1.3143888242856747e-01 1.9413956212976412e+01 1.9416485264632716e+01 1.3957000000000000e-01 1 0 0 0 0 P 177 111 -1.3686265943727443e-03 -2.0502849381515503e-02 5.9259819264918905e+00 5.9275546082242085e+00 1.3497999999999999e-01 2 0 0 -91 0 V -29 0 0 0 0 0 0 3 0 P 178 211 -1.7287390683412684e-01 -1.3121666431931509e-01 8.7468136804534655e+00 8.7506189807422814e+00 1.3957000000000000e-01 1 0 0 0 0 P 179 -211 8.4601949265505315e-03 -1.4761376802715998e-01 1.9186447632550820e+00 1.9293882221770509e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -1.9355738161742622e-01 1.3719620715733435e-01 2.6124436518134631e+00 2.6266649374325257e+00 1.3497999999999999e-01 2 0 0 -92 0 V -30 0 0 0 0 0 0 3 0 P 181 211 -4.3096607680835686e-01 8.5755962396966118e-02 6.9457561919319506e+00 6.9610412085482762e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 -211 -2.3556399244346307e-01 -3.3057700977244142e-01 1.0230481972067336e+01 1.0239483029900521e+01 1.3957000000000000e-01 1 0 0 0 0 P 183 111 -7.7622148163062718e-02 -7.0004511450217338e-03 1.3810626721784347e+00 1.3898301727500093e+00 1.3497999999999999e-01 2 0 0 -93 0 V -31 0 0 0 0 0 0 2 0 P 184 -321 -5.7264200650251118e-01 1.0437562244576773e-01 9.2811590677248432e+00 9.3124845094412496e+00 4.9359999999999998e-01 1 0 0 0 0 P 185 111 -9.0225144903356580e-01 6.2059157745136884e-01 1.3046201545943594e+01 1.3092776098332537e+01 1.3497999999999999e-01 2 0 0 -94 0 V -32 0 0 0 0 0 0 2 0 P 186 211 -3.4810423524934953e-01 5.4967858291344263e-01 1.9661715963328943e+00 2.0757248455030131e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 111 -4.2699880718416239e-01 2.1768914976425433e-03 2.2897004495760913e+00 2.3330838967731626e+00 1.3497999999999999e-01 2 0 0 -95 0 V -33 0 0 0 0 0 0 2 0 P 188 321 -7.2275942535853854e-01 -3.1574931364079450e-01 1.5687601268273692e+00 1.8239320468517080e+00 4.9359999999999998e-01 1 0 0 0 0 P 189 111 -7.4363471752560961e-01 -1.6505319135796484e-01 2.5976902379050384e+00 2.7104334195095028e+00 1.3497999999999999e-01 2 0 0 -96 0 V -34 0 0 0 0 0 0 2 0 P 190 211 -1.6575732203882268e-01 4.2734967660804857e-01 4.8881685220066934e-01 6.8448881349650759e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 3.4609231834538212e-01 3.5845012183673264e-01 1.4485083074232270e+00 1.5377458501769894e+00 1.3497999999999999e-01 2 0 0 -97 0 V -35 0 0 0 0 0 0 2 0 P 192 -311 6.6798542204037215e-01 1.1866892213487203e-01 2.8684736351625345e-01 8.8895650961975192e-01 4.9767000000000000e-01 2 0 0 -98 0 P 193 111 1.5542024407536167e-01 -3.3718818769446601e-01 1.0423136404107036e-01 4.0857692524050543e-01 1.3497999999999999e-01 2 0 0 -99 0 V -36 0 0 0 0 0 0 2 0 P 194 311 8.5646002831319534e-01 -4.5846166490335166e-01 9.5174437589003191e-01 1.4481725257104205e+00 4.9767000000000000e-01 2 0 0 -100 0 P 195 111 7.6526437662955915e-01 -5.0171033494026984e-01 2.0717065513132060e-01 9.4788296063999700e-01 1.3497999999999999e-01 2 0 0 -101 0 V -37 0 0 0 0 0 0 2 0 P 196 -211 6.7383629618453345e-01 5.7902146343969829e-01 -1.3881929393992837e-01 9.0998450011498566e-01 1.3957000000000000e-01 1 0 0 0 0 P 197 211 8.5617186133251022e-01 5.0212541822738144e-01 1.3101495034058219e-01 1.0108436545185131e+00 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 0 2 0 P 198 22 -5.3809689045391650e-02 5.0032214313397411e-02 -2.2298337506138949e-01 2.3477710846254105e-01 0 1 0 0 0 0 P 199 223 6.9579074603945135e-02 3.5880560036094283e-01 -1.8849084900037119e-01 8.8520896580234565e-01 7.8388991989109003e-01 2 0 0 -102 0 V -39 0 0 0 0 0 0 2 0 P 200 211 -2.0613293758884182e-01 7.5469237928087163e-01 -4.9951578509996852e-01 9.3864113470892929e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 1.6333148644898571e-01 -7.2136643928093588e-02 -5.8189426397003008e-01 6.2345922457211811e-01 1.3497999999999999e-01 2 0 0 -103 0 V -40 0 0 0 0 0 0 2 0 P 202 -211 -3.8337077247376494e-01 -1.1910359914220048e-01 -3.7900915741851593e-01 5.6946162541724499e-01 1.3957000000000000e-01 1 0 0 0 0 P 203 111 -3.0206747450609372e-01 5.3172783936354773e-01 -1.5650121856049731e-01 6.4551644914722117e-01 1.3497999999999999e-01 2 0 0 -104 0 V -41 0 0 0 0 0 0 2 0 P 204 2212 -3.6993326024791232e-02 5.4862136550209861e-01 -3.4306407219321704e+00 3.5988887541482923e+00 9.3827000000000005e-01 1 0 0 0 0 P 205 211 6.0734757507655945e-02 2.4704121577504121e-01 -3.9662794464351869e-01 4.9143828140801810e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 -4.8332121140797984e-06 2.6461588082586680e-06 -2.8941648805023780e-06 1.1748744781550016e-05 0 2 0 P 206 22 -5.1811397305556638e-02 2.9957302962379379e-02 4.4216531614163120e-02 7.4410769109856084e-02 0 1 0 0 0 0 P 207 22 -1.3658582384421188e-02 5.8871746529249270e-03 -8.3420462969452575e-02 8.4735997900442950e-02 0 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 208 -3122 -1.4256299206367037e-01 -1.1256150050896895e-01 -3.1143565440600463e+00 3.3131484790200108e+00 1.1156800000000000e+00 2 0 0 -105 0 P 209 -211 1.3365485837147481e-02 -4.0641861651824575e-02 -1.4777093279711586e+00 1.4849023671619499e+00 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 1 0 P 210 310 1.1339748377923020e+00 6.0863526318946193e-01 -1.0043461684327076e+01 1.0137807151933293e+01 4.9767000000000000e-01 2 0 0 -106 0 V -45 0 0 0 0 0 0 2 0 P 211 -211 2.3935909589577814e-01 7.0874668168147775e-02 -2.1235757825624493e+00 2.1427482083907359e+00 1.3957000000000000e-01 1 0 0 0 0 P 212 211 -3.1601317742321244e-01 -2.0351504727220368e-03 -2.2997977761493003e+00 2.3256005818333958e+00 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 213 211 5.4565412656345846e-01 2.2769659191167229e-02 -1.0765514478924338e+00 1.2151953291856863e+00 1.3957000000000000e-01 1 0 0 0 0 P 214 -211 1.6600183191236706e-01 2.0709143213423670e-02 -2.3563481048250310e+00 2.3663984560558289e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 215 111 5.1559083653035194e-02 -2.3003562269278952e-02 -3.6815908046226373e+00 3.6844969746311604e+00 1.3497999999999999e-01 2 0 0 -107 0 P 216 111 2.7583112332674953e-01 2.2485656279743887e-01 -1.0383966280255333e+01 1.0390939254576967e+01 1.3497999999999999e-01 2 0 0 -108 0 P 217 111 2.9718568832089863e-02 1.3823284577376935e-01 -8.1202229278437006e+00 8.1225754235502592e+00 1.3497999999999999e-01 2 0 0 -109 0 V -48 0 0 0 0 0 0 2 0 P 218 22 3.1571530742195124e+00 1.4545124759738499e+00 -5.2580486695097385e+01 5.2695263574349163e+01 0 1 0 0 0 0 P 219 22 3.9026663405371731e-01 2.5609197344384971e-01 -4.7243452490608435e+00 4.7473497002898100e+00 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 220 -211 3.7258157895274568e-01 -1.8515726362886387e-01 -1.4735894063041600e+01 1.4742427000576741e+01 1.3957000000000000e-01 1 0 0 0 0 P 221 211 -1.0024906776581886e-01 7.8298645725071628e-02 -1.1352632403374183e+00 1.1508618350052759e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 222 -211 6.8993384902572696e-01 2.1759986663523243e-01 -1.8082602522172699e+01 1.8097606255463113e+01 1.3957000000000000e-01 1 0 0 0 0 P 223 211 5.8386710010928468e-02 -8.1628986575366269e-02 -2.7204611161602511e+01 2.7205154300945310e+01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 224 -211 9.2691841169072753e-01 1.0548212422447931e+00 -7.8261222042622293e+01 7.8273943180247102e+01 1.3957000000000000e-01 1 0 0 0 0 P 225 111 -4.2518151989239736e-02 3.6310747108337496e-02 -4.8501894659638873e+00 4.8523894855783380e+00 1.3497999999999999e-01 2 0 0 -110 0 V -52 0 0 0 0 0 0 2 0 P 226 211 1.2361885714045197e-01 -1.3953469680448197e-01 -1.3266544219231287e+01 1.3268587975333777e+01 1.3957000000000000e-01 1 0 0 0 0 P 227 -211 2.0085912829303212e-01 5.5921035793405549e-01 -2.2346206480501650e+01 2.2354540578324425e+01 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 228 211 7.2058832408203366e-01 4.6128648391528006e-02 -6.7661422708724686e+01 6.7665419367196932e+01 1.3957000000000000e-01 1 0 0 0 0 P 229 111 9.1812574781011680e-01 2.9999908969100691e-01 -4.6304194158407036e+01 4.6314463945969010e+01 1.3497999999999999e-01 2 0 0 -111 0 V -54 0 -2.0438553385732205e-04 1.7323634119147142e-05 -8.3747743085463879e-03 8.3774243906249487e-03 0 2 0 P 230 22 -5.7263922837514492e-01 4.5583165465348387e-02 -2.3452447808615592e+01 2.3459482128271418e+01 0 1 0 0 0 0 P 231 22 1.6906638832940774e-05 2.9520679388970062e-03 -1.0967718263929645e-02 1.1358073554403367e-02 0 1 0 0 0 0 V -55 0 0 0 0 0 0 1 0 P 232 130 1.0250677464438143e-01 -4.6850181709810423e-01 -8.0363621199598647e+00 8.0660270978653443e+00 4.9767000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 233 321 -1.5343597857397016e+00 -7.5699058134535568e-01 -6.9617737193972133e+01 6.9640507376535624e+01 4.9359999999999998e-01 1 0 0 0 0 P 234 111 -8.0230356122312729e-01 -1.7107055980682756e-01 -2.1448351835004981e+01 2.1464458348147186e+01 1.3497999999999999e-01 2 0 0 -112 0 V -57 0 0 0 0 0 0 2 0 P 235 -321 -4.9332609823613061e-01 -2.6539449700135842e-01 -4.9063533958388696e+01 4.9069214486520977e+01 4.9359999999999998e-01 1 0 0 0 0 P 236 111 -7.1787337958088260e-01 -8.3572489184100518e-01 -8.4242419267634688e+01 8.4249731168403741e+01 1.3497999999999999e-01 2 0 0 -113 0 V -58 0 0 0 0 0 0 3 0 P 237 211 -4.2330717962023179e-01 6.6801887311834646e-02 -1.0362178804873478e+01 1.0371975743778791e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 -211 -2.6483547394603346e-01 -1.2313219427601770e-01 -1.8980495406649254e+01 1.8983255385530189e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -4.8717795837501521e-01 -5.5147209896437697e-02 -9.9891209131615089e+00 1.0002056778285475e+01 1.3497999999999999e-01 2 0 0 -114 0 V -59 0 0 0 0 0 0 2 0 P 240 22 -1.5663781208358832e-01 1.0552864142887386e-01 -1.1843246346813011e+01 1.1844752244333179e+01 0 1 0 0 0 0 P 241 113 -8.6707132982773871e-01 -5.1524628036032027e-01 -4.4294979365812651e+01 4.4312462303193463e+01 7.2926465274180774e-01 2 0 0 -115 0 V -60 0 0 0 0 0 0 2 0 P 242 -211 1.5095608049811401e-01 -2.9944859494866521e-01 -7.8314065733988452e+00 7.8398256295679642e+00 1.3957000000000000e-01 1 0 0 0 0 P 243 211 -2.5320487023487276e-01 -1.2914750486740059e-01 -3.4414514828643711e+01 3.4415971618714501e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 3 0 P 244 211 -5.2341425798164398e-01 -2.2246172983813900e-01 -1.7483814151723198e+01 1.7493618516007412e+01 1.3957000000000000e-01 1 0 0 0 0 P 245 -211 -1.0423254537048444e-01 -2.6369588440118947e-03 -1.5458764720820714e+01 1.5459746371000318e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -4.3710385473393337e-01 5.8119952191902843e-02 -2.8186975222597507e+01 2.8190747232175166e+01 1.3497999999999999e-01 2 0 0 -116 0 V -62 0 0 0 0 0 0 3 0 P 247 211 2.3005095202180803e-01 -7.0004625499251225e-02 -1.1616856742892094e+00 1.1944946541806731e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 4.4540759419859532e-01 1.8846107881027499e-01 -8.3146379436215312e-01 9.7196570383487402e-01 1.3957000000000000e-01 1 0 0 0 0 P 249 111 1.6905183956742961e-01 1.3006640473435485e-01 -2.0169681820140073e-01 3.2310524751885700e-01 1.3497999999999999e-01 2 0 0 -117 0 V -63 0 0 0 0 0 0 2 0 P 250 22 -2.3999091273686737e-01 1.7584302036618826e-01 -8.9048837249843449e-01 9.3887483061518329e-01 0 1 0 0 0 0 P 251 22 -6.8060286386429233e-02 -1.8923894988514620e-01 -2.5958791547255529e+00 2.6036574599350217e+00 0 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 252 311 -3.0780055540959944e-01 1.7114977184241728e-01 -3.4173690562484995e+00 3.4713282935811374e+00 4.9767000000000000e-01 2 0 0 -118 0 P 253 211 2.0011417553064417e-01 1.2216351596925883e-01 -3.8087801754365525e+00 3.8185410587789645e+00 1.3957000000000000e-01 1 0 0 0 0 V -65 0 1.6474544619650281e+01 -3.3908915871301438e+01 -3.5448155321874611e+02 3.6111772564950752e+02 0 2 0 P 254 2212 1.9278057886684058e-01 -6.1320608521143183e-01 -6.0111612768283225e+00 6.1178097832041880e+00 9.3827000000000005e-01 1 0 0 0 0 P 255 -211 1.2584932274782326e-01 -4.2617476372514757e-02 -8.4477465548152930e-01 8.6647464173649313e-01 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 3 0 P 256 -211 1.7967345567817797e-01 3.1719387773695845e-01 -3.6685062355033643e-01 5.3568056866794911e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 211 -5.9902548806642995e-02 2.9547705164093805e-02 -6.5873737457704995e-01 6.7666542382381345e-01 1.3957000000000000e-01 1 0 0 0 0 P 258 111 -1.9109737871954863e-01 1.4849981620584204e-01 -5.6914011186483315e-01 6.3301695940959291e-01 1.3497999999999999e-01 2 0 0 -119 0 V -67 0 0 0 0 0 0 2 0 P 259 211 3.4393112159270744e-01 3.6830028212407157e-01 -1.4165057918405014e+03 1.4165058883503398e+03 1.3957000000000000e-01 1 0 0 0 0 P 260 111 7.4179724980394809e-02 2.0878230159442155e-02 -4.9895646469486252e+01 4.9895888555475679e+01 1.3497999999999999e-01 2 0 0 -120 0 V -68 0 0 0 0 0 0 2 0 P 261 -211 8.3394218823973174e-02 8.4020316447083847e-03 -6.4153759367312284e+02 6.4153761433050488e+02 1.3957000000000000e-01 1 0 0 0 0 P 262 211 4.3091611331620100e-01 9.9498886201413173e-02 -1.7945309118600633e+02 1.7945369041823318e+02 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 263 421 -3.4572139502135908e+00 8.2411116343858897e+00 -7.8197062211554007e+00 1.2020499777594042e+01 1.8645000000000000e+00 2 0 0 -121 0 P 264 211 -3.1601116731452705e-01 6.5984747078230577e-01 -6.6694965056012689e-01 9.9978165808719022e-01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 3 0 P 265 -211 -2.0404176494006970e-01 1.4505074250031685e-01 -2.9433626314209360e-01 4.1083619660419851e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 211 2.1276499259722290e-01 8.5663410235635828e-01 -7.1269943947514514e-01 1.1430272102285957e+00 1.3957000000000000e-01 1 0 0 0 0 P 267 111 -2.1346550431432793e-01 6.4870236688173744e-01 -5.0084149300342129e-01 8.5758036582237274e-01 1.3497999999999999e-01 2 0 0 -122 0 V -71 0 0 0 0 0 0 2 0 P 268 211 -4.5239779434231980e-01 4.4714869338751018e-01 -4.4733947454982514e-01 7.9006209168296837e-01 1.3957000000000000e-01 1 0 0 0 0 P 269 111 -5.9391515885985524e-01 2.3287497902365355e+00 -2.1308423229955031e+00 3.2147347335852001e+00 1.3497999999999999e-01 2 0 0 -123 0 V -72 0 0 0 0 0 0 2 0 P 270 2112 -1.5086616871518638e-01 2.4597163785774212e-01 2.0499692046642268e-01 1.0040309605753879e+00 9.3957000000000002e-01 1 0 0 0 0 P 271 111 8.8803162183707568e-02 -1.0428578914236518e-01 -5.2024847105722395e-02 1.9921775158666336e-01 1.3497999999999999e-01 2 0 0 -124 0 V -73 0 0 0 0 0 0 2 0 P 272 211 -2.6060685060605454e-01 2.4395327939923903e-01 -1.8821139558509226e-01 4.2700403679653626e-01 1.3957000000000000e-01 1 0 0 0 0 P 273 -211 2.1219255257644398e-01 1.4757864556384234e-01 1.5477378714848386e-01 3.3202386372616249e-01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 3 0 P 274 211 3.5333906828391139e-02 -2.8796631636556425e-01 6.0861989503444336e-01 6.8852817361720686e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 -211 3.4266795068289738e-02 1.0222999893608455e-02 9.4522127317991880e-02 1.7231639627091658e-01 1.3957000000000000e-01 1 0 0 0 0 P 276 111 -3.0843487189778362e-01 -4.3734839655731189e-01 1.2530110535802577e+00 1.3691829647523961e+00 1.3497999999999999e-01 2 0 0 -125 0 V -75 0 0 0 0 0 0 2 0 P 277 2112 -3.2821321010751359e-01 -3.4589908512598977e+00 8.4431811092602054e+00 9.1783680820207429e+00 9.3957000000000002e-01 1 0 0 0 0 P 278 -211 1.1781370471992999e-03 -7.8962523491223102e-01 1.3256723131912411e+00 1.5493212276603308e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 279 211 4.4244847187558028e-01 -7.6378670625018696e-01 3.2600282333530721e+00 3.3802950537000016e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 111 -5.9387523113195850e-01 -7.6868468042475790e-01 2.2133406559781053e+00 2.4208800853981467e+00 1.3497999999999999e-01 2 0 0 -126 0 V -77 0 5.7160697300931780e+00 -1.1337437084385598e+01 1.8768136385523221e+01 2.5007478702698265e+01 0 2 0 P 281 -2212 4.3191231033543331e-01 -9.1252800413500801e-01 1.6528936079062766e+00 2.1521299854115088e+00 9.3827000000000005e-01 1 0 0 0 0 P 282 211 1.7090135977090137e-01 -2.8311207395178217e-01 3.2638406186229446e-01 4.8514540287067803e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 283 -321 1.7651061419280190e-01 -2.3116849405712983e+00 3.4286252572646370e+00 4.1682316845563951e+00 4.9359999999999998e-01 1 0 0 0 0 P 284 111 -1.8619074739637292e-01 -4.0482697992746303e-01 1.0511462373500611e+00 1.1496433754814583e+00 1.3497999999999999e-01 2 0 0 -127 0 V -79 0 0 0 0 0 0 2 0 P 285 321 4.0780883189307676e-01 -3.9143493794809248e-01 8.0129824603752053e-01 1.0978384184930083e+00 4.9359999999999998e-01 1 0 0 0 0 P 286 -211 4.6324466136033353e-02 -8.3352753417604852e-01 7.3325511777614327e-01 1.1198468462416180e+00 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 287 -311 4.3562114947114677e-01 -1.7633348613653987e+00 6.9729408836090201e-01 2.0082355672918837e+00 4.9767000000000000e-01 2 0 0 -128 0 P 288 -211 -2.0699293936331223e-01 -3.9709261903000831e-01 1.4418400680409230e-01 4.9071115511312530e-01 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 289 321 1.8369351102707678e+00 -4.7268542073627611e+00 1.8193713822609261e+00 5.4102896857375899e+00 4.9359999999999998e-01 1 0 0 0 0 P 290 111 1.3062679863757258e+00 -2.2682905940061051e+00 1.2723911531656915e+00 2.9135334420838523e+00 1.3497999999999999e-01 2 0 0 -129 0 V -82 0 0 0 0 0 0 2 0 P 291 -321 -1.8490543062752615e-01 1.6963850567164776e-01 -3.7801763105419757e+00 3.8205158211509613e+00 4.9359999999999998e-01 1 0 0 0 0 P 292 211 1.5660626792467335e-02 -2.9342554622467842e-01 -1.2092378132688073e+00 1.2522298831875522e+00 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 3 0 P 293 111 -9.6382238909848178e-02 -3.5502652558143760e-01 -3.2897803319112930e+00 3.3130360098366092e+00 1.3497999999999999e-01 2 0 0 -130 0 P 294 111 -6.4143231556805569e-02 -2.8543320263520600e-01 -4.0647438848687987e+00 4.0774929696198665e+00 1.3497999999999999e-01 2 0 0 -131 0 P 295 111 2.3126638994899040e-02 -2.1826567083243312e-01 -5.0110998474685848e+00 5.0177202020633640e+00 1.3497999999999999e-01 2 0 0 -132 0 V -84 0 0 0 0 0 0 2 0 P 296 -211 -2.1306490197827105e-01 -2.2385894102388765e-01 -2.9394200252502657e+01 2.9396156172994090e+01 1.3957000000000000e-01 1 0 0 0 0 P 297 111 -1.4847746796140732e-01 4.5866764498837265e-01 -4.0213256116205187e+01 4.0216372395269133e+01 1.3497999999999999e-01 2 0 0 -133 0 V -85 0 0 0 0 0 0 2 0 P 298 211 -8.9166718346674386e-03 2.5066405012629434e-01 -5.0928575500927323e+01 5.0929384389678390e+01 1.3957000000000000e-01 1 0 0 0 0 P 299 -211 -6.4686108237095266e-02 1.1253417632412487e-01 -2.9440166687279270e+02 2.9440172857083763e+02 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -9.8993092922332541e-05 -2.7454264916662383e-05 1.8082895256777141e-03 1.8112482173469277e-03 0 2 0 P 300 22 -7.8445959309493418e-01 -1.5556709339623351e-01 1.4179751398399395e+01 1.4202286002406654e+01 0 1 0 0 0 0 P 301 22 -2.8630074818940032e-01 -1.4139239341301318e-01 5.3796406005422375e+00 5.3891087313517172e+00 0 1 0 0 0 0 V -87 0 2.1616905475452377e-05 -3.5695452899622584e-06 1.0422737912865275e-01 1.0422738215047676e-01 0 2 0 P 302 22 1.1659270920951592e-01 4.4270297775673588e-02 4.2699138489956192e+02 4.2699140311271486e+02 0 1 0 0 0 0 P 303 22 1.2174302123097631e-01 -8.3626078138855753e-02 7.2216053995547884e+02 7.2216055505924237e+02 0 1 0 0 0 0 V -88 0 5.4831801673651297e+00 3.0639172877229182e+01 2.6982023039953278e+03 2.6984881367669200e+03 0 2 0 P 304 211 1.9220692468105463e-01 1.1261290164849826e-01 2.1287598858934249e+01 2.1289221924046725e+01 1.3957000000000000e-01 1 0 0 0 0 P 305 -211 -7.8281303050857218e-02 5.2398606277159199e-01 3.4773731497535316e+01 3.4778047262662206e+01 1.3957000000000000e-01 1 0 0 0 0 V -89 0 -8.6891503763017485e-05 1.7103429560433592e-05 1.1485493655768813e-03 1.1522921689533533e-03 0 2 0 P 306 22 -3.4881308266048144e-01 3.6878934244511233e-02 4.9290939956293629e+00 4.9415582805604492e+00 0 1 0 0 0 0 P 307 22 -7.4148996606234932e-02 4.6375490137447392e-02 6.6170380123909700e-01 6.6745837350165138e-01 0 1 0 0 0 0 V -90 0 2.9332284530951253e-05 6.5478402470914247e-05 4.1208944087578730e-04 4.1958123267304840e-04 0 2 0 P 308 22 1.3520985812340036e-01 2.0480049079093124e-01 1.4958384842671477e+00 1.5158356499886767e+00 0 1 0 0 0 0 P 309 22 -1.4894449180404966e-02 6.3779365711865321e-02 1.9447341584221436e-01 2.0520614409986451e-01 0 1 0 0 0 0 V -91 0 -2.6971572398775645e-08 -4.0405037338046226e-07 1.1678353410739115e-04 1.1681452700156546e-04 0 2 0 P 310 22 -6.6334280841851292e-02 -3.3936935603290311e-03 3.5578896587812197e+00 3.5585096006661470e+00 0 1 0 0 0 0 P 311 22 6.4965654247478549e-02 -1.7109155821186474e-02 2.3680922677106708e+00 2.3690450075580642e+00 0 1 0 0 0 0 V -92 0 -3.1131904252298843e-06 2.2066733644097563e-06 4.2018725895732205e-05 4.2247462045466012e-05 0 2 0 P 312 22 -2.0183326759233433e-01 1.5334676555498100e-01 2.4925497396591334e+00 2.5054053769975013e+00 0 1 0 0 0 0 P 313 22 8.2758859749081093e-03 -1.6150558397646644e-02 1.1989391215432950e-01 1.2125956043502539e-01 0 1 0 0 0 0 V -93 0 -2.6686838127936573e-06 -2.4067860907078500e-07 4.7481545988055780e-05 4.7782976538584531e-05 0 2 0 P 314 22 -1.0355848497936744e-01 -1.7943791911538443e-02 1.2954847022895966e+00 1.2997411101237613e+00 0 1 0 0 0 0 P 315 22 2.5936336816304729e-02 1.0943340766516709e-02 8.5577969888838229e-02 9.0089062626246511e-02 0 1 0 0 0 0 V -94 0 -7.5988599506094431e-05 5.2266898419858417e-05 1.0987653003077824e-03 1.1026878598253619e-03 0 2 0 P 316 22 -2.6029225938480977e-01 2.4706799532076926e-01 4.6044690237622223e+00 4.6184336787912414e+00 0 1 0 0 0 0 P 317 22 -6.4195918964875609e-01 3.7352358213059961e-01 8.4417325221813719e+00 8.4743424195412640e+00 0 1 0 0 0 0 V -95 0 -1.9395667969557785e-05 9.8881458176574981e-08 1.0400560592332318e-04 1.0597622252236753e-04 0 2 0 P 318 22 -2.3950662340221590e-01 -5.4252171118300253e-02 1.0741096942908290e+00 1.1018250115576969e+00 0 1 0 0 0 0 P 319 22 -1.8749218378194649e-01 5.6429062615942799e-02 1.2155907552852623e+00 1.2312588852154662e+00 0 1 0 0 0 0 V -96 0 -2.2793100869853192e-04 -5.0590349681780610e-05 7.9621639799466997e-04 8.3077323954786671e-04 0 2 0 P 320 22 -5.1022379360836001e-01 -1.7368662425119030e-01 1.8758212393726974e+00 1.9517173681375126e+00 0 1 0 0 0 0 P 321 22 -2.3341092391724957e-01 8.6334328932254518e-03 7.2186899853234077e-01 7.5871605137199594e-01 0 1 0 0 0 0 V -97 0 1.0104151426735851e-04 1.0464937006651097e-04 4.2289142246963187e-04 4.4894428747526327e-04 0 2 0 P 322 22 9.9273011355347621e-05 5.7732324047575070e-02 1.7058887391943542e-01 1.8009329526710871e-01 0 1 0 0 0 0 P 323 22 3.4599304533402675e-01 3.0071779778915753e-01 1.2779194335037916e+00 1.3576525549098801e+00 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 324 130 6.6798542204037215e-01 1.1866892213487203e-01 2.8684736351625345e-01 8.8895650961975192e-01 4.9767000000000000e-01 1 0 0 0 0 V -99 0 2.6875782691730689e-06 -5.8307696739305103e-06 1.8024032237860585e-06 7.0652473369523398e-06 0 2 0 P 325 22 4.7149942041787921e-02 -1.6364805404526594e-01 -1.6428323036128161e-02 1.7109556518251898e-01 0 1 0 0 0 0 P 326 22 1.0827030203357375e-01 -1.7354013364920007e-01 1.2065968707719853e-01 2.3748136005798634e-01 0 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 327 310 8.5646002831319534e-01 -4.5846166490335166e-01 9.5174437589003191e-01 1.4481725257104205e+00 4.9767000000000000e-01 2 0 0 -134 0 V -101 0 1.5557898857859327e-04 -1.0199819677117774e-04 4.2117994738565543e-05 1.9270552349079140e-04 0 2 0 P 328 22 4.7657819268039692e-01 -2.4323366797804116e-01 8.6286470762297285e-02 5.4197301225538763e-01 0 1 0 0 0 0 P 329 22 2.8868618394916223e-01 -2.5847666696222865e-01 1.2088418436902332e-01 4.0590994838460981e-01 0 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 330 211 2.2798258472957686e-01 2.1861811616986315e-01 1.3145374752371396e-02 3.4557564357896919e-01 1.3957000000000000e-01 1 0 0 0 0 P 331 -211 -4.2988624099693888e-02 2.4920840609822972e-01 -1.4749700158285700e-01 3.2432699833337691e-01 1.3957000000000000e-01 1 0 0 0 0 P 332 111 -1.1541488602593784e-01 -1.0902092190715008e-01 -5.4139222169885558e-02 2.1530632388999948e-01 1.3497999999999999e-01 2 0 0 -135 0 V -103 0 1.3403836089209804e-05 -5.9199103140462639e-06 -4.7753286920227508e-05 5.1164324994254124e-05 0 2 0 P 333 22 1.5394793055486827e-01 -3.4679328980262339e-02 -5.5342557039629225e-01 5.7548456378004553e-01 0 1 0 0 0 0 P 334 22 9.3835558941174312e-03 -3.7457314947831249e-02 -2.8468693573737835e-02 4.7974660792072660e-02 0 1 0 0 0 0 V -104 0 -5.0608556200128273e-05 8.9085984135177124e-05 -2.6220303022885396e-05 1.0815019243031857e-04 0 2 0 P 335 22 -2.2570486852951949e-01 3.9987614212288713e-01 -1.7631664320921894e-01 4.9186499711768283e-01 0 1 0 0 0 0 P 336 22 -7.6362605976574238e-02 1.3185169724066056e-01 1.9815424648721637e-02 1.5365145202953834e-01 0 1 0 0 0 0 V -105 0 -2.1243333235832047e+01 -1.6772806394028088e+01 -4.6407074460891124e+02 4.9369276121939555e+02 0 2 0 P 337 -2212 -1.5771029016547838e-01 -1.7893574522800090e-02 -2.7800723212609730e+00 2.9384256703164464e+00 9.3827000000000005e-01 1 0 0 0 0 P 338 211 1.5147298101808015e-02 -9.4667925986168855e-02 -3.3428422279907344e-01 3.7472280870356472e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 1.3708184881250409e+02 7.3575571829203113e+01 -1.2141153844696432e+03 1.2255204445252255e+03 0 2 0 P 339 111 3.7325394969942860e-01 4.2567295845059833e-01 -4.6277332488332013e+00 4.6641880966872042e+00 1.3497999999999999e-01 2 0 0 -136 0 P 340 111 7.6072088809287342e-01 1.8296230473886360e-01 -5.4157284354938744e+00 5.4736190552460897e+00 1.3497999999999999e-01 2 0 0 -137 0 V -107 0 1.1927496613119502e-06 -5.3215629839914018e-07 -8.5168623532050247e-05 8.5235853844301489e-05 0 2 0 P 341 22 1.8516486402719401e-03 -7.4259401799781175e-02 -2.0475055792092962e+00 2.0488526018851485e+00 0 1 0 0 0 0 P 342 22 4.9707435012763257e-02 5.1255839530502216e-02 -1.6340852254133411e+00 1.6356443727460117e+00 0 1 0 0 0 0 V -108 0 2.2943532470041662e-04 1.8703487073623833e-04 -8.6373453671734907e-03 8.6431454618412576e-03 0 2 0 P 343 22 1.5816688971079587e-01 1.5827229089630465e-01 -8.0113672385035066e+00 8.0144913695900648e+00 0 1 0 0 0 0 P 344 22 1.1766423361595367e-01 6.6584271901134223e-02 -2.3725990417518266e+00 2.3764478849869017e+00 0 1 0 0 0 0 V -109 0 2.2179851001164627e-06 1.0316728036440805e-05 -6.0603636619721004e-04 6.0621193994218805e-04 0 2 0 P 345 22 3.2690147702322592e-02 -1.7846666596155157e-02 -1.1440657174764208e+00 1.1446717936466471e+00 0 1 0 0 0 0 P 346 22 -2.9715788702327291e-03 1.5607951236992451e-01 -6.9761572103672798e+00 6.9779036299036123e+00 0 1 0 0 0 0 V -110 0 -2.4045324538119009e-06 2.0534845885646719e-06 -2.7429315321602515e-04 2.7441757110143340e-04 0 2 0 P 347 22 -6.4735832250208666e-02 7.6478267301952729e-02 -3.3161109921869940e+00 3.3176244160317556e+00 0 1 0 0 0 0 P 348 22 2.2217680260968931e-02 -4.0167520193615233e-02 -1.5340784737768933e+00 1.5347650695465824e+00 0 1 0 0 0 0 V -111 0 3.3225633025724745e-04 1.0856529931656325e-04 -1.6756813174324824e-02 1.6760529660803939e-02 0 2 0 P 349 22 2.2898738245594183e-01 2.1119920609916069e-02 -9.7601589912661026e+00 9.7628676528550322e+00 0 1 0 0 0 0 P 350 22 6.8913836535417494e-01 2.7887916908109084e-01 -3.6544035167140933e+01 3.6551596293113981e+01 0 1 0 0 0 0 V -112 0 -1.4743707925869278e-04 -3.1437157834145138e-05 -3.9415035683563427e-03 3.9444634171835235e-03 0 2 0 P 351 22 7.2945252993901575e-04 -1.2823881648647163e-02 -3.0397740152250896e-01 3.0424865600016804e-01 0 1 0 0 0 0 P 352 22 -8.0303301375306635e-01 -1.5824667815818039e-01 -2.1144374433482472e+01 2.1160209692147021e+01 0 1 0 0 0 0 V -113 0 -2.7183503159272925e-04 -3.1646152209887545e-04 -3.1899832692549757e-02 3.1902601468817397e-02 0 2 0 P 353 22 -4.5211402474546108e-01 -4.7287950110029275e-01 -4.5554392921954040e+01 4.5559090603322055e+01 0 1 0 0 0 0 P 354 22 -2.6575935483542157e-01 -3.6284539074071243e-01 -3.8688026345680647e+01 3.8690640565081672e+01 0 1 0 0 0 0 V -114 0 -2.0605187196114897e-04 -2.3324507271423687e-05 -4.2248977565992217e-03 4.2303689795443666e-03 0 2 0 P 355 22 -4.3902499899058539e-01 -7.3408891040022475e-02 -8.0886872315753102e+00 8.1009254375825392e+00 0 1 0 0 0 0 P 356 22 -4.8152959384429810e-02 1.8261681143584778e-02 -1.9004336815861980e+00 1.9011313407029347e+00 0 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 357 211 -4.9028319463650105e-01 -5.7791835887957688e-01 -3.5148852252966137e+01 3.5157298840016360e+01 1.3957000000000000e-01 1 0 0 0 0 P 358 -211 -3.7678813519123766e-01 6.2672078519256533e-02 -9.1461271128465143e+00 9.1551634631771002e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 -5.9631762547972309e-05 7.9289970812924878e-06 -3.8453996578059141e-03 3.8459142530835070e-03 0 2 0 P 359 22 -1.6726301599983845e-01 -3.3020373319294957e-02 -8.4774619097548012e+00 8.4791761211168986e+00 0 1 0 0 0 0 P 360 22 -2.6984083873409492e-01 9.1140325511197801e-02 -1.9709513312842706e+01 1.9711571111058266e+01 0 1 0 0 0 0 V -117 0 4.4697304582515245e-05 3.4389556027547910e-05 -5.3328636585917092e-05 8.5429024005378426e-05 0 2 0 P 361 22 -9.5927002995081622e-03 3.3702220438247908e-02 -7.7736149795056358e-02 8.5268801718236170e-02 0 1 0 0 0 0 P 362 22 1.7864453986693776e-01 9.6364184296106950e-02 -1.2396066840634436e-01 2.3783644580062077e-01 0 1 0 0 0 0 V -118 0 0 0 0 0 0 1 0 P 363 310 -3.0780055540959944e-01 1.7114977184241728e-01 -3.4173690562484995e+00 3.4713282935811374e+00 4.9767000000000000e-01 2 0 0 -138 0 V -119 0 -2.1518730958724932e-04 1.6721985480728751e-04 -6.4088649604198420e-04 7.1281572427197681e-04 0 2 0 P 364 22 -1.2269083876417870e-01 7.2024541066288847e-02 -4.6719627902106964e-01 4.8837786555453178e-01 0 1 0 0 0 0 P 365 22 -6.8406539955369924e-02 7.6475275139553198e-02 -1.0194383284376356e-01 1.4463909385506113e-01 0 1 0 0 0 0 V -120 0 1.3785473788742161e-05 3.8799860028381577e-06 -9.2725488906738093e-03 9.2725938796524385e-03 0 2 0 P 366 22 1.6080208493566929e-02 -3.4593695164462125e-02 -3.5329195977686496e+01 3.5329216573915566e+01 0 1 0 0 0 0 P 367 22 5.8099516486827880e-02 5.5471925323904284e-02 -1.4566450491799756e+01 1.4566671981560116e+01 0 1 0 0 0 0 V -121 0 -8.9113940545739300e-03 2.1242478562025144e-02 -2.0156254293551553e-02 3.0984316213476124e-02 0 2 0 P 368 -323 -1.4540796727651457e+00 2.7096505503417565e+00 -2.2320888200560862e+00 3.9056641869149886e+00 9.0301630141142541e-01 2 0 0 -139 0 P 369 211 -2.0031342774484449e+00 5.5314610840441336e+00 -5.5876174010993136e+00 8.1148355906790535e+00 1.3957000000000000e-01 1 0 0 0 0 V -122 0 -5.9730102710345368e-06 1.8151438157068824e-05 -1.4014120883272445e-05 2.3996084752653750e-05 0 2 0 P 370 22 -1.0931779548427922e-03 1.9693703787985080e-02 7.8274327378203366e-03 2.1220407870607780e-02 0 1 0 0 0 0 P 371 22 -2.1237232635948514e-01 6.2900866309375236e-01 -5.0866892574124156e-01 8.3635995795176499e-01 0 1 0 0 0 0 V -123 0 -1.7437884469734499e-05 6.8374193174357823e-05 -6.2563451525547275e-05 9.4387509813214501e-05 0 2 0 P 372 22 -5.1343699792208063e-02 3.4773356934301941e-01 -2.7093024807372884e-01 4.4379951563479780e-01 0 1 0 0 0 0 P 373 22 -5.4257145906764714e-01 1.9810162208935163e+00 -1.8599120749217741e+00 2.7709352179504023e+00 0 1 0 0 0 0 V -124 0 2.0633543584206470e-06 -2.4230954422894853e-06 -1.2088048711564289e-06 4.6288533640361612e-06 0 2 0 P 374 22 5.2719164772121456e-02 7.2109299851767534e-04 3.0467263237832786e-02 6.0894042718364502e-02 0 1 0 0 0 0 P 375 22 3.6083997411586105e-02 -1.0500688214088284e-01 -8.2492110343555178e-02 1.3832370886829884e-01 0 1 0 0 0 0 V -125 0 -3.5226386228601969e-05 -4.9949616393224540e-05 1.4310655293462882e-04 1.5637456179071175e-04 0 2 0 P 376 22 -1.3955864319286909e-01 -1.4904162789966394e-01 3.3573698692364984e-01 3.9294954653923131e-01 0 1 0 0 0 0 P 377 22 -1.6887622870491453e-01 -2.8830676865764793e-01 9.1727406665660782e-01 9.7623341821316501e-01 0 1 0 0 0 0 V -126 0 -1.6348900612951341e-04 -2.1161262137518280e-04 6.0931462553537861e-04 6.6644853728969715e-04 0 2 0 P 378 22 -5.0200241289214864e-01 -5.6107404352183265e-01 1.6581171627764240e+00 1.8210335061050404e+00 0 1 0 0 0 0 P 379 22 -9.1872818239809875e-02 -2.0761063690292533e-01 5.5522349320168130e-01 5.9984657929310625e-01 0 1 0 0 0 0 V -127 0 -9.1799786469912598e-05 -1.9959654727356581e-04 5.1825883663254174e-04 5.6682202451808486e-04 0 2 0 P 380 22 -5.9940789416779050e-02 -1.2009038964927055e-01 4.8776635001686591e-01 5.0589585107094526e-01 0 1 0 0 0 0 P 381 22 -1.2624995797959387e-01 -2.8473659027819248e-01 5.6337988733319522e-01 6.4374752441051308e-01 0 1 0 0 0 0 V -128 0 0 0 0 0 0 1 0 P 382 310 4.3562114947114677e-01 -1.7633348613653987e+00 6.9729408836090201e-01 2.0082355672918837e+00 4.9767000000000000e-01 2 0 0 -140 0 V -129 0 2.6150319935221470e-04 -4.5409154444554995e-04 2.5472135951479772e-04 5.8326340725726902e-04 0 2 0 P 383 22 5.9877987993513349e-01 -1.0147928596295617e+00 6.4625448067237179e-01 1.3438700630490259e+00 0 1 0 0 0 0 P 384 22 7.0748810644059235e-01 -1.2534977343765434e+00 6.2613667249331972e-01 1.5696633790348260e+00 0 1 0 0 0 0 V -130 0 -5.4514754459329712e-06 -2.0080653954017488e-05 -1.8607325275668763e-04 1.8738861706677561e-04 0 2 0 P 385 22 2.2095871348773898e-02 -1.7470539739983937e-01 -1.4804314270555299e+00 1.4908680067749023e+00 0 1 0 0 0 0 P 386 22 -1.1847811025862208e-01 -1.8032112818159823e-01 -1.8093489048557634e+00 1.8221680030617069e+00 0 1 0 0 0 0 V -131 0 -3.4390608876534553e-05 -1.5303596956306616e-04 -2.1793260759556620e-03 2.1861615405333931e-03 0 2 0 P 387 22 -9.8709525854106819e-02 -1.4798201641743697e-01 -2.0029332473565296e+00 2.0108167099572967e+00 0 1 0 0 0 0 P 388 22 3.4566294297301257e-02 -1.3745118621776900e-01 -2.0618106375122691e+00 2.0666762596625698e+00 0 1 0 0 0 0 V -132 0 3.7431857798932649e-07 -3.5327613125237638e-06 -8.1107668497817548e-05 8.1214822923423861e-05 0 2 0 P 389 22 9.3522300582652099e-03 -1.0185069188083001e-01 -3.6934749166084564e+00 3.6948907950384018e+00 0 1 0 0 0 0 P 390 22 1.3774408936633828e-02 -1.1641497895160310e-01 -1.3176249308601282e+00 1.3228294070249624e+00 0 1 0 0 0 0 V -133 0 -2.0803453115366202e-05 6.4264773497694545e-05 -5.6343538162109052e-03 5.6347904438439830e-03 0 2 0 P 391 22 -5.4171608745100762e-02 3.4490199290913404e-01 -3.0379177518836279e+01 3.0381183628503919e+01 0 1 0 0 0 0 P 392 22 -9.4305859216306548e-02 1.1376565207923862e-01 -9.8340785973689080e+00 9.8351887667652225e+00 0 1 0 0 0 0 V -134 0 3.6211027720467641e+01 -1.9383704443607879e+01 4.0239638557364465e+01 6.1228561449388735e+01 0 2 0 P 393 -211 6.6442057892028017e-01 -4.8216926235522073e-01 8.4644190642905526e-01 1.1873860320519993e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 211 1.9203944939291517e-01 2.3707597451869063e-02 1.0530246946097667e-01 2.6078649365842133e-01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 -3.6135596122071741e-05 -3.4133690536308669e-05 -1.6950612993322496e-05 6.7410908856839255e-05 0 2 0 P 395 22 -1.2355667175316938e-01 -3.1172173679136009e-02 -5.0117865604605273e-02 1.3692974840904343e-01 0 1 0 0 0 0 P 396 22 8.1417857272315392e-03 -7.7848748228014075e-02 -4.0213565652802829e-03 7.8376575480956015e-02 0 1 0 0 0 0 V -136 0 1.3708185573756327e+02 7.3575579726803198e+01 -1.2141154703289533e+03 1.2255205310608901e+03 0 2 0 P 397 22 1.0480187246815598e-01 6.1335688517421258e-02 -1.3328882847221897e+00 1.3384082630903016e+00 0 1 0 0 0 0 P 398 22 2.6845207723127262e-01 3.6433726993317711e-01 -3.2948449641110118e+00 3.3257798335969015e+00 0 1 0 0 0 0 V -137 0 1.3708199601334533e+02 7.3575607232733617e+01 -1.2141164324227020e+03 1.2255215036802219e+03 0 2 0 P 399 22 5.4602576556485283e-01 1.6662348086044590e-01 -3.5671020410508651e+00 3.6124956044684655e+00 0 1 0 0 0 0 P 400 22 2.1469512252802064e-01 1.6338823878417688e-02 -1.8486263944430092e+00 1.8611234507776244e+00 0 1 0 0 0 0 V -138 0 -2.0385797736695416e+01 1.1335342221257974e+01 -2.2633420618626644e+02 2.2990795574245450e+02 0 2 0 P 401 211 7.3178263669028548e-02 1.1249007498643577e-03 -6.2749504127336553e-01 6.4698233005080874e-01 1.3957000000000000e-01 1 0 0 0 0 P 402 -211 -3.8097881907862796e-01 1.7002487109255293e-01 -2.7898740149751342e+00 2.8243459635303285e+00 1.3957000000000000e-01 1 0 0 0 0 V -139 0 -8.9113940545739300e-03 2.1242478562025144e-02 -2.0156254293551553e-02 3.0984316213476124e-02 0 2 0 P 403 -311 -9.2324171537533073e-01 1.2239574427855140e+00 -9.7724615178569862e-01 1.8849754791082018e+00 4.9767000000000000e-01 2 0 0 -141 0 P 404 -211 -5.3083795738981510e-01 1.4856931075562427e+00 -1.2548426682703879e+00 2.0206887078067872e+00 1.3957000000000000e-01 1 0 0 0 0 V -140 0 2.4278097256689925e+01 -9.8274418751967715e+01 3.8861689140421781e+01 1.1192325826293603e+02 0 2 0 P 405 -211 5.7815330408324310e-02 -6.6243909413802060e-01 4.3569932743111561e-01 8.0714425891320785e-01 1.3957000000000000e-01 1 0 0 0 0 P 406 211 3.7780581906282246e-01 -1.1008957672273783e+00 2.6159476092978634e-01 1.2010913083786761e+00 1.3957000000000000e-01 1 0 0 0 0 V -141 0 -8.9113940545739300e-03 2.1242478562025144e-02 -2.0156254293551553e-02 3.0984316213476124e-02 0 1 0 P 407 130 -9.2324171537533073e-01 1.2239574427855140e+00 -9.7724615178569862e-01 1.8849754791082018e+00 4.9767000000000000e-01 1 0 0 0 0 E 25 2 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 76 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -2 7.9210581510200873e-01 1.1446111113679807e+00 1.7556889509271082e+02 1.7557441297152008e+02 0 3 0 0 -3 0 P 11 2212 -2.0492451547376922e-01 -4.3821120532934676e-01 5.1454645084226759e+03 5.1454646167096635e+03 9.3827000000000005e-01 1 0 0 0 0 P 26 2 -5.8718129962823951e-01 -7.0639990603863390e-01 1.6788354161491786e+03 1.6788356998823594e+03 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 5.0004715227477226e-01 3.4366225412057118e-02 -4.2044860175950888e+01 4.2047847690544252e+01 0 3 0 0 -4 0 P 30 2103 -5.0004715227477226e-01 -3.4366225412057118e-02 -6.9209846143223631e+03 6.9209846754537057e+03 7.7132999999999996e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 1 0 P 5 -2 7.7784526237324281e-01 1.1240042848602216e+00 1.7240806804376609e+02 1.7241348658231021e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 1 -5.3889166429708946e-01 -1.8986094409194456e+00 -1.0713034294418518e+01 1.0893311059011605e+01 0 3 0 0 -5 0 P 12 -1 1.4790370130534980e+00 1.0957112846631076e+00 -1.7872747986273822e+01 1.7970313138233713e+01 3.3000000000000002e-01 2 0 0 -9 0 P 13 21 -8.4974593273868393e-01 5.0325120966043624e-01 -4.7584523879833868e-01 1.0962475183632920e+00 0 2 0 0 -9 0 P 14 2 1.2103684984834591e+00 -6.4336833099764057e-01 -1.2344533535556200e+01 1.2424786634865143e+01 3.3000000000000002e-01 2 0 0 -9 0 P 29 21 -7.8646020949763418e-01 9.9798832951337813e-01 2.5221279280405149e+00 2.8241157292805665e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 4.0225915159197018e-01 7.9902689884286637e-01 -9.8409365468345156e-01 1.3299235810008674e+00 0 3 0 0 -6 0 P 8 -24 -1.6330555351581671e-01 -1.5736320549020906e+00 1.6267912740403102e+02 1.8197687406032094e+02 8.1538832547939549e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 4.0225915159197018e-01 7.9902689884286637e-01 -9.8409365468345156e-01 1.3299235810008680e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 -1.6330555351581671e-01 -1.5736320549020906e+00 1.6267912740403102e+02 1.8197687406032094e+02 8.1538832547939549e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 11 0 P 15 1 -6.9453960071859475e+00 8.6242873416440098e+00 7.7479831733247435e+00 1.3518764777227206e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 -1.1518879337931429e+01 1.1260987970210245e+01 9.7633405183983992e+00 1.8836593358281199e+01 0 2 0 0 -11 0 P 17 21 -6.3446797044488257e-01 6.9552427044177934e-01 1.0236190546948873e+00 1.3907190893305781e+00 0 2 0 0 -11 0 P 18 21 -2.4018692674285841e-01 3.0763949421474923e-01 6.1538574576741767e-01 7.2871903657898685e-01 0 2 0 0 -11 0 P 19 21 -8.0966535863464328e-01 -4.2666544916367288e-02 1.4149934155144548e+00 1.6308233481825456e+00 0 2 0 0 -11 0 P 20 21 -5.6885549884211262e-01 6.4126728828276791e-01 1.3913360783816808e+00 1.6342081864288154e+00 0 2 0 0 -11 0 P 21 21 7.8472940481636180e-02 -8.7006859402848316e-02 2.5681916994065208e-02 1.1994897595007423e-01 0 2 0 0 -11 0 P 22 21 2.9582586197731468e-02 -6.7060285817834298e-02 6.3157447431850866e-02 9.6752645990809197e-02 0 2 0 0 -11 0 P 23 21 4.1579997318987394e-01 -5.4887533747119105e-02 1.0544924664679334e+00 1.1348377068564326e+00 0 2 0 0 -11 0 P 24 21 3.6332443476609311e+00 -2.4501330205516996e+00 1.9470522016885834e+01 1.9957576103280775e+01 0 2 0 0 -11 0 P 25 -2 1.6397045698735891e+01 -2.0401584175259782e+01 1.2010861557016973e+02 1.2292793083221349e+02 3.3000000000000002e-01 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 31 92 1.8396595787982730e+00 9.5559416332590330e-01 -3.0693126760628360e+01 3.1491347291462148e+01 6.7334550059113667e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 6 0 P 32 213 5.4438276039734890e-01 6.2410184342174624e-01 -8.2452752728511083e+00 8.3223353296117057e+00 7.6866462949261294e-01 2 0 0 -15 0 P 33 -323 6.1425937430239086e-01 -2.9128232023724310e-01 -5.9309131825713761e+00 6.0433978265153874e+00 9.4062008341881365e-01 2 0 0 -16 0 P 34 323 2.3139427644458974e-01 1.1771684915679002e+00 -7.1318921848557357e+00 7.2838656099431089e+00 8.6691586592588166e-01 2 0 0 -17 0 P 35 -211 -6.4897088280948478e-01 -1.7103591420294809e-01 -2.7575475248452643e+00 2.8414722640493966e+00 1.3957000000000000e-01 1 0 0 0 0 P 36 113 6.7417690011092180e-01 -1.1152569032846607e-01 -3.1371449701422711e+00 3.2899971724247061e+00 7.1794871587544240e-01 2 0 0 -18 0 P 37 213 4.2441715035250704e-01 -2.7183224689508573e-01 -3.4903536253626144e+00 3.7102790889178525e+00 1.1530740651032660e+00 2 0 0 -19 0 V -11 0 0 0 0 0 0 1 0 P 38 92 -1.6330555351581211e-01 -1.5736320549020988e+00 1.6267912740403102e+02 1.8197687406032091e+02 8.1538832547939492e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 15 0 P 39 223 -6.3452774673916705e+00 6.0735691961536693e+00 5.3263815419147775e+00 1.0301868219279207e+01 7.7933276505565419e-01 2 0 0 -20 0 P 40 113 -6.3630570937189850e+00 8.5357677177486782e+00 7.9712543770170976e+00 1.3320016763006205e+01 7.3083795356018499e-01 2 0 0 -21 0 P 41 111 -2.8951312472883193e+00 2.0777282462928279e+00 2.4375963639512723e+00 4.3195873921494812e+00 1.3497999999999999e-01 2 0 0 -22 0 P 42 111 -2.7062304459663169e+00 3.7733584416685626e+00 3.3522117070017163e+00 5.7286525540432116e+00 1.3497999999999999e-01 2 0 0 -23 0 P 43 -211 -1.9512487249111243e+00 1.1895535171564835e+00 1.9281548553322507e+00 2.9932708009279718e+00 1.3957000000000000e-01 1 0 0 0 0 P 44 211 -9.0189121476645078e-03 -3.7090158081558139e-01 7.1839179806708053e-01 8.2049733933625746e-01 1.3957000000000000e-01 1 0 0 0 0 P 45 -213 2.0923677277558106e-01 -4.9682089602992369e-01 2.4259606996790102e+00 2.5416989023193270e+00 5.3323256075626302e-01 2 0 0 -24 0 P 46 2212 8.6881171964756265e-01 -2.9853619132399056e-01 5.3444714369331301e+00 5.5034246787633307e+00 9.3827000000000005e-01 1 0 0 0 0 P 47 -211 1.6584998163674034e+00 -2.2120380805207049e+00 1.3100752539589761e+01 1.3390031030547764e+01 1.3957000000000000e-01 1 0 0 0 0 P 48 -1114 2.0914880904149897e+00 -1.6495061124599788e+00 1.1506082496968956e+01 1.1865589722479443e+01 1.1432813248557137e+00 2 0 0 -25 0 P 49 -211 2.9422753334312732e+00 -4.3510847821804690e+00 2.3533709151797414e+01 2.4113147226061841e+01 1.3957000000000000e-01 1 0 0 0 0 P 50 213 2.8716401453475378e+00 -2.9822989981959385e+00 1.9482191613700195e+01 1.9933391001005326e+01 8.0241029842454459e-01 2 0 0 -26 0 P 51 111 1.8814234897355839e+00 -1.5605329942963015e+00 1.0698560100744531e+01 1.0975082022639240e+01 1.3497999999999999e-01 2 0 0 -27 0 P 52 -213 2.5826312562991256e+00 -2.9538484566052587e+00 1.9588351577387346e+01 1.9991249109505567e+01 7.4250826821738358e-01 2 0 0 -28 0 P 53 111 5.0006517138892130e+00 -6.3480410814941743e+00 3.5265057143946493e+01 3.6179367298256786e+01 1.3497999999999999e-01 2 0 0 -29 0 V -13 0 0 0 0 0 2 1 0 P 27 21 -1.7045121164791943e-01 5.5617931202098647e-01 -5.5583858714584256e-01 8.0457788785963291e-01 0 2 0 0 -13 0 P 28 21 1.7045121164791943e-01 -5.5617931202098647e-01 -3.6283506579106096e+01 3.6288169404348679e+01 0 2 0 0 -13 0 P 54 92 -1.8736886614006458e+00 2.5722219806268709e-01 -5.2764664154113962e+03 8.6397372383575530e+03 6.8413418375363581e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 29 0 P 55 211 -9.1437859293285698e-02 -2.4776876279709270e-01 1.2628183251577113e+03 1.2628183604874280e+03 1.3957000000000000e-01 1 0 0 0 0 P 56 113 -1.6518100596279930e-01 -1.0390313917779563e+00 3.3346405164474288e+02 3.3346646684030100e+02 7.0985676581440504e-01 2 0 0 -30 0 P 57 313 -5.1164528843032808e-01 5.3856760556185990e-01 5.6647469027229036e+01 5.6658575037924813e+01 8.4056062859645253e-01 2 0 0 -31 0 P 58 -311 -1.1521991395416990e-01 -1.1032796934305064e-01 5.7037883996915975e+00 5.7276806323980205e+00 4.9767000000000000e-01 2 0 0 -32 0 P 59 111 6.5082369417757202e-01 2.3748541234349993e-01 1.4658321388112618e+01 1.4675304982165747e+01 1.3497999999999999e-01 2 0 0 -33 0 P 60 221 -1.6300955403748932e-01 -2.4095704318232913e-01 5.4267708119221036e-01 8.2391281596900123e-01 5.4744999999999999e-01 2 0 0 -34 0 P 61 313 -6.0839993961450078e-01 3.1335742331766003e-01 3.5261663605323879e+00 3.6960327960037720e+00 8.7089945786755829e-01 2 0 0 -35 0 P 62 -311 -1.2172176195018644e-01 7.4929153365767845e-02 1.3379237840619088e-01 5.3479565702794751e-01 4.9767000000000000e-01 2 0 0 -36 0 P 63 -213 6.2816659909259576e-01 6.2546199577688155e-01 -1.3298714092752761e+00 1.8540635246444537e+00 9.3978593511099517e-01 2 0 0 -37 0 P 64 113 6.0219750300313166e-02 -4.1590453403542915e-01 -4.2424064383378285e-01 1.0612393877702444e+00 8.7729465661030970e-01 2 0 0 -38 0 P 65 221 -2.0292866310225727e-03 -1.1273501818811069e-01 -1.3828151884238113e-01 5.7579213548246799e-01 5.4744999999999999e-01 2 0 0 -39 0 P 66 113 3.5467473056814486e-01 -3.6953386354992734e-01 -2.8844006403178950e+00 3.0594067526558040e+00 8.8195985368718777e-01 2 0 0 -40 0 P 67 3222 -2.2298435397787428e-01 4.3572719472258124e-02 -1.1820811625931313e+01 1.1882668433338281e+01 1.1893700000000000e+00 2 0 0 -41 0 P 68 -3212 -4.5204335489713621e-01 1.5274883459503685e-01 -5.4668092780169442e+00 5.6156793521255244e+00 1.1925500000000000e+00 2 0 0 -42 0 P 69 -213 3.1300810368857823e-01 -4.8633852665996413e-01 -8.9899396897966319e+00 9.0511103510721256e+00 8.7697418754241696e-01 2 0 0 -43 0 P 70 111 -3.6536455773299675e-01 5.7459062455323617e-02 -3.6304359174722731e+00 3.6517225189187661e+00 1.3497999999999999e-01 2 0 0 -44 0 P 71 211 -1.9522330245175293e-01 8.3531525075927135e-02 -2.3003220712319444e-01 3.4275976239291428e-01 1.3957000000000000e-01 1 0 0 0 0 P 72 2112 1.8786042638744248e-02 4.7957493834636672e-01 9.3868269525124937e-01 1.4121834244007028e+00 9.3957000000000002e-01 1 0 0 0 0 P 73 -2212 -7.9064459181293190e-01 8.1425080007499329e-01 1.6878281106849133e-01 1.4822150539641628e+00 9.3827000000000005e-01 1 0 0 0 0 P 74 213 6.4164259505947774e-01 -2.0843002948608733e-01 8.1360620870983613e-02 8.4094293348630200e-01 4.9539597269840896e-01 2 0 0 -45 0 P 75 -211 -4.4298322137043500e-01 3.5995777317299849e-01 -3.4672128637682356e+00 3.5166530338467168e+00 1.3957000000000000e-01 1 0 0 0 0 P 76 221 7.0985339307707618e-01 -2.4112962795581416e-01 -5.4577949593723885e+00 5.5361776216259351e+00 5.4744999999999999e-01 2 0 0 -46 0 P 77 323 -1.0569629163229435e+00 -2.8338101749803718e-01 -1.9116353940637669e+01 1.9166028273487107e+01 8.3915218453728890e-01 2 0 0 -47 0 P 78 -321 5.9295808828948438e-01 4.4270095281235217e-01 -9.2442235226984177e+00 9.2869205297396427e+00 4.9359999999999998e-01 1 0 0 0 0 P 79 113 -1.0519680096263739e-01 7.1688113236951539e-02 -1.5282760048217078e+01 1.5305833032839384e+01 8.3040025606027434e-01 2 0 0 -48 0 P 80 2212 -3.9686028767757520e-01 -8.5785902573554684e-01 -3.8671669460270785e+01 3.8694596388039912e+01 9.3827000000000005e-01 1 0 0 0 0 P 81 -313 3.8386914293369062e-01 1.1884026923555107e+00 -3.3421516116047036e+02 3.3421906266850698e+02 1.0238383750096791e+00 2 0 0 -49 0 P 82 -3222 2.8632705406828346e-01 -8.8183403874622956e-01 -1.1127354437659305e+03 1.1127364656684947e+03 1.1893700000000000e+00 2 0 0 -50 0 P 83 2214 -7.0710985821454142e-01 2.6876404505487422e-01 -5.3820443903242303e+03 5.3820445882615040e+03 1.2483492953331305e+00 2 0 0 -51 0 V -15 0 0 0 0 0 0 2 0 P 84 211 3.9244032807853618e-01 7.6986449581452676e-01 -6.0860919937714897e+00 6.1487150116563019e+00 1.3957000000000000e-01 1 0 0 0 0 P 85 111 1.5194243231881283e-01 -1.4576265239278050e-01 -2.1591832790796195e+00 2.1736203179554043e+00 1.3497999999999999e-01 2 0 0 -52 0 V -16 0 0 0 0 0 0 2 0 P 86 -311 5.4527068156585923e-01 -4.4528331407972965e-01 -5.4109484171898954e+00 5.4792002654003218e+00 4.9767000000000000e-01 2 0 0 -53 0 P 87 -211 6.8988692736531729e-02 1.5400099384248653e-01 -5.1996476538148095e-01 5.6419756111506525e-01 1.3957000000000000e-01 1 0 0 0 0 V -17 0 0 0 0 0 0 2 0 P 88 311 1.6644549786738477e-01 8.7689801521026289e-01 -3.8028344441264901e+00 3.9377505597961449e+00 4.9767000000000000e-01 2 0 0 -54 0 P 89 211 6.4948778577204991e-02 3.0027047635763715e-01 -3.3290577407292457e+00 3.3461150501469641e+00 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 90 211 -6.3447478800484916e-02 5.0330121884700749e-02 -1.1207984806748761e+00 1.1323549456412410e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 -211 7.3762437891140675e-01 -1.6185581221316681e-01 -2.0163464894673950e+00 2.1576422267834654e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 92 211 -3.2488368375364990e-01 -2.7797995924646046e-01 -1.8171386178486186e+00 1.8719761769554637e+00 1.3957000000000000e-01 1 0 0 0 0 P 93 111 7.4930083410615700e-01 6.1477123513746963e-03 -1.6732150075139962e+00 1.8383029119623893e+00 1.3497999999999999e-01 2 0 0 -55 0 V -20 0 0 0 0 0 0 3 0 P 94 -211 -3.9326761239329433e-01 3.4184213467502766e-01 3.2806055259953382e-01 6.3136278878994267e-01 1.3957000000000000e-01 1 0 0 0 0 P 95 211 -4.0958091139477997e+00 3.8218474173728803e+00 3.1839037667882986e+00 6.4450673356177077e+00 1.3957000000000000e-01 1 0 0 0 0 P 96 111 -1.8562007410505768e+00 1.9098796441057622e+00 1.8144172225269457e+00 3.2254380948715573e+00 1.3497999999999999e-01 2 0 0 -56 0 V -21 0 0 0 0 0 0 2 0 P 97 211 -5.7809649048017571e+00 7.7185589049764181e+00 7.4064790080424077e+00 1.2160226884462856e+01 1.3957000000000000e-01 1 0 0 0 0 P 98 -211 -5.8209218891722836e-01 8.1720881277226021e-01 5.6477536897469005e-01 1.1597898785433485e+00 1.3957000000000000e-01 1 0 0 0 0 V -22 0 -5.6046191245608665e-04 4.0222271358924015e-04 4.7188876884795628e-04 8.3621915693558185e-04 0 2 0 P 99 22 -5.4017357420362855e-01 3.4395056278134062e-01 3.9278246924369087e-01 7.5124400034256178e-01 0 1 0 0 0 0 P 100 22 -2.3549576730846908e+00 1.7337776835114873e+00 2.0448138947075813e+00 3.5683433918069194e+00 0 1 0 0 0 0 V -23 0 -4.5156397394347203e-04 6.2962588258982683e-04 5.5935297090821574e-04 9.5588796456743817e-04 0 2 0 P 101 22 -1.0570484540532497e+00 1.3624671190058451e+00 1.2368452993359367e+00 2.1221343923224691e+00 0 1 0 0 0 0 P 102 22 -1.6491819919130672e+00 2.4108913226627173e+00 2.1153664076657797e+00 3.6065181617207425e+00 0 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 103 -211 1.4665251717509489e-01 2.9093776890327057e-02 5.1544500708664598e-01 5.5454192706962047e-01 1.3957000000000000e-01 1 0 0 0 0 P 104 111 6.2584255600486180e-02 -5.2591467292025074e-01 1.9105156925923643e+00 1.9871569752497067e+00 1.3497999999999999e-01 2 0 0 -57 0 V -25 0 0 0 0 0 0 2 0 P 105 -2112 1.9046876683252580e+00 -1.3570680464879834e+00 1.0223152864749277e+01 1.0529250451841309e+01 9.3957000000000002e-01 1 0 0 0 0 P 106 211 1.8680042208973174e-01 -2.9243806597199529e-01 1.2829296322196786e+00 1.3363392706381352e+00 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 107 211 1.3215653477011378e+00 -1.4114022535882618e+00 1.0894648984519455e+01 1.1065778218022862e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 111 1.5500747976463998e+00 -1.5708967446076769e+00 8.5875426291807404e+00 8.8676127829824640e+00 1.3497999999999999e-01 2 0 0 -58 0 V -27 0 8.8265527679248269e-04 -7.3211198304852997e-04 5.0191467144543936e-03 5.1488748351251239e-03 0 2 0 P 109 22 1.2594446741899057e+00 -9.7632677052624306e-01 7.1320515079491456e+00 7.3079117100736246e+00 0 1 0 0 0 0 P 110 22 6.2197881554567813e-01 -5.8420622377005860e-01 3.5665085927953855e+00 3.6671703125656161e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 111 -211 2.0701727525322635e+00 -2.5591399874284009e+00 1.5159286443139278e+01 1.5513164021263632e+01 1.3957000000000000e-01 1 0 0 0 0 P 112 111 5.1245850376686186e-01 -3.9470846917685798e-01 4.4290651342480682e+00 4.4780850882419347e+00 1.3497999999999999e-01 2 0 0 -59 0 V -29 0 1.6865459920301720e-03 -2.1409735882026017e-03 1.1893677901951083e-02 1.2202042934041113e-02 0 2 0 P 113 22 3.3202662125462474e+00 -4.2998556565834143e+00 2.3546129824178191e+01 2.4164708897205493e+01 0 1 0 0 0 0 P 114 22 1.6803855013429658e+00 -2.0481854249107605e+00 1.1718927319768301e+01 1.2014658401051292e+01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 115 211 -3.9808102760782343e-01 -5.2388742264860522e-01 2.0329523593030112e+02 2.0329634861029317e+02 1.3957000000000000e-01 1 0 0 0 0 P 116 -211 2.3290002164502410e-01 -5.1514396912935112e-01 1.3016881571444176e+02 1.3017011823000783e+02 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 117 311 -4.5124243844662787e-01 6.3853047264916396e-01 4.3340739938537617e+01 4.3350648838876779e+01 4.9767000000000000e-01 2 0 0 -60 0 P 118 111 -6.0402849983700192e-02 -9.9962867087304119e-02 1.3306729088691418e+01 1.3307926199048032e+01 1.3497999999999999e-01 2 0 0 -61 0 V -32 0 0 0 0 0 0 1 0 P 119 130 -1.1521991395416990e-01 -1.1032796934305064e-01 5.7037883996915975e+00 5.7276806323980205e+00 4.9767000000000000e-01 1 0 0 0 0 V -33 0 6.3114199020153307e-04 2.3030356320956685e-04 1.4215035833318790e-02 1.4231505822729688e-02 0 2 0 P 120 22 3.9336808268108092e-01 7.2399020412772852e-02 8.3506384126044804e+00 8.3602118373097696e+00 0 1 0 0 0 0 P 121 22 2.5745561149649110e-01 1.6508639193072711e-01 6.3076829755081389e+00 6.3150931448559771e+00 0 1 0 0 0 0 V -34 0 0 0 0 0 0 3 0 P 122 111 -8.8076711045929565e-04 1.0999966592509710e-02 6.9479455347098540e-02 1.5221291052689542e-01 1.3497999999999999e-01 2 0 0 -62 0 P 123 111 -1.9361818375825654e-01 -1.7934530643857222e-01 2.0238089871738046e-01 3.5892947578743944e-01 1.3497999999999999e-01 2 0 0 -63 0 P 124 111 3.1489396831226528e-02 -7.2611703336266598e-02 2.7081672712773136e-01 3.1277042965466639e-01 1.3497999999999999e-01 2 0 0 -64 0 V -35 0 0 0 0 0 0 2 0 P 125 321 -6.2444724931027973e-01 4.6002973580512266e-02 2.7474496392351995e+00 2.8607990353890749e+00 4.9359999999999998e-01 1 0 0 0 0 P 126 -211 1.6047309695778979e-02 2.6735444973714778e-01 7.7871672129718827e-01 8.3523376061469712e-01 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 1 0 P 127 130 -1.2172176195018644e-01 7.4929153365767845e-02 1.3379237840619088e-01 5.3479565702794751e-01 4.9767000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 128 -211 5.0560587155913161e-01 1.2693934021477771e-01 -1.4973831400360929e-01 5.6004664183429909e-01 1.3957000000000000e-01 1 0 0 0 0 P 129 111 1.2256072753346417e-01 4.9852265556210390e-01 -1.1801330952716669e+00 1.2940168828101546e+00 1.3497999999999999e-01 2 0 0 -65 0 V -38 0 0 0 0 0 0 2 0 P 130 211 -3.8486730468843439e-01 -1.5341788903617823e-01 -1.7724247094653589e-01 4.7175689640077428e-01 1.3957000000000000e-01 1 0 0 0 0 P 131 -211 4.4508705498874757e-01 -2.6248664499925090e-01 -2.4699817288724693e-01 5.8948249136947017e-01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 132 22 -2.6937656324427051e-01 -3.4052410182681354e-02 -1.7573596023148331e-02 2.7208846124326730e-01 0 1 0 0 0 0 P 133 22 2.6734727661324792e-01 -7.8682608005429325e-02 -1.2070792281923280e-01 3.0370367423920069e-01 0 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 134 -211 -1.9348790273032160e-01 -3.5906002706113532e-01 -1.5767184579818407e+00 1.6345894139436838e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 211 5.4816263329846648e-01 -1.0473836488792024e-02 -1.3076821823360543e+00 1.4248173387121201e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 -2.0513312853447722e+01 4.0084463795995040e+00 -1.0874485260452923e+03 1.0931390062059788e+03 0 2 0 P 136 2212 -1.3252508134513216e-01 2.1740698711876705e-01 -9.6553185316960128e+00 9.7041411385369933e+00 9.3827000000000005e-01 1 0 0 0 0 P 137 111 -9.0459272632742102e-02 -1.7383426764650892e-01 -2.1654930942352992e+00 2.1785272948012873e+00 1.3497999999999999e-01 2 0 0 -66 0 V -42 0 0 0 0 0 0 2 0 P 138 -3122 -4.5226096323785525e-01 1.8577658698957863e-01 -4.9447995613386313e+00 5.0926257945540296e+00 1.1156800000000000e+00 2 0 0 -67 0 P 139 22 2.1760834071905068e-04 -3.3027752394541796e-02 -5.2200971667831231e-01 5.2305355757149485e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 140 -211 2.2300734273562664e-01 2.0869354382268940e-01 -3.0632613153832424e+00 3.0816123931102619e+00 1.3957000000000000e-01 1 0 0 0 0 P 141 111 9.0000760952951619e-02 -6.9503207048265359e-01 -5.9266783744133900e+00 5.9694979579618641e+00 1.3497999999999999e-01 2 0 0 -68 0 V -44 0 -8.1604278746273717e-05 1.2833498077091441e-05 -8.1085890327762243e-04 8.1561327181511444e-04 0 2 0 P 142 22 -2.7455885931337282e-01 1.0032229118756249e-01 -2.5848150924065392e+00 2.6012912546020690e+00 0 1 0 0 0 0 P 143 22 -9.0805698419623923e-02 -4.2863228732238863e-02 -1.0456208250657342e+00 1.0504312643166969e+00 0 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 144 211 5.6810574800000346e-01 -1.3240771378914221e-02 2.2308267720592034e-02 5.8557399416815437e-01 1.3957000000000000e-01 1 0 0 0 0 P 145 111 7.3536847059474247e-02 -1.9518925810717311e-01 5.9052353150391583e-02 2.5536893931814753e-01 1.3497999999999999e-01 2 0 0 -69 0 V -46 0 0 0 0 0 0 2 0 P 146 22 7.3863810180575551e-01 -5.7550384511572794e-02 -4.4879371396756964e+00 4.5486787160533897e+00 0 1 0 0 0 0 P 147 22 -2.8784708728679335e-02 -1.8357924344424134e-01 -9.6985781969669194e-01 9.8749890557254583e-01 0 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 148 321 -3.1539387574364131e-01 -2.0580383890056603e-01 -8.3781150144255516e+00 8.4010880647631385e+00 4.9359999999999998e-01 1 0 0 0 0 P 149 111 -7.4156904057930217e-01 -7.7577178597471125e-02 -1.0738238926212116e+01 1.0764940208723965e+01 1.3497999999999999e-01 2 0 0 -70 0 V -48 0 0 0 0 0 0 2 0 P 150 -211 8.8110630009703053e-02 -3.3220517935818039e-01 -6.6136070411979695e+00 6.6240019357331459e+00 1.3957000000000000e-01 1 0 0 0 0 P 151 211 -1.9330743097234046e-01 4.0389329259513190e-01 -8.6691530070191085e+00 8.6818310971062385e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 152 -321 3.7568124278012088e-01 1.2575426255136999e+00 -3.1945607827709887e+02 3.1945915566625268e+02 4.9359999999999998e-01 1 0 0 0 0 P 153 211 8.1879001535697139e-03 -6.9139933158189129e-02 -1.4759082883371498e+01 1.4759907002254302e+01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 4.2609326982398171e-01 -1.3122879716488864e+00 -1.6559004011203010e+03 1.6559019218491278e+03 0 2 0 P 154 -2212 1.0396931849960730e-01 -7.8987850566900475e-01 -8.2561442727718679e+02 8.2561534481652109e+02 9.3827000000000005e-01 1 0 0 0 0 P 155 111 1.8235773556867613e-01 -9.1955533077224788e-02 -2.8712101648874375e+02 2.8712112085197361e+02 1.3497999999999999e-01 2 0 0 -71 0 V -51 0 0 0 0 0 0 2 0 P 156 2212 -6.3688267068009641e-01 4.2690073655142491e-01 -4.8727800087899896e+03 4.8727801594446819e+03 9.3827000000000005e-01 1 0 0 0 0 P 157 111 -7.0227187534444929e-02 -1.5813669149655066e-01 -5.0926438153424044e+02 5.0926442881682192e+02 1.3497999999999999e-01 2 0 0 -72 0 V -52 0 1.1577921574758684e-05 -1.1107026076766769e-05 -1.6452846179440084e-04 1.6562855543726719e-04 0 2 0 P 158 22 4.4227764768346882e-02 2.7569395827119806e-03 -9.0548272401503893e-01 9.0656641200849808e-01 0 1 0 0 0 0 P 159 22 1.0771466755046595e-01 -1.4851959197549247e-01 -1.2537005550645806e+00 1.2670539059469061e+00 0 1 0 0 0 0 V -53 0 0 0 0 0 0 1 0 P 160 130 5.4527068156585923e-01 -4.4528331407972965e-01 -5.4109484171898954e+00 5.4792002654003218e+00 4.9767000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 1 0 P 161 310 1.6644549786738477e-01 8.7689801521026289e-01 -3.8028344441264901e+00 3.9377505597961449e+00 4.9767000000000000e-01 2 0 0 -73 0 V -55 0 1.8599182134826657e-04 1.5259881816645889e-06 -4.1532625160629660e-04 4.5630445239470664e-04 0 2 0 P 162 22 4.8277504295393897e-01 -5.6244199578139309e-02 -1.0119372274206582e+00 1.1226095066073385e+00 0 1 0 0 0 0 P 163 22 2.6652579115221808e-01 6.2391911929514002e-02 -6.6127778009333793e-01 7.1569340535505077e-01 0 1 0 0 0 0 V -56 0 -2.3121975301330153e-05 2.3790632652442950e-05 2.2601494158348138e-05 4.0178035875246669e-05 0 2 0 P 164 22 -1.2878682683634255e+00 1.3273869162896128e+00 1.3342842091276566e+00 2.2805427101726625e+00 0 1 0 0 0 0 P 165 22 -5.6833247268715137e-01 5.8249272781614958e-01 4.8013301339928927e-01 9.4489538469889500e-01 0 1 0 0 0 0 V -57 0 5.9367784299651077e-06 -4.9888567919162788e-05 1.8123261585624876e-04 1.8850285194612940e-04 0 2 0 P 166 22 2.4754925000564083e-03 -4.3973434758403701e-01 1.4756550012673346e+00 1.5397824870005421e+00 0 1 0 0 0 0 P 167 22 6.0108763100429778e-02 -8.6180325336213684e-02 4.3486069132502952e-01 4.4737448824916459e-01 0 1 0 0 0 0 V -58 0 7.2887512770687755e-04 -7.3866600958790059e-04 4.0380285132280529e-03 4.1697229123816111e-03 0 2 0 P 168 22 2.1461405090692365e-01 -2.8660018716088514e-01 1.3491863926717624e+00 1.3958878107849420e+00 0 1 0 0 0 0 P 169 22 1.3354607467394761e+00 -1.2842965574467917e+00 7.2383562365089782e+00 7.4717249721975225e+00 0 1 0 0 0 0 V -59 0 2.2646296922865550e-05 -1.7442749267002937e-05 1.9572691912343509e-04 1.9789318317238791e-04 0 2 0 P 170 22 4.8473515608144624e-01 -3.1967928253629357e-01 3.8627419558128033e+00 3.9061411178323744e+00 0 1 0 0 0 0 P 171 22 2.7723347685415664e-02 -7.5029186640564405e-02 5.6632317843526492e-01 5.7194397040956046e-01 0 1 0 0 0 0 V -60 0 0 0 0 0 0 1 0 P 172 310 -4.5124243844662787e-01 6.3853047264916396e-01 4.3340739938537617e+01 4.3350648838876751e+01 4.9767000000000000e-01 2 0 0 -74 0 V -61 0 -3.7458204241775180e-06 -6.1990940708263005e-06 8.2520307589572432e-04 8.2527731345943215e-04 0 2 0 P 173 22 1.4718482520986502e-02 -3.0888246928891128e-02 8.6983466023621077e+00 8.6984138975074412e+00 0 1 0 0 0 0 P 174 22 -7.5121332504686694e-02 -6.9074620158412994e-02 4.6083824863293090e+00 4.6095123015405912e+00 0 1 0 0 0 0 V -62 0 -3.1675372261305002e-07 3.9559610314918344e-06 2.4987168418271371e-05 5.4740924662841874e-05 0 2 0 P 175 22 -4.7813562581602520e-02 5.0585237952289544e-02 5.6039902490799980e-02 8.9361477923168606e-02 0 1 0 0 0 0 P 176 22 4.6932795471143221e-02 -3.9585271359779836e-02 1.3439552856298565e-02 6.2851432603726817e-02 0 1 0 0 0 0 V -63 0 -2.4744279345385320e-05 -2.2920214804517405e-05 2.5864148680815457e-05 4.5870956135329324e-05 0 2 0 P 177 22 -1.6919133312868317e-01 -1.8758600355955685e-01 1.3422364625286343e-01 2.8605978946842736e-01 0 1 0 0 0 0 P 178 22 -2.4426850629573345e-02 8.2406971209846181e-03 6.8157252464517051e-02 7.2869686319012084e-02 0 1 0 0 0 0 V -64 0 2.6497323693012551e-06 -6.1100433822666968e-06 2.2788364345771580e-05 2.6318634683862576e-05 0 2 0 P 179 22 2.4382524800253259e-02 -1.5634264437698928e-02 2.5003399679243132e-01 2.5170605334822693e-01 0 1 0 0 0 0 P 180 22 7.1068720309732701e-03 -5.6977438898567663e-02 2.0782730335300047e-02 6.1064376306439482e-02 0 1 0 0 0 0 V -65 0 1.5827021942152034e-05 6.4377302313965023e-05 -1.5239785834679059e-04 1.6710437356174705e-04 0 2 0 P 181 22 -1.2665624619856433e-03 -8.5559069164899346e-03 -2.4023362923471459e-02 2.5532913852253050e-02 0 1 0 0 0 0 P 182 22 1.2382728999544981e-01 5.0707856247859384e-01 -1.1561097323481955e+00 1.2684839689579015e+00 0 1 0 0 0 0 V -66 0 -2.0513339289592537e+01 4.0083955776447713e+00 -1.0874491588968217e+03 1.0931396428666701e+03 0 2 0 P 183 22 2.3293314705095922e-02 -2.4322239363965940e-02 -1.2677991186680374e-01 1.3117658285907294e-01 0 1 0 0 0 0 P 184 22 -1.1375258733783802e-01 -1.4951202828254298e-01 -2.0387131823684954e+00 2.0473507119422143e+00 0 1 0 0 0 0 V -67 0 -5.4754905894350841e+01 2.2491836273382408e+01 -5.9866328658821010e+02 6.1656050113106357e+02 0 2 0 P 185 -2212 -2.7442445772425889e-01 1.5036470644825317e-01 -3.9779087126082264e+00 4.0990275245095589e+00 9.3827000000000005e-01 1 0 0 0 0 P 186 211 -1.7783650551359637e-01 3.5411880541325477e-02 -9.6689084873040476e-01 9.9359827004446977e-01 1.3957000000000000e-01 1 0 0 0 0 V -68 0 1.8531609011792960e-05 -1.4311059644900765e-04 -1.2203328639709204e-03 1.2291496314289527e-03 0 2 0 P 187 22 2.0253603113425691e-02 -5.5307346263816193e-01 -4.4090212091095076e+00 4.4436211006217787e+00 0 1 0 0 0 0 P 188 22 6.9747157839525925e-02 -1.4195860784449169e-01 -1.5176571653038824e+00 1.5258768573400852e+00 0 1 0 0 0 0 V -69 0 1.3909268810539978e-05 -3.6919448800229141e-05 1.1169571265401575e-05 4.8302250706585848e-05 0 2 0 P 189 22 3.0491267231885898e-02 -4.2099422954713868e-02 7.9549064011721238e-02 9.5027008664206047e-02 0 1 0 0 0 0 P 190 22 4.3045579827588352e-02 -1.5308983515245925e-01 -2.0496710861329655e-02 1.6034193065394148e-01 0 1 0 0 0 0 V -70 0 -1.0126708107883504e-04 -1.0593773478947260e-05 -1.4663909258336102e-03 1.4700371958274656e-03 0 2 0 P 191 22 -3.1314786058495475e-01 3.2862071774725402e-02 -4.2848464779429278e+00 4.2963997530362770e+00 0 1 0 0 0 0 P 192 22 -4.2842117999434737e-01 -1.1043925037219653e-01 -6.4533924482691880e+00 6.4685404556876902e+00 0 1 0 0 0 0 V -71 0 4.2610034548420711e-01 -1.3122915396143795e+00 -1.6559115416992838e+03 1.6559130624321601e+03 0 2 0 P 193 22 7.5915777979115150e-03 -1.3265330056828688e-02 -2.9398713760665136e+00 2.9399111056033984e+00 0 1 0 0 0 0 P 194 22 1.7476615777076460e-01 -7.8690203020396088e-02 -2.8418114511267726e+02 2.8418120974637026e+02 0 1 0 0 0 0 V -72 0 -3.0771015292338379e-06 -6.9289782535196571e-06 -2.2314124518153705e-02 2.2314126589905531e-02 0 2 0 P 195 22 2.2608613000711483e-02 -8.9014442826455785e-03 -1.8683209808584174e+01 1.8683225608461402e+01 0 1 0 0 0 0 P 196 22 -9.2835800535156415e-02 -1.4923524721390508e-01 -4.9058117172565625e+02 4.9058120320836053e+02 0 1 0 0 0 0 V -73 0 3.4523445922234628e+00 1.8188260779241258e+01 -7.8876840145964636e+01 8.1675215159430223e+01 0 2 0 P 197 111 -1.3718014911786930e-01 3.2740118292058190e-01 -1.4144289218033967e+00 1.4645267847068268e+00 1.3497999999999999e-01 2 0 0 -75 0 P 198 111 3.0362564698525407e-01 5.4949683228968105e-01 -2.3884055223230933e+00 2.4732237750893176e+00 1.3497999999999999e-01 2 0 0 -76 0 V -74 0 -1.3411572087891171e+01 1.8978040925692728e+01 1.2881489161994955e+03 1.2884434229211324e+03 0 2 0 P 199 -211 -2.8007133563692965e-01 6.0541868159844592e-01 3.6209321007804604e+01 3.6215733864775039e+01 1.3957000000000000e-01 1 0 0 0 0 P 200 211 -1.7117110280969822e-01 3.3111791050718022e-02 7.1314189307330151e+00 7.1349149741017159e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 3.4523036982754332e+00 1.8188358378835989e+01 -7.8877261792851542e+01 8.1675651740689304e+01 0 2 0 P 201 22 -7.2456593695870389e-02 2.7033272788414264e-01 -8.8763563057910622e-01 9.3071303547809958e-01 0 1 0 0 0 0 P 202 22 -6.4723555421998910e-02 5.7068455036439251e-02 -5.2679329122429042e-01 5.3381374922872749e-01 0 1 0 0 0 0 V -76 0 3.4523885837732435e+00 1.8188340394443372e+01 -7.8877186195982063e+01 8.1675573498549142e+01 0 2 0 P 203 22 2.6768173058770467e-01 3.7556319715739378e-01 -1.8319299167304612e+00 1.8890919627592477e+00 0 1 0 0 0 0 P 204 22 3.5943916397549437e-02 1.7393363513228730e-01 -5.5647560559263187e-01 5.8413181233006994e-01 0 1 0 0 0 0 E 27 30 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 260 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -4.3261779929208088e-01 1.1760258468198819e+00 9.2525415529755776e+01 9.2533900349583377e+01 0 3 0 0 -3 0 P 31 2103 4.3261779929208088e-01 -1.1760258468198819e+00 1.6289161313041868e+03 1.6289167959008589e+03 7.7132999999999996e-01 2 0 0 -18 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 1.5711040811663022e+00 -2.1322609177028493e+00 -1.1783072291673982e+03 1.1783102058510765e+03 0 3 0 0 -4 0 P 18 2101 -6.5983677341095626e-01 8.5281573197177207e-01 -1.4841687162487044e+03 1.4841692210101301e+03 5.7933000000000001e-01 2 0 0 -10 0 P 79 2 -9.1126730775534592e-01 1.2794451857310771e+00 -3.0263488043733417e+01 3.0306022448725759e+01 3.3000000000000002e-01 2 0 0 -18 0 V -3 0 0 0 0 0 0 5 0 P 5 2 -1.1790468635922051e+00 -1.0258337713565349e+00 6.3595529353493255e+01 6.3614729742285455e+01 0 3 0 0 -5 0 P 32 21 -8.5786638925925729e-01 7.3399167852774749e-01 6.0341696178665050e+00 6.1388827569152919e+00 0 2 0 0 -18 0 P 33 21 2.4510393635452528e+00 1.5118855548499570e+00 1.9248627992464410e+01 1.9462863907577855e+01 0 2 0 0 -18 0 P 34 21 3.7003959917394269e-01 5.4852282899835758e-01 1.0706865041594713e+00 1.2586406115640807e+00 0 2 0 0 -18 0 P 35 21 -1.2455587360682536e+00 -5.6143173098713184e-01 1.3712598455858278e+00 1.9357106492632676e+00 0 2 0 0 -18 0 V -4 0 0 0 0 0 0 8 0 P 6 -1 -2.6881284294336378e+00 1.3329659434224284e+00 -3.5325850721949706e+01 3.5453047286360707e+01 0 3 0 0 -5 0 P 13 1 3.8984828939077137e-01 1.4144545110733306e-01 -2.3366637487497687e+02 2.3366697592025622e+02 3.3000000000000002e-01 2 0 0 -10 0 P 14 21 2.5668081721947340e+00 -1.4381918815214745e+00 -2.6034998915919238e+02 2.6036661413336486e+02 0 2 0 0 -10 0 P 15 21 6.5682052589631756e-01 -2.9589124757660307e-01 -6.3329784728686704e+01 6.3333881916517882e+01 0 2 0 0 -10 0 P 16 21 -2.7427888652009047e-01 -7.4830377937485582e-01 -1.4611562748818361e+02 1.4611780105010976e+02 0 2 0 0 -10 0 P 17 21 -1.0000252161057392e+00 -1.3309925475155879e+00 -1.1923999532414399e+02 1.1925161666198186e+02 0 2 0 0 -10 0 P 77 21 3.7247432045924472e-01 9.9843985972940497e-01 9.4120707740850518e-02 1.0698027764610114e+00 0 2 0 0 -18 0 P 78 21 1.5763605321855156e+00 -8.2284142917424541e-01 -3.1916858535881232e+02 3.1917353878492258e+02 0 2 0 0 -18 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -2.6820265219124093e+00 4.2133960200922500e+00 1.9451346772540550e+01 2.0082352042327891e+01 0 3 0 0 -6 0 P 8 24 -1.1851487711134332e+00 -3.9062638480263567e+00 8.8183318590030026e+00 7.8985424986318250e+01 7.8385399843553344e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -2.6820265219124093e+00 4.2133960200922500e+00 1.9451346772540550e+01 2.0082352042327972e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -1.1851487711134332e+00 -3.9062638480263567e+00 8.8183318590030026e+00 7.8985424986318250e+01 7.8385399843553344e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 -15 2.6437310455665759e+01 7.4938876752360626e+00 3.1227317794455995e+01 4.1634034662211839e+01 1.7769999999999999e+00 2 0 0 -9 0 P 12 16 -2.7622459226779188e+01 -1.1400151523262421e+01 -2.2408985935452964e+01 3.7351390324106411e+01 0 1 0 0 0 0 V -9 0 1.1473804403654377e+00 3.2523505578528983e-01 1.3552669702358384e+00 1.8069189415098368e+00 0 2 0 P 85 -16 4.6741738234430859e+00 1.6246232241373906e+00 5.0113579019452228e+00 7.0427984192049644e+00 0 1 0 0 0 0 P 86 213 2.1763136632222672e+01 5.8692644510986725e+00 2.6215959892510771e+01 3.4591236243006875e+01 1.0930189678390849e+00 2 0 0 -22 0 V -10 0 0 0 0 0 0 1 0 P 87 92 1.6793361114450371e+00 -2.8191182729094160e+00 -2.3068704878238877e+03 2.3069061106923605e+03 1.2393077072286822e+01 2 0 0 -11 0 V -11 0 0 0 0 0 0 9 0 P 88 223 5.0517744556458177e-01 9.8797245259696742e-02 -2.1161022087314237e+02 2.1161227670778052e+02 7.7788837438249314e-01 2 0 0 -23 0 P 89 2214 1.1444731229866212e+00 -8.4800043891024957e-01 -2.0498879385950633e+02 2.0499723370306697e+02 1.1963671932335993e+00 2 0 0 -24 0 P 90 113 6.2596946702032041e-01 -1.4777026689589932e+00 -1.9312781690613843e+02 1.9313592296813491e+02 7.4540919696045238e-01 2 0 0 -25 0 P 91 -2212 3.2256193641617065e-01 -4.3971451347214113e-01 -9.4284239780485279e+01 9.4290485292171041e+01 9.3827000000000005e-01 1 0 0 0 0 P 92 -211 -3.9047173284317886e-02 -2.4969449562660370e-01 -1.6888536603557164e+01 1.6891004126974742e+01 1.3957000000000000e-01 1 0 0 0 0 P 93 211 2.9786307482785640e-01 1.5171470364666989e-01 -1.4678821478567053e+02 1.4678866175393688e+02 1.3957000000000000e-01 1 0 0 0 0 P 94 -211 -6.4787251717456473e-01 -5.3074680189050993e-01 -6.0677305741491594e+01 6.0683245981057865e+01 1.3957000000000000e-01 1 0 0 0 0 P 95 2114 -7.9512179573644071e-01 1.3280509334418133e-02 -6.2575893508850800e+02 6.2576065391235750e+02 1.2323744056531820e+00 2 0 0 -26 0 P 96 211 2.6533255082480983e-01 4.6294818770829699e-01 -7.5274642418538826e+02 7.5274662624688017e+02 1.3957000000000000e-01 1 0 0 0 0 V -12 0 0 0 0 0 7 1 0 P 19 1 6.9462815186621196e-01 2.2192666766577318e+00 2.1728484958076795e+00 3.1825969643079564e+00 0 2 0 0 -12 0 P 20 21 -9.6677380981617475e-02 4.3834691547512361e-01 -4.2456074159316354e-01 6.1785625966089952e-01 0 2 0 0 -12 0 P 21 21 6.4983834641231786e-01 1.5623563283006070e-01 -1.0336710595714926e+00 1.2309245747930120e+00 0 2 0 0 -12 0 P 22 21 9.6677380981617475e-02 -4.3834691547512361e-01 -7.7374854361255052e-01 8.9452855909834594e-01 0 2 0 0 -12 0 P 23 21 -4.9409228652764903e-01 -9.5610430948451552e-01 -6.2865052030483282e-01 1.2463804053741057e+00 0 2 0 0 -12 0 P 24 21 -1.0156272404047433e+00 -2.0205177212996608e+00 -3.4668447744094322e+00 4.1392032135893153e+00 0 2 0 0 -12 0 P 25 -1 -6.9462815186621196e-01 -2.2192666766577318e+00 -6.6893431991937620e+00 7.0820170352865119e+00 0 2 0 0 -12 0 P 97 92 -8.5988118052007456e-01 -2.8203863979541155e+00 -1.0843970342877554e+01 1.8393507012110145e+01 1.4561436478897264e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 7 0 P 98 331 2.4889018836621205e-01 8.6944370033953333e-01 2.0166657501025920e-01 1.3324358616753791e+00 9.5751618475990952e-01 2 0 0 -27 0 P 99 -213 7.3543119753231567e-01 1.3126223337894067e+00 1.0397305777803523e+00 1.9677240293242384e+00 7.2599018157409434e-01 2 0 0 -28 0 P 100 113 6.7096988463815108e-02 5.3128886353558469e-01 -3.2128716211325742e-01 8.4918986513446482e-01 5.7543733293074895e-01 2 0 0 -29 0 P 101 323 -4.9303563790082733e-01 -9.7351228876670903e-01 -7.6213323942613909e-01 1.6428994980769838e+00 9.6304795805990528e-01 2 0 0 -30 0 P 102 -311 -1.0145940623007077e-01 2.9312536173750581e-01 -5.3695971969423251e-01 7.9512115949735029e-01 4.9767000000000000e-01 2 0 0 -31 0 P 103 221 -4.9991024969481707e-01 -1.3529346256094210e+00 -4.8837106500032013e+00 5.1215889696828985e+00 5.4744999999999999e-01 2 0 0 -32 0 P 104 223 -8.1689426105670226e-01 -3.5004197429800161e+00 -5.5812767244313362e+00 6.6845476287188346e+00 7.8247844388197085e-01 2 0 0 -33 0 V -14 0 0 0 0 0 3 1 0 P 26 2 8.0924115057881196e-01 -1.6593326342546386e+00 -8.2348217539606008e+00 8.4392265848474111e+00 0 2 0 0 -14 0 P 27 21 5.0312493537925596e-01 -7.8405968854304009e-01 -4.4571053254681763e+00 4.5534242255818169e+00 0 2 0 0 -14 0 P 28 -2 -8.0924115057881196e-01 1.6593326342546386e+00 -1.4295065902044780e+02 1.4296257961582543e+02 0 2 0 0 -14 0 P 105 92 5.0312493537925596e-01 -7.8405968854303998e-01 -1.5564258609987658e+02 1.5595523042625467e+02 9.8260574572357253e+00 2 0 0 -15 0 V -15 0 0 0 0 0 0 5 0 P 106 113 7.5958378506604662e-01 -2.0045990005068539e+00 -1.0077519709355769e+01 1.0328959092065666e+01 7.3185227590248891e-01 2 0 0 -34 0 P 107 321 6.8827734503139426e-01 -1.7898718508492978e-01 -8.1067861928747593e+00 8.1528759007538500e+00 4.9359999999999998e-01 1 0 0 0 0 P 108 -311 -9.4744228227346039e-01 1.3136424792092651e+00 -1.1273134750623703e+02 1.1274408050732552e+02 4.9767000000000000e-01 2 0 0 -35 0 P 109 -211 3.0628039701583551e-02 1.3171618927774390e-02 -1.8022525536257408e+01 1.8023096794344514e+01 1.3957000000000000e-01 1 0 0 0 0 P 110 111 -2.7921952146308111e-02 7.2712398911703974e-02 -6.7044071551515714e+00 6.7062181317650813e+00 1.3497999999999999e-01 2 0 0 -36 0 V -16 0 0 0 0 0 2 1 0 P 29 3 -5.0794678361382872e-01 1.2996169953427412e+00 -6.8820385988938719e+00 7.0220701752568990e+00 0 2 0 0 -16 0 P 30 -3 5.0794678361382872e-01 -1.2996169953427412e+00 -3.7663892238689300e+01 3.7689730601812045e+01 0 2 0 0 -16 0 P 111 92 0 0 -4.4545930837583171e+01 4.4711800777068945e+01 3.8477492825754323e+00 2 0 0 -17 0 V -17 0 0 0 0 0 0 3 0 P 112 -313 -5.9100418585615322e-01 1.0550595408951551e+00 -1.0406456151192026e+01 1.0515189322327416e+01 9.0135468888376713e-01 2 0 0 -37 0 P 113 111 2.0908030039389669e-01 2.4777063475550889e-02 -9.1181314844043937e-01 9.4548997506908572e-01 1.3497999999999999e-01 2 0 0 -38 0 P 114 311 3.8192388546225653e-01 -1.0798366043707059e+00 -3.3227661537950702e+01 3.3251121479672442e+01 4.9767000000000000e-01 2 0 0 -39 0 V -18 0 0 0 0 0 41 1 0 P 36 21 -2.0950473756122159e-01 -2.9331800258934746e+00 2.7126115617851146e+03 2.7126131557167487e+03 0 2 0 0 -18 0 P 37 21 1.0156272404047433e+00 2.0205177212996608e+00 1.0494065426668396e+03 1.0494089792747741e+03 0 2 0 0 -18 0 P 38 21 4.9409228652764903e-01 9.5610430948451552e-01 2.1051506230208426e+02 2.1051781330492827e+02 0 2 0 0 -18 0 P 39 21 -9.8994378498156899e-01 -3.8145119643725591e+00 1.0497309973078958e+02 1.0504704735171789e+02 0 2 0 0 -18 0 P 40 21 -4.1174219928682287e+00 -6.9090354760301116e+00 1.0262927693991313e+02 1.0294394795365963e+02 0 2 0 0 -18 0 P 41 21 2.0659245488365063e+00 -2.0781501257644859e+00 1.7820950495113181e+01 1.8060261037315463e+01 0 2 0 0 -18 0 P 42 21 3.2090347484621812e-01 2.6511208268430819e-01 1.5462829171076511e+00 1.6013289219559284e+00 0 2 0 0 -18 0 P 43 21 9.8994378498156899e-01 3.8145119643725591e+00 6.1275992569264552e+01 6.1402587531571740e+01 0 2 0 0 -18 0 P 44 21 4.1174219928682287e+00 6.9090354760301116e+00 1.1791715903256753e+02 1.1819113473263644e+02 0 2 0 0 -18 0 P 45 21 -8.9120343403025004e-01 6.6591070445926182e-01 1.4853892563292543e+01 1.4895496128326114e+01 0 2 0 0 -18 0 P 46 21 -1.2327803085863374e+00 1.8520493508526865e+00 1.2570585340478443e+01 1.2765948844072799e+01 0 2 0 0 -18 0 P 47 21 -5.0312493537925596e-01 7.8405968854304009e-01 3.2474367654999070e+00 3.3784212054921583e+00 0 2 0 0 -18 0 P 48 21 -2.0659245488365063e+00 2.0781501257644859e+00 1.6347482061961358e+01 1.6608037871851348e+01 0 2 0 0 -18 0 P 49 21 -2.2744679679416411e+00 -2.8747171430996143e-01 6.6134267012504173e+00 6.9995183588967649e+00 0 2 0 0 -18 0 P 50 21 -1.3041907395812044e-01 -1.1570347389026809e+00 3.7882172509644993e+00 3.9631210506852699e+00 0 2 0 0 -18 0 P 51 21 1.2327803085863374e+00 -1.8520493508526865e+00 3.8002950985733430e+00 4.4036435963270977e+00 0 2 0 0 -18 0 P 52 21 8.9120343403025004e-01 -6.6591070445926182e-01 1.6204931679655286e+00 1.9656242607791794e+00 0 2 0 0 -18 0 P 53 21 2.3311534016546527e+00 4.0067272979351082e-01 2.3779235076078407e+00 3.3540028363852374e+00 0 2 0 0 -18 0 P 54 21 2.9922192226411712e+00 -2.9296443922059923e-01 9.8840662977986959e-01 3.1648304385517996e+00 0 2 0 0 -18 0 P 55 21 -6.4983834641231786e-01 -1.5623563283006070e-01 5.8008244606026139e-02 6.7086839683799215e-01 0 2 0 0 -18 0 P 56 21 -3.2090347484621812e-01 -2.6511208268430819e-01 3.0542909250037914e-01 5.1628518001119683e-01 0 2 0 0 -18 0 P 57 21 -2.6248744121473306e+00 -1.2155762884366608e+00 1.1563433179045726e-01 2.8949892385367977e+00 0 2 0 0 -18 0 P 58 21 -5.8859409404682728e+00 -4.0500113996268734e+00 -2.5720403835547518e+01 2.6694307755688957e+01 0 2 0 0 -18 0 P 59 21 2.9275709203661515e-01 -3.3528824556517316e+00 -1.1913189170600640e+01 1.2379483175434720e+01 0 2 0 0 -18 0 P 60 21 4.2833934635778084e+00 -9.6441159240431400e+00 -6.4533365053110387e+01 6.5390455240793457e+01 0 2 0 0 -18 0 P 61 21 1.4751838747018833e+00 -3.0297049451077878e+00 -6.1610636037294007e+01 6.1702720786351897e+01 0 2 0 0 -18 0 P 62 21 -6.1536685107859155e+00 -2.2766572186296958e+00 -1.6923532459290732e+02 1.6936246896611561e+02 0 2 0 0 -18 0 P 63 21 -2.3311534016546527e+00 -4.0067272979351082e-01 -5.0528155456008150e+01 5.0583488497779314e+01 0 2 0 0 -18 0 P 64 21 -2.9922192226411712e+00 2.9296443922059923e-01 -5.6372512279219144e+01 5.6452629209893352e+01 0 2 0 0 -18 0 P 65 21 -7.3972219135183848e-01 2.4681140280655636e-01 -8.2862877751621138e+00 8.3229003287156331e+00 0 2 0 0 -18 0 P 66 21 -2.0902168955257041e+00 -1.1806692840712196e-01 -6.3387794968042783e+02 6.3388140691893852e+02 0 2 0 0 -18 0 P 67 21 3.0040298258652225e-02 -7.1842165718680040e-01 -2.1328783892441655e+02 2.1328905097342641e+02 0 2 0 0 -18 0 P 68 21 5.8859409404682728e+00 4.0500113996268734e+00 -1.9842290710275204e+03 1.9842419341410534e+03 0 2 0 0 -18 0 P 69 21 6.1536685107859155e+00 2.2766572186296958e+00 -5.6789586097947233e+02 5.6793376349874461e+02 0 2 0 0 -18 0 P 70 21 2.0902168955257041e+00 1.1806692840712196e-01 -5.8034042806915636e+01 5.8071792386535144e+01 0 2 0 0 -18 0 P 71 21 7.3972219135183848e-01 -2.4681140280655636e-01 -1.6982344595994050e+01 1.7000239197317843e+01 0 2 0 0 -18 0 P 72 21 2.2744679679416411e+00 2.8747171430996143e-01 -2.8811874567146145e+01 2.8902940345173946e+01 0 2 0 0 -18 0 P 73 21 1.3041907395812044e-01 1.1570347389026809e+00 -1.8008770315030226e+01 1.8046372122434846e+01 0 2 0 0 -18 0 P 74 21 -3.0040298258652225e-02 7.1842165718680040e-01 -5.8328226618860493e+00 5.8769764592046778e+00 0 2 0 0 -18 0 P 75 21 -4.2833934635778084e+00 9.6441159240431400e+00 -9.2431911397526235e+01 9.3032331348409969e+01 0 2 0 0 -18 0 P 76 21 -1.4751838747018833e+00 3.0297049451077878e+00 -1.7472999813524968e+01 1.7794971256004732e+01 0 2 0 0 -18 0 P 115 92 2.9733690420628012e-03 -1.3852065826294293e+00 1.6676207207948130e+03 1.0552589533676368e+04 1.0419989687088260e+04 2 0 0 -19 0 V -19 0 0 0 0 0 0 119 0 P 116 113 -2.9877147412782967e-01 -3.2867176425154417e-02 2.6394868795870752e+02 2.6395032033685902e+02 8.7828592285798590e-01 2 0 0 -40 0 P 117 2112 9.0061929988588807e-01 -1.0204126047914115e+00 1.2064400944691129e+03 1.2064412280303732e+03 9.3957000000000002e-01 1 0 0 0 0 P 118 113 -2.7812136808428700e-01 4.7757218701632236e-02 3.6532829799537083e+01 3.6540870212215431e+01 7.1267836834373732e-01 2 0 0 -41 0 P 119 111 1.8316986752590324e-02 2.2408392606388744e-01 6.0918981344378000e+00 6.0975397988607387e+00 1.3497999999999999e-01 2 0 0 -42 0 P 120 221 -7.1772590122716751e-01 3.9212312494324908e-01 8.1549701985170245e+01 8.1555640432694716e+01 5.4744999999999999e-01 2 0 0 -43 0 P 121 221 8.6864076435607868e-02 -4.2166069832226161e-01 1.5212334416304063e+01 1.5228268549255814e+01 5.4744999999999999e-01 2 0 0 -44 0 P 122 331 1.3740995211574164e-01 1.4784133090515089e-01 1.0646140489500615e+01 1.0691043933957561e+01 9.5779670158238550e-01 2 0 0 -45 0 P 123 213 2.7756155974689700e-01 5.0087033962085215e-01 1.9196188391467683e+01 1.9232977425135413e+01 1.0420462362529168e+00 2 0 0 -46 0 P 124 -213 4.5889240671850168e-01 2.1139815612984847e-01 2.9882065713198656e+00 3.1255174692626104e+00 7.6433599707689226e-01 2 0 0 -47 0 P 125 331 1.0123977098995005e+00 7.5015991158979856e-01 1.1337972443495458e+01 1.1447907996593296e+01 9.5775223990140101e-01 2 0 0 -48 0 P 126 213 -1.3667207676865958e-01 1.0831951317903027e-01 7.5266168694543856e-01 1.0490738671263315e+00 7.0967879367235021e-01 2 0 0 -49 0 P 127 -213 2.4467965838657330e-01 4.5201384195273725e-01 3.0606372756856004e+00 3.1861798703191564e+00 7.2114976542031783e-01 2 0 0 -50 0 P 128 -311 -4.8809491432051966e-01 -6.4771807882607868e-01 2.2160798364525562e+00 2.4117339458272116e+00 4.9767000000000000e-01 2 0 0 -51 0 P 129 333 -1.8414244667596774e-01 2.7929540713729761e-01 1.0969226002087488e+01 1.1021428183185913e+01 1.0178633243892199e+00 2 0 0 -52 0 P 130 323 1.4751090207078393e-01 -2.5386668829227182e-01 1.3015332822943895e+01 1.3049244874947620e+01 8.9313803675120396e-01 2 0 0 -53 0 P 131 -211 4.7811054962147007e-02 -3.3776523767090574e-02 7.1873575413188618e+01 7.1873734765982121e+01 1.3957000000000000e-01 1 0 0 0 0 P 132 211 -8.5280669272916984e-02 1.9328100945684185e-01 3.4358298567063161e+02 3.4358307896704042e+02 1.3957000000000000e-01 1 0 0 0 0 P 133 -211 -2.1652421547200718e-01 -7.1509189666655448e-01 2.1661696018881824e+02 2.1661829368819602e+02 1.3957000000000000e-01 1 0 0 0 0 P 134 -313 2.9774734012150422e-01 -5.0684221105884786e-01 6.7922861590315688e+02 6.7922945268334684e+02 8.8948765887716108e-01 2 0 0 -54 0 P 135 313 -1.5314989326989303e-01 -8.2921156830285592e-01 1.5263698843935706e+03 1.5263703911036807e+03 9.1422516195467685e-01 2 0 0 -55 0 P 136 -311 1.3993818051924822e-01 1.1616653030408573e-01 1.7875385279904762e+02 1.7875463810287442e+02 4.9767000000000000e-01 2 0 0 -56 0 P 137 311 7.8627084985173845e-01 2.4579067226863460e-01 2.0770678626608165e+02 2.0770901610502256e+02 4.9767000000000000e-01 2 0 0 -57 0 P 138 -2212 -2.0023946139359660e-02 2.6845493082230160e-01 1.9117181558187221e+02 1.9117430761603546e+02 9.3827000000000005e-01 1 0 0 0 0 P 139 2224 -4.5724776438341518e-02 4.1413632633700875e-01 2.5600213534702772e+02 2.5600536777368649e+02 1.2171388789464854e+00 2 0 0 -58 0 P 140 -3222 6.3991055094993687e-01 3.1838579711179821e-01 1.5897445611494476e+02 1.5898051186566360e+02 1.1893700000000000e+00 2 0 0 -59 0 P 141 -321 -2.4295403659589324e-01 -1.2779652231595495e+00 7.3565448449219573e+01 7.3578604690971730e+01 4.9359999999999998e-01 1 0 0 0 0 P 142 2214 -5.0592506503991486e-01 3.1616323041173200e-01 8.2803786433440365e+01 8.2815032973874040e+01 1.2274849853826975e+00 2 0 0 -60 0 P 143 213 -2.9316447571471504e-01 -4.1004164363631901e-01 2.3043767102801059e+01 2.3059574642632729e+01 6.8898537842041774e-01 2 0 0 -61 0 P 144 223 -5.4197058536726772e-01 -1.7120311381363069e+00 2.9215188575052373e+01 2.9280836003844069e+01 7.8443028676147586e-01 2 0 0 -62 0 P 145 223 -1.7289336310087511e+00 -2.5904786618797369e+00 5.2624426148082918e+01 5.2722317877435863e+01 7.8280505636615294e-01 2 0 0 -63 0 P 146 -2214 -6.1092049095890853e-02 -1.4767740120747379e+00 2.1892812008175415e+01 2.1973344988970329e+01 1.1610678954288993e+00 2 0 0 -64 0 P 147 -213 1.9859603904312173e-01 -1.3036130213889032e+00 1.5182182547456719e+01 1.5266287448112688e+01 9.0665221989764144e-01 2 0 0 -65 0 P 148 2224 -9.9336014016763097e-01 -2.2231617660209451e+00 2.8746220822429120e+01 2.8875322511876689e+01 1.2287497658449420e+00 2 0 0 -66 0 P 149 -213 3.3373707306835843e-01 -5.0288660651399975e-01 4.5353106687668880e+00 4.6270419329463310e+00 6.9007160067747120e-01 2 0 0 -67 0 P 150 213 5.7823110511399178e-01 -4.1990817837694323e-02 1.0044182239997003e+01 1.0089050520831428e+01 7.5314613582868450e-01 2 0 0 -68 0 P 151 113 1.7332844003585986e-02 -1.0422038215893299e-01 4.3694634315514582e+00 4.4020767855959644e+00 5.2431577420372233e-01 2 0 0 -69 0 P 152 221 1.4906311897315232e+00 2.9019627517839672e+00 5.2549442850601800e+01 5.2653461563013181e+01 5.4744999999999999e-01 2 0 0 -70 0 P 153 223 1.1192847020730572e+00 1.9517716807799583e+00 2.9515876148739359e+01 2.9611971513684420e+01 7.8721100179505998e-01 2 0 0 -71 0 P 154 -211 2.8943683935720071e-01 9.3233063891110179e-01 1.7568106697221882e+01 1.7595762751699681e+01 1.3957000000000000e-01 1 0 0 0 0 P 155 -311 2.3433676988977026e-01 7.3276308797406209e-01 2.0907779111290306e+01 2.0927846479277960e+01 4.9767000000000000e-01 2 0 0 -72 0 P 156 311 1.8123530522031666e+00 3.0765343102742175e+00 4.5611425230711497e+01 4.5753682627235698e+01 4.9767000000000000e-01 2 0 0 -73 0 P 157 213 -3.8976945355182752e-01 1.2011786102596542e+00 1.6156281277214198e+01 1.6226312197981446e+01 8.2038561495924534e-01 2 0 0 -74 0 P 158 -211 -8.5830147302704840e-01 2.0131663592676379e+00 1.2843817361184996e+01 1.3029683204171329e+01 1.3957000000000000e-01 1 0 0 0 0 P 159 211 -4.3850729718534232e-01 1.0060391183708526e+00 4.3304371171631395e+00 4.4695154958878254e+00 1.3957000000000000e-01 1 0 0 0 0 P 160 221 -9.1859772190444233e-01 -5.1358336044602056e-02 6.4122371568332337e+00 6.5009957938259006e+00 5.4744999999999999e-01 2 0 0 -75 0 P 161 -211 -7.2160117237696464e-01 4.7266680725041077e-01 6.1018132197166732e+00 6.1640673678879638e+00 1.3957000000000000e-01 1 0 0 0 0 P 162 211 -2.6216643124120176e-01 8.6958464553077686e-01 2.6353466243662855e+00 2.7909568805109499e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 -213 -1.7228101273793106e+00 4.1575842208818620e-01 1.0833494316150940e+01 1.1002611305869170e+01 7.4291765992431869e-01 2 0 0 -76 0 P 164 213 -4.4794631684729735e-01 -5.2568954313581684e-01 3.3204166156842465e+00 3.4768361937258154e+00 7.6564875612149341e-01 2 0 0 -77 0 P 165 223 -8.6986800332637379e-02 -4.1191150949285288e-01 2.3305273102849955e+00 2.4935938204003931e+00 7.8065024311148690e-01 2 0 0 -78 0 P 166 -211 2.5130760612765196e-01 -4.0199755930086381e-03 2.2868437971880226e-01 3.6735269636788109e-01 1.3957000000000000e-01 1 0 0 0 0 P 167 -313 1.7260076162750795e-01 -1.2801425512250888e+00 2.1416393341265487e+00 2.6676922102122167e+00 9.2811999039857940e-01 2 0 0 -79 0 P 168 323 1.3130253467785835e+00 -1.7203095537229068e-02 3.3889524082338718e+00 3.7469880540452687e+00 9.1136685484205926e-01 2 0 0 -80 0 P 169 -213 8.1999222767358870e-01 -2.4576364576613485e-01 1.6361946677918964e+00 2.0019395674553127e+00 7.7320244296508323e-01 2 0 0 -81 0 P 170 111 5.3637962230157832e-01 -7.8451986135967477e-01 5.3709305418498020e-02 9.6139419697474993e-01 1.3497999999999999e-01 2 0 0 -82 0 P 171 -1114 2.7148167827077635e-01 -4.3755581523336001e-02 1.0198182419392769e+00 1.5430169253897688e+00 1.1248356026086723e+00 2 0 0 -83 0 P 172 1114 9.0029270646302306e-01 -7.3518778540429985e-02 1.9069822723028886e+00 2.4398729762510105e+00 1.2249354208503747e+00 2 0 0 -84 0 P 173 113 7.7833393804873352e-01 -5.0689845995915317e-01 -2.8603824558577101e-01 1.2182942178301561e+00 7.3462449961405163e-01 2 0 0 -85 0 P 174 211 -1.3346885710589057e-01 -4.4698306258931053e-01 -1.1528280902226810e-01 5.0037756246152454e-01 1.3957000000000000e-01 1 0 0 0 0 P 175 -213 -5.6873372478281126e-01 -2.1040174953199758e-01 7.5596004722535207e-02 1.0129137399374279e+00 8.0780724353806233e-01 2 0 0 -86 0 P 176 111 1.0702253658895415e-01 -8.6923911355480162e-03 5.1815059269939651e-02 1.8009381379918279e-01 1.3497999999999999e-01 2 0 0 -87 0 P 177 223 3.4288416794935739e-01 8.3329005012827501e-02 -2.4842278226754816e-01 8.9473714677059346e-01 7.8379041034889030e-01 2 0 0 -88 0 P 178 331 -1.7597593513381951e+00 -1.1625254639359550e+00 -1.7838125944802592e+00 2.9236080785782166e+00 9.5774651969071789e-01 2 0 0 -89 0 P 179 111 2.2022694830503858e-01 1.5420326761245290e-01 -1.7177294914031208e-01 3.4641608357359543e-01 1.3497999999999999e-01 2 0 0 -90 0 P 180 -313 -1.5010973117731701e+00 -6.5005067788448123e-01 -4.1685168620569888e+00 4.5699259790913782e+00 9.1204802608751734e-01 2 0 0 -91 0 P 181 313 -1.6811081883998515e+00 -1.5426470441950819e+00 -6.5413861032542444e+00 6.9830754044091732e+00 8.7619935388457226e-01 2 0 0 -92 0 P 182 211 -3.2998649161586402e-01 4.3426263192384178e-02 -3.2385569547309010e+00 3.2586052014504134e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 221 -5.0245527662598843e-01 -1.4418505219971172e+00 -5.8501748708053185e+00 6.0708847587723733e+00 5.4744999999999999e-01 2 0 0 -93 0 P 184 -323 -6.9270951714942175e-01 -9.0459112455408697e-01 -4.9845511594685981e+00 5.1839494039348333e+00 8.5407820685529179e-01 2 0 0 -94 0 P 185 313 -6.9633790799899797e-01 -7.4794684267423128e-01 -5.2873192215879907e+00 5.4607806418405067e+00 9.0557700155392851e-01 2 0 0 -95 0 P 186 -313 1.3107916766646843e+00 -3.6013605577016508e+00 -2.3883657200111735e+01 2.4208397380130158e+01 9.6407975586106276e-01 2 0 0 -96 0 P 187 321 -7.1975499260406306e-02 -1.0960232361193043e+00 -3.8221362093379194e+00 4.0073449526262728e+00 4.9359999999999998e-01 1 0 0 0 0 P 188 223 2.1520302466045100e+00 -6.3888076295132414e+00 -4.2237636605219961e+01 4.2779438667976756e+01 7.8379183674011832e-01 2 0 0 -97 0 P 189 223 1.1123517168209329e+00 -8.6789551763868900e-01 -2.3306009811780953e+01 2.3361872198403436e+01 7.8511801422053351e-01 2 0 0 -98 0 P 190 221 2.6948153498580950e-02 -5.6996245913495891e-01 -5.9296816447050276e+00 5.9821742968465808e+00 5.4744999999999999e-01 2 0 0 -99 0 P 191 223 -1.6512148755654182e-02 -8.0056958176677329e-01 -1.3233346981236966e+01 1.3280504531510303e+01 7.8047676412909262e-01 2 0 0 -100 0 P 192 -321 -3.9510739046483900e-01 -1.2528994349170615e+00 -2.8806601583987678e+01 2.8840766332096951e+01 4.9359999999999998e-01 1 0 0 0 0 P 193 323 -5.1565235184368552e-01 -1.5443467077829669e-02 -2.4584420303847303e+01 2.4606093783130664e+01 8.9442369119149545e-01 2 0 0 -101 0 P 194 111 -2.2938562391522810e+00 -8.7413339741063167e-01 -5.8393351536659338e+01 5.8445081990930959e+01 1.3497999999999999e-01 2 0 0 -102 0 P 195 -211 -4.0595502714667542e-01 -1.8347554413791245e-01 -4.7307095221023685e+00 4.7536885811727698e+00 1.3957000000000000e-01 1 0 0 0 0 P 196 331 -1.2878007089962840e+00 -6.5741623388413450e-01 -4.8060200911464683e+01 4.8091480189042478e+01 9.5756375873809629e-01 2 0 0 -103 0 P 197 -313 -2.2985262484451856e+00 -3.0055528882260828e-03 -4.9276051495410165e+01 4.9337655693164521e+01 8.8982378637322901e-01 2 0 0 -104 0 P 198 -3122 -2.2286349478609746e+00 -7.7791799191617939e-01 -8.1030753888712511e+01 8.1072805476118020e+01 1.1156800000000000e+00 2 0 0 -105 0 P 199 -213 -1.1285944513296859e+00 6.8383062837503866e-02 -4.5189047791815462e+01 4.5209851236111348e+01 7.7601983317553924e-01 2 0 0 -106 0 P 200 2224 -9.2722099811199621e-01 9.1177842870165504e-02 -2.8435897739933889e+01 2.8474437472126866e+01 1.1511980280190914e+00 2 0 0 -107 0 P 201 -213 -9.6328968997055356e-02 4.6111637520488369e-01 -1.2407291757795652e+02 1.2407789848930332e+02 1.0070301056669313e+00 2 0 0 -108 0 P 202 221 -5.0513143085745282e-01 -1.1312715932805273e+00 -2.3358526851020153e+02 2.3358919559702596e+02 5.4744999999999999e-01 2 0 0 -109 0 P 203 -313 -7.2098085585109639e-01 5.1875412731233372e-01 -3.9917051341954010e+02 3.9917283076249345e+02 1.0301048897406087e+00 2 0 0 -110 0 P 204 313 1.2111562225523647e+00 4.0098741136004652e-02 -4.1965755420613283e+02 4.1966028063539289e+02 9.0544651909785134e-01 2 0 0 -111 0 P 205 211 1.4136264254358768e+00 1.7260767027760755e+00 -6.1941511428898093e+02 6.1941914804909834e+02 1.3957000000000000e-01 1 0 0 0 0 P 206 -2114 9.3114497032094035e-01 7.1486957199365153e-01 -3.2478185554977193e+02 3.2478644146929406e+02 1.2652266490811741e+00 2 0 0 -112 0 P 207 113 9.2089430137083472e-01 2.9328771076562593e-01 -1.8397741757820862e+02 1.8398215003110991e+02 8.9849169595959144e-01 2 0 0 -113 0 P 208 1114 3.4166286807339654e+00 2.0527378863954788e+00 -4.7956939055185495e+02 4.7958753546884139e+02 1.2315593478763860e+00 2 0 0 -114 0 P 209 211 3.1155899247793750e-01 -2.2679339718825436e-01 -1.0365652369732298e+02 1.0365733398582748e+02 1.3957000000000000e-01 1 0 0 0 0 P 210 -213 1.5616703665790659e+00 -1.9828820257139751e-01 -2.5128436472227136e+02 2.5129142639185164e+02 1.0348389395262800e+00 2 0 0 -115 0 P 211 213 1.6321162512950822e+00 1.0717619207192828e+00 -1.1614752076638635e+02 1.1616635135248603e+02 7.4975282502885976e-01 2 0 0 -116 0 P 212 -213 7.8848306374049593e-01 3.4961940059751945e-01 -2.8262253197439829e+01 2.8284924323825351e+01 7.3351819421842135e-01 2 0 0 -117 0 P 213 -313 9.5797860859815986e-01 -8.1295424173256484e-02 -1.9139317728554055e+01 1.9184756438622941e+01 9.0391622079576683e-01 2 0 0 -118 0 P 214 313 1.4272896995845581e+00 2.6330958751703343e-01 -9.0235399631337728e+01 9.0251230687581682e+01 8.6649072149738027e-01 2 0 0 -119 0 P 215 113 2.2264089574947405e+00 5.0386423057420360e-01 -5.1387181102454392e+01 5.1445644934482765e+01 8.9511175814053201e-01 2 0 0 -120 0 P 216 213 -5.2149644795067873e-01 1.5808789669379641e+00 -1.3708107464048913e+01 1.3833507186232332e+01 8.2618035095008080e-01 2 0 0 -121 0 P 217 -321 -1.8967788996110464e+00 4.1615077075687052e+00 -4.8121674628119791e+01 4.8341029432241008e+01 4.9359999999999998e-01 1 0 0 0 0 P 218 321 -1.6479893263888228e+00 4.5444730160188893e+00 -3.3135709440013557e+01 3.3490102789723096e+01 4.9359999999999998e-01 1 0 0 0 0 P 219 -211 -4.4731515635330765e-01 6.9519293119200198e-01 -1.0926945363337174e+01 1.0959060124798041e+01 1.3957000000000000e-01 1 0 0 0 0 P 220 213 -3.7928031812413865e-01 1.4863672314779448e+00 -1.0191777179935405e+01 1.0348403138267633e+01 9.2950756862305572e-01 2 0 0 -122 0 P 221 -2114 -6.5284264295097238e-01 5.2885508465076847e-01 -3.2221047894678736e+00 3.5123713648025925e+00 1.1175428908803606e+00 2 0 0 -123 0 P 222 -211 3.7469946753706834e-01 2.4870515328522516e-01 -3.7073796771692735e+00 3.7371644063154270e+00 1.3957000000000000e-01 1 0 0 0 0 P 223 2212 -3.8537374817492798e-01 1.1333321910147305e+00 -3.1077285400116792e+00 3.4599540534920066e+00 9.3827000000000005e-01 1 0 0 0 0 P 224 -213 5.3405761094065041e-01 4.4048953235484234e-01 -1.2454214098184957e+00 1.5905616497914739e+00 7.0679792998795832e-01 2 0 0 -124 0 P 225 213 -2.7645139086074533e-01 7.2946383003040927e-01 -2.6905945542397056e+00 2.9063845968437261e+00 7.7409916589196381e-01 2 0 0 -125 0 P 226 111 -4.1427080854957460e-01 -2.4189980845962128e-01 -1.2575210088415815e+01 1.2585081016359966e+01 1.3497999999999999e-01 2 0 0 -126 0 P 227 -323 1.0533628938139001e+00 -7.1760402567131309e-01 -6.4753637614876808e+01 6.4771542368798450e+01 8.3341919256790775e-01 2 0 0 -127 0 P 228 311 -1.4607749518665167e-01 1.8455093679712362e-01 -5.0882029567111580e+01 5.0885007673972005e+01 4.9767000000000000e-01 2 0 0 -128 0 P 229 211 -4.3439500036845957e-01 2.5052129549481628e-03 -4.2566939543436114e+01 4.2569384857804586e+01 1.3957000000000000e-01 1 0 0 0 0 P 230 -213 1.2107608357112456e+00 -1.3073978249109575e-01 -4.9760402272809316e+01 4.9781994015659407e+01 8.1624697936640855e-01 2 0 0 -129 0 P 231 211 -1.8073053780994111e-01 -6.7482401619083754e-02 -5.1043437254421626e+01 5.1043992633147369e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 223 -1.5060500773255230e-03 3.0688105416812095e-01 -3.3812841920644019e+01 3.3823454627558611e+01 7.8969990658499023e-01 2 0 0 -130 0 P 233 -213 -7.0054945176024908e-01 5.3688853419117522e-01 -3.6389708115654955e+01 3.6408549739276090e+01 7.6981721354434762e-01 2 0 0 -131 0 P 234 211 1.2690617089463177e-01 8.8054814279508647e-02 -4.4819405736842777e+00 4.4867727731038807e+00 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 5 1 0 P 80 21 3.1770259497230255e+00 3.8411735627827106e+00 6.0248438053039713e+01 6.0454300062572869e+01 0 2 0 0 -20 0 P 81 21 2.6248744121473306e+00 1.2155762884366608e+00 8.0329095733507515e+01 8.0381162051537743e+01 0 2 0 0 -20 0 P 82 21 -2.9275709203661515e-01 3.3528824556517316e+00 1.7657871068611351e+02 1.7661078278249755e+02 0 2 0 0 -20 0 P 83 21 2.0950473756122159e-01 2.9331800258934746e+00 2.9331866791983089e+02 2.9333340823636740e+02 0 2 0 0 -20 0 P 84 21 -3.1770259497230255e+00 -3.8411735627827106e+00 2.1153766328838259e+02 2.1159638725113848e+02 0 2 0 0 -20 0 P 235 92 2.5416220576719373e+00 7.5016387699818665e+00 8.2201257568087431e+02 8.2237604038411405e+02 2.3128830351523014e+01 2 0 0 -21 0 V -21 0 0 0 0 0 0 16 0 P 236 -3212 3.5632519651204597e-01 -4.5158039638511133e-01 3.0296748469909829e+01 3.0325666288666309e+01 1.1925500000000000e+00 2 0 0 -132 0 P 237 2214 8.3666516594321472e-01 1.2438354506153717e+00 3.6125694112563437e+01 3.6178984219693952e+01 1.2672761444345551e+00 2 0 0 -133 0 P 238 -213 2.5495132602327941e+00 1.6234810471585515e+00 4.3361873598746499e+01 4.3472733214718509e+01 7.0053022050137725e-01 2 0 0 -134 0 P 239 223 3.5378573225715254e-01 5.6951317811720747e-01 2.5533080752369585e+01 2.5553825174588937e+01 7.8119059264122759e-01 2 0 0 -135 0 P 240 -313 5.8174077091497511e-01 1.6270713460768844e+00 5.1953745417477499e+01 5.1990113466372485e+01 8.9132028612183789e-01 2 0 0 -136 0 P 241 321 3.9746373605510421e-02 8.1272138400143290e-01 3.9900410830790406e+01 3.9911759185083341e+01 4.9359999999999998e-01 1 0 0 0 0 P 242 -213 8.0421655785915502e-01 1.9096734373327016e+00 1.3161753363711665e+02 1.3163674395466876e+02 8.7383142556247084e-01 2 0 0 -137 0 P 243 111 -5.1005134609197156e-01 7.4674307536802473e-02 4.2506585573839182e+01 4.2509925492458457e+01 1.3497999999999999e-01 2 0 0 -138 0 P 244 211 -1.7465916275576729e-01 1.1229294146558046e+00 6.3383044988863681e+01 6.3393385681304729e+01 1.3957000000000000e-01 1 0 0 0 0 P 245 -213 7.9041261329819743e-02 5.8693431792123864e-02 7.9365330098287004e+01 7.9369180997224760e+01 7.7561467252379834e-01 2 0 0 -139 0 P 246 213 -5.7448418073081897e-01 -2.2387459006633556e-01 3.7933978803129527e+01 3.7946323043310613e+01 7.4601123652303702e-01 2 0 0 -140 0 P 247 111 3.3371858699617934e-01 -1.9813115603805823e-01 2.3984698261590914e+01 2.3988217823553754e+01 1.3497999999999999e-01 2 0 0 -141 0 P 248 -2214 -6.9005465095791441e-01 4.0915646048791582e-01 7.7212225200258757e+01 7.7225381678559856e+01 1.1782489521770587e+00 2 0 0 -142 0 P 249 -211 -7.6528785079176709e-02 -4.0424462629990193e-01 2.7975242140996404e+01 2.7978615459045130e+01 1.3957000000000000e-01 1 0 0 0 0 P 250 2214 -1.0035968871076033e+00 -5.4751067376408857e-01 7.5853492486637194e+01 7.5872993917254149e+01 1.2852660804914975e+00 2 0 0 -143 0 P 251 -313 -3.6375583525565713e-01 -1.2476924523943506e-01 3.5008891308297663e+01 3.5022190787610356e+01 8.8515041396348326e-01 2 0 0 -144 0 V -22 0 1.1473804403654377e+00 3.2523505578528983e-01 1.3552669702358384e+00 1.8069189415098368e+00 0 2 0 P 252 211 1.9906863535806220e+01 5.1003627265745566e+00 2.4036393733931938e+01 3.1623798305917411e+01 1.3957000000000000e-01 1 0 0 0 0 P 253 111 1.8562730964164491e+00 7.6890172452411587e-01 2.1795661585788282e+00 2.9674379370894584e+00 1.3497999999999999e-01 2 0 0 -145 0 V -23 0 0 0 0 0 0 3 0 P 254 211 3.7164823356247667e-01 -4.2080288808730486e-02 -1.5407992326822600e+02 1.5408044044357976e+02 1.3957000000000000e-01 1 0 0 0 0 P 255 -211 3.0465529172595518e-03 -2.8261993943406262e-02 -1.2144993741292980e+01 1.2145828945886402e+01 1.3957000000000000e-01 1 0 0 0 0 P 256 111 1.3048265908484552e-01 1.6913952801183349e-01 -4.5385303863623378e+01 4.5386007318314363e+01 1.3497999999999999e-01 2 0 0 -146 0 V -24 0 0 0 0 0 0 2 0 P 257 2212 7.3190042104735176e-01 -4.6366081870659709e-01 -1.3521789504396807e+02 1.3522392595356635e+02 9.3827000000000005e-01 1 0 0 0 0 P 258 111 4.1257270193926954e-01 -3.8433962020365242e-01 -6.9770898815538260e+01 6.9773307749500617e+01 1.3497999999999999e-01 2 0 0 -147 0 V -25 0 0 0 0 0 0 2 0 P 259 211 6.6363460543642283e-02 -1.0212711562560026e+00 -1.0945554678118184e+02 1.0946042024328192e+02 1.3957000000000000e-01 1 0 0 0 0 P 260 -211 5.5960600647667813e-01 -4.5643151270299043e-01 -8.3672270124956597e+01 8.3675502724852976e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 261 2112 -5.9284976135142209e-01 1.9993716373304463e-01 -5.3778881470109445e+02 5.3778999940041831e+02 9.3957000000000002e-01 1 0 0 0 0 P 262 111 -2.0227203438501865e-01 -1.8665665439862650e-01 -8.7970120387413488e+01 8.7970654511939074e+01 1.3497999999999999e-01 2 0 0 -148 0 V -27 0 0 0 0 0 0 3 0 P 263 111 1.7752936471546014e-02 -1.5091353264992523e-02 -1.9894348060272453e-02 1.3841351516912939e-01 1.3497999999999999e-01 2 0 0 -149 0 P 264 111 9.1130703570323657e-02 5.9840042607095786e-02 2.8317938996915364e-02 1.7580427156777009e-01 1.3497999999999999e-01 2 0 0 -150 0 P 265 221 1.4000654832434239e-01 8.2469501099743014e-01 1.9324298407361629e-01 1.0182180749384799e+00 5.4744999999999999e-01 2 0 0 -151 0 V -28 0 0 0 0 0 0 2 0 P 266 -211 2.6389085617383540e-01 2.7579876377899687e-01 -1.8902016914935000e-02 4.0686657913575952e-01 1.3957000000000000e-01 1 0 0 0 0 P 267 111 4.7154034135848027e-01 1.0368235700104098e+00 1.0586325946952873e+00 1.5608574501884789e+00 1.3497999999999999e-01 2 0 0 -152 0 V -29 0 0 0 0 0 0 2 0 P 268 211 1.2218300512621119e-01 3.2963298729316448e-01 6.9473241370332325e-02 3.8456847143257561e-01 1.3957000000000000e-01 1 0 0 0 0 P 269 -211 -5.5086016662396077e-02 2.0165587624242021e-01 -3.9076040348358970e-01 4.6462139370188915e-01 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 270 311 -6.7201325019983693e-01 -8.5246843519300231e-01 -5.7877013473237349e-01 1.3270096228749377e+00 4.9767000000000000e-01 2 0 0 -153 0 P 271 211 1.7897761229900958e-01 -1.2104385357370680e-01 -1.8336310469376560e-01 3.1588987520204631e-01 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 1 0 P 272 310 -1.0145940623007077e-01 2.9312536173750581e-01 -5.3695971969423251e-01 7.9512115949735040e-01 4.9767000000000000e-01 2 0 0 -154 0 V -32 0 0 0 0 0 0 3 0 P 273 111 -1.9652736240989266e-01 -1.9254044965142500e-01 -8.1634701380291042e-01 8.7197297909550586e-01 1.3497999999999999e-01 2 0 0 -155 0 P 274 111 -1.7056389749908937e-01 -6.0578159495081085e-01 -2.2325669981363774e+00 2.3234970164557782e+00 1.3497999999999999e-01 2 0 0 -156 0 P 275 111 -1.3281898978583498e-01 -5.5461258100718502e-01 -1.8347966380639131e+00 1.9261189741316136e+00 1.3497999999999999e-01 2 0 0 -157 0 V -33 0 0 0 0 0 0 3 0 P 276 -211 -5.8336296204891225e-01 -1.5850668793616542e+00 -2.6371760899141798e+00 3.1347929551494809e+00 1.3957000000000000e-01 1 0 0 0 0 P 277 211 7.0824626728896237e-02 -8.2084562269393313e-01 -1.3480516512148297e+00 1.5860412047894932e+00 1.3957000000000000e-01 1 0 0 0 0 P 278 111 -3.0435592573668635e-01 -1.0945072409244292e+00 -1.5960489833023264e+00 1.9637134687798603e+00 1.3497999999999999e-01 2 0 0 -158 0 V -34 0 0 0 0 0 0 2 0 P 279 -211 7.9850025198245100e-01 -1.4153142365220108e+00 -8.0028039742827879e+00 8.1673170794462422e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 211 -3.8916466916404373e-02 -5.8928476398484297e-01 -2.0747157350729810e+00 2.1616420126194225e+00 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 1 0 P 281 310 -9.4744228227346039e-01 1.3136424792092651e+00 -1.1273134750623703e+02 1.1274408050732551e+02 4.9767000000000000e-01 2 0 0 -159 0 V -36 0 -1.4763702342450343e-06 3.8446603178490452e-06 -3.5449481147520573e-04 3.5459056667001051e-04 0 2 0 P 282 22 -5.1653788922154130e-02 4.6139687296646664e-02 -1.4175976198112765e+00 1.4192885528843113e+00 0 1 0 0 0 0 P 283 22 2.3731836775846019e-02 2.6572711615057299e-02 -5.2868095353402946e+00 5.2869295788807698e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 284 -321 -8.5733210754535633e-02 5.2092155414876828e-01 -3.9574542712223302e+00 4.0229087384402487e+00 4.9359999999999998e-01 1 0 0 0 0 P 285 211 -5.0527097510161756e-01 5.3413798674638679e-01 -6.4490018799696962e+00 6.4922805838871671e+00 1.3957000000000000e-01 1 0 0 0 0 V -38 0 7.7540881444835151e-05 9.1889830743945579e-06 -3.3816096069243012e-04 3.5065056787268820e-04 0 2 0 P 286 22 1.1263306119468713e-01 5.3142644296538921e-02 -2.9012589918329973e-01 3.1572675606263212e-01 0 1 0 0 0 0 P 287 22 9.6447239199209556e-02 -2.8365580820988032e-02 -6.2168724925713970e-01 6.2976321900645360e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 1 0 P 288 130 3.8192388546225653e-01 -1.0798366043707059e+00 -3.3227661537950702e+01 3.3251121479672442e+01 4.9767000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 289 211 -1.0987092506890990e-01 3.4779013819374816e-01 6.7964260251786698e+01 6.7965382224761257e+01 1.3957000000000000e-01 1 0 0 0 0 P 290 -211 -1.8890054905891976e-01 -3.8065731461890256e-01 1.9598442770692083e+02 1.9598493811209775e+02 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 291 -211 -3.0338026226905906e-01 2.4732285654211331e-01 3.0813858865012119e+01 3.0816660852803125e+01 1.3957000000000000e-01 1 0 0 0 0 P 292 211 2.5258894184772097e-02 -1.9956563784048109e-01 5.7189709345249646e+00 5.7242093594123080e+00 1.3957000000000000e-01 1 0 0 0 0 V -42 0 1.6799557263150894e-06 2.0552019819141837e-05 5.5872285618319400e-04 5.5924028552794820e-04 0 2 0 P 293 22 -2.1547051525660318e-02 1.8188385310212028e-02 2.0767154001983573e-01 2.0957710114383310e-01 0 1 0 0 0 0 P 294 22 3.9864038278250642e-02 2.0589554075367542e-01 5.8842265944179646e+00 5.8879626977169055e+00 0 1 0 0 0 0 V -43 0 0 0 0 0 0 3 0 P 295 111 -2.2281924257435293e-01 6.6962948274868914e-02 3.7004027695895161e+01 3.7005005306988934e+01 1.3497999999999999e-01 2 0 0 -160 0 P 296 111 -2.3148760470738969e-01 8.2241029451800909e-02 1.7311264861716275e+01 1.7313534035861974e+01 1.3497999999999999e-01 2 0 0 -161 0 P 297 111 -2.6341905394542486e-01 2.4291914721657920e-01 2.7234409427558809e+01 2.7237101089843794e+01 1.3497999999999999e-01 2 0 0 -162 0 V -44 0 0 0 0 0 0 3 0 P 298 111 1.8799436189599772e-01 -1.6359703284331487e-01 7.3113022585879195e+00 7.3167934360683322e+00 1.3497999999999999e-01 2 0 0 -163 0 P 299 111 -1.0735345192315211e-01 -1.5093772526901927e-01 3.8993954480704187e+00 3.9061248599323477e+00 1.3497999999999999e-01 2 0 0 -164 0 P 300 111 6.2231664627622673e-03 -1.0712594020992745e-01 4.0016367096457248e+00 4.0053502532551315e+00 1.3497999999999999e-01 2 0 0 -165 0 V -45 0 0 0 0 0 0 3 0 P 301 211 1.1510359197496618e-01 -4.0258988105558577e-03 2.2972834714323711e+00 2.3043993095301731e+00 1.3957000000000000e-01 1 0 0 0 0 P 302 -211 4.6969514739339378e-02 1.8742205243369991e-01 3.0952910087340104e+00 3.1044547628694668e+00 1.3957000000000000e-01 1 0 0 0 0 P 303 221 -2.4663154598563903e-02 -3.5554822717993158e-02 5.2535660093342331e+00 5.2821898615579199e+00 5.4744999999999999e-01 2 0 0 -166 0 V -46 0 0 0 0 0 0 2 0 P 304 211 1.5102075965030551e-01 8.0238817372599613e-01 1.4357973638608607e+01 1.4381846920443159e+01 1.3957000000000000e-01 1 0 0 0 0 P 305 111 1.2654080009659147e-01 -3.0151783410514404e-01 4.8382147528590735e+00 4.8511305046922546e+00 1.3497999999999999e-01 2 0 0 -167 0 V -47 0 0 0 0 0 0 2 0 P 306 -211 3.9139766808884868e-01 4.6335918556612832e-01 2.0046381174258294e+00 2.0990349297166229e+00 1.3957000000000000e-01 1 0 0 0 0 P 307 111 6.7494738629652912e-02 -2.5196102943627985e-01 9.8356845389403591e-01 1.0264825395459873e+00 1.3497999999999999e-01 2 0 0 -168 0 V -48 0 0 0 0 0 0 3 0 P 308 211 4.3983803239529634e-01 3.5828561191636121e-01 3.5368149445636003e+00 3.5847406895668299e+00 1.3957000000000000e-01 1 0 0 0 0 P 309 -211 1.5712735785141246e-01 1.4268660928923810e-01 1.9010424010646820e+00 1.9179391206713514e+00 1.3957000000000000e-01 1 0 0 0 0 P 310 221 4.1543231965279165e-01 2.4918769038419919e-01 5.9001150978671753e+00 5.9452281863551120e+00 5.4744999999999999e-01 2 0 0 -169 0 V -49 0 0 0 0 0 0 2 0 P 311 211 -3.0558568624892579e-01 -6.8518409587786516e-02 6.7828012750436806e-01 7.6001388168901785e-01 1.3957000000000000e-01 1 0 0 0 0 P 312 111 1.6891360948026621e-01 1.7683792276681679e-01 7.4381559441070416e-02 2.8905998543731370e-01 1.3497999999999999e-01 2 0 0 -170 0 V -50 0 0 0 0 0 0 2 0 P 313 -211 4.0944784895303621e-01 4.5961404836533970e-01 1.7952810276973006e+00 1.9029993084015877e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 111 -1.6476819056646289e-01 -7.6002064126023828e-03 1.2653562479883003e+00 1.2831805619175694e+00 1.3497999999999999e-01 2 0 0 -171 0 V -51 0 0 0 0 0 0 1 0 P 315 130 -4.8809491432051966e-01 -6.4771807882607868e-01 2.2160798364525562e+00 2.4117339458272111e+00 4.9767000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 316 -321 -1.1536375577017742e-01 1.1726558900206963e-01 6.6972742192888104e+00 6.7174536055606628e+00 4.9359999999999998e-01 1 0 0 0 0 P 317 321 -6.8778690905790307e-02 1.6202981813522799e-01 4.2719517827986788e+00 4.3039745776252509e+00 4.9359999999999998e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 318 321 -1.9685138245034034e-01 -1.6285712676737002e-01 7.1645482123261024e+00 7.1860743773813445e+00 4.9359999999999998e-01 1 0 0 0 0 P 319 111 3.4436228452112427e-01 -9.1009561524901805e-02 5.8507846106177928e+00 5.8631704975662746e+00 1.3497999999999999e-01 2 0 0 -172 0 V -54 0 0 0 0 0 0 2 0 P 320 -321 4.5515188236459553e-01 -3.2265570519506870e-01 5.6661051832954411e+02 5.6661100800511701e+02 4.9359999999999998e-01 1 0 0 0 0 P 321 211 -1.5740454224309128e-01 -1.8418650586377913e-01 1.1261809757361269e+02 1.1261844467822981e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 322 311 1.0629377644747397e-01 -2.9591574508350899e-01 5.4422306574526010e+02 5.4422338412557554e+02 4.9767000000000000e-01 2 0 0 -173 0 P 323 111 -2.5944366971736699e-01 -5.3329582321934699e-01 9.8214681864831050e+02 9.8214700697810531e+02 1.3497999999999999e-01 2 0 0 -174 0 V -56 0 0 0 0 0 0 1 0 P 324 310 1.3993818051924822e-01 1.1616653030408573e-01 1.7875385279904762e+02 1.7875463810287445e+02 4.9767000000000000e-01 2 0 0 -175 0 V -57 0 0 0 0 0 0 1 0 P 325 310 7.8627084985173845e-01 2.4579067226863460e-01 2.0770678626608165e+02 2.0770901610502258e+02 4.9767000000000000e-01 2 0 0 -176 0 V -58 0 0 0 0 0 0 2 0 P 326 2212 7.4282410584012137e-02 1.3667450604742581e-01 1.8248190112621606e+02 1.8248437956994599e+02 9.3827000000000005e-01 1 0 0 0 0 P 327 211 -1.2000718702235366e-01 2.7746182028958294e-01 7.3520234220811645e+01 7.3520988203740558e+01 1.3957000000000000e-01 1 0 0 0 0 V -59 0 2.2022520978924767e+01 1.0957246893143999e+01 5.4711057501823043e+03 5.4713141588373119e+03 0 2 0 P 328 -2112 4.2197173854407399e-01 1.8629907413271579e-01 1.0343573840311558e+02 1.0344103411256005e+02 9.3957000000000002e-01 1 0 0 0 0 P 329 -211 2.1793881240586296e-01 1.3208672297908242e-01 5.5538717711829179e+01 5.5539477753103590e+01 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 330 2212 -2.3287009790075153e-01 3.8351131985699821e-01 5.8495315914120759e+01 5.8504560881188091e+01 9.3827000000000005e-01 1 0 0 0 0 P 331 111 -2.7305496713916333e-01 -6.7348089445266199e-02 2.4308470519319609e+01 2.4310472092685938e+01 1.3497999999999999e-01 2 0 0 -177 0 V -61 0 0 0 0 0 0 2 0 P 332 211 -1.5748102284223037e-01 -5.6569075479409936e-01 1.7257652898167152e+01 1.7268204007398456e+01 1.3957000000000000e-01 1 0 0 0 0 P 333 111 -1.3568345287248471e-01 1.5564911115778038e-01 5.7861142046339076e+00 5.7913706352342782e+00 1.3497999999999999e-01 2 0 0 -178 0 V -62 0 0 0 0 0 0 3 0 P 334 211 -1.0572061725107712e-01 -8.9651239332719657e-01 1.7543293002428467e+01 1.7567057820655592e+01 1.3957000000000000e-01 1 0 0 0 0 P 335 -211 -6.9787957198364337e-02 -1.4899778488809684e-01 2.8161795441199522e+00 2.8244322807408824e+00 1.3957000000000000e-01 1 0 0 0 0 P 336 111 -3.6646201091782626e-01 -6.6652095992101357e-01 8.8557160285039576e+00 8.8893459024475963e+00 1.3497999999999999e-01 2 0 0 -179 0 V -63 0 0 0 0 0 0 3 0 P 337 211 -2.7809883263250001e-01 -4.4679068653094361e-01 1.2152324597646960e+01 1.2164515353673474e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 -211 -5.3612181188541230e-01 -9.6695202669892655e-01 1.4611956721180650e+01 1.4654391213068964e+01 1.3957000000000000e-01 1 0 0 0 0 P 339 111 -9.1471298649083899e-01 -1.1767359486498667e+00 2.5860144829255308e+01 2.5903411310693421e+01 1.3497999999999999e-01 2 0 0 -180 0 V -64 0 0 0 0 0 0 2 0 P 340 -2112 -9.2821339905820865e-02 -9.8241382937309119e-01 1.5390688429780111e+01 1.5450884598001268e+01 9.3957000000000002e-01 1 0 0 0 0 P 341 -211 3.1729290809930005e-02 -4.9436018270164661e-01 6.5021235783953060e+00 6.5224603909690613e+00 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 342 -211 3.9161735458410757e-01 -1.8960179650283376e-01 4.8953653696915751e+00 4.9166446771476267e+00 1.3957000000000000e-01 1 0 0 0 0 P 343 111 -1.9302131554098587e-01 -1.1140112248860694e+00 1.0286817177765142e+01 1.0349642770965060e+01 1.3497999999999999e-01 2 0 0 -181 0 V -66 0 0 0 0 0 0 2 0 P 344 2212 -8.3449142021499922e-01 -1.8658025562642206e+00 2.1524554583850666e+01 2.1641728113425721e+01 9.3827000000000005e-01 1 0 0 0 0 P 345 211 -1.5886871995263166e-01 -3.5735920975672431e-01 7.2216662385784538e+00 7.2335943984509674e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 346 -211 3.8177038876137082e-01 -5.9766921738241419e-01 4.0019517364370865e+00 4.0667007031269620e+00 1.3957000000000000e-01 1 0 0 0 0 P 347 111 -4.8033315693012418e-02 9.4782610868414441e-02 5.3335893232980125e-01 5.6034122981936940e-01 1.3497999999999999e-01 2 0 0 -182 0 V -68 0 0 0 0 0 0 2 0 P 348 211 2.6988867614850781e-01 2.7020789828319441e-01 6.8485558294917466e+00 6.8606157843427731e+00 1.3957000000000000e-01 1 0 0 0 0 P 349 111 3.0834242896548397e-01 -3.1219871612088873e-01 3.1956264105052559e+00 3.2284347364886550e+00 1.3497999999999999e-01 2 0 0 -183 0 V -69 0 0 0 0 0 0 2 0 P 350 -211 1.7859085915613965e-01 6.5655839718730777e-02 1.3631520833531365e+00 1.3834264604644861e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 211 -1.6125801515255367e-01 -1.6987622187766377e-01 3.0063113481983219e+00 3.0186503251314787e+00 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 352 22 1.4485691117100594e+00 2.8499557649017340e+00 5.2191504824118567e+01 5.2289327554858545e+01 0 1 0 0 0 0 P 353 22 4.2062078021463750e-02 5.2006986882233298e-02 3.5793802648322798e-01 3.6413400815463598e-01 0 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 354 -211 5.3159897948975210e-01 1.3704242813515948e+00 1.7252038179896008e+01 1.7315107892571799e+01 1.3957000000000000e-01 1 0 0 0 0 P 355 211 1.4311628620992545e-01 9.9018719179762793e-02 3.8206143398803465e+00 3.8271217248901110e+00 1.3957000000000000e-01 1 0 0 0 0 P 356 111 4.4456943637337970e-01 4.8232868024860093e-01 8.4432236289630058e+00 8.4697418962225122e+00 1.3497999999999999e-01 2 0 0 -184 0 V -72 0 0 0 0 0 0 1 0 P 357 310 2.3433676988977026e-01 7.3276308797406209e-01 2.0907779111290306e+01 2.0927846479277960e+01 4.9767000000000000e-01 2 0 0 -185 0 V -73 0 0 0 0 0 0 1 0 P 358 130 1.8123530522031666e+00 3.0765343102742175e+00 4.5611425230711497e+01 4.5753682627235698e+01 4.9767000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 359 211 -1.7503349044413391e-02 6.1111250553029373e-01 1.1400402163370833e+01 1.1417636100924467e+01 1.3957000000000000e-01 1 0 0 0 0 P 360 111 -3.7226610450741415e-01 5.9006610472936039e-01 4.7558791138433651e+00 4.8086760970569804e+00 1.3497999999999999e-01 2 0 0 -186 0 V -75 0 0 0 0 0 0 3 0 P 361 111 -1.8291733790605386e-01 5.6163799013512469e-02 1.0105030342679810e+00 1.0372796669611644e+00 1.3497999999999999e-01 2 0 0 -187 0 P 362 111 -4.1457600324454436e-01 -1.1425055101355264e-01 2.4118087576664982e+00 2.4535622133603905e+00 1.3497999999999999e-01 2 0 0 -188 0 P 363 111 -3.2110438075384412e-01 6.7284159554381068e-03 2.9899253648987543e+00 3.0101539135043458e+00 1.3497999999999999e-01 2 0 0 -189 0 V -76 0 0 0 0 0 0 2 0 P 364 -211 -8.0930421530022034e-01 -1.5077217987936042e-01 4.3961474675445231e+00 4.4747399817672537e+00 1.3957000000000000e-01 1 0 0 0 0 P 365 111 -9.1350591207909027e-01 5.6653060196754657e-01 6.4373468486064169e+00 6.5278713241019179e+00 1.3497999999999999e-01 2 0 0 -190 0 V -77 0 0 0 0 0 0 2 0 P 366 211 -7.8199357531518576e-02 -6.7986627442478936e-02 2.1762535173722029e+00 2.1831849389834637e+00 1.3957000000000000e-01 1 0 0 0 0 P 367 111 -3.6974695931577878e-01 -4.5770291569333788e-01 1.1441630983120437e+00 1.2936512547423522e+00 1.3497999999999999e-01 2 0 0 -191 0 V -78 0 0 0 0 0 0 3 0 P 368 211 -2.5166859150137771e-01 -2.2555013865811402e-01 8.3431212947465683e-01 9.1091517677856171e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 -211 2.1531634771711175e-02 -1.2852974812270032e-01 2.2535281854471872e-01 2.9537634498123927e-01 1.3957000000000000e-01 1 0 0 0 0 P 370 111 1.4315015639702916e-01 -5.7831622712038559e-02 1.2708623622656201e+00 1.2873022986405926e+00 1.3497999999999999e-01 2 0 0 -192 0 V -79 0 0 0 0 0 0 2 0 P 371 -321 -4.5523396089378977e-02 -1.2201307862967752e+00 1.6760736197746713e+00 2.1315851505781480e+00 4.9359999999999998e-01 1 0 0 0 0 P 372 211 2.1812415771688695e-01 -6.0011764928313456e-02 4.6556571435187732e-01 5.3610705963406824e-01 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 373 311 3.5474472099000304e-01 5.3481941420073106e-02 1.0781337460773490e+00 1.2404644043498843e+00 4.9767000000000000e-01 2 0 0 -193 0 P 374 211 9.5828062578858042e-01 -7.0685036957302175e-02 2.3108186621565228e+00 2.5065236496953842e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 375 -211 -7.1247996601712493e-02 -1.0200223856369503e-01 5.6205429660431472e-01 5.9233905064847236e-01 1.3957000000000000e-01 1 0 0 0 0 P 376 111 8.9124022427530114e-01 -1.4376140720243982e-01 1.0741403711875817e+00 1.4096005168068400e+00 1.3497999999999999e-01 2 0 0 -194 0 V -82 0 7.6522104441461607e-05 -1.1192280293902090e-04 7.6623885543546140e-06 1.3715641700674737e-04 0 2 0 P 377 22 1.6890037555446633e-01 -1.6902081878166877e-01 -2.4911426600423191e-02 2.4024144775482376e-01 0 1 0 0 0 0 P 378 22 3.6747924674711202e-01 -6.1549904257800603e-01 7.8620732018921211e-02 7.2115274921992611e-01 0 1 0 0 0 0 V -83 0 0 0 0 0 0 2 0 P 379 -2112 2.3306604324667035e-01 -1.4826646902611018e-01 8.5587056970413999e-01 1.3006186771447728e+00 9.3957000000000002e-01 1 0 0 0 0 P 380 211 3.8415635024105978e-02 1.0451088750277418e-01 1.6394767223513687e-01 2.4239824824499601e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 381 2112 6.3742182710946194e-01 -8.3060365690590290e-02 1.1138762954057071e+00 1.5927076933294952e+00 9.3957000000000002e-01 1 0 0 0 0 P 382 -211 2.6287087935356107e-01 9.5415871501603015e-03 7.9310597689718154e-01 8.4716528292151538e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 383 211 4.4756365378368002e-01 8.5176920083230051e-02 -2.1233066248471093e-02 4.7696851039180221e-01 1.3957000000000000e-01 1 0 0 0 0 P 384 -211 3.3077028426505350e-01 -5.9207538004238325e-01 -2.6480517933729991e-01 7.4132570743835424e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 385 -211 -4.9727217800851714e-01 1.2766357358565047e-01 2.6723262008137744e-01 5.9537439076395526e-01 1.3957000000000000e-01 1 0 0 0 0 P 386 111 -7.1461546774294143e-02 -3.3806532311764803e-01 -1.9163661535884224e-01 4.1753934917347280e-01 1.3497999999999999e-01 2 0 0 -195 0 V -87 0 3.6260630658025844e-05 -2.9450954401480291e-06 1.7555617597881870e-05 6.1018132013154346e-05 0 2 0 P 387 22 -6.7151168623746389e-03 2.9780830529671693e-02 5.1682103719973491e-02 6.0025248907726057e-02 0 1 0 0 0 0 P 388 22 1.1373765345132880e-01 -3.8473221665219708e-02 1.3295554996615874e-04 1.2006856489145673e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 3 0 P 389 211 8.4999579553677276e-02 -3.4536668131056540e-02 1.8350312023968071e-01 2.4813482223903069e-01 1.3957000000000000e-01 1 0 0 0 0 P 390 -211 2.0994028700402290e-01 -1.8320149295065206e-02 -1.2611697208349690e-01 2.8248155253933754e-01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 4.7944301391657215e-02 1.3618582243894925e-01 -3.0580893042373197e-01 3.6412077199222515e-01 1.3497999999999999e-01 2 0 0 -196 0 V -89 0 0 0 0 0 0 3 0 P 392 111 -3.0118377883030362e-01 -1.8989238629273497e-01 -3.9146497025734611e-01 5.4610915606775479e-01 1.3497999999999999e-01 2 0 0 -197 0 P 393 111 -4.0233935990019726e-01 -3.2078813017492191e-01 -1.9027845537271582e-01 5.6498449179163290e-01 1.3497999999999999e-01 2 0 0 -198 0 P 394 221 -1.0562362126076943e+00 -6.5184494746829813e-01 -1.2020691688501974e+00 1.8125144307188286e+00 5.4744999999999999e-01 2 0 0 -199 0 V -90 0 6.4456398517994667e-05 4.5132475142134277e-05 -5.0274799472149208e-05 1.0138964966691933e-04 0 2 0 P 395 22 4.5299549290087476e-02 5.7039711235627198e-02 1.3073804489057875e-02 7.4003393081310265e-02 0 1 0 0 0 0 P 396 22 1.7492739901495108e-01 9.7163556376825708e-02 -1.8484675362936995e-01 2.7241269049228517e-01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 397 -321 -4.1008684384349869e-01 -2.9945143170185823e-01 -1.3579301996439586e+00 1.5314887418936176e+00 4.9359999999999998e-01 1 0 0 0 0 P 398 211 -1.0910104679296713e+00 -3.5059924618262300e-01 -2.8105866624130300e+00 3.0384372371977606e+00 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 399 321 -1.4767434295534549e+00 -1.0735654215428081e+00 -4.6829458191313265e+00 5.0504392260457163e+00 4.9359999999999998e-01 1 0 0 0 0 P 400 -211 -2.0436475884639671e-01 -4.6908162265227388e-01 -1.8584402841229182e+00 1.9326361783634574e+00 1.3957000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 401 22 -3.8801427709971475e-01 -1.4068871804657617e+00 -4.8856936933196531e+00 5.0990086764718843e+00 0 1 0 0 0 0 P 402 22 -1.1444099952627364e-01 -3.4963341531355344e-02 -9.6448117748566531e-01 9.7187608230048883e-01 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 403 -311 -3.7245859170116347e-01 -8.6081638886829592e-01 -3.9923790021735828e+00 4.1311615538214914e+00 4.9767000000000000e-01 2 0 0 -200 0 P 404 -211 -3.2025092544825834e-01 -4.3774735685791051e-02 -9.9217215729501573e-01 1.0527878501133419e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 405 311 -5.5039389680096351e-01 -7.8591076008151095e-01 -3.5279695070433652e+00 3.6898283748672447e+00 4.9767000000000000e-01 2 0 0 -201 0 P 406 111 -1.4594401119803452e-01 3.7963917407279557e-02 -1.7593497145446253e+00 1.7709522669732614e+00 1.3497999999999999e-01 2 0 0 -202 0 V -96 0 0 0 0 0 0 2 0 P 407 -321 1.2535905209394016e+00 -3.5338018043666430e+00 -2.3095427322844767e+01 2.3403026483161074e+01 4.9359999999999998e-01 1 0 0 0 0 P 408 211 5.7201155725282816e-02 -6.7558753335007576e-02 -7.8822987726696547e-01 8.0537089696908215e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 409 211 1.0422439633062464e+00 -3.5749380208438399e+00 -2.3001151039932882e+01 2.3301048973782891e+01 1.3957000000000000e-01 1 0 0 0 0 P 410 -211 4.3007198655352863e-01 -1.5175062360382334e+00 -1.0626245336825528e+01 1.0743572815099235e+01 1.3957000000000000e-01 1 0 0 0 0 P 411 111 6.7971429674473505e-01 -1.2963633726311679e+00 -8.6102402284615511e+00 8.7348168790946303e+00 1.3497999999999999e-01 2 0 0 -203 0 V -98 0 0 0 0 0 0 3 0 P 412 -211 5.0557564384474118e-01 -1.9850102169126174e-01 -8.0517359638395565e+00 8.0712416147423571e+00 1.3957000000000000e-01 1 0 0 0 0 P 413 211 6.1154330538236812e-01 -4.4306104574927829e-01 -1.2573495283729219e+01 1.2596926281417993e+01 1.3957000000000000e-01 1 0 0 0 0 P 414 111 -4.7672324061763778e-03 -2.2633345019814891e-01 -2.6807785642121789e+00 2.6937043022430882e+00 1.3497999999999999e-01 2 0 0 -204 0 V -99 0 0 0 0 0 0 3 0 P 415 111 9.3988339117858880e-02 -2.0116123106053396e-01 -2.7226675597134502e+00 2.7350389192638405e+00 1.3497999999999999e-01 2 0 0 -205 0 P 416 111 -9.5394567335739838e-02 -7.0545865202835345e-02 -1.2073487220423629e+00 1.2206503920417657e+00 1.3497999999999999e-01 2 0 0 -206 0 P 417 111 2.8354381716461922e-02 -2.9825536287158960e-01 -1.9996653629492143e+00 2.0264849855409732e+00 1.3497999999999999e-01 2 0 0 -207 0 V -100 0 0 0 0 0 0 3 0 P 418 211 -6.5582432342888658e-02 4.7486878886660248e-02 -1.2881560463787463e+00 1.2982225709871664e+00 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 -1.0622775949921157e-01 -3.2368881250209786e-01 -3.8717590990852346e+00 3.8892231988504529e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 111 1.5529804308644604e-01 -5.2436764815133574e-01 -8.0734318357729862e+00 8.0930587616726850e+00 1.3497999999999999e-01 2 0 0 -208 0 V -101 0 0 0 0 0 0 2 0 P 421 321 -3.2518997316883846e-01 -8.1548500847951233e-02 -2.2449995690747858e+01 2.2457923905633788e+01 4.9359999999999998e-01 1 0 0 0 0 P 422 111 -1.9046237867484708e-01 6.6105033770121557e-02 -2.1344246130994433e+00 2.1481698774968749e+00 1.3497999999999999e-01 2 0 0 -209 0 V -102 0 -2.2106207542966716e-04 -8.4241435769049475e-05 -5.6274474666985017e-03 5.6324328016070357e-03 0 2 0 P 423 22 -1.2428421853435387e+00 -5.4371162528350603e-01 -3.2571979529372641e+01 3.2600216709264501e+01 0 1 0 0 0 0 P 424 22 -1.0510140538087422e+00 -3.3042177212712570e-01 -2.5821372007286694e+01 2.5844865281666454e+01 0 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 425 22 -2.8527328309065036e-01 3.4904804863274831e-02 -1.1327883501123122e+01 1.1331528749752406e+01 0 1 0 0 0 0 P 426 113 -1.0025274259056336e+00 -6.9232103874740936e-01 -3.6732317410341558e+01 3.6759951439290070e+01 7.3926843872659787e-01 2 0 0 -210 0 V -104 0 0 0 0 0 0 2 0 P 427 -321 -1.5183458923637227e+00 -2.8310302890793942e-01 -3.1344013249013752e+01 3.1385925652881170e+01 4.9359999999999998e-01 1 0 0 0 0 P 428 211 -7.8018035608146274e-01 2.8009747601971335e-01 -1.7932038246396413e+01 1.7951730040283351e+01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 -1.2093373776939899e+02 -4.2212624607176046e+01 -4.3970197772585425e+03 4.3993016474450296e+03 0 2 0 P 429 -2112 -1.6905977387024078e+00 -5.9748930457731242e-01 -6.1166017688691909e+01 6.1199506745246417e+01 9.3957000000000002e-01 1 0 0 0 0 P 430 111 -5.3803720915856690e-01 -1.8042868733886699e-01 -1.9864736200020602e+01 1.9873298730871603e+01 1.3497999999999999e-01 2 0 0 -211 0 V -106 0 0 0 0 0 0 2 0 P 431 -211 -5.6735946801750869e-01 7.7615269325611779e-03 -3.4581308963682325e+01 3.4586245335881792e+01 1.3957000000000000e-01 1 0 0 0 0 P 432 111 -5.6123498331217725e-01 6.0621535904942694e-02 -1.0607738828133137e+01 1.0623605900229558e+01 1.3497999999999999e-01 2 0 0 -212 0 V -107 0 0 0 0 0 0 2 0 P 433 2212 -6.7275224882717377e-01 -5.1519625884664584e-02 -2.1603611387926815e+01 2.1634500813598969e+01 9.3827000000000005e-01 1 0 0 0 0 P 434 211 -2.5446874928482249e-01 1.4269746875483011e-01 -6.8322863520070731e+00 6.8399366585278942e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 435 -211 2.8403646037499695e-02 7.5344341300143003e-02 -1.0528029605556289e+02 1.0528041936119340e+02 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -1.2473261503455506e-01 3.8577203390474069e-01 -1.8792621522393649e+01 1.8797479128109952e+01 1.3497999999999999e-01 2 0 0 -213 0 V -109 0 0 0 0 0 0 3 0 P 437 211 -4.0432388012940601e-01 -5.3229191362264283e-01 -1.1520989819592039e+02 1.1521192184223207e+02 1.3957000000000000e-01 1 0 0 0 0 P 438 -211 -5.6012339781128573e-02 -2.2447942843993568e-01 -4.9951319032700738e+01 4.9952049820678546e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 111 -4.4795210946918199e-02 -3.7450025121794889e-01 -6.8424051281580418e+01 6.8425223934115351e+01 1.3497999999999999e-01 2 0 0 -214 0 V -110 0 0 0 0 0 0 2 0 P 440 -311 -3.9810484736228319e-01 7.7164035975740619e-02 -3.0210095202391483e+02 3.0210163410836185e+02 4.9767000000000000e-01 2 0 0 -215 0 P 441 111 -3.2287600848881320e-01 4.4159009133659305e-01 -9.7069561395625229e+01 9.7071196654131555e+01 1.3497999999999999e-01 2 0 0 -216 0 V -111 0 0 0 0 0 0 2 0 P 442 321 7.0010615948778154e-01 2.1857740635567779e-01 -1.9137582996371225e+02 1.9137787191829892e+02 4.9359999999999998e-01 1 0 0 0 0 P 443 -211 5.1105006306458312e-01 -1.7847866521967312e-01 -2.2828172424242061e+02 2.2828240871709403e+02 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 444 -2112 4.9823667204826461e-01 6.2703656291803045e-01 -2.0713655743427427e+02 2.0714023663243196e+02 9.3957000000000002e-01 1 0 0 0 0 P 445 111 4.3290829827267568e-01 8.7833009075621110e-02 -1.1764529811549767e+02 1.1764620483686210e+02 1.3497999999999999e-01 2 0 0 -217 0 V -113 0 0 0 0 0 0 2 0 P 446 -211 3.2092380530664766e-01 3.3925511264883318e-01 -1.3440994826344931e+02 1.3441083199686062e+02 1.3957000000000000e-01 1 0 0 0 0 P 447 211 5.9997049606418706e-01 -4.5967401883207200e-02 -4.9567469314759315e+01 4.9571318034249295e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 448 2112 2.8833983354950097e+00 1.6549872878910894e+00 -3.7399306491986539e+02 3.7400902177464081e+02 9.3957000000000002e-01 1 0 0 0 0 P 449 -211 5.3323034523895574e-01 3.9775059850438943e-01 -1.0557632563198953e+02 1.0557851369420051e+02 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 450 -211 1.6112317901829065e+00 -2.6449815688832912e-02 -1.9865841679000314e+02 1.9866500146923198e+02 1.3957000000000000e-01 1 0 0 0 0 P 451 111 -4.9561423603840603e-02 -1.7183838688256459e-01 -5.2625947932268218e+01 5.2626424922619641e+01 1.3497999999999999e-01 2 0 0 -218 0 V -116 0 0 0 0 0 0 2 0 P 452 211 1.6887432927097784e-01 2.3821100156267627e-01 -9.6362537421754055e+00 9.6416870405983275e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 111 1.4632419220241042e+00 8.3355091915660640e-01 -1.0651126702421094e+02 1.0652466431188769e+02 1.3497999999999999e-01 2 0 0 -219 0 V -117 0 0 0 0 0 0 2 0 P 454 -211 1.2746639271907478e-01 2.5469661244143956e-02 -1.5230282454637596e+01 1.5231476613180302e+01 1.3957000000000000e-01 1 0 0 0 0 P 455 111 6.6101667102142103e-01 3.2414973935337549e-01 -1.3031970742802230e+01 1.3053447710645047e+01 1.3497999999999999e-01 2 0 0 -220 0 V -118 0 0 0 0 0 0 2 0 P 456 -321 5.0580706266958331e-01 -2.6458819169584818e-01 -1.4035012160409037e+01 1.4055285660514370e+01 4.9359999999999998e-01 1 0 0 0 0 P 457 211 4.5217154592857661e-01 1.8329276752259169e-01 -5.1043055681450165e+00 5.1294707781085709e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 458 321 8.4436055974823909e-01 2.4003057174851558e-01 -6.9039225692884500e+01 6.9046570404787488e+01 4.9359999999999998e-01 1 0 0 0 0 P 459 -211 5.8292913983631900e-01 2.3279015768517843e-02 -2.1196173938453224e+01 2.1204660282794183e+01 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 460 211 1.4830264356856981e+00 2.5142088604200263e-01 -2.4422080689387485e+01 2.4468757321423862e+01 1.3957000000000000e-01 1 0 0 0 0 P 461 -211 7.4338252180904252e-01 2.5244334453220091e-01 -2.6965100413066910e+01 2.6976887613058906e+01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 462 211 -2.8393263055640150e-01 9.8311388770647923e-01 -1.0931194047459767e+01 1.0979873120533583e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -2.3756381739427720e-01 5.9776507923148492e-01 -2.7769134165891463e+00 2.8536340656987487e+00 1.3497999999999999e-01 2 0 0 -221 0 V -122 0 0 0 0 0 0 2 0 P 464 211 -1.9159094035018920e-01 1.0347712180634956e+00 -8.8582082559611255e+00 8.9215913296359144e+00 1.3957000000000000e-01 1 0 0 0 0 P 465 111 -1.8768937777394942e-01 4.5159601341444905e-01 -1.3335689239742783e+00 1.4268118086317165e+00 1.3497999999999999e-01 2 0 0 -222 0 V -123 0 0 0 0 0 0 2 0 P 466 -2112 -4.9860522381185479e-01 4.9081635738369600e-01 -2.5013100608726591e+00 2.7620375941342030e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 111 -1.5423741913911757e-01 3.8038727267072497e-02 -7.2079472859521465e-01 7.5033377066838980e-01 1.3497999999999999e-01 2 0 0 -223 0 V -124 0 0 0 0 0 0 2 0 P 468 -211 6.5831482948496411e-01 3.8151972932407829e-01 -8.4158545125335160e-01 1.1431017344246499e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 111 -1.2425721854431374e-01 5.8969803030764004e-02 -4.0383595856514404e-01 4.4745991536682389e-01 1.3497999999999999e-01 2 0 0 -224 0 V -125 0 0 0 0 0 0 2 0 P 470 211 -1.6631592612851620e-01 6.2375365755122458e-01 -2.6014213440184144e+00 2.6839527578940525e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 -1.1013546473222913e-01 1.0571017247918485e-01 -8.9173210221291599e-02 2.2243183894967411e-01 1.3497999999999999e-01 2 0 0 -225 0 V -126 0 -2.0255855960282662e-05 -1.1827740636935799e-05 -6.1486747066022722e-04 6.1535011170204027e-04 0 2 0 P 472 22 -2.3593233612392939e-01 -1.4034497911727462e-01 -5.4423571321213560e+00 5.4492762761622320e+00 0 1 0 0 0 0 P 473 22 -1.7833847242564518e-01 -1.0155482934234668e-01 -7.1328529562944594e+00 7.1358047401977363e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 474 -311 8.3334727907163375e-01 -5.3139889008188479e-01 -5.7733373171296748e+01 5.7743977223889104e+01 4.9767000000000000e-01 2 0 0 -226 0 P 475 -211 2.2001561474226644e-01 -1.8620513558942831e-01 -7.0202644435800572e+00 7.0275651449093450e+00 1.3957000000000000e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 1 0 P 476 130 -1.4607749518665167e-01 1.8455093679712362e-01 -5.0882029567111580e+01 5.0885007673972005e+01 4.9767000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 477 -211 1.6493139197556914e-01 -1.2155590580391712e-01 -2.2259584264666369e+01 2.2260964705577731e+01 1.3957000000000000e-01 1 0 0 0 0 P 478 111 1.0458294437356765e+00 -9.1838766871786166e-03 -2.7500818008142947e+01 2.7521029310081680e+01 1.3497999999999999e-01 2 0 0 -227 0 V -130 0 0 0 0 0 0 3 0 P 479 -211 -9.0526445671393244e-02 2.4564716681248225e-01 -6.3567258987926989e+00 6.3636453000784652e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 211 1.3799658817153099e-01 -1.0434736174922245e-01 -1.1105060140539816e+01 1.1107284633975903e+01 1.3957000000000000e-01 1 0 0 0 0 P 481 111 -4.8976192577463273e-02 1.6558124910486113e-01 -1.6351055881311503e+01 1.6352524693504243e+01 1.3497999999999999e-01 2 0 0 -228 0 V -131 0 0 0 0 0 0 2 0 P 482 -211 -2.7635998164023084e-03 -1.3398876613154781e-01 -6.3418235733034125e+00 6.3447747514581057e+00 1.3957000000000000e-01 1 0 0 0 0 P 483 111 -6.9778585194384679e-01 6.7087730032272308e-01 -3.0047884542351539e+01 3.0063774987817979e+01 1.3497999999999999e-01 2 0 0 -229 0 V -132 0 0 0 0 0 0 2 0 P 484 -3122 2.7956115607507254e-01 -4.7388671247052228e-01 2.8563798078275891e+01 2.8590873116698617e+01 1.1156800000000000e+00 2 0 0 -230 0 P 485 22 7.6764040436973408e-02 2.2306316085411008e-02 1.7329503916339377e+00 1.7347931719676928e+00 0 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 486 2212 5.4264361248937809e-01 1.0476672712383583e+00 3.2151769779934050e+01 3.2187089327495585e+01 9.3827000000000005e-01 1 0 0 0 0 P 487 111 2.9402155345383663e-01 1.9616817937701350e-01 3.9739243326293869e+00 3.9918948921983679e+00 1.3497999999999999e-01 2 0 0 -231 0 V -134 0 0 0 0 0 0 2 0 P 488 -211 2.0033852721179466e+00 1.5438571329522133e+00 3.4900536794600534e+01 3.4992341958372435e+01 1.3957000000000000e-01 1 0 0 0 0 P 489 111 5.4612798811484720e-01 7.9623914206338076e-02 8.4613368041459616e+00 8.4803912563460724e+00 1.3497999999999999e-01 2 0 0 -232 0 V -135 0 0 0 0 0 0 3 0 P 490 211 -6.3860770628867733e-02 -7.1987107509985816e-03 8.5699358311501275e+00 8.5713131989440576e+00 1.3957000000000000e-01 1 0 0 0 0 P 491 -211 3.8981553632351268e-01 3.6557719625377749e-01 1.0612776735151387e+01 1.0627140379888209e+01 1.3957000000000000e-01 1 0 0 0 0 P 492 111 2.7830966562507584e-02 2.1113469261442855e-01 6.3503681860680699e+00 6.3553715957566679e+00 1.3497999999999999e-01 2 0 0 -233 0 V -136 0 0 0 0 0 0 2 0 P 493 -311 2.2042764751797975e-01 5.0191353432858143e-01 2.3100848737086196e+01 2.3112710644716024e+01 4.9767000000000000e-01 2 0 0 -234 0 P 494 111 3.6131312339699545e-01 1.1251578117483032e+00 2.8852896680391311e+01 2.8877402821656471e+01 1.3497999999999999e-01 2 0 0 -235 0 V -137 0 0 0 0 0 0 2 0 P 495 -211 5.8655067690923046e-01 4.2687932574664472e-01 4.7701009230449962e+01 4.7706729389507565e+01 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1766588094992448e-01 1.4827941115860570e+00 8.3916524406666682e+01 8.3930014565161187e+01 1.3497999999999999e-01 2 0 0 -236 0 V -138 0 -2.9192315772369254e-04 4.2739147389766372e-05 2.4328250047456954e-02 2.4330161618904316e-02 0 2 0 P 497 22 -3.7732735771387399e-01 1.0694904084952572e-01 3.3674502342361308e+01 3.3676786100189474e+01 0 1 0 0 0 0 P 498 22 -1.3272398837809757e-01 -3.2274733312723257e-02 8.8320832314778723e+00 8.8331393922689809e+00 0 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 499 -211 -3.1678791061555645e-01 -4.7599902574286722e-02 3.3626003612015055e+01 3.3627819123921590e+01 1.3957000000000000e-01 1 0 0 0 0 P 500 111 3.9582917194537620e-01 1.0629333436641059e-01 4.5739326486271949e+01 4.5741361873303163e+01 1.3497999999999999e-01 2 0 0 -237 0 V -140 0 0 0 0 0 0 2 0 P 501 211 -2.9436767690549187e-01 1.2742595577134855e-01 6.9546429907471135e+00 6.9634351161663686e+00 1.3957000000000000e-01 1 0 0 0 0 P 502 111 -2.8011650382532710e-01 -3.5130054583768411e-01 3.0979335812382413e+01 3.0982887927144247e+01 1.3497999999999999e-01 2 0 0 -238 0 V -141 0 1.0950335315369104e-05 -6.5012938433162395e-06 7.8701186759303236e-04 7.8712735526785212e-04 0 2 0 P 503 22 7.4389817526676602e-02 -5.3877846920716579e-02 9.7157149975673232e+00 9.7161491642159898e+00 0 1 0 0 0 0 P 504 22 2.5932876946950273e-01 -1.4425330911734163e-01 1.4268983264023593e+01 1.4272068659337764e+01 0 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 505 -2212 -4.9935222724437056e-01 1.7219842196673388e-01 6.3440239238081396e+01 6.3449375963214045e+01 9.3827000000000005e-01 1 0 0 0 0 P 506 111 -1.9070242371354384e-01 2.3695803852118191e-01 1.3771985962177359e+01 1.3776005715345804e+01 1.3497999999999999e-01 2 0 0 -239 0 V -143 0 0 0 0 0 0 2 0 P 507 2212 -5.7423178060969515e-01 -3.0044544520400762e-01 4.1496962878523114e+01 4.1512628058674281e+01 9.3827000000000005e-01 1 0 0 0 0 P 508 111 -4.2936510649790804e-01 -2.4706522856008098e-01 3.4356529608114073e+01 3.4360365858579861e+01 1.3497999999999999e-01 2 0 0 -240 0 V -144 0 0 0 0 0 0 2 0 P 509 -311 3.2266235267685281e-02 5.6429581359261002e-02 1.6193734136772463e+01 1.6201509995335634e+01 4.9767000000000000e-01 2 0 0 -241 0 P 510 111 -3.9602207052334237e-01 -1.8119882659869604e-01 1.8815157171525200e+01 1.8820680792274718e+01 1.3497999999999999e-01 2 0 0 -242 0 V -145 0 1.1476984667324333e+00 3.2536678803012975e-01 1.3556403848526732e+00 1.8074273384198813e+00 0 2 0 P 511 22 3.7824231100828509e-01 1.0537817023547469e-01 4.6222971960318382e-01 6.0648834966840293e-01 0 1 0 0 0 0 P 512 22 1.4780307854081640e+00 6.6352355428864107e-01 1.7173364389756443e+00 2.3609495874210560e+00 0 1 0 0 0 0 V -146 0 4.2563669105221166e-05 5.5173606618698146e-05 -1.4804764628800699e-02 1.4804994096937750e-02 0 2 0 P 513 22 6.1219268398262326e-02 1.1081753793442319e-01 -3.6961418169331004e+01 3.6961634993783612e+01 0 1 0 0 0 0 P 514 22 6.9263390686583201e-02 5.8321990077410311e-02 -8.4238856942923732e+00 8.4243723245307542e+00 0 1 0 0 0 0 V -147 0 1.5503701289216147e-04 -1.4442755512518920e-04 -2.6218583266215626e-02 2.6219488498006340e-02 0 2 0 P 515 22 1.9252494760720931e-01 -2.7042905528874234e-01 -3.9529727017595917e+01 3.9531120851995176e+01 0 1 0 0 0 0 P 516 22 2.2004775433206022e-01 -1.1391056491491010e-01 -3.0241171797942346e+01 3.0242186897505427e+01 0 1 0 0 0 0 V -148 0 -3.9295523968909787e-05 -3.6261913611429962e-05 -1.7090014369715151e-02 1.7090118134445463e-02 0 2 0 P 517 22 2.0080590901807711e-02 -1.8405569121642477e-02 -6.5396675326581004e+00 6.5397242627505436e+00 0 1 0 0 0 0 P 518 22 -2.2235262528682637e-01 -1.6825108527698401e-01 -8.1430452854755387e+01 8.1430930249188535e+01 0 1 0 0 0 0 V -149 0 7.0546639706919403e-06 -5.9970037248860539e-06 -7.9056183581885462e-06 5.5002778840871055e-05 0 2 0 P 519 22 1.8041986423752050e-02 -7.3936722843815583e-02 -2.2940983742995004e-02 7.9488621790130512e-02 0 1 0 0 0 0 P 520 22 -2.8904995220603471e-04 5.8845369578823060e-02 3.0466356827225528e-03 5.8924893378998824e-02 0 1 0 0 0 0 V -150 0 3.0748332258241703e-05 2.0190577273557927e-05 9.5547314245615327e-06 5.9317967960298823e-05 0 2 0 P 521 22 3.6000620270201108e-03 -4.0326125379631067e-02 6.5708538066113495e-03 4.1016252321244243e-02 0 1 0 0 0 0 P 522 22 8.7530641543303547e-02 1.0016616798672685e-01 2.1747085190304011e-02 1.3478801924652581e-01 0 1 0 0 0 0 V -151 0 0 0 0 0 0 3 0 P 523 111 6.2255032917751890e-02 1.6409031586782782e-01 -5.4030820736506509e-02 2.2790403874142814e-01 1.3497999999999999e-01 2 0 0 -243 0 P 524 111 -5.0996297962949660e-02 4.0534197798294319e-01 1.8368031016613529e-01 4.6782560667814926e-01 1.3497999999999999e-01 2 0 0 -244 0 P 525 111 1.2874781336954016e-01 2.5526271714665910e-01 6.3593494643987475e-02 3.2248842951890244e-01 1.3497999999999999e-01 2 0 0 -245 0 V -152 0 9.4228593646831786e-05 2.0718996508443978e-04 2.1154809427216656e-04 3.1190841909881713e-04 0 2 0 P 526 22 4.2442973077413521e-01 1.0018680592414795e+00 9.9694536317386240e-01 1.4757304163183593e+00 0 1 0 0 0 0 P 527 22 4.7110610584345056e-02 3.4955510768930317e-02 6.1687231521424822e-02 8.5127033870119537e-02 0 1 0 0 0 0 V -153 0 0 0 0 0 0 1 0 P 528 130 -6.7201325019983693e-01 -8.5246843519300231e-01 -5.7877013473237349e-01 1.3270096228749377e+00 4.9767000000000000e-01 1 0 0 0 0 V -154 0 -9.1221702695200718e-02 2.6354771424748230e-01 -4.8277810534562421e-01 7.1488991226555465e-01 0 2 0 P 529 111 -6.9467420688161599e-02 1.0214383969364695e-03 1.7947439634296698e-02 1.5286751408618993e-01 1.3497999999999999e-01 2 0 0 -246 0 P 530 111 -3.1991985541909157e-02 2.9210392334056934e-01 -5.5490715932852919e-01 6.4225364541116048e-01 1.3497999999999999e-01 2 0 0 -247 0 V -155 0 -3.6371165873930552e-05 -3.5633311035372875e-05 -1.5108070594153019e-04 1.6137536000774001e-04 0 2 0 P 531 22 -9.7611975992897712e-02 -1.7494936230865646e-01 -6.1751874090838255e-01 6.4920318283455580e-01 0 1 0 0 0 0 P 532 22 -9.8915386416994933e-02 -1.7591087342768548e-02 -1.9882827289452790e-01 2.2276979626095006e-01 0 1 0 0 0 0 V -156 0 -2.0039706184528273e-06 -7.1173826072272868e-06 -2.6230631063156929e-05 2.7298976051277465e-05 0 2 0 P 533 22 -8.1042820888982334e-02 -4.8358992393795619e-01 -1.7768988606699829e+00 1.8433113449448106e+00 0 1 0 0 0 0 P 534 22 -8.9521076610107053e-02 -1.2219167101285459e-01 -4.5566813746639440e-01 4.8018567151096808e-01 0 1 0 0 0 0 V -157 0 -3.7820492534652568e-06 -1.5792712332347280e-05 -5.2246228242207687e-05 5.4846651370756320e-05 0 2 0 P 535 22 -7.2187094907400537e-02 -3.7687037033898979e-01 -1.0156306558049408e+00 1.0857015619963857e+00 0 1 0 0 0 0 P 536 22 -6.0631894878434442e-02 -1.7774221066819521e-01 -8.1916598225897230e-01 8.4041741213522803e-01 0 1 0 0 0 0 V -158 0 -1.1692924645754404e-05 -4.2049421779400797e-05 -6.1317946898897842e-05 7.5443096961946775e-05 0 2 0 P 537 22 -1.9804387779544985e-01 -8.9606751152686714e-01 -1.2446575563136164e+00 1.5463928334141992e+00 0 1 0 0 0 0 P 538 22 -1.0631204794123653e-01 -1.9843972939756202e-01 -3.5139142698870995e-01 4.1732063536566144e-01 0 1 0 0 0 0 V -159 0 -1.1938396841486492e+02 1.6552760540729017e+02 -1.4204892352656569e+04 1.4206496794666617e+04 0 2 0 P 539 211 -5.2733537427409838e-01 7.9172120336114216e-01 -7.8538693942431408e+01 7.8544578622770800e+01 1.3957000000000000e-01 1 0 0 0 0 P 540 -211 -4.2010690799936190e-01 5.2192127584812309e-01 -3.4192653563805628e+01 3.4199501884554714e+01 1.3957000000000000e-01 1 0 0 0 0 V -160 0 -1.0789378199494302e-04 3.2424873450938455e-05 1.7918131535805220e-02 1.7918604915738698e-02 0 2 0 P 541 22 -3.3767741899957952e-02 3.0702409269425694e-02 1.6766682082961328e+01 1.6766744197053416e+01 0 1 0 0 0 0 P 542 22 -1.8905150067439497e-01 3.6260539005443224e-02 2.0237345612933833e+01 2.0238261109935518e+01 0 1 0 0 0 0 V -161 0 -1.3584939920726816e-04 4.8263467304596239e-05 1.0159182967721878e-02 1.0160514641375766e-02 0 2 0 P 543 22 -2.4721224489504826e-01 8.6359273763358363e-02 1.5660782593115499e+01 1.5662971724644734e+01 0 1 0 0 0 0 P 544 22 1.5724640187658550e-02 -4.1182443115574527e-03 1.6504822686007761e+00 1.6505623112172427e+00 0 1 0 0 0 0 V -162 0 -7.6550750269806559e-05 7.0593386073671696e-05 7.9144406739333727e-03 7.9152228829812866e-03 0 2 0 P 545 22 -6.1566251765975633e-02 -4.5409512568712704e-03 5.4836441489026893e+00 5.4839916279467040e+00 0 1 0 0 0 0 P 546 22 -2.0185280217944920e-01 2.4746009847345046e-01 2.1750765278656122e+01 2.1753109461897097e+01 0 1 0 0 0 0 V -163 0 8.6635548659457439e-05 -7.5392254089411620e-05 3.3693493581382762e-03 3.3718799189966140e-03 0 2 0 P 547 22 1.0086136714298677e-01 -1.6658407774089570e-01 4.6885126089067315e+00 4.6925551413080013e+00 0 1 0 0 0 0 P 548 22 8.7132994753010964e-02 2.9870448975808173e-03 2.6227896496811876e+00 2.6242382947603327e+00 0 1 0 0 0 0 V -164 0 -4.3008260029558980e-05 -6.0469121582481021e-05 1.5621874321166871e-03 1.5648833891634252e-03 0 2 0 P 549 22 -5.0225283819216184e-02 -1.4795507364349769e-02 2.1097484404304683e+00 2.1103980591517999e+00 0 1 0 0 0 0 P 550 22 -5.7128168103935936e-02 -1.3614221790466952e-01 1.7896470076399504e+00 1.7957268007805487e+00 0 1 0 0 0 0 V -165 0 3.0026184824327506e-06 -5.1687244740604283e-05 1.9307515581112032e-03 1.9325433074953225e-03 0 2 0 P 551 22 1.1741258336762029e-02 1.6307605553805074e-02 1.8869734868283454e+00 1.8870804792428315e+00 0 1 0 0 0 0 P 552 22 -5.5180918739997616e-03 -1.2343354576373253e-01 2.1146632228173794e+00 2.1182697740123011e+00 0 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 553 22 -1.1930271414511169e-01 -2.1909771250382368e-01 4.2647530106108462e+00 4.2720434439201433e+00 0 1 0 0 0 0 P 554 22 9.4639559546547791e-02 1.8354288978583053e-01 9.8881299872338735e-01 1.0101464176377779e+00 0 1 0 0 0 0 V -167 0 2.3216327977847679e-05 -5.5319208685356244e-05 8.8766295490384794e-04 8.9003259639821740e-04 0 2 0 P 555 22 5.4332430779509007e-02 -2.1616731610959361e-01 2.3919595260699085e+00 2.4023219384472627e+00 0 1 0 0 0 0 P 556 22 7.2208369317082452e-02 -8.5350517995550435e-02 2.4462552267891651e+00 2.4488085662449910e+00 0 1 0 0 0 0 V -168 0 2.0446103479698697e-05 -7.6326264614087871e-05 2.9795125954972722e-04 3.1095117411774904e-04 0 2 0 P 557 22 6.0145863134166179e-02 -2.5731969007890598e-02 2.7325610411886048e-01 2.8097785948254789e-01 0 1 0 0 0 0 P 558 22 7.3488754954867406e-03 -2.2622906042838925e-01 7.1031234977517543e-01 7.4550468006343951e-01 0 1 0 0 0 0 V -169 0 0 0 0 0 0 3 0 P 559 111 1.3910452332215247e-02 8.0537370773268807e-02 1.0357662241692480e+00 1.0477170611882669e+00 1.3497999999999999e-01 2 0 0 -248 0 P 560 111 1.6923745412326222e-01 -5.0303103912032736e-02 1.8461107813124027e+00 1.8594397907486002e+00 1.3497999999999999e-01 2 0 0 -249 0 P 561 111 2.3228441319731416e-01 2.1895342352296310e-01 3.0182380923855248e+00 3.0380713344182455e+00 1.3497999999999999e-01 2 0 0 -250 0 V -170 0 3.5657963685508428e-05 3.7330800328297853e-05 1.5702079622725940e-05 6.1021077551844657e-05 0 2 0 P 562 22 1.1047810441689238e-01 1.7442864849248421e-01 9.4689400235785690e-02 2.2714939464475178e-01 0 1 0 0 0 0 P 563 22 5.8435505063373840e-02 2.4092742743325618e-03 -2.0307840794715280e-02 6.1910590792561913e-02 0 1 0 0 0 0 V -171 0 -9.9555355907948951e-05 -4.5921561181149111e-06 7.6454679259227627e-04 7.7531650433665335e-04 0 2 0 P 564 22 -9.1602736859070860e-02 -9.9077361921014219e-03 2.7301502373354397e-01 2.8814306831980535e-01 0 1 0 0 0 0 P 565 22 -7.3165453707392039e-02 2.3075297794990387e-03 9.9234122425475635e-01 9.9503749359776406e-01 0 1 0 0 0 0 V -172 0 1.0169900308060380e-05 -2.6877454628216182e-06 1.7278865569341054e-04 1.7315444266008761e-04 0 2 0 P 566 22 4.8653894524531380e-02 -4.9715758950278646e-02 6.2411976719455475e-01 6.2798434848600471e-01 0 1 0 0 0 0 P 567 22 2.9570838999659288e-01 -4.1293802574623159e-02 5.2266648434232374e+00 5.2351861490802705e+00 0 1 0 0 0 0 V -173 0 0 0 0 0 0 1 0 P 568 130 1.0629377644747397e-01 -2.9591574508350899e-01 5.4422306574526010e+02 5.4422338412557554e+02 4.9767000000000000e-01 1 0 0 0 0 V -174 0 -1.0511062051305847e-05 -2.1605867260771177e-05 3.9790549391901311e-02 3.9790557021866464e-02 0 2 0 P 569 22 -9.0932703726390424e-02 -7.9750699558445978e-02 2.4155936699647245e+02 2.4155939727666805e+02 0 1 0 0 0 0 P 570 22 -1.6851096599097659e-01 -4.5354512366090100e-01 7.4058745165183802e+02 7.4058760970143726e+02 0 1 0 0 0 0 V -175 0 6.1884770057883793e+00 5.1372248728800001e+00 7.9050199426512436e+03 7.9050546710910203e+03 0 2 0 P 571 111 -1.0949001169250466e-01 2.2886161080570750e-02 3.1889191270588057e+01 3.1889673114216443e+01 1.3497999999999999e-01 2 0 0 -251 0 P 572 111 2.4942819221175289e-01 9.3280369223514986e-02 1.4686466152845955e+02 1.4686496498865799e+02 1.3497999999999999e-01 2 0 0 -252 0 V -176 0 3.2690634264215944e+01 1.0219192246799956e+01 8.6357857286716171e+03 8.6358784382631002e+03 0 2 0 P 573 -211 1.5452673738953063e-01 2.2027114897941008e-01 5.1977065739619114e+01 5.1977949561109355e+01 1.3957000000000000e-01 1 0 0 0 0 P 574 211 6.3174411246220785e-01 2.5519523289224518e-02 1.5572972052646253e+02 1.5573106654391322e+02 1.3957000000000000e-01 1 0 0 0 0 V -177 0 -4.8066573241970741e-05 -1.1855458657076322e-05 4.2790830390632339e-03 4.2794353812081872e-03 0 2 0 P 575 22 -2.0995832940894277e-01 -9.8160056204155771e-02 2.0854589522911766e+01 2.0855877398610289e+01 0 1 0 0 0 0 P 576 22 -6.3096637730220562e-02 3.0811966758889569e-02 3.4538809964078432e+00 3.4545946940756518e+00 0 1 0 0 0 0 V -178 0 -3.5380830777759680e-05 4.0587077834447556e-05 1.5087877202486684e-03 1.5101583876191509e-03 0 2 0 P 577 22 -1.4118429718772837e-01 8.4749207696194095e-02 4.7296981352935452e+00 4.7325637750564713e+00 0 1 0 0 0 0 P 578 22 5.5008443152436875e-03 7.0899903461586283e-02 1.0564160693403621e+00 1.0588068601778056e+00 0 1 0 0 0 0 V -179 0 -7.9995579023729797e-05 -1.4549592735900154e-04 1.9331284287711649e-03 1.9404695477916018e-03 0 2 0 P 579 22 -1.6132218448083224e-02 -1.3314353811036725e-02 6.1684065860458348e-01 6.1719520299269859e-01 0 1 0 0 0 0 P 580 22 -3.5032979246974305e-01 -6.5320660610997694e-01 8.2388753698993735e+00 8.2721506994548974e+00 0 1 0 0 0 0 V -180 0 -1.3462220643240815e-04 -1.7318524185746276e-04 3.8059476655422416e-03 3.8123153779086216e-03 0 2 0 P 581 22 -2.8784480562779979e-01 -3.0586268595047850e-01 8.0983191380799902e+00 8.1092033811575099e+00 0 1 0 0 0 0 P 582 22 -6.2686818086303919e-01 -8.7087326269938825e-01 1.7761825691175318e+01 1.7794207929535915e+01 0 1 0 0 0 0 V -181 0 -4.5460587445688165e-05 -2.6237311958252481e-04 2.4227622246637335e-03 2.4375589758178083e-03 0 2 0 P 583 22 -1.9161770333402817e-01 -7.4370618842503688e-01 7.0570738291972352e+00 7.0987398367367458e+00 0 1 0 0 0 0 P 584 22 -1.4036122069577156e-03 -3.7030503646103258e-01 3.2297433485679066e+00 3.2509029342283156e+00 0 1 0 0 0 0 V -182 0 -3.5986914147597457e-06 7.1011830659505545e-06 3.9959644323281667e-05 4.1981177938549607e-05 0 2 0 P 585 22 -6.9109595840060774e-03 1.3315943303730433e-02 -3.8076090592587507e-03 1.5478165110505683e-02 0 1 0 0 0 0 P 586 22 -4.1122356109006337e-02 8.1466667564684014e-02 5.3716654138905995e-01 5.4486306470886348e-01 0 1 0 0 0 0 V -183 0 9.1318440711550840e-05 -9.2460515550712736e-05 9.4641409514438469e-04 9.5613058204244833e-04 0 2 0 P 587 22 3.0316380286686595e-01 -2.7951325278293604e-01 3.0986628193457504e+00 3.1259794013789906e+00 0 1 0 0 0 0 P 588 22 5.1786260986180334e-03 -3.2685463337952719e-02 9.6963591159505536e-02 1.0245533510966461e-01 0 1 0 0 0 0 V -184 0 1.1037504251656458e-04 1.1974968190275165e-04 2.0962330983116968e-03 2.1028168952099062e-03 0 2 0 P 589 22 8.6039384301250063e-02 1.5959263158079834e-01 2.8460272113701954e+00 2.8517965340405045e+00 0 1 0 0 0 0 P 590 22 3.5853005207212962e-01 3.2273604866780259e-01 5.5971964175928104e+00 5.6179453621820095e+00 0 1 0 0 0 0 V -185 0 9.7819233231914851e+01 3.0587740643514758e+02 8.7275373907846297e+03 8.7359141152332013e+03 0 2 0 P 591 111 -4.3042274781332338e-02 2.7656087575178439e-02 2.7988192168800721e+00 2.8025392246631444e+00 1.3497999999999999e-01 2 0 0 -253 0 P 592 111 2.7737904467110258e-01 7.0510700039888363e-01 1.8108959894410233e+01 1.8125307254614814e+01 1.3497999999999999e-01 2 0 0 -254 0 V -186 0 -8.9702718605395542e-05 1.4218467142249717e-04 1.1459955142434212e-03 1.1587176849462617e-03 0 2 0 P 593 22 -3.7119175971689194e-01 5.5484676338883865e-01 4.3082611552547423e+00 4.3596734321737580e+00 0 1 0 0 0 0 P 594 22 -1.0743447905222246e-03 3.5219341340521675e-02 4.4761795858862308e-01 4.4900266488322238e-01 0 1 0 0 0 0 V -187 0 -3.6357545463710547e-05 1.1163391614070170e-05 2.0085252950972256e-04 2.0617478409560276e-04 0 3 0 P 595 22 -7.6318549182286158e-02 -1.9368539224254300e-02 1.8280552706833483e-01 1.9904150820294292e-01 0 1 0 0 0 0 P 596 -11 3.8216995650200512e-05 9.9377429339091833e-04 1.5642319430036221e-03 1.9224904307886771e-03 5.1000000000000004e-04 1 0 0 0 0 P 597 11 -1.0663700571941788e-01 7.4538563944375844e-02 8.2613327525664260e-01 8.3631566832743276e-01 5.1000000000000004e-04 1 0 0 0 0 V -188 0 -4.2257603649459453e-06 -1.1645523290491101e-06 2.4583491992335247e-05 2.5009083673450232e-05 0 2 0 P 598 22 -5.8777625678680070e-02 -7.1195107713567643e-02 4.9314496738064717e-01 5.0171257857026974e-01 0 1 0 0 0 0 P 599 22 -3.5579837756586424e-01 -4.3055443299985001e-02 1.9186637902858510e+00 1.9518496347901206e+00 0 1 0 0 0 0 V -189 0 -2.3672234026038707e-05 4.9602760556469587e-07 2.2042120008487352e-04 2.2191247508857942e-04 0 2 0 P 600 22 -2.7942220731936995e-01 1.6072468754313486e-02 2.8535978712013463e+00 2.8672906906555435e+00 0 1 0 0 0 0 P 601 22 -4.1682173434474175e-02 -9.3440527988753776e-03 1.3632749369740796e-01 1.4286322284880235e-01 0 1 0 0 0 0 V -190 0 -1.7610515544751309e-04 1.0921545050343372e-04 1.2409881013941829e-03 1.2584393588169803e-03 0 2 0 P 602 22 -8.4317817263664485e-01 5.6054099808923596e-01 6.0529459842696154e+00 6.1370441362137358e+00 0 1 0 0 0 0 P 603 22 -7.0327739442445553e-02 5.9896038783105905e-03 3.8440086433680148e-01 3.9082718788818105e-01 0 1 0 0 0 0 V -191 0 -2.1285140319179514e-05 -2.6348481142504804e-05 6.5865780588610656e-05 7.4471331778436985e-05 0 2 0 P 604 22 -3.6463674736928908e-01 -3.8307544652849845e-01 1.0028726117339815e+00 1.1337813857314822e+00 0 1 0 0 0 0 P 605 22 -5.1102119464896531e-03 -7.4627469164839449e-02 1.4129048657806220e-01 1.5986986901086983e-01 0 1 0 0 0 0 V -192 0 1.5247912966165254e-05 -6.1600460104252479e-06 1.3536833755218664e-04 1.3711946884903010e-04 0 2 0 P 606 22 1.2732296638007187e-01 -9.7450807467962627e-02 9.2154142394674610e-01 9.3538569247865599e-01 0 1 0 0 0 0 P 607 22 1.5827190016957288e-02 3.9619184755924068e-02 3.4932093831887406e-01 3.5191660616193643e-01 0 1 0 0 0 0 V -193 0 0 0 0 0 0 1 0 P 608 130 3.5474472099000304e-01 5.3481941420073106e-02 1.0781337460773490e+00 1.2404644043498843e+00 4.9767000000000000e-01 1 0 0 0 0 V -194 0 3.0133034496776609e-04 -4.8606058440178053e-05 3.6316930023770714e-04 4.7658913772830448e-04 0 2 0 P 609 22 7.0819019997073518e-01 -1.6075974288672090e-01 8.1124970569897936e-01 1.0888081278463508e+00 0 1 0 0 0 0 P 610 22 1.8305002430456585e-01 1.6998335684281062e-02 2.6289066548860240e-01 3.2079238896048939e-01 0 1 0 0 0 0 V -195 0 -2.8239933985141965e-05 -1.3359551868729290e-04 -7.5730313870234621e-05 1.6500179731765229e-04 0 2 0 P 611 22 -5.2862485917314801e-02 -1.0089071228683474e-01 -1.2786193074691327e-01 1.7123682891665451e-01 0 1 0 0 0 0 P 612 22 -1.8599060856979346e-02 -2.3717461083081331e-01 -6.3774684611928964e-02 2.4630252025681823e-01 0 1 0 0 0 0 V -196 0 1.2265028944146381e-05 3.4838823499610843e-05 -7.8231516033273313e-05 9.3148751322230907e-05 0 2 0 P 613 22 -2.6244988541530734e-02 7.8580508754044903e-02 -6.3933430474531081e-02 1.0464788250046587e-01 0 1 0 0 0 0 P 614 22 7.4189289933187949e-02 5.7605313684904340e-02 -2.4187549994920088e-01 2.5947288949175934e-01 0 1 0 0 0 0 V -197 0 -9.8497193325661444e-05 -6.2101176751238802e-05 -1.2802216973772359e-04 1.7859600318125555e-04 0 2 0 P 615 22 -2.2218384806144706e-01 -1.1592624920646162e-01 -1.7997379730533894e-01 3.0853707283076065e-01 0 1 0 0 0 0 P 616 22 -7.8999930768856572e-02 -7.3966137086273351e-02 -2.1149117295200714e-01 2.3757208323699427e-01 0 1 0 0 0 0 V -198 0 -7.4790474481821923e-05 -5.9630995261985310e-05 -3.5370678037872513e-05 1.0502442074384415e-04 0 2 0 P 617 22 -2.8512271836447423e-01 -1.8993616539870742e-01 -6.3721450223527862e-02 3.4846970409563871e-01 0 1 0 0 0 0 P 618 22 -1.1721664153572302e-01 -1.3085196477621452e-01 -1.2655700514918797e-01 2.1651478769599430e-01 0 1 0 0 0 0 V -199 0 0 0 0 0 0 3 0 P 619 111 -3.7897117902709271e-01 -2.8886218842259176e-01 -2.7621164893151873e-01 5.6707406380378766e-01 1.3497999999999999e-01 2 0 0 -255 0 P 620 111 -4.7952798832067917e-01 -2.2288987564933468e-01 -5.1982485433236025e-01 7.5370051600852239e-01 1.3497999999999999e-01 2 0 0 -256 0 P 621 111 -1.9773704525992244e-01 -1.4009288339637163e-01 -4.0603266558631845e-01 4.9173985090651856e-01 1.3497999999999999e-01 2 0 0 -257 0 V -200 0 0 0 0 0 0 1 0 P 622 310 -3.7245859170116347e-01 -8.6081638886829592e-01 -3.9923790021735828e+00 4.1311615538214914e+00 4.9767000000000000e-01 2 0 0 -258 0 V -201 0 0 0 0 0 0 1 0 P 623 130 -5.5039389680096351e-01 -7.8591076008151095e-01 -3.5279695070433652e+00 3.6898283748672447e+00 4.9767000000000000e-01 1 0 0 0 0 V -202 0 -5.5795740172527013e-05 1.4513955414817134e-05 -6.7261560607745927e-04 6.7705136877393524e-04 0 2 0 P 624 22 -1.4773984352246233e-01 -5.2835410671973372e-03 -1.0593463837476040e+00 1.0696119567064388e+00 0 1 0 0 0 0 P 625 22 1.7958323244278299e-03 4.3247458474476898e-02 -7.0000333079702137e-01 7.0134031026682286e-01 0 1 0 0 0 0 V -203 0 2.4220945533499447e-05 -4.6194624403957526e-05 -3.0681737989429519e-04 3.1125654541454430e-04 0 2 0 P 626 22 5.9368572127861496e-01 -1.1767169553133707e+00 -7.5141221366352440e+00 7.6288371992620139e+00 0 1 0 0 0 0 P 627 22 8.6028575466120055e-02 -1.1964641731779697e-01 -1.0961180918263065e+00 1.1059796798326167e+00 0 1 0 0 0 0 V -204 0 -3.3462278165677986e-07 -1.5886854727106993e-05 -1.8816988636852263e-04 1.8907717303851291e-04 0 2 0 P 628 22 -1.7794361455133762e-03 -3.9715549667092544e-02 -1.2613415101267220e-01 1.3225095587572452e-01 0 1 0 0 0 0 P 629 22 -2.9877962606630016e-03 -1.8661790053105637e-01 -2.5546444131995067e+00 2.5614533463673634e+00 0 1 0 0 0 0 V -205 0 3.2116511929314988e-05 -6.8738283256286839e-05 -9.3035568009607321e-04 9.3458306532610412e-04 0 2 0 P 630 22 2.1516863490608884e-02 1.7974734237190530e-02 -2.2817463128869428e-01 2.2989068891345452e-01 0 1 0 0 0 0 P 631 22 7.2471475627249995e-02 -2.1913596529772450e-01 -2.4944929284247559e+00 2.5051482303503865e+00 0 1 0 0 0 0 V -206 0 -1.4910871845782493e-05 -1.1026837111039835e-05 -1.8871747700456533e-04 1.9079662576780606e-04 0 2 0 P 632 22 -4.5778479654601273e-02 -9.5159972430348599e-02 -1.0152370197236209e+00 1.0207141106939455e+00 0 1 0 0 0 0 P 633 22 -4.9616087681138579e-02 2.4614107227513261e-02 -1.9211170231874181e-01 1.9993628134782052e-01 0 1 0 0 0 0 V -207 0 1.7497339738907070e-05 -1.8405181482357508e-04 -1.2339829719980662e-03 1.2505332199579727e-03 0 2 0 P 634 22 8.0482003842540506e-02 -2.1068124534098531e-01 -1.4533854649295646e+00 1.4707798100835714e+00 0 1 0 0 0 0 P 635 22 -5.2127622126078584e-02 -8.7574117530604276e-02 -5.4627989801964971e-01 5.5570517545740228e-01 0 1 0 0 0 0 V -208 0 2.6316633750840404e-05 -8.8858758764312051e-05 -1.3681147843965082e-03 1.3714407414420181e-03 0 2 0 P 636 22 8.9620104591569064e-03 -2.5946332480488243e-01 -3.9738949974416808e+00 3.9823665056398676e+00 0 1 0 0 0 0 P 637 22 1.4633603262728914e-01 -2.6490432334645325e-01 -4.0995368383313053e+00 4.1106922560328174e+00 0 1 0 0 0 0 V -209 0 -4.8908872013391556e-05 1.6975124739061005e-05 -5.4809931993199325e-04 5.5162896910408471e-04 0 2 0 P 638 22 -1.3964660294986357e-02 -3.5403414039763451e-02 -2.7219325434660613e-01 2.7484101072187456e-01 0 1 0 0 0 0 P 639 22 -1.7649771837986072e-01 1.0150844780988501e-01 -1.8622313587528372e+00 1.8733288667750008e+00 0 1 0 0 0 0 V -210 0 0 0 0 0 0 2 0 P 640 -211 -1.0498546249691298e+00 -5.4714345016295529e-01 -2.8297972266879359e+01 2.8323069658682808e+01 1.3957000000000000e-01 1 0 0 0 0 P 641 211 4.7327199063496195e-02 -1.4517758858445404e-01 -8.4343451434621972e+00 8.4368817806072602e+00 1.3957000000000000e-01 1 0 0 0 0 V -211 0 -1.2093380717966195e+02 -4.2212647883638013e+01 -4.3970223399373681e+03 4.3993042112284766e+03 0 2 0 P 642 22 -1.4867395447248954e-01 -1.0960300337475801e-01 -7.2720965833223845e+00 7.2744419360014394e+00 0 1 0 0 0 0 P 643 22 -3.8936325468607741e-01 -7.0825683964108987e-02 -1.2592639616698216e+01 1.2598856794870168e+01 0 1 0 0 0 0 V -212 0 -1.1879293458967721e-04 1.2831363624166610e-05 -2.2452706303482091e-03 2.2486291096193265e-03 0 2 0 P 644 22 -5.1727256542088906e-01 4.9097751182367234e-02 -8.8216590967503965e+00 8.8369480430399339e+00 0 1 0 0 0 0 P 645 22 -4.3962417891288248e-02 1.1523784722575453e-02 -1.7860797313827401e+00 1.7866578571896248e+00 0 1 0 0 0 0 V -213 0 -4.7926196423900862e-05 1.4822575688519315e-04 -7.2207166517975476e-03 7.2225830967978799e-03 0 2 0 P 646 22 -5.1180139375158014e-03 2.3231748336447222e-01 -1.0618979927602330e+01 1.0621522127735020e+01 0 1 0 0 0 0 P 647 22 -1.1961460109703927e-01 1.5345455054026844e-01 -8.1736415947913201e+00 8.1759570003749360e+00 0 1 0 0 0 0 V -214 0 -2.1358700150669117e-06 -1.7856459213001494e-05 -3.2625112451174364e-03 3.2625671580897055e-03 0 2 0 P 648 22 -2.6572467740395660e-02 -2.8691508483701378e-01 -4.0286452967992055e+01 4.0287483404950777e+01 0 1 0 0 0 0 P 649 22 -1.8222743206522538e-02 -8.7585166380935095e-02 -2.8137598313588363e+01 2.8137740529164571e+01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 650 310 -3.9810484736228319e-01 7.7164035975740619e-02 -3.0210095202391483e+02 3.0210163410836185e+02 4.9767000000000000e-01 2 0 0 -259 0 V -216 0 -5.7334549090757714e-06 7.8415144216598835e-06 -1.7237079828582625e-03 1.7237370208811080e-03 0 2 0 P 651 22 -2.4262992033375838e-01 2.3605808764143923e-01 -6.4455169771845235e+01 6.4456058699057706e+01 0 1 0 0 0 0 P 652 22 -8.0246088155054837e-02 2.0553200369515381e-01 -3.2614391623780001e+01 3.2615137955073841e+01 0 1 0 0 0 0 V -217 0 2.0484049984080511e-04 4.1560204674662400e-05 -5.5666573650940153e-02 5.5667002686969842e-02 0 2 0 P 653 22 2.0361621235993013e-01 7.3762841189974365e-02 -7.2357318087435686e+01 7.2357642176379869e+01 0 1 0 0 0 0 P 654 22 2.2929208591274558e-01 1.4070167885646745e-02 -4.5287980028061980e+01 4.5288562660482263e+01 0 1 0 0 0 0 V -218 0 -2.8819703584929331e-05 -9.9923105802072939e-05 -3.0601708143152807e-02 3.0601985510499037e-02 0 2 0 P 655 22 -6.5639357410928628e-04 -3.0600441639658735e-02 -1.8215576259241597e+00 1.8218147552491513e+00 0 1 0 0 0 0 P 656 22 -4.8905030029731317e-02 -1.4123794524290584e-01 -5.0804390306344061e+01 5.0804610167370477e+01 0 1 0 0 0 0 V -219 0 1.4152912516037178e-04 8.0623532301253277e-05 -1.0302087586997802e-02 1.0303383412640763e-02 0 2 0 P 657 22 2.8535885407589329e-01 2.1865056484034026e-01 -2.1088537399502844e+01 2.1091601347345218e+01 0 1 0 0 0 0 P 658 22 1.1778830679482108e+00 6.1490035431626622e-01 -8.5422729624708097e+01 8.5433062964542472e+01 0 1 0 0 0 0 V -220 0 1.5012931298531143e-05 7.3620499764843309e-06 -2.9598055544323410e-04 2.9646833775926368e-04 0 2 0 P 659 22 6.2267352026292067e-01 3.1983972558417623e-01 -1.2692982451746705e+01 1.2712270579375197e+01 0 1 0 0 0 0 P 660 22 3.8343150758500352e-02 4.3100137691992517e-03 -3.3898829105552397e-01 3.4117713126985000e-01 0 1 0 0 0 0 V -221 0 -1.0397113360079952e-04 2.6161523078878758e-04 -1.2153316906625775e-03 1.2489089119162491e-03 0 2 0 P 661 22 -4.6666454443101996e-02 7.3934579508385542e-02 -2.2199586322209994e-01 2.3859221132530117e-01 0 1 0 0 0 0 P 662 22 -1.9089736295117521e-01 5.2383049972309936e-01 -2.5549175533670465e+00 2.6150418543734473e+00 0 1 0 0 0 0 V -222 0 -2.0391149618229341e-05 4.9062775878668014e-05 -1.4488301776849357e-04 1.5501321072046269e-04 0 2 0 P 663 22 -9.9574742244988926e-02 3.2501123729568554e-01 -1.0548214105941183e+00 1.1082398846411343e+00 0 1 0 0 0 0 P 664 22 -8.8114635528960497e-02 1.2658477611876351e-01 -2.7874751338016007e-01 3.1857192399058276e-01 0 1 0 0 0 0 V -223 0 -2.0370853626965761e-05 5.0239517079489326e-06 -9.5198713731444218e-05 9.9100072465998029e-05 0 2 0 P 665 22 -2.2290799522687428e-02 5.2602117944355632e-02 -3.8561044483719076e-01 3.8981954507583211e-01 0 1 0 0 0 0 P 666 22 -1.3194661961643014e-01 -1.4563390677283135e-02 -3.3518428375802389e-01 3.6051422559255769e-01 0 1 0 0 0 0 V -224 0 -1.0828885872331268e-05 5.1391562954249025e-06 -3.5193878936585656e-05 3.8995660877619762e-05 0 2 0 P 667 22 -1.1730663889065257e-01 4.0360144732924041e-02 -1.5828526524745645e-01 2.0110697154783616e-01 0 1 0 0 0 0 P 668 22 -6.9505796536611748e-03 1.8609658297839959e-02 -2.4555069331768759e-01 2.4635294381898773e-01 0 1 0 0 0 0 V -225 0 -6.0846793034341818e-06 5.8401941664330158e-06 -4.9265728162447138e-06 1.2288742869269717e-05 0 2 0 P 669 22 -1.0020564438803720e-01 5.3616336220609059e-02 5.6479122772683027e-03 1.1378831921614312e-01 0 1 0 0 0 0 P 670 22 -9.9298203441919274e-03 5.2093836258575790e-02 -9.4821122498559895e-02 1.0864351973353099e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 1 0 P 671 130 8.3334727907163375e-01 -5.3139889008188479e-01 -5.7733373171296748e+01 5.7743977223889104e+01 4.9767000000000000e-01 1 0 0 0 0 V -227 0 7.4835814248831733e-04 -6.5716536664995567e-06 -1.9678601711546992e-02 1.9693064196292225e-02 0 2 0 P 672 22 6.9339671697141358e-01 5.7800106312274467e-02 -1.8159985796252741e+01 1.8173310759999069e+01 0 1 0 0 0 0 P 673 22 3.5243272676426296e-01 -6.6983982999453087e-02 -9.3408322118902039e+00 9.3477185500826145e+00 0 1 0 0 0 0 V -228 0 -1.4991754019113172e-05 5.0684898643996528e-05 -5.0051054364359561e-03 5.0055550440909211e-03 0 2 0 P 674 22 -3.2784645895015486e-02 6.3877594400283122e-02 -1.2130738667502646e+01 1.2130951149819900e+01 0 1 0 0 0 0 P 675 22 -1.6191546682447790e-02 1.0170365470457801e-01 -4.2203172138088556e+00 4.2215735436843440e+00 0 1 0 0 0 0 V -229 0 -3.6644362316071029e-05 3.5231254394409545e-05 -1.5779706122359270e-03 1.5788051021290853e-03 0 2 0 P 676 22 -2.8875084638776988e-01 3.4338269007346933e-01 -1.2402672484138117e+01 1.2410784563109962e+01 0 1 0 0 0 0 P 677 22 -4.0903500555607686e-01 3.2749461024925369e-01 -1.7645212058213421e+01 1.7652990424708015e+01 0 1 0 0 0 0 V -230 0 2.1140969546943778e+00 -3.5836253854774789e+00 2.1600511093741554e+02 2.1620985775232120e+02 0 2 0 P 678 -2112 2.7441607481630970e-01 -4.3649489354108612e-01 2.6838951818148317e+01 2.6860341741236127e+01 9.3957000000000002e-01 1 0 0 0 0 P 679 111 5.1450812587628385e-03 -3.7391818929436139e-02 1.7248462601275769e+00 1.7305313754624907e+00 1.3497999999999999e-01 2 0 0 -260 0 V -231 0 3.0853612054091604e-05 2.0585215038686307e-05 4.1700997172138465e-04 4.1889574052582482e-04 0 2 0 P 680 22 3.0087348668264235e-01 2.0229263783432738e-01 3.6776061945267742e+00 3.6954342760130703e+00 0 1 0 0 0 0 P 681 22 -6.8519332288057375e-03 -6.1244584573138649e-03 2.9631813810261270e-01 2.9646061618529779e-01 0 1 0 0 0 0 V -232 0 1.2488882326069893e-04 1.8208436785974101e-05 1.9349427600843072e-03 1.9393001418060592e-03 0 2 0 P 682 22 5.1150077383946424e-01 1.0051194144907002e-01 8.1097602736805712e+00 8.1264966245350632e+00 0 1 0 0 0 0 P 683 22 3.4627214275382935e-02 -2.0888027242731953e-02 3.5157653046539061e-01 3.5389463181100683e-01 0 1 0 0 0 0 V -233 0 2.0623682297771504e-06 1.5645790859393300e-05 4.7058364160365367e-04 4.7095441109019481e-04 0 2 0 P 684 22 1.4666761765280798e-03 2.2312894231583352e-01 5.6546447877435160e+00 5.6590455336207448e+00 0 1 0 0 0 0 P 685 22 2.6364290385979507e-02 -1.1994249701404960e-02 6.9572339832455343e-01 6.9632606213592285e-01 0 1 0 0 0 0 V -234 0 0 0 0 0 0 1 0 P 686 130 2.2042764751797975e-01 5.0191353432858143e-01 2.3100848737086196e+01 2.3112710644716024e+01 4.9767000000000000e-01 1 0 0 0 0 V -235 0 3.2906107609342593e-05 1.0247223705240589e-04 2.6277388268651390e-03 2.6299706907785764e-03 0 2 0 P 687 22 2.1328238502711108e-02 8.3322120933589455e-02 1.3987615757926277e+00 1.4014033735896225e+00 0 1 0 0 0 0 P 688 22 3.3998488489428436e-01 1.0418356908147137e+00 2.7454135104598684e+01 2.7475999448066844e+01 0 1 0 0 0 0 V -236 0 2.1524069919990260e-04 1.4662731703950686e-03 8.2981546344748316e-02 8.2994886199088388e-02 0 2 0 P 689 22 1.8889936980127600e-01 1.3669558645218551e+00 7.8929412423473934e+01 7.8941474503725246e+01 0 1 0 0 0 0 P 690 22 2.8766511148648477e-02 1.1583824706420168e-01 4.9871119831927517e+00 4.9885400614359421e+00 0 1 0 0 0 0 V -237 0 8.6364779694225730e-05 2.3191823787021310e-05 9.9797264459686452e-03 9.9801705409596191e-03 0 2 0 P 691 22 2.5244267512204260e-01 8.5023631086909093e-02 2.2371713788479859e+01 2.2373299581325185e+01 0 1 0 0 0 0 P 692 22 1.4338649682333360e-01 2.1269703279501489e-02 2.3367612697792087e+01 2.3368062291977971e+01 0 1 0 0 0 0 V -238 0 -1.0201663883997527e-04 -1.2794141158979015e-04 1.1282475933816708e-02 1.1283769591290748e-02 0 2 0 P 693 22 -2.4208686466417745e-01 -2.0266236957403361e-01 2.0868178599312749e+01 2.0870566742158655e+01 0 1 0 0 0 0 P 694 22 -3.8029639161149660e-02 -1.4863817626365050e-01 1.0111157213069662e+01 1.0112321184985589e+01 0 1 0 0 0 0 V -239 0 -7.3140014352212924e-06 9.0880409387689375e-06 5.2819635498979178e-04 5.2835052440133217e-04 0 2 0 P 695 22 -1.7696189022499406e-01 2.5188713870356416e-01 1.3330340715659529e+01 1.3333894638732019e+01 0 1 0 0 0 0 P 696 22 -1.3740533488549801e-02 -1.4929100182382247e-02 4.4164524651782938e-01 4.4211107661378468e-01 0 1 0 0 0 0 V -240 0 -7.6405329803847844e-05 -4.3965147576071158e-05 6.1137291687125232e-03 6.1144118277772974e-03 0 2 0 P 697 22 -2.9953078251196648e-02 -6.5964982863439547e-02 3.8153817469685691e+00 3.8160695015895385e+00 0 1 0 0 0 0 P 698 22 -3.9941202824671140e-01 -1.8110024569664143e-01 3.0541147861145504e+01 3.0544296356990323e+01 0 1 0 0 0 0 V -241 0 0 0 0 0 0 1 0 P 699 130 3.2266235267685281e-02 5.6429581359261002e-02 1.6193734136772463e+01 1.6201509995335634e+01 4.9767000000000000e-01 1 0 0 0 0 V -242 0 -2.3243509351359364e-04 -1.0635004798940592e-04 1.1043078510389865e-02 1.1046320459263449e-02 0 2 0 P 700 22 -1.7925660027067786e-01 -4.0994542657774372e-02 1.0197328137701607e+01 1.0198985960831068e+01 0 1 0 0 0 0 P 701 22 -2.1676547025266449e-01 -1.4020428394092166e-01 8.6178290338235914e+00 8.6216948314436461e+00 0 1 0 0 0 0 V -243 0 2.3614089796016456e-05 6.2241448955280954e-05 -2.0494546269214414e-05 8.6446768774903375e-05 0 2 0 P 702 22 1.0398036786123380e-01 9.7189319245051337e-02 -2.9769430383780104e-02 1.4540942081326344e-01 0 1 0 0 0 0 P 703 22 -4.1725334943481893e-02 6.6900996622776487e-02 -2.4261390352726404e-02 8.2494617928164649e-02 0 1 0 0 0 0 V -244 0 -1.8848258144023440e-05 1.4981460503627657e-04 6.7888337786811446e-05 1.7290858656956735e-04 0 2 0 P 704 22 3.6567112949933402e-02 3.8918612990606651e-02 1.9264621282817147e-02 5.6770924070127418e-02 0 1 0 0 0 0 P 705 22 -8.7563410912883055e-02 3.6642336499233652e-01 1.6441568888331815e-01 4.1105468260802180e-01 0 1 0 0 0 0 V -245 0 3.1431974869909405e-05 6.2318816146020864e-05 1.5525460768815167e-05 7.8731031985610587e-05 0 2 0 P 706 22 8.5093091024778147e-02 2.0606139014451016e-01 1.0324395925112786e-01 2.4568566455999780e-01 0 1 0 0 0 0 P 707 22 4.3654722344762018e-02 4.9201327002148944e-02 -3.9650464607140390e-02 7.6802764958904604e-02 0 1 0 0 0 0 V -246 0 -9.1229828305119595e-02 2.6354783372521573e-01 -4.8277600603213211e-01 7.1490779319126674e-01 0 2 0 P 708 22 5.5629612534181042e-03 5.7253444767595064e-02 6.7889778666738599e-04 5.7527075172198953e-02 0 1 0 0 0 0 P 709 22 -7.5030381941579696e-02 -5.6232006370658595e-02 1.7268541847629312e-02 9.5340438913990952e-02 0 1 0 0 0 0 V -247 0 -9.1231650574750564e-02 2.6363854370355411e-01 -4.8295065323500463e-01 7.1508962046736746e-01 0 2 0 P 710 22 -4.5002876386432557e-02 1.9856049014022578e-01 -2.4649595347916109e-01 3.1970577443859216e-01 0 1 0 0 0 0 P 711 22 1.3010890844523403e-02 9.3543433200343529e-02 -3.0841120584936804e-01 3.2254787097256821e-01 0 1 0 0 0 0 V -248 0 1.6217228855163301e-06 9.3892918938261749e-06 1.2075277997179331e-04 1.2214604493773082e-04 0 2 0 P 712 22 -5.9866915020860764e-02 2.3288782136424636e-02 3.9812176025624241e-01 4.0327081580129476e-01 0 1 0 0 0 0 P 713 22 7.3777367353076009e-02 5.7248588636844171e-02 6.3764446391300567e-01 6.4444624538697237e-01 0 1 0 0 0 0 V -249 0 2.7272329610207115e-05 -8.1062601503462724e-06 2.9749763127634037e-04 2.9964557861225806e-04 0 2 0 P 714 22 -1.9463428990776258e-02 9.4021543254212050e-03 1.1165606150664788e-01 1.1372907124044571e-01 0 1 0 0 0 0 P 715 22 1.8870088311403846e-01 -5.9705258237453936e-02 1.7344547198057547e+00 1.7457107195081549e+00 0 1 0 0 0 0 V -250 0 1.1877040888652593e-05 1.1195407940194801e-05 1.5432691647932829e-04 1.5534101907594579e-04 0 2 0 P 716 22 1.5662128113444435e-01 2.1377741988859283e-01 2.5496460114154051e+00 2.5633817106480463e+00 0 1 0 0 0 0 P 717 22 7.5663132062869815e-02 5.1760036343702813e-03 4.6859208097011973e-01 4.7468962377019958e-01 0 1 0 0 0 0 V -251 0 6.1884726447273231e+00 5.1372257844512408e+00 7.9050212128192525e+03 7.9050559412782213e+03 0 2 0 P 718 22 -9.7427569605482142e-02 -2.0761068202521302e-02 1.1496454600444233e+01 1.1496886166843069e+01 0 1 0 0 0 0 P 719 22 -1.2062442087022522e-02 4.3647229283092052e-02 2.0392736670143822e+01 2.0392786947373370e+01 0 1 0 0 0 0 V -252 0 6.1885337021184688e+00 5.1372460759948426e+00 7.9050533257554334e+03 7.9050880542641880e+03 0 2 0 P 720 22 -6.2749922189985112e-03 3.5901480682374948e-02 1.7090076535358961e+01 1.7090115396809630e+01 0 1 0 0 0 0 P 721 22 2.5570318443075141e-01 5.7378888541140045e-02 1.2977458499310058e+02 1.2977484959184835e+02 0 1 0 0 0 0 V -253 0 9.7819230062086916e+01 3.0587740847186706e+02 8.7275375969023444e+03 8.7359143216248740e+03 0 2 0 P 722 22 2.6349450471744470e-02 2.9050319118142636e-02 2.7675692286939524e-01 2.7952210813666462e-01 0 1 0 0 0 0 P 723 22 -6.9391725253076811e-02 -1.3942315429641974e-03 2.5220622940106767e+00 2.5230171165264799e+00 0 1 0 0 0 0 V -254 0 9.7819328881585889e+01 3.0587764957987656e+02 8.7275436353661516e+03 8.7359203654518460e+03 0 2 0 P 724 22 8.1156778204828656e-03 1.6212372254630333e-01 3.4244757614607639e+00 3.4283209019097147e+00 0 1 0 0 0 0 P 725 22 2.6926336685061969e-01 5.4298327785258038e-01 1.4684484132949470e+01 1.4696986352705103e+01 0 1 0 0 0 0 V -255 0 -4.2970283347625646e-05 -3.2753124173716194e-05 -3.1318721515901218e-05 6.4298644723577450e-05 0 2 0 P 726 22 8.9091047796906273e-03 -2.5679781532412867e-03 3.2632500087928897e-03 9.8293163745460568e-03 0 1 0 0 0 0 P 727 22 -3.8788028380678335e-01 -2.8629421026935048e-01 -2.7947489894031158e-01 5.5724474742924157e-01 0 1 0 0 0 0 V -256 0 -2.6122195120242004e-06 -1.2141883193155243e-06 -2.8317359161402074e-06 4.1057690939689965e-06 0 2 0 P 728 22 -2.0982261927124890e-01 -2.5917731947571562e-02 -1.8822178661948774e-01 2.8306306955409360e-01 0 1 0 0 0 0 P 729 22 -2.6970536904943032e-01 -1.9697214370176311e-01 -3.3160306771287246e-01 4.7063744645442879e-01 0 1 0 0 0 0 V -257 0 -7.9622549972449442e-06 -5.6411041210561423e-06 -1.6349670929692021e-05 1.9800832363395697e-05 0 2 0 P 730 22 -2.0849302814760554e-01 -1.0256924951756782e-01 -3.0497394514329368e-01 3.8340435697709546e-01 0 1 0 0 0 0 P 731 22 1.0755982887683091e-02 -3.7523633878803794e-02 -1.0105872044302482e-01 1.0833549392942318e-01 0 1 0 0 0 0 V -258 0 -6.0576699340052713e+01 -1.4000325603255985e+02 -6.4932088520661534e+02 6.7189249207013995e+02 0 2 0 P 732 211 -4.3549610510067138e-01 -5.6207588514051110e-01 -2.6251568816375350e+00 2.7233278532566092e+00 1.3957000000000000e-01 1 0 0 0 0 P 733 -211 6.3037513399507888e-02 -2.9874050372778482e-01 -1.3672221205360475e+00 1.4078337005648822e+00 1.3957000000000000e-01 1 0 0 0 0 V -259 0 -5.8885515929238046e+01 1.1413686870983476e+01 -4.4685138953994050e+04 4.4685239844236508e+04 0 2 0 P 734 -211 -1.8079311537892193e-01 -1.6980968266271451e-01 -1.3450820707456811e+02 1.3450850817579789e+02 1.3957000000000000e-01 1 0 0 0 0 P 735 211 -2.1731173198336123e-01 2.4697371863845513e-01 -1.6759274494934672e+02 1.6759312593256394e+02 1.3957000000000000e-01 1 0 0 0 0 V -260 0 2.1140981035629829e+00 -3.5836337348668654e+00 2.1600549608618525e+02 2.1621024417054619e+02 0 2 0 P 736 22 -1.1452783012075286e-02 -8.4996263787428403e-02 8.7568350549207818e-01 8.7987336184671383e-01 0 1 0 0 0 0 P 737 22 1.6597864270838123e-02 4.7604444857992270e-02 8.4916275463549873e-01 8.5065801361577664e-01 0 1 0 0 0 0 E 29 1 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 56 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 1.6254307784715489e+00 -6.0085520255795188e-01 4.6926793535174812e+02 4.6927113506104598e+02 0 3 0 0 -3 0 P 18 1 -9.2115262498271178e-01 -3.7077623741255394e-01 1.4838883843114399e+02 1.4839252766942445e+02 3.3000000000000002e-01 2 0 0 -9 0 P 19 2203 -7.0427815348883716e-01 9.7163143997050583e-01 6.3823384371208449e+03 6.3823385965471534e+03 7.7132999999999996e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -2.8377951444881067e-01 8.7941638551232909e-02 -2.0015076945189612e+01 2.0017281775167881e+01 0 3 0 0 -4 0 P 16 2101 -7.6047821997663606e-02 -4.6146383244324178e-02 -6.5782726294806353e+03 6.5782726555920499e+03 5.7933000000000001e-01 2 0 0 -11 0 P 22 2 3.5982733644647424e-01 -4.1795255306908731e-02 -4.0170750447791181e+02 4.0170780335515883e+02 3.3000000000000002e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 2 0 P 5 4 7.7828692537048183e-01 -5.4878309072921949e-01 2.6595049967190647e+02 2.6595220467060540e+02 0 3 0 0 -5 0 P 17 -4 8.1980098519425093e-01 -3.1182114523160435e-02 1.9346508346664572e+02 1.9347263777272431e+02 1.5000000000000000e+00 2 0 0 -9 0 V -4 0 0 0 0 0 0 5 0 P 6 -3 3.3626077215973895e+00 1.2845533990534304e+00 -6.4845790443928593e+00 7.4166686259630668e+00 0 3 0 0 -5 0 P 14 3 8.9274714657854781e-01 -1.3396688005773585e+00 -9.6167280336290251e+00 9.7633584404010740e+00 5.0000000000000000e-01 2 0 0 -11 0 P 15 21 3.6066893122525162e-01 5.8107324856008991e-01 -2.5662894238198901e+00 2.6558557199051993e+00 0 2 0 0 -11 0 P 20 21 -4.2462221910232145e+00 -5.3237024319653270e-01 5.5608179985886776e+00 7.0168737900012790e+00 0 2 0 0 -13 0 P 21 21 -6.2623825492020457e-01 7.3464037406124616e-02 2.9440537711844934e+00 3.0108178165314401e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 4.7441606369348106e+00 -2.4843664654727431e+00 2.7044952029787595e+01 2.7570066506581362e+01 0 3 0 0 -6 0 P 8 24 -6.0326598996693803e-01 3.2201367737969537e+00 2.3242096859772602e+02 2.4579880678998711e+02 7.9917542284405044e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 4.7441606369348106e+00 -2.4843664654727431e+00 2.7044952029787595e+01 2.7570066506581362e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -6.0326598996693803e-01 3.2201367737969537e+00 2.3242096859772602e+02 2.4579880678998711e+02 7.9917542284405044e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 14 1.6906903389166068e+01 -2.2655771137480091e+01 1.9504660048798343e+02 1.9708450905630175e+02 0 1 0 0 0 0 P 12 -13 -1.7452195807582839e+01 2.5793938070463614e+01 3.7274503045232890e+01 4.8572689044295252e+01 1.0566000000000000e-01 1 0 0 0 0 P 13 22 -5.7973571550167524e-02 8.1969840813428188e-02 9.9865064509720963e-02 1.4160868939013552e-01 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 23 91 -1.0135163978846085e-01 -4.0195835193571439e-01 3.4185392189778975e+02 3.4186516544214874e+02 2.7414564041793961e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 24 -411 5.9170423482222034e-01 -5.3147273102025945e-02 2.6286114629295849e+02 2.6286846416311005e+02 1.8693000000000000e+00 2 0 0 -15 0 P 25 111 -6.9305587461071605e-01 -3.4881107883382650e-01 7.8992775604948676e+01 7.8996701279156113e+01 1.3497999999999999e-01 2 0 0 -16 0 V -11 0 0 0 0 0 0 1 0 P 26 92 1.1773682558061358e+00 -8.0474193526159277e-01 -6.5904556469380841e+03 6.5906918697523561e+03 5.5782201069287716e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 8 0 P 27 -313 5.1610808229329930e-01 -2.8296218260332828e-01 -4.4004989269117569e+00 4.5258442877448255e+00 8.7888597768358989e-01 2 0 0 -17 0 P 28 -211 7.8832665854993533e-01 -9.7959136172248285e-01 -1.1706139681929885e+01 1.1774304403840395e+01 1.3957000000000000e-01 1 0 0 0 0 P 29 211 -3.0629653203180271e-02 1.1192780267310073e-01 -1.2851204853448126e+01 1.2852486606834306e+01 1.3957000000000000e-01 1 0 0 0 0 P 30 223 2.8326258779722591e-01 5.6092012537202041e-01 -1.4511996568414416e+01 1.4546838887765100e+01 7.8588048978850278e-01 2 0 0 -18 0 P 31 -213 2.7458482052653593e-01 -2.1346653980667929e-01 -1.3344538617154456e+02 1.3344828244571593e+02 8.0748526403881205e-01 2 0 0 -19 0 P 32 113 -2.3026666193006826e-01 5.7919715341482728e-02 -9.6791160899203405e+01 9.6794558186917129e+01 7.7542824038207792e-01 2 0 0 -20 0 P 33 211 -2.6184634237222620e-01 3.9522864733543733e-01 -6.1938948574119911e+02 6.1938968291030051e+02 1.3957000000000000e-01 1 0 0 0 0 P 34 2112 -1.6217123585538618e-01 -4.5471814185114356e-01 -5.6973597740954328e+03 5.6973598720232385e+03 9.3957000000000002e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 35 92 -5.2169112629857821e+00 4.7092997887318899e-01 5.9891358044127055e+03 6.7940740915088445e+03 3.2077511810106680e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 24 0 P 36 211 -6.0681788380840951e-01 4.6944199527296271e-01 1.7976786187132529e+03 1.7976787878434525e+03 1.3957000000000000e-01 1 0 0 0 0 P 37 2112 2.4820408585446960e-01 1.0014472306041158e-01 2.8304539599463333e+03 2.8304541285457881e+03 9.3957000000000002e-01 1 0 0 0 0 P 38 211 1.6353450845411777e-01 -2.7020443768421522e-04 1.6128578095599539e+02 1.6128592425248613e+02 1.3957000000000000e-01 1 0 0 0 0 P 39 113 -5.6536704924126047e-01 -1.6336665355431576e-01 3.7176255350896747e+02 3.7176391257849087e+02 8.1496969027385613e-01 2 0 0 -21 0 P 40 -211 2.9818803245243403e-01 4.2093606629760760e-01 4.9389200141650110e+02 4.9389229053130259e+02 1.3957000000000000e-01 1 0 0 0 0 P 41 331 -2.3716497377375248e-01 7.9199537599622527e-01 6.4187822956160244e+02 6.4187947605820113e+02 9.5744227671772086e-01 2 0 0 -22 0 P 42 -313 -1.8827164168040184e-01 -7.3247285530961748e-01 5.6497779578785881e+01 5.6509026300450245e+01 8.3605824981077959e-01 2 0 0 -23 0 P 43 321 -2.9969423243780180e-01 2.3976905489393363e-01 5.6518461458262177e+00 5.6863267272231095e+00 4.9359999999999998e-01 1 0 0 0 0 P 44 111 5.2915990311263672e-01 -2.5835170021371934e-01 9.3220616334653545e+00 9.3416170175506696e+00 1.3497999999999999e-01 2 0 0 -24 0 P 45 -323 -2.9515378399314091e-01 5.2526983899687379e-02 8.6307367562732473e+00 8.6795605819924635e+00 8.6906852442614591e-01 2 0 0 -25 0 P 46 313 -7.0396786540490308e-01 2.3434100810375957e-01 4.3968149544132542e+00 4.5443331157622531e+00 8.7663861428733414e-01 2 0 0 -26 0 P 47 213 -1.8250490443277103e+00 -6.2873625758251084e-01 4.0361576103908492e+00 4.5320684777709959e+00 7.2316190129817481e-01 2 0 0 -27 0 P 48 223 -2.6716346659920304e-01 4.5349828511956286e-01 1.6252268678460440e+00 1.8791858467592810e+00 7.8290488707124917e-01 2 0 0 -28 0 P 49 -211 -1.2573866009243730e+00 -3.4722654159454397e-01 2.3394252871832335e+00 2.6821591665268882e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 211 2.1441232745526637e-01 1.1443622988282480e-01 -1.4227498958150975e-01 3.1430917014143572e-01 1.3957000000000000e-01 1 0 0 0 0 P 51 -213 -7.6257710677237800e-01 7.7460609351676896e-02 6.4082508535118141e-02 1.0992276856321250e+00 7.8528399142319272e-01 2 0 0 -29 0 P 52 -2112 1.8958574182614052e-01 -3.7371050445587350e-01 3.7220445291709599e-02 1.0294558956517494e+00 9.3957000000000002e-01 1 0 0 0 0 P 53 2212 -2.4586750929100034e-02 -1.6185255201267670e-01 -7.5126058968364262e-01 1.2130720602775755e+00 9.3827000000000005e-01 1 0 0 0 0 P 54 113 -2.1035377954560097e-01 5.4691116846051457e-01 -9.1540687954464985e+00 9.2071966776117620e+00 7.9506893393068967e-01 2 0 0 -30 0 P 55 -213 2.7319768139405398e-01 -5.1312214441354542e-01 -5.1874796306371664e+01 5.1882414788403892e+01 6.7271178095091089e-01 2 0 0 -31 0 P 56 -311 -2.1590089639418358e-01 2.9722924584704169e-01 -4.4495238129656663e+01 4.4499537638782328e+01 4.9767000000000000e-01 2 0 0 -32 0 P 57 -3122 -1.1091918139375312e-01 -3.5142689199777380e-02 -8.8011739133921523e+01 8.8018887207878691e+01 1.1156800000000000e+00 2 0 0 -33 0 P 58 331 3.2731680666042196e-01 2.7950378472260351e-01 -7.6617889120895001e+01 7.6625079664919340e+01 9.5741404619781656e-01 2 0 0 -34 0 P 59 2214 1.0986390703064876e-01 -3.9301244926135820e-01 -1.2936942441240066e+02 1.2937611367578873e+02 1.2507150719954385e+00 2 0 0 -35 0 V -15 0 2.5785909463777523e-01 -2.3161077643246146e-02 1.1455239494595666e+02 1.1455558400437623e+02 0 5 0 P 60 311 9.2010354125906552e-02 1.7012383061092673e-01 4.8952485271042569e+01 4.8955397022836486e+01 4.9767000000000000e-01 2 0 0 -36 0 P 61 -211 -1.5332122509393389e-01 1.4580873453503443e-01 3.6215215450895187e+01 3.6216102461816462e+01 1.3957000000000000e-01 1 0 0 0 0 P 62 -211 2.0583704223603921e-01 6.3273410218468912e-02 4.6461804912301496e+01 4.6462513577141529e+01 1.3957000000000000e-01 1 0 0 0 0 P 63 211 2.8991724117791684e-01 5.2028544175423359e-02 5.7943225851450350e+01 5.7944142592959523e+01 1.3957000000000000e-01 1 0 0 0 0 P 64 111 1.5726082237629177e-01 -4.8438179264187947e-01 7.3288414807268907e+01 7.3290308508356063e+01 1.3497999999999999e-01 2 0 0 -37 0 V -16 0 -2.0282725073253813e-04 -1.0208180139105589e-04 2.3117742869842077e-02 2.3118891743599497e-02 0 2 0 P 65 22 -5.1505462923036838e-01 -2.7949413224547187e-01 6.4605933509447709e+01 6.4608591091806289e+01 0 1 0 0 0 0 P 66 22 -1.7800124538034773e-01 -6.9316946588354605e-02 1.4386842095500963e+01 1.4388110187349826e+01 0 1 0 0 0 0 V -17 0 0 0 0 0 0 2 0 P 67 -321 3.9217517978623978e-01 -8.7829287407989063e-04 -1.8831910182297438e+00 1.9859132695512964e+00 4.9359999999999998e-01 1 0 0 0 0 P 68 211 1.2393290250705956e-01 -2.8208388972924842e-01 -2.5173079086820134e+00 2.5399310181935291e+00 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 3 0 P 69 211 2.5743083092272306e-01 2.4621768238646746e-01 -3.6494155060061129e+00 3.6694150896576394e+00 1.3957000000000000e-01 1 0 0 0 0 P 70 -211 -1.1012021625797939e-01 2.5573006647970126e-01 -4.0755950058422199e+00 4.0874782892972608e+00 1.3957000000000000e-01 1 0 0 0 0 P 71 111 1.3595197313248217e-01 5.8972376505851659e-02 -6.7869860565660822e+00 6.7899455088101979e+00 1.3497999999999999e-01 2 0 0 -38 0 V -19 0 0 0 0 0 0 2 0 P 72 -211 1.2492763074717285e-01 2.6682496435054881e-01 -6.9961498378451765e+01 6.9962257951109137e+01 1.3957000000000000e-01 1 0 0 0 0 P 73 111 1.4965718977936310e-01 -4.8029150415722816e-01 -6.3483887793092791e+01 6.3486024494606802e+01 1.3497999999999999e-01 2 0 0 -39 0 V -20 0 0 0 0 0 0 2 0 P 74 211 1.1882529222466663e-01 3.6224231609248578e-02 -7.4371855599287244e+01 7.4372090307528410e+01 1.3957000000000000e-01 1 0 0 0 0 P 75 -211 -3.4909195415473487e-01 2.1695483732234146e-02 -2.2419305299916157e+01 2.2422467879388716e+01 1.3957000000000000e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 76 -211 -2.9114411027491710e-01 -2.5926186051330624e-01 3.2432040550913149e+02 3.2432066984852759e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 211 -2.7422293896634337e-01 9.5895206958990453e-02 4.7442147999835981e+01 4.7443242729963281e+01 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 3 0 P 78 111 -7.6990489828550196e-02 3.7804977364497444e-01 1.9225912273654154e+02 1.9225955722458070e+02 1.3497999999999999e-01 2 0 0 -40 0 P 79 111 -8.2451721579192543e-03 4.0365734484909599e-02 1.3691717345018728e+02 1.3691724618383344e+02 1.3497999999999999e-01 2 0 0 -41 0 P 80 221 -1.5192931178728300e-01 3.7357986786634118e-01 3.1270193337487359e+02 3.1270267264978696e+02 5.4744999999999999e-01 2 0 0 -42 0 V -23 0 0 0 0 0 0 2 0 P 81 -321 -2.2657842560722324e-02 -7.5852161498036497e-01 4.3531006844321325e+01 4.3540418765310143e+01 4.9359999999999998e-01 1 0 0 0 0 P 82 211 -1.6561379911967949e-01 2.6048759670747549e-02 1.2966772734464554e+01 1.2968607535140100e+01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 2.3919117728660362e-04 -1.1678029072992981e-04 4.2137638995905415e-03 4.2226033360522695e-03 0 2 0 P 83 22 3.9317614630279624e-01 -2.5360419804957202e-01 7.1209653321763886e+00 7.1363190675128783e+00 0 1 0 0 0 0 P 84 22 1.3598375680984046e-01 -4.7475021641473119e-03 2.2010963012889664e+00 2.2052979500377918e+00 0 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 85 -321 -3.4910235449881688e-01 2.4765861936807892e-01 7.0497003456682927e+00 7.0799098277717887e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 111 5.3948570505676002e-02 -1.9513163546839155e-01 1.5810364106049550e+00 1.5996507542206750e+00 1.3497999999999999e-01 2 0 0 -43 0 V -26 0 0 0 0 0 0 2 0 P 87 311 -8.0267931132610271e-01 1.4928942492351230e-01 3.5111125339035101e+00 3.6389789864547537e+00 4.9767000000000000e-01 2 0 0 -44 0 P 88 111 9.8711445921199611e-02 8.5051583180247262e-02 8.8570242050974446e-01 9.0535412930749948e-01 1.3497999999999999e-01 2 0 0 -45 0 V -27 0 0 0 0 0 0 2 0 P 89 211 -1.0046890748565107e+00 -4.8742686313192694e-02 1.6213807902133612e+00 1.9131469986328706e+00 1.3957000000000000e-01 1 0 0 0 0 P 90 111 -8.2035996947119949e-01 -5.7999357126931805e-01 2.4147768201774875e+00 2.6189214791381250e+00 1.3497999999999999e-01 2 0 0 -46 0 V -28 0 0 0 0 0 0 3 0 P 91 -211 -2.7616696633462740e-01 1.6116935372983843e-01 5.9192080822965087e-01 6.8709081058576837e-01 1.3957000000000000e-01 1 0 0 0 0 P 92 211 3.2903622603483861e-02 2.1834325577759411e-01 9.9900421159463404e-01 1.0325917031468967e+00 1.3957000000000000e-01 1 0 0 0 0 P 93 111 -2.3900122868059499e-02 7.3985675612130292e-02 3.4301848021758959e-02 1.5950333302661590e-01 1.3497999999999999e-01 2 0 0 -47 0 V -29 0 0 0 0 0 0 2 0 P 94 -211 -7.2353295699103248e-01 2.5104476707555790e-01 -1.4666865790013892e-01 7.9215837749684637e-01 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -3.9044149781345586e-02 -1.7358415772388100e-01 2.1075116643525704e-01 3.0706930813527872e-01 1.3497999999999999e-01 2 0 0 -48 0 V -30 0 0 0 0 0 0 2 0 P 96 211 1.4973123256294960e-01 1.1486818400854069e-01 -5.7019155724052073e+00 5.7067447044211894e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 -211 -3.6008501210855060e-01 4.3204298445197392e-01 -3.4521532230412912e+00 3.5004519731905730e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 98 -211 2.9792221324221257e-01 2.0823280454569503e-02 -1.6139836565777486e+01 1.6143202761814653e+01 1.3957000000000000e-01 1 0 0 0 0 P 99 111 -2.4724531848158648e-02 -5.3394542486811492e-01 -3.5734959740594171e+01 3.5739212026589236e+01 1.3497999999999999e-01 2 0 0 -49 0 V -32 0 0 0 0 0 0 1 0 P 100 310 -2.1590089639418358e-01 2.9722924584704169e-01 -4.4495238129656663e+01 4.4499537638782328e+01 4.9767000000000000e-01 2 0 0 -50 0 V -33 0 -2.4481870029485728e+00 -7.7566272908322820e-01 -1.9425783092436529e+03 1.9427360801678353e+03 0 2 0 P 101 -2112 -4.2803298032880598e-02 -8.8044141459732370e-02 -7.9756507524841041e+01 7.9762101703992883e+01 9.3957000000000002e-01 1 0 0 0 0 P 102 111 -6.8115883360872514e-02 5.2901452259954997e-02 -8.2552316090804734e+00 8.2567855038858031e+00 1.3497999999999999e-01 2 0 0 -51 0 V -34 0 0 0 0 0 0 2 0 P 103 22 2.5772167276238295e-01 8.6152267216057718e-02 -1.5045721534160100e+01 1.5048175276665530e+01 0 1 0 0 0 0 P 104 113 6.9595133898038938e-02 1.9335151750654578e-01 -6.1572167586734899e+01 6.1576904388253809e+01 7.3559800107484796e-01 2 0 0 -52 0 V -35 0 0 0 0 0 0 2 0 P 105 2212 -7.4164719962746484e-02 -4.1829106231431401e-01 -1.1718254372184407e+02 1.1718706998442012e+02 9.3827000000000005e-01 1 0 0 0 0 P 106 111 1.8402862699339526e-01 2.5278613052955860e-02 -1.2186880690556592e+01 1.2189043691368614e+01 1.3497999999999999e-01 2 0 0 -53 0 V -36 0 2.5785909463777523e-01 -2.3161077643246146e-02 1.1455239494595666e+02 1.1455558400437623e+02 0 1 0 P 107 130 9.2010354125906552e-02 1.7012383061092673e-01 4.8952485271042569e+01 4.8955397022836486e+01 4.9767000000000000e-01 1 0 0 0 0 V -37 0 2.5789621685717323e-01 -2.3275418436503676e-02 1.1456969505015741e+02 1.1457288455559478e+02 0 2 0 P 108 22 1.2432578550614412e-01 -3.6205256494412880e-01 4.5716634126975300e+01 4.5718236786433998e+01 0 1 0 0 0 0 P 109 22 3.2935036870147656e-02 -1.2232922769775068e-01 2.7571780680293607e+01 2.7572071721922068e+01 0 1 0 0 0 0 V -38 0 5.7794478426511653e-05 2.5069718836712106e-05 -2.8852124039789010e-03 2.8864704953102433e-03 0 2 0 P 110 22 9.5056699445491860e-02 -2.5869020787896380e-02 -4.3988238649111935e+00 4.3999268603987316e+00 0 1 0 0 0 0 P 111 22 4.0895273686990308e-02 8.4841397293748039e-02 -2.3881621916548892e+00 2.3900186484114663e+00 0 1 0 0 0 0 V -39 0 1.6470648836544320e-04 -5.2858888475802550e-04 -6.9867730655650676e-02 6.9870082220607740e-02 0 2 0 P 112 22 4.7861002245246878e-02 -6.8712928716917324e-02 -6.1653196822028109e+00 6.1658883322572553e+00 0 1 0 0 0 0 P 113 22 1.0179618753411622e-01 -4.1157857544031085e-01 -5.7318568110889984e+01 5.7320136162349549e+01 0 1 0 0 0 0 V -40 0 -6.7514872706359128e-06 3.3152123594936962e-05 1.6859679977487826e-02 1.6859718078823097e-02 0 2 0 P 114 22 9.7389889478061292e-03 1.0427931024362186e-01 7.9415688049386972e+01 7.9415757110160413e+01 0 1 0 0 0 0 P 115 22 -8.6729478776356325e-02 2.7377046340135264e-01 1.1284343468715458e+02 1.1284380011442029e+02 0 1 0 0 0 0 V -41 0 -6.0388927663896903e-06 2.9564493902871235e-05 1.0028027462697835e-01 1.0028032789823592e-01 0 2 0 P 116 22 -2.2089459920217616e-02 3.2825196661953548e-02 1.0909318099708567e+01 1.0909389847209807e+01 0 1 0 0 0 0 P 117 22 1.3844287762298364e-02 7.5405378229560496e-03 1.2600785535047871e+02 1.2600785633662363e+02 0 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 118 22 -1.1457748065403257e-01 5.0987500351776327e-01 2.6991265903212241e+02 2.6991316493700162e+02 0 1 0 0 0 0 P 119 22 -3.7351831133250427e-02 -1.3629513565142209e-01 4.2789274342751177e+01 4.2789507712785330e+01 0 1 0 0 0 0 V -43 0 1.7704863548260841e-05 -6.4038378543382633e-05 5.1886516458573716e-04 5.2497402735388206e-04 0 2 0 P 120 22 -1.2036044490172391e-02 -1.6471106369420715e-01 1.2407967906968094e+00 1.2517393006028643e+00 0 1 0 0 0 0 P 121 22 6.5984614995848401e-02 -3.0420571774184394e-02 3.4023961990814561e-01 3.4791145361781067e-01 0 1 0 0 0 0 V -44 0 0 0 0 0 0 1 0 P 122 310 -8.0267931132610271e-01 1.4928942492351230e-01 3.5111125339035101e+00 3.6389789864547537e+00 4.9767000000000000e-01 2 0 0 -54 0 V -45 0 1.7835678247848633e-05 1.5367545859717152e-05 1.6003314760644076e-04 1.6358391673828971e-04 0 2 0 P 123 22 8.0059642894896241e-02 1.2184537919323872e-01 6.5974871804441970e-01 6.7566575598624024e-01 0 1 0 0 0 0 P 124 22 1.8651803026303378e-02 -3.6793796012991459e-02 2.2595370246532481e-01 2.2968837332125924e-01 0 1 0 0 0 0 V -46 0 -2.1884707007711738e-04 -1.5472463120997054e-04 6.4418895564422626e-04 6.9864853698414233e-04 0 2 0 P 125 22 -1.0847489828251816e-01 -1.2842478841659030e-01 4.7513822232976866e-01 5.0400005967850980e-01 0 1 0 0 0 0 P 126 22 -7.1188507118868127e-01 -4.5156878285272778e-01 1.9396385978477189e+00 2.1149214194596153e+00 0 1 0 0 0 0 V -47 0 -1.0218041077214673e-05 3.1631162597098711e-05 1.4665100009971854e-05 6.8192603770950445e-05 0 2 0 P 127 22 -4.7668016610794180e-02 6.8703734361618363e-02 -3.1487836247593382e-02 8.9352821748359013e-02 0 1 0 0 0 0 P 128 22 2.3767893742734685e-02 5.2819412505119376e-03 6.5789684269352333e-02 7.0150511278256888e-02 0 1 0 0 0 0 V -48 0 -4.1049147895001014e-06 -1.8249806443579336e-05 2.2157367617153666e-05 3.2283795432223875e-05 0 2 0 P 129 22 4.0125925342332502e-02 -1.1484523056078770e-01 1.4144434999142996e-01 1.8656371836891830e-01 0 1 0 0 0 0 P 130 22 -7.9170075123678088e-02 -5.8738927163093285e-02 6.9306816443827066e-02 1.2050558976636042e-01 0 1 0 0 0 0 V -49 0 -7.2758633650625230e-06 -1.5712790760201954e-04 -1.0515980081052046e-02 1.0517231431414484e-02 0 2 0 P 131 22 3.7529356272612856e-02 -1.6040127335950977e-01 -8.2595060528787574e+00 8.2611486645997658e+00 0 1 0 0 0 0 P 132 22 -6.2253888120771497e-02 -3.7354415150860515e-01 -2.7475453687715415e+01 2.7478063361989470e+01 0 1 0 0 0 0 V -50 0 -1.3998978431428672e+00 1.9272295165489839e+00 -2.8850638847793454e+02 2.8853426642402979e+02 0 2 0 P 133 111 -1.5040768425725992e-01 1.7440984077596761e-01 -9.4670064986853557e+00 9.4707693938029074e+00 1.3497999999999999e-01 2 0 0 -55 0 P 134 111 -6.5493212136923676e-02 1.2281940507107408e-01 -3.5028231630971305e+01 3.5028768244979396e+01 1.3497999999999999e-01 2 0 0 -56 0 V -51 0 -2.4482236870955267e+00 -7.7563423874363313e-01 -1.9425827551395960e+03 1.9427405269006360e+03 0 2 0 P 135 22 -6.5722069069683267e-02 8.0123856722561768e-02 -3.6448549734701783e+00 3.6463278788953155e+00 0 1 0 0 0 0 P 136 22 -2.3938142911892400e-03 -2.7222404462606774e-02 -4.6103766356102955e+00 4.6104576249904872e+00 0 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 137 211 6.7447833021299697e-02 4.0601703218308050e-01 -5.0250431120846059e+01 5.0252310460877283e+01 1.3957000000000000e-01 1 0 0 0 0 P 138 -211 2.1473008767392524e-03 -2.1266551467653472e-01 -1.1321736465888840e+01 1.1324593927376416e+01 1.3957000000000000e-01 1 0 0 0 0 V -53 0 1.2804409139743689e-05 1.7588443129933738e-06 -8.4794311107221998e-04 8.4809360911059157e-04 0 2 0 P 139 22 1.6734490684844081e-01 2.0202466369498320e-02 -6.6512454633929874e+00 6.6533809955391554e+00 0 1 0 0 0 0 P 140 22 1.6683720144954450e-02 5.0761466834575442e-03 -5.5356352271636036e+00 5.5356626958294584e+00 0 1 0 0 0 0 V -54 0 -5.8222884092080484e+01 1.0828808916396381e+01 2.5468091080855447e+02 2.6395579000515056e+02 0 2 0 P 141 211 -1.3265469591987608e-01 -8.1343026923346454e-02 4.8969072402476632e-01 5.3243849078982530e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 -6.7002461540622660e-01 2.3063245184685877e-01 3.0214218098787438e+00 3.1065404956649285e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 -1.3999534659928117e+00 1.9272940157296623e+00 -2.8850988950838058e+02 2.8853776884604667e+02 0 2 0 P 143 22 -6.7565524069135366e-02 1.3538131489441185e-01 -7.6122739208891756e+00 7.6137774755448975e+00 0 1 0 0 0 0 P 144 22 -8.2842160188124569e-02 3.9028525881555760e-02 -1.8547325777961796e+00 1.8569919182580170e+00 0 1 0 0 0 0 V -56 0 -1.3999239766716209e+00 1.9272785247492110e+00 -2.8852036567142750e+02 2.8854824383164600e+02 0 2 0 P 145 22 -7.6119441838485300e-03 1.2972071826891851e-01 -1.9895666832968026e+01 1.9896091177286731e+01 0 1 0 0 0 0 P 146 22 -5.7881267953075147e-02 -6.9013131978444371e-03 -1.5132564798003278e+01 1.5132677067692685e+01 0 1 0 0 0 0 E 31 63 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 397 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -2.0180182237366046e-01 9.9554924336329675e-01 8.5325915541009820e+01 8.5331961803201366e+01 0 3 0 0 -3 0 P 17 2101 1.0362161035424292e-01 -7.7648881467009434e-01 1.0399295017303125e+03 1.0399299581532509e+03 5.7933000000000001e-01 2 0 0 -11 0 P 59 2 9.8180212019417540e-02 -2.1906042869320241e-01 5.7090307828852895e+02 5.7090322413360366e+02 3.3000000000000002e-01 2 0 0 -25 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 7.3096880227706806e-01 5.7173021325085249e-01 -8.3790887271250497e+01 8.3796026042587826e+01 0 3 0 0 -4 0 P 154 2203 -7.3096880227706806e-01 -5.7173021325085249e-01 -2.5417960159509062e+03 2.5417963023902398e+03 7.7132999999999996e-01 2 0 0 -25 0 V -3 0 0 0 0 0 0 8 0 P 5 -2 -6.6704466653239320e+00 -2.5987057861781429e+00 2.4610656091459148e+01 2.5630694952149110e+01 0 3 0 0 -5 0 P 11 2 5.8928051972149644e+00 2.3124199880116141e+00 6.2074519916991742e+00 8.8720797743555799e+00 3.3000000000000002e-01 2 0 0 -11 0 P 12 21 2.0482303038963159e+00 1.5001806129597837e+00 3.2432360819613861e+00 4.1187825303887831e+00 0 2 0 0 -11 0 P 13 21 3.1125846347741426e-01 7.3553529776499393e-01 6.1515852664434389e-01 1.0081240093598600e+00 0 2 0 0 -11 0 P 14 21 -2.2274480679893377e-01 -4.9787808735282357e-01 -2.7418987146950691e-01 6.1047352476455918e-01 0 2 0 0 -11 0 P 15 21 7.1659311477993537e-02 -4.9043234277031955e-01 4.8629196549609306e+00 4.8881127759455412e+00 0 2 0 0 -11 0 P 16 21 -7.3259299251501342e-01 7.5331125011149480e-01 3.2921307773576693e+01 3.2938073347644178e+01 0 2 0 0 -11 0 P 60 21 -8.4857385592297729e-01 -6.4744265780737542e-01 1.0130119166037295e+01 1.0186195261343698e+01 0 2 0 0 -25 0 V -4 0 0 0 0 0 0 2 0 P 6 1 9.5113545186800197e-01 1.6089837527514088e+00 -7.1424908276961744e+01 7.1449359757361123e+01 0 3 0 0 -5 0 P 153 21 -2.7156342747022610e-01 -1.1086925708760931e+00 -9.3567228681515182e+00 9.4260919125184000e+00 0 2 0 0 -25 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -2.9194370095046658e+00 -6.3069597241460162e-01 1.4673002386716751e+00 3.3277409533332816e+00 0 3 0 0 -6 0 P 8 -24 -2.7998742039512643e+00 -3.5902606101213241e-01 -4.8281552424174265e+01 9.3752313756176960e+01 8.0314505756294864e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -2.9194370095046658e+00 -6.3069597241460162e-01 1.4673002386716751e+00 3.3277409533332820e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 -2.7998742039512643e+00 -3.5902606101213241e-01 -4.8281552424174265e+01 9.3752313756176960e+01 8.0314505756294864e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 11 0 P 18 3 -4.6973509530562900e+00 4.6274595799105507e+00 -1.7586618991444052e+01 1.8788764080963531e+01 5.0000000000000000e-01 2 0 0 -13 0 P 19 21 -5.0887545589354266e+00 6.0091694542756038e+00 -1.9938283230403201e+01 2.1436899931358138e+01 0 2 0 0 -13 0 P 20 21 -3.8842169224484566e+00 5.8540413205170134e+00 -1.6519297834384389e+01 1.7951159901913087e+01 0 2 0 0 -13 0 P 21 21 -1.1018714146741853e+00 1.6505211959214661e-01 -2.0815378153894857e+00 2.3609664321108812e+00 0 2 0 0 -13 0 P 22 21 -1.1239554173544800e-01 2.1153378995842476e-01 -1.6778520551195258e-01 2.9245713751739411e-01 0 2 0 0 -13 0 P 23 21 2.3877095620419713e+00 3.2425455341470868e+00 -2.6793545439826487e+00 4.8367550347360311e+00 0 2 0 0 -13 0 P 24 21 1.0745080888678598e+00 3.2783722653552794e-01 -5.7543495168391046e-01 1.2622084866472860e+00 0 2 0 0 -13 0 P 25 21 -8.9652352259050139e-01 -9.8701185797787727e-01 -1.0843959206404995e-01 1.3377989308838754e+00 0 2 0 0 -13 0 P 26 21 1.0191770984046460e+00 -3.5493715262741898e-01 1.7143572658604062e-01 1.0927454180081730e+00 0 2 0 0 -13 0 P 27 21 1.2650796962345856e+00 -6.5097701513931461e-01 1.1309520436962717e+00 1.8174845906376913e+00 0 2 0 0 -13 0 P 28 -4 7.2347642639399927e+00 -1.8803739060203874e+01 1.0072811970407125e+01 2.2575073811400863e+01 1.5000000000000000e+00 2 0 0 -13 0 V -9 0 0 0 0 0 2 1 0 P 55 1 -4.1471549645423975e-02 6.2753192348321629e-01 2.5724029661574238e-01 6.7947683891615707e-01 0 2 0 0 -9 0 P 56 -1 4.1471549645423975e-02 -6.2753192348321629e-01 -5.1086709334150682e-01 8.1024773463412902e-01 0 2 0 0 -9 0 P 157 91 0 0 -2.5362679672576444e-01 1.4897245735502862e+00 1.4679757331176186e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 158 -213 2.3961035702297298e-01 1.2059711549382682e-01 2.5823533084070682e-01 8.9521686965152047e-01 8.1410746843162551e-01 2 0 0 -29 0 P 159 211 -2.3961035702297298e-01 -1.2059711549382682e-01 -5.1186212756647131e-01 5.9450770389876573e-01 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 160 92 7.4722370871069845e+00 3.5366479040546484e+00 1.0875053858876854e+03 1.0923656041157094e+03 1.0259779000968794e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 15 0 P 161 223 4.7865661337159304e+00 1.8727398059159641e+00 5.5563593297709497e+00 7.6094902683841656e+00 7.8284315798390514e-01 2 0 0 -30 0 P 162 213 2.7543379168093716e+00 1.4106403218419798e+00 3.3626514112690820e+00 4.6354343563816887e+00 7.7688073797304225e-01 2 0 0 -31 0 P 163 3112 1.5151131000695958e-01 2.0772778086278806e-01 4.2375443515280553e-01 1.2959694760733669e+00 1.1974400000000001e+00 2 0 0 -32 0 P 164 -3112 4.9449916213220757e-01 4.1462629916207872e-01 2.2461917316956752e+00 2.6259634876449276e+00 1.1974400000000001e+00 2 0 0 -33 0 P 165 223 -4.2105045885049863e-01 6.3306316866878834e-02 2.5629306680160542e+00 2.7088181201402901e+00 7.6667517260551166e-01 2 0 0 -34 0 P 166 111 1.4083003684746565e-02 -3.0768474397191085e-03 2.6598738097276660e+00 2.6633355181159808e+00 1.3497999999999999e-01 2 0 0 -35 0 P 167 -211 -2.2687374904085125e-01 1.4906390160111698e-02 3.8653521679708125e-01 4.6966281223429135e-01 1.3957000000000000e-01 1 0 0 0 0 P 168 113 2.8004690282860273e-01 3.9800802097968208e-01 4.7826292650281978e+01 4.7835448927730461e+01 7.9941778473179059e-01 2 0 0 -36 0 P 169 321 1.7875416144142153e-01 -1.1408233520782737e-01 5.1368172840912374e+00 5.1648330659932826e+00 4.9359999999999998e-01 1 0 0 0 0 P 170 -311 -2.0715128859320672e-01 2.0072742845743324e-02 5.6775046145099971e+01 5.6777608744808042e+01 4.9767000000000000e-01 2 0 0 -37 0 P 171 -211 -4.8902168519944267e-01 -9.3407736117135001e-02 4.0448888941527088e+01 4.0452193557366627e+01 1.3957000000000000e-01 1 0 0 0 0 P 172 111 5.5864154062652127e-01 -2.2752506855061994e-01 7.9727927493339948e+01 7.9730323528826872e+01 1.3497999999999999e-01 2 0 0 -38 0 P 173 213 -1.0682794701610106e-01 -1.6064049349833273e-01 1.3412588036855735e+02 1.3412793891186575e+02 7.1763119094628436e-01 2 0 0 -39 0 P 174 -211 -5.2111230289190769e-01 3.3032985351272781e-01 1.7699204448457007e+02 1.7699317491490251e+02 1.3957000000000000e-01 1 0 0 0 0 P 175 2212 2.2583438745323131e-01 -5.9697714727967188e-01 5.2927419191778858e+02 5.2927540842524127e+02 9.3827000000000005e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 176 92 -2.7998742039512523e+00 -3.5902606101213053e-01 -4.8281552424174265e+01 9.3752313756176960e+01 8.0314505756294878e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 17 0 P 177 333 -5.7399638959785628e+00 7.0862077389650180e+00 -2.3026913583162791e+01 2.4788071007418971e+01 1.0238112401672246e+00 2 0 0 -40 0 P 178 3322 -3.7519399715002288e+00 3.5022889342986741e+00 -1.3664766319114563e+01 1.4655984507874583e+01 1.3149000000000000e+00 2 0 0 -41 0 P 179 -3212 -3.1939944279262367e+00 4.2339728220541355e+00 -1.3148931276074576e+01 1.4228306134918137e+01 1.1925500000000000e+00 2 0 0 -42 0 P 180 113 -6.8266582847861457e-01 1.1551954118993197e+00 -2.5057928822545010e+00 2.9449313255428762e+00 7.7013860464254735e-01 2 0 0 -43 0 P 181 -211 -3.5468827677331716e-03 1.3720609236098638e-01 -8.6873285407956891e-01 8.9051369939803460e-01 1.3957000000000000e-01 1 0 0 0 0 P 182 223 1.7037282097656115e-01 8.5344628837635506e-01 -1.0478235198096222e+00 1.5672753639890562e+00 7.7525510164713840e-01 2 0 0 -44 0 P 183 223 -5.1056007133354464e-01 1.2901341259524470e+00 -3.2131955937916352e+00 3.5861630049795528e+00 7.8155071808219689e-01 2 0 0 -45 0 P 184 211 1.5525287688897815e-01 6.0063203768802198e-02 2.6029075124444562e-01 3.3903112587589240e-01 1.3957000000000000e-01 1 0 0 0 0 P 185 -211 4.5589559511067435e-01 2.0097362047591691e-01 -8.5293680736268185e-01 9.9760321371904093e-01 1.3957000000000000e-01 1 0 0 0 0 P 186 211 4.8509732204563394e-01 6.2103849892900131e-01 1.8029601623082862e-02 8.0050801397769888e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 -2.2936377989002742e-02 -7.9294187792047166e-02 -4.9518877291927210e-01 5.1985110067994400e-01 1.3497999999999999e-01 2 0 0 -46 0 P 188 223 2.9898796408154033e-01 6.6544941815527836e-01 -3.4028634957382620e-01 1.1255173643147076e+00 7.8662431114148967e-01 2 0 0 -47 0 P 189 1114 1.6075118162090631e+00 5.4134057476996976e-02 -2.8929636823208860e-01 2.0925949331382996e+00 1.3069951913045155e+00 2 0 0 -48 0 P 190 113 -4.8115918879648845e-01 -1.1803721408314669e+00 4.6404325528746293e-01 1.6555932306323609e+00 9.4913657959408415e-01 2 0 0 -49 0 P 191 -2114 1.8469071815911682e+00 -3.9123020914106261e+00 2.3147310077169538e+00 5.0496373905539915e+00 1.1931824446100434e+00 2 0 0 -50 0 P 192 221 2.4719974424789326e+00 -5.1354339540834317e+00 2.6995339094083484e+00 6.3301372878414650e+00 5.4744999999999999e-01 2 0 0 -51 0 P 193 -423 4.0948694214366101e+00 -9.9117338996074835e+00 5.4156833769205770e+00 1.2180595051322351e+01 2.0066999999999999e+00 2 0 0 -52 0 V -15 0 0 0 0 0 6 1 0 P 29 2 3.6485600395118207e+00 4.7055985080371221e-01 1.5152516552244149e+00 3.9786184177137720e+00 0 2 0 0 -15 0 P 30 21 2.4699040772910510e+00 1.1022525344542540e-01 1.8597044174336668e+00 3.0937156103524384e+00 0 2 0 0 -15 0 P 31 21 1.6075104643004923e+00 -8.8437155853659952e-02 -6.2246805271897154e-01 1.7260873384701068e+00 0 2 0 0 -15 0 P 32 21 2.6890471771159490e+00 -1.5353151493210682e-01 -1.0985912779198019e+00 2.9088570681204096e+00 0 2 0 0 -15 0 P 33 21 -1.5730089189805287e+00 -1.1047466187220125e+00 -2.0452362206751054e+01 2.0542491133913355e+01 0 2 0 0 -15 0 P 34 -2 -3.6485600395118207e+00 -4.7055985080371221e-01 -1.0637228823498910e+02 1.0643588267723771e+02 0 2 0 0 -15 0 P 194 92 5.1934527997269626e+00 -1.2364900360623539e+00 -1.2517075369972085e+02 1.3868565224580780e+02 5.9476816470761790e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 15 0 P 195 113 2.5680628494422839e+00 2.1283975597538562e-01 1.5575179093032532e+00 3.1078460988809309e+00 7.6980372571176825e-01 2 0 0 -53 0 P 196 223 2.0742909048968925e+00 3.4028044930118551e-01 2.3038187842619934e-01 2.2564559527931212e+00 7.8742879974874125e-01 2 0 0 -54 0 P 197 213 2.5633528303253184e+00 -3.4740187281198104e-01 4.7632809609232975e-02 2.7248133583490790e+00 8.5491119966708862e-01 2 0 0 -55 0 P 198 311 5.9982340706861259e-01 2.1840518112028973e-01 -9.8774396052939684e-01 1.2770287793428479e+00 4.9767000000000000e-01 2 0 0 -56 0 P 199 -313 -2.8001944172855031e-01 -9.9708766917497166e-02 5.4227768779848795e-01 1.0374449841292193e+00 8.3299116349732272e-01 2 0 0 -57 0 P 200 113 1.9879731937838077e+00 7.7226588995970125e-02 -1.5454028064531506e+00 2.7535906403992461e+00 1.1117509682703717e+00 2 0 0 -58 0 P 201 -211 3.7592520216072983e-01 -3.0553693534414439e-01 -7.9547989466357361e-01 9.4177525142310237e-01 1.3957000000000000e-01 1 0 0 0 0 P 202 221 -8.2088659503854844e-01 -5.1256809649806234e-01 -1.0235245405543166e+01 1.0295461663745542e+01 5.4744999999999999e-01 2 0 0 -59 0 P 203 113 3.8864429435674458e-01 3.8459133654508448e-01 -5.6224983752032553e+00 5.6929711241631029e+00 7.0602928955537603e-01 2 0 0 -60 0 P 204 213 -5.1008691278162266e-01 -5.4765069548333944e-01 -6.6501492251941530e+00 6.7195033372260724e+00 6.0591289703013618e-01 2 0 0 -61 0 P 205 221 -3.4108954810899322e-01 1.2763944730710539e-01 -8.5654879367348453e+00 8.5906879238619904e+00 5.4744999999999999e-01 2 0 0 -62 0 P 206 113 2.8950229186748378e-02 1.9794214364434154e-01 -1.2189508578659135e+01 1.2212941789662969e+01 7.2925205552741812e-01 2 0 0 -63 0 P 207 223 -9.8444390955544436e-01 -9.5101972283364400e-01 -2.0792747019893703e+01 2.0852483693726452e+01 7.8369588460683703e-01 2 0 0 -64 0 P 208 223 -2.0407022047526491e+00 3.0224655499324588e-02 -5.2232399247003265e+01 5.2278360676633419e+01 7.9880217797745767e-01 2 0 0 -65 0 P 209 -211 -4.1634149952836413e-01 -6.1753504562372899e-02 -7.9319015349804110e+00 7.9442869714707474e+00 1.3957000000000000e-01 1 0 0 0 0 V -17 0 0 0 0 0 9 1 0 P 35 3 2.8468656959454406e+00 9.5706696829264803e-01 2.8707856982615010e+02 2.8709428046357920e+02 0 2 0 0 -17 0 P 36 21 1.1704183166298763e+00 2.7187169900238342e+00 1.2749507728196389e+02 1.2752943202352033e+02 0 2 0 0 -17 0 P 37 21 -3.3785041113578962e-01 2.1268527959112102e+00 6.7422335679303586e+01 6.7456719414514026e+01 0 2 0 0 -17 0 P 38 21 -3.4254024462867466e-01 1.1991968821628010e+00 1.6480089725821845e+01 1.6527212842839472e+01 0 2 0 0 -17 0 P 39 21 -1.0619234099298591e-01 3.8207775995079524e-01 3.9996188027744757e+00 4.0192301247181303e+00 0 2 0 0 -17 0 P 40 21 -1.6075104643004923e+00 8.8437155853659952e-02 2.8726868917465151e+00 3.2930595198664907e+00 0 2 0 0 -17 0 P 41 21 -6.2254120849338057e-01 -8.8630887323534802e-01 1.1869103468821474e+00 1.6068158409052391e+00 0 2 0 0 -17 0 P 42 21 -2.5643823598802933e+00 -1.3999197172555040e+00 2.3529147524326692e+00 3.7512717756303982e+00 0 2 0 0 -17 0 P 43 -3 -2.8468656959454406e+00 -9.5706696829264803e-01 -1.2184972864218100e+00 3.2411968637472661e+00 0 2 0 0 -17 0 P 210 92 -4.4105987128017405e+00 4.2290529934114494e+00 5.0766970602065345e+02 5.1451921886932053e+02 8.3451530271005879e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 16 0 P 211 -321 1.5430936695689847e+00 8.4810646806342971e-01 1.6222187750926037e+02 1.6223218424913014e+02 4.9359999999999998e-01 1 0 0 0 0 P 212 321 -6.5628671262590935e-02 2.8662066256643493e-01 2.3586252577561293e+01 2.3593249249292018e+01 4.9359999999999998e-01 1 0 0 0 0 P 213 -323 7.3470560381025796e-01 1.7701013544714403e+00 7.9479978502999970e+01 7.9508504327114977e+01 9.2856145092998943e-01 2 0 0 -66 0 P 214 221 3.7331949683650856e-01 4.7933690096234488e-01 5.8884569860346438e+01 5.8890248772202199e+01 5.4744999999999999e-01 2 0 0 -67 0 P 215 2214 5.5651668430366075e-01 4.4253064935630820e-01 3.2458406764640671e+01 3.2486856311661043e+01 1.1584986491625984e+00 2 0 0 -68 0 P 216 -213 2.8313629132250562e-01 2.5470997705528453e-01 3.3110545798609728e+01 3.3121536890535815e+01 7.6349170094845376e-01 2 0 0 -69 0 P 217 -1114 5.6370352004652867e-02 2.3720077183857660e+00 9.1031170342335102e+01 9.1070149131711091e+01 1.2118129988575765e+00 2 0 0 -70 0 P 218 2112 -4.5074414722030587e-01 -4.6505335864612823e-01 5.7084705038817329e+00 5.8214149646996622e+00 9.3957000000000002e-01 1 0 0 0 0 P 219 -2212 -4.3510083392047666e-01 7.8994199981626401e-01 1.3024933328502815e+01 1.3089788382689594e+01 9.3827000000000005e-01 1 0 0 0 0 P 220 323 -4.7045814011422188e-01 1.9245830959390497e-01 2.5391772544464946e+00 2.7408829621829489e+00 8.9813541315041234e-01 2 0 0 -71 0 P 221 -323 -2.9657252060384215e-01 -4.5104087161568701e-01 2.3009328978194215e+00 2.5596067004968006e+00 9.8280269287140432e-01 2 0 0 -72 0 P 222 221 -1.0859344143153280e+00 -4.3961400252225400e-03 8.3575320065675851e-01 1.4756211550223552e+00 5.4744999999999999e-01 2 0 0 -73 0 P 223 2212 -3.9641048738961326e-01 6.4973770677116075e-03 1.1246452740354640e+00 1.5173533127559760e+00 9.3827000000000005e-01 1 0 0 0 0 P 224 -213 -9.0325108867966164e-01 -6.0566422615361670e-01 1.0552420917946042e+00 1.6794282327446550e+00 7.2405223057562196e-01 2 0 0 -74 0 P 225 -1114 -2.4796244477396598e+00 -1.0552479543486821e+00 3.7400557077741765e-02 2.9501800887455469e+00 1.2000325442985968e+00 2 0 0 -75 0 P 226 313 -1.3740160594026092e+00 -6.3185587313810465e-01 2.7034955668473348e-01 1.7822141383356360e+00 9.0334731757414444e-01 2 0 0 -76 0 V -19 0 0 0 0 0 2 1 0 P 44 2 3.2671277356466566e-01 -2.5374830101425654e+00 -9.1913614099462269e+00 9.5407906292623981e+00 0 2 0 0 -19 0 P 45 -2 -3.2671277356466566e-01 2.5374830101425654e+00 -6.5771362113425312e+01 6.5821103268773086e+01 0 2 0 0 -19 0 P 227 92 0 0 -7.4962723523371537e+01 7.5361893898035490e+01 7.7462980743913050e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 4 0 P 228 223 -4.7747738801714026e-02 -9.8087405764038849e-01 -4.4591910497810865e+00 4.6343273437728820e+00 7.9259784713350634e-01 2 0 0 -77 0 P 229 223 -1.8822111500024638e-01 -4.3332127144782367e-01 -7.1534963760675572e+00 7.2112421735754442e+00 7.7865831474423342e-01 2 0 0 -78 0 P 230 211 9.5433905850303535e-01 -8.8380225573260951e-01 -7.4285367531009241e+00 7.5428447911178527e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 -211 -7.1837020470107493e-01 2.2979975848208216e+00 -5.5921499344421974e+01 5.5973479589569308e+01 1.3957000000000000e-01 1 0 0 0 0 V -21 0 0 0 0 0 9 1 0 P 46 2 1.6975533337910964e+00 1.5282336734512216e+00 1.3509167027949871e+00 2.6537071088622346e+00 0 2 0 0 -21 0 P 47 21 1.5730089189805287e+00 1.1047466187220125e+00 -2.1538868122368868e-01 1.9342219197313661e+00 0 2 0 0 -21 0 P 48 21 8.9629993876667335e-01 7.6020578604248701e-01 -3.2898281324766654e-01 1.2204491422332875e+00 0 2 0 0 -21 0 P 49 21 -6.6194507772632707e-02 1.9426178746408980e+00 -3.3701884869762742e+00 3.8905419105159385e+00 0 2 0 0 -21 0 P 50 21 -1.3405156616508944e+00 1.2555491423605816e-01 -6.8416777881106242e+01 6.8430024418439658e+01 0 2 0 0 -21 0 P 51 21 -1.8560547120463311e+00 1.1364970788914945e+00 -1.2386038136671026e+02 1.2387950047126984e+02 0 2 0 0 -21 0 P 52 21 1.5230005833493649e+00 -1.3248270312205332e+00 -3.2420049094890271e+02 3.2420677511265723e+02 0 2 0 0 -21 0 P 53 21 1.1892165592818831e+00 -2.9742795699844171e-01 -6.1204081441575454e+02 6.1204204202825360e+02 0 2 0 0 -21 0 P 54 -2 -1.6975533337910964e+00 -1.5282336734512216e+00 -5.9394278969205720e+02 5.9394718166909843e+02 0 2 0 0 -21 0 P 232 92 1.9187611189085911e+00 3.4473672843139753e+00 -1.7250248975831835e+03 1.7322044437810616e+03 1.5749848185795335e+02 2 0 0 -22 0 V -22 0 0 0 0 0 0 20 0 P 233 221 2.2902403170784238e+00 1.5130811909686983e+00 3.3438241184270640e-01 2.8188878126460581e+00 5.4744999999999999e-01 2 0 0 -79 0 P 234 213 6.4793119798482665e-02 6.7138450670510030e-01 1.1963975051514351e-01 9.0460456280879664e-01 5.9079644627764716e-01 2 0 0 -80 0 P 235 111 -1.9631411115809450e-02 8.3475935881558438e-01 -1.1691670368780018e+00 1.4430453007285289e+00 1.3497999999999999e-01 2 0 0 -81 0 P 236 -213 6.4295921945076306e-01 4.9651457983584713e-01 -4.3201110310630347e-01 1.4146287204544272e+00 1.0745313106936913e+00 2 0 0 -82 0 P 237 111 -8.6865344725378185e-02 1.8247564116386975e-01 9.1533598259211035e-02 2.5969395014651914e-01 1.3497999999999999e-01 2 0 0 -83 0 P 238 211 1.1383701735940814e+00 3.8914312152682690e-01 -4.6963792856698577e-01 1.2989836758054163e+00 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.9318121363070971e-01 4.3690902670756498e-01 -1.6876058313602116e+00 1.8984810101700165e+00 5.6753810166222662e-01 2 0 0 -84 0 P 240 323 5.3629740862828290e-02 4.6065456203298893e-01 -3.1046958736408392e+00 3.2638816578996561e+00 8.9370478030753264e-01 2 0 0 -85 0 P 241 -323 -6.9817697226718201e-01 -5.6572812175342511e-02 -6.8767356951886836e+00 6.9678071462544757e+00 8.7760528612306765e-01 2 0 0 -86 0 P 242 113 -3.9714039706789778e-01 7.3354904763402107e-01 -1.2640727807057814e+01 1.2692891714103633e+01 7.9100308063115010e-01 2 0 0 -87 0 P 243 211 -9.6440357805532717e-01 -9.7682791267008656e-02 -6.0856426991260527e+01 6.0864306470349256e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 -213 -1.5073742815091667e-01 3.5519275021634644e-01 -2.0030832175145125e+01 2.0047892368621358e+01 7.3134611022788998e-01 2 0 0 -88 0 P 245 211 -1.0676163195371946e+00 3.1306174924415298e-01 -1.0777499217926663e+02 1.0778082497035577e+02 1.3957000000000000e-01 1 0 0 0 0 P 246 2112 9.3336469996875548e-01 -7.7810483157599947e-02 -1.0231497881584126e+02 1.0232357942334397e+02 9.3957000000000002e-01 1 0 0 0 0 P 247 -2112 1.0323980541357605e-01 6.0340570356296169e-02 -1.7170444802764911e+02 1.7170706031991347e+02 9.3957000000000002e-01 1 0 0 0 0 P 248 -211 3.4077611333365160e-01 -8.6544569463474641e-01 -1.2076208014096454e+02 1.2076574267716580e+02 1.3957000000000000e-01 1 0 0 0 0 P 249 211 4.3937369568651358e-01 -4.2191215839674184e-01 -1.9725915018286943e+02 1.9726014009365048e+02 1.3957000000000000e-01 1 0 0 0 0 P 250 223 1.7430303437643876e-01 -4.8224373919419666e-02 -2.7418939547953249e+02 2.7419057362195383e+02 7.8317467182311373e-01 2 0 0 -89 0 P 251 311 -7.6724278086243736e-01 -6.4222529857398059e-01 -3.2164576180171156e+02 3.2164770304675142e+02 4.9767000000000000e-01 2 0 0 -90 0 P 252 -321 -6.0365578250348939e-01 -7.8982520876848350e-01 -3.2265180627376111e+02 3.2265371523793868e+02 4.9359999999999998e-01 1 0 0 0 0 V -23 0 0 0 0 0 2 1 0 P 57 1 4.0366658821228807e-01 -2.3665956682124964e-01 8.2468897658998574e-01 9.4819110579883026e-01 0 2 0 0 -23 0 P 58 -1 -4.0366658821228807e-01 2.3665956682124964e-01 -6.0505532586031396e+00 6.0686200408494884e+00 0 2 0 0 -23 0 P 253 92 0 0 -5.2258642820131538e+00 7.0168111466483181e+00 4.6825186784151995e+00 2 0 0 -24 0 V -24 0 0 0 0 0 0 4 0 P 254 311 3.7855820012965080e-01 7.1448116572231249e-03 5.1778987993375447e-01 8.1187384973333732e-01 4.9767000000000000e-01 2 0 0 -91 0 P 255 -323 -2.3737823587324949e-01 3.2642474260220078e-01 -2.0695967428290731e+00 2.2885660633020350e+00 8.8960800846207333e-01 2 0 0 -92 0 P 256 213 -2.2154514847708398e-01 -3.3134079370253700e-01 -2.1054842074086237e+00 2.3399496367359576e+00 9.3991041085225735e-01 2 0 0 -93 0 P 257 111 8.0365184220682687e-02 -2.2287605568869144e-03 -1.5685732117092115e+00 1.5764215968769888e+00 1.3497999999999999e-01 2 0 0 -94 0 V -25 0 0 0 0 0 92 1 0 P 61 21 -1.3747785749975552e+00 1.8514619980831082e-01 5.8133939284764446e+00 5.9766080859650286e+00 0 2 0 0 -25 0 P 62 21 -5.4507302838631189e+00 4.8386262785386549e+00 3.8515521217810900e+01 3.9199083402171908e+01 0 2 0 0 -25 0 P 63 21 -1.1325194528802272e+00 7.0250157661872559e-01 8.9201649648754966e+00 9.0191713464650505e+00 0 2 0 0 -25 0 P 64 21 -4.0743362626448194e+00 3.4904327646753619e+00 5.8635971706596450e+01 5.8880901104200177e+01 0 2 0 0 -25 0 P 65 21 -4.6106037535919970e+00 1.7588323392676473e+00 6.4375281827433227e+01 6.4564139183696582e+01 0 2 0 0 -25 0 P 66 21 -2.6890471771159490e+00 1.5353151493210682e-01 2.5888586754360663e+01 2.6028320552522995e+01 0 2 0 0 -25 0 P 67 21 -2.9205928448132408e+00 -3.2898840341182125e+00 6.9341817422215655e+01 6.9481226550335236e+01 0 2 0 0 -25 0 P 68 21 -1.8623937905272061e+00 -2.3499840264715686e+00 5.4441428215520439e+01 5.4523940078660225e+01 0 2 0 0 -25 0 P 69 21 -1.1244398590154165e+00 -4.5393707772022424e-01 2.7020482823018188e+01 2.7047678566858426e+01 0 2 0 0 -25 0 P 70 21 3.3785041113578962e-01 -2.1268527959112102e+00 2.4828715802861504e+02 2.4829649713123669e+02 0 2 0 0 -25 0 P 71 21 -1.1704183166298763e+00 -2.7187169900238342e+00 2.2253426507329476e+02 2.2255394948825142e+02 0 2 0 0 -25 0 P 72 21 -2.4699040772910510e+00 -1.1022525344542540e-01 1.1001216751641883e+02 1.1003994537175177e+02 0 2 0 0 -25 0 P 73 21 -2.1292914840063110e-01 2.5149209985076265e-01 2.2498057496384320e+01 2.2500470621947901e+01 0 2 0 0 -25 0 P 74 21 -1.8015622627404697e+00 6.9228600826117352e+00 6.5398937935409549e+02 6.5402850085165630e+02 0 2 0 0 -25 0 P 75 21 -2.2299707840191019e+00 5.6503978058556852e+00 5.7614395399365264e+02 5.7617597614661281e+02 0 2 0 0 -25 0 P 76 21 -1.2219288515744164e+00 2.5824565732809474e-01 3.1801361942996795e+02 3.1801607183267691e+02 0 2 0 0 -25 0 P 77 21 -4.4547986131170847e-01 1.4008475738479294e+00 4.9026038883926543e+02 4.9026259258795153e+02 0 2 0 0 -25 0 P 78 21 2.9205928448132408e+00 3.2898840341182125e+00 5.6636995662707307e+02 5.6638704166786488e+02 0 2 0 0 -25 0 P 79 21 3.0169508598847181e+00 1.4631503749450971e+00 3.0026460965442112e+02 3.0028333056037684e+02 0 2 0 0 -25 0 P 80 21 4.6106037535919970e+00 -1.7588323392676473e+00 2.1137082631452014e+02 2.1142842139848022e+02 0 2 0 0 -25 0 P 81 21 4.4547986131170847e-01 -1.4008475738479294e+00 3.9937088914162253e+01 3.9964132633771641e+01 0 2 0 0 -25 0 P 82 21 1.8015622627404697e+00 -6.9228600826117352e+00 1.7418378011937762e+02 1.7433060796941436e+02 0 2 0 0 -25 0 P 83 21 4.0743362626448194e+00 -3.4904327646753619e+00 5.3631146817450428e+01 5.3898824159908585e+01 0 2 0 0 -25 0 P 84 21 1.3747785749975552e+00 -1.8514619980831082e-01 1.5402874226172219e+01 1.5465213534667287e+01 0 2 0 0 -25 0 P 85 21 1.1684891014246466e+01 -2.2345336958801689e+00 1.1372741705469568e+02 1.1434795673200955e+02 0 2 0 0 -25 0 P 86 21 4.5108431820605359e+00 -3.4142934125224502e+00 3.1694950246002634e+01 3.2195884470169766e+01 0 2 0 0 -25 0 P 87 21 1.2345484640833095e+00 -1.0913500077190488e+00 1.2324309688367354e+01 1.2433976196064727e+01 0 2 0 0 -25 0 P 88 21 1.1325194528802272e+00 -7.0250157661872559e-01 7.9583304488249613e+00 8.0691469381216763e+00 0 2 0 0 -25 0 P 89 21 1.0619234099298591e-01 -3.8207775995079524e-01 1.5552899145465666e+00 1.6050504497444480e+00 0 2 0 0 -25 0 P 90 21 2.1292914840063110e-01 -2.5149209985076265e-01 4.9654593294278321e-01 5.9594040142281246e-01 0 2 0 0 -25 0 P 91 21 3.4254024462867466e-01 -1.1991968821628010e+00 3.2178744163001167e+00 3.4511045681720618e+00 0 2 0 0 -25 0 P 92 21 1.4045742696414982e+00 -8.8760021260678112e-01 8.9068419089541191e+00 9.0604909253009023e+00 0 2 0 0 -25 0 P 93 21 5.4507302838631189e+00 -4.8386262785386549e+00 4.0892137078474313e+01 4.1536606020900663e+01 0 2 0 0 -25 0 P 94 21 5.5234288858025931e+00 -3.1698274263829447e+00 2.1381475642461471e+01 2.2309719254592629e+01 0 2 0 0 -25 0 P 95 21 1.0269937554339035e+00 5.2319766301401982e-01 6.3957838653252495e+00 6.4988078306900530e+00 0 2 0 0 -25 0 P 96 21 8.4374575090024728e-01 4.2045376117121769e-01 2.3432235043239076e+00 2.5257443751617581e+00 0 2 0 0 -25 0 P 97 21 2.5643823598802933e+00 1.3999197172555040e+00 6.7944707033701155e+00 7.3959897404864448e+00 0 2 0 0 -25 0 P 98 21 1.8623937905272061e+00 2.3499840264715686e+00 3.5387812048719143e+00 4.6383087404376759e+00 0 2 0 0 -25 0 P 99 21 6.2254120849338057e-01 8.8630887323534802e-01 1.3164260857151939e+00 1.7047224449157516e+00 0 2 0 0 -25 0 P 100 21 2.4231931187311298e-01 8.1971856701123269e-01 6.2579603043272047e-01 1.0593761606317929e+00 0 2 0 0 -25 0 P 101 21 1.5997532758601523e+00 1.9414195800851028e+00 2.8880323855905408e+00 3.8300197897377628e+00 0 2 0 0 -25 0 P 102 21 -1.1684891014246466e+01 2.2345336958801689e+00 6.7889110760694464e+00 1.3697413348936363e+01 0 2 0 0 -25 0 P 103 21 -2.8331991594692068e+00 1.9471440055691320e+00 3.1851113788401353e-01 3.4525116365621411e+00 0 2 0 0 -25 0 P 104 21 -4.7314232114151750e-01 1.5938290452809480e+00 1.9307949507164329e-01 1.6737485991191992e+00 0 2 0 0 -25 0 P 105 21 -1.1878596179517673e+00 1.5223303110085082e+00 -8.6007363437616080e-01 2.1138180395494777e+00 0 2 0 0 -25 0 P 106 21 -4.5108431820605359e+00 3.4142934125224502e+00 -2.3087596808657143e+00 6.1102763426810229e+00 0 2 0 0 -25 0 P 107 21 -1.1892165592818831e+00 2.9742795699844171e-01 -6.0951038131847624e-01 1.3690150910086791e+00 0 2 0 0 -25 0 P 108 21 -5.8516473878099902e+00 2.8451816873172389e+00 -4.8046466244814710e+00 8.0883536749606861e+00 0 2 0 0 -25 0 P 109 21 -2.0032799278085909e+00 1.1936775640387693e+00 -4.1611742387765283e+00 4.7700490187740989e+00 0 2 0 0 -25 0 P 110 21 -8.4374575090024728e-01 -4.2045376117121769e-01 -1.2930114268240473e+00 1.6001771174913120e+00 0 2 0 0 -25 0 P 111 21 -2.4231931187311298e-01 -8.1971856701123269e-01 -1.0627085164616650e+00 1.3638205779976194e+00 0 2 0 0 -25 0 P 112 21 -1.0269937554339035e+00 -5.2319766301401982e-01 -1.3312983480421039e+00 1.7609109176171289e+00 0 2 0 0 -25 0 P 113 21 -3.0169508598847181e+00 -1.4631503749450971e+00 -2.4250166473563700e-01 3.3617865143492787e+00 0 2 0 0 -25 0 P 114 21 -1.5997532758601523e+00 -1.9414195800851028e+00 -4.4742208347363044e-01 2.5550943329636557e+00 0 2 0 0 -25 0 P 115 21 6.6194507772632707e-02 -1.9426178746408980e+00 1.0784465717246023e+00 2.2228794226853892e+00 0 2 0 0 -25 0 P 116 21 1.1878596179517673e+00 -1.5223303110085082e+00 5.5626078845281157e-01 2.0094591592132258e+00 0 2 0 0 -25 0 P 117 21 2.8331991594692068e+00 -1.9471440055691320e+00 -3.0385772672744835e+00 4.5881738267897054e+00 0 2 0 0 -25 0 P 118 21 2.0032799278085909e+00 -1.1936775640387693e+00 -1.9066731019771557e+00 3.0122083118292986e+00 0 2 0 0 -25 0 P 119 21 5.8516473878099902e+00 -2.8451816873172389e+00 -5.1295380747603758e+00 8.2854690178363004e+00 0 2 0 0 -25 0 P 120 21 2.8978481837520254e+00 -8.0789233168059438e-01 -3.1914158319177330e+00 4.3858122540617694e+00 0 2 0 0 -25 0 P 121 21 1.7148448355235647e+01 5.7616498085157641e-01 -1.9423238417925415e+01 2.5916470394652851e+01 0 2 0 0 -25 0 P 122 21 1.1244398590154165e+00 4.5393707772022424e-01 -1.7818704318916263e+00 2.1553389763843267e+00 0 2 0 0 -25 0 P 123 21 2.2314286970916672e+00 1.5825590647358561e+00 -4.4258581071409306e+00 5.2030747840221307e+00 0 2 0 0 -25 0 P 124 21 4.1119414023967797e+00 2.8060982747979804e+00 -1.2636031166230017e+01 1.3581293504615285e+01 0 2 0 0 -25 0 P 125 21 3.4339385785935184e+00 9.6980101826452936e-01 -1.4797351819550425e+01 1.5221500223306903e+01 0 2 0 0 -25 0 P 126 21 1.2219288515744164e+00 -2.5824565732809474e-01 -5.6408839479472919e+00 5.7774884380713578e+00 0 2 0 0 -25 0 P 127 21 2.2299707840191019e+00 -5.6503978058556852e+00 -1.3946856469641618e+01 1.5212316406345938e+01 0 2 0 0 -25 0 P 128 21 -3.4339385785935184e+00 -9.6980101826452936e-01 -1.1917578638381944e+01 1.2440302599961040e+01 0 2 0 0 -25 0 P 129 21 -1.0217437862107010e+01 -3.9216070957622664e+00 -2.8986992843452917e+01 3.0984202309982766e+01 0 2 0 0 -25 0 P 130 21 -5.0567205389906915e+00 -1.1900630925317408e+00 -1.2907721665175194e+01 1.3913876216183958e+01 0 2 0 0 -25 0 P 131 21 -1.7148448355235647e+01 -5.7616498085157641e-01 -5.0011096122236289e+01 5.2872591977553945e+01 0 2 0 0 -25 0 P 132 21 -5.8788367541989262e+00 1.1716099953273167e+00 -1.9043332116309635e+01 1.9964515763116847e+01 0 2 0 0 -25 0 P 133 21 -2.8978481837520254e+00 8.0789233168059438e-01 -9.8032773995620666e+00 1.0254484964561975e+01 0 2 0 0 -25 0 P 134 21 -1.2345484640833095e+00 1.0913500077190488e+00 -1.2108691144949246e+01 1.2220292794908438e+01 0 2 0 0 -25 0 P 135 21 -5.5234288858025931e+00 3.1698274263829447e+00 -4.8372993359765097e+01 4.8790394127875686e+01 0 2 0 0 -25 0 P 136 21 -3.6314251053081179e+00 1.5588438973623790e+00 -3.1066843974476427e+01 3.1317184374178154e+01 0 2 0 0 -25 0 P 137 21 -1.5230005833493649e+00 1.3248270312205332e+00 -2.5487376525998993e+01 2.5567187166709981e+01 0 2 0 0 -25 0 P 138 21 -1.4045742696414982e+00 8.8760021260678112e-01 -2.3838917176925040e+01 2.3896749469010430e+01 0 2 0 0 -25 0 P 139 21 -4.1119414023967797e+00 -2.8060982747979804e+00 -1.3332398838803351e+02 1.3341689596642948e+02 0 2 0 0 -25 0 P 140 21 -8.9629993876667335e-01 -7.6020578604248701e-01 -2.5904480149313393e+01 2.5931127206959925e+01 0 2 0 0 -25 0 P 141 21 -2.2314286970916672e+00 -1.5825590647358561e+00 -6.8041798768652058e+01 6.8096770458644528e+01 0 2 0 0 -25 0 P 142 21 -2.1893559590415537e+00 -3.9735236325889858e+00 -1.1569058748132598e+02 1.1577950682805862e+02 0 2 0 0 -25 0 P 143 21 -1.0707667060640023e+00 -2.8084264670333310e+00 -4.9576011971580535e+01 4.9667039005419326e+01 0 2 0 0 -25 0 P 144 21 4.7314232114151750e-01 -1.5938290452809480e+00 -3.2981840590829471e+01 3.3023718195268728e+01 0 2 0 0 -25 0 P 145 21 1.0707667060640023e+00 2.8084264670333310e+00 -5.3605179423943262e+01 5.3689375686747361e+01 0 2 0 0 -25 0 P 146 21 1.0217437862107010e+01 3.9216070957622664e+00 -2.0837854075205587e+02 2.0866574056283355e+02 0 2 0 0 -25 0 P 147 21 1.3405156616508944e+00 -1.2555491423605816e-01 -3.7191801166830807e+01 3.7216163428122165e+01 0 2 0 0 -25 0 P 148 21 1.8560547120463311e+00 -1.1364970788914945e+00 -6.3447853061351523e+01 6.3485168526194308e+01 0 2 0 0 -25 0 P 149 21 3.6314251053081179e+00 -1.5588438973623790e+00 -2.0777778932469312e+02 2.0781536752427229e+02 0 2 0 0 -25 0 P 150 21 5.8788367541989262e+00 -1.1716099953273167e+00 -4.2913841687871542e+02 4.2918028173802884e+02 0 2 0 0 -25 0 P 151 21 5.0567205389906915e+00 1.1900630925317408e+00 -4.1321934746904026e+02 4.1325200035270620e+02 0 2 0 0 -25 0 P 152 21 2.1893559590415537e+00 3.9735236325889858e+00 -1.7970980976282823e+02 1.7976706565599287e+02 0 2 0 0 -25 0 P 258 92 -4.4545410794846685e+00 -8.9868561122905977e+00 2.6615360768905339e+02 1.0224619766395257e+04 1.0221150180774945e+04 2 0 0 -26 0 V -26 0 0 0 0 0 0 184 0 P 259 211 -7.8944149603932284e-02 -1.0217037885056321e-01 7.2318680738320218e+00 7.2343670481447111e+00 1.3957000000000000e-01 1 0 0 0 0 P 260 -213 -2.3741330762900414e-01 -1.0354566865695476e-01 2.8210772908059187e+02 2.8210862658378556e+02 6.6279649743224545e-01 2 0 0 -95 0 P 261 211 1.6574915781028346e-01 9.6986870415303794e-02 7.1637741717280861e+01 7.1638135077436871e+01 1.3957000000000000e-01 1 0 0 0 0 P 262 311 3.7944289431957788e-02 3.6418789708871115e-02 5.2179610511829033e+01 5.2182010259211197e+01 4.9767000000000000e-01 2 0 0 -96 0 P 263 -313 2.0892582617165598e-01 -3.5538572455536022e-01 7.6625660308308511e+01 7.6633109726781953e+01 9.8576858270994272e-01 2 0 0 -97 0 P 264 2112 -2.5029416728000758e-01 8.1603186515142451e-02 1.5129126214598701e+01 1.5160559292202299e+01 9.3957000000000002e-01 1 0 0 0 0 P 265 -3122 -5.7200886088732361e-01 -5.4261051048185771e-03 3.2404380940362543e+01 3.2428627315538378e+01 1.1156800000000000e+00 2 0 0 -98 0 P 266 -311 -1.2715333782632149e-01 -1.8700011622414425e-01 2.2440619101150446e+01 2.2447275961385749e+01 4.9767000000000000e-01 2 0 0 -99 0 P 267 1114 -9.6623207486155571e-01 1.3867132857019649e-02 1.2023000016120315e+01 1.2130624548174330e+01 1.2906300094433114e+00 2 0 0 -100 0 P 268 211 -1.1960405489264408e-01 1.2913804505894888e+00 1.0971864933813553e+01 1.1049129762513379e+01 1.3957000000000000e-01 1 0 0 0 0 P 269 -2214 -1.2515329486508615e+00 1.1576061890157213e-01 1.2676366030253174e+01 1.2788949787643796e+01 1.1345685062923625e+00 2 0 0 -101 0 P 270 211 -1.6590596466082412e+00 1.2084113344336171e+00 1.2857233650827336e+01 1.3020778540512021e+01 1.3957000000000000e-01 1 0 0 0 0 P 271 223 -1.1859746905034423e+00 3.7980412251615997e-01 1.1364675884422866e+01 1.1459745439609659e+01 7.8684207098803549e-01 2 0 0 -102 0 P 272 -213 -1.2774537319869157e+00 1.6148980757481828e+00 1.5577382174443175e+01 1.5742553717606350e+01 9.6611506076609410e-01 2 0 0 -103 0 P 273 223 -1.7061906200509720e+00 1.3667520365454593e+00 1.8963474699284966e+01 1.9108262118325559e+01 8.5627737962848760e-01 2 0 0 -104 0 P 274 213 -2.6535911471853302e+00 1.0358481281690666e+00 2.1746295619671152e+01 2.1943495878642032e+01 7.0789185388691955e-01 2 0 0 -105 0 P 275 -211 -1.6862439653662176e+00 7.1256811114759322e-01 2.5355738582137761e+01 2.5422118929278255e+01 1.3957000000000000e-01 1 0 0 0 0 P 276 213 -1.6450281523841714e+00 1.0250097759987178e+00 1.6034224856651072e+01 1.6167759062818210e+01 7.3709137606126096e-01 2 0 0 -106 0 P 277 -213 -1.3268895325412799e+00 6.3337642223640034e-01 1.9938517927183842e+01 2.0011110831134651e+01 8.5921943618060248e-01 2 0 0 -107 0 P 278 213 -1.7399233551881950e+00 -7.7816339061362694e-01 2.6793230356243207e+01 2.6871425744485517e+01 7.5063777833650625e-01 2 0 0 -108 0 P 279 -211 -3.7186190808784131e-01 2.4506547302600429e-01 1.6255304112638044e+01 1.6262002642479292e+01 1.3957000000000000e-01 1 0 0 0 0 P 280 211 -8.2598824670248105e-01 2.8456157441527730e-01 9.1190777494725204e+00 9.1618933992460931e+00 1.3957000000000000e-01 1 0 0 0 0 P 281 113 -9.9396740877305978e-01 -7.6965562044666902e-01 2.6813748083433765e+01 2.6852180562065719e+01 6.9438726381169313e-01 2 0 0 -109 0 P 282 -211 -7.4907822916153555e-01 -1.5467415340383003e-01 1.0254877146825788e+01 1.0284309766266514e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 213 -1.9180571315171671e+00 -4.6979184614859132e-01 2.4084460180722509e+01 2.4176947534777387e+01 7.5094764404633085e-01 2 0 0 -110 0 P 284 -213 6.5229987770857603e-02 -7.9530541839115454e-01 3.2253312418171596e+01 3.2272708716137686e+01 7.8409200522651012e-01 2 0 0 -111 0 P 285 323 -2.9988814515170321e+00 -2.0620823198563234e+00 6.7985291380316852e+01 6.8087959902637408e+01 8.5144945972042607e-01 2 0 0 -112 0 P 286 -313 -5.9649774784851206e-01 -2.4740919954651002e+00 2.0833695687883377e+02 2.0835450914003272e+02 9.1484243764462125e-01 2 0 0 -113 0 P 287 223 -3.3721778474859138e-01 -5.1042548426261758e-01 9.5122332193987774e+01 9.5127507947440108e+01 7.8130420297250558e-01 2 0 0 -114 0 P 288 -213 -8.0110829254031013e-02 -7.5585755989866177e-01 8.4176660006986566e+01 8.4184426963991726e+01 8.5435058847436396e-01 2 0 0 -115 0 P 289 221 -2.9331166631811117e-01 -6.7945025421920235e-01 5.9608815363519291e+01 5.9615922830450174e+01 5.4744999999999999e-01 2 0 0 -116 0 P 290 211 -8.3985562532785629e-01 -3.8080601113516566e-01 6.8344422970021668e+01 6.8350786400594089e+01 1.3957000000000000e-01 1 0 0 0 0 P 291 -211 2.1307969108652622e-01 2.3793053138705739e-01 1.5893049552354009e+01 1.5896871319571019e+01 1.3957000000000000e-01 1 0 0 0 0 P 292 211 -1.6301337759109618e+00 5.2355228292551703e-01 1.0417356737098670e+02 1.0418772989993941e+02 1.3957000000000000e-01 1 0 0 0 0 P 293 -213 -7.3645600810393441e-01 2.0574216281396751e+00 2.0738151145977085e+02 2.0739351155680583e+02 4.4943221521581123e-01 2 0 0 -117 0 P 294 211 2.3970485736522990e-01 8.2899145981727684e-01 7.1092192601991670e+01 7.1097566864152768e+01 1.3957000000000000e-01 1 0 0 0 0 P 295 221 -6.5865042095372828e-01 6.4635419875451094e-01 7.9049486600197369e+01 7.9056768384399277e+01 5.4744999999999999e-01 2 0 0 -118 0 P 296 -211 -5.4863005130968001e-01 1.6404041874950697e+00 1.7542089073828524e+02 1.7542947388631666e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 2212 -6.6664481368770168e-01 1.8517827435282488e+00 2.1674262727852525e+02 2.1675359361456378e+02 9.3827000000000005e-01 1 0 0 0 0 P 298 -2212 -1.6059086609894482e+00 1.5432988233137677e+00 2.9800517395455245e+02 2.9801497406701134e+02 9.3827000000000005e-01 1 0 0 0 0 P 299 223 -9.8381663224818616e-01 3.0308339256394095e+00 3.5554379976057538e+02 3.5555893818565147e+02 7.8174552707943101e-01 2 0 0 -119 0 P 300 331 3.3741289914651840e-01 1.3915666528487212e+00 2.7843418932899448e+02 2.7843951786756270e+02 9.5761047018363898e-01 2 0 0 -120 0 P 301 111 2.6117702499499978e-01 -9.0267221658662689e-02 2.8300498691185020e+01 2.8302169658523642e+01 1.3497999999999999e-01 2 0 0 -121 0 P 302 2224 3.3232933903233376e-02 1.1266739839991189e+00 1.9541775057603184e+02 1.9542445600989905e+02 1.1620102730420285e+00 2 0 0 -122 0 P 303 -213 1.1267126880324694e+00 9.1567862308628312e-01 2.4530641443483034e+02 2.4531162840196950e+02 6.7090799001868284e-01 2 0 0 -123 0 P 304 -2112 5.9831598859811363e-01 6.9315487081769933e-01 2.2936471194775100e+02 2.2936846410166513e+02 9.3957000000000002e-01 1 0 0 0 0 P 305 311 3.1354800286941131e-01 -2.6516452257501993e-01 4.5585845017934673e+01 4.5590410899685864e+01 4.9767000000000000e-01 2 0 0 -124 0 P 306 -313 9.3562105370973381e-01 1.4106947990971550e+00 2.2760941137099348e+02 2.2761718890783351e+02 8.2164169920936647e-01 2 0 0 -125 0 P 307 221 9.6154704275121583e-01 6.3226732202538205e-01 1.4587308413723960e+02 1.4587865063776334e+02 5.4744999999999999e-01 2 0 0 -126 0 P 308 313 2.3821288429039105e+00 -2.5931374568982435e-01 1.1347645407349519e+02 1.1350492930389129e+02 8.4945026010789604e-01 2 0 0 -127 0 P 309 -321 3.7722336546099638e-01 -1.4565813325235569e-01 3.6065134210667836e+01 3.6070778482765185e+01 4.9359999999999998e-01 1 0 0 0 0 P 310 211 3.9047005167276028e-01 -7.2748755280179267e-01 4.3934842733496033e+01 4.3942821834773696e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 221 4.7722556364321189e-01 -5.5042367525410396e-01 3.3629838585671074e+01 3.3642182676836917e+01 5.4744999999999999e-01 2 0 0 -128 0 P 312 -211 1.5955074893879700e-01 1.1401237825495433e-01 9.0751301742475903e+00 9.0783215810149276e+00 1.3957000000000000e-01 1 0 0 0 0 P 313 321 4.4061555471605413e-01 -6.2339142656104130e-01 1.6578252640441004e+01 1.6603158148619094e+01 4.9359999999999998e-01 1 0 0 0 0 P 314 333 1.5724416282474334e+00 -2.3156452974673369e+00 9.3474244100413515e+01 9.3521713887021420e+01 1.0207215116169261e+00 2 0 0 -129 0 P 315 333 6.0524084845672199e-01 -1.0323316054042242e+00 2.7474003933384978e+01 2.7518914297668751e+01 1.0186888448526432e+00 2 0 0 -130 0 P 316 -311 1.8217586704439128e+00 -2.5573326010691870e+00 7.5964975849988889e+01 7.6031467077810120e+01 4.9767000000000000e-01 2 0 0 -131 0 P 317 2112 -1.7942153064008318e-02 -1.8612643277056040e+00 3.5764924490012781e+01 3.5825650620465524e+01 9.3957000000000002e-01 1 0 0 0 0 P 318 113 1.9285509065329671e+00 -1.0345453276333652e+00 2.4918988993941579e+01 2.5023158035297978e+01 6.4252077421593123e-01 2 0 0 -132 0 P 319 -2212 1.9733992042616884e+00 -8.6057091828087962e-01 2.1150486627010274e+01 2.1280468084067415e+01 9.3827000000000005e-01 1 0 0 0 0 P 320 113 3.8221854642481308e+00 -1.7753804808026743e+00 4.6717353438294104e+01 4.6915635951391394e+01 8.9705455256291156e-01 2 0 0 -133 0 P 321 211 1.9675528377849516e+00 -4.7172569088311461e-01 1.9809096300776648e+01 1.9912648375724860e+01 1.3957000000000000e-01 1 0 0 0 0 P 322 223 1.9231034069321886e+00 -6.0680301763711986e-01 2.0912489909672079e+01 2.1024196858733458e+01 7.8618236858472934e-01 2 0 0 -134 0 P 323 313 2.7688940037978247e+00 -1.2324402191574948e+00 2.5842992124451250e+01 2.6033951944571225e+01 8.4895760184471702e-01 2 0 0 -135 0 P 324 -313 1.8819885653600823e+00 -3.2248584947136338e-01 1.3969410308599537e+01 1.4129503284958593e+01 9.2334209607994844e-01 2 0 0 -136 0 P 325 111 3.2060057263630619e+00 -1.7940671448372356e+00 2.8447190848728937e+01 2.8683759105494950e+01 1.3497999999999999e-01 2 0 0 -137 0 P 326 113 1.1182283807161799e+00 -4.5890917257469305e-01 1.1637370178229338e+01 1.1725807554657100e+01 7.7791117976263913e-01 2 0 0 -138 0 P 327 -211 6.9529850063745069e-01 -5.7115342242203004e-01 4.1130866059333684e+00 4.2126734326009130e+00 1.3957000000000000e-01 1 0 0 0 0 P 328 2114 2.5410971970494751e+00 -2.4586430219819260e+00 1.6078102145978175e+01 1.6505169677079198e+01 1.1887627931061493e+00 2 0 0 -139 0 P 329 213 3.0198919567808993e+00 -3.5437828012442911e+00 2.6374077370781542e+01 2.6791200385737447e+01 7.0591570016715754e-01 2 0 0 -140 0 P 330 -2112 1.6153484083925795e+00 -5.9584598925326482e-01 6.9770738551003317e+00 7.2475329794234291e+00 9.3957000000000002e-01 1 0 0 0 0 P 331 313 3.4764942064895981e+00 -2.9725093438780372e+00 2.0711292203192453e+01 2.1230006973053683e+01 9.1309779470194552e-01 2 0 0 -141 0 P 332 -311 4.4685338022176940e-01 -5.7286248098982084e-02 2.0200472728432124e+00 2.1286676751099920e+00 4.9767000000000000e-01 2 0 0 -142 0 P 333 -213 3.3957985051261272e+00 -1.3816215588309446e+00 1.8384558117772038e+01 1.8759379400705960e+01 6.9427134079557462e-01 2 0 0 -143 0 P 334 213 1.7603645009832956e+00 -1.4184579964534430e-01 5.8326815375841381e+00 6.1553893055602096e+00 8.6581763491565278e-01 2 0 0 -144 0 P 335 313 1.4474499113215562e+00 2.7191389962186474e-01 3.4608608392662581e+00 3.8644761006053838e+00 8.8745105149021741e-01 2 0 0 -145 0 P 336 -313 1.9151719554418027e+00 8.4907133269056945e-01 4.5160676613884245e+00 5.0630456034042401e+00 9.2236539018166375e-01 2 0 0 -146 0 P 337 331 1.6687596158851232e+00 3.6956106244321636e+00 6.0204510571842897e+00 7.3215697859530326e+00 9.5773516986897489e-01 2 0 0 -147 0 P 338 111 9.0346554899226592e-02 -7.8403229176652045e-02 -3.6345957327396670e-02 1.8398422579539400e-01 1.3497999999999999e-01 2 0 0 -148 0 P 339 313 1.1396155114408912e+00 1.0907762405222658e+00 1.7656060774038824e+00 2.5175264817345706e+00 8.5560414028027487e-01 2 0 0 -149 0 P 340 -311 -6.0695068834138965e-01 7.2502167361405978e-01 1.8329227028657253e+00 2.1216330099404126e+00 4.9767000000000000e-01 2 0 0 -150 0 P 341 111 -3.9022344132818340e-02 4.9773491673859464e-02 -1.3151196516577782e-01 1.9878415730835447e-01 1.3497999999999999e-01 2 0 0 -151 0 P 342 -213 1.7316977311100265e-01 5.6168148877869450e-01 6.8584829004930925e-01 1.3843705394858317e+00 1.0491044030394516e+00 2 0 0 -152 0 P 343 2224 -4.2545512711487383e+00 1.4052805252769311e+00 2.8193930934794054e+00 5.4391885780221081e+00 1.2489095636477598e+00 2 0 0 -153 0 P 344 -213 -1.0665847264261057e+00 5.5545255604229482e-01 3.1300624679462430e-01 1.5523691628619927e+00 9.3045504276833124e-01 2 0 0 -154 0 P 345 -2214 -4.3972063844908886e+00 1.3605592972483973e+00 3.2206869193255643e+00 5.7552987689143267e+00 1.2506374766556001e+00 2 0 0 -155 0 P 346 213 -1.7769066784625529e+00 8.8423709246520110e-01 2.0512439883051131e-01 2.1972231888489988e+00 9.2002236003482540e-01 2 0 0 -156 0 P 347 113 -1.6033469447237376e+00 7.1147318848921803e-01 -3.0300055688313021e-01 1.9386777455997992e+00 7.6794956912447987e-01 2 0 0 -157 0 P 348 113 -1.2543133669452002e+00 1.4010009141574318e+00 -1.9165378144158277e-01 1.9965828770652083e+00 6.4304465558914581e-01 2 0 0 -158 0 P 349 113 -2.1374285640227693e+00 2.0182381047347167e+00 -6.7696545002797426e-01 3.1076666072000063e+00 7.4660806804561342e-01 2 0 0 -159 0 P 350 -213 -2.0914422068080318e+00 8.7406218208147657e-01 -1.5596435710039640e+00 2.8888423484005203e+00 8.8023113031473355e-01 2 0 0 -160 0 P 351 111 -3.5426228071158994e-01 1.4020608661456557e-01 -2.3546618794897015e-01 4.6778567349371458e-01 1.3497999999999999e-01 2 0 0 -161 0 P 352 111 -9.3370404627720038e-01 9.6027136790942103e-01 -1.2661568828863112e+00 1.8480522715933732e+00 1.3497999999999999e-01 2 0 0 -162 0 P 353 321 -5.8724441986136178e-01 9.2027560604250158e-01 -4.9282762511125171e-02 1.1990967227108615e+00 4.9359999999999998e-01 1 0 0 0 0 P 354 221 -4.8445875474983549e+00 2.9928091451694723e+00 -4.8406307989225814e+00 7.4938870500404544e+00 5.4744999999999999e-01 2 0 0 -163 0 P 355 -323 -1.5556207733270564e+00 -3.6441664168794613e-01 -1.0616817102719420e+00 2.1189722810496829e+00 9.0006666130078972e-01 2 0 0 -164 0 P 356 211 -7.6193502685382974e-01 2.8913907423430996e-01 -1.2199525233247588e+00 1.4737402530508101e+00 1.3957000000000000e-01 1 0 0 0 0 P 357 -211 -1.0464385942375185e+00 2.1504277599407173e-01 -1.6773555893146914e+00 1.9935593005783063e+00 1.3957000000000000e-01 1 0 0 0 0 P 358 223 -1.0883113036422658e+00 -9.3158795345100964e-02 -8.9363113046197407e-01 1.5919904782206993e+00 7.3672045623081939e-01 2 0 0 -165 0 P 359 323 -1.0065605296528384e+00 -1.1209856823957070e+00 -9.9871143913942384e-01 1.9985274699329989e+00 8.5259281572019086e-01 2 0 0 -166 0 P 360 -311 -3.2030841538656180e-01 -1.8204817490395758e-01 -4.0865293444053152e-01 7.4189734376136540e-01 4.9767000000000000e-01 2 0 0 -167 0 P 361 331 -1.3020176805808032e+00 -1.3730173073428531e+00 -1.3469664276925203e-01 2.1250921483470702e+00 9.5783447765520757e-01 2 0 0 -168 0 P 362 -211 -2.4347107543567137e-01 -2.4238259597108050e-01 -2.0100673810168618e-01 4.2179495144650830e-01 1.3957000000000000e-01 1 0 0 0 0 P 363 321 -3.5581993010105784e-01 -4.3844858302164125e-01 4.8650837284371889e-02 7.5156692754489740e-01 4.9359999999999998e-01 1 0 0 0 0 P 364 -321 -1.5083092529523987e+00 -6.1679379326956174e-01 -2.2319694262002293e-01 1.7172330130627596e+00 4.9359999999999998e-01 1 0 0 0 0 P 365 321 5.1331214657494528e-01 -3.1927902375045440e+00 2.5017279768697398e-01 3.2807965876031129e+00 4.9359999999999998e-01 1 0 0 0 0 P 366 3122 1.8466667401878445e+00 -5.5881225131650536e-01 -1.6647060931518869e+00 2.7818047056747961e+00 1.1156800000000000e+00 2 0 0 -169 0 P 367 213 1.1837735503227800e+00 -1.4103522979134924e+00 -3.2891906003190030e-01 2.0347572681998511e+00 8.0102182852041193e-01 2 0 0 -170 0 P 368 -3222 4.8522587986365906e+00 -1.9379605163147344e+00 -4.6764043818125591e+00 7.1122053788453536e+00 1.1893700000000000e+00 2 0 0 -171 0 P 369 -323 1.7715775658412725e+00 -6.8391746502620132e-01 -1.0703916513231575e+00 2.3561937250876666e+00 8.9424851812022854e-01 2 0 0 -172 0 P 370 321 1.6842346677712203e+00 -6.4048571592976122e-01 -2.8616683770295084e+00 3.4175510571933221e+00 4.9359999999999998e-01 1 0 0 0 0 P 371 -311 2.5399994899780975e+00 -1.0236957320748103e+00 -2.2788998574163819e+00 3.5973059850379121e+00 4.9767000000000000e-01 2 0 0 -173 0 P 372 331 6.5130709342599227e+00 -3.4838415854130245e-01 -6.9312084180597493e+00 9.5655945599578658e+00 9.5785418216408147e-01 2 0 0 -174 0 P 373 111 4.9392871099733165e-01 3.8409330579837070e-01 -4.3479187523159024e-01 7.7379378019858047e-01 1.3497999999999999e-01 2 0 0 -175 0 P 374 -213 2.7623956343627838e+00 -6.9229961150085076e-02 -3.5928908754677837e+00 4.6052438864482843e+00 8.1472939211877771e-01 2 0 0 -176 0 P 375 211 9.0876399400051400e-01 -1.4571347547367494e-01 -1.1513100655441211e+00 1.4805671432426128e+00 1.3957000000000000e-01 1 0 0 0 0 P 376 -213 6.1170476578258102e+00 6.3721545517144818e-02 -7.0767171925970738e+00 9.3858765102050938e+00 7.6968770117848251e-01 2 0 0 -177 0 P 377 113 2.0368205293800425e+00 1.1853861925888904e+00 -4.6585862942010055e+00 5.2764804271319452e+00 7.6487982252421427e-01 2 0 0 -178 0 P 378 111 3.1273629392203656e-01 2.4956406295252375e-02 -3.6683050797237937e-01 5.0120957066933391e-01 1.3497999999999999e-01 2 0 0 -179 0 P 379 2114 2.3838838766854886e+00 1.0947427665831506e+00 -7.3531518725139255e+00 7.8897442804115974e+00 1.1392358349021925e+00 2 0 0 -180 0 P 380 223 1.7650462182542739e+00 3.5919986985653996e-01 -5.5717554542396845e+00 5.9073163604654422e+00 7.7943251259768176e-01 2 0 0 -181 0 P 381 -1114 2.4462410859382104e+00 5.6018140792701299e-01 -6.2919882734367665e+00 6.8861920572188673e+00 1.2379927122237799e+00 2 0 0 -182 0 P 382 111 8.6362297679231836e-01 1.3526922391134304e+00 -3.4672004177704063e+00 3.8229987283791518e+00 1.3497999999999999e-01 2 0 0 -183 0 P 383 -213 1.4630478082432414e+00 -9.3267531395894798e-01 -7.1739588728641905e+00 7.4189795446866507e+00 7.5178417412068521e-01 2 0 0 -184 0 P 384 323 7.1031331570289857e-01 3.4292996705513806e-01 -3.2934782063891896e+00 3.5123630750263271e+00 9.3142348374869743e-01 2 0 0 -185 0 P 385 -313 1.7089360138069294e+00 -1.3421663834285102e+00 -6.3820957981132187e+00 6.8052386024457228e+00 9.2641932181443942e-01 2 0 0 -186 0 P 386 -213 5.1645383940598666e-01 -1.0368961277988376e+00 -3.7311074985559758e+00 3.9794024815339042e+00 7.5670522409730734e-01 2 0 0 -187 0 P 387 211 -1.0167974633750797e-01 -1.2954346117292539e+00 -2.5915441991665693e+00 2.9024249732276073e+00 1.3957000000000000e-01 1 0 0 0 0 P 388 313 1.9403163075812094e-01 -5.7931537591569926e-01 -2.4611600481780918e+00 2.6301435832168845e+00 6.9791969959441780e-01 2 0 0 -188 0 P 389 333 -4.2213094853536495e+00 -1.4671361378655161e+00 -1.6049673183135450e+01 1.6691569918955576e+01 1.0220346646556433e+00 2 0 0 -189 0 P 390 -313 -4.8193143049971479e+00 -1.6474536112162399e+00 -1.1343269125460905e+01 1.2466022281394299e+01 8.8997937960660412e-01 2 0 0 -190 0 P 391 -211 -2.5002733524798759e+00 -5.2681682559130949e-01 -7.0239293864785699e+00 7.4755579468013140e+00 1.3957000000000000e-01 1 0 0 0 0 P 392 213 -3.5072936252617697e+00 -5.0323074066730233e-01 -9.6130332780924928e+00 1.0275818214817644e+01 7.9226348275682401e-01 2 0 0 -191 0 P 393 -211 -6.0506719227254200e+00 -2.0033063815551673e+00 -1.7956076908862205e+01 1.9054239552307298e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 211 -3.8013662560112138e+00 -4.7145274900822924e-02 -1.2282414086499497e+01 1.2858062982674625e+01 1.3957000000000000e-01 1 0 0 0 0 P 395 313 -4.2931314754874643e+00 3.8697662635255997e-01 -1.3070258787356613e+01 1.3791251193252997e+01 8.8668818181199238e-01 2 0 0 -192 0 P 396 -313 -1.0912092930539701e+00 6.4679398882452344e-01 -5.4003490612514931e+00 5.6205183297152699e+00 9.0408856097096957e-01 2 0 0 -193 0 P 397 113 -9.9158716645113589e+00 5.9065234928860642e-02 -3.0349253538882124e+01 3.1936122551706969e+01 7.1465635186492427e-01 2 0 0 -194 0 P 398 -213 -1.3519284556797997e+00 1.8312686283918661e-01 -5.4701804233022262e+00 5.6894995600654923e+00 7.6569274734479531e-01 2 0 0 -195 0 P 399 211 -2.9671285342081379e+00 2.0903172532162562e-01 -1.3769678243647588e+01 1.4087975891489338e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 223 -1.3114625605563739e+00 1.1556747427958869e+00 -1.1878804407669165e+01 1.2032581474503607e+01 7.8835564691933147e-01 2 0 0 -196 0 P 401 -211 -2.8183193769502388e+00 2.1489073525250748e+00 -2.2136874898608355e+01 2.2419220258112595e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 211 -9.3675744223563062e-01 -2.6912633939508340e-01 -6.5626708679668138e+00 6.6361187601112395e+00 1.3957000000000000e-01 1 0 0 0 0 P 403 113 -1.2028514936985055e+00 8.4136709024112810e-01 -1.1979747303369004e+01 1.2085564796982728e+01 6.2592388759153539e-01 2 0 0 -197 0 P 404 3112 -2.6747563729369572e+00 1.4403703083685553e+00 -3.8232095718218616e+01 3.8371291271475698e+01 1.1974400000000001e+00 2 0 0 -198 0 P 405 313 -1.4348465294418562e+00 2.0540073015900207e-01 -1.1838787989825672e+01 1.1954697703411981e+01 8.1050730343527955e-01 2 0 0 -199 0 P 406 -1114 -2.2337384378861276e+00 1.6848540426437535e+00 -3.3967225821125368e+01 3.4102207452796975e+01 1.1661057483662647e+00 2 0 0 -200 0 P 407 113 -2.3541791775035583e+00 -1.4943573460695241e+00 -7.5134408033336086e+01 7.5189982607080935e+01 7.6088793902341267e-01 2 0 0 -201 0 P 408 111 -8.3795697439312322e-01 -6.7790305646955928e-01 -1.5266017265650454e+01 1.5304614572096961e+01 1.3497999999999999e-01 2 0 0 -202 0 P 409 221 -4.6437707943439516e-01 -5.8622038260661891e-01 -2.7586966110031412e+01 2.7602530700416025e+01 5.4744999999999999e-01 2 0 0 -203 0 P 410 -213 -1.4367016093572267e+00 -8.3353333685250519e-01 -3.9647191866217611e+01 3.9688290929871059e+01 7.0832529210779738e-01 2 0 0 -204 0 P 411 213 -1.2536548490910220e+00 -1.8573529822023436e+00 -5.5611223523925865e+01 5.5661389083367844e+01 7.4876049633401454e-01 2 0 0 -205 0 P 412 331 -6.8518767205518250e-01 -1.5122055953920852e+00 -4.2476080407429230e+01 4.2519301425684574e+01 9.5777817951628741e-01 2 0 0 -206 0 P 413 113 -1.0565638273839910e+00 -8.5355917353347677e-01 -3.6002447929174167e+01 3.6035138796931768e+01 7.1419943795846674e-01 2 0 0 -207 0 P 414 -213 -8.3760043417727958e-01 -1.7315897963478781e+00 -4.2989933529424086e+01 4.3041746483728090e+01 8.7038945022811265e-01 2 0 0 -208 0 P 415 211 -1.3831043064004458e+00 -1.3284930813575548e+00 -5.1594469298133461e+01 5.1630287751769643e+01 1.3957000000000000e-01 1 0 0 0 0 P 416 331 2.9566513997328542e-01 -5.0640444387646188e-01 -1.5343818528954946e+01 1.5384846925156342e+01 9.5754087391514575e-01 2 0 0 -209 0 P 417 1114 1.0652749207039276e-01 -7.9450698698049549e-02 -3.0661932193032740e+01 3.0684924459962037e+01 1.1801876051495428e+00 2 0 0 -210 0 P 418 -3112 8.2263391596483948e-01 2.0337126912358966e-01 -2.5785806016604209e+01 2.5827499703075063e+01 1.1974400000000001e+00 2 0 0 -211 0 P 419 -321 1.0416628236654295e+00 4.0305512407217342e-01 -2.2219943266983190e+01 2.2253472417112775e+01 4.9359999999999998e-01 1 0 0 0 0 P 420 111 4.2102088211324123e-01 9.3274403311345688e-01 -2.4294623423470632e+01 2.4316542042468377e+01 1.3497999999999999e-01 2 0 0 -212 0 P 421 211 1.0259980159071005e+00 9.5441929308472440e-01 -1.9627761802027397e+01 1.9678213873664536e+01 1.3957000000000000e-01 1 0 0 0 0 P 422 113 6.0057162456408522e+00 1.8236261791196509e+00 -1.1608180750068637e+02 1.1625337912906453e+02 6.8402210146055920e-01 2 0 0 -213 0 P 423 111 1.4865049824709287e+00 6.6728520751256259e-01 -3.7147431581563467e+01 3.7183394940731475e+01 1.3497999999999999e-01 2 0 0 -214 0 P 424 -213 5.9709565104326401e-01 -3.2438126118736282e-01 -2.7828532178610764e+01 2.7847098853006866e+01 7.5628360689437546e-01 2 0 0 -215 0 P 425 321 3.5993874810920152e+00 -6.2086736463319880e-01 -1.4314577058576586e+02 1.4319321333106615e+02 4.9359999999999998e-01 1 0 0 0 0 P 426 -321 3.6351724793885209e-01 -4.1999993424949478e-01 -4.0528694158490275e+01 4.0535505866915763e+01 4.9359999999999998e-01 1 0 0 0 0 P 427 113 4.3858768359569815e+00 -9.2948942635666387e-01 -2.4809841608080484e+02 2.4814014415776651e+02 7.7923976996060518e-01 2 0 0 -216 0 P 428 211 1.9544912741359275e+00 -7.2097056371864610e-01 -1.3408895798085140e+02 1.3410521230313853e+02 1.3957000000000000e-01 1 0 0 0 0 P 429 2112 2.2044233407698766e+00 8.3662243807941372e-01 -1.6713914604102678e+02 1.6715841692980285e+02 9.3957000000000002e-01 1 0 0 0 0 P 430 -2212 2.6794880917133002e+00 -4.1231731298536328e-02 -2.0526804942293884e+02 2.0528768550738806e+02 9.3827000000000005e-01 1 0 0 0 0 P 431 213 6.8947957863446729e-01 -8.7397441577200807e-03 -6.2325055714800058e+01 6.2333259390161444e+01 7.3972824451719965e-01 2 0 0 -217 0 P 432 313 2.0179002832957189e+00 1.5218017456250408e+00 -1.2873714427221947e+02 1.2876527808669246e+02 9.2559346944433285e-01 2 0 0 -218 0 P 433 -323 1.9917264121980888e-01 2.9758971264234568e-01 -8.0141707565769451e+01 8.0147458363983546e+01 8.9082056054331360e-01 2 0 0 -219 0 P 434 113 1.2629131504778326e-01 -1.7332612797289662e-01 -2.4102275956298421e+01 2.4110700776989948e+01 6.0016184574501197e-01 2 0 0 -220 0 P 435 211 2.6173729837079874e-02 -1.7788310991344944e-01 -3.4508280115239471e+00 3.4583263603865357e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 1.1791964977008531e+00 1.5426951132934736e+00 -5.2995072905462862e+01 5.3030805994709276e+01 1.3497999999999999e-01 2 0 0 -221 0 P 437 313 5.5206549196496431e-02 4.7789206846779753e-01 -3.7178573360214934e+01 3.7192570778050140e+01 8.9976407308098949e-01 2 0 0 -222 0 P 438 -313 3.1472792664866765e-02 -7.1458669280868559e-01 -3.9912672748499340e+01 3.9932170757861805e+01 1.0223457477850908e+00 2 0 0 -223 0 P 439 -213 -3.0603272673388099e-01 1.2991065126149329e-01 -2.2439357115288809e+02 2.2439530269914425e+02 8.1643486401804588e-01 2 0 0 -224 0 P 440 211 -4.7603367153375409e-01 2.7739839350041112e-01 -7.9770385715502840e+01 7.9772410487023336e+01 1.3957000000000000e-01 1 0 0 0 0 P 441 2114 2.4773047965136963e-01 -5.4458126779464833e-01 -1.9786191986794134e+02 1.9786639685762412e+02 1.1890048121781784e+00 2 0 0 -225 0 P 442 213 -5.0756803987404164e-01 -5.4301190988466075e-01 -1.9890442179677157e+03 1.9890444909430096e+03 7.3036476158286467e-01 2 0 0 -226 0 V -27 0 0 0 0 0 2 1 0 P 155 21 -1.8020866104341957e+00 1.7295856702706152e+00 5.8186078242993453e+00 6.3320754698052379e+00 0 2 0 0 -27 0 P 156 21 1.8020866104341957e+00 -1.7295856702706152e+00 1.1030456825096708e+02 1.1033284533526073e+02 0 2 0 0 -27 0 P 443 92 0 0 1.1612317607526643e+02 1.1666492080506598e+02 1.1229947668844515e+01 2 0 0 -28 0 V -28 0 0 0 0 0 0 7 0 P 444 -211 8.2691039270649569e-01 -1.3551705475973190e+00 7.2675366425615735e+01 7.2692837562534706e+01 1.3957000000000000e-01 1 0 0 0 0 P 445 211 6.1159586145009948e-01 -6.4348323305949209e-02 7.0349337456243859e+00 7.0631411422029453e+00 1.3957000000000000e-01 1 0 0 0 0 P 446 -213 -2.2974103065572321e-01 -1.5546596945203570e-01 1.6502656876356777e+01 1.6534934102294525e+01 9.9469149972861337e-01 2 0 0 -227 0 P 447 321 2.4721323252016769e-01 4.9564605464321876e-01 3.4068751732432148e+00 3.4867203501108954e+00 4.9359999999999998e-01 1 0 0 0 0 P 448 -323 -7.7261712229837187e-01 -1.1943300391877841e-01 7.1134438590522624e+00 7.2112872447198679e+00 8.8903246840452610e-01 2 0 0 -228 0 P 449 331 1.3542029843103010e-01 2.1360146445736983e-01 5.1579362741322958e+00 5.2522055782183754e+00 9.5780613122540903e-01 2 0 0 -229 0 P 450 211 -8.1878163215369781e-01 9.8517032517349357e-01 4.2319637212417280e+00 4.4237948249846371e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 451 -211 -1.3922730594741595e-01 -2.2116556513581348e-01 2.1423879464560738e-01 3.6561796448536532e-01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 3.7883766297038896e-01 3.4176268062964027e-01 4.3996536195099467e-02 5.2959890516615515e-01 1.3497999999999999e-01 2 0 0 -230 0 V -30 0 0 0 0 0 0 3 0 P 453 -211 2.5350818034561327e+00 1.0094882718819309e+00 3.1006835597400273e+00 4.1327260547759090e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 211 8.0207060644713279e-01 1.0803014319664300e-01 8.2530520560808873e-01 1.1643007501798528e+00 1.3957000000000000e-01 1 0 0 0 0 P 455 111 1.4494137238126654e+00 7.5522139083739026e-01 1.6303705644228339e+00 2.3124634634284043e+00 1.3497999999999999e-01 2 0 0 -231 0 V -31 0 0 0 0 0 0 2 0 P 456 211 1.9088300973078147e+00 8.1327689471515252e-01 1.7685596449540328e+00 2.7298964541765347e+00 1.3957000000000000e-01 1 0 0 0 0 P 457 111 8.4550781950155662e-01 5.9736342712682722e-01 1.5940917663150489e+00 1.9055379022051535e+00 1.3497999999999999e-01 2 0 0 -232 0 V -32 0 3.0224630986215399e+00 4.1439121091849760e+00 8.4533764711541135e+00 2.5852986936696119e+01 0 2 0 P 458 2112 2.8969650475016850e-01 1.0720513321265447e-01 4.2204445686969494e-01 1.0753280029488879e+00 9.3957000000000002e-01 1 0 0 0 0 P 459 -211 -1.3818519474320895e-01 1.0052264765013359e-01 1.7099782831105389e-03 2.2064147312447902e-01 1.3957000000000000e-01 1 0 0 0 0 V -33 0 3.7089129093951371e+01 3.1098391085358799e+01 1.6847206524559044e+02 1.9695624633480449e+02 0 2 0 P 460 -2112 5.5561168711709374e-01 2.2552474525375682e-01 1.7767076744383166e+00 2.0973906891399339e+00 9.3957000000000002e-01 1 0 0 0 0 P 461 211 -6.1112524984886119e-02 1.8910155390832187e-01 4.6948405725735853e-01 5.2857279850499406e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 462 211 -3.5506100200998270e-01 -2.5270015864755596e-01 9.0641881319566397e-01 1.0153819651460572e+00 1.3957000000000000e-01 1 0 0 0 0 P 463 -211 -6.5989456840515895e-02 3.1600647551443478e-01 1.6565118548203903e+00 1.6934361549942327e+00 1.3957000000000000e-01 1 0 0 0 0 V -35 0 1.9099713364779495e-06 -4.1728956039002976e-07 3.6073857885379578e-04 3.6120806419548380e-04 0 2 0 P 464 22 1.2723182200319559e-02 -5.1613548887065895e-02 2.2451045116459345e+00 2.2457337567055782e+00 0 1 0 0 0 0 P 465 22 1.3598214844270057e-03 4.8536701447346786e-02 4.1476929808173157e-01 4.1760176141040245e-01 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 466 211 -8.3346551078326558e-02 -1.1872898117941597e-01 2.2478816461678271e+01 2.2479717803417074e+01 1.3957000000000000e-01 1 0 0 0 0 P 467 -211 3.6339345390692929e-01 5.1673700215909801e-01 2.5347476188603711e+01 2.5355731124313394e+01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 1 0 P 468 130 -2.0715128859320672e-01 2.0072742845743324e-02 5.6775046145099971e+01 5.6777608744808042e+01 4.9767000000000000e-01 1 0 0 0 0 V -38 0 1.1368195528446835e-04 -4.6300700517291995e-05 1.6224405149062621e-02 1.6224892735429326e-02 0 2 0 P 469 22 3.2322227414082211e-01 -8.9360992960634503e-02 5.0857932852837145e+01 5.0859038450301590e+01 0 1 0 0 0 0 P 470 22 2.3541926648569914e-01 -1.3816407558998542e-01 2.8869994640502799e+01 2.8871285078525283e+01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 471 211 -1.7123580369403793e-01 -2.3230546966666069e-01 2.6613966584979323e+01 2.6615897217696791e+01 1.3957000000000000e-01 1 0 0 0 0 P 472 111 6.4407856677936873e-02 7.1664976168327968e-02 1.0751191378357802e+02 1.0751204169416896e+02 1.3497999999999999e-01 2 0 0 -233 0 V -40 0 0 0 0 0 0 2 0 P 473 321 -3.6077753732595492e+00 4.4345763651791277e+00 -1.4506666465055991e+01 1.5600273188982413e+01 4.9359999999999998e-01 1 0 0 0 0 P 474 -321 -2.1321885227190140e+00 2.6516313737858903e+00 -8.5202471181067985e+00 9.1877978184365556e+00 4.9359999999999998e-01 1 0 0 0 0 V -41 0 -2.4713525777621376e+02 2.3069107852453044e+02 -9.0007984466120740e+02 9.6537005837796073e+02 0 2 0 P 475 3122 -2.8987050393135019e+00 2.6537901264139596e+00 -1.0712048696090816e+01 1.1464633534039136e+01 1.1156800000000000e+00 2 0 0 -234 0 P 476 111 -8.5323493218672708e-01 8.4849880788471466e-01 -2.9527176230237471e+00 3.1913509738354504e+00 1.3497999999999999e-01 2 0 0 -235 0 V -42 0 0 0 0 0 0 2 0 P 477 -3122 -3.1588627172148414e+00 4.0992715623847458e+00 -1.2877457947194520e+01 1.3923221827312437e+01 1.1156800000000000e+00 2 0 0 -236 0 P 478 22 -3.5131710711395474e-02 1.3470125966938923e-01 -2.7147332888005482e-01 3.0508430760569744e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 479 211 -7.1841185437413735e-01 1.0987552281991804e+00 -2.4450665759696810e+00 2.7787063518523181e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 -211 3.5746025895522775e-02 5.6440183700139451e-02 -6.0726306284819710e-02 1.6622497369055772e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 481 -211 2.6939328626350167e-01 4.9574746879170889e-01 -1.0146928158702313e+00 1.1693671754311794e+00 1.3957000000000000e-01 1 0 0 0 0 P 482 211 -9.9020465286940515e-02 3.5769881958464617e-01 -3.3130703939391028e-02 3.9790818855787702e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 483 211 -8.3323473735741435e-02 4.0460935677288179e-01 -1.3084684874132442e+00 1.3792103176517565e+00 1.3957000000000000e-01 1 0 0 0 0 P 484 -211 6.5610066633201930e-02 2.0499183952838076e-01 -3.4187218519883900e-01 4.2741398085400983e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 111 -4.9284666423100515e-01 6.8053292965118439e-01 -1.5628549211795522e+00 1.7795387064737864e+00 1.3497999999999999e-01 2 0 0 -237 0 V -46 0 -3.6534795197423030e-06 -1.2630577123892281e-05 -7.8877407807558715e-05 8.2805809642669224e-05 0 2 0 P 486 22 -6.1876319511283459e-02 7.1784609473731463e-03 -2.2684855768291534e-01 2.3524556816368372e-01 0 1 0 0 0 0 P 487 22 3.8939941522280717e-02 -8.6472648739420302e-02 -2.6834021523635676e-01 2.8460553251626031e-01 0 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 488 211 1.3162626590391974e-01 4.9426062586263664e-01 -1.9511970865073058e-02 5.3054645608181583e-01 1.3957000000000000e-01 1 0 0 0 0 P 489 -211 -6.5774908805320095e-02 1.4277694275208358e-01 -2.2431570529631706e-01 3.0742302215768436e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.3313660698294070e-01 2.8411849540558094e-02 -9.6458673412436066e-02 2.8754788607520743e-01 1.3497999999999999e-01 2 0 0 -238 0 V -48 0 0 0 0 0 0 2 0 P 491 2112 7.7860829440847656e-01 -7.2287819215003449e-02 -1.6152226751305471e-01 1.2330197211444336e+00 9.3957000000000002e-01 1 0 0 0 0 P 492 -211 8.2890352180058646e-01 1.2642187669200042e-01 -1.2777410071903389e-01 8.5957521199386644e-01 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 493 -211 -6.5097032255152953e-01 -8.1042990444169094e-01 3.7203781173865469e-02 1.0494869685183534e+00 1.3957000000000000e-01 1 0 0 0 0 P 494 211 1.6981113375504117e-01 -3.6994223638977597e-01 4.2683947411359746e-01 6.0610626211400742e-01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 495 -2112 1.1623678475901176e+00 -2.5798811786191953e+00 1.6137379525459330e+00 3.3902548389895397e+00 9.3957000000000002e-01 1 0 0 0 0 P 496 111 6.8453933400105049e-01 -1.3324209127914308e+00 7.0099305517102073e-01 1.6593825515644527e+00 1.3497999999999999e-01 2 0 0 -239 0 V -51 0 0 0 0 0 0 3 0 P 497 -211 1.1893937205616192e+00 -2.7421793637455782e+00 1.4518282826373783e+00 3.3258818729217241e+00 1.3957000000000000e-01 1 0 0 0 0 P 498 211 6.8842643754695432e-01 -1.4147356018305322e+00 7.5398123463580924e-01 1.7502500593010497e+00 1.3957000000000000e-01 1 0 0 0 0 P 499 111 5.9417728437035899e-01 -9.7851898850732144e-01 4.9372439213516067e-01 1.2540053556186910e+00 1.3497999999999999e-01 2 0 0 -240 0 V -52 0 0 0 0 0 0 2 0 P 500 -421 3.8031089826765427e+00 -9.2444162020537473e+00 5.0026691372781675e+00 1.1332516384192186e+01 1.8645000000000000e+00 2 0 0 -241 0 P 501 111 2.9176043876006785e-01 -6.6731769755373671e-01 4.1301423964240974e-01 8.4807866713016999e-01 1.3497999999999999e-01 2 0 0 -242 0 V -53 0 0 0 0 0 0 2 0 P 502 -211 2.4298654822591326e+00 3.0267258100049216e-01 1.3143090225424345e+00 2.7825788299346268e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 211 1.3819736718315120e-01 -8.9832825025106505e-02 2.4320888676081856e-01 3.2526726894629715e-01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 3 0 P 504 211 2.0551459669976552e-01 8.1017802253327234e-02 1.7533880955336026e-01 3.1468018173093781e-01 1.3957000000000000e-01 1 0 0 0 0 P 505 -211 1.2856916169925054e+00 1.0455423456875325e-01 1.8355028096781881e-01 1.3103835364176499e+00 1.3957000000000000e-01 1 0 0 0 0 P 506 111 5.8308469120462181e-01 1.5470841247910502e-01 -1.2850721209497970e-01 6.3139223464453387e-01 1.3497999999999999e-01 2 0 0 -243 0 V -55 0 0 0 0 0 0 2 0 P 507 211 2.3695009525664084e+00 -9.1785711106193310e-02 1.7291547885930767e-02 2.3754448348687616e+00 1.3957000000000000e-01 1 0 0 0 0 P 508 111 1.9385187775891030e-01 -2.5561616170578771e-01 3.0341261723302215e-02 3.4936852348031705e-01 1.3497999999999999e-01 2 0 0 -244 0 V -56 0 0 0 0 0 0 1 0 P 509 310 5.9982340706861259e-01 2.1840518112028973e-01 -9.8774396052939684e-01 1.2770287793428479e+00 4.9767000000000000e-01 2 0 0 -245 0 V -57 0 0 0 0 0 0 2 0 P 510 -321 -2.0494059974614845e-01 -3.0670531203360396e-01 3.1734749212334057e-01 6.9312278032893648e-01 4.9359999999999998e-01 1 0 0 0 0 P 511 211 -7.5078841982401875e-02 2.0699654511610682e-01 2.2493019567514738e-01 3.4432220380028211e-01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 512 -211 1.0571124999281349e+00 4.0088218486228185e-02 -1.4591162940591689e+00 1.8076487621367912e+00 1.3957000000000000e-01 1 0 0 0 0 P 513 211 9.3086069385567283e-01 3.7138370509741940e-02 -8.6286512393981690e-02 9.4594187826245446e-01 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 514 22 -4.3266066793983787e-01 -5.2065723369859418e-01 -4.9662579331799783e+00 5.0121848596652825e+00 0 1 0 0 0 0 P 515 22 -3.8822592709871057e-01 8.0891372005318964e-03 -5.2689874723631878e+00 5.2832768040802591e+00 0 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 516 211 4.9016475965790174e-01 4.4512831650347313e-02 -3.1956171492546788e+00 3.2363083340903445e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 -211 -1.0152046530115713e-01 3.4007850489473718e-01 -2.4268812259485761e+00 2.4566627900727580e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 518 211 -2.6515634958864009e-01 -6.0699234503686006e-01 -4.7236850348379775e+00 4.7719417106574955e+00 1.3957000000000000e-01 1 0 0 0 0 P 519 111 -2.4493056319298262e-01 5.9341649553520573e-02 -1.9264641903561759e+00 1.9475616265685769e+00 1.3497999999999999e-01 2 0 0 -246 0 V -62 0 0 0 0 0 0 3 0 P 520 111 -2.4203882064573179e-01 8.9218415966658641e-03 -3.9946865206721229e+00 4.0042979895103468e+00 1.3497999999999999e-01 2 0 0 -247 0 P 521 111 -2.7975960230829038e-02 -5.3140263748882283e-02 -1.8764446253462590e+00 1.8822514641707679e+00 1.3497999999999999e-01 2 0 0 -248 0 P 522 111 -7.1074767232432390e-02 1.7185786945932180e-01 -2.6943567907164638e+00 2.7041384701808751e+00 1.3497999999999999e-01 2 0 0 -249 0 V -63 0 0 0 0 0 0 2 0 P 523 211 2.1002667402237659e-02 4.0321019003130504e-01 -4.7164289945013982e+00 4.7357366707257444e+00 1.3957000000000000e-01 1 0 0 0 0 P 524 -211 7.9475617845107226e-03 -2.0526804638696347e-01 -7.4730795841577367e+00 7.4772051189372233e+00 1.3957000000000000e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 3 0 P 525 211 -6.0225298959789453e-01 -2.7806447112102795e-01 -7.6080496404606590e+00 7.6381887663367536e+00 1.3957000000000000e-01 1 0 0 0 0 P 526 -211 -5.5080871450400182e-03 -3.0067466569005730e-01 -5.7366081592693989e+00 5.7461803444991233e+00 1.3957000000000000e-01 1 0 0 0 0 P 527 111 -3.7668283281251003e-01 -3.7228058602255887e-01 -7.4480892201636477e+00 7.4681145828905766e+00 1.3497999999999999e-01 2 0 0 -250 0 V -65 0 0 0 0 0 0 3 0 P 528 211 -8.6143962905214710e-01 -1.5425402105670011e-01 -1.5957841226096834e+01 1.5982429381033704e+01 1.3957000000000000e-01 1 0 0 0 0 P 529 -211 -8.9938848198196697e-01 1.4971073703937662e-01 -2.4904769420315677e+01 2.4921844486520207e+01 1.3957000000000000e-01 1 0 0 0 0 P 530 111 -2.7987409371853511e-01 3.4767939516648069e-02 -1.1369788600590754e+01 1.1374086809079508e+01 1.3497999999999999e-01 2 0 0 -251 0 V -66 0 0 0 0 0 0 2 0 P 531 -311 1.5136428855528727e-01 1.1265286433142743e+00 5.0056577154031487e+01 5.0071953923713266e+01 4.9767000000000000e-01 2 0 0 -252 0 P 532 -211 5.8334131525497068e-01 6.4357271115716608e-01 2.9423401348968486e+01 2.9436550403401721e+01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 533 111 2.9405843407012555e-01 2.6465858212001553e-01 2.9726524322090885e+01 2.9729463204033781e+01 1.3497999999999999e-01 2 0 0 -253 0 P 534 111 3.6410463051452104e-02 7.0923901787771207e-02 1.9510659351883277e+01 1.9511289139041910e+01 1.3497999999999999e-01 2 0 0 -254 0 P 535 111 4.2850599714930923e-02 1.4375441705455813e-01 9.6473861863722803e+00 9.6494964291265131e+00 1.3497999999999999e-01 2 0 0 -255 0 V -68 0 0 0 0 0 0 2 0 P 536 2212 3.4758951645473574e-01 2.8150852521948705e-01 2.2427227491367532e+01 2.2451301723155655e+01 9.3827000000000005e-01 1 0 0 0 0 P 537 111 2.0892716784892501e-01 1.6102212413682121e-01 1.0031179273273141e+01 1.0035554588505390e+01 1.3497999999999999e-01 2 0 0 -256 0 V -69 0 0 0 0 0 0 2 0 P 538 -211 3.7142675249462093e-01 4.4422898852442760e-01 2.5372159475897071e+01 2.5379149975560011e+01 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8290461172115323e-02 -1.8951901146914310e-01 7.7383863227126515e+00 7.7423869149757980e+00 1.3497999999999999e-01 2 0 0 -257 0 V -70 0 0 0 0 0 0 2 0 P 540 -2112 1.9456420491870358e-01 1.8255035387371967e+00 7.5389147649321430e+01 7.5417350082562990e+01 9.3957000000000002e-01 1 0 0 0 0 P 541 211 -1.3819385291405070e-01 5.4650417964856923e-01 1.5642022693013670e+01 1.5652799049148086e+01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 542 321 -1.1335106133965201e-02 1.9928682763799707e-01 1.0600283396877264e+00 1.1862313287222703e+00 4.9359999999999998e-01 1 0 0 0 0 P 543 111 -4.5912303398025672e-01 -6.8285180440921037e-03 1.4791489147587684e+00 1.5546516334606788e+00 1.3497999999999999e-01 2 0 0 -258 0 V -72 0 0 0 0 0 0 2 0 P 544 -311 8.8396225831148437e-02 -4.5671631608254681e-01 1.1338805107579366e+00 1.3227865011761661e+00 4.9767000000000000e-01 2 0 0 -259 0 P 545 -211 -3.8496874643499057e-01 5.6754444668598060e-03 1.1670523870614851e+00 1.2368201993206349e+00 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 3 0 P 546 211 -1.8251364795818550e-01 1.4863650968502892e-02 1.5476151506689681e-01 2.7742218955397074e-01 1.3957000000000000e-01 1 0 0 0 0 P 547 -211 -4.9026154656881360e-01 1.2989748268498255e-01 3.4862494703651231e-01 6.3106963058615917e-01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 -4.1315921978832881e-01 -1.4915727367870796e-01 3.3236673855334931e-01 5.6712933488222594e-01 1.3497999999999999e-01 2 0 0 -260 0 V -74 0 0 0 0 0 0 2 0 P 549 -211 -3.1088995636675631e-01 -1.8921808751379821e-01 8.1710752684613319e-01 9.0531792478703710e-01 1.3957000000000000e-01 1 0 0 0 0 P 550 111 -5.9236113231290533e-01 -4.1644613863981850e-01 2.3813456494847104e-01 7.7411030795761904e-01 1.3497999999999999e-01 2 0 0 -261 0 V -75 0 0 0 0 0 0 2 0 P 551 -2112 -1.9692780726324124e+00 -6.9790381658616518e-01 -1.1523830036752550e-01 2.2937300441263702e+00 9.3957000000000002e-01 1 0 0 0 0 P 552 211 -5.1034637510724712e-01 -3.5734413776251706e-01 1.5263885744526726e-01 6.5645004461919287e-01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 553 311 -1.3133250204719007e+00 -5.0279603935217920e-01 5.7832828543341049e-02 1.4928652087657077e+00 4.9767000000000000e-01 2 0 0 -262 0 P 554 111 -6.0691038930708631e-02 -1.2905983378592556e-01 2.1251672814139244e-01 2.8934892956992603e-01 1.3497999999999999e-01 2 0 0 -263 0 V -77 0 0 0 0 0 0 2 0 P 555 211 3.3357072720141595e-01 -6.1234071329595263e-01 -2.3723322517680083e+00 2.4766248559045323e+00 1.3957000000000000e-01 1 0 0 0 0 P 556 -211 -3.8131846600313002e-01 -3.6853334434443585e-01 -2.0868587980130782e+00 2.1577024878683493e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 557 211 -2.0129131248721277e-01 -4.3204364714021104e-01 -5.2792578863165165e+00 5.3025676347079411e+00 1.3957000000000000e-01 1 0 0 0 0 P 558 -211 1.9345407990238154e-02 -9.2881651891424957e-02 -1.3245211874469247e+00 1.3352293462039397e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 -6.2752105032717704e-03 9.1604027583812281e-02 -5.4971730230411608e-01 5.7344519266356320e-01 1.3497999999999999e-01 2 0 0 -264 0 V -79 0 0 0 0 0 0 2 0 P 560 22 4.9788521126558816e-01 6.0856970017608769e-01 1.8270598728596266e-02 7.8649893728300346e-01 0 1 0 0 0 0 P 561 22 1.7923551058128357e+00 9.0451149079261051e-01 3.1611181311411013e-01 2.0323888753630546e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 562 211 -1.4367084385014250e-01 2.3296992884322992e-01 2.3606825378342025e-01 3.8745877775859583e-01 1.3957000000000000e-01 1 0 0 0 0 P 563 111 2.0846396364862518e-01 4.3841457786187038e-01 -1.1642850326827674e-01 5.1714578505020081e-01 1.3497999999999999e-01 2 0 0 -265 0 V -81 0 -6.4159714757477658e-08 2.7281748640886995e-06 -3.8210917772247456e-06 4.7161854199212750e-06 0 2 0 P 564 22 1.5975332783199271e-02 5.9347096961907132e-02 -4.1938977036432540e-02 7.4405422989204106e-02 0 1 0 0 0 0 P 565 22 -3.5606743899008725e-02 7.7541226185367729e-01 -1.1272280598415694e+00 1.3686398777393247e+00 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 566 -211 3.1253803097130411e-01 -3.0802877688146613e-01 -8.3558943604116254e-02 4.6799960485746972e-01 1.3957000000000000e-01 1 0 0 0 0 P 567 111 3.3042118847945889e-01 8.0454335671731325e-01 -3.4845215950218722e-01 9.4662911559695739e-01 1.3497999999999999e-01 2 0 0 -266 0 V -83 0 -6.9617163239493187e-06 1.4624286058263837e-05 7.3358477676632982e-06 2.0812852555660329e-05 0 2 0 P 568 22 8.8548711190711577e-03 -1.2228562621262300e-02 -1.2009344149463898e-02 1.9291729658528711e-02 0 1 0 0 0 0 P 569 22 -9.5720215844449341e-02 1.9470420378513204e-01 1.0354294240867494e-01 2.4040222048799043e-01 0 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 570 -211 3.4493739778723742e-01 4.0913201583590664e-01 -1.5696205839350115e+00 1.6641993201496839e+00 1.3957000000000000e-01 1 0 0 0 0 P 571 111 1.4824381584347232e-01 2.7777010871658337e-02 -1.1798524742520017e-01 2.3428169002033269e-01 1.3497999999999999e-01 2 0 0 -267 0 V -85 0 0 0 0 0 0 2 0 P 572 321 -9.0040756297955590e-02 7.3656496380022418e-02 -1.0801138741581755e+00 1.1932391036178251e+00 4.9359999999999998e-01 1 0 0 0 0 P 573 111 1.4367049716078387e-01 3.8699806565296657e-01 -2.0245819994826637e+00 2.0706425542818310e+00 1.3497999999999999e-01 2 0 0 -268 0 V -86 0 0 0 0 0 0 2 0 P 574 -311 -4.1361698597399521e-01 -1.7885256722596020e-02 -2.6078734476710053e+00 2.6870203276978946e+00 4.9767000000000000e-01 2 0 0 -269 0 P 575 -211 -2.8455998629318674e-01 -3.8687555452746485e-02 -4.2688622475176778e+00 4.2807868185565798e+00 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 576 211 -1.9780671533881322e-01 -8.9472595524928061e-02 -1.8240489860449962e+00 1.8422180463709708e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.9933368172908456e-01 8.2302164315894910e-01 -1.0816678821012818e+01 1.0850673667732663e+01 1.3957000000000000e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 578 -211 6.1885860990488081e-02 3.7676313166140130e-01 -1.7444790712933901e+01 1.7449526730548733e+01 1.3957000000000000e-01 1 0 0 0 0 P 579 111 -2.1262328914140477e-01 -2.1570381445054850e-02 -2.5860414622112247e+00 2.5983656380726257e+00 1.3497999999999999e-01 2 0 0 -270 0 V -89 0 0 0 0 0 0 3 0 P 580 -211 3.1655343126229213e-01 -1.3641512837141158e-02 -1.3774273968648001e+02 1.3774317481562565e+02 1.3957000000000000e-01 1 0 0 0 0 P 581 211 -1.3887782200966925e-01 5.5611613347654604e-02 -3.4073976565363189e+01 3.4074590804040554e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 111 -3.3725748761840747e-03 -9.0194474429933127e-02 -1.0237267922768933e+02 1.0237280800228767e+02 1.3497999999999999e-01 2 0 0 -271 0 V -90 0 0 0 0 0 0 1 0 P 583 310 -7.6724278086243736e-01 -6.4222529857398059e-01 -3.2164576180171156e+02 3.2164770304675142e+02 4.9767000000000000e-01 2 0 0 -272 0 V -91 0 0 0 0 0 0 1 0 P 584 310 3.7855820012965080e-01 7.1448116572231249e-03 5.1778987993375447e-01 8.1187384973333743e-01 4.9767000000000000e-01 2 0 0 -273 0 V -92 0 0 0 0 0 0 2 0 P 585 -321 -9.8177693817677256e-02 4.1149906658115104e-01 -1.9259288648938659e+00 2.0326862261529426e+00 4.9359999999999998e-01 1 0 0 0 0 P 586 111 -1.3920054205557225e-01 -8.5074323978950220e-02 -1.4366787793520711e-01 2.5587983714909246e-01 1.3497999999999999e-01 2 0 0 -274 0 V -93 0 0 0 0 0 0 2 0 P 587 211 -8.8911332310722527e-02 -1.6186381798333482e-01 -1.2730505544972393e-02 2.3183393033988889e-01 1.3957000000000000e-01 1 0 0 0 0 P 588 111 -1.3263381616636147e-01 -1.6947697571920220e-01 -2.0927537018636513e+00 2.1081157063960685e+00 1.3497999999999999e-01 2 0 0 -275 0 V -94 0 2.0000287250105041e-05 -5.5466620006789431e-07 -3.9036698678941397e-04 3.9232019525060495e-04 0 2 0 P 589 22 9.1337580800641957e-02 3.4907972051306184e-02 -1.4020346544770259e+00 1.4054402486529842e+00 0 1 0 0 0 0 P 590 22 -1.0972396579959269e-02 -3.7136732608193092e-02 -1.6653855723218552e-01 1.7098134822400449e-01 0 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 591 -211 -2.8038244667253737e-01 1.3124538460204468e-01 2.2329794082269237e+02 2.2329819904134226e+02 1.3957000000000000e-01 1 0 0 0 0 P 592 111 4.2969139043533187e-02 -2.3479105325899943e-01 5.8809788257899527e+01 5.8810427542443335e+01 1.3497999999999999e-01 2 0 0 -276 0 V -96 0 0 0 0 0 0 1 0 P 593 310 3.7944289431957788e-02 3.6418789708871115e-02 5.2179610511829033e+01 5.2182010259211204e+01 4.9767000000000000e-01 2 0 0 -277 0 V -97 0 0 0 0 0 0 2 0 P 594 -311 4.4515000978673597e-01 -3.5554735426088413e-01 4.5779767293746829e+01 4.5786016875797863e+01 4.9767000000000000e-01 2 0 0 -278 0 P 595 111 -2.3622418361508002e-01 1.6162970552390969e-04 3.0845893014561675e+01 3.0847092850984087e+01 1.3497999999999999e-01 2 0 0 -279 0 V -98 0 -2.0851892416211431e+01 -1.9780211045895013e-01 1.1812625841743252e+03 1.1821464565078156e+03 0 2 0 P 596 -2212 -5.1534348745620395e-01 -5.0234608755278368e-02 2.9987105542952030e+01 3.0006248546978089e+01 9.3827000000000005e-01 1 0 0 0 0 P 597 211 -5.6665373431119603e-02 4.4808503650459790e-02 2.4172753974105143e+00 2.4223787685602849e+00 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 1 0 P 598 310 -1.2715333782632149e-01 -1.8700011622414425e-01 2.2440619101150446e+01 2.2447275961385749e+01 4.9767000000000000e-01 2 0 0 -280 0 V -100 0 0 0 0 0 0 2 0 P 599 2112 -1.0550211468175306e+00 -7.7926450707392042e-02 1.0160768113794033e+01 1.0258808049629625e+01 9.3957000000000002e-01 1 0 0 0 0 P 600 -211 8.8789071955974977e-02 9.1793583564411696e-02 1.8622319023262808e+00 1.8718164985447048e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 601 -2212 -9.0481152638315621e-01 -9.9897030428837302e-05 9.7151874478573443e+00 9.8022396240940850e+00 9.3827000000000005e-01 1 0 0 0 0 P 602 111 -3.4672142226770541e-01 1.1586051593200097e-01 2.9611785823958297e+00 2.9867101635497115e+00 1.3497999999999999e-01 2 0 0 -281 0 V -102 0 0 0 0 0 0 3 0 P 603 -211 -3.6863986640516500e-01 1.4646721894619855e-01 2.6118206186678550e+00 2.6454554856068904e+00 1.3957000000000000e-01 1 0 0 0 0 P 604 211 -2.3274795881796848e-01 -1.2037308218664680e-01 1.5760064581766535e+00 1.6037261088987620e+00 1.3957000000000000e-01 1 0 0 0 0 P 605 111 -5.8458686528030868e-01 3.5370998575660817e-01 7.1768488075783559e+00 7.2105638451040059e+00 1.3497999999999999e-01 2 0 0 -282 0 V -103 0 0 0 0 0 0 2 0 P 606 -211 -1.0832602960123683e+00 8.1065500203933283e-01 7.5524446736893376e+00 7.6739503995847302e+00 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -1.9419343597454755e-01 8.0424307370884995e-01 8.0249375007538397e+00 8.0686033180216228e+00 1.3497999999999999e-01 2 0 0 -283 0 V -104 0 0 0 0 0 0 3 0 P 608 -211 -1.1446688455569820e+00 1.1509638735100234e+00 1.3941911520397303e+01 1.4036786000776710e+01 1.3957000000000000e-01 1 0 0 0 0 P 609 211 -4.4687635237117790e-01 1.7248397876604221e-01 2.9488201003454386e+00 2.9907305071404906e+00 1.3957000000000000e-01 1 0 0 0 0 P 610 111 -1.1464542212281233e-01 4.3304184269393926e-02 2.0727430785422256e+00 2.0807456104083597e+00 1.3497999999999999e-01 2 0 0 -284 0 V -105 0 0 0 0 0 0 2 0 P 611 211 -9.4559544763695791e-01 8.7019314711130238e-02 6.0880360780453939e+00 6.1632285520015300e+00 1.3957000000000000e-01 1 0 0 0 0 P 612 111 -1.7079956995483723e+00 9.4882881345793635e-01 1.5658259541625759e+01 1.5780267326640503e+01 1.3497999999999999e-01 2 0 0 -285 0 V -106 0 0 0 0 0 0 2 0 P 613 211 -1.4722655462703249e+00 9.0106987939936833e-01 1.5140846555755212e+01 1.5239560589994710e+01 1.3957000000000000e-01 1 0 0 0 0 P 614 111 -1.7276260611384658e-01 1.2393989659934938e-01 8.9337830089585923e-01 9.2819847282350010e-01 1.3497999999999999e-01 2 0 0 -286 0 V -107 0 0 0 0 0 0 2 0 P 615 -211 5.2310051244300222e-02 1.9743982103057431e-01 2.5171979382711474e+00 2.5293248248744726e+00 1.3957000000000000e-01 1 0 0 0 0 P 616 111 -1.3791995837855802e+00 4.3593660120582606e-01 1.7421319988912696e+01 1.7481786006260180e+01 1.3497999999999999e-01 2 0 0 -287 0 V -108 0 0 0 0 0 0 2 0 P 617 211 -1.5124252388372448e+00 -4.8514804960584490e-01 2.3616329243632418e+01 2.3670092637369546e+01 1.3957000000000000e-01 1 0 0 0 0 P 618 111 -2.2749811635095041e-01 -2.9301534100778209e-01 3.1769011126107940e+00 3.2013331071159774e+00 1.3497999999999999e-01 2 0 0 -288 0 V -109 0 0 0 0 0 0 2 0 P 619 211 -2.4267686148433612e-01 -4.3281959050165658e-01 1.5052096039270113e+01 1.5060919620572076e+01 1.3957000000000000e-01 1 0 0 0 0 P 620 -211 -7.5129054728872369e-01 -3.3683602994501244e-01 1.1761652044163652e+01 1.1791260941493642e+01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 621 211 -2.5625712329502037e-01 -3.1640245834971081e-01 5.8277500769718698e+00 5.8436229321744237e+00 1.3957000000000000e-01 1 0 0 0 0 P 622 111 -1.6618000082221467e+00 -1.5338938779888051e-01 1.8256710103750638e+01 1.8333324602602964e+01 1.3497999999999999e-01 2 0 0 -289 0 V -111 0 0 0 0 0 0 2 0 P 623 -211 -3.3279712481699320e-01 -3.2181272967919250e-01 1.4950994361287911e+01 1.4958811100332571e+01 1.3957000000000000e-01 1 0 0 0 0 P 624 111 3.9802711258785078e-01 -4.7349268871196198e-01 1.7302318056883685e+01 1.7313897615805111e+01 1.3497999999999999e-01 2 0 0 -290 0 V -112 0 0 0 0 0 0 2 0 P 625 311 -2.6577080464400833e+00 -1.6357570312882515e+00 5.9631527640992971e+01 5.9715206416397237e+01 4.9767000000000000e-01 2 0 0 -291 0 P 626 211 -3.4117340507694904e-01 -4.2632528856807211e-01 8.3537637393238811e+00 8.3727534862401729e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 627 -321 -4.4571584693402960e-01 -2.0029980942356183e+00 1.8414107028425516e+02 1.8415316470365835e+02 4.9359999999999998e-01 1 0 0 0 0 P 628 211 -1.5078190091448246e-01 -4.7109390122948192e-01 2.4195886594578599e+01 2.4201344436374342e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 3 0 P 629 211 -4.3339267239995882e-01 -3.0827799556828428e-01 4.5450089453410030e+01 4.5453415445254663e+01 1.3957000000000000e-01 1 0 0 0 0 P 630 -211 8.7193642308943900e-02 -5.4155464321253614e-02 1.1320355482925672e+01 1.1321681129155699e+01 1.3957000000000000e-01 1 0 0 0 0 P 631 111 8.9812453424235363e-03 -1.4799202437307968e-01 3.8351887257652081e+01 3.8352411373029753e+01 1.3497999999999999e-01 2 0 0 -292 0 V -115 0 0 0 0 0 0 2 0 P 632 -211 1.0445709957777785e-02 1.0497835460793301e-01 3.1475439045988246e+01 3.1475925284102676e+01 1.3957000000000000e-01 1 0 0 0 0 P 633 111 -9.0556539211808798e-02 -8.6083591450659469e-01 5.2701220960998320e+01 5.2708501679889054e+01 1.3497999999999999e-01 2 0 0 -293 0 V -116 0 0 0 0 0 0 2 0 P 634 22 -2.0084376682503557e-01 -1.3963816174052732e-01 7.0288428965134155e+00 7.0330981436884441e+00 0 1 0 0 0 0 P 635 22 -9.2467899493075614e-02 -5.3981209247867512e-01 5.2579972467005874e+01 5.2582824686761732e+01 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 636 -211 -2.2884234590240737e-01 7.2012745469893513e-01 8.8004576848359363e+01 8.8007931338112812e+01 1.3957000000000000e-01 1 0 0 0 0 P 637 111 -5.0761366220152704e-01 1.3372941734407402e+00 1.1937693461141150e+02 1.1938558021869304e+02 1.3497999999999999e-01 2 0 0 -294 0 V -118 0 0 0 0 0 0 3 0 P 638 111 -7.9127165779495592e-02 1.4555079826377726e-01 1.1257687773843497e+01 1.1259715793792704e+01 1.3497999999999999e-01 2 0 0 -295 0 P 639 111 -4.8193267177649191e-01 3.8658580876715115e-01 5.5381095555227574e+01 5.5384706121684111e+01 1.3497999999999999e-01 2 0 0 -296 0 P 640 111 -9.7590583397740779e-02 1.1421759172358265e-01 1.2410703271126305e+01 1.2412346468922474e+01 1.3497999999999999e-01 2 0 0 -297 0 V -119 0 0 0 0 0 0 3 0 P 641 -211 -3.4689739779842532e-01 1.7067758643062141e+00 2.0595222258935894e+02 2.0595963412993655e+02 1.3957000000000000e-01 1 0 0 0 0 P 642 211 -3.9018717478518122e-01 9.6391982852049651e-01 1.1308405473105319e+02 1.1308892209968187e+02 1.3957000000000000e-01 1 0 0 0 0 P 643 111 -2.4673205966457962e-01 3.6013823281269869e-01 3.6507522440163257e+01 3.6510381956033051e+01 1.3497999999999999e-01 2 0 0 -298 0 V -120 0 0 0 0 0 0 3 0 P 644 211 3.3440789384121185e-02 5.2171502132688252e-01 8.1565406609018297e+01 8.1567201373648089e+01 1.3957000000000000e-01 1 0 0 0 0 P 645 -211 1.8741264475437711e-01 2.9015503841406304e-01 5.8170951567237985e+01 5.8172144532143378e+01 1.3957000000000000e-01 1 0 0 0 0 P 646 221 1.1655946500802011e-01 5.7969659310777566e-01 1.3869783115273819e+02 1.3870017196177125e+02 5.4744999999999999e-01 2 0 0 -299 0 V -121 0 1.5836204097224166e-05 -5.4732614612764034e-06 1.7159720436183529e-03 1.7160733610286981e-03 0 2 0 P 647 22 2.0202791762628156e-01 -6.6756899959851207e-02 1.4892342343261850e+01 1.4893862233554549e+01 0 1 0 0 0 0 P 648 22 5.9149107368718201e-02 -2.3510321698811471e-02 1.3408156347923168e+01 1.3408307424969090e+01 0 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 649 2212 3.2987734885169963e-02 7.1096324840626302e-01 1.4725923852896327e+02 1.4726394752163287e+02 9.3827000000000005e-01 1 0 0 0 0 P 650 211 2.4519901806341294e-04 4.1571073559285593e-01 4.8158512047068569e+01 4.8160508488266174e+01 1.3957000000000000e-01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 651 -211 6.1288172804163897e-02 8.1027115944814296e-03 4.6048611514144405e+01 4.6048864525192727e+01 1.3957000000000000e-01 1 0 0 0 0 P 652 111 1.0654245152283055e+00 9.0757591149180172e-01 1.9925780292068598e+02 1.9926276387677680e+02 1.3497999999999999e-01 2 0 0 -300 0 V -124 0 0 0 0 0 0 1 0 P 653 310 3.1354800286941131e-01 -2.6516452257501993e-01 4.5585845017934673e+01 4.5590410899685864e+01 4.9767000000000000e-01 2 0 0 -301 0 V -125 0 0 0 0 0 0 2 0 P 654 -321 9.1230084242354370e-01 1.3611964064266762e+00 2.1653774876546223e+02 2.1654451142861689e+02 4.9359999999999998e-01 1 0 0 0 0 P 655 211 2.3320211286190148e-02 4.9498392670479001e-02 1.1071662605531262e+01 1.1072677479216610e+01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 3 0 P 656 111 3.5702010212295715e-01 2.7274844680836374e-01 4.2390737065780257e+01 4.2393332773551464e+01 1.3497999999999999e-01 2 0 0 -302 0 P 657 111 2.8374675973639801e-01 4.9690513929273969e-02 4.1391584988808241e+01 4.1392807453191324e+01 1.3497999999999999e-01 2 0 0 -303 0 P 658 111 3.2078018089186050e-01 3.0982836128774438e-01 6.2090762082651104e+01 6.2092510411020548e+01 1.3497999999999999e-01 2 0 0 -304 0 V -127 0 0 0 0 0 0 2 0 P 659 311 9.6830525872385553e-01 4.4905456054307437e-02 4.9356841811285960e+01 4.9368868131518489e+01 4.9767000000000000e-01 2 0 0 -305 0 P 660 111 1.4138235841800550e+00 -3.0421920174413181e-01 6.4119612262209230e+01 6.4136061172372806e+01 1.3497999999999999e-01 2 0 0 -306 0 V -128 0 0 0 0 0 0 2 0 P 661 22 4.0318038323831079e-01 -5.6393039403246004e-01 1.9787724340609437e+01 1.9799863799801475e+01 0 1 0 0 0 0 P 662 22 7.4045180404901045e-02 1.3506718778356054e-02 1.3842114245061639e+01 1.3842318877035440e+01 0 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 663 321 8.6148251929578057e-01 -1.3361066310034815e+00 5.5647389702498621e+01 5.5672281745247460e+01 4.9359999999999998e-01 1 0 0 0 0 P 664 -321 7.1095910895165271e-01 -9.7953866646385557e-01 3.7826854397914893e+01 3.7849432141773967e+01 4.9359999999999998e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 665 -321 4.1999172662865997e-01 -4.6982133128957515e-01 1.3833788803254649e+01 1.3856928907475311e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 321 1.8524912182806205e-01 -5.6251027411464904e-01 1.3640215130130329e+01 1.3661985390193438e+01 4.9359999999999998e-01 1 0 0 0 0 V -131 0 0 0 0 0 0 1 0 P 667 310 1.8217586704439128e+00 -2.5573326010691870e+00 7.5964975849988889e+01 7.6031467077810120e+01 4.9767000000000000e-01 2 0 0 -307 0 V -132 0 0 0 0 0 0 2 0 P 668 211 1.2450592039155683e+00 -3.9198252995792976e-01 1.2812512811643053e+01 1.2879588000338538e+01 1.3957000000000000e-01 1 0 0 0 0 P 669 -211 6.8349170261739889e-01 -6.4256279767543534e-01 1.2106476182298525e+01 1.2143570034959438e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 670 -211 2.3787901804288336e+00 -9.7480292717852290e-01 2.3910361019772797e+01 2.4048570172675774e+01 1.3957000000000000e-01 1 0 0 0 0 P 671 211 1.4433952838192969e+00 -8.0057755362415128e-01 2.2806992418521308e+01 2.2867065778715620e+01 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 3 0 P 672 211 1.4964768322858510e+00 -6.0727305701082146e-01 1.6973979908836935e+01 1.7051208086403715e+01 1.3957000000000000e-01 1 0 0 0 0 P 673 -211 2.1056623712507735e-01 5.8992336217818575e-02 2.1107760506122646e+00 2.1266578372384588e+00 1.3957000000000000e-01 1 0 0 0 0 P 674 111 2.1606033752126003e-01 -5.8522296844116896e-02 1.8277339502228782e+00 1.8463309350912795e+00 1.3497999999999999e-01 2 0 0 -308 0 V -135 0 0 0 0 0 0 2 0 P 675 321 1.8095846610688506e+00 -7.4704360125955438e-01 1.8783792472212792e+01 1.8891986962384777e+01 4.9359999999999998e-01 1 0 0 0 0 P 676 -211 9.5930934272897428e-01 -4.8539661789794036e-01 7.0591996522384566e+00 7.1419649821864430e+00 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 677 -321 5.1982613323660021e-01 -9.0076355786884707e-02 5.4373738375960246e+00 5.4851625471303294e+00 4.9359999999999998e-01 1 0 0 0 0 P 678 211 1.3621624321234824e+00 -2.3240949368447869e-01 8.5320364710035133e+00 8.6443407378282657e+00 1.3957000000000000e-01 1 0 0 0 0 V -137 0 5.8327212870760113e-04 -3.2639659811233923e-04 5.1754285482553493e-03 5.2184676699805269e-03 0 2 0 P 679 22 2.4606091699361476e+00 -1.3933868693282774e+00 2.2314218942467182e+01 2.2492676396266216e+01 0 1 0 0 0 0 P 680 22 7.4539655642691427e-01 -4.0068027550895824e-01 6.1329719062617549e+00 6.1910827092287324e+00 0 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 681 211 1.1077818126694683e+00 -3.5211994804212060e-01 1.1070408176034292e+01 1.1132142020797135e+01 1.3957000000000000e-01 1 0 0 0 0 P 682 -211 1.0446568046711593e-02 -1.0678922453257242e-01 5.6696200219504655e-01 5.9366553385996623e-01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 683 2112 2.3324670942192594e+00 -2.2318544485602216e+00 1.5132248937622288e+01 1.5501268551968401e+01 9.3957000000000002e-01 1 0 0 0 0 P 684 111 2.0863010283021546e-01 -2.2678857342170397e-01 9.4585320835588571e-01 1.0039011251107952e+00 1.3497999999999999e-01 2 0 0 -309 0 V -140 0 0 0 0 0 0 2 0 P 685 211 1.3425944102208829e+00 -1.5439343953824363e+00 1.3455820572341423e+01 1.3611204216657244e+01 1.3957000000000000e-01 1 0 0 0 0 P 686 111 1.6772975465600166e+00 -1.9998484058618551e+00 1.2918256798440119e+01 1.3179996169080201e+01 1.3497999999999999e-01 2 0 0 -310 0 V -141 0 0 0 0 0 0 2 0 P 687 321 3.3294282644881790e+00 -2.8949033172064822e+00 1.9973576878616932e+01 2.0461011022683280e+01 4.9359999999999998e-01 1 0 0 0 0 P 688 -211 1.4706594200141926e-01 -7.7606026671555153e-02 7.3771532457552169e-01 7.6899595037040236e-01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 1 0 P 689 310 4.4685338022176940e-01 -5.7286248098982084e-02 2.0200472728432124e+00 2.1286676751099920e+00 4.9767000000000000e-01 2 0 0 -311 0 V -143 0 0 0 0 0 0 2 0 P 690 -211 1.9983825042843522e+00 -1.0583817309058803e+00 1.0154827854270227e+01 1.0404504459920597e+01 1.3957000000000000e-01 1 0 0 0 0 P 691 111 1.3974160008417753e+00 -3.2323982792506450e-01 8.2297302635018124e+00 8.3548749407853649e+00 1.3497999999999999e-01 2 0 0 -312 0 V -144 0 0 0 0 0 0 2 0 P 692 211 1.2979422604177111e+00 -2.2120019021977838e-01 2.9753658457021137e+00 3.2566647564958475e+00 1.3957000000000000e-01 1 0 0 0 0 P 693 111 4.6242224056558440e-01 7.9354390574434094e-02 2.8573156918820244e+00 2.8987245490643616e+00 1.3497999999999999e-01 2 0 0 -313 0 V -145 0 0 0 0 0 0 2 0 P 694 321 1.4477450767047511e+00 2.3099449198887886e-01 2.9205588464871486e+00 3.3049401202209987e+00 4.9359999999999998e-01 1 0 0 0 0 P 695 -211 -2.9516538319479405e-04 4.0919407632985842e-02 5.4030199277910929e-01 5.5953598038438468e-01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 696 -311 1.5320663113670756e+00 5.4924259003727816e-01 3.9695937913537724e+00 4.3190560198255348e+00 4.9767000000000000e-01 2 0 0 -314 0 P 697 111 3.8310564407472730e-01 2.9982874265329129e-01 5.4647387003465231e-01 7.4398958357870526e-01 1.3497999999999999e-01 2 0 0 -315 0 V -147 0 0 0 0 0 0 3 0 P 698 211 1.4119597919980437e-01 2.7023552667212147e-01 3.4116441785351398e-01 4.7836857058891064e-01 1.3957000000000000e-01 1 0 0 0 0 P 699 -211 5.0170388057071225e-01 1.0227034821946426e+00 1.7734452575445887e+00 2.1123960477808490e+00 1.3957000000000000e-01 1 0 0 0 0 P 700 221 1.0258597561146063e+00 2.4026716155653989e+00 3.9058413817861868e+00 4.7308051675832719e+00 5.4744999999999999e-01 2 0 0 -316 0 V -148 0 1.8406951812231068e-05 -1.5973652376536795e-05 -7.4050226468627010e-06 3.7484426298311995e-05 0 2 0 P 701 22 8.5179968878437689e-03 -7.2059669221183384e-02 2.9930015045524682e-02 7.8491770268436512e-02 0 1 0 0 0 0 P 702 22 8.1828558011382821e-02 -6.3435599554686637e-03 -6.6275972372921349e-02 1.0549245552695749e-01 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 703 321 9.5437094401380307e-01 5.6092931026816883e-01 1.1138514013605711e+00 1.6461383581608897e+00 4.9359999999999998e-01 1 0 0 0 0 P 704 -211 1.8524456742708825e-01 5.2984693025409701e-01 6.5175467604331139e-01 8.7138812357368101e-01 1.3957000000000000e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 1 0 P 705 130 -6.0695068834138965e-01 7.2502167361405978e-01 1.8329227028657253e+00 2.1216330099404126e+00 4.9767000000000000e-01 1 0 0 0 0 V -151 0 -1.9526647687057729e-06 2.4906485186079981e-06 -6.5808138067877839e-06 9.9470913185464659e-06 0 2 0 P 706 22 4.7018257611347080e-03 -5.3288754338653441e-03 2.5640434751860376e-02 2.6607066225762897e-02 0 1 0 0 0 0 P 707 22 -4.3724169893953044e-02 5.5102367107724808e-02 -1.5715239991763821e-01 1.7217709108259158e-01 0 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 708 -211 -2.5225416024717157e-01 4.2800519121027447e-01 -4.4616366799416086e-02 5.1796815553789533e-01 1.3957000000000000e-01 1 0 0 0 0 P 709 111 4.2542393335817419e-01 1.3367629756842000e-01 7.3046465684872530e-01 8.6640238394793623e-01 1.3497999999999999e-01 2 0 0 -317 0 V -153 0 0 0 0 0 0 2 0 P 710 2212 -3.8439922095734786e+00 1.3563511099073735e+00 2.3479943516490662e+00 4.7968106601036986e+00 9.3827000000000005e-01 1 0 0 0 0 P 711 211 -4.1055906157525979e-01 4.8929415369557590e-02 4.7139874183033875e-01 6.4237791791840959e-01 1.3957000000000000e-01 1 0 0 0 0 V -154 0 0 0 0 0 0 2 0 P 712 -211 -3.4151948167321966e-01 3.5677794235476196e-01 -2.8067602723394575e-01 5.8496570299212680e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 -7.2506524475288603e-01 1.9867461368753286e-01 5.9368227402856999e-01 9.6740345986986576e-01 1.3497999999999999e-01 2 0 0 -318 0 V -155 0 0 0 0 0 0 2 0 P 714 -2212 -3.5608861224584709e+00 1.1525536980579607e+00 2.8962424512255511e+00 4.8246099254971275e+00 9.3827000000000005e-01 1 0 0 0 0 P 715 111 -8.3632026203241783e-01 2.0800559919043651e-01 3.2444446810001304e-01 9.3068884341719971e-01 1.3497999999999999e-01 2 0 0 -319 0 V -156 0 0 0 0 0 0 2 0 P 716 211 -1.1306824730892535e+00 4.8273253357717344e-01 -3.0117334594185058e-01 1.2734436474107824e+00 1.3957000000000000e-01 1 0 0 0 0 P 717 111 -6.4622420537329928e-01 4.0150455888802761e-01 5.0629774477236189e-01 9.2377954143821639e-01 1.3497999999999999e-01 2 0 0 -320 0 V -157 0 0 0 0 0 0 2 0 P 718 211 -1.0352986897456657e+00 7.4858360776832011e-01 -3.9691823054075975e-01 1.3450816560507151e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -5.6804825497807188e-01 -3.7110419279102115e-02 9.3917673657629541e-02 5.9359608954908416e-01 1.3957000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 720 211 -4.0930588239038690e-01 6.5307329532319214e-01 -3.3231548555292839e-01 8.5085216181305268e-01 1.3957000000000000e-01 1 0 0 0 0 P 721 -211 -8.4500748455481334e-01 7.4792761883423964e-01 1.4066170411134560e-01 1.1457307152521559e+00 1.3957000000000000e-01 1 0 0 0 0 V -159 0 0 0 0 0 0 2 0 P 722 -211 -3.6109504026450950e-01 7.3779627850620130e-02 -1.2181736787126236e-01 4.1249523343244371e-01 1.3957000000000000e-01 1 0 0 0 0 P 723 211 -1.7763335237582598e+00 1.9444584768840965e+00 -5.5514808215671196e-01 2.6951713737675629e+00 1.3957000000000000e-01 1 0 0 0 0 V -160 0 0 0 0 0 0 2 0 P 724 -211 -1.6482679397381022e+00 8.8471299319481067e-01 -1.5365596947315590e+00 2.4248710814947980e+00 1.3957000000000000e-01 1 0 0 0 0 P 725 111 -4.4317426706992963e-01 -1.0650811113334114e-02 -2.3083876272404862e-02 4.6397126690572221e-01 1.3497999999999999e-01 2 0 0 -321 0 V -161 0 -7.8394970451055611e-05 3.1026311904075705e-05 -5.2106492425340249e-05 1.0351664867426895e-04 0 2 0 P 726 22 -1.6971195158755500e-01 1.3938874859463266e-01 -1.2495617070277516e-01 2.5267650136713427e-01 0 1 0 0 0 0 P 727 22 -1.8455032912403493e-01 8.1733801993293532e-04 -1.1051001724619497e-01 2.1510917212658032e-01 0 1 0 0 0 0 V -162 0 -9.1167737712187381e-06 9.3761795882909441e-06 -1.2362874409905903e-05 1.8044555493445634e-05 0 2 0 P 728 22 -7.5942088610558534e-01 7.1885645414628663e-01 -9.3535146280212156e-01 1.4029814834441805e+00 0 1 0 0 0 0 P 729 22 -1.7428316017161513e-01 2.4141491376313437e-01 -3.3080542008418967e-01 4.4507078814919276e-01 0 1 0 0 0 0 V -163 0 0 0 0 0 0 3 0 P 730 111 -4.5963499716483824e-01 2.7505646247229043e-01 -4.3969447522900468e-01 7.0602494298247087e-01 1.3497999999999999e-01 2 0 0 -322 0 P 731 111 -1.8318743184021322e+00 1.1941077340915145e+00 -1.8079395601230104e+00 2.8405143640714496e+00 1.3497999999999999e-01 2 0 0 -323 0 P 732 111 -2.5530782319313845e+00 1.5236449486056673e+00 -2.5929967635705666e+00 3.9473477429865338e+00 1.3497999999999999e-01 2 0 0 -324 0 V -164 0 0 0 0 0 0 2 0 P 733 -311 -1.5138108668164783e+00 -2.9467013057244379e-01 -7.8986213903080504e-01 1.8027788144743540e+00 4.9767000000000000e-01 2 0 0 -325 0 P 734 -211 -4.1809906510578192e-02 -6.9746511115502327e-02 -2.7181957124113687e-01 3.1619346657532893e-01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 3 0 P 735 211 -6.3719567169206875e-02 -5.5089991719579318e-02 -1.8248870767575293e-01 2.4469778044980464e-01 1.3957000000000000e-01 1 0 0 0 0 P 736 -211 -4.0164641466420042e-01 1.1044828194922671e-01 -9.7225955333967329e-02 4.4994592640532410e-01 1.3957000000000000e-01 1 0 0 0 0 P 737 111 -6.2294532180885842e-01 -1.4851708557474835e-01 -6.1391646745225370e-01 8.9734677136557051e-01 1.3497999999999999e-01 2 0 0 -326 0 V -166 0 0 0 0 0 0 2 0 P 738 321 -7.8254755161574940e-01 -7.3549912827612585e-01 -4.1713508362376306e-01 1.2533883182097034e+00 4.9359999999999998e-01 1 0 0 0 0 P 739 111 -2.2401297803708900e-01 -3.8548655411958099e-01 -5.8157635551566078e-01 7.4513915172329537e-01 1.3497999999999999e-01 2 0 0 -327 0 V -167 0 0 0 0 0 0 1 0 P 740 310 -3.2030841538656180e-01 -1.8204817490395758e-01 -4.0865293444053152e-01 7.4189734376136540e-01 4.9767000000000000e-01 2 0 0 -328 0 V -168 0 0 0 0 0 0 3 0 P 741 211 -1.3549476297173710e-01 -2.1535175529409303e-01 -9.3987852076644784e-02 3.0503886725955992e-01 1.3957000000000000e-01 1 0 0 0 0 P 742 -211 -7.6426660223443812e-02 -4.1578070195926846e-02 -2.6661229557165857e-02 1.6661445428181507e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 221 -1.0900962573856223e+00 -1.1160874818528330e+00 -1.4047561135441382e-02 1.6534388268056950e+00 5.4744999999999999e-01 2 0 0 -329 0 V -169 0 4.0220936049095037e+01 -1.2171092560732269e+01 -3.6257780495028605e+01 6.0588511577696146e+01 0 2 0 P 744 2112 1.7362008329919048e+00 -5.1247370511911350e-01 -1.4562912070801681e+00 2.5061122272634377e+00 9.3957000000000002e-01 1 0 0 0 0 P 745 111 1.1046590719593957e-01 -4.6338546197391937e-02 -2.0841488607171871e-01 2.7569247841135824e-01 1.3497999999999999e-01 2 0 0 -330 0 V -170 0 0 0 0 0 0 2 0 P 746 211 9.5383041348918299e-02 -1.2650070169427088e-01 -2.7325460904288018e-01 3.4532335335058018e-01 1.3957000000000000e-01 1 0 0 0 0 P 747 111 1.0883905089738617e+00 -1.2838515962192216e+00 -5.5664450989020169e-02 1.6894339148492710e+00 1.3497999999999999e-01 2 0 0 -331 0 V -171 0 2.1635551824207317e+02 -8.6410982851484263e+01 -2.0851441267329940e+02 3.1712341497871381e+02 0 2 0 P 748 -2112 4.3289550973479338e+00 -1.7920969780253448e+00 -4.3574566792015048e+00 6.4669687110361096e+00 9.3957000000000002e-01 1 0 0 0 0 P 749 -211 5.2330370128865655e-01 -1.4586353828938983e-01 -3.1894770261105448e-01 6.4523666780924460e-01 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 750 -311 5.4465007232016194e-01 -3.2223997411015792e-01 -5.0788101077084169e-01 9.5189329874439432e-01 4.9767000000000000e-01 2 0 0 -332 0 P 751 -211 1.2269274935211105e+00 -3.6167749091604340e-01 -5.6251064055231581e-01 1.4043004263432721e+00 1.3957000000000000e-01 1 0 0 0 0 V -173 0 0 0 0 0 0 1 0 P 752 310 2.5399994899780975e+00 -1.0236957320748103e+00 -2.2788998574163819e+00 3.5973059850379121e+00 4.9767000000000000e-01 2 0 0 -333 0 V -174 0 0 0 0 0 0 3 0 P 753 111 1.3120761623977319e+00 -1.1033322296118198e-01 -1.4330758417688065e+00 1.9508057936869920e+00 1.3497999999999999e-01 2 0 0 -334 0 P 754 111 1.4813848164603416e+00 6.0845277499283139e-02 -1.3701601372565697e+00 2.0233046049372168e+00 1.3497999999999999e-01 2 0 0 -335 0 P 755 221 3.7196099554018494e+00 -2.9889621307940362e-01 -4.1279724390343731e+00 5.5914841613336570e+00 5.4744999999999999e-01 2 0 0 -336 0 V -175 0 1.0095369485015600e-04 7.8504524082557021e-05 -8.8866764207384154e-05 1.5815509287845020e-04 0 2 0 P 756 22 3.1944380660188942e-01 1.6414929096390204e-01 -2.5331359838459239e-01 4.3949643278052625e-01 0 1 0 0 0 0 P 757 22 1.7448490439544218e-01 2.1994401483446865e-01 -1.8147827684699785e-01 3.3429734741805411e-01 0 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 758 -211 1.1930404069608165e-01 -8.9410136632268766e-02 -1.1344026757835239e-01 2.3361529459190267e-01 1.3957000000000000e-01 1 0 0 0 0 P 759 111 2.6430915936667021e+00 2.0180175482183680e-02 -3.4794506078894321e+00 4.3716285918563829e+00 1.3497999999999999e-01 2 0 0 -337 0 V -177 0 0 0 0 0 0 2 0 P 760 -211 2.0084685118440526e+00 -1.7922826185027713e-01 -1.9325250111081897e+00 2.7964622715805847e+00 1.3957000000000000e-01 1 0 0 0 0 P 761 111 4.1085791459817571e+00 2.4294980736742192e-01 -5.1441921814888838e+00 6.5894142386245083e+00 1.3497999999999999e-01 2 0 0 -338 0 V -178 0 0 0 0 0 0 2 0 P 762 211 7.9327205770216380e-01 2.0313408380703254e-01 -2.1624927834524876e+00 2.3165489066538689e+00 1.3957000000000000e-01 1 0 0 0 0 P 763 -211 1.2435484716778789e+00 9.8225210878185798e-01 -2.4960935107485174e+00 2.9599315204780758e+00 1.3957000000000000e-01 1 0 0 0 0 V -179 0 1.2088862691609599e-05 9.6469317710383224e-07 -1.4179881670775976e-05 1.9374322063983607e-05 0 2 0 P 764 22 1.3454094812195955e-01 7.0622895762782328e-02 -1.2139049965225597e-01 1.9448525273989536e-01 0 1 0 0 0 0 P 765 22 1.7819534580007701e-01 -4.5666489467529950e-02 -2.4544000832012339e-01 3.0672431792943855e-01 0 1 0 0 0 0 V -180 0 0 0 0 0 0 2 0 P 766 2112 1.9661104484772993e+00 9.5807126217580196e-01 -6.4712035318465793e+00 6.8951256532787264e+00 9.3957000000000002e-01 1 0 0 0 0 P 767 111 4.1777342820818947e-01 1.3667150440734863e-01 -8.8194834066734651e-01 9.9461862713287097e-01 1.3497999999999999e-01 2 0 0 -339 0 V -181 0 0 0 0 0 0 3 0 P 768 -211 5.7626737879887358e-01 3.3858824231297074e-02 -1.7666790167227169e+00 1.8638307446960940e+00 1.3957000000000000e-01 1 0 0 0 0 P 769 211 1.0682192271874575e+00 3.2795833424313037e-01 -2.7277297925489923e+00 2.9510402559761646e+00 1.3957000000000000e-01 1 0 0 0 0 P 770 111 1.2055961226794266e-01 -2.6172886178875061e-03 -1.0773466449679743e+00 1.0924453597931827e+00 1.3497999999999999e-01 2 0 0 -340 0 V -182 0 0 0 0 0 0 2 0 P 771 -2112 1.6102279975905751e+00 3.6383712263261492e-01 -3.8332373256382906e+00 4.2780500038682021e+00 9.3957000000000002e-01 1 0 0 0 0 P 772 211 8.3601308834763544e-01 1.9634428529439810e-01 -2.4587509477984764e+00 2.6081420533506652e+00 1.3957000000000000e-01 1 0 0 0 0 V -183 0 4.1698145759518841e-05 6.5311784968738500e-05 -1.6740618566523179e-04 1.8458512857832867e-04 0 2 0 P 773 22 2.5320977253230813e-02 3.3703738385329675e-02 -5.0172966764707429e-02 6.5531827871484011e-02 0 1 0 0 0 0 P 774 22 8.3830199953908757e-01 1.3189885007281006e+00 -3.4170274510056990e+00 3.7574669005076675e+00 0 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 775 -211 8.1716326256863681e-01 -8.9231330551442023e-01 -4.2401205350736690e+00 4.4115848365120787e+00 1.3957000000000000e-01 1 0 0 0 0 P 776 111 6.4588454567460452e-01 -4.0362008444527683e-02 -2.9338383377905215e+00 3.0073947081745716e+00 1.3497999999999999e-01 2 0 0 -341 0 V -185 0 0 0 0 0 0 2 0 P 777 311 5.6174670730865028e-01 -6.2950457748347358e-02 -2.2955569852841284e+00 2.4159427610954678e+00 4.9767000000000000e-01 2 0 0 -342 0 P 778 211 1.4856660839424829e-01 4.0588042480348546e-01 -9.9792122110506121e-01 1.0964203139308593e+00 1.3957000000000000e-01 1 0 0 0 0 V -186 0 0 0 0 0 0 2 0 P 779 -311 1.5407447738980127e+00 -1.3316535460166488e+00 -6.0987639432451433e+00 6.4490148619180436e+00 4.9767000000000000e-01 2 0 0 -343 0 P 780 111 1.6819123990891657e-01 -1.0512837411861351e-02 -2.8333185486807494e-01 3.5622374052767852e-01 1.3497999999999999e-01 2 0 0 -344 0 V -187 0 0 0 0 0 0 2 0 P 781 -211 5.8830946827256825e-01 -9.0528623294076349e-01 -3.5319246737419561e+00 3.6958927040565523e+00 1.3957000000000000e-01 1 0 0 0 0 P 782 111 -7.1855628866581506e-02 -1.3160989485807398e-01 -1.9918282481401972e-01 2.8350977747735201e-01 1.3497999999999999e-01 2 0 0 -345 0 V -188 0 0 0 0 0 0 2 0 P 783 311 9.4003667497304433e-02 -3.1182886738482624e-01 -1.3554525066264755e+00 1.4802029788706152e+00 4.9767000000000000e-01 2 0 0 -346 0 P 784 111 1.0002796326081648e-01 -2.6748650853087302e-01 -1.1057075415516162e+00 1.1499406043462694e+00 1.3497999999999999e-01 2 0 0 -347 0 V -189 0 0 0 0 0 0 2 0 P 785 130 -1.7161923559643790e+00 -6.4073818751497102e-01 -6.8688700511546514e+00 7.1263534038216099e+00 4.9767000000000000e-01 1 0 0 0 0 P 786 310 -2.5051171293892702e+00 -8.2639795035054497e-01 -9.1808031319807988e+00 9.5652165151339652e+00 4.9767000000000000e-01 2 0 0 -348 0 V -190 0 0 0 0 0 0 2 0 P 787 -321 -3.5148307679526312e+00 -9.4607833124135277e-01 -7.7242439110249403e+00 8.5531680968631019e+00 4.9359999999999998e-01 1 0 0 0 0 P 788 211 -1.3044835370445167e+00 -7.0137527997488702e-01 -3.6190252144359651e+00 3.9128541845311982e+00 1.3957000000000000e-01 1 0 0 0 0 V -191 0 0 0 0 0 0 2 0 P 789 211 -2.9911575108190287e+00 -2.1225640010898433e-01 -7.5419554244795615e+00 8.1174286226398689e+00 1.3957000000000000e-01 1 0 0 0 0 P 790 111 -5.1613611444274110e-01 -2.9097434055831806e-01 -2.0710778536129317e+00 2.1583895921777763e+00 1.3497999999999999e-01 2 0 0 -349 0 V -192 0 0 0 0 0 0 2 0 P 791 321 -3.1207882401218261e+00 3.0116956655675831e-01 -8.6023975779104340e+00 9.1692370127476792e+00 4.9359999999999998e-01 1 0 0 0 0 P 792 -211 -1.1723432353656389e+00 8.5807059795801693e-02 -4.4678612094461787e+00 4.6220141805053174e+00 1.3957000000000000e-01 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 793 -311 -8.3450054541391927e-01 1.9964687782571738e-01 -4.0272380705156614e+00 4.1475983341727289e+00 4.9767000000000000e-01 2 0 0 -350 0 P 794 111 -2.5670874764005086e-01 4.4714711099880600e-01 -1.3731109907358314e+00 1.4729199955425407e+00 1.3497999999999999e-01 2 0 0 -351 0 V -194 0 0 0 0 0 0 2 0 P 795 -211 -5.7496877565237048e+00 8.2446943362881650e-02 -1.6557133164810256e+01 1.7527802064667096e+01 1.3957000000000000e-01 1 0 0 0 0 P 796 211 -4.1661839079876541e+00 -2.3381708434021015e-02 -1.3792120374071869e+01 1.4408320487039873e+01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 2 0 P 797 -211 -1.8665069558979233e-01 -1.5178471632032953e-01 -5.0374220669992720e-01 5.7542425911974582e-01 1.3957000000000000e-01 1 0 0 0 0 P 798 111 -1.1652777600900073e+00 3.3491157915951614e-01 -4.9664382166022989e+00 5.1140753009457462e+00 1.3497999999999999e-01 2 0 0 -352 0 V -196 0 0 0 0 0 0 3 0 P 799 211 -4.6701327677026022e-01 2.8028243179657009e-01 -4.0533006609880218e+00 4.0921126176486675e+00 1.3957000000000000e-01 1 0 0 0 0 P 800 -211 -4.8124716228211656e-01 7.3611711897417842e-01 -4.3167073711402644e+00 4.4075968006395643e+00 1.3957000000000000e-01 1 0 0 0 0 P 801 111 -3.6320212150399722e-01 1.3927519202513838e-01 -3.5087963755408791e+00 3.5328720562153753e+00 1.3497999999999999e-01 2 0 0 -353 0 V -197 0 0 0 0 0 0 2 0 P 802 211 -1.1045198883211300e+00 6.1450024970152328e-01 -8.5449834963639830e+00 8.6390854538320774e+00 1.3957000000000000e-01 1 0 0 0 0 P 803 -211 -9.8331605377375425e-02 2.2686684053960482e-01 -3.4347638070050217e+00 3.4464793431506511e+00 1.3957000000000000e-01 1 0 0 0 0 V -198 0 -6.2970991409746823e+01 3.3910208508275410e+01 -9.0008682488156717e+02 9.0336386426994420e+02 0 2 0 P 804 2112 -2.5396788439766236e+00 1.2157183613056635e+00 -3.4855488214573448e+01 3.4981649335411944e+01 9.3957000000000002e-01 1 0 0 0 0 P 805 -211 -1.3507752896033373e-01 2.2465194706289190e-01 -3.3766075036451713e+00 3.3896419360637569e+00 1.3957000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 2 0 P 806 321 -1.1513165468658157e+00 3.4840352936962132e-01 -9.9149255644493444e+00 9.9998152342398505e+00 4.9359999999999998e-01 1 0 0 0 0 P 807 -211 -2.8352998257604051e-01 -1.4300279921061923e-01 -1.9238624253763283e+00 1.9548824691721318e+00 1.3957000000000000e-01 1 0 0 0 0 V -200 0 0 0 0 0 0 2 0 P 808 -2112 -1.9783389027749412e+00 1.5940226534687487e+00 -2.9259777274816273e+01 2.9384895626677988e+01 9.3957000000000002e-01 1 0 0 0 0 P 809 211 -2.5539953511118618e-01 9.0831389175004801e-02 -4.7074485463090934e+00 4.7173118261189888e+00 1.3957000000000000e-01 1 0 0 0 0 V -201 0 0 0 0 0 0 2 0 P 810 -211 -1.6046804652293709e+00 -1.3706324349850536e+00 -5.6524657605689782e+01 5.6564211564315876e+01 1.3957000000000000e-01 1 0 0 0 0 P 811 211 -7.4949871227418741e-01 -1.2372491108447041e-01 -1.8609750427646308e+01 1.8625771042765059e+01 1.3957000000000000e-01 1 0 0 0 0 V -202 0 -2.6479584649299556e-04 -2.1421853288833853e-04 -4.8240877371564621e-03 4.8362845524407483e-03 0 2 0 P 812 22 -5.5906488067616233e-01 -4.0552720267772441e-01 -8.9791940654111286e+00 9.0057166243021172e+00 0 1 0 0 0 0 P 813 22 -2.7889209371696083e-01 -2.7237585379183482e-01 -6.2868232002393247e+00 6.2988979477948437e+00 0 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 814 -211 -1.8637319565053101e-01 -8.8824884659952558e-02 -6.6560191730818961e+00 6.6606828362808006e+00 1.3957000000000000e-01 1 0 0 0 0 P 815 211 1.4611538051791359e-04 -9.8973030878162352e-02 -5.0823128614858275e+00 5.0851921781890574e+00 1.3957000000000000e-01 1 0 0 0 0 P 816 111 -2.7814999916438199e-01 -3.9842246706850398e-01 -1.5848634075463686e+01 1.5856655685946162e+01 1.3497999999999999e-01 2 0 0 -354 0 V -204 0 0 0 0 0 0 2 0 P 817 -211 -1.2625523904545799e+00 -7.0269785271726926e-01 -3.7064738210799192e+01 3.7093154641130667e+01 1.3957000000000000e-01 1 0 0 0 0 P 818 111 -1.7414921890264654e-01 -1.3083548413523588e-01 -2.5824536554184165e+00 2.5951362887403899e+00 1.3497999999999999e-01 2 0 0 -355 0 V -205 0 0 0 0 0 0 2 0 P 819 211 -5.6925666316497670e-01 -1.3987475953621376e+00 -3.3196741347968491e+01 3.3231365663976405e+01 1.3957000000000000e-01 1 0 0 0 0 P 820 111 -6.8439818592604529e-01 -4.5860538684020624e-01 -2.2414482175957374e+01 2.2430023419391443e+01 1.3497999999999999e-01 2 0 0 -356 0 V -206 0 0 0 0 0 0 3 0 P 821 -211 -5.3120299876709000e-02 -3.3774363093280281e-02 -3.6179528115009822e+00 3.6211910754624936e+00 1.3957000000000000e-01 1 0 0 0 0 P 822 211 -1.8662709539330710e-01 -2.9134914310351129e-01 -6.7621197947336249e+00 6.7724041447000500e+00 1.3957000000000000e-01 1 0 0 0 0 P 823 221 -4.4544027678516634e-01 -1.1870820891952936e+00 -3.2096007801194617e+01 3.2125706205522029e+01 5.4744999999999999e-01 2 0 0 -357 0 V -207 0 0 0 0 0 0 2 0 P 824 -211 -5.6646123570730544e-01 -3.5327884409919380e-01 -1.0181613113185415e+01 1.0204430882941798e+01 1.3957000000000000e-01 1 0 0 0 0 P 825 211 -4.9010259167668557e-01 -5.0028032943428302e-01 -2.5820834815988750e+01 2.5830707913989965e+01 1.3957000000000000e-01 1 0 0 0 0 V -208 0 0 0 0 0 0 2 0 P 826 -211 -9.0905779023718536e-01 -1.3062672508891739e+00 -3.7159584448281748e+01 3.7193909667452537e+01 1.3957000000000000e-01 1 0 0 0 0 P 827 111 7.1457356059905802e-02 -4.2532254545870429e-01 -5.8303490811423426e+00 5.8478368162755618e+00 1.3497999999999999e-01 2 0 0 -358 0 V -209 0 0 0 0 0 0 2 0 P 828 22 6.8132161857011833e-02 2.3443704948346546e-02 -3.0512692640476500e+00 3.0521198732197439e+00 0 1 0 0 0 0 P 829 113 2.2753297811627357e-01 -5.2984814882480835e-01 -1.2292549264907297e+01 1.2332727051936599e+01 8.1048059227371272e-01 2 0 0 -359 0 V -210 0 0 0 0 0 0 2 0 P 830 2112 1.7750004933183933e-01 -1.8613180362198617e-01 -2.7560587277087745e+01 2.7577797485635131e+01 9.3957000000000002e-01 1 0 0 0 0 P 831 -211 -7.0972557261446551e-02 1.0668110492393661e-01 -3.1013449159449955e+00 3.1071269743269090e+00 1.3957000000000000e-01 1 0 0 0 0 V -211 0 4.4830943860939037e+01 1.1083090269034397e+01 -1.4052447869033113e+03 1.4075169608086844e+03 0 2 0 P 832 -2112 4.5656801135725472e-01 9.4026667153168070e-02 -1.7050540525950169e+01 1.7082769663467914e+01 9.3957000000000002e-01 1 0 0 0 0 P 833 211 3.6606590460758476e-01 1.0934460197042158e-01 -8.7352654906540401e+00 8.7447300396071466e+00 1.3957000000000000e-01 1 0 0 0 0 V -212 0 5.7691608625726545e-05 1.2781195896095646e-04 -3.3290413036550803e-03 3.3320447660545862e-03 0 2 0 P 834 22 7.0318476686323100e-02 1.1800166990169499e-01 -2.3639250872500330e+00 2.3679127729697198e+00 0 1 0 0 0 0 P 835 22 3.5070240542691811e-01 8.1474236321176186e-01 -2.1930698336220601e+01 2.1948629269498650e+01 0 1 0 0 0 0 V -213 0 0 0 0 0 0 2 0 P 836 211 4.1811503407181165e+00 1.5317879201872957e+00 -7.9724688632021298e+01 7.9849069184692226e+01 1.3957000000000000e-01 1 0 0 0 0 P 837 -211 1.8245659049227354e+00 2.9183825893235510e-01 -3.6357118868665069e+01 3.6404309944372308e+01 1.3957000000000000e-01 1 0 0 0 0 V -214 0 1.0951925670253610e-05 4.9162687510065337e-06 -2.7368620645041870e-04 2.7395116892353860e-04 0 2 0 P 838 22 1.4632329825906920e+00 6.5877258176048370e-01 -3.6853941993225227e+01 3.6888861089979855e+01 0 1 0 0 0 0 P 839 22 2.3271999880236618e-02 8.5126257520788985e-03 -2.9348958833824224e-01 2.9453385075160982e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 2 0 P 840 -211 2.8779524165024722e-01 4.0640104617686114e-02 -2.0104845102170387e+01 2.0107430320316528e+01 1.3957000000000000e-01 1 0 0 0 0 P 841 111 3.0930040939301684e-01 -3.6502136580504896e-01 -7.7236870764403811e+00 7.7396685326903398e+00 1.3497999999999999e-01 2 0 0 -360 0 V -216 0 0 0 0 0 0 2 0 P 842 211 3.0276628075156493e+00 -3.5733790999489246e-01 -1.7712974512174085e+02 1.7715603438532855e+02 1.3957000000000000e-01 1 0 0 0 0 P 843 -211 1.3582140284413320e+00 -5.7215151636177142e-01 -7.0968670959063985e+01 7.0984109772437961e+01 1.3957000000000000e-01 1 0 0 0 0 V -217 0 0 0 0 0 0 2 0 P 844 211 -5.6543510128753667e-03 -2.2762777305063012e-01 -1.4470888982236872e+01 1.4473353242972889e+01 1.3957000000000000e-01 1 0 0 0 0 P 845 111 6.9513392964734266e-01 2.1888802889291004e-01 -4.7854166732563186e+01 4.7859906147188553e+01 1.3497999999999999e-01 2 0 0 -361 0 V -218 0 0 0 0 0 0 2 0 P 846 321 5.4512226916432993e-01 4.7176839914538726e-01 -3.8741811826985881e+01 3.8751662523153172e+01 4.9359999999999998e-01 1 0 0 0 0 P 847 -211 1.4727780141313889e+00 1.0500333464796536e+00 -8.9995332445233586e+01 9.0013615563539275e+01 1.3957000000000000e-01 1 0 0 0 0 V -219 0 0 0 0 0 0 2 0 P 848 -311 7.2778713491014307e-02 3.9882991009001401e-01 -7.2262711048729940e+01 7.2265561961279005e+01 4.9767000000000000e-01 2 0 0 -362 0 P 849 -211 1.2639392772879457e-01 -1.0124019744766834e-01 -7.8789965170395204e+00 7.8818964027045455e+00 1.3957000000000000e-01 1 0 0 0 0 V -220 0 0 0 0 0 0 2 0 P 850 -211 1.6146678971869610e-01 1.4158399578098137e-02 -2.0277659739326335e+01 2.0278787840333475e+01 1.3957000000000000e-01 1 0 0 0 0 P 851 211 -3.5175474670912837e-02 -1.8748452755099476e-01 -3.8246162169720845e+00 3.8319129366564688e+00 1.3957000000000000e-01 1 0 0 0 0 V -221 0 1.6689832581946542e-04 2.1834633342327728e-04 -7.5006913282455101e-03 7.5057488337445608e-03 0 2 0 P 852 22 3.0548999852681913e-01 3.1956612970430903e-01 -1.2847540652723671e+01 1.2855144786187415e+01 0 1 0 0 0 0 P 853 22 8.7370649917403398e-01 1.2231289835891646e+00 -4.0147532252739190e+01 4.0175661208521859e+01 0 1 0 0 0 0 V -222 0 0 0 0 0 0 2 0 P 854 321 5.1448579984022483e-02 6.1891140094856301e-02 -1.2352997603585408e+01 1.2363117253500084e+01 4.9359999999999998e-01 1 0 0 0 0 P 855 -211 3.7579692124739515e-03 4.1600092837294123e-01 -2.4825575756629526e+01 2.4829453524550061e+01 1.3957000000000000e-01 1 0 0 0 0 V -223 0 0 0 0 0 0 2 0 P 856 -321 -3.6777644986363926e-02 -8.8065548970373941e-01 -3.0402264514962738e+01 3.0419043957436902e+01 4.9359999999999998e-01 1 0 0 0 0 P 857 211 6.8250437651230692e-02 1.6606879689505374e-01 -9.5104082335366034e+00 9.5131268004249048e+00 1.3957000000000000e-01 1 0 0 0 0 V -224 0 0 0 0 0 0 2 0 P 858 -211 4.0901775519190678e-02 2.9768628075636905e-01 -1.6478207903663130e+02 1.6478241211214410e+02 1.3957000000000000e-01 1 0 0 0 0 P 859 111 -3.4693450225307165e-01 -1.6777562949487576e-01 -5.9611492116256770e+01 5.9612890587000130e+01 1.3497999999999999e-01 2 0 0 -363 0 V -225 0 0 0 0 0 0 2 0 P 860 2212 3.3046198281123557e-01 -3.4083879378721821e-01 -1.4347298131449233e+02 1.4347683469489769e+02 9.3827000000000005e-01 1 0 0 0 0 P 861 -211 -8.2731503159865910e-02 -2.0374247400743012e-01 -5.4388938553449002e+01 5.4389562162726413e+01 1.3957000000000000e-01 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 862 211 -1.1008639236004139e-02 -5.0481991804863358e-01 -1.0667173264158193e+03 1.0667174550553855e+03 1.3957000000000000e-01 1 0 0 0 0 P 863 111 -4.9655940063803744e-01 -3.8191991836027200e-02 -9.2232689155189644e+02 9.2232703588762411e+02 1.3497999999999999e-01 2 0 0 -364 0 V -227 0 0 0 0 0 0 2 0 P 864 -211 1.5585361352341315e-01 -1.6560667234316825e-01 1.3704045398708921e+01 1.3706642768874806e+01 1.3957000000000000e-01 1 0 0 0 0 P 865 111 -3.8559464417913636e-01 1.0140702891132549e-02 2.7986114776478566e+00 2.8282913334197168e+00 1.3497999999999999e-01 2 0 0 -365 0 V -228 0 0 0 0 0 0 2 0 P 866 -311 -7.2972799671970467e-01 -1.8580832991740731e-01 4.3222820379583027e+00 4.4155209352034817e+00 4.9767000000000000e-01 2 0 0 -366 0 P 867 -211 -4.2889125578667177e-02 6.6375325998628915e-02 2.7911618210939602e+00 2.7957663095163872e+00 1.3957000000000000e-01 1 0 0 0 0 V -229 0 0 0 0 0 0 3 0 P 868 111 1.2034398708392441e-01 2.3430551624344576e-01 1.2820088951837123e+00 1.3157310355462191e+00 1.3497999999999999e-01 2 0 0 -367 0 P 869 111 2.0153443268229104e-03 -1.2424476215629600e-02 6.0384428110396371e-01 6.1887474132004383e-01 1.3497999999999999e-01 2 0 0 -368 0 P 870 221 1.3060967020282773e-02 -8.2795755704462778e-03 3.2720830978446203e+00 3.3175998013521126e+00 5.4744999999999999e-01 2 0 0 -369 0 V -230 0 1.0599307393900051e-04 9.5620052118207397e-05 1.2309568371378085e-05 1.4817379949278586e-04 0 2 0 P 871 22 1.6653677328808961e-01 9.8791948226058121e-02 -3.6521785883343046e-02 1.9704869128115887e-01 0 1 0 0 0 0 P 872 22 2.1230088968229938e-01 2.4297073240358216e-01 8.0518322078442520e-02 3.3255021388499628e-01 0 1 0 0 0 0 V -231 0 1.4654365424116868e-04 7.6357012877789859e-05 1.6483938046983675e-04 2.3380270288774139e-04 0 2 0 P 873 22 9.3421965356389847e-01 4.6669050004158746e-01 1.1279934013724588e+00 1.5371842757047465e+00 0 1 0 0 0 0 P 874 22 5.1519407024876696e-01 2.8853089079580280e-01 5.0237716305037494e-01 7.7527918772365723e-01 0 1 0 0 0 0 V -232 0 4.0164485791437056e-05 2.8376786503646791e-05 7.5724759276800174e-05 9.0519505831752696e-05 0 2 0 P 875 22 3.4734435100350886e-01 2.9599373368821918e-01 6.0519211728259992e-01 7.5796958209267029e-01 0 1 0 0 0 0 P 876 22 4.9816346849804777e-01 3.0136969343860798e-01 9.8889964903244898e-01 1.1475683201124831e+00 0 1 0 0 0 0 V -233 0 1.9479059921638070e-05 2.1673852183064767e-05 3.2515148289318688e-02 3.2515186973699657e-02 0 2 0 P 877 22 -3.8775247497747647e-03 -3.7013966843352647e-02 2.6851068179037838e+01 2.6851093970717059e+01 0 1 0 0 0 0 P 878 22 6.8285381427711636e-02 1.0867894301168061e-01 8.0660845604540185e+01 8.0660947723451898e+01 0 1 0 0 0 0 V -234 0 -3.7617518097620552e+02 3.4882827063513395e+02 -1.3769417268848281e+03 1.4757343109266865e+03 0 2 0 P 879 2212 -2.2059257797710532e+00 2.0423606895094260e+00 -8.3930422231157102e+00 8.9644215699516856e+00 9.3827000000000005e-01 1 0 0 0 0 P 880 -211 -6.9277925954244846e-01 6.1142943690453333e-01 -2.3190064729751061e+00 2.5002119640874492e+00 1.3957000000000000e-01 1 0 0 0 0 V -235 0 -2.4713577208076487e+02 2.3069158997428715e+02 -9.0008162447126244e+02 9.6537198202907734e+02 0 2 0 P 881 22 -6.7671155971819541e-01 6.6096583431377787e-01 -2.4551935930406810e+00 2.6311195237948328e+00 0 1 0 0 0 0 P 882 22 -1.7652337246853164e-01 1.8753297357093687e-01 -4.9752402998306644e-01 5.6023145004061747e-01 0 1 0 0 0 0 V -236 0 -1.5947226597663476e+02 2.0694793773230452e+02 -6.5010656767907392e+02 7.0290099104229091e+02 0 2 0 P 883 -2212 -2.7443481929428977e+00 3.5205950710575644e+00 -1.1349499017948537e+01 1.2231823870943309e+01 9.3827000000000005e-01 1 0 0 0 0 P 884 211 -4.1451452427194402e-01 5.7867649132718180e-01 -1.5279589292459834e+00 1.6913979563691290e+00 1.3957000000000000e-01 1 0 0 0 0 V -237 0 -4.5924706998787005e-05 6.3413791074393597e-05 -1.4563080070506844e-04 1.6582194751246879e-04 0 2 0 P 885 22 -2.8429988835817627e-01 5.0006122515676710e-01 -1.0541599813960938e+00 1.2008917194330100e+00 0 1 0 0 0 0 P 886 22 -2.0854677587282885e-01 1.8047170449441721e-01 -5.0869493978345837e-01 5.7864698704077644e-01 0 1 0 0 0 0 V -238 0 4.8265005799884078e-05 5.8819509325741029e-06 -1.9969315381007552e-05 5.9529477454305664e-05 0 2 0 P 887 22 1.3432661641916172e-01 6.9128694281160391e-02 -9.9048533946783493e-02 1.8064614119500547e-01 0 1 0 0 0 0 P 888 22 9.8809990563778996e-02 -4.0716844740602304e-02 2.5898605343474160e-03 1.0690174488020189e-01 0 1 0 0 0 0 V -239 0 3.5871935211710025e-04 -6.9822892979745687e-04 3.6734160054730961e-04 8.6956673524140769e-04 0 2 0 P 889 22 4.1203628489641442e-01 -9.3485604002988376e-01 4.9463123262051023e-01 1.1350725844347047e+00 0 1 0 0 0 0 P 890 22 2.7250304910463602e-01 -3.9756487276154706e-01 2.0636182255051047e-01 5.2430996712974764e-01 0 1 0 0 0 0 V -240 0 8.9033725889631877e-05 -1.4662491093526362e-04 7.3981492309940449e-05 1.8790480894031054e-04 0 2 0 P 891 22 4.1779316103932496e-01 -5.7793612677534878e-01 3.4060206799059567e-01 7.9029808348672692e-01 0 1 0 0 0 0 P 892 22 1.7638412333103407e-01 -4.0058286173197272e-01 1.5312232414456500e-01 4.6370727213196405e-01 0 1 0 0 0 0 V -241 0 1.6105340902380549e-01 -3.9148095691116408e-01 2.1185217737562637e-01 4.7990746644546267e-01 0 2 0 P 893 313 1.3077515279516814e+00 -4.0022943431289661e+00 1.7026823578279346e+00 4.6320488887323155e+00 9.1004155292255939e-01 2 0 0 -370 0 P 894 221 2.4953574547248611e+00 -5.2421218589247802e+00 3.2999867794502324e+00 6.7004674954598693e+00 5.4744999999999999e-01 2 0 0 -371 0 V -242 0 1.8439973574389064e-04 -4.2176111198997967e-04 2.6103510459536629e-04 5.3600646740677355e-04 0 2 0 P 895 22 4.4708762661931321e-02 -1.9848032969901366e-01 6.3025072389883474e-02 2.1299172398461888e-01 0 1 0 0 0 0 P 896 22 2.4705167609813652e-01 -4.6883736785472307e-01 3.4998916725252627e-01 6.3508694314555081e-01 0 1 0 0 0 0 V -243 0 4.0104000259036757e-05 1.0640694752796854e-05 -8.8386015700360530e-06 4.3426546303977933e-05 0 2 0 P 897 22 -1.9610147723206702e-03 1.4300069674658985e-02 -1.1515780676191490e-02 1.8464852455936549e-02 0 1 0 0 0 0 P 898 22 5.8504570597694250e-01 1.4040834280444606e-01 -1.1699143141878822e-01 6.1292738218859733e-01 0 1 0 0 0 0 V -244 0 3.2677955856646688e-05 -4.3089671067595576e-05 5.1146804595936404e-06 5.8893673458197277e-05 0 2 0 P 899 22 1.3446598659964609e-01 -2.2340934702878631e-01 7.1348739747142342e-02 2.7033956527957648e-01 0 1 0 0 0 0 P 900 22 5.9385891159264209e-02 -3.2206814677001407e-02 -4.1007478023840124e-02 7.9028958200740781e-02 0 1 0 0 0 0 V -245 0 1.1921218322500417e+01 4.3407039742321913e+00 -1.9630963482649225e+01 2.5380368127115933e+01 0 2 0 P 901 111 2.7440451839219682e-01 -3.6624640575448994e-02 -1.7245415014556800e-01 3.5298617297815565e-01 1.3497999999999999e-01 2 0 0 -372 0 P 902 111 3.2541888867641583e-01 2.5502982169573868e-01 -8.1528981038382886e-01 9.2404260636469215e-01 1.3497999999999999e-01 2 0 0 -373 0 V -246 0 -2.1695618637632710e-05 5.2564032077402903e-06 -1.7064359730431929e-04 1.7251237972301401e-04 0 2 0 P 903 22 -1.1773904651207510e-02 5.4489069984403745e-03 -1.0443882025546412e-02 1.6655031971656832e-02 0 1 0 0 0 0 P 904 22 -2.3315665854177509e-01 5.3892742555080198e-02 -1.9160203083306295e+00 1.9309065945969204e+00 0 1 0 0 0 0 V -247 0 -5.2833809581156402e-06 1.9475176699915765e-07 -8.7198618141723681e-05 8.7408423541138197e-05 0 2 0 P 905 22 -7.3991251839525818e-02 -2.5189672680330257e-02 -5.7159396729324252e-01 5.7691324166164770e-01 0 1 0 0 0 0 P 906 22 -1.6804756880620597e-01 3.4111514276996116e-02 -3.4230925533788801e+00 3.4273847478486990e+00 0 1 0 0 0 0 V -248 0 -9.1171804669032668e-07 -1.7318060601312199e-06 -6.1152089666541377e-05 6.1341330704448385e-05 0 2 0 P 907 22 1.4019755049683580e-02 -8.7107354787341870e-02 -1.3948118239470060e+00 1.3975994665897935e+00 0 1 0 0 0 0 P 908 22 -4.1995715280512616e-02 3.3967091038459594e-02 -4.8163280139925296e-01 4.8465199758097477e-01 0 1 0 0 0 0 V -249 0 -2.1325793710052130e-05 5.1565493834866512e-05 -8.0843454488132237e-04 8.1136951162857484e-04 0 2 0 P 909 22 -4.3276921699501633e-02 1.0996446271572149e-01 -8.1147420557361905e-01 8.2003381718285162e-01 0 1 0 0 0 0 P 910 22 -2.7797845532930757e-02 6.1893406743600318e-02 -1.8828825851428446e+00 1.8841046529980239e+00 0 1 0 0 0 0 V -250 0 -1.6701339636818947e-04 -1.6506153096845498e-04 -3.3023290916259621e-03 3.3112079242968262e-03 0 2 0 P 911 22 -3.4567556470402061e-01 -2.6743951196603982e-01 -6.0272603738791677e+00 6.0430855614601482e+00 0 1 0 0 0 0 P 912 22 -3.1007268108489437e-02 -1.0484107405651905e-01 -1.4208288462844803e+00 1.4250290214304280e+00 0 1 0 0 0 0 V -251 0 -1.9535322748251820e-06 2.4268159682992375e-07 -7.9361575393008591e-05 7.9391577058740296e-05 0 2 0 P 913 22 -2.6107980161079086e-01 7.1076310178736959e-02 -1.0182552292284559e+01 1.0186146753791997e+01 0 1 0 0 0 0 P 914 22 -1.8794292107744227e-02 -3.6308370662088883e-02 -1.1872363083061963e+00 1.1879400552875101e+00 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 915 130 1.5136428855528727e-01 1.1265286433142743e+00 5.0056577154031487e+01 5.0071953923713266e+01 4.9767000000000000e-01 1 0 0 0 0 V -253 0 7.4370092338388937e-05 6.6934598399305970e-05 7.5181123973681084e-03 7.5188556677393738e-03 0 2 0 P 916 22 1.9258419788016942e-02 8.8629771970716476e-02 7.3392429784793816e+00 7.3398033775007363e+00 0 1 0 0 0 0 P 917 22 2.7480001428210860e-01 1.7602881014929903e-01 2.2387281343611502e+01 2.2389659826533045e+01 0 1 0 0 0 0 V -254 0 1.5425334059674761e-05 3.0046991611887881e-05 8.2657130122742103e-03 8.2659798223198473e-03 0 2 0 P 918 22 2.6319760015829814e-02 -1.2719640516970002e-02 9.7454175347857819e-01 9.7498007584528301e-01 0 1 0 0 0 0 P 919 22 1.0090703035622289e-02 8.3643542304741206e-02 1.8536117598404697e+01 1.8536309063196626e+01 0 1 0 0 0 0 V -255 0 1.7897736092109111e-06 6.0043001396336891e-06 4.0294972086980135e-04 4.0303786098489137e-04 0 2 0 P 920 22 5.9398101201659143e-02 1.0574288775262186e-01 3.7424884968399934e+00 3.7444532099782335e+00 0 1 0 0 0 0 P 921 22 -1.6547501486728216e-02 3.8011529301936263e-02 5.9048976895322864e+00 5.9050432191482773e+00 0 1 0 0 0 0 V -256 0 1.1384423071071414e-05 8.7740814363678007e-06 5.4659807972547365e-04 5.4683649026913853e-04 0 2 0 P 922 22 1.3428031017868719e-01 6.3450022305781395e-02 7.4208418198762223e+00 7.4223278304488911e+00 0 1 0 0 0 0 P 923 22 7.4646857670237821e-02 9.7572101831039815e-02 2.6103374533969186e+00 2.6132267580564990e+00 0 1 0 0 0 0 V -257 0 -1.6545531615628165e-05 -3.5515646360851115e-05 1.4501647613640977e-03 1.4509144677864270e-03 0 2 0 P 924 22 -4.3146084514521801e-02 -1.9809436616175141e-01 6.4168067412303298e+00 6.4200087006804729e+00 0 1 0 0 0 0 P 925 22 -4.5144376657593528e-02 8.5753546926082939e-03 1.3215795814823219e+00 1.3223782142953264e+00 0 1 0 0 0 0 V -258 0 -1.0529630165867429e-04 -1.5660675736938565e-06 3.3923131448298783e-04 3.5654727655869644e-04 0 2 0 P 926 22 -7.8658160716268619e-02 2.4616633660954474e-02 1.4318350966502597e-01 1.6521078154908223e-01 0 1 0 0 0 0 P 927 22 -3.8046487326398803e-01 -3.1445151705046581e-02 1.3359654050937424e+00 1.3894408519115966e+00 0 1 0 0 0 0 V -259 0 0 0 0 0 0 1 0 P 928 130 8.8396225831148437e-02 -4.5671631608254681e-01 1.1338805107579366e+00 1.3227865011761661e+00 4.9767000000000000e-01 1 0 0 0 0 V -260 0 -7.1017372327542415e-05 -2.5638439451088285e-05 5.7130063400804521e-05 9.7483084496666623e-05 0 2 0 P 929 22 -1.3461164146386034e-01 -1.1566045601892425e-01 1.0671790064764101e-01 2.0709018668865053e-01 0 1 0 0 0 0 P 930 22 -2.7854757832446847e-01 -3.3496817659783698e-02 2.2564883790570833e-01 3.6003914819357519e-01 0 1 0 0 0 0 V -261 0 -2.8793318833336836e-04 -2.0242493628758721e-04 1.1575176154834802e-04 3.7627730270159518e-04 0 2 0 P 931 22 -4.2339839730306035e-02 -5.0634063137955015e-02 -1.3270369655853246e-02 6.7324387030625030e-02 0 1 0 0 0 0 P 932 22 -5.5002129258259924e-01 -3.6581207550186345e-01 2.5140493460432428e-01 7.0678592092699355e-01 0 1 0 0 0 0 V -262 0 0 0 0 0 0 1 0 P 933 310 -1.3133250204719007e+00 -5.0279603935217920e-01 5.7832828543341049e-02 1.4928652087657077e+00 4.9767000000000000e-01 2 0 0 -374 0 V -263 0 -1.3954456019047790e-05 -2.9674228784375963e-05 4.8863149954423935e-05 6.6528881083284427e-05 0 2 0 P 934 22 5.9890094132179061e-03 -6.6819311876906921e-04 1.1436154632068632e-01 1.1452020779170001e-01 0 1 0 0 0 0 P 935 22 -6.6680048343926532e-02 -1.2839164066715650e-01 9.8155181820706108e-02 1.7482872177822681e-01 0 1 0 0 0 0 V -264 0 -1.4319428710367026e-06 2.0903160808469950e-05 -1.2544021777588103e-04 1.3085469485632893e-04 0 2 0 P 936 22 1.0596436562090130e-03 1.1957887373005958e-01 -5.1274643485073557e-01 5.2650653969287731e-01 0 1 0 0 0 0 P 937 22 -7.3348541594807836e-03 -2.7974846146247300e-02 -3.6970867453380504e-02 4.6938652970686029e-02 0 1 0 0 0 0 V -265 0 8.8786150964543993e-05 1.8672360543192407e-04 -4.9587652881708492e-05 2.2025573599635220e-04 0 2 0 P 938 22 1.1942408903060209e-01 1.7280216311036439e-01 8.9156710690550256e-03 2.1024316827669276e-01 0 1 0 0 0 0 P 939 22 8.9039874618023082e-02 2.6561241475150604e-01 -1.2534417433733175e-01 3.0690261677350805e-01 0 1 0 0 0 0 V -266 0 1.1247232650998859e-04 2.7385914179585744e-04 -1.1860990282430693e-04 3.2222382427482120e-04 0 2 0 P 940 22 3.0182028340907435e-01 6.9109436988159456e-01 -2.5237066088521515e-01 7.9523446984824075e-01 0 1 0 0 0 0 P 941 22 2.8600905070384521e-02 1.1344898683571876e-01 -9.6081498616972072e-02 1.5139464574871678e-01 0 1 0 0 0 0 V -267 0 9.6681026813240499e-06 1.8115493840971072e-06 -7.6947121233893127e-06 1.5279284485380081e-05 0 2 0 P 942 22 2.9222076748555873e-02 -3.7165520585446379e-02 -8.0921950118753125e-02 9.3720689823046530e-02 0 1 0 0 0 0 P 943 22 1.1902173909491644e-01 6.4942531457104727e-02 -3.7063297306447050e-02 1.4056100019728618e-01 0 1 0 0 0 0 V -268 0 1.5347511943103720e-06 4.1340828854514258e-06 -2.1627471910311208e-05 2.2119510936316028e-05 0 2 0 P 944 22 1.6884465682750532e-01 3.1007927502385402e-01 -1.6766615248530206e+00 1.7134326785318919e+00 0 1 0 0 0 0 P 945 22 -2.5174159666721461e-02 7.6918790629112568e-02 -3.4792047462964310e-01 3.5720987574993912e-01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 1 0 P 946 130 -4.1361698597399521e-01 -1.7885256722596020e-02 -2.6078734476710053e+00 2.6870203276978946e+00 4.9767000000000000e-01 1 0 0 0 0 V -270 0 -6.6579876667178413e-05 -6.7544498162693467e-06 -8.0978110302736472e-04 8.1364023864787991e-04 0 2 0 P 947 22 -1.2713039179077848e-01 -5.4791334402521071e-03 -2.1481998389863186e+00 2.1519653123693647e+00 0 1 0 0 0 0 P 948 22 -8.5492897350626304e-02 -1.6091248004802744e-02 -4.3784162322490600e-01 4.4640032570326077e-01 0 1 0 0 0 0 V -271 0 -5.4250334864175204e-07 -1.4508441236621180e-05 -1.6467394595931918e-02 1.6467415310268407e-02 0 2 0 P 949 22 -1.6823005448525724e-03 -1.2253519988999588e-01 -9.1047473021843814e+01 9.1047555493646968e+01 0 1 0 0 0 0 P 950 22 -1.6902743313315022e-03 3.2340725460062759e-02 -1.1325206205845523e+01 1.1325252508640704e+01 0 1 0 0 0 0 V -272 0 -2.1207580806963190e+01 -1.7751936226071521e+01 -8.8907040310752182e+03 8.8907576895938455e+03 0 2 0 P 951 211 -6.0471716015375682e-02 -1.3639984511783973e-01 -9.7265431019001156e+01 9.7265645594131328e+01 1.3957000000000000e-01 1 0 0 0 0 P 952 -211 -7.0677106484706165e-01 -5.0582545345614083e-01 -2.2438033078271042e+02 2.2438205745262010e+02 1.3957000000000000e-01 1 0 0 0 0 V -273 0 2.8029376033587436e+01 5.2901934910108461e-01 3.8338430513666552e+01 6.0113127699302929e+01 0 2 0 P 953 -211 -3.9542695917418234e-02 -8.6482965880525287e-02 9.3995087886067238e-02 1.9328163294689699e-01 1.3957000000000000e-01 1 0 0 0 0 P 954 211 4.1810089604706902e-01 9.3627777537748411e-02 4.2379479204768722e-01 6.1859221678644050e-01 1.3957000000000000e-01 1 0 0 0 0 V -274 0 -5.0941298795636629e-06 -3.1133474723958619e-06 -5.2576147974414215e-06 9.3640808056529934e-06 0 2 0 P 955 22 -1.6150135965244922e-01 -7.8254176409746717e-02 -9.7693897106125874e-02 2.0432939785292725e-01 0 1 0 0 0 0 P 956 22 2.2300817596876975e-02 -6.8201475692035059e-03 -4.5973980829081218e-02 5.1550439296165262e-02 0 1 0 0 0 0 V -275 0 -5.8624625993551564e-06 -7.4909435641921102e-06 -9.2500469800621540e-05 9.3179475951733561e-05 0 2 0 P 957 22 -8.8059889908252087e-02 -1.6273919686085148e-01 -1.1959555658370025e+00 1.2101852361775336e+00 0 1 0 0 0 0 P 958 22 -4.4573926258109367e-02 -6.7377788583507046e-03 -8.9679813602664882e-01 8.9793047021853489e-01 0 1 0 0 0 0 V -276 0 1.4097296490937100e-05 -7.7030146865594650e-05 1.9294289811133961e-02 1.9294499547329678e-02 0 2 0 P 959 22 7.3832350161548738e-02 -1.0228111973965631e-01 1.9786746675065615e+01 1.9787148774560869e+01 0 1 0 0 0 0 P 960 22 -3.0863211118015547e-02 -1.3250993351934315e-01 3.9023041582833912e+01 3.9023278767882466e+01 0 1 0 0 0 0 V -277 0 1.1176234547676165e+00 1.0726908892541553e+00 1.5369152365663379e+03 1.5369859195070378e+03 0 2 0 P 961 111 -5.7916881337303140e-02 -3.0868881096091792e-02 5.4723173504577929e+00 5.4743752189163430e+00 1.3497999999999999e-01 2 0 0 -375 0 P 962 111 9.5861170769260928e-02 6.7287670804962910e-02 4.6707293161371240e+01 4.6707635040294861e+01 1.3497999999999999e-01 2 0 0 -376 0 V -278 0 0 0 0 0 0 1 0 P 963 310 4.4515000978673597e-01 -3.5554735426088413e-01 4.5779767293746829e+01 4.5786016875797863e+01 4.9767000000000000e-01 2 0 0 -377 0 V -279 0 -6.5741913457858576e-07 4.4982041847529568e-10 8.5845064550970203e-05 8.5848403732464610e-05 0 2 0 P 964 22 -1.0560723539473969e-01 6.7164545350521271e-02 1.4640288237267686e+01 1.4640823188420741e+01 0 1 0 0 0 0 P 965 22 -1.3061694822034034e-01 -6.7002915644997357e-02 1.6205604777293985e+01 1.6206269662563344e+01 0 1 0 0 0 0 V -280 0 -5.8649716457802219e+00 -8.6254155664420029e+00 1.0350777808268956e+03 1.0353848297585039e+03 0 2 0 P 966 211 1.4204984736516024e-01 -2.2642278158872115e-02 7.5155051602718386e+00 7.5181772013480321e+00 1.3957000000000000e-01 1 0 0 0 0 P 967 -211 -2.6920318519148173e-01 -1.6435783806527213e-01 1.4925113940878608e+01 1.4929098760037718e+01 1.3957000000000000e-01 1 0 0 0 0 V -281 0 -2.8594181529528718e-04 9.5550387483890587e-05 2.4420895995576185e-03 2.4631455430143318e-03 0 2 0 P 968 22 5.1247900113696020e-03 1.8572788827282275e-03 4.7307578228791584e-03 7.2175499366192736e-03 0 1 0 0 0 0 P 969 22 -3.5184621227907503e-01 1.1400323704927275e-01 2.9564478245729506e+00 2.9794926136130924e+00 0 1 0 0 0 0 V -282 0 -1.2469391248471680e-05 7.5447268196414927e-06 1.5308406847271735e-04 1.5380321907091399e-04 0 2 0 P 970 22 -3.0047757482531773e-01 2.5706307486653240e-01 4.2643694719065772e+00 4.2826644965910550e+00 0 1 0 0 0 0 P 971 22 -2.8410929045499089e-01 9.6646910890075807e-02 2.9124793356717791e+00 2.9278993485129501e+00 0 1 0 0 0 0 V -283 0 -6.2830518271869655e-05 2.6020966612028785e-04 2.5964367937637801e-03 2.6105646962643518e-03 0 2 0 P 972 22 -1.4136117861312752e-02 3.3697719220502392e-01 3.1310147296697979e+00 3.1491279261573042e+00 0 1 0 0 0 0 P 973 22 -1.8005731811323480e-01 4.6726588150382603e-01 4.8939227710840418e+00 4.9194753918643173e+00 0 1 0 0 0 0 V -284 0 -1.0492711172383159e-06 3.9633357327400499e-07 1.8970399388823293e-05 1.9043641088286170e-05 0 2 0 P 974 22 -8.4929114876172773e-02 3.2191041147245407e-02 1.9908651238558157e+00 1.9929358140866520e+00 0 1 0 0 0 0 P 975 22 -2.9716307246639557e-02 1.1113143122148521e-02 8.1877954686409765e-02 8.7809796321707781e-02 0 1 0 0 0 0 V -285 0 -3.7626054350599011e-04 2.0902092735961014e-04 3.4494145664698186e-03 3.4762921022351307e-03 0 2 0 P 976 22 -2.8854828342284384e-02 4.1330615327893911e-03 1.5161319144809524e-01 1.5438990620300705e-01 0 1 0 0 0 0 P 977 22 -1.6791408712060880e+00 9.4469575192514699e-01 1.5506646350177663e+01 1.5625877420437497e+01 0 1 0 0 0 0 V -286 0 -2.4489291585619471e-06 1.7568618204988567e-06 1.2663736788322558e-05 1.3157316598548084e-05 0 2 0 P 978 22 -1.7256719038231461e-01 1.4425637239498595e-01 8.6165081011827371e-01 8.9052313543808859e-01 0 1 0 0 0 0 P 979 22 -1.9541573153199784e-04 -2.0316475795636557e-02 3.1727490777585542e-02 3.7675337385411567e-02 0 1 0 0 0 0 V -287 0 -2.7101243492714199e-04 8.5661452595841927e-05 3.4232857994932085e-03 3.4351673594823070e-03 0 2 0 P 980 22 -2.0278184548875994e-01 1.0820394586946373e-01 2.4661327642463902e+00 2.4768204177233133e+00 0 1 0 0 0 0 P 981 22 -1.1764177382968202e+00 3.2773265533636231e-01 1.4955187224666307e+01 1.5004965588536866e+01 0 1 0 0 0 0 V -288 0 -8.7562376131470913e-05 -1.1277948104868976e-04 1.2227662128234261e-03 1.2321699104312102e-03 0 2 0 P 982 22 -2.2479939697336707e-01 -1.9785207855436107e-01 2.3811511917452992e+00 2.3999085840543857e+00 0 1 0 0 0 0 P 983 22 -2.6987193775833574e-03 -9.5163262453421035e-02 7.9574992086549468e-01 8.0142452306159084e-01 0 1 0 0 0 0 V -289 0 -3.7595545440253418e-04 -3.4701875499537097e-05 4.1302862612775841e-03 4.1476190561911333e-03 0 2 0 P 984 22 -7.2127315120417021e-02 -1.0296876614209133e-02 5.4610547438842671e-01 5.5094424800654451e-01 0 1 0 0 0 0 P 985 22 -1.5896726931017298e+00 -1.4309251118467137e-01 1.7710604629362212e+01 1.7782380354596420e+01 0 1 0 0 0 0 V -290 0 2.1850867499371897e-05 -2.5993771971206740e-05 9.4986157308444446e-04 9.5049726698491293e-04 0 2 0 P 986 22 2.4437328180926920e-01 -2.0979656920022532e-01 7.7062905381994229e+00 7.7130180059722635e+00 0 1 0 0 0 0 P 987 22 1.5365383077858161e-01 -2.6369611951173666e-01 9.5960275186842612e+00 9.6008796098328446e+00 0 1 0 0 0 0 V -291 0 0 0 0 0 0 1 0 P 988 130 -2.6577080464400833e+00 -1.6357570312882515e+00 5.9631527640992971e+01 5.9715206416397237e+01 4.9767000000000000e-01 1 0 0 0 0 V -292 0 6.2019027279917535e-07 -1.0219430654510472e-05 2.6483484766120519e-03 2.6483846688378138e-03 0 2 0 P 989 22 -2.6385741613567087e-02 1.2825085236800364e-02 3.0783830040084297e+00 3.0785227966574800e+00 0 1 0 0 0 0 P 990 22 3.5366986955990623e-02 -1.6081710960988005e-01 3.5273504253643651e+01 3.5273888576372272e+01 0 1 0 0 0 0 V -293 0 -3.0394895602311999e-05 -2.8893570778968926e-04 1.7688928079254998e-02 1.7691371819845342e-02 0 2 0 P 991 22 -2.0543540466791254e-02 -5.8618767412370099e-01 3.2499646750729433e+01 3.2504939270033212e+01 0 1 0 0 0 0 P 992 22 -7.0012998745017554e-02 -2.7464824038289382e-01 2.0201574210268888e+01 2.0203562409855831e+01 0 1 0 0 0 0 V -294 0 -2.7110531940165855e-05 7.1421947638732844e-05 6.3756601519856151e-03 6.3761218949011456e-03 0 2 0 P 993 22 -3.6333060160201919e-01 1.0999389813064200e+00 9.4909683375375565e+01 9.4916752332255328e+01 0 1 0 0 0 0 P 994 22 -1.4428306059950785e-01 2.3735519213432024e-01 2.4467251236035942e+01 2.4468827886437701e+01 0 1 0 0 0 0 V -295 0 -1.2963290760400763e-05 2.3845379772097365e-05 1.8443309382371301e-03 1.8446631858541208e-03 0 2 0 P 995 22 -3.4753897556513896e-02 -2.1337954886068801e-02 2.3620385075441241e+00 2.3623905377467467e+00 0 1 0 0 0 0 P 996 22 -4.4373268222981689e-02 1.6688875314984605e-01 8.8956492662993725e+00 8.8973252560459581e+00 0 1 0 0 0 0 V -296 0 -7.5302512572514996e-05 6.0404459854809681e-05 8.6533573848698812e-03 8.6539215398689275e-03 0 2 0 P 997 22 -2.3762426289966632e-01 2.2222393509428895e-01 2.3521872031665389e+01 2.3524121931364192e+01 0 1 0 0 0 0 P 998 22 -2.4430840887682556e-01 1.6436187367286220e-01 3.1859223523562182e+01 3.1860584190319912e+01 0 1 0 0 0 0 V -297 0 -3.6094082646031515e-05 4.2243616666371059e-05 4.5901247227688631e-03 4.5907324629318354e-03 0 2 0 P 999 22 -1.1335596219828940e-01 3.3071835676468146e-02 6.6168990407657251e+00 6.6179525713144303e+00 0 1 0 0 0 0 P 1000 22 1.5765378800548631e-02 8.1145756047114492e-02 5.7938042303605792e+00 5.7943938976080434e+00 0 1 0 0 0 0 V -298 0 -1.8423146350105808e-05 2.6891030611897884e-05 2.7259669039736644e-03 2.7261804201232525e-03 0 2 0 P 1001 22 -2.7404812969179456e-02 1.2134732305751078e-01 1.3532563238611312e+01 1.3533135039731233e+01 0 1 0 0 0 0 P 1002 22 -2.1932724669540016e-01 2.3879090975518791e-01 2.2974959201551947e+01 2.2977246916301809e+01 0 1 0 0 0 0 V -299 0 0 0 0 0 0 3 0 P 1003 111 -3.9052324202524143e-02 1.1284013031334793e-01 2.2324643830900651e+01 2.2325371212053906e+01 1.3497999999999999e-01 2 0 0 -378 0 P 1004 111 1.2219748208996795e-01 4.3103810905435719e-01 8.5716707711156914e+01 8.5717984848667513e+01 1.3497999999999999e-01 2 0 0 -379 0 P 1005 111 3.3414307120576317e-02 3.5818353740070585e-02 3.0656479610680623e+01 3.0656815901049832e+01 1.3497999999999999e-01 2 0 0 -380 0 V -300 0 3.8189517979982318e-04 3.2531527193822716e-04 7.1422792872948768e-02 7.1424571098614872e-02 0 2 0 P 1006 22 2.1183315279607376e-01 2.2767428740435239e-01 5.0592842988426639e+01 5.0593798735787360e+01 0 1 0 0 0 0 P 1007 22 8.5359136243223177e-01 6.7990162408744936e-01 1.4866495993225934e+02 1.4866896514098940e+02 0 1 0 0 0 0 V -301 0 5.8844511206972197e+00 -4.9764235707333908e+00 8.5552347439265031e+02 8.5560916368979747e+02 0 2 0 P 1008 211 1.5894564865835131e-01 -1.1037107859361960e-01 3.6704503987268609e+01 3.6705279432672008e+01 1.3957000000000000e-01 1 0 0 0 0 P 1009 -211 1.5460235421106000e-01 -1.5479344398140035e-01 8.8813410306660625e+00 8.8851314670138528e+00 1.3957000000000000e-01 1 0 0 0 0 V -302 0 2.0634750725931079e-04 1.5764087728699239e-04 2.4500645404543907e-02 2.4502145650118247e-02 0 2 0 P 1010 22 3.0389918027302343e-02 -1.3504845355678384e-02 4.0288827472070921e+00 4.0290199948261298e+00 0 1 0 0 0 0 P 1011 22 3.2663018409565475e-01 2.8625329216404211e-01 3.8361854318573165e+01 3.8364312778725328e+01 0 1 0 0 0 0 V -303 0 3.7152747853438024e-05 6.5062915130278037e-06 5.4196605514437455e-03 5.4198206163940093e-03 0 2 0 P 1012 22 1.6615271621363328e-01 4.8533821920611765e-02 1.5717235207013136e+01 1.5718188343748418e+01 0 1 0 0 0 0 P 1013 22 1.1759404352276472e-01 1.1566920086622033e-03 2.5674349781795105e+01 2.5674619109442904e+01 0 1 0 0 0 0 V -304 0 2.3295745030829719e-04 2.2500400391981413e-04 4.5091643698990512e-02 4.5092913372566087e-02 0 2 0 P 1014 22 2.0107835411161668e-01 1.3193356902650896e-01 3.9449029188472196e+01 3.9449762266508770e+01 0 1 0 0 0 0 P 1015 22 1.1970182678024385e-01 1.7789479226123542e-01 2.2641732894178912e+01 2.2642748144511778e+01 0 1 0 0 0 0 V -305 0 0 0 0 0 0 1 0 P 1016 130 9.6830525872385553e-01 4.4905456054307437e-02 4.9356841811285960e+01 4.9368868131518489e+01 4.9767000000000000e-01 1 0 0 0 0 V -306 0 2.3388441550988617e-04 -5.0326031467408986e-05 1.0607107000103255e-02 1.0609828091887569e-02 0 2 0 P 1017 22 1.0571058338165318e+00 -2.6922914813188159e-01 4.6357123581940506e+01 4.6369956479054387e+01 0 1 0 0 0 0 P 1018 22 3.5671775036352316e-01 -3.4990053612250216e-02 1.7762488680268721e+01 1.7766104693318418e+01 0 1 0 0 0 0 V -307 0 8.5008238183024304e+01 -1.1933212801008899e+02 3.5447333751676297e+03 3.5478360375693037e+03 0 2 0 P 1019 211 9.8606658477503872e-01 -1.6475982126573285e+00 4.9146277305604499e+01 4.9183970559159185e+01 1.3957000000000000e-01 1 0 0 0 0 P 1020 -211 8.3569208566887399e-01 -9.0973438841185872e-01 2.6818698544384386e+01 2.6847496518650932e+01 1.3957000000000000e-01 1 0 0 0 0 V -308 0 2.6689220733034110e-05 -7.2290662700787976e-06 2.2577394536356686e-04 2.2807116955480845e-04 0 2 0 P 1021 22 2.9987127970743929e-02 3.4328871634352255e-02 5.3931879616530520e-01 5.4124159408605677e-01 0 1 0 0 0 0 P 1022 22 1.8607320955051609e-01 -9.2851168478469151e-02 1.2884151540575730e+00 1.3050893410052231e+00 0 1 0 0 0 0 V -309 0 2.4498005029268795e-05 -2.6630229947147177e-05 1.1106506846765849e-04 1.1788123802952478e-04 0 2 0 P 1023 22 1.9838887465136068e-01 -2.1989716378856838e-01 9.4628620052874235e-01 9.9154953559507708e-01 0 1 0 0 0 0 P 1024 22 1.0241228178854780e-02 -6.8914096331355980e-03 -4.3299217285662728e-04 1.2351589515718150e-02 0 1 0 0 0 0 V -310 0 3.4483118830200103e-04 -4.1114357057967025e-04 2.6558304170494506e-03 2.7096407254162303e-03 0 2 0 P 1025 22 1.4352322469536940e+00 -1.6350097851216667e+00 1.0812402162464382e+01 1.1029106451703319e+01 0 1 0 0 0 0 P 1026 22 2.4206529960632253e-01 -3.6483862074018814e-01 2.1058546359757369e+00 2.1508897173768817e+00 0 1 0 0 0 0 V -311 0 7.6342389403575780e+01 -9.7870336298494109e+00 3.4511372710326623e+02 3.6367091255615054e+02 0 2 0 P 1027 111 1.3164328078101181e-01 3.9302320478712766e-02 2.1435665291502182e-01 2.8817182516465917e-01 1.3497999999999999e-01 2 0 0 -381 0 P 1028 111 3.1521009944075762e-01 -9.6588568577694850e-02 1.8056906199281906e+00 1.8404958499453330e+00 1.3497999999999999e-01 2 0 0 -382 0 V -312 0 7.1305423300572148e-05 -1.6493837729006051e-05 4.1993536622955127e-04 4.2632107684266999e-04 0 2 0 P 1029 22 1.0323783417962473e+00 -2.9550685124769716e-01 6.0201253158764372e+00 6.1151482531988277e+00 0 1 0 0 0 0 P 1030 22 3.6503765904552782e-01 -2.7732976677367380e-02 2.2096049476253747e+00 2.2397266875865371e+00 0 1 0 0 0 0 V -313 0 2.6278268687449595e-04 4.5095062782734897e-05 1.6237391476739014e-03 1.6472707380607906e-03 0 2 0 P 1031 22 3.8779568201400938e-01 4.9390478523745819e-02 2.0144754449018341e+00 2.0520565851043089e+00 0 1 0 0 0 0 P 1032 22 7.4626558551575017e-02 2.9963912050688275e-02 8.4284024698019011e-01 8.4666796396005262e-01 0 1 0 0 0 0 V -314 0 0 0 0 0 0 1 0 P 1033 310 1.5320663113670756e+00 5.4924259003727816e-01 3.9695937913537724e+00 4.3190560198255348e+00 4.9767000000000000e-01 2 0 0 -383 0 V -315 0 1.3699612212126619e-05 1.0721683608499373e-05 1.9541555232411376e-05 2.6604590515773610e-05 0 2 0 P 1034 22 3.2397784233112702e-02 1.9710364583071942e-02 1.1615374309606284e-01 1.2218758910150865e-01 0 1 0 0 0 0 P 1035 22 3.5070785984161462e-01 2.8011837807021933e-01 4.3032012693858945e-01 6.2180199447719675e-01 0 1 0 0 0 0 V -316 0 0 0 0 0 0 2 0 P 1036 22 8.1687738005560329e-01 1.2259852219560630e+00 2.2191118324516936e+00 2.6636039013765309e+00 0 1 0 0 0 0 P 1037 22 2.0898237605900302e-01 1.1766863936093357e+00 1.6867295493344936e+00 2.0672012662067418e+00 0 1 0 0 0 0 V -317 0 1.3687711229791974e-05 4.3009394063492679e-06 2.3502178656452231e-05 2.7875877942904265e-05 0 2 0 P 1038 22 3.8827580030779685e-01 7.4399908315008284e-02 6.3593068110247952e-01 7.4879988957625065e-01 0 1 0 0 0 0 P 1039 22 3.7148133050377334e-02 5.9276389253411728e-02 9.4533975746245710e-02 1.1760249437168535e-01 0 1 0 0 0 0 V -318 0 -9.7996699923464701e-05 2.6852006272322342e-05 8.0239542687894557e-05 1.3075009076472688e-04 0 2 0 P 1040 22 -6.0307552664398922e-01 1.1853744827003898e-01 5.1335437554614094e-01 8.0080205567397578e-01 0 1 0 0 0 0 P 1041 22 -1.2198971810889678e-01 8.0137165417493883e-02 8.0327898482429091e-02 1.6660140419588998e-01 0 1 0 0 0 0 V -319 0 -1.5591739503340176e-04 3.8779033165260790e-05 6.0487038991757433e-05 1.7351077887269281e-04 0 2 0 P 1042 22 -3.1115902639870683e-03 9.2182770915783720e-03 -7.2327645406326637e-03 1.2123180663847766e-02 0 1 0 0 0 0 P 1043 22 -8.3320867176843083e-01 1.9878732209885813e-01 3.3167723264064575e-01 9.1856566275335216e-01 0 1 0 0 0 0 V -320 0 -5.1616226910780437e-05 3.2069597896454034e-05 4.0439802565876472e-05 7.3785559299604974e-05 0 2 0 P 1044 22 -2.8422474294762567e-01 1.2782649304012852e-01 1.4507945599867964e-01 3.4376062220599779e-01 0 1 0 0 0 0 P 1045 22 -3.6199946242567360e-01 2.7367806584789911e-01 3.6121828877368228e-01 5.8001891923221860e-01 0 1 0 0 0 0 V -321 0 -3.5778031386574311e-04 -8.5985374743162416e-06 -1.8635911675521067e-05 3.7457000063593999e-04 0 2 0 P 1046 22 -1.9874861441166872e-01 -7.1789693706589830e-02 -5.1878011384287083e-03 2.1138042750854685e-01 0 1 0 0 0 0 P 1047 22 -2.4442565265826091e-01 6.1138882593255714e-02 -1.7896075133976154e-02 2.5259083939717536e-01 0 1 0 0 0 0 V -322 0 -3.4524808008097119e-04 2.0660462359955073e-04 -3.3027004978165945e-04 5.3032027055711375e-04 0 2 0 P 1048 22 -2.0869119606988165e-01 5.3441248928590090e-02 -1.4195706841105268e-01 2.5799184420439658e-01 0 1 0 0 0 0 P 1049 22 -2.5094380109495662e-01 2.2161521354370031e-01 -2.9773740681795197e-01 4.4803309877807429e-01 0 1 0 0 0 0 V -323 0 -2.2435681426471742e-05 1.4624704567249786e-05 -2.2142543078291622e-05 3.4788890656653816e-05 0 2 0 P 1050 22 -6.2735996486461598e-01 4.3937650325271554e-01 -5.5726134583040421e-01 9.4719187321377984e-01 0 1 0 0 0 0 P 1051 22 -1.2045143535375162e+00 7.5473123083879901e-01 -1.2506782142926061e+00 1.8933224908576698e+00 0 1 0 0 0 0 V -324 0 -1.8171531859212423e-03 1.0844541455657228e-03 -1.8455651969744890e-03 2.8095243762588243e-03 0 2 0 P 1052 22 -2.0420618670949438e+00 1.2429264727158704e+00 -2.1487307004523184e+00 3.2143314248358887e+00 0 1 0 0 0 0 P 1053 22 -5.1101636483644075e-01 2.8071847588979687e-01 -4.4426606311824818e-01 7.3301631815064527e-01 0 1 0 0 0 0 V -325 0 0 0 0 0 0 1 0 P 1054 310 -1.5138108668164783e+00 -2.9467013057244379e-01 -7.8986213903080504e-01 1.8027788144743540e+00 4.9767000000000000e-01 2 0 0 -384 0 V -326 0 -1.0733285443235775e-04 -2.5589344953141282e-05 -1.0577719187832421e-04 1.5461194909796556e-04 0 2 0 P 1055 22 -4.7622815958111264e-01 -1.7052540238276734e-01 -4.8551203687925804e-01 7.0113772597861579e-01 0 1 0 0 0 0 P 1056 22 -1.4671716222774578e-01 2.2008316808018982e-02 -1.2840443057299569e-01 1.9620904538695477e-01 0 1 0 0 0 0 V -327 0 -7.8589049754845564e-06 -1.3523779848376413e-05 -2.0403073759545629e-05 2.6141243414642679e-05 0 2 0 P 1057 22 -2.0051855106662403e-01 -2.3237321784516293e-01 -4.3092428794503573e-01 5.2905646545005935e-01 0 1 0 0 0 0 P 1058 22 -2.3494426970464957e-02 -1.5311333627441809e-01 -1.5065206757062508e-01 2.1608268627323599e-01 0 1 0 0 0 0 V -328 0 -5.7733834585205468e+00 -3.2813184766810815e+00 -7.3657449465619900e+00 1.3372292598753553e+01 0 2 0 P 1059 111 -1.0491320690195204e-01 -1.8861213542164895e-01 -4.1578046266137486e-01 4.8751852492153891e-01 1.3497999999999999e-01 2 0 0 -385 0 P 1060 111 -2.1539520848460975e-01 6.5639605176913522e-03 7.1275282208433282e-03 2.5437881883982644e-01 1.3497999999999999e-01 2 0 0 -386 0 V -329 0 0 0 0 0 0 2 0 P 1061 22 -6.9064717363664851e-01 -4.6715428682860538e-01 2.0871160917914361e-01 8.5952730146329925e-01 0 1 0 0 0 0 P 1062 22 -3.9944908374897375e-01 -6.4893319502422775e-01 -2.2275917031458498e-01 7.9391152534239551e-01 0 1 0 0 0 0 V -330 0 4.0220940204416380e+01 -1.2171094303818030e+01 -3.6257788334830458e+01 6.0588521948233698e+01 0 2 0 P 1063 22 5.7801118990427378e-02 -8.6716781609550250e-02 -8.0854776050027791e-02 1.3190248056562140e-01 0 1 0 0 0 0 P 1064 22 5.2664788205512202e-02 4.0378235412158313e-02 -1.2756011002169090e-01 1.4378999784573690e-01 0 1 0 0 0 0 V -331 0 4.5496414762237758e-05 -5.3666991978660731e-05 -2.3268605604585783e-06 7.0620963220122517e-05 0 2 0 P 1065 22 4.5644190514375760e-01 -5.9692245790581233e-01 3.0601713364833569e-02 7.5205857377231111e-01 0 1 0 0 0 0 P 1066 22 6.3194860383010409e-01 -6.8692913831340940e-01 -8.6266164353853730e-02 9.3737534107696008e-01 0 1 0 0 0 0 V -332 0 0 0 0 0 0 1 0 P 1067 310 5.4465007232016194e-01 -3.2223997411015792e-01 -5.0788101077084169e-01 9.5189329874439432e-01 4.9767000000000000e-01 2 0 0 -387 0 V -333 0 1.2502952076385837e+02 -5.0390634838444150e+01 -1.1217709222612969e+02 1.7707461955204093e+02 0 2 0 P 1068 -211 1.7750329596548027e+00 -5.7850858246879255e-01 -1.7128391118165400e+00 2.5374616835963089e+00 1.3957000000000000e-01 1 0 0 0 0 P 1069 211 7.6496653032329498e-01 -4.4518714960601780e-01 -5.6606074559984176e-01 1.0598443014416035e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 3.4440702660816372e-04 -2.8961380707286560e-05 -3.7616824671643707e-04 5.1206724285419211e-04 0 2 0 P 1070 22 6.6530114012994607e-02 -2.7994932517051933e-03 -3.4780645339173764e-02 7.5125139089773391e-02 0 1 0 0 0 0 P 1071 22 1.2455460483847374e+00 -1.0753372970947679e-01 -1.3982951964296326e+00 1.8756806545972189e+00 0 1 0 0 0 0 V -335 0 8.0075026195293572e-04 3.2889409527341661e-05 -7.4062868515639376e-04 1.0936805038175785e-03 0 2 0 P 1072 22 1.3063485342897625e+00 6.2015072333424098e-02 -1.2626917096966417e+00 1.8179061350834809e+00 0 1 0 0 0 0 P 1073 22 1.7503628217057912e-01 -1.1697948341409590e-03 -1.0746842755992786e-01 2.0539846985373586e-01 0 1 0 0 0 0 V -336 0 0 0 0 0 0 2 0 P 1074 22 1.5510518673899587e+00 -3.9139691556495582e-01 -1.8253639648325133e+00 2.4271190833901648e+00 0 1 0 0 0 0 P 1075 22 2.1685580880118906e+00 9.2500702485552186e-02 -2.3026084742018598e+00 3.1643650779434931e+00 0 1 0 0 0 0 V -337 0 8.8415887543162703e-05 6.7506102713557258e-07 -1.1639351220226190e-04 1.4623837587929972e-04 0 2 0 P 1076 22 2.7605426709049813e-01 2.9744048937507504e-02 -3.1637878297124683e-01 4.2093491318781823e-01 0 1 0 0 0 0 P 1077 22 2.3670373265762041e+00 -9.5638734553238278e-03 -3.1630718249181853e+00 3.9506936786685629e+00 0 1 0 0 0 0 V -338 0 1.5468955331833943e-04 9.1471518121291594e-06 -1.9368077441479152e-04 2.4809392955207703e-04 0 2 0 P 1078 22 2.0632170292942513e+00 1.7730935525062891e-01 -2.5252280579207866e+00 3.2657433858066027e+00 0 1 0 0 0 0 P 1079 22 2.0453621166875058e+00 6.5640452116792994e-02 -2.6189641235680972e+00 3.3236708528179046e+00 0 1 0 0 0 0 V -339 0 2.1989450839666112e-05 7.1936871146600376e-06 -4.6421237854709380e-05 5.2351623939700173e-05 0 2 0 P 1080 22 3.5036356032568622e-01 8.6997515435093917e-02 -7.9892778291804833e-01 8.7670336740217814e-01 0 1 0 0 0 0 P 1081 22 6.7409867882503222e-02 4.9673988972254716e-02 -8.3020557749298091e-02 1.1791525973069288e-01 0 1 0 0 0 0 V -340 0 3.0091367110477919e-05 -6.5326846323866584e-07 -2.6890293348756351e-04 2.7267153361952145e-04 0 2 0 P 1082 22 9.4407513595618761e-02 3.7984025609527385e-02 -3.7878637860323844e-01 3.9221765059743047e-01 0 1 0 0 0 0 P 1083 22 2.6152098672323907e-02 -4.0601314227414885e-02 -6.9856026636473589e-01 7.0022770919575228e-01 0 1 0 0 0 0 V -341 0 1.3203487812109093e-04 -8.2509991938721723e-06 -5.9974958365440021e-04 6.1478633668360307e-04 0 2 0 P 1084 22 4.4295910426705798e-01 -4.6961361352051402e-02 -1.7227718923568738e+00 1.7794271917131073e+00 0 1 0 0 0 0 P 1085 22 2.0292544140754654e-01 6.5993529075237213e-03 -1.2110664454336479e+00 1.2279675164614643e+00 0 1 0 0 0 0 V -342 0 0 0 0 0 0 1 0 P 1086 130 5.6174670730865028e-01 -6.2950457748347358e-02 -2.2955569852841284e+00 2.4159427610954678e+00 4.9767000000000000e-01 1 0 0 0 0 V -343 0 0 0 0 0 0 1 0 P 1087 310 1.5407447738980127e+00 -1.3316535460166488e+00 -6.0987639432451433e+00 6.4490148619180436e+00 4.9767000000000000e-01 2 0 0 -388 0 V -344 0 1.6018698232216011e-05 -1.0012529199270742e-06 -2.6984803044222660e-05 3.3927097545355489e-05 0 2 0 P 1088 22 8.4619355630389956e-02 5.8950528724637852e-02 -1.0351171112504515e-01 1.4611733136165456e-01 0 1 0 0 0 0 P 1089 22 8.3571884278526617e-02 -6.9463366136499199e-02 -1.7982014374302982e-01 2.1010640916602402e-01 0 1 0 0 0 0 V -345 0 -2.8499094874339639e-05 -5.2198595143135868e-05 -7.8999102940893623e-05 1.1244452485597415e-04 0 2 0 P 1090 22 -5.6746589022438891e-02 -7.6388418799843746e-02 -2.2501010401702038e-02 9.7783747941666749e-02 0 1 0 0 0 0 P 1091 22 -1.5109039844142616e-02 -5.5221476058230246e-02 -1.7668181441231767e-01 1.8572602953568537e-01 0 1 0 0 0 0 V -346 0 0 0 0 0 0 1 0 P 1092 130 9.4003667497304433e-02 -3.1182886738482624e-01 -1.3554525066264755e+00 1.4802029788706152e+00 4.9767000000000000e-01 1 0 0 0 0 V -347 0 4.5942036714303393e-05 -1.2285439585992314e-04 -5.0784255535417421e-04 5.2815844431813635e-04 0 2 0 P 1093 22 5.5944971598328570e-02 -1.5163964268613100e-01 -3.6854682029574248e-01 4.0243158403785545e-01 0 1 0 0 0 0 P 1094 22 4.4082991662487907e-02 -1.1584686584474203e-01 -7.3716072125587373e-01 7.4750902030841371e-01 0 1 0 0 0 0 V -348 0 -2.8319296143637040e+01 -9.3420814595512471e+00 -1.0378512033662049e+02 1.0813075204835843e+02 0 2 0 P 1095 111 -6.3874936900682644e-01 -1.2454988700665418e-01 -2.8490088909406546e+00 2.9255058864782493e+00 1.3497999999999999e-01 2 0 0 -389 0 P 1096 111 -1.8663677603824436e+00 -7.0184806334389083e-01 -6.3317942410401438e+00 6.6397106286557159e+00 1.3497999999999999e-01 2 0 0 -390 0 V -349 0 -2.9247646167694052e-05 -1.6488508202368600e-05 -1.1736080958725130e-04 1.2230846344128915e-04 0 2 0 P 1097 22 -4.4535062617169457e-01 -2.7135002443385609e-01 -1.6346432557420967e+00 1.7158165955412878e+00 0 1 0 0 0 0 P 1098 22 -7.0785488271046526e-02 -1.9624316124461985e-02 -4.3643459787083488e-01 4.4257299663648764e-01 0 1 0 0 0 0 V -350 0 0 0 0 0 0 1 0 P 1099 310 -8.3450054541391927e-01 1.9964687782571738e-01 -4.0272380705156614e+00 4.1475983341727289e+00 4.9767000000000000e-01 2 0 0 -391 0 V -351 0 -1.8302941848508776e-05 3.1880906457521070e-05 -9.7900717626597884e-05 1.0501694731385503e-04 0 2 0 P 1100 22 -1.6054736621437918e-02 3.9229546122033646e-03 -9.5757470482675765e-03 1.9100761042575031e-02 0 1 0 0 0 0 P 1101 22 -2.4065401101861295e-01 4.4322415638660262e-01 -1.3635352436875638e+00 1.4538192344999656e+00 0 1 0 0 0 0 V -352 0 -7.3821391327829212e-04 2.1216948947387626e-04 -3.1462831579739895e-03 3.2398125751747051e-03 0 2 0 P 1102 22 -2.3420268708391413e-02 -1.2300205846890564e-02 -1.0505861142861410e-01 1.0833797065460318e-01 0 1 0 0 0 0 P 1103 22 -1.1418574913816160e+00 3.4721178500640670e-01 -4.8613796051736848e+00 5.0057373302911428e+00 0 1 0 0 0 0 V -353 0 -2.3925103431637968e-04 9.1744325745244941e-05 -2.3113388175638192e-03 2.3271981178327487e-03 0 2 0 P 1104 22 -5.0601155698534191e-02 6.4181175101568400e-02 -4.6329747921289310e-01 4.7045111801383427e-01 0 1 0 0 0 0 P 1105 22 -3.1260096580546304e-01 7.5094016923569970e-02 -3.0454988963279863e+00 3.0624209382015413e+00 0 1 0 0 0 0 V -354 0 -1.0075781889308564e-05 -1.4432564767365022e-05 -5.7410526934232708e-04 5.7439584636143634e-04 0 2 0 P 1106 22 -2.0087372143826643e-01 -3.7148712789475985e-01 -1.3128060147941820e+01 1.3134851205329056e+01 0 1 0 0 0 0 P 1107 22 -7.7276277726115589e-02 -2.6935339173744133e-02 -2.7205739275218659e+00 2.7218044806171071e+00 0 1 0 0 0 0 V -355 0 -1.9353216600173648e-05 -1.4539757797439787e-05 -2.8698828090157626e-04 2.8839770295518855e-04 0 2 0 P 1108 22 -9.3617237937034303e-02 -3.2647042101496347e-02 -1.7741323187399454e+00 1.7769005321048537e+00 0 1 0 0 0 0 P 1109 22 -8.0531980965612232e-02 -9.8188442033739526e-02 -8.0832133667847117e-01 8.1823575663553672e-01 0 1 0 0 0 0 V -356 0 -4.4447744532003313e-05 -2.9783794718410745e-05 -1.4556923119631857e-03 1.4567016267627748e-03 0 2 0 P 1110 22 -2.8126657238460334e-01 -1.6316899456598816e-01 -7.2098902715408260e+00 7.2172191828423582e+00 0 1 0 0 0 0 P 1111 22 -4.0313161354144189e-01 -2.9543639227421808e-01 -1.5204591904416548e+01 1.5212804236549085e+01 0 1 0 0 0 0 V -357 0 0 0 0 0 0 2 0 P 1112 22 -7.5792178531443294e-02 -1.2433247411602785e-01 -1.1408655289562224e+00 1.1501205039503108e+00 0 1 0 0 0 0 P 1113 22 -3.6964809825372302e-01 -1.0627496150792657e+00 -3.0955142272238394e+01 3.0975585701571717e+01 0 1 0 0 0 0 V -358 0 8.6598310414799246e-06 -5.1544327762655246e-05 -7.0657299317389505e-04 7.0869231076276407e-04 0 2 0 P 1114 22 1.0178775074856466e-01 -2.1978303037562258e-01 -2.8666963316640759e+00 2.8769103539421961e+00 0 1 0 0 0 0 P 1115 22 -3.0330394688658852e-02 -2.0553951508308174e-01 -2.9636527494782672e+00 2.9709264623333658e+00 0 1 0 0 0 0 V -359 0 0 0 0 0 0 2 0 P 1116 211 -2.2504606893572626e-01 1.3937969560683437e-02 -2.6426570244287988e+00 2.6559284504296743e+00 1.3957000000000000e-01 1 0 0 0 0 P 1117 -211 4.5257904705199981e-01 -5.4378611838549173e-01 -9.6498922404784988e+00 9.6767986015069258e+00 1.3957000000000000e-01 1 0 0 0 0 V -360 0 6.5994244732966821e-05 -7.7883211971733270e-05 -1.6479735547836867e-03 1.6513834569465023e-03 0 2 0 P 1118 22 2.2174981064348967e-01 -2.5516557914929883e-01 -4.3774395635892498e+00 4.3904737311797533e+00 0 1 0 0 0 0 P 1119 22 8.7550598749527198e-02 -1.0985578665575013e-01 -3.3462475128511318e+00 3.3491948015105870e+00 0 1 0 0 0 0 V -361 0 5.8774772026840077e-05 1.8507360163115512e-05 -4.0461522884772741e-03 4.0466375658774782e-03 0 2 0 P 1120 22 6.4439107806690066e-01 2.2972929413392504e-01 -4.5667455882354439e+01 4.5672579762663545e+01 0 1 0 0 0 0 P 1121 22 5.0742851580441992e-02 -1.0841265241015020e-02 -2.1867108502087476e+00 2.1873263845249991e+00 0 1 0 0 0 0 V -362 0 0 0 0 0 0 1 0 P 1122 310 7.2778713491014307e-02 3.9882991009001401e-01 -7.2262711048729940e+01 7.2265561961279005e+01 4.9767000000000000e-01 2 0 0 -392 0 V -363 0 -4.9338204441396064e-06 -2.3859686063347740e-06 -8.4774617859804003e-04 8.4776606651203927e-04 0 2 0 P 1123 22 -1.2818494086665114e-01 -1.5146918936013356e-03 -1.4749860541148896e+01 1.4750417609569492e+01 0 1 0 0 0 0 P 1124 22 -2.1874956138642052e-01 -1.6626093760127442e-01 -4.4861631575107872e+01 4.4862472977430649e+01 0 1 0 0 0 0 V -364 0 -3.2023607206096501e-05 -2.4630393532050107e-06 -5.9481774089316000e-02 5.9481783397669949e-02 0 2 0 P 1125 22 -3.3559341820514715e-01 -8.8930038159290070e-02 -6.2624655795837486e+02 6.2624665419162625e+02 0 1 0 0 0 0 P 1126 22 -1.6096598243289029e-01 5.0738046323262877e-02 -2.9608033359352163e+02 2.9608038169599808e+02 0 1 0 0 0 0 V -365 0 -2.4112436872381339e-04 6.3412980962052171e-06 1.7500591256593254e-03 1.7686188660365253e-03 0 2 0 P 1127 22 -3.6480122480450733e-01 2.8220249995723517e-02 2.3002406311420946e+00 2.3291593499126826e+00 0 1 0 0 0 0 P 1128 22 -2.0793419374629061e-02 -1.8079547104590969e-02 4.9837084650576163e-01 4.9913198350703364e-01 0 1 0 0 0 0 V -366 0 0 0 0 0 0 1 0 P 1129 310 -7.2972799671970467e-01 -1.8580832991740731e-01 4.3222820379583027e+00 4.4155209352034817e+00 4.9767000000000000e-01 2 0 0 -393 0 V -367 0 1.9920324283427411e-05 3.8784171756835425e-05 2.1220863248022992e-04 2.1779059787650624e-04 0 2 0 P 1130 22 1.3756061653880242e-01 2.3112556653906891e-01 1.2553286046048231e+00 1.2838192459492237e+00 0 1 0 0 0 0 P 1131 22 -1.7216629454878001e-02 3.1799497043768538e-03 2.6680290578889133e-02 3.1911789596995324e-02 0 1 0 0 0 0 V -368 0 1.9044011825609854e-07 -1.1740518422996495e-06 5.7060312112021760e-05 5.8480616614283331e-05 0 2 0 P 1132 22 -5.6840747615655329e-02 -1.0922824294926411e-03 1.3891756010883743e-01 1.5010047360686399e-01 0 1 0 0 0 0 P 1133 22 5.8856091942478241e-02 -1.1332193786136958e-02 4.6492672099512627e-01 4.6877426771317987e-01 0 1 0 0 0 0 V -369 0 0 0 0 0 0 2 0 P 1134 22 -1.9048346165406352e-01 1.8537579743877414e-01 1.6870022567822964e+00 1.7078128556221661e+00 0 1 0 0 0 0 P 1135 22 2.0354442867434627e-01 -1.9365537300922042e-01 1.5850808410623236e+00 1.6097869457299465e+00 0 1 0 0 0 0 V -370 0 1.6105340902380549e-01 -3.9148095691116408e-01 2.1185217737562637e-01 4.7990746644546267e-01 0 2 0 P 1136 321 7.0508401409854493e-01 -1.6029148664056017e+00 8.8151687451913485e-01 2.0216806117543369e+00 4.9359999999999998e-01 1 0 0 0 0 P 1137 -211 6.0266751385313644e-01 -2.3993794767233645e+00 8.2116548330879979e-01 2.6103682769779786e+00 1.3957000000000000e-01 1 0 0 0 0 V -371 0 1.6105340902380549e-01 -3.9148095691116408e-01 2.1185217737562637e-01 4.7990746644546267e-01 0 2 0 P 1138 22 8.6285675433816544e-01 -2.3837563146687422e+00 1.5691027610546551e+00 2.9814257362844767e+00 0 1 0 0 0 0 P 1139 22 1.6325007003866958e+00 -2.8583655442560381e+00 1.7308840183955774e+00 3.7190417591753908e+00 0 1 0 0 0 0 V -372 0 1.1921353363475411e+01 4.3406859503774786e+00 -1.9631048351428770e+01 2.5380541839987856e+01 0 2 0 P 1140 22 2.7435104942661631e-01 -5.0052677566183881e-02 -1.2856264272372928e-01 3.0708650565783463e-01 0 1 0 0 0 0 P 1141 22 5.3468965580518953e-05 1.3428036990734887e-02 -4.3891507421838713e-02 4.5899667320321032e-02 0 1 0 0 0 0 V -373 0 1.1921403194909493e+01 4.3408488581930298e+00 -1.9631426653646930e+01 2.5380893081224841e+01 0 2 0 P 1142 22 5.7738490501200437e-04 1.0229899562374371e-03 5.4288028687077394e-03 5.5544380783646768e-03 0 1 0 0 0 0 P 1143 22 3.2484150377140386e-01 2.5400683173950123e-01 -8.2071861325253659e-01 9.1848816828632751e-01 0 1 0 0 0 0 V -374 0 -8.5012129694668435e+00 -3.2546217761095031e+00 3.7435454621655267e-01 9.6633848259928179e+00 0 2 0 P 1144 -211 -1.0736257242505436e+00 -2.4280087328341590e-01 7.6894378835956761e-02 1.1122126551322193e+00 1.3957000000000000e-01 1 0 0 0 0 P 1145 211 -2.3969929622135711e-01 -2.5999516606876333e-01 -1.9061550292615716e-02 3.8065255363348827e-01 1.3957000000000000e-01 1 0 0 0 0 V -375 0 1.1175860341776496e+00 1.0726709446073519e+00 1.5369187722771533e+03 1.5369894565474597e+03 0 2 0 P 1146 22 -8.3457489453218625e-03 1.6486442088447632e-02 4.3089936185908622e+00 4.3090332395277438e+00 0 1 0 0 0 0 P 1147 22 -4.9571132391981278e-02 -4.7355323184539423e-02 1.1633237318669303e+00 1.1653419793885984e+00 0 1 0 0 0 0 V -376 0 1.1176272033437995e+00 1.0726935204859478e+00 1.5369170630185429e+03 1.5369877459726117e+03 0 2 0 P 1148 22 1.1169003804641511e-01 5.2325048825095311e-02 4.5345140601474782e+01 4.5345308343232709e+01 0 1 0 0 0 0 P 1149 22 -1.5828867277154185e-02 1.4962621979867597e-02 1.3621525598964539e+00 1.3623266970621446e+00 0 1 0 0 0 0 V -377 0 3.9557420448053563e+01 -3.1595048573466123e+01 4.0681331304932041e+03 4.0686884878769679e+03 0 2 0 P 1150 111 2.2510825103315785e-01 -4.1199957459912179e-01 2.7476167825025602e+01 2.7480510099405453e+01 1.3497999999999999e-01 2 0 0 -394 0 P 1151 111 2.2004175875357815e-01 5.6452220338237658e-02 1.8303599468721227e+01 1.8305506776392409e+01 1.3497999999999999e-01 2 0 0 -395 0 V -378 0 -1.3204605981206453e-05 3.8154181347276715e-05 7.5485424101534243e-03 7.5487883566296727e-03 0 2 0 P 1152 22 -5.5828386053225716e-02 1.3835930301809532e-01 1.9103675708760605e+01 1.9104258313028303e+01 0 1 0 0 0 0 P 1153 22 1.6776061850701570e-02 -2.5519172704747389e-02 3.2209681221400466e+00 3.2211128990256048e+00 0 1 0 0 0 0 V -379 0 6.4942375989608686e-05 2.2907705187778273e-04 4.5554511971620630e-02 4.5555190711828578e-02 0 2 0 P 1154 22 3.7521930276793132e-02 3.4178697891946219e-01 6.0509885287461657e+01 6.0510862196270018e+01 0 1 0 0 0 0 P 1155 22 8.4675551813174821e-02 8.9251130134894940e-02 2.5206822423695261e+01 2.5207122652397508e+01 0 1 0 0 0 0 V -380 0 5.1987388342447925e-06 5.5727705469180617e-06 4.7696643984916545e-03 4.7697167199656776e-03 0 2 0 P 1156 22 7.1103597614950831e-02 -1.6125422041550413e-02 2.0771971906644115e+01 2.0772099861141683e+01 0 1 0 0 0 0 P 1157 22 -3.7689290494374514e-02 5.1943775781620995e-02 9.8845077040365101e+00 9.8847160399081559e+00 0 1 0 0 0 0 V -381 0 7.6342395125567052e+01 -9.7870319215393984e+00 3.4511373642046715e+02 3.6367092508179303e+02 0 2 0 P 1158 22 1.5700996785566240e-01 4.6150465675453743e-02 1.6580381698060723e-01 2.3296545068622543e-01 0 1 0 0 0 0 P 1159 22 -2.5366687074650587e-02 -6.8481451967409793e-03 4.8552835934414597e-02 5.5206374478433955e-02 0 1 0 0 0 0 V -382 0 7.6342549020275143e+01 -9.7870825405554456e+00 3.4511464147237223e+02 3.6367184454999619e+02 0 2 0 P 1160 22 1.1949665833805886e-01 -1.0581440796266361e-01 7.5378601434341297e-01 7.7049951051650911e-01 0 1 0 0 0 0 P 1161 22 1.9571344110269878e-01 9.2258393849687700e-03 1.0519046055847776e+00 1.0699963394288243e+00 0 1 0 0 0 0 V -383 0 3.3205156687912684e+01 1.1903979694971015e+01 8.6034777249067844e+01 9.3608828037090007e+01 0 2 0 P 1162 211 1.2843980750575990e+00 4.9366359829755896e-01 3.5432748024328009e+00 3.8036375055926350e+00 1.3957000000000000e-01 1 0 0 0 0 P 1163 -211 2.4766823630947679e-01 5.5578991739719252e-02 4.2631898892097164e-01 5.1541851423289997e-01 1.3957000000000000e-01 1 0 0 0 0 V -384 0 -2.0351952952773283e+02 -3.9615996723618288e+01 -1.0619052515151908e+02 2.4236891424618398e+02 0 2 0 P 1164 211 -1.2325968345726099e+00 -9.2227755371155115e-02 -5.5977476560521566e-01 1.3640485653258807e+00 1.3957000000000000e-01 1 0 0 0 0 P 1165 -211 -2.8121403224386843e-01 -2.0244237520128866e-01 -2.3008737342558938e-01 4.3873024914847325e-01 1.3957000000000000e-01 1 0 0 0 0 V -385 0 -5.7733915422502085e+00 -3.2813330095464726e+00 -7.3657769831087512e+00 1.3372330162832251e+01 0 2 0 P 1166 22 -1.1328477731075295e-01 -9.8751168655985128e-02 -3.3176241172503013e-01 3.6421358008025745e-01 0 1 0 0 0 0 P 1167 22 8.3715704088009237e-03 -8.9860966765663811e-02 -8.4018050936344776e-02 1.2330494484128150e-01 0 1 0 0 0 0 V -386 0 -5.7734032579769208e+00 -3.2813178733118105e+00 -7.3657442913887152e+00 1.3372315981642901e+01 0 2 0 P 1168 22 -4.7289871240030965e-02 5.7152188605415655e-02 -1.9790756986995298e-02 7.6774856863468105e-02 0 1 0 0 0 0 P 1169 22 -1.6810533724457877e-01 -5.0588228087724306e-02 2.6918285207838625e-02 1.7760396197635833e-01 0 1 0 0 0 0 V -387 0 1.9591491025676699e+01 -1.1591225048405725e+01 -1.8268878992784849e+01 3.4240349845744866e+01 0 2 0 P 1170 211 3.0238661554331975e-01 -2.7039844520728318e-01 -5.1141240507620145e-01 6.6751435744565402e-01 1.3957000000000000e-01 1 0 0 0 0 P 1171 -211 2.4226345677684222e-01 -5.1841528902874696e-02 3.5313943053596735e-03 2.8437894129874036e-01 1.3957000000000000e-01 1 0 0 0 0 V -388 0 8.1540099559478662e+01 -7.0474464402186470e+01 -3.2276197040982805e+02 3.4129813244212431e+02 0 2 0 P 1172 211 4.9249499131282748e-01 -3.4767500801771994e-01 -2.3920816581439444e+00 2.4708224686927682e+00 1.3957000000000000e-01 1 0 0 0 0 P 1173 -211 1.0482497825851851e+00 -9.8397853799892887e-01 -3.7066822851011989e+00 3.9781923932252754e+00 1.3957000000000000e-01 1 0 0 0 0 V -389 0 -2.8319414900482187e+01 -9.3421046159759147e+00 -1.0378565002686224e+02 1.0813129596098895e+02 0 2 0 P 1174 22 -3.1601608462283054e-01 -1.1200037696576956e-01 -1.6527124415090166e+00 1.6863773790286423e+00 0 1 0 0 0 0 P 1175 22 -3.2273328438399590e-01 -1.2549510040884615e-02 -1.1962964494316379e+00 1.2391285074496070e+00 0 1 0 0 0 0 V -390 0 -2.8319434692563842e+01 -9.3421335609098417e+00 -1.0378559037436732e+02 1.0813124494413246e+02 0 2 0 P 1176 22 -1.4838235216557425e+00 -6.0391714732973334e-01 -4.9693943096552378e+00 5.2212381643717034e+00 0 1 0 0 0 0 P 1177 22 -3.8254423872670107e-01 -9.7930916014157474e-02 -1.3623999313849058e+00 1.4184724642840125e+00 0 1 0 0 0 0 V -391 0 -1.6501441696645724e+01 3.9478240397366631e+00 -7.9634740305848283e+01 8.2014748185106015e+01 0 2 0 P 1178 111 -1.0379381827832271e-01 -5.7907139389412790e-02 -1.1847447766202059e+00 1.1983180628004904e+00 1.3497999999999999e-01 2 0 0 -396 0 P 1179 111 -7.3070672713559659e-01 2.5755401721513016e-01 -2.8424932938954552e+00 2.9492802713722379e+00 1.3497999999999999e-01 2 0 0 -397 0 V -392 0 5.5187893221800470e+00 3.0243159621701107e+01 -5.4796610024818792e+03 5.4798771863765860e+03 0 2 0 P 1180 -211 1.7564400631938451e-01 1.6632940705486005e-01 -1.8905563805416499e+01 1.8907626473838050e+01 1.3957000000000000e-01 1 0 0 0 0 P 1181 211 -1.0286529282837022e-01 2.3250050303515399e-01 -5.3357147243313442e+01 5.3357935487440962e+01 1.3957000000000000e-01 1 0 0 0 0 V -393 0 -1.0163517686889131e+02 -2.5879043369255264e+01 6.0199951403791579e+02 6.1498565662141607e+02 0 2 0 P 1182 -211 -5.2480653069005878e-01 4.6349178487841286e-02 3.0694015781631476e+00 3.1174149505530786e+00 1.3957000000000000e-01 1 0 0 0 0 P 1183 211 -2.0492146602964595e-01 -2.3215750840524860e-01 1.2528804597951548e+00 1.2981059846504024e+00 1.3957000000000000e-01 1 0 0 0 0 V -394 0 3.9557480862945191e+01 -3.1595159146532797e+01 4.0681405045885290e+03 4.0686958631376788e+03 0 2 0 P 1184 22 2.4019480070762372e-01 -3.4880674620469815e-01 2.3721959549064714e+01 2.3725739704716219e+01 0 1 0 0 0 0 P 1185 22 -1.5086549674465852e-02 -6.3192828394423639e-02 3.7542082759608868e+00 3.7547703946892392e+00 0 1 0 0 0 0 V -395 0 3.9557531050045959e+01 -3.1595020198270067e+01 4.0681423306313086e+03 4.0686976889737634e+03 0 2 0 P 1186 22 2.3224674198990361e-01 4.4654754312335856e-02 1.7884550236130362e+01 1.7886113880463757e+01 0 1 0 0 0 0 P 1187 22 -1.2204983236325455e-02 1.1797466025901794e-02 4.1904923259086602e-01 4.1939289592865669e-01 0 1 0 0 0 0 V -396 0 -1.6501442197452121e+01 3.9478237603340327e+00 -7.9634746022255797e+01 8.2014753967004793e+01 0 2 0 P 1188 22 -6.5638228454131767e-02 3.3155632265465272e-02 -3.4246897310321078e-01 3.5027513546337730e-01 0 1 0 0 0 0 P 1189 22 -3.8155589824190948e-02 -9.1062771654878069e-02 -8.4227580351699516e-01 8.4804292733711328e-01 0 1 0 0 0 0 V -397 0 -1.6501443412141171e+01 3.9478246444016092e+00 -7.9634746979229163e+01 8.2014755109192919e+01 0 2 0 P 1190 22 -3.8499855983318615e-01 7.0749614894532090e-02 -1.3123070103049614e+00 1.3694448102705339e+00 0 1 0 0 0 0 P 1191 22 -3.4570816730241050e-01 1.8680440232059806e-01 -1.5301862835904940e+00 1.5798354611017045e+00 0 1 0 0 0 0 E 33 28 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 209 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -7.3736836675743955e-01 -2.7124548950195644e+00 1.3553799945705875e+03 1.3553829092938392e+03 0 3 0 0 -3 0 P 21 2 3.6979313253577978e-01 1.0931678921975574e+00 8.2236301932083484e+02 8.2236389524922674e+02 3.3000000000000002e-01 2 0 0 -10 0 P 35 2101 3.6757523422165977e-01 1.6192870028220070e+00 2.3973447573082603e+03 2.3973454023604108e+03 5.7933000000000001e-01 2 0 0 -18 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -2 -1.4076547092457430e+00 1.4690777689882177e+00 -1.2721053062079368e+02 1.2722680056535150e+02 0 3 0 0 -4 0 P 14 2214 3.6636661814143068e-01 -9.4124272091744721e-01 -3.1870808973679955e+03 3.1870813367505143e+03 1.3343661790657142e+00 2 0 0 -9 0 P 79 2 1.0412880911043123e+00 -5.2783504807077053e-01 -1.9027181995560636e+03 1.9027185863160623e+03 3.3000000000000002e-01 2 0 0 -18 0 V -3 0 0 0 0 0 0 13 0 P 5 1 -1.2753951153732434e+01 -1.4216594954534324e+01 2.7860466568089961e+01 3.3778401968191780e+01 0 3 0 0 -5 0 P 15 -1 -3.5706568052441181e+00 1.5895329757137908e+01 6.3537635270345216e+00 1.7489720096858729e+01 3.3000000000000002e-01 2 0 0 -10 0 P 16 21 4.8202125070606416e-01 4.4066394228628285e+00 1.1345929618978936e+00 4.5758186894204318e+00 0 2 0 0 -10 0 P 17 21 -1.2727912266733667e+00 2.8443725523679304e+00 2.4775640965236834e-01 3.1259935959442688e+00 0 2 0 0 -10 0 P 18 21 -4.4275635445292155e-01 8.3826616364938533e-01 -5.0433404701159068e-01 1.0738138486269342e+00 0 2 0 0 -10 0 P 19 21 3.3282603429826652e-01 7.1937031387068839e-01 3.3131386531106500e+01 3.3140866619495185e+01 0 2 0 0 -10 0 P 20 21 -1.3294242992423508e+00 1.4839137342329225e+00 2.3017913084932076e+02 2.3018775303540104e+02 0 2 0 0 -10 0 P 36 21 -1.9973550855190113e-02 5.7279318222903448e-02 8.5646053890906845e-03 6.1263492353246934e-02 0 2 0 0 -18 0 P 37 21 -9.7865446984107832e-02 -1.3582231647054406e+00 1.0569660436657990e+00 1.7238111927697863e+00 0 2 0 0 -18 0 P 38 21 1.6398195241606118e+01 -1.4456821619786396e+01 6.9367000216795941e+02 6.9401438919248994e+02 0 2 0 0 -18 0 P 39 21 3.3736869004611059e+00 -2.4588764118293289e+00 1.1443265061438062e+02 1.1450877417536134e+02 0 2 0 0 -18 0 P 40 21 -1.7940865147761598e+00 3.7173373115058559e+00 2.0527228456055403e+02 2.0531377974168973e+02 0 2 0 0 -18 0 P 41 21 -2.1792478454571645e-02 -1.0998866535636956e-03 2.9436637261014152e+01 2.9436645348245690e+01 0 2 0 0 -18 0 V -4 0 0 0 0 0 0 2 0 P 6 -2 7.1552980671720570e-02 1.2483103508218270e+00 -9.5404048660976656e+01 9.5412241874232535e+01 0 3 0 0 -5 0 P 78 21 -1.5000076533277567e+00 3.7419986805134413e-02 -1.8706355443243424e+01 1.8766436986930078e+01 0 2 0 0 -18 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 -1.1751868553794340e+01 -1.2494495474808479e+01 -2.3891224247869271e+01 8.5525798635548043e+01 8.0309730447254381e+01 3 0 0 -6 0 P 8 22 -9.3052961926637379e-01 -4.7378912890401720e-01 -4.3652357845017484e+01 4.3664845206876215e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 -1.1751868553794340e+01 -1.2494495474808479e+01 -2.3891224247869271e+01 8.5525798635548043e+01 8.0309730447254381e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -9.3052961926637379e-01 -4.7378912890401720e-01 -4.3652357845017484e+01 4.3664845206876194e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 3 0 P 11 -14 -2.5846037848719973e+01 -9.4479662218354772e+00 -4.9213888615887775e+01 5.6385180419179456e+01 0 1 0 0 0 0 P 12 13 1.4094160802168476e+01 -3.0465371506650762e+00 2.5322629017525642e+01 2.9140581012097144e+01 1.0566000000000000e-01 1 0 0 0 0 P 13 22 8.4927571610379278e-06 7.8976920811084450e-06 3.5350492860704131e-05 3.7204271393202390e-05 0 1 0 0 0 0 V -9 0 0 0 0 0 0 2 0 P 85 2112 1.6852528567231626e-01 -7.0399135126733214e-01 -1.7626993115180546e+03 1.7626997105640548e+03 9.3957000000000002e-01 1 0 0 0 0 P 86 211 1.9784133246911442e-01 -2.3725136965011501e-01 -1.4243815858499408e+03 1.4243816261864595e+03 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 1 0 P 87 92 -5.4309882680726469e+00 2.7281059836319216e+01 1.0929053155528354e+03 1.1119578611349734e+03 2.0306280879782324e+02 2 0 0 -11 0 V -11 0 0 0 0 0 0 17 0 P 88 213 -3.3694270482959738e+00 1.8384996504671044e+01 6.8211344809358723e+00 1.9910447554990942e+01 7.3274219373340754e-01 2 0 0 -24 0 P 89 111 -4.6585488396198399e-01 4.3506271217240461e-01 1.9901029301220119e-01 6.8126722624741232e-01 1.3497999999999999e-01 2 0 0 -25 0 P 90 223 -4.0580598576729604e-01 1.4946770244839338e+00 -9.5288414191175702e-02 1.7363231306930449e+00 7.7910219271664893e-01 2 0 0 -26 0 P 91 -213 -2.1940613526201396e-02 1.6132583113901595e+00 5.2570200234105288e-02 1.7357139884007085e+00 6.3785237617014856e-01 2 0 0 -27 0 P 92 211 2.2256647252200451e-01 1.3217749249368858e+00 4.9020379671949466e-01 1.4340168527953241e+00 1.3957000000000000e-01 1 0 0 0 0 P 93 111 -7.9675037844778540e-01 1.8154384446566740e-01 9.4790300375772107e-01 1.2587728301615724e+00 1.3497999999999999e-01 2 0 0 -28 0 P 94 -211 7.3725579537808428e-01 -6.0171089001721294e-02 2.2380485919919217e+00 2.3612513531573143e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 -311 -9.0672324639291124e-01 6.5993393037992887e-01 1.7563704473603412e+00 2.1424687664646975e+00 4.9767000000000000e-01 2 0 0 -29 0 P 96 313 4.8531163355418327e-01 4.3511639447816297e-01 8.0074497172545680e+00 8.0843299452295678e+00 9.0126912216526611e-01 2 0 0 -30 0 P 97 213 -7.8895836620113041e-02 -1.5723808696504904e-01 1.8950887762880900e+01 1.8965162504732206e+01 7.1434827679711610e-01 2 0 0 -31 0 P 98 111 3.0109447835982217e-01 2.2601348279933584e-01 2.2244535513200425e+00 2.2601223820152323e+00 1.3497999999999999e-01 2 0 0 -32 0 P 99 -213 -2.1584027023021904e-01 -4.0587643360846783e-02 6.8489604244115911e+00 6.8933897388063761e+00 7.4988586923491352e-01 2 0 0 -33 0 P 100 113 -7.8634682018661850e-01 3.3957189935077842e-01 5.2874519424593210e+01 5.2887525232289128e+01 8.0116815830894539e-01 2 0 0 -34 0 P 101 223 2.9357589214405339e-01 3.4341224828605615e-01 4.6687941241807401e+01 4.6696744161335481e+01 7.8609102147157450e-01 2 0 0 -35 0 P 102 213 7.0896200846764235e-03 3.1484096680748813e-01 6.6205944226566871e+01 6.6210998365506697e+01 7.5503544867400407e-01 2 0 0 -36 0 P 103 -213 -1.9906819595482234e-01 3.9255326243703659e-01 1.4787086528518111e+02 1.4787360180222529e+02 7.8459133592825792e-01 2 0 0 -37 0 P 104 211 -2.3122888073154652e-01 1.3963011489879482e+00 7.3082434151899895e+02 7.3082572529992206e+02 1.3957000000000000e-01 1 0 0 0 0 V -12 0 0 0 0 0 4 1 0 P 22 2 -2.5113273128695037e+00 -1.8636114769011338e+00 1.1165635218405463e+01 1.1595310364095408e+01 0 2 0 0 -12 0 P 23 21 -3.8672641520837986e-01 -5.4472136927842074e-01 1.0262475617333671e+00 1.2245255196737073e+00 0 2 0 0 -12 0 P 24 21 -1.4614077804519066e+00 1.2131055530557555e+00 -2.0162433092037197e+00 2.7699413108455646e+00 0 2 0 0 -12 0 P 25 -2 2.5113273128695037e+00 1.8636114769011338e+00 -5.5234038873129423e+00 6.3472673735699612e+00 0 2 0 0 -12 0 P 105 92 -1.8481341956602866e+00 6.6838418377733477e-01 4.6522355836221676e+00 2.1937044568184639e+01 2.1347793587129942e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 9 0 P 106 2224 -1.6212945175549605e+00 -1.4053507178992171e+00 5.6942175075280801e+00 6.2065101760116610e+00 1.2219038378462450e+00 2 0 0 -38 0 P 107 -2224 -6.4808521336441960e-01 -3.9261188520525880e-01 4.1466345986515156e+00 4.3949749450295119e+00 1.2438117769651920e+00 2 0 0 -39 0 P 108 213 -7.0082999540918745e-01 -1.5192457888051300e-01 6.6209885073439867e-01 1.2828525287098562e+00 8.3252144845655374e-01 2 0 0 -40 0 P 109 223 6.8495591347116302e-02 2.1377397740986789e-01 1.4112715020248878e-01 8.2810150023230800e-01 7.8450255749175057e-01 2 0 0 -41 0 P 110 -213 -1.2100258579465607e-01 1.0883368570153014e-01 -9.0495755495598673e-01 1.2623745244202471e+00 8.6495945958232912e-01 2 0 0 -42 0 P 111 211 4.0341716119746124e-01 6.0049630492672013e-01 4.4592954459830025e-01 8.6120506374783357e-01 1.3957000000000000e-01 1 0 0 0 0 P 112 111 -6.0825882999475933e-01 -1.4187658328982994e-01 -2.7876329733746702e-01 6.9716306951461993e-01 1.3497999999999999e-01 2 0 0 -43 0 P 113 111 -4.4436966455418819e-01 -3.9744630614435325e-02 2.1310379430960130e-02 4.6660236509277481e-01 1.3497999999999999e-01 2 0 0 -44 0 P 114 -213 1.8237938584673072e+00 1.8767886116284711e+00 -5.2753615952301232e+00 5.9372603954258292e+00 7.5700826398511645e-01 2 0 0 -45 0 V -14 0 0 0 0 0 7 1 0 P 26 3 -9.4192810502019264e-01 2.0139222007845374e+00 2.6564402499518426e+01 2.6657280269042086e+01 0 2 0 0 -14 0 P 27 21 -4.1335871620775833e-01 4.3497222168295424e-01 6.1287971429978922e+00 6.1581020356859835e+00 0 2 0 0 -14 0 P 28 21 1.4614077804519066e+00 -1.2131055530557555e+00 8.9136817604050869e+00 9.1137840828822796e+00 0 2 0 0 -14 0 P 29 21 1.8042479749480622e+00 -1.0694606042786257e+00 1.3506465122223993e+01 1.3668345065773741e+01 0 2 0 0 -14 0 P 30 21 -3.6701539681375522e-01 -1.8623123595658129e+00 1.9291258084512091e+01 1.9384415031394241e+01 0 2 0 0 -14 0 P 31 21 1.6666969481845728e-01 -8.9923370588961893e-01 1.3805391401399698e+01 1.3835650754150294e+01 0 2 0 0 -14 0 P 32 -3 9.4192810502019264e-01 -2.0139222007845374e+00 2.4179849376105601e+01 2.4281849744963711e+01 0 2 0 0 -14 0 P 115 92 2.6519513371969126e+00 -4.6091400011068586e+00 1.1238984538716278e+02 1.1309942698389234e+02 1.1477195671843228e+01 2 0 0 -15 0 V -15 0 0 0 0 0 0 7 0 P 116 -323 -2.7065970538918266e-01 -1.2920208908127606e-01 7.8862444125068087e+00 7.9427894536436980e+00 8.9727560714329480e-01 2 0 0 -46 0 P 117 113 -4.9240219663788160e-01 1.0619575609553564e+00 1.4066169524200996e+01 1.4129438248510505e+01 6.4318453836101819e-01 2 0 0 -47 0 P 118 111 1.8111872193434715e+00 -4.8082782050097313e-02 8.3019629503023999e+00 8.4984421823082705e+00 1.3497999999999999e-01 2 0 0 -48 0 P 119 223 -8.3312242870989117e-01 -6.5637505833983756e-01 2.1444475609653740e+01 2.1484404401293489e+01 7.6757873006928634e-01 2 0 0 -49 0 P 120 2212 4.4152214241147014e-01 -8.7430072236479806e-01 1.4800332943670467e+01 1.4862353427091032e+01 9.3827000000000005e-01 1 0 0 0 0 P 121 213 1.1407023509508223e+00 -7.7882582626063956e-01 1.0547271172926655e+01 1.0658392140615227e+01 6.6979273418240504e-01 2 0 0 -50 0 P 122 -3224 8.5472395522810396e-01 -3.1843110839655666e+00 3.5343388773901736e+01 3.5523607130430129e+01 1.3788195729958670e+00 2 0 0 -51 0 V -16 0 0 0 0 0 2 1 0 P 33 2 -1.2693133267838075e+00 -4.2454424680301375e-02 6.1549013452448493e+00 6.2845659571224779e+00 0 2 0 0 -16 0 P 34 -2 1.2693133267838075e+00 4.2454424680301375e-02 -5.9646917521732179e-01 1.4031158814261724e+00 0 2 0 0 -16 0 P 123 92 0 0 5.5584321700275279e+00 7.6876818385486505e+00 5.3107705525614479e+00 2 0 0 -17 0 V -17 0 0 0 0 0 0 4 0 P 124 111 1.1005708381411558e-01 2.0028782615163920e-01 4.5328474765376137e-01 5.2527558277322450e-01 1.3497999999999999e-01 2 0 0 -52 0 P 125 321 -1.1164018255910118e+00 -1.8267733613570170e-01 4.8787373414770476e+00 5.0324390758799167e+00 4.9359999999999998e-01 1 0 0 0 0 P 126 -311 3.8466309797195608e-01 -2.7542522279100984e-01 7.0075735795275396e-01 9.8110195999997063e-01 4.9767000000000000e-01 2 0 0 -53 0 P 127 -213 6.2168164380494007e-01 2.5781473277507233e-01 -4.7434727705603541e-01 1.1488652198955382e+00 8.0120499970685111e-01 2 0 0 -54 0 V -18 0 0 0 0 0 36 1 0 P 42 21 -8.2905356937132135e-01 -2.8870867073763667e-02 4.4547616080113867e-01 9.4160095459543858e-01 0 2 0 0 -18 0 P 43 21 -2.9232380525015720e+00 -2.7946011787173147e-01 1.8166709316240774e+00 3.4530728261769918e+00 0 2 0 0 -18 0 P 44 21 -1.8612689959760720e+00 3.3734888263472596e-01 5.1743649226281176e+00 5.5092811596905236e+00 0 2 0 0 -18 0 P 45 21 -4.4689275233461352e+00 -1.0375583323159645e+00 1.3737437603202975e+01 1.4483267324874385e+01 0 2 0 0 -18 0 P 46 21 -8.8407346815552437e+00 2.9625684822384484e+00 1.9279793890024823e+02 1.9302326451986417e+02 0 2 0 0 -18 0 P 47 21 5.7536194554990727e-01 1.5094026362958662e-01 6.7046709612778727e+02 6.7046735999178895e+02 0 2 0 0 -18 0 P 48 21 -5.7536194554990727e-01 -1.5094026362958662e-01 1.1171075048117200e+02 1.1171233413279951e+02 0 2 0 0 -18 0 P 49 21 -1.8042479749480622e+00 1.0694606042786257e+00 5.0665754041116656e+02 5.0666188164517774e+02 0 2 0 0 -18 0 P 50 21 -2.0094484611489669e-01 1.1138976441788355e+00 1.8474386370646670e+02 1.8474733103345886e+02 0 2 0 0 -18 0 P 51 21 2.9232380525015720e+00 2.7946011787173147e-01 1.0590163926949862e+02 1.0594234572934509e+02 0 2 0 0 -18 0 P 52 21 7.8732774052655008e-01 1.6824822278048925e+00 2.5327354497750957e+01 2.5395383778801762e+01 0 2 0 0 -18 0 P 53 21 2.0069170064925417e+00 2.7913077784333953e+00 3.1226214193987175e+01 3.1414894045240036e+01 0 2 0 0 -18 0 P 54 21 4.4689275233461352e+00 1.0375583323159645e+00 2.2096017333096583e+01 2.2567273262101992e+01 0 2 0 0 -18 0 P 55 21 4.1586366445698353e-01 -5.8239533358299345e-02 1.7060750549786319e+00 1.7569936038249327e+00 0 2 0 0 -18 0 P 56 21 4.5678445746343915e-01 3.5577132077188350e-01 1.4805787878721994e+00 1.5897606173135157e+00 0 2 0 0 -18 0 P 57 21 3.6701539681375522e-01 1.8623123595658129e+00 6.4293619858082165e+00 6.7037007071203378e+00 0 2 0 0 -18 0 P 58 21 -1.6666969481845728e-01 8.9923370588961893e-01 3.9329466054347648e+00 4.0378792758302833e+00 0 2 0 0 -18 0 P 59 21 1.8612689959760720e+00 -3.3734888263472596e-01 3.5400514410784947e+00 4.0137377529528013e+00 0 2 0 0 -18 0 P 60 21 4.1335871620775833e-01 -4.3497222168295424e-01 1.5996949115800472e+00 1.7085344807863334e+00 0 2 0 0 -18 0 P 61 21 2.0094484611489669e-01 -1.1138976441788355e+00 1.3470950127940147e+00 1.7594919057448959e+00 0 2 0 0 -18 0 P 62 21 9.8808611481413888e-01 -8.1178916725498562e-01 -1.5181723829026661e-03 1.2787955767863866e+00 0 2 0 0 -18 0 P 63 21 8.8407346815552437e+00 -2.9625684822384484e+00 -3.3165302084712711e+00 9.8961999952157811e+00 0 2 0 0 -18 0 P 64 21 -4.5678445746343915e-01 -3.5577132077188350e-01 -8.4373141190214518e-01 1.0232829367747349e+00 0 2 0 0 -18 0 P 65 21 -2.0069170064925417e+00 -2.7913077784333953e+00 -1.3415216645158402e+01 1.3848723862559568e+01 0 2 0 0 -18 0 P 66 21 -4.3308387469007120e-01 2.1200195054549937e-03 -3.2214615710435295e+00 3.2504431683555879e+00 0 2 0 0 -18 0 P 67 21 -9.8808611481413888e-01 8.1178916725498562e-01 -7.7958839853057809e+00 7.9000710714972806e+00 0 2 0 0 -18 0 P 68 21 1.9009710158266094e-01 1.0094886149117228e+00 -1.0134856167791050e+01 1.0186781322551241e+01 0 2 0 0 -18 0 P 69 21 -1.3498941657270799e-01 9.7301085359439587e-01 -2.2820448214884838e+01 2.2841581140368540e+01 0 2 0 0 -18 0 P 70 21 3.8672641520837986e-01 5.4472136927842074e-01 -2.3793139061202577e+01 2.3802515519921258e+01 0 2 0 0 -18 0 P 71 21 8.2905356937132135e-01 2.8870867073763667e-02 -3.1849591066668353e+01 3.1860392566034925e+01 0 2 0 0 -18 0 P 72 21 4.3308387469007120e-01 -2.1200195054549937e-03 -3.7668718830635530e+00 3.7916869491578584e+00 0 2 0 0 -18 0 P 73 21 -1.9009710158266094e-01 -1.0094886149117228e+00 -1.3702867552604191e+01 1.3741316652194552e+01 0 2 0 0 -18 0 P 74 21 -4.1586366445698353e-01 5.8239533358299345e-02 -2.7647327961325175e+01 2.7650516773321510e+01 0 2 0 0 -18 0 P 75 21 -1.1875233283252244e+00 -1.0296029182397621e+00 -1.1934588634207144e+02 1.1935623519782784e+02 0 2 0 0 -18 0 P 76 21 1.3498941657270799e-01 -9.7301085359439587e-01 -2.1551273241950008e+02 2.1551497119036264e+02 0 2 0 0 -18 0 P 77 21 1.1875233283252244e+00 1.0296029182397621e+00 -1.2682368670409819e+03 1.2682378409493031e+03 0 2 0 0 -18 0 P 128 92 1.7730530421985335e+01 -7.7482944665551816e+00 1.6465305461965363e+03 9.0359598324260351e+03 8.8846571597266648e+03 2 0 0 -19 0 V -19 0 0 0 0 0 0 98 0 P 129 2112 1.1115801064187691e-01 1.2670623743722522e+00 1.1922192426341162e+03 1.1922202913480437e+03 9.3957000000000002e-01 1 0 0 0 0 P 130 223 6.4426551572352631e-01 -5.1495082089448629e-01 4.5839449827342310e+02 4.5839591099441560e+02 7.8416621592238045e-01 2 0 0 -55 0 P 131 111 -1.6449664821748922e-01 1.0934426178364220e+00 6.5833445649327723e+02 6.5833539894327782e+02 1.3497999999999999e-01 2 0 0 -56 0 P 132 223 -3.4182623383972022e-01 -2.7048653355416857e-01 3.4340500704131152e+01 3.4352144129153594e+01 7.8090301621542713e-01 2 0 0 -57 0 P 133 223 4.0667593519954714e-01 1.6958470128138625e-01 1.5356118948452780e+01 1.5382489372655987e+01 7.8514065852223536e-01 2 0 0 -58 0 P 134 213 2.1171250705158573e-01 -1.7809676226393109e-01 2.6288084965136360e+01 2.6314865839698697e+01 1.1542150513409879e+00 2 0 0 -59 0 P 135 -321 3.2973849063153551e-02 1.2484397734869659e-01 4.4534161936872394e+00 4.4825472722100788e+00 4.9359999999999998e-01 1 0 0 0 0 P 136 321 -9.6806755052215432e-01 -6.8468653777569410e-01 5.6726358549932572e+00 5.8162177521771232e+00 4.9359999999999998e-01 1 0 0 0 0 P 137 -211 4.0953609647780964e-01 1.2589833370009798e-01 2.4560687531435921e+00 2.4970630167889363e+00 1.3957000000000000e-01 1 0 0 0 0 P 138 213 -1.0622015456966510e-01 -4.3573648409871046e-01 1.4261515123946105e+00 1.5677959224332807e+00 4.7215136691687887e-01 2 0 0 -60 0 P 139 113 3.3469504759375512e-01 1.3574912872365835e-01 2.8393699458795978e+00 2.9816221414704307e+00 8.3522470276530392e-01 2 0 0 -61 0 P 140 223 2.2012311498008877e-01 -5.2452175475823126e-01 1.1841042096199020e+01 1.1880702347891107e+01 7.8564183841288471e-01 2 0 0 -62 0 P 141 -323 -2.0583470205300419e-01 -1.5169730869521017e-01 4.9469702320843050e+00 5.0276896330683529e+00 8.6009800098601019e-01 2 0 0 -63 0 P 142 321 4.5268703806104005e-01 -6.3997526091591872e-01 1.0558321343305614e+01 1.0598881282357858e+01 4.9359999999999998e-01 1 0 0 0 0 P 143 111 3.5570814082838353e-01 -7.7994968032174605e-01 3.2992069856456915e+01 3.3003480767928380e+01 1.3497999999999999e-01 2 0 0 -64 0 P 144 -211 4.0541144230236306e+00 -2.5546582794271608e+00 1.5319724028940382e+02 1.5327222851760800e+02 1.3957000000000000e-01 1 0 0 0 0 P 145 213 1.0998520799860063e+00 -1.1417269690584064e+00 4.6955378455066445e+01 4.6988926352550365e+01 7.9901116209951151e-01 2 0 0 -65 0 P 146 221 3.0272375261464504e+00 -2.5746368132195427e+00 1.0107838895345436e+02 1.0115796229999891e+02 5.4744999999999999e-01 2 0 0 -66 0 P 147 -321 9.6606771949241992e+00 -8.4155972334627709e+00 4.3229456689390179e+02 4.3248466697399408e+02 4.9359999999999998e-01 1 0 0 0 0 P 148 311 2.9938958604433713e-01 -1.9650139292254221e-01 1.0434441447396772e+01 1.0452439460226687e+01 4.9767000000000000e-01 2 0 0 -67 0 P 149 213 -3.4066199138377197e-05 9.0739077382885691e-01 4.5786082586747277e+01 4.5800723495018374e+01 7.1941365645553301e-01 2 0 0 -68 0 P 150 -2224 -2.4701313894067470e-01 6.5164136883368207e-01 6.5982006396788194e+01 6.5996876537709454e+01 1.2152747111171545e+00 2 0 0 -69 0 P 151 213 -1.5508267801472311e-01 8.1789835067459630e-04 2.3035041640023209e+01 2.3047629902087532e+01 7.4568722666966414e-01 2 0 0 -70 0 P 152 2214 -1.0167877772687297e+00 9.8347092571287009e-01 6.4243881254185879e+01 6.4272045581925255e+01 1.2721997631727431e+00 2 0 0 -71 0 P 153 111 3.1003539032410354e-01 4.8236538879122787e-01 3.2384445853892231e+01 3.2389803197544055e+01 1.3497999999999999e-01 2 0 0 -72 0 P 154 223 -3.2277726381392086e-01 -1.5563357760447238e-01 2.2268857482152229e+00 2.3894672312850660e+00 7.8874998654065065e-01 2 0 0 -73 0 P 155 -2212 -2.0426533694473328e+00 3.7049660650017241e-01 2.2406622487358963e+00 3.1954058316515748e+00 9.3827000000000005e-01 1 0 0 0 0 P 156 2212 -1.5192869754782081e+00 -1.7254986881656334e-01 5.2026660788961090e+00 5.5032800485240205e+00 9.3827000000000005e-01 1 0 0 0 0 P 157 111 -1.7828767819932943e-02 1.8283796531013943e-01 1.1128820123231416e-01 2.5367745397305796e-01 1.3497999999999999e-01 2 0 0 -74 0 P 158 -213 -1.6965934249015437e+00 -3.4010554357914774e-01 2.1056143867451107e+00 2.7637964266824460e+00 4.5919245669136405e-01 2 0 0 -75 0 P 159 223 -1.5668224550990499e+00 -4.9848745710899578e-01 3.9371225243722301e+00 4.3362452462493852e+00 7.7373555754122236e-01 2 0 0 -76 0 P 160 113 -1.1849642042636868e+00 4.4334665856623501e-01 4.3210574169928258e+00 4.5707195372748357e+00 7.8692023892454543e-01 2 0 0 -77 0 P 161 -2112 -1.7749705832383689e+00 -3.3521452562109549e-01 1.2295637239921131e+01 1.2463080528913560e+01 9.3957000000000002e-01 1 0 0 0 0 P 162 2112 -6.9902367376033281e-01 -4.4102457672237083e-01 7.5519403827464400e+00 7.6549155516705074e+00 9.3957000000000002e-01 1 0 0 0 0 P 163 221 -1.5174619825407383e+00 1.1900785065932584e+00 2.6272790739937602e+01 2.6349159616340003e+01 5.4744999999999999e-01 2 0 0 -78 0 P 164 223 -6.4055196889175003e-01 3.0261818122736681e-02 1.9824317060399785e+01 1.9850024305877835e+01 7.8018935534629008e-01 2 0 0 -79 0 P 165 211 -1.5483731152427136e+00 1.9505009386657624e-01 3.6360661306017946e+01 3.6394404435832918e+01 1.3957000000000000e-01 1 0 0 0 0 P 166 -211 3.0494643282113437e-01 2.5216144208993391e-02 3.7019923063182345e+00 3.7172375498155219e+00 1.3957000000000000e-01 1 0 0 0 0 P 167 211 -2.1767392730570956e+00 1.0979806709667324e+00 5.8605808992184720e+01 5.8656662731782014e+01 1.3957000000000000e-01 1 0 0 0 0 P 168 -211 -2.0283023741658193e+00 2.9771813907932237e-01 4.1755505292864015e+01 4.1806032443400781e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 213 2.9256629767861368e-02 -1.9044989131216017e-01 7.9984428313163775e+01 7.9988390680985518e+01 7.7249209630196214e-01 2 0 0 -80 0 P 170 -213 -1.1950527305607864e-01 3.6127808307609965e-01 6.3839364435084505e+01 6.3843095593099804e+01 5.7584726321055957e-01 2 0 0 -81 0 P 171 211 -1.7576211371735495e-01 -3.5246194255178831e-02 1.5496233740907629e+01 1.5497899036726620e+01 1.3957000000000000e-01 1 0 0 0 0 P 172 223 3.7255535118066613e-01 6.2877228611688610e-02 1.7504520547389146e+02 1.7504735960495830e+02 7.8191702573660593e-01 2 0 0 -82 0 P 173 -2214 -1.8468979881739662e+00 1.3983406239260230e+00 3.7539119990050773e+02 3.7540057856012862e+02 1.2942302179677889e+00 2 0 0 -83 0 P 174 2114 1.9298621806355754e-01 -2.7489054262893681e-01 1.0719294840425370e+02 1.0719950868663315e+02 1.1373946402854822e+00 2 0 0 -84 0 P 175 -2112 4.9741312650915304e-01 1.7153126284777645e-01 3.3877076980663168e+02 3.3877248133512154e+02 9.3957000000000002e-01 1 0 0 0 0 P 176 2212 -1.2967169013769455e+00 1.1344838368146413e+00 3.0791606929311001e+02 3.0792231911280891e+02 9.3827000000000005e-01 1 0 0 0 0 P 177 -321 7.6141944505252324e-01 1.3129070348977731e-01 1.6382517682521769e+01 1.6408154174015596e+01 4.9359999999999998e-01 1 0 0 0 0 P 178 313 1.7065013102186732e+00 3.0084595811095166e-01 8.1499943446911288e+01 8.1522077563168651e+01 7.7826303603520797e-01 2 0 0 -85 0 P 179 213 1.1684421548165240e+00 1.3260670680194608e+00 2.2943449301733395e+01 2.3024492245732837e+01 7.7567156359053513e-01 2 0 0 -86 0 P 180 111 -2.2779716705448952e-01 6.5803831465647833e-01 7.5249821346740458e+00 7.5583385542351529e+00 1.3497999999999999e-01 2 0 0 -87 0 P 181 221 1.1281710932627418e+00 6.8668355003639747e-01 1.8675926608581722e+01 1.8730569679142036e+01 5.4744999999999999e-01 2 0 0 -88 0 P 182 -211 1.4052034147683898e-01 1.1724179683639444e-01 9.5241247677540231e-01 9.7982698274320346e-01 1.3957000000000000e-01 1 0 0 0 0 P 183 111 6.3636054020085508e-01 3.9752674009343264e-01 4.3423531109854521e+00 4.4087676721618099e+00 1.3497999999999999e-01 2 0 0 -89 0 P 184 -313 1.1188507662640490e+00 1.6706731596013921e-01 5.7563981565253535e+00 5.9313562564134656e+00 8.7471639907737975e-01 2 0 0 -90 0 P 185 313 1.1348705304664590e+00 2.0542917659108633e+00 1.7208700596636458e+01 1.7391951434117075e+01 9.1244324842733293e-01 2 0 0 -91 0 P 186 -311 1.5250385203606955e+00 5.3560914587809072e-01 1.0111663708995930e+01 1.0252123586772525e+01 4.9767000000000000e-01 2 0 0 -92 0 P 187 313 5.5431595371537978e-01 4.9824835643422627e-01 7.0991966930960393e+00 7.1886790823714835e+00 8.5029151520333313e-01 2 0 0 -93 0 P 188 211 2.1264930218793414e+00 1.0297957367249440e+00 6.0828918606802285e+00 6.5271360492261978e+00 1.3957000000000000e-01 1 0 0 0 0 P 189 -323 6.4333692618945126e-01 2.1318055165036257e-01 3.0029837741958385e+00 3.2368073270936444e+00 9.9984087556109402e-01 2 0 0 -94 0 P 190 323 -1.2582931704191960e-01 -3.5812045977452543e-02 1.2370268807175524e+00 1.5386065984224291e+00 9.0551600837694368e-01 2 0 0 -95 0 P 191 113 1.6856590365497595e+00 -4.8437809229226314e-01 5.1546215886505375e-01 1.9385239825498881e+00 6.4506237675491662e-01 2 0 0 -96 0 P 192 -211 8.9439258383711695e-02 -3.2369333721708649e-01 7.7545970439045264e-01 8.5650119412192938e-01 1.3957000000000000e-01 1 0 0 0 0 P 193 111 6.2562480000027332e-01 -5.2673836025878662e-01 8.5554598952358418e-01 1.1912339111750414e+00 1.3497999999999999e-01 2 0 0 -97 0 P 194 223 2.6519206258645398e+00 -7.7017535890119937e-01 -1.2722433073255943e+00 3.1374679402753287e+00 7.7411171924754085e-01 2 0 0 -98 0 P 195 -1114 8.6026246609604384e-01 -8.5332910641676729e-01 5.6209663955278732e-01 1.8566317909044165e+00 1.2895374753642175e+00 2 0 0 -99 0 P 196 -211 6.2992499280287273e-01 -4.7559597436991041e-01 -2.3865812990316190e-01 8.3632201648852833e-01 1.3957000000000000e-01 1 0 0 0 0 P 197 2112 2.3476163684041294e+00 -1.5017246079386515e+00 -1.3538804489577292e+00 3.2376323859044702e+00 9.3957000000000002e-01 1 0 0 0 0 P 198 211 9.2186024463580207e-02 2.1752918353379477e-01 -6.4241745565635500e-01 6.9856795018613904e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 8.1670658853216693e-01 1.3640827332137617e-01 -6.9687602802087334e-01 1.3959098184854870e+00 8.8165251325659255e-01 2 0 0 -100 0 P 200 211 5.6604363525057259e-02 -1.1933600766768788e+00 -2.1966607047106739e+00 2.5044181685765494e+00 1.3957000000000000e-01 1 0 0 0 0 P 201 111 -1.0435187556478696e-01 -9.5289901963334478e-02 -5.0927805932780915e-02 2.0194732275323105e-01 1.3497999999999999e-01 2 0 0 -101 0 P 202 113 -9.3978491313330220e-02 -4.2712430149671460e-01 -3.1449026768242110e+00 3.2639870960510797e+00 7.5626172105514367e-01 2 0 0 -102 0 P 203 -2114 -5.8573094594994735e-01 -6.1633515592189947e-01 -4.7299551330530605e+00 4.9792282608747831e+00 1.3028003483766917e+00 2 0 0 -103 0 P 204 -213 -5.6715990746191070e-01 -1.6558045261862123e-01 -3.6391355717712308e+00 3.7584247728238016e+00 7.3031624405002149e-01 2 0 0 -104 0 P 205 2214 -3.4725919181604414e-01 3.5194372063647866e-01 -5.9182198543759839e+00 6.0624698629700067e+00 1.2180973958979231e+00 2 0 0 -105 0 P 206 -213 -3.0266671393146588e-01 2.8407781848453850e-01 -3.1965867767175592e+01 3.1975111505665744e+01 6.4710613080494683e-01 2 0 0 -106 0 P 207 -313 -3.7352929502582022e-01 4.0522672416112199e-01 -7.0361876794043541e+00 7.1137777356498644e+00 8.9115867285755868e-01 2 0 0 -107 0 P 208 333 7.3409064046091554e-01 3.1594097716723157e-01 -1.5888794570885816e+01 1.5941998549302093e+01 1.0270428718772020e+00 2 0 0 -108 0 P 209 323 -2.6252106107587016e-02 4.0318977113740967e-02 -3.0623397903321081e+01 3.0635924932494714e+01 8.7468996297589041e-01 2 0 0 -109 0 P 210 113 3.7785312277360128e-01 7.1884990268910853e-01 -3.9934345428850698e+01 3.9950095000714477e+01 7.7371026253839614e-01 2 0 0 -110 0 P 211 331 -1.2283150722831568e+00 -1.4055401329044563e+00 -8.7234085285350972e+01 8.7259311445537122e+01 9.5786084341863853e-01 2 0 0 -111 0 P 212 -211 4.7026917763348569e-01 -6.6835119169949764e-01 -3.7480101853722964e+01 3.7489269947082533e+01 1.3957000000000000e-01 1 0 0 0 0 P 213 -3112 1.4394370057183277e-02 3.4895429872086930e-01 -4.8161520041479162e+02 4.8161681564230497e+02 1.1974400000000001e+00 2 0 0 -112 0 P 214 3212 -2.8616075951154502e-01 1.3503067240253691e-01 -2.7060967600424277e+02 2.7061248870642783e+02 1.1925500000000000e+00 2 0 0 -113 0 P 215 -213 6.0859037855152875e-01 -9.0730503888382164e-01 -2.1605810686706138e+02 2.1606199347314256e+02 6.9706235541614237e-01 2 0 0 -114 0 P 216 -2112 -4.9945205196540304e-01 4.6958759552212870e-01 -9.4795567932154526e+01 9.4802702789671059e+01 9.3957000000000002e-01 1 0 0 0 0 P 217 3122 -2.6160708095411597e-02 2.5923348736282487e-01 -1.8146950349755531e+02 1.8147312012497954e+02 1.1156800000000000e+00 2 0 0 -115 0 P 218 323 8.1565323693062255e-02 -3.8775335778719294e-01 -1.2979255957129533e+02 1.2979599922811622e+02 8.5784030471621231e-01 2 0 0 -116 0 P 219 -213 1.3873182438973580e-01 -2.1146623683090837e-01 -6.1441908633333668e+01 6.1447348355793281e+01 7.7750817543670836e-01 2 0 0 -117 0 P 220 113 -1.0835308215259583e+00 2.6788506143640473e-01 -3.2651091082553933e+01 3.2675117648468245e+01 5.6900176860039964e-01 2 0 0 -118 0 P 221 211 1.9457481429501608e-01 2.1774735362770911e-01 -2.4187422768984433e+01 2.4189588116767435e+01 1.3957000000000000e-01 1 0 0 0 0 P 222 223 5.8208044603843268e-02 4.2016767828042273e-01 -4.1455473930847702e+01 4.1464977055171701e+01 7.7979119025162147e-01 2 0 0 -119 0 P 223 -211 -1.4734930281030018e-01 -4.5063870605768702e-01 -9.1259788128397588e+01 9.1261126423496179e+01 1.3957000000000000e-01 1 0 0 0 0 P 224 223 6.0959598457809927e-01 5.3190377578202186e-01 -5.0086921690524451e+02 5.0087046883704386e+02 7.7432607867473069e-01 2 0 0 -120 0 P 225 211 -3.2034956905257117e-01 -3.6212257855433544e-01 -1.3294686293026362e+02 1.3294781532387620e+02 1.3957000000000000e-01 1 0 0 0 0 P 226 113 6.4086035219310977e-01 -5.1961407408433169e-01 -1.1534600193275289e+03 1.1534604832726004e+03 6.2416634055471676e-01 2 0 0 -121 0 V -20 0 0 0 0 0 3 1 0 P 80 21 -1.8916885638967447e+00 -2.2739734760432290e-01 3.3604103760061264e+01 3.3658074583871233e+01 0 2 0 0 -20 0 P 81 21 -7.8732774052655008e-01 -1.6824822278048925e+00 1.0814618864801702e+02 1.0816214102221889e+02 0 2 0 0 -20 0 P 82 21 1.8916885638967447e+00 2.2739734760432290e-01 2.2215505507545421e+02 2.2216322533388501e+02 0 2 0 0 -20 0 P 227 92 -7.8732774052655019e-01 -1.6824822278048925e+00 3.6390534748353252e+02 3.6398344093997514e+02 7.3070322276515132e+00 2 0 0 -21 0 V -21 0 0 0 0 0 0 9 0 P 228 213 -1.3620828581183889e-01 2.2123917896084855e-01 1.7345030022490654e+01 1.7358904444348102e+01 6.4342641807366074e-01 2 0 0 -122 0 P 229 311 -2.8830478538157295e-01 -2.4141995299401081e-01 3.6571113566467417e+01 3.6576432660434982e+01 4.9767000000000000e-01 2 0 0 -123 0 P 230 -311 4.2896106340717316e-01 2.3317535067261880e-01 4.8692920376729873e+01 4.8697911131603334e+01 4.9767000000000000e-01 2 0 0 -124 0 P 231 -211 -4.6045658272007672e-01 -1.3203624981304150e+00 4.9818129615108276e+01 4.9837946341353870e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 2212 -1.8025387582627431e-01 3.2828408602000764e-01 4.7323764499095645e+01 4.7334546568649515e+01 9.3827000000000005e-01 1 0 0 0 0 P 233 -211 -4.3987383041839349e-02 1.2076490595902278e-01 1.3811715604457611e+01 1.3813018742320450e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 -3114 -1.4302072990907722e-01 -6.3248018023733044e-01 1.1544139497156485e+02 1.1545137421711156e+02 1.3724611218969982e+00 2 0 0 -125 0 P 235 -311 -1.4307122364362197e-02 -2.3719457022782112e-02 1.5633436277779330e+01 1.5641380136889412e+01 4.9767000000000000e-01 2 0 0 -126 0 P 236 -211 5.0249961121318222e-02 -3.6796366103285216e-01 1.9267842549838825e+01 1.9271926697263897e+01 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 2 1 0 P 83 21 8.2006447393837356e-01 -1.2436902750421357e+00 2.5949874336177999e+01 2.5992599895067823e+01 0 2 0 0 -22 0 P 84 21 -8.2006447393837356e-01 1.2436902750421357e+00 2.7376608477882169e+00 3.1167383847802661e+00 0 2 0 0 -22 0 P 237 92 0 0 2.8687535183966215e+01 2.9109338279848089e+01 4.9374993832232308e+00 2 0 0 -23 0 V -23 0 0 0 0 0 0 3 0 P 238 -211 -3.1603603908491368e-01 7.7405736164647765e-01 4.1038628252108822e+00 4.1904908364256608e+00 1.3957000000000000e-01 1 0 0 0 0 P 239 223 -3.3722786090545814e-01 7.4207298877964223e-01 2.3096540746418501e+00 2.5711516828281811e+00 7.8225576428254262e-01 2 0 0 -127 0 P 240 213 6.5326389999037182e-01 -1.5161303504261199e+00 2.2274018284113481e+01 2.2347695760594245e+01 7.4980685816179893e-01 2 0 0 -128 0 V -24 0 0 0 0 0 0 2 0 P 241 211 -8.6789068161022287e-01 4.8667179462415442e+00 1.4965917487211982e+00 5.1669569816997454e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 111 -2.5015363666857509e+00 1.3518278558429500e+01 5.3245427322146739e+00 1.4743490573291192e+01 1.3497999999999999e-01 2 0 0 -129 0 V -25 0 -1.0716153679262080e-04 1.0007835152666364e-04 4.5778738338777549e-05 1.5671327154547209e-04 0 2 0 P 243 22 -4.7468108342971560e-01 4.2831551530778100e-01 2.0050211543928523e-01 6.7005776610304724e-01 0 1 0 0 0 0 P 244 22 8.8261994677316206e-03 6.7471968646235598e-03 -1.4918224270840255e-03 1.1209460144365099e-02 0 1 0 0 0 0 V -26 0 0 0 0 0 0 3 0 P 245 -211 -1.6640647277633044e-01 4.4301945275363164e-01 6.7649805380238001e-02 4.9800966935188212e-01 1.3957000000000000e-01 1 0 0 0 0 P 246 211 -1.6395975901240864e-01 1.0007452531345391e+00 -2.4995146079534064e-01 1.0537216814227770e+00 1.3957000000000000e-01 1 0 0 0 0 P 247 111 -7.5439753978556998e-02 5.0912318595763083e-02 8.7013241223926910e-02 1.8459177991837822e-01 1.3497999999999999e-01 2 0 0 -130 0 V -27 0 0 0 0 0 0 2 0 P 248 -211 6.4537276365147847e-02 1.2540910527787676e+00 2.6163071254961617e-01 1.2902867291224882e+00 1.3957000000000000e-01 1 0 0 0 0 P 249 111 -8.6477889891349247e-02 3.5916725861139187e-01 -2.0906051231551087e-01 4.4542725927822002e-01 1.3497999999999999e-01 2 0 0 -131 0 V -28 0 -7.3429811184733606e-05 1.6731376076451057e-05 8.7360283057503140e-05 1.1601055204179542e-04 0 2 0 P 250 22 -5.9086392552730183e-01 1.0678552579640636e-01 6.0880477010177758e-01 8.5508278845257224e-01 0 1 0 0 0 0 P 251 22 -2.0588645292048355e-01 7.4758318669261040e-02 3.3909823365594349e-01 4.0369004170900008e-01 0 1 0 0 0 0 V -29 0 0 0 0 0 0 1 0 P 252 310 -9.0672324639291124e-01 6.5993393037992887e-01 1.7563704473603412e+00 2.1424687664646984e+00 4.9767000000000000e-01 2 0 0 -132 0 V -30 0 0 0 0 0 0 2 0 P 253 321 3.3454304558607784e-01 -1.1771136211440523e-02 3.5403017005708652e+00 3.5901858865611231e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 1.5076858796810541e-01 4.4688753068960346e-01 4.4671480166837023e+00 4.4941440586684447e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 255 211 -6.6501640445338683e-02 -4.1113417630915222e-01 9.9852280210011450e+00 9.9948843012512043e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 111 -1.2394196174774351e-02 2.5389608934410318e-01 8.9656597418797581e+00 8.9702782034810085e+00 1.3497999999999999e-01 2 0 0 -133 0 V -32 0 5.9263439660182306e-06 4.4485493301737754e-06 4.3783190423702147e-05 4.4485248331628134e-05 0 2 0 P 257 22 1.2998188314004880e-01 1.8100940790816192e-01 1.2068317351876745e+00 1.2272336911737676e+00 0 1 0 0 0 0 P 258 22 1.7111259521977334e-01 4.5004074891173911e-02 1.0176218161323680e+00 1.0328886908414647e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 259 -211 2.4160574657724587e-01 5.1401423098362826e-02 3.1323179798467757e+00 3.1451408799681886e+00 1.3957000000000000e-01 1 0 0 0 0 P 260 111 -4.5744601680746488e-01 -9.1989066459209609e-02 3.7166424445648145e+00 3.7482488588381870e+00 1.3497999999999999e-01 2 0 0 -134 0 V -34 0 0 0 0 0 0 2 0 P 261 211 1.2701288220714160e-01 1.1793077305564775e-01 1.0335633573554787e+01 1.0338028878426147e+01 1.3957000000000000e-01 1 0 0 0 0 P 262 -211 -9.1335970239376008e-01 2.2164112629513069e-01 4.2538885851038422e+01 4.2549496353862978e+01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 263 211 -2.4552509619983291e-02 3.0172021465574939e-01 1.6949277166020455e+01 1.6952554797113706e+01 1.3957000000000000e-01 1 0 0 0 0 P 264 -211 9.2267532937530313e-03 -1.1823938262427341e-01 1.3481735178217932e+01 1.3482979228830644e+01 1.3957000000000000e-01 1 0 0 0 0 P 265 111 3.0890164847028367e-01 1.5993141625458018e-01 1.6256928897569022e+01 1.6261210135391142e+01 1.3497999999999999e-01 2 0 0 -135 0 V -36 0 0 0 0 0 0 2 0 P 266 211 3.4987279569735152e-01 1.2893817910435151e-01 2.8112332850221989e+01 2.8115152037536099e+01 1.3957000000000000e-01 1 0 0 0 0 P 267 111 -3.4278317561267507e-01 1.8590278770313665e-01 3.8093611376344882e+01 3.8095846327970598e+01 1.3497999999999999e-01 2 0 0 -136 0 V -37 0 0 0 0 0 0 2 0 P 268 -211 -3.4250337275674853e-01 3.7484128438635389e-01 5.4881539464291514e+01 5.4884065704941328e+01 1.3957000000000000e-01 1 0 0 0 0 P 269 111 1.4343517680192619e-01 1.7711978050682687e-02 9.2989325820889619e+01 9.2989536097283974e+01 1.3497999999999999e-01 2 0 0 -137 0 V -38 0 0 0 0 0 0 2 0 P 270 2212 -1.0951572823274029e+00 -7.8142679640857393e-01 3.7035810319436973e+00 4.0505382808033366e+00 9.3827000000000005e-01 1 0 0 0 0 P 271 211 -5.2613723522755729e-01 -6.2392392149064302e-01 1.9906364755843828e+00 2.1559718952083240e+00 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 272 -2212 -7.4959982566388861e-01 -3.9616791214338476e-01 3.8427786592983351e+00 4.0455095266858647e+00 9.3827000000000005e-01 1 0 0 0 0 P 273 -211 1.0151461229946897e-01 3.5560269381259601e-03 3.0385593935318084e-01 3.4946541834364681e-01 1.3957000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 274 211 -1.1102971591011255e-02 -2.1938771774793353e-01 -6.6152004151108182e-02 2.6853327397178545e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 -6.8972702381817619e-01 6.7463138867420558e-02 7.2825085488550689e-01 1.0143192547380708e+00 1.3497999999999999e-01 2 0 0 -138 0 V -41 0 0 0 0 0 0 2 0 P 276 22 -2.4490447033237725e-01 2.4001012153105805e-01 -1.5427123917991756e-01 3.7600887391688359e-01 0 1 0 0 0 0 P 277 111 3.1340006167949358e-01 -2.6236144121190172e-02 2.9539838938240637e-01 4.5209262631542446e-01 1.3497999999999999e-01 2 0 0 -139 0 V -42 0 0 0 0 0 0 2 0 P 278 -211 -6.9021415412936299e-02 -1.5700196736227223e-01 7.7541758709022857e-02 2.3432047026437414e-01 1.3957000000000000e-01 1 0 0 0 0 P 279 111 -5.1981170381719774e-02 2.6583565306380236e-01 -9.8249931366500953e-01 1.0280540541558729e+00 1.3497999999999999e-01 2 0 0 -140 0 V -43 0 -2.2217685252735151e-04 -5.1822827994031153e-05 -1.0182302162899677e-04 2.5465063365278225e-04 0 2 0 P 280 22 -1.7575116722107503e-01 1.3556776229713444e-02 -4.6939875188108098e-02 1.8241603779270063e-01 0 1 0 0 0 0 P 281 22 -4.3250766277368430e-01 -1.5543335951954337e-01 -2.3182342214935892e-01 5.1474703172191927e-01 0 1 0 0 0 0 V -44 0 -8.3135971849114011e-05 -7.4357202020755893e-06 3.9869038005635430e-06 8.7295430321510085e-05 0 2 0 P 282 22 -3.5515884312477281e-01 -3.8945774204627706e-02 -3.8255880620341950e-02 3.5933005660557071e-01 0 1 0 0 0 0 P 283 22 -8.9210821429415402e-02 -7.9885640980761831e-04 5.9566260051302077e-02 1.0727230848720409e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 284 -211 1.5624562795176407e+00 1.4286876330751306e+00 -3.6055415924927336e+00 4.1835186073927009e+00 1.3957000000000000e-01 1 0 0 0 0 P 285 111 2.6133757894966653e-01 4.4810097855334025e-01 -1.6698200027373888e+00 1.7537417880331265e+00 1.3497999999999999e-01 2 0 0 -141 0 V -46 0 0 0 0 0 0 2 0 P 286 -311 -9.4116424109606731e-02 2.9360495426403819e-02 2.5800796286231047e+00 2.6294878320530031e+00 4.9767000000000000e-01 2 0 0 -142 0 P 287 -211 -1.7654328127957594e-01 -1.5856258450767988e-01 5.3061647838837036e+00 5.3133016215906945e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 288 -211 3.6829702287161516e-02 2.6873121776587187e-02 9.7261350862585028e-01 9.8363378027905646e-01 1.3957000000000000e-01 1 0 0 0 0 P 289 211 -5.2923189892504308e-01 1.0350844391787692e+00 1.3093556015575144e+01 1.3145804468231447e+01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 8.7787560641514853e-04 -2.3305542905529860e-05 4.0239300949101433e-03 4.1191628367840951e-03 0 2 0 P 290 22 1.2864000986246371e+00 -2.9216994099305633e-03 6.1298325878994255e+00 6.2633602248108557e+00 0 1 0 0 0 0 P 291 22 5.2478712071883427e-01 -4.5161082640166751e-02 2.1721303624029753e+00 2.2350819574974152e+00 0 1 0 0 0 0 V -49 0 0 0 0 0 0 3 0 P 292 -211 -3.5860630912233171e-01 -5.9433876230946391e-02 6.0548308412772336e+00 6.0673377334682916e+00 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -3.6934989796264900e-01 -4.5243657103712720e-01 7.4143800601297691e+00 7.4386577861121408e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 111 -1.0516622162491053e-01 -1.4450461107176402e-01 7.9752647082467369e+00 7.9784088817130554e+00 1.3497999999999999e-01 2 0 0 -143 0 V -50 0 0 0 0 0 0 2 0 P 295 211 6.8872107630317414e-01 -2.3640814226319576e-01 6.9905317614050144e+00 7.0297396554057983e+00 1.3957000000000000e-01 1 0 0 0 0 P 296 111 4.5198127464764809e-01 -5.4241768399744383e-01 3.5567394115216402e+00 3.6286524852094293e+00 1.3497999999999999e-01 2 0 0 -144 0 V -51 0 0 0 0 0 0 2 0 P 297 -3122 5.5887125310545671e-01 -2.6188319321898996e+00 3.0166802088097956e+01 3.0305961589289264e+01 1.1156800000000000e+00 2 0 0 -145 0 P 298 -211 2.9585270212264714e-01 -5.6547915177566677e-01 5.1765866858037786e+00 5.2176455411408647e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.8124392929565791e-05 3.2983749290613922e-05 7.4647724532949606e-05 8.6503301092078700e-05 0 2 0 P 299 22 4.6011961340757773e-02 1.8460220666734614e-01 2.6843411783846782e-01 3.2901664230338468e-01 0 1 0 0 0 0 P 300 22 6.4045122473357807e-02 1.5685619484293086e-02 1.8485062981529360e-01 1.9625894046983985e-01 0 1 0 0 0 0 V -53 0 0 0 0 0 0 1 0 P 301 310 3.8466309797195608e-01 -2.7542522279100984e-01 7.0075735795275396e-01 9.8110195999997074e-01 4.9767000000000000e-01 2 0 0 -146 0 V -54 0 0 0 0 0 0 2 0 P 302 -211 -1.0966123495289483e-01 2.2182912906540739e-01 -4.0089598285973957e-02 2.8691585830002836e-01 1.3957000000000000e-01 1 0 0 0 0 P 303 111 7.3134287875783488e-01 3.5985603709664943e-02 -4.3425767877006144e-01 8.6194936159551050e-01 1.3497999999999999e-01 2 0 0 -147 0 V -55 0 0 0 0 0 0 3 0 P 304 211 2.1891605176462745e-01 -4.0063683242399512e-01 1.6624737779060919e+02 1.6624806325532833e+02 1.3957000000000000e-01 1 0 0 0 0 P 305 -211 2.9495815848249529e-01 -9.8257582327231696e-02 9.0853667972580467e+01 9.0854307100569173e+01 1.3957000000000000e-01 1 0 0 0 0 P 306 111 1.3039130547640351e-01 -1.6056406143259493e-02 2.0129345251023341e+02 2.0129354063851804e+02 1.3497999999999999e-01 2 0 0 -148 0 V -56 0 -4.6179452603616362e-05 3.0696419709652591e-04 1.8481546682193464e-01 1.8481573139769109e-01 0 2 0 P 307 22 2.2751651974063022e-03 3.5471720585254984e-01 2.2839230848201089e+02 2.2839258394968630e+02 0 1 0 0 0 0 P 308 22 -1.6677181341489553e-01 7.3872541198387220e-01 4.2994214801126634e+02 4.2994281499359153e+02 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 309 -211 9.5219143324355049e-02 -4.4546736643235378e-02 4.4338288134428696e+00 4.4372704254774904e+00 1.3957000000000000e-01 1 0 0 0 0 P 310 211 -2.4421487143143009e-01 -3.3392280912652228e-01 1.7012824391797249e+01 1.7018425864835873e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 111 -1.9283050573264515e-01 1.0798301221558911e-01 1.2893847498891027e+01 1.2896447838840222e+01 1.3497999999999999e-01 2 0 0 -149 0 V -58 0 0 0 0 0 0 3 0 P 312 211 2.7932966757657490e-01 1.7009722602919669e-01 9.2632854071294695e+00 9.2701075747980966e+00 1.3957000000000000e-01 1 0 0 0 0 P 313 -211 2.5710025469932180e-01 1.4897822335006220e-02 3.1644076282491351e+00 3.1779361083410880e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 111 -1.2975398707634955e-01 -1.5410347082816639e-02 2.9284259130741765e+00 2.9344456895168034e+00 1.3497999999999999e-01 2 0 0 -150 0 V -59 0 0 0 0 0 0 2 0 P 315 211 -3.6639502417834224e-01 -1.5218644469164269e-01 1.8250454831023493e+01 1.8255300253674800e+01 1.3957000000000000e-01 1 0 0 0 0 P 316 111 5.7810753122992797e-01 -2.5910317572288396e-02 8.0376301341128666e+00 8.0595655860238935e+00 1.3497999999999999e-01 2 0 0 -151 0 V -60 0 0 0 0 0 0 2 0 P 317 211 -9.4733824595636104e-02 -4.7955342582549493e-01 1.0887077021257388e+00 1.2015449352027545e+00 1.3957000000000000e-01 1 0 0 0 0 P 318 111 -1.1486329974029010e-02 4.3816941726784492e-02 3.3744381026887166e-01 3.6625098723052607e-01 1.3497999999999999e-01 2 0 0 -152 0 V -61 0 0 0 0 0 0 2 0 P 319 211 3.7646062863849250e-01 3.1662003241227799e-01 9.5750127018039388e-01 1.0854765391922152e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 -211 -4.1765581044737370e-02 -1.8087090368861966e-01 1.8818686756992040e+00 1.8961456022782159e+00 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 3 0 P 321 -211 6.9403247827165157e-02 -5.8467484093825217e-01 8.2420650045646013e+00 8.2642468988289313e+00 1.3957000000000000e-01 1 0 0 0 0 P 322 211 1.4136231593578083e-01 1.8579830947704254e-02 1.5846452407879734e+00 1.5971564853002811e+00 1.3957000000000000e-01 1 0 0 0 0 P 323 111 9.3575512171427955e-03 4.1573255232316565e-02 2.0143318508464461e+00 2.0192989637618948e+00 1.3497999999999999e-01 2 0 0 -153 0 V -63 0 0 0 0 0 0 2 0 P 324 -311 -3.3054702746819031e-01 -1.4619386948069341e-01 2.5385190924224150e+00 2.6119702518089514e+00 4.9767000000000000e-01 2 0 0 -154 0 P 325 -211 1.2471232541518608e-01 -5.5034392145167643e-03 2.4084511396618904e+00 2.4157193812594024e+00 1.3957000000000000e-01 1 0 0 0 0 V -64 0 3.3612882491686875e-04 -7.3701875062600968e-04 3.1176080610919834e-02 3.1186863429258492e-02 0 2 0 P 326 22 2.5780146930512698e-01 -4.0599447241012637e-01 1.7853116455622764e+01 1.7859592948531379e+01 0 1 0 0 0 0 P 327 22 9.7906671523256578e-02 -3.7395520791161974e-01 1.5138953400834152e+01 1.5143887819397001e+01 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 328 211 -3.6340254921409972e-02 -2.1519324825989897e-01 4.0374162821425026e+00 4.0457185725694993e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 111 1.1361923349074163e+00 -9.2653372079850760e-01 4.2917962172923943e+01 4.2943207779980874e+01 1.3497999999999999e-01 2 0 0 -155 0 V -66 0 0 0 0 0 0 3 0 P 330 211 6.3113166090741235e-01 -3.8699502523697354e-01 1.9380915148700311e+01 1.9395552173345802e+01 1.3957000000000000e-01 1 0 0 0 0 P 331 -211 1.1196765666072850e+00 -1.0525010725769677e+00 3.9942897799455672e+01 3.9972690659051786e+01 1.3957000000000000e-01 1 0 0 0 0 P 332 111 1.2764292986317534e+00 -1.1351407154056017e+00 4.1754576005298389e+01 4.1789719467601323e+01 1.3497999999999999e-01 2 0 0 -156 0 V -67 0 0 0 0 0 0 1 0 P 333 130 2.9938958604433713e-01 -1.9650139292254221e-01 1.0434441447396772e+01 1.0452439460226685e+01 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 334 211 2.1664438694895449e-01 5.6271393906380078e-02 8.7040659789397310e+00 8.7080621042115176e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -2.1667845314809286e-01 8.5111937992247688e-01 3.7082016607807553e+01 3.7092661390806853e+01 1.3497999999999999e-01 2 0 0 -157 0 V -69 0 0 0 0 0 0 2 0 P 336 -2212 -7.7296258897264228e-02 5.0795195863399778e-01 4.2731288189683376e+01 4.2744676052657056e+01 9.3827000000000005e-01 1 0 0 0 0 P 337 -211 -1.6971688004341046e-01 1.4368941019968423e-01 2.3250718207104814e+01 2.3252200485052388e+01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 338 211 -3.7272290529625401e-01 2.2604617646149378e-02 7.5993553907936606e+00 7.6098039050527495e+00 1.3957000000000000e-01 1 0 0 0 0 P 339 111 2.1764022728153087e-01 -2.1786719295474780e-02 1.5435686249229548e+01 1.5437825997034782e+01 1.3497999999999999e-01 2 0 0 -158 0 V -71 0 0 0 0 0 0 2 0 P 340 2212 -7.8219233624142004e-01 4.7791261152442566e-01 4.0481054697289295e+01 4.0502300740982065e+01 9.3827000000000005e-01 1 0 0 0 0 P 341 111 -2.3459544102730981e-01 5.0555831418844444e-01 2.3762826556896588e+01 2.3769744840943194e+01 1.3497999999999999e-01 2 0 0 -159 0 V -72 0 2.4279388349829891e-06 3.7774837862012928e-06 2.5360799506105914e-04 2.5364994931244641e-04 0 2 0 P 342 22 2.9659818180519554e-01 3.6385544894984739e-01 2.5339105576504313e+01 2.5343453448305201e+01 0 1 0 0 0 0 P 343 22 1.3437208518908004e-02 1.1850993984138045e-01 7.0453402773879157e+00 7.0463497492388525e+00 0 1 0 0 0 0 V -73 0 0 0 0 0 0 3 0 P 344 -211 -2.5991113626261907e-02 -2.7654024527148474e-01 5.5511528151914935e-01 6.3622543639690377e-01 1.3957000000000000e-01 1 0 0 0 0 P 345 211 -4.8073184341156198e-02 1.7691810518659226e-01 9.0892552223244005e-01 9.3767608312307227e-01 1.3957000000000000e-01 1 0 0 0 0 P 346 111 -2.4871296584650276e-01 -5.6011437519579869e-02 7.6284494446363338e-01 8.1556571176508963e-01 1.3497999999999999e-01 2 0 0 -160 0 V -74 0 -7.5264559911900208e-06 7.7185474247242064e-05 4.6980574169419069e-05 1.0709052989913994e-04 0 2 0 P 347 22 3.8746629681184155e-02 1.4705410761208015e-01 1.0825022229892053e-01 1.8666634004287386e-01 0 1 0 0 0 0 P 348 22 -5.6575397501117099e-02 3.5783857698059293e-02 3.0379789333936221e-03 6.7011113930184121e-02 0 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 349 -211 -2.5976275945780869e-01 -1.5510698181434851e-01 3.4191529620323041e-01 4.7741043315624637e-01 1.3957000000000000e-01 1 0 0 0 0 P 350 111 -1.4368306654437351e+00 -1.8499856176479920e-01 1.7636990905418803e+00 2.2863859935261996e+00 1.3497999999999999e-01 2 0 0 -161 0 V -76 0 0 0 0 0 0 3 0 P 351 211 -7.8347117156260349e-01 -3.4275186267856728e-01 2.6256246842195470e+00 2.7649033768510431e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 -211 -2.0627181025522498e-01 1.2578581945373092e-02 3.7148993278666448e-01 4.4742690519409367e-01 1.3957000000000000e-01 1 0 0 0 0 P 353 111 -5.7707947328122122e-01 -1.6831417637580154e-01 9.4000790736601858e-01 1.1239149642042487e+00 1.3497999999999999e-01 2 0 0 -162 0 V -77 0 0 0 0 0 0 2 0 P 354 211 -5.7209224330825321e-02 -5.5587438838296123e-02 1.2199003586008523e+00 1.2304468816326952e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 -211 -1.1277549799328614e+00 4.9893409740453110e-01 3.1011570583919732e+00 3.3402726556421407e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 356 111 -3.3654663666607754e-01 3.2434625969351238e-01 5.2884240246995935e+00 5.3107544097094408e+00 1.3497999999999999e-01 2 0 0 -163 0 P 357 111 -2.4919455991147235e-01 1.3113574261876948e-01 4.5798167917609511e+00 4.5904505179968140e+00 1.3497999999999999e-01 2 0 0 -164 0 P 358 111 -9.3172078596318852e-01 7.3459650428097656e-01 1.6404549923477056e+01 1.6447954688633743e+01 1.3497999999999999e-01 2 0 0 -165 0 V -79 0 0 0 0 0 0 3 0 P 359 -211 -1.2445378003968383e-02 -1.8159325117862568e-01 3.0326050865693293e+00 3.0412669057965718e+00 1.3957000000000000e-01 1 0 0 0 0 P 360 211 -2.3314230778416392e-01 -2.9743254173220317e-02 5.6324483210240599e+00 5.6390773953506343e+00 1.3957000000000000e-01 1 0 0 0 0 P 361 111 -3.9496428310361775e-01 2.4159832347458268e-01 1.1159263652806397e+01 1.1169680004730630e+01 1.3497999999999999e-01 2 0 0 -166 0 V -80 0 0 0 0 0 0 2 0 P 362 211 3.4839721035517901e-01 -1.4876645339950403e-01 2.9592973016032790e+01 2.9595726782533745e+01 1.3957000000000000e-01 1 0 0 0 0 P 363 111 -3.1914058058731765e-01 -4.1683437912656114e-02 5.0391455297130982e+01 5.0392663898451765e+01 1.3497999999999999e-01 2 0 0 -167 0 V -81 0 0 0 0 0 0 2 0 P 364 -211 -2.7988447554843610e-01 3.6234333275640568e-01 4.6530683483172950e+01 4.6533145318219894e+01 1.3957000000000000e-01 1 0 0 0 0 P 365 111 1.6037920249235743e-01 -1.0652496803060544e-03 1.7308680951911551e+01 1.7309950274879899e+01 1.3497999999999999e-01 2 0 0 -168 0 V -82 0 0 0 0 0 0 3 0 P 366 211 1.7535336187865413e-01 2.4679641786761933e-01 9.0165071022071899e+01 9.0165687317701767e+01 1.3957000000000000e-01 1 0 0 0 0 P 367 -211 2.1020872680335931e-01 -1.3782040175086044e-01 3.0643927111239591e+01 3.0645275830963374e+01 1.3957000000000000e-01 1 0 0 0 0 P 368 111 -1.3006737501347386e-02 -4.6098787505070273e-02 5.4236207340579973e+01 5.4236396456293178e+01 1.3497999999999999e-01 2 0 0 -169 0 V -83 0 0 0 0 0 0 2 0 P 369 -2212 -1.1309803470057136e+00 1.1033762302827550e+00 2.8706304994158756e+02 2.8706893170109885e+02 9.3827000000000005e-01 1 0 0 0 0 P 370 111 -7.1591764116825263e-01 2.9496439364326810e-01 8.8328149958920164e+01 8.8331646859029760e+01 1.3497999999999999e-01 2 0 0 -170 0 V -84 0 0 0 0 0 0 2 0 P 371 2212 1.3139378665357201e-01 -3.3330173447377487e-01 9.7622670009523247e+01 9.7627836218747291e+01 9.3827000000000005e-01 1 0 0 0 0 P 372 -211 6.1592431409985528e-02 5.8411191844838076e-02 9.5702783947304404e+00 9.5716724678858487e+00 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 373 321 8.8515927478057876e-01 3.0253082472563603e-01 4.9430719109467269e+01 4.9442033377286293e+01 4.9359999999999998e-01 1 0 0 0 0 P 374 -211 8.2134203543809459e-01 -1.6848666146843606e-03 3.2069224337444027e+01 3.2080044185882372e+01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 375 211 1.1154910879464428e+00 1.1101332580056509e+00 1.6413672309742399e+01 1.6489537127958521e+01 1.3957000000000000e-01 1 0 0 0 0 P 376 111 5.2951066870081193e-02 2.1593381001380985e-01 6.5297769919909925e+00 6.5349551177743139e+00 1.3497999999999999e-01 2 0 0 -171 0 V -87 0 -2.5584926890862498e-05 7.3907249987201115e-05 8.4516467109807937e-04 8.4891108097159514e-04 0 2 0 P 377 22 -3.9318887840585119e-02 6.4854208505518443e-02 1.3322725942632661e+00 1.3344295817789977e+00 0 1 0 0 0 0 P 378 22 -1.8847827921390439e-01 5.9318410615095984e-01 6.1927095404107799e+00 6.2239089724561554e+00 0 1 0 0 0 0 V -88 0 0 0 0 0 0 3 0 P 379 111 7.2704775584996351e-01 4.4388386516364481e-01 1.0140796672747925e+01 1.0177406746487755e+01 1.3497999999999999e-01 2 0 0 -172 0 P 380 111 2.3060963627334660e-01 8.3472269320325768e-02 3.7415644002524564e+00 3.7520224127427775e+00 1.3497999999999999e-01 2 0 0 -173 0 P 381 111 1.7051370113943157e-01 1.5932741555242685e-01 4.7935655355813394e+00 4.8011405199115025e+00 1.3497999999999999e-01 2 0 0 -174 0 V -89 0 7.4080441949120131e-05 4.6277156945368584e-05 5.0550500422198675e-04 5.1323650190763603e-04 0 2 0 P 382 22 2.9164258150321215e-01 2.6039707143796442e-01 2.2992803037813605e+00 2.3322847050727380e+00 0 1 0 0 0 0 P 383 22 3.4471795869764293e-01 1.3712966865546825e-01 2.0430728072040920e+00 2.0764829670890719e+00 0 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 384 -311 1.1469832122219348e+00 1.9643137410529107e-01 4.7749749069595406e+00 4.9398599742143618e+00 4.9767000000000000e-01 2 0 0 -175 0 P 385 111 -2.8132445957885714e-02 -2.9364058145151847e-02 9.8142324956581251e-01 9.9149628219910346e-01 1.3497999999999999e-01 2 0 0 -176 0 V -91 0 0 0 0 0 0 2 0 P 386 321 7.0877061038884315e-01 1.7471454243345530e+00 1.2332179054360898e+01 1.2485237446710487e+01 4.9359999999999998e-01 1 0 0 0 0 P 387 -211 4.2609992007761605e-01 3.0714634157631043e-01 4.8765215422755608e+00 4.9067139874065901e+00 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 1 0 P 388 310 1.5250385203606955e+00 5.3560914587809072e-01 1.0111663708995930e+01 1.0252123586772525e+01 4.9767000000000000e-01 2 0 0 -177 0 V -93 0 0 0 0 0 0 2 0 P 389 321 6.2851753758514461e-01 2.6657138467081537e-01 4.9361596831091186e+00 5.0075351197299982e+00 4.9359999999999998e-01 1 0 0 0 0 P 390 -211 -7.4201583869764859e-02 2.3167697176341095e-01 2.1630370099869207e+00 2.1811439626414861e+00 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 391 -311 7.0388998416119938e-02 3.1822660270029911e-02 7.6935401470962483e-01 9.1953701483654471e-01 4.9767000000000000e-01 2 0 0 -178 0 P 392 -211 5.7294792777333137e-01 1.8135789138033265e-01 2.2336297594862140e+00 2.3172703122570999e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 393 321 -3.4813608873391150e-01 -1.5994816463031272e-01 8.9165974622235267e-01 1.0887976004202351e+00 4.9359999999999998e-01 1 0 0 0 0 P 394 111 2.2230677169199187e-01 1.2413611865286017e-01 3.4536713449519985e-01 4.4980899800219409e-01 1.3497999999999999e-01 2 0 0 -179 0 V -96 0 0 0 0 0 0 2 0 P 395 211 1.2684862273836810e+00 -6.0274645934743554e-01 3.5224479115248042e-01 1.4546191189146416e+00 1.3957000000000000e-01 1 0 0 0 0 P 396 -211 4.1717280916607841e-01 1.1836836705517242e-01 1.6321736771257331e-01 4.8390486363524665e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 1.4238970741371358e-04 -1.1988354841559209e-04 1.9471885246106932e-04 2.7112008359232834e-04 0 2 0 P 397 22 3.7673731872462984e-01 -2.7830596258883267e-01 5.7334794596934680e-01 7.4034659672317615e-01 0 1 0 0 0 0 P 398 22 2.4888748127564350e-01 -2.4843239766995392e-01 2.8219804355423744e-01 4.5088731445186531e-01 0 1 0 0 0 0 V -98 0 0 0 0 0 0 3 0 P 399 211 6.8083309491926525e-01 -2.5477732429886996e-01 -4.8299722703266440e-01 8.8386158098170553e-01 1.3957000000000000e-01 1 0 0 0 0 P 400 -211 3.2913626687951802e-01 -1.7188328827408292e-01 -4.4793119176482722e-03 3.9670441905599235e-01 1.3957000000000000e-01 1 0 0 0 0 P 401 111 1.6419512640657565e+00 -3.4351474632824647e-01 -7.8476676837528159e-01 1.8569019402376310e+00 1.3497999999999999e-01 2 0 0 -180 0 V -99 0 0 0 0 0 0 2 0 P 402 -2112 5.4736655618574981e-01 -8.9487468474237619e-01 3.4844566699561663e-01 1.4507298218384548e+00 9.3957000000000002e-01 1 0 0 0 0 P 403 211 3.1289590991029398e-01 4.1545578325608859e-02 2.1365097255717069e-01 4.0590196906596182e-01 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 404 -211 1.4538435395695862e-01 -2.0045734601328566e-01 -5.4951283754425784e-01 6.1867915875040935e-01 1.3957000000000000e-01 1 0 0 0 0 P 405 111 6.7132223457520823e-01 3.3686561933466186e-01 -1.4736319047661545e-01 7.7723065973507721e-01 1.3497999999999999e-01 2 0 0 -181 0 V -101 0 -1.2865307134980298e-05 -1.1748076869584753e-05 -6.2787742097564460e-06 2.4897629469958805e-05 0 2 0 P 406 22 -4.6704589724150911e-02 2.6119726136368690e-02 -4.0561569369389879e-02 6.7147596416014754e-02 0 1 0 0 0 0 P 407 22 -5.7647285840636060e-02 -1.2140962809970317e-01 -1.0366236563391033e-02 1.3479972633721640e-01 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 408 211 -3.3002107337218485e-02 1.3046011331480467e-01 -1.6479773589311546e+00 1.6593426833250908e+00 1.3957000000000000e-01 1 0 0 0 0 P 409 -211 -6.0976383976111728e-02 -5.5758441481151932e-01 -1.4969253178930566e+00 1.6046444127259893e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 410 -2212 -6.3209232729948828e-01 -3.3475875940695426e-01 -4.1882139251153090e+00 4.3512171415203298e+00 9.3827000000000005e-01 1 0 0 0 0 P 411 211 4.6361381349540952e-02 -2.8157639651494520e-01 -5.4174120793775127e-01 6.2801111935445308e-01 1.3957000000000000e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 412 -211 -2.2208744087056362e-01 1.6838565587939142e-02 -2.8987176598229887e+00 2.9106099403652768e+00 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -3.4507246659134710e-01 -1.8241901820656037e-01 -7.4041791194824236e-01 8.4781483245852507e-01 1.3497999999999999e-01 2 0 0 -182 0 V -105 0 0 0 0 0 0 2 0 P 414 2212 -8.8360545455980516e-02 1.4060966269648240e-01 -4.1694802958093593e+00 4.2769726668847676e+00 9.3827000000000005e-01 1 0 0 0 0 P 415 111 -2.5889864636006366e-01 2.1133405793999629e-01 -1.7487395585666243e+00 1.7854971960852393e+00 1.3497999999999999e-01 2 0 0 -183 0 V -106 0 0 0 0 0 0 2 0 P 416 -211 -4.6838670977519808e-01 2.4992678314458336e-01 -2.4222449400463553e+01 2.4228668643772902e+01 1.3957000000000000e-01 1 0 0 0 0 P 417 111 1.6571999584373215e-01 3.4151035339955151e-02 -7.7434183667120422e+00 7.7464428618928460e+00 1.3497999999999999e-01 2 0 0 -184 0 V -107 0 0 0 0 0 0 2 0 P 418 -311 -1.0906965652077574e-01 5.1390869987627408e-01 -4.4723563574544096e+00 4.5305237179320628e+00 4.9767000000000000e-01 2 0 0 -185 0 P 419 111 -2.6445963850504450e-01 -1.0868197571515202e-01 -2.5638313219499453e+00 2.5832540177178029e+00 1.3497999999999999e-01 2 0 0 -186 0 V -108 0 0 0 0 0 0 2 0 P 420 130 3.7582642510618258e-01 3.4806247324439828e-02 -7.1806584816445822e+00 7.2077727930044508e+00 4.9767000000000000e-01 1 0 0 0 0 P 421 310 3.5826421535473291e-01 2.8113472984279175e-01 -8.7081360892412345e+00 8.7342257562976435e+00 4.9767000000000000e-01 2 0 0 -187 0 V -109 0 0 0 0 0 0 2 0 P 422 311 -6.9333586383176632e-03 2.6420014049749285e-01 -2.4951144275624408e+01 2.4957506403437534e+01 4.9767000000000000e-01 2 0 0 -188 0 P 423 211 -1.9318747469269353e-02 -2.2388116338375191e-01 -5.6722536276966711e+00 5.6784185290571783e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 424 211 -1.1875052487810715e-01 5.5266286660429563e-02 -2.9514355179149372e+00 2.9576354492921997e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 -211 4.9660364765170839e-01 6.6358361602867899e-01 -3.6982909910935760e+01 3.6992459551422279e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 3 0 P 426 -211 -3.7873724369963463e-01 -5.2312877476132214e-01 -2.2141909940051182e+01 2.2151766547907322e+01 1.3957000000000000e-01 1 0 0 0 0 P 427 211 -2.3520163550997714e-01 -2.8423587871228195e-01 -2.0088869536867481e+01 2.0092741696898315e+01 1.3957000000000000e-01 1 0 0 0 0 P 428 221 -6.1437619307354507e-01 -5.9817547943085236e-01 -4.5003305808432316e+01 4.5014803200731485e+01 5.4744999999999999e-01 2 0 0 -189 0 V -112 0 2.7798063066157164e-01 6.7389219288610809e+00 -9.3008375229795129e+03 9.3008687158668054e+03 0 2 0 P 429 -2112 -1.5864352500173579e-01 2.8562956145586443e-01 -3.5055919581349639e+02 3.5056060718969070e+02 9.3957000000000002e-01 1 0 0 0 0 P 430 211 1.7303789505891906e-01 6.3324737265004871e-02 -1.3105600460129526e+02 1.3105620845261433e+02 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 431 3122 -2.6355045592603216e-01 6.3384144361829889e-02 -2.4325418774624265e+02 2.4325689728009613e+02 1.1156800000000000e+00 2 0 0 -190 0 P 432 22 -2.2610303585512841e-02 7.1646528040707008e-02 -2.7355488258000122e+01 2.7355591426331671e+01 0 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 433 -211 2.9201029129775852e-01 -5.8236719048186825e-01 -1.7304308516486032e+02 1.7304436779251955e+02 1.3957000000000000e-01 1 0 0 0 0 P 434 111 3.1658008725377024e-01 -3.2493784840195339e-01 -4.3015021702201082e+01 4.3017625680623048e+01 1.3497999999999999e-01 2 0 0 -191 0 V -115 0 -1.1045971781145847e-01 1.0945750304977515e+00 -7.6622811869687882e+02 7.6624338937087032e+02 0 2 0 P 435 2212 -3.0553235292202739e-02 2.7064446192479202e-01 -1.4160143834569058e+02 1.4160480879576889e+02 9.3827000000000005e-01 1 0 0 0 0 P 436 -211 4.3925271967911435e-03 -1.1410974561967168e-02 -3.9868065151864734e+01 3.9868311329210655e+01 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 437 321 4.9905125939351232e-03 3.4272678753181143e-02 -7.0025892248639565e+01 7.0027640440755988e+01 4.9359999999999998e-01 1 0 0 0 0 P 438 111 7.6574811099127144e-02 -4.2202603654037407e-01 -5.9766667322655763e+01 5.9768358787360235e+01 1.3497999999999999e-01 2 0 0 -192 0 V -117 0 0 0 0 0 0 2 0 P 439 -211 4.0957061953085355e-01 1.8889170495192051e-02 -2.9596040704053507e+01 2.9599209618400909e+01 1.3957000000000000e-01 1 0 0 0 0 P 440 111 -2.7083879514111775e-01 -2.3035540732610041e-01 -3.1845867929280161e+01 3.1848138737392372e+01 1.3497999999999999e-01 2 0 0 -193 0 V -118 0 0 0 0 0 0 2 0 P 441 -211 -1.0480384567528356e+00 1.7765373058490874e-01 -2.9463582321679564e+01 2.9483081732853371e+01 1.3957000000000000e-01 1 0 0 0 0 P 442 211 -3.5492364773122724e-02 9.0231330851495969e-02 -3.1875087608743695e+00 3.1920359156148730e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 443 211 1.4934089953195229e-01 5.0104255734839476e-01 -3.8444593635630277e+01 3.8448401864605387e+01 1.3957000000000000e-01 1 0 0 0 0 P 444 -211 -9.1132854928109033e-02 -8.0874879067972097e-02 -3.0108802952174276e+00 3.0165751905663134e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 445 211 1.7544263543663519e-01 1.8067765437122232e-01 -2.9115784385973882e+02 2.9115798622976166e+02 1.3957000000000000e-01 1 0 0 0 0 P 446 -211 1.0009514415396646e-01 2.3093795945034751e-01 -6.9677237455742343e+01 6.9677831845055294e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 111 3.3405820498749772e-01 1.2028816196045214e-01 -1.4003413558976345e+02 1.4003465076222699e+02 1.3497999999999999e-01 2 0 0 -194 0 V -121 0 0 0 0 0 0 2 0 P 448 211 -1.6820363105631026e-02 -1.0728064150458368e-01 -9.1383258170963316e+01 9.1383429273509378e+01 1.3957000000000000e-01 1 0 0 0 0 P 449 -211 6.5768071529874073e-01 -4.1233343257974803e-01 -1.0620767611565657e+03 1.0620770539990913e+03 1.3957000000000000e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 450 211 -2.9074009738407375e-01 3.2476451505038234e-01 1.0384410116853273e+01 1.0394491572672875e+01 1.3957000000000000e-01 1 0 0 0 0 P 451 111 1.5453181157223489e-01 -1.0352533608953381e-01 6.9606199056373814e+00 6.9644128716752283e+00 1.3497999999999999e-01 2 0 0 -195 0 V -123 0 0 0 0 0 0 1 0 P 452 310 -2.8830478538157295e-01 -2.4141995299401081e-01 3.6571113566467417e+01 3.6576432660434982e+01 4.9767000000000000e-01 2 0 0 -196 0 V -124 0 0 0 0 0 0 1 0 P 453 130 4.2896106340717316e-01 2.3317535067261880e-01 4.8692920376729873e+01 4.8697911131603334e+01 4.9767000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 454 -3122 2.3493286777187844e-02 -4.4701488007735002e-01 1.0100306094910881e+02 1.0101021451907388e+02 1.1156800000000000e+00 2 0 0 -197 0 P 455 211 -1.6651401668626506e-01 -1.8546530015998042e-01 1.4438334022456024e+01 1.4441159698037675e+01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 1 0 P 456 130 -1.4307122364362197e-02 -2.3719457022782112e-02 1.5633436277779330e+01 1.5641380136889412e+01 4.9767000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 3 0 P 457 211 -2.5807307165606413e-01 2.0069546622920742e-01 1.0505405942418296e+00 1.1090517145421719e+00 1.3957000000000000e-01 1 0 0 0 0 P 458 -211 -6.7569362504071542e-02 5.4943135088852302e-01 7.9633268769293430e-01 9.7982955787047288e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 111 -1.1585426745322482e-02 -8.0538283380883046e-03 4.6278079270708644e-01 4.8227041041553642e-01 1.3497999999999999e-01 2 0 0 -198 0 V -128 0 0 0 0 0 0 2 0 P 460 211 3.3106818012654088e-01 -8.8766943464112502e-01 1.6709061627506177e+01 1.6736480616359813e+01 1.3957000000000000e-01 1 0 0 0 0 P 461 111 3.2219571986383089e-01 -6.2846091578499474e-01 5.5649566566073014e+00 5.6112151442344285e+00 1.3497999999999999e-01 2 0 0 -199 0 V -129 0 -1.0977351908146103e-03 5.9321504537962356e-03 2.3365392604274208e-03 6.4698033789481781e-03 0 2 0 P 462 22 -2.1999120919664641e+00 1.1635563250228333e+01 4.5944852141626331e+00 1.2701780967470803e+01 0 1 0 0 0 0 P 463 22 -3.0162427471928671e-01 1.8827153082011667e+00 7.3005751805204089e-01 2.0417096058203916e+00 0 1 0 0 0 0 V -130 0 -7.6403411871000007e-06 5.1562666125413376e-06 8.8124737381195910e-06 1.8694973200885284e-05 0 2 0 P 464 22 9.8749283509134457e-03 4.7071075973714079e-02 -1.6087113756230051e-02 5.0714846270740500e-02 0 1 0 0 0 0 P 465 22 -8.5314682329470440e-02 3.8412426220490016e-03 1.0310035498015696e-01 1.3387693364764008e-01 0 1 0 0 0 0 V -131 0 -5.5210991680081077e-06 2.2930694252444710e-05 -1.3347270869568013e-05 2.8437882488794655e-05 0 2 0 P 466 22 -9.0633167286369762e-02 3.7010167831398277e-01 -1.9837406123980986e-01 4.2958339292384407e-01 0 1 0 0 0 0 P 467 22 4.1552773950205143e-03 -1.0934419702590919e-02 -1.0686451075701020e-02 1.5843866354376086e-02 0 1 0 0 0 0 V -132 0 -5.4916286714013239e+01 3.9969330308032518e+01 1.0637572539026310e+02 1.2976002272253359e+02 0 2 0 P 468 -211 -2.3745372903608850e-01 4.1729684322395594e-01 7.6859026559446009e-01 9.1691423266540351e-01 1.3957000000000000e-01 1 0 0 0 0 P 469 211 -6.6926951735682283e-01 2.4263708715597290e-01 9.8778018176588112e-01 1.2255545337992948e+00 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -2.6720810436969202e-06 5.4737791611363551e-05 1.9329183678141746e-03 1.9339140680210867e-03 0 2 0 P 470 22 -3.9483075520332304e-02 4.4363128906781076e-02 3.5534113451620279e+00 3.5539075942383689e+00 0 1 0 0 0 0 P 471 22 2.7088879345557957e-02 2.0953296043732211e-01 5.4122483967177297e+00 5.4163706092426365e+00 0 1 0 0 0 0 V -134 0 -1.2942128092242165e-05 -2.6025678166566132e-06 1.0515177927730714e-04 1.0604599246757003e-04 0 2 0 P 472 22 -1.3601762150546221e-01 -7.5022708599433843e-02 9.0399471271717025e-01 9.1724350135947974e-01 0 1 0 0 0 0 P 473 22 -3.2142839530200262e-01 -1.6966357859775766e-02 2.8126477318476439e+00 2.8310053574787073e+00 0 1 0 0 0 0 V -135 0 6.9669557791684315e-05 3.6070869490767016e-05 3.6665814279506670e-03 3.6675470166658616e-03 0 2 0 P 474 22 1.0673266763056305e-01 1.2934843029275542e-01 6.7520736891614987e+00 6.7541559045246871e+00 0 1 0 0 0 0 P 475 22 2.0216898083972065e-01 3.0582985961824748e-02 9.5048552084075233e+00 9.5070542308664514e+00 0 1 0 0 0 0 V -136 0 -1.0188258283687891e-04 5.5254334270982174e-05 1.1322246226552608e-02 1.1322910502574139e-02 0 2 0 P 476 22 9.0041829187814757e-03 -4.3824879500389607e-03 4.5585142859586480e-01 4.5596140896303705e-01 0 1 0 0 0 0 P 477 22 -3.5178735853145654e-01 1.9028527565317560e-01 3.7637759947749018e+01 3.7639884919007564e+01 0 1 0 0 0 0 V -137 0 2.7970043523623075e-05 3.4538584468102288e-06 1.8133037853289850e-02 1.8133078857456561e-02 0 2 0 P 478 22 6.8161066294099279e-02 -3.9756928197049853e-02 6.5425343188972718e+01 6.5425390774065363e+01 0 1 0 0 0 0 P 479 22 7.5274110507826911e-02 5.7468906247732536e-02 2.7563982631916900e+01 2.7564145323218611e+01 0 1 0 0 0 0 V -138 0 -4.2215229434641021e-06 4.1291290428254712e-07 4.4573107712638481e-06 6.2082126087653130e-06 0 2 0 P 480 22 -5.6967540770940128e-01 1.0053936153728175e-02 5.5038934703888298e-01 7.9218658478602355e-01 0 1 0 0 0 0 P 481 22 -1.2005161610877493e-01 5.7409202713692389e-02 1.7786150784662394e-01 2.2213266995204728e-01 0 1 0 0 0 0 V -139 0 4.8328780913742141e-05 -4.0458219901407538e-06 4.5552779939573111e-05 6.9716276929967410e-05 0 2 0 P 482 22 9.3977051399444775e-02 -1.7457340263405969e-02 1.8051182210920799e-01 2.0425709985210441e-01 0 1 0 0 0 0 P 483 22 2.1942301028004882e-01 -8.7788038577842047e-03 1.1488656727319840e-01 2.4783552646331999e-01 0 1 0 0 0 0 V -140 0 -1.4938325379814674e-06 7.6395730489730157e-06 -2.8235021114749536e-05 2.9544171199382589e-05 0 2 0 P 484 22 -6.3952966179265464e-02 2.7191142208210906e-01 -8.4656559370919704e-01 8.9145897706739508e-01 0 1 0 0 0 0 P 485 22 1.1971795797545681e-02 -6.0757690183066912e-03 -1.3593371995581247e-01 1.3659507708847779e-01 0 1 0 0 0 0 V -141 0 2.7881894905855762e-05 4.7807530939290124e-05 -1.7815174539818725e-04 1.8710529278824029e-04 0 2 0 P 486 22 1.6605870692282060e-01 3.9101810566220030e-01 -1.3080755354292519e+00 1.3753298729719572e+00 0 1 0 0 0 0 P 487 22 9.5278872026845901e-02 5.7082872891139926e-02 -3.6174446730813686e-01 3.7841191506116972e-01 0 1 0 0 0 0 V -142 0 0 0 0 0 0 1 0 P 488 310 -9.4116424109606731e-02 2.9360495426403819e-02 2.5800796286231047e+00 2.6294878320530031e+00 4.9767000000000000e-01 2 0 0 -200 0 V -143 0 -8.0060965905114165e-06 -1.1000850426490850e-05 6.0714113907079867e-04 6.0738049878230802e-04 0 2 0 P 489 22 -1.0907283327572552e-01 -4.3298906480417412e-02 3.4038518421705555e+00 3.4058741964008417e+00 0 1 0 0 0 0 P 490 22 3.9066116508149878e-03 -1.0120570459134662e-01 4.5714128660761819e+00 4.5725346853122142e+00 0 1 0 0 0 0 V -144 0 2.4967988604933627e-05 -2.9963804504335872e-05 1.9647855802614885e-04 2.0045112261033924e-04 0 2 0 P 491 22 2.2088064304678232e-01 -2.4432047492137091e-01 1.3288331835896325e+00 1.3690428710407583e+00 0 1 0 0 0 0 P 492 22 2.3110063160086577e-01 -2.9809720907607290e-01 2.2279062279320074e+00 2.2596096141686708e+00 0 1 0 0 0 0 V -145 0 1.2184050402737650e+01 -5.7093615176659767e+01 6.5767175371505641e+02 6.6070559445585900e+02 0 2 0 P 493 -2212 3.6039172908490658e-01 -2.1030667609656502e+00 2.4185540850030890e+01 2.4297602943518612e+01 9.3827000000000005e-01 1 0 0 0 0 P 494 211 1.9847952402055022e-01 -5.1576517122424947e-01 5.9812612380670664e+00 6.0083586457706550e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 9.1673077971751038e+00 -6.5639459717937214e+00 1.6700480044374970e+01 2.3381664878046664e+01 0 2 0 P 495 -211 2.5660380045642483e-02 -5.7914276562336504e-02 1.0266845734595994e-03 1.5327543023928847e-01 1.3957000000000000e-01 1 0 0 0 0 P 496 211 3.5900271792631361e-01 -2.1751094622867331e-01 6.9973067337929440e-01 8.2782652976068238e-01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 1.1028833446475101e-04 5.4267190029776354e-06 -6.5487143597302511e-05 1.2998411859124951e-04 0 2 0 P 497 22 5.3437883664632879e-01 -3.3304302812862910e-02 -3.2425525156746077e-01 6.2594838909482908e-01 0 1 0 0 0 0 P 498 22 1.9696404211150612e-01 6.9289906522527853e-02 -1.1000242720260069e-01 2.3600097250068106e-01 0 1 0 0 0 0 V -148 0 1.2078351966286816e-04 -1.4873301866513929e-05 1.8646129502611833e-01 1.8646137666073623e-01 0 2 0 P 499 22 8.7949656735952536e-02 5.3104569856183045e-02 9.0244540117605823e+01 9.0244598598894697e+01 0 1 0 0 0 0 P 500 22 4.2441648740450970e-02 -6.9160975999442528e-02 1.1104891239262759e+02 1.1104894203962334e+02 0 1 0 0 0 0 V -149 0 -4.4301798226296105e-05 2.4808531206547669e-05 2.9622938968406100e-03 2.9628913113176987e-03 0 2 0 P 501 22 -7.6381097718065264e-03 6.4437963814325983e-02 4.3398159055069625e+00 4.3403009902070888e+00 0 1 0 0 0 0 P 502 22 -1.8519239596083861e-01 4.3545048401263116e-02 8.5540315933840638e+00 8.5561468486331336e+00 0 1 0 0 0 0 V -150 0 -6.4923647477354733e-05 -7.7107144377749220e-06 1.4652658922311658e-03 1.4682779449045346e-03 0 2 0 P 503 22 -9.4201506136332713e-02 -7.2082439900455500e-02 2.0845513602252312e+00 2.0879234122249835e+00 0 1 0 0 0 0 P 504 22 -3.5552480940016847e-02 5.6672092817638853e-02 8.4387455284894552e-01 8.4652227729182006e-01 0 1 0 0 0 0 V -151 0 2.4146472171435437e-04 -1.0822255867887706e-05 3.3571680331639987e-03 3.3663300618615084e-03 0 2 0 P 505 22 4.1453998888745146e-02 3.3969533752209069e-02 6.2516325447538645e-01 6.2745633951173641e-01 0 1 0 0 0 0 P 506 22 5.3665353234118285e-01 -5.9879851324497468e-02 7.4124668796374804e+00 7.4321092465121588e+00 0 1 0 0 0 0 V -152 0 -1.0337568759673421e-05 3.9434758444463797e-05 3.0369566250211598e-04 3.2962180020549995e-04 0 2 0 P 507 22 -6.2102335678483186e-03 -3.3314680293712234e-02 1.9618473412255463e-02 3.9157622796421966e-02 0 1 0 0 0 0 P 508 22 -5.2760964061806916e-03 7.7131622020496726e-02 3.1782533685661618e-01 3.2709336443410414e-01 0 1 0 0 0 0 V -153 0 4.7861868273988794e-06 2.1263828746187743e-05 1.0302875556661936e-03 1.0328281274305854e-03 0 2 0 P 509 22 5.0824963341211588e-02 7.2890456795624350e-02 1.3666662930525884e+00 1.3695520991027008e+00 0 1 0 0 0 0 P 510 22 -4.1467412124068792e-02 -3.1317201563307778e-02 6.4766555779385759e-01 6.4974686465919396e-01 0 1 0 0 0 0 V -154 0 0 0 0 0 0 1 0 P 511 310 -3.3054702746819031e-01 -1.4619386948069341e-01 2.5385190924224150e+00 2.6119702518089514e+00 4.9767000000000000e-01 2 0 0 -201 0 V -155 0 6.4893584725165274e-04 -5.2918940450570823e-04 2.4512578803192020e-02 2.4526997822667453e-02 0 2 0 P 512 22 3.0267211428086560e-01 -2.1716395869671015e-01 1.2551998360248993e+01 1.2557524972279110e+01 0 1 0 0 0 0 P 513 22 8.3352022062655073e-01 -7.0936976210179747e-01 3.0365963812674952e+01 3.0385682807701759e+01 0 1 0 0 0 0 V -156 0 5.2838621614714825e-05 -4.6989888750647634e-05 1.7284578508122378e-03 1.7299126373083223e-03 0 2 0 P 514 22 3.6397230786635376e-01 -4.0773467236406580e-01 1.3393574455571660e+01 1.3404721559990836e+01 0 1 0 0 0 0 P 515 22 9.1245699076539954e-01 -7.2740604304153600e-01 2.8361001549726726e+01 2.8384997907610494e+01 0 1 0 0 0 0 V -157 0 -1.0171139624119049e-05 3.9952537616042768e-05 1.7406731633077092e-03 1.7411728418524901e-03 0 2 0 P 516 22 -9.3684523520981111e-02 2.1283144421934541e-01 1.1789711633281170e+01 1.1792004681542544e+01 0 1 0 0 0 0 P 517 22 -1.2299392962711174e-01 6.3828793570313158e-01 2.5292304974526385e+01 2.5300656709264317e+01 0 1 0 0 0 0 V -158 0 8.8538781831247097e-06 -8.8631114321775784e-07 6.2794313087546167e-04 6.2803017850744951e-04 0 2 0 P 518 22 1.1072069160820175e-01 4.4455316410618756e-02 5.2085642616692125e+00 5.2099306151469147e+00 0 1 0 0 0 0 P 519 22 1.0691953567332912e-01 -6.6242035706093536e-02 1.0227121987560336e+01 1.0227895381887867e+01 0 1 0 0 0 0 V -159 0 -5.2573265276320123e-05 1.1329653827920797e-04 5.3252926775566633e-03 5.3268430776021473e-03 0 2 0 P 520 22 2.0685953815675557e-03 7.7163040856791668e-02 4.7142352318446408e+00 4.7148671492552587e+00 0 1 0 0 0 0 P 521 22 -2.3666403640887734e-01 4.2839527333165273e-01 1.9048591325051948e+01 1.9054877691687935e+01 0 1 0 0 0 0 V -160 0 -6.7514872213166049e-05 -1.5204696038822713e-05 2.0707958979391571e-04 2.2139101041174813e-04 0 2 0 P 522 22 5.2329843928052393e-03 4.9026035862162920e-04 -3.4677615413618999e-03 6.2968127637979179e-03 0 1 0 0 0 0 P 523 22 -2.5394595023930799e-01 -5.6501697878201501e-02 7.6631270600499524e-01 8.0926889900129184e-01 0 1 0 0 0 0 V -161 0 -2.1834052114183655e-04 -2.8112347096755524e-05 2.6801138632948876e-04 3.4743879105874693e-04 0 2 0 P 524 22 -9.4058727497037731e-01 -1.5822650516077805e-01 1.2403304802441693e+00 1.5646596272014963e+00 0 1 0 0 0 0 P 525 22 -4.9624339047335786e-01 -2.6772056604021141e-02 5.2336861029771109e-01 7.2172636632470333e-01 0 1 0 0 0 0 V -162 0 -1.8986471275943005e-05 -5.5376987452399690e-06 3.0927166809253033e-05 3.6977886361359989e-05 0 2 0 P 526 22 -1.4096428127710661e-01 -1.0011287103733975e-01 3.0416032955689137e-01 3.4986714852850498e-01 0 1 0 0 0 0 P 527 22 -4.3611519200411458e-01 -6.8201305338461804e-02 6.3584757780912726e-01 7.7404781567574354e-01 0 1 0 0 0 0 V -163 0 -1.5663869112323120e-04 1.5096027728102494e-04 2.4613878942296710e-03 2.4717811113922922e-03 0 3 0 P 528 22 -1.0701274608447168e-02 7.1894145902142159e-02 9.5791499109481681e-01 9.6066873356918769e-01 0 1 0 0 0 0 P 529 -11 -1.1650908829356864e-01 9.0039285461591914e-02 1.5201326692843631e+00 1.5272475349160120e+00 5.1000000000000004e-04 1 0 0 0 0 P 530 11 -2.0933627376406180e-01 1.6241282832977835e-01 2.8103763643204140e+00 2.8228381412242411e+00 5.1000000000000004e-04 1 0 0 0 0 V -164 0 -2.6630311621281619e-05 1.4013892164687018e-05 4.8942460211129802e-04 4.9056098102525606e-04 0 2 0 P 531 22 -9.6039615711950188e-02 8.3295852568862558e-02 2.9542583375718152e+00 2.9569924132391447e+00 0 1 0 0 0 0 P 532 22 -1.5315494419952216e-01 4.7839890049906915e-02 1.6255584541891357e+00 1.6334581047576699e+00 0 1 0 0 0 0 V -165 0 -4.8750890181535370e-05 3.8436658328836055e-05 8.5834342631971869e-04 8.6061451543932186e-04 0 2 0 P 533 22 -6.6441224807552146e-01 5.6023070119138652e-01 1.2685839950793238e+01 1.2715574596969340e+01 0 1 0 0 0 0 P 534 22 -2.6730853788766712e-01 1.7436580308958996e-01 3.7187099726838171e+00 3.7323800916644063e+00 0 1 0 0 0 0 V -166 0 -6.1664592372716896e-06 3.7720023739674396e-06 1.7422624621210442e-04 1.7438887359966747e-04 0 2 0 P 535 22 -1.2128646747879530e-01 3.6992503299175278e-02 1.9783481351491650e+00 1.9824076766250684e+00 0 1 0 0 0 0 P 536 22 -2.7367781562482241e-01 2.0460582017540740e-01 9.1809155176572315e+00 9.1872723281055606e+00 0 1 0 0 0 0 V -167 0 -4.6136989586215117e-05 -6.0260225677181829e-06 7.2849088762055930e-03 7.2850835992898473e-03 0 2 0 P 537 22 -2.0862844265114804e-02 2.4593038085295369e-02 1.0038248657072312e+01 1.0038300462578672e+01 0 1 0 0 0 0 P 538 22 -2.9827773632220284e-01 -6.6276475997951487e-02 4.0353206640058666e+01 4.0354363435873097e+01 0 1 0 0 0 0 V -168 0 2.5945079742239274e-05 -1.7232900196178811e-07 2.8000831813072709e-03 2.8002885239272659e-03 0 2 0 P 539 22 1.6153025748900159e-02 -4.3060995692386680e-02 1.9834098891924867e+00 1.9839430329869401e+00 0 1 0 0 0 0 P 540 22 1.4422617674345728e-01 4.1995746012080629e-02 1.5325271062719064e+01 1.5326007241892963e+01 0 1 0 0 0 0 V -169 0 -2.3822313817462516e-07 -8.4431609574387265e-07 9.9335590604670600e-04 9.9335936976992418e-04 0 2 0 P 541 22 -4.3938383197137637e-02 2.0293750818235416e-02 3.7221567983093792e+01 3.7221599448947828e+01 0 1 0 0 0 0 P 542 22 3.0931645695790249e-02 -6.6392538323305689e-02 1.7014639357486178e+01 1.7014797007345347e+01 0 1 0 0 0 0 V -170 0 -3.5197200821034011e-04 1.4501557722722340e-04 4.3425436858649441e-02 4.3427156066115927e-02 0 2 0 P 543 22 -6.2482243544356886e-01 2.5748839436656679e-01 8.1267535169701318e+01 8.1270344996854220e+01 0 1 0 0 0 0 P 544 22 -9.1095205724683811e-02 3.7475999276701276e-02 7.0606147892188496e+00 7.0613018621755392e+00 0 1 0 0 0 0 V -171 0 2.1393714031610014e-06 8.7243306967279833e-06 2.6382127861483018e-04 2.6403048939900548e-04 0 2 0 P 545 22 -7.5727388811278155e-03 4.7849006195536559e-02 4.5887449658710650e-01 4.6142461723030409e-01 0 1 0 0 0 0 P 546 22 6.0523805751209012e-02 1.6808480381827329e-01 6.0709024954038862e+00 6.0735305005440097e+00 0 1 0 0 0 0 V -172 0 6.2155134424951304e-05 3.7947522822705499e-05 8.6693422171956749e-04 8.7006400794928536e-04 0 2 0 P 547 22 5.1752752763531984e-01 2.6805112094792671e-01 7.4406129958343259e+00 7.4634045782793015e+00 0 1 0 0 0 0 P 548 22 2.0952022821464367e-01 1.7583274421571812e-01 2.7001836769135985e+00 2.7140021682084532e+00 0 1 0 0 0 0 V -173 0 5.6676561583386480e-05 2.0514846166405648e-05 9.1955830023406624e-04 9.2212854924241612e-04 0 2 0 P 549 22 1.2030446988335565e-01 1.1217005486366431e-01 2.3960686131671656e+00 2.4017077436038829e+00 0 1 0 0 0 0 P 550 22 1.1030516638999095e-01 -2.8697785543338544e-02 1.3454957870852911e+00 1.3503146691388943e+00 0 1 0 0 0 0 V -174 0 4.9108103710887835e-06 4.5886443110740306e-06 1.3805513099136448e-04 1.3827329124101493e-04 0 2 0 P 551 22 1.2713528635782062e-01 1.0687931534623929e-01 4.2620249738591971e+00 4.2652600679074251e+00 0 1 0 0 0 0 P 552 22 4.3378414781610926e-02 5.2448100206187551e-02 5.3154056172214204e-01 5.3588045200407708e-01 0 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 553 130 1.1469832122219348e+00 1.9643137410529107e-01 4.7749749069595406e+00 4.9398599742143618e+00 4.9767000000000000e-01 1 0 0 0 0 V -176 0 -4.6111160391883285e-06 -4.8129863891488084e-06 1.6086253197037536e-04 1.6251357654745082e-04 0 2 0 P 554 22 -9.3119688814702686e-04 4.7879641944514266e-02 1.9388494636704895e-01 1.9971154114906037e-01 0 1 0 0 0 0 P 555 22 -2.7201249069738687e-02 -7.7243700089666106e-02 7.8753830319876350e-01 7.9178474105004315e-01 0 1 0 0 0 0 V -177 0 1.4148017086605296e+02 4.9689284870214458e+01 9.3807460610926182e+02 9.5110528516578654e+02 0 2 0 P 556 111 9.1584652036518654e-01 1.2667898667392014e-01 6.1912239344069206e+00 6.2613333900138928e+00 1.3497999999999999e-01 2 0 0 -202 0 P 557 111 6.0919199999550888e-01 4.0893015920417058e-01 3.9204397745890094e+00 3.9907901967586317e+00 1.3497999999999999e-01 2 0 0 -203 0 V -178 0 0 0 0 0 0 1 0 P 558 130 7.0388998416119938e-02 3.1822660270029911e-02 7.6935401470962483e-01 9.1953701483654471e-01 4.9767000000000000e-01 1 0 0 0 0 V -179 0 2.3004885324136025e-05 1.2845929759391413e-05 3.5739493058698136e-05 4.6547409860919509e-05 0 2 0 P 559 22 1.7228265393237940e-01 7.2031575759397642e-02 1.4378815627674699e-01 2.3567964408881831e-01 0 1 0 0 0 0 P 560 22 5.0024117759612456e-02 5.2104542893462523e-02 2.0157897821845283e-01 2.1412935391337579e-01 0 1 0 0 0 0 V -180 0 5.8430454043020288e-04 -1.2224310817077059e-04 -2.7926698920708692e-04 6.6079685710516273e-04 0 2 0 P 561 22 1.0383566299524123e+00 -2.8096177004081779e-01 -5.2105844096986964e-01 1.1952513987009392e+00 0 1 0 0 0 0 P 562 22 6.0359463411334413e-01 -6.2552976287428702e-02 -2.6370832740541195e-01 6.6165054153669167e-01 0 1 0 0 0 0 V -181 0 1.8935181654579472e-04 9.5015647728701063e-05 -4.1564968910031035e-05 2.1922413666076169e-04 0 2 0 P 563 22 2.9252457947033152e-02 3.1099760162335711e-02 -3.9070858268505669e-02 5.7874289144104453e-02 0 1 0 0 0 0 P 564 22 6.4206977662817499e-01 3.0576585917232618e-01 -1.0829233220810977e-01 7.1935637059097290e-01 0 1 0 0 0 0 V -182 0 -8.5732181709332407e-05 -4.5321438046355599e-05 -1.8395452872559882e-04 2.1063695979627056e-04 0 2 0 P 565 22 -8.3490731614355829e-02 7.1435646580554815e-03 -2.1840642799081528e-01 2.3392969150843468e-01 0 1 0 0 0 0 P 566 22 -2.6158173497699128e-01 -1.8956258286461586e-01 -5.2201148395742714e-01 6.1388514095009050e-01 0 1 0 0 0 0 V -183 0 -3.4945744959792033e-05 2.8525549259991146e-05 -2.3604220212792592e-04 2.4100369205500548e-04 0 2 0 P 567 22 -1.6562437391165763e-01 4.8325410672460399e-02 -8.5745568646485359e-01 8.7464108799049878e-01 0 1 0 0 0 0 P 568 22 -9.3274272448406012e-02 1.6300864726753589e-01 -8.9128387210177085e-01 9.1085610809474005e-01 0 1 0 0 0 0 V -184 0 6.1257857044248070e-05 1.2623819051629314e-05 -2.8623293943908935e-03 2.8634473891897311e-03 0 2 0 P 569 22 5.3439614017116409e-02 -5.0603248673704929e-02 -3.2042195672570162e+00 3.2050646664795033e+00 0 1 0 0 0 0 P 570 22 1.1228038182661575e-01 8.4754284013660086e-02 -4.5391987994550265e+00 4.5413781954133423e+00 0 1 0 0 0 0 V -185 0 0 0 0 0 0 1 0 P 571 130 -1.0906965652077574e-01 5.1390869987627408e-01 -4.4723563574544096e+00 4.5305237179320628e+00 4.9767000000000000e-01 1 0 0 0 0 V -186 0 -1.0803321365414403e-04 -4.4397183514132163e-05 -1.0473391650352788e-03 1.0552734428460244e-03 0 2 0 P 572 22 -1.4693148162835787e-01 -1.2082036358333113e-01 -1.8445434669853558e+00 1.8543265683660652e+00 0 1 0 0 0 0 P 573 22 -1.1752815687668663e-01 1.2138387868179109e-02 -7.1928785496458936e-01 7.2892744935173714e-01 0 1 0 0 0 0 V -187 0 6.1944165847645323e+00 4.8608416873764106e+00 -1.5056436088704066e+02 1.5101545329141371e+02 0 2 0 P 574 -211 1.2324751054953705e-01 2.7727850644216223e-01 -6.5991974280581056e+00 6.6076440429535976e+00 1.3957000000000000e-01 1 0 0 0 0 P 575 211 2.3501670480519582e-01 3.8562234006294894e-03 -2.1089386611831289e+00 2.1265817133440454e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 576 310 -6.9333586383176632e-03 2.6420014049749285e-01 -2.4951144275624408e+01 2.4957506403437534e+01 4.9767000000000000e-01 2 0 0 -204 0 V -189 0 0 0 0 0 0 3 0 P 577 111 -8.2781764726910095e-02 -5.2583534276906763e-02 -1.0729344892319080e+01 1.0730642071534298e+01 1.3497999999999999e-01 2 0 0 -205 0 P 578 111 -2.6295202605402707e-01 -4.1029649101624122e-01 -1.9968791368477223e+01 1.9975192997733881e+01 1.3497999999999999e-01 2 0 0 -206 0 P 579 111 -2.6864240229260788e-01 -1.3529545413770430e-01 -1.4305169547636011e+01 1.4308968131463308e+01 1.3497999999999999e-01 2 0 0 -207 0 V -190 0 -4.7203547386903345e+01 1.1352499662537786e+01 -4.3568357861483288e+04 4.3568843156070230e+04 0 2 0 P 580 2212 -2.2844014341324576e-01 1.5153957067996793e-01 -2.0223595581531191e+02 2.0223831814042140e+02 9.3827000000000005e-01 1 0 0 0 0 P 581 -211 -3.5110312512786387e-02 -8.8155426318138039e-02 -4.1018231930930739e+01 4.1018579139674742e+01 1.3957000000000000e-01 1 0 0 0 0 V -191 0 4.9791489630048127e-05 -5.1105992323979728e-05 -6.7653718387682121e-03 6.7657813906314354e-03 0 2 0 P 582 22 2.5007351404874734e-01 -1.6585260538068017e-01 -2.6083199440790210e+01 2.6084925472716591e+01 0 1 0 0 0 0 P 583 22 6.6506573205022887e-02 -1.5908524302127319e-01 -1.6931822261410872e+01 1.6932700207906457e+01 0 1 0 0 0 0 V -192 0 9.4073729302659715e-06 -5.1846765993035634e-05 -7.3424579209934544e-03 7.3426657209089245e-03 0 2 0 P 584 22 6.3420766290223241e-03 -1.4202683465699392e-01 -2.8641213906264980e+01 2.8641566749535993e+01 0 1 0 0 0 0 P 585 22 7.0232734470104821e-02 -2.7999920188338012e-01 -3.1125453416390780e+01 3.1126792037824263e+01 0 1 0 0 0 0 V -193 0 -2.5224298922050320e-09 -2.1453919294230679e-09 -2.9659328962150810e-07 2.9661443856458596e-07 0 2 0 P 586 22 -2.6403033094252676e-01 -1.7111882630997288e-01 -2.8528920641968021e+01 2.8530655559662215e+01 0 1 0 0 0 0 P 587 22 -6.8084641985910214e-03 -5.9236581016127512e-02 -3.3169472873121406e+00 3.3174831777301592e+00 0 1 0 0 0 0 V -194 0 1.5668177948821127e-04 5.6418201935902639e-05 -6.5679564895341339e-02 6.5679806524306342e-02 0 2 0 P 588 22 1.1791960643567159e-01 -1.4032319035956142e-02 -3.3279542070017698e+01 3.3279753940340917e+01 0 1 0 0 0 0 P 589 22 2.1613859855182616e-01 1.3432048099640828e-01 -1.0675459351974575e+02 1.0675489682188605e+02 0 1 0 0 0 0 V -195 0 1.4271010056863881e-04 -9.5605629510357745e-05 6.4281312478450077e-03 6.4316340513079781e-03 0 2 0 P 590 22 1.2952910441223087e-01 -6.9561909907934899e-02 3.0284703651653748e+00 3.0320371701027629e+00 0 1 0 0 0 0 P 591 22 2.5002707160004006e-02 -3.3963426181598901e-02 3.9321495404720070e+00 3.9323757015724645e+00 0 1 0 0 0 0 V -196 0 -5.9795849623964870e-01 -5.0071701676226188e-01 7.5850312526279595e+01 7.5861344592313444e+01 0 2 0 P 592 111 -1.4302363770692550e-01 -5.2840992952878640e-02 2.8414611249510791e+01 2.8415340926913132e+01 1.3497999999999999e-01 2 0 0 -208 0 P 593 111 -1.4528114767464748e-01 -1.8857896004113217e-01 8.1565023169566278e+00 8.1610917335218520e+00 1.3497999999999999e-01 2 0 0 -209 0 V -197 0 3.7325698528850846e+00 -7.1020895500577538e+01 1.6047179090914988e+04 1.6048315636850233e+04 0 2 0 P 594 -2212 3.0087932950318200e-02 -3.3381579104451420e-01 7.6399665311100435e+01 7.6406161718196017e+01 9.3827000000000005e-01 1 0 0 0 0 P 595 211 -6.5946461731303556e-03 -1.1319908903283583e-01 2.4603395638008379e+01 2.4604052800877863e+01 1.3957000000000000e-01 1 0 0 0 0 V -198 0 -8.4030010824704859e-07 -5.8415049985371705e-07 3.3565854651269068e-05 3.4979451942945549e-05 0 2 0 P 596 22 3.4640823100645177e-03 2.6322801860986601e-02 4.3442468148762525e-01 4.3523521646310787e-01 0 1 0 0 0 0 P 597 22 -1.5049509055387000e-02 -3.4376630199074908e-02 2.8356111219461202e-02 4.7035193952428632e-02 0 1 0 0 0 0 V -199 0 1.0687594304694848e-04 -2.0846755217933071e-04 1.8459586953596446e-03 1.8613031558359174e-03 0 2 0 P 598 22 1.6999369043519949e-01 -4.6602578451492455e-01 3.7580941341354732e+00 3.7906924707293230e+00 0 1 0 0 0 0 P 599 22 1.5220202942863140e-01 -1.6243513127007020e-01 1.8068625224718282e+00 1.8205226735051054e+00 0 1 0 0 0 0 V -200 0 -2.7835540477715419e+00 8.6835562083793760e-01 7.6307521899290620e+01 7.7768801436327095e+01 0 2 0 P 600 -211 7.0058328779216389e-02 -1.3394004418819319e-01 1.5862909062755208e+00 1.5995770469411235e+00 1.3957000000000000e-01 1 0 0 0 0 P 601 211 -1.6417475288882313e-01 1.6330053961459701e-01 9.9378872234758375e-01 1.0299107851118794e+00 1.3957000000000000e-01 1 0 0 0 0 V -201 0 -2.6766233006274200e+00 -1.1838131489431245e+00 2.0555802313240530e+01 2.1150577241873098e+01 0 2 0 P 602 -211 -1.3915699727256270e-01 1.1546416181049238e-01 6.0885649833923161e-01 6.5029428955083590e-01 1.3957000000000000e-01 1 0 0 0 0 P 603 211 -1.9139003019562761e-01 -2.6165803129118581e-01 1.9296625940831833e+00 1.9616759622581152e+00 1.3957000000000000e-01 1 0 0 0 0 V -202 0 1.4148019936599439e+02 4.9689288812298223e+01 9.3807479877202309e+02 9.5110548001026211e+02 0 2 0 P 604 22 1.0213895753112659e-01 -1.5266512032013749e-02 5.0726028585719851e-01 5.1766633137871310e-01 0 1 0 0 0 0 P 605 22 8.1370756283405998e-01 1.4194549870593387e-01 5.6839636485497227e+00 5.7436670586351797e+00 0 1 0 0 0 0 V -203 0 1.4148055642875008e+02 4.9689543685522473e+01 9.3807708738828956e+02 9.5110781097018310e+02 0 2 0 P 606 22 2.5015421407359234e-01 1.5104370134843512e-01 1.9183443035150849e+00 1.9404731890352385e+00 0 1 0 0 0 0 P 607 22 3.5903778592191649e-01 2.5788645785573550e-01 2.0020954710739245e+00 2.0503170077233936e+00 0 1 0 0 0 0 V -204 0 -3.8659524831275072e-01 1.4731463385640637e+01 -1.3912440305068119e+03 1.3915987746517524e+03 0 2 0 P 608 211 -6.4182858836158785e-03 -3.6806227350255474e-02 -1.5260263935692198e+01 1.5260947908457501e+01 1.3957000000000000e-01 1 0 0 0 0 P 609 -211 -5.1507275470178478e-04 3.0100636784774831e-01 -9.6908803399322103e+00 9.6965584949800352e+00 1.3957000000000000e-01 1 0 0 0 0 V -205 0 -1.9209805337695028e-05 -1.2202197679159052e-05 -2.4897829547651774e-03 2.4900839698533987e-03 0 2 0 P 610 22 -7.5512022631812434e-02 -6.0194819363181384e-02 -3.6155851766970781e+00 3.6168745695409115e+00 0 1 0 0 0 0 P 611 22 -7.2697420950976598e-03 7.6112850862746235e-03 -7.1137597156220016e+00 7.1137675019933848e+00 0 1 0 0 0 0 V -206 0 -9.3532677406052704e-05 -1.4594346318964129e-04 -7.1029478239228267e-03 7.1052248990726976e-03 0 2 0 P 612 22 -1.8134358653172224e-02 -1.3456598712883308e-01 -5.9956303210192710e+00 5.9971676486639387e+00 0 1 0 0 0 0 P 613 22 -2.4481766740085484e-01 -2.7573050388740811e-01 -1.3973161047457953e+01 1.3978025349069938e+01 0 1 0 0 0 0 V -207 0 -7.9805308676889116e-05 -4.0192074623718071e-05 -4.2496212871892553e-03 4.2507497283894727e-03 0 2 0 P 614 22 -5.5723222461793155e-02 6.0976439746416597e-03 -1.2023833817521195e+00 1.2036893517420642e+00 0 1 0 0 0 0 P 615 22 -2.1291917983081474e-01 -1.4139309811234596e-01 -1.3102786165883892e+01 1.3105278779721242e+01 0 1 0 0 0 0 V -208 0 -5.9801502603748991e-01 -5.0073790205575075e-01 7.5861543342775548e+01 7.5872575697212895e+01 0 2 0 P 616 22 1.9520250405945683e-02 1.7483531817211521e-02 4.2357036115255307e+00 4.2357846733221862e+00 0 1 0 0 0 0 P 617 22 -1.6254388811287118e-01 -7.0324524770090158e-02 2.4178907637985258e+01 2.4179556253590945e+01 0 1 0 0 0 0 V -209 0 -5.9797415696028167e-01 -5.0073734481209986e-01 7.5851191764268634e+01 7.5862224325023050e+01 0 2 0 P 618 22 -2.2802276028972130e-02 -5.5601038052619227e-02 4.2328806323090964e+00 4.2333072020114590e+00 0 1 0 0 0 0 P 619 22 -1.2247887164567534e-01 -1.3297792198851294e-01 3.9236216846475318e+00 3.9277845315103930e+00 0 1 0 0 0 0 E 35 57 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 330 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 1.1457432486865449e+00 9.0644063220058568e-01 8.4262098825871817e+02 8.4262225475969387e+02 0 3 0 0 -3 0 P 98 2101 -1.1457432486865449e+00 -9.0644063220058568e-01 2.2775176361632880e+03 2.2775181784170836e+03 5.7933000000000001e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -5.9356034251877354e-01 1.7630109893918902e+00 -5.0052334518607815e+01 5.0086891622374942e+01 0 3 0 0 -4 0 P 15 1 5.3605093610476029e-01 -7.2508703868795199e-01 -3.1512204524432502e+01 3.1526830411721321e+01 3.3000000000000002e-01 2 0 0 -11 0 P 100 2203 5.7509406414013226e-02 -1.0379239507039382e+00 -3.3914690631475837e+03 3.3914693101708258e+03 7.7132999999999996e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 7 0 P 5 2 -2.0882912461271355e+00 -2.9098200964785298e-01 6.5799212796227096e+02 6.5799550613296458e+02 0 3 0 0 -5 0 P 92 21 -2.1418563558732368e-01 9.5916549217989666e-01 7.9285463580146454e+00 7.9892253240891851e+00 0 2 0 0 -13 0 P 93 21 1.8201905094610875e+00 -1.6226253439645361e-02 1.3889587185805286e+01 1.4008354256447090e+01 0 2 0 0 -13 0 P 94 21 -7.5276658963544785e-01 7.0057150206257413e-01 7.0639692100775520e+01 7.0647176575290970e+01 0 2 0 0 -13 0 P 95 21 1.2653498945081707e+00 -4.2493689112684052e-03 5.3130284790337932e+01 5.3145350599230056e+01 0 2 0 0 -13 0 P 96 21 1.0954652322238602e-01 6.1933281858675182e-01 1.2073242266755141e+01 1.2089613410390406e+01 0 2 0 0 -13 0 P 97 21 9.5493973156281109e-01 -1.0560844426523215e+00 2.2605671516793247e+01 2.2650465976798070e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 9 0 P 6 -3 -1.5864359240056083e+00 7.9149753894906374e-02 -3.0742346125343389e+00 3.4603413238322629e+00 0 3 0 0 -5 0 P 13 -3 3.8845150346555379e-01 5.8402253321012498e-01 4.5318915511295459e-02 8.6257213840057489e-01 5.0000000000000000e-01 2 0 0 -11 0 P 14 21 3.8714170413336130e-01 5.3866649539964651e-01 -4.3945546465881176e+00 4.4443391898227835e+00 0 2 0 0 -11 0 P 16 3 -1.8542122949263720e-01 -4.8944303851346271e-01 -1.1647775601103580e+00 1.3713651172581613e+00 5.0000000000000000e-01 2 0 0 -13 0 P 17 21 3.9625010020160562e-01 -1.1260519607822963e+00 4.8273248191670493e-01 1.2876481698775091e+00 0 2 0 0 -13 0 P 18 21 7.1304801579904731e-01 -6.7535008442922506e-01 8.5529297194277776e-01 1.3023291739142715e+00 0 2 0 0 -13 0 P 19 21 -2.5674415432047221e-01 3.6383672500185477e-01 1.1281718299373533e-01 4.5937178844205451e-01 0 2 0 0 -13 0 P 20 21 6.1455828552963787e-01 7.0640266302615384e-02 1.0951816986494438e+00 1.2578135341111232e+00 0 2 0 0 -13 0 P 99 3 -1.0134485825472606e+00 2.4124531933301694e+00 -3.9648274872423166e+01 3.9737673671198948e+01 5.0000000000000000e-01 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -3.3988032606977865e+00 2.7649939189234725e+00 1.7569224803505304e+02 1.7574687216160410e+02 0 3 0 0 -6 0 P 8 24 -2.7592390943495765e-01 -2.9768261746764182e+00 4.7922564531468362e+02 4.8570897529519272e+02 7.9038294053915138e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -3.3988032606977865e+00 2.7649939189234725e+00 1.7569224803505304e+02 1.7574687216160410e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.7592390943495765e-01 -2.9768261746764182e+00 4.7922564531468362e+02 4.8570897529519272e+02 7.9038294053915138e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 -11 2.9802391122356415e+01 -1.9741316778625713e+01 1.3116498070990366e+02 1.3594908704972408e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 12 -3.0078315031791366e+01 1.6764490603949287e+01 3.4806066460478007e+02 3.4975988824546874e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 2 1 0 P 127 2 -1.9389653638207732e-01 4.7644831700402240e-01 -5.9870076357507767e+00 6.0090647605209782e+00 0 2 0 0 -9 0 P 128 -2 1.9389653638207732e-01 -4.7644831700402240e-01 -1.6520280006569628e+00 1.7302587611544042e+00 0 2 0 0 -9 0 P 142 91 0 0 -7.6390356364077396e+00 7.7393235216753826e+00 1.2418788664159024e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 143 111 -1.2366221785384628e-01 -3.7358057854699575e-02 -4.4196683653895024e+00 4.4236157189606704e+00 1.3497999999999999e-01 2 0 0 -27 0 P 144 223 1.2366221785384628e-01 3.7358057854699575e-02 -3.2193672710182391e+00 3.3157078027147144e+00 7.8288226360584379e-01 2 0 0 -28 0 V -11 0 0 0 0 0 0 1 0 P 145 92 1.3116441437036754e+00 3.9760198992181950e-01 -3.5861440255509322e+01 3.6833741739944678e+01 8.2947655580719299e+00 2 0 0 -12 0 V -12 0 0 0 0 0 0 5 0 P 146 313 8.2814993927081260e-01 7.5644240117228223e-01 -1.6351779898291030e+00 2.1796467699105535e+00 9.0499478172773196e-01 2 0 0 -29 0 P 147 223 -7.9742538803581578e-02 -3.5374613514198350e-01 -5.8514349166730142e+00 5.9155877631521321e+00 7.8955227747906864e-01 2 0 0 -30 0 P 148 213 6.9532886072380604e-02 -2.1829691202476412e-02 -1.0466473224788750e+00 1.2844466561322114e+00 7.4095967308178812e-01 2 0 0 -31 0 P 149 223 4.3218299323287057e-01 6.8158984176277559e-01 -5.4243161767607377e+00 5.5395779522621895e+00 7.8254140573339337e-01 2 0 0 -32 0 P 150 -211 6.1520863931193423e-02 -6.6485442666877859e-01 -2.1903863849767603e+01 2.1914482598487602e+01 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 71 1 0 P 21 21 -3.3183685995950691e+00 -1.2075475965877251e+00 -1.7266437319006322e+01 1.7623836104888674e+01 0 2 0 0 -13 0 P 22 21 -1.9659918576866777e+00 -7.0734051963849665e-01 -9.8783597904914675e+00 1.0096902829363636e+01 0 2 0 0 -13 0 P 23 21 -1.9448437265270486e+00 5.1553026431494031e-01 -1.1872753019880786e+01 1.2042028601740014e+01 0 2 0 0 -13 0 P 24 21 -1.7008794222425367e+00 1.5805476526510285e+00 -3.3343539145630018e+01 3.3424283454510586e+01 0 2 0 0 -13 0 P 25 21 -9.3451873646930184e-01 6.8085800323442774e-02 -3.3504337021070469e+01 3.3517436658648151e+01 0 2 0 0 -13 0 P 26 21 -5.8927984110037572e+00 -2.8754749103106825e-01 -2.0583421643037917e+02 2.0591875196343946e+02 0 2 0 0 -13 0 P 27 21 -2.6663939230066025e+00 -1.0587797743852616e+00 -9.5295979402365575e+01 9.5339154398491374e+01 0 2 0 0 -13 0 P 28 21 -1.8848301923027955e+00 -9.7483558962786965e-01 -8.4801594659458246e+01 8.4828140060169176e+01 0 2 0 0 -13 0 P 29 21 -1.1729985231503797e+00 -1.0120699657575507e+00 -4.8048225544444882e+01 4.8073196160862317e+01 0 2 0 0 -13 0 P 30 21 -6.3652716651486174e-01 -4.3204897576934892e-01 -1.2444559003979474e+01 1.2468315120925578e+01 0 2 0 0 -13 0 P 31 21 -1.8246797742496075e+00 -1.3184936668500842e+00 -6.3262063671315865e+01 6.3302105666254910e+01 0 2 0 0 -13 0 P 32 21 -2.5339838890501798e+00 -4.2918936832473592e-01 -1.2871483833571568e+02 1.2874049435066371e+02 0 2 0 0 -13 0 P 33 21 -1.1580326050418279e+00 9.7672467107220506e-01 -8.6684530555485495e+01 8.6697767377380131e+01 0 2 0 0 -13 0 P 34 21 -5.4582043765784782e-01 1.2181195619924374e+00 -7.4573461200301949e+01 7.4585406418483871e+01 0 2 0 0 -13 0 P 35 21 -7.9091464732921746e-01 -4.8975666245263803e+00 -6.4470237706280318e+02 6.4472146442882593e+02 0 2 0 0 -13 0 P 36 21 1.8848301923027955e+00 9.7483558962786965e-01 -1.2746247208272532e+03 1.2746264871848668e+03 0 2 0 0 -13 0 P 37 21 6.3652716651486174e-01 4.3204897576934892e-01 -1.0802211257279838e+02 1.0802485194547364e+02 0 2 0 0 -13 0 P 38 21 1.5950711521926930e-01 3.3712481560418733e-01 -3.9522121963278252e+01 3.9523881643145110e+01 0 2 0 0 -13 0 P 39 21 2.6201443231542294e+00 -1.6948012774479124e+00 -1.1972546132040844e+02 1.1976612040150927e+02 0 2 0 0 -13 0 P 40 21 9.4307992246510527e-02 -1.1136123616620528e+00 -3.3789768068340891e+01 3.3808245334558812e+01 0 2 0 0 -13 0 P 41 21 1.1580326050418279e+00 -9.7672467107220506e-01 -1.7626020104878059e+01 1.7691003796703754e+01 0 2 0 0 -13 0 P 42 21 3.2540216709122838e-01 -1.1617501397725147e+00 -1.1792108727479963e+01 1.1853665179948278e+01 0 2 0 0 -13 0 P 43 21 1.2251449723124612e+00 -4.0466052543042974e-01 -9.1310288502001509e+00 9.2217361818266959e+00 0 2 0 0 -13 0 P 44 21 2.2621892147350784e+00 -8.6837667765114157e-01 -1.4087853959883017e+01 1.4294726555361027e+01 0 2 0 0 -13 0 P 45 21 1.9659918576866777e+00 7.0734051963849665e-01 -1.7963265427322202e+01 1.8084367818855096e+01 0 2 0 0 -13 0 P 46 21 1.2678582191293668e+00 6.4898058324335361e-01 -1.7515889516394957e+01 1.7573702677916099e+01 0 2 0 0 -13 0 P 47 21 1.1729985231503797e+00 1.0120699657575507e+00 -2.0854108144951294e+01 2.0911576642430035e+01 0 2 0 0 -13 0 P 48 21 8.0851304954209025e-01 1.3013402703440349e+00 -1.0241046633025260e+01 1.0355009222125151e+01 0 2 0 0 -13 0 P 49 21 1.8246797742496075e+00 1.3184936668500842e+00 -1.3675959900753304e+01 1.3860005809345525e+01 0 2 0 0 -13 0 P 50 21 -3.2540216709122838e-01 1.1617501397725147e+00 -2.1896314308474940e+00 2.5000071521026435e+00 0 2 0 0 -13 0 P 51 21 -3.3572016269818838e-01 2.3316248251937259e+00 -2.4785014731997137e+00 3.4193788771873352e+00 0 2 0 0 -13 0 P 52 21 -2.6201443231542294e+00 1.6948012774479124e+00 -3.5244882473365302e+00 4.7073904713556258e+00 0 2 0 0 -13 0 P 53 21 -1.2177029110120512e+00 7.8083759005988618e-01 -3.6156486037784266e+00 3.8942807484235957e+00 0 2 0 0 -13 0 P 54 21 -2.5566722107631135e+00 1.8049852181661146e+00 -8.9019029477889369e+00 9.4360171959858086e+00 0 2 0 0 -13 0 P 55 21 7.9091464732921746e-01 4.8975666245263803e+00 -1.9089882306078419e+01 1.9723978079509227e+01 0 2 0 0 -13 0 P 56 21 3.3183685995950691e+00 1.2075475965877251e+00 -6.5986415564944059e+00 7.4841039378070002e+00 0 2 0 0 -13 0 P 57 21 7.7074304599541998e-01 2.1759647201517643e-01 -1.0121136107454762e+00 1.2906459733947164e+00 0 2 0 0 -13 0 P 58 21 2.1490842629449789e+00 4.7729566387312139e-01 -3.4302357881020384e+00 4.0758915444312134e+00 0 2 0 0 -13 0 P 59 21 1.3888808700489605e+00 -1.8015005159755229e+00 -5.6362869164835665e+00 6.0780033222409369e+00 0 2 0 0 -13 0 P 60 21 5.4582043765784782e-01 -1.2181195619924374e+00 -3.3190261274635016e+00 3.5773830731777969e+00 0 2 0 0 -13 0 P 61 21 -4.6083796482017009e-01 -1.0784543190309790e+00 -2.8394035170411782e+00 3.0720754679275020e+00 0 2 0 0 -13 0 P 62 21 3.6587072809548933e-02 -6.5825150571899327e-01 -8.0166305686310513e-01 1.0379293402815006e+00 0 2 0 0 -13 0 P 63 21 -1.2048050838964481e+00 -6.3668731429715839e+00 -6.0571001871359353e+00 8.8700107996483162e+00 0 2 0 0 -13 0 P 64 21 -4.5408951244211178e+00 -1.8448570571099698e+00 2.9391310398962007e+00 5.7150430761142355e+00 0 2 0 0 -13 0 P 65 21 -1.0424698911387533e+00 -9.1016118773228805e-01 9.5605557397551821e-01 1.6820163858044759e+00 0 2 0 0 -13 0 P 66 21 -8.0851304954209025e-01 -1.3013402703440349e+00 1.7747692077864232e+00 2.3445651177576163e+00 0 2 0 0 -13 0 P 67 21 -1.5883578802653786e-01 -8.8614035814229331e-01 5.9672162996289468e-01 1.0800695558861646e+00 0 2 0 0 -13 0 P 68 21 3.3572016269818838e-01 -2.3316248251937259e+00 2.3204637255333207e+00 3.3066197626303739e+00 0 2 0 0 -13 0 P 69 21 1.9448437265270486e+00 -5.1553026431494031e-01 -3.1240815598606603e-02 2.0122536029525491e+00 0 2 0 0 -13 0 P 70 21 9.3451873646930184e-01 -6.8085800323442774e-02 -3.1963864375933426e-01 9.9001505423007119e-01 0 2 0 0 -13 0 P 71 21 5.8927984110037572e+00 2.8754749103106825e-01 -3.2184828493717638e-01 5.9085821472535756e+00 0 2 0 0 -13 0 P 72 21 2.6663939230066025e+00 1.0587797743852616e+00 6.0023350879386728e-01 2.9310324850422322e+00 0 2 0 0 -13 0 P 73 21 1.2048050838964481e+00 6.3668731429715839e+00 3.6308118662586586e+00 7.4277468802484288e+00 0 2 0 0 -13 0 P 74 21 2.4950778885207350e+00 2.0442642568427165e+00 2.9418722198225673e+00 4.3656662927156438e+00 0 2 0 0 -13 0 P 75 21 6.4386928458969868e+00 3.6460127085164582e+00 1.3629187625963548e+01 1.5508221354436055e+01 0 2 0 0 -13 0 P 76 21 4.5408951244211178e+00 1.8448570571099698e+00 1.3198610838191740e+01 1.4079295229172248e+01 0 2 0 0 -13 0 P 77 21 -7.2548615384822202e-01 4.8518877977599839e+00 1.3295986095392259e+01 1.4172169615494376e+01 0 2 0 0 -13 0 P 78 21 -3.4695971609418541e-01 1.4041581471995901e+00 6.9842096031743486e+00 7.1324066715248318e+00 0 2 0 0 -13 0 P 79 21 1.0424698911387533e+00 9.1016118773228805e-01 3.6676571983114030e+01 3.6702671146581828e+01 0 2 0 0 -13 0 P 80 21 2.0869029969446848e+00 1.7770269560446772e+00 4.9107514041025304e+01 4.9183949863859688e+01 0 2 0 0 -13 0 P 81 21 4.4181370056148106e+00 2.5013839595592433e+00 7.9969020512043073e+01 8.0130026194736075e+01 0 2 0 0 -13 0 P 82 21 2.5566722107631135e+00 -1.8049852181661146e+00 3.6241055942097091e+01 3.6375935455040839e+01 0 2 0 0 -13 0 P 83 21 1.7008794222425367e+00 -1.5805476526510285e+00 3.4987262750959843e+01 3.5064222171552743e+01 0 2 0 0 -13 0 P 84 21 9.5601090376966080e-01 -2.0631999840416100e+00 3.5257492440186560e+01 3.5330744744373675e+01 0 2 0 0 -13 0 P 85 21 7.2548615384822202e-01 -4.8518877977599839e+00 8.9836543550992118e+01 8.9970393477803469e+01 0 2 0 0 -13 0 P 86 21 -1.5950711521926930e-01 -3.3712481560418733e-01 7.0489324536318412e+00 7.0587919927538554e+00 0 2 0 0 -13 0 P 87 21 -1.1940227983801037e+00 -8.3544056434702119e-01 3.6559476084534651e+01 3.6588508345589453e+01 0 2 0 0 -13 0 P 88 21 -6.4386928458969868e+00 -3.6460127085164582e+00 2.2292155413195016e+02 2.2304432176327299e+02 0 2 0 0 -13 0 P 89 21 -2.9557956993642331e-01 -1.0956648433333938e+00 1.1148962590454985e+02 1.1149540139874628e+02 0 2 0 0 -13 0 P 90 21 -4.4181370056148106e+00 -2.5013839595592433e+00 5.2192817841937267e+02 5.2195287170823963e+02 0 2 0 0 -13 0 P 91 21 -7.7074304599541998e-01 -2.1759647201517643e-01 6.7572586654314748e+01 6.7577332443819202e+01 0 2 0 0 -13 0 P 151 92 1.1073143958704655e+01 -5.6622268031899425e+00 5.2266378326773565e+02 7.2229995262527536e+03 7.2040537234655785e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 144 0 P 152 333 2.6589428522528724e-01 -8.7479901500482726e-01 -7.5445238570287765e-01 1.5614507960726620e+00 1.0163449703197749e+00 2 0 0 -33 0 P 153 -311 1.1178817906402570e-01 -2.5732642644571818e-01 4.8524550991921828e-01 7.4956795590695879e-01 4.9767000000000000e-01 2 0 0 -34 0 P 154 2112 1.3560303846886619e-02 -4.2752195032196882e-01 2.7444486849796990e-01 1.0682090949773775e+00 9.3957000000000002e-01 1 0 0 0 0 P 155 -2112 4.7117514819921819e-01 -5.8857079448744576e-01 -2.5911641753210174e-01 1.2322153639436610e+00 9.3957000000000002e-01 1 0 0 0 0 P 156 -213 -1.8845651082593015e-01 3.1692187235708430e-01 2.1505060313208024e-01 8.2435060484577638e-01 7.0523175492253731e-01 2 0 0 -35 0 P 157 113 3.3579429619632097e-02 -3.6299557710497110e-01 -2.7587800035177457e-01 7.0233370419093866e-01 5.3317032351127747e-01 2 0 0 -36 0 P 158 213 2.2343786333603421e-01 6.2648911638752458e-01 9.5523483736033199e-02 9.8491949936539247e-01 7.2008929485232143e-01 2 0 0 -37 0 P 159 221 -4.5429006633382368e-01 -9.6009719395434945e-01 -4.1069402483223287e+00 4.2772451171283699e+00 5.4744999999999999e-01 2 0 0 -38 0 P 160 313 -2.5972089110624244e+00 3.9257019165331392e-01 -1.1243438141327120e+01 1.1579284134499296e+01 8.7482246572710276e-01 2 0 0 -39 0 P 161 -313 -8.2850175552591865e-01 -2.4997976201957270e-01 -1.4274924772335556e+01 1.4327802254775547e+01 8.7380498727291256e-01 2 0 0 -40 0 P 162 -211 -2.3210558815425197e+00 -6.5178811339537146e-01 -1.1431769688590014e+01 1.1684047507087264e+01 1.3957000000000000e-01 1 0 0 0 0 P 163 223 -1.0436896996741980e+00 6.9452321033749076e-01 -1.1683044903661544e+01 1.1776051510380992e+01 7.8115317017272745e-01 2 0 0 -41 0 P 164 213 -7.0393769433147646e-01 -1.9270560007859483e-02 -1.2945541586957676e+01 1.2994082754784193e+01 8.7363609503361084e-01 2 0 0 -42 0 P 165 -211 -2.2572386134339828e+00 4.2953953969358910e-01 -5.2271285632922478e+01 5.2321949618468977e+01 1.3957000000000000e-01 1 0 0 0 0 P 166 211 -2.6717302841479573e+00 -2.4782148983417024e-01 -1.2098344175997902e+02 1.2101327290044341e+02 1.3957000000000000e-01 1 0 0 0 0 P 167 -213 -1.2381527949981910e+00 -1.0755474324643357e+00 -5.4158430746800192e+01 5.4188498123688959e+01 7.5358033536381874e-01 2 0 0 -43 0 P 168 213 -5.2821511503259693e+00 -4.9050609021855568e-01 -1.7130401132266482e+02 1.7138777919540422e+02 7.5156190532325617e-01 2 0 0 -44 0 P 169 -213 -2.7969428127465230e+00 -2.0962282067242888e+00 -1.0819883232945122e+02 1.0825760660419949e+02 7.1063944478014984e-01 2 0 0 -45 0 P 170 2212 -2.6784218866943408e+00 -5.5315222478463100e-01 -1.2344970127579934e+02 1.2348355767819416e+02 9.3827000000000005e-01 1 0 0 0 0 P 171 -2212 -1.2488485953824160e+00 -7.4092457032258183e-02 -5.1753542512942964e+01 5.1777163168121447e+01 9.3827000000000005e-01 1 0 0 0 0 P 172 221 -8.7825609750663602e-01 3.8441952707459920e-01 -5.1987163560266012e+01 5.1998884494669248e+01 5.4744999999999999e-01 2 0 0 -46 0 P 173 213 -3.1845132113616753e-01 -1.0554048946778864e-01 -9.7373910816697446e+01 9.7377702771542786e+01 7.9116324859995668e-01 2 0 0 -47 0 P 174 -211 -1.2316100751909814e-03 -2.0493875658022662e-02 -1.4629616637813381e+00 1.4697476417387818e+00 1.3957000000000000e-01 1 0 0 0 0 P 175 211 -3.6289548635629471e-02 -6.0322016858217420e-01 -1.0136666833710514e+02 1.0136856574428138e+02 1.3957000000000000e-01 1 0 0 0 0 P 176 223 -7.4878101735800917e-01 2.6522417035684566e-03 -9.5472555804801971e+01 9.5478739373888587e+01 7.8745189032285212e-01 2 0 0 -48 0 P 177 221 -3.2857562711841332e-01 -1.9373429328070790e-01 -8.9721946560384282e+01 8.9724427504476623e+01 5.4744999999999999e-01 2 0 0 -49 0 P 178 113 2.0413960139802678e-02 -2.1703461677178417e+00 -3.4605816333617537e+02 3.4606626116577871e+02 9.4545567658676521e-01 2 0 0 -50 0 P 179 223 9.0728827188972738e-01 -3.9438939588410565e-01 -3.5029791826944171e+02 3.5030018572288208e+02 7.8093442576578176e-01 2 0 0 -51 0 P 180 -213 -3.3924830566144487e-01 3.7109449062018179e-01 -2.2036108992842134e+02 2.2036352629059562e+02 9.0607077558669635e-01 2 0 0 -52 0 P 181 213 1.2631546540020151e+00 2.4632917188287898e-01 -6.2192272772268836e+02 6.2192491484370521e+02 1.0316043718446288e+00 2 0 0 -53 0 P 182 223 5.9192024773313456e-01 3.9499998446340764e-02 -1.3009764644907145e+02 1.3010145626948281e+02 7.9961367109898651e-01 2 0 0 -54 0 P 183 -213 2.8084925061110622e-01 1.2208950003077637e-01 -1.1924411197844870e+02 1.1924623895941666e+02 6.4302588587006448e-01 2 0 0 -55 0 P 184 111 8.4604729508974408e-01 -6.4887209839042559e-02 -1.9336462675196945e+01 1.9355542223487671e+01 1.3497999999999999e-01 2 0 0 -56 0 P 185 323 3.8715630788581062e-01 -8.2053073405380339e-01 -7.3853860869897829e+01 7.3865230029339813e+01 9.2535463731212986e-01 2 0 0 -57 0 P 186 -321 1.6898676621453503e+00 -1.5483680363063146e+00 -4.6136771705586185e+01 4.6196303322504036e+01 4.9359999999999998e-01 1 0 0 0 0 P 187 213 5.4840854012048890e-01 -5.7710069446517309e-01 -1.5798286988871189e+01 1.5845658237751501e+01 9.3016991268052274e-01 2 0 0 -58 0 P 188 -213 8.4288404332912692e-01 -5.9621194261603738e-01 -1.9787794597454997e+01 1.9828648247434955e+01 7.4333982700998902e-01 2 0 0 -59 0 P 189 213 1.0472845346782331e+00 -4.7073104668456871e-02 -9.9367479929498774e+00 1.0052759717837294e+01 1.1045345152684942e+00 2 0 0 -60 0 P 190 221 1.1510177248542135e+00 -8.2824588997461024e-01 -1.3541911182103169e+01 1.3626954649651521e+01 5.4744999999999999e-01 2 0 0 -61 0 P 191 -213 1.4919513737854260e+00 -5.6717595797908082e-01 -1.4795143309941318e+01 1.4898901140502121e+01 7.3033017444467341e-01 2 0 0 -62 0 P 192 223 1.2508539541579977e+00 7.9707771132712446e-01 -1.6250324918334183e+01 1.6336772737950774e+01 7.8556670467355005e-01 2 0 0 -63 0 P 193 113 1.4530740369377388e+00 8.4863750290938322e-01 -1.5327049674031072e+01 1.5423612837743981e+01 3.7117582119273757e-01 2 0 0 -64 0 P 194 113 2.3231157375918277e+00 9.0837294596265006e-01 -1.7757709933213480e+01 1.7943339431505382e+01 6.3652159654118667e-01 2 0 0 -65 0 P 195 211 5.0840827282302860e-02 5.3377524049295599e-01 -5.4018101527417981e+00 5.4301504130407316e+00 1.3957000000000000e-01 1 0 0 0 0 P 196 113 4.5279063140978078e-02 1.0079469860489387e+00 -7.5705986949514026e+00 7.6777551334614138e+00 7.8482607573216090e-01 2 0 0 -66 0 P 197 311 1.8064043563899981e-01 5.2651182804209745e-02 -1.6823284103714333e+00 1.7644566935125956e+00 4.9767000000000000e-01 2 0 0 -67 0 P 198 3212 8.4373817341814816e-01 1.1840255328691711e+00 -5.4836896927679089e+00 5.7971405638330120e+00 1.1925500000000000e+00 2 0 0 -68 0 P 199 -2112 -1.3779781075230420e+00 1.2244695526934144e+00 -3.0890023889017995e+00 3.7179129755586020e+00 9.3957000000000002e-01 1 0 0 0 0 P 200 311 6.0225755872477182e-01 1.1242131948421070e+00 -1.9072827040737363e+00 2.3477589775479601e+00 4.9767000000000000e-01 2 0 0 -69 0 P 201 -323 -1.5426065431066163e+00 1.6335712578316501e+00 -5.2131542998281430e+00 5.7484081679301307e+00 9.0500204975467768e-01 2 0 0 -70 0 P 202 323 -2.3558938068612574e+00 2.1821431123660262e+00 -8.5209442309109154e+00 9.1663992683021487e+00 1.0509047376344145e+00 2 0 0 -71 0 P 203 -313 -1.4086066621719349e+00 4.8646155883824399e-01 -2.9564939402979529e+00 3.4425308717580716e+00 9.4305079770199884e-01 2 0 0 -72 0 P 204 223 -3.3074834117571172e-01 1.2351032315512851e+00 -4.4123692649368200e+00 4.6563215517536687e+00 7.5990355005598309e-01 2 0 0 -73 0 P 205 223 3.5450884094449503e-01 1.2907691416651423e+00 -5.5391339161472581e+00 5.7522004990991018e+00 7.8360994470484480e-01 2 0 0 -74 0 P 206 111 5.5736534559336137e-01 2.3381441733461861e+00 -6.8571985598626712e+00 7.2675281900797470e+00 1.3497999999999999e-01 2 0 0 -75 0 P 207 223 1.0314573198625046e+00 1.6706039720579000e-01 -3.7469634339925384e+00 3.9648195563023054e+00 7.6697181131222525e-01 2 0 0 -76 0 P 208 -211 8.8422242870867629e-01 5.1925003139756365e-01 -1.4883923615440888e+00 1.8128048723844028e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 213 6.3010960693969620e-01 3.6992056861866118e-01 -1.9419102908910253e+00 2.1923697893314982e+00 7.0823045081394198e-01 2 0 0 -77 0 P 210 221 1.7154628987660078e-01 1.4072894309769504e-01 -8.2589144473603604e-01 1.0153969401096290e+00 5.4744999999999999e-01 2 0 0 -78 0 P 211 331 2.4018954087310895e+00 -8.2834524652223906e-01 -6.7210018496616497e+00 7.2487745818964839e+00 9.5791945072315432e-01 2 0 0 -79 0 P 212 313 1.0255058980005847e+00 6.1498924893251661e-01 -2.3027774477296017e+00 2.7566196485069794e+00 9.3074904760956734e-01 2 0 0 -80 0 P 213 333 7.2423516190474313e-01 -1.4381391787158586e+00 -3.3592453709174466e+00 3.8633813630347356e+00 1.0239263777816869e+00 2 0 0 -81 0 P 214 -313 -2.2875937574469515e-01 -1.9187249465682699e+00 -3.3543596526175050e+00 3.9791272158840507e+00 9.2080858407511645e-01 2 0 0 -82 0 P 215 -211 -1.0332780670808653e-01 -2.1925465871842870e-01 -3.0403017280913136e-01 4.1311423588057161e-01 1.3957000000000000e-01 1 0 0 0 0 P 216 113 9.7084801091688155e-02 -1.1799045388913052e+00 -1.2326163537673820e+00 1.8528581337997978e+00 7.1563958031536878e-01 2 0 0 -83 0 P 217 331 5.8156991527046509e-01 -9.5198398915081028e-01 -1.9354566923852341e+00 2.4305813836153329e+00 9.5772447620985990e-01 2 0 0 -84 0 P 218 213 -8.4272286085179937e-01 -1.1246905397069339e-01 -8.1050502005176739e-01 1.4134222610922456e+00 7.8613802370747587e-01 2 0 0 -85 0 P 219 -211 -1.0038175611910383e+00 -1.9796188017871899e+00 -9.5316839736726344e-01 2.4196177539405990e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 223 3.4730267153298279e-02 -7.9962038774806699e-01 -1.2730525689224870e+00 1.6950670423745644e+00 7.8229820333770528e-01 2 0 0 -86 0 P 221 211 -1.0019179718856669e-01 -9.5750766737047532e-01 -6.5765226630119500e-01 1.1742425718599294e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 -8.5181335958715010e-01 8.3172876882634555e-02 3.8190747387273266e-01 9.4754252174766984e-01 1.3957000000000000e-01 1 0 0 0 0 P 223 213 -7.7327901999107074e-01 -1.5241167850459567e+00 6.4177480338554360e-02 1.8782184173516041e+00 7.7633321265999233e-01 2 0 0 -87 0 P 224 -211 -5.0636083383730923e-01 -4.5249094972317588e-01 1.0922787112239563e+00 1.2937163218877867e+00 1.3957000000000000e-01 1 0 0 0 0 P 225 213 -3.4249244495082071e-01 -4.5525579003141892e-01 2.7746151801992858e-01 9.3144415962524885e-01 6.8267446071501781e-01 2 0 0 -88 0 P 226 -211 -5.1934465331207036e-01 -8.6440090670745662e-01 5.9268005322885831e-01 1.1779886361234009e+00 1.3957000000000000e-01 1 0 0 0 0 P 227 213 -2.3133425581448274e-02 -8.0069965759480810e-01 1.1102574501293991e+00 1.5426010587396088e+00 7.1083846533875161e-01 2 0 0 -89 0 P 228 111 -8.9958641164885467e-01 -3.6806660659926071e-01 1.8976374829382085e-02 9.8148277729078004e-01 1.3497999999999999e-01 2 0 0 -90 0 P 229 313 -1.3566414918771017e+00 -1.9570978715628733e+00 2.5289817934915479e+00 3.6003369021198206e+00 9.4655622157142061e-01 2 0 0 -91 0 P 230 -313 4.2331701568766866e-01 -8.3062579612113208e-01 3.6819563148017515e-01 1.3529019619719242e+00 9.0864689880823257e-01 2 0 0 -92 0 P 231 -211 2.3452979142604422e-01 -2.2138660228742280e-01 -5.2527068073982247e-02 3.5532397684248956e-01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -1.5883574389049934e-01 -5.9170003556529682e-02 2.2332919199137619e-01 3.1116781847364777e-01 1.3497999999999999e-01 2 0 0 -93 0 P 233 321 3.5983960496173739e+00 -1.7421399407579738e-01 3.3095109662144001e-01 3.6512976096161625e+00 4.9359999999999998e-01 1 0 0 0 0 P 234 -323 7.7972284264270719e-01 1.1656058762150356e-01 3.8962458377948217e-01 1.2482517633430084e+00 8.8587305325204502e-01 2 0 0 -94 0 P 235 221 2.5004661498238572e+00 5.0997469324182761e-02 -4.1098501419178157e-01 2.5929793467520397e+00 5.4744999999999999e-01 2 0 0 -95 0 P 236 113 1.8871810084181946e+00 1.1785395546850341e+00 4.2315780580867118e-01 2.5248730769754770e+00 1.1160259341642957e+00 2 0 0 -96 0 P 237 211 4.6384233962962590e-01 2.5739365448569146e-01 6.3696517264528041e-01 8.4059837346120092e-01 1.3957000000000000e-01 1 0 0 0 0 P 238 2112 8.1050010003302386e-01 5.2363846920095092e-01 -1.1121471613902559e-01 1.3513948929038253e+00 9.3957000000000002e-01 1 0 0 0 0 P 239 223 7.5173643675742186e-01 7.0227879896612344e-01 4.7872544711636550e-01 1.3781234759570415e+00 7.8214006382559620e-01 2 0 0 -97 0 P 240 -2114 1.1725108239456106e+00 2.6630341570478175e+00 1.2803989126655713e+00 3.3975064984685548e+00 1.1987895885883770e+00 2 0 0 -98 0 P 241 -211 1.1335723814197238e+00 2.0361383536355855e+00 2.1354837526986077e+00 3.1639558122709524e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 323 1.1196669789539915e+00 1.1840939147059317e+00 2.5206142065365027e+00 3.1610833689095683e+00 9.9157427578545232e-01 2 0 0 -99 0 P 243 -321 3.2564183624251313e+00 1.4488543615234466e+00 8.3068956112060750e+00 9.0527120338338278e+00 4.9359999999999998e-01 1 0 0 0 0 P 244 321 1.7618846276115254e+00 1.7288890828949215e+00 2.5821452765889275e+00 3.6061627932440259e+00 4.9359999999999998e-01 1 0 0 0 0 P 245 333 2.1197685954699597e+00 1.3567959890973003e+00 5.1957119605923641e+00 5.8626437765744654e+00 1.0202230242420294e+00 2 0 0 -100 0 P 246 -323 2.4409213178590683e+00 1.0519314017856534e+00 5.7054261937558790e+00 6.3537584351660472e+00 8.6815991960376993e-01 2 0 0 -101 0 P 247 321 1.0885764541894905e+00 6.9503000281894900e-01 4.6114824276149848e+00 4.8142991745046411e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 333 2.7644453099235961e-01 2.5476898967815620e+00 6.9928036288105444e+00 7.5169782514413281e+00 1.0190750966722604e+00 2 0 0 -102 0 P 249 -321 2.8388954390513376e-02 1.2482777628484254e+00 6.3089401333319390e+00 6.4502224668548971e+00 4.9359999999999998e-01 1 0 0 0 0 P 250 211 -2.7477479270332983e-01 1.9410568233150388e-01 1.2096375889625615e+00 1.2632818704270616e+00 1.3957000000000000e-01 1 0 0 0 0 P 251 111 2.1974285365463371e-02 7.3831674321043261e-01 1.9130869570551914e+00 2.0551680681094853e+00 1.3497999999999999e-01 2 0 0 -103 0 P 252 313 -1.7953683695494568e-01 -1.8304916680282327e-01 6.6558383075073282e+00 6.7228825366751686e+00 9.1171571937690965e-01 2 0 0 -104 0 P 253 -313 -1.1943243859650461e-02 9.0423502684195445e-01 1.0757230521642583e+01 1.0830911041506209e+01 8.7911425219965966e-01 2 0 0 -105 0 P 254 223 1.4991791661052902e+00 1.2409810542968494e+00 3.2196163073401507e+01 3.2264268588848019e+01 7.7623371161908628e-01 2 0 0 -106 0 P 255 2112 2.5433839359730182e+00 2.0085727912808484e+00 3.8981401695953330e+01 3.9127172610218238e+01 9.3957000000000002e-01 1 0 0 0 0 P 256 -3122 1.5053210856864092e+00 1.3087215019303635e+00 4.9415007137693898e+01 4.9467832131814369e+01 1.1156800000000000e+00 2 0 0 -107 0 P 257 -311 5.9514444561636537e-01 -1.6143336009791356e-01 6.3058633554819439e+00 6.3554579479224405e+00 4.9767000000000000e-01 2 0 0 -108 0 P 258 223 1.4580256830225495e+00 -3.1808052140172760e-01 3.1981975454173789e+01 3.2026381670117338e+01 7.8444554827261970e-01 2 0 0 -109 0 P 259 313 1.2547255548500373e+00 -1.3837712268823138e-01 2.4187698615998357e+01 2.4236605327106517e+01 8.8022099354760652e-01 2 0 0 -110 0 P 260 -323 9.1514144652755991e-01 -1.7158973730731735e+00 3.1886349012161688e+01 3.1960007744781517e+01 9.5971561362620050e-01 2 0 0 -111 0 P 261 213 1.6198348181212341e+00 -1.1828450560434958e+00 3.0073252446463343e+01 3.0151294229922474e+01 8.2282669258984775e-01 2 0 0 -112 0 P 262 -211 2.9890213241956709e-01 -1.5701019066917015e+00 3.0504568331586761e+01 3.0546730289238941e+01 1.3957000000000000e-01 1 0 0 0 0 P 263 323 4.9720231546970090e-01 -1.6787419745075594e+00 3.7445165587936813e+01 3.7496935442803178e+01 9.0241727280659467e-01 2 0 0 -113 0 P 264 -321 1.4838990805770672e-01 -1.1124983057045881e+00 1.4387012470848159e+01 1.4439163439803201e+01 4.9359999999999998e-01 1 0 0 0 0 P 265 2212 -9.8020387964172984e-01 -1.0299508252726892e+00 5.1620808475940741e+01 5.1648909152573594e+01 9.3827000000000005e-01 1 0 0 0 0 P 266 -2212 -9.6495966907869046e-01 -1.2545325572784678e+00 5.3296024982805193e+01 5.3327775395762714e+01 9.3827000000000005e-01 1 0 0 0 0 P 267 211 -9.7540676153876826e-01 -5.8222766862280662e-01 1.9081889801528131e+01 1.9116181773333523e+01 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 -1.3720666744490326e-01 -5.9804696132545432e-01 4.5401926278809022e+01 4.5414338171827431e+01 8.6643864246161073e-01 2 0 0 -114 0 P 269 113 -1.2586482800073233e+00 -1.1169199473102682e+00 4.1189117995010136e+01 4.1225829839444962e+01 4.4033973536141852e-01 2 0 0 -115 0 P 270 111 -5.5865886102776152e-01 -8.2043099695990129e-01 2.7170255780984537e+01 2.7188715040404190e+01 1.3497999999999999e-01 2 0 0 -116 0 P 271 211 -1.1955629205003211e+00 -8.8106059007677984e-01 6.0313283320772449e+01 6.0331726837352583e+01 1.3957000000000000e-01 1 0 0 0 0 P 272 221 -1.5114115833894215e+00 -6.7309313826929384e-01 7.9233714657567859e+01 7.9252877924316238e+01 5.4744999999999999e-01 2 0 0 -117 0 P 273 113 -1.0867233491873800e+00 -4.1193852484564164e-01 1.3835697472823841e+02 1.3836293343164775e+02 5.4610518608177716e-01 2 0 0 -118 0 P 274 111 -7.5270608159668140e-01 -9.7543074392448748e-01 8.3713996573127645e+01 8.3723171663688731e+01 1.3497999999999999e-01 2 0 0 -119 0 P 275 -211 -6.2186198235466084e-01 6.8584573484478564e-02 1.2226262308479851e+02 1.2226430345578885e+02 1.3957000000000000e-01 1 0 0 0 0 P 276 113 -1.3050602647885918e+00 -1.1077420374077180e+00 1.2963143967154480e+02 1.2964470183506310e+02 7.1294310354210355e-01 2 0 0 -120 0 P 277 113 -7.0589619256040814e-01 5.0916303693573070e-02 5.6556256045708651e+01 5.6566383382279028e+01 8.0296272551299563e-01 2 0 0 -121 0 P 278 213 -4.4642054586745507e-02 6.3588305717404550e-02 3.4663092641887602e+01 3.4668659020558003e+01 6.1635249490362931e-01 2 0 0 -122 0 P 279 -211 2.6113887500428815e-02 2.1951915897805149e-01 2.3602077309464629e+00 2.3746433236168896e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 221 -7.4613256859518626e-02 -3.2750549250006217e-01 1.3189806564999717e+01 1.3205435460836819e+01 5.4744999999999999e-01 2 0 0 -123 0 P 281 2224 6.6168176993491723e-01 -4.4373345043552490e-02 3.2122644826716659e+01 3.2153111982384793e+01 1.2322774565719121e+00 2 0 0 -124 0 P 282 111 -5.6072515527578737e-01 3.4326956701827608e-03 8.6131750295581622e+00 8.6324636213170844e+00 1.3497999999999999e-01 2 0 0 -125 0 P 283 -2224 1.4974529885109802e-01 7.1118565838189884e-01 4.1187567674284551e+01 4.1215186421418238e+01 1.3219879474761878e+00 2 0 0 -126 0 P 284 211 1.1693756212307603e-01 -1.3361881224433125e-01 9.7259615092110163e-01 9.9847455556334352e-01 1.3957000000000000e-01 1 0 0 0 0 P 285 113 1.0149549730803791e+00 4.3911575100976330e-01 2.2560107938772372e+01 2.2599064704572918e+01 7.3232443100561206e-01 2 0 0 -127 0 P 286 223 -7.7662420799739174e-02 -8.8099911148102714e-02 2.0927315710550644e+01 2.0942271467639909e+01 7.8255883441184315e-01 2 0 0 -128 0 P 287 -213 1.3264566202141570e-01 -1.5326288486706205e-01 2.7575194748515994e+01 2.7592899994266403e+01 9.6730568667408645e-01 2 0 0 -129 0 P 288 221 4.5429261449225744e-01 2.3734296086010523e-01 3.0623813472757917e+01 3.0632994737332186e+01 5.4744999999999999e-01 2 0 0 -130 0 P 289 323 4.0847089318608965e-01 -1.3046969804751737e-01 6.6028539616250654e+01 6.6035732690406221e+01 8.7525841402039783e-01 2 0 0 -131 0 P 290 -313 5.0388592836074009e-01 1.7028398918730278e-01 4.6699679358470121e+01 4.6711998117273922e+01 9.3156763496209127e-01 2 0 0 -132 0 P 291 221 -6.4335914491675017e-01 1.4332356094681583e-02 8.7522557472945806e+01 8.7526635286142366e+01 5.4744999999999999e-01 2 0 0 -133 0 P 292 -213 6.4284384011351015e-01 -7.8234970270564130e-01 8.1352417254618402e+01 8.1361158648826191e+01 6.3009860326479883e-01 2 0 0 -134 0 P 293 111 1.6548508401281431e-01 3.9955728345337521e-01 1.2438894204585469e+02 1.2438976708002627e+02 1.3497999999999999e-01 2 0 0 -135 0 P 294 2214 -5.3190320327472218e-01 -4.3880210418516524e-01 5.4063224198572857e+02 5.4063400815755199e+02 1.1975949567180857e+00 2 0 0 -136 0 P 295 223 -6.9962620594142988e-01 -4.2278593281767873e-01 1.3569865211146846e+03 1.3569869928372523e+03 7.8231565327086094e-01 2 0 0 -137 0 V -15 0 0 0 0 0 0 1 0 P 296 92 -9.5593917613324730e-01 1.3745292426262312e+00 -3.4311173380200071e+03 3.4312069838420248e+03 2.4746223033790102e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 4 0 P 297 333 -7.7875235032623535e-01 2.1174055796653746e+00 -4.0624526829344056e+01 4.0700030447473338e+01 1.0249081447743627e+00 2 0 0 -138 0 P 298 -323 2.2957475785301631e-01 4.5703091731981815e-01 -4.0069213076515780e+01 4.0082927734808379e+01 9.1524717635093378e-01 2 0 0 -139 0 P 299 2212 -4.5313413762835070e-01 -1.0720803851832212e+00 -2.8988577956307513e+03 2.8988581811338531e+03 9.3827000000000005e-01 1 0 0 0 0 P 300 211 4.6372553968322405e-02 -1.2782686917574027e-01 -4.5156580248339623e+02 4.5156584452589055e+02 1.3957000000000000e-01 1 0 0 0 0 V -17 0 0 0 0 0 21 1 0 P 101 2 -1.3212498959888617e+00 -4.2582926805586023e+00 8.4743277302317540e+02 8.4744450175311761e+02 0 2 0 0 -17 0 P 102 21 -1.6289589441474464e-03 -8.2290503701789441e-01 1.9351932936549986e+02 1.9352107898992884e+02 0 2 0 0 -17 0 P 103 21 6.5188462801260072e-01 -9.7529234302019896e-01 3.5741387504748371e+02 3.5741580018961236e+02 0 2 0 0 -17 0 P 104 21 -1.4747701898947012e+00 -3.8101229508019552e-01 2.5305441014286882e+02 2.5305899432787857e+02 0 2 0 0 -17 0 P 105 21 2.9557956993642331e-01 1.0956648433333938e+00 2.4409382605864542e+02 2.4409646406426972e+02 0 2 0 0 -17 0 P 106 21 1.5883578802653786e-01 8.8614035814229331e-01 1.3375282472652194e+02 1.3375585443585481e+02 0 2 0 0 -17 0 P 107 21 1.1940227983801037e+00 8.3544056434702119e-01 6.7852083109982999e+01 6.7867730430180501e+01 0 2 0 0 -17 0 P 108 21 1.6289589441474464e-03 8.2290503701789441e-01 4.2307714630761858e+01 4.2315716851205977e+01 0 2 0 0 -17 0 P 109 21 -9.5601090376966080e-01 2.0631999840416100e+00 8.1453347242796099e+01 8.1485081628957062e+01 0 2 0 0 -17 0 P 110 21 -2.8241257290204869e-01 6.3666796671771775e-01 1.0554613387013983e+01 1.0577569035960598e+01 0 2 0 0 -17 0 P 111 21 -2.2621892147350784e+00 8.6837667765114157e-01 7.4218013308206450e+00 7.8073499403909929e+00 0 2 0 0 -17 0 P 112 21 -2.6864218889093450e+00 3.0918265855047600e-01 1.0396659862777405e+01 1.0742578497914096e+01 0 2 0 0 -17 0 P 113 21 -2.4950778885207350e+00 -2.0442642568427165e+00 1.1321141498208281e+01 1.1771689549255171e+01 0 2 0 0 -17 0 P 114 21 -2.0869029969446848e+00 -1.7770269560446772e+00 6.6594237375790408e+00 7.2014521756238388e+00 0 2 0 0 -17 0 P 115 21 3.4695971609418541e-01 -1.4041581471995901e+00 9.1110243889656530e+00 9.2251182411536661e+00 0 2 0 0 -17 0 P 116 21 2.0274098638619469e+00 -2.0165003723530366e+00 9.2817779522313497e+00 9.7122637146194002e+00 0 2 0 0 -17 0 P 117 21 1.2177029110120512e+00 -7.8083759005988618e-01 3.2609922119019985e+00 3.5674329604945969e+00 0 2 0 0 -17 0 P 118 21 2.6864218889093450e+00 -3.0918265855047600e-01 7.2236798145835168e+00 7.7132358025138155e+00 0 2 0 0 -17 0 P 119 21 1.4747701898947012e+00 3.8101229508019552e-01 4.0696499058458686e+00 4.3453616464174321e+00 0 2 0 0 -17 0 P 120 21 2.5339838890501798e+00 4.2918936832473592e-01 6.2320119859986356e+00 6.7411609725239110e+00 0 2 0 0 -17 0 P 121 -2 1.3212498959888617e+00 4.2582926805586023e+00 1.3980360458989724e+01 1.4674100872088651e+01 0 2 0 0 -17 0 P 301 92 3.4378558750182231e-01 -2.1833999029621909e+00 2.3203933198826526e+03 2.3250405360799623e+03 1.4691306965445236e+02 2 0 0 -18 0 V -18 0 0 0 0 0 0 28 0 P 302 213 -4.8559654240776340e-01 -1.8491136117877531e+00 3.5562191286863521e+02 3.5562806065721685e+02 8.4710643643167050e-01 2 0 0 -140 0 P 303 111 2.2476941600608569e-01 -3.4558282639233207e-01 1.4892086925330887e+02 1.4892150102500909e+02 1.3497999999999999e-01 2 0 0 -141 0 P 304 2214 -1.8978811693755069e+00 -2.5750324868169905e+00 6.7513047800381389e+02 6.7513913492621350e+02 1.2068280807354166e+00 2 0 0 -142 0 P 305 -211 5.9499198301567691e-01 4.8119475043152582e-01 1.1750716291550808e+02 1.1750973738411788e+02 1.3957000000000000e-01 1 0 0 0 0 P 306 -2214 6.3811460350474733e-02 -9.3648051728644810e-01 5.0890321715260728e+02 5.0890539710598779e+02 1.1565931296905199e+00 2 0 0 -143 0 P 307 211 -4.9347340074273782e-01 4.7717358030641432e-01 3.7859671769917142e+01 3.7866151599201942e+01 1.3957000000000000e-01 1 0 0 0 0 P 308 113 3.0548344465706573e-01 6.6799386476994138e-01 4.8610382089240886e+01 4.8626896839748937e+01 1.0326245509691045e+00 2 0 0 -144 0 P 309 -213 3.5328327202776200e-01 1.0055947377318779e+00 1.9482088343795351e+02 1.9482534144896985e+02 7.7525306588840581e-01 2 0 0 -145 0 P 310 211 -3.6276681893573348e-01 2.6229024986292598e-01 7.7372782348922335e+00 7.7514740668553479e+00 1.3957000000000000e-01 1 0 0 0 0 P 311 1114 -1.9100593603959232e-01 7.7633504223531213e-01 6.1954166454817006e+01 6.1971813184658288e+01 1.2440694987055778e+00 2 0 0 -146 0 P 312 211 7.1258700912683370e-01 1.8394529118257241e-01 1.2333052162517181e+01 1.2355778872414085e+01 1.3957000000000000e-01 1 0 0 0 0 P 313 -2112 -9.5378468413059003e-01 1.4461427649510821e+00 6.1070635723104928e+01 6.1102425267164172e+01 9.3957000000000002e-01 1 0 0 0 0 P 314 -213 -2.0811544455633659e+00 7.7991743532415470e-01 6.8111511633177404e+00 7.2133296825862239e+00 8.3717973452783856e-01 2 0 0 -147 0 P 315 321 -1.9835097320966106e+00 -1.0926766613846157e+00 1.1510502118278284e+01 1.1741531123262650e+01 4.9359999999999998e-01 1 0 0 0 0 P 316 -313 -5.6645186151593718e-01 -4.1840409346191859e-01 2.6233319601793825e+00 2.8591571730431218e+00 8.9273706656818863e-01 2 0 0 -148 0 P 317 313 -1.1628208250213108e+00 -1.5086238998892806e-01 4.5492066219510718e+00 4.7776551802451719e+00 8.6936551593885392e-01 2 0 0 -149 0 P 318 331 -1.6654787323331961e+00 -3.1730163111086290e-01 7.4409336106795774e+00 7.6915204011917471e+00 9.5785873198924476e-01 2 0 0 -150 0 P 319 -321 1.6931428277609287e-01 -1.1964042437873392e+00 3.7718305576338005e+00 3.9912901618905687e+00 4.9359999999999998e-01 1 0 0 0 0 P 320 111 -9.7407396463906504e-01 -7.2408285159683183e-01 7.0213109137336271e+00 7.1267203265091865e+00 1.3497999999999999e-01 2 0 0 -151 0 P 321 213 1.0454920962323739e+00 -7.3435792731617033e-01 3.5149441676979296e+00 3.8208334482431541e+00 7.8204887857698246e-01 2 0 0 -152 0 P 322 223 2.8594372871257623e-01 -8.3206155343162858e-01 2.7861060683189138e+00 3.0234358377387065e+00 7.7761622688198295e-01 2 0 0 -153 0 P 323 111 1.2320626381261690e+00 -7.9490554478320019e-01 3.9034041071549965e+00 4.1718864310462704e+00 1.3497999999999999e-01 2 0 0 -154 0 P 324 223 6.6339598307240466e-01 -5.4171354072087063e-01 5.1491968665007626e+00 5.2785626985370619e+00 7.8450494061456155e-01 2 0 0 -155 0 P 325 311 1.1250933057029675e+00 -3.2166255647717928e-01 3.3498881114104386e+00 3.5831170138087955e+00 4.9767000000000000e-01 2 0 0 -156 0 P 326 -311 2.3632805233485215e+00 1.8400486514361297e-01 5.4239640776534985e+00 5.9402032260698414e+00 4.9767000000000000e-01 2 0 0 -157 0 P 327 -211 -2.7854195808207721e-01 3.7704676487752936e-01 8.7288853273373856e-01 1.0005818611162545e+00 1.3957000000000000e-01 1 0 0 0 0 P 328 2214 2.6668906958178780e+00 1.3979427560912130e+00 1.1988101301351362e+01 1.2430474123341360e+01 1.3174081322236790e+00 2 0 0 -158 0 P 329 -2214 1.6339258194124269e+00 2.6076604304727158e+00 9.2068496377410742e+00 9.7865250137738897e+00 1.2411225117825260e+00 2 0 0 -159 0 V -19 0 0 0 0 0 5 1 0 P 122 1 -1.2617917553574771e+00 -6.1077541486133702e-01 5.7874965615025376e-01 1.5166134002379046e+00 0 2 0 0 -19 0 P 123 21 -9.4307992246510527e-02 1.1136123616620528e+00 -1.4961046184805539e+01 1.5002730732547741e+01 0 2 0 0 -19 0 P 124 21 -3.6587072809548933e-02 6.5825150571899327e-01 -1.7995676755756993e+01 1.8007748764250643e+01 0 2 0 0 -19 0 P 125 21 4.6083796482017009e-01 1.0784543190309790e+00 -3.9088271059903988e+01 3.9105861067116059e+01 0 2 0 0 -19 0 P 126 -1 1.2617917553574771e+00 6.1077541486133702e-01 -3.2455111797060276e+01 3.2485372813021065e+01 0 2 0 0 -19 0 P 330 92 3.2994289976411073e-01 2.8503181864120255e+00 -1.0392135614137655e+02 1.0611832677717342e+02 2.1288913538347710e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 8 0 P 331 111 7.3321134597709586e-02 -1.7091770451475186e-01 1.2401709732381209e-01 2.6112964466699556e-01 1.3497999999999999e-01 2 0 0 -160 0 P 332 -213 -1.1057256614938014e+00 1.7012060326290776e-01 1.8905456179063661e-02 1.3612092724809981e+00 7.7521803969881231e-01 2 0 0 -161 0 P 333 213 -4.4913484262440911e-01 -4.0229328640365819e-01 -1.0612818802533919e+00 1.3181517843262993e+00 4.9763731976583442e-01 2 0 0 -162 0 P 334 111 1.8135978862440849e-01 3.2440405912630826e-01 -8.8703848361118922e+00 8.8791934378991488e+00 1.3497999999999999e-01 2 0 0 -163 0 P 335 2112 3.7141887421629377e-01 6.9195649488113631e-01 -1.9315993109930940e+01 1.9354770403668752e+01 9.3957000000000002e-01 1 0 0 0 0 P 336 -2112 -3.8464328343006068e-03 1.5933378214878352e-01 -8.4060970357659475e+00 8.4599445157041320e+00 9.3957000000000002e-01 1 0 0 0 0 P 337 -211 -2.0381332753096559e-01 4.7322494913135121e-01 -5.3732035537990619e+00 5.3996553538553256e+00 1.3957000000000000e-01 1 0 0 0 0 P 338 213 1.4663633668091756e+00 1.6044892887799487e+00 -6.1037318279018209e+01 6.1084272364571795e+01 1.0047388783606850e+00 2 0 0 -164 0 V -21 0 0 0 0 0 6 1 0 P 129 21 2.8731296161257549e+00 4.2556948919786952e-01 -1.7670790831975318e+00 3.3997870032502466e+00 0 2 0 0 -21 0 P 130 21 -2.0274098638619469e+00 2.0165003723530366e+00 1.2554147436275719e-02 2.8595143144251796e+00 0 2 0 0 -21 0 P 131 21 -1.3888808700489605e+00 1.8015005159755229e+00 3.2148566740707021e+00 3.9382353427728223e+00 0 2 0 0 -21 0 P 132 21 -6.5188462801260072e-01 9.7529234302019896e-01 1.8440681167271513e+00 2.1855745106773594e+00 0 2 0 0 -21 0 P 133 21 -1.2251449723124612e+00 4.0466052543042974e-01 1.7514491771079566e+00 2.1753860724056020e+00 0 2 0 0 -21 0 P 134 21 -2.8731296161257549e+00 -4.2556948919786952e-01 3.6658016216982028e+00 4.6769738839168467e+00 0 2 0 0 -21 0 P 339 92 -5.2933203342359700e+00 5.1979537567791887e+00 8.7216506538427563e+00 1.9235471127448054e+01 1.5456331904716626e+01 2 0 0 -22 0 V -22 0 0 0 0 0 0 11 0 P 340 113 -1.3144543571744951e+00 9.9321982231046002e-01 3.0046154735208237e+00 3.5158021244473558e+00 7.8668580896209117e-01 2 0 0 -165 0 P 341 221 -1.1044774211948534e+00 3.9177427209500078e-02 1.0199945489413536e+00 1.6004673152245454e+00 5.4744999999999999e-01 2 0 0 -166 0 P 342 3214 -7.6504517673101191e-01 9.8760904807352612e-01 2.3799358834306084e+00 3.0376112000743078e+00 1.4150340064112115e+00 2 0 0 -167 0 P 343 323 -1.0084569995491257e+00 7.1039170794948603e-01 1.0424262565679967e+00 1.8492243478290533e+00 9.0074207715550159e-01 2 0 0 -168 0 P 344 -2224 -4.9176003654167570e-02 4.6113587423757006e-02 8.6098085118045187e-01 1.4433226994433603e+00 1.1564374805187569e+00 2 0 0 -169 0 P 345 223 -7.1290379077363142e-01 -4.0037487516282444e-01 7.7231739095041985e-01 1.3689215550142844e+00 7.8034621537955939e-01 2 0 0 -170 0 P 346 2224 3.8370953662400176e-01 5.6556297560422786e-01 -7.2009161501435451e-02 1.3726442612007332e+00 1.1882223952596804e+00 2 0 0 -171 0 P 347 -211 7.9294129909899524e-01 -1.5597211084716023e-01 -8.3275058117968137e-01 1.1687756493587715e+00 1.3957000000000000e-01 1 0 0 0 0 P 348 -2112 8.5432877450136821e-02 8.0664981919132939e-01 3.4941143237393041e-01 1.2895203919769613e+00 9.3957000000000002e-01 1 0 0 0 0 P 349 223 -8.7022238536579899e-01 8.0889238284926268e-01 -1.9324833737717609e-01 1.4320806663177075e+00 7.7583260302634027e-01 2 0 0 -172 0 P 350 111 -7.3066791296601874e-01 7.9668397217762321e-01 3.8997689693546406e-01 1.1571009165609745e+00 1.3497999999999999e-01 2 0 0 -173 0 V -23 0 0 0 0 0 4 1 0 P 135 21 2.4995891632750591e+00 -8.5980128552389046e-01 -1.2545742959858968e+00 2.9259461546479546e+00 0 2 0 0 -23 0 P 136 21 -2.4995891632750591e+00 8.5980128552389046e-01 -3.4437516728404791e+00 4.3412705306099326e+00 0 2 0 0 -23 0 P 137 21 -2.1490842629449789e+00 -4.7729566387312139e-01 -2.8177226124095123e+00 3.5757425858797127e+00 0 2 0 0 -23 0 P 138 21 -1.2678582191293668e+00 -6.4898058324335361e-01 -2.6241880805138562e+00 2.9858002852086023e+00 0 2 0 0 -23 0 P 351 92 -3.4169424820743455e+00 -1.1262762471164751e+00 -1.0140236661749745e+01 1.3828759556346203e+01 8.6871282481795831e+00 2 0 0 -24 0 V -24 0 0 0 0 0 0 7 0 P 352 -323 -2.0322581131829911e+00 -1.1043894545117090e+00 -3.8015070583441535e+00 4.5391215246479542e+00 8.9577854129644552e-01 2 0 0 -174 0 P 353 311 -7.6901130539858142e-01 5.8253327008267874e-01 -8.6226388250620745e-01 1.3863252975253419e+00 4.9767000000000000e-01 2 0 0 -175 0 P 354 211 -8.7489985590995278e-01 -4.0385590157263290e-01 -1.5226617503763704e+00 1.8073538497110997e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 -213 -3.1133454666893912e-01 2.7910761542400725e-01 -6.8530767497851042e-01 1.1741922906851192e+00 8.5688427759102137e-01 2 0 0 -176 0 P 356 213 1.3637746400921236e+00 -1.0054531272330902e+00 -1.3426995993527127e+00 2.3082770562585435e+00 8.0900154160945237e-01 2 0 0 -177 0 P 357 -321 -2.2444797071326936e-01 1.5322044180846756e-01 -1.6268893052985949e+00 1.7217035653794270e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 321 -5.6876533029273579e-01 3.7256090888580362e-01 -2.9890739089319668e-01 8.9178597213871846e-01 4.9359999999999998e-01 1 0 0 0 0 V -25 0 0 0 0 0 3 1 0 P 139 21 7.9119059435996564e-01 -1.0095926580635097e+00 7.8849373958271244e+01 7.8859806197473773e+01 0 2 0 0 -25 0 P 140 21 2.8241257290204869e-01 -6.3666796671771775e-01 4.9896306992195854e+01 4.9901167866299787e+01 0 2 0 0 -25 0 P 141 21 -7.9119059435996564e-01 1.0095926580635097e+00 -4.6762921389383131e+01 4.6780509582105296e+01 0 2 0 0 -25 0 P 359 92 2.8241257290204869e-01 -6.3666796671771775e-01 8.1982759561083952e+01 1.7554148364587888e+02 1.5521969756569132e+02 2 0 0 -26 0 V -26 0 0 0 0 0 0 24 0 P 360 221 1.8398968969055815e-01 -3.6362098838861473e-01 -3.3661447079799300e-01 7.6097518590276902e-01 5.4744999999999999e-01 2 0 0 -178 0 P 361 211 3.5527751876707414e-01 2.2072122053470333e-01 1.6288768396896134e+00 1.6875009677961197e+00 1.3957000000000000e-01 1 0 0 0 0 P 362 111 -6.9133682312420830e-01 1.7569417989953487e-01 7.5007480267419124e-01 1.0438615127806801e+00 1.3497999999999999e-01 2 0 0 -179 0 P 363 -211 5.6648082619621909e-01 -2.7356138191983521e-02 -3.1247852554980669e-02 5.8489751062389361e-01 1.3957000000000000e-01 1 0 0 0 0 P 364 223 -1.3929627105630568e-01 -2.9573232053388226e-01 6.6637108545908657e+00 6.7168761287575478e+00 7.7750981919350204e-01 2 0 0 -180 0 P 365 -2112 -1.8472044563424821e-02 2.5651077758488816e-01 7.0234609665252243e+00 7.0906935294547173e+00 9.3957000000000002e-01 1 0 0 0 0 P 366 2214 4.9037632920396268e-01 -5.7563748797909209e-01 1.8189504835422699e+01 1.8240431669152848e+01 1.1328873983578416e+00 2 0 0 -181 0 P 367 111 -3.3275961741172899e-01 -6.0989176468679862e-01 7.4632541390177867e+00 7.4967378820110087e+00 1.3497999999999999e-01 2 0 0 -182 0 P 368 -2224 3.4006792632902039e-01 1.7943383059763901e-01 3.2926702630066259e+01 3.2954212303532927e+01 1.2901626887443716e+00 2 0 0 -183 0 P 369 223 -2.0765287475611894e-02 -1.9296358604323791e-01 1.0712083891494869e+01 1.0742289816539159e+01 7.8127015903235775e-01 2 0 0 -184 0 P 370 2224 4.9354558207168470e-01 3.4249201252494671e-02 1.7681221586239332e+01 1.7725778630880338e+01 1.1545003421001594e+00 2 0 0 -185 0 P 371 -323 2.1826184589925312e-02 -7.8465544544208810e-01 1.7125620664997502e+01 1.7167059606675735e+01 8.9715763797255987e-01 2 0 0 -186 0 P 372 323 -2.9035509244950497e-01 2.3856782353467862e-01 9.5806120466626385e-02 9.3049865694483069e-01 8.4582991890795267e-01 2 0 0 -187 0 P 373 -2212 -1.0161566851586558e-01 3.9404837301158424e-01 4.3074827968712386e+00 4.4272292127924286e+00 9.3827000000000005e-01 1 0 0 0 0 P 374 2112 1.6818985716840296e-01 6.1351532550601967e-02 1.7135070915110044e+00 1.9623837994029447e+00 9.3957000000000002e-01 1 0 0 0 0 P 375 213 3.9111344674098331e-01 -2.2940853031036620e-01 -3.9077976622384208e-01 1.1894362721127947e+00 1.0278384200480382e+00 2 0 0 -188 0 P 376 223 -2.4636681128672727e-01 -2.9802340094142538e-01 -1.1793837028014287e+00 1.4690611849267143e+00 7.8592639185383639e-01 2 0 0 -189 0 P 377 -2212 2.5040528052904470e-01 2.7046992189103270e-02 -1.2824124818605691e+00 1.6088401756654052e+00 9.3827000000000005e-01 1 0 0 0 0 P 378 311 -1.4781620764428541e-01 -7.9733833728499515e-02 -2.8679059124676263e+00 2.9156074610876805e+00 4.9767000000000000e-01 2 0 0 -190 0 P 379 3122 -1.5014575737779387e-01 6.8121133649943288e-01 -1.7497050903596165e+01 1.7546456189751517e+01 1.1156800000000000e+00 2 0 0 -191 0 P 380 223 -6.6208071348161235e-01 3.5973883146650720e-01 -1.1815050324778140e+01 1.1864563218423505e+01 7.7761384304723646e-01 2 0 0 -192 0 P 381 111 2.5285246468113942e-01 2.9695080088903498e-02 -3.5778582271670429e+00 3.5894435865163987e+00 1.3497999999999999e-01 2 0 0 -193 0 P 382 331 -2.1841117574006474e-01 6.8351243269637749e-02 -5.4430437017355757e+00 5.5314320564706714e+00 9.5793555221809035e-01 2 0 0 -194 0 P 383 111 -2.1229106293883224e-01 9.3735107048561028e-02 1.2279968550008807e-01 2.9521708767621324e-01 1.3497999999999999e-01 2 0 0 -195 0 V -27 0 -1.3807259210075648e-05 -4.1711397170190427e-06 -4.9346928918601938e-04 4.9391002310537500e-04 0 2 0 P 384 22 -1.4432103457858314e-01 -8.1648498213002987e-03 -2.9807375301133643e+00 2.9842405146403266e+00 0 1 0 0 0 0 P 385 22 2.0658816724736864e-02 -2.9193208033399275e-02 -1.4389308352761379e+00 1.4393752043203440e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 3 0 P 386 211 1.5415171611030765e-01 -3.6697294419777420e-02 -1.6652707326838014e+00 1.6786053261653644e+00 1.3957000000000000e-01 1 0 0 0 0 P 387 -211 -2.2812367859456562e-01 5.6914549371100145e-02 -8.8567006362302492e-01 9.2691473457036222e-01 1.3957000000000000e-01 1 0 0 0 0 P 388 111 1.9763418033810423e-01 1.7140802903376853e-02 -6.6842647471141248e-01 7.1018774197898771e-01 1.3497999999999999e-01 2 0 0 -196 0 V -29 0 0 0 0 0 0 2 0 P 389 321 2.0914264298681920e-01 3.9459124702279985e-01 -5.1178427174320384e-01 8.3964694851243393e-01 4.9359999999999998e-01 1 0 0 0 0 P 390 -211 6.1900729628399331e-01 3.6185115414948227e-01 -1.1233937180858991e+00 1.3399998213981195e+00 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 3 0 P 391 -211 1.5287204625415515e-01 -9.0475454118788393e-02 -9.1035426234633199e-01 9.3796606452262854e-01 1.3957000000000000e-01 1 0 0 0 0 P 392 211 -2.4278645872176538e-01 -1.1307350576929343e-01 -1.4724738140769547e+00 1.5031266747310248e+00 1.3957000000000000e-01 1 0 0 0 0 P 393 111 1.0171873664028674e-02 -1.5019717525390172e-01 -3.4686068402497279e+00 3.4744950238984784e+00 1.3497999999999999e-01 2 0 0 -197 0 V -31 0 0 0 0 0 0 2 0 P 394 211 -2.8922626119914591e-01 7.6274911930209244e-02 -3.3555658502943669e-01 4.7068853715999431e-01 1.3957000000000000e-01 1 0 0 0 0 P 395 111 3.5875914727152652e-01 -9.8104603132685653e-02 -7.1109073744943818e-01 8.1375811897221673e-01 1.3497999999999999e-01 2 0 0 -198 0 V -32 0 0 0 0 0 0 3 0 P 396 -211 3.7631701060499007e-01 1.9361630451700917e-01 -2.2490257331090793e+00 2.2927490702064044e+00 1.3957000000000000e-01 1 0 0 0 0 P 397 211 1.5724746080090898e-01 3.1250680943466708e-01 -2.5155314051952060e+00 2.5435733339722559e+00 1.3957000000000000e-01 1 0 0 0 0 P 398 111 -1.0138147817302849e-01 1.7546672781109932e-01 -6.5975903845645201e-01 7.0325554808352897e-01 1.3497999999999999e-01 2 0 0 -199 0 V -33 0 0 0 0 0 0 2 0 P 399 321 4.0163059503079725e-02 -3.4639096859901952e-01 -2.6730692216443519e-01 6.6082806017347528e-01 4.9359999999999998e-01 1 0 0 0 0 P 400 -321 2.2573122572220750e-01 -5.2840804640580774e-01 -4.8714546353844246e-01 9.0062273589918684e-01 4.9359999999999998e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 1 0 P 401 130 1.1178817906402570e-01 -2.5732642644571818e-01 4.8524550991921828e-01 7.4956795590695879e-01 4.9767000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 402 -211 8.8268200509425784e-02 -1.1909285559442695e-01 2.0725043575970739e-01 2.9052867586074155e-01 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -2.7672471133535592e-01 4.3601472795151125e-01 7.8001673723728524e-03 5.3382192898503478e-01 1.3497999999999999e-01 2 0 0 -200 0 V -36 0 0 0 0 0 0 2 0 P 404 211 9.2024885931410838e-02 6.1075161767614322e-02 -7.4636677886350576e-03 1.7814108524562364e-01 1.3957000000000000e-01 1 0 0 0 0 P 405 -211 -5.8445456311778735e-02 -4.2407073887258540e-01 -2.6841433256313951e-01 5.2419261894531499e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 406 211 -1.6056813976443018e-01 3.5863401915483553e-02 1.5425099480347254e-01 2.6521965500735800e-01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 3.8400600310046440e-01 5.9062571447204104e-01 -5.8727511067439349e-02 7.1969984435803447e-01 1.3497999999999999e-01 2 0 0 -201 0 V -38 0 0 0 0 0 0 3 0 P 408 111 -5.9048506966344179e-02 -1.9146047665444468e-01 -9.2273729148558614e-01 9.5383832476675889e-01 1.3497999999999999e-01 2 0 0 -202 0 P 409 111 -2.6387520652320817e-01 -2.4240857129591975e-01 -1.5363643416697483e+00 1.5833594130233710e+00 1.3497999999999999e-01 2 0 0 -203 0 P 410 111 -1.3136635284427134e-01 -5.2622814600398493e-01 -1.6478386151669944e+00 1.7400473793382394e+00 1.3497999999999999e-01 2 0 0 -204 0 V -39 0 0 0 0 0 0 2 0 P 411 311 -1.4613646657822292e+00 -3.5766375244007109e-03 -5.7119930953425202e+00 5.9169367098924939e+00 4.9767000000000000e-01 2 0 0 -205 0 P 412 111 -1.1358442452801949e+00 3.9614682917771460e-01 -5.5314450459845990e+00 5.6623474246067991e+00 1.3497999999999999e-01 2 0 0 -206 0 V -40 0 0 0 0 0 0 2 0 P 413 -311 -6.4580457008614411e-01 6.9599005487952448e-02 -1.0762290955167421e+01 1.0793353954952442e+01 4.9767000000000000e-01 2 0 0 -207 0 P 414 111 -1.8269718543977445e-01 -3.1957876750752512e-01 -3.5126338171681342e+00 3.5344482998231026e+00 1.3497999999999999e-01 2 0 0 -208 0 V -41 0 0 0 0 0 0 3 0 P 415 211 -7.2012088343223890e-01 5.2400316639024491e-01 -8.4511605606485656e+00 8.4991027768761569e+00 1.3957000000000000e-01 1 0 0 0 0 P 416 -211 -1.5321604821453982e-01 -4.8413884472562098e-02 -1.7780803173425417e+00 1.7907731462865855e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 111 -1.7035276802741947e-01 2.1893392841980799e-01 -1.4538040256704381e+00 1.4861755872182483e+00 1.3497999999999999e-01 2 0 0 -209 0 V -42 0 0 0 0 0 0 2 0 P 418 211 -3.1121728563788348e-01 1.4528161233148892e-01 -1.7127902525180132e+00 1.7524534743559295e+00 1.3957000000000000e-01 1 0 0 0 0 P 419 111 -3.9272040869359293e-01 -1.6455217233934841e-01 -1.1232751334439662e+01 1.1241629280428263e+01 1.3497999999999999e-01 2 0 0 -210 0 V -43 0 0 0 0 0 0 2 0 P 420 -211 -1.1757609619616378e+00 -1.0768113285213956e+00 -5.2157596523468094e+01 5.2182145331202086e+01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -6.2391833036553178e-02 1.2638960570599588e-03 -2.0008342233320984e+00 2.0063527924868709e+00 1.3497999999999999e-01 2 0 0 -211 0 V -44 0 0 0 0 0 0 2 0 P 422 211 -2.8298672962841693e+00 -1.4892975096171610e-01 -1.0188176344878521e+02 1.0192126143354204e+02 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -2.4522838540417995e+00 -3.4157633925683956e-01 -6.9422247873879599e+01 6.9466517761862193e+01 1.3497999999999999e-01 2 0 0 -212 0 V -45 0 0 0 0 0 0 2 0 P 424 -211 -2.5989336357482762e-01 -1.4270942853157950e-01 -6.4567903132245998e+00 6.4651010413815708e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 111 -2.5370494491716955e+00 -1.9535187781927095e+00 -1.0174204201622662e+02 1.0179250556281792e+02 1.3497999999999999e-01 2 0 0 -213 0 V -46 0 0 0 0 0 0 2 0 P 426 22 2.3363000515657768e-02 1.4095353275995806e-01 -1.1829489415389819e+01 1.1830352216101190e+01 0 1 0 0 0 0 P 427 22 -9.0161909802229367e-01 2.4346599431464114e-01 -4.0157674144876196e+01 4.0168532278568058e+01 0 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 428 211 -5.1866907611145274e-01 -1.7816154099038650e-01 -5.1723810949550618e+01 5.1726906519479343e+01 1.3957000000000000e-01 1 0 0 0 0 P 429 111 2.0021775497528527e-01 7.2621051522597874e-02 -4.5650099867146821e+01 4.5650796252063444e+01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 3 0 P 430 211 -5.4817249705549154e-01 -1.4173137852560805e-01 -3.5441632019012680e+01 3.5446429168904892e+01 1.3957000000000000e-01 1 0 0 0 0 P 431 -211 -3.4514176517345251e-02 6.5559706561639092e-02 -1.5580424795890911e+01 1.5581226072065620e+01 1.3957000000000000e-01 1 0 0 0 0 P 432 111 -1.6609434378517243e-01 7.8823913667537424e-02 -4.4450498989898385e+01 4.4451084132918069e+01 1.3497999999999999e-01 2 0 0 -215 0 V -49 0 0 0 0 0 0 3 0 P 433 111 -7.3819018731260483e-02 -2.3063628184071899e-02 -1.1061591010463740e+01 1.1062684866778213e+01 1.3497999999999999e-01 2 0 0 -216 0 P 434 111 -2.1276759726767680e-02 -1.1647206098411036e-01 -4.0351974747915513e+01 4.0352374206461576e+01 1.3497999999999999e-01 2 0 0 -217 0 P 435 111 -2.3347984866038513e-01 -5.4198604112525625e-02 -3.8308380802005026e+01 3.8309368431236834e+01 1.3497999999999999e-01 2 0 0 -218 0 V -50 0 0 0 0 0 0 2 0 P 436 211 -3.3789079823009027e-01 -3.7423428970174488e-01 -6.5909817019655208e+01 6.5911893318614730e+01 1.3957000000000000e-01 1 0 0 0 0 P 437 -211 3.5830475836989295e-01 -1.7961118780160970e+00 -2.8014834631652013e+02 2.8015436784716388e+02 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 3 0 P 438 -211 3.1135623515074418e-01 -1.4496293026491719e-01 -6.7486224513686039e+01 6.7487242763746522e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 211 1.9284286599649019e-02 -6.6658278247115302e-02 -1.1483050346102682e+02 1.1483060924730636e+02 1.3957000000000000e-01 1 0 0 0 0 P 440 111 5.7664775013933434e-01 -1.8276818737207323e-01 -1.6798119029472886e+02 1.6798233371182926e+02 1.3497999999999999e-01 2 0 0 -219 0 V -52 0 0 0 0 0 0 2 0 P 441 -211 4.8075652841322529e-02 5.6390072761727139e-01 -1.2547136242411791e+02 1.2547271641137070e+02 1.3957000000000000e-01 1 0 0 0 0 P 442 111 -3.8732395850276746e-01 -1.9280623699708957e-01 -9.4889727504303437e+01 9.4890809879224946e+01 1.3497999999999999e-01 2 0 0 -220 0 V -53 0 0 0 0 0 0 2 0 P 443 211 9.9492795218000685e-01 2.9375438871332094e-02 -5.6912467215299330e+02 5.6912555967693402e+02 1.3957000000000000e-01 1 0 0 0 0 P 444 111 2.6822670182200836e-01 2.1695373301154688e-01 -5.2798055569695052e+01 5.2799355166771164e+01 1.3497999999999999e-01 2 0 0 -221 0 V -54 0 0 0 0 0 0 3 0 P 445 -211 6.3086744390304067e-02 2.2033029015623418e-01 -2.7203884563967573e+01 2.7205207967017113e+01 1.3957000000000000e-01 1 0 0 0 0 P 446 211 2.0613984331945362e-02 -1.0028260079441008e-01 -3.3513527608397723e+01 3.3513974608812198e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 111 5.0821951901088502e-01 -8.0547690915483347e-02 -6.9380234276706148e+01 6.9382273693653531e+01 1.3497999999999999e-01 2 0 0 -222 0 V -55 0 0 0 0 0 0 2 0 P 448 -211 3.7881451386457439e-02 -2.1658590199602110e-01 -5.6289568483041606e+01 5.6290170938177418e+01 1.3957000000000000e-01 1 0 0 0 0 P 449 111 2.4296779922464878e-01 3.3867540202679747e-01 -6.2954543495407101e+01 6.2956068021239247e+01 1.3497999999999999e-01 2 0 0 -223 0 V -56 0 5.9764854271224844e-05 -4.5836381282743903e-06 -1.3659293997051781e-03 1.3672771806504918e-03 0 2 0 P 450 22 1.8309963921339284e-01 2.6523522901344462e-02 -5.1097794895187549e+00 5.1131277518416978e+00 0 1 0 0 0 0 P 451 22 6.6294765587635129e-01 -9.1410732740387024e-02 -1.4226683185678189e+01 1.4242414471645974e+01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 452 311 5.2086989034135367e-01 -6.6916190975271239e-01 -4.7208186087378522e+01 4.7218424287491715e+01 4.9767000000000000e-01 2 0 0 -224 0 P 453 211 -1.3371358245554302e-01 -1.5136882430109111e-01 -2.6645674782519318e+01 2.6646805741848109e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 454 211 7.7428020853041613e-01 -3.3388461519724899e-01 -1.0087959357358796e+01 1.0124099592467974e+01 1.3957000000000000e-01 1 0 0 0 0 P 455 111 -2.2587166840992726e-01 -2.4321607926792416e-01 -5.7103276315123912e+00 5.7215586452835261e+00 1.3497999999999999e-01 2 0 0 -225 0 V -59 0 0 0 0 0 0 2 0 P 456 -211 8.9464065812364258e-03 5.3725017709145929e-02 -1.0586581567789048e+00 1.0692068525468181e+00 1.3957000000000000e-01 1 0 0 0 0 P 457 111 8.3393763674789045e-01 -6.4993696032518333e-01 -1.8729136440676090e+01 1.8759441394888132e+01 1.3497999999999999e-01 2 0 0 -226 0 V -60 0 0 0 0 0 0 2 0 P 458 211 3.3594817240895442e-01 -2.3852285101254953e-02 -7.1478199638629947e-01 8.0238593787992818e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 111 7.1133636226927877e-01 -2.3220819567201924e-02 -9.2219659965635792e+00 9.2503737799573678e+00 1.3497999999999999e-01 2 0 0 -227 0 V -61 0 0 0 0 0 0 3 0 P 460 111 2.4359076156544476e-01 -7.8033327024496030e-02 -2.3820597452427226e+00 2.3995528520022997e+00 1.3497999999999999e-01 2 0 0 -228 0 P 461 111 5.5537668587122857e-01 -5.6251894068486374e-01 -6.7443524524999461e+00 6.7918613373493253e+00 1.3497999999999999e-01 2 0 0 -229 0 P 462 111 3.5205027741754025e-01 -1.8769362226525041e-01 -4.4154989843604993e+00 4.4355404602998965e+00 1.3497999999999999e-01 2 0 0 -230 0 V -62 0 0 0 0 0 0 2 0 P 463 -211 1.1254507841249484e+00 -3.0085006908447337e-01 -1.2538427195176499e+01 1.2593203982513632e+01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 3.6650058966047755e-01 -2.6632588889460745e-01 -2.2567161147648198e+00 2.3056971579884911e+00 1.3497999999999999e-01 2 0 0 -231 0 V -63 0 0 0 0 0 0 3 0 P 465 211 1.9586506469435661e-01 4.0270630419030357e-01 -3.9428758036549243e+00 3.9706781384229322e+00 1.3957000000000000e-01 1 0 0 0 0 P 466 -211 5.6929643374624972e-01 2.9376759325740753e-01 -5.4251677587916642e+00 5.4646429731737296e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 4.8569245571739139e-01 1.0060381387941336e-01 -6.8822813558875930e+00 6.9014516263541132e+00 1.3497999999999999e-01 2 0 0 -232 0 V -64 0 0 0 0 0 0 2 0 P 468 211 5.4242964372678981e-01 2.5659558084054174e-01 -4.6751799976374775e+00 4.7155974176884552e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 -211 9.1064439321094903e-01 5.9204192206884143e-01 -1.0651869676393593e+01 1.0708015420055522e+01 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 470 221 2.2019565731044830e+00 9.2360351908322658e-01 -1.6732169890740082e+01 1.6910554898210464e+01 5.4744999999999999e-01 2 0 0 -233 0 P 471 22 1.2115916448734458e-01 -1.5230573120576490e-02 -1.0255400424733969e+00 1.0327845332949126e+00 0 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 472 211 1.1527139608604106e-01 2.6105592889059354e-01 -4.5919772979842381e+00 4.6029526374781637e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 -211 -6.9992332945062977e-02 7.4689105715834514e-01 -2.9786213969671644e+00 3.0748024959832501e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 1 0 P 474 130 1.8064043563899981e-01 5.2651182804209745e-02 -1.6823284103714333e+00 1.7644566935125963e+00 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 475 3122 8.4472415619960561e-01 1.1078987015223720e+00 -5.3810844107006268e+00 5.6693747212887073e+00 1.1156800000000000e+00 2 0 0 -234 0 P 476 22 -9.8598278145744915e-04 7.6126831346799012e-02 -1.0260528206728177e-01 1.2776584254430359e-01 0 1 0 0 0 0 V -69 0 0 0 0 0 0 1 0 P 477 310 6.0225755872477182e-01 1.1242131948421070e+00 -1.9072827040737363e+00 2.3477589775479601e+00 4.9767000000000000e-01 2 0 0 -235 0 V -70 0 0 0 0 0 0 2 0 P 478 -321 -1.2797018112367220e+00 1.0891822172074384e+00 -3.2785128133180961e+00 3.7170205615592704e+00 4.9359999999999998e-01 1 0 0 0 0 P 479 111 -2.6290473186989433e-01 5.4438904062421190e-01 -1.9346414865100472e+00 2.0313876063708611e+00 1.3497999999999999e-01 2 0 0 -236 0 V -71 0 0 0 0 0 0 2 0 P 480 311 -2.3695482103242878e+00 2.1199035415580325e+00 -7.9902745375021871e+00 8.6139951451180377e+00 4.9767000000000000e-01 2 0 0 -237 0 P 481 211 1.3654403463030401e-02 6.2239570807993909e-02 -5.3066969340872860e-01 5.5240412318411281e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 482 -321 -8.3214779154106144e-01 6.2482074263165210e-01 -2.0244156253980856e+00 2.3291136708510725e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 -5.7645887063087353e-01 -1.3835918379340809e-01 -9.3207831489986781e-01 1.1134172009069994e+00 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 3 0 P 484 -211 -7.2263010904183769e-03 4.5989582904613885e-02 -2.9645599927705185e-01 3.3095801179386047e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 211 7.6706475382477102e-02 4.6315163138443000e-01 -1.5084718656914695e+00 1.5859887992991515e+00 1.3957000000000000e-01 1 0 0 0 0 P 486 111 -4.0022851546777044e-01 7.2596201726224130e-01 -2.6074413999682990e+00 2.7393747406606570e+00 1.3497999999999999e-01 2 0 0 -238 0 V -74 0 0 0 0 0 0 3 0 P 487 -211 2.0017648826801460e-01 4.9708230775862816e-01 -3.1994403838661558e+00 3.2470078536947784e+00 1.3957000000000000e-01 1 0 0 0 0 P 488 211 1.7205082478009634e-01 2.5488839849180944e-01 -9.6687310689123662e-01 1.0241547596543912e+00 1.3957000000000000e-01 1 0 0 0 0 P 489 111 -1.7718472103615896e-02 5.3879843541470462e-01 -1.3728204253898657e+00 1.4810378857499331e+00 1.3497999999999999e-01 2 0 0 -239 0 V -75 0 7.7910612322964771e-05 3.2683453624272717e-04 -9.5852485778480042e-04 1.0158822679596910e-03 0 2 0 P 490 22 3.2279765593727849e-01 1.4415364879398609e+00 -4.0227527063989568e+00 4.2854130617223722e+00 0 1 0 0 0 0 P 491 22 2.3456768965608288e-01 8.9660768540632518e-01 -2.8344458534637140e+00 2.9821151283573744e+00 0 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 492 -211 -5.6597686015039507e-03 8.7643576602483925e-02 -3.3842114554354208e-01 3.7645993963674451e-01 1.3957000000000000e-01 1 0 0 0 0 P 493 211 5.7128407758675337e-01 -8.5400874004159577e-02 -1.5337243488521246e+00 1.6448249054980582e+00 1.3957000000000000e-01 1 0 0 0 0 P 494 111 4.6583301087725498e-01 1.6481769460746565e-01 -1.8748179395968716e+00 1.9435347111675025e+00 1.3497999999999999e-01 2 0 0 -240 0 V -77 0 0 0 0 0 0 2 0 P 495 211 2.7873053703474332e-01 2.7413778748373008e-01 -1.6634292296301196e+00 1.7144441739788452e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 3.5137906990495282e-01 9.5782781134931147e-02 -2.7848106126090555e-01 4.7792561535265304e-01 1.3497999999999999e-01 2 0 0 -241 0 V -78 0 0 0 0 0 0 3 0 P 497 111 1.5705163685562742e-01 6.0218538018331651e-02 -1.4629054886427720e-01 2.6059933623689180e-01 1.3497999999999999e-01 2 0 0 -242 0 P 498 111 8.4620840174896642e-02 7.5723277026571853e-03 -3.1589680842446843e-01 3.5387627882002370e-01 1.3497999999999999e-01 2 0 0 -243 0 P 499 111 -7.0126187153923270e-02 7.2938077376706198e-02 -3.6370408744729044e-01 4.0092132505271372e-01 1.3497999999999999e-01 2 0 0 -244 0 V -79 0 0 0 0 0 0 2 0 P 500 22 6.9201785624490253e-01 -2.7933343564580110e-01 -1.9446514819956560e+00 2.0829270913931142e+00 0 1 0 0 0 0 P 501 113 1.7098775524861871e+00 -5.4901181087643791e-01 -4.7763503676659935e+00 5.1658474905033698e+00 8.0458824715434962e-01 2 0 0 -245 0 V -80 0 0 0 0 0 0 2 0 P 502 321 3.3416064748977070e-01 5.3900595366280968e-01 -1.2986785817206634e+00 1.5272189676122843e+00 4.9359999999999998e-01 1 0 0 0 0 P 503 -211 6.9134525051081408e-01 7.5983295269706957e-02 -1.0040988660089385e+00 1.2294006808946951e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 504 -213 5.7599265033244884e-01 -1.1317292705646986e+00 -3.0534888011895442e+00 3.3850198481924174e+00 7.2248656636421427e-01 2 0 0 -246 0 P 505 211 1.4824251157229434e-01 -3.0640990815115987e-01 -3.0575656972790222e-01 4.7836151484231837e-01 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 506 -311 1.6855311441662357e-01 -1.0326791945483300e+00 -1.7439740823502599e+00 2.0937902235042465e+00 4.9767000000000000e-01 2 0 0 -247 0 P 507 111 -3.9731249016131870e-01 -8.8604575201993985e-01 -1.6103855702672452e+00 1.8853369923798051e+00 1.3497999999999999e-01 2 0 0 -248 0 V -83 0 0 0 0 0 0 2 0 P 508 211 -2.8217634991960966e-01 -4.6769570773357066e-01 -4.7319574790483387e-01 7.3604128160149729e-01 1.3957000000000000e-01 1 0 0 0 0 P 509 -211 3.7926115101129781e-01 -7.1220883115773459e-01 -7.5942060586254811e-01 1.1168168521983004e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 3 0 P 510 111 7.9392142432130566e-02 1.3995103155379544e-02 -3.0176624543287495e-01 3.4026672255004242e-01 1.3497999999999999e-01 2 0 0 -249 0 P 511 111 1.9004907937718801e-01 -3.0547844706576177e-01 -3.8956307039349336e-01 5.4718801193760813e-01 1.3497999999999999e-01 2 0 0 -250 0 P 512 221 3.1212869346114647e-01 -6.6050064524042795e-01 -1.2441273765588656e+00 1.5431266491276825e+00 5.4744999999999999e-01 2 0 0 -251 0 V -85 0 0 0 0 0 0 2 0 P 513 211 -4.4050265565609981e-01 2.3752944899911579e-01 -1.2469885408369599e-01 5.3431490517454860e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 -4.0222020519569956e-01 -3.4999850296980917e-01 -6.8580616596807131e-01 8.7910735591769673e-01 1.3497999999999999e-01 2 0 0 -252 0 V -86 0 0 0 0 0 0 3 0 P 515 -211 -2.4953467528284611e-02 2.2954404097671809e-02 -2.0566905860417647e-01 2.5085678539017547e-01 1.3957000000000000e-01 1 0 0 0 0 P 516 211 2.4712577972756411e-01 -4.1360611102664335e-01 -5.1058529429666277e-01 7.1576413275362594e-01 1.3957000000000000e-01 1 0 0 0 0 P 517 111 -1.8744204504598122e-01 -4.0896868081909549e-01 -5.5679821602164781e-01 7.2844612423076316e-01 1.3497999999999999e-01 2 0 0 -253 0 V -87 0 0 0 0 0 0 2 0 P 518 211 -7.5100641066162888e-01 -1.4098477225986608e+00 2.4755778764642331e-01 1.6224813936979017e+00 1.3957000000000000e-01 1 0 0 0 0 P 519 111 -2.2272609329441924e-02 -1.1426906244729595e-01 -1.8338030730786894e-01 2.5573702365370254e-01 1.3497999999999999e-01 2 0 0 -254 0 V -88 0 0 0 0 0 0 2 0 P 520 211 -1.0866729081778854e-01 -1.3394417902354187e-02 3.6542715446109281e-01 4.0620780475287782e-01 1.3957000000000000e-01 1 0 0 0 0 P 521 111 -2.3382515413303218e-01 -4.4186137212906473e-01 -8.7965636441164244e-02 5.2523635487237097e-01 1.3497999999999999e-01 2 0 0 -255 0 V -89 0 0 0 0 0 0 2 0 P 522 211 1.9912901336615588e-01 -4.8469144213509774e-01 9.6762243392125724e-01 1.1092119353716301e+00 1.3957000000000000e-01 1 0 0 0 0 P 523 111 -2.2226243894760417e-01 -3.1600821545971036e-01 1.4263501620814192e-01 4.3338912336797875e-01 1.3497999999999999e-01 2 0 0 -256 0 V -90 0 -2.3960068173845973e-04 -9.8032839007319402e-05 5.0542697034637717e-06 2.6141340010060293e-04 0 2 0 P 524 22 -2.1617847807141891e-01 -1.5262594469304824e-01 1.1630186043001624e-02 2.6488313385739609e-01 0 1 0 0 0 0 P 525 22 -6.8340793357743579e-01 -2.1544066190621247e-01 7.3461887863804608e-03 7.1659964343338400e-01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 526 321 -3.5595427781648104e-01 -7.0707020787462427e-01 7.0570996556760446e-01 1.1697517866031009e+00 4.9359999999999998e-01 1 0 0 0 0 P 527 -211 -1.0006872140606207e+00 -1.2500276636882492e+00 1.8232718279239435e+00 2.4305851155167200e+00 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 528 -321 3.4109883415469050e-01 -6.7246940674982714e-01 -2.2329969814228301e-02 9.0150047433601377e-01 4.9359999999999998e-01 1 0 0 0 0 P 529 211 8.2218181532978163e-02 -1.5815638937130500e-01 3.9052560129440350e-01 4.5140148763591043e-01 1.3957000000000000e-01 1 0 0 0 0 V -93 0 -3.6190018540976206e-05 -1.3481622419048722e-05 5.0884564147482015e-05 7.0898204925963200e-05 0 2 0 P 530 22 -8.1257054613663532e-02 -6.4804685310316870e-02 3.8844777118226578e-02 1.1095617545689739e-01 0 1 0 0 0 0 P 531 22 -7.7578689276835811e-02 5.6346817537871923e-03 1.8448441487314962e-01 2.0021164301675037e-01 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 532 -311 3.8152892904177416e-01 2.6588885353089003e-01 4.3633960733650834e-02 6.8252513327865083e-01 4.9767000000000000e-01 2 0 0 -257 0 P 533 -211 3.9819391360093304e-01 -1.4932826590938650e-01 3.4599062304583139e-01 5.6572663006435742e-01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 534 22 2.0455218916916449e+00 -7.5210496989423226e-02 -1.4727172555985607e-01 2.0521952610306209e+00 0 1 0 0 0 0 P 535 22 4.5494425813221234e-01 1.2620796631360598e-01 -2.6371328863192550e-01 5.4078408572141867e-01 0 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 536 -211 1.5267042378387122e-01 5.3752436340813714e-01 3.3948221439460208e-01 6.6855714665683774e-01 1.3957000000000000e-01 1 0 0 0 0 P 537 211 1.7345105846343234e+00 6.4101519127689710e-01 8.3675591414069092e-02 1.8563159303186387e+00 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 538 211 1.0503576110977743e-01 1.7510903572394232e-01 3.0347500499837088e-01 3.9150038194469283e-01 1.3957000000000000e-01 1 0 0 0 0 P 539 -211 5.4604647872843803e-01 3.9344142958673967e-01 2.8633708278737446e-01 7.4460165546832335e-01 1.3957000000000000e-01 1 0 0 0 0 P 540 111 1.0065419691920641e-01 1.3372833365544146e-01 -1.1108664066937982e-01 2.4202143854402519e-01 1.3497999999999999e-01 2 0 0 -258 0 V -98 0 0 0 0 0 0 2 0 P 541 -2212 9.5432644946355938e-01 2.2975358641145367e+00 1.2766911088762454e+00 2.9495255210663820e+00 9.3827000000000005e-01 1 0 0 0 0 P 542 211 2.1818437448205125e-01 3.6549829293328073e-01 3.7078037893258781e-03 4.4798097740217319e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 543 311 1.1943868405958551e+00 9.2117669331855812e-01 1.9683098882319252e+00 2.5292381600619258e+00 4.9767000000000000e-01 2 0 0 -259 0 P 544 211 -7.4719861641863727e-02 2.6291722138737361e-01 5.5230431830457771e-01 6.3184520884764239e-01 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 545 213 1.1537839840124720e+00 4.3637463277644828e-01 2.6040887740547212e+00 2.9443750657385839e+00 6.0533121734369277e-01 2 0 0 -260 0 P 546 -211 9.6598461145748771e-01 9.2042135632085198e-01 2.5916231865376425e+00 2.9182687108358807e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 547 -311 2.3896261989631169e+00 9.9364312124290155e-01 5.3376398224220027e+00 5.9527904654850268e+00 4.9767000000000000e-01 2 0 0 -261 0 P 548 -211 5.1295118895951328e-02 5.8288280542751793e-02 3.6778637133387554e-01 4.0096796968102044e-01 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 549 -211 2.4697216140177644e-01 1.2299503212885898e+00 3.6318104855200177e+00 3.8449057503375186e+00 1.3957000000000000e-01 1 0 0 0 0 P 550 211 4.3970908996649551e-02 9.0235499197451857e-02 9.2574225622719797e-01 9.4157017583291580e-01 1.3957000000000000e-01 1 0 0 0 0 P 551 111 -1.4498539406066394e-02 1.2275040762955203e+00 2.4352508870633294e+00 2.7305023252708942e+00 1.3497999999999999e-01 2 0 0 -262 0 V -103 0 1.5226095488422484e-06 5.1158347340348636e-05 1.3255878041685615e-04 1.4240365376784087e-04 0 2 0 P 552 22 4.7875897315085861e-02 2.9444575609278212e-01 6.2596822015985809e-01 6.9341662618866828e-01 0 1 0 0 0 0 P 553 22 -2.5901611949622493e-02 4.4387098711765055e-01 1.2871187368953332e+00 1.3617514419208170e+00 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 554 321 -3.3950323505114878e-02 1.3671112325462267e-01 4.8996188703163339e+00 4.9264336583422645e+00 4.9359999999999998e-01 1 0 0 0 0 P 555 -211 -1.4558651344983081e-01 -3.1976029005744594e-01 1.7562194371909947e+00 1.7964488783329053e+00 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 556 -321 2.2718036952352816e-01 6.6854038455635889e-01 6.2596263165208264e+00 6.3186327436051934e+00 4.9359999999999998e-01 1 0 0 0 0 P 557 211 -2.3912361338317861e-01 2.3569464228559550e-01 4.4976042051217568e+00 4.5122782979010143e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 3 0 P 558 -211 6.5901691871380186e-01 6.9672018288126292e-01 1.5428312136063907e+01 1.5458719787391903e+01 1.3957000000000000e-01 1 0 0 0 0 P 559 211 2.3602346682311737e-01 4.0569452546339685e-01 7.6557552136611138e+00 7.6713990119978446e+00 1.3957000000000000e-01 1 0 0 0 0 P 560 111 6.0413878056837100e-01 1.3856634595218964e-01 9.1120957236764877e+00 9.1341497894582684e+00 1.3497999999999999e-01 2 0 0 -263 0 V -107 0 3.5924182704047233e+01 3.1232373472416544e+01 1.1792791329478027e+03 1.1805397907291681e+03 0 2 0 P 561 -2212 1.1936453517802790e+00 1.0023255969145903e+00 3.7768628295139990e+01 3.7812419649070407e+01 9.3827000000000005e-01 1 0 0 0 0 P 562 211 3.1167573390613018e-01 3.0639590501577318e-01 1.1646378842553908e+01 1.1655412482743957e+01 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 1 0 P 563 130 5.9514444561636537e-01 -1.6143336009791356e-01 6.3058633554819439e+00 6.3554579479224405e+00 4.9767000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 3 0 P 564 211 7.5654089441837258e-01 4.4864118082525561e-03 1.1992734434203285e+01 1.2017384625909393e+01 1.3957000000000000e-01 1 0 0 0 0 P 565 -211 1.0577277257971009e-01 -3.6425958363242916e-02 2.3195736099415267e+00 2.3264600247369489e+00 1.3957000000000000e-01 1 0 0 0 0 P 566 111 5.9571201602446688e-01 -2.8614097484673723e-01 1.7669667410028975e+01 1.7682537019470995e+01 1.3497999999999999e-01 2 0 0 -264 0 V -110 0 0 0 0 0 0 2 0 P 567 321 4.4156542826302292e-01 -1.2557782099826903e-01 8.2162414397446852e+00 8.2438470493296752e+00 4.9359999999999998e-01 1 0 0 0 0 P 568 -211 8.1316012658701442e-01 -1.2799301689962329e-02 1.5971457176253672e+01 1.5992758277776842e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 569 -311 8.2777701903887357e-01 -8.4943699918391447e-01 1.8617578017747526e+01 1.8661957150434340e+01 4.9767000000000000e-01 2 0 0 -265 0 P 570 -211 8.7364427488686253e-02 -8.6646037388925901e-01 1.3268770994414160e+01 1.3298050594347176e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 571 211 1.0737754536272262e+00 -1.0018143566691982e+00 2.5051547290025695e+01 2.5094942262123947e+01 1.3957000000000000e-01 1 0 0 0 0 P 572 111 5.4605936449400794e-01 -1.8103069937429761e-01 5.0217051564376458e+00 5.0563519677985225e+00 1.3497999999999999e-01 2 0 0 -266 0 V -113 0 0 0 0 0 0 2 0 P 573 311 1.1101996488117138e-01 -1.0951485577087501e+00 1.9322095035791246e+01 1.9359821998073809e+01 4.9767000000000000e-01 2 0 0 -267 0 P 574 211 3.8618235058852951e-01 -5.8359341679880938e-01 1.8123070552145563e+01 1.8137113444729366e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 575 -211 3.3614006443307270e-01 -1.4337270850705278e-01 1.6113774798273827e+01 1.6118522386088820e+01 1.3957000000000000e-01 1 0 0 0 0 P 576 111 -4.7334673187797593e-01 -4.5467425281840151e-01 2.9288151480535191e+01 2.9295815785738604e+01 1.3497999999999999e-01 2 0 0 -268 0 V -115 0 0 0 0 0 0 2 0 P 577 211 -3.4542385116419605e-01 -2.0308783016417986e-01 7.9406289745025642e+00 7.9519576582954432e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 -211 -9.1322442884312738e-01 -9.1383211714608836e-01 3.3248489020507570e+01 3.3273872181149521e+01 1.3957000000000000e-01 1 0 0 0 0 V -116 0 -3.5743248832362565e-05 -5.2491549530194959e-05 1.7383653620602075e-03 1.7395463939004323e-03 0 2 0 P 579 22 -4.6308673373465747e-01 -7.0190114757049271e-01 2.4131818871823004e+01 2.4146465509601903e+01 0 1 0 0 0 0 P 580 22 -9.5572127293104006e-02 -1.1852984938940864e-01 3.0384369091615335e+00 3.0422495308022799e+00 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 581 22 -1.3361737509541940e+00 -3.6327405298620485e-01 6.4549028391536353e+01 6.4563878404427342e+01 0 1 0 0 0 0 P 582 22 -1.7523783243522764e-01 -3.0981908528308899e-01 1.4684686266031502e+01 1.4688999519888906e+01 0 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 583 -211 -5.2155236971007579e-01 -2.2778498481383008e-01 9.3042726635703076e+01 9.3044571912953245e+01 1.3957000000000000e-01 1 0 0 0 0 P 584 211 -5.6517097947730432e-01 -1.8415354003181159e-01 4.5314248092535344e+01 4.5318361518694523e+01 1.3957000000000000e-01 1 0 0 0 0 V -119 0 -4.5793910226813457e-05 -5.9344263334498331e-05 5.0930786100008025e-03 5.0936368136393143e-03 0 2 0 P 585 22 -2.9908733351039973e-01 -3.4675254653355714e-01 3.5266841556800046e+01 3.5269814345329806e+01 0 1 0 0 0 0 P 586 22 -4.5361874808628161e-01 -6.2867819739093045e-01 4.8447155016327599e+01 4.8453357318358925e+01 0 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 587 211 -4.5171572809970700e-01 -4.4628433781110144e-01 7.2325212658501698e+01 7.2328134793395463e+01 1.3957000000000000e-01 1 0 0 0 0 P 588 -211 -8.5334453668888488e-01 -6.6145769959661649e-01 5.7306227013043092e+01 5.7316567041667646e+01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 589 211 -3.1384908884479346e-01 3.4605208759320888e-01 1.7486033352242565e+01 1.7492829830491569e+01 1.3957000000000000e-01 1 0 0 0 0 P 590 -211 -3.9204710371561474e-01 -2.9513578389963580e-01 3.9070222693466086e+01 3.9073553551787455e+01 1.3957000000000000e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 591 211 4.2917615438589754e-02 1.0071688953236686e-01 3.1979128425008504e+01 3.1979620392081561e+01 1.3957000000000000e-01 1 0 0 0 0 P 592 111 -8.7559670025335268e-02 -3.7128583814962320e-02 2.6839642168790987e+00 2.6890386284764456e+00 1.3497999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 3 0 P 593 211 7.8944751876251600e-03 -1.6932375501724287e-01 5.3190393949371781e+00 5.3235695474507789e+00 1.3957000000000000e-01 1 0 0 0 0 P 594 -211 -4.0008635070184546e-02 -1.0305646632586207e-01 6.5461717305146285e+00 6.5485926302084660e+00 1.3957000000000000e-01 1 0 0 0 0 P 595 111 -4.2499096976959236e-02 -5.5125271156957194e-02 1.3245954395479114e+00 1.3332732831775749e+00 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 2 0 P 596 2212 5.6352170961868209e-01 1.6129912224707832e-01 2.7975018207475784e+01 2.7996884977181853e+01 9.3827000000000005e-01 1 0 0 0 0 P 597 211 9.8160060316235073e-02 -2.0567246729063079e-01 4.1476266192408717e+00 4.1562270052029362e+00 1.3957000000000000e-01 1 0 0 0 0 V -125 0 -4.0991268397546864e-05 2.5094388617958725e-07 6.2965780306042387e-04 6.3106787684498911e-04 0 2 0 P 598 22 -1.6730677811864544e-01 -4.6375217921498089e-02 3.2604174579712728e+00 3.2650366336513850e+00 0 1 0 0 0 0 P 599 22 -3.9341837715714195e-01 4.9807913591680852e-02 5.3527575715868885e+00 5.3674269876656995e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 600 -2212 3.3164945983629629e-01 7.6373284233993566e-01 3.6731740350452519e+01 3.6753154680716051e+01 9.3827000000000005e-01 1 0 0 0 0 P 601 -211 -1.8190416098519827e-01 -5.2547183958036751e-02 4.4558273238320281e+00 4.4620317407021819e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 602 -211 6.5433454565274141e-01 5.8928498390623529e-01 1.3450091467137980e+01 1.3479608701634104e+01 1.3957000000000000e-01 1 0 0 0 0 P 603 211 3.6062042742763756e-01 -1.5016923289647202e-01 9.1100164716343919e+00 9.1194560029388132e+00 1.3957000000000000e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 3 0 P 604 -211 1.7717837996400887e-01 1.1249582504576922e-01 9.2915951657473173e+00 9.2950130714280501e+00 1.3957000000000000e-01 1 0 0 0 0 P 605 211 -3.1404597002457658e-02 -1.6335497638900481e-01 7.4984972277582163e+00 7.5016405910055166e+00 1.3957000000000000e-01 1 0 0 0 0 P 606 111 -2.2343620376129039e-01 -3.7240759804867123e-02 4.1372233170451089e+00 4.1456178052063404e+00 1.3497999999999999e-01 2 0 0 -271 0 V -129 0 0 0 0 0 0 2 0 P 607 -211 5.0099097170032914e-01 -2.1477602235994686e-01 1.9276427950658721e+01 1.9284638316943951e+01 1.3957000000000000e-01 1 0 0 0 0 P 608 111 -3.6834530967891349e-01 6.1513137492884805e-02 8.2987667978572706e+00 8.3082616773224522e+00 1.3497999999999999e-01 2 0 0 -272 0 V -130 0 0 0 0 0 0 2 0 P 609 22 4.7604447559128349e-01 1.3080927466096209e-01 1.3796844212960698e+01 1.3805674182950479e+01 0 1 0 0 0 0 P 610 22 -2.1751861099026073e-02 1.0653368619914312e-01 1.6826969259797217e+01 1.6827320554381700e+01 0 1 0 0 0 0 V -131 0 0 0 0 0 0 2 0 P 611 311 4.7098533088092615e-01 1.0481742312183380e-01 4.8231903246413850e+01 4.8236884021197120e+01 4.9767000000000000e-01 2 0 0 -273 0 P 612 211 -6.2514437694836514e-02 -2.3528712116935116e-01 1.7796636369836804e+01 1.7798848669209100e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 613 -321 4.6062503506410429e-01 1.0848619219528627e-01 4.4934697838775328e+01 4.4939900483855823e+01 4.9359999999999998e-01 1 0 0 0 0 P 614 211 4.3260893296635870e-02 6.1797796992016527e-02 1.7649815196947916e+00 1.7720976334180985e+00 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 3 0 P 615 22 -1.3356003827783264e-01 -1.3370262035304173e-01 1.8219271168134537e+01 1.8220251276328010e+01 0 1 0 0 0 0 P 616 -211 -4.2976729809706610e-01 1.8027929989374636e-01 5.5178612698476073e+01 5.5180757331426769e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 211 -8.0031808541851435e-02 -3.2244323446023050e-02 1.4124673606335193e+01 1.4125626678387583e+01 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 618 -211 -5.0043980621591690e-02 -1.4559213681579025e-01 8.5037693210309069e+00 8.5063078900604978e+00 1.3957000000000000e-01 1 0 0 0 0 P 619 111 6.9288782073510191e-01 -6.3675756588985111e-01 7.2848647933587486e+01 7.2854850758765693e+01 1.3497999999999999e-01 2 0 0 -274 0 V -135 0 2.4616126553143117e-05 5.9434677834509524e-05 1.8503020725271171e-02 1.8503143450202542e-02 0 2 0 P 620 22 5.0236033271880212e-02 5.8763598985889016e-02 1.1985705517334125e+01 1.1985954845896025e+01 0 1 0 0 0 0 P 621 22 1.1524905074093408e-01 3.4079368446748620e-01 1.1240323652852057e+02 1.1240381223413026e+02 0 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 622 2212 -3.2692432127900378e-01 -3.7822529222015616e-01 3.5441240345896142e+02 3.5441399804470768e+02 9.3827000000000005e-01 1 0 0 0 0 P 623 111 -2.0497888199571837e-01 -6.0576811965009046e-02 1.8621983852676709e+02 1.8622001011284428e+02 1.3497999999999999e-01 2 0 0 -275 0 V -137 0 0 0 0 0 0 2 0 P 624 211 -7.8520043249890259e-01 -4.0523512179335913e-01 1.2705380417881731e+03 1.2705383567078695e+03 1.3957000000000000e-01 1 0 0 0 0 P 625 -211 8.5574226557472696e-02 -1.7550811024319598e-02 8.6448479326511560e+01 8.6448636129382720e+01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 626 -213 -5.6657326074122638e-01 1.4674414742448985e+00 -3.0102829577235326e+01 3.0155218161124917e+01 8.2610171821819933e-01 2 0 0 -276 0 P 627 211 -2.1217908958500889e-01 6.4996410542047622e-01 -1.0521697252108728e+01 1.0544812286348417e+01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 628 -321 1.4098749267786342e-01 -2.4430571488371505e-02 -1.5652479619708265e+01 1.5660914198452701e+01 4.9359999999999998e-01 1 0 0 0 0 P 629 111 8.8587265175152849e-02 4.8146148880818962e-01 -2.4416733456807513e+01 2.4422013536355678e+01 1.3497999999999999e-01 2 0 0 -277 0 V -140 0 0 0 0 0 0 2 0 P 630 211 -5.1847883092511682e-01 -1.8274955177550154e+00 3.0468208277843445e+02 3.0468803653270538e+02 1.3957000000000000e-01 1 0 0 0 0 P 631 111 3.2882288517353406e-02 -2.1618094032737588e-02 5.0939830090200765e+01 5.0940024124511474e+01 1.3497999999999999e-01 2 0 0 -278 0 V -141 0 1.5534226067332698e-05 -2.3883862162194364e-05 1.0292194063724220e-02 1.0292237726623688e-02 0 2 0 P 632 22 -1.6789851522025390e-02 -3.5343344600640487e-02 1.0358325373957108e+01 1.0358399278068275e+01 0 1 0 0 0 0 P 633 22 2.4155926752811108e-01 -3.1023948179169158e-01 1.3856254387935175e+02 1.3856310174694082e+02 0 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 634 2212 -1.2627205801852985e+00 -1.9870769726433808e+00 5.2175625640623946e+02 5.2176241181959938e+02 9.3827000000000005e-01 1 0 0 0 0 P 635 111 -6.3516058919020846e-01 -5.8795551417360992e-01 1.5337422159757443e+02 1.5337672310661412e+02 1.3497999999999999e-01 2 0 0 -279 0 V -143 0 0 0 0 0 0 2 0 P 636 -2212 1.2884045163114022e-01 -9.3072265779115326e-01 4.7361394026022606e+02 4.7361580168311275e+02 9.3827000000000005e-01 1 0 0 0 0 P 637 111 -6.5028991280665499e-02 -5.7578594952948292e-03 3.5289276892381267e+01 3.5289595422875102e+01 1.3497999999999999e-01 2 0 0 -280 0 V -144 0 0 0 0 0 0 2 0 P 638 211 5.6377022886411610e-01 7.0468862043375058e-01 2.9242313405582959e+01 2.9256568425192302e+01 1.3957000000000000e-01 1 0 0 0 0 P 639 -211 -2.5828678420705037e-01 -3.6694755663809232e-02 1.9368068683657928e+01 1.9370328414556635e+01 1.3957000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 640 -211 4.5238663618475800e-01 2.3584603487198672e-01 8.2536957246315524e+01 8.2538651965523286e+01 1.3957000000000000e-01 1 0 0 0 0 P 641 111 -9.9103364156996054e-02 7.6974870285989117e-01 1.1228392619163797e+02 1.1228668948344655e+02 1.3497999999999999e-01 2 0 0 -281 0 V -146 0 0 0 0 0 0 2 0 P 642 2112 -1.5117112598699323e-01 3.2716154644703971e-01 4.1451207847656789e+01 4.1463421363912431e+01 9.3957000000000002e-01 1 0 0 0 0 P 643 -211 -3.9834810052599090e-02 4.4917349578827248e-01 2.0502958607160220e+01 2.0508391820745867e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 644 -211 -1.6042261667327912e-01 3.1608244505338619e-02 1.4870921520795755e+00 1.5025502822660126e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 111 -1.9207318288900868e+00 7.4830919081881608e-01 5.3240590112381643e+00 5.7107794003202113e+00 1.3497999999999999e-01 2 0 0 -282 0 V -148 0 0 0 0 0 0 2 0 P 646 -321 -6.0820399533479286e-01 -1.1448600281295802e-01 1.9912849704527376e+00 2.1428662903532394e+00 4.9359999999999998e-01 1 0 0 0 0 P 647 211 4.1752133818855688e-02 -3.0391809064896058e-01 6.3204698972664497e-01 7.1629088268988261e-01 1.3957000000000000e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 648 321 -7.3787643717396956e-01 1.0722121832271346e-01 3.4369330110118961e+00 3.5513529123952825e+00 4.9359999999999998e-01 1 0 0 0 0 P 649 -211 -4.2494438784734134e-01 -2.5808360831164157e-01 1.1122736109391760e+00 1.2263022678498894e+00 1.3957000000000000e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 2 0 P 650 22 8.8191717309188081e-02 -1.5892411126188236e-01 5.5395266259481168e-01 5.8300789406165365e-01 0 1 0 0 0 0 P 651 22 -1.7536704496423841e+00 -1.5837751984898055e-01 6.8869809480847657e+00 7.1085125071300945e+00 0 1 0 0 0 0 V -151 0 -3.7494020449174015e-05 -2.7871371405278861e-05 2.7026405030452187e-04 2.7432146567708723e-04 0 2 0 P 652 22 -5.5283233542016674e-01 -4.9272445161698691e-01 4.2214541319390504e+00 4.2859160006202472e+00 0 1 0 0 0 0 P 653 22 -4.2124162921889829e-01 -2.3135839997984495e-01 2.7998567817945768e+00 2.8408043258889393e+00 0 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 654 211 -6.6994162379431746e-02 -1.5386071109607902e-01 7.5692849922271066e-01 7.8777019113917857e-01 1.3957000000000000e-01 1 0 0 0 0 P 655 111 1.1124862586118056e+00 -5.8049721622009132e-01 2.7580156684752191e+00 3.0330632571039757e+00 1.3497999999999999e-01 2 0 0 -283 0 V -153 0 0 0 0 0 0 3 0 P 656 211 2.4901720276773606e-01 -3.2909700489140598e-01 7.8659958588044987e-01 8.9918468587385159e-01 1.3957000000000000e-01 1 0 0 0 0 P 657 -211 1.1872147067106650e-01 4.2974234558142525e-03 4.3608937680027215e-01 4.7304015147205974e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -8.1794944726226296e-02 -5.0726197199603695e-01 1.5634171056381918e+00 1.6512110003927951e+00 1.3497999999999999e-01 2 0 0 -284 0 V -154 0 2.0923122427572518e-04 -1.3499237390357372e-04 6.6288352142961299e-04 7.0847770112943630e-04 0 2 0 P 659 22 1.1063275637796059e+00 -7.0471854362504482e-01 3.3627614394742134e+00 3.6095364526379572e+00 0 1 0 0 0 0 P 660 22 1.2573507434656303e-01 -9.0187001158155311e-02 5.4064266768078295e-01 5.6234997840831324e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 661 -211 1.0341819979000027e-02 -1.3217098873842445e-01 3.2587284531564309e-01 3.7848252234242447e-01 1.3957000000000000e-01 1 0 0 0 0 P 662 211 1.8702675028948273e-01 -1.3750081036034598e-01 9.8117709403969999e-01 1.0178770814503029e+00 1.3957000000000000e-01 1 0 0 0 0 P 663 111 4.6602741280392174e-01 -2.7204174162210010e-01 3.8421469271454187e+00 3.8822030947443342e+00 1.3497999999999999e-01 2 0 0 -285 0 V -156 0 0 0 0 0 0 1 0 P 664 310 1.1250933057029675e+00 -3.2166255647717928e-01 3.3498881114104386e+00 3.5831170138087955e+00 4.9767000000000000e-01 2 0 0 -286 0 V -157 0 0 0 0 0 0 1 0 P 665 310 2.3632805233485215e+00 1.8400486514361297e-01 5.4239640776534985e+00 5.9402032260698414e+00 4.9767000000000000e-01 2 0 0 -287 0 V -158 0 0 0 0 0 0 2 0 P 666 2212 2.3822641701382263e+00 9.9521669446779304e-01 9.4389607047676822e+00 9.8305629861325947e+00 9.3827000000000005e-01 1 0 0 0 0 P 667 111 2.8462652567965174e-01 4.0272606162341978e-01 2.5491405965836793e+00 2.5999111372087653e+00 1.3497999999999999e-01 2 0 0 -288 0 V -159 0 0 0 0 0 0 2 0 P 668 -2212 9.3219088019711627e-01 1.6983117196881325e+00 5.5187010135674566e+00 5.9236520833353481e+00 9.3827000000000005e-01 1 0 0 0 0 P 669 22 7.0173493921531060e-01 9.0934871078458357e-01 3.6881486241736172e+00 3.8628729304385416e+00 0 1 0 0 0 0 V -160 0 5.1208097510513832e-06 -1.1937036336229869e-05 8.6614584561093749e-06 1.8237514163359588e-05 0 2 0 P 670 22 5.0313553346833975e-02 -1.9058802146312884e-03 6.1456755889013143e-02 7.9448215047154061e-02 0 1 0 0 0 0 P 671 22 2.3007581250875604e-02 -1.6901182430012057e-01 6.2560341434798952e-02 1.8168142961983946e-01 0 1 0 0 0 0 V -161 0 0 0 0 0 0 2 0 P 672 -211 -3.3266945641901347e-01 3.9365890254359998e-01 -7.7529603768803565e-02 5.3956178807111710e-01 1.3957000000000000e-01 1 0 0 0 0 P 673 111 -7.7305620507478801e-01 -2.2353829928069222e-01 9.6435059947867233e-02 8.2164748440988111e-01 1.3497999999999999e-01 2 0 0 -289 0 V -162 0 0 0 0 0 0 2 0 P 674 211 6.6215977371972276e-03 -2.3297986374935378e-01 -2.9884937725328442e-01 4.0387398734498442e-01 1.3957000000000000e-01 1 0 0 0 0 P 675 111 -4.5575644036160634e-01 -1.6931342265430435e-01 -7.6243250300010745e-01 9.1427779698131484e-01 1.3497999999999999e-01 2 0 0 -290 0 V -163 0 2.7906312147786087e-05 4.9916913802408438e-05 -1.3649096637412569e-03 1.3662650666832496e-03 0 2 0 P 676 22 -3.5980278164173653e-03 6.3590443019611503e-02 -8.2379306517793383e-01 8.2625159877778964e-01 0 1 0 0 0 0 P 677 22 1.8495781644082585e-01 2.6081361610669679e-01 -8.0465917709339578e+00 8.0529418391213596e+00 0 1 0 0 0 0 V -164 0 0 0 0 0 0 2 0 P 678 211 1.4380927109399666e+00 1.2436648158280612e+00 -5.5879500282833931e+01 5.5912009841030795e+01 1.3957000000000000e-01 1 0 0 0 0 P 679 111 2.8270655869209110e-02 3.6082447295188746e-01 -5.1578179961842743e+00 5.1722625235409936e+00 1.3497999999999999e-01 2 0 0 -291 0 V -165 0 0 0 0 0 0 2 0 P 680 -211 -2.8085716016221995e-01 2.2473974746921294e-01 1.4069037887182894e+00 1.4588511761371650e+00 1.3957000000000000e-01 1 0 0 0 0 P 681 211 -1.0335971970122753e+00 7.6848007484124703e-01 1.5977116848025343e+00 2.0569509483101909e+00 1.3957000000000000e-01 1 0 0 0 0 V -166 0 0 0 0 0 0 3 0 P 682 211 -3.7404136723391851e-01 -5.8782366454882280e-02 3.3934893883671402e-01 5.2725686168873998e-01 1.3957000000000000e-01 1 0 0 0 0 P 683 -211 -5.4943598931308424e-01 1.5242603772270988e-01 4.0715486719552485e-01 7.1440077975132288e-01 1.3957000000000000e-01 1 0 0 0 0 P 684 111 -1.8100006464785048e-01 -5.4466244058327548e-02 2.7349074290911451e-01 3.5880967378448247e-01 1.3497999999999999e-01 2 0 0 -292 0 V -167 0 0 0 0 0 0 2 0 P 685 3122 -6.0001436068443570e-01 6.6785487984680425e-01 1.4818182216516391e+00 2.0607218342079960e+00 1.1156800000000000e+00 2 0 0 -293 0 P 686 111 -1.6503081604657610e-01 3.1975416822672192e-01 8.9811766177896912e-01 9.7688936586631159e-01 1.3497999999999999e-01 2 0 0 -294 0 V -168 0 0 0 0 0 0 2 0 P 687 321 -5.4210652039448470e-01 2.0269739570898304e-01 2.7501402987916235e-01 8.0885066007996598e-01 4.9359999999999998e-01 1 0 0 0 0 P 688 111 -4.6635047915464095e-01 5.0769431224050299e-01 7.6741222668883435e-01 1.0403736877490872e+00 1.3497999999999999e-01 2 0 0 -295 0 V -169 0 0 0 0 0 0 2 0 P 689 -2212 6.9380311708904741e-02 1.0331342137350602e-01 8.0753147906837708e-01 1.2441643674672109e+00 9.3827000000000005e-01 1 0 0 0 0 P 690 -211 -1.1855631536307232e-01 -5.7199833949749021e-02 5.3449372112074810e-02 1.9915833197614946e-01 1.3957000000000000e-01 1 0 0 0 0 V -170 0 0 0 0 0 0 2 0 P 691 22 -5.1018491026434265e-01 -2.6955960047100536e-01 8.9626986482993365e-01 1.0659506046106408e+00 0 1 0 0 0 0 P 692 111 -2.0271888050928871e-01 -1.3081527469181903e-01 -1.2395247387951383e-01 3.0297095040364330e-01 1.3497999999999999e-01 2 0 0 -296 0 V -171 0 0 0 0 0 0 2 0 P 693 2212 1.5094786108251648e-01 5.4550729135816500e-01 -9.2911873949030388e-02 1.0997029921351624e+00 9.3827000000000005e-01 1 0 0 0 0 P 694 211 2.3276167554148522e-01 2.0055684246062813e-02 2.0902712447594941e-02 2.7294126906557070e-01 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 3 0 P 695 211 -6.5233812945980874e-01 5.8469946712053622e-01 -1.1641885891351657e-01 8.9467962847540372e-01 1.3957000000000000e-01 1 0 0 0 0 P 696 -211 -1.1520166978120956e-01 -6.5013808954830984e-02 -6.1081352950996801e-02 2.0176455747607994e-01 1.3957000000000000e-01 1 0 0 0 0 P 697 111 -1.0268258612478068e-01 2.8920672468355735e-01 -1.5748125512662737e-02 3.3563648036622379e-01 1.3497999999999999e-01 2 0 0 -297 0 V -173 0 -2.9105745984458169e-04 3.1735458629848784e-04 1.5534510686168208e-04 4.6092465206384019e-04 0 2 0 P 698 22 -3.4073586128239791e-01 4.5353517293347906e-01 1.6276568890341239e-01 5.9015908849721244e-01 0 1 0 0 0 0 P 699 22 -3.8993205168362077e-01 3.4314879924414415e-01 2.2721120803205166e-01 5.6694182806376181e-01 0 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 700 -311 -1.6139282770580921e+00 -1.1391146424941991e+00 -3.0774353490636468e+00 3.6906138254765803e+00 4.9767000000000000e-01 2 0 0 -298 0 P 701 -211 -4.1832983612489905e-01 3.4725187982490101e-02 -7.2407170928050679e-01 8.4850769917137403e-01 1.3957000000000000e-01 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 702 130 -7.6901130539858142e-01 5.8253327008267874e-01 -8.6226388250620745e-01 1.3863252975253419e+00 4.9767000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 703 -211 -1.9533092182076045e-01 2.5458966306573461e-01 -8.5699801088895966e-01 9.2568647020841011e-01 1.3957000000000000e-01 1 0 0 0 0 P 704 111 -1.1600362484817872e-01 2.4517952358272668e-02 1.7169033591044922e-01 2.4850582047670916e-01 1.3497999999999999e-01 2 0 0 -299 0 V -177 0 0 0 0 0 0 2 0 P 705 211 1.0904894139620378e+00 -8.1560655159453133e-01 -1.3842450134665936e+00 1.9467910137388453e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 2.7328522613008571e-01 -1.8984657563855886e-01 4.1545414113880942e-02 3.6148604251969813e-01 1.3497999999999999e-01 2 0 0 -300 0 V -178 0 0 0 0 0 0 2 0 P 707 22 9.6326749031345027e-02 -9.0399338513269659e-02 -4.3735039892982269e-01 4.5686568532409993e-01 0 1 0 0 0 0 P 708 22 8.7662940659213109e-02 -2.7322164987534503e-01 1.0073592813182969e-01 3.0410950057866909e-01 0 1 0 0 0 0 V -179 0 -1.8883292023725535e-04 4.7989408273075853e-05 2.0487671225911716e-04 2.8512211586079558e-04 0 2 0 P 709 22 -4.3444576817237884e-01 1.0448214083180483e-01 3.7290646108812497e-01 5.8199559444806337e-01 0 1 0 0 0 0 P 710 22 -2.5689105495182951e-01 7.1212039067730049e-02 3.7716834158606621e-01 4.6186591833261664e-01 0 1 0 0 0 0 V -180 0 0 0 0 0 0 3 0 P 711 211 -7.0567920883720353e-02 -6.2205586911696725e-02 4.1979846592653960e+00 4.2013574414501420e+00 1.3957000000000000e-01 1 0 0 0 0 P 712 -211 -4.6268061203443712e-02 -2.8330783425183187e-01 2.0572647869744340e+00 2.0818794996495242e+00 1.3957000000000000e-01 1 0 0 0 0 P 713 111 -2.2460288969141613e-02 4.9781100629646344e-02 4.0846140835103495e-01 4.3363918765788134e-01 1.3497999999999999e-01 2 0 0 -301 0 V -181 0 0 0 0 0 0 2 0 P 714 2212 3.0491540539580858e-01 -4.6472793073800051e-01 1.3480885412940916e+01 1.3524923939298102e+01 9.3827000000000005e-01 1 0 0 0 0 P 715 111 1.8546092380815404e-01 -1.1090955724109160e-01 4.7086194224817843e+00 4.7155077298547479e+00 1.3497999999999999e-01 2 0 0 -302 0 V -182 0 -4.8363716351816611e-06 -8.8642463716156222e-06 1.0847190805438608e-04 1.0895856513769370e-04 0 2 0 P 716 22 -8.1195409253238079e-02 -2.2621500094908964e-01 3.1484625522438834e+00 3.1576228976906471e+00 0 1 0 0 0 0 P 717 22 -2.5156420815849090e-01 -3.8367676373770904e-01 4.3147915867739028e+00 4.3391149843203660e+00 0 1 0 0 0 0 V -183 0 0 0 0 0 0 2 0 P 718 -2212 9.6632530901641353e-02 2.5745216325096104e-01 2.9109063211479608e+01 2.9125479070827428e+01 9.3827000000000005e-01 1 0 0 0 0 P 719 -211 2.4343539542737902e-01 -7.8018332653322031e-02 3.8176394185866505e+00 3.8287332327054999e+00 1.3957000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 3 0 P 720 -211 -1.4541883330556275e-02 -1.6281550778841983e-01 6.6534694749878955e+00 6.6569404530492013e+00 1.3957000000000000e-01 1 0 0 0 0 P 721 211 -1.8335089500627619e-01 7.3986326078489505e-03 2.4746300781186910e+00 2.4853462734383287e+00 1.3957000000000000e-01 1 0 0 0 0 P 722 111 1.7712749086122054e-01 -3.7546710862667032e-02 1.5839843383882826e+00 1.6000030900516291e+00 1.3497999999999999e-01 2 0 0 -303 0 V -185 0 0 0 0 0 0 2 0 P 723 2212 3.0348089158652819e-01 -1.9252286258557388e-02 1.5461106793712183e+01 1.5492535143789649e+01 9.3827000000000005e-01 1 0 0 0 0 P 724 211 1.9006469048515656e-01 5.3501487511052062e-02 2.2201147925271498e+00 2.2332434870906894e+00 1.3957000000000000e-01 1 0 0 0 0 V -186 0 0 0 0 0 0 2 0 P 725 -321 1.0431931660706265e-01 -1.3336524386296167e-01 7.4483543305762883e+00 7.4666118154021195e+00 4.9359999999999998e-01 1 0 0 0 0 P 726 111 -8.2493132017137330e-02 -6.5129020157912643e-01 9.6772663344212138e+00 9.7004477912736160e+00 1.3497999999999999e-01 2 0 0 -304 0 V -187 0 0 0 0 0 0 2 0 P 727 311 -4.0791813210247418e-01 1.2048263290626060e-01 -6.8195664414823581e-02 6.5820919537406619e-01 4.9767000000000000e-01 2 0 0 -305 0 P 728 211 1.1756303965296924e-01 1.1808519062841803e-01 1.6400178488144995e-01 2.7228946157076450e-01 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 2 0 P 729 211 4.0010388244410228e-01 2.2831022984359459e-01 -5.0606455209669787e-01 6.9841949685479887e-01 1.3957000000000000e-01 1 0 0 0 0 P 730 111 -8.9904357031190176e-03 -4.5771876015396079e-01 1.1528478587285572e-01 4.9101677525799586e-01 1.3497999999999999e-01 2 0 0 -306 0 V -189 0 0 0 0 0 0 3 0 P 731 -211 -3.0634765001748865e-01 -2.0200896671172042e-01 -9.0272292707333557e-01 9.8440081941606761e-01 1.3957000000000000e-01 1 0 0 0 0 P 732 211 1.3548360762026876e-01 3.1060697033544599e-02 -1.5247367286294997e-01 2.4909552515115657e-01 1.3957000000000000e-01 1 0 0 0 0 P 733 111 -7.5502768889507327e-02 -1.2707513126324954e-01 -1.2418710286514316e-01 2.3556484035949019e-01 1.3497999999999999e-01 2 0 0 -307 0 V -190 0 0 0 0 0 0 1 0 P 734 130 -1.4781620764428541e-01 -7.9733833728499515e-02 -2.8679059124676263e+00 2.9156074610876805e+00 4.9767000000000000e-01 1 0 0 0 0 V -191 0 -2.0386475450159285e+01 9.2493443907125709e+01 -2.3757128068482202e+03 2.3824209527918965e+03 0 2 0 P 735 2112 -7.9989955341908309e-02 6.7761718727069609e-01 -1.5101423292005061e+01 1.5146000814560034e+01 9.3957000000000002e-01 1 0 0 0 0 P 736 111 -7.0155802035885562e-02 3.5941492287368333e-03 -2.3956276115911050e+00 2.4004553751914823e+00 1.3497999999999999e-01 2 0 0 -308 0 V -192 0 0 0 0 0 0 3 0 P 737 -211 -4.4261013923813008e-01 3.0319364687963635e-01 -8.8318430046415770e+00 8.8492237380688330e+00 1.3957000000000000e-01 1 0 0 0 0 P 738 211 -1.9272104327373218e-01 -7.1855786762900081e-02 -1.8468390368704888e+00 1.8634910430749447e+00 1.3957000000000000e-01 1 0 0 0 0 P 739 111 -2.6749530969750010e-02 1.2840097134977094e-01 -1.1363682832660735e+00 1.1518484372797271e+00 1.3497999999999999e-01 2 0 0 -309 0 V -193 0 2.5847375188241594e-05 3.0355245983885519e-06 -3.6573993488473025e-04 3.6692422680045675e-04 0 2 0 P 740 22 1.6467014497876398e-01 1.5215012035604946e-02 -3.0153371205263344e+00 3.0198684911205351e+00 0 1 0 0 0 0 P 741 22 8.8182319702375445e-02 1.4480068053298552e-02 -5.6252110664070842e-01 5.6957509539586382e-01 0 1 0 0 0 0 V -194 0 0 0 0 0 0 2 0 P 742 22 6.0024293786894618e-02 1.3039140952127340e-01 -2.6454214179094698e-01 3.0097737507145184e-01 0 1 0 0 0 0 P 743 113 -2.7843546952695936e-01 -6.2040166251635664e-02 -5.1785015599446282e+00 5.2304546813992188e+00 6.7779235382440572e-01 2 0 0 -310 0 V -195 0 -7.4745706846974710e-06 3.3003258525019828e-06 4.3236626008768736e-06 1.0394318812196929e-05 0 2 0 P 744 22 -1.1832589585201417e-01 1.1017273876023190e-01 3.4681267042303343e-02 1.6535368238648801e-01 0 1 0 0 0 0 P 745 22 -9.3965167086818069e-02 -1.6437631711670876e-02 8.8118418457784731e-02 1.2986340528972518e-01 0 1 0 0 0 0 V -196 0 9.5445795300597210e-06 8.2780092107790235e-07 -3.2281104599245692e-05 3.4297930514831522e-05 0 2 0 P 746 22 1.2213549523585829e-01 -1.8807866027546447e-02 -5.5884947556716158e-01 5.7234915162225053e-01 0 1 0 0 0 0 P 747 22 7.5498685102245930e-02 3.5948668930923300e-02 -1.0957699914425093e-01 1.3783859035673712e-01 0 1 0 0 0 0 V -197 0 2.8173382986769643e-06 -4.1600620315639859e-05 -9.6071178397019676e-04 9.6234265413740444e-04 0 2 0 P 748 22 3.4184378819125940e-03 -3.2746187292072029e-02 -1.4036700512932684e-01 1.4417660915937935e-01 0 1 0 0 0 0 P 749 22 6.7534357821160806e-03 -1.1745098796182968e-01 -3.3282398351204012e+00 3.3303184147390996e+00 0 1 0 0 0 0 V -198 0 1.0716462863784775e-05 -2.9304739523256470e-06 -2.1240928736210753e-05 2.4307697039621209e-05 0 2 0 P 750 22 1.9057479684730622e-02 -3.1919607970495034e-02 -1.4981227570774039e-01 1.5435597447995350e-01 0 1 0 0 0 0 P 751 22 3.3970166758679593e-01 -6.6184995162190619e-02 -5.6127846174169782e-01 6.5940214449226342e-01 0 1 0 0 0 0 V -199 0 -7.8334684686856503e-06 1.3557832302127247e-05 -5.0977769488213359e-05 5.4338625364471809e-05 0 2 0 P 752 22 -1.1950062931452521e-01 7.5781359983040128e-02 -3.5854303501440971e-01 3.8545599344774872e-01 0 1 0 0 0 0 P 753 22 1.8119151141496731e-02 9.9685367828059188e-02 -3.0121600344204230e-01 3.1779955463578036e-01 0 1 0 0 0 0 V -200 0 -2.2793313326524353e-05 3.5913743522291309e-05 6.4248566042360124e-07 4.3969945543388600e-05 0 2 0 P 754 22 -1.3402757346065908e-01 1.0319781471761030e-01 -2.1524732787448365e-02 1.7051830849446534e-01 0 1 0 0 0 0 P 755 22 -1.4269713787469687e-01 3.3281691323390095e-01 2.9324900159821216e-02 3.6330362049056947e-01 0 1 0 0 0 0 V -201 0 2.3672979880148779e-05 3.6410552289561888e-05 -3.6203996205418309e-06 4.4367639562073688e-05 0 2 0 P 756 22 1.5947907338806708e-01 3.6693645264852448e-01 -4.2528750481684530e-02 4.0234889057698758e-01 0 1 0 0 0 0 P 757 22 2.2452692971239738e-01 2.2368926182351653e-01 -1.6198760585754816e-02 3.1735095378104689e-01 0 1 0 0 0 0 V -202 0 -4.6577488882126315e-07 -1.5102411019167415e-06 -7.2785559099385550e-06 7.5238810004953980e-06 0 2 0 P 758 22 -8.4673249629511338e-02 -1.9781711297250301e-01 -8.2410574994128838e-01 8.5173438140883517e-01 0 1 0 0 0 0 P 759 22 2.5624742663167156e-02 6.3566363180583233e-03 -9.8631541544297818e-02 1.0210394335792398e-01 0 1 0 0 0 0 V -203 0 -9.1311250866633152e-05 -8.3882946630217363e-05 -5.3164278551656057e-04 5.4790493763917213e-04 0 2 0 P 760 22 -1.9523384718248751e-01 -1.2201316472214122e-01 -7.3868824837597546e-01 7.7373367235758450e-01 0 1 0 0 0 0 P 761 22 -6.8641359340720645e-02 -1.2039540657377852e-01 -7.9767609329377298e-01 8.0962574066578652e-01 0 1 0 0 0 0 V -204 0 -1.2932815930936896e-05 -5.1806353777785528e-05 -1.6222718399671275e-04 1.7130499538772821e-04 0 2 0 P 762 22 -1.3284530509072803e-01 -2.6940665091296356e-01 -9.5583950621331282e-01 1.0019266341798174e+00 0 1 0 0 0 0 P 763 22 1.4789522464566949e-03 -2.5682149509102142e-01 -6.9199910895368166e-01 7.3812074515842208e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 1 0 P 764 130 -1.4613646657822292e+00 -3.5766375244007109e-03 -5.7119930953425202e+00 5.9169367098924939e+00 4.9767000000000000e-01 1 0 0 0 0 V -206 0 -7.3353592648404433e-04 2.5583431229420707e-04 -3.5722447716420532e-03 3.6567824166410068e-03 0 2 0 P 765 22 -2.3117944882496730e-01 8.9951329099803287e-02 -1.4130546594730964e+00 1.4346632531101038e+00 0 1 0 0 0 0 P 766 22 -9.0466479645522757e-01 3.0619550007791135e-01 -4.1183903865115026e+00 4.2276841714966960e+00 0 1 0 0 0 0 V -207 0 0 0 0 0 0 1 0 P 767 130 -6.4580457008614411e-01 6.9599005487952448e-02 -1.0762290955167421e+01 1.0793353954952442e+01 4.9767000000000000e-01 1 0 0 0 0 V -208 0 -6.4158461762407911e-05 -1.1222768476621097e-04 -1.2335449060238181e-03 1.2412055804229150e-03 0 2 0 P 768 22 -4.7710584389741760e-02 -2.1397128100121610e-01 -1.8182137999136483e+00 1.8313823825603817e+00 0 1 0 0 0 0 P 769 22 -1.3498660105003268e-01 -1.0560748650630904e-01 -1.6944200172544861e+00 1.7030659172627214e+00 0 1 0 0 0 0 V -209 0 -2.5400273601686077e-05 3.2643917365991960e-05 -2.1676794831603860e-04 2.2159467657968418e-04 0 2 0 P 770 22 7.7561651515401240e-03 5.4485201423715671e-02 -1.4463545405207323e-01 1.5475209155578556e-01 0 1 0 0 0 0 P 771 22 -1.7810893317895959e-01 1.6444872699609234e-01 -1.3091685716183648e+00 1.3314234956624629e+00 0 1 0 0 0 0 V -210 0 -2.1867631624109947e-05 -9.1626668948377248e-06 -6.2546703168259209e-04 6.2596137740071579e-04 0 2 0 P 772 22 -2.1278415348651930e-01 -1.9063022344211158e-02 -5.8763768437339978e+00 5.8802589487512380e+00 0 1 0 0 0 0 P 773 22 -1.7993625520707365e-01 -1.4548914999513723e-01 -5.3563744907056643e+00 5.3613703316770254e+00 0 1 0 0 0 0 V -211 0 -1.4018324736635684e-05 2.8397475276675630e-07 -4.4955152816893623e-04 4.5079145158083319e-04 0 2 0 P 774 22 -2.4569505684574104e-02 -6.5044055303412535e-02 -7.6054344730305401e-01 7.6371508101877317e-01 0 1 0 0 0 0 P 775 22 -3.7822327351979067e-02 6.6307951360472489e-02 -1.2402907760290443e+00 1.2426377114680982e+00 0 1 0 0 0 0 V -212 0 -4.5082053373713999e-04 -6.2794373221494951e-05 -1.2762378542823033e-02 1.2770516986705007e-02 0 2 0 P 776 22 -2.0211193018355615e+00 -2.3904774900407702e-01 -5.6143483780803571e+01 5.6180359896532430e+01 0 1 0 0 0 0 P 777 22 -4.3116455220623789e-01 -1.0252859025276254e-01 -1.3278764093076022e+01 1.3286157865329747e+01 0 1 0 0 0 0 V -213 0 -4.0874202403752133e-05 -3.1472986056873502e-05 -1.6391579674176326e-03 1.6399709816133383e-03 0 2 0 P 778 22 -2.2092891523992031e+00 -1.6426650607325979e+00 -8.7635524265671847e+01 8.7678756950471310e+01 0 1 0 0 0 0 P 779 22 -3.2776029677249241e-01 -3.1085371746011148e-01 -1.4106517750554760e+01 1.4113748612346605e+01 0 1 0 0 0 0 V -214 0 7.4857895032635451e-06 2.7151733135302066e-06 -1.7067768962378126e-03 1.7068029328443047e-03 0 2 0 P 780 22 -1.9681863072080079e-02 2.4536693413109560e-03 -5.1981381331059646e+00 5.1981759730772472e+00 0 1 0 0 0 0 P 781 22 2.1989961804736535e-01 7.0167382181286916e-02 -4.0451961734040857e+01 4.0452620278986188e+01 0 1 0 0 0 0 V -215 0 -9.2458000786121088e-05 4.3878083417846777e-05 -2.4743794261092650e-02 2.4744119986536042e-02 0 2 0 P 782 22 -1.1309623999927805e-01 1.2866266126093432e-03 -1.4627869582208911e+01 1.4628306837396551e+01 0 1 0 0 0 0 P 783 22 -5.2998103785894382e-02 7.7537287054928086e-02 -2.9822629407689472e+01 2.9822777295521519e+01 0 1 0 0 0 0 V -216 0 -2.0629819892746654e-06 -6.4454730459481205e-07 -3.0913257070492065e-04 3.0916314014236911e-04 0 2 0 P 784 22 -8.1779470822813741e-02 2.6403514784224900e-02 -4.0339677110088692e+00 4.0348829624789815e+00 0 1 0 0 0 0 P 785 22 7.9604520915532526e-03 -4.9467142968296803e-02 -7.0276232994548709e+00 7.0278019042992312e+00 0 1 0 0 0 0 V -217 0 -3.9568504898696153e-06 -2.1660372043460305e-05 -7.5042785226184473e-03 7.5043528101398542e-03 0 2 0 P 786 22 -5.4178537876773403e-02 -7.0168564869090037e-03 -7.4193351855372098e+00 7.4195363160774326e+00 0 1 0 0 0 0 P 787 22 3.2901778150005730e-02 -1.0945520449720136e-01 -3.2932639562378306e+01 3.2932837890384143e+01 0 1 0 0 0 0 V -218 0 -7.5889735767239290e-06 -1.7616585622494699e-06 -1.2451665158322569e-03 1.2451986174983611e-03 0 2 0 P 788 22 -5.9028608713732979e-02 3.6743680495884598e-02 -1.4846817402229590e+01 1.4846980213156154e+01 0 1 0 0 0 0 P 789 22 -1.7445123994665215e-01 -9.0942284608410223e-02 -2.3461563399775432e+01 2.3462388218080672e+01 0 1 0 0 0 0 V -219 0 5.5997047150177554e-05 -1.7748233307688327e-05 -1.6312299199995172e-02 1.6312410234818886e-02 0 2 0 P 790 22 4.7003713974931549e-01 -9.0249056006197093e-02 -1.2923778170684065e+02 1.2923866797638331e+02 0 1 0 0 0 0 P 791 22 1.0661061039001883e-01 -9.2519131365876139e-02 -3.8743408587888219e+01 3.8743665735445923e+01 0 1 0 0 0 0 V -220 0 -1.0087212821752814e-04 -5.0213200171480156e-05 -2.4712462395408499e-02 2.4712744282081051e-02 0 2 0 P 792 22 -1.4354385501701822e-01 -1.4473571350440814e-01 -3.9799623499376587e+01 3.9800145526834513e+01 0 1 0 0 0 0 P 793 22 -2.4378010348574924e-01 -4.8070523492681400e-02 -5.5090104004926857e+01 5.5090664352390434e+01 0 1 0 0 0 0 V -221 0 1.3568555137079407e-04 1.0974853243790065e-04 -2.6708501549684599e-02 2.6709158965760753e-02 0 2 0 P 794 22 3.9586924332259944e-02 2.0181700533490488e-02 -1.6050387406102203e+01 1.6050448913085848e+01 0 1 0 0 0 0 P 795 22 2.2863977748974840e-01 1.9677203247805641e-01 -3.6747668163592849e+01 3.6748906253685313e+01 0 1 0 0 0 0 V -222 0 1.0577914931693609e-04 -1.6764933076686578e-05 -1.4440575158315634e-02 1.4440999635892201e-02 0 2 0 P 796 22 3.6819365215765321e-01 -1.0950965469694028e-02 -4.3091287395757988e+01 4.3092861774462648e+01 0 1 0 0 0 0 P 797 22 1.4002586685323182e-01 -6.9596725445789306e-02 -2.6288946880948160e+01 2.6289411919190858e+01 0 1 0 0 0 0 V -223 0 9.5362130472282866e-05 1.3292628891111032e-04 -2.4708950773683319e-02 2.4709549132938238e-02 0 2 0 P 798 22 2.0451973280482577e-01 2.6249710157020567e-01 -4.0677047135154289e+01 4.0678408236864470e+01 0 1 0 0 0 0 P 799 22 3.8448066419823013e-02 7.6178300456591852e-02 -2.2277496360252812e+01 2.2277659784374777e+01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 800 310 5.2086989034135367e-01 -6.6916190975271239e-01 -4.7208186087378522e+01 4.7218424287491715e+01 4.9767000000000000e-01 2 0 0 -311 0 V -225 0 -3.9304901476539537e-05 -4.2323077083694294e-05 -9.9367869611703533e-04 9.9563305317679272e-04 0 2 0 P 801 22 -1.0694710881259106e-01 -1.7768696600830605e-01 -4.2079529760600085e+00 4.2130604779310836e+00 0 1 0 0 0 0 P 802 22 -1.1892455959733618e-01 -6.5529113259618105e-02 -1.5023746554523827e+00 1.5084981673524425e+00 0 1 0 0 0 0 V -226 0 1.1995326608396932e-05 -9.3486680183570860e-06 -2.6939917183166611e-04 2.6983507711715441e-04 0 2 0 P 803 22 3.2905158384001702e-02 -5.0389187417534807e-02 -7.0939753953150808e-01 7.1194570632193133e-01 0 1 0 0 0 0 P 804 22 8.0103247836388869e-01 -5.9954777290764849e-01 -1.8019738901144581e+01 1.8047495688566208e+01 0 1 0 0 0 0 V -227 0 4.2290156033974086e-04 -1.3805171994876651e-05 -5.4826155616524196e-03 5.4995044718224272e-03 0 2 0 P 805 22 1.8294110543452782e-01 9.7181848310222765e-03 -3.1728035824214142e+00 3.1780881774740255e+00 0 1 0 0 0 0 P 806 22 5.2839525683475097e-01 -3.2939004398224205e-02 -6.0491624141421649e+00 6.0722856024833405e+00 0 1 0 0 0 0 V -228 0 2.2679536131531108e-05 -7.2652987672529808e-06 -2.2178185130056197e-04 2.2341054831787464e-04 0 2 0 P 807 22 1.3570131712524755e-01 2.2906683565862708e-02 -1.3448130246644336e+00 1.3518363935508677e+00 0 1 0 0 0 0 P 808 22 1.0788944444019723e-01 -1.0094001059035873e-01 -1.0372467205782887e+00 1.0477164584514320e+00 0 1 0 0 0 0 V -229 0 1.1056629690905622e-04 -1.1198820151256999e-04 -1.3426888356911158e-03 1.3521470675573570e-03 0 2 0 P 809 22 5.2235977052407034e-01 -4.6637126903696441e-01 -5.9016819221673273e+00 5.9430809687300865e+00 0 1 0 0 0 0 P 810 22 3.3016915347158268e-02 -9.6147671647899363e-02 -8.4267053033261863e-01 8.4878036861923856e-01 0 1 0 0 0 0 V -230 0 5.6315145644713817e-05 -3.0024102670753490e-05 -7.0631805838184650e-04 7.0952396023410836e-04 0 2 0 P 811 22 1.7105199987135614e-01 -1.4075393374230097e-01 -2.9213843309291558e+00 2.9297707871986014e+00 0 1 0 0 0 0 P 812 22 1.8099827754618414e-01 -4.6939688522949455e-02 -1.4941146534313439e+00 1.5057696731012953e+00 0 1 0 0 0 0 V -231 0 8.8649629880676139e-05 -6.4419245546155343e-05 -5.4585737093899237e-04 5.5770496812013290e-04 0 2 0 P 813 22 2.2939628675459120e-01 -1.0890170759475727e-01 -9.9868630001422787e-01 1.0304642468955227e+00 0 1 0 0 0 0 P 814 22 1.3710430290588635e-01 -1.5742418129985017e-01 -1.2580298147505919e+00 1.2752329110929679e+00 0 1 0 0 0 0 V -232 0 2.1073127306088524e-04 4.3649781922750183e-05 -2.9860704950568084e-03 2.9943880537357144e-03 0 2 0 P 815 22 4.8746494633036569e-01 1.0405332167908148e-01 -6.8761783670835275e+00 6.8942206306152398e+00 0 1 0 0 0 0 P 816 22 -1.7724906129743194e-03 -3.4495077996681209e-03 -6.1029888040657811e-03 7.2309957388734265e-03 0 1 0 0 0 0 V -233 0 0 0 0 0 0 2 0 P 817 22 2.1981981256141512e+00 9.1544471862200683e-01 -1.5807628935823416e+01 1.5985970305395556e+01 0 1 0 0 0 0 P 818 22 3.7584474903318821e-03 8.1588004612197645e-03 -9.2454095491666410e-01 9.2458459281491479e-01 0 1 0 0 0 0 V -234 0 1.3568966362157613e+02 1.7796389630040252e+02 -8.6437392401827026e+02 9.1068255031001445e+02 0 2 0 P 819 2112 6.3642774408701930e-01 9.3920388915009434e-01 -4.6912071999561915e+00 4.9170479961720091e+00 9.3957000000000002e-01 1 0 0 0 0 P 820 111 2.0829641211258629e-01 1.6869481237227757e-01 -6.8987721074443475e-01 7.5232672511669796e-01 1.3497999999999999e-01 2 0 0 -312 0 V -235 0 2.2035047743402609e+00 4.1132055651674619e+00 -6.9782545416979875e+00 8.5898434001910253e+00 0 2 0 P 821 -211 4.8225890476922550e-01 7.4849786999908241e-01 -1.5702180277362945e+00 1.8104936211294518e+00 1.3957000000000000e-01 1 0 0 0 0 P 822 211 1.1999865395554637e-01 3.7571532484302456e-01 -3.3706467633744203e-01 5.3726535641850848e-01 1.3957000000000000e-01 1 0 0 0 0 V -236 0 -1.9997662779832172e-05 4.1408567955432753e-05 -1.4715713852669313e-04 1.5451606381675298e-04 0 2 0 P 823 22 -2.2330946385282019e-02 1.8641213983392407e-01 -6.2011141514337564e-01 6.4790919443626105e-01 0 1 0 0 0 0 P 824 22 -2.4057378548461233e-01 3.5797690079028782e-01 -1.3145300713666714e+00 1.3834784119345997e+00 0 1 0 0 0 0 V -237 0 0 0 0 0 0 1 0 P 825 310 -2.3695482103242878e+00 2.1199035415580325e+00 -7.9902745375021871e+00 8.6139951451180377e+00 4.9767000000000000e-01 2 0 0 -313 0 V -238 0 -5.4403729900797186e-05 9.8681228295821645e-05 -3.5443386009174823e-04 3.7236777922679016e-04 0 2 0 P 826 22 -9.4872357933228985e-02 1.0114962398323252e-01 -5.6552719456772038e-01 5.8228259335772370e-01 0 1 0 0 0 0 P 827 22 -3.0535615753454143e-01 6.2481239327900884e-01 -2.0419142054005786e+00 2.1570921473029330e+00 0 1 0 0 0 0 V -239 0 -2.7149152717012849e-06 8.2557462749715353e-05 -2.1035059436269309e-04 2.2693222928460701e-04 0 2 0 P 828 22 5.5647527899011652e-02 2.5837484475382605e-01 -5.9936292268533542e-01 6.5504970868838819e-01 0 1 0 0 0 0 P 829 22 -7.3366000002627552e-02 2.8042359066087852e-01 -7.7345750270453018e-01 8.2598817706154470e-01 0 1 0 0 0 0 V -240 0 2.8801148418315260e-05 1.0190215750091990e-05 -1.1591473441086268e-04 1.2016329964909286e-04 0 2 0 P 830 22 1.8121295064683121e-01 3.4706626932138523e-02 -9.3347580067874780e-01 9.5153547169192110e-01 0 1 0 0 0 0 P 831 22 2.8462006023042380e-01 1.3011106767532712e-01 -9.4134213891812379e-01 9.9199923947558144e-01 0 1 0 0 0 0 V -241 0 1.4425049995610387e-04 3.9321391765415287e-05 -1.1432391896893057e-04 1.9620123923458840e-04 0 2 0 P 832 22 9.3643854513200078e-02 -3.3994862794255516e-02 -7.8575905052855902e-02 1.2688181524302475e-01 0 1 0 0 0 0 P 833 22 2.5773521539175276e-01 1.2977764392918667e-01 -1.9990515620804966e-01 3.5104380010962832e-01 0 1 0 0 0 0 V -242 0 3.4840073466693549e-05 1.3358780147857961e-05 -3.2452851635030346e-05 5.7810922583450659e-05 0 2 0 P 834 22 8.0586936281424617e-04 9.1245442612979920e-03 -8.4479878905345529e-02 8.4975035588507677e-02 0 1 0 0 0 0 P 835 22 1.5624576749281319e-01 5.1093993757033655e-02 -6.1810669958931676e-02 1.7562430064838405e-01 0 1 0 0 0 0 V -243 0 1.3778104725048645e-06 1.2329388822417840e-07 -5.1434839216736372e-06 5.7618719209304450e-06 0 2 0 P 836 22 1.2012960511642828e-01 4.6537316873266187e-03 -2.7168654584570184e-01 2.9709654733371649e-01 0 1 0 0 0 0 P 837 22 -3.5508764941531643e-02 2.9185960153305670e-03 -4.4210262578766583e-02 5.6779731486307106e-02 0 1 0 0 0 0 V -244 0 -3.5820320174955714e-05 3.7256628238530178e-05 -1.8577934135655019e-04 2.0478983402924468e-04 0 2 0 P 838 22 -4.8803377276646867e-02 -1.5489294103540687e-02 -4.0859590541666407e-02 6.5507205746126437e-02 0 1 0 0 0 0 P 839 22 -2.1322809877276395e-02 8.8427371480246889e-02 -3.2284449690562406e-01 3.3541411930658716e-01 0 1 0 0 0 0 V -245 0 0 0 0 0 0 2 0 P 840 211 1.3796921948417729e-01 -3.1469718001658259e-01 -9.8447662525181145e-01 1.0520189310096364e+00 1.3957000000000000e-01 1 0 0 0 0 P 841 -211 1.5719083330020098e+00 -2.3431463085985532e-01 -3.7918737424141820e+00 4.1138285594937329e+00 1.3957000000000000e-01 1 0 0 0 0 V -246 0 0 0 0 0 0 2 0 P 842 -211 4.0329454417647514e-01 -3.8330086361599736e-01 -6.9618564012738848e-01 9.0206444993185597e-01 1.3957000000000000e-01 1 0 0 0 0 P 843 111 1.7269810615597364e-01 -7.4842840694870127e-01 -2.3573031610621555e+00 2.4829553982605610e+00 1.3497999999999999e-01 2 0 0 -314 0 V -247 0 0 0 0 0 0 1 0 P 844 310 1.6855311441662357e-01 -1.0326791945483300e+00 -1.7439740823502599e+00 2.0937902235042465e+00 4.9767000000000000e-01 2 0 0 -315 0 V -248 0 -1.7856255080454944e-05 -3.9821197049701782e-05 -7.2374909504859523e-05 8.4731940430271104e-05 0 2 0 P 845 22 -3.9575305845809400e-01 -8.4889589240798580e-01 -1.5823466390739938e+00 1.8387674147686131e+00 0 1 0 0 0 0 P 846 22 -1.5594317032246838e-03 -3.7149859611954023e-02 -2.8038931193251432e-02 4.6569577611191605e-02 0 1 0 0 0 0 V -249 0 9.0497656902508217e-06 1.5952763143449028e-06 -3.4397784601023945e-05 3.8786383852783398e-05 0 2 0 P 847 22 1.0315744884574350e-01 -2.3225409622399763e-02 -2.5444071857290962e-01 2.7553758032687492e-01 0 1 0 0 0 0 P 848 22 -2.3765306413612942e-02 3.7220512777779304e-02 -4.7325526859965314e-02 6.4729142223167474e-02 0 1 0 0 0 0 V -250 0 2.1770747511507439e-05 -3.4993561468808474e-05 -4.4625731801163064e-05 6.2682187613097645e-05 0 2 0 P 849 22 1.4400904742497358e-02 -1.6961165819323963e-02 9.6465772232764927e-03 2.4251260904903951e-02 0 1 0 0 0 0 P 850 22 1.7564817463469065e-01 -2.8851728124643783e-01 -3.9920964761676986e-01 5.2293675103270421e-01 0 1 0 0 0 0 V -251 0 0 0 0 0 0 3 0 P 851 111 9.0456306333330419e-02 -6.4252000814510851e-02 -1.4967537015834337e-01 2.3007168403820213e-01 1.3497999999999999e-01 2 0 0 -316 0 P 852 111 2.0367567487717200e-01 -4.3776545817294460e-01 -8.8538578602597773e-01 1.0174723423282217e+00 1.3497999999999999e-01 2 0 0 -317 0 P 853 111 1.7996712250644011e-02 -1.5848318625297245e-01 -2.0906622037454448e-01 2.9558262276125846e-01 1.3497999999999999e-01 2 0 0 -318 0 V -252 0 -9.8261348637894328e-06 -8.5503722783703685e-06 -1.6754066031918671e-05 2.1476363761471681e-05 0 2 0 P 854 22 -1.1306019425167685e-01 -3.7107649797736800e-02 -1.0432620819129998e-01 1.5825151788628394e-01 0 1 0 0 0 0 P 855 22 -2.8916001094402272e-01 -3.1289085317207238e-01 -5.8147995777677142e-01 7.2085583803141284e-01 0 1 0 0 0 0 V -253 0 -1.1992289637938043e-05 -2.6165265493261765e-05 -3.5623200092491507e-05 4.6605002123540403e-05 0 2 0 P 856 22 1.7545326444370193e-02 -6.4621509756881176e-02 -1.0494012344109541e-01 1.2448376404628256e-01 0 1 0 0 0 0 P 857 22 -2.0498737149035143e-01 -3.4434717106221430e-01 -4.5185809258055243e-01 6.0396236018448057e-01 0 1 0 0 0 0 V -254 0 -4.9737866348833793e-06 -2.5517887337507386e-05 -4.0951399456506313e-05 5.7109670963079372e-05 0 2 0 P 858 22 -2.1239092469470786e-02 1.3837721240270323e-02 -9.9334336970494416e-02 1.0251776470162567e-01 0 1 0 0 0 0 P 859 22 -1.0335168599711411e-03 -1.2810678368756628e-01 -8.4045970337374529e-02 1.5321925895207680e-01 0 1 0 0 0 0 V -255 0 -8.5345101948933999e-05 -1.6127736124658262e-04 -3.2107051261913228e-05 1.9170884509869940e-04 0 2 0 P 860 22 -1.3040258587525619e-01 -2.8313687874682986e-01 -1.1822470068101908e-01 3.3338927151389736e-01 0 1 0 0 0 0 P 861 22 -1.0342256825777597e-01 -1.5872449338223488e-01 3.0259064239854829e-02 1.9184708335847361e-01 0 1 0 0 0 0 V -256 0 -5.2777254134770234e-05 -7.5037626577669381e-05 3.3869350730506429e-05 1.0291027135101839e-04 0 2 0 P 862 22 -1.6162490162178894e-01 -1.7474769571717136e-01 1.4670514539039600e-01 2.7961002426009568e-01 0 1 0 0 0 0 P 863 22 -6.0637537325815206e-02 -1.4126051974253900e-01 -4.0701291822540907e-03 1.5377909910788307e-01 0 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 864 130 3.8152892904177416e-01 2.6588885353089003e-01 4.3633960733650834e-02 6.8252513327865083e-01 4.9767000000000000e-01 1 0 0 0 0 V -258 0 4.0831243031246030e-07 5.4248051832670055e-07 -4.5063253808849806e-07 9.8178083760332708e-07 0 2 0 P 865 22 -3.0064507489197062e-02 1.8841463663135230e-02 1.4558546268669212e-04 3.5480932325182471e-02 0 1 0 0 0 0 P 866 22 1.3071870440840347e-01 1.1488686999230623e-01 -1.1123222613206651e-01 2.0654050621884276e-01 0 1 0 0 0 0 V -259 0 0 0 0 0 0 1 0 P 867 310 1.1943868405958551e+00 9.2117669331855812e-01 1.9683098882319252e+00 2.5292381600619258e+00 4.9767000000000000e-01 2 0 0 -319 0 V -260 0 0 0 0 0 0 2 0 P 868 211 1.6901291076602210e-02 1.1918722620863971e-01 4.0310864365950660e-01 4.4324667175780641e-01 1.3957000000000000e-01 1 0 0 0 0 P 869 111 1.1368826929358697e+00 3.1718740656780853e-01 2.2009801303952146e+00 2.5011283939807774e+00 1.3497999999999999e-01 2 0 0 -320 0 V -261 0 0 0 0 0 0 1 0 P 870 130 2.3896261989631169e+00 9.9364312124290155e-01 5.3376398224220027e+00 5.9527904654850268e+00 4.9767000000000000e-01 1 0 0 0 0 V -262 0 -8.1509426487218473e-07 6.9009126000448766e-05 1.3690751709373466e-04 1.5350627557816210e-04 0 2 0 P 871 22 -7.4672255971578477e-02 6.5277065206125473e-01 1.2796149408848698e+00 1.4384366051168711e+00 0 1 0 0 0 0 P 872 22 6.0173716565512084e-02 5.7473342423426554e-01 1.1556359461784595e+00 1.2920657201540231e+00 0 1 0 0 0 0 V -263 0 1.6401498570654929e-04 3.7618769034121152e-05 2.4738028710381251e-03 2.4797902325522578e-03 0 3 0 P 873 22 5.2020600735518030e-01 1.2001102140767959e-01 7.9827521181486185e+00 8.0005842483629905e+00 0 1 0 0 0 0 P 874 -11 2.7959526816798041e-02 2.5635146530379238e-02 6.0680300209676696e-01 6.0798769669385766e-01 5.1000000000000004e-04 1 0 0 0 0 P 875 11 5.5973246396392728e-02 -7.0798219858691771e-03 5.2254060343110209e-01 5.2557784440141997e-01 5.1000000000000004e-04 1 0 0 0 0 V -264 0 2.0508187248544909e-04 -9.8507878535004210e-05 6.0830206226611108e-03 6.0874511587784442e-03 0 2 0 P 876 22 5.6032844905803181e-01 -2.8438709899980813e-01 1.7226214455857608e+01 1.7237671202111347e+01 0 1 0 0 0 0 P 877 22 3.5383566966435041e-02 -1.7538758469291041e-03 4.4345295417136715e-01 4.4486581735964748e-01 0 1 0 0 0 0 V -265 0 0 0 0 0 0 1 0 P 878 130 8.2777701903887357e-01 -8.4943699918391447e-01 1.8617578017747526e+01 1.8661957150434340e+01 4.9767000000000000e-01 1 0 0 0 0 V -266 0 2.0214287014318447e-04 -6.7014811090104591e-05 1.8589588593096527e-03 1.8717845818321237e-03 0 2 0 P 879 22 3.6442772140154478e-01 -1.8512640330485244e-01 3.3811845638512694e+00 3.4058021675007217e+00 0 1 0 0 0 0 P 880 22 1.8163164309246316e-01 4.0957039305548381e-03 1.6405205925863764e+00 1.6505498002978010e+00 0 1 0 0 0 0 V -267 0 0 0 0 0 0 1 0 P 881 130 1.1101996488117138e-01 -1.0951485577087501e+00 1.9322095035791246e+01 1.9359821998073809e+01 4.9767000000000000e-01 1 0 0 0 0 V -268 0 -1.8813983429267827e-04 -1.8071813497690594e-04 1.1641081674790653e-02 1.1644127985272651e-02 0 3 0 P 882 22 -8.1253911750563859e-02 -6.9674430836078785e-02 7.3688144193175980e+00 7.3695917574062424e+00 0 1 0 0 0 0 P 883 -11 -1.6734942637944020e-01 -1.6465097842098494e-01 9.3629773523329405e+00 9.3659201862712926e+00 5.1000000000000004e-04 1 0 0 0 0 P 884 11 -2.2474339374797186e-01 -2.2034884356133783e-01 1.2556359708884655e+01 1.2560303842061071e+01 5.1000000000000004e-04 1 0 0 0 0 V -269 0 -2.4143384539700730e-05 -1.0237700486990975e-05 7.4006651875411394e-04 7.4146571852807381e-04 0 2 0 P 885 22 -1.0475061383233326e-01 -6.8096431915822903e-02 2.3179209290309166e+00 2.3212856886599424e+00 0 1 0 0 0 0 P 886 22 1.7190943806997986e-02 3.0967848100860586e-02 3.6604328784818196e-01 3.6775293981650270e-01 0 1 0 0 0 0 V -270 0 -1.1130013308237482e-05 -1.4436659723141061e-05 3.4689595588799637e-04 3.4916858100135636e-04 0 2 0 P 887 22 2.2678954593222749e-03 -1.6312809674493021e-02 1.1237539436704245e+00 1.1238746269153523e+00 0 1 0 0 0 0 P 888 22 -4.4766992436281509e-02 -3.8812461482464172e-02 2.0084149587748679e-01 2.0939865626222248e-01 0 1 0 0 0 0 V -271 0 -1.5126879463289375e-04 -2.5212408517796934e-05 2.8009461929684809e-03 2.8066293548031957e-03 0 2 0 P 889 22 -6.6546046512675164e-02 -3.7828678332865366e-03 4.5030588037010455e-01 4.5521211790922955e-01 0 1 0 0 0 0 P 890 22 -1.5689015724861524e-01 -3.3457891971580590e-02 3.6869174366750039e+00 3.6904056872971118e+00 0 1 0 0 0 0 V -272 0 -1.5998463957140238e-04 2.6717204949029561e-05 3.6044308971916886e-03 3.6085548396692924e-03 0 2 0 P 891 22 -3.5238112776860953e-01 9.0651629292329353e-02 7.6219765091431348e+00 7.6306563336996502e+00 0 1 0 0 0 0 P 892 22 -1.5964181910303969e-02 -2.9138491799444548e-02 6.7679028871413616e-01 6.7760534362280178e-01 0 1 0 0 0 0 V -273 0 0 0 0 0 0 1 0 P 893 130 4.7098533088092615e-01 1.0481742312183380e-01 4.8231903246413850e+01 4.8236884021197120e+01 4.9767000000000000e-01 1 0 0 0 0 V -274 0 1.0146114868441420e-04 -9.3241867060289178e-05 1.0667394170107711e-02 1.0668302463988534e-02 0 2 0 P 894 22 6.9046600699735794e-01 -6.0272971268812991e-01 7.0131458065329667e+01 7.0137446751236041e+01 0 1 0 0 0 0 P 895 22 2.4218137377440010e-03 -3.4027853201721150e-02 2.7171898682578286e+00 2.7174040075296673e+00 0 1 0 0 0 0 V -275 0 -1.9677495346665651e-05 -5.8152328861965607e-06 1.7876670856970669e-02 1.7876687328834517e-02 0 2 0 P 896 22 -3.0256927049372176e-02 3.4673014412073787e-02 5.6744754882581319e+01 5.6744773542448833e+01 0 1 0 0 0 0 P 897 22 -1.7472195494634618e-01 -9.5249826377082833e-02 1.2947508364418579e+02 1.2947523657039548e+02 0 1 0 0 0 0 V -276 0 0 0 0 0 0 2 0 P 898 -211 -1.6295085265758905e-01 -1.4340963598011052e-02 -2.4379366687281863e+00 2.4474014033762916e+00 1.3957000000000000e-01 1 0 0 0 0 P 899 111 -4.0362240808363742e-01 1.4817824378429096e+00 -2.7664892908507142e+01 2.7707816757748628e+01 1.3497999999999999e-01 2 0 0 -321 0 V -277 0 3.4500436873344810e-05 1.8750586406219189e-04 -9.5091316975901927e-03 9.5111880321070968e-03 0 2 0 P 900 22 5.1203245044532192e-02 4.3921300595803736e-01 -1.9809085465666300e+01 1.9814020208503315e+01 0 1 0 0 0 0 P 901 22 3.7384020130620657e-02 4.2248482850152223e-02 -4.6076479911412136e+00 4.6079933278523670e+00 0 1 0 0 0 0 V -278 0 7.3395258206788883e-06 -4.8252894339579344e-06 1.1370078394960688e-02 1.1370121704593252e-02 0 2 0 P 902 22 -5.0436022822459924e-02 5.3413318921168461e-03 2.3340659869726935e+01 2.3340714973550103e+01 0 1 0 0 0 0 P 903 22 8.3318311339813336e-02 -2.6959425924854435e-02 2.7599170220473827e+01 2.7599309150961371e+01 0 1 0 0 0 0 V -279 0 -1.3166071185151203e-04 -1.2187570017814419e-04 3.1792525447703737e-02 3.1793043978712222e-02 0 2 0 P 904 22 -4.2939345760539993e-01 -4.2075291336614107e-01 1.1627419281476988e+02 1.1627574694011568e+02 0 1 0 0 0 0 P 905 22 -2.0576713158480855e-01 -1.6720260080746888e-01 3.7100028782804550e+01 3.7100976166498413e+01 0 1 0 0 0 0 V -280 0 -5.5705214869147588e-06 -4.9323047160216958e-07 3.0229543979585246e-03 3.0229816839570495e-03 0 2 0 P 906 22 -6.1728489586423588e-02 -4.9935866961568195e-02 1.1357309251259265e+01 1.1357586778271830e+01 0 1 0 0 0 0 P 907 22 -3.3005016942419070e-03 4.4178007466273365e-02 2.3931967641122000e+01 2.3932008644603272e+01 0 1 0 0 0 0 V -281 0 -3.3080573496839958e-05 2.5694111149158480e-04 3.7480227886229830e-02 3.7481150269425841e-02 0 2 0 P 908 22 -1.1797904366522627e-01 3.8847006644673343e-01 5.7503298320342303e+01 5.7504731507638148e+01 0 1 0 0 0 0 P 909 22 1.8875679508230204e-02 3.8127863641315773e-01 5.4780627871295671e+01 5.4781957975808403e+01 0 1 0 0 0 0 V -282 0 -3.4151292475544424e-04 1.3305202555298411e-04 9.4663655651981802e-04 1.0153968119346985e-03 0 2 0 P 910 22 -5.1801286340681463e-01 2.3639995432595312e-01 1.3323166295488869e+00 1.4488926345429274e+00 0 1 0 0 0 0 P 911 22 -1.4027189654832721e+00 5.1190923649286302e-01 3.9917423816892774e+00 4.2618867657772830e+00 0 1 0 0 0 0 V -283 0 1.7058554424157929e-05 -8.9011826252300613e-06 4.2290644058896035e-05 4.6508147172787760e-05 0 2 0 P 912 22 1.9447937519804526e-01 -1.2755866893175860e-01 6.3201874621453691e-01 6.7345462873430406e-01 0 1 0 0 0 0 P 913 22 9.1800688341376036e-01 -4.5293854728833277e-01 2.1259969222606823e+00 2.3596086283696716e+00 0 1 0 0 0 0 V -284 0 -1.6958681987129617e-05 -1.0517146867741304e-04 3.2414586985172913e-04 3.4234832412978017e-04 0 2 0 P 914 22 -3.1796343904919727e-02 -3.0003584968090452e-01 7.0751819998520193e-01 7.6916482101677175e-01 0 1 0 0 0 0 P 915 22 -4.9998600821306569e-02 -2.0722612231513240e-01 8.5589890565298987e-01 8.8204617937602359e-01 0 1 0 0 0 0 V -285 0 8.7461183753685860e-05 -5.1055135597128555e-05 7.2107071208944360e-04 7.2858820942668971e-04 0 2 0 P 916 22 2.5163650729257003e-01 -1.2544752152428462e-01 2.4457114751392295e+00 2.4618209991968740e+00 0 1 0 0 0 0 P 917 22 2.1439090551135168e-01 -1.4659422009781548e-01 1.3964354520061888e+00 1.4203820955474598e+00 0 1 0 0 0 0 V -286 0 2.8969011843936755e+01 -8.2821987839633131e+00 8.6253244849482684e+01 9.2258445308572533e+01 0 2 0 P 918 211 9.5343202561957185e-01 -2.0354336279105331e-01 2.9598952088555270e+00 3.1194425720502106e+00 1.3957000000000000e-01 1 0 0 0 0 P 919 -211 1.7166128008339560e-01 -1.1811919368612596e-01 3.8999290255491142e-01 4.6367444175858469e-01 1.3957000000000000e-01 1 0 0 0 0 V -287 0 3.7980743331475645e+02 2.9571781621845631e+01 8.7169587121469738e+02 9.5466167404659905e+02 0 2 0 P 920 111 2.0681218180490597e+00 2.2740321860487142e-01 4.8547113737665182e+00 5.2834914782840707e+00 1.3497999999999999e-01 2 0 0 -322 0 P 921 111 2.9515870529946170e-01 -4.3398353461258442e-02 5.6925270388697979e-01 6.5671174778576957e-01 1.3497999999999999e-01 2 0 0 -323 0 V -288 0 3.6867214778159014e-05 5.2164457178328883e-05 3.3018606979642309e-04 3.3676229603239586e-04 0 2 0 P 922 22 4.1651177597799828e-02 4.9316757315011284e-02 6.3708378186701997e-01 6.4034577242715973e-01 0 1 0 0 0 0 P 923 22 2.4297534808185192e-01 3.5340930430840850e-01 1.9120568147166592e+00 1.9595653647816056e+00 0 1 0 0 0 0 V -289 0 -8.4121938146304351e-05 -2.4324848390035564e-05 1.0493808981566649e-05 8.9409513057213803e-05 0 2 0 P 924 22 -3.1865830060469857e-01 -1.3841583477470662e-01 -8.7420267116187118e-03 3.4753198254503043e-01 0 1 0 0 0 0 P 925 22 -4.5439790447008943e-01 -8.5122464505985582e-02 1.0517708665948594e-01 4.7411550186484858e-01 0 1 0 0 0 0 V -290 0 -1.0764763691071902e-04 -3.9991074687920234e-05 -1.8008315403456954e-04 2.1594833470019289e-04 0 2 0 P 926 22 -2.8044376771449253e-01 -1.4280804252369445e-01 -3.8489744702480300e-01 4.9718094149470432e-01 0 1 0 0 0 0 P 927 22 -1.7531267264711384e-01 -2.6505380130609914e-02 -3.7753505597530446e-01 4.1709685548661063e-01 0 1 0 0 0 0 V -291 0 8.4493669389685950e-06 1.0784109101094359e-04 -1.5415382315782063e-03 1.5458553267478953e-03 0 2 0 P 928 22 7.7899798144863142e-02 2.0327345775689351e-01 -2.5867021365315055e+00 2.5958459931814355e+00 0 1 0 0 0 0 P 929 22 -4.9629142275654035e-02 1.5755101519499398e-01 -2.5711158596527688e+00 2.5764165303595590e+00 0 1 0 0 0 0 V -292 0 -1.7587439201072120e-05 -5.2923835013556578e-06 2.6574586160111737e-05 3.4864867781780926e-05 0 2 0 P 930 22 5.3882727647464367e-03 -2.2870935989278033e-02 -3.1883103697110614e-03 2.3712412771090402e-02 0 1 0 0 0 0 P 931 22 -1.8638833741259692e-01 -3.1595308069049519e-02 2.7667905327882558e-01 3.3509726101339216e-01 0 1 0 0 0 0 V -293 0 -1.0038303736753983e+01 1.1173282799978594e+01 2.4790975627029930e+01 3.4476094314049384e+01 0 2 0 P 932 2112 -5.6961236911671009e-01 6.5802805999895364e-01 1.2441792157361586e+00 1.7855623440716317e+00 9.3957000000000002e-01 1 0 0 0 0 P 933 111 -3.0401991567725557e-02 9.8268198478506461e-03 2.3763900591548062e-01 2.7515949013636437e-01 1.3497999999999999e-01 2 0 0 -324 0 V -294 0 -5.2105784737630021e-06 1.0095715611004020e-05 2.8356598285565754e-05 3.0843686185217766e-05 0 2 0 P 934 22 -1.1554198951964391e-01 2.9372149557289051e-01 6.5041736352846435e-01 7.2295574904903537e-01 0 1 0 0 0 0 P 935 22 -4.9488826526932178e-02 2.6032672653831402e-02 2.4770029825050474e-01 2.5393361681727639e-01 0 1 0 0 0 0 V -295 0 -2.7411111318426101e-05 2.9841215846465407e-05 4.5106894735093671e-05 6.1151001751614503e-05 0 2 0 P 936 22 -1.3974338644683063e-01 7.8621911869273309e-02 2.1725958300934489e-01 2.7002100935112894e-01 0 1 0 0 0 0 P 937 22 -3.2660709270781035e-01 4.2907240037122968e-01 5.5015264367948946e-01 7.7035267839795851e-01 0 1 0 0 0 0 V -296 0 -3.6242247944082118e-05 -2.3387262243868194e-05 -2.2160325078442122e-05 5.4165395333662156e-05 0 2 0 P 938 22 2.0211950803072649e-02 -6.6848189740403557e-03 -9.0094689131723533e-03 2.3116666932733489e-02 0 1 0 0 0 0 P 939 22 -2.2293083131236138e-01 -1.2413045571777867e-01 -1.1494300496634147e-01 2.7985428347090968e-01 0 1 0 0 0 0 V -297 0 -5.1239232493992545e-05 1.4431590753741875e-04 -7.8584100278437059e-06 1.6748463687943599e-04 0 2 0 P 940 22 -1.2798423627658423e-02 8.2397545079576154e-03 -3.6868557825090451e-02 3.9887137748984357e-02 0 1 0 0 0 0 P 941 22 -8.9884162497122264e-02 2.8096697017559974e-01 2.1120432312427714e-02 2.9574934261723945e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 942 310 -1.6139282770580921e+00 -1.1391146424941991e+00 -3.0774353490636468e+00 3.6906138254765803e+00 4.9767000000000000e-01 2 0 0 -325 0 V -299 0 -2.9506715227400172e-05 6.2363933811666086e-06 4.3671202995910868e-05 6.3210011641914781e-05 0 2 0 P 943 22 -1.4503076292377315e-01 3.3675378659342045e-02 1.4802577142411166e-01 2.0995138086663098e-01 0 1 0 0 0 0 P 944 22 2.9027138075594421e-02 -9.1574263010693793e-03 2.3664564486337542e-02 3.8554439610078282e-02 0 1 0 0 0 0 V -300 0 2.9331202850010532e-05 -2.0375885294962217e-05 4.4589932142247646e-06 3.8797634949888513e-05 0 2 0 P 945 22 -1.2285633238050535e-02 -8.8535723007624259e-03 1.6601546742343980e-02 2.2470733872816697e-02 0 1 0 0 0 0 P 946 22 2.8557085936813625e-01 -1.8099300333779644e-01 2.4943867371536959e-02 3.3901530864688145e-01 0 1 0 0 0 0 V -301 0 -7.4087511968694553e-06 1.6420794468766204e-05 1.3473508520542283e-04 1.4304022779866357e-04 0 2 0 P 947 22 -3.3989857908162266e-02 5.1507529532657048e-03 3.7525982208959235e-01 3.7683122849800432e-01 0 1 0 0 0 0 P 948 22 1.1529568939020650e-02 4.4630347676380640e-02 3.3201586261442609e-02 5.6807959159877047e-02 0 1 0 0 0 0 V -302 0 3.0400454891184664e-05 -1.8180115372426648e-05 7.7182928572590206e-04 7.7295840593768854e-04 0 2 0 P 949 22 5.3563631278922282e-02 -1.0731287075622364e-01 1.8901383810176788e+00 1.8939398655242086e+00 0 1 0 0 0 0 P 950 22 1.3189729252923174e-01 -3.5966864848679500e-03 2.8184810414641057e+00 2.8215678643305391e+00 0 1 0 0 0 0 V -303 0 1.0193606601441698e-04 -2.1607961466127212e-05 9.1157578814379846e-04 9.2079450692699859e-04 0 2 0 P 951 22 1.4818317484282215e-01 1.8890821016172465e-02 8.2838291645449857e-01 8.4174424423266725e-01 0 1 0 0 0 0 P 952 22 2.8944316018398402e-02 -5.6437531878839500e-02 7.5560142193378399e-01 7.5825884581896186e-01 0 1 0 0 0 0 V -304 0 -2.9268634652314048e-05 -2.3107832732901154e-04 3.4335024728661266e-03 3.4417272738250767e-03 0 2 0 P 953 22 -5.0105535960899984e-02 -2.0846594056573917e-01 2.3583689214913899e+00 2.3680947157929197e+00 0 1 0 0 0 0 P 954 22 -3.2387596056237353e-02 -4.4282426101338723e-01 7.3188974129298243e+00 7.3323530754806967e+00 0 1 0 0 0 0 V -305 0 0 0 0 0 0 1 0 P 955 310 -4.0791813210247418e-01 1.2048263290626060e-01 -6.8195664414823581e-02 6.5820919537406619e-01 4.9767000000000000e-01 2 0 0 -326 0 V -306 0 -2.0639059820738570e-07 -1.0507705281307463e-05 2.6465564858279787e-06 1.1272117316872786e-05 0 2 0 P 956 22 -1.1286484158259689e-02 -3.7547039651450409e-01 3.7021863456400919e-02 3.7745996046891911e-01 0 1 0 0 0 0 P 957 22 2.2960484551406719e-03 -8.2248363639456729e-02 7.8262922416454800e-02 1.1355681478907677e-01 0 1 0 0 0 0 V -307 0 -3.7598134066910939e-06 -6.3279637185199106e-06 -6.1841484909486474e-06 1.1730428671096623e-05 0 2 0 P 958 22 -5.1476502099211043e-02 -5.8120219769541383e-02 1.4357267699028483e-02 7.8955185708168923e-02 0 1 0 0 0 0 P 959 22 -2.4026266790296288e-02 -6.8954911493708151e-02 -1.3854437056417165e-01 1.5660965465132137e-01 0 1 0 0 0 0 V -308 0 -2.0386499682113232e+01 9.2493445148552027e+01 -2.3757136343027751e+03 2.3824217819139708e+03 0 2 0 P 960 22 4.0111131635873584e-02 -1.4813014747215564e-04 -8.1114351653936057e-01 8.1213467432901210e-01 0 1 0 0 0 0 P 961 22 -1.1026693367175915e-01 3.7422793762089887e-03 -1.5844840950517443e+00 1.5883207008624693e+00 0 1 0 0 0 0 V -309 0 -4.9244303861713426e-06 2.3637859132699299e-05 -2.0919867755158302e-04 2.1204848231614714e-04 0 2 0 P 962 22 8.0825218920941057e-03 6.0173402917735222e-02 -9.2562733364862559e-01 9.2761636810499448e-01 0 1 0 0 0 0 P 963 22 -3.4832052861844112e-02 6.8227568432035715e-02 -2.1074094961744791e-01 2.2423206917473282e-01 0 1 0 0 0 0 V -310 0 0 0 0 0 0 2 0 P 964 211 -2.1462545373636992e-02 -6.1498860948390230e-02 -2.5241250065257176e-01 2.9569343269262743e-01 1.3957000000000000e-01 1 0 0 0 0 P 965 -211 -2.5697292415332235e-01 -5.4130530324543447e-04 -4.9260890592920568e+00 4.9347612487065922e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 9.3161001062175739e+00 -1.1968400274468813e+01 -8.4434941542645947e+02 8.4453253236013245e+02 0 2 0 P 966 111 5.0063731806934764e-01 -3.5435763577023871e-01 -3.3891822995155202e+01 3.3897641401631518e+01 1.3497999999999999e-01 2 0 0 -327 0 P 967 111 2.0232572272005978e-02 -3.1480427398247368e-01 -1.3316363092223320e+01 1.3320782885860192e+01 1.3497999999999999e-01 2 0 0 -328 0 V -312 0 1.3568969002755011e+02 1.7796391768603650e+02 -8.6437401147479193e+02 9.1068264568333234e+02 0 2 0 P 968 22 -4.6723738295593992e-04 -9.7805935264604228e-03 -5.8760751225093613e-06 9.7917493345230314e-03 0 1 0 0 0 0 P 969 22 2.0876364949554221e-01 1.7847540589873800e-01 -6.8987133466931227e-01 7.4253497578217520e-01 0 1 0 0 0 0 V -313 0 -4.2458109982578414e+01 3.7984919373136698e+01 -1.4317157744506702e+02 1.5434754678857749e+02 0 2 0 P 970 211 -1.6297322044242408e+00 1.2064000746048089e+00 -4.9048974114102828e+00 5.3093244955929446e+00 1.3957000000000000e-01 1 0 0 0 0 P 971 -211 -7.3981600590004715e-01 9.1350346695322360e-01 -3.0853771260919038e+00 3.3046706495250922e+00 1.3957000000000000e-01 1 0 0 0 0 V -314 0 1.0878694453943537e-04 -4.7145415436653318e-04 -1.4849254224797066e-03 1.5640769734933198e-03 0 2 0 P 972 22 1.7545453157305205e-01 -5.2126459055951813e-01 -1.7585386327855561e+00 1.8425415026587579e+00 0 1 0 0 0 0 P 973 22 -2.7564254170784164e-03 -2.2716381638918318e-01 -5.9876452827659932e-01 6.4041389560180295e-01 0 1 0 0 0 0 V -315 0 1.0198028333576239e+00 -6.2480552328850401e+00 -1.0551627696934750e+01 1.2668132592959866e+01 0 2 0 P 974 -211 -9.5658817117769857e-02 -6.4630855122697950e-01 -9.4409416299586624e-01 1.1565720583622765e+00 1.3957000000000000e-01 1 0 0 0 0 P 975 211 2.6421193153439343e-01 -3.8637064332135052e-01 -7.9987991935439351e-01 9.3721816514196965e-01 1.3957000000000000e-01 1 0 0 0 0 V -316 0 1.1707696612269250e-05 -8.3160916331865627e-06 -1.9372378722668372e-05 2.9778017531107464e-05 0 2 0 P 976 22 2.1925328121442496e-02 -9.4425890739248702e-02 -6.3382668130262124e-02 1.1582025502667656e-01 0 1 0 0 0 0 P 977 22 6.8530978211887930e-02 3.0173889924737848e-02 -8.6292702028081245e-02 1.1425142901152557e-01 0 1 0 0 0 0 V -317 0 8.6823550496553960e-05 -1.8661212924050418e-04 -3.7742522541445351e-04 4.3373152609537573e-04 0 2 0 P 978 22 9.6035201807178130e-03 -1.1507806554771390e-01 -1.3312874088151896e-01 1.7623407848303349e-01 0 1 0 0 0 0 P 979 22 1.9407215469645420e-01 -3.2268739262523072e-01 -7.5225704514445879e-01 8.4123826384518818e-01 0 1 0 0 0 0 V -318 0 4.8157935727117996e-06 -4.2408985547492978e-05 -5.5944649574249375e-05 7.9095830120194671e-05 0 2 0 P 980 22 -1.9484803948457842e-02 -1.6516808926456383e-01 -1.4303223999685724e-01 2.1935901388986809e-01 0 1 0 0 0 0 P 981 22 3.7481516199101853e-02 6.6849030115914091e-03 -6.6033980377687249e-02 7.6223608871390389e-02 0 1 0 0 0 0 V -319 0 1.7305521161008144e+02 1.3346967847786198e+02 2.8518924744035201e+02 3.6646238063327218e+02 0 2 0 P 982 211 4.0182447331291871e-01 5.0396788137379889e-01 6.2435974428965801e-01 9.0815825052633148e-01 1.3957000000000000e-01 1 0 0 0 0 P 983 -211 7.9256236728293650e-01 4.1720881194475928e-01 1.3439501439422674e+00 1.6210799095355946e+00 1.3957000000000000e-01 1 0 0 0 0 V -320 0 7.5739631368522664e-05 2.1131166300144118e-05 1.4663027659880115e-04 1.6662628760427003e-04 0 2 0 P 984 22 2.7750276110261331e-03 1.3084882220781744e-02 3.2894574318907840e-02 3.5510110399657194e-02 0 1 0 0 0 0 P 985 22 1.1341076653248436e+00 3.0410252434702678e-01 2.1680855560763068e+00 2.4656182835811205e+00 0 1 0 0 0 0 V -321 0 -1.7622989070986345e-04 6.4697685719852186e-04 -1.2079064383254033e-02 1.2097805823543705e-02 0 2 0 P 986 22 -1.0511210903395254e-01 3.9570187051699940e-01 -6.3517826338382832e+00 6.3649643481582681e+00 0 1 0 0 0 0 P 987 22 -2.9851029904968485e-01 1.0860805673259104e+00 -2.1313110274668858e+01 2.1342852409590357e+01 0 1 0 0 0 0 V -322 0 3.7980863436586930e+02 2.9571913685095673e+01 8.7169869056336779e+02 9.5466474240711068e+02 0 2 0 P 988 22 9.5824741917701528e-01 1.7193197012028172e-01 2.2353123978632983e+00 2.4381181748943632e+00 0 1 0 0 0 0 P 989 22 1.1098743988720443e+00 5.5471248484589723e-02 2.6193989759032199e+00 2.8453733033897084e+00 0 1 0 0 0 0 V -323 0 3.7980748979533382e+02 2.9571773317282641e+01 8.7169598014498069e+02 9.5466179971275085e+02 0 2 0 P 990 22 2.7461017158097767e-01 -3.8044393028962425e-02 4.0324376894949154e-01 4.8935024202841376e-01 0 1 0 0 0 0 P 991 22 2.0548533718484013e-02 -5.3539604322960146e-03 1.6600893493748825e-01 1.6736150575735592e-01 0 1 0 0 0 0 V -324 0 -1.0038305557142074e+01 1.1173283388381686e+01 2.4790989856203549e+01 3.4476110789846963e+01 0 2 0 P 992 22 -6.2535576933141435e-02 -1.6186544249224253e-02 4.6479854107727141e-02 7.9580647364598300e-02 0 1 0 0 0 0 P 993 22 3.2133585365415877e-02 2.6013364097074901e-02 1.9115915180775347e-01 1.9557884277176607e-01 0 1 0 0 0 0 V -325 0 -1.3084697779290686e+01 -9.2352126453664329e+00 -2.4949876676802514e+01 2.9921135414058263e+01 0 2 0 P 994 -211 -1.2739767646563198e+00 -9.5346683281578204e-01 -2.1736850302008546e+00 2.6974992481154154e+00 1.3957000000000000e-01 1 0 0 0 0 P 995 211 -3.3995151240177213e-01 -1.8564780967841704e-01 -9.0375031886279222e-01 9.9311457736116460e-01 1.3957000000000000e-01 1 0 0 0 0 V -326 0 -6.0108707477828522e+00 1.7753698028068337e+00 -1.0048960614815308e+00 9.6990304843859256e+00 0 2 0 P 996 111 -2.5765631039032894e-01 1.4705936956439687e-02 1.6278549610796256e-01 3.3364915256724359e-01 1.3497999999999999e-01 2 0 0 -329 0 P 997 111 -1.5026182171214525e-01 1.0577669594982092e-01 -2.3098116052278614e-01 3.2456004280682255e-01 1.3497999999999999e-01 2 0 0 -330 0 V -327 0 9.3161543429090408e+00 -1.1968438663907767e+01 -8.4435308710709671e+02 8.4453620467110841e+02 0 2 0 P 998 22 3.3123857769656295e-01 -2.7268557070412497e-01 -2.6242771302068771e+01 2.6246278250992251e+01 0 1 0 0 0 0 P 999 22 1.6939874037278468e-01 -8.1672065066113769e-02 -7.6490516930864301e+00 7.6513631506392654e+00 0 1 0 0 0 0 V -328 0 9.3161071097597681e+00 -1.1968509244548638e+01 -8.4435402491009449e+02 8.4453714337368717e+02 0 2 0 P 1000 22 7.3195328733523968e-02 -1.1446100444313356e-01 -5.1874752724547726e+00 5.1892541448667027e+00 0 1 0 0 0 0 P 1001 22 -5.2962756461517983e-02 -2.0034326953934012e-01 -8.1288878197685470e+00 8.1315287409934900e+00 0 1 0 0 0 0 V -329 0 -6.0110164482030966e+00 1.7753781187731354e+00 -1.0048040089517221e+00 9.6992191575128111e+00 0 2 0 P 1002 22 -2.1988959148202777e-01 6.3202666373585528e-02 1.1678621703323536e-01 2.5687551453534407e-01 0 1 0 0 0 0 P 1003 22 -3.7766718908301175e-02 -4.8496729417145834e-02 4.5999279074727201e-02 7.6773638031899516e-02 0 1 0 0 0 0 V -330 0 -6.0109824904720952e+00 1.7754484639885633e+00 -1.0050678313679016e+00 9.6992718445104789e+00 0 2 0 P 1004 22 -2.8768181463852117e-02 7.8771069276927577e-02 -1.6161369766744421e-01 1.8207547032346696e-01 0 1 0 0 0 0 P 1005 22 -1.2149364024829312e-01 2.7005626672893347e-02 -6.9367462855341927e-02 1.4248457248335553e-01 0 1 0 0 0 0 E 37 39 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 265 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 -4.5024560505187111e-01 2.0486963844553934e+00 3.5738153186827803e+03 3.5738159342542649e+03 0 3 0 0 -3 0 P 90 2203 4.5024560505187111e-01 -2.0486963844553934e+00 8.4961530696675152e+02 8.4961824642609747e+02 7.7132999999999996e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -2.5500185239633111e+00 -3.9071965950009948e-04 -4.6069221203334178e+02 4.6069926939685837e+02 0 3 0 0 -4 0 P 17 2101 1.6109950662602801e+00 1.0291384829717139e-01 -7.4143265927879861e+02 7.4143464294895455e+02 5.7933000000000001e-01 2 0 0 -9 0 P 96 2 9.3902345770303097e-01 -1.0252312863767128e-01 -8.6160933728007933e+01 8.6166743450870868e+01 3.3000000000000002e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 5 0 P 5 1 -1.3325954258835901e+00 7.6623660577539679e-02 2.4023961277439262e+03 2.4023964985573812e+03 0 3 0 0 -5 0 P 86 21 7.8318732479279318e-01 -6.8091043883877114e-02 5.6473526607157645e+01 5.6478998098632346e+01 0 2 0 0 -11 0 P 87 21 1.1260407979257912e-01 1.6091042372908819e+00 2.2966474995028332e+02 2.2967041443305538e+02 0 2 0 0 -11 0 P 88 21 5.0641906106256240e-01 5.9664423511509990e-01 3.4611843947506304e+02 3.4611932420664061e+02 0 2 0 0 -11 0 P 89 21 -5.1061786095504835e-01 -1.6654674751706380e-01 5.2145946231189896e+02 5.2145973890899177e+02 0 2 0 0 -11 0 V -4 0 0 0 0 0 0 18 0 P 6 -2 -1.1613797318666502e-01 -8.0497234252995833e-02 -1.2162442140016387e+00 1.2244255067707266e+00 0 3 0 0 -5 0 P 13 2 -7.0416980436373777e-01 1.2247035162852703e-01 8.7759551266857851e+00 8.8111941577749953e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 2.1624724540783805e-01 -2.1543033988570939e-01 2.1268015069341266e+00 2.1485943666469534e+00 0 2 0 0 -9 0 P 15 21 -8.1679888989750704e-01 -3.6586346927642371e-01 2.5656211647967879e+00 2.7172464860483316e+00 0 2 0 0 -9 0 P 16 21 1.5994805239876491e+00 -2.5927235585374984e+00 1.0604557367907410e+00 3.2256967878744502e+00 0 2 0 0 -9 0 P 18 3 -2.1521683893686063e+00 1.0058436674655085e+00 -2.3440535365857508e+02 2.3441792460061845e+02 5.0000000000000000e-01 2 0 0 -11 0 P 19 21 -3.3611250044566873e-02 -2.1847796070415276e-01 -3.9618049290985544e+00 3.9679668133280304e+00 0 2 0 0 -11 0 P 20 21 3.5552162722210867e-01 -9.2445185667726082e-01 -6.1162445630681699e+00 6.1959224025158388e+00 0 2 0 0 -11 0 P 21 21 -6.3411384568349827e-01 -4.3981376241440084e-01 -5.1116576297609839e+00 5.1695822112420560e+00 0 2 0 0 -11 0 P 22 21 8.4843059391154152e-01 -1.0002566418037384e-01 8.1571546198217859e-01 1.1811991030713727e+00 0 2 0 0 -11 0 P 23 21 -8.7612127505685178e-01 2.7134458756876132e+00 -1.1214191805354789e+01 1.1571018747551136e+01 0 2 0 0 -11 0 P 24 21 1.1564564817197291e+00 6.5996945870171275e-01 -6.9691980675067366e-01 1.5028800675942184e+00 0 2 0 0 -11 0 P 25 21 2.9728763571055583e-01 -5.9329337554341513e-02 2.0690546611111280e-01 3.6702831028091826e-01 0 2 0 0 -11 0 P 91 -3 -5.6623680321346825e-01 1.1707466785004217e+00 -2.4140594127448299e+01 2.4180768323788318e+01 5.0000000000000000e-01 2 0 0 -13 0 P 92 21 -5.7464023246697818e-02 2.2025496043528700e-01 -1.5390746092514833e+00 1.5558165105200077e+00 0 2 0 0 -13 0 P 93 21 5.1623324755619655e-02 2.8208760423234358e-01 -2.3985705100340024e+01 2.3987419359835226e+01 0 2 0 0 -13 0 P 94 21 -6.7561578387479326e-01 -9.8307491084573462e-01 -6.3404650950726804e+01 6.3415870688269010e+01 0 2 0 0 -13 0 P 95 21 -4.5187070264652368e-01 -1.9455917906436754e-01 -8.2748212509546917e+01 8.2749675008009575e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 -1.9184983747921753e+00 1.5254513329498696e+00 2.4005978743461628e+03 2.4019184997655643e+03 7.9600989710947374e+01 3 0 0 -6 0 P 8 22 4.6976497572191933e-01 -1.5293249066253252e+00 5.8200918376282285e-01 1.7024242985883484e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 -1.9184983747921753e+00 1.5254513329498696e+00 2.4005978743461628e+03 2.4019184997655643e+03 7.9600989710947374e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 4.6976497572191933e-01 -1.5293249066253252e+00 5.8200918376282285e-01 1.7024242985882934e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 2 0 P 11 11 5.7836915205234174e+00 1.9659125599908151e+01 2.2430419995896423e+03 2.2431356054038101e+03 5.1000000000000004e-04 1 0 0 0 0 P 12 -12 -7.7021898953155850e+00 -1.8133674266958280e+01 1.5755587475650844e+02 1.5878289436174231e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 113 92 1.9057541413945225e+00 -2.9486331677739335e+00 -7.2690382574359114e+02 7.5833737474729924e+02 2.1604183789616098e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 16 0 P 114 111 -3.8863880903255843e-01 -3.3165163914796097e-01 4.0538438204748370e+00 4.0881416627653469e+00 1.3497999999999999e-01 2 0 0 -23 0 P 115 213 -6.1533496352022821e-01 3.5356891889014663e-01 4.9667140995869827e+00 5.0768636983999871e+00 7.7630404311711587e-01 2 0 0 -24 0 P 116 223 2.3740961115279338e-01 -3.4271926522916962e-01 3.2866444674568429e+00 3.4055689483168257e+00 7.8870031573990373e-01 2 0 0 -25 0 P 117 113 1.5193438894508643e-01 -6.3562352510398357e-01 6.4040211229913091e-01 1.1789568240468611e+00 7.4345343049833568e-01 2 0 0 -26 0 P 118 313 1.9592225996777440e-01 -2.2995559567758811e-01 9.0189017264864713e-01 1.3086548668086440e+00 8.9883623033755855e-01 2 0 0 -27 0 P 119 3122 7.1221698150936708e-01 -1.3227211812529822e+00 -7.9997677155474664e-02 1.8729617836026100e+00 1.1156800000000000e+00 2 0 0 -28 0 P 120 -2112 1.0607368122599291e-01 -7.5888470951056539e-02 -9.3229033023382579e-01 1.3300254623952199e+00 9.3957000000000002e-01 1 0 0 0 0 P 121 313 -6.8437908707344663e-01 -4.0626049787455848e-01 -3.0366745414930181e+00 3.2590964653596006e+00 8.7572551213884409e-01 2 0 0 -29 0 P 122 -323 8.2304374121604651e-01 2.9032120484187397e-02 -9.4871893180318612e+00 9.5523422040663455e+00 7.4982435505558664e-01 2 0 0 -30 0 P 123 111 -2.3490826451817406e-01 2.6202239169582878e-02 -8.2308151781000163e+00 8.2353145991223702e+00 1.3497999999999999e-01 2 0 0 -31 0 P 124 211 1.6397165856273623e-02 -2.3202120121603064e-02 -1.0448100132469345e+00 1.0544737806637559e+00 1.3957000000000000e-01 1 0 0 0 0 P 125 1114 7.3329872636374505e-01 2.3275150853187995e-01 -8.8208275216552025e+01 8.8219831334652753e+01 1.2028814358784228e+00 2 0 0 -32 0 P 126 -313 2.1823056945012225e-02 3.1837252026337998e-01 -6.7901022603328016e+01 6.7907753443020638e+01 9.0126011392127503e-01 2 0 0 -33 0 P 127 -3112 -5.5303177081996580e-01 -7.0373104971415379e-01 -1.3021088133522986e+02 1.3021946306977608e+02 1.1974400000000001e+00 2 0 0 -34 0 P 128 2112 1.1956318208027445e+00 -1.1174174870722869e-01 -3.7186078006827705e+02 3.7186390597427135e+02 9.3957000000000002e-01 1 0 0 0 0 P 129 221 1.8829560237405896e-01 2.7493461866717572e-01 -5.9760584134409442e+01 5.9764020630030778e+01 5.4744999999999999e-01 2 0 0 -35 0 V -11 0 0 0 0 0 60 1 0 P 26 21 -2.6063255719211503e-01 -1.2472761420391889e+00 -1.2464800968053522e+01 1.2529760184359343e+01 0 2 0 0 -11 0 P 27 21 -1.0479627621029470e+00 -1.6885888214344029e+00 -3.1606156726482574e+01 3.1668575925949170e+01 0 2 0 0 -11 0 P 28 21 -5.0708740716422653e-02 -7.4510396516990895e-01 -7.6187125017780161e+01 7.6190785333727604e+01 0 2 0 0 -11 0 P 29 21 4.6083462812603121e-01 -9.8148920110027382e-01 -9.6973715309491638e+02 9.6973775928456018e+02 0 2 0 0 -11 0 P 30 21 -9.5744487866469130e-01 -2.9681807955094039e+00 -2.2212970329099944e+03 2.2212992223499909e+03 0 2 0 0 -11 0 P 31 21 -8.3898975019348299e-01 -1.1912402943439573e+00 -9.4006758504117397e+02 9.4006871419188542e+02 0 2 0 0 -11 0 P 32 21 -9.2570655819710801e-01 4.0527541337543654e-01 -5.4360392653107269e+01 5.4369784533255000e+01 0 2 0 0 -11 0 P 33 21 -1.8060427652666280e+00 8.7980652942748472e-01 -4.2834234764195777e+01 4.2881318984301700e+01 0 2 0 0 -11 0 P 34 21 -1.1736015197829515e+00 2.0071970322347601e-01 -2.1578408303251170e+01 2.1611231659216418e+01 0 2 0 0 -11 0 P 35 21 -1.0644863536371514e+00 5.6200221572843234e-01 -2.0118486197001872e+01 2.0154465126778192e+01 0 2 0 0 -11 0 P 36 21 -4.5257291160015489e+00 1.4693556925012277e-01 -4.7227844791990947e+01 4.7444421566600653e+01 0 2 0 0 -11 0 P 37 21 -8.7025211594965690e-01 1.4830720184768738e+00 -1.0599297474714222e+01 1.0737874478442519e+01 0 2 0 0 -11 0 P 38 21 -4.6083462812603121e-01 9.8148920110027382e-01 -1.5980345302975325e+01 1.6017088549692232e+01 0 2 0 0 -11 0 P 39 21 1.0385949168935804e+00 1.5158500108379819e+01 -2.8016598850751643e+02 2.8057768963574239e+02 0 2 0 0 -11 0 P 40 21 9.5744487866469130e-01 2.9681807955094039e+00 -5.1732621267977279e+01 5.1826546298074767e+01 0 2 0 0 -11 0 P 41 21 4.5257291160015489e+00 -1.4693556925012277e-01 -1.0613580213233527e+02 1.0623235057348190e+02 0 2 0 0 -11 0 P 42 21 9.2570655819710801e-01 -4.0527541337543654e-01 -1.9731822799562121e+01 1.9757682348542183e+01 0 2 0 0 -11 0 P 43 21 1.1736015197829515e+00 -2.0071970322347601e-01 -2.3850537025183545e+01 2.3880237547314099e+01 0 2 0 0 -11 0 P 44 21 2.4691325712340602e+00 1.1389347895652189e+00 -1.5277518050345597e+01 1.5517614052677247e+01 0 2 0 0 -11 0 P 45 21 1.8060427652666280e+00 -8.7980652942748472e-01 -5.9970110329418862e+00 6.3245546347882771e+00 0 2 0 0 -11 0 P 46 21 1.0824275928419334e+00 -1.6956324367233477e+00 -1.2252137793626540e+01 1.2416186989902567e+01 0 2 0 0 -11 0 P 47 21 -1.0385949168935804e+00 -1.5158500108379819e+01 -6.5684619906733857e+01 6.7419048474665118e+01 0 2 0 0 -11 0 P 48 21 3.6474827945148397e-01 -8.0978595505583728e-01 -1.3464178722669746e+00 1.6129586749599134e+00 0 2 0 0 -11 0 P 49 21 -1.0824275928419334e+00 1.6956324367233477e+00 -3.5370650410009401e+00 4.0691089882780140e+00 0 2 0 0 -11 0 P 50 21 8.2606344423398526e-01 3.3956736180443268e+00 -3.8729624922721575e+00 5.2165907066520871e+00 0 2 0 0 -11 0 P 51 21 -2.1818367805074435e-01 2.6660643754538369e+00 -1.5501716363468248e+00 3.0916881268274783e+00 0 2 0 0 -11 0 P 52 21 2.9166772126293026e+00 -6.4263476266112529e-01 -1.4065602569891706e+00 3.3012720514057912e+00 0 2 0 0 -11 0 P 53 21 2.7709505013703186e+00 -1.3353585475774288e+00 1.0022910311921704e-03 3.0759307755896965e+00 0 2 0 0 -11 0 P 54 21 3.9348424360439225e+00 3.6290532190805297e-01 1.1445410812950276e+00 4.1139591096574168e+00 0 2 0 0 -11 0 P 55 21 5.3049274406446250e+00 -8.7372307335983301e-01 5.4603360745936991e+00 7.6629574712988591e+00 0 2 0 0 -11 0 P 56 21 1.1071633713748437e+00 2.6759775853095746e+00 1.1177656327865138e+00 3.1042014718494042e+00 0 2 0 0 -11 0 P 57 21 2.6063255719211503e-01 1.2472761420391889e+00 6.8343906658511733e-01 1.4459308635281980e+00 0 2 0 0 -11 0 P 58 21 -1.8951977322842410e+00 3.9190129841064061e+00 4.0892558297548947e+00 5.9726418321572172e+00 0 2 0 0 -11 0 P 59 21 -2.9166772126293026e+00 6.4263476266112529e-01 5.2216324347331406e+00 6.0154327096484677e+00 0 2 0 0 -11 0 P 60 21 -3.1479668058096535e+00 -1.3608589638488955e+00 1.5550270243724389e+00 3.7655997100722116e+00 0 2 0 0 -11 0 P 61 21 -2.4691325712340602e+00 -1.1389347895652189e+00 -4.0485945309798593e-01 2.7491270043367750e+00 0 2 0 0 -11 0 P 62 21 -7.6019973766505058e-02 -6.0934756816322955e-01 -1.1709417789166490e-01 6.2513561867328171e-01 0 2 0 0 -11 0 P 63 21 -2.2771890406179596e-02 -3.2782957656218703e+00 1.6924558331209982e-01 3.2827405857541665e+00 0 2 0 0 -11 0 P 64 21 -5.4027387127637754e+00 -4.4327239361114419e+00 1.9766002866563291e+01 2.0965054171481643e+01 0 2 0 0 -11 0 P 65 21 1.8951977322842410e+00 -3.9190129841064061e+00 1.0406440943845755e+01 1.1280268185278187e+01 0 2 0 0 -11 0 P 66 21 1.0644863536371514e+00 -5.6200221572843234e-01 5.6228655428280918e+00 5.7502690893806729e+00 0 2 0 0 -11 0 P 67 21 3.1479668058096535e+00 1.3608589638488955e+00 1.9599666640797849e+01 1.9897451207638916e+01 0 2 0 0 -11 0 P 68 21 5.4027387127637754e+00 4.4327239361114419e+00 6.2497646237769082e+01 6.2887156179569004e+01 0 2 0 0 -11 0 P 69 21 1.0479627621029470e+00 1.6885888214344029e+00 2.0915882131967727e+01 2.1010085281050017e+01 0 2 0 0 -11 0 P 70 21 5.6422457620890443e+00 9.5858894285618912e-01 5.3850467832557911e+01 5.4153732242445969e+01 0 2 0 0 -11 0 P 71 21 3.3088413262358446e-01 -1.0928661859021986e+00 2.2168761913434356e+01 2.2198149598199578e+01 0 2 0 0 -11 0 P 72 21 -6.3661121819773747e-01 -1.3816661472815626e+00 1.1947529452088961e+01 1.2043991663655875e+01 0 2 0 0 -11 0 P 73 21 -8.2606344423398526e-01 -3.3956736180443268e+00 3.8811159677698420e+01 3.8968180553651536e+01 0 2 0 0 -11 0 P 74 21 -1.1071633713748437e+00 -2.6759775853095746e+00 4.4814826859161215e+01 4.4908299602463138e+01 0 2 0 0 -11 0 P 75 21 -2.3836270463074865e+00 -2.0009202579592640e+00 4.5762041114351206e+01 4.5867742114978476e+01 0 2 0 0 -11 0 P 76 21 -5.3049274406446250e+00 8.7372307335983301e-01 5.2785820058138931e+01 5.3058914862345688e+01 0 2 0 0 -11 0 P 77 21 -3.9348424360439225e+00 -3.6290532190805297e-01 5.3360128974700821e+01 5.3506243088688890e+01 0 2 0 0 -11 0 P 78 21 -5.6422457620890443e+00 -9.5858894285618912e-01 1.7298228008102967e+02 1.7307692813322339e+02 0 2 0 0 -11 0 P 79 21 -2.7709505013703186e+00 1.3353585475774288e+00 2.2073223080810916e+02 2.2075366150226367e+02 0 2 0 0 -11 0 P 80 21 -3.6474827945148397e-01 8.0978595505583728e-01 5.8563598048698552e+01 5.8570332174317549e+01 0 2 0 0 -11 0 P 81 21 -7.2151151839451177e-01 1.7339182195164371e+00 8.7270882182376241e+01 8.7291087335153193e+01 0 2 0 0 -11 0 P 82 21 2.3836270463074865e+00 2.0009202579592640e+00 1.5476196222183742e+02 1.5479325020984615e+02 0 2 0 0 -11 0 P 83 21 7.2151151839451177e-01 -1.7339182195164371e+00 1.4777927277748333e+02 1.4779120580706069e+02 0 2 0 0 -11 0 P 84 21 2.1818367805074435e-01 -2.6660643754538369e+00 3.4296084122609921e+02 3.4297127302134948e+02 0 2 0 0 -11 0 P 85 21 8.7025211594965690e-01 -1.4830720184768738e+00 2.8267657722970154e+02 2.8268180725978232e+02 0 2 0 0 -11 0 P 130 92 -9.9069765250157382e-01 -5.7389452096087723e+00 -1.3647949890053842e+03 9.3099135160380811e+03 9.2093317019814403e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 139 0 P 131 3122 -1.8996045721443991e-01 2.3979678374885571e-01 -6.2119637407602553e+01 6.2130408665863584e+01 1.1156800000000000e+00 2 0 0 -36 0 P 132 -2212 -1.6815103478090405e+00 2.8897694029802212e-01 -1.5810848670471799e+02 1.5812047591431886e+02 9.3827000000000005e-01 1 0 0 0 0 P 133 321 -1.1681586029687945e-01 1.8893178039402764e-01 -6.1401832096860582e+00 6.1639948062413508e+00 4.9359999999999998e-01 1 0 0 0 0 P 134 333 -5.8211716259870960e-01 -7.9497233011108770e-01 -1.7963600473245954e+01 1.8019480834927577e+01 1.0197579130783190e+00 2 0 0 -37 0 P 135 333 4.3918540738078399e-01 -7.3353245690665536e-02 -1.4132473259061915e+00 1.7977512415341854e+00 1.0180260318612306e+00 2 0 0 -38 0 P 136 -313 3.7377300934861846e-01 -7.5971051246948973e-01 -1.9988457406667823e+00 2.3591209544685587e+00 9.2368883156435744e-01 2 0 0 -39 0 P 137 113 -7.0676504191298573e-01 6.6347519780315056e-01 -1.5769376241822894e+00 1.9861985135198044e+00 7.2009450905863925e-01 2 0 0 -40 0 P 138 -213 -2.6276383621692222e-02 -3.7458060984088631e-01 -1.6664370560872004e+00 1.8387308022556084e+00 6.8038034925912860e-01 2 0 0 -41 0 P 139 213 2.2384759228360099e-02 1.5927462787135600e+00 -2.3876457626490146e+00 2.9706198026707176e+00 7.6575971317510105e-01 2 0 0 -42 0 P 140 -211 7.0244818264280873e-01 -4.4767165185050734e-01 -7.9044720059282847e-01 1.1567756562937284e+00 1.3957000000000000e-01 1 0 0 0 0 P 141 213 6.2014978848838456e-02 7.9775680669866744e-01 -1.6864003537537295e+00 1.9651969390336390e+00 6.1464711486413293e-01 2 0 0 -43 0 P 142 -213 1.0849632224931678e-01 1.8206587913558303e-01 -1.8504461835470432e+00 2.0122063102259879e+00 7.6151409732350128e-01 2 0 0 -44 0 P 143 113 -3.6977347883100797e-01 6.8203351451383010e-01 -2.4915198276839496e+00 2.6891938372469792e+00 6.4976172708001367e-01 2 0 0 -45 0 P 144 323 9.5846779270306870e-01 3.6893635288414334e-01 -1.0669058495892003e+00 1.7284532768953007e+00 8.9134061749361793e-01 2 0 0 -46 0 P 145 -321 8.8743963222751840e-02 2.6987725533531154e-01 -1.2453482580802342e+00 1.3693949276447885e+00 4.9359999999999998e-01 1 0 0 0 0 P 146 213 -5.5442181976680127e-01 -1.6729771890518597e+00 -1.8882823060411926e+01 1.8990158620513792e+01 9.7922493438861435e-01 2 0 0 -47 0 P 147 -211 -6.2900631794066186e-01 -1.2235414050565166e-01 -3.3370480527200970e+00 3.4008806175417470e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 111 2.1195411957417326e-01 -1.2336846815753981e+00 -3.2305638911613201e+01 3.2330162813235191e+01 1.3497999999999999e-01 2 0 0 -48 0 P 149 211 -6.5309737948981905e-01 -2.7230304319960308e-01 -1.6885363482831533e+01 1.6900759298524811e+01 1.3957000000000000e-01 1 0 0 0 0 P 150 2112 2.0482782637846675e-01 -1.9315732607322009e-01 -2.3476938616505061e+02 2.3477143509441396e+02 9.3957000000000002e-01 1 0 0 0 0 P 151 -2112 -4.5311895267623836e-01 -9.2570565577072861e-01 -2.4532721739570323e+02 2.4533118153763075e+02 9.3957000000000002e-01 1 0 0 0 0 P 152 -211 5.5813407391746139e-01 -8.9935489505658939e-02 -2.0335603444373047e+02 2.0335686815669968e+02 1.3957000000000000e-01 1 0 0 0 0 P 153 213 -1.2988529670938320e+00 -1.7381537246148249e+00 -1.4279073204398749e+03 1.4279091705192698e+03 7.5847863879830080e-01 2 0 0 -49 0 P 154 313 3.1372279050867680e-01 -8.8692102078431612e-01 -2.1080900332576135e+02 2.1081300354512598e+02 8.9528187184597441e-01 2 0 0 -50 0 P 155 3122 -1.8002415282052522e-01 -4.9445528329008398e-01 -6.4441780383888693e+02 6.4441898446672042e+02 1.1156800000000000e+00 2 0 0 -51 0 P 156 -2112 -6.3222518672415029e-01 -1.4900840221073217e-01 -4.0295217036800085e+02 4.0295378929631363e+02 9.3957000000000002e-01 1 0 0 0 0 P 157 -211 -5.7100883552558504e-02 -1.2054965250823056e-02 -1.0329114178245190e+02 1.0329125256448665e+02 1.3957000000000000e-01 1 0 0 0 0 P 158 323 -4.4464606326396761e-01 -6.2945381939121259e-01 -6.8048866282350241e+02 6.8048968592573124e+02 8.9358701298868703e-01 2 0 0 -52 0 P 159 -323 -2.7375727724648441e-01 -1.7931859282391449e-01 -6.4122595246147696e+01 6.4129447074514118e+01 8.7844338294821589e-01 2 0 0 -53 0 P 160 113 -1.8324120216984658e+00 3.2587021009412520e-01 -3.7668340730246392e+01 3.7725488043186324e+01 9.1903727648206002e-01 2 0 0 -54 0 P 161 111 1.1885891402022039e-01 7.5728405578460473e-02 -1.3502711469929393e+01 1.3504121551341880e+01 1.3497999999999999e-01 2 0 0 -55 0 P 162 323 -3.0077381005190942e+00 8.7345772672219313e-01 -4.0046305702035028e+01 4.0179649427484229e+01 9.4244939015630358e-01 2 0 0 -56 0 P 163 -311 -5.2893770907620685e-01 1.5428645056529156e-01 -2.3585679462959206e+01 2.3597362788397913e+01 4.9767000000000000e-01 2 0 0 -57 0 P 164 2214 -3.2552785147038601e+00 1.0738247958123421e+00 -3.8039747727432896e+01 3.8214446752953940e+01 1.2536329475655199e+00 2 0 0 -58 0 P 165 -211 -1.0011045302848678e+00 7.0311921514087661e-01 -1.2261345526560078e+01 1.2323013463347836e+01 1.3957000000000000e-01 1 0 0 0 0 P 166 -2214 3.0846241863465357e-01 5.6806194007686894e+00 -9.8389895147425193e+01 9.8561115515402889e+01 1.1650917041893174e+00 2 0 0 -59 0 P 167 213 5.6151969475298802e-01 3.6398424662269586e+00 -6.5944152975790260e+01 6.6053660787766518e+01 9.4394609186698275e-01 2 0 0 -60 0 P 168 -213 -1.0054966740680983e-01 8.8513826779807259e-01 -1.6735876013727829e+01 1.6779625807610444e+01 8.2019284794476166e-01 2 0 0 -61 0 P 169 223 2.3508329134659647e-01 3.7449810169311251e+00 -6.6758074975713598e+01 6.6867958014273725e+01 7.7658712623237613e-01 2 0 0 -62 0 P 170 213 2.8022260119633940e-01 3.0996564967334286e+00 -6.5087854811853774e+01 6.5166596895877746e+01 7.5505753218158211e-01 2 0 0 -63 0 P 171 223 1.2271502591319603e+00 1.8426864033295507e+00 -3.9501249627038945e+01 3.9570915549672470e+01 7.7925888006679955e-01 2 0 0 -64 0 P 172 -211 2.5289467094517404e+00 -2.1923919793551013e-02 -6.2657839252509504e+01 6.2709013321018908e+01 1.3957000000000000e-01 1 0 0 0 0 P 173 111 -1.5753331274917536e-02 1.7741724684217192e-01 -1.8512359275185279e+00 1.8646766761716898e+00 1.3497999999999999e-01 2 0 0 -65 0 P 174 111 5.8167242422371923e-02 -1.5442415148497418e-01 -3.2472339963984789e+00 3.2542247117276517e+00 1.3497999999999999e-01 2 0 0 -66 0 P 175 213 2.2433000610183598e+00 -3.4523116508525226e-01 -4.4330187930560037e+01 4.4390115067120831e+01 4.0641603357474798e-01 2 0 0 -67 0 P 176 -211 2.0792958147496901e+00 8.1356010714492777e-01 -1.4171678446707523e+01 1.4347170484626847e+01 1.3957000000000000e-01 1 0 0 0 0 P 177 211 1.2373918596538132e-01 -2.6026052960264390e-01 -1.0636168134312513e+01 1.0640986763250734e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 313 5.9019786768702343e-01 -4.9445939698496821e-01 -6.0332084527018708e+00 6.1413778801582835e+00 8.5093737422627458e-01 2 0 0 -68 0 P 179 3212 5.0361356688053305e-01 -1.2049490524059838e+00 -1.1751652612063648e+01 1.1883982643068888e+01 1.1925500000000000e+00 2 0 0 -69 0 P 180 211 5.3173184243533556e-01 2.0663321047544045e-01 -1.8677673947452209e+00 1.9579251420073274e+00 1.3957000000000000e-01 1 0 0 0 0 P 181 -2224 7.1050535998784248e-01 -4.2263271095069688e-01 -8.3029414961999688e+00 8.4198777261989441e+00 1.1278595479423557e+00 2 0 0 -70 0 P 182 223 9.8313201516788629e-01 -1.0314017885777762e+00 -7.2778533523330742e+00 7.4556091296376383e+00 7.6721565882144349e-01 2 0 0 -71 0 P 183 111 -3.4382454831779857e-01 -2.4090092056180583e+00 -8.7409468270908555e+00 9.0743546165668540e+00 1.3497999999999999e-01 2 0 0 -72 0 P 184 3214 7.5598871834269843e-01 -4.5197480854072838e+00 -2.3680698001622691e+01 2.4159122770467494e+01 1.3740864225585323e+00 2 0 0 -73 0 P 185 331 -1.9778513525159516e-01 -3.1503187187279855e+00 -1.4442095663623082e+01 1.4814019400961557e+01 9.5781870180651918e-01 2 0 0 -74 0 P 186 -3112 1.9629568555129340e-01 -3.8756793299637775e+00 -1.5650556134019650e+01 1.6168895822614932e+01 1.1974400000000001e+00 2 0 0 -75 0 P 187 2112 -8.4535503244294052e-01 -1.7920622552465773e-01 -2.4504558050213214e+00 2.7630174518822881e+00 9.3957000000000002e-01 1 0 0 0 0 P 188 -2212 2.2198236464244703e-01 -3.3761455989479548e-04 -1.8482310774644852e+00 2.0846066758027462e+00 9.3827000000000005e-01 1 0 0 0 0 P 189 211 2.9222565332769729e-01 2.3824071065105552e+00 -3.0148911185888911e+00 3.8562037932999558e+00 1.3957000000000000e-01 1 0 0 0 0 P 190 -211 -1.8590902344574498e-01 1.8392727231416792e-01 1.0774935068220232e-01 3.1540626812401312e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 213 4.2484404362475953e-01 9.2981509178834187e-01 -1.6085637080477142e+00 2.1091342224759555e+00 9.0328367595691772e-01 2 0 0 -76 0 P 192 221 -2.9101022026428630e-01 -1.5272276989938072e-01 -5.8263354323775385e-01 8.6439258496922988e-01 5.4744999999999999e-01 2 0 0 -77 0 P 193 113 2.1981921932732842e-01 1.4468672519705814e+00 -2.1849056254169339e+00 2.7267625332934995e+00 7.2088555748054906e-01 2 0 0 -78 0 P 194 -213 1.0757213442260452e+00 7.1893342284533801e-01 -1.0880211778068536e+00 1.7843846472733158e+00 5.7113641904618440e-01 2 0 0 -79 0 P 195 211 -4.0616454539202949e-02 2.5769013964638723e-02 2.1891770474724034e-01 2.6404258143686754e-01 1.3957000000000000e-01 1 0 0 0 0 P 196 113 4.2959137710150180e-01 1.3489686395000136e-01 -2.7390907143803656e-01 8.7186918702546035e-01 6.9453854082036359e-01 2 0 0 -80 0 P 197 -211 1.1882478645611112e+00 5.3279790005433680e-01 5.8402574583193041e-02 1.3109909364882344e+00 1.3957000000000000e-01 1 0 0 0 0 P 198 2224 1.2896274244229551e+00 -5.1684372955480617e-01 -7.2114215839405180e-02 1.7788872263972297e+00 1.1085905328430290e+00 2 0 0 -81 0 P 199 -213 1.8639603211974394e+00 3.2264847400460340e-03 -3.2556807819379763e-01 1.9703223959015546e+00 5.4937899582182814e-01 2 0 0 -82 0 P 200 -2212 1.7337201214264448e+00 -1.5589291487603538e-01 1.1096626414200248e+00 2.2675515057018529e+00 9.3827000000000005e-01 1 0 0 0 0 P 201 331 3.3174461719513615e+00 -8.4936294300034221e-01 2.8497630011091637e+00 4.5569091357180129e+00 9.5781271445029059e-01 2 0 0 -83 0 P 202 2212 1.5041590857130462e+00 6.7251727706364428e-01 -1.6861531174378333e-01 1.9035639625020901e+00 9.3827000000000005e-01 1 0 0 0 0 P 203 -2112 2.2006984711489821e+00 2.5756648957576783e-01 2.2148890655449134e+00 3.2707704925659753e+00 9.3957000000000002e-01 1 0 0 0 0 P 204 311 1.0994582490827283e-01 4.4157658118533738e-01 4.3825720689648595e-01 8.0425292648693592e-01 4.9767000000000000e-01 2 0 0 -84 0 P 205 -323 -1.1808952339453507e-01 1.0132271787059661e+00 1.4891321660450112e+00 2.0250246291951526e+00 9.1795189944411570e-01 2 0 0 -85 0 P 206 111 5.6027097796626846e-01 2.8229649568718407e+00 1.0422461042254263e+00 3.0639078410831466e+00 1.3497999999999999e-01 2 0 0 -86 0 P 207 211 -4.6114805730775260e-01 7.6230291872541511e-01 1.5955897166896704e+00 1.8327982975662718e+00 1.3957000000000000e-01 1 0 0 0 0 P 208 113 -1.8902778607840622e+00 1.3217080138107549e+00 2.7486600263761409e+00 3.6830956971768818e+00 8.3066209087861498e-01 2 0 0 -87 0 P 209 -213 -8.7269629209907040e-01 3.0965856238895488e-03 1.0169791094285392e+00 1.5511638322623560e+00 7.8118776130888146e-01 2 0 0 -88 0 P 210 323 -3.8502751491732179e-01 -2.3686792089771094e-01 7.5472380896868474e-01 1.1384722884862768e+00 7.2260537268495906e-01 2 0 0 -89 0 P 211 -323 -1.6442191267219355e+00 8.2925813999749715e-02 1.7605427709546022e+00 2.5627047239533360e+00 8.7040876977801107e-01 2 0 0 -90 0 P 212 2214 -1.5355392837654041e+00 -7.6308151809774594e-01 1.0295929744837411e+00 2.4115221399634756e+00 1.3472947128147625e+00 2 0 0 -91 0 P 213 111 -1.4134168531016882e+00 -5.8905102073143797e-02 6.6614789064224478e-01 1.5694551998350379e+00 1.3497999999999999e-01 2 0 0 -92 0 P 214 -2212 -4.4533047340218435e-01 -1.9258731303398273e+00 -1.0013264174982182e-01 2.1903615417435858e+00 9.3827000000000005e-01 1 0 0 0 0 P 215 211 -1.6170375495454653e-01 -3.4119410912452464e-01 2.9096129877393590e-02 4.0359372411067079e-01 1.3957000000000000e-01 1 0 0 0 0 P 216 2112 -1.1790616661252533e+00 -1.7013264495340610e-01 5.0153123383466813e-01 1.5979539708066142e+00 9.3957000000000002e-01 1 0 0 0 0 P 217 -3122 -6.2169821229665601e-01 -1.2594544260255267e+00 1.2666965424860057e+00 2.1959043949029633e+00 1.1156800000000000e+00 2 0 0 -93 0 P 218 3322 -2.3855615967443969e-01 -1.1439855033443684e+00 1.9539129214714128e+00 2.6291347603106305e+00 1.3149000000000000e+00 2 0 0 -94 0 P 219 -3212 -1.3165874358683638e+00 -1.4153759611226424e+00 3.7090769676312640e+00 4.3492664947003430e+00 1.1925500000000000e+00 2 0 0 -95 0 P 220 -211 -1.0053622749365325e+00 -4.0608305705683739e-01 3.9552491950170907e+00 4.1035512343185792e+00 1.3957000000000000e-01 1 0 0 0 0 P 221 223 -4.1982685643342116e-01 -1.3389571094327406e+00 4.2588614156253648e+00 4.5511864646835134e+00 7.7867640810074623e-01 2 0 0 -96 0 P 222 211 -1.9107127697201562e-01 -7.0442332440164623e-02 2.3558440836809236e-01 3.4124793545085996e-01 1.3957000000000000e-01 1 0 0 0 0 P 223 113 -7.6382544261786534e-01 -1.2195687089930871e+00 2.9894197309184158e+00 3.3868039724969186e+00 6.8046578001478120e-01 2 0 0 -97 0 P 224 221 -2.6964803919685854e-02 -9.3129619844952571e-01 4.3901938635101647e+00 4.5212325058106968e+00 5.4744999999999999e-01 2 0 0 -98 0 P 225 221 5.3948605699202279e-01 -1.0225585660574392e+00 3.5666375725143786e+00 3.7890996691664771e+00 5.4744999999999999e-01 2 0 0 -99 0 P 226 113 6.7348576275734828e-01 -5.1701262966899464e-01 4.5586913707026451e+00 4.7023337119481488e+00 7.8063448125944035e-01 2 0 0 -100 0 P 227 113 3.4476540468037681e-01 -3.0450313228548814e-01 1.9224847799655549e+00 2.1360822592277766e+00 8.0951488383620074e-01 2 0 0 -101 0 P 228 111 9.5948046119758446e-01 -7.9815861853755377e-01 3.1462212690650171e+00 3.3874160963901074e+00 1.3497999999999999e-01 2 0 0 -102 0 P 229 -211 2.4200765274813416e+00 1.0634823628760817e+00 1.7513661986050405e+01 1.7712583128429962e+01 1.3957000000000000e-01 1 0 0 0 0 P 230 113 5.0333673379713062e-01 2.4501308174593525e-01 8.8004008435180090e+00 8.8577143758249957e+00 8.3586462976257891e-01 2 0 0 -103 0 P 231 211 6.1295137727426796e-01 8.2117264138059320e-01 9.7027906081990203e+00 9.7577486783227574e+00 1.3957000000000000e-01 1 0 0 0 0 P 232 113 6.2609724819498580e-01 6.1728777621799569e-01 8.9744858011079334e+00 9.0500996614813243e+00 7.6802768543260247e-01 2 0 0 -104 0 P 233 2112 3.1239652225449008e+00 1.3138147046013182e+00 2.8325357113265770e+01 2.8542843501806761e+01 9.3957000000000002e-01 1 0 0 0 0 P 234 -2112 4.3058202623405561e+00 3.4261830508140259e+00 4.7676860691735584e+01 4.8002548428529600e+01 9.3957000000000002e-01 1 0 0 0 0 P 235 -213 2.3168430581787844e+00 -7.1857434094144657e-01 3.1971554877505980e+01 3.2075881032914886e+01 8.9314719539498055e-01 2 0 0 -105 0 P 236 113 7.3996510186464093e-01 1.7885086509732628e-01 1.1428062635374090e+01 1.1485121605341506e+01 8.5315104613735326e-01 2 0 0 -106 0 P 237 2212 3.3034248316771386e-01 -5.9818352237473060e-01 1.1549206682892708e+01 1.1607388822629300e+01 9.3827000000000005e-01 1 0 0 0 0 P 238 -2112 -1.0437410904642825e+00 -2.2159962286102850e+00 3.8224118540933425e+01 3.8314045267569554e+01 9.3957000000000002e-01 1 0 0 0 0 P 239 -211 -6.3992867650156759e-01 -1.3097558548342139e+00 1.7312215056009816e+01 1.7374039226406577e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 213 -2.0139765101623226e+00 -3.1748703444958979e+00 3.5191327377384525e+01 3.5394821588312936e+01 4.7746161982373780e-01 2 0 0 -107 0 P 241 223 -4.5292641013747181e-01 -1.0815086523763990e+00 3.5555928850556434e+01 3.5583567769226264e+01 7.6903541083723925e-01 2 0 0 -108 0 P 242 -213 -1.3241231662607091e+00 -7.6796384925262202e-03 1.0379318248802376e+01 1.0490986613671398e+01 7.5973132226780837e-01 2 0 0 -109 0 P 243 211 -3.6420243817077758e+00 -6.6899928764514827e-01 5.5742148568072231e+01 5.5865181539253598e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 223 -1.9611317187180208e+00 -1.0373828727949370e-01 2.1269277770408497e+01 2.1374183111795897e+01 7.8532004391737198e-01 2 0 0 -110 0 P 245 113 -1.7277454574829019e+00 2.9052207906944649e-01 2.5533336276477680e+01 2.5603256254176401e+01 7.1131003440988805e-01 2 0 0 -111 0 P 246 223 -2.8033257625534094e+00 -6.5084755273074202e-01 9.4491375554444176e+01 9.4538378410266347e+01 7.7633781552450609e-01 2 0 0 -112 0 P 247 -211 -2.5355584280817668e-02 2.0413693920829989e-01 2.2413015485321899e+00 2.2550448359082238e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 223 -9.4569468735548079e-01 -4.5219979154962225e-01 3.0581798232975451e+01 3.0609775836441845e+01 7.8305204273321616e-01 2 0 0 -113 0 P 249 213 -1.9855725435556018e+00 2.3656223469843285e-01 9.4328588447355472e+01 9.4353143198074221e+01 7.9660082169693036e-01 2 0 0 -114 0 P 250 313 -7.5561908137356948e-01 1.6952439304998190e+00 9.8616607956376086e+01 9.8638154486989094e+01 8.9740938122714620e-01 2 0 0 -115 0 P 251 -321 -3.7177685722128623e-01 -5.6919364417123933e-02 1.5884665689956480e+01 1.5896782784176537e+01 4.9359999999999998e-01 1 0 0 0 0 P 252 213 -3.8371624297840584e-01 1.8416273588666821e-01 4.6108266322529254e+01 4.6119799151691815e+01 9.3941282442449525e-01 2 0 0 -116 0 P 253 111 -3.9268995665507178e-02 2.5195956904575573e-01 5.0063712115875321e+00 5.0146782535938152e+00 1.3497999999999999e-01 2 0 0 -117 0 P 254 -211 -6.1481969945868753e-01 4.9547082787731972e-01 1.5605888695239869e+01 1.5626475493764916e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 2212 3.9335516311731641e-02 -3.6646462460086637e-01 1.2841543272615320e+02 1.2841938933214877e+02 9.3827000000000005e-01 1 0 0 0 0 P 256 -2112 -9.7232265571712029e-01 9.1392119385793613e-01 9.6438990672300932e+01 9.6452798699532039e+01 9.3957000000000002e-01 1 0 0 0 0 P 257 2114 3.2541483249953335e-01 2.4492797974240338e-01 8.1559916926830383e+01 8.1569785162741908e+01 1.2016313311180402e+00 2 0 0 -118 0 P 258 -213 3.6610471781255594e-01 2.6246508606017133e-01 7.9767627204239744e+01 7.9774474023866460e+01 9.4309883054256460e-01 2 0 0 -119 0 P 259 -2112 5.4401199978701031e-01 -1.7217404843131043e-01 7.9736716383557024e+01 7.9744293365579310e+01 9.3957000000000002e-01 1 0 0 0 0 P 260 223 1.7680305945470828e-01 -6.0882222182865653e-01 1.1072567214230847e+02 1.1073025439054489e+02 7.8284239101831932e-01 2 0 0 -120 0 P 261 211 1.1139635710004969e-01 -1.9927568709657456e-01 9.3608090687081102e+01 9.3608473130446598e+01 1.3957000000000000e-01 1 0 0 0 0 P 262 331 4.6880966633815202e-01 -1.7251692728119215e+00 1.5778534154935485e+02 1.5779837535495318e+02 9.5773967915354752e-01 2 0 0 -121 0 P 263 223 7.1712220026155626e-01 -5.1041184356335687e-02 1.8917071437489417e+02 1.8917369786464215e+02 7.8225138064156685e-01 2 0 0 -122 0 P 264 2112 1.7978683981248034e-01 -8.4826226465356303e-01 2.0539035824829855e+02 2.0539433761748819e+02 9.3957000000000002e-01 1 0 0 0 0 P 265 -321 3.7933368754558572e-01 1.5307486299460405e-02 2.7625012901335640e+02 2.7625083085707035e+02 4.9359999999999998e-01 1 0 0 0 0 P 266 -3312 1.9633322753528315e-01 1.7878410038641790e-01 1.4589036236682259e+02 1.4589658726544494e+02 1.3212999999999999e+00 2 0 0 -123 0 P 267 -323 1.2985419693749123e-01 1.0062202072253772e-01 3.4615742132915460e+02 3.4615844972292695e+02 8.2763906794073105e-01 2 0 0 -124 0 P 268 2224 2.3543473849494745e-01 -2.9524850760701084e-02 5.2101469389631222e+02 5.2101627761070904e+02 1.2625285021063339e+00 2 0 0 -125 0 P 269 113 1.9537279817051341e-02 -1.0291466838688761e+00 5.6693335185522687e+02 5.6693477790367319e+02 7.4660985970069604e-01 2 0 0 -126 0 V -13 0 0 0 0 0 0 1 0 P 270 92 -7.6054053052283233e-01 3.9293202462027899e-01 -2.8197917102532148e+02 2.8205629334129299e+02 6.5396409555477897e+00 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 271 221 -5.3892292316649040e-03 -1.0083015066576659e-01 -2.4303695890398430e+01 2.4310070571648790e+01 5.4744999999999999e-01 2 0 0 -127 0 P 272 -3122 -5.4460818640972308e-01 1.6245099298751678e-01 -3.1861773399996441e+01 3.1886365965047631e+01 1.1156800000000000e+00 2 0 0 -128 0 P 273 2212 -6.4456800155566840e-01 7.2639037302832954e-01 -3.4075035422778875e+01 3.4101781486297646e+01 9.3827000000000005e-01 1 0 0 0 0 P 274 -213 8.7124539064891882e-01 1.0330487500446295e-02 -7.1790882585807481e+01 7.1800510001370299e+01 7.8945472193311228e-01 2 0 0 -129 0 P 275 211 -3.5613921870637533e-01 -7.7972468070953233e-02 -2.6192413881748465e+01 2.6195322857078658e+01 1.3957000000000000e-01 1 0 0 0 0 P 276 -213 1.3070768474776387e-01 -1.0916772695497069e-01 -6.6229786326732381e+01 6.6234624983601307e+01 7.8227088800153532e-01 2 0 0 -130 0 P 277 211 -2.1178897001608321e-01 -2.1826948320432310e-01 -2.7525583517859310e+01 2.7527617476248590e+01 1.3957000000000000e-01 1 0 0 0 0 V -15 0 0 0 0 0 7 1 0 P 97 1 -7.0440257911383963e-01 3.3219588067980852e+00 7.1387484137228583e+01 7.1468206111183378e+01 0 2 0 0 -15 0 P 98 21 -3.8431739414825400e-01 1.5803420994070627e+00 3.8623002290832218e+01 3.8657230720374088e+01 0 2 0 0 -15 0 P 99 21 -3.3088413262358446e-01 1.0928661859021986e+00 5.9639469556774376e+00 6.0722733880849482e+00 0 2 0 0 -15 0 P 100 21 2.2771890406179596e-02 3.2782957656218703e+00 1.8028567461239117e+01 1.8324218575162675e+01 0 2 0 0 -15 0 P 101 21 6.3661121819773747e-01 1.3816661472815626e+00 6.3114867296268633e+00 6.4922368967818080e+00 0 2 0 0 -15 0 P 102 21 7.6019973766505058e-02 6.0934756816322955e-01 1.1940076296404549e+00 1.3426606849377543e+00 0 2 0 0 -15 0 P 103 -1 7.0440257911383963e-01 -3.3219588067980852e+00 6.4390157229719760e+00 7.2795959220416835e+00 0 2 0 0 -15 0 P 278 92 2.0201555598583609e-02 7.9425177663759232e+00 1.4794751092721665e+02 1.4963642229856634e+02 2.0964467371816195e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 12 0 P 279 -213 -3.9366435739462630e-01 1.1467935841519936e+00 2.6964156986712361e+01 2.7005157683035012e+01 8.6178438752439790e-01 2 0 0 -131 0 P 280 113 -4.6953716825872938e-01 1.9271250304056233e+00 2.5067114366509536e+01 2.5161948579120839e+01 9.1058091318684542e-01 2 0 0 -132 0 P 281 111 1.8232806500150395e-01 -8.7944339655857504e-02 3.9626015997787238e+00 3.9700640761999799e+00 1.3497999999999999e-01 2 0 0 -133 0 P 282 213 -5.5630907175660027e-01 2.5618752346548725e+00 4.5286293205969187e+01 4.5368361823038377e+01 7.5313854492935317e-01 2 0 0 -134 0 P 283 311 -4.2047658292071646e-02 9.6338285762544107e-01 8.2030655868677496e+00 8.2745292909801424e+00 4.9767000000000000e-01 2 0 0 -135 0 P 284 3212 4.4625057073279567e-01 1.3580861980138439e+00 8.7941807069774445e+00 8.9890671096943837e+00 1.1925500000000000e+00 2 0 0 -136 0 P 285 -2214 -3.6334437928985369e-01 1.7725395236258903e+00 1.3461883076469073e+01 1.3633780264263480e+01 1.1763302380362972e+00 2 0 0 -137 0 P 286 213 -5.1271076984058847e-02 2.8475025536363174e-01 6.6639569175960185e+00 6.6962403023412609e+00 5.8957692955100638e-01 2 0 0 -138 0 P 287 113 1.1881765195262468e+00 -1.7537158402202419e-01 3.9444357485588304e+00 4.1994794382359784e+00 7.9657739336614830e-01 2 0 0 -139 0 P 288 313 -8.3379612311456699e-02 -4.7837551059964400e-01 1.5888259203706003e+00 1.8612797878006178e+00 8.3916586819469019e-01 2 0 0 -140 0 P 289 -311 1.1433372611265417e-02 -1.0268278582355936e+00 2.1451148049450040e+00 2.4297528943808682e+00 4.9767000000000000e-01 2 0 0 -141 0 P 290 223 1.5156635201416896e-01 -3.0351562495225820e-01 1.8658820064620298e+00 2.0467610494752959e+00 7.6981883450419819e-01 2 0 0 -142 0 V -17 0 0 0 0 0 3 1 0 P 104 2 -6.3165112621278863e-01 -2.3574305190878255e+00 2.3952914947863411e+00 3.4196320185903573e+00 0 2 0 0 -17 0 P 105 21 3.8431739414825400e-01 -1.5803420994070627e+00 1.6370488664273104e+00 2.3076199864089775e+00 0 2 0 0 -17 0 P 106 -2 6.3165112621278863e-01 2.3574305190878255e+00 -8.5442325234459631e+00 8.8859648441958363e+00 0 2 0 0 -17 0 P 291 92 3.8431739414825400e-01 -1.5803420994070625e+00 -4.5118921622323116e+00 1.4613216849195171e+01 1.3803758719543929e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 7 0 P 292 211 -2.5814237512497806e-01 -7.9217794453319057e-01 7.9692655312490757e-01 1.1613591596123662e+00 1.3957000000000000e-01 1 0 0 0 0 P 293 221 -1.2360573119276033e-01 -2.0800188360089087e+00 2.4842546843540525e+00 3.2883095313809201e+00 5.4744999999999999e-01 2 0 0 -143 0 P 294 111 6.3993564013281323e-02 -7.6118929798344770e-01 2.5378927689996406e-01 8.1616966438912841e-01 1.3497999999999999e-01 2 0 0 -144 0 P 295 313 6.1795587793097372e-02 6.9529053136060037e-01 -1.4454615042806211e+00 1.8558545399675823e+00 9.3144484296746732e-01 2 0 0 -145 0 P 296 -311 1.9951579686627730e-01 -1.1336192363783873e-01 -3.9417341026784392e-01 6.7505969009580091e-01 4.9767000000000000e-01 2 0 0 -146 0 P 297 -211 1.0252821524671470e-01 -2.8523130759693488e-01 -1.7442980733236427e-04 3.3368959989920516e-01 1.3957000000000000e-01 1 0 0 0 0 P 298 221 3.3823233654662171e-01 1.7563466789926574e+00 -6.2070533322554375e+00 6.4827746638501678e+00 5.4744999999999999e-01 2 0 0 -147 0 V -19 0 0 0 0 0 2 1 0 P 107 2 -4.9134376843315802e-01 -5.2556095575864936e-01 4.5529946896242438e+02 4.5530003741541975e+02 0 2 0 0 -19 0 P 108 -2 4.9134376843315802e-01 5.2556095575864936e-01 -8.5267648539415941e-01 1.1156568494569368e+00 0 2 0 0 -19 0 P 299 92 0 0 4.5444679247703021e+02 4.5641569426487666e+02 4.2348539273845120e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 10 0 P 300 2212 -1.6222167109283669e-01 -3.5847419283905091e-01 1.7178412099154059e+02 1.7178713396249051e+02 9.3827000000000005e-01 1 0 0 0 0 P 301 -2112 -3.2330087945975285e-02 3.5276243584738670e-01 1.2243646723301386e+02 1.2244058472114753e+02 9.3957000000000002e-01 1 0 0 0 0 P 302 1114 -3.1950656736571420e-01 -2.8253825972854540e-01 1.2894361953181129e+02 1.2894973503188916e+02 1.1812004550942476e+00 2 0 0 -148 0 P 303 211 2.3799649061553874e-01 1.9572843927589390e-01 1.0687800457849541e+00 1.1210363609869121e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 -2112 -4.2752893953582011e-01 -5.4317258574621563e-01 5.5817412581064811e+00 5.7023192395195634e+00 9.3957000000000002e-01 1 0 0 0 0 P 305 -213 1.5443855094945336e-01 5.7988927554128267e-01 1.8887480004276711e+01 1.8911684433647736e+01 7.4483848451481105e-01 2 0 0 -149 0 P 306 211 2.9019206807672165e-01 -5.5459519409681024e-01 3.2298851596125400e+00 3.2929356499748437e+00 1.3957000000000000e-01 1 0 0 0 0 P 307 111 2.0388018437591041e-01 8.0629466136948280e-01 1.5116019375069483e+00 1.7305600909557703e+00 1.3497999999999999e-01 2 0 0 -150 0 P 308 313 4.3186549030571347e-01 -1.5218648618855016e-01 1.0885245592402055e+00 1.4755163288763320e+00 8.8464353974705090e-01 2 0 0 -151 0 P 309 -323 -3.7678551838299140e-01 -4.3708093434873758e-02 -8.5428243863360120e-02 1.0041884453883401e+00 9.2586107203350032e-01 2 0 0 -152 0 V -21 0 0 0 0 0 4 1 0 P 109 21 2.0921425684823594e+00 2.2688252333203432e-01 -1.8491314582283104e+02 1.8492512007377965e+02 0 2 0 0 -21 0 P 110 21 -2.0921425684823594e+00 -2.2688252333203432e-01 -1.7468144123524360e+02 1.7469411681057869e+02 0 2 0 0 -21 0 P 111 21 5.0708740716422653e-02 7.4510396516990895e-01 -1.2032499852008831e+02 1.2032731618445810e+02 0 2 0 0 -21 0 P 112 21 8.3898975019348299e-01 1.1912402943439573e+00 -1.4545675031555982e+02 1.4546404768740251e+02 0 2 0 0 -21 0 P 310 92 8.8969849090990560e-01 1.9363442595138662e+00 -6.2537633589372274e+02 6.2541060075621886e+02 6.1900767281325662e+00 2 0 0 -22 0 V -22 0 0 0 0 0 0 5 0 P 311 -211 -7.3195332094217913e-02 1.5209652137105750e-01 -6.3452878618902551e+00 6.3490667616276779e+00 1.3957000000000000e-01 1 0 0 0 0 P 312 213 1.6543682557767398e+00 1.4198684812555171e+00 -3.3748533784986603e+02 3.3749372034207090e+02 9.5133898477979162e-01 2 0 0 -153 0 P 313 -2114 -3.3937779536099688e-01 -2.6854991313084992e-01 -7.2233347304264186e+01 7.2244792619227127e+01 1.2109093578207140e+00 2 0 0 -154 0 P 314 -211 3.6019537258316192e-01 8.3157619124529236e-01 -9.3675526199964438e+01 9.3680013601052593e+01 1.3957000000000000e-01 1 0 0 0 0 P 315 2212 -7.1229200999478115e-01 -1.9864702122715089e-01 -1.1563683667773790e+02 1.1564300743224069e+02 9.3827000000000005e-01 1 0 0 0 0 V -23 0 -3.5130079787957529e-05 -2.9978860253502639e-05 3.6643755989193804e-04 3.6953783168213762e-04 0 2 0 P 316 22 -3.4922484925160580e-01 -2.2824008128397319e-01 3.2793916007356101e+00 3.3058222579283658e+00 0 1 0 0 0 0 P 317 22 -3.9413959780952600e-02 -1.0341155786398779e-01 7.7445221973922729e-01 7.8231940483698115e-01 0 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 318 211 5.4957683771347181e-02 2.7406194729386252e-01 2.3682750019108352e+00 2.3887939566935827e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 111 -6.7029264729157545e-01 7.9506971596284101e-02 2.5984390976761476e+00 2.6880697417064150e+00 1.3497999999999999e-01 2 0 0 -155 0 V -25 0 0 0 0 0 0 3 0 P 320 -211 1.2488400649339799e-01 1.5095564052656857e-01 8.2375994813158826e-01 8.5816307164220640e-01 1.3957000000000000e-01 1 0 0 0 0 P 321 211 -9.6059747971585941e-03 -2.9140678076405774e-01 1.8325665431358384e+00 1.8608573579261556e+00 1.3957000000000000e-01 1 0 0 0 0 P 322 111 1.2213157945655398e-01 -2.0226812499168048e-01 6.3031797618941621e-01 6.8654851874847422e-01 1.3497999999999999e-01 2 0 0 -156 0 V -26 0 0 0 0 0 0 2 0 P 323 211 5.7797945644779809e-02 1.2059349009586276e-01 2.3591884006381383e-01 3.0499323987805571e-01 1.3957000000000000e-01 1 0 0 0 0 P 324 -211 9.4136443300306613e-02 -7.5621701519984630e-01 4.0448327223531710e-01 8.7396358416880626e-01 1.3957000000000000e-01 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 325 311 1.7836175649955571e-01 -4.2093606901626979e-01 8.1458764694562869e-01 1.0584085004557044e+00 4.9767000000000000e-01 2 0 0 -157 0 P 326 111 1.7560503468218684e-02 1.9098047333868165e-01 8.7302525703018413e-02 2.5024636635294106e-01 1.3497999999999999e-01 2 0 0 -158 0 V -28 0 4.4798818501280460e+00 -8.3199850137204727e+00 -5.0318954931644033e-01 1.1781027015900255e+01 0 2 0 P 327 2212 4.8332543267270406e-01 -1.0465832304136009e+00 -6.0368944541835848e-02 1.4875936724846339e+00 9.3827000000000005e-01 1 0 0 0 0 P 328 -211 2.2889154883666299e-01 -2.7613795083938136e-01 -1.9628732613638813e-02 3.8536811111797614e-01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 329 321 -5.3109323147753074e-01 -2.5802678653496419e-01 -1.3556801174511737e+00 1.5588929995170400e+00 4.9359999999999998e-01 1 0 0 0 0 P 330 -211 -1.5328585559591584e-01 -1.4823371133959426e-01 -1.6809944240418442e+00 1.7002034658425602e+00 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 331 -311 3.7511115007346668e-01 8.0360801378026203e-02 -4.6694465288338058e+00 4.7115361133971625e+00 4.9767000000000000e-01 2 0 0 -159 0 P 332 -211 4.4793259114257983e-01 -5.1328680893838810e-02 -4.8177427891980553e+00 4.8408060906691839e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 -5.7364953832152532e-05 6.3986264738074009e-06 -2.0099775274452221e-03 2.0110762928707304e-03 0 2 0 P 333 22 -1.2607838378948459e-02 -1.6793003110063199e-02 -2.4182296867525435e+00 2.4183208596944592e+00 0 1 0 0 0 0 P 334 22 -2.2230042613922563e-01 4.2995242279646073e-02 -5.8125854913474724e+00 5.8169937394279110e+00 0 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 335 2112 7.6989938015198578e-01 3.2327268643072876e-01 -7.8445490157526365e+01 7.8455560466577609e+01 9.3957000000000002e-01 1 0 0 0 0 P 336 -211 -3.6600653788240740e-02 -9.0521177898848823e-02 -9.7627850590256671e+00 9.7642708680751333e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 337 -321 -2.5590698136192030e-01 2.8964379124724021e-01 -3.8905797106739392e+01 3.8910847734014858e+01 4.9359999999999998e-01 1 0 0 0 0 P 338 211 2.7773003830693255e-01 2.8728729016139775e-02 -2.8995225496588628e+01 2.8996905709005780e+01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 -1.1949054740196598e+01 -1.5205131565846116e+01 -2.8133952350278487e+03 2.8135806558685117e+03 0 2 0 P 339 -2112 -4.8085924105391276e-01 -7.8462732624744769e-01 -1.1187404018048824e+02 1.1188177029230989e+02 9.3957000000000002e-01 1 0 0 0 0 P 340 211 -7.2172529766053109e-02 8.0896276533293843e-02 -1.8336841154741624e+01 1.8337692777466195e+01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 341 22 2.3572834213918648e-01 6.5368704242831463e-02 -5.1683913057719138e+01 5.1684491966900985e+01 0 1 0 0 0 0 P 342 22 -4.7432739765127505e-02 2.0956591442434425e-01 -8.0766710766903032e+00 8.0795286631297891e+00 0 1 0 0 0 0 V -36 0 -2.7044069330454310e+01 3.4139109475838048e+01 -8.8437762546413960e+03 8.8453097246038251e+03 0 2 0 P 343 2212 -1.5545398806489519e-01 1.2972904055352946e-01 -4.7882830597859602e+01 4.7892450472100379e+01 9.3827000000000005e-01 1 0 0 0 0 P 344 -211 -3.4506469149544729e-02 1.1006774319532625e-01 -1.4236806809742951e+01 1.4237958193763196e+01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 345 130 -2.5881338687223604e-01 -3.4379333397043899e-01 -9.7197427018118603e+00 9.7419839788428977e+00 4.9767000000000000e-01 1 0 0 0 0 P 346 310 -3.2330377572647356e-01 -4.5117899614064877e-01 -8.2438577714340937e+00 8.2774968560846816e+00 4.9767000000000000e-01 2 0 0 -160 0 V -38 0 0 0 0 0 0 2 0 P 347 -321 2.7012007363889207e-01 -1.2297098716690466e-01 -6.1277778134156546e-01 8.4096628182904865e-01 4.9359999999999998e-01 1 0 0 0 0 P 348 321 1.6906533374189192e-01 4.9617741476239124e-02 -8.0046954456462605e-01 9.5678495970513666e-01 4.9359999999999998e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 349 -311 6.2396307920786633e-02 -7.6107204234402426e-01 -1.3932995601384641e+00 1.6649573706440317e+00 4.9767000000000000e-01 2 0 0 -161 0 P 350 111 3.1137670142783180e-01 1.3615298745345760e-03 -6.0554618052831821e-01 6.9416358382452681e-01 1.3497999999999999e-01 2 0 0 -162 0 V -40 0 0 0 0 0 0 2 0 P 351 -211 -6.3634497298242876e-01 7.7495972466326946e-01 -1.3754204382778417e+00 1.7078520622180917e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 211 -7.0420068930556967e-02 -1.1148452686011884e-01 -2.0151718590444784e-01 2.7834645130171276e-01 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 353 -211 1.3072007471223254e-01 -4.4228278377113461e-01 -7.1181597577699895e-01 8.5957173465888059e-01 1.3957000000000000e-01 1 0 0 0 0 P 354 111 -1.5699645833392478e-01 6.7702173930248313e-02 -9.5462108031020154e-01 9.7915906759672799e-01 1.3497999999999999e-01 2 0 0 -163 0 V -42 0 0 0 0 0 0 2 0 P 355 211 9.0236864001622258e-02 1.1358018069450877e+00 -2.1422141494797855e+00 2.4303805634953499e+00 1.3957000000000000e-01 1 0 0 0 0 P 356 111 -6.7852104773262159e-02 4.5694447176847242e-01 -2.4543161316922912e-01 5.4023923917536776e-01 1.3497999999999999e-01 2 0 0 -164 0 V -43 0 0 0 0 0 0 2 0 P 357 211 -1.9300942727157478e-02 2.3968085567825734e-01 -1.3522179544339896e-01 3.0916687699647755e-01 1.3957000000000000e-01 1 0 0 0 0 P 358 111 8.1315921575995931e-02 5.5807595102041008e-01 -1.5511785583103304e+00 1.6560300620371611e+00 1.3497999999999999e-01 2 0 0 -165 0 V -44 0 0 0 0 0 0 2 0 P 359 -211 2.1624543002613103e-01 -3.0045171470685417e-02 -1.7061002626857716e-01 3.1024565153963690e-01 1.3957000000000000e-01 1 0 0 0 0 P 360 111 -1.0774910777681423e-01 2.1211105060626845e-01 -1.6798361572784659e+00 1.7019606586863509e+00 1.3497999999999999e-01 2 0 0 -166 0 V -45 0 0 0 0 0 0 2 0 P 361 -211 -1.2939288888152095e-01 5.2217725410146676e-01 -2.1502620489383126e+00 2.2209273442412392e+00 1.3957000000000000e-01 1 0 0 0 0 P 362 211 -2.4038058994948699e-01 1.5985626041236342e-01 -3.4125777874563717e-01 4.6826649300574030e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 363 311 6.6381362557904722e-01 -4.4743403180397191e-02 -6.0359536070939135e-01 1.0269631395539294e+00 4.9767000000000000e-01 2 0 0 -167 0 P 364 211 2.9465416712402143e-01 4.1367975606454055e-01 -4.6331048887980891e-01 7.0149013734137133e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 365 211 1.6304043556321215e-02 -1.3199455362731443e+00 -1.3031605996578939e+01 1.3099036478899349e+01 1.3957000000000000e-01 1 0 0 0 0 P 366 111 -5.7072586332312247e-01 -3.5303165277871551e-01 -5.8512170638329879e+00 5.8911221416144421e+00 1.3497999999999999e-01 2 0 0 -168 0 V -48 0 6.0130529267297431e-05 -3.4999137077930674e-04 -9.1649795247018256e-03 9.1719368567281714e-03 0 2 0 P 367 22 3.6296570076580048e-02 -4.0637854630488091e-01 -9.1746162820976593e+00 9.1836836230146606e+00 0 1 0 0 0 0 P 368 22 1.7565754949759321e-01 -8.2730613527051733e-01 -2.3131022629515542e+01 2.3146479190220528e+01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 369 211 -1.3895530095042627e-01 -2.9854248660304242e-02 -2.0769270067613920e+02 2.0769279620098786e+02 1.3957000000000000e-01 1 0 0 0 0 P 370 111 -1.1598976661434057e+00 -1.7082994759545205e+00 -1.2202146197637355e+03 1.2202163743182819e+03 1.3497999999999999e-01 2 0 0 -169 0 V -50 0 0 0 0 0 0 2 0 P 371 311 -4.9467909985155011e-02 -6.2041560434577447e-01 -1.0892958371210304e+02 1.0893249857465493e+02 4.9767000000000000e-01 2 0 0 -170 0 P 372 111 3.6319070049383179e-01 -2.6650541643854164e-01 -1.0187941961365831e+02 1.0188050497047108e+02 1.3497999999999999e-01 2 0 0 -171 0 V -51 0 -1.0265434797726391e+01 -2.8195097110474933e+01 -3.6746341222320152e+04 3.6746408544720260e+04 0 2 0 P 373 2212 -1.8859508045995793e-01 -3.2022765379317969e-01 -5.1753456768426258e+02 5.1753555164122213e+02 9.3827000000000005e-01 1 0 0 0 0 P 374 -211 8.5709276394327072e-03 -1.7422762949690426e-01 -1.2688323615462437e+02 1.2688343282549837e+02 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 375 311 -5.5698231576724611e-01 -3.0045443088823104e-01 -4.7140974751347659e+02 4.7141043500151096e+02 4.9767000000000000e-01 2 0 0 -172 0 P 376 211 1.1233625250327853e-01 -3.2899938850298155e-01 -2.0907891531002582e+02 2.0907925092422039e+02 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 377 -311 7.7160747885760286e-02 -1.2225354511316572e-01 -4.5390441388848267e+01 4.5393399791309712e+01 4.9767000000000000e-01 2 0 0 -173 0 P 378 -211 -3.5091802513224468e-01 -5.7065047710748794e-02 -1.8732153857299433e+01 1.8736047283204400e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 379 -211 -7.6439335133430164e-01 3.5743713701670937e-01 -2.3793144968310273e+01 2.3808512884479182e+01 1.3957000000000000e-01 1 0 0 0 0 P 380 211 -1.0680186703641643e+00 -3.1566926922584164e-02 -1.3875195761936117e+01 1.3916975158707146e+01 1.3957000000000000e-01 1 0 0 0 0 V -55 0 2.3891095388510105e-05 1.5221698567656365e-05 -2.7140965437117532e-03 2.7143799754577773e-03 0 2 0 P 381 22 8.1494384510381421e-02 6.6012057296587462e-02 -4.1325715519829016e+00 4.1339020983416646e+00 0 1 0 0 0 0 P 382 22 3.7364529509838977e-02 9.7163482818730055e-03 -9.3701399179464921e+00 9.3702194530002156e+00 0 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 383 321 -2.4445905231184017e+00 4.4247196152063040e-01 -3.2707222494438007e+01 3.2805149725662339e+01 4.9359999999999998e-01 1 0 0 0 0 P 384 111 -5.6314757740069266e-01 4.3098576520156273e-01 -7.3390832075970218e+00 7.3744997018218958e+00 1.3497999999999999e-01 2 0 0 -174 0 V -57 0 0 0 0 0 0 1 0 P 385 130 -5.2893770907620685e-01 1.5428645056529156e-01 -2.3585679462959206e+01 2.3597362788397913e+01 4.9767000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 386 2112 -2.4231261246433857e+00 6.3836735282129820e-01 -2.9892865911919163e+01 3.0012418718023312e+01 9.3957000000000002e-01 1 0 0 0 0 P 387 211 -8.3215239006047437e-01 4.3545744299104389e-01 -8.1468818155137317e+00 8.2020280349306276e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 388 -2212 9.1038946387974953e-02 4.5847100607326174e+00 -8.0049981740049034e+01 8.0186705766017269e+01 9.3827000000000005e-01 1 0 0 0 0 P 389 111 2.1742347224667860e-01 1.0959093400360720e+00 -1.8339913407376155e+01 1.8374409749385631e+01 1.3497999999999999e-01 2 0 0 -175 0 V -60 0 0 0 0 0 0 2 0 P 390 211 5.1573227748864925e-01 3.4918149566153138e+00 -5.8418621325976289e+01 5.8525323996420539e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 4.5787417264338770e-02 1.4802750961164474e-01 -7.5255316498139697e+00 7.5283367913459696e+00 1.3497999999999999e-01 2 0 0 -176 0 V -61 0 0 0 0 0 0 2 0 P 392 -211 -9.5192450178213754e-03 6.8788763010154141e-01 -1.5579371900171031e+01 1.5595178376549951e+01 1.3957000000000000e-01 1 0 0 0 0 P 393 111 -9.1030422388988466e-02 1.9725063769653117e-01 -1.1565041135567979e+00 1.1844474310604929e+00 1.3497999999999999e-01 2 0 0 -177 0 V -62 0 0 0 0 0 0 3 0 P 394 -211 2.4971920618336998e-01 1.4873162233095298e+00 -2.3576587983371237e+01 2.3625186770745358e+01 1.3957000000000000e-01 1 0 0 0 0 P 395 211 -2.4736888819250884e-02 1.9893731910561230e+00 -3.8535245850575066e+01 3.8586822493645734e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 1.0100973982477385e-02 2.6829160256547191e-01 -4.6462411417672929e+00 4.6559487498826249e+00 1.3497999999999999e-01 2 0 0 -178 0 V -63 0 0 0 0 0 0 2 0 P 397 211 4.6397931565677453e-01 2.6606883550724123e+00 -5.6074627061404449e+01 5.6139806013101499e+01 1.3957000000000000e-01 1 0 0 0 0 P 398 111 -1.8375671446043518e-01 4.3896814166101600e-01 -9.0132277504493228e+00 9.0267908827762469e+00 1.3497999999999999e-01 2 0 0 -179 0 V -64 0 0 0 0 0 0 3 0 P 399 211 5.0914915902046165e-01 4.0339390583537915e-01 -1.2618606216119131e+01 1.2636085712426009e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 -211 6.0962015346273213e-01 1.2759409972295239e+00 -2.1482488656725657e+01 2.1529432431700691e+01 1.3957000000000000e-01 1 0 0 0 0 P 401 111 1.0838094664876670e-01 1.6335150026464779e-01 -5.4001547541941601e+00 5.4053974055457736e+00 1.3497999999999999e-01 2 0 0 -180 0 V -65 0 -1.0610870702120488e-07 1.1950180147394478e-06 -1.2469251565410264e-05 1.2559783557412157e-05 0 2 0 P 402 22 7.8873674089968669e-03 1.8449348729100926e-01 -1.7742174970241318e+00 1.7838014979711223e+00 0 1 0 0 0 0 P 403 22 -2.3640698683914402e-02 -7.0762404488373338e-03 -7.7018430494396078e-02 8.0875178200567388e-02 0 1 0 0 0 0 V -66 0 3.4795084720849800e-06 -9.2375041519905589e-06 -1.9424641311456100e-04 1.9466459097895354e-04 0 2 0 P 404 22 2.9718949826739848e-02 -5.1146513201618775e-02 -3.4647925444402250e-01 3.5149261094875578e-01 0 1 0 0 0 0 P 405 22 2.8448292595632071e-02 -1.0327763828335540e-01 -2.9007547419544566e+00 2.9027321007788958e+00 0 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 406 211 6.6152105014075646e-01 2.1650649191590557e-02 -1.3057526448043941e+01 1.3075035586056995e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 1.5817790108776035e+00 -3.6688181427684285e-01 -3.1272661482516099e+01 3.1315079481063847e+01 1.3497999999999999e-01 2 0 0 -181 0 V -68 0 0 0 0 0 0 2 0 P 408 321 2.4122536627879443e-01 -5.1024432822615717e-01 -4.5409407337513912e+00 4.6024257364205150e+00 4.9359999999999998e-01 1 0 0 0 0 P 409 -211 3.4897250140822911e-01 1.5784931241188897e-02 -1.4922677189504800e+00 1.5389521437377689e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 410 3122 5.1145541015789631e-01 -1.1738284201873723e+00 -1.0880792232022340e+01 1.1012531101225417e+01 1.1156800000000000e+00 2 0 0 -182 0 P 411 22 -7.8418432773633001e-03 -3.1120632218611482e-02 -8.7086038004130739e-01 8.7145154184347118e-01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 412 -2212 6.5444491416359640e-01 -4.4729313032221374e-01 -6.8788564615985717e+00 6.9876595582701695e+00 9.3827000000000005e-01 1 0 0 0 0 P 413 -211 5.6060445824246109e-02 2.4660419371516855e-02 -1.4240850346013971e+00 1.4322181679287742e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 414 -211 8.8291555506747485e-02 -3.2681508906018747e-01 -1.9742787906300530e+00 2.0079492098265046e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 211 7.2283596297819408e-01 -5.5077320028820531e-01 -4.6758134498908364e+00 4.7653493209428381e+00 1.3957000000000000e-01 1 0 0 0 0 P 416 111 1.7200449668294479e-01 -1.5381349922938350e-01 -6.2776111181218475e-01 6.8231059886829482e-01 1.3497999999999999e-01 2 0 0 -183 0 V -72 0 -1.3053235699611099e-04 -9.1457591138606887e-04 -3.3184843761162671e-03 3.4450620297890324e-03 0 2 0 P 417 22 -2.5884597092607133e-02 -4.5372558412041003e-01 -1.7684257881625935e+00 1.8258879172311053e+00 0 1 0 0 0 0 P 418 22 -3.1793995122519142e-01 -1.9552836214976483e+00 -6.9725210389282619e+00 7.2484666993357489e+00 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 419 3122 8.1864299051121725e-01 -4.3065715181241488e+00 -2.2296894757247248e+01 2.2751109693041151e+01 1.1156800000000000e+00 2 0 0 -184 0 P 420 111 -6.2654272168518779e-02 -2.1317656728313494e-01 -1.3838032443754433e+00 1.4080130774263393e+00 1.3497999999999999e-01 2 0 0 -185 0 V -74 0 0 0 0 0 0 3 0 P 421 111 -3.2225663858572326e-02 -5.0034976859646108e-01 -2.8407292310782126e+00 2.8877933702132967e+00 1.3497999999999999e-01 2 0 0 -186 0 P 422 111 -2.3124130600970346e-02 -1.0235565089294483e+00 -3.8695710139074420e+00 4.0049971391326311e+00 1.3497999999999999e-01 2 0 0 -187 0 P 423 221 -1.4243534079205253e-01 -1.6264124412020764e+00 -7.7317954186374287e+00 7.9212288916156295e+00 5.4744999999999999e-01 2 0 0 -188 0 V -75 0 1.1557547670036504e+01 -2.2819324064117899e+02 -9.2147745414531096e+02 9.5199639114276431e+02 0 2 0 P 424 -2112 1.1286348834497745e-01 -2.6659837878078827e+00 -1.0353359983406341e+01 1.0732896275225789e+01 9.3957000000000002e-01 1 0 0 0 0 P 425 211 8.3432197206315936e-02 -1.2096955421558948e+00 -5.2971961506133098e+00 5.4359995473891445e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 426 211 4.9242001497886545e-01 1.3526746906889592e-01 -4.4205918111685538e-01 6.8968896167025573e-01 1.3957000000000000e-01 1 0 0 0 0 P 427 111 -6.7575971354105938e-02 7.9454762271944590e-01 -1.1665045269308587e+00 1.4194452608056995e+00 1.3497999999999999e-01 2 0 0 -189 0 V -77 0 0 0 0 0 0 3 0 P 428 -211 -1.5798882232823794e-01 -1.0827363649764614e-01 -9.4593172486047372e-02 2.5516916256096278e-01 1.3957000000000000e-01 1 0 0 0 0 P 429 211 -1.6857205695051244e-01 -3.0709204628609977e-02 -3.3799346776022821e-01 4.0383036386833654e-01 1.3957000000000000e-01 1 0 0 0 0 P 430 111 3.5550659014464081e-02 -1.3739928773124615e-02 -1.5004690299147835e-01 2.0539305853993056e-01 1.3497999999999999e-01 2 0 0 -190 0 V -78 0 0 0 0 0 0 2 0 P 431 211 2.9559110863185145e-01 2.4369659241425726e-01 -6.8751490403369497e-01 7.9932387730192844e-01 1.3957000000000000e-01 1 0 0 0 0 P 432 -211 -7.5771889304523041e-02 1.2031706595563241e+00 -1.4973907213832387e+00 1.9274386559915708e+00 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 433 -211 1.9324165992303396e-01 -3.3991924151632553e-02 -1.2863531514845844e-01 2.7299197651338231e-01 1.3957000000000000e-01 1 0 0 0 0 P 434 111 8.8247968430301105e-01 7.5292534699697056e-01 -9.5938586265839509e-01 1.5113926707599330e+00 1.3497999999999999e-01 2 0 0 -191 0 V -80 0 0 0 0 0 0 2 0 P 435 -211 3.5668010968272812e-01 -2.8833724028121326e-02 -4.4473634083007674e-01 5.8764128687451755e-01 1.3957000000000000e-01 1 0 0 0 0 P 436 211 7.2911267418773698e-02 1.6373058797812268e-01 1.7082726939204015e-01 2.8422790015094290e-01 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 437 2212 1.1051716973857160e+00 -5.2784261551127198e-01 -2.7687811066978565e-02 1.5430941368671860e+00 9.3827000000000005e-01 1 0 0 0 0 P 438 211 1.8445572703723920e-01 1.0998885956465840e-02 -4.4426404772426625e-02 2.3579308953004396e-01 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 439 -211 1.5816375768738942e+00 1.5153849916082326e-01 -3.0101970115248972e-01 1.6231555645375992e+00 1.3957000000000000e-01 1 0 0 0 0 P 440 111 2.8232274432354493e-01 -1.4831201442077724e-01 -2.4548377041307860e-02 3.4716683136395499e-01 1.3497999999999999e-01 2 0 0 -192 0 V -83 0 0 0 0 0 0 3 0 P 441 211 8.9946720496033683e-01 -1.9514066535525329e-01 7.4483468866098401e-01 1.1922162683033464e+00 1.3957000000000000e-01 1 0 0 0 0 P 442 -211 7.9125923913353913e-01 -2.5901767096985107e-01 8.7923659281404520e-01 1.2189003685421071e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 221 1.6267197278574859e+00 -3.9520460667523788e-01 1.2256917196341346e+00 2.1457924988725599e+00 5.4744999999999999e-01 2 0 0 -193 0 V -84 0 0 0 0 0 0 1 0 P 444 310 1.0994582490827283e-01 4.4157658118533738e-01 4.3825720689648595e-01 8.0425292648693592e-01 4.9767000000000000e-01 2 0 0 -194 0 V -85 0 0 0 0 0 0 2 0 P 445 -311 -3.5026461917206375e-01 8.3682200270290730e-01 1.2512858081252540e+00 1.6236834575024546e+00 4.9767000000000000e-01 2 0 0 -195 0 P 446 -211 2.3217509577752868e-01 1.7640517600305883e-01 2.3784635791975725e-01 4.0134117169269845e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 3.0191290324470634e-04 1.5212095207590020e-03 5.6163456541046832e-04 1.6510462757386042e-03 0 2 0 P 447 22 3.1200972431352786e-01 1.8931155188376119e+00 7.0693626172012181e-01 2.0447482275001057e+00 0 1 0 0 0 0 P 448 22 2.4826125365274060e-01 9.2984943803422881e-01 3.3530984250530449e-01 1.0191596135830410e+00 0 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 449 211 -1.0385843257330798e+00 8.3642270380763728e-01 9.9659629259087290e-01 1.6706119526715912e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 -211 -8.5169353505098266e-01 4.8528531000311770e-01 1.7520637337852680e+00 2.0124837445052908e+00 1.3957000000000000e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 451 -211 -6.3082346729164152e-01 2.9474197900291582e-01 4.0110749771344084e-01 8.1558450861596310e-01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 -2.4187282480742903e-01 -2.9164539337902629e-01 6.1587161171509852e-01 7.3557932364639322e-01 1.3497999999999999e-01 2 0 0 -196 0 V -89 0 0 0 0 0 0 2 0 P 453 311 -3.8498959213061046e-01 -2.4572858327619290e-01 4.7511245860476964e-01 8.2583702987289664e-01 4.9767000000000000e-01 2 0 0 -197 0 P 454 211 -3.7922786711331795e-05 8.8606623784819542e-03 2.7961135036391516e-01 3.1263525861338054e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 455 -311 -1.2810045753631112e+00 -1.5518075696047956e-01 1.4872724646083786e+00 2.0309378627408403e+00 4.9767000000000000e-01 2 0 0 -198 0 P 456 -211 -3.6321455135882430e-01 2.3810657096022927e-01 2.7327030634622357e-01 5.3176686121249561e-01 1.3957000000000000e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 457 2212 -9.7811347239537128e-01 -2.0170536590420562e-01 5.4980698763309432e-01 1.4764922404354375e+00 9.3827000000000005e-01 1 0 0 0 0 P 458 111 -5.5742581137003255e-01 -5.6137615219354031e-01 4.7978598685064672e-01 9.3502989952803806e-01 1.3497999999999999e-01 2 0 0 -199 0 V -92 0 -1.2277361346393125e-04 -5.1166732709541753e-06 5.7863597321660116e-05 1.3632757075922672e-04 0 2 0 P 459 22 -7.7325657942164017e-01 3.2074516726953446e-02 3.8473436839896480e-01 8.6427718150456412e-01 0 1 0 0 0 0 P 460 22 -6.4016027368004791e-01 -9.0979618800097237e-02 2.8141352224327998e-01 7.0517801833047378e-01 0 1 0 0 0 0 V -93 0 -1.6056220687860230e+02 -3.2527161588360519e+02 3.2714199314763295e+02 5.6712283993475785e+02 0 2 0 P 461 -2112 -4.8905334446880777e-01 -1.1830248992040264e+00 1.0910222971493948e+00 1.9266142643637738e+00 9.3957000000000002e-01 1 0 0 0 0 P 462 111 -1.3264486782784818e-01 -7.6429526821500171e-02 1.7567424533661086e-01 2.6929013053918904e-01 1.3497999999999999e-01 2 0 0 -200 0 V -94 0 -2.1878272884053370e+01 -1.0491628911081492e+02 1.7919570865815629e+02 2.4112111719741668e+02 0 2 0 P 463 3122 -1.0664652737860761e-01 -1.0525514415714872e+00 1.8095171067173308e+00 2.3745172226915501e+00 1.1156800000000000e+00 2 0 0 -201 0 P 464 111 -1.3190963229583208e-01 -9.1434061772881242e-02 1.4439581475408197e-01 2.5461753761908046e-01 1.3497999999999999e-01 2 0 0 -202 0 V -95 0 0 0 0 0 0 2 0 P 465 -3122 -1.2672288365756605e+00 -1.2797733195426213e+00 3.5530486737847378e+00 4.1367360822689099e+00 1.1156800000000000e+00 2 0 0 -203 0 P 466 22 -4.9358599292703129e-02 -1.3560264158002100e-01 1.5602829384652639e-01 2.1253041243143356e-01 0 1 0 0 0 0 V -96 0 0 0 0 0 0 3 0 P 467 -211 -2.9951735239253824e-01 -7.0861049919789276e-01 2.0804806850196149e+00 2.2225478959062746e+00 1.3957000000000000e-01 1 0 0 0 0 P 468 211 6.9038749669624880e-02 -5.4097401581759685e-01 1.6734600029486160e+00 1.7656068081865068e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 111 -1.8934825371050781e-01 -8.9372594417251011e-02 5.0492072765713403e-01 5.6303176059073168e-01 1.3497999999999999e-01 2 0 0 -204 0 V -97 0 0 0 0 0 0 2 0 P 470 211 -4.3303407498071067e-01 -2.7091697976999041e-01 6.6027335958013122e-01 8.4637770191169759e-01 1.3957000000000000e-01 1 0 0 0 0 P 471 -211 -3.3079136763715467e-01 -9.4865172922309671e-01 2.3291463713382847e+00 2.5404262705852201e+00 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 3 0 P 472 111 -1.2889504948761047e-02 -4.3184989441968824e-01 1.9333043350417933e+00 1.9855844789228965e+00 1.3497999999999999e-01 2 0 0 -205 0 P 473 111 4.2452447618167827e-02 -4.4262327551379092e-02 6.3279163150975315e-01 6.4992785234810035e-01 1.3497999999999999e-01 2 0 0 -206 0 P 474 111 -5.6527746589092633e-02 -4.5518397647845843e-01 1.8240978969586183e+00 1.8857201745397001e+00 1.3497999999999999e-01 2 0 0 -207 0 V -99 0 0 0 0 0 0 3 0 P 475 111 3.0334756411186181e-01 -3.9660058838398538e-01 1.4331663551665743e+00 1.5236460131344705e+00 1.3497999999999999e-01 2 0 0 -208 0 P 476 111 9.4403301837277728e-02 -1.5572949399478234e-01 4.1233853239643448e-01 4.7053833467263489e-01 1.3497999999999999e-01 2 0 0 -209 0 P 477 111 1.4173519104288321e-01 -4.7022848367867137e-01 1.7211326849513700e+00 1.7949153213593718e+00 1.3497999999999999e-01 2 0 0 -210 0 V -100 0 0 0 0 0 0 2 0 P 478 211 -1.4334278229452665e-01 -7.1056600887760835e-02 8.4987380911234123e-01 8.7599170662785319e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 -211 8.1682854505187485e-01 -4.4595602878123380e-01 3.7088175615903038e+00 3.8263420053202952e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 480 -211 3.7478793871599081e-01 -5.2776979810690883e-01 1.2814421489509662e+00 1.4424218262383786e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 211 -3.0022534035613974e-02 2.2326666582142068e-01 6.4104263101458880e-01 6.9366043298939850e-01 1.3957000000000000e-01 1 0 0 0 0 V -102 0 2.2740494413869269e-04 -1.8917030976931109e-04 7.4568091886590489e-04 8.0284612279923320e-04 0 2 0 P 482 22 5.1715200936983518e-03 -2.9244041336728192e-02 6.7937006010513210e-02 7.4144422308467031e-02 0 1 0 0 0 0 P 483 22 9.5430894110388620e-01 -7.6891457720082557e-01 3.0782842630545040e+00 3.3132716740816406e+00 0 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 484 211 1.1380921325246680e-01 -2.7749570432697102e-01 3.4922142762066670e+00 3.5078478785122256e+00 1.3957000000000000e-01 1 0 0 0 0 P 485 -211 3.8952752054466383e-01 5.2250878607290629e-01 5.3081865673113420e+00 5.3498664973127719e+00 1.3957000000000000e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 486 211 1.0270789306046961e-01 -1.4650980485671275e-01 1.4677396452576621e+00 1.4851779305447415e+00 1.3957000000000000e-01 1 0 0 0 0 P 487 -211 5.2338935513451612e-01 7.6379758107470841e-01 7.5067461558502719e+00 7.5649217309365824e+00 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 488 -211 1.4354164858911772e-01 5.7814119293244530e-02 1.2301326970268904e+00 1.2476589736237971e+00 1.3957000000000000e-01 1 0 0 0 0 P 489 111 2.1733014095896666e+00 -7.7638846023469099e-01 3.0741422180479088e+01 3.0828222059291090e+01 1.3497999999999999e-01 2 0 0 -211 0 V -106 0 0 0 0 0 0 2 0 P 490 211 6.4098697335437296e-03 3.4981666082113438e-01 3.5814049555891834e+00 3.6011600941136748e+00 1.3957000000000000e-01 1 0 0 0 0 P 491 -211 7.3355523213109719e-01 -1.7096579572380810e-01 7.8466576797849061e+00 7.8839615112278310e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 492 211 -1.6638062569196275e+00 -2.3546034725786278e+00 2.7219388856750637e+01 2.7372011586537532e+01 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -3.5017025324269502e-01 -8.2026687191726999e-01 7.9719385206338860e+00 8.0228100017753992e+00 1.3497999999999999e-01 2 0 0 -212 0 V -108 0 0 0 0 0 0 3 0 P 494 -211 -7.9446973042196667e-02 -2.9478515110660514e-01 4.9892845305614539e+00 5.0005649699447297e+00 1.3957000000000000e-01 1 0 0 0 0 P 495 211 -2.9337324809500476e-01 -7.7539110369146924e-01 2.4982509546279239e+01 2.4996651020511027e+01 1.3957000000000000e-01 1 0 0 0 0 P 496 111 -8.0106189000270431e-02 -1.1332397578324700e-02 5.5841347737157410e+00 5.5863517787705037e+00 1.3497999999999999e-01 2 0 0 -213 0 V -109 0 0 0 0 0 0 2 0 P 497 -211 -4.3137259984809252e-02 -1.7282417746669296e-01 1.7245309228783490e+00 1.7393147237862634e+00 1.3957000000000000e-01 1 0 0 0 0 P 498 111 -1.2809859062758999e+00 1.6514453897416675e-01 8.6547873259240262e+00 8.7516718898851344e+00 1.3497999999999999e-01 2 0 0 -214 0 V -110 0 0 0 0 0 0 3 0 P 499 -211 -1.0269933391568598e+00 -1.9376664676491487e-01 8.8378165307866876e+00 8.9004910903172938e+00 1.3957000000000000e-01 1 0 0 0 0 P 500 211 -6.5123284355307076e-01 -1.8469480284033953e-02 9.5469645392860141e+00 9.5701858413255909e+00 1.3957000000000000e-01 1 0 0 0 0 P 501 111 -2.8290553600809032e-01 1.0849783976945512e-01 2.8844967003357946e+00 2.9035061801530144e+00 1.3497999999999999e-01 2 0 0 -215 0 V -111 0 0 0 0 0 0 2 0 P 502 -211 -6.8954049978751608e-01 1.6573952877977835e-01 6.3639593915421155e+00 6.4048727242892545e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 211 -1.0382049576953860e+00 1.2478255028966813e-01 1.9169376884935566e+01 1.9198383529887145e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 3 0 P 504 -211 -2.7415690574213841e-01 2.8647226292201358e-02 1.3898964392623572e+01 1.3902398125678111e+01 1.3957000000000000e-01 1 0 0 0 0 P 505 211 -5.2012217214909517e-01 -2.1466710323693891e-01 1.9588649734926648e+01 1.9597226519630656e+01 1.3957000000000000e-01 1 0 0 0 0 P 506 111 -2.0090466846621760e+00 -4.6482767578600453e-01 6.1003761426893959e+01 6.1038753764957590e+01 1.3497999999999999e-01 2 0 0 -216 0 V -113 0 0 0 0 0 0 3 0 P 507 211 -2.9069162959686939e-01 1.0147785145468220e-02 1.1063705598566953e+01 1.1068408465435434e+01 1.3957000000000000e-01 1 0 0 0 0 P 508 -211 -3.6248810297005302e-01 -4.3479739063911654e-01 1.5204216516171988e+01 1.5215391090972275e+01 1.3957000000000000e-01 1 0 0 0 0 P 509 111 -2.9251495478855838e-01 -2.7550186055973952e-02 4.3138761182365126e+00 4.3259762800341370e+00 1.3497999999999999e-01 2 0 0 -217 0 V -114 0 0 0 0 0 0 2 0 P 510 211 -1.7685358638917710e+00 4.2977217590741895e-01 7.7378798958636295e+01 7.7400325782848029e+01 1.3957000000000000e-01 1 0 0 0 0 P 511 111 -2.1703667966383092e-01 -1.9320994120898607e-01 1.6949789488719176e+01 1.6952817415226196e+01 1.3497999999999999e-01 2 0 0 -218 0 V -115 0 0 0 0 0 0 2 0 P 512 321 -8.5494398993548559e-01 1.5444643571862726e+00 8.8268534978055172e+01 8.8287565418402465e+01 4.9359999999999998e-01 1 0 0 0 0 P 513 -211 9.9324908561916073e-02 1.5077957331354661e-01 1.0348072978320921e+01 1.0350589068586631e+01 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 514 211 -5.0341294340212672e-01 4.2443334109271869e-01 2.3820701883639067e+01 2.3830209530482978e+01 1.3957000000000000e-01 1 0 0 0 0 P 515 111 1.1969670042372088e-01 -2.4027060520605048e-01 2.2287564438890186e+01 2.2289589621208840e+01 1.3497999999999999e-01 2 0 0 -219 0 V -117 0 -9.7726456922583937e-07 6.2703706965979618e-06 1.2459063753887179e-04 1.2479737004349103e-04 0 2 0 P 516 22 -3.5485822360998759e-02 8.5194989901120968e-02 8.5689781934114428e-01 8.6185341136674576e-01 0 1 0 0 0 0 P 517 22 -3.7831733045084132e-03 1.6676457914463474e-01 4.1494733922463878e+00 4.1528248422270702e+00 0 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 518 2112 1.4166803895071581e-01 2.2925434205135202e-02 6.0684620208792410e+01 6.0692063048466807e+01 9.3957000000000002e-01 1 0 0 0 0 P 519 111 1.8374679354881757e-01 2.2200254553726820e-01 2.0875296718037976e+01 2.0877722114275102e+01 1.3497999999999999e-01 2 0 0 -220 0 V -119 0 0 0 0 0 0 2 0 P 520 -211 -6.5585989278022496e-03 5.1749745064770103e-01 5.2875599032578002e+01 5.2878315966618210e+01 1.3957000000000000e-01 1 0 0 0 0 P 521 111 3.7266331674035819e-01 -2.5503236458752970e-01 2.6892028171661746e+01 2.6896158057248250e+01 1.3497999999999999e-01 2 0 0 -221 0 V -120 0 0 0 0 0 0 3 0 P 522 211 2.3088236540433194e-01 -2.5084515650758199e-01 6.2460942382484944e+01 6.2462028729878782e+01 1.3957000000000000e-01 1 0 0 0 0 P 523 -211 -6.5665898886246812e-02 -3.7157067565163654e-01 2.6331200829626688e+01 2.6334274125031698e+01 1.3957000000000000e-01 1 0 0 0 0 P 524 111 1.1586592936623164e-02 1.3593610330562066e-02 2.1933528930196836e+01 2.1933951535634414e+01 1.3497999999999999e-01 2 0 0 -222 0 V -121 0 0 0 0 0 0 3 0 P 525 -211 1.6797736333767394e-01 -5.3764691767498329e-01 3.6550096276987283e+01 3.6554702819809911e+01 1.3957000000000000e-01 1 0 0 0 0 P 526 211 -5.8957988365910974e-03 -2.4595223151058296e-01 1.7935823411267339e+01 1.7938053642625071e+01 1.3957000000000000e-01 1 0 0 0 0 P 527 221 3.0672810183706917e-01 -9.4157012362635528e-01 1.0329942186110023e+02 1.0330561889251820e+02 5.4744999999999999e-01 2 0 0 -223 0 V -122 0 0 0 0 0 0 3 0 P 528 211 2.6798807888974363e-01 9.0353719918769657e-02 5.4924860972964169e+01 5.4925766395103423e+01 1.3957000000000000e-01 1 0 0 0 0 P 529 -211 4.6407187797339250e-01 -1.5064735078445474e-01 1.2543597614381025e+02 1.2543700270760482e+02 1.3957000000000000e-01 1 0 0 0 0 P 530 111 -1.4937756601579779e-02 9.2524465093493814e-03 8.8098772581197817e+00 8.8109287619339440e+00 1.3497999999999999e-01 2 0 0 -224 0 V -123 0 1.8906435616666005e+01 1.7216495270174835e+01 1.4048904394874855e+04 1.4049503838211580e+04 0 2 0 P 531 -3122 3.0512315740965235e-01 1.4479826203357199e-01 1.2881379555511245e+02 1.2881906976008864e+02 1.1156800000000000e+00 2 0 0 -225 0 P 532 211 -1.0878992987436921e-01 3.3985838352845917e-02 1.7076566811710123e+01 1.7077517505356283e+01 1.3957000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 533 -321 1.9407835649757207e-01 2.3814360280639812e-01 1.8825863028433770e+02 1.8825952803584462e+02 4.9359999999999998e-01 1 0 0 0 0 P 534 111 -6.4224159560080860e-02 -1.3752158208386039e-01 1.5789879104481690e+02 1.5789892168708235e+02 1.3497999999999999e-01 2 0 0 -226 0 V -125 0 0 0 0 0 0 2 0 P 535 2212 1.5372365387380954e-01 -3.3557287288627190e-02 2.9668196476712365e+02 2.9668349014686845e+02 9.3827000000000005e-01 1 0 0 0 0 P 536 211 8.1711084621137922e-02 4.0324365279261034e-03 2.2433272912918858e+02 2.2433278746384062e+02 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 537 211 3.5142693866562474e-01 -5.9823371716839102e-01 2.9889914598581248e+02 2.9889998383289770e+02 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -3.3188965884857341e-01 -4.3091296670048501e-01 2.6803420586941434e+02 2.6803479407077543e+02 1.3957000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 539 22 -2.1456511855755053e-01 -1.9641257253865954e-01 -1.7659632233577351e+01 1.7662027819985934e+01 0 1 0 0 0 0 P 540 22 2.0917588932588563e-01 9.5582421872892967e-02 -6.6440636568210794e+00 6.6480427516628575e+00 0 1 0 0 0 0 V -128 0 -7.9505992969843717e+01 2.3715815936510218e+01 -4.6514209576002877e+03 4.6550111649325718e+03 0 2 0 P 541 -2212 -4.0137839893841670e-01 1.3835579037519852e-01 -2.4125889265554434e+01 2.4147859747616547e+01 9.3827000000000005e-01 1 0 0 0 0 P 542 211 -1.4322978747130638e-01 2.4095202612318255e-02 -7.7358841344420073e+00 7.7385062174310857e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 543 -211 2.6255514311355738e-01 3.3733244714449795e-01 -3.5033435254076814e+01 3.5036321066424257e+01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 6.0869024753536138e-01 -3.2700195964405165e-01 -3.6757447331730667e+01 3.6764188934946048e+01 1.3497999999999999e-01 2 0 0 -227 0 V -130 0 0 0 0 0 0 2 0 P 545 -211 9.6488340611237039e-02 1.1986220778712812e-01 -5.8191756578263750e+01 5.8192127391920735e+01 1.3957000000000000e-01 1 0 0 0 0 P 546 111 3.4219344136526816e-02 -2.2902993474209882e-01 -8.0380297484686274e+00 8.0424975916805668e+00 1.3497999999999999e-01 2 0 0 -228 0 V -131 0 0 0 0 0 0 2 0 P 547 -211 -1.7677659474146633e-02 9.2432512797423494e-01 1.3030517730113727e+01 1.3064017817714323e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 -3.7598669792047967e-01 2.2246845617775887e-01 1.3933639256598635e+01 1.3941139865320691e+01 1.3497999999999999e-01 2 0 0 -229 0 V -132 0 0 0 0 0 0 2 0 P 549 -211 -6.0719182846822961e-01 1.1763609013924641e+00 1.8782998999236341e+01 1.8830109879581077e+01 1.3957000000000000e-01 1 0 0 0 0 P 550 211 1.3765466020950026e-01 7.5076412901315936e-01 6.2841153672731958e+00 6.3318386995397642e+00 1.3957000000000000e-01 1 0 0 0 0 V -133 0 1.3429697505978824e-05 -6.4776965572002428e-06 2.9187245979546303e-04 2.9242212175223386e-04 0 2 0 P 551 22 5.9289248793760990e-02 -4.9753486144116656e-02 2.6557909938932696e+00 2.6569185963537958e+00 0 1 0 0 0 0 P 552 22 1.2303881620774296e-01 -3.8190853511740848e-02 1.3068106058854541e+00 1.3131454798461843e+00 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 553 211 -6.8443839892933789e-01 2.2793938525227468e+00 3.8656445504059342e+01 3.8729889633848131e+01 1.3957000000000000e-01 1 0 0 0 0 P 554 111 1.2812932717273764e-01 2.8248138213212576e-01 6.6298477019098430e+00 6.6384721891902387e+00 1.3497999999999999e-01 2 0 0 -230 0 V -135 0 0 0 0 0 0 1 0 P 555 310 -4.2047658292071646e-02 9.6338285762544107e-01 8.2030655868677496e+00 8.2745292909801424e+00 4.9767000000000000e-01 2 0 0 -231 0 V -136 0 0 0 0 0 0 2 0 P 556 3122 4.7040461788903759e-01 1.2141160470177887e+00 8.0214242815584846e+00 8.2026427233747956e+00 1.1156800000000000e+00 2 0 0 -232 0 P 557 22 -2.4154047156241920e-02 1.4397015099605523e-01 7.7275642541895939e-01 7.8642438631958800e-01 0 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 558 -2112 -3.1699311775423472e-01 1.1828632646372719e+00 9.1490218139859110e+00 9.2783103029173333e+00 9.3957000000000002e-01 1 0 0 0 0 P 559 -211 -4.6351261535618964e-02 5.8967625898861842e-01 4.3128612624831630e+00 4.3554699613461487e+00 1.3957000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 560 211 -8.3027088998669674e-02 4.0161698946713403e-01 5.6181313387897358e+00 5.6348087126829416e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 3.1756012014610827e-02 -1.1686673410350228e-01 1.0458255788062825e+00 1.0614315896583193e+00 1.3497999999999999e-01 2 0 0 -233 0 V -139 0 0 0 0 0 0 2 0 P 562 -211 1.2351510758322135e+00 -1.0342277211232558e-01 3.7049828625180985e+00 3.9093058522420159e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 211 -4.6974556305966871e-02 -7.1948811909698610e-02 2.3945288604073212e-01 2.9017358599396237e-01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 564 321 1.4587404831970890e-01 -1.6147481723946094e-01 1.0552817432411927e+00 1.1851640697362829e+00 4.9359999999999998e-01 1 0 0 0 0 P 565 -211 -2.2925366063116559e-01 -3.1690069336018306e-01 5.3354417712940760e-01 6.7611571806433479e-01 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 1 0 P 566 310 1.1433372611265417e-02 -1.0268278582355936e+00 2.1451148049450040e+00 2.4297528943808682e+00 4.9767000000000000e-01 2 0 0 -234 0 V -142 0 0 0 0 0 0 2 0 P 567 -211 -2.5070490951855934e-01 3.8855069135589997e-02 7.5950089799128484e-01 8.1282474556561612e-01 1.3957000000000000e-01 1 0 0 0 0 P 568 211 4.0227126153272830e-01 -3.4237069408784820e-01 1.1063811084707449e+00 1.2339363039096798e+00 1.3957000000000000e-01 1 0 0 0 0 V -143 0 0 0 0 0 0 3 0 P 569 111 7.1295791528916172e-02 -4.1212434731633968e-01 6.2829175917057289e-01 7.6674617872038120e-01 1.3497999999999999e-01 2 0 0 -235 0 P 570 111 -1.5448779983283858e-01 -1.2200082696010801e+00 1.3659377191307320e+00 1.8429031746503339e+00 1.3497999999999999e-01 2 0 0 -236 0 P 571 111 -4.0413722888837919e-02 -4.4788621909148879e-01 4.9002520605274758e-01 6.7866017801020462e-01 1.3497999999999999e-01 2 0 0 -237 0 V -144 0 1.3118989877765938e-05 -1.5604748460698475e-04 5.2028028225544119e-05 1.6731872541804959e-04 0 2 0 P 572 22 6.3332775702379107e-02 -5.0988604821123007e-01 2.3251593817821017e-01 5.6396674028308258e-01 0 1 0 0 0 0 P 573 22 6.6078831090221710e-04 -2.5130324977221757e-01 2.1273338721753885e-02 2.5220292410604572e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 574 321 -2.1383992368663388e-01 6.6193965792147280e-01 -1.0417237684580747e+00 1.3463732741933028e+00 4.9359999999999998e-01 1 0 0 0 0 P 575 -211 2.7563551147973125e-01 3.3350873439127571e-02 -4.0373773582254657e-01 5.0948126577427966e-01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 1 0 P 576 130 1.9951579686627730e-01 -1.1336192363783873e-01 -3.9417341026784392e-01 6.7505969009580091e-01 4.9767000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 577 22 3.4335951962988676e-01 1.3801541738737566e+00 -5.5108937421360196e+00 5.6914559772079025e+00 0 1 0 0 0 0 P 578 22 -5.1271830832650316e-03 3.7619250511890096e-01 -6.9615959011941753e-01 7.9131868664226479e-01 0 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 579 2112 -2.8828134837595759e-01 -4.0834499839365490e-01 1.0734385820207766e+02 1.0734913384497422e+02 9.3957000000000002e-01 1 0 0 0 0 P 580 -211 -3.1225218989756644e-02 1.2580673866510947e-01 2.1599761329733649e+01 2.1600601186914954e+01 1.3957000000000000e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 581 -211 3.5251841209946083e-01 6.0590378166675241e-01 1.4420069493754944e+01 1.4437772425590078e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 111 -1.9807986115000747e-01 -2.6014506125469818e-02 4.4674105105217645e+00 4.4739120080576562e+00 1.3497999999999999e-01 2 0 0 -238 0 V -150 0 3.9823738483486894e-05 1.5749283253445911e-04 2.9525988724543009e-04 3.3802879226905812e-04 0 2 0 P 583 22 1.9445187668360275e-01 5.8494692851887398e-01 1.1877233954793927e+00 1.3381559347469703e+00 0 1 0 0 0 0 P 584 22 9.4283076923076543e-03 2.2134773285060891e-01 3.2387854202755545e-01 3.9240415620880009e-01 0 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 585 311 2.9221850158365807e-02 -4.7878630695617208e-02 8.2454491197206936e-01 9.6472587845615132e-01 4.9767000000000000e-01 2 0 0 -239 0 P 586 111 4.0264364014734766e-01 -1.0430785549293296e-01 2.6397964726813611e-01 5.1079045042018056e-01 1.3497999999999999e-01 2 0 0 -240 0 V -152 0 0 0 0 0 0 2 0 P 587 -321 -2.9157221704740284e-02 1.7124897509465548e-01 -1.9766422141437970e-01 5.5936433518402140e-01 4.9359999999999998e-01 1 0 0 0 0 P 588 111 -3.4762829667825113e-01 -2.1495706852952923e-01 1.1223597755101958e-01 4.4482411020431872e-01 1.3497999999999999e-01 2 0 0 -241 0 V -153 0 0 0 0 0 0 2 0 P 589 211 1.3903632633431067e+00 9.4321272896460906e-01 -2.9285035136018996e+02 2.9285520403746926e+02 1.3957000000000000e-01 1 0 0 0 0 P 590 111 2.6400499243363318e-01 4.7665575229090823e-01 -4.4634986489676116e+01 4.4638516304601694e+01 1.3497999999999999e-01 2 0 0 -242 0 V -154 0 0 0 0 0 0 2 0 P 591 -2212 -7.3151570584081574e-02 -1.6132561911096679e-01 -4.9537414715794128e+01 4.9546616276241679e+01 9.3827000000000005e-01 1 0 0 0 0 P 592 211 -2.6622622477691532e-01 -1.0722429401988315e-01 -2.2695932588470061e+01 2.2698176342985452e+01 1.3957000000000000e-01 1 0 0 0 0 V -155 0 -1.0926535131469889e-04 1.2960543754341366e-05 4.2357522796148073e-04 4.3818604586035162e-04 0 2 0 P 593 22 -5.2501821535335380e-01 3.7479426689960155e-02 2.1947218413837830e+00 2.2569565336808841e+00 0 1 0 0 0 0 P 594 22 -1.4527443193822168e-01 4.2027544906323946e-02 4.0371725629236466e-01 4.3111320802552550e-01 0 1 0 0 0 0 V -156 0 3.7798502787882895e-05 -6.2599962437377625e-05 1.9507711180238749e-04 2.1247990253955891e-04 0 2 0 P 595 22 2.9914084838383377e-02 -1.4246180154140503e-01 2.3676309763641298e-01 2.7793341247955372e-01 0 1 0 0 0 0 P 596 22 9.2217494618170609e-02 -5.9806323450275457e-02 3.9355487855300320e-01 4.0861510626891817e-01 0 1 0 0 0 0 V -157 0 0 0 0 0 0 1 0 P 597 310 1.7836175649955571e-01 -4.2093606901626979e-01 8.1458764694562869e-01 1.0584085004557044e+00 4.9767000000000000e-01 2 0 0 -243 0 V -158 0 5.7474793352503301e-06 6.2507110114294706e-05 2.8573751504412758e-05 8.1904589007829131e-05 0 2 0 P 598 22 4.8314765558187610e-02 4.5840802393683044e-02 -1.7185586069845542e-02 6.8782556681206364e-02 0 1 0 0 0 0 P 599 22 -3.0754262089968926e-02 1.4513967094499861e-01 1.0448811177286395e-01 1.8146380967173420e-01 0 1 0 0 0 0 V -159 0 0 0 0 0 0 1 0 P 600 130 3.7511115007346668e-01 8.0360801378026203e-02 -4.6694465288338058e+00 4.7115361133971625e+00 4.9767000000000000e-01 1 0 0 0 0 V -160 0 -9.1078453578690173e+00 -1.2710239824245660e+01 -2.3223911185624993e+02 2.3318676420051767e+02 0 2 0 P 601 111 -5.3407541206796326e-02 -4.0772083584646535e-01 -4.2325837323827606e+00 4.2546531348010355e+00 1.3497999999999999e-01 2 0 0 -244 0 P 602 111 -2.6989623451967720e-01 -4.3458160294183423e-02 -4.0112740390513331e+00 4.0228437212836461e+00 1.3497999999999999e-01 2 0 0 -245 0 V -161 0 0 0 0 0 0 1 0 P 603 130 6.2396307920786633e-02 -7.6107204234402426e-01 -1.3932995601384641e+00 1.6649573706440317e+00 4.9767000000000000e-01 1 0 0 0 0 V -162 0 1.1899897359511997e-04 5.2033648261335562e-07 -2.3142185531828041e-04 2.6528880806894327e-04 0 2 0 P 604 22 2.1308000223091372e-01 5.4644375140023176e-02 -3.2791422916221058e-01 3.9486306078464284e-01 0 1 0 0 0 0 P 605 22 9.8296699196918108e-02 -5.3282845265488599e-02 -2.7763195136610763e-01 2.9930052303988408e-01 0 1 0 0 0 0 V -163 0 -7.6948762603265593e-05 3.3182904664021655e-05 -4.6788896809775747e-04 4.7991578563562072e-04 0 2 0 P 606 22 -1.5401610911056510e-01 6.6589790879528918e-02 -9.5909894483942604e-01 9.7366624061175977e-01 0 1 0 0 0 0 P 607 22 -2.9803492233596929e-03 1.1123830507193933e-03 4.4778645292244844e-03 5.4928269849681679e-03 0 1 0 0 0 0 V -164 0 -4.6067434849086970e-06 3.1023738693423173e-05 -1.6663307479350567e-05 3.6678944649980442e-05 0 2 0 P 608 22 1.7367363908533127e-02 2.9457725039355936e-01 -1.2268574369318717e-01 3.1957655340170316e-01 0 1 0 0 0 0 P 609 22 -8.5219468681795280e-02 1.6236722137491308e-01 -1.2274586947604194e-01 2.2066268577366463e-01 0 1 0 0 0 0 V -165 0 8.8843868390913366e-06 6.0974069264225597e-05 -1.6947813049936750e-04 1.8093395983408145e-04 0 2 0 P 610 22 -4.4655684187249198e-03 3.6110484709257679e-01 -1.0629896916722490e+00 1.1226592254537968e+00 0 1 0 0 0 0 P 611 22 8.5781489994720850e-02 1.9697110392783321e-01 -4.8818886663808136e-01 5.3337083658336448e-01 0 1 0 0 0 0 V -166 0 -3.4543537109712627e-05 6.8001175129678664e-05 -5.3854258132123728e-04 5.4563552669392853e-04 0 3 0 P 612 22 -6.6386134778412584e-02 1.7768300850506455e-01 -8.7544014120784586e-01 8.9575320889195897e-01 0 1 0 0 0 0 P 613 11 -2.8352546557363464e-02 2.1500903344511303e-02 -5.5107371360824442e-01 5.5222156212058482e-01 5.1000000000000004e-04 1 0 0 0 0 P 614 -11 -1.3010426441038189e-02 1.2927138756692613e-02 -2.5332230246237569e-01 2.5398588767380720e-01 5.1000000000000004e-04 1 0 0 0 0 V -167 0 0 0 0 0 0 1 0 P 615 130 6.6381362557904722e-01 -4.4743403180397191e-02 -6.0359536070939135e-01 1.0269631395539294e+00 4.9767000000000000e-01 1 0 0 0 0 V -168 0 -1.2127968992073053e-06 -7.5019500836893275e-07 -1.2433881776946657e-05 1.2518680377651696e-05 0 2 0 P 616 22 -1.8365863455522907e-01 -1.4126645539779856e-01 -1.5310058615565336e+00 1.5484397481296501e+00 0 1 0 0 0 0 P 617 22 -3.8706722876789340e-01 -2.1176519738091698e-01 -4.3202112022764547e+00 4.3426823934847931e+00 0 1 0 0 0 0 V -169 0 -2.0573492381515979e-04 -3.0300678482055656e-04 -2.1643354337450535e-01 2.1643385458570652e-01 0 2 0 P 618 22 -4.6933770758242355e-01 -7.0743727112920474e-01 -5.4092141158084598e+02 5.4092207780048250e+02 0 1 0 0 0 0 P 619 22 -6.9055995856098218e-01 -1.0008622048253160e+00 -6.7929320818288966e+02 6.7929429651779935e+02 0 1 0 0 0 0 V -170 0 0 0 0 0 0 1 0 P 620 310 -4.9467909985155011e-02 -6.2041560434577447e-01 -1.0892958371210304e+02 1.0893249857465493e+02 4.9767000000000000e-01 2 0 0 -246 0 V -171 0 1.0372301673670552e-06 -7.6110830294089537e-07 -2.9095570815400860e-04 2.9095880780613905e-04 0 2 0 P 621 22 2.2356486919885879e-01 -2.4025194522739921e-01 -7.1477658558799789e+01 7.1478411952814739e+01 0 1 0 0 0 0 P 622 22 1.3962583129497302e-01 -2.6253471211142437e-02 -3.0401761054858532e+01 3.0402093017656334e+01 0 1 0 0 0 0 V -172 0 0 0 0 0 0 1 0 P 623 310 -5.5698231576724611e-01 -3.0045443088823104e-01 -4.7140974751347659e+02 4.7141043500151096e+02 4.9767000000000000e-01 2 0 0 -247 0 V -173 0 0 0 0 0 0 1 0 P 624 310 7.7160747885760286e-02 -1.2225354511316572e-01 -4.5390441388848267e+01 4.5393399791309712e+01 4.9767000000000000e-01 2 0 0 -248 0 V -174 0 -1.1117827387945374e-04 8.5086494845438624e-05 -1.4489036899429943e-03 1.4558957198349766e-03 0 2 0 P 625 22 -2.3134420647698503e-01 1.0038655999639215e-01 -2.7834492643763711e+00 2.7948501588914803e+00 0 1 0 0 0 0 P 626 22 -3.3180337092370760e-01 3.3059920520517055e-01 -4.5556339432206512e+00 4.5796495429304143e+00 0 1 0 0 0 0 V -175 0 1.9215683058613408e-07 9.6855442153987791e-07 -1.6208643883615396e-05 1.6239131427940117e-05 0 2 0 P 627 22 -6.7452613465462247e-04 9.6829842952333659e-03 -5.1911465251510558e-01 5.1920539059821669e-01 0 1 0 0 0 0 P 628 22 2.1809799838133323e-01 1.0862263557408385e+00 -1.7820798754861048e+01 1.7855204358787411e+01 0 1 0 0 0 0 V -176 0 5.5154499427922281e-06 1.7831062946961621e-05 -9.0650872198844840e-04 9.0684662306753485e-04 0 2 0 P 629 22 8.0927153304071867e-02 1.0471485296881172e-01 -3.6403087990124119e+00 3.6427136254091366e+00 0 1 0 0 0 0 P 630 22 -3.5139736039733090e-02 4.3312656642833007e-02 -3.8852228508015578e+00 3.8856231659368348e+00 0 1 0 0 0 0 V -177 0 -6.6468351597487549e-05 1.4402794576978296e-04 -8.4445309629951404e-04 8.6485667352009495e-04 0 2 0 P 631 22 1.6993211959167889e-02 2.5507495453487936e-03 -2.6507333386987031e-01 2.6562971954361592e-01 0 1 0 0 0 0 P 632 22 -1.0802363434815634e-01 1.9469988815118236e-01 -8.9143077968692763e-01 9.1881771151687697e-01 0 1 0 0 0 0 V -178 0 6.8763878670633355e-07 1.8264348803556774e-05 -3.1629975752955208e-04 3.1696061735137009e-04 0 2 0 P 633 22 -4.5577421055365962e-02 4.6211464382602395e-02 -1.4908077031518989e+00 1.4922199598341672e+00 0 1 0 0 0 0 P 634 22 5.5678395037843345e-02 2.2208013818286951e-01 -3.1554334386153937e+00 3.1637287900484585e+00 0 1 0 0 0 0 V -179 0 -2.9694709104668739e-05 7.0936353597285688e-05 -1.4565191641002450e-03 1.4587109385351480e-03 0 2 0 P 635 22 7.6012474416383268e-03 8.5520065088252648e-02 -1.0904362347834482e+00 1.0938110634950038e+00 0 1 0 0 0 0 P 636 22 -1.9135796190207352e-01 3.5344807657276339e-01 -7.9227915156658746e+00 7.9329798192812433e+00 0 1 0 0 0 0 V -180 0 6.2186148375384574e-05 9.3726812201770456e-05 -3.0984673522242000e-03 3.1014754482494946e-03 0 2 0 P 637 22 8.9259043008372268e-03 1.2564580602269296e-01 -2.3318299334737946e+00 2.3352296201836515e+00 0 1 0 0 0 0 P 638 22 9.9455042347929470e-02 3.7705694241954829e-02 -3.0683248207203655e+00 3.0701677853621221e+00 0 1 0 0 0 0 V -181 0 1.1390143788583140e-04 -2.6418586852476885e-05 -2.2518955460150963e-03 2.2549499998886159e-03 0 2 0 P 639 22 7.9110430359721096e-01 -2.5267915079603381e-01 -1.6001894755318727e+01 1.6023430610600027e+01 0 1 0 0 0 0 P 640 22 7.9067470728039257e-01 -1.1420266348080904e-01 -1.5270766727197373e+01 1.5291648870463819e+01 0 1 0 0 0 0 V -182 0 1.8366970544488332e+01 -4.2153571141634515e+01 -3.9074215749239028e+02 3.9547305657403280e+02 0 2 0 P 641 2212 4.3996709166023784e-01 -8.5713620184556638e-01 -8.6540765763307768e+00 8.7579475616239701e+00 9.3827000000000005e-01 1 0 0 0 0 P 642 -211 7.1488318497658479e-02 -3.1669221834180600e-01 -2.2267156556915628e+00 2.2545835396014455e+00 1.3957000000000000e-01 1 0 0 0 0 V -183 0 1.3692476412836085e-05 -1.2244375878476353e-05 -4.9973136645539790e-05 5.4315567100860301e-05 0 2 0 P 643 22 9.3466396329798890e-02 -1.2550244902357921e-01 -2.4618623296173295e-01 2.9170960432197601e-01 0 1 0 0 0 0 P 644 22 7.8538100353145887e-02 -2.8311050205804298e-02 -3.8157487885045177e-01 3.9060099454631880e-01 0 1 0 0 0 0 V -184 0 2.6172089014706404e+02 -1.3768147339801856e+03 -7.1283370297203992e+03 7.2735499475514516e+03 0 2 0 P 645 2112 6.1837340108192507e-01 -3.6164601062308850e+00 -1.8280521626820970e+01 1.8668728722028565e+01 9.3957000000000002e-01 1 0 0 0 0 P 646 111 2.0026958942929227e-01 -6.9011141189326364e-01 -4.0163731304262802e+00 4.0823809710125891e+00 1.3497999999999999e-01 2 0 0 -249 0 V -185 0 -5.7292838708760935e-06 -1.9493468303310299e-05 -1.2653888288961459e-04 1.2875269850368850e-04 0 2 0 P 647 22 4.4690392624619621e-03 -6.1665952417305089e-02 -1.3775276108568038e-01 1.5099167257233528e-01 0 1 0 0 0 0 P 648 22 -6.7123311430980742e-02 -1.5151061486582984e-01 -1.2460504832897630e+00 1.2570214048540043e+00 0 1 0 0 0 0 V -186 0 -1.1781930389845798e-06 -1.8293141050718213e-05 -1.0385906774131680e-04 1.0557976592020034e-04 0 2 0 P 649 22 6.1683759823149571e-03 7.0331250866203961e-03 -8.1885148733656057e-02 8.2417785058057885e-02 0 1 0 0 0 0 P 650 22 -3.8394039840887281e-02 -5.0738289368308154e-01 -2.7588440823445564e+00 2.8053755851552391e+00 0 1 0 0 0 0 V -187 0 -1.0508970956704892e-07 -4.6516454220486251e-06 -1.7585616558641126e-05 1.8201072871930963e-05 0 2 0 P 651 22 -3.8594509518059490e-02 -5.1991147640521451e-01 -2.2073724048452652e+00 2.2681028224344590e+00 0 1 0 0 0 0 P 652 22 1.5470378917089144e-02 -5.0364503252423365e-01 -1.6621986090621765e+00 1.7368943166981718e+00 0 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 653 111 -1.0340050880583913e-01 -4.1423905964861502e-01 -1.6736058398382341e+00 1.7324727332054943e+00 1.3497999999999999e-01 2 0 0 -250 0 P 654 111 -2.6303799731549723e-02 -5.1813118858297724e-01 -3.1865367571888017e+00 3.2313136529557216e+00 1.3497999999999999e-01 2 0 0 -251 0 P 655 111 -1.2731032254663668e-02 -6.9404219297048420e-01 -2.8716528216103931e+00 2.9574425054544138e+00 1.3497999999999999e-01 2 0 0 -252 0 V -189 0 -2.9806382116284160e-05 3.5045874410389845e-04 -5.1452134498935131e-04 6.2608834159440653e-04 0 2 0 P 656 22 -1.0182424231929807e-01 7.1321416444325791e-01 -1.0335958699937913e+00 1.2599059659969136e+00 0 1 0 0 0 0 P 657 22 3.4248270965192139e-02 8.1333458276188070e-02 -1.3290865693706735e-01 1.5953929480878595e-01 0 1 0 0 0 0 V -190 0 2.7143738090100538e-07 -1.0490748648079686e-07 -1.1456422887616077e-06 1.5682227956067630e-06 0 2 0 P 658 22 4.7280077807053525e-02 8.5955688810511570e-03 -1.6779943099610539e-01 1.7454494723264452e-01 0 1 0 0 0 0 P 659 22 -1.1729418792589446e-02 -2.2335497654175772e-02 1.7752528004627035e-02 3.0848111307286031e-02 0 1 0 0 0 0 V -191 0 2.1821834940646722e-04 1.8618233299924354e-04 -2.3723560226609098e-04 3.7373507830806786e-04 0 2 0 P 660 22 2.1105560202228238e-01 1.1192934041742351e-01 -2.1760973319132160e-01 3.2315111073747799e-01 0 1 0 0 0 0 P 661 22 6.7142408228072858e-01 6.4099600657954703e-01 -7.4177612946707350e-01 1.1882415600224554e+00 0 1 0 0 0 0 V -192 0 4.2446220996267964e-05 -2.2298184142371214e-05 -3.6907612225564693e-06 5.2195298972303136e-05 0 2 0 P 662 22 7.3725941886766802e-02 2.0957678893828508e-02 -1.6546369666384311e-02 7.8412506405830334e-02 0 1 0 0 0 0 P 663 22 2.0859680243677811e-01 -1.6926969331460576e-01 -8.0020073749235508e-03 2.6875432495812462e-01 0 1 0 0 0 0 V -193 0 0 0 0 0 0 3 0 P 664 111 1.0640833583870866e+00 -2.3846355183568266e-01 7.0102352565955051e-01 1.3033770916655611e+00 1.3497999999999999e-01 2 0 0 -253 0 P 665 111 1.6394839519075635e-01 -7.2365544486487687e-02 1.3013700712671220e-01 2.5936670823054409e-01 1.3497999999999999e-01 2 0 0 -254 0 P 666 111 3.9868797427964292e-01 -8.4375510353067493e-02 3.9453118684787170e-01 5.8304869897645428e-01 1.3497999999999999e-01 2 0 0 -255 0 V -194 0 2.1322507668143820e-01 8.5637813407215801e-01 8.4994065599724955e-01 1.5597399179506681e+00 0 2 0 P 667 -211 2.5828814623131779e-01 2.6454194233429007e-01 3.2468682934615972e-01 5.1146507973513866e-01 1.3957000000000000e-01 1 0 0 0 0 P 668 211 -1.4834232132304498e-01 1.7703463885104737e-01 1.1357037755032622e-01 2.9278784675179731e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 1 0 P 669 310 -3.5026461917206375e-01 8.3682200270290730e-01 1.2512858081252540e+00 1.6236834575024546e+00 4.9767000000000000e-01 2 0 0 -256 0 V -196 0 -7.3487524716265578e-07 -8.8609781075612204e-07 1.8711850049294795e-06 2.2348895032038310e-06 0 2 0 P 670 22 -9.9887570020710983e-02 -2.1469839943980429e-01 4.1537628666782417e-01 4.7813218767680404e-01 0 1 0 0 0 0 P 671 22 -1.4198525478671803e-01 -7.6946993939222011e-02 2.0049532504727435e-01 2.5744713596958907e-01 0 1 0 0 0 0 V -197 0 0 0 0 0 0 1 0 P 672 310 -3.8498959213061046e-01 -2.4572858327619290e-01 4.7511245860476964e-01 8.2583702987289664e-01 4.9767000000000000e-01 2 0 0 -257 0 V -198 0 0 0 0 0 0 1 0 P 673 310 -1.2810045753631112e+00 -1.5518075696047956e-01 1.4872724646083786e+00 2.0309378627408403e+00 4.9767000000000000e-01 2 0 0 -258 0 V -199 0 -2.7963366858296422e-04 -2.8161536421689181e-04 2.4068550989412779e-04 4.6905944379783748e-04 0 2 0 P 674 22 -1.5581673851870803e-01 -2.4910276423070965e-01 1.7588596575799120e-01 3.4244257343474277e-01 0 1 0 0 0 0 P 675 22 -4.0160907285132452e-01 -3.1227338796283072e-01 3.0390002109265546e-01 5.9258732609329523e-01 0 1 0 0 0 0 V -200 0 -1.6056225886457150e+02 -3.2527164583774584e+02 3.2714206199760849e+02 5.6712294547452473e+02 0 2 0 P 676 22 -1.4082501546181744e-01 -4.6760783662865797e-02 7.9559796903117597e-02 1.6836869409677024e-01 0 1 0 0 0 0 P 677 22 8.1801476339692751e-03 -2.9668743158634377e-02 9.6114448433493274e-02 1.0092143644241887e-01 0 1 0 0 0 0 V -201 0 -2.5846805355171476e+01 -1.4408385205048273e+02 2.4653149137480844e+02 3.2948169426549703e+02 0 2 0 P 678 2212 -1.4403462785316826e-01 -7.8132976966415524e-01 1.4768930565481904e+00 1.9216622690692813e+00 9.3827000000000005e-01 1 0 0 0 0 P 679 -211 3.7388100474560641e-02 -2.7122167190733193e-01 3.3262405016914059e-01 4.5285495362226880e-01 1.3957000000000000e-01 1 0 0 0 0 V -202 0 -2.1878331385328107e+01 -1.0491632966137271e+02 1.7919577269699170e+02 2.4112123011904538e+02 0 2 0 P 680 22 -3.2481092670477857e-02 -7.5277485793071183e-02 1.2880693765670820e-01 1.5268578334898542e-01 0 1 0 0 0 0 P 681 22 -9.9428539625354223e-02 -1.6156575979810062e-02 1.5588877097373798e-02 1.0193175427009503e-01 0 1 0 0 0 0 V -203 0 -9.0642478455061621e+01 -9.1539761561509266e+01 2.5414284189869744e+02 2.9589289668042386e+02 0 2 0 P 682 -2212 -9.9208583228922576e-01 -1.0614808201095776e+00 3.0668711969324751e+00 3.5209409767224926e+00 9.3827000000000005e-01 1 0 0 0 0 P 683 211 -2.7514300428643473e-01 -2.1829249943304385e-01 4.8617747685226276e-01 6.1579510554641714e-01 1.3957000000000000e-01 1 0 0 0 0 V -204 0 -8.8575181958105726e-05 -4.1807588173899730e-05 2.3619676680529047e-04 2.6338051534799623e-04 0 2 0 P 684 22 -1.1182161904202115e-01 -7.2457133004172766e-02 4.4234105317923483e-01 4.6197371996259484e-01 0 1 0 0 0 0 P 685 22 -7.7526634668486680e-02 -1.6915461413078248e-02 6.2579674477899208e-02 1.0105804062813693e-01 0 1 0 0 0 0 V -205 0 -2.4457617542758633e-06 -8.1942786752354395e-05 3.6684122631687628e-04 3.7676129515743580e-04 0 2 0 P 686 22 3.4801447640200676e-02 -1.2148058044088343e-01 7.8559944424548900e-01 7.9569790685971320e-01 0 1 0 0 0 0 P 687 22 -4.7690952588961728e-02 -3.1036931397880485e-01 1.1477048907963043e+00 1.1898865720631835e+00 0 1 0 0 0 0 V -206 0 4.7199168948400060e-06 -4.9211416381393757e-06 7.0354575061016395e-05 7.2259801797908016e-05 0 2 0 P 688 22 -3.3222267331525168e-02 2.8099676682122619e-02 1.7866748779256725e-01 1.8388959206652869e-01 0 1 0 0 0 0 P 689 22 7.5674714949693009e-02 -7.2362004233501712e-02 4.5412414371718585e-01 4.6603826028157169e-01 0 1 0 0 0 0 V -207 0 -1.0206967921830922e-05 -8.2190579437382865e-05 3.2936937776550988e-04 3.4049624286261644e-04 0 2 0 P 690 22 3.6659803145993243e-02 -1.3299334379752448e-01 6.6029452725525717e-01 6.7455172773064109e-01 0 1 0 0 0 0 P 691 22 -9.3187549735085876e-02 -3.2219063268093395e-01 1.1638033697033612e+00 1.2111684468090589e+00 0 1 0 0 0 0 V -208 0 1.2324681488538174e-05 -1.6113450405677144e-05 5.8227989729311680e-05 6.1904079790924894e-05 0 2 0 P 692 22 1.9806433650871111e-01 -2.1051197228813048e-01 9.9444112012285268e-01 1.0355954389936586e+00 0 1 0 0 0 0 P 693 22 1.0528322760315070e-01 -1.8608861609585492e-01 4.3872523504372168e-01 4.8805057414081193e-01 0 1 0 0 0 0 V -209 0 4.9456718400634083e-06 -8.1584749487352060e-06 2.1601904049513336e-05 2.4650919471779025e-05 0 2 0 P 694 22 1.0918383461667536e-02 -1.4124618926072585e-01 2.4658879714868762e-01 2.8438658891960678e-01 0 1 0 0 0 0 P 695 22 8.3484918375610201e-02 -1.4483304734056483e-02 1.6574973524774683e-01 1.8615174575302809e-01 0 1 0 0 0 0 V -210 0 4.7007299008182471e-05 -1.5595400670649075e-04 5.7082364766973233e-04 5.9529408740825556e-04 0 2 0 P 696 22 -1.4910646250455800e-03 8.9307098859916726e-03 2.4937658960855286e-02 2.6530504843137404e-02 0 1 0 0 0 0 P 697 22 1.4322625566792879e-01 -4.7915919356466308e-01 1.6961950259905147e+00 1.7683848165162344e+00 0 1 0 0 0 0 V -211 0 1.4224931482566808e-04 -5.0817031645781784e-05 2.0121213848406727e-03 2.0178027060018680e-03 0 2 0 P 698 22 1.1709849784234601e+00 -3.7074144975409573e-01 1.5676464522600934e+01 1.5724509371380236e+01 0 1 0 0 0 0 P 699 22 1.0023164311662065e+00 -4.0564701048059526e-01 1.5064957657878153e+01 1.5103712687910850e+01 0 1 0 0 0 0 V -212 0 -2.7766956077742686e-05 -6.5043543800873561e-05 6.3213955128132776e-04 6.3617343528313958e-04 0 2 0 P 700 22 -1.1678518844185297e-01 -2.6300137170755017e-01 2.0426201133030792e+00 2.0627906895828612e+00 0 1 0 0 0 0 P 701 22 -2.3338506480084203e-01 -5.5726550020971988e-01 5.9293184073308067e+00 5.9600193121925384e+00 0 1 0 0 0 0 V -213 0 -2.0029679366833820e-05 -2.8335424863434899e-06 1.3962520306431733e-03 1.3968063685907870e-03 0 2 0 P 702 22 -1.1051868089210667e-01 2.0413801762542236e-02 4.2838586997964629e+00 4.2853327130982937e+00 0 1 0 0 0 0 P 703 22 3.0412491891836244e-02 -3.1746199340866935e-02 1.3002760739192780e+00 1.3010190656722112e+00 0 1 0 0 0 0 V -214 0 -3.6028428280731105e-05 4.6447803595925550e-06 2.4342062073388229e-04 2.4614555201304885e-04 0 2 0 P 704 22 -4.8033552197998736e-01 1.9430881648477089e-02 2.8855368648180293e+00 2.9253072951505947e+00 0 1 0 0 0 0 P 705 22 -8.0065038429591251e-01 1.4571365732568967e-01 5.7692504611059974e+00 5.8263645947345415e+00 0 1 0 0 0 0 V -215 0 -1.2060977836682614e-05 4.6255370582423585e-06 1.2297338278929705e-04 1.2378380494645059e-04 0 2 0 P 706 22 -1.5724196841391400e-01 -1.1788936629733918e-02 1.4002358232821250e+00 1.4090863623142882e+00 0 1 0 0 0 0 P 707 22 -1.2566356759417632e-01 1.2028677639918904e-01 1.4842608770536696e+00 1.4944198178387267e+00 0 1 0 0 0 0 V -216 0 -9.2414417451435122e-04 -2.1381672810799520e-04 2.8061204936911204e-02 2.8077301111092228e-02 0 2 0 P 708 22 -1.3930393544823112e+00 -3.6539960163783908e-01 4.3881930946789616e+01 4.3905557041573061e+01 0 1 0 0 0 0 P 709 22 -6.1600733017986486e-01 -9.9428074148165457e-02 1.7121830480104343e+01 1.7133196723384525e+01 0 1 0 0 0 0 V -217 0 -1.3588697539202875e-04 -1.2798359172234635e-05 2.0039986616984906e-03 2.0096197568306075e-03 0 2 0 P 710 22 -2.2976716262791838e-01 -6.9181458023407513e-02 3.6413007209120312e+00 3.6491985371134312e+00 0 1 0 0 0 0 P 711 22 -6.2747792160639984e-02 4.1631271967433561e-02 6.7257539732448135e-01 6.7677774292070592e-01 0 1 0 0 0 0 V -218 0 -2.7028040734278641e-05 -2.4060846163664917e-05 2.1107934449058718e-03 2.1111705190534247e-03 0 2 0 P 712 22 1.2184201464745877e-03 -6.7825060529344089e-02 3.1177264981505037e+00 3.1184644042626588e+00 0 1 0 0 0 0 P 713 22 -2.1825509981030550e-01 -1.2538488067964201e-01 1.3832062990568673e+01 1.3834353010963531e+01 0 1 0 0 0 0 V -219 0 3.1346232997067164e-06 -6.2922188719269217e-06 5.8366787502535790e-04 5.8372091060327879e-04 0 2 0 P 714 22 5.8560118960867570e-04 1.5315377026945369e-02 6.1532755684804918e-01 6.1551840420804615e-01 0 1 0 0 0 0 P 715 22 1.1911109923411220e-01 -2.5558598223299583e-01 2.1672236882042139e+01 2.1674071217000790e+01 0 1 0 0 0 0 V -220 0 4.6272265617553763e-05 5.5906068108580905e-05 5.2569476502220989e-03 5.2575584286566196e-03 0 2 0 P 716 22 8.6397567026551284e-02 1.3836308022582125e-01 7.3176037215178136e+00 7.3194216374471166e+00 0 1 0 0 0 0 P 717 22 9.7349226522266269e-02 8.3639465311446962e-02 1.3557692996520164e+01 1.3558300476827982e+01 0 1 0 0 0 0 V -221 0 5.5928881295942070e-05 -3.8274963498962119e-05 4.0359246103846991e-03 4.0365444188562010e-03 0 2 0 P 718 22 1.0633005962986539e-01 -1.4203249289851491e-01 8.4684870204368199e+00 8.4703454313225457e+00 0 1 0 0 0 0 P 719 22 2.6633325711049277e-01 -1.1299987168901479e-01 1.8423541151224928e+01 1.8425812625925705e+01 0 1 0 0 0 0 V -222 0 3.2071997131613845e-08 3.7627474609211979e-08 6.0712590904264454e-05 6.0713760687345260e-05 0 2 0 P 720 22 -6.0762693658630178e-02 1.6442873395255908e-02 1.1396056726767224e+01 1.1396230578253606e+01 0 1 0 0 0 0 P 721 22 7.2349286595253345e-02 -2.8492630646938417e-03 1.0537472203429612e+01 1.0537720957380797e+01 0 1 0 0 0 0 V -223 0 0 0 0 0 0 2 0 P 722 22 4.0433441193344072e-01 -5.3349863780663187e-01 4.8942606208488051e+01 4.8947183878057253e+01 0 1 0 0 0 0 P 723 22 -9.7606310096371551e-02 -4.0807148581972330e-01 5.4356815652612177e+01 5.4358435014460945e+01 0 1 0 0 0 0 V -224 0 -3.5633094580432538e-06 2.2071138950889847e-06 2.1015417371801608e-03 2.1017925669122358e-03 0 2 0 P 724 22 -3.7621374417208989e-02 -1.7021751240770884e-02 8.1743343135405890e+00 8.1744386093086199e+00 0 1 0 0 0 0 P 725 22 2.2683617815629210e-02 2.6274197750120264e-02 6.3554294457919325e-01 6.3649015262532505e-01 0 1 0 0 0 0 V -225 0 2.5238960712775459e+01 2.0221637967258175e+01 1.6722305522481493e+04 1.6723014426652513e+04 0 2 0 P 726 -2212 3.1026013456773660e-01 4.1376684224940445e-02 1.0616495764769603e+02 1.0616956511312972e+02 9.3827000000000005e-01 1 0 0 0 0 P 727 211 -5.1369771580842428e-03 1.0342157780863155e-01 2.2648837907416418e+01 2.2649504646958917e+01 1.3957000000000000e-01 1 0 0 0 0 V -226 0 -4.9208891921502852e-06 -1.0536976608168867e-05 1.2098289173860815e-02 1.2098299183740526e-02 0 2 0 P 728 22 -1.6204556778465648e-02 2.6631865138006212e-02 1.9418709737763219e+01 1.9418734761137273e+01 0 1 0 0 0 0 P 729 22 -4.8019602781615212e-02 -1.6415344722186662e-01 1.3848008130705369e+02 1.3848018692594502e+02 0 1 0 0 0 0 V -227 0 2.1592019646593186e-05 -1.1599713919679079e-05 -1.3038939397484520e-03 1.3041330840910228e-03 0 2 0 P 730 22 4.4336821952217338e-02 -7.1999008977010670e-02 -4.6936427029322205e+00 4.6944042682606035e+00 0 1 0 0 0 0 P 731 22 5.6435342558314405e-01 -2.5500295066704098e-01 -3.2063804628798444e+01 3.2069784666685443e+01 0 1 0 0 0 0 V -228 0 1.1562672731702103e-07 -7.7388922786489275e-07 -2.7160399982657825e-05 2.7175496767876766e-05 0 2 0 P 732 22 -8.4692532421069729e-03 -1.6117100043648261e-01 -3.4558786049165335e+00 3.4596451771174479e+00 0 1 0 0 0 0 P 733 22 4.2688597378633793e-02 -6.7858934305616223e-02 -4.5821511435520943e+00 4.5828524145631189e+00 0 1 0 0 0 0 V -229 0 -1.5656580565202518e-04 9.2638790856903528e-05 5.8021506291040109e-03 5.8052739812171151e-03 0 2 0 P 734 22 -2.7570461075868452e-01 1.2812104650184292e-01 7.7364501210721874e+00 7.7424213596773566e+00 0 1 0 0 0 0 P 735 22 -1.0028208716179515e-01 9.4347409675915955e-02 6.1971891355264477e+00 6.1987185056433329e+00 0 1 0 0 0 0 V -230 0 6.3198228264846925e-05 1.3933049725991235e-04 3.2700915369796735e-03 3.2743454601668206e-03 0 2 0 P 736 22 7.9695773590808455e-02 2.0560211154569669e-01 5.6825405003849898e+00 5.6868172278626972e+00 0 1 0 0 0 0 P 737 22 4.8433553581929190e-02 7.6879270586429058e-02 9.4730720152485326e-01 9.5165496132754102e-01 0 1 0 0 0 0 V -231 0 -9.7415093990538715e+00 2.2319443088261534e+02 1.9004682724648933e+03 1.9170248269456774e+03 0 2 0 P 738 -211 1.3936213730277505e-01 2.6727854816903035e-01 3.3541653673822647e+00 3.3705733524537846e+00 1.3957000000000000e-01 1 0 0 0 0 P 739 211 -1.8140979559484668e-01 6.9610430945641077e-01 4.8489002194854844e+00 4.9039559385263578e+00 1.3957000000000000e-01 1 0 0 0 0 V -232 0 2.5390997535422535e+01 6.5534257924350271e+01 4.3297186383419722e+02 4.4275347913844251e+02 0 2 0 P 740 2212 3.6185487174166997e-01 9.4497270292589286e-01 6.0748967151765116e+00 6.2296575387769604e+00 9.3827000000000005e-01 1 0 0 0 0 P 741 -211 1.0854974614736759e-01 2.6914334409189594e-01 1.9465275663819723e+00 1.9729851845978343e+00 1.3957000000000000e-01 1 0 0 0 0 V -233 0 9.0125716161110336e-06 -3.3167571865264896e-05 2.9681239327582193e-04 3.0124148501382337e-04 0 2 0 P 742 22 8.2115967126481379e-02 -9.3117055101044663e-02 6.5536058507432160e-01 6.6701672728408057e-01 0 1 0 0 0 0 P 743 22 -5.0359955111870552e-02 -2.3749679002457606e-02 3.9046499373196086e-01 3.9441486237423867e-01 0 1 0 0 0 0 V -234 0 5.9972013365933041e-01 -5.3860690220085282e+01 1.1251872752477740e+02 1.2744898466279960e+02 0 2 0 P 744 111 1.8629295911637492e-01 -5.8018307307799466e-01 1.4067058618569968e+00 1.5389471878805319e+00 1.3497999999999999e-01 2 0 0 -259 0 P 745 111 -1.7485958650510952e-01 -4.4664478515759903e-01 7.3840894308800731e-01 8.9080570650033652e-01 1.3497999999999999e-01 2 0 0 -260 0 V -235 0 2.7186838395596407e-05 -1.5715314731916126e-04 2.3958309677966778e-04 2.9237917139692037e-04 0 2 0 P 746 22 -1.3779612537953744e-02 -4.9869578974972815e-02 2.3907220413109484e-02 5.6994805173087318e-02 0 1 0 0 0 0 P 747 22 8.5075404066869920e-02 -3.6225476834136688e-01 6.0438453875746345e-01 7.0975137354729390e-01 0 1 0 0 0 0 V -236 0 -3.6608501902460530e-05 -2.8910163201906788e-04 3.2368208779947125e-04 4.3670713446782126e-04 0 2 0 P 748 22 -1.3224174093063162e-01 -1.1846740821618729e+00 1.2913229424211428e+00 1.7574002107128692e+00 0 1 0 0 0 0 P 749 22 -2.2246058902206961e-02 -3.5334187439207319e-02 7.4614776709589367e-02 8.5502963937464621e-02 0 1 0 0 0 0 V -237 0 -6.1615209467766646e-06 -6.8285228962833706e-05 7.4709785580691257e-05 1.0346928230430331e-04 0 2 0 P 750 22 -7.9913272740863142e-02 -3.9675832776141412e-01 4.2910325236523744e-01 5.8985837537379582e-01 0 1 0 0 0 0 P 751 22 3.9499549852025216e-02 -5.1127891330074705e-02 6.0921953687510168e-02 8.8801802636408689e-02 0 1 0 0 0 0 V -238 0 -6.3139317099927526e-05 -8.2923026193467411e-06 1.4240178037370971e-03 1.4260902007599940e-03 0 2 0 P 752 22 -1.7215803710250199e-01 -6.7124412486802523e-02 3.9184407379912680e+00 3.9227951633548552e+00 0 1 0 0 0 0 P 753 22 -2.5921824047505485e-02 4.1109906361332708e-02 5.4896977253049639e-01 5.5111684470280209e-01 0 1 0 0 0 0 V -239 0 0 0 0 0 0 1 0 P 754 310 2.9221850158365807e-02 -4.7878630695617208e-02 8.2454491197206936e-01 9.6472587845615132e-01 4.9767000000000000e-01 2 0 0 -261 0 V -240 0 6.7766888316336655e-05 -1.7555520785375887e-05 4.4429062055119524e-05 8.5968523913623491e-05 0 2 0 P 755 22 3.4878062924250330e-01 -5.9415779747214133e-02 2.6268534690831469e-01 4.4066058786565837e-01 0 1 0 0 0 0 P 756 22 5.3863010904844390e-02 -4.4892075745718824e-02 1.2943003598214456e-03 7.0129862554522207e-02 0 1 0 0 0 0 V -241 0 -7.6518879368583839e-05 -4.7315693668801724e-05 2.4705040726274273e-05 9.7913325106745868e-05 0 2 0 P 757 22 -2.3454313468961707e-01 -9.8602013785972470e-02 1.2222458615914442e-01 2.8226173777976898e-01 0 1 0 0 0 0 P 758 22 -1.1308516198863407e-01 -1.1635505474355676e-01 -9.9886086081248226e-03 1.6256237242454971e-01 0 1 0 0 0 0 V -242 0 3.7596957023309312e-05 6.7880556608411347e-05 -6.3564694490018149e-03 6.3569721300262682e-03 0 2 0 P 759 22 7.0173710002923093e-02 8.2527206855280394e-02 -5.5113207467536105e+00 5.5123852789009300e+00 0 1 0 0 0 0 P 760 22 1.9383128243071007e-01 3.9412854543562781e-01 -3.9123665742922505e+01 3.9126131025700765e+01 0 1 0 0 0 0 V -243 0 4.8544166360289438e+00 -1.1456486503833560e+01 2.2170379471713609e+01 2.8806376059317472e+01 0 2 0 P 761 211 2.7053995918724610e-01 -3.4528566077088152e-01 7.1276626792169240e-01 8.4848664965221399e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 -211 -9.2178202687690405e-02 -7.5650408245388281e-02 1.0182137902393623e-01 2.0992185080349052e-01 1.3957000000000000e-01 1 0 0 0 0 V -244 0 -9.1078533117674514e+00 -1.2710300545448025e+01 -2.3223974220807585e+02 2.3318739783910388e+02 0 2 0 P 763 22 -5.9357797245305367e-03 -3.7502779717218981e-01 -3.6953593708089123e+00 3.7143454284110407e+00 0 1 0 0 0 0 P 764 22 -4.7471761482265791e-02 -3.2693038674275525e-02 -5.3722436157384845e-01 5.4030770638999381e-01 0 1 0 0 0 0 V -245 0 -9.1078965685385480e+00 -1.2710248070086841e+01 -2.3223987296367918e+02 2.3318752750320232e+02 0 2 0 P 765 22 -2.0981161267026147e-01 5.1335034950672808e-03 -2.2185224252705029e+00 2.2284274762929899e+00 0 1 0 0 0 0 P 766 22 -6.0084621849415765e-02 -4.8591663789250707e-02 -1.7927516137808297e+00 1.7944162449906553e+00 0 1 0 0 0 0 V -246 0 -1.9214448867524561e+00 -2.4098337507878600e+01 -4.2310700351501446e+03 4.2311832549677511e+03 0 2 0 P 767 111 1.4380145000226286e-02 -3.7310832981588776e-01 -8.8295414893108841e+01 8.8296307552246915e+01 1.3497999999999999e-01 2 0 0 -262 0 P 768 111 -6.3848054985381292e-02 -2.4730727452988671e-01 -2.0634168818994201e+01 2.0636191022408021e+01 1.3497999999999999e-01 2 0 0 -263 0 V -247 0 -1.1390419207319236e+02 -6.1443636963576438e+01 -9.6404400832698346e+04 9.6404541425616437e+04 0 2 0 P 769 211 -3.0558001889113434e-01 -1.3218199650382137e-01 -3.6205153648030625e+02 3.6205171646984849e+02 1.3957000000000000e-01 1 0 0 0 0 P 770 -211 -2.5140229687611171e-01 -1.6827243438440967e-01 -1.0935821103317035e+02 1.0935871853166243e+02 1.3957000000000000e-01 1 0 0 0 0 V -248 0 6.3703801104006930e+00 -1.0093234883725245e+01 -3.7474282319545750e+03 3.7476724772310322e+03 0 2 0 P 771 211 1.5762510704353769e-01 6.3879587551307446e-02 -1.1763060379856311e+01 1.1765117745314813e+01 1.3957000000000000e-01 1 0 0 0 0 P 772 -211 -8.0464359157777401e-02 -1.8613313266447318e-01 -3.3627381008991954e+01 3.3628282045994901e+01 1.3957000000000000e-01 1 0 0 0 0 V -249 0 2.6172101905667517e+02 -1.3768151781913812e+03 -7.1283396149810969e+03 7.2735525753001029e+03 0 2 0 P 773 22 3.7068645511959354e-02 -3.3768267214741671e-01 -2.0611286888530937e+00 2.0889363665660055e+00 0 1 0 0 0 0 P 774 22 1.6320094391733292e-01 -3.5242873974584693e-01 -1.9552444415731862e+00 1.9934446044465837e+00 0 1 0 0 0 0 V -250 0 -1.2806092539509608e-05 -5.1303265260528759e-05 -2.0727510441826585e-04 2.1456573473218566e-04 0 2 0 P 775 22 -7.8586204360253514e-02 -9.4692591616258384e-02 -3.6485420688075437e-01 3.8504684221707286e-01 0 1 0 0 0 0 P 776 22 -2.4814304445585609e-02 -3.1954646803235665e-01 -1.3087516329574798e+00 1.3474258909884220e+00 0 1 0 0 0 0 V -251 0 -2.4178311705113362e-06 -4.7626341097305872e-05 -2.9290475049770600e-04 2.9702061875282139e-04 0 2 0 P 777 22 4.2904655263505551e-02 -7.9819503117836574e-02 -6.4406364523291382e-01 6.5040751966130239e-01 0 1 0 0 0 0 P 778 22 -6.9208454995055277e-02 -4.3831168546514071e-01 -2.5424731119558879e+00 2.5809061332944201e+00 0 1 0 0 0 0 V -252 0 -1.3362123364087869e-06 -7.2844661900502638e-05 -3.0140037738992271e-04 3.1040461456377782e-04 0 2 0 P 779 22 9.7972309008899638e-03 2.5918452278863428e-03 -3.8124440560638406e-02 3.9448401273972089e-02 0 1 0 0 0 0 P 780 22 -2.2528263155553632e-02 -6.9663403819837055e-01 -2.8335283810497547e+00 2.9179941041804422e+00 0 1 0 0 0 0 V -253 0 8.1323230431006816e-05 -1.8224724804196225e-05 5.3576157605906126e-05 9.9611402366707910e-05 0 2 0 P 781 22 7.8870211440555571e-01 -1.4194817895811099e-01 4.5391207528800587e-01 9.2099754770009179e-01 0 1 0 0 0 0 P 782 22 2.7538124398153085e-01 -9.6515372877571684e-02 2.4711145037154458e-01 3.8237954396546964e-01 0 1 0 0 0 0 V -254 0 1.4711746651394643e-06 -6.4936503680730159e-07 1.1677715274927396e-06 2.3274014343685964e-06 0 2 0 P 783 22 1.8235127699619730e-01 -4.4324631455557789e-02 9.3391590764403259e-02 2.0961548225577392e-01 0 1 0 0 0 0 P 784 22 -1.8402881805440953e-02 -2.8040913030929898e-02 3.6745416362308929e-02 4.9751225974770164e-02 0 1 0 0 0 0 V -255 0 6.5928825452019735e-05 -1.3952711527212239e-05 6.5241440502610213e-05 9.6415538929408320e-05 0 2 0 P 785 22 1.3970333445483574e-01 3.0433258304805512e-02 1.0062158805139190e-01 1.7483680633902784e-01 0 1 0 0 0 0 P 786 22 2.5898463982480718e-01 -1.1480876865787301e-01 2.9390959879647977e-01 4.0821189263742652e-01 0 1 0 0 0 0 V -256 0 -4.3950594368039440e+01 1.0500296743068611e+02 1.5700916387556086e+02 2.0373697232528767e+02 0 2 0 P 787 -211 -3.8569994742712477e-01 4.4143503670813633e-01 8.5233709946627390e-01 1.0438331557798790e+00 1.3957000000000000e-01 1 0 0 0 0 P 788 211 3.5435328255061023e-02 3.9538696599477102e-01 3.9894870865898019e-01 5.7985030172257568e-01 1.3957000000000000e-01 1 0 0 0 0 V -257 0 -1.0647344323685456e+01 -6.7959157592640160e+00 1.3139799211822693e+01 2.2839503695786565e+01 0 2 0 P 789 211 -2.3038807592217617e-01 -2.6581973281509969e-01 4.8640232421798801e-01 6.1628386461570950e-01 1.3957000000000000e-01 1 0 0 0 0 P 790 -211 -1.5460151620843426e-01 2.0091149538906769e-02 -1.1289865613218377e-02 2.0955316525718720e-01 1.3957000000000000e-01 1 0 0 0 0 V -258 0 -8.2875423655534277e+01 -1.0039519938982874e+01 9.6220058824295307e+01 1.3139284513874765e+02 0 2 0 P 791 111 -4.1619539955092516e-01 -2.4724774128282240e-01 5.1892687949301086e-01 7.2239515698623391e-01 1.3497999999999999e-01 2 0 0 -264 0 P 792 111 -8.6480917581218597e-01 9.2066984322342837e-02 9.6834558511536761e-01 1.3085427057546064e+00 1.3497999999999999e-01 2 0 0 -265 0 V -259 0 5.9974728964823198e-01 -5.3860774793571949e+01 1.1251893258077605e+02 1.2744920899566195e+02 0 2 0 P 793 22 1.8020631094037984e-01 -4.0494271408240251e-01 1.0950566622396791e+00 1.1813560046432530e+00 0 1 0 0 0 0 P 794 22 6.0866481759950962e-03 -1.7524035899559218e-01 3.1164919961731763e-01 3.5759118323727862e-01 0 1 0 0 0 0 V -260 0 5.9969347685725938e-01 -5.3860758309698625e+01 1.1251884009293244e+02 1.2744912046336894e+02 0 2 0 P 795 22 -1.7459927516297216e-01 -3.9376614463448717e-01 7.1086372753480120e-01 8.3118224395881746e-01 0 1 0 0 0 0 P 796 22 -2.6031134213735224e-04 -5.2878640523111871e-02 2.7545215553206104e-02 5.9623462541519019e-02 0 1 0 0 0 0 V -261 0 1.5783208198463308e+00 -2.5860046247274400e+00 4.4535044646764284e+01 5.2106452232148349e+01 0 2 0 P 797 -211 -1.3687933699620100e-01 6.2918999735994338e-02 5.9715655440667881e-01 6.3148276999072139e-01 1.3957000000000000e-01 1 0 0 0 0 P 798 211 1.6610118715456682e-01 -1.1079763043161155e-01 2.2738835756539064e-01 3.3324310846542998e-01 1.3957000000000000e-01 1 0 0 0 0 V -262 0 -1.9214430179396231e+00 -2.4098385996237710e+01 -4.2310815098330795e+03 4.2311947297666939e+03 0 2 0 P 799 22 -4.9289501690265164e-02 -2.5954678860778746e-01 -6.3746488552321686e+01 6.3747035983971308e+01 0 1 0 0 0 0 P 800 22 6.3669646690491452e-02 -1.1356154120810034e-01 -2.4548926340787151e+01 2.4549271568275593e+01 0 1 0 0 0 0 V -263 0 -1.9214612189974765e+00 -2.4098400768740717e+01 -4.2310753133422686e+03 4.2311885336771520e+03 0 2 0 P 801 22 -4.6162680708642913e-02 -2.5873971296714246e-02 -7.1197579967313436e+00 7.1199546618992438e+00 0 1 0 0 0 0 P 802 22 -1.7685374276738376e-02 -2.2143330323317248e-01 -1.3514410822262857e+01 1.3516236360508774e+01 0 1 0 0 0 0 V -264 0 -8.2875475864462871e+01 -1.0039550954557972e+01 9.6220123920200805e+01 1.3139293575838738e+02 0 3 0 P 803 22 -3.0612627163000333e-01 -2.2665812679572453e-01 4.5392549681430916e-01 5.9256692219761198e-01 0 1 0 0 0 0 P 804 -11 -2.7219928635119927e-03 8.4672551634414539e-04 1.2931156494313634e-03 3.1715039542530568e-03 5.1000000000000004e-04 1 0 0 0 0 P 805 11 -1.0734713505740981e-01 -2.1436340003441991e-02 6.3708267029270363e-02 1.2665673083436887e-01 5.1000000000000004e-04 1 0 0 0 0 V -265 0 -8.2875440083663690e+01 -1.0039518190055624e+01 9.6220077219228003e+01 1.3139286999614916e+02 0 2 0 P 806 22 -4.3662092840485212e-01 -8.8382119430337820e-04 5.5519862674818066e-01 7.0631730221203282e-01 0 1 0 0 0 0 P 807 22 -4.2818824740733380e-01 9.2950805516646209e-02 4.1314695836718696e-01 6.0222540354257359e-01 0 1 0 0 0 0 E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 1.5073383106491554e+00 -1.2993365623313919e+00 2.7209201338025518e+03 2.7209208615607290e+03 0 3 0 0 -3 0 P 13 2203 -1.5073383106491554e+00 1.2993365623313919e+00 4.2445390246486650e+03 4.2445395612551065e+03 7.7132999999999996e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 2.5858216316097202e+00 -2.1708479932488607e+00 -4.3397297718328176e+01 4.3528433279564204e+01 0 3 0 0 -4 0 P 16 2 -9.0692769071088786e-01 1.4604855287320972e+00 -7.6935046429856322e+02 7.6935245586936981e+02 3.3000000000000002e-01 2 0 0 -11 0 P 31 2101 -1.6788939408988324e+00 7.1036246451676344e-01 -6.0892474052497901e+03 6.0892477056910939e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 6 0 P 5 -3 1.9131593054692739e+00 -4.0833345117393832e-01 1.5134760262017681e+02 1.5136024489148531e+02 0 3 0 0 -5 0 P 11 3 -2.3763962284599889e+00 -1.5682078523784135e+00 3.3160241945312552e+00 4.3991534823891785e+00 5.0000000000000000e-01 2 0 0 -9 0 P 12 21 -1.7899416997370041e-01 2.7373785189054706e-01 1.8197775504657279e-01 3.7428228354280341e-01 0 2 0 0 -9 0 P 17 1 1.1548355662297878e+00 3.4375600693342656e-01 1.0589855551638902e+03 1.0589862920544110e+03 3.3000000000000002e-01 2 0 0 -13 0 P 18 21 1.2020137443834598e+00 -9.8631711370454744e-01 1.4970067852719885e+03 1.4970075927692765e+03 0 2 0 0 -13 0 P 19 21 -2.4138821327432236e-01 9.7656750468602660e-01 8.6876499652477523e+00 8.7456969007269940e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 8 0 P 6 4 -5.9089825329223244e-01 -1.6901151672419878e+00 -1.5889612462364616e+01 1.5990166798017459e+01 0 3 0 0 -5 0 P 14 -4 1.2883406923195979e+00 -8.1779995058646193e-02 -1.5140846367359584e+01 1.5269634521725274e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 4.8780533685027683e-01 -5.0842485147169025e-01 -1.9217346871295313e+00 2.0468302528471822e+00 0 2 0 0 -11 0 P 26 21 7.3199240075760574e-01 2.4932276178633131e-01 -7.8263490844843397e-01 1.1002236655488444e+00 0 2 0 0 -13 0 P 27 21 3.8517080731795145e-01 1.6355688468072610e-01 -4.1897803992779883e+00 4.2106255116681233e+00 0 2 0 0 -13 0 P 28 21 -4.9565627720230027e-01 -4.4399621171836968e-02 -1.3956559470714644e-01 5.1684139415898722e-01 0 2 0 0 -13 0 P 29 21 6.4928719605614766e-03 1.4868576029816710e-01 1.7868600341142118e-01 2.3254741563149370e-01 0 2 0 0 -13 0 P 30 21 8.0668235928323240e-01 -3.3823327368415140e-01 -4.1172703508799797e+00 4.2091630187533973e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 3 0 0 -6 0 P 8 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821259e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821045e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 13 0 P 32 -3 -1.8175462476630642e+00 -2.6075903952270956e+00 7.4978093125731151e+00 8.1590530406035970e+00 5.0000000000000000e-01 2 0 0 -15 0 P 33 21 -7.7086820243997201e+00 -1.2078882165221280e+01 4.1059302235880892e+01 4.3487808326150649e+01 0 2 0 0 -15 0 P 34 21 -8.6664999417158739e-01 -2.3788922262766904e-01 4.1521896803822882e+00 4.2483352782605541e+00 0 2 0 0 -15 0 P 35 21 -2.7355636784212805e+00 -4.9103226906665798e+00 4.5665344073097550e+01 4.6009979644415822e+01 0 2 0 0 -15 0 P 36 21 -8.1750908960544592e-03 -2.4124905925706416e-02 6.8686147210170772e+00 6.8686619533188251e+00 0 2 0 0 -15 0 P 37 21 6.4416385788967663e+00 3.9997054871194289e+00 1.5990357572048969e+01 1.7697002199435030e+01 0 2 0 0 -15 0 P 38 21 4.3820415185385482e+00 1.4472618519174791e+00 9.4571366554555141e+00 1.0523036085568249e+01 0 2 0 0 -15 0 P 39 21 1.5785379900501961e+00 6.3340244933387069e-01 4.9379047129305471e+00 5.2226318846761126e+00 0 2 0 0 -15 0 P 40 21 2.1695667705919841e-01 -2.8556071886963619e-01 9.3101540850151454e-01 9.9769976182675046e-01 0 2 0 0 -15 0 P 41 21 4.4744182629032359e-01 3.7836193256341005e-01 7.6527884936886914e-01 9.6385354552363345e-01 0 2 0 0 -15 0 P 42 21 7.0915200046107396e-01 9.4447177453203079e-01 5.3145921951374853e-01 1.2951341222637094e+00 0 2 0 0 -15 0 P 43 21 1.1637549392207085e+00 6.4262106092344524e+00 1.4233902665894258e+00 6.6840517804561888e+00 0 2 0 0 -15 0 P 44 4 1.1845655554320238e+00 8.2373132175066175e+00 1.2079282052863620e+00 8.5419912870215189e+00 1.5000000000000000e+00 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 45 92 -4.0627287090828448e+00 4.8665618435255187e-03 4.2480370265982428e+03 4.2493129970210384e+03 1.0404740032327815e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 14 0 P 46 3122 -7.3771937707635449e-01 -1.9294115521747696e-01 2.3626223120200218e+00 2.7217976082628574e+00 1.1156800000000000e+00 2 0 0 -17 0 P 47 113 -5.8649080238289153e-01 -3.6887303658376347e-01 1.5544771643782693e+00 1.8799923714648183e+00 7.9870725788248087e-01 2 0 0 -18 0 P 48 -2112 -8.3505206138920984e-01 -4.5948159379032477e-01 3.2157041824918604e+00 3.4830992599204103e+00 9.3957000000000002e-01 1 0 0 0 0 P 49 -211 -4.6959323148633048e-01 -1.2832517867366380e-01 9.7275164850053275e-01 1.0966816808444948e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 321 2.1227525312906162e-01 -1.5289242719376326e-02 2.1781765734125420e+00 2.2435214928761309e+00 4.9359999999999998e-01 1 0 0 0 0 P 51 -321 -2.7058491563472709e-01 -6.9924173239626061e-02 6.3841624885677168e+00 6.4093117592302722e+00 4.9359999999999998e-01 1 0 0 0 0 P 52 213 2.1203810470765724e-01 2.0958133779211251e-02 6.7514724368505332e+00 6.8027312640157040e+00 8.0583694606582701e-01 2 0 0 -19 0 P 53 111 -3.3213424623765248e-01 3.4211924550281853e-01 4.3402841912560630e+00 4.3684831688967929e+00 1.3497999999999999e-01 2 0 0 -20 0 P 54 -211 3.1101552012023875e-01 -7.6976657694286010e-01 4.3071461940135706e+01 4.3079688771881727e+01 1.3957000000000000e-01 1 0 0 0 0 P 55 211 -1.6705318266988844e-01 2.9031993215322216e-01 2.3857982790456216e+01 2.3860742131028751e+01 1.3957000000000000e-01 1 0 0 0 0 P 56 311 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -21 0 P 57 -311 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -22 0 P 58 2112 -4.9118388741375185e-01 1.5592546903498823e+00 3.6302423682361400e+03 3.6302428579180933e+03 9.3957000000000002e-01 1 0 0 0 0 P 59 211 -4.2689663996527044e-01 -1.8418355465330538e-01 4.2449709914417917e+02 4.2449737670088257e+02 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 60 92 8.6921833845898688e-01 8.7028068220176080e-01 -7.8641304535305233e+02 7.8666892064394222e+02 2.0024981314782629e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 9 0 P 61 -411 1.1688720643707666e+00 -7.4513028084903610e-01 -1.6866644499133198e+01 1.7026434159519269e+01 1.8693000000000000e+00 2 0 0 -23 0 P 62 213 3.7470388189717097e-01 1.1020281521248323e-01 -1.5451543037357895e+01 1.5475868794289363e+01 7.7445790275939808e-01 2 0 0 -24 0 P 63 -213 -2.1178538509080652e-01 3.9040080476128763e-01 -2.5920552948920815e+01 2.5932809177743518e+01 6.6201271419408125e-01 2 0 0 -25 0 P 64 211 -1.0539248551241585e-01 -5.6877312112187807e-02 -2.4813930335012659e+00 2.4881989020663533e+00 1.3957000000000000e-01 1 0 0 0 0 P 65 -2224 6.3960254240566017e-01 -4.3830975700149433e-02 -3.3696696807691140e+01 3.3728822474444563e+01 1.3247932655519623e+00 2 0 0 -26 0 P 66 111 -4.9002768594274757e-02 -9.3633614435907869e-02 -1.7412505148631521e+00 1.7496689632594586e+00 1.3497999999999999e-01 2 0 0 -27 0 P 67 2212 -1.7983236018661933e-01 2.1939525582136044e-01 -1.6103988517067441e+02 1.6104286833117743e+02 9.3827000000000005e-01 1 0 0 0 0 P 68 213 -7.6187580460114623e-01 8.5913101305733230e-01 -1.2365619630425306e+02 1.2366417060794262e+02 8.0848430729299015e-01 2 0 0 -28 0 P 69 331 -6.0713462293482384e-03 2.3062297644657839e-01 -4.0555888303665745e+02 4.0556007923349972e+02 9.5761898627699404e-01 2 0 0 -29 0 V -13 0 0 0 0 0 6 1 0 P 20 21 2.7497223922082998e+00 -3.2443890390539156e+00 2.5418671295121317e+01 2.5771998057588963e+01 0 2 0 0 -13 0 P 21 21 -2.0575204360516910e-01 2.4229652480183916e+00 4.9419044762411302e+00 5.5077685453225653e+00 0 2 0 0 -13 0 P 22 21 -2.7497223922082998e+00 3.2443890390539156e+00 6.7021782526682061e-01 4.3053716917648712e+00 0 2 0 0 -13 0 P 23 21 2.0575204360516910e-01 -2.4229652480183916e+00 -1.4189664353904355e-01 2.4358220694459964e+00 0 2 0 0 -13 0 P 24 21 1.2587821098669902e+00 -2.6667816242118747e-01 -5.8254265308406481e+01 5.8268474119927362e+01 0 2 0 0 -13 0 P 25 21 -1.2587821098669902e+00 2.6667816242118747e-01 -3.6098622829217867e+01 3.6121547860087098e+01 0 2 0 0 -13 0 P 70 92 1.8712493185571446e+00 1.2233013743409056e+00 -3.5970819712830998e+03 8.7966676707654060e+03 8.0275997909536509e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 50 0 P 71 -213 8.7695914611789827e-01 -1.3056393899451380e-01 7.7453546713867104e+02 7.7453638241747433e+02 7.9481340084842744e-01 2 0 0 -30 0 P 72 223 4.8295247219301213e-01 -1.9931783509541660e-02 9.9052523820924489e+02 9.9052566384292925e+02 7.8074427808345570e-01 2 0 0 -31 0 P 73 211 1.3850104916568237e-01 -4.3565090467300321e-01 6.8677299646723853e+01 6.8678962869296143e+01 1.3957000000000000e-01 1 0 0 0 0 P 74 111 4.2475962909123333e-01 1.2253088954042510e-01 3.4986130518811797e+02 3.4986161052921358e+02 1.3497999999999999e-01 2 0 0 -32 0 P 75 113 2.5170671641125530e-01 7.9527061042662023e-02 2.2599488119587267e+02 2.2599641994950557e+02 7.9108939580457083e-01 2 0 0 -33 0 P 76 -211 -1.9221335908804853e-02 -5.3067745014872614e-01 1.3807915012377745e+02 1.3808024176798583e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 213 -1.4049907214162011e-01 5.4367330912058265e-01 1.1669475275555600e+01 1.1707613671742026e+01 7.5910738610194239e-01 2 0 0 -34 0 P 78 223 8.1633397897400806e-01 -8.5768108564839712e-02 9.2590479009986204e+00 9.3278515479896740e+00 7.7787475513226845e-01 2 0 0 -35 0 P 79 -211 -1.4210113651499059e-01 -3.8388855788894088e-01 1.4955103913496963e+00 1.5567897332047844e+00 1.3957000000000000e-01 1 0 0 0 0 P 80 111 9.5463497763658234e-01 -3.9478491268212601e-01 7.3124203460701409e+00 7.3862638719334406e+00 1.3497999999999999e-01 2 0 0 -36 0 P 81 211 7.2490675961385420e-02 1.3169438131253494e-01 3.6667839444915624e+00 3.6725172005930387e+00 1.3957000000000000e-01 1 0 0 0 0 P 82 -213 4.4126493964800634e-01 -2.1003298064756973e-01 3.0615450194359637e+00 3.2079186412104401e+00 8.2392687944381182e-01 2 0 0 -37 0 P 83 111 -2.3027854891341855e-02 -2.8065908362951703e-01 6.3048404098198441e-01 7.0358334947440981e-01 1.3497999999999999e-01 2 0 0 -38 0 P 84 213 2.2642962321946897e-01 6.4703057792370411e-01 8.0785724570491790e-01 1.2852258827712018e+00 7.2749797062774335e-01 2 0 0 -39 0 P 85 111 -3.9094005207012528e-01 2.2862878685255186e-01 1.1012349532976333e+00 1.1983502281281138e+00 1.3497999999999999e-01 2 0 0 -40 0 P 86 2112 3.7269907250953721e-01 -2.8015513221139599e-01 4.1715239773705060e+00 4.3013713598608181e+00 9.3957000000000002e-01 1 0 0 0 0 P 87 -2212 -4.4502325970543771e-01 -2.1754495217768732e-01 1.7491568031425615e+00 2.0457936412983475e+00 9.3827000000000005e-01 1 0 0 0 0 P 88 321 -5.0379083550468627e-02 1.8803084736306059e+00 2.7277173368670735e+00 3.3499523635287178e+00 4.9359999999999998e-01 1 0 0 0 0 P 89 -323 -8.1116466091627526e-01 1.0534532017480058e+00 -8.4500355663205268e-02 1.6198712899609433e+00 9.2146130170505902e-01 2 0 0 -41 0 P 90 211 -8.9799083863894580e-01 2.3005438883367976e-01 4.0876039776347678e-01 1.0226814830536783e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 331 3.8608499147221492e-01 -6.2301749856969058e-01 1.4524261016864801e-02 1.2064351176701817e+00 9.5815568402303219e-01 2 0 0 -42 0 P 92 113 -4.2308470357622924e-01 -1.7764392720888758e-01 -1.4921992585509802e+00 1.8764952260107282e+00 1.0411616948133349e+00 2 0 0 -43 0 P 93 -213 -5.9228690859513926e-02 -3.6096116901355901e-01 5.0680556828157078e-03 8.5602583207208316e-01 7.7392088525231784e-01 2 0 0 -44 0 P 94 223 4.4519376696515300e-01 -3.6599579577299851e-01 -9.3581058961126686e+00 9.4083900348679848e+00 7.8198892107010165e-01 2 0 0 -45 0 P 95 213 2.5449089999962965e-01 -5.2538580551351322e-01 -1.5990871713898519e+01 1.6022635374114184e+01 8.2223494126538865e-01 2 0 0 -46 0 P 96 -211 -3.9985126704558338e-01 6.0759733471177846e-01 -5.2292352414804952e+00 5.2814237240112059e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 221 -5.4103870668604441e-02 -1.8671774238069413e-01 -6.7313154173464085e+00 6.7563377279741221e+00 5.4744999999999999e-01 2 0 0 -47 0 P 98 213 3.2263683737559473e-01 -3.9310173367445850e-01 -3.0380981895830683e+01 3.0395598885213076e+01 7.9356608680380858e-01 2 0 0 -48 0 P 99 -211 4.0901777019801971e-01 2.4457160340083145e-01 -2.4147552200210995e+00 2.4652856554661087e+00 1.3957000000000000e-01 1 0 0 0 0 P 100 211 -3.8554471983155963e-01 4.8755575017222624e-01 -1.2591851607058537e+01 1.2607956298290325e+01 1.3957000000000000e-01 1 0 0 0 0 P 101 313 -2.7509880964698280e-02 -4.0663952030180289e-01 -4.3936450704745784e+00 4.5023486881603016e+00 8.9493810481577130e-01 2 0 0 -49 0 P 102 3224 -9.2672852486645571e-02 6.5585209965268648e-02 -4.0204721714874072e+00 4.2506978129614730e+00 1.3752620615928364e+00 2 0 0 -50 0 P 103 -3224 3.3909533539442915e-01 3.1246322967426809e-01 -4.3825925655100573e+00 4.6089362027682723e+00 1.3500208922602861e+00 2 0 0 -51 0 P 104 -313 2.9239998644659210e-01 4.7617792020952156e-02 -2.8607764941309388e+00 3.0128119422957576e+00 8.9734522012261986e-01 2 0 0 -52 0 P 105 -211 3.3114193757278626e-01 4.8736178797093938e-01 -6.8654531220075832e-01 9.1542380665925804e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 213 -6.5980063614748952e-01 -2.7824199752659268e-01 -8.6444920386959794e+00 8.7073410305708592e+00 7.6012481010450028e-01 2 0 0 -53 0 P 107 -211 6.7548772052830464e-01 2.8279401240234431e-01 -2.3109875521773585e+01 2.3121896170747007e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 -3.8123255767312253e-01 -3.0685043734591605e-01 -1.1953401963161754e+01 1.2004205412817816e+01 9.8875358218105502e-01 2 0 0 -54 0 P 109 331 1.4931133481974440e-01 -1.1268304079557502e-01 -9.9766292699747137e+00 1.0024233320468472e+01 9.5766942641267616e-01 2 0 0 -55 0 P 110 221 1.9001747233615021e-01 1.1235252860039266e-01 -1.1311205093270679e+01 1.1326596659853676e+01 5.4744999999999999e-01 2 0 0 -56 0 P 111 3122 -1.6531213545598181e-02 1.7941481008998922e-01 -9.7845632368603006e+01 9.7852158782672305e+01 1.1156800000000000e+00 2 0 0 -57 0 P 112 -3212 2.1512032592093658e-01 -4.9536064251785050e-01 -8.8021694916783730e+01 8.8031429673989905e+01 1.1925500000000000e+00 2 0 0 -58 0 P 113 213 -3.0271802830700351e-01 -1.8199115940732644e-01 -9.3693985986604460e+01 9.3696228323527890e+01 5.4353749629009396e-01 2 0 0 -59 0 P 114 -213 -1.4424928218799363e-01 8.0356077501503209e-01 -1.5775355144448991e+02 1.5775717774879575e+02 6.9110067374553441e-01 2 0 0 -60 0 P 115 111 1.7128022450432756e-01 -3.6555194441179756e-01 -8.1007288706637596e+01 8.1008407022606633e+01 1.3497999999999999e-01 2 0 0 -61 0 P 116 111 1.5788168370261174e-02 -4.8321618446635503e-02 -1.0310912881680434e+01 1.0311921658889448e+01 1.3497999999999999e-01 2 0 0 -62 0 P 117 213 1.9689425293322910e-01 -1.5224892223532024e-01 -6.4658169287785782e+01 6.4660495121341583e+01 4.8869889289292329e-01 2 0 0 -63 0 P 118 -211 -7.1825664261600375e-01 -2.9746020738896345e-01 -7.9981103969115236e+02 7.9981142969252869e+02 1.3957000000000000e-01 1 0 0 0 0 P 119 211 -7.0721336506262444e-02 7.1538494473250414e-01 -1.9344004753605057e+02 1.9344143363731823e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2112 -9.2559101045397996e-01 2.0797149321907010e-01 -4.4406806478088056e+03 4.4406808485395886e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 121 92 2.9874720503971322e+00 1.9223572236693229e+00 1.4048773091264587e+02 1.6069923890952060e+02 7.7941147044214631e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 23 0 P 122 321 -1.9596084643502856e+00 -3.0602237549375295e+00 9.0339720928884173e+00 9.7499398715542842e+00 4.9359999999999998e-01 1 0 0 0 0 P 123 111 -2.1221753418868241e+00 -3.0794768752118356e+00 9.7608878684791733e+00 1.0453705447739610e+01 1.3497999999999999e-01 2 0 0 -64 0 P 124 -213 -5.8801121921525645e+00 -8.8594710964628405e+00 3.2017570968426774e+01 3.3747254672951620e+01 8.2849245105086544e-01 2 0 0 -65 0 P 125 213 -1.1405902431970816e+00 -2.4992193557709950e+00 2.1111220865463821e+01 2.1310746560358947e+01 9.5772075174289650e-01 2 0 0 -66 0 P 126 -211 -5.9892796811931859e-01 2.1874519221366373e-01 6.1395360304544235e+00 6.1741352936472156e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 213 -4.5559783483989907e-01 -3.2530999344707040e-01 6.7553426559176861e+00 6.8289650272447275e+00 8.2868146203666626e-01 2 0 0 -67 0 P 128 113 -5.7440792125096041e-01 -1.3510713832725041e+00 1.4285720978915283e+01 1.4384112737546413e+01 8.1580452090620947e-01 2 0 0 -68 0 P 129 -323 1.3411301224220290e-01 5.6031818823388205e-03 2.7919730682451793e+00 2.9745260344901774e+00 1.0171891762860905e+00 2 0 0 -69 0 P 130 313 1.2324498805479818e+00 3.7849258064035401e-01 4.8207774900212632e+00 5.0746247963754492e+00 9.2180902253684249e-01 2 0 0 -70 0 P 131 211 1.6120206802060957e-01 -7.1135203600750430e-02 1.1811311498599026e+00 1.2023297808816087e+00 1.3957000000000000e-01 1 0 0 0 0 P 132 223 1.2785603990255554e+00 8.1470418811002865e-01 4.2252255004056352e+00 4.5561557209133206e+00 7.7946444168590967e-01 2 0 0 -71 0 P 133 113 1.2567864011156424e+00 4.7197901755798238e-01 3.3548075691944046e+00 3.6963380307328726e+00 7.7839884382872360e-01 2 0 0 -72 0 P 134 -213 1.5702635608886917e+00 6.2797790528091013e-01 3.9810681837186714e+00 4.3848941954086769e+00 7.1993702595142928e-01 2 0 0 -73 0 P 135 -313 2.9950025276104766e+00 1.4295147405663253e+00 7.2274828460366631e+00 8.0017007909111246e+00 8.8156379441532173e-01 2 0 0 -74 0 P 136 311 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -75 0 P 137 213 1.6729071976051537e+00 8.5620849094171136e-01 3.0695739662043788e+00 3.7282048788027744e+00 9.7237637392591791e-01 2 0 0 -76 0 P 138 -2212 5.6456212520249682e-01 1.0007903273826917e+00 2.0028501160208223e+00 2.4924026265313830e+00 9.3827000000000005e-01 1 0 0 0 0 P 139 -213 9.5986336228977864e-01 4.5552201652155105e-01 6.3324037919285980e-01 1.4469243010152428e+00 7.5083858000640402e-01 2 0 0 -77 0 P 140 2224 -7.8524718047965902e-02 1.4537681742328321e+00 2.1735353569266671e+00 2.8439842589241842e+00 1.1155189292169956e+00 2 0 0 -78 0 P 141 -213 4.3109300650004678e-01 9.7089208546243078e-01 9.3226226300081128e-01 1.6345673268370955e+00 8.2111192725543636e-01 2 0 0 -79 0 P 142 223 8.4775152594623793e-01 6.9685656413280006e-01 5.1616019999694440e-01 1.4417240686217714e+00 7.7965070208605758e-01 2 0 0 -80 0 P 143 213 -6.9411667715650036e-02 8.6435598231357802e-01 -4.6980410204834594e-02 1.0258343082727188e+00 5.4607657458456793e-01 2 0 0 -81 0 P 144 423 1.9798114286895228e+00 1.0463034435943911e+01 2.2730832830925096e+00 1.1071968903622894e+01 2.0066999999999999e+00 2 0 0 -82 0 V -17 0 -1.9844667492655856e+00 -5.1901213251491485e-01 6.3554592233402145e+00 7.3216415613673087e+00 0 2 0 P 145 2212 -5.6405112594990248e-01 -8.2328990329775781e-02 1.8320933095166183e+00 2.1358483614268189e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -211 -1.7366825112645196e-01 -1.1061216488770119e-01 5.3052900250340351e-01 5.8594924683603844e-01 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 147 211 -1.2405291990440502e-01 1.5180733255592282e-01 9.8520447119075288e-02 2.6003972111024848e-01 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 -4.6243788247848655e-01 -5.2068036913968629e-01 1.4559567172591938e+00 1.6199526503545698e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 149 211 -1.6401757664718711e-01 -1.6181441769908414e-01 1.0378249140804121e+00 1.0722154673434461e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 111 3.7605568135484441e-01 1.8277255147829538e-01 5.7136475227701213e+00 5.7305157966722584e+00 1.3497999999999999e-01 2 0 0 -83 0 V -20 0 -2.1337750193070739e-05 2.1979230023625941e-05 2.7883875537992317e-04 2.8065038049059407e-04 0 2 0 P 151 22 -2.0299074029907288e-01 2.6252242577301055e-01 2.4946979827878186e+00 2.5166726624665596e+00 0 1 0 0 0 0 P 152 22 -1.2914350593857957e-01 7.9596819729807991e-02 1.8455862084682444e+00 1.8518105064302333e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 1 0 P 153 310 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -84 0 V -22 0 0 0 0 0 0 1 0 P 154 310 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -85 0 V -23 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 3 0 P 155 333 2.3005001914978035e-01 -1.8891038012288625e-01 -8.2469504198468382e+00 8.3158471983839330e+00 1.0259206872019917e+00 2 0 0 -86 0 P 156 -211 6.7707841467988750e-01 -6.3633879806255356e-01 -5.9907253670076601e+00 6.0639617786851350e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 111 2.6174363054109889e-01 8.0118897336403663e-02 -2.6289687122787009e+00 2.6466251824502018e+00 1.3497999999999999e-01 2 0 0 -87 0 V -24 0 0 0 0 0 0 2 0 P 158 211 2.6553185864339701e-01 3.5264117770652248e-01 -5.3710811805618999e+00 5.3909976628871830e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 111 1.0917202325377394e-01 -2.4243836249403924e-01 -1.0080461856795997e+01 1.0084871131402181e+01 1.3497999999999999e-01 2 0 0 -88 0 V -25 0 0 0 0 0 0 2 0 P 160 -211 -2.4426207882457773e-01 2.0745765263264787e-01 -5.5682657854634128e+00 5.5792263158300033e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 111 3.2476693733771218e-02 1.8294315212863976e-01 -2.0352287163457397e+01 2.0353582861913512e+01 1.3497999999999999e-01 2 0 0 -89 0 V -26 0 0 0 0 0 0 2 0 P 162 -2212 6.7891220695115995e-01 -2.6938319910007968e-01 -2.5439516053421304e+01 2.5467289151338523e+01 9.3827000000000005e-01 1 0 0 0 0 P 163 -211 -3.9309664545499771e-02 2.2555222339993028e-01 -8.2571807542698359e+00 8.2615333231060397e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 -1.7545294729911774e-05 -3.3525235594481608e-05 -6.2344953883797553e-04 6.2646373910703974e-04 0 2 0 P 164 22 -1.3943100255850547e-02 3.3588080481148697e-02 -2.5646016790007836e-01 2.5902584217504093e-01 0 1 0 0 0 0 P 165 22 -3.5059668338424207e-02 -1.2722169491705657e-01 -1.4847903469630739e+00 1.4906431210844178e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 166 211 1.1741752767951077e-01 5.9244901067751467e-02 -2.4668746433273466e+01 2.4669491831169758e+01 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -8.7929333228065698e-01 7.9988611198958082e-01 -9.8987449870979589e+01 9.8994678776772872e+01 1.3497999999999999e-01 2 0 0 -90 0 V -29 0 0 0 0 0 0 3 0 P 168 211 -6.7504817019198513e-02 2.1432555030263287e-02 -4.1979376582973444e+01 4.1979668344744397e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 -211 4.4469542840321237e-02 -6.9910430478048916e-02 -1.2780395423055235e+02 1.2780405729771864e+02 1.3957000000000000e-01 1 0 0 0 0 P 170 221 1.6963927949529032e-02 2.7910085189436401e-01 -2.3577555222313160e+02 2.3577635359103664e+02 5.4744999999999999e-01 2 0 0 -91 0 V -30 0 0 0 0 0 0 2 0 P 171 -211 8.6386022358688364e-01 -7.0654186651049333e-02 7.4701973770997915e+02 7.4702025357721789e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 111 1.3098922531014681e-02 -5.9909752343464469e-02 2.7515729428691831e+01 2.7516128840256126e+01 1.3497999999999999e-01 2 0 0 -92 0 V -31 0 0 0 0 0 0 2 0 P 173 22 1.6926641057211625e-01 3.6123228903412097e-01 3.7191796379176452e+02 3.7191817773657777e+02 0 1 0 0 0 0 P 174 111 3.1368606162089585e-01 -3.8116407254366264e-01 6.1860727441748043e+02 6.1860748610635142e+02 1.3497999999999999e-01 2 0 0 -93 0 V -32 0 5.6436604519175483e-07 1.6280330993721719e-07 4.6485077123992365e-04 4.6485117693795790e-04 0 2 0 P 175 22 3.8185582995770503e-02 2.3989543116426159e-02 1.5021587931467392e+01 1.5021655621792634e+01 0 1 0 0 0 0 P 176 22 3.8657404609546286e-01 9.8541346423998935e-02 3.3483971725665060e+02 3.3483995490742092e+02 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 177 211 1.7502709826283822e-01 -7.2253309396830834e-02 1.9461599680901642e+01 1.9463021269844411e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 7.6679618148417103e-02 1.5178037043949286e-01 2.0653328151497104e+02 2.0653339867966116e+02 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 179 211 1.6296883721185318e-01 5.6243079477968649e-01 8.2798181701248907e+00 8.3016718771611888e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -3.0346790935347329e-01 -1.8757485659103824e-02 3.3896571054307092e+00 3.4059417945808343e+00 1.3497999999999999e-01 2 0 0 -94 0 V -35 0 0 0 0 0 0 3 0 P 181 -211 1.9357415831584032e-01 5.5271447718090408e-02 3.1876873772349965e+00 3.1970856240619940e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 5.3124449692864362e-01 -7.7979213723395127e-02 5.6103361119600752e+00 5.6376992246264059e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 111 9.1515323729524131e-02 -6.3060342559535007e-02 4.6102441180354975e-01 4.9306669930127561e-01 1.3497999999999999e-01 2 0 0 -95 0 V -36 0 5.6399558106351325e-04 -2.3323778348715264e-04 4.3201567705729998e-03 4.3637833118717051e-03 0 2 0 P 184 22 6.0152711440246365e-01 -2.5407154692728640e-01 4.1453379317665098e+00 4.1964525243187989e+00 0 1 0 0 0 0 P 185 22 3.5310786323411864e-01 -1.4071336575483961e-01 3.1670824143036311e+00 3.1898113476146417e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 186 -211 1.1414130684189257e-01 2.6467084943073615e-01 6.4809866664659299e-01 7.2290425581473383e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 3.2712363280611384e-01 -4.7470383007830586e-01 2.4134463527893710e+00 2.4850143853957061e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -9.2152121994269624e-06 -1.1231324079235629e-04 2.5230505635093632e-04 2.8155770027142357e-04 0 2 0 P 188 22 4.4312363323561511e-02 -1.4226542374713172e-01 3.9594711711123376e-01 4.2305691802163847e-01 0 1 0 0 0 0 P 189 22 -6.7340218214903366e-02 -1.3839365988238528e-01 2.3453692387075067e-01 2.8052643145277134e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 190 211 4.0322473881604282e-01 6.3687839440575356e-01 5.4420540727985800e-01 9.4012955993668912e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 -1.7679511559657388e-01 1.0152183517950436e-02 2.6365183842505979e-01 3.4509632283451225e-01 1.3497999999999999e-01 2 0 0 -97 0 V -40 0 -1.1498802596763853e-04 6.7247069570746382e-05 3.2390857047193844e-04 3.5247329205758586e-04 0 2 0 P 192 22 -3.9541540899512673e-01 2.0790443889794896e-01 1.0051908558896452e+00 1.0999937536860889e+00 0 1 0 0 0 0 P 193 22 4.4753569250014945e-03 2.0724347954602883e-02 9.6044097407988055e-02 9.8356474442024944e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 194 -311 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -98 0 P 195 -211 -1.3776347211087997e-01 1.0257146128803515e-02 -1.9611982330692460e-01 2.7753694040378146e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 196 22 1.1928310723212228e-01 6.2424229046454179e-02 9.2406209769038995e-03 1.3494677883904066e-01 0 1 0 0 0 0 P 197 223 2.6680188424009266e-01 -6.8544172761614486e-01 5.2836400399609018e-03 1.0714883388311411e+00 7.7913139842235690e-01 2 0 0 -99 0 V -43 0 0 0 0 0 0 2 0 P 198 -211 1.1668201970610442e-01 -4.4466239966254167e-01 -9.0124037193265960e-01 1.0212998268371851e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -5.3976672328233366e-01 2.6701847245365407e-01 -5.9095888661832063e-01 8.5519539917354281e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 200 -211 -2.8285333140334207e-01 -1.2677482532142470e-01 2.5528442376328292e-01 4.2512090672818953e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 2.2362464054382813e-01 -2.3418634369213437e-01 -2.5021636808046721e-01 4.3090492534389380e-01 1.3497999999999999e-01 2 0 0 -100 0 V -45 0 0 0 0 0 0 3 0 P 202 -211 1.9376355805150766e-01 -3.8720878823476292e-03 -1.4890898146180365e+00 1.5081205423945816e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 211 9.0701539973870052e-02 -4.3171555039072046e-01 -4.4139722644893755e+00 4.4381568271506877e+00 1.3957000000000000e-01 1 0 0 0 0 P 204 111 1.6072866893977533e-01 6.9591842500069612e-02 -3.4550438170052566e+00 3.4621126653227159e+00 1.3497999999999999e-01 2 0 0 -101 0 V -46 0 0 0 0 0 0 2 0 P 205 211 3.1601308074546486e-01 8.1951041368575422e-02 -4.1020722236496665e+00 4.1174089611455589e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 -6.1522180745835209e-02 -6.0733684688208867e-01 -1.1888799490248854e+01 1.1905226412968625e+01 1.3497999999999999e-01 2 0 0 -102 0 V -47 0 0 0 0 0 0 2 0 P 207 22 1.3142818429080874e-01 -6.7188657540822996e-02 -5.0545426544338246e-01 5.2656594818030733e-01 0 1 0 0 0 0 P 208 22 -1.8553205495941319e-01 -1.1952908483987112e-01 -6.2258611519030262e+00 6.2297717797938148e+00 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 209 211 1.1527824663344002e-01 1.7618369235062545e-01 -4.4313150484662591e+00 4.4385090527406499e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 111 2.0735859074215474e-01 -5.6928542602508403e-01 -2.5949666847364426e+01 2.5957089832472430e+01 1.3497999999999999e-01 2 0 0 -103 0 V -49 0 0 0 0 0 0 2 0 P 211 321 -1.8049013031365618e-01 -1.0298015469208779e-01 -3.4192346740575754e+00 3.4609230438827532e+00 4.9359999999999998e-01 1 0 0 0 0 P 212 -211 1.5298024934895790e-01 -3.0365936560971507e-01 -9.7441039641700233e-01 1.0414256442775469e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 213 3122 4.1566977743454060e-02 -9.0669325462081497e-03 -2.8301295872369461e+00 3.0423979630972817e+00 1.1156800000000000e+00 2 0 0 -104 0 P 214 211 -1.3423983023009964e-01 7.4652142511476796e-02 -1.1903425842504611e+00 1.2082998498641908e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 215 -3122 1.4644010092526616e-01 2.9462648835286787e-01 -3.9129095753338130e+00 4.0821382482636706e+00 1.1156800000000000e+00 2 0 0 -105 0 P 216 -211 1.9265523446916299e-01 1.7836741321400194e-02 -4.6968299017624388e-01 5.2679795450460165e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 217 -311 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -106 0 P 218 111 -1.4885300802435425e-01 -1.4978228857165021e-01 -8.0617713874096109e-01 8.4423523463322847e-01 1.3497999999999999e-01 2 0 0 -107 0 V -53 0 0 0 0 0 0 2 0 P 219 211 -2.5375029447482039e-01 -3.8243313097061077e-01 -2.4079874229302018e+00 2.4553059942703834e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 111 -4.0605034167266918e-01 1.0419113344401808e-01 -6.2365046157657771e+00 6.2520350363004749e+00 1.3497999999999999e-01 2 0 0 -108 0 V -54 0 0 0 0 0 0 2 0 P 221 211 -6.8803944468509970e-01 -3.0625630690087424e-01 -8.1868653584578439e+00 8.2226173074864803e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 3.0680688701197723e-01 -5.9413044504183564e-04 -3.7665366047039095e+00 3.7815881053313332e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 223 22 1.4803887835073931e-01 1.4431039886464253e-01 -3.9233262621300380e+00 3.9287695223623227e+00 0 1 0 0 0 0 P 224 113 1.2724564690050806e-03 -2.5699343966021754e-01 -6.0533030078446757e+00 6.0954637981061488e+00 6.6794787376515263e-01 2 0 0 -109 0 V -56 0 0 0 0 0 0 2 0 P 225 22 2.7486911490570909e-01 2.4665741492151072e-01 -5.0974148933587955e+00 5.1107760179546959e+00 0 1 0 0 0 0 P 226 22 -8.4851642569558877e-02 -1.3430488632111803e-01 -6.2137901999118847e+00 6.2158206418989801e+00 0 1 0 0 0 0 V -57 0 -5.1384144154367772e-01 5.5767693277105579e+00 -3.0413460358706184e+03 3.0415488970824849e+03 0 2 0 P 227 2212 -5.5781591737588045e-02 1.8546033000560758e-01 -7.5892828715246239e+01 7.5898875539197462e+01 9.3827000000000005e-01 1 0 0 0 0 P 228 -211 3.9250378191989864e-02 -6.0455199156183590e-03 -2.1952803653356771e+01 2.1953283243474850e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 229 -3122 1.5817021808919415e-01 -4.6711831736620663e-01 -7.8043803566704312e+01 7.8053335831090763e+01 1.1156800000000000e+00 2 0 0 -110 0 P 230 22 5.6950107831742425e-02 -2.8242325151643891e-02 -9.9778913500794122e+00 9.9780938428991330e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 231 211 -2.2057048299308663e-01 1.2058414904337308e-01 -3.1752686671178758e+01 3.1753988450239152e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -8.2147545313916867e-02 -3.0257530845069952e-01 -6.1941299315425702e+01 6.1942239873288742e+01 1.3497999999999999e-01 2 0 0 -111 0 V -60 0 0 0 0 0 0 2 0 P 233 -211 -7.4626039256974197e-02 5.5212060759843820e-02 -7.2841457685032779e+01 7.2841650550236082e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -6.9623242931019416e-02 7.4834871425518823e-01 -8.4912093759457122e+01 8.4915527198559630e+01 1.3497999999999999e-01 2 0 0 -112 0 V -61 0 3.7095050924952572e-05 -7.9169489839899478e-05 -1.7544170721174722e-02 1.7544412920692747e-02 0 2 0 P 235 22 1.3051674595057553e-02 -1.0381379811796879e-02 -7.9006772465227870e-01 7.9024371480813493e-01 0 1 0 0 0 0 P 236 22 1.5822854990927002e-01 -3.5517056460000063e-01 -8.0217220981985307e+01 8.0218163307798491e+01 0 1 0 0 0 0 V -62 0 1.5640011215518141e-06 -4.7868165371285921e-06 -1.0214154633381629e-03 1.0215153944162522e-03 0 2 0 P 237 22 6.9792978338652722e-02 -1.5039179832264731e-02 -7.2497788692693597e+00 7.2501304050382371e+00 0 1 0 0 0 0 P 238 22 -5.4004809968391555e-02 -3.3282438614370767e-02 -3.0611340124110744e+00 3.0617912538512102e+00 0 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 239 211 -1.0358361896008007e-01 -4.6590364867594776e-02 -3.1691643432288359e+01 3.1692154288599902e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 3.0047787189330916e-01 -1.0565855736772548e-01 -3.2966525855497423e+01 3.2968340832741681e+01 1.3497999999999999e-01 2 0 0 -113 0 V -64 0 -5.1181826233904744e-04 -7.4269664342761776e-04 2.3540942018907534e-03 2.5211853382997506e-03 0 2 0 P 241 22 -5.8725538308890379e-01 -9.5414217075973340e-01 2.8620591107837323e+00 3.0735384364945171e+00 0 1 0 0 0 0 P 242 22 -1.5349199587979205e+00 -2.1253347044521020e+00 6.8988287576954406e+00 7.3801670112450930e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 243 -211 -4.1839656186445389e+00 -5.7883022373468282e+00 2.0736168567910838e+01 2.1932126612587918e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -1.6961465735080259e+00 -3.0711688591160131e+00 1.1281402400515939e+01 1.1815128060363703e+01 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 2 0 P 245 211 -7.9207809269603291e-01 -2.3846094897531902e+00 1.8521407113532455e+01 1.8691595741767490e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -3.4851215050104867e-01 -1.1460986601780454e-01 2.5898137519313642e+00 2.6191508185914563e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 247 211 -4.5509931606842358e-01 -3.3463298989938156e-01 2.3300753748670862e+00 2.4016297930524053e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 -4.9851877147551659e-04 9.3229964523111226e-03 4.4252672810506004e+00 4.4273352341923227e+00 1.3497999999999999e-01 2 0 0 -116 0 V -68 0 0 0 0 0 0 2 0 P 249 211 1.2633607542023662e-01 -4.9385416405376997e-02 1.6813651929675688e+00 1.6925922191505520e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -7.0074399667119702e-01 -1.3016859668671270e+00 1.2604355785947714e+01 1.2691520518395860e+01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 251 -321 -1.2669965574403158e-01 -3.0792559741866704e-01 1.6866098932232190e+00 1.7886209403419544e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 111 2.6081266798623448e-01 3.1352877930100587e-01 1.1053631750219604e+00 1.1859050941482230e+00 1.3497999999999999e-01 2 0 0 -117 0 V -70 0 0 0 0 0 0 2 0 P 253 321 7.1130158276548627e-01 3.9730596402338592e-01 2.1769947433776453e+00 2.3762889225401733e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 5.2114829778249550e-01 -1.8813383383031970e-02 2.6437827466436179e+00 2.6983358738352758e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 255 -211 8.5658487028361097e-01 4.6170671721684930e-01 2.1597437012294618e+00 2.3729482448258929e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 211 1.8317520616048497e-01 2.8065561972304365e-01 6.9972896405861429e-01 7.8830269635248829e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 2.3880032258145939e-01 7.2341851170135779e-02 1.3657528351175596e+00 1.3949047797349405e+00 1.3497999999999999e-01 2 0 0 -118 0 V -72 0 0 0 0 0 0 2 0 P 258 -211 1.2763369501819466e+00 4.7616414147585207e-01 2.7105047171436283e+00 3.0367884197923716e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 211 -1.9550549066303984e-02 -4.1851239178697201e-03 6.4430285205077642e-01 6.5954961094050124e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 260 -211 1.4406480739443299e+00 5.7294582521730630e-01 3.8418712804254009e+00 4.1452609702949896e+00 1.3957000000000000e-01 1 0 0 0 0 P 261 111 1.2961548694436184e-01 5.5032080063603842e-02 1.3919690329327078e-01 2.3963322511368726e-01 1.3497999999999999e-01 2 0 0 -119 0 V -74 0 0 0 0 0 0 2 0 P 262 -321 2.3467978243028602e+00 8.7581671916669590e-01 5.0381757927884312e+00 5.6481298880925079e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 211 6.4820470330761637e-01 5.5369802139962943e-01 2.1893070532482319e+00 2.3535709028186163e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 264 310 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -120 0 V -76 0 0 0 0 0 0 2 0 P 265 211 1.9538542758906119e-01 2.1777184809530614e-01 1.2671323496382063e+00 1.3079389204151113e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.4775217700160925e+00 6.3843664284640522e-01 1.8024416165661723e+00 2.4202659583876627e+00 1.3497999999999999e-01 2 0 0 -121 0 V -77 0 0 0 0 0 0 2 0 P 267 -211 1.2488741767569310e-01 3.8090232697473647e-01 3.5516549082212417e-01 5.5344896834251345e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 8.3497594461408564e-01 7.4619689546814610e-02 2.7807488837073568e-01 8.9347533267272949e-01 1.3497999999999999e-01 2 0 0 -122 0 V -78 0 0 0 0 0 0 2 0 P 269 2212 -9.2232292670682794e-02 1.1379748418494542e+00 1.6324744945112593e+00 2.2020029756163755e+00 9.3827000000000005e-01 1 0 0 0 0 P 270 211 1.3707574622716890e-02 3.1579333238337798e-01 5.4106086241540785e-01 6.4198128330780868e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 271 -211 -2.0630679887456405e-01 4.2374710124254417e-01 3.2449594031169304e-01 5.8898344734983732e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 6.3739980537461083e-01 5.4714498421988667e-01 6.0776632268911834e-01 1.0455838794872583e+00 1.3497999999999999e-01 2 0 0 -123 0 V -80 0 0 0 0 0 0 3 0 P 273 -211 1.5334866236891118e-01 4.5158223115453339e-01 2.8003428162375815e-01 5.7038698050479297e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 4.0722086739074048e-01 2.6508251451934939e-01 6.3393595605261185e-02 5.0950574796181791e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 2.8718199618658619e-01 -1.9808181541082735e-02 1.7273232276792508e-01 3.6183134015516061e-01 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 2 0 P 276 211 2.0154978183196928e-01 4.3429865194117984e-01 -1.4862327560746878e-02 4.9893717772377255e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -2.7096144954761930e-01 4.3005733037239829e-01 -3.2118082644087727e-02 5.2689713054894660e-01 1.3497999999999999e-01 2 0 0 -125 0 V -82 0 0 0 0 0 0 2 0 P 278 421 1.9143744857938487e+00 9.9772993986181735e+00 2.0368651444011325e+00 1.0527892136035650e+01 1.8645000000000000e+00 2 0 0 -126 0 P 279 22 6.5436942895674158e-02 4.8573503732573614e-01 2.3621813869137712e-01 5.4407676758724466e-01 0 1 0 0 0 0 V -83 0 9.3158625679084489e-05 4.5277443080327440e-05 1.4154168577331435e-03 1.4195955612927864e-03 0 2 0 P 280 22 6.0133077554468027e-02 8.1120094621999247e-02 9.5951376230901608e-01 9.6481247754579591e-01 0 1 0 0 0 0 P 281 22 3.1592260380037640e-01 1.0165245685629615e-01 4.7541337604611051e+00 4.7657033191264624e+00 0 1 0 0 0 0 V -84 0 2.3194919718120641e+01 9.0320585302742025e+00 1.9472780077286959e+03 1.9475633034498369e+03 0 2 0 P 282 -211 3.2899014348052175e-01 2.5432521102866373e-01 1.8344247268080039e+01 1.8349490550008031e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 211 1.9163934301953689e-01 -5.1593058824597436e-02 2.5364045821834221e+01 2.5365206242380879e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -1.8278419990207519e+02 -4.0449265532861070e+01 1.0015066615449587e+04 1.0017227546588516e+04 0 2 0 P 284 211 -8.6303227058914667e-01 -6.9112908356443833e-02 4.6000283128253848e+01 4.6008641894307154e+01 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 -1.3894645869463809e-01 -1.5262017196883429e-01 8.8998872716861932e+00 8.9033742069452231e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 2 0 P 286 321 9.3860133353128899e-02 -9.0077769540969452e-02 -3.0078943519050432e+00 3.0509003788096396e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -321 1.3618988579665145e-01 -9.8832610581916808e-02 -5.2390560679417950e+00 5.2649468195742948e+00 4.9359999999999998e-01 1 0 0 0 0 V -87 0 2.1932548233008348e-01 -1.3976113890248107e-01 -3.1645818630019038e+00 3.1945606003544724e+00 0 2 0 P 288 22 6.9273239458605015e-02 2.1583735867047225e-02 -2.8692066721167769e-01 2.9595288245303841e-01 0 1 0 0 0 0 P 289 22 1.9247039108249386e-01 5.8535161469356438e-02 -2.3420480450670231e+00 2.3506722999971634e+00 0 1 0 0 0 0 V -88 0 4.7888732563644145e-05 -1.0634653053609607e-04 -4.4218337957882582e-03 4.4237679412416622e-03 0 2 0 P 290 22 1.1627593184832767e-01 -2.5688553754755078e-01 -9.4705633195358434e+00 9.4747601479439059e+00 0 1 0 0 0 0 P 291 22 -7.1039085945537291e-03 1.4447175053511545e-02 -6.0989853726015519e-01 6.1011098345827497e-01 0 1 0 0 0 0 V -89 0 2.7989665861191741e-06 1.5766745659670319e-05 -1.7540385172393157e-03 1.7541501855240888e-03 0 2 0 P 292 22 -2.4564334390896319e-02 1.2586614939719518e-01 -1.6225936999026789e+01 1.6226443762897485e+01 0 1 0 0 0 0 P 293 22 5.7041028124667534e-02 5.7077002731444601e-02 -4.1263501644306082e+00 4.1271390990160279e+00 0 1 0 0 0 0 V -90 0 -1.6659800060248923e-04 1.5155286873553658e-04 -1.8754959952295668e-02 1.8756329599042085e-02 0 2 0 P 294 22 -7.3974616708617480e-01 6.0254421213368348e-01 -8.0148472874392638e+01 8.0154151408498777e+01 0 1 0 0 0 0 P 295 22 -1.3954716519448215e-01 1.9734189985589731e-01 -1.8838976996586958e+01 1.8840527368274092e+01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 296 211 2.0476936133392874e-02 9.1316000922192136e-02 -1.0448603186185416e+02 1.0448616698844991e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 -211 -1.9264491139159019e-02 2.5079280640141448e-05 -2.3844985149394361e+01 2.3845401394838909e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.5751482955295177e-02 1.8775977169153174e-01 -1.0744453521188308e+02 1.0744478520774781e+02 1.3497999999999999e-01 2 0 0 -127 0 V -92 0 1.8997502130095858e-06 -8.6887730274279145e-06 3.9906345517734896e-03 3.9906924788436415e-03 0 2 0 P 299 22 -5.9917957432297005e-02 -4.1537240124929473e-02 1.3919329915478281e+01 1.3919520853817806e+01 0 1 0 0 0 0 P 300 22 7.3016879963311687e-02 -1.8372512218535003e-02 1.3596399513213550e+01 1.3596607986438331e+01 0 1 0 0 0 0 V -93 0 6.4369338304830161e-05 -7.8216032323622550e-05 1.2694010285012669e-01 1.2694014628932984e-01 0 2 0 P 301 22 1.5868264013653646e-01 -1.2420659115557327e-01 1.9071826028136354e+02 1.9071836674061441e+02 0 1 0 0 0 0 P 302 22 1.5500342148435939e-01 -2.5695748138808933e-01 4.2788901413611688e+02 4.2788911936573703e+02 0 1 0 0 0 0 V -94 0 -1.1974657226291926e-04 -7.4015885789501519e-06 1.3375378648329906e-03 1.3439637031044875e-03 0 2 0 P 303 22 -2.5535126102248640e-01 -5.4301076686487849e-02 2.3261202389401259e+00 2.3407238708232878e+00 0 1 0 0 0 0 P 304 22 -4.8116648330986854e-02 3.5543591027384025e-02 1.0635368664905835e+00 1.0652179237575472e+00 0 1 0 0 0 0 V -95 0 8.3865667897269084e-06 -5.7789204376488588e-06 4.2248793575951405e-05 4.5185184698705130e-05 0 2 0 P 305 22 -7.4386887816514299e-03 1.7096912439986470e-02 2.1711601026946792e-01 2.1791512205696625e-01 0 1 0 0 0 0 P 306 22 9.8954012511175554e-02 -8.0157254999521477e-02 2.4390840153408183e-01 2.7515157724430922e-01 0 1 0 0 0 0 V -96 0 1.9704238135533929e-04 -2.8593707007579293e-04 1.4537354349718756e-03 1.4968443215194493e-03 0 2 0 P 307 22 1.0883558779781551e-01 -8.7138402176381469e-02 4.1970802411082808e-01 4.4225910031130433e-01 0 1 0 0 0 0 P 308 22 2.1828804500829832e-01 -3.8756542790192439e-01 1.9937383286785431e+00 2.0427552850844024e+00 0 1 0 0 0 0 V -97 0 -2.2019531221933132e-05 1.2644372056884850e-06 3.2837388455731629e-05 4.2981160591385249e-05 0 2 0 P 309 22 -1.9271554372318800e-01 -1.4442293172495155e-02 2.3252199710018881e-01 3.0234804408175781e-01 0 1 0 0 0 0 P 310 22 1.5920428126614140e-02 2.4594476690445590e-02 3.1129841324870962e-02 4.2748278752754561e-02 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 311 310 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -128 0 V -99 0 0 0 0 0 0 3 0 P 312 -211 3.3708344961490527e-02 -3.8195038478618437e-01 1.8532978879020140e-01 4.4816209620111541e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 211 -5.3442209570627876e-02 -2.2146634310668603e-01 -1.0876039161808590e-01 2.8846493474555740e-01 1.3957000000000000e-01 1 0 0 0 0 P 314 111 2.8653574884923000e-01 -8.2024999723274442e-02 -7.1285757132154612e-02 3.3486130788446838e-01 1.3497999999999999e-01 2 0 0 -129 0 V -100 0 8.3231665057211033e-05 -8.7162663612360094e-05 -9.3128936459144842e-05 1.6038006514177639e-04 0 2 0 P 315 22 -5.1661193948099992e-03 -2.4810046140043979e-02 8.8078615708871242e-03 2.6829193139646452e-02 0 1 0 0 0 0 P 316 22 2.2879075993863815e-01 -2.0937629755209039e-01 -2.5902422965135435e-01 4.0407573220424731e-01 0 1 0 0 0 0 V -101 0 4.9023823157233946e-05 2.1226195690003698e-05 -1.0538223093779641e-03 1.0559783775649671e-03 0 2 0 P 317 22 1.6469980756415120e-02 6.1084307068275619e-02 -1.6820717405300594e+00 1.6832610888171657e+00 0 1 0 0 0 0 P 318 22 1.4425868818336021e-01 8.5075354317939913e-03 -1.7729720764751975e+00 1.7788515765055497e+00 0 1 0 0 0 0 V -102 0 -1.0248114430443839e-05 -1.0116769966893501e-04 -1.9803878233773521e-03 1.9831241532949758e-03 0 2 0 P 319 22 -5.1903991300502862e-02 -6.1200428464747358e-01 -1.1631967535653756e+01 1.1648172046258704e+01 0 1 0 0 0 0 P 320 22 -9.6181894453323483e-03 4.6674377653848969e-03 -2.5683195459509767e-01 2.5705436670992060e-01 0 1 0 0 0 0 V -103 0 8.8741246029353963e-05 -2.4363156535258678e-04 -1.1105427375059752e-02 1.1108604118040998e-02 0 2 0 P 321 22 4.7274198055564369e-02 -9.7976794113359938e-02 -2.8800431704285150e+00 2.8820969736493010e+00 0 1 0 0 0 0 P 322 22 1.6008439268659036e-01 -4.7130863191172406e-01 -2.3069623676935912e+01 2.3074992858823126e+01 0 1 0 0 0 0 V -104 0 2.1527444674318521e+00 -4.6957440581547205e-01 -1.4657177744896254e+02 1.5756510909227748e+02 0 2 0 P 323 2212 -3.4840977164562907e-02 -5.2186920231660723e-02 -2.5431382500112334e+00 2.7114276903327603e+00 9.3827000000000005e-01 1 0 0 0 0 P 324 -211 7.6407954908016967e-02 4.3119987685452575e-02 -2.8699133722571285e-01 3.3097027276452179e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 1.3265726186690680e+01 2.6689645098168672e+01 -3.5446292847168172e+02 3.6979302742572571e+02 0 2 0 P 325 -2212 1.5958067549103055e-01 3.2060398680402924e-01 -3.1567066142395404e+00 3.3126122848332966e+00 9.3827000000000005e-01 1 0 0 0 0 P 326 211 -1.3140574565764420e-02 -2.5977498451161360e-02 -7.5620296109427276e-01 7.6952596343037361e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 327 310 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -130 0 V -107 0 -1.5337379937032414e-06 -1.5433130295128232e-06 -8.3066141810159461e-06 8.6987537045143330e-06 0 2 0 P 328 22 -3.7307630759296821e-02 -1.2225377224602654e-01 -3.1814608849567771e-01 3.4286262229405373e-01 0 1 0 0 0 0 P 329 22 -1.1154537726505742e-01 -2.7528516325623684e-02 -4.8803105024528337e-01 5.0137261233917474e-01 0 1 0 0 0 0 V -108 0 -7.8865836476704740e-05 2.0236704785591708e-05 -1.2112959964202977e-03 1.2143124194609939e-03 0 2 0 P 330 22 -1.5131833213718898e-01 1.0698233076824459e-01 -2.5065299923812407e+00 2.5133712538031645e+00 0 1 0 0 0 0 P 331 22 -2.5473200953548020e-01 -2.7911973242265094e-03 -3.7299746233845359e+00 3.7386637824973112e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 332 211 3.7300131581517355e-02 -3.3225499072101472e-01 -1.6566492137336521e+00 1.6958039630037867e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.6027675112512272e-02 7.5261551060797169e-02 -4.3966537941110237e+00 4.3996598351023630e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 2.6405701837519837e+00 -7.7982993007320696e+00 -1.3029010341796770e+03 1.3030601704154778e+03 0 2 0 P 334 -2212 1.7220395755946979e-01 -3.8237278977060402e-01 -7.1908607895458388e+01 7.1915951660316892e+01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 -1.4033739470275641e-02 -8.4745527595602610e-02 -6.1351956712459277e+00 6.1373841707738768e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 -7.1427905328503207e-06 -2.6309149475094311e-05 -5.3858423237354690e-03 5.3859241059454428e-03 0 2 0 P 336 22 -3.5770985869032337e-02 -2.8953305563906762e-01 -5.0984607136736621e+01 5.0985441783327843e+01 0 1 0 0 0 0 P 337 22 -4.6376559444884530e-02 -1.3042252811631894e-02 -1.0956692178689083e+01 1.0956798089960902e+01 0 1 0 0 0 0 V -112 0 -1.7551842520711538e-05 1.8865680813227385e-04 -2.1406122941536796e-02 2.1406988502804772e-02 0 2 0 P 338 22 -8.0286668814878143e-02 5.7779065752968028e-01 -5.9525675858009009e+01 5.9528534118907011e+01 0 1 0 0 0 0 P 339 22 1.0663425883858725e-02 1.7055805672550797e-01 -2.5386417901448109e+01 2.5386993079652637e+01 0 1 0 0 0 0 V -113 0 6.7187333606529885e-05 -2.3625422722544653e-05 -7.3713680030589928e-03 7.3717738348789202e-03 0 2 0 P 340 22 -1.2335498355771022e-02 -7.4059523706035222e-03 -2.7159042999156084e+00 2.7159424108309609e+00 0 1 0 0 0 0 P 341 22 3.1281337024908018e-01 -9.8252604997121948e-02 -3.0250621555581812e+01 3.0252398421910719e+01 0 1 0 0 0 0 V -114 0 -8.1021390797921325e-04 -1.4670334287573128e-03 5.3888910717802690e-03 5.6438407084497396e-03 0 2 0 P 342 22 -4.8587594651029892e-01 -9.8067409406381123e-01 3.3872364013090688e+00 3.5596583477236079e+00 0 1 0 0 0 0 P 343 22 -1.2102706269977270e+00 -2.0904947650522021e+00 7.8941659992068693e+00 8.2554697126400942e+00 0 1 0 0 0 0 V -115 0 -9.8516456018675041e-05 -3.2397601657837485e-05 7.3208142735309983e-04 7.4037434865636194e-04 0 2 0 P 344 22 -1.0582060976970183e-01 2.7773008509941854e-02 7.5655810671428558e-01 7.6442757033536479e-01 0 1 0 0 0 0 P 345 22 -2.4269154073134683e-01 -1.4238287452774639e-01 1.8332556452170787e+00 1.8547232482560911e+00 0 1 0 0 0 0 V -116 0 -2.1261866108416613e-08 3.9762655619080825e-07 1.8873800909275420e-04 1.8882620746227122e-04 0 2 0 P 346 22 1.3701766050722928e-02 1.6877052404695968e-02 1.1492474511622532e-01 1.1696268777182300e-01 0 1 0 0 0 0 P 347 22 -1.4200284822198445e-02 -7.5540559523848460e-03 4.3103425359343746e+00 4.3103725464205001e+00 0 1 0 0 0 0 V -117 0 3.9659449652515547e-05 4.7675517195196901e-05 1.6808269140455216e-04 1.8032998066073807e-04 0 2 0 P 348 22 2.2189777329585378e-01 1.7090452012840207e-01 7.7175710376428419e-01 8.2100913758898786e-01 0 1 0 0 0 0 P 349 22 3.8914894690380696e-02 1.4262425917260380e-01 3.3360607125767611e-01 3.6489595655923507e-01 0 1 0 0 0 0 V -118 0 4.9824731096665069e-05 1.5093837573680184e-05 2.8495886026714965e-04 2.9104129678065308e-04 0 2 0 P 350 22 1.5711280955429704e-01 1.0490351873218232e-01 1.0622832091644729e+00 1.0789507864778676e+00 0 1 0 0 0 0 P 351 22 8.1687513027162359e-02 -3.2561667562046530e-02 3.0346962595308674e-01 3.1595399325707280e-01 0 1 0 0 0 0 V -119 0 3.3823228722222976e-05 1.4360649910993738e-05 3.6323504301105803e-05 6.2532414710160219e-05 0 2 0 P 352 22 1.5473104914365582e-01 6.3661750907534731e-02 1.2865456110435905e-01 2.1106044676979319e-01 0 1 0 0 0 0 P 353 22 -2.5115562199293982e-02 -8.6296708439308929e-03 1.0542342188911721e-02 2.8572778343894122e-02 0 1 0 0 0 0 V -120 0 4.8572525032297548e+01 2.8544033180682732e+01 1.3950388584931414e+02 1.5358972150787298e+02 0 2 0 P 354 111 5.1654591582856790e-01 4.5730537088227718e-01 1.8375361352708055e+00 1.9674111248600072e+00 1.3497999999999999e-01 2 0 0 -131 0 P 355 111 2.6591599044471420e-01 2.5146323074637399e-03 4.0975235511759373e-01 5.0678815127649712e-01 1.3497999999999999e-01 2 0 0 -132 0 V -121 0 6.6642964961977059e-04 2.8796401977340636e-04 8.1298330715980180e-04 1.0916502398589912e-03 0 2 0 P 356 22 1.0177129125649877e+00 3.7069054974771970e-01 1.2106855245682948e+00 1.6244723744874781e+00 0 1 0 0 0 0 P 357 22 4.5980885745110484e-01 2.6774609309868552e-01 5.9175609199787738e-01 7.9579358390018506e-01 0 1 0 0 0 0 V -122 0 1.7430972560220277e-04 1.5577619562966499e-05 5.8050962786920530e-05 1.8652206818066101e-04 0 3 0 P 358 22 2.8736228462862523e-01 6.2337796790484991e-02 1.5309029325025983e-01 3.3151126892328320e-01 0 1 0 0 0 0 P 359 11 3.9021046762354122e-01 1.2288367788971719e-02 8.4696183425568741e-02 3.9948581528354338e-01 5.1000000000000004e-04 1 0 0 0 0 P 360 -11 1.5740319236191927e-01 -6.4750326420938465e-06 4.0288411694907128e-02 1.6247824846590309e-01 5.1000000000000004e-04 1 0 0 0 0 V -123 0 8.1987514462796568e-05 7.0378209922122772e-05 7.8175816420573375e-05 1.3449144903824778e-04 0 2 0 P 361 22 3.4433217110872449e-01 2.7338575327507170e-01 3.9774502332559170e-01 5.9287900766893564e-01 0 1 0 0 0 0 P 362 22 2.9306763426588633e-01 2.7375923094481497e-01 2.1002129936352670e-01 4.5270487181832270e-01 0 1 0 0 0 0 V -124 0 1.1525069614002883e-05 -7.9493378491408561e-07 6.9320224489119165e-06 1.4520866346742673e-05 0 2 0 P 363 22 -5.5261422719354953e-03 -1.0875404177234163e-02 3.7191125654135376e-02 3.9140675669302898e-02 0 1 0 0 0 0 P 364 22 2.9270813845852167e-01 -8.9327773638485722e-03 1.3554119711378970e-01 3.2269066448585765e-01 0 1 0 0 0 0 V -125 0 -6.0138627269926064e-05 9.5449214414613208e-05 -7.1284583249102415e-06 1.1694235544052164e-04 0 2 0 P 365 22 1.4806878555669097e-02 3.6451249127863940e-02 1.1053419039329224e-03 3.9359357162795768e-02 0 1 0 0 0 0 P 366 22 -2.8576832810328845e-01 3.9360608124453439e-01 -3.3223424548020651e-02 4.8753777338615073e-01 0 1 0 0 0 0 V -126 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 3 0 P 367 -321 9.0973991892192296e-03 1.6695573778195438e+00 5.3498051780683975e-01 1.8213593041837060e+00 4.9359999999999998e-01 1 0 0 0 0 P 368 311 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 2 0 0 -133 0 P 369 211 9.0953373940276727e-01 4.8017960527329260e+00 6.6594685369729034e-01 4.9343147398603193e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 1.7989748316348035e-06 2.1444019247280622e-05 -1.2271226473815835e-02 1.2271255025811223e-02 0 2 0 P 370 22 -2.3564685434985310e-02 1.2853845306975048e-01 -9.1298002518840178e+01 9.1298096044542277e+01 0 1 0 0 0 0 P 371 22 3.9316168390280487e-02 5.9221318621781253e-02 -1.6146532693042897e+01 1.6146689163205540e+01 0 1 0 0 0 0 V -128 0 -7.4110418624237212e+01 1.1480778126668004e+02 1.2284156326431871e+01 1.4772911339205135e+02 0 2 0 P 372 -211 -6.0577836167837174e-01 7.3827051501716001e-01 -4.4786304566678758e-02 9.6617616136922679e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -6.7622827127023610e-02 3.0492554060204241e-01 1.5640577221039809e-01 3.7615818818793517e-01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 2.8428750945630758e-05 -8.1381408700782695e-06 -7.0726429201931359e-06 3.3223389267859981e-05 0 2 0 P 374 22 1.9879161434333362e-01 -1.1717448571255196e-01 -6.6812368314700762e-02 2.4023292570971397e-01 0 1 0 0 0 0 P 375 22 8.7744134505896368e-02 3.5149485989277515e-02 -4.4733888174538494e-03 9.4628382174754361e-02 0 1 0 0 0 0 V -130 0 4.3587815190089977e+01 1.9499557712227041e+01 -2.0295725607435622e+02 2.1421615704265062e+02 0 2 0 P 376 -211 1.2645607786858875e-02 -5.9626725518012832e-02 -2.6911317671398299e-01 3.0921989679415995e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 4.2860738668408754e-01 2.5702680611061518e-01 -1.7854861786759948e+00 1.8593568108683693e+00 1.3957000000000000e-01 1 0 0 0 0 V -131 0 4.8572822087881093e+01 2.8544296168172600e+01 1.3950494258086931e+02 1.5359085292802723e+02 0 2 0 P 378 22 1.0371190939819742e-01 1.6694820163323085e-01 5.7866817046209762e-01 6.1113395723486119e-01 0 1 0 0 0 0 P 379 22 4.1283400643037049e-01 2.9035716924904637e-01 1.2588679648087078e+00 1.3562771676251462e+00 0 1 0 0 0 0 V -132 0 4.8572620458929656e+01 2.8544034083083869e+01 1.3950403289307476e+02 1.5358990337390662e+02 0 2 0 P 380 22 5.8013958732285417e-02 2.7385983767221966e-02 2.0152939904897688e-01 2.1149399564936031e-01 0 1 0 0 0 0 P 381 22 2.0790203171242877e-01 -2.4871351459758224e-02 2.0822295606861682e-01 2.9529415562713685e-01 0 1 0 0 0 0 V -133 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 1 0 P 382 130 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 1 0 0 0 0 E 41 7 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 130 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -6.3989106843594845e-01 1.4994868005296276e+00 9.9708822266526056e+00 1.0103287268122104e+01 0 3 0 0 -3 0 P 14 2203 2.0615052604364381e-01 -7.3705661946668832e-01 5.7862291350161531e+03 5.7862292370429159e+03 7.7132999999999996e-01 2 0 0 -9 0 P 22 1 4.3374054239230464e-01 -7.6243018106293925e-01 1.1131862604901905e+03 1.1131866550021041e+03 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 -1.8140931320152203e+00 -8.4414924695767571e-02 -2.1010415117527627e+03 2.1010422966156834e+03 0 3 0 0 -4 0 P 44 2101 1.8140931320152203e+00 8.4414924695767571e-02 -3.5769501826080304e+03 3.5769506905383309e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 12 0 P 5 -1 -5.2335883614551868e+00 7.3216090633523869e+00 -5.2383888033576893e+00 1.0413314730135925e+01 0 3 0 0 -5 0 P 11 1 1.0525047699598489e+00 -9.8523873229975290e-01 -3.8765970694070404e+00 4.1491404518221735e+00 3.3000000000000002e-01 2 0 0 -9 0 P 12 21 2.1175312133390718e+00 -1.7440666000847493e+00 -2.7843173859501419e-01 2.7573956876105870e+00 0 2 0 0 -9 0 P 13 21 -1.6187233154500713e+00 3.0243356405656669e+00 -5.3080000979727746e+00 6.3199474901977153e+00 0 2 0 0 -9 0 P 23 21 2.1486593895495695e-01 -1.6517648153650463e-01 4.1791534492024294e+00 4.1879319710038674e+00 0 2 0 0 -13 0 P 24 21 -5.3232558420309362e-01 -1.0417582555394884e-01 2.9740475497958146e-01 6.1860546272359784e-01 0 2 0 0 -13 0 P 25 21 -8.9510714218999010e-01 -3.3787555650908646e-01 -6.6694298602081981e-02 9.5907497994259017e-01 0 2 0 0 -13 0 P 26 21 -4.0922839378524317e-01 -2.0521763834581219e+00 -9.1088483116479715e+00 9.3461229048047194e+00 0 2 0 0 -13 0 P 27 21 -1.3657204148912039e+00 -1.3406480831311756e+00 -6.1907107936498393e+00 6.4797708034363781e+00 0 2 0 0 -13 0 P 28 21 6.0783661510965092e-02 -2.3597798203732132e-03 -2.0915176927122556e-02 6.4324697382677667e-02 0 2 0 0 -13 0 P 29 21 2.4407172446443448e-01 -1.1676831040357087e-01 -1.0871557676618826e+00 1.1203184851452039e+00 0 2 0 0 -13 0 P 30 21 5.5391099084019730e+00 -2.0240104025523746e+00 -5.0573587208170935e+01 5.0916265375511074e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 2 0 P 6 2 -4.0290224676425535e+00 -9.7657266768926151e-02 -1.7485377356330541e+03 1.7485423802389678e+03 0 3 0 0 -5 0 P 43 21 2.4008642625351855e+00 3.9280594034403413e-02 -2.6526012283112476e+02 2.6527099060499546e+02 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.8128607238154277e+00 -5.7112301948938908e+00 -6.4554252330275574e+02 6.5062784054549275e+02 8.0937674571312044e+01 3 0 0 -6 0 P 8 22 -6.4497501052823116e+00 1.2935181991477350e+01 -1.1082336011336558e+03 1.1083278544236107e+03 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.8128607238154277e+00 -5.7112301948938908e+00 -6.4554252330275574e+02 6.5062784054549275e+02 8.0937674571312044e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -6.4497501052823116e+00 1.2935181991477350e+01 -1.1082336011336558e+03 1.1083278544236107e+03 0 1 0 0 0 0 V -8 0 0 0 0 0 0 7 0 P 15 -1 -2.9941923581929548e+00 2.1321570119276900e-01 -1.9376346064122099e+00 3.5880324247507032e+00 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 -7.3901539822424880e+00 9.1017477495587507e+00 -3.2944916040960052e+01 3.4968895906559005e+01 0 2 0 0 -11 0 P 17 21 -2.2259671048928431e+00 2.0870911059325001e+00 -3.8634721681358175e+00 4.9231388392455120e+00 0 2 0 0 -11 0 P 18 21 -3.4576589317848361e-01 -2.1176579988386712e+00 -4.6692608694841930e+01 4.6741884174501983e+01 0 2 0 0 -11 0 P 19 21 1.6435513706211516e-01 -1.3124131368634898e-01 -1.6172327524532747e+01 1.6173695139152844e+01 0 2 0 0 -11 0 P 20 21 6.5472012222607257e-01 -7.3390107888445122e-01 -5.1986572861765502e+01 5.1995875097392954e+01 0 2 0 0 -11 0 P 21 2 9.3241433554031623e+00 -1.4130484360168426e+01 -4.9194499140610776e+02 4.9223631896389008e+02 3.3000000000000002e-01 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 45 92 1.7574631938924934e+00 -4.4202631128552361e-01 5.7767661061101780e+03 5.7994557206725467e+03 5.1250046563299964e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 19 0 P 46 221 7.3621681011524731e-01 -8.1984489540450134e-01 -2.3762350160121311e+00 2.6758840030612800e+00 5.4744999999999999e-01 2 0 0 -15 0 P 47 313 9.7549600906904377e-01 -4.1293034872652379e-01 -6.1480307496680175e-01 1.5130986970028015e+00 8.8847110773164750e-01 2 0 0 -16 0 P 48 -313 5.4088727383584700e-01 1.9280453791291433e-01 -1.7204860902303452e+00 2.0212284527140216e+00 8.9194138739450346e-01 2 0 0 -17 0 P 49 2112 -6.7514795410293385e-02 -5.3566497583575623e-01 -1.6594491994150554e-01 1.0962776634095979e+00 9.3957000000000002e-01 1 0 0 0 0 P 50 223 1.5035055752946869e-01 -2.5549250036985166e-01 -1.4014518056060539e+00 1.6308834903515108e+00 7.7963586870410018e-01 2 0 0 -18 0 P 51 -2114 1.4662453334027248e-01 7.3941740019420843e-01 -8.0386495447108108e-01 1.6592306316324634e+00 1.2404074243704990e+00 2 0 0 -19 0 P 52 -213 -5.6020852807266797e-01 5.0435587771308277e-01 -1.3988912639044662e+00 1.8620951969059119e+00 9.7071793421299890e-01 2 0 0 -20 0 P 53 213 -1.2539219934736431e-01 5.1080118216707404e-01 6.2850498300723479e-01 9.7814334512977330e-01 5.3395209391507092e-01 2 0 0 -21 0 P 54 -213 -1.9004994926226787e-01 6.4365959185205368e-01 2.0944864210712505e-01 9.9979570898710934e-01 7.1084883950863642e-01 2 0 0 -22 0 P 55 113 -5.0107237414776773e-01 -3.9955854913151639e-01 9.3291594365578301e-01 1.3808305488773343e+00 7.9097426536364446e-01 2 0 0 -23 0 P 56 213 5.9391611472712436e-01 1.0046770600597038e-01 8.4408412948412366e+00 8.4997207633687371e+00 7.9663114379358668e-01 2 0 0 -24 0 P 57 2112 1.3849949169610309e-01 9.3417316284392746e-02 8.2372673423750271e+00 8.2923623870909058e+00 9.3957000000000002e-01 1 0 0 0 0 P 58 -2112 -1.2153861858398594e-01 -2.1976866489198274e-01 3.7608369100274487e+01 3.7620942147549371e+01 9.3957000000000002e-01 1 0 0 0 0 P 59 223 -3.4900001486902316e-01 -1.7788043099188872e-01 3.2458727448735743e+01 3.2470570696421234e+01 7.8455802963843624e-01 2 0 0 -25 0 P 60 -211 5.4156934630321374e-01 -9.8503752872150397e-03 7.5536106107492174e+00 7.5742925366315070e+00 1.3957000000000000e-01 1 0 0 0 0 P 61 323 -3.4357343144153890e-01 1.5777246092381431e-01 4.2926726713043865e+02 4.2926834209612116e+02 8.8315427016461145e-01 2 0 0 -26 0 P 62 -313 -2.0347146848308742e-01 1.4341015708452096e-01 1.4104266767447498e+03 1.4104269977614229e+03 9.1846281892320403e-01 2 0 0 -27 0 P 63 2212 3.9525688824247274e-01 -9.7508738384639054e-02 7.3350279617677938e+02 7.3350350925248381e+02 9.3827000000000005e-01 1 0 0 0 0 P 64 113 4.6754865169672916e-04 -5.9963306239968084e-01 3.1159813578175963e+03 3.1159815152933843e+03 7.8855769523487129e-01 2 0 0 -28 0 V -11 0 0 0 0 0 0 1 0 P 65 92 -2.8128607238154206e+00 -5.7112301948938757e+00 -6.4554252330275608e+02 6.5062784054549309e+02 8.0937674571311646e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 66 213 -1.5602732003180400e+00 1.5574206280263850e-01 -1.0108180145659664e+00 2.0243903793623921e+00 7.8593593869170308e-01 2 0 0 -29 0 P 67 111 -2.5917012863891742e+00 7.7654173591606424e-01 -4.7049043406433553e+00 5.4290217424961122e+00 1.3497999999999999e-01 2 0 0 -30 0 P 68 -211 2.2605379816114851e-01 6.5619837888564114e-01 -1.6989206273788819e+00 1.8405183278491628e+00 1.3957000000000000e-01 1 0 0 0 0 P 69 113 -2.7827560569604572e+00 4.0637412078662258e+00 -1.2831246599362695e+01 1.3763751214370222e+01 7.3636561595505989e-01 2 0 0 -31 0 P 70 -313 -3.4827972557711777e+00 4.4998099894600649e+00 -1.3126938681996899e+01 1.4342774669929197e+01 1.0101977060973157e+00 2 0 0 -32 0 P 71 321 -1.0007778761837012e+00 2.4693921878515480e-02 -4.0625761735101564e+00 4.2131143199311509e+00 4.9359999999999998e-01 1 0 0 0 0 P 72 -213 -1.2851392298469799e+00 6.7682147288875605e-01 -2.8892006594903910e+00 3.3171104438284984e+00 7.3896623705105491e-01 2 0 0 -33 0 P 73 -2112 -1.8873745008977844e-01 3.1340811632356419e-01 -6.5844535406670017e+00 6.6612060984889281e+00 9.3957000000000002e-01 1 0 0 0 0 P 74 2112 3.6469685188291390e-01 -1.0475930346603937e+00 -2.8271942539004861e+01 2.8309291437154251e+01 9.3957000000000002e-01 1 0 0 0 0 P 75 211 -1.9060510850299722e-01 1.2284431392843521e-01 -3.3160438886955008e+00 3.3267172842769144e+00 1.3957000000000000e-01 1 0 0 0 0 P 76 111 -1.1993181355788285e-01 1.3431226843600236e-01 -4.4245083335369921e+00 4.4302276486986534e+00 1.3497999999999999e-01 2 0 0 -34 0 P 77 223 1.8801896796881830e+00 -1.9529498910104450e+00 -7.2061035903417988e+01 7.2116043862085363e+01 7.6273215227830315e-01 2 0 0 -35 0 P 78 -211 -2.4753780672300607e-02 -7.8450546124588127e-01 -1.5887363084306012e+01 1.5907351983465118e+01 1.3957000000000000e-01 1 0 0 0 0 P 79 213 9.5842822529039062e-01 -1.6106107599065673e+00 -4.7291041173767262e+01 4.7334378431080658e+01 7.6691229931663585e-01 2 0 0 -36 0 P 80 -211 3.7154820841009134e-01 -1.0858632933069647e+00 -4.3565554074306071e+01 4.3580891784692867e+01 1.3957000000000000e-01 1 0 0 0 0 P 81 221 2.0406231002482941e-01 -1.0325947978053129e+00 -3.5055924401256505e+01 3.5075995076005164e+01 5.4744999999999999e-01 2 0 0 -37 0 P 82 213 3.9890310292083666e+00 -6.9677256530400120e+00 -2.4319998981465463e+02 2.4333382135313585e+02 8.0746463928196799e-01 2 0 0 -38 0 P 83 111 2.4206022318111464e+00 -2.6535007723042074e+00 -1.0556006145219489e+02 1.0562123448864261e+02 1.3497999999999999e-01 2 0 0 -39 0 V -13 0 0 0 0 0 12 1 0 P 31 21 2.0967624443168367e+00 2.9839518879704436e+00 1.2639247018449232e+01 1.3154883002558316e+01 0 2 0 0 -13 0 P 32 21 2.1257835754156127e+00 1.2368951703171913e-01 6.4928662376925587e+01 6.4963570198711537e+01 0 2 0 0 -13 0 P 33 21 -2.1257835754156127e+00 -1.2368951703171913e-01 3.9026641139348333e+00 4.4457892541510651e+00 0 2 0 0 -13 0 P 34 21 -2.0967624443168367e+00 -2.9839518879704436e+00 3.5142816269853947e+00 5.0646378914377488e+00 0 2 0 0 -13 0 P 35 21 1.2683860017550757e+00 -2.4265678918487414e+00 1.0425830145874941e+00 2.9298488229780424e+00 0 2 0 0 -13 0 P 36 21 -9.7707860387487699e-01 1.3250373302237222e+00 3.2214637621683917e-01 1.6775532219116416e+00 0 2 0 0 -13 0 P 37 21 5.4034542121700313e-01 2.0782975326019253e+00 -2.1095065572687384e+00 3.0102012762287567e+00 0 2 0 0 -13 0 P 38 21 -1.2683860017550757e+00 2.4265678918487414e+00 -2.6911831341962777e+00 3.8392058351932596e+00 0 2 0 0 -13 0 P 39 21 -1.0245344016803140e+00 2.0313510926390665e+00 -5.6042410512821812e+00 6.0484358112382060e+00 0 2 0 0 -13 0 P 40 21 9.7707860387487699e-01 -1.3250373302237222e+00 -2.8908448772257452e+02 2.8908917559872071e+02 0 2 0 0 -13 0 P 41 21 1.0245344016803140e+00 -2.0313510926390665e+00 -5.9246641664183721e+02 5.9247078485476470e+02 0 2 0 0 -13 0 P 42 21 -5.4034542121700313e-01 -2.0782975326019253e+00 -4.2578833279214365e+02 4.2579374776494961e+02 0 2 0 0 -13 0 P 84 92 7.5051476352055086e+00 -6.7819254852979229e+00 -4.0229899816736456e+03 6.4415885843582246e+03 5.0308560678808299e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 61 0 P 85 111 1.4891272007795309e-01 4.0597071008401830e-01 3.1334738818905282e+02 3.1334771563187928e+02 1.3497999999999999e-01 2 0 0 -40 0 P 86 113 1.8001659084762582e-02 -4.0086330295888450e-01 7.4791974902530887e+02 7.4792006440481362e+02 5.5744216879095221e-01 2 0 0 -41 0 P 87 -213 6.9546447153109481e-01 -8.2134670978141244e-01 2.0713684659060270e+01 2.0750844316440613e+01 6.1848722002657053e-01 2 0 0 -42 0 P 88 2212 -1.0598240180870753e+00 1.0316839395758530e-01 1.4450444238804694e+01 1.4519971072923314e+01 9.3827000000000005e-01 1 0 0 0 0 P 89 -2212 7.0820271946102864e-01 -1.6248798189915831e-01 1.6567080593389409e+01 1.6609529295463911e+01 9.3827000000000005e-01 1 0 0 0 0 P 90 223 -1.8726761620128704e-01 -1.9873147298369878e-01 2.0598402556261939e+00 2.2203936100551913e+00 7.8271485640924898e-01 2 0 0 -43 0 P 91 223 -2.9897749346232827e-01 -1.0478694804072591e-01 8.6457280935677538e-01 1.2125321386858705e+00 7.8891076719129505e-01 2 0 0 -44 0 P 92 211 -2.7366645796585221e-01 4.4919749728371164e-02 9.4792934687294639e-01 9.9747729081628989e-01 1.3957000000000000e-01 1 0 0 0 0 P 93 1114 5.1513199071074444e-03 -2.2138436204610634e-01 5.8728221786185968e-02 1.2165319824479865e+00 1.1947650348203673e+00 2 0 0 -45 0 P 94 211 1.1692792150499456e-01 7.2412167999745369e-02 -2.1856830414890605e-02 1.9716279273150603e-01 1.3957000000000000e-01 1 0 0 0 0 P 95 -2112 -2.1968489787241696e-01 -1.0733916833902115e+00 -1.8579021268378466e+00 2.3526630141465397e+00 9.3957000000000002e-01 1 0 0 0 0 P 96 313 -1.3703761967303250e+00 -6.2645617513746421e-01 -6.2665191851511022e+00 6.5074923044480517e+00 8.9878536628655270e-01 2 0 0 -46 0 P 97 -313 2.5854568894713476e-01 -5.4417682911402387e-01 -2.1724246360599211e+00 2.4434746872443274e+00 9.4242530379120193e-01 2 0 0 -47 0 P 98 111 -3.0249776011691609e-01 -1.2000838861615157e+00 -6.9749907337994781e+00 7.0852255832604829e+00 1.3497999999999999e-01 2 0 0 -48 0 P 99 2112 -2.1691380869266856e-02 -1.1112891731774435e-01 -4.8126992576257521e+00 4.9048635130367995e+00 9.3957000000000002e-01 1 0 0 0 0 P 100 221 2.0438552943496187e+00 -7.5108363093669095e-01 -1.6726655062946580e+01 1.6876675092630020e+01 5.4744999999999999e-01 2 0 0 -49 0 P 101 -2112 7.9385561159572160e-01 -7.3982721304160226e-01 -7.6677609846067671e+00 7.8009551555675971e+00 9.3957000000000002e-01 1 0 0 0 0 P 102 223 1.6770009798069485e+00 -4.9184254156963769e-01 -1.5983908650047741e+01 1.6097766078675519e+01 7.7362498583877959e-01 2 0 0 -50 0 P 103 113 4.7758383901432661e-01 2.2312701432227314e-01 -1.3342800268862041e+00 1.6690721316985331e+00 8.5301031814228456e-01 2 0 0 -51 0 P 104 -211 5.8522013250978368e-02 2.9550350267376196e-01 4.6434556987846304e-01 5.7082724119751371e-01 1.3957000000000000e-01 1 0 0 0 0 P 105 213 -4.2411922502819727e-01 -2.8065796924360575e-01 -1.5210822429859592e+00 1.8734946506675771e+00 9.6832071309786949e-01 2 0 0 -52 0 P 106 2112 1.1634041178696575e+00 4.8645333808673796e-01 9.7064551470647320e-01 1.8479963451618620e+00 9.3957000000000002e-01 1 0 0 0 0 P 107 113 -4.1539727387676181e-02 4.5736244215773975e-01 2.2760145693264557e+00 2.4708598395162897e+00 8.4498525093651511e-01 2 0 0 -53 0 P 108 -2112 5.0531216751903729e-01 2.3143255958596415e-01 2.7415545608430643e+00 2.9509006440845664e+00 9.3957000000000002e-01 1 0 0 0 0 P 109 111 1.2114932018467646e-01 1.5075921022075567e-01 9.8273993941293736e-01 1.0106447873337796e+00 1.3497999999999999e-01 2 0 0 -54 0 P 110 313 1.5117892586938952e-01 2.1340539740308176e-01 5.6239912975233981e+00 5.6989707387347774e+00 8.8351142328125820e-01 2 0 0 -55 0 P 111 -323 9.2060828874118872e-01 1.9080308793583606e-01 5.1561383110651526e+00 5.3095008049283372e+00 8.4918259228272908e-01 2 0 0 -56 0 P 112 113 1.9392871463389913e-01 4.5024573914475224e-01 1.6151683667466163e+01 1.6185523698493224e+01 9.2410092988523806e-01 2 0 0 -57 0 P 113 321 9.5749517755599345e-01 1.1206202338678393e+00 1.2533415055004751e+01 1.2629438650415818e+01 4.9359999999999998e-01 1 0 0 0 0 P 114 -323 -4.9812044495351182e-01 -5.5903742544698976e-01 7.8956352547701965e+00 7.9821496382695587e+00 9.0167064420757015e-01 2 0 0 -58 0 P 115 211 3.0249800330953541e-01 -3.1048535987682485e-01 5.2496674640157526e+00 5.2693827407344092e+00 1.3957000000000000e-01 1 0 0 0 0 P 116 -213 -2.1486147400583647e-01 8.2581868005346407e-02 6.7243235566474322e+00 6.7699528683734220e+00 7.5016619997089318e-01 2 0 0 -59 0 P 117 221 -4.0891442276636186e-01 3.7349014094122723e-01 1.9257233870796373e+00 2.0772139891142922e+00 5.4744999999999999e-01 2 0 0 -60 0 P 118 111 3.1264307518776990e-01 -2.5218662161421063e-02 8.4983109385878497e-01 9.1586798277551729e-01 1.3497999999999999e-01 2 0 0 -61 0 P 119 223 -2.5523190410674412e-01 -4.4908649806376449e-01 5.1681647277990885e+00 5.2473500102558832e+00 7.4694944196288449e-01 2 0 0 -62 0 P 120 223 4.0796653322752584e-02 -2.6902472250103232e-01 2.5999176448672623e+00 2.7298376299109339e+00 7.8638607397799098e-01 2 0 0 -63 0 P 121 223 -8.0665522841060866e-01 3.9863297075622423e-01 2.2191519537584639e+00 2.5192886480355527e+00 7.8267425877863583e-01 2 0 0 -64 0 P 122 111 -4.1289688283642867e-01 -1.3347286739555673e+00 1.7632724631148438e+00 2.2537377506077130e+00 1.3497999999999999e-01 2 0 0 -65 0 P 123 323 3.0102361361007218e-01 -1.1517686029178293e+00 4.2685834370417963e-01 1.5459702225121303e+00 8.8917363472281108e-01 2 0 0 -66 0 P 124 3114 -1.1457463982214320e+00 -9.2242803685797559e-01 1.8895138456998464e+00 2.7823596756570188e+00 1.4169172521399278e+00 2 0 0 -67 0 P 125 -1114 -1.4268168464554765e-01 -3.2505242904812987e-01 8.6869883571966522e-01 1.5557291076986186e+00 1.2408216006326844e+00 2 0 0 -68 0 P 126 113 -1.0393133392085124e-01 -4.4853521551419212e-01 4.6949139945644253e-01 1.0544840200717029e+00 8.2433537634635101e-01 2 0 0 -69 0 P 127 223 8.3200035389420313e-01 3.9312689601777984e-01 -6.3325218452406307e-01 1.3707749015205302e+00 7.9450749284161404e-01 2 0 0 -70 0 P 128 -213 -8.6396312085779459e-01 1.2242334705063982e+00 -1.1493426397773840e+00 2.0345325580911533e+00 7.5706958848708616e-01 2 0 0 -71 0 P 129 211 -8.9423537810800580e-01 1.2856091008557757e+00 -1.2606416687990647e+00 2.0152282435683695e+00 1.3957000000000000e-01 1 0 0 0 0 P 130 -211 2.4607435957002358e-01 5.9442895235707401e-02 -1.2868194802487087e+00 1.3188897633537680e+00 1.3957000000000000e-01 1 0 0 0 0 P 131 223 -4.0791203731822151e-01 7.6049817598622593e-01 -1.0947308463018883e+00 1.5987057241133420e+00 7.8273537073549770e-01 2 0 0 -72 0 P 132 223 8.5014017681647500e-02 1.0538722001663823e+00 -1.0601778373706279e+00 1.6872658428676464e+00 7.7782708886365004e-01 2 0 0 -73 0 P 133 223 -1.0704223251941669e+00 1.4998033622722458e+00 -4.7080091637398631e+00 5.1152507110891952e+00 7.7796238449089861e-01 2 0 0 -74 0 P 134 2214 7.6648552081440585e-02 -2.6086801109486857e-01 -9.4380811432766496e+00 9.5209505392353186e+00 1.2235997645236194e+00 2 0 0 -75 0 P 135 113 6.7184823415955253e-01 2.0081810285207435e-01 -6.7618849535206365e+01 6.7627342006081051e+01 8.1047293748769766e-01 2 0 0 -76 0 P 136 -2112 -3.5836023951986973e-01 7.8488713534180243e-02 -8.9419383922582540e+01 8.9425072521181292e+01 9.3957000000000002e-01 1 0 0 0 0 P 137 331 1.4130636600934623e-01 -5.8400516072266517e-01 -8.7255832547304678e+01 8.7263159023819725e+01 9.5790384504435921e-01 2 0 0 -77 0 P 138 223 8.0990475564554620e-01 -1.4267528929055169e+00 -2.8124762554162788e+02 2.8125346045655590e+02 7.6848972216227462e-01 2 0 0 -78 0 P 139 -211 -1.5871890093636495e-01 -4.2929773786103709e-01 -5.5696569173771003e+01 5.5698624630692684e+01 1.3957000000000000e-01 1 0 0 0 0 P 140 113 1.0194825430882402e+00 -1.0947474843930693e+00 -5.2390888062929355e+02 5.2391151165815324e+02 7.2043666037862841e-01 2 0 0 -79 0 P 141 2212 3.8711959038366256e-01 -3.3481959733656563e-01 -9.1696390873510083e+01 9.1702619458554523e+01 9.3827000000000005e-01 1 0 0 0 0 P 142 -2112 -1.5605553035262429e-01 -7.9744086755176891e-01 -4.0499555776484209e+02 4.0499746278996150e+02 9.3957000000000002e-01 1 0 0 0 0 P 143 223 1.4298470985922362e+00 2.6864067870675284e-02 -2.9246482330196005e+02 2.9246938233618698e+02 7.8838484289543220e-01 2 0 0 -80 0 P 144 1114 1.0805185079629820e+00 -3.5373666197725295e-01 -1.4160271377179511e+03 1.4160282586511648e+03 1.3718218124300261e+00 2 0 0 -81 0 P 145 211 8.5167303967669317e-01 1.3971266634232787e-01 -1.8285679917591717e+03 1.8285682007605160e+03 1.3957000000000000e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 3 0 P 146 -211 1.7666229492582833e-01 -2.8192436379867619e-01 -5.4350279495641951e-01 6.5235418782835175e-01 1.3957000000000000e-01 1 0 0 0 0 P 147 211 4.6947800436924281e-01 -3.8684608616810973e-01 -1.4887610743313913e+00 1.6142951441153721e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 111 9.0076510820176189e-02 -1.5107444543771545e-01 -3.4397114672432000e-01 4.0923467111755601e-01 1.3497999999999999e-01 2 0 0 -82 0 V -16 0 0 0 0 0 0 2 0 P 149 311 3.0336463937880331e-01 -2.3598463249245025e-01 -9.7693285039291949e-02 6.3634759215368808e-01 4.9767000000000000e-01 2 0 0 -83 0 P 150 111 6.7213136969024045e-01 -1.7694571623407354e-01 -5.1710978992750978e-01 8.7675110484911356e-01 1.3497999999999999e-01 2 0 0 -84 0 V -17 0 0 0 0 0 0 2 0 P 151 -311 3.3177093331381330e-01 1.4849637026237022e-02 -5.5442469183169862e-01 8.1569273119502761e-01 4.9767000000000000e-01 2 0 0 -85 0 P 152 111 2.0911634052203365e-01 1.7795490088667729e-01 -1.1660613983986463e+00 1.2055357215189937e+00 1.3497999999999999e-01 2 0 0 -86 0 V -18 0 0 0 0 0 0 3 0 P 153 -211 2.2963656669765567e-01 -1.0280533494412086e-01 -3.8932168010516038e-01 4.8410024288112541e-01 1.3957000000000000e-01 1 0 0 0 0 P 154 211 -1.6035883199492632e-01 -3.4666639585521505e-02 -1.4999992428597647e-01 2.6248141474155484e-01 1.3957000000000000e-01 1 0 0 0 0 P 155 111 8.1072822826739319e-02 -1.1802052584020926e-01 -8.6213020121491690e-01 8.8430183272883045e-01 1.3497999999999999e-01 2 0 0 -87 0 V -19 0 0 0 0 0 0 2 0 P 156 -2112 1.9244869746123394e-01 8.2761576678222970e-01 -7.8558609714536487e-01 1.4906111697921596e+00 9.3957000000000002e-01 1 0 0 0 0 P 157 111 -4.5824164120961471e-02 -8.8198366588021257e-02 -1.8278857325716300e-02 1.6861946184030388e-01 1.3497999999999999e-01 2 0 0 -88 0 V -20 0 0 0 0 0 0 2 0 P 158 -211 -2.5739902488189892e-01 -1.3871598218677841e-01 -4.5130264731056760e-02 3.2712827364642511e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 -3.0280950319076899e-01 6.4307185989986115e-01 -1.3537609991734092e+00 1.5349669232594867e+00 1.3497999999999999e-01 2 0 0 -89 0 V -21 0 0 0 0 0 0 2 0 P 160 211 -2.7385594754284215e-01 3.7420171790574419e-01 5.2508223269905019e-01 7.1429345627999252e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 111 1.4846374819547783e-01 1.3659946426132988e-01 1.0342275030818467e-01 2.6384988884978083e-01 1.3497999999999999e-01 2 0 0 -90 0 V -22 0 0 0 0 0 0 2 0 P 162 -211 3.1447626081176315e-02 -4.2813894392091108e-02 2.1997396518172968e-01 2.6587649951985498e-01 1.3957000000000000e-01 1 0 0 0 0 P 163 111 -2.2149757534344416e-01 6.8647348624414473e-01 -1.0525323074604631e-02 7.3391920946725431e-01 1.3497999999999999e-01 2 0 0 -91 0 V -23 0 0 0 0 0 0 2 0 P 164 211 -1.5222730749089666e-01 -4.7182126069588587e-01 1.9707379714942461e-01 5.5145835891160055e-01 1.3957000000000000e-01 1 0 0 0 0 P 165 -211 -3.4884506665687109e-01 7.2262711564369475e-02 7.3584214650635849e-01 8.2937218996573381e-01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 166 211 5.6421653986925013e-01 -2.3751096557725004e-01 5.7618023897591835e+00 5.7959122082866390e+00 1.3957000000000000e-01 1 0 0 0 0 P 167 111 2.9699574857874118e-02 3.3797867158322042e-01 2.6790389050820522e+00 2.7038085550820972e+00 1.3497999999999999e-01 2 0 0 -92 0 V -25 0 0 0 0 0 0 3 0 P 168 -211 -1.4369117859948041e-01 -3.1669296799917002e-01 1.7007269351265460e+01 1.7011397125520904e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 211 6.9243000144191505e-02 4.9456830028796694e-02 4.1393038847222901e+00 4.1425302661637255e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 111 -2.7455183641373426e-01 8.9355706978484592e-02 1.1312154212747997e+01 1.1316643304736614e+01 1.3497999999999999e-01 2 0 0 -93 0 V -26 0 0 0 0 0 0 2 0 P 171 321 -1.2374276179159091e-01 3.1520951923993551e-01 3.4767323250848995e+02 3.4767374780557509e+02 4.9359999999999998e-01 1 0 0 0 0 P 172 111 -2.1983066964994802e-01 -1.5743705831612118e-01 8.1594034621948751e+01 8.1594594290546127e+01 1.3497999999999999e-01 2 0 0 -94 0 V -27 0 0 0 0 0 0 2 0 P 173 -321 4.0120581963248816e-02 -9.6297939345166367e-02 1.0739747185873143e+03 1.0739748370835396e+03 4.9359999999999998e-01 1 0 0 0 0 P 174 211 -2.4359205044633622e-01 2.3970809642968732e-01 3.3645195815743534e+02 3.3645216067788306e+02 1.3957000000000000e-01 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 175 -211 -3.0573634152046680e-01 -1.0972428268998338e-01 7.5643948581432687e+02 7.5643956843422518e+02 1.3957000000000000e-01 1 0 0 0 0 P 176 211 3.0620389017216354e-01 -4.8990877970969743e-01 2.3595418720032694e+03 2.3595419468591595e+03 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 177 211 -1.2059482578320764e+00 3.1604177106448184e-01 -4.5868998437454739e-01 1.3356907906739932e+00 1.3957000000000000e-01 1 0 0 0 0 P 178 111 -3.5432494248596358e-01 -1.6029970826184337e-01 -5.5212803019141909e-01 6.8869958868839909e-01 1.3497999999999999e-01 2 0 0 -95 0 V -30 0 -3.4766350731932805e-04 1.0416911273928286e-04 -6.3113891761381658e-04 7.2827557335466097e-04 0 2 0 P 179 22 -2.4708353732124118e+00 7.6779188631137729e-01 -4.4760508739831968e+00 5.1700641435758845e+00 0 1 0 0 0 0 P 180 22 -1.2086591317676261e-01 8.7498496046869642e-03 -2.2885346666015802e-01 2.5895759892022752e-01 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 181 -211 -1.3353243928707557e+00 2.3499177570797154e+00 -7.7020752531128567e+00 8.1637398102063301e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 -1.4474316640897018e+00 1.7138234507865102e+00 -5.1291713462498372e+00 5.6000114041638911e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 183 -311 -2.0991835482304784e+00 2.9634596676119309e+00 -7.5342446955902584e+00 8.3786146428066530e+00 4.9767000000000000e-01 2 0 0 -96 0 P 184 111 -1.3836137075406993e+00 1.5363503218481334e+00 -5.5926939864066396e+00 5.9641600271225430e+00 1.3497999999999999e-01 2 0 0 -97 0 V -33 0 0 0 0 0 0 2 0 P 185 -211 -5.2763107781490293e-02 2.3823698816156966e-01 -8.0551326149788249e-01 8.5315426941439676e-01 1.3957000000000000e-01 1 0 0 0 0 P 186 111 -1.2323761220654896e+00 4.3858448472718647e-01 -2.0836873979925086e+00 2.4639561744141023e+00 1.3497999999999999e-01 2 0 0 -98 0 V -34 0 -8.0190234219245517e-06 8.9805464829421663e-06 -2.9583673342861299e-04 2.9621914507468216e-04 0 2 0 P 187 22 -7.5359122084302038e-02 -1.7147716918489205e-03 -2.0700765371462753e+00 2.0714484805002482e+00 0 1 0 0 0 0 P 188 22 -4.4572691473580811e-02 1.3602704012785127e-01 -2.3544317963907169e+00 2.3587791681984052e+00 0 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 189 -211 3.1080863746382709e-01 -2.2944201954432078e-01 -1.4645118644273966e+01 1.4650877978442644e+01 1.3957000000000000e-01 1 0 0 0 0 P 190 211 4.6279765095286490e-01 -7.7396051843586899e-01 -2.3113643395165205e+01 2.3131649040515661e+01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 1.1065833912714911e+00 -9.4954735303025550e-01 -3.4302273863978826e+01 3.4333516843127057e+01 1.3497999999999999e-01 2 0 0 -99 0 V -36 0 0 0 0 0 0 2 0 P 192 211 7.6197971448783619e-01 -1.0757053443454572e+00 -3.9082600300760163e+01 3.9105074876888075e+01 1.3957000000000000e-01 1 0 0 0 0 P 193 111 1.9644851080255424e-01 -5.3490541556111004e-01 -8.2084408730070955e+00 8.2293035541925796e+00 1.3497999999999999e-01 2 0 0 -100 0 V -37 0 0 0 0 0 0 3 0 P 194 111 1.4598793967953048e-02 -5.6915764057791252e-02 -5.3110681091245651e+00 5.3131079971278190e+00 1.3497999999999999e-01 2 0 0 -101 0 P 195 111 9.6009654936822800e-02 -3.6322080619149577e-01 -1.0491129754772977e+01 1.0498722319395556e+01 1.3497999999999999e-01 2 0 0 -102 0 P 196 111 9.3453861120053591e-02 -6.1245822755602597e-01 -1.9253726537358965e+01 1.9264164759481790e+01 1.3497999999999999e-01 2 0 0 -103 0 V -38 0 0 0 0 0 0 2 0 P 197 211 3.7148000657369722e+00 -6.5630058081006784e+00 -2.3149876516626838e+02 2.3162161068876441e+02 1.3957000000000000e-01 1 0 0 0 0 P 198 111 2.7423096347139386e-01 -4.0471984493933300e-01 -1.1701224648386239e+01 1.1712210664371428e+01 1.3497999999999999e-01 2 0 0 -104 0 V -39 0 2.1221996309134252e-03 -2.3263873285777523e-03 -9.2547020121282089e-02 9.2600651979364804e-02 0 2 0 P 199 22 3.8635968233978824e-01 -3.9177407857081392e-01 -1.7494126473696742e+01 1.7502777545591869e+01 0 1 0 0 0 0 P 200 22 2.0342425494713581e+00 -2.2617266937333937e+00 -8.8065934978498149e+01 8.8118456943050745e+01 0 1 0 0 0 0 V -40 0 9.5408494172980262e-06 2.6010574588373426e-05 2.0076191237728934e-02 2.0076212217015985e-02 0 2 0 P 201 22 8.8648738716891121e-02 2.1436356364133410e-01 2.1307141817529626e+02 2.1307154444826344e+02 0 1 0 0 0 0 P 202 22 6.0263981361061966e-02 1.9160714644268417e-01 1.0027597001375656e+02 1.0027617118361586e+02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 203 -211 -1.4335123672933331e-01 -2.4637930399435498e-01 1.9979273707117326e+02 1.9979298916256892e+02 1.3957000000000000e-01 1 0 0 0 0 P 204 211 1.6135289581409587e-01 -1.5448399896452952e-01 5.4812701195413558e+02 5.4812707524224425e+02 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 205 -211 -3.2639294500869810e-02 -1.6052244561667559e-01 5.9162656794301967e+00 5.9201783886632944e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 7.2810376603196469e-01 -6.6082426416473683e-01 1.4797418979630073e+01 1.4830665927777320e+01 1.3497999999999999e-01 2 0 0 -105 0 V -43 0 0 0 0 0 0 3 0 P 207 211 -1.0077481699837337e-01 -8.9546944292273986e-02 5.9886057024314954e-01 6.2951408758270810e-01 1.3957000000000000e-01 1 0 0 0 0 P 208 -211 1.1342204001012333e-01 1.4164067069832859e-02 1.2040794477155397e+00 1.2175189038643202e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 111 -1.9991483921303699e-01 -1.2334859576125766e-01 2.5690023766750475e-01 3.7336061860816144e-01 1.3497999999999999e-01 2 0 0 -106 0 V -44 0 0 0 0 0 0 3 0 P 210 -211 -1.5065366389137355e-01 -1.7035310440998178e-01 6.5740435983021062e-01 7.0949065099533348e-01 1.3957000000000000e-01 1 0 0 0 0 P 211 211 -2.4889215604300038e-01 4.1773301888659048e-02 1.3165367182150081e-01 3.1702490169464248e-01 1.3957000000000000e-01 1 0 0 0 0 P 212 111 1.0056832647204569e-01 2.3792854480596801e-02 7.5514777705063957e-02 1.8601658599589457e-01 1.3497999999999999e-01 2 0 0 -107 0 V -45 0 0 0 0 0 0 2 0 P 213 2112 1.4064902577365171e-01 -2.5879800347445819e-01 1.5416267428384936e-01 9.9665263261368620e-01 9.3957000000000002e-01 1 0 0 0 0 P 214 -211 -1.3549770586654425e-01 3.7413641428351831e-02 -9.5434452497663386e-02 2.1987934983430024e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 215 321 -4.3169896935551494e-01 -2.0821647110983341e-01 -1.9390776000503902e+00 2.0575181646831764e+00 4.9359999999999998e-01 1 0 0 0 0 P 216 -211 -9.3867722737480996e-01 -4.1823970402763078e-01 -4.3274415851007113e+00 4.4499741397648744e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 217 -321 4.1383857742683799e-01 -6.1581033378785355e-01 -1.6267526979049727e+00 1.8548450165735368e+00 4.9359999999999998e-01 1 0 0 0 0 P 218 211 -1.5529288847970324e-01 7.1633504673829784e-02 -5.4567193815494830e-01 5.8862967067079019e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 -3.3033901728661688e-04 -1.3105370812097135e-03 -7.6169542005733648e-03 7.7373348335658607e-03 0 2 0 P 219 22 -1.2596996099092903e-01 -6.0059702782232360e-01 -3.0985346364096498e+00 3.1587184290359507e+00 0 1 0 0 0 0 P 220 22 -1.7652779912598704e-01 -5.9948685833919224e-01 -3.8764560973898288e+00 3.9265071542245322e+00 0 1 0 0 0 0 V -49 0 0 0 0 0 0 3 0 P 221 211 1.0044013906466640e+00 -3.7910653211112816e-01 -7.6507255375892935e+00 7.7269415005319706e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 6.2209389060066866e-01 -1.9611258613452384e-01 -4.4480648829420257e+00 4.4978019012541122e+00 1.3957000000000000e-01 1 0 0 0 0 P 223 111 4.1736001310228588e-01 -1.7586451269103898e-01 -4.6278646424152603e+00 4.6519316908439361e+00 1.3497999999999999e-01 2 0 0 -108 0 V -50 0 0 0 0 0 0 3 0 P 224 -211 4.3589623606372052e-01 4.2986374025100603e-02 -4.1891739531547820e+00 4.2143221936222206e+00 1.3957000000000000e-01 1 0 0 0 0 P 225 211 1.6244328419084117e-01 4.1056136600079250e-02 -1.6207143337837020e+00 1.6353189791484657e+00 1.3957000000000000e-01 1 0 0 0 0 P 226 111 1.0786614595523867e+00 -5.7588505219481745e-01 -1.0174020363109257e+01 1.0248124905904833e+01 1.3497999999999999e-01 2 0 0 -109 0 V -51 0 0 0 0 0 0 2 0 P 227 211 2.3604080625276315e-03 4.3949699568889211e-01 -5.7509192820604849e-01 7.3713885498834919e-01 1.3957000000000000e-01 1 0 0 0 0 P 228 -211 4.7522343095179903e-01 -2.1636998136661895e-01 -7.5918809868015569e-01 9.3193327671018389e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 229 211 -1.5434642264332835e-01 -5.2595836551833031e-01 -4.1635054845573172e-01 7.0234078946113832e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 111 -2.6977280238486895e-01 2.4530039627472452e-01 -1.1047316945302275e+00 1.1711538612064387e+00 1.3497999999999999e-01 2 0 0 -110 0 V -53 0 0 0 0 0 0 2 0 P 231 -211 9.7665611255570675e-02 5.0819939455602359e-01 6.9942310724900059e-01 8.8117970023309100e-01 1.3957000000000000e-01 1 0 0 0 0 P 232 211 -1.3920533864324686e-01 -5.0836952398283848e-02 1.5765914620774550e+00 1.5896801392831998e+00 1.3957000000000000e-01 1 0 0 0 0 V -54 0 6.1063118383529130e-05 7.5987446624415758e-05 4.9533224923687747e-04 5.0939718191225119e-04 0 2 0 P 233 22 -9.2290913339534431e-03 2.3127237298787989e-02 3.8197465618621101e-01 3.8278542710048308e-01 0 1 0 0 0 0 P 234 22 1.3037841151862992e-01 1.2763197292196768e-01 6.0076528322672640e-01 6.2785936023329658e-01 0 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 235 321 1.8099074840193016e-01 -4.2787211693410980e-02 4.7012463386318855e+00 4.7307448137678376e+00 4.9359999999999998e-01 1 0 0 0 0 P 236 -211 -2.9811822532540645e-02 2.5619260909649272e-01 9.2274495889151298e-01 9.6822592496693660e-01 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 237 -321 4.4685919478654479e-01 2.5367251415766684e-01 3.7784518730698475e+00 3.8450451754835586e+00 4.9359999999999998e-01 1 0 0 0 0 P 238 111 4.7374909395464398e-01 -6.2869426221830796e-02 1.3776864379953053e+00 1.4644556294447779e+00 1.3497999999999999e-01 2 0 0 -111 0 V -57 0 0 0 0 0 0 2 0 P 239 211 -1.3470444227357273e-01 3.7512825477193901e-01 3.0877325163990466e+00 3.1164785210272932e+00 1.3957000000000000e-01 1 0 0 0 0 P 240 -211 3.2863315690747186e-01 7.5117484372813279e-02 1.3063951151067116e+01 1.3069045177465922e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 241 -311 -2.9770887883702923e-01 -1.6603111112004704e-01 2.7308534387394787e+00 2.7966824702088355e+00 4.9767000000000000e-01 2 0 0 -112 0 P 242 -211 -2.0041156611648259e-01 -3.9300631432694266e-01 5.1647818160307182e+00 5.1854671680607209e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 243 -211 4.4335189481697637e-02 3.4437297207644807e-01 2.5631730141082438e+00 2.5903463162434255e+00 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -2.5919666348753412e-01 -2.6179110407110162e-01 4.1611505425391879e+00 4.1796065521299983e+00 1.3497999999999999e-01 2 0 0 -113 0 V -60 0 0 0 0 0 0 3 0 P 245 111 -1.1678573513796327e-01 1.2409366887489648e-01 9.5429791922994123e-01 9.7874525063120610e-01 1.3497999999999999e-01 2 0 0 -114 0 P 246 111 -1.6344860640232156e-01 2.5264895151579970e-02 3.1883061244940114e-01 3.8370082316401355e-01 1.3497999999999999e-01 2 0 0 -115 0 P 247 111 -1.2868008122607699e-01 2.2413157691475080e-01 6.5259485540029505e-01 7.1476791531907380e-01 1.3497999999999999e-01 2 0 0 -116 0 V -61 0 8.1467314936018627e-06 -6.5713807713017105e-07 2.2144567674890612e-05 2.3865331208048427e-05 0 2 0 P 248 22 5.9879732515596635e-03 -2.8308298402142058e-02 1.3440322984790418e-01 1.3748252170961450e-01 0 1 0 0 0 0 P 249 22 3.0665510193621021e-01 3.0896362407209924e-03 7.1542786401088077e-01 7.7838546106590278e-01 0 1 0 0 0 0 V -62 0 0 0 0 0 0 3 0 P 250 211 -1.6596102832048515e-01 -3.4859331806192789e-01 2.7987894581536730e+00 2.8287386907048782e+00 1.3957000000000000e-01 1 0 0 0 0 P 251 -211 -1.3373073975399133e-01 1.0118562234637606e-02 4.3806165283581527e-01 4.7891971419236057e-01 1.3957000000000000e-01 1 0 0 0 0 P 252 111 4.4459863967732313e-02 -1.1061174223647424e-01 1.9313136168096010e+00 1.9396916053586457e+00 1.3497999999999999e-01 2 0 0 -117 0 V -63 0 0 0 0 0 0 3 0 P 253 -211 2.3253798916467217e-01 1.1725614292515648e-02 1.2090706913008005e+00 1.2391703385321493e+00 1.3957000000000000e-01 1 0 0 0 0 P 254 211 -1.3962490513928361e-01 -1.8476515565591239e-01 3.8814715038668474e-01 4.7304468301949143e-01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 -5.2116430702635941e-02 -9.5985181137635600e-02 1.0026998031797774e+00 1.0176226083592932e+00 1.3497999999999999e-01 2 0 0 -118 0 V -64 0 0 0 0 0 0 2 0 P 256 22 -8.0356161733488130e-01 4.5722458783478881e-01 2.1785496068173837e+00 2.3666102310982104e+00 0 1 0 0 0 0 P 257 111 -3.0936110757272838e-03 -5.8591617078564633e-02 4.0602346941079885e-02 1.5267841693734194e-01 1.3497999999999999e-01 2 0 0 -119 0 V -65 0 -4.2930281329168482e-04 -1.3877624136416720e-03 1.8333338431010674e-03 2.3432871425693451e-03 0 2 0 P 258 22 -2.9652242068645079e-01 -7.6528097413243446e-01 9.7721356228845591e-01 1.2761374775702397e+00 0 1 0 0 0 0 P 259 22 -1.1637446214997789e-01 -5.6944769982313281e-01 7.8605890082638796e-01 9.7760027303747343e-01 0 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 260 321 3.4956820363098384e-01 -1.1697476657128876e+00 4.6482850207953108e-01 1.3965006361531107e+00 4.9359999999999998e-01 1 0 0 0 0 P 261 111 -4.8544590020911625e-02 1.7979062795058329e-02 -3.7970158375351476e-02 1.4946958635901925e-01 1.3497999999999999e-01 2 0 0 -120 0 V -67 0 0 0 0 0 0 2 0 P 262 3122 -6.3839466153707602e-01 -7.4805362746684301e-01 1.4105632942185864e+00 2.0497713635530501e+00 1.1156800000000000e+00 2 0 0 -121 0 P 263 -211 -5.0735173668435596e-01 -1.7437440939113255e-01 4.7895055148126014e-01 7.3258831210396846e-01 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 264 -2112 -2.7113737121359509e-03 -1.1921032297573912e-01 8.4517131842539395e-01 1.2693796890766393e+00 9.3957000000000002e-01 1 0 0 0 0 P 265 211 -1.3997031093341170e-01 -2.0584210607239073e-01 2.3527517294271442e-02 2.8634941862197932e-01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 266 211 -1.7401559571782249e-01 -6.2837377741667910e-01 2.0288900859270020e-01 6.9697831128785037e-01 1.3957000000000000e-01 1 0 0 0 0 P 267 -211 7.0084261796971234e-02 1.7983856190248701e-01 2.6660239086374232e-01 3.5750570878385241e-01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 3 0 P 268 -211 1.4198832598375200e-01 1.2848846591224583e-01 -7.4718920201473929e-02 2.4846060557807711e-01 1.3957000000000000e-01 1 0 0 0 0 P 269 211 -4.0341654463719179e-02 1.2401207788178530e-01 -1.5655377309675769e-02 1.9165416844967501e-01 1.3957000000000000e-01 1 0 0 0 0 P 270 111 7.3035368237417020e-01 1.4062635222374872e-01 -5.4287788701291328e-01 9.3066012749277782e-01 1.3497999999999999e-01 2 0 0 -122 0 V -71 0 0 0 0 0 0 2 0 P 271 -211 -5.8307742926151129e-01 2.8725540299846186e-01 -6.4276750628757684e-01 9.2472958593589483e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 -2.8088569159628335e-01 9.3697806750793633e-01 -5.0657513348980732e-01 1.1098029721552585e+00 1.3497999999999999e-01 2 0 0 -123 0 V -72 0 0 0 0 0 0 2 0 P 273 22 -1.9093374842628522e-01 3.6358006461387377e-01 -4.5303991995973162e-03 4.1069049683386688e-01 0 1 0 0 0 0 P 274 111 -2.1697828889193627e-01 3.9691811137235217e-01 -1.0902004471022910e+00 1.1880152272794751e+00 1.3497999999999999e-01 2 0 0 -124 0 V -73 0 0 0 0 0 0 2 0 P 275 -211 3.4811660069356914e-01 6.4535363621968489e-01 -3.7378026369887529e-01 8.3478018297706136e-01 1.3957000000000000e-01 1 0 0 0 0 P 276 211 -2.6310258301192169e-01 4.0851856394669744e-01 -6.8639757367175258e-01 8.5248565989058500e-01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 3 0 P 277 211 -1.4782301188584249e-01 4.8030774975997365e-01 -1.3076379776541351e+00 1.4078153440085415e+00 1.3957000000000000e-01 1 0 0 0 0 P 278 -211 -3.9242191362883055e-01 1.4512950878331254e-01 -1.1608031720616365e+00 1.2417734583184472e+00 1.3957000000000000e-01 1 0 0 0 0 P 279 111 -5.3017739967949395e-01 8.7436610372895962e-01 -2.2395680140240919e+00 2.4656619087622063e+00 1.3497999999999999e-01 2 0 0 -125 0 V -75 0 0 0 0 0 0 2 0 P 280 2212 8.5315923455384191e-02 1.9113390363252693e-02 -7.0283129312861901e+00 7.0912042264675259e+00 9.3827000000000005e-01 1 0 0 0 0 P 281 111 -8.6673713739436192e-03 -2.7998140145812128e-01 -2.4097682119904595e+00 2.4297463127677927e+00 1.3497999999999999e-01 2 0 0 -126 0 V -76 0 0 0 0 0 0 2 0 P 282 -211 2.3356241623578747e-01 -1.6117120615468428e-01 -8.9719855472850636e+00 8.9775571290615197e+00 1.3957000000000000e-01 1 0 0 0 0 P 283 211 4.3828581792376509e-01 3.6198930900675863e-01 -5.8646863987921300e+01 5.8649784877019528e+01 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 284 22 -1.5604179635002916e-02 7.4483169582967801e-02 -4.1663230481803506e+00 4.1670179954941418e+00 0 1 0 0 0 0 P 285 113 1.5691054564434914e-01 -6.5848833030563292e-01 -8.3089509499124333e+01 8.3096141028325590e+01 8.0239466213333299e-01 2 0 0 -127 0 V -78 0 0 0 0 0 0 3 0 P 286 211 2.8436381084437851e-01 -2.5093219692319457e-01 -6.2344706001611399e+01 6.2346015718381160e+01 1.3957000000000000e-01 1 0 0 0 0 P 287 -211 1.9317535372616457e-01 -1.1342401514170841e-01 -2.8451339647354875e+01 2.8452563842974598e+01 1.3957000000000000e-01 1 0 0 0 0 P 288 111 3.3236559107500319e-01 -1.0623966808406140e+00 -1.9045157989266164e+02 1.9045488089520015e+02 1.3497999999999999e-01 2 0 0 -128 0 V -79 0 0 0 0 0 0 2 0 P 289 211 7.4281103453520558e-01 -9.8665959846368190e-01 -3.2776739911844385e+02 3.2776975557554181e+02 1.3957000000000000e-01 1 0 0 0 0 P 290 -211 2.7667150855303452e-01 -1.0808788592938745e-01 -1.9614148151084967e+02 1.9614175608261138e+02 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 291 -211 1.3649354595104382e-01 4.5087343622014359e-02 -3.8411554499899594e+01 3.8412077036269437e+01 1.3957000000000000e-01 1 0 0 0 0 P 292 211 2.1038073214016598e-01 1.9622875215326058e-01 -5.5235666403795207e+01 5.5236591935345523e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 111 1.0829728205010263e+00 -2.1445202790459969e-01 -1.9881760239826522e+02 1.9882071336457199e+02 1.3497999999999999e-01 2 0 0 -129 0 V -81 0 0 0 0 0 0 2 0 P 294 2112 4.5016390920637162e-01 -1.1896398498280948e-01 -6.9126473387782835e+02 6.9126552922516294e+02 9.3957000000000002e-01 1 0 0 0 0 P 295 -211 6.3035459875661037e-01 -2.3477267699444349e-01 -7.2476240384012272e+02 7.2476272942600190e+02 1.3957000000000000e-01 1 0 0 0 0 V -82 0 3.9303022244318910e-06 -6.5918209259241144e-06 -1.5008469475575751e-05 1.7856108363466000e-05 0 2 0 P 296 22 5.0113334042584105e-02 -1.5687576807142284e-01 -1.9675839934060416e-01 2.5658374961781799e-01 0 1 0 0 0 0 P 297 22 3.9963176777592084e-02 5.8013226337073950e-03 -1.4721274738371587e-01 1.5265092149973802e-01 0 1 0 0 0 0 V -83 0 0 0 0 0 0 1 0 P 298 130 3.0336463937880331e-01 -2.3598463249245025e-01 -9.7693285039291949e-02 6.3634759215368808e-01 4.9767000000000000e-01 1 0 0 0 0 V -84 0 1.5387269051388012e-04 -4.0508618790386741e-05 -1.1838321830430799e-04 2.0071679064216874e-04 0 2 0 P 299 22 5.4479613595536402e-01 -8.8301699851443552e-02 -3.8433541331015675e-01 6.7254273460713176e-01 0 1 0 0 0 0 P 300 22 1.2733523373487649e-01 -8.8644016382629975e-02 -1.3277437661735308e-01 2.0420837024198180e-01 0 1 0 0 0 0 V -85 0 0 0 0 0 0 1 0 P 301 130 3.3177093331381330e-01 1.4849637026237022e-02 -5.5442469183169862e-01 8.1569273119502772e-01 4.9767000000000000e-01 1 0 0 0 0 V -86 0 1.0737673244665851e-04 9.1376005014142029e-05 -5.9874738855730564e-04 6.1901660243903899e-04 0 2 0 P 302 22 -5.0382134203109351e-03 2.6640844936905300e-02 -2.8487254221928165e-01 2.8615989153600341e-01 0 1 0 0 0 0 P 303 22 2.1415455394234459e-01 1.5131405594977199e-01 -8.8118885617936460e-01 9.1937582998299028e-01 0 1 0 0 0 0 V -87 0 4.3576606652319436e-06 -6.3435980790130655e-06 -4.6339460440048459e-05 4.7531184659873360e-05 0 2 0 P 304 22 9.2464527865898039e-02 -1.3682344506322339e-01 -6.3541076968359211e-01 6.5651899459370344e-01 0 1 0 0 0 0 P 305 22 -1.1391705039158720e-02 1.8802919223014112e-02 -2.2671943153132482e-01 2.2778283813512698e-01 0 1 0 0 0 0 V -88 0 -6.2525621239624944e-05 -1.2034387902154061e-04 -2.4940922148061241e-05 2.3007591751866792e-04 0 2 0 P 306 22 -7.2107976713031152e-02 -1.5257415200161760e-02 -4.5301176978878387e-02 8.6513268692778172e-02 0 1 0 0 0 0 P 307 22 2.6283812592069678e-02 -7.2940951387859512e-02 2.7022319653162090e-02 8.2106193147525708e-02 0 1 0 0 0 0 V -89 0 -3.1098442795236417e-05 6.6043282121575658e-05 -1.3903083802721208e-04 1.5764063066901917e-04 0 2 0 P 308 22 -9.4215582840693632e-02 3.4734103340785077e-01 -6.2220985850733257e-01 7.1879585249398892e-01 0 1 0 0 0 0 P 309 22 -2.0859392035007535e-01 2.9573082649201038e-01 -7.3155114066607663e-01 8.1617107076549777e-01 0 1 0 0 0 0 V -90 0 1.2089248020005474e-04 1.1123151765512218e-04 8.4216065846627055e-05 2.1485020990821488e-04 0 2 0 P 310 22 1.4117634369446855e-01 4.2146882878178422e-02 7.2440068703442551e-02 1.6417881504336995e-01 0 1 0 0 0 0 P 311 22 7.2874045010092852e-03 9.4452581383151449e-02 3.0982681604742112e-02 9.9671073806410881e-02 0 1 0 0 0 0 V -91 0 -7.8164588893487853e-05 2.4225058786920542e-04 -3.7142959683507114e-06 2.5899377544016738e-04 0 2 0 P 312 22 -1.3498099377500711e-01 2.3856771679672084e-01 3.0971467630611937e-02 2.7585078572533184e-01 0 1 0 0 0 0 P 313 22 -8.6516581568437056e-02 4.4790576944742388e-01 -4.1496790705216571e-02 4.5806842374192247e-01 0 1 0 0 0 0 V -92 0 2.3710944568459676e-06 2.6982856103432452e-05 2.1388367772647084e-04 2.1586118683541183e-04 0 2 0 P 314 22 1.2243312814326449e-02 1.6056456096346042e-01 7.8175217502629968e-01 7.9816498301066086e-01 0 1 0 0 0 0 P 315 22 1.7456262043547673e-02 1.7741411061976003e-01 1.8972867300557525e+00 1.9056435720714364e+00 0 1 0 0 0 0 V -93 0 -2.2995600052006970e-05 7.4841535459449955e-06 9.4747053015874813e-04 9.4784652241330827e-04 0 2 0 P 316 22 -4.9030034331374924e-03 5.6850505149856883e-03 2.4129060168232885e+00 2.4129176955014540e+00 0 1 0 0 0 0 P 317 22 -2.6964883298059678e-01 8.3670656463498902e-02 8.8992481959247076e+00 8.9037256092351562e+00 0 1 0 0 0 0 V -94 0 -4.3528376014459323e-05 -3.1173900729625070e-05 1.6156325344486969e-02 1.6156436163715187e-02 0 2 0 P 318 22 -1.7648215871735229e-01 -1.7839699009367732e-01 7.2225559025524845e+01 7.2225994960180302e+01 0 1 0 0 0 0 P 319 22 -4.3348510932595723e-02 2.0959931777556135e-02 9.3684755964239148e+00 9.3685993303658037e+00 0 1 0 0 0 0 V -95 0 -2.9917313026309661e-05 -1.3534854522090738e-05 -4.6618753379155061e-05 5.8150129176124167e-05 0 2 0 P 320 22 -1.6367731404619942e-02 -1.7070060336602313e-02 2.3187640718159851e-03 2.3762707296302973e-02 0 1 0 0 0 0 P 321 22 -3.3795721108134358e-01 -1.4322964792524104e-01 -5.5444679426323507e-01 6.6493688139209617e-01 0 1 0 0 0 0 V -96 0 0 0 0 0 0 1 0 P 322 130 -2.0991835482304784e+00 2.9634596676119309e+00 -7.5342446955902584e+00 8.3786146428066530e+00 4.9767000000000000e-01 1 0 0 0 0 V -97 0 -5.7888609102523199e-05 6.4278911622004281e-05 -2.3399108742900543e-04 2.4953274642578317e-04 0 2 0 P 323 22 -1.3480078917020539e+00 1.4591846945540543e+00 -5.3382065906214420e+00 5.6958576924872366e+00 0 1 0 0 0 0 P 324 22 -3.5605815838645367e-02 7.7165627294079026e-02 -2.5448739578519758e-01 2.6830233463530656e-01 0 1 0 0 0 0 V -98 0 -6.8248800079642974e-05 2.4288741302461163e-05 -1.1539428759437215e-04 1.3645351394081431e-04 0 2 0 P 325 22 -7.1602938447213038e-01 1.8484256486956030e-01 -1.1937666648674694e+00 1.4042591297064428e+00 0 1 0 0 0 0 P 326 22 -5.1634673759335914e-01 2.5374191985762617e-01 -8.8992073312503928e-01 1.0596970447076590e+00 0 1 0 0 0 0 V -99 0 1.4830288949285798e-04 -1.2725712067924270e-04 -4.5971468308033895e-03 4.6013339748727797e-03 0 2 0 P 327 22 4.9782735922572174e-01 -3.8702542832251557e-01 -1.3441026524645613e+01 1.3455809704287169e+01 0 1 0 0 0 0 P 328 22 6.0875603204576934e-01 -5.6252192470773998e-01 -2.0861247339333215e+01 2.0877707138839888e+01 0 1 0 0 0 0 V -100 0 4.2131773951988835e-05 -1.1471969913157682e-04 -1.7604418274638520e-03 1.7649161895455410e-03 0 2 0 P 329 22 8.6729353778406022e-03 -7.3818998383513676e-02 -5.9901622828923506e-01 6.0360989561493639e-01 0 1 0 0 0 0 P 330 22 1.8777557542471365e-01 -4.6108641717759635e-01 -7.6094246447178602e+00 7.6256936585776431e+00 0 1 0 0 0 0 V -101 0 1.9527217652226460e-06 -7.6130022455210525e-06 -7.1040377143712671e-04 7.1067662505170021e-04 0 2 0 P 331 22 -1.7260346723985843e-02 1.7432150360764575e-02 -3.6406573746402096e+00 3.6407400235333167e+00 0 1 0 0 0 0 P 332 22 3.1859140691938896e-02 -7.4347914418555816e-02 -1.6704107344843555e+00 1.6723679735945021e+00 0 1 0 0 0 0 V -102 0 2.1029507699528317e-05 -7.9558193865598271e-05 -2.2979282041991050e-03 2.2995912441953919e-03 0 2 0 P 333 22 2.2844121323915601e-02 -2.0135531466599946e-01 -3.9646079646654591e+00 3.9697836376951443e+00 0 1 0 0 0 0 P 334 22 7.3165533612907188e-02 -1.6186549152549631e-01 -6.5265217901075188e+00 6.5289386817004100e+00 0 1 0 0 0 0 V -103 0 1.2011994908905023e-05 -7.8721681727726117e-05 -2.4747577293473392e-03 2.4760993953790544e-03 0 2 0 P 335 22 3.3739661840145874e-02 -4.1405118062386831e-01 -1.4452891186556943e+01 1.4458860273044085e+01 0 1 0 0 0 0 P 336 22 5.9714199279907725e-02 -1.9840704693215760e-01 -4.8008353508020223e+00 4.8053044864377066e+00 0 1 0 0 0 0 V -104 0 9.7749390404753714e-06 -1.4426203965714116e-05 -4.1708914335931529e-04 4.1748073895156185e-04 0 2 0 P 337 22 1.3036100693050323e-01 -1.8043377625704771e-01 -6.9076419300589693e+00 6.9112276314451631e+00 0 1 0 0 0 0 P 338 22 1.4386995654089063e-01 -2.2428606868228532e-01 -4.7935827183272703e+00 4.8009830329262666e+00 0 1 0 0 0 0 V -105 0 1.8352719220209330e-04 -1.6656859557548863e-04 3.7298650053270671e-03 3.7382452930379878e-03 0 2 0 P 339 22 4.5670391579619946e-01 -3.6969702186030995e-01 7.9453581622532008e+00 7.9670553331302720e+00 0 1 0 0 0 0 P 340 22 2.7139985023576524e-01 -2.9112724230442683e-01 6.8520608173768736e+00 6.8636105946470476e+00 0 1 0 0 0 0 V -106 0 -4.8231920832388320e-05 -2.9759370184638481e-05 6.1980351102384782e-05 9.0077854498086965e-05 0 2 0 P 341 22 -1.8478621492116432e-02 -5.7706170562370054e-02 1.2713916326614394e-01 1.4083972596266126e-01 0 1 0 0 0 0 P 342 22 -1.8143621772092056e-01 -6.5642425198887619e-02 1.2976107440136078e-01 2.3252089264550069e-01 0 1 0 0 0 0 V -107 0 1.6049771584680925e-05 3.7971187664863508e-06 1.2051457709909513e-05 2.9686520805595088e-05 0 2 0 P 343 22 1.3144861957811554e-01 1.9451444884494146e-02 4.0034169350658191e-02 1.3877980044907051e-01 0 1 0 0 0 0 P 344 22 -3.0880293106069864e-02 4.3414095961026534e-03 3.5480608354405765e-02 4.7236785546824034e-02 0 1 0 0 0 0 V -108 0 1.9135657111203123e-05 -8.0632617098844941e-06 -2.1218427298787636e-04 2.1328772988827901e-04 0 2 0 P 345 22 1.2616272841056769e-01 3.8857219586242121e-03 -9.9194317088795592e-01 9.9994169187327664e-01 0 1 0 0 0 0 P 346 22 2.9119728469171818e-01 -1.7975023464966319e-01 -3.6359214715273040e+00 3.6519899989706595e+00 0 1 0 0 0 0 V -109 0 2.9566696206408978e-04 -1.5785321925863437e-04 -2.7887542157916585e-03 2.8090666732818962e-03 0 2 0 P 347 22 8.7611100370526107e-01 -4.9065918095301270e-01 -7.9152787641962687e+00 7.9787188719495132e+00 0 1 0 0 0 0 P 348 22 2.0255045584712564e-01 -8.5225871241804751e-02 -2.2587415989129882e+00 2.2694060339553177e+00 0 1 0 0 0 0 V -110 0 -1.8440531547413547e-05 1.6767701028822520e-05 -7.5514801656502718e-05 8.0055140968739250e-05 0 2 0 P 349 22 -2.7429460401712868e-01 2.3729036699403383e-01 -9.6157030766964990e-01 1.0276972825949195e+00 0 1 0 0 0 0 P 350 22 4.5218016322597322e-03 8.0100292806907052e-03 -1.4316138686057758e-01 1.4345657861151920e-01 0 1 0 0 0 0 V -111 0 3.4646783706084898e-05 -4.5978418530589818e-06 1.0075460753619871e-04 1.0710031552142512e-04 0 2 0 P 351 22 3.2132212742522627e-02 -4.1653130272644633e-02 1.8989783829745654e-01 1.9704987020368125e-01 0 1 0 0 0 0 P 352 22 4.4161688121212139e-01 -2.1216295949186170e-02 1.1877885996978488e+00 1.2674057592410972e+00 0 1 0 0 0 0 V -112 0 0 0 0 0 0 1 0 P 353 130 -2.9770887883702923e-01 -1.6603111112004704e-01 2.7308534387394787e+00 2.7966824702088355e+00 4.9767000000000000e-01 1 0 0 0 0 V -113 0 -5.4678953581139938e-07 -5.5226265009956748e-07 8.7781746222430939e-06 8.8171085837428531e-06 0 2 0 P 354 22 -2.0247780558925210e-01 -1.3429864396529850e-01 2.1666303155659516e+00 2.1802110704829865e+00 0 1 0 0 0 0 P 355 22 -5.6718857898282037e-02 -1.2749246010580312e-01 1.9945202269732363e+00 1.9993954816470112e+00 0 1 0 0 0 0 V -114 0 -5.3154808959498568e-06 5.6481001334076394e-06 4.3434691340676666e-05 4.4547407057770553e-05 0 2 0 P 356 22 8.7110249901649495e-03 -6.5656015832378191e-03 2.8946447478463500e-01 2.8966993499994709e-01 0 1 0 0 0 0 P 357 22 -1.2549676012812822e-01 1.3065927045813430e-01 6.6483344444530623e-01 6.8907531563125846e-01 0 1 0 0 0 0 V -115 0 -5.6956754099302820e-05 8.8040299159918037e-06 1.1110254894380504e-04 1.3370779912836483e-04 0 2 0 P 358 22 -1.2836040638204355e-01 -2.8395149928420720e-03 3.1307351087987151e-01 3.3837771792274801e-01 0 1 0 0 0 0 P 359 22 -3.5088200020278015e-02 2.8104410144422044e-02 5.7571015695296046e-03 4.5323105241265191e-02 0 1 0 0 0 0 V -116 0 -1.7653597357496986e-05 3.0748571000684504e-05 8.9529371640434752e-05 9.8058882624821837e-05 0 2 0 P 360 22 -1.2226681276311781e-01 2.1079948102582807e-01 4.5096783333841001e-01 5.1259885037907504e-01 0 1 0 0 0 0 P 361 22 -6.4132684629591924e-03 1.3332095888922738e-02 2.0162702206188507e-01 2.0216906493999828e-01 0 1 0 0 0 0 V -117 0 3.6521561433857293e-06 -9.0862031029318700e-06 1.5864778388784305e-04 1.5933599387361395e-04 0 2 0 P 362 22 4.6553297213804218e-02 -1.3985136611485183e-01 1.4458350902316659e+00 1.4533288417391559e+00 0 1 0 0 0 0 P 363 22 -2.0934332460719033e-03 2.9239623878377575e-02 4.8547852657793494e-01 4.8636276361948949e-01 0 1 0 0 0 0 V -118 0 -1.1118948150899430e-05 -2.0478268329877790e-05 2.1392422643228166e-04 2.1710798047721509e-04 0 2 0 P 364 22 -4.2927856487029147e-02 2.6639234382761268e-02 2.7349142561796674e-01 2.7811869688609298e-01 0 1 0 0 0 0 P 365 22 -9.1885742156067977e-03 -1.2262441552039686e-01 7.2920837756181067e-01 7.3950391147320027e-01 0 1 0 0 0 0 V -119 0 -9.6805429401689227e-07 -1.8334517532383601e-05 1.2705306304295426e-05 4.7776205056787520e-05 0 2 0 P 366 22 4.4081492045075873e-02 1.8079629103751781e-02 -1.1023504367724254e-02 4.8903666304220744e-02 0 1 0 0 0 0 P 367 22 -4.7175103120803155e-02 -7.6671246182316410e-02 5.1625851308804135e-02 1.0377475063312167e-01 0 1 0 0 0 0 V -120 0 -2.5409200524945830e-06 9.4105977950053599e-07 -1.9874333426395245e-06 7.8235343846574940e-06 0 2 0 P 368 22 8.1553090225773110e-03 1.6514475095721643e-02 -7.7937079867994211e-02 8.0083864612611327e-02 0 1 0 0 0 0 P 369 22 -5.6699899043488933e-02 1.4645876993366843e-03 3.9966921492642742e-02 6.9385721746408058e-02 0 1 0 0 0 0 V -121 0 -3.6216576866506109e+01 -4.2437606909481069e+01 8.0022244934096463e+01 1.1628496699540570e+02 0 2 0 P 370 2112 -5.8665019389923401e-01 -5.4643442790869046e-01 1.2284337982520854e+00 1.7420075819565057e+00 9.3957000000000002e-01 1 0 0 0 0 P 371 111 -5.1744467637842004e-02 -2.0161919955815247e-01 1.8212949596650096e-01 3.0776378159654438e-01 1.3497999999999999e-01 2 0 0 -130 0 V -122 0 1.9218214349574428e-04 3.7003816718626239e-05 -1.4285056473382950e-04 2.4488992454474163e-04 0 2 0 P 372 22 8.5963602571460671e-02 -1.3455346508390042e-02 -1.0553246782810717e-01 1.3677678561296636e-01 0 1 0 0 0 0 P 373 22 6.4439007980270957e-01 1.5408169873213876e-01 -4.3734541918480607e-01 7.9388334187981158e-01 0 1 0 0 0 0 V -123 0 -1.4823732081264174e-04 4.9448983178259156e-04 -2.6734484107067636e-04 5.8569811188053831e-04 0 2 0 P 374 22 -2.8899607568293240e-01 9.1266687591110895e-01 -4.7369173056879554e-01 1.0681120792102012e+00 0 1 0 0 0 0 P 375 22 8.1103840866490595e-03 2.4311191596827389e-02 -3.2883402921011717e-02 4.1690892945057241e-02 0 1 0 0 0 0 V -124 0 -1.9000298219586273e-06 3.4757221671084542e-06 -9.5466388456894293e-06 1.0403180761998569e-05 0 2 0 P 376 22 -1.3584707012815056e-02 1.5116584553885062e-01 -3.1157600492339160e-01 3.4657649078684061e-01 0 1 0 0 0 0 P 377 22 -2.0339358187912121e-01 2.4575226583350152e-01 -7.7862444217889948e-01 8.4143873649263445e-01 0 1 0 0 0 0 V -125 0 -9.7874280950378947e-05 1.6141380930532022e-04 -4.1343917930976678e-04 4.5517761891156997e-04 0 2 0 P 378 22 -2.5192636546892255e-01 2.8973310369875788e-01 -8.3694593484849278e-01 9.2080978646879819e-01 0 1 0 0 0 0 P 379 22 -2.7825103421057146e-01 5.8463300003020169e-01 -1.4026220791755992e+00 1.5448521222934080e+00 0 1 0 0 0 0 V -126 0 -1.9923923827861727e-06 -6.4360091141813688e-05 -5.5394001511043108e-04 5.5853243582185412e-04 0 2 0 P 380 22 -6.2745121948102681e-02 -2.1370163779096693e-01 -1.8746214348413224e+00 1.8878058333126746e+00 0 1 0 0 0 0 P 381 22 5.4077750574159054e-02 -6.6279763667154351e-02 -5.3514677714913728e-01 5.4194047945511803e-01 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 382 211 3.2393189848464599e-01 -4.0654384787628933e-01 -2.5550846556219181e+01 2.5556514811285584e+01 1.3957000000000000e-01 1 0 0 0 0 P 383 -211 -1.6702135284029682e-01 -2.5194448242934353e-01 -5.7538662942905148e+01 5.7539626217040002e+01 1.3957000000000000e-01 1 0 0 0 0 V -128 0 9.3584400942336939e-07 -2.9913974132526721e-06 -5.3625578252937357e-04 5.3626507718421666e-04 0 2 0 P 384 22 2.7653377586823641e-01 -9.9360430963149327e-01 -1.7772986893820888e+02 1.7773286143323702e+02 0 1 0 0 0 0 P 385 22 5.5831815206766777e-02 -6.8792371209120712e-02 -1.2721710954452744e+01 1.2722019461963137e+01 0 1 0 0 0 0 V -129 0 2.3762717906612613e-05 -4.7055317983330589e-06 -4.3624793819602298e-03 4.3625476431514302e-03 0 2 0 P 386 22 7.7297580118796272e-01 -1.7752416932228246e-01 -1.5211796239900892e+02 1.5212002988050654e+02 0 1 0 0 0 0 P 387 22 3.0999701931306350e-01 -3.6927858582317244e-02 -4.6699639999256313e+01 4.6700683484065443e+01 0 1 0 0 0 0 V -130 0 -3.6216580874717806e+01 -4.2437622527236364e+01 8.0022259042147212e+01 1.1628499083529516e+02 0 2 0 P 388 22 -2.9208474853182967e-02 -1.3787324102961945e-01 3.4063902649974324e-02 1.4499143098475678e-01 0 1 0 0 0 0 P 389 22 -2.2535992784659033e-02 -6.3745958528533028e-02 1.4806559331652666e-01 1.6277235061178760e-01 0 1 0 0 0 0 E 43 31 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 237 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 4.2972260985454874e-01 -1.2502863831047952e+00 1.1515388051150223e+03 1.1515395640460185e+03 0 3 0 0 -3 0 P 70 2101 -4.2972260985454874e-01 1.2502863831047952e+00 1.3881414151620388e+03 1.3881421656260131e+03 5.7933000000000001e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 2.3499344153491530e+00 4.9179921009422012e-01 -9.6312375518196461e+02 9.6312674755404237e+02 0 3 0 0 -4 0 P 79 2203 -2.3499344153491530e+00 -4.9179921009422012e-01 -3.4800021585735881e+03 3.4800030722235033e+03 7.7132999999999996e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 1 0 P 5 2 2.4222404096741629e-01 -7.0475561010091514e-01 6.4909403487094346e+02 6.4909446266163582e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 12 0 P 6 -1 1.1595916646116274e+01 2.2855352174228191e+01 6.3039744793145353e+01 6.8050288974085703e+01 0 3 0 0 -5 0 P 14 3 -3.3227174853315171e+00 -1.0415535240112513e+01 1.5701219137801678e+02 1.5739314491791669e+02 5.0000000000000000e-01 2 0 0 -9 0 P 15 21 -2.4182400005711941e+00 -1.0402159921868401e+00 2.0236221559362043e+01 2.0406729209022032e+01 0 2 0 0 -9 0 P 16 21 -4.7231835490108196e+00 -5.4918266528011828e-01 4.3814290441867456e+01 4.4071556715888860e+01 0 2 0 0 -9 0 P 71 -3 -4.4759106928767105e+00 -1.0192097942281865e+01 2.1495874525209177e+02 2.1524735723662059e+02 5.0000000000000000e-01 2 0 0 -11 0 P 72 21 2.6334061510277760e+00 9.5154743613731008e-01 -3.1336615647475405e+01 3.1461464535477219e+01 0 2 0 0 -11 0 P 73 21 -5.7072601263692679e-01 4.0667781209090138e-03 -9.8104400876127187e+01 9.8106061056308079e+01 0 2 0 0 -11 0 P 74 21 -1.5114615083885810e-01 -3.8579595957780993e-01 -9.9715062218647006e+01 9.9715923086285386e+01 0 2 0 0 -11 0 P 75 1 1.2301443523164242e+00 4.0734294188791287e-01 -7.0232188710755599e+02 7.0232316008637963e+02 3.3000000000000002e-01 2 0 0 -11 0 P 76 1 9.4524247042894727e-01 -1.5901493766435850e+00 -2.3173159450314230e+01 2.3249221003673011e+01 3.3000000000000002e-01 2 0 0 -13 0 P 77 21 1.0898392659164939e+00 3.2271691125492452e-01 -4.1333274878278212e+00 4.2867577435605533e+00 0 2 0 0 -13 0 P 78 21 7.0480798951381685e-01 -4.2178062845915654e-01 -9.5572544261934977e-01 1.2601842414091131e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -7.7976425831404650e-01 8.9120198275656504e-01 3.8682633167211769e+01 3.8700754282335190e+01 0 3 0 0 -6 0 P 8 24 1.2617904945397738e+01 2.1259394581370714e+01 6.7345114649687719e+02 6.7844399735338629e+02 7.8349457201092648e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -7.7976425831404650e-01 8.9120198275656504e-01 3.8682633167211769e+01 3.8700754282335190e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 1.2617904945397738e+01 2.1259394581370714e+01 6.7345114649687719e+02 6.7844399735338629e+02 7.8349457201092648e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 12 -9.6846434594750122e+00 3.8431030916222319e+01 5.6448991014075648e+02 5.6587948814826302e+02 0 1 0 0 0 0 P 12 -11 1.8867710253678933e+01 -1.3343038232556493e+01 8.8980973766388388e+01 9.1932806180204480e+01 5.1000000000000004e-04 1 0 0 0 0 P 13 22 3.4348381511938912e+00 -3.8285981022949760e+00 1.9980262589736473e+01 2.0631703024922992e+01 0 1 0 0 0 0 V -9 0 0 0 0 0 53 1 0 P 17 21 -1.9730788917544173e-01 1.7808863274589302e+00 7.4341296372715515e+00 7.6470105255727399e+00 0 2 0 0 -9 0 P 18 21 -1.1048882298194616e+00 -3.5094019444035068e-01 9.9410855164130707e-01 1.5271505600017936e+00 0 2 0 0 -9 0 P 19 21 -5.7118809642851720e-01 -5.6548597142041968e-01 1.8017000904010865e+00 1.9728541357957035e+00 0 2 0 0 -9 0 P 20 21 -9.4628175767978639e-01 -3.9518478401347784e-01 1.8771874439277008e+00 2.1390308268169349e+00 0 2 0 0 -9 0 P 21 21 -1.4942714254893548e+00 -2.4949471745728030e-01 8.9016022973357589e-01 1.7571226313699364e+00 0 2 0 0 -9 0 P 22 21 -3.5132031083860255e-01 4.1658838424824113e-01 4.3813069020490558e-01 6.9923554285928535e-01 0 2 0 0 -9 0 P 23 21 -1.6945424711733470e+00 3.1304032670845490e+00 -2.9145457064306679e-01 3.5715325237120026e+00 0 2 0 0 -9 0 P 24 21 2.4804733828184819e-01 1.4342623279363775e+00 -3.6997341459083388e-01 1.5018376193417808e+00 0 2 0 0 -9 0 P 25 21 7.7830931684426585e-01 1.7065405719970800e-01 1.2318280922051807e-01 8.0626435144607977e-01 0 2 0 0 -9 0 P 26 21 7.6211126259678730e-01 1.4380807671992860e-02 8.4061791225349014e-02 7.6686815617169968e-01 0 2 0 0 -9 0 P 27 21 1.0691019230534304e+00 1.3796363699484733e+00 -5.1540182052990080e-01 1.8198940825681806e+00 0 2 0 0 -9 0 P 28 21 -8.2401636146638413e-01 1.4980957111075952e+00 -1.6295485421927793e+00 2.3619318734810881e+00 0 2 0 0 -9 0 P 29 21 1.7746367491487833e-01 5.7356102634651780e+00 -5.8578930409176566e+00 8.2002212975695290e+00 0 2 0 0 -9 0 P 30 21 9.0308809520598887e-01 2.4022624070047751e+00 -3.9352986600108149e+00 4.6981920270774449e+00 0 2 0 0 -9 0 P 31 21 2.2187171052888757e+00 1.1418103345517434e+00 -3.9803922319541751e+00 4.6978674687129853e+00 0 2 0 0 -9 0 P 32 21 5.7118809642851720e-01 5.6548597142041968e-01 -3.4496718988633188e+00 3.5420709246402993e+00 0 2 0 0 -9 0 P 33 21 7.3217372862779218e-01 -5.8836564829291593e-01 -2.6732375983212265e+01 2.6748872466195799e+01 0 2 0 0 -9 0 P 34 21 2.3779658181329628e+00 1.0354092481798272e+00 -7.0558713044847011e+01 7.0606365012571558e+01 0 2 0 0 -9 0 P 35 21 7.1520855940774319e-01 3.6787088769897367e+00 -1.1823037285787511e+03 1.1823096679946004e+03 0 2 0 0 -9 0 P 36 21 5.0370883273456790e-01 -2.7076142840650952e-01 -2.0933201707034161e+02 2.0933279820677188e+02 0 2 0 0 -9 0 P 37 21 8.2401636146638413e-01 -1.4980957111075952e+00 -2.7947082911013490e+02 2.7947605911281528e+02 0 2 0 0 -9 0 P 38 21 -2.2187171052888757e+00 -1.1418103345517434e+00 -2.2384972574034666e+02 2.2386363293411864e+02 0 2 0 0 -9 0 P 39 21 -1.2040343629975045e+01 -6.4058146419560860e+00 -4.1892061602149067e+02 4.1914256150357744e+02 0 2 0 0 -9 0 P 40 21 -7.6211126259678730e-01 -1.4380807671992860e-02 -1.8440619060550542e+01 1.8456366156980799e+01 0 2 0 0 -9 0 P 41 21 -2.5837592868830419e+00 1.0677025038922150e+00 -2.8808365021934691e+01 2.8943698725739981e+01 0 2 0 0 -9 0 P 42 21 -5.0370883273456790e-01 2.7076142840650952e-01 -3.2342385859135541e+00 3.2844076436854879e+00 0 2 0 0 -9 0 P 43 21 -8.1186494829378264e-01 1.1052620980611874e+00 -4.7106519679351218e+00 4.9062175820778391e+00 0 2 0 0 -9 0 P 44 21 -2.4804733828184819e-01 -1.4342623279363775e+00 -1.1445820591505009e+00 1.8516759968999401e+00 0 2 0 0 -9 0 P 45 21 1.9730788917544173e-01 -1.7808863274589302e+00 -1.3049377448161668e+00 2.2166075503586393e+00 0 2 0 0 -9 0 P 46 21 1.6945424711733470e+00 -3.1304032670845490e+00 4.3109595531889537e+00 5.5906413827408921e+00 0 2 0 0 -9 0 P 47 21 9.4628175767978639e-01 3.9518478401347784e-01 3.3663187150108671e+00 3.5190512740603452e+00 0 2 0 0 -9 0 P 48 21 3.4299745595530808e+01 9.4368100711132890e+00 1.7131501497217440e+02 1.7496959817966302e+02 0 2 0 0 -9 0 P 49 21 1.8135899418299057e+00 1.9600056459483404e+00 1.6937112382557856e+01 1.7146326325736677e+01 0 2 0 0 -9 0 P 50 21 1.2040343629975045e+01 6.4058146419560860e+00 1.9269897379294841e+02 1.9318100019621596e+02 0 2 0 0 -9 0 P 51 21 3.5132031083860255e-01 -4.1658838424824113e-01 8.5960600370418838e+00 8.6133164346334574e+00 0 2 0 0 -9 0 P 52 21 1.2068948182168548e+00 -1.4501646694245058e+00 7.8574154956557445e+00 8.0807518797483677e+00 0 2 0 0 -9 0 P 53 21 -1.7746367491487833e-01 -5.7356102634651780e+00 2.0074987957262380e+01 2.0879029190422408e+01 0 2 0 0 -9 0 P 54 21 -3.4299745595530808e+01 -9.4368100711132890e+00 1.7652662155393460e+02 1.8007546765032279e+02 0 2 0 0 -9 0 P 55 21 -7.7830931684426585e-01 -1.7065405719970800e-01 5.0478584700741180e+00 5.1103584349656259e+00 0 2 0 0 -9 0 P 56 21 -7.3217372862779218e-01 5.8836564829291593e-01 2.0175288637595276e+01 2.0197141483766085e+01 0 2 0 0 -9 0 P 57 21 -4.7610352694223739e+00 8.5360466349319442e-01 3.2459662807139625e+02 3.2463266479681090e+02 0 2 0 0 -9 0 P 58 21 -1.0323590804869978e+00 5.0221999336912060e-01 1.0519131477999812e+02 1.0519757932261301e+02 0 2 0 0 -9 0 P 59 21 -1.1929528109436958e+00 1.3448629583499686e-01 1.2628048157122333e+02 1.2628618787829879e+02 0 2 0 0 -9 0 P 60 21 -1.0691019230534304e+00 -1.3796363699484733e+00 1.2940761716055275e+02 1.2941938708944400e+02 0 2 0 0 -9 0 P 61 21 -1.8135899418299057e+00 -1.9600056459483404e+00 2.3636898196108626e+02 2.3638406537651724e+02 0 2 0 0 -9 0 P 62 21 -9.0308809520598887e-01 -2.4022624070047751e+00 3.1038602688048707e+02 3.1039663676566192e+02 0 2 0 0 -9 0 P 63 21 -7.1520855940774319e-01 -3.6787088769897367e+00 2.1916179188462257e+02 2.1919383076255525e+02 0 2 0 0 -9 0 P 64 21 1.1048882298194616e+00 3.5094019444035068e-01 3.9238659404595900e+01 3.9255780834042135e+01 0 2 0 0 -9 0 P 65 21 4.7610352694223739e+00 -8.5360466349319442e-01 4.4456109933741192e+02 4.4458741226202801e+02 0 2 0 0 -9 0 P 66 21 1.0323590804869978e+00 -5.0221999336912060e-01 1.1163703540973012e+02 1.1164293826868827e+02 0 2 0 0 -9 0 P 67 21 1.1929528109436958e+00 -1.3448629583499686e-01 2.5216145436541973e+02 2.5216431208768731e+02 0 2 0 0 -9 0 P 68 21 1.4942714254893548e+00 2.4949471745728030e-01 2.8733661117017965e+02 2.8734060488115858e+02 0 2 0 0 -9 0 P 69 21 -1.2068948182168548e+00 1.4501646694245058e+00 5.8689263896258603e+02 5.8689567151337815e+02 0 2 0 0 -9 0 P 87 92 -1.1911522061811933e+01 -7.5462736643414488e+00 2.9341326981425182e+03 7.9396213661735319e+03 7.3775506719565219e+03 2 0 0 -10 0 V -10 0 0 0 0 0 0 119 0 P 88 -323 -3.0206291640080813e+00 -1.0138320222340761e+01 1.4348973500000019e+02 1.4388182270587191e+02 8.7470984703390275e-01 2 0 0 -19 0 P 89 323 -3.2007023632008029e+00 -5.3527404402984224e-01 3.6213092138074629e+01 3.6369644170228831e+01 9.1211893323536453e-01 2 0 0 -20 0 P 90 -321 -5.6728856926508786e-01 -6.1342818070245242e-01 7.9051413442531722e+00 7.9644843578426103e+00 4.9359999999999998e-01 1 0 0 0 0 P 91 111 -9.8741048174124579e-01 -3.6278437633957095e-01 8.7071550190325055e+00 8.7715084272336838e+00 1.3497999999999999e-01 2 0 0 -21 0 P 92 213 -1.4406747418411860e+00 2.2552918468539787e-01 1.2412724486701579e+01 1.2525974423217336e+01 8.3540346145432753e-01 2 0 0 -22 0 P 93 -213 -4.4797716763600476e-01 -1.1906005458409485e-01 8.6081523602753869e+00 8.6594830226121786e+00 8.1945123215058546e-01 2 0 0 -23 0 P 94 2212 -9.3893422675302574e-01 -5.7005078142178783e-02 2.8462374377989437e+00 3.1410611592789137e+00 9.3827000000000005e-01 1 0 0 0 0 P 95 211 -1.9103880103682647e-01 8.1977020464839526e-02 2.6829912798695927e+00 2.6946498934262606e+00 1.3957000000000000e-01 1 0 0 0 0 P 96 -2224 -6.0911949450756486e-01 -1.3141765087455348e-01 4.3804293970285153e+00 4.5997171370020364e+00 1.2573539201545729e+00 2 0 0 -24 0 P 97 211 -2.9632049119354359e-01 3.6359564121353738e-01 2.1454678731329029e+00 2.2005726080627488e+00 1.3957000000000000e-01 1 0 0 0 0 P 98 -213 -8.8628098950806955e-01 -7.3317430783756049e-02 1.1479327019352181e+00 1.6145558150805108e+00 7.0581269032078819e-01 2 0 0 -25 0 P 99 2212 -2.0626252998430528e+00 1.1901025360842963e+00 1.5956109789540660e+00 3.0161386180024401e+00 9.3827000000000005e-01 1 0 0 0 0 P 100 -2112 -3.5726715115570978e-01 -6.6032498484988822e-01 1.8657097839002925e+00 2.2197598260967779e+00 9.3957000000000002e-01 1 0 0 0 0 P 101 -213 -7.8746670619922365e-01 1.1801928042614094e+00 -3.3635587584496479e-01 1.5458659145875360e+00 5.1342699779565715e-01 2 0 0 -26 0 P 102 213 2.5878927623466069e-01 1.4616450028333836e+00 8.9238652477902958e-01 1.8815612470361864e+00 7.3521494335963689e-01 2 0 0 -27 0 P 103 2112 -4.8193361185088673e-01 3.5313927533322831e-01 -4.2761752208844961e-01 1.1927346243450738e+00 9.3957000000000002e-01 1 0 0 0 0 P 104 -2212 3.8244238115841045e-01 1.4606452033513990e+00 -4.7487954918936381e-01 1.8400021098134258e+00 9.3827000000000005e-01 1 0 0 0 0 P 105 323 1.0638888225986294e+00 1.3104759781998014e+00 -4.7097082527581013e-01 1.9878852222466339e+00 9.3843882180808535e-01 2 0 0 -28 0 P 106 -313 -1.5950170340382705e-01 2.8806491425526510e+00 -3.8828167015319694e+00 4.9254973076443314e+00 9.2772728430175144e-01 2 0 0 -29 0 P 107 221 1.0816405122700403e+00 1.5661112223304847e+00 -2.1877032493721273e+00 2.9509994185541006e+00 5.4744999999999999e-01 2 0 0 -30 0 P 108 -213 4.8093225613149515e-01 8.1096957220765509e-01 -7.0669658944834535e-01 1.4182840925586313e+00 7.8939357460809112e-01 2 0 0 -31 0 P 109 211 2.9014083927255525e-02 7.0585367671138696e-02 -7.6965956618524622e-01 7.8592604226852603e-01 1.3957000000000000e-01 1 0 0 0 0 P 110 -211 3.5466264431252580e-02 8.8202729304911437e-02 1.2555274181488318e-01 2.1043016239783102e-01 1.3957000000000000e-01 1 0 0 0 0 P 111 221 1.9102331868558148e-01 1.1354573205155027e+00 -1.4582436302155173e+00 1.9369897321767162e+00 5.4744999999999999e-01 2 0 0 -32 0 P 112 213 2.0037324098659282e-01 2.7535668731721721e+00 -4.8652842866264381e+00 5.6840198907925039e+00 1.0073782648519105e+00 2 0 0 -33 0 P 113 1114 4.3314739965789245e-01 7.5052543415334050e-01 -3.2419514404132692e+00 3.5559338263004019e+00 1.1762275026066580e+00 2 0 0 -34 0 P 114 111 1.1262694783137671e-01 2.8360445496304527e-02 -2.9041905239090499e-01 3.4066401429882759e-01 1.3497999999999999e-01 2 0 0 -35 0 P 115 -1114 5.1497317630623818e-01 5.1906533785039854e-01 -4.4859802766115005e+00 4.7099122218223730e+00 1.2347582345753714e+00 2 0 0 -36 0 P 116 1114 3.9122710597643789e-01 9.4953924501349246e-04 -1.4417037212457716e+01 1.4465007610710179e+01 1.1101457753094151e+00 2 0 0 -37 0 P 117 213 4.7075371189637177e-01 -1.3932170111398931e-01 -3.9200549991955733e+00 4.0093000612070471e+00 6.8310774436476818e-01 2 0 0 -38 0 P 118 -2114 1.0984270323097427e+00 1.3273092961231552e+00 -4.0845133950854233e+01 4.0901741415047951e+01 1.2880960396416066e+00 2 0 0 -39 0 P 119 -213 2.3571903808372072e-01 -1.8179401917038404e-01 -2.6200182429936238e+01 2.6210447432281878e+01 6.7036013317533927e-01 2 0 0 -40 0 P 120 321 1.3389959978556640e-01 -1.1537846034033113e-01 -6.2756477602946488e+00 6.2975103861148547e+00 4.9359999999999998e-01 1 0 0 0 0 P 121 -313 7.0298561326918396e-01 5.5712128128230197e-02 -1.4591543815341330e+01 1.4626710209654872e+01 7.2815384947989403e-01 2 0 0 -41 0 P 122 223 4.6198281813716097e-01 2.3103222818185870e-01 -1.1100481450163211e+02 1.1100876053267406e+02 7.8055649642246550e-01 2 0 0 -42 0 P 123 -213 3.8107587288309397e-01 8.1800932127485737e-01 -2.2099492030358354e+02 2.2099842198615099e+02 8.5636575775086277e-01 2 0 0 -43 0 P 124 323 -2.6205721490407341e-01 4.2447535620041693e-01 -2.2113145022164019e+02 2.2113381827162399e+02 8.9356194524417099e-01 2 0 0 -44 0 P 125 -313 5.5118293231095683e-01 2.5614606560214598e-01 -1.7166290877871123e+02 1.7166625868728661e+02 8.8357675981239980e-01 2 0 0 -45 0 P 126 -211 8.8689835355777025e-01 -8.5653052234825988e-01 -1.4267274843273125e+02 1.4267814429112673e+02 1.3957000000000000e-01 1 0 0 0 0 P 127 113 3.5939146397912812e-02 1.5452135967893985e+00 -3.9586225706614323e+02 3.9586605532255749e+02 7.8626360649749782e-01 2 0 0 -46 0 P 128 321 -6.5334351217331732e-01 6.6147310928872594e-01 -2.1018319716037195e+02 2.1018583304765087e+02 4.9359999999999998e-01 1 0 0 0 0 P 129 -313 4.1307270210974839e-01 -7.3872219080891288e-01 -1.2771916264929342e+02 1.2772487839922955e+02 8.6238896611754157e-01 2 0 0 -47 0 P 130 -213 -1.0497728449963559e+00 -7.9635915694698656e-01 -9.4110907056961665e+01 9.4122767781085571e+01 7.0454010186431759e-01 2 0 0 -48 0 P 131 331 -5.2072817840034646e-01 -1.8626760024021613e-01 -4.9305159055511744e+01 4.9317562957278675e+01 9.5783772172301129e-01 2 0 0 -49 0 P 132 111 -6.4142152763035676e-01 -7.8792534588944529e-01 -8.0143618096450609e+01 8.0150171485262149e+01 1.3497999999999999e-01 2 0 0 -50 0 P 133 223 -4.9024063495675196e-01 -5.1771110954910926e-01 -4.3674471472221391e+01 4.3688167008148824e+01 8.2952846901814004e-01 2 0 0 -51 0 P 134 321 -1.1430469129293876e+00 -6.2189719858611503e-01 -4.5926115930933541e+01 4.5947198802890206e+01 4.9359999999999998e-01 1 0 0 0 0 P 135 -321 -1.2319848499435405e-01 -3.2214836122309222e-02 -2.8061999131036025e+01 2.8066628793865412e+01 4.9359999999999998e-01 1 0 0 0 0 P 136 221 -1.0037198497261139e+00 -6.9640155651078306e-01 -5.3324530701338077e+01 5.3341332048282133e+01 5.4744999999999999e-01 2 0 0 -52 0 P 137 2212 -3.4729938202758857e+00 -1.4762152190340445e+00 -1.4328975112175786e+02 1.4334250599377978e+02 9.3827000000000005e-01 1 0 0 0 0 P 138 -2212 -1.9738541604092270e+00 -8.9748882226779336e-01 -5.6741908571940726e+01 5.6791074346344615e+01 9.3827000000000005e-01 1 0 0 0 0 P 139 213 -2.6445214493005409e+00 -6.5734718345879162e-01 -8.9643946960533157e+01 8.9689226839627452e+01 8.3341790948993955e-01 2 0 0 -53 0 P 140 111 -1.6775006839094835e+00 -4.8320218669476128e-01 -1.6598050032916134e+01 1.6690146116596182e+01 1.3497999999999999e-01 2 0 0 -54 0 P 141 223 -2.5448066885155433e-02 2.5054774136373648e-01 -9.0918233576912986e+00 9.1288483249223678e+00 7.8179153050297845e-01 2 0 0 -55 0 P 142 -213 -5.4691903445515200e-01 -4.2419910670586586e-01 -1.3954979294032224e+01 1.3988568767797799e+01 6.7789657187546271e-01 2 0 0 -56 0 P 143 2214 -1.6145935231692425e+00 9.5504437018234778e-01 -2.4344564174502420e+01 2.4442200330292735e+01 1.1154954709090950e+00 2 0 0 -57 0 P 144 211 -5.3910854085863757e-01 3.5618330772786883e-01 -1.0116218942166431e+00 1.2084548850863923e+00 1.3957000000000000e-01 1 0 0 0 0 P 145 -3224 2.7328071265152099e-01 -7.0234280088460455e-01 -4.4785957622771750e+00 4.7503503046870144e+00 1.3928532792405603e+00 2 0 0 -58 0 P 146 -321 -5.7288863982273819e-01 -2.5525386132560707e-01 -7.5182006287253789e-01 1.0964626278616365e+00 4.9359999999999998e-01 1 0 0 0 0 P 147 211 -2.5240919153347169e-01 -6.7458379777671196e-01 -1.8511785565898324e+00 1.9912597855306189e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 311 5.1241314255859149e-01 2.5915591591447684e-01 1.8000873462950431e-01 7.8090178054807768e-01 4.9767000000000000e-01 2 0 0 -59 0 P 149 -323 1.1579757747379031e-01 -6.4277778271429520e-01 6.5424959475452416e-01 1.3297752336524431e+00 9.5586990898293589e-01 2 0 0 -60 0 P 150 2224 -2.2027950382527261e-03 -1.4394006685682241e+00 -3.7059250389818876e-01 1.9560524502162009e+00 1.2715829690077811e+00 2 0 0 -61 0 P 151 -213 1.7393701139779105e-01 -4.6211816520131760e-01 -8.7668735643136233e-03 8.6293533362204200e-01 7.0765333984816658e-01 2 0 0 -62 0 P 152 -2112 2.4577029707934847e-01 2.1335894163673477e-01 9.4373245412754747e-01 1.3708930690525876e+00 9.3957000000000002e-01 1 0 0 0 0 P 153 111 7.9230474901234094e-01 -1.7510251191345902e+00 3.1944151578454818e+00 3.7304615779043737e+00 1.3497999999999999e-01 2 0 0 -63 0 P 154 223 2.3236428519548591e+00 7.2142287256219106e-01 6.5672321915971983e+00 7.0473308338789487e+00 7.8521726884577625e-01 2 0 0 -64 0 P 155 -211 5.7331033366805171e+00 9.0909639735722636e-01 3.0380903357605238e+01 3.0930788847648138e+01 1.3957000000000000e-01 1 0 0 0 0 P 156 223 1.6376405569207324e+00 9.1263142572314260e-01 9.0813508226259554e+00 9.3056765924230902e+00 7.8097462588279232e-01 2 0 0 -65 0 P 157 321 8.3696866198338853e+00 2.0965448620476548e+00 4.1157148897437565e+01 4.2054746471696284e+01 4.9359999999999998e-01 1 0 0 0 0 P 158 -323 1.8000167597082005e+01 5.3069661549090066e+00 8.9932333795110551e+01 9.1874626766364045e+01 9.7593971695129877e-01 2 0 0 -66 0 P 159 221 3.3616077242441489e+00 3.0210791994091735e+00 5.4876292038882035e+01 5.5064820488765498e+01 5.4744999999999999e-01 2 0 0 -67 0 P 160 321 2.0980828981408877e+00 7.6568384869927730e-01 2.7131157754529173e+01 2.7227405048310768e+01 4.9359999999999998e-01 1 0 0 0 0 P 161 -311 5.6256764031642401e+00 2.9514285403270253e+00 1.0207472842878586e+02 1.0227344242109514e+02 4.9767000000000000e-01 2 0 0 -68 0 P 162 -213 1.6730705354987840e+00 8.2570640350663571e-01 1.7273873082401273e+01 1.7384648647368778e+01 5.9863281233800003e-01 2 0 0 -69 0 P 163 223 3.6046583235974461e-01 -9.5232702524744850e-01 7.1112467497887000e+00 7.2226761379398088e+00 7.4857055637347403e-01 2 0 0 -70 0 P 164 211 1.8794434794101197e-01 -4.6882174169357541e-02 7.5895995000831318e-01 7.9562617276861836e-01 1.3957000000000000e-01 1 0 0 0 0 P 165 113 3.7380260583612357e-01 -9.4211343359691790e-01 1.0144790958144887e+01 1.0218830465313943e+01 6.9311354371161094e-01 2 0 0 -71 0 P 166 223 -1.4377978078214401e-01 -1.6910049425202753e+00 7.3480855087137833e+00 7.5826029190525022e+00 7.8824871941809671e-01 2 0 0 -72 0 P 167 221 4.4906998400812193e-01 -6.0512393892994121e-01 3.5069457037539613e+00 3.6285270432479226e+00 5.4744999999999999e-01 2 0 0 -73 0 P 168 111 6.2001388475897456e-01 -5.2964630997589246e-02 1.8707928056007881e+00 1.9761851611927195e+00 1.3497999999999999e-01 2 0 0 -74 0 P 169 111 -1.2255075748730990e+00 -2.4350788393055307e+00 8.8601321067000267e+00 9.2710106416874289e+00 1.3497999999999999e-01 2 0 0 -75 0 P 170 -211 -8.5225698187304952e-02 -2.1639963845087323e-01 3.3645433166164409e+00 3.3754590409959864e+00 1.3957000000000000e-01 1 0 0 0 0 P 171 211 -1.6744076181445378e+00 -7.2589955140870832e-01 1.0203568284088783e+01 1.0366429305377929e+01 1.3957000000000000e-01 1 0 0 0 0 P 172 -211 -4.2927649295405029e-01 -4.8825439484331895e-01 2.3698206906345232e+00 2.4613412100207137e+00 1.3957000000000000e-01 1 0 0 0 0 P 173 223 -4.9772599035179068e+00 -9.5316731495140239e-01 2.5474575388739627e+01 2.5985387473507181e+01 7.7764184189535446e-01 2 0 0 -76 0 P 174 213 -9.0539304536469487e+00 -2.8033035921023060e+00 4.8801586155802980e+01 4.9720637505425039e+01 8.4546728774580948e-01 2 0 0 -77 0 P 175 -211 -3.2408482947738801e+00 -8.5613745168836819e-01 1.4374009111903884e+01 1.4760341687776680e+01 1.3957000000000000e-01 1 0 0 0 0 P 176 213 -1.8781329411538805e+00 -2.8083349469991464e-01 1.0764173100501132e+01 1.0967907463858550e+01 9.0626751117937310e-01 2 0 0 -78 0 P 177 111 -1.0463457421125423e+01 -3.3489655886063399e+00 5.7255078481075664e+01 5.8299757659804278e+01 1.3497999999999999e-01 2 0 0 -79 0 P 178 311 -7.3780440509598433e-01 -1.7939227889137099e-01 6.6078639499574816e+00 6.6699384060089022e+00 4.9767000000000000e-01 2 0 0 -80 0 P 179 -311 -6.5225017943249042e-01 1.4473484154480135e-01 5.2014449327694159e+00 5.2677398652989069e+00 4.9767000000000000e-01 2 0 0 -81 0 P 180 313 -5.2798323241788880e-01 3.5368343814806957e-01 1.8531110550591549e+01 1.8563828294226397e+01 8.9989134407456928e-01 2 0 0 -82 0 P 181 -311 -6.5616508819327912e-01 -2.7844103527546904e-01 1.5867261229157192e+01 1.5891058378103832e+01 4.9767000000000000e-01 2 0 0 -83 0 P 182 -211 1.6631851497732755e-01 1.1647736142561656e-01 3.1893166677200617e+00 3.1988200036960399e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 211 -3.0897254725712481e-01 -5.0979658065718497e-02 1.5693067907588828e+01 1.5696812513933823e+01 1.3957000000000000e-01 1 0 0 0 0 P 184 -213 -9.6052929130491804e-01 -5.8106419841680329e-02 4.9419876925391868e+01 4.9435780824229646e+01 8.0386410848490975e-01 2 0 0 -84 0 P 185 2212 -9.1525895841548932e-01 5.3175975735478220e-01 5.3979940799800374e+01 5.3998470596335920e+01 9.3827000000000005e-01 1 0 0 0 0 P 186 -2112 -5.2094868241084824e-01 -1.9835448059861868e-02 4.3030204816995337e+01 4.3043618567125307e+01 9.3957000000000002e-01 1 0 0 0 0 P 187 331 -9.5002306322282715e-01 4.3610866962970773e-01 5.7337909558627437e+01 5.7355424830328673e+01 9.5715741744053051e-01 2 0 0 -85 0 P 188 -213 -2.9730728857007076e+00 -3.5647602236793047e-01 2.1325835276778798e+02 2.1328085952252178e+02 7.9610043157466936e-01 2 0 0 -86 0 P 189 213 -8.4109843688091224e-01 -3.3537812650825460e-01 9.1340724067007855e+01 9.1348112618237977e+01 7.2792909047365628e-01 2 0 0 -87 0 P 190 223 -1.6042219073998230e+00 -4.8773340234512928e-02 2.1944811733768228e+02 2.1945536740554579e+02 7.7857130888372139e-01 2 0 0 -88 0 P 191 313 -1.7298625083610417e+00 -4.3028330181094976e+00 3.7940444719410345e+02 3.7943396185559055e+02 9.4343123063970880e-01 2 0 0 -89 0 P 192 -321 -1.2876702542981908e-01 3.4507550880508955e-02 1.4272399897622295e+01 1.4281554940396187e+01 4.9359999999999998e-01 1 0 0 0 0 P 193 211 6.7318407812458153e-02 -3.6959570371780576e-01 5.2116585613108327e+01 5.2118126486910356e+01 1.3957000000000000e-01 1 0 0 0 0 P 194 2112 -6.4226114423153202e-01 -1.5097903705238656e+00 1.5433988049862958e+02 1.5435146086272223e+02 9.3957000000000002e-01 1 0 0 0 0 P 195 -2112 3.9561856827363329e-01 -1.0493500544914369e+00 9.7300297167022464e+01 9.7311295696667216e+01 9.3957000000000002e-01 1 0 0 0 0 P 196 -211 1.6338462002990525e-01 -5.4409934438852980e-01 3.7116454971390972e+01 3.7121064748452731e+01 1.3957000000000000e-01 1 0 0 0 0 P 197 2212 1.7312536190735162e+00 -7.4395935046433670e-01 1.6430798587011540e+02 1.6432146933951037e+02 9.3827000000000005e-01 1 0 0 0 0 P 198 -2112 1.4673958575165986e+00 1.4263688175152825e-01 1.5211798587040718e+02 1.5212803164748104e+02 9.3957000000000002e-01 1 0 0 0 0 P 199 223 1.1123315838503505e+00 -2.1925231632954467e-01 1.0529459069430655e+02 1.0530374241328305e+02 8.0123881014021447e-01 2 0 0 -90 0 P 200 313 2.1709662121758853e+00 -4.2599966480439311e-01 3.0279973262004449e+02 3.0280898878648856e+02 8.4323491181887789e-01 2 0 0 -91 0 P 201 -311 5.9632473775491135e-01 -7.0798518813129319e-02 1.4469820026605950e+02 1.4470030218105521e+02 4.9767000000000000e-01 2 0 0 -92 0 P 202 -211 4.6955597141693256e-01 1.0324612699225821e-01 7.0702523823440401e+01 7.0704296173302581e+01 1.3957000000000000e-01 1 0 0 0 0 P 203 213 -4.8809355830684844e-03 5.5353589349255072e-01 2.6591569508567420e+02 2.6591800040855321e+02 9.5896953921878803e-01 2 0 0 -93 0 P 204 -213 -1.3659775230988078e-01 1.0206827435740824e+00 8.2686193949396784e+02 8.2686305179279361e+02 8.8260079144241299e-01 2 0 0 -94 0 P 205 211 2.5955600056407419e-02 -7.9203481188309985e-02 4.3268451513722039e+02 4.3268454567525407e+02 1.3957000000000000e-01 1 0 0 0 0 P 206 2112 -6.4524177796459314e-01 1.1885169546169752e+00 5.9838425719700024e+02 5.9838652304550953e+02 9.3957000000000002e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 207 92 -1.3342323530082951e+00 -9.2149367457135405e+00 -7.1651922059771380e+02 1.1468539660010711e+03 8.9542589342235976e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 20 0 P 208 313 -2.7382746275347412e+00 -5.7081544202905006e+00 1.2071052347248234e+02 1.2088132411796769e+02 1.0875976695290315e+00 2 0 0 -95 0 P 209 -313 -1.7735218984988119e-01 -1.1623917346048689e+00 2.3339061823973424e+01 2.3386941503872766e+01 9.2445537393138910e-01 2 0 0 -96 0 P 210 -3322 -6.8122923345491593e-01 -1.3815996351382833e+00 2.3870607335816310e+01 2.3956371749725694e+01 1.3149000000000000e+00 2 0 0 -97 0 P 211 3222 -3.2921474486931041e-01 -4.5121634074145733e-01 1.8938665562914363e+01 1.8984194289861495e+01 1.1893700000000000e+00 2 0 0 -98 0 P 212 221 1.9299282465580461e-01 -7.8204055195290578e-01 8.7117335587605389e+00 8.7660046062389227e+00 5.4744999999999999e-01 2 0 0 -99 0 P 213 113 -3.2674268128955536e-01 1.9562375318609176e-01 5.3063930849946592e+00 5.3482415000254928e+00 5.4849807431648723e-01 2 0 0 -100 0 P 214 -213 -1.9169837193372355e-01 -4.9822003103440032e-01 4.4811018099938602e+00 4.5784720701129338e+00 7.7276231801764539e-01 2 0 0 -101 0 P 215 -2114 -1.5591483108595369e-01 2.1100697102750931e-02 5.9933600119271313e+00 6.1092410493527352e+00 1.1737577657074494e+00 2 0 0 -102 0 P 216 111 -1.4738430867529168e-01 -4.8762471016726588e-01 6.8069761010387930e-01 8.6085354690013127e-01 1.3497999999999999e-01 2 0 0 -103 0 P 217 2112 3.9422751011879359e-01 3.8933318714510813e-02 2.3906498180343361e+00 2.5990247152361197e+00 9.3957000000000002e-01 1 0 0 0 0 P 218 211 -2.0490462554474026e-01 1.0264200476365604e-01 -9.1075486021090467e-03 2.6848467191456643e-01 1.3957000000000000e-01 1 0 0 0 0 P 219 -211 7.2368502557262793e-01 4.6207129506913538e-02 -9.9815109261416595e+00 1.0008790899436388e+01 1.3957000000000000e-01 1 0 0 0 0 P 220 113 1.4372261234003464e-01 2.6751594938738721e-01 -6.0588298946599073e+00 6.1264232583901306e+00 8.5523170897978251e-01 2 0 0 -104 0 P 221 213 5.8613897954521085e-02 4.0495673869174220e-01 -1.2970768532759486e+01 1.3004051181884613e+01 8.3491632000197669e-01 2 0 0 -105 0 P 222 -211 1.0973620505633090e+00 2.7007923384759755e-02 -2.5923273004442795e+01 2.5946878346840002e+01 1.3957000000000000e-01 1 0 0 0 0 P 223 111 2.7371396853439339e-01 2.5798000110106056e-01 -3.6607397625541744e+00 3.6824866906866269e+00 1.3497999999999999e-01 2 0 0 -106 0 P 224 223 -2.7855187504131622e-02 -2.8097066073114091e-01 -8.1668473647446504e+01 8.1672618449592889e+01 7.7284932907699111e-01 2 0 0 -107 0 P 225 113 3.6928450585985201e-01 -1.6092384743277216e-01 -2.8095070928589183e+02 2.8095226240459647e+02 8.4287275704424769e-01 2 0 0 -108 0 P 226 213 -2.3115425412991608e-01 -1.0549710928481139e-01 -1.5800176533320092e+02 1.5800283839977149e+02 5.2395805857497013e-01 2 0 0 -109 0 P 227 -213 6.2389030726452843e-01 4.4173477982599091e-01 -3.5171683675101542e+02 3.5171846254866387e+02 7.4784672507824546e-01 2 0 0 -110 0 V -13 0 0 0 0 0 0 1 0 P 228 92 3.8995531051010524e-01 -2.1810123039420368e+00 -3.5082643709543495e+03 3.5087992352121460e+03 6.1223097257560639e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 14 0 P 229 -213 4.0666886056117291e-01 -6.1538668430169907e-01 -1.2495408665933404e+01 1.2547230988182934e+01 8.6815171990183515e-01 2 0 0 -111 0 P 230 111 7.5204199250525761e-01 6.1789703226985890e-02 -3.9745025311392448e+00 4.0477493865540168e+00 1.3497999999999999e-01 2 0 0 -112 0 P 231 321 -2.5879864484651371e-01 -6.4648276583291320e-01 -4.4368632392450511e+00 4.5182201217799749e+00 4.9359999999999998e-01 1 0 0 0 0 P 232 -321 1.1519429085014183e+00 -4.4511266196714983e-01 -9.0027449436335747e+00 9.1004480783316417e+00 4.9359999999999998e-01 1 0 0 0 0 P 233 213 1.4358262460767365e-01 9.9676407096776928e-02 -4.8147329330607072e+00 4.9562716567888430e+00 1.1629377296175885e+00 2 0 0 -113 0 P 234 -213 3.1860821437333425e-01 -1.5071083478083279e-02 -4.6049063037702229e+00 4.6600405018176776e+00 6.3959133847719107e-01 2 0 0 -114 0 P 235 221 -1.2076496283981057e-01 -1.5168718841763495e-01 -2.6817200171223515e+01 2.6823488209130264e+01 5.4744999999999999e-01 2 0 0 -115 0 P 236 113 9.6497746332333240e-02 5.5438288975272872e-02 -1.6710458463442230e+01 1.6722629688582973e+01 6.2812134505752348e-01 2 0 0 -116 0 P 237 113 2.1812203441690989e-01 -1.2846511076390693e-01 -1.4394863016703295e+02 1.4394968374307368e+02 4.8912397111773787e-01 2 0 0 -117 0 P 238 323 -4.2222856387337476e-01 -5.3647592320449966e-02 -1.6320284754715738e+02 1.6320582240058533e+02 8.8874232845892154e-01 2 0 0 -118 0 P 239 -313 2.0641354999795841e-01 6.0247478516048680e-01 -9.4964670501397023e+01 9.4970095597900269e+01 7.9046316488024349e-01 2 0 0 -119 0 P 240 223 -1.6975808870783909e-01 -4.4257050029360667e-01 -1.6371896471316691e+02 1.6372155787249068e+02 7.9020186516548152e-01 2 0 0 -120 0 P 241 2214 2.0112521406468986e-01 1.4333275892653105e-01 -3.2709269174485541e+02 3.2709518212534908e+02 1.2522703736635981e+00 2 0 0 -121 0 P 242 113 -2.1334975745831053e+00 -6.4530065995264629e-01 -2.5324797490292922e+03 2.5324808148415786e+03 6.5579902258848988e-01 2 0 0 -122 0 V -15 0 0 0 0 0 5 1 0 P 80 1 -3.2076870411598786e+00 1.3715740542287624e+00 -1.4243398630178674e+00 3.7681846538672037e+00 0 2 0 0 -15 0 P 81 21 -2.3779658181329628e+00 -1.0354092481798272e+00 -7.9466128086252141e-01 2.7126150288470994e+00 0 2 0 0 -15 0 P 82 21 8.1186494829378264e-01 -1.1052620980611874e+00 -7.8884808088618321e+00 8.0068007638169760e+00 0 2 0 0 -15 0 P 83 21 2.5837592868830419e+00 -1.0677025038922150e+00 -2.0155050369911304e+01 2.0348018480997943e+01 0 2 0 0 -15 0 P 84 -1 3.2076870411598786e+00 -1.3715740542287624e+00 -2.1821323665445238e+01 2.2098430669447524e+01 0 2 0 0 -15 0 P 243 92 1.0176584170438625e+00 -3.2083738501332295e+00 -5.2083855988098762e+01 5.6934049596976749e+01 2.2747058216525453e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 10 0 P 244 -213 -3.0930223850186391e+00 6.5223582260394952e-01 -7.7880928518537096e-01 3.3362849581004652e+00 7.2942057582867281e-01 2 0 0 -123 0 P 245 211 -7.7444453823968218e-01 -5.7626685771285435e-01 -1.8023477919561797e+00 2.0493377423394219e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 -213 -5.3783744227896968e-01 5.3578735586533466e-01 -2.4022792868462806e-01 8.8164423425155725e-01 3.7848367606352207e-01 2 0 0 -124 0 P 247 211 -4.4244603743415399e-02 -8.7234853291904904e-02 -2.7612022845890684e-02 1.7265489652747765e-01 1.3957000000000000e-01 1 0 0 0 0 P 248 113 -3.3297355814535357e-01 -7.4365138051585633e-01 -2.4412198416303026e+00 2.6928754697936150e+00 7.9254981829509374e-01 2 0 0 -125 0 P 249 -211 3.3874775464171175e-01 3.9825579829565544e-01 -9.1796249769590132e-01 1.0655949766337156e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 321 1.9570960762086365e-01 -4.0532142584507747e-01 -1.9337180321474217e+00 2.0458480140558573e+00 4.9359999999999998e-01 1 0 0 0 0 P 251 3214 5.1398282665950168e-01 2.3520013485895689e-03 -4.6674004309450732e+00 4.8913760080181241e+00 1.3699447401329099e+00 2 0 0 -126 0 P 252 213 -9.1918745995717574e-02 -5.3019850768172627e-01 -3.7638925996216837e+00 3.8560377465659479e+00 6.4232397436275390e-01 2 0 0 -127 0 P 253 -2214 4.8436595015435620e+00 -2.4543318031993397e+00 -3.5510665557386311e+01 3.5942395550690563e+01 1.1677532387749940e+00 2 0 0 -128 0 V -17 0 0 0 0 0 2 1 0 P 85 21 -4.1871002882324931e-01 -2.3908079591114917e-01 6.2815776135353838e+02 6.2815794640074728e+02 0 2 0 0 -17 0 P 86 21 4.1871002882324931e-01 2.3908079591114917e-01 2.4435479909912043e+00 2.4906634657231046e+00 0 2 0 0 -17 0 P 254 92 0 0 6.3060130934452957e+02 6.3064860986647034e+02 7.7238448635659305e+00 2 0 0 -18 0 V -18 0 0 0 0 0 0 7 0 P 255 223 1.8365919601129010e-01 2.1942488421374393e-01 8.8637425650148856e+01 8.8641342777913479e+01 7.8265292805654063e-01 2 0 0 -129 0 P 256 2112 -2.8991574452770502e-01 4.4322736685967984e-01 6.0157880399615181e+01 6.0167548293053812e+01 9.3957000000000002e-01 1 0 0 0 0 P 257 -2212 -2.6089216703004153e-01 -1.2371353412559301e-01 2.1013356977820132e+02 2.1013586287943437e+02 9.3827000000000005e-01 1 0 0 0 0 P 258 323 -4.5188871183166862e-02 -4.8438578987298025e-01 1.1139371181449191e+02 1.1139851253036534e+02 9.1262836926027546e-01 2 0 0 -130 0 P 259 -313 3.3430082668848010e-01 4.7751599000405304e-01 5.7693944066861171e+01 5.7704129424232242e+01 9.1410724480553351e-01 2 0 0 -131 0 P 260 -213 -2.3431544754996422e-01 2.1939799532970133e-01 6.6791742114661872e+01 6.6796501907139017e+01 7.2994048361192332e-01 2 0 0 -132 0 P 261 213 3.1235220759110738e-01 -7.5146691240860497e-01 3.5793035520549324e+01 3.5804712054332157e+01 4.1682981695296217e-01 2 0 0 -133 0 V -19 0 0 0 0 0 0 2 0 P 262 -311 -1.9349455315880861e+00 -5.8102692848217066e+00 8.0637936353795453e+01 8.0871674263613599e+01 4.9767000000000000e-01 2 0 0 -134 0 P 263 -211 -1.0856836324199957e+00 -4.3280509375190555e+00 6.2851798646204756e+01 6.3010148442258334e+01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 0 2 0 P 264 321 -1.8091090782700785e+00 -4.0292304647937099e-01 1.7788506442472535e+01 1.7891613260194013e+01 4.9359999999999998e-01 1 0 0 0 0 P 265 111 -1.3915932849307242e+00 -1.3235099755047125e-01 1.8424585695602090e+01 1.8478030910034814e+01 1.3497999999999999e-01 2 0 0 -135 0 V -21 0 -1.2081257211092383e-04 -4.4387733812538620e-05 1.0653459863650908e-03 1.0732198148413474e-03 0 2 0 P 266 22 -7.8898752376684345e-01 -2.6446346383946145e-01 7.2549706440761037e+00 7.3025366334426378e+00 0 1 0 0 0 0 P 267 22 -1.9842295797440240e-01 -9.8320912500109547e-02 1.4521843749564023e+00 1.4689717937910458e+00 0 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 268 211 -3.9651157652017260e-01 -1.0163288796022685e-02 6.6394696069693486e+00 6.6527709392044594e+00 1.3957000000000000e-01 1 0 0 0 0 P 269 111 -1.0441631653210133e+00 2.3569247348142053e-01 5.7732548797322298e+00 5.8732034840128762e+00 1.3497999999999999e-01 2 0 0 -136 0 V -23 0 0 0 0 0 0 2 0 P 270 -211 2.8070001407069947e-03 7.0335941667401355e-02 3.2319543982902410e-01 3.5901267549531779e-01 1.3957000000000000e-01 1 0 0 0 0 P 271 111 -4.5078416777671176e-01 -1.8939599625149622e-01 8.2849569204463620e+00 8.3004703471168604e+00 1.3497999999999999e-01 2 0 0 -137 0 V -24 0 0 0 0 0 0 2 0 P 272 -2212 -3.6603022097705756e-01 -9.9078072526693872e-02 2.4812587031859108e+00 2.6796995973727999e+00 9.3827000000000005e-01 1 0 0 0 0 P 273 -211 -2.4308927353050733e-01 -3.2339578347859603e-02 1.8991706938426043e+00 1.9200175396292363e+00 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 274 -211 -1.8266589131592725e-01 2.3992959411799683e-01 4.9327573679754266e-01 5.9475522309352391e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 -7.0361509819214230e-01 -3.1324702490175288e-01 6.5465696513767535e-01 1.0198005919869868e+00 1.3497999999999999e-01 2 0 0 -138 0 V -26 0 0 0 0 0 0 2 0 P 276 -211 -4.6483614944987883e-01 8.6360969918074060e-01 -4.5534908287678741e-02 9.9168925129155583e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -3.2263055674934482e-01 3.1658310508066873e-01 -2.9082096755728604e-01 5.5417666329597992e-01 1.3497999999999999e-01 2 0 0 -139 0 V -27 0 0 0 0 0 0 2 0 P 278 211 4.1380886092169895e-02 1.0252668033627694e+00 9.0536400826538099e-01 1.3755174183462169e+00 1.3957000000000000e-01 1 0 0 0 0 P 279 111 2.1740839014249078e-01 4.3637819947061407e-01 -1.2977483486351494e-02 5.0604382868996933e-01 1.3497999999999999e-01 2 0 0 -140 0 V -28 0 0 0 0 0 0 2 0 P 280 311 9.1859555643380797e-01 1.3627056619613787e+00 -3.6983527392189103e-01 1.7564845789754080e+00 4.9767000000000000e-01 2 0 0 -141 0 P 281 211 1.4529326616482144e-01 -5.2229683761577092e-02 -1.0113555135391912e-01 2.3140064327122603e-01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 282 -321 -1.7392135099910114e-01 8.7188523547631147e-01 -1.3053198843930898e+00 1.6546701969779127e+00 4.9359999999999998e-01 1 0 0 0 0 P 283 211 1.4419647595274110e-02 2.0087639070763394e+00 -2.5774968171388797e+00 3.2708271106664180e+00 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 284 22 2.6365513104808608e-01 2.1869611095136779e-01 -1.4787446383134301e-01 3.7310705451203074e-01 0 1 0 0 0 0 P 285 22 8.1798538122195419e-01 1.3474151113791168e+00 -2.0398287855407844e+00 2.5778923640420701e+00 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 286 -211 3.3494665449000810e-01 5.1642662885220569e-01 -4.3787931253626219e-03 6.3117722001901921e-01 1.3957000000000000e-01 1 0 0 0 0 P 287 111 1.4598560164148702e-01 2.9454294335544928e-01 -7.0231779632298275e-01 7.8710687253961198e-01 1.3497999999999999e-01 2 0 0 -142 0 V -32 0 0 0 0 0 0 3 0 P 288 111 3.3851545520346464e-02 5.5062265801364196e-01 -6.9100454989175064e-01 8.9444850439990398e-01 1.3497999999999999e-01 2 0 0 -143 0 P 289 111 8.6520278321233102e-02 4.6163842974510205e-01 -6.5342457293232759e-01 8.1595286094853658e-01 1.3497999999999999e-01 2 0 0 -144 0 P 290 111 7.0651494844001919e-02 1.2319623275675887e-01 -1.1381450739143903e-01 2.2658836682827621e-01 1.3497999999999999e-01 2 0 0 -145 0 V -33 0 0 0 0 0 0 2 0 P 291 211 5.5648004406431018e-01 1.1818152685040353e+00 -2.3898824879529510e+00 2.7271551953336406e+00 1.3957000000000000e-01 1 0 0 0 0 P 292 111 -3.5610680307771730e-01 1.5717516046681372e+00 -2.4754017986734871e+00 2.9568646954588624e+00 1.3497999999999999e-01 2 0 0 -146 0 V -34 0 0 0 0 0 0 2 0 P 293 2112 2.9478199976822922e-01 7.8750018596818205e-01 -2.8118678472915715e+00 3.0816303389309065e+00 9.3957000000000002e-01 1 0 0 0 0 P 294 -211 1.3836539988966323e-01 -3.6974751814841521e-02 -4.3008359312169797e-01 4.7430348736949612e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 1.9196043442291740e-05 4.8337307746711601e-06 -4.9498782072223611e-05 5.8062491647172024e-05 0 2 0 P 295 22 9.2874707796863062e-02 -3.1660544806910718e-02 -2.4175458517628559e-01 2.6090875972182509e-01 0 1 0 0 0 0 P 296 22 1.9752240034513650e-02 6.0020990303215241e-02 -4.8664467214619388e-02 7.9755254577002485e-02 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 297 -2112 4.9221614642489309e-01 2.2905222542367967e-01 -3.7988856079100763e+00 3.9508309636909580e+00 9.3957000000000002e-01 1 0 0 0 0 P 298 211 2.2757029881345120e-02 2.9001311242671884e-01 -6.8709466870142410e-01 7.5908125813141558e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 299 2112 4.1223482825544144e-01 4.7363389427260809e-03 -1.1966851835667024e+01 1.2010757454392316e+01 9.3957000000000002e-01 1 0 0 0 0 P 300 -211 -2.1007722279003559e-02 -3.7867996977125886e-03 -2.4501853767906936e+00 2.4542501563178631e+00 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 0 2 0 P 301 211 3.7608222300765137e-01 8.2514505942856961e-02 -1.0671531692771590e+00 1.1430407489462724e+00 1.3957000000000000e-01 1 0 0 0 0 P 302 111 9.4671488888720401e-02 -2.2183620705684629e-01 -2.8529018299184146e+00 2.8662593122607753e+00 1.3497999999999999e-01 2 0 0 -147 0 V -39 0 0 0 0 0 0 2 0 P 303 -2112 1.1160977580282294e+00 1.3766750383020629e+00 -3.8294409140944367e+01 3.8346909544388360e+01 9.3957000000000002e-01 1 0 0 0 0 P 304 111 -1.7670725718486640e-02 -4.9365742178907886e-02 -2.5507248099098656e+00 2.5548318706595965e+00 1.3497999999999999e-01 2 0 0 -148 0 V -40 0 0 0 0 0 0 2 0 P 305 -211 -1.9390534675894522e-01 -7.1204483615148223e-02 -6.4370374577398470e+00 6.4418631139783216e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 4.2962438484266596e-01 -1.1058953555523583e-01 -1.9763144972196393e+01 1.9768584318303557e+01 1.3497999999999999e-01 2 0 0 -149 0 V -41 0 0 0 0 0 0 2 0 P 307 -311 5.4883322273629687e-01 -8.9371052090642833e-02 -1.1943917283508339e+01 1.1967206883626611e+01 4.9767000000000000e-01 2 0 0 -150 0 P 308 111 1.5415239053288707e-01 1.4508318021887304e-01 -2.6476265318329899e+00 2.6595033260282666e+00 1.3497999999999999e-01 2 0 0 -151 0 V -42 0 0 0 0 0 0 3 0 P 309 -211 4.2054671754998482e-02 -1.0226035472677973e-01 -2.7692277044175555e+01 2.7692849500400598e+01 1.3957000000000000e-01 1 0 0 0 0 P 310 211 4.0894913253621551e-01 7.5038688992939626e-02 -5.8881112465560854e+01 5.8882745818828575e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 111 1.0979013845947065e-02 2.5825389391569881e-01 -2.4431424991895714e+01 2.4433165213444905e+01 1.3497999999999999e-01 2 0 0 -152 0 V -43 0 0 0 0 0 0 2 0 P 312 -211 6.2428323697431043e-01 6.7703196771908858e-01 -1.6207244414876499e+02 1.6207512065084117e+02 1.3957000000000000e-01 1 0 0 0 0 P 313 111 -2.4320736409121649e-01 1.4097735355576879e-01 -5.8922476154818561e+01 5.8923301335309837e+01 1.3497999999999999e-01 2 0 0 -153 0 V -44 0 0 0 0 0 0 2 0 P 314 311 -3.3705035299443942e-01 5.5027625372316125e-01 -1.6665237011220276e+02 1.6665436251817525e+02 4.9767000000000000e-01 2 0 0 -154 0 P 315 211 7.4993138090366049e-02 -1.2580089752274434e-01 -5.4479080109437412e+01 5.4479455753448725e+01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 316 -311 2.7050418413029054e-01 2.5705620405289997e-01 -1.4791193027092021e+02 1.4791323822533309e+02 4.9767000000000000e-01 2 0 0 -155 0 P 317 111 2.8067874818066629e-01 -9.1013845075399121e-04 -2.3750978507790997e+01 2.3753020461953508e+01 1.3497999999999999e-01 2 0 0 -156 0 V -46 0 0 0 0 0 0 2 0 P 318 -211 2.7530203845124612e-01 4.3773268593503184e-01 -8.3917161542556812e+01 8.3918870835236973e+01 1.3957000000000000e-01 1 0 0 0 0 P 319 211 -2.3936289205333330e-01 1.1074809108543666e+00 -3.1194509552358642e+02 3.1194718448732050e+02 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 320 -311 4.4517245541605066e-01 -5.4485883325139417e-01 -7.1240421393939457e+01 7.1245634009939167e+01 4.9767000000000000e-01 2 0 0 -157 0 P 321 111 -3.2099753306302277e-02 -1.9386335755751863e-01 -5.6478741255353967e+01 5.6479244389290372e+01 1.3497999999999999e-01 2 0 0 -158 0 V -48 0 0 0 0 0 0 2 0 P 322 -211 -9.7328617211275825e-01 -5.1244730208594502e-01 -5.9357066216192784e+01 5.9367421013453466e+01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 -7.6486672883597770e-02 -2.8391185486104165e-01 -3.4753840840768895e+01 3.4755346767632105e+01 1.3497999999999999e-01 2 0 0 -159 0 V -49 0 0 0 0 0 0 2 0 P 324 22 6.4597039748958765e-02 -4.5632394769948664e-01 -1.9800920245435023e+01 1.9806283015469276e+01 0 1 0 0 0 0 P 325 22 -5.8532521814930516e-01 2.7005634745927054e-01 -2.9504238810076721e+01 2.9511279941809399e+01 0 1 0 0 0 0 V -50 0 -1.2846983354134980e-04 -1.5781297270047663e-04 -1.6051904765793889e-02 1.6053217339091607e-02 0 2 0 P 326 22 -2.4458071492097774e-01 -2.2000213711047417e-01 -2.8809858828463348e+01 2.8811736955317919e+01 0 1 0 0 0 0 P 327 22 -3.9684081270937904e-01 -5.6792320877897107e-01 -5.1333759267987261e+01 5.1338434529944230e+01 0 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 328 22 -4.6273741471635549e-01 6.7445238485157530e-02 -1.4618590624208437e+01 1.4626068050346523e+01 0 1 0 0 0 0 P 329 111 -2.7503220240396510e-02 -5.8515634803426686e-01 -2.9055880848012958e+01 2.9062098957802320e+01 1.3497999999999999e-01 2 0 0 -160 0 V -52 0 0 0 0 0 0 2 0 P 330 22 -9.4666182486658856e-01 -7.2505547054240937e-01 -5.2711443186772541e+01 5.2724928799177825e+01 0 1 0 0 0 0 P 331 22 -5.7058024859525283e-02 2.8653914031626319e-02 -6.1308751456553301e-01 6.1640324910430533e-01 0 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 332 211 -1.5242347777749981e+00 -7.6857555546171008e-01 -5.1904995561447272e+01 5.1933246038168974e+01 1.3957000000000000e-01 1 0 0 0 0 P 333 111 -1.1202866715255428e+00 1.1122837200291848e-01 -3.7738951399085892e+01 3.7755980801458506e+01 1.3497999999999999e-01 2 0 0 -161 0 V -54 0 -5.9531432198651059e-04 -1.7147962138781031e-04 -5.8903444847577908e-03 5.9230277010089011e-03 0 2 0 P 334 22 -1.3805326125757622e+00 -4.4513983939973795e-01 -1.3964142273368005e+01 1.4039276662345157e+01 0 1 0 0 0 0 P 335 22 -2.9696807133372133e-01 -3.8062347295023287e-02 -2.6339077595481299e+00 2.6508694542510249e+00 0 1 0 0 0 0 V -55 0 0 0 0 0 0 3 0 P 336 211 1.1891023037681459e-01 2.6655288668493576e-01 -3.5152169722394531e+00 3.5300736863567943e+00 1.3957000000000000e-01 1 0 0 0 0 P 337 -211 -7.6291755304772835e-02 -1.6614806407969260e-01 -4.1474953656668143e+00 4.1538684625602453e+00 1.3957000000000000e-01 1 0 0 0 0 P 338 111 -6.8066541957197191e-02 1.5014291875849334e-01 -1.4291110197850310e+00 1.4449061760053286e+00 1.3497999999999999e-01 2 0 0 -162 0 V -56 0 0 0 0 0 0 2 0 P 339 -211 -4.7907212553255202e-01 -5.5639746883653932e-02 -5.1051167866151488e+00 5.1297468819402132e+00 1.3957000000000000e-01 1 0 0 0 0 P 340 111 -6.7846908922600022e-02 -3.6855935982221194e-01 -8.8498625074170754e+00 8.8588218858575853e+00 1.3497999999999999e-01 2 0 0 -163 0 V -57 0 0 0 0 0 0 2 0 P 341 2112 -1.3448124535969217e+00 7.8291390592517807e-01 -1.9224958657625340e+01 1.9310704334429232e+01 9.3957000000000002e-01 1 0 0 0 0 P 342 211 -2.6978106957232073e-01 1.7213046425716966e-01 -5.1196055168770789e+00 5.1314959958635065e+00 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 343 -3122 3.2180315815878147e-01 -6.5692380038791065e-01 -3.2665124358350242e+00 3.5284488813049175e+00 1.1156800000000000e+00 2 0 0 -164 0 P 344 -211 -4.8522445507260509e-02 -4.5419000496693937e-02 -1.2120833264421516e+00 1.2219014233820971e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 1 0 P 345 310 5.1241314255859149e-01 2.5915591591447684e-01 1.8000873462950431e-01 7.8090178054807768e-01 4.9767000000000000e-01 2 0 0 -165 0 V -60 0 0 0 0 0 0 2 0 P 346 -311 8.6674440666963129e-02 -2.0855935638043521e-01 1.8544117525853058e-02 5.4683523752000929e-01 4.9767000000000000e-01 2 0 0 -166 0 P 347 -211 2.9123136806827179e-02 -4.3421842633385993e-01 6.3570547722867110e-01 7.8293999613243370e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 348 2212 -8.8691788391810661e-02 -1.0310836517471740e+00 -2.6081168082937870e-02 1.3971508688960530e+00 9.3827000000000005e-01 1 0 0 0 0 P 349 211 8.6488993353557933e-02 -4.0831701682105020e-01 -3.4451133581525090e-01 5.5890158132014811e-01 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 350 -211 2.1324701614135894e-01 -5.7725143774719567e-01 -1.3030227982943407e-01 6.4432288590670572e-01 1.3957000000000000e-01 1 0 0 0 0 P 351 111 -3.9310004743567883e-02 1.1513327254587812e-01 1.2153540626512044e-01 2.1861244771533631e-01 1.3497999999999999e-01 2 0 0 -167 0 V -63 0 2.3994530402272559e-05 -5.3028869899609080e-05 9.6741174046919456e-05 1.1297505645033302e-04 0 2 0 P 352 22 4.1446610416341212e-01 -9.8159923164476637e-01 1.8884352630688577e+00 2.1682958621617896e+00 0 1 0 0 0 0 P 353 22 3.7783864484892882e-01 -7.6942588748982388e-01 1.3059798947766241e+00 1.5621657157425843e+00 0 1 0 0 0 0 V -64 0 0 0 0 0 0 3 0 P 354 -211 8.9154781185109788e-01 1.5955116673023753e-01 1.8958479726039150e+00 2.1057144620645589e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 211 1.5456948607732263e-01 8.5865835958089831e-02 9.4199122885537800e-01 9.6855145859755654e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 111 1.2775255540264390e+00 4.7600586987386379e-01 3.7293929901379061e+00 3.9730649132168336e+00 1.3497999999999999e-01 2 0 0 -168 0 V -65 0 0 0 0 0 0 3 0 P 357 -211 4.3027470569747944e-01 2.5027332926351425e-01 1.5190167563587371e+00 1.6045761909932215e+00 1.3957000000000000e-01 1 0 0 0 0 P 358 211 8.8858150335274688e-01 6.4308137952426414e-01 5.9570298546615463e+00 6.0587800111095325e+00 1.3957000000000000e-01 1 0 0 0 0 P 359 111 3.1878434787050602e-01 1.9276716935364247e-02 1.6053042116056717e+00 1.6423203903203349e+00 1.3497999999999999e-01 2 0 0 -169 0 V -66 0 0 0 0 0 0 2 0 P 360 -311 5.5139067696274902e+00 1.6266861005097357e+00 2.6854864595868253e+01 2.7467812133933304e+01 4.9767000000000000e-01 2 0 0 -170 0 P 361 -211 1.2486260827454512e+01 3.6802800543992706e+00 6.3077469199242294e+01 6.4406814632430738e+01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 362 111 7.8824691669392732e-01 7.9583475402377213e-01 1.5323257241034707e+01 1.5364736191445401e+01 1.3497999999999999e-01 2 0 0 -171 0 P 363 111 1.4289637321486559e+00 1.2155558705666654e+00 2.1361958338236555e+01 2.1444602982270844e+01 1.3497999999999999e-01 2 0 0 -172 0 P 364 111 1.1443970754015653e+00 1.0096885748187359e+00 1.8191076459610777e+01 1.8255481315049256e+01 1.3497999999999999e-01 2 0 0 -173 0 V -68 0 0 0 0 0 0 1 0 P 365 310 5.6256764031642401e+00 2.9514285403270253e+00 1.0207472842878586e+02 1.0227344242109513e+02 4.9767000000000000e-01 2 0 0 -174 0 V -69 0 0 0 0 0 0 2 0 P 366 -211 3.4920224334873795e-01 -4.4515380338959847e-03 4.2697788936596828e+00 4.2863100224543214e+00 1.3957000000000000e-01 1 0 0 0 0 P 367 111 1.3238682921500462e+00 8.3015794154053169e-01 1.3004094188741590e+01 1.3098338624914454e+01 1.3497999999999999e-01 2 0 0 -175 0 V -70 0 0 0 0 0 0 3 0 P 368 -211 9.2360082406330396e-02 -1.4669508284010033e-01 1.8348213012734587e+00 1.8482691429167983e+00 1.3957000000000000e-01 1 0 0 0 0 P 369 211 2.8160384866790612e-02 -6.8960394849465378e-01 4.1352390173937614e+00 4.1947619871610096e+00 1.3957000000000000e-01 1 0 0 0 0 P 370 111 2.3994536508662362e-01 -1.1602799391269453e-01 1.1411864311214803e+00 1.1796450078620002e+00 1.3497999999999999e-01 2 0 0 -176 0 V -71 0 0 0 0 0 0 2 0 P 371 211 3.9468591281998408e-02 -8.3762063919324858e-01 6.8617060170870436e+00 6.9141633879109934e+00 1.3957000000000000e-01 1 0 0 0 0 P 372 -211 3.3433401455412515e-01 -1.0449279440366921e-01 3.2830849410578429e+00 3.3046670774029483e+00 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 3 0 P 373 211 -4.8035905858401451e-02 -9.5336904214686802e-01 3.4456595382802275e+00 3.5781656498011918e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 -211 6.7359413475730212e-02 -2.8039333387355741e-02 6.6126951355416885e-01 6.7976514271972555e-01 1.3957000000000000e-01 1 0 0 0 0 P 375 111 -1.6310328839947277e-01 -7.0959656698605145e-01 3.2411564568793869e+00 3.3246721265315853e+00 1.3497999999999999e-01 2 0 0 -177 0 V -73 0 0 0 0 0 0 3 0 P 376 111 2.1538428543598959e-01 -2.0428008782195300e-01 1.4441341422506599e+00 1.4804944329200858e+00 1.3497999999999999e-01 2 0 0 -178 0 P 377 111 1.1223896102513618e-01 -3.3025820250149898e-02 4.5730944260735573e-01 4.9095805917924151e-01 1.3497999999999999e-01 2 0 0 -179 0 P 378 111 1.2144673754699616e-01 -3.6781803085783826e-01 1.6055021188959455e+00 1.6570745511485949e+00 1.3497999999999999e-01 2 0 0 -180 0 V -74 0 1.5756637138047481e-04 -1.3460093270395356e-05 4.7543134311871937e-04 5.0221508369304043e-04 0 2 0 P 379 22 4.6205568581213186e-01 -9.3081245403360324e-02 1.3111722786442122e+00 1.3933170203949339e+00 0 1 0 0 0 0 P 380 22 1.5795819894684268e-01 4.0116614405771078e-02 5.5962052695657571e-01 5.8286814079778571e-01 0 1 0 0 0 0 V -75 0 -1.5936856001814604e-04 -3.1666471599815771e-04 1.1521972808381383e-03 1.2056291174141695e-03 0 2 0 P 381 22 -9.0983178608173720e-01 -1.8374551182156098e+00 6.4655939169275394e+00 6.7829152942545150e+00 0 1 0 0 0 0 P 382 22 -3.1567578879136182e-01 -5.9762372108992090e-01 2.3945381897724873e+00 2.4880953474329139e+00 0 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 383 211 -3.4993377991951355e+00 -6.0869163075294230e-01 1.8140028030515566e+01 1.8485020077538866e+01 1.3957000000000000e-01 1 0 0 0 0 P 384 -211 -2.8207551189579122e-01 -6.2051575729875894e-02 1.9108294796535317e+00 1.9375670511429584e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 111 -1.1958465924269803e+00 -2.8242410846858429e-01 5.4237178785705273e+00 5.5628003448253542e+00 1.3497999999999999e-01 2 0 0 -181 0 V -77 0 0 0 0 0 0 2 0 P 386 211 -1.0493879452959995e+00 -5.2688597434099249e-01 5.3536737342968168e+00 5.4827115670888107e+00 1.3957000000000000e-01 1 0 0 0 0 P 387 111 -8.0045425083509496e+00 -2.2764176177613131e+00 4.3447912421506167e+01 4.4237925938336232e+01 1.3497999999999999e-01 2 0 0 -182 0 V -78 0 0 0 0 0 0 2 0 P 388 211 -5.9488802963633602e-01 -1.0654303206823706e-02 5.7842392273054966e+00 5.8164343463655737e+00 1.3957000000000000e-01 1 0 0 0 0 P 389 111 -1.2832449115175444e+00 -2.7017919149309094e-01 4.9799338731956366e+00 5.1514731174929782e+00 1.3497999999999999e-01 2 0 0 -183 0 V -79 0 -3.2479255001356096e-03 -1.0395407843253085e-03 1.7772350182789758e-02 1.8096625420647845e-02 0 2 0 P 390 22 -5.3114750658679570e+00 -1.6393435745973619e+00 2.8782434527040948e+01 2.9314292623809116e+01 0 1 0 0 0 0 P 391 22 -5.1519823552574664e+00 -1.7096220140089780e+00 2.8472643954034716e+01 2.8985465035995162e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 1 0 P 392 310 -7.3780440509598433e-01 -1.7939227889137099e-01 6.6078639499574816e+00 6.6699384060089022e+00 4.9767000000000000e-01 2 0 0 -184 0 V -81 0 0 0 0 0 0 1 0 P 393 130 -6.5225017943249042e-01 1.4473484154480135e-01 5.2014449327694159e+00 5.2677398652989069e+00 4.9767000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 394 321 -1.4857129328157742e-01 -2.5530982381045533e-02 1.1147900532581637e+01 1.1159841060901480e+01 4.9359999999999998e-01 1 0 0 0 0 P 395 -211 -3.7941193913631138e-01 3.7921442052911508e-01 7.3832100180099109e+00 7.4039872333249139e+00 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 1 0 P 396 130 -6.5616508819327912e-01 -2.7844103527546904e-01 1.5867261229157192e+01 1.5891058378103832e+01 4.9767000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 397 -211 -5.0998854947827310e-01 3.4118561022822941e-01 2.7675895437244989e+01 2.7683048314436828e+01 1.3957000000000000e-01 1 0 0 0 0 P 398 111 -4.5054074182664494e-01 -3.9929203006990976e-01 2.1743981488146883e+01 2.1752732509792818e+01 1.3497999999999999e-01 2 0 0 -185 0 V -85 0 0 0 0 0 0 3 0 P 399 211 -1.3106936657703278e-01 1.2354928636434299e-01 1.4343157762572767e+01 1.4344967688773909e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 -211 -2.8266440427437239e-01 -1.5014023037743358e-02 9.1365955771096807e+00 9.1420447992170626e+00 1.3957000000000000e-01 1 0 0 0 0 P 401 221 -5.3628929237142187e-01 3.2757340630310805e-01 3.3858156218944984e+01 3.3868412342337692e+01 5.4744999999999999e-01 2 0 0 -186 0 V -86 0 0 0 0 0 0 2 0 P 402 -211 -2.4143524067467039e+00 -1.2150047593686580e-01 1.8389542123570661e+02 1.8391136259392047e+02 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -5.5872047895400356e-01 -2.3497554643106464e-01 2.9362931532081376e+01 2.9369496928601311e+01 1.3497999999999999e-01 2 0 0 -187 0 V -87 0 0 0 0 0 0 2 0 P 404 211 -7.3730239801442732e-01 -5.0891238107977665e-01 7.6860507653308588e+01 7.6865855379010398e+01 1.3957000000000000e-01 1 0 0 0 0 P 405 111 -1.0379603886648497e-01 1.7353425457152202e-01 1.4480216413699276e+01 1.4482257239227591e+01 1.3497999999999999e-01 2 0 0 -188 0 V -88 0 0 0 0 0 0 3 0 P 406 211 -3.6948916193151865e-01 6.8171020343775396e-02 8.0577541158682919e+01 8.0578538014119744e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 -211 -6.0233966712473386e-01 1.1499299550486286e-01 7.0205990222902372e+01 7.0208806993330768e+01 1.3957000000000000e-01 1 0 0 0 0 P 408 111 -6.3239307834357061e-01 -2.3193735608315119e-01 6.8664585956096985e+01 6.8668022398095275e+01 1.3497999999999999e-01 2 0 0 -189 0 V -89 0 0 0 0 0 0 2 0 P 409 311 -8.0170937784099938e-01 -1.5721073111494450e+00 1.3458880586127239e+02 1.3460129493402528e+02 4.9767000000000000e-01 2 0 0 -190 0 P 410 111 -9.2815313052004234e-01 -2.7307257069600523e+00 2.4481564133283106e+02 2.4483266692156528e+02 1.3497999999999999e-01 2 0 0 -191 0 V -90 0 0 0 0 0 0 3 0 P 411 -211 8.3127522233244364e-02 -7.9821873096297541e-02 2.4785086644962764e+01 2.4785747547725663e+01 1.3957000000000000e-01 1 0 0 0 0 P 412 211 6.2480270342751754e-01 -1.9904819518023248e-01 3.4755112521202996e+01 3.4761578283337428e+01 1.3957000000000000e-01 1 0 0 0 0 P 413 111 4.0440135818958861e-01 5.9617751946985334e-02 4.5754391528140793e+01 4.5756416582219970e+01 1.3497999999999999e-01 2 0 0 -192 0 V -91 0 0 0 0 0 0 2 0 P 414 321 9.6533612819469572e-01 -2.2316726007581056e-01 1.6765630212997436e+02 1.6765995634713619e+02 4.9359999999999998e-01 1 0 0 0 0 P 415 -211 1.2056300839811898e+00 -2.0283240472858258e-01 1.3514343049007016e+02 1.3514903243935242e+02 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 1 0 P 416 310 5.9632473775491135e-01 -7.0798518813129319e-02 1.4469820026605950e+02 1.4470030218105521e+02 4.9767000000000000e-01 2 0 0 -193 0 V -93 0 0 0 0 0 0 2 0 P 417 211 -2.1714196266102548e-01 1.0995369048603092e-01 2.2213829573909116e+01 2.2215601377626019e+01 1.3957000000000000e-01 1 0 0 0 0 P 418 111 2.1226102707795699e-01 4.4358220300651979e-01 2.4370186551176508e+02 2.4370239903092721e+02 1.3497999999999999e-01 2 0 0 -194 0 V -94 0 0 0 0 0 0 2 0 P 419 -211 4.3790217862364936e-02 1.0452249169012677e-01 4.1211908762840488e+02 4.1211912684318378e+02 1.3957000000000000e-01 1 0 0 0 0 P 420 111 -1.8038797017224570e-01 9.1616025188395556e-01 4.1474285186556295e+02 4.1474392494960983e+02 1.3497999999999999e-01 2 0 0 -195 0 V -95 0 0 0 0 0 0 2 0 P 421 321 -1.1374690758459647e+00 -2.6622390703877787e+00 4.8656924644043663e+01 4.8745474759638441e+01 4.9359999999999998e-01 1 0 0 0 0 P 422 -211 -1.6008055516887765e+00 -3.0459153499027223e+00 7.2053598828438680e+01 7.2135849358329253e+01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 423 -321 -1.4867339116009270e-01 -4.2702576173506179e-01 7.3751606908595804e+00 7.4054770916143422e+00 4.9359999999999998e-01 1 0 0 0 0 P 424 211 -2.8678798689788492e-02 -7.3536597286980709e-01 1.5963901133113842e+01 1.5981464412258422e+01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 -2.6204141361826586e+01 -5.3144566273237579e+01 9.1820599924648093e+02 9.2150501038036600e+02 0 2 0 P 425 -3122 -5.2078433099095545e-01 -1.2475711887188645e+00 2.1916853310089760e+01 2.1986833584414097e+01 1.1156800000000000e+00 2 0 0 -196 0 P 426 111 -1.6044490246396059e-01 -1.3402844641941886e-01 1.9537540257265509e+00 1.9695381653115984e+00 1.3497999999999999e-01 2 0 0 -197 0 V -98 0 -1.7468364696707798e+01 -2.3941854731672791e+01 1.0048988451392078e+03 1.0073146312450365e+03 0 2 0 P 427 2212 -4.2109318086644437e-01 -4.3813677093593567e-01 1.7614376667395558e+01 1.7649813009513938e+01 9.3827000000000005e-01 1 0 0 0 0 P 428 111 9.1878435997133981e-02 -1.3079569805521649e-02 1.3242888955188046e+00 1.3343812803475594e+00 1.3497999999999999e-01 2 0 0 -198 0 V -99 0 0 0 0 0 0 3 0 P 429 -211 1.2933091549877579e-01 -3.4989103612213052e-01 3.9249101579599985e+00 3.9450665084152829e+00 1.3957000000000000e-01 1 0 0 0 0 P 430 211 8.2628227976238589e-02 -7.9980867968961006e-02 1.0927107464335246e+00 1.1075743422321014e+00 1.3957000000000000e-01 1 0 0 0 0 P 431 111 -1.8966318819209762e-02 -3.5216864786181423e-01 3.6941126543670153e+00 3.7133637555915371e+00 1.3497999999999999e-01 2 0 0 -199 0 V -100 0 0 0 0 0 0 2 0 P 432 211 -2.2133557319509367e-01 1.9143295614623709e-01 1.3653167372968087e+00 1.4032838596318604e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 -211 -1.0540710809446170e-01 4.1907970398546721e-03 3.9410763476978508e+00 3.9449576403936324e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 434 -211 2.1845719369454736e-01 -2.4952861380852492e-01 2.8592011066464313e+00 2.8817527353564323e+00 1.3957000000000000e-01 1 0 0 0 0 P 435 111 -4.1015556562827088e-01 -2.4869141722587534e-01 1.6219007033474286e+00 1.6967193347565015e+00 1.3497999999999999e-01 2 0 0 -200 0 V -102 0 0 0 0 0 0 2 0 P 436 -2212 2.1951378012103548e-02 1.8608825128922188e-03 4.3352006618799575e+00 4.4356285572108920e+00 9.3827000000000005e-01 1 0 0 0 0 P 437 211 -1.7786620909805723e-01 1.9239814589858711e-02 1.6581593500471739e+00 1.6736124921418434e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 -7.4450283349640687e-05 -2.4632064408037981e-04 3.4385024025392069e-04 4.3485491138991604e-04 0 2 0 P 438 22 -4.5593883619994932e-02 -8.7920018617720905e-02 2.2715726876636066e-01 2.4780870979585584e-01 0 1 0 0 0 0 P 439 22 -1.0179042505529674e-01 -3.9970469154954497e-01 4.5354034133751869e-01 6.1304483710427582e-01 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 440 -211 -9.6242341200069262e-02 -8.3462303242476860e-02 -3.3101953362581887e-01 3.8115910174632373e-01 1.3957000000000000e-01 1 0 0 0 0 P 441 211 2.3996495354010391e-01 3.5097825262986410e-01 -5.7278103610340887e+00 5.7452641566438070e+00 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 442 211 -2.3845872819703773e-01 3.6857894243606382e-01 -1.0673951509675726e+01 1.0683886634444852e+01 1.3957000000000000e-01 1 0 0 0 0 P 443 111 2.9707262615155883e-01 3.6377796255678427e-02 -2.2968170230837606e+00 2.3201645474397612e+00 1.3497999999999999e-01 2 0 0 -201 0 V -106 0 7.2248745826572946e-06 6.8095653384775981e-06 -9.6627825776736685e-05 9.7201851388788307e-05 0 2 0 P 444 22 2.4885824371177009e-01 1.6587825707435508e-01 -3.0046232109644020e+00 3.0194712552861582e+00 0 1 0 0 0 0 P 445 22 2.4855724822623295e-02 9.2101744026705484e-02 -6.5611655158977245e-01 6.6301543540046892e-01 0 1 0 0 0 0 V -107 0 0 0 0 0 0 3 0 P 446 -211 1.6692439342749421e-01 -2.8892193262584986e-01 -3.8439022204827552e+01 3.8440723815823226e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 211 8.6332642570346469e-03 1.2529820551367998e-01 -1.9107486385762904e+01 1.9108408880400571e+01 1.3957000000000000e-01 1 0 0 0 0 P 448 111 -2.0341284518866051e-01 -1.1734693361897104e-01 -2.4121965056856048e+01 2.4123485753369096e+01 1.3497999999999999e-01 2 0 0 -202 0 V -108 0 0 0 0 0 0 2 0 P 449 211 5.9350662855568204e-01 -2.1115985935150328e-01 -1.6932030198729669e+02 1.6932153136402525e+02 1.3957000000000000e-01 1 0 0 0 0 P 450 -211 -2.2422212269583011e-01 5.0236011918731130e-02 -1.1163040729859516e+02 1.1163073104057121e+02 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 451 211 3.9112789198949255e-02 1.3027816841800269e-01 -4.4660285143011436e+01 4.4660710373340834e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 -2.7026704332886536e-01 -2.3577527770281409e-01 -1.1334148019018949e+02 1.1334212802643067e+02 1.3497999999999999e-01 2 0 0 -203 0 V -110 0 0 0 0 0 0 2 0 P 453 -211 2.4956258106052817e-01 -9.6668581972521428e-02 -5.1857732978259854e+01 5.1858611394116657e+01 1.3957000000000000e-01 1 0 0 0 0 P 454 111 3.7432772620400023e-01 5.3840336179851234e-01 -2.9985910377275553e+02 2.9985985115454713e+02 1.3497999999999999e-01 2 0 0 -204 0 V -111 0 0 0 0 0 0 2 0 P 455 -211 2.0452399474726166e-01 -1.2838700281558990e-01 -9.7868928440221936e-01 1.0176570086345775e+00 1.3957000000000000e-01 1 0 0 0 0 P 456 111 2.0214486581391120e-01 -4.8699968148610917e-01 -1.1516719381531184e+01 1.1529573979548356e+01 1.3497999999999999e-01 2 0 0 -205 0 V -112 0 2.3643872249471868e-04 1.9426413205528817e-05 -1.2495662614318962e-03 1.2725947533161483e-03 0 2 0 P 457 22 7.3403714386194296e-01 5.3507749263396534e-02 -3.9382758318348814e+00 4.0064560568431249e+00 0 1 0 0 0 0 P 458 22 1.8004848643314655e-02 8.2819539635893506e-03 -3.6226699304363431e-02 4.1293329710892154e-02 0 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 459 211 -9.1590900762755709e-02 5.3545198238296843e-01 -3.5045023347893434e+00 3.5491004660314061e+00 1.3957000000000000e-01 1 0 0 0 0 P 460 111 2.3517352537042938e-01 -4.3577557528619154e-01 -1.3102305982713640e+00 1.4071711907574371e+00 1.3497999999999999e-01 2 0 0 -206 0 V -114 0 0 0 0 0 0 2 0 P 461 -211 2.4497725539267390e-01 1.7411799977654810e-01 -3.9022240278213753e+00 3.9162690257070429e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 111 7.3630958980660383e-02 -1.8918908325463138e-01 -7.0268227594884780e-01 7.4377147611063454e-01 1.3497999999999999e-01 2 0 0 -207 0 V -115 0 0 0 0 0 0 3 0 P 463 111 9.2861856462791187e-02 1.5056955976047219e-02 -6.3384283009511142e+00 6.3405633001340664e+00 1.3497999999999999e-01 2 0 0 -208 0 P 464 111 -7.3196183338135032e-02 -1.2035463254336144e-01 -1.3037330810326555e+01 1.3038790479838227e+01 1.3497999999999999e-01 2 0 0 -209 0 P 465 111 -1.4043063596446670e-01 -4.6389511850320718e-02 -7.4414410599458485e+00 7.4441344291579723e+00 1.3497999999999999e-01 2 0 0 -210 0 V -116 0 0 0 0 0 0 2 0 P 466 211 -2.8038803492942466e-02 -2.1357408239686126e-01 -4.1701658394471401e+00 4.1780573208807041e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 -211 1.2453654982527571e-01 2.6901237137213413e-01 -1.2540292623995089e+01 1.2544572367702267e+01 1.3957000000000000e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 468 -211 1.6099742929382327e-01 -6.1575077143288880e-02 -1.2815545668736058e+02 1.2815564860821866e+02 1.3957000000000000e-01 1 0 0 0 0 P 469 211 5.7124605123086626e-02 -6.6890033620618058e-02 -1.5793173479672358e+01 1.5794035134855012e+01 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 470 311 -2.6462830651043939e-01 -1.6411805062262330e-01 -1.4756513415393232e+02 1.4756630189908566e+02 4.9767000000000000e-01 2 0 0 -211 0 P 471 211 -1.5760025736293534e-01 1.1047045830217332e-01 -1.5637713393225056e+01 1.5639520501499675e+01 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 472 -321 3.5352603102186686e-01 4.6799694979902234e-01 -6.7723101723072872e+01 6.7727440153554511e+01 4.9359999999999998e-01 1 0 0 0 0 P 473 211 -1.4711248102390842e-01 1.3447783536146438e-01 -2.7241568778324147e+01 2.7242655444345758e+01 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 474 -211 -2.6859378407411522e-01 -1.7772279897199780e-01 -9.3821107549951307e+01 9.3821764157889021e+01 1.3957000000000000e-01 1 0 0 0 0 P 475 211 6.5361613665616047e-02 -2.8879433150815598e-01 -3.2009108854774681e+01 3.2010782617239570e+01 1.3957000000000000e-01 1 0 0 0 0 P 476 111 3.3474081700660054e-02 2.3946630186547146e-02 -3.7888748308440917e+01 3.7889011097362086e+01 1.3497999999999999e-01 2 0 0 -212 0 V -121 0 0 0 0 0 0 2 0 P 477 2112 -1.7243063944401053e-02 1.4247263157552137e-01 -2.0360948754777627e+02 2.0361170596757682e+02 9.3957000000000002e-01 1 0 0 0 0 P 478 211 2.1836827800909092e-01 8.6012735100968998e-04 -1.2348320419707916e+02 1.2348347615777226e+02 1.3957000000000000e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 479 211 -4.8803838170908309e-01 -4.1492130402217281e-01 -7.3753615795888368e+02 7.3753644934856402e+02 1.3957000000000000e-01 1 0 0 0 0 P 480 -211 -1.6454591928740223e+00 -2.3037935593047354e-01 -1.7949435910704085e+03 1.7949443654930149e+03 1.3957000000000000e-01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 481 -211 -1.9743239913153658e+00 1.6373498560014557e-01 -2.5962912444506064e-01 2.0029107407353495e+00 1.3957000000000000e-01 1 0 0 0 0 P 482 111 -1.1186983937032733e+00 4.8850083700380398e-01 -5.1918016074031026e-01 1.3333742173651160e+00 1.3497999999999999e-01 2 0 0 -213 0 V -124 0 0 0 0 0 0 2 0 P 483 -211 -1.4609986427037538e-01 1.3784547979541956e-01 -1.8065465710466042e-01 3.0407636651580466e-01 1.3957000000000000e-01 1 0 0 0 0 P 484 111 -3.9173757800859427e-01 3.9794187606991510e-01 -5.9573271579967627e-02 5.7756786773575253e-01 1.3497999999999999e-01 2 0 0 -214 0 V -125 0 0 0 0 0 0 2 0 P 485 -211 -5.0550136751326864e-02 -3.2228152740580934e-01 -2.3690012443551331e-01 4.2664054318613576e-01 1.3957000000000000e-01 1 0 0 0 0 P 486 211 -2.8242342139402671e-01 -4.2136985311004704e-01 -2.2043197171947893e+00 2.2662349266074790e+00 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 487 3122 2.2529631594053279e-01 3.8886276104598112e-02 -3.7766302773495770e+00 3.9446100804311701e+00 1.1156800000000000e+00 2 0 0 -215 0 P 488 111 2.8868651071896884e-01 -3.6534274756008546e-02 -8.9077015359549627e-01 9.4676592758695366e-01 1.3497999999999999e-01 2 0 0 -216 0 V -127 0 0 0 0 0 0 2 0 P 489 211 2.0366740068452024e-01 -6.2916468509452803e-02 -8.6251362579613211e-01 8.9936001228389073e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 -2.9558614668023780e-01 -4.6728203917227346e-01 -2.9013789738255515e+00 2.9566777342820574e+00 1.3497999999999999e-01 2 0 0 -217 0 V -128 0 0 0 0 0 0 2 0 P 491 -2112 4.3203669887582938e+00 -2.1249088283014075e+00 -3.0537250391693586e+01 3.0928744910132316e+01 9.3957000000000002e-01 1 0 0 0 0 P 492 -211 5.2329251278526789e-01 -3.2942297489793226e-01 -4.9734151656927219e+00 5.0136506405582439e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 493 22 -1.5555955541155786e-01 2.3983123465759057e-01 1.3494592942690012e+01 1.3497620400844600e+01 0 1 0 0 0 0 P 494 111 3.3921875142284796e-01 -2.0406350443846640e-02 7.5142832707458851e+01 7.5143722377068883e+01 1.3497999999999999e-01 2 0 0 -218 0 V -130 0 0 0 0 0 0 2 0 P 495 311 -1.3726559431784971e-01 -6.2421414692218657e-01 9.2381676799655921e+01 9.2385228088096341e+01 4.9767000000000000e-01 2 0 0 -219 0 P 496 211 9.2076723134682834e-02 1.3982835704920632e-01 1.9012035014835977e+01 1.9013284442268976e+01 1.3957000000000000e-01 1 0 0 0 0 V -131 0 0 0 0 0 0 2 0 P 497 -321 4.2255228386907306e-01 2.7166106859086359e-01 5.1175074878445976e+01 5.1179920671522574e+01 4.9359999999999998e-01 1 0 0 0 0 P 498 211 -8.8251457180593004e-02 2.0585492141318945e-01 6.5188691884151915e+00 6.5242087527096695e+00 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 499 -211 4.3363713310664584e-03 1.1810798104759468e-02 5.3875875937314078e+01 5.3876058190042322e+01 1.3957000000000000e-01 1 0 0 0 0 P 500 111 -2.3865181888103068e-01 2.0758719722494184e-01 1.2915866177347787e+01 1.2920443717096695e+01 1.3497999999999999e-01 2 0 0 -220 0 V -133 0 0 0 0 0 0 2 0 P 501 211 2.3330854746526475e-01 -2.4351451426614446e-01 1.8163718118695424e+01 1.8167384728609207e+01 1.3957000000000000e-01 1 0 0 0 0 P 502 111 7.9043660125842616e-02 -5.0795239814246052e-01 1.7629317401853900e+01 1.7637327325722950e+01 1.3497999999999999e-01 2 0 0 -221 0 V -134 0 0 0 0 0 0 1 0 P 503 310 -1.9349455315880861e+00 -5.8102692848217066e+00 8.0637936353795453e+01 8.0871674263613599e+01 4.9767000000000000e-01 2 0 0 -222 0 V -135 0 -8.5795457760643032e-05 -8.1597939159973045e-06 1.1359251161398563e-03 1.1392201569301685e-03 0 2 0 P 504 22 -8.7564931615990660e-01 -2.0328308936276355e-02 1.1249147085684999e+01 1.1283194809999996e+01 0 1 0 0 0 0 P 505 22 -5.1594396877081761e-01 -1.1202268861419490e-01 7.1754386099170899e+00 7.1948361000348182e+00 0 1 0 0 0 0 V -136 0 -6.2347402388093445e-05 1.4073292347440214e-05 3.4472336990074590e-04 3.5069134124485852e-04 0 2 0 P 506 22 -4.3490047128587166e-02 3.0360969459396675e-02 1.8981226099543835e-01 1.9708340135577515e-01 0 1 0 0 0 0 P 507 22 -1.0006731181924260e+00 2.0533150402202385e-01 5.5834426187367914e+00 5.6761200826571008e+00 0 1 0 0 0 0 V -137 0 -2.4654383652266939e-04 -1.0358486139425878e-04 4.5312262732431531e-03 4.5397109095777028e-03 0 2 0 P 508 22 -3.6838382341679726e-01 -1.1154145037036109e-01 6.9775004582119529e+00 6.9881085266940364e+00 0 1 0 0 0 0 P 509 22 -8.2400344359914529e-02 -7.7854545881135134e-02 1.3074564622344096e+00 1.3123618204228238e+00 0 1 0 0 0 0 V -138 0 -4.6166559904654874e-04 -2.0553193894273930e-04 4.2954251657878321e-04 6.6912556654537562e-04 0 2 0 P 510 22 -3.0036837908969788e-01 -2.0644897134027956e-01 2.9103397509712542e-01 4.6641517512326530e-01 0 1 0 0 0 0 P 511 22 -4.0324671910244442e-01 -1.0679805356147332e-01 3.6362299004054993e-01 5.5338541686372156e-01 0 1 0 0 0 0 V -139 0 -2.1236822189111757e-05 2.0838754947499863e-05 -1.9142988931695679e-05 3.6478104796860302e-05 0 2 0 P 512 22 -9.9699549515903305e-02 2.4051078886745323e-02 -8.1416011404408420e-02 1.3094663600983902e-01 0 1 0 0 0 0 P 513 22 -2.2293100723344150e-01 2.9253202619392343e-01 -2.0940495615287760e-01 4.2323002728614101e-01 0 1 0 0 0 0 V -140 0 3.4038026105235305e-05 6.8320512081439437e-05 -2.0317887520310557e-06 7.9227545174559297e-05 0 2 0 P 514 22 6.4705736636484240e-02 2.9351679628975200e-02 1.6252017817417184e-03 7.1070350579854544e-02 0 1 0 0 0 0 P 515 22 1.5270265350600654e-01 4.0702651984163885e-01 -1.4602685268093213e-02 4.3497347811011478e-01 0 1 0 0 0 0 V -141 0 0 0 0 0 0 1 0 P 516 310 9.1859555643380797e-01 1.3627056619613787e+00 -3.6983527392189103e-01 1.7564845789754080e+00 4.9767000000000000e-01 2 0 0 -223 0 V -142 0 3.7424610186866122e-05 7.5508507102232313e-05 -1.8004494593401696e-04 2.0178132328789192e-04 0 2 0 P 517 22 8.8952017144560483e-02 2.8108454034144725e-01 -5.5258612966994536e-01 6.2631654207489884e-01 0 1 0 0 0 0 P 518 22 5.7033584496926533e-02 1.3458403014002042e-02 -1.4973166665303739e-01 1.6079033046471317e-01 0 1 0 0 0 0 V -143 0 9.6522007550629743e-06 1.5700082090017560e-04 -1.9702836416163853e-04 2.5503699747902499e-04 0 2 0 P 519 22 -1.8758280601125835e-02 5.8270503017427318e-02 -2.8962430848033197e-02 6.7721097256628088e-02 0 1 0 0 0 0 P 520 22 5.2609826121472303e-02 4.9235215499621460e-01 -6.6204211904371746e-01 8.2672740714327575e-01 0 1 0 0 0 0 V -144 0 2.7399351396204922e-06 1.4619224302095425e-05 -2.0692732191886932e-05 2.5839698615926795e-05 0 2 0 P 521 22 8.4187554169026582e-02 2.9077222923048524e-01 -3.1525364704800074e-01 4.3705937302121090e-01 0 1 0 0 0 0 P 522 22 2.3327241522065191e-03 1.7086620051461682e-01 -3.3817092588432679e-01 3.7889348792732547e-01 0 1 0 0 0 0 V -145 0 4.6331375159556262e-08 8.0788819694477947e-08 -7.4636533199984051e-08 1.4859063709114531e-07 0 2 0 P 523 22 -2.1207977302926210e-05 -1.0674877250133769e-02 2.1206478092515677e-02 2.3741696804821435e-02 0 1 0 0 0 0 P 524 22 7.0672702821304834e-02 1.3387111000689261e-01 -1.3502098548395472e-01 2.0284667002345463e-01 0 1 0 0 0 0 V -146 0 -4.0411838714086161e-05 1.7836607387866372e-04 -2.8091442616646621e-04 3.3555196963249502e-04 0 2 0 P 525 22 -6.8226392324514357e-02 5.5595334636646176e-01 -9.1513070015766429e-01 1.0729413601482343e+00 0 1 0 0 0 0 P 526 22 -2.8788041075320298e-01 1.0157982583016756e+00 -1.5602710985158230e+00 1.8839233353106291e+00 0 1 0 0 0 0 V -147 0 2.6666057814837792e-05 -6.2484462769519096e-05 -8.0357503647251701e-04 8.0733742999334495e-04 0 2 0 P 527 22 1.1242632821306113e-01 -1.3875968153327553e-01 -2.2936269806124447e+00 2.3005692023253821e+00 0 1 0 0 0 0 P 528 22 -1.7754839324340729e-02 -8.3076525523570754e-02 -5.5927484930597005e-01 5.6569010993539293e-01 0 1 0 0 0 0 V -148 0 -5.3203295817981182e-07 -1.4863114431519564e-06 -7.6797619279396877e-05 7.6921275303202250e-05 0 2 0 P 529 22 -6.7596540675389141e-03 -5.6021526539332442e-02 -3.8920266748965399e-01 3.9327194247743130e-01 0 1 0 0 0 0 P 530 22 -1.0911071650947726e-02 6.6557843604245623e-03 -2.1615221424202118e+00 2.1615599281821649e+00 0 1 0 0 0 0 V -149 0 6.5275003894740447e-05 -1.6802427000807111e-05 -3.0027144886221224e-03 3.0035409159639040e-03 0 2 0 P 531 22 3.7844451056154133e-01 -8.7221380394416501e-02 -1.4708873118244226e+01 1.4713999328033822e+01 0 1 0 0 0 0 P 532 22 5.1179874281124631e-02 -2.3368155160819328e-02 -5.0542718539521676e+00 5.0545849902697393e+00 0 1 0 0 0 0 V -150 0 0 0 0 0 0 1 0 P 533 130 5.4883322273629687e-01 -8.9371052090642833e-02 -1.1943917283508339e+01 1.1967206883626611e+01 4.9767000000000000e-01 1 0 0 0 0 V -151 0 5.0478281553856379e-06 4.7508505022208807e-06 -8.6698387914272009e-05 8.7087301870957228e-05 0 2 0 P 534 22 2.1729522569101597e-02 6.9575178422625797e-02 -3.9113375908434833e-01 3.9786743407707320e-01 0 1 0 0 0 0 P 535 22 1.3242286796378547e-01 7.5508001796247226e-02 -2.2564927727486417e+00 2.2616358919511921e+00 0 1 0 0 0 0 V -152 0 1.4114397089121922e-06 3.3200595788334297e-05 -3.1408543483712813e-03 3.1410780677172349e-03 0 2 0 P 536 22 -2.1623040099060478e-02 3.7701687280583429e-02 -1.4314070091980542e+00 1.4320666880659736e+00 0 1 0 0 0 0 P 537 22 3.2602053945007543e-02 2.2055220663511538e-01 -2.3000017982697660e+01 2.3001098525378929e+01 0 1 0 0 0 0 V -153 0 -1.0940552110964383e-04 6.3417902200702377e-05 -2.6505958127035604e-02 2.6506329330029367e-02 0 2 0 P 538 22 -8.5597413522530072e-03 5.9042885607305196e-02 -1.5395329174962701e+01 1.5395444772301010e+01 0 1 0 0 0 0 P 539 22 -2.3464762273896347e-01 8.1934467948463596e-02 -4.3527146979855857e+01 4.3527856563008811e+01 0 1 0 0 0 0 V -154 0 0 0 0 0 0 1 0 P 540 310 -3.3705035299443942e-01 5.5027625372316125e-01 -1.6665237011220276e+02 1.6665436251817525e+02 4.9767000000000000e-01 2 0 0 -224 0 V -155 0 0 0 0 0 0 1 0 P 541 310 2.7050418413029054e-01 2.5705620405289997e-01 -1.4791193027092021e+02 1.4791323822533309e+02 4.9767000000000000e-01 2 0 0 -225 0 V -156 0 1.3771355459079562e-05 -4.4655465380091600e-08 -1.1653292942621120e-03 1.1654294816713312e-03 0 2 0 P 542 22 1.8064749762216967e-01 6.1712765768094736e-02 -1.3161427202749984e+01 1.3162811553659164e+01 0 1 0 0 0 0 P 543 22 1.0003125055849664e-01 -6.2622904218848724e-02 -1.0589551305041015e+01 1.0590208908294347e+01 0 1 0 0 0 0 V -157 0 0 0 0 0 0 1 0 P 544 130 4.4517245541605066e-01 -5.4485883325139417e-01 -7.1240421393939457e+01 7.1245634009939167e+01 4.9767000000000000e-01 1 0 0 0 0 V -158 0 -1.9395798046311311e-06 -1.1713904763957261e-05 -3.4126438569346954e-03 3.4126742580537564e-03 0 2 0 P 545 22 -5.7147690181558672e-02 -8.9565466894469412e-02 -4.0693915231577805e+01 4.0694053923223152e+01 0 1 0 0 0 0 P 546 22 2.5047936875256395e-02 -1.0429789066304922e-01 -1.5784826023776164e+01 1.5785190466067229e+01 0 1 0 0 0 0 V -159 0 -1.1755603241592278e-05 -4.3635773338059028e-05 -5.3414843219456755e-03 5.3417157750609359e-03 0 2 0 P 547 22 -2.7265676756948357e-02 -1.4788818367526024e-01 -2.4787862671424115e+01 2.4788318824587133e+01 0 1 0 0 0 0 P 548 22 -4.9220996126649416e-02 -1.3602367118578140e-01 -9.9659781693447798e+00 9.9670279430449717e+00 0 1 0 0 0 0 V -160 0 -9.3875745883035676e-06 -1.9972929769593436e-04 -9.9175386120403750e-03 9.9196610169418938e-03 0 2 0 P 549 22 1.9490637920716956e-02 -4.4196146198746028e-01 -2.3555211010351311e+01 2.3559364922701626e+01 0 1 0 0 0 0 P 550 22 -4.6993858161113469e-02 -1.4319488604680655e-01 -5.5006698376616461e+00 5.5027340351006790e+00 0 1 0 0 0 0 V -161 0 -4.5507837739801010e-06 4.5182745040412001e-07 -1.5330166111868085e-04 1.5337083727686210e-04 0 2 0 P 551 22 -2.0728247934453423e-01 -1.1210148708021884e-02 -5.6581544559058523e+00 5.6619611037664770e+00 0 1 0 0 0 0 P 552 22 -9.1300419218100859e-01 1.2243852071094036e-01 -3.2080796943180040e+01 3.2094019697692012e+01 0 1 0 0 0 0 V -162 0 -8.4467899949421099e-06 1.8632145361198983e-05 -1.7734705358137142e-04 1.7930717030970552e-04 0 2 0 P 553 22 -5.5816145514736792e-02 1.7386772659004762e-01 -1.1361838538747457e+00 1.1507646059274603e+00 0 1 0 0 0 0 P 554 22 -1.2250396442460393e-02 -2.3724807831554295e-02 -2.9292716591028528e-01 2.9414157007786818e-01 0 1 0 0 0 0 V -163 0 -3.3704114906074784e-06 -1.8308817911407305e-05 -4.3963208875620754e-04 4.4007716123665091e-04 0 2 0 P 555 22 -1.4557556655504638e-02 -1.7269363664889065e-01 -2.6648938768081387e+00 2.6705232425957854e+00 0 1 0 0 0 0 P 556 22 -5.3289352267095386e-02 -1.9586572317332132e-01 -6.1849686306089362e+00 6.1882986432617999e+00 0 1 0 0 0 0 V -164 0 1.4138787997577240e+00 -2.8862694814401282e+00 -1.4351794148313809e+01 1.5502641732447971e+01 0 2 0 P 557 -2212 2.7009338758840790e-01 -4.8120028090698719e-01 -2.8759129540853960e+00 3.0750170829997243e+00 9.3827000000000005e-01 1 0 0 0 0 P 558 211 5.1709770570373563e-02 -1.7572351948092352e-01 -3.9059948174962811e-01 4.5343179830519303e-01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 1.7090718885837802e+01 8.6437301049312829e+00 6.0039027593763503e+00 2.6045726973662351e+01 0 2 0 P 559 -211 4.3331294071258586e-01 2.3606807561955376e-01 -3.2273448761308866e-02 5.1381864632441776e-01 1.3957000000000000e-01 1 0 0 0 0 P 560 211 7.9100201846005636e-02 2.3087840294923091e-02 2.1228218339081317e-01 2.6708313422365992e-01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 0 0 0 0 0 1 0 P 561 310 8.6674440666963129e-02 -2.0855935638043521e-01 1.8544117525853058e-02 5.4683523752000929e-01 4.9767000000000000e-01 2 0 0 -226 0 V -167 0 -5.1815500671392123e-06 1.5176004683328505e-05 1.6019885945088013e-05 2.8815853636400672e-05 0 2 0 P 562 22 -2.8072538539305806e-02 9.1610667892412678e-02 1.5501844866128859e-03 9.5827892409659485e-02 0 1 0 0 0 0 P 563 22 -1.1237466204262079e-02 2.3522604653465437e-02 1.1998522177850757e-01 1.2278455530567682e-01 0 1 0 0 0 0 V -168 0 1.1555350369839760e-04 4.3055221769591427e-05 3.3732744156893789e-04 3.5936781827682632e-04 0 2 0 P 564 22 5.4353243968128995e-01 1.9272140941272692e-01 1.3885592177521637e+00 1.5035510486300172e+00 0 1 0 0 0 0 P 565 22 7.3399311434514902e-01 2.8328446046113687e-01 2.3408337723857424e+00 2.4695138645868169e+00 0 1 0 0 0 0 V -169 0 1.0147858845279964e-04 6.1363553062509908e-06 5.1101632347787501e-04 5.2279967981570406e-04 0 2 0 P 566 22 1.5547294887490892e-01 -4.1773569015163936e-02 9.8126389920426482e-01 9.9438207384369237e-01 0 1 0 0 0 0 P 567 22 1.6331139899559710e-01 6.1050285950528180e-02 6.2404031240140689e-01 6.4793831647664279e-01 0 1 0 0 0 0 V -170 0 0 0 0 0 0 1 0 P 568 310 5.5139067696274902e+00 1.6266861005097357e+00 2.6854864595868253e+01 2.7467812133933304e+01 4.9767000000000000e-01 2 0 0 -227 0 V -171 0 1.3934725774550130e-04 1.4068864494504472e-04 2.7088642290194857e-03 2.7161969288010900e-03 0 2 0 P 569 22 5.9584375480951401e-01 5.5549413298175410e-01 1.0393586709602799e+01 1.0425461534241760e+01 0 1 0 0 0 0 P 570 22 1.9240316188441331e-01 2.4034062104201803e-01 4.9296705314319089e+00 4.9392746572036401e+00 0 1 0 0 0 0 V -172 0 4.9841016834674856e-04 4.2397535532482197e-04 7.4508659751408544e-03 7.4796917108956385e-03 0 2 0 P 571 22 1.2066059816305954e+00 9.6808509969208090e-01 1.7275517816516572e+01 1.7344641898405804e+01 0 1 0 0 0 0 P 572 22 2.2235775051806045e-01 2.4747077087458455e-01 4.0864405217199833e+00 4.0999610838650407e+00 0 1 0 0 0 0 V -173 0 7.5985601873553450e-05 6.7041235696561536e-05 1.2078499003733683e-03 1.2121262497360708e-03 0 2 0 P 573 22 8.8785304091289752e-01 7.6477497397646943e-01 1.4588512680629391e+01 1.4635500196985532e+01 0 1 0 0 0 0 P 574 22 2.5654403448866780e-01 2.4491360084226640e-01 3.6025637789813856e+00 3.6199811180637242e+00 0 1 0 0 0 0 V -174 0 9.6650644928957405e+01 5.0706342036291197e+01 1.7536714923811292e+03 1.7570854526121686e+03 0 2 0 P 575 111 3.5802785168752527e+00 1.7155937652597784e+00 6.5888610438156647e+01 6.6008248433793199e+01 1.3497999999999999e-01 2 0 0 -228 0 P 576 111 2.0453978862889874e+00 1.2358347750672469e+00 3.6186117990629221e+01 3.6265193987301942e+01 1.3497999999999999e-01 2 0 0 -229 0 V -175 0 1.0576194172464384e-03 6.6320128940371148e-04 1.0388784593804502e-02 1.0464075124029368e-02 0 2 0 P 577 22 7.6162650348082594e-01 4.2091682817416931e-01 6.8342971863824538e+00 6.8894748666962826e+00 0 1 0 0 0 0 P 578 22 5.6224178866922025e-01 4.0924111336636237e-01 6.1697970023591360e+00 6.2088637582181736e+00 0 1 0 0 0 0 V -176 0 1.4949649518432252e-04 -7.2290533417695621e-05 7.1100924055347511e-04 7.3497062205550752e-04 0 2 0 P 579 22 -4.6802341569177272e-03 1.0529222608887440e-02 1.6346537662420793e-01 1.6387098118765636e-01 0 1 0 0 0 0 P 580 22 2.4462559924354135e-01 -1.2655721652158197e-01 9.7772105449727242e-01 1.0157740266743438e+00 0 1 0 0 0 0 V -177 0 -1.2486968081670947e-05 -5.4325757437314467e-05 2.4813857293686192e-04 2.5453242012105976e-04 0 2 0 P 581 22 -1.2942352584606154e-01 -3.8950622001166507e-01 2.0572829685923213e+00 2.0978271514427100e+00 0 1 0 0 0 0 P 582 22 -3.3679762553411235e-02 -3.2009034697438637e-01 1.1838734882870656e+00 1.2268449750888748e+00 0 1 0 0 0 0 V -178 0 2.6170479626041911e-05 -2.4821253163983926e-05 1.7547094055881979e-04 1.7988893346965342e-04 0 2 0 P 583 22 1.6302983736504212e-01 -1.9813920698452070e-01 9.6722162184449267e-01 1.0006775399594106e+00 0 1 0 0 0 0 P 584 22 5.2354448070947454e-02 -6.1408808374323219e-03 4.7691252040616733e-01 4.7981689296067520e-01 0 1 0 0 0 0 V -179 0 8.6261637409153054e-06 -2.5382107118046873e-06 3.5146673634249942e-05 3.7732749570389086e-05 0 2 0 P 585 22 3.8378808239294890e-02 -7.7418884221824372e-02 1.6563172070966214e-01 1.8681671087262069e-01 0 1 0 0 0 0 P 586 22 7.3860152785841293e-02 4.4393063971674467e-02 2.9167772189769359e-01 3.0414134830662093e-01 0 1 0 0 0 0 V -180 0 6.1739751424677580e-05 -1.8698726909720104e-04 8.1618743932146507e-04 8.4240526296956817e-04 0 2 0 P 587 22 1.3049681735086363e-01 -2.1800829959965901e-01 8.6636192321913141e-01 9.0285105085888417e-01 0 1 0 0 0 0 P 588 22 -9.0500798038674873e-03 -1.4980973125817926e-01 7.3914019567681410e-01 7.5422350028971075e-01 0 1 0 0 0 0 V -181 0 -5.2208875999411267e-05 -1.2330214721233937e-05 2.3679142121682219e-04 2.4286355394720328e-04 0 2 0 P 589 22 -4.8394430082517337e-01 -1.8083602385886663e-01 2.1984573263653600e+00 2.2583441654618936e+00 0 1 0 0 0 0 P 590 22 -7.1190229160180696e-01 -1.0158808460971766e-01 3.2252605522051678e+00 3.3044561793634606e+00 0 1 0 0 0 0 V -182 0 -7.3908028098634636e-05 -2.1018757422076713e-05 4.0116590407578926e-04 4.0846030486624822e-04 0 2 0 P 591 22 -6.4627272217702769e-01 -1.5962963356926513e-01 3.6286008157349539e+00 3.6891589734377042e+00 0 1 0 0 0 0 P 592 22 -7.3582697861739215e+00 -2.1167879841920483e+00 3.9819311605771212e+01 4.0548766964898519e+01 0 1 0 0 0 0 V -183 0 -4.7101252288577042e-04 -9.9168741270055371e-05 1.8278749413814560e-03 1.8908380838846748e-03 0 2 0 P 593 22 -3.4531409737807583e-01 -1.0491432677101196e-01 1.5779130056184123e+00 1.6186594129431866e+00 0 1 0 0 0 0 P 594 22 -9.3793081413946866e-01 -1.6526486472207896e-01 3.4020208675772241e+00 3.5328137045497918e+00 0 1 0 0 0 0 V -184 0 -3.9211139929865702e+01 -9.5339302684590681e+00 3.5117962998010313e+02 3.5447862110226362e+02 0 2 0 P 595 -211 -4.9320150462478662e-01 -2.0476662362655544e-02 2.6708170222965464e+00 2.7196342344798241e+00 1.3957000000000000e-01 1 0 0 0 0 P 596 211 -2.4460290047119768e-01 -1.5891561652871544e-01 3.9370469276609348e+00 3.9503041715290772e+00 1.3957000000000000e-01 1 0 0 0 0 V -185 0 -6.2775279628780994e-05 -5.5634633040194079e-05 3.0296583448310311e-03 3.0308776526091329e-03 0 2 0 P 597 22 -1.3875505264103935e-01 -1.6794446102154015e-01 5.9687134651906426e+00 5.9726877313458573e+00 0 1 0 0 0 0 P 598 22 -3.1178568918560556e-01 -2.3134756904836959e-01 1.5775268022956240e+01 1.5780044778446960e+01 0 1 0 0 0 0 V -186 0 0 0 0 0 0 3 0 P 599 111 -2.3177293162346879e-01 1.5511012600475951e-01 1.6246469251004324e+01 1.6249423391839219e+01 1.3497999999999999e-01 2 0 0 -230 0 P 600 111 -2.2106866891550547e-01 2.2027844412675218e-01 1.2446651694326187e+01 1.2451295191649578e+01 1.3497999999999999e-01 2 0 0 -231 0 P 601 111 -8.3447691832447615e-02 -4.7815163828403659e-02 5.1650352736144747e+00 5.1676937588488983e+00 1.3497999999999999e-01 2 0 0 -232 0 V -187 0 -1.1241021988603052e-04 -4.7275254509385257e-05 5.9075937151955634e-03 5.9089146219713923e-03 0 2 0 P 602 22 -2.5296050453396191e-01 -9.6014655421174433e-02 1.0032099743474328e+01 1.0035747759580618e+01 0 1 0 0 0 0 P 603 22 -3.0575997442004171e-01 -1.3896089100989023e-01 1.9330831788607050e+01 1.9333749169020695e+01 0 1 0 0 0 0 V -188 0 -1.4428484870363361e-05 2.4122658185402688e-05 2.0128666346641141e-03 2.0131503258394223e-03 0 2 0 P 604 22 3.2103600894754572e-02 4.3890775622081386e-02 2.7546880007659631e+00 2.7552246773973068e+00 0 1 0 0 0 0 P 605 22 -1.3589963976123953e-01 1.2964347894944062e-01 1.1725528412933313e+01 1.1727032561830285e+01 0 1 0 0 0 0 V -189 0 -1.8142622689746920e-04 -6.6540132761983939e-05 1.9699071950821712e-02 1.9700057826105701e-02 0 2 0 P 606 22 -5.9400228071059635e-01 -1.8022382761624062e-01 6.0592989647058914e+01 6.0596169133915716e+01 0 1 0 0 0 0 P 607 22 -3.8390797632974295e-02 -5.1713528466910588e-02 8.0715963090380694e+00 8.0718532641795715e+00 0 1 0 0 0 0 V -190 0 0 0 0 0 0 1 0 P 608 130 -8.0170937784099938e-01 -1.5721073111494450e+00 1.3458880586127239e+02 1.3460129493402528e+02 4.9767000000000000e-01 1 0 0 0 0 V -191 0 -1.9369459669107635e-05 -5.6987020470127060e-05 5.1090133031239018e-03 5.1093686070532709e-03 0 2 0 P 609 22 -9.2381697370497573e-01 -2.6677441929189105e+00 2.4032833041455856e+02 2.4034491194266832e+02 0 1 0 0 0 0 P 610 22 -4.3361568150665965e-03 -6.2981514041142161e-02 4.4873109182725033e+00 4.4877549788969606e+00 0 1 0 0 0 0 V -192 0 1.5000377464441205e-04 2.2113891674096464e-05 1.6971583543895538e-02 1.6972334693093196e-02 0 2 0 P 611 22 -6.9937352522033555e-03 -2.4849888962594660e-03 2.8070336819975359e+00 2.8070434943853710e+00 0 1 0 0 0 0 P 612 22 4.1139509344179198e-01 6.2102740843244797e-02 4.2947357846143255e+01 4.2949373087834601e+01 0 1 0 0 0 0 V -193 0 9.2700826760990687e+00 -1.1005884565748232e+00 2.2493856025480040e+03 2.2494182775731283e+03 0 2 0 P 613 211 3.8152366507493607e-01 -5.4419072495169633e-02 1.2132737336194128e+02 1.2132806570796083e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 -211 2.1480107267997522e-01 -1.6379446317959678e-02 2.3370826904118221e+01 2.3372236473094357e+01 1.3957000000000000e-01 1 0 0 0 0 V -194 0 3.3375290481965167e-05 6.9747541891123196e-05 3.8318954093559232e-02 3.8319037982520190e-02 0 2 0 P 615 22 1.0434902252631789e-01 1.1194067123477751e-01 5.5793937388877183e+01 5.5794147262829682e+01 0 1 0 0 0 0 P 616 22 1.0791200455163910e-01 3.3164153177174233e-01 1.8790792812288791e+02 1.8790825176809750e+02 0 1 0 0 0 0 V -195 0 -1.1151629758561761e-05 5.6637257566372270e-05 2.5639507582454025e-02 2.5639573920780132e-02 0 2 0 P 617 22 -8.6948168264241871e-03 1.7804953409328717e-01 6.0557879688573344e+01 6.0558142058786402e+01 0 1 0 0 0 0 P 618 22 -1.7169315334582153e-01 7.3811071779066839e-01 3.5418497217698962e+02 3.5418578289082342e+02 0 1 0 0 0 0 V -196 0 -2.6554957031703836e+01 -5.3984966984712834e+01 9.3296983739988741e+02 9.3631598930847395e+02 0 2 0 P 619 -2212 -4.1145156632017160e-01 -1.1682958713872602e+00 1.8926769836314961e+01 1.8990449564564543e+01 9.3827000000000005e-01 1 0 0 0 0 P 620 211 -1.0933276467078389e-01 -7.9275317331604367e-02 2.9900834737747970e+00 2.9963840198495486e+00 1.3957000000000000e-01 1 0 0 0 0 V -197 0 -2.6204187828148676e+01 -5.3144605089110598e+01 9.1820656507164858e+02 9.2150558077676590e+02 0 2 0 P 621 22 -1.4057442425865574e-01 -3.1187803526845054e-02 1.1602783622751198e+00 1.1691790820093884e+00 0 1 0 0 0 0 P 622 22 -1.9870478205304846e-02 -1.0284064289257379e-01 7.9347566345143106e-01 8.0035908330221017e-01 0 1 0 0 0 0 V -198 0 -1.7468362420462089e+01 -2.3941855055713077e+01 1.0048988779478519e+03 1.0073146643037148e+03 0 2 0 P 623 22 1.2498825725801388e-01 -2.2285213017487808e-02 1.1261822248724054e+00 1.1333159748235220e+00 0 1 0 0 0 0 P 624 22 -3.3109821260879906e-02 9.2056432119661594e-03 1.9810667064639920e-01 2.0106530552403676e-01 0 1 0 0 0 0 V -199 0 -4.1276933118084941e-06 -7.6643453390414843e-05 8.0396012752110700e-04 8.0814979882880018e-04 0 2 0 P 625 22 -1.1487688084726692e-02 -1.0153359978718926e-02 6.3454526002768508e-01 6.3473045044332921e-01 0 1 0 0 0 0 P 626 22 -7.4786307344830681e-03 -3.4201528788309532e-01 3.0595673943393304e+00 3.0786333051482071e+00 0 1 0 0 0 0 V -200 0 -6.9683155099412511e-05 -4.2251292072309500e-05 2.7555193136068716e-04 2.8826320175102808e-04 0 2 0 P 627 22 -1.0808450763895411e-01 -1.2795657584056577e-01 6.7606453999018234e-01 6.9650442089374742e-01 0 1 0 0 0 0 P 628 22 -3.0207105798931677e-01 -1.2073484138530959e-01 9.4583616335724618e-01 1.0002149138627539e+00 0 1 0 0 0 0 V -201 0 1.3280137325941625e-05 1.6262088370406376e-06 -1.0267538236105071e-04 1.0371909457945709e-04 0 2 0 P 629 22 2.1846641739186012e-01 -9.2132422301562378e-03 -1.9261360508139305e+00 1.9385078141718977e+00 0 1 0 0 0 0 P 630 22 7.8606208759698704e-02 4.5591038485834665e-02 -3.7068097226983021e-01 3.8165673326786304e-01 0 1 0 0 0 0 V -202 0 -1.8673890180756133e-05 -1.0772789444131441e-05 -2.2144664757920490e-03 2.2146060801501548e-03 0 2 0 P 631 22 -5.5669237376054462e-02 -9.3895188758889331e-02 -1.3867554706894774e+01 1.3867984313489169e+01 0 1 0 0 0 0 P 632 22 -1.4774360781260604e-01 -2.3451744860081711e-02 -1.0254410349961272e+01 1.0255501439879934e+01 0 1 0 0 0 0 V -203 0 -1.8684712944812788e-04 -1.6300150137062939e-04 -7.8357797384750280e-02 7.8358245261563250e-02 0 2 0 P 633 22 -2.8208783432823188e-02 1.4636315441422966e-02 -1.4344191508499792e+01 1.4344226712852457e+01 0 1 0 0 0 0 P 634 22 -2.4205825989604221e-01 -2.5041159314423705e-01 -9.8997288681689696e+01 9.8997901313578211e+01 0 1 0 0 0 0 V -204 0 7.0058009845544789e-05 1.0076589411172371e-04 -5.6120694711615647e-02 5.6120834589260961e-02 0 2 0 P 635 22 3.6576041267032183e-01 5.3203707756515684e-01 -2.7994042030106363e+02 2.7994116482301700e+02 0 1 0 0 0 0 P 636 22 8.5673135336784174e-03 6.3662842333554546e-03 -1.9918683471691878e+01 1.9918686331530186e+01 0 1 0 0 0 0 V -205 0 2.3341478871087195e-05 -5.6233398408934202e-05 -1.3298248314439806e-03 1.3313091398720282e-03 0 2 0 P 637 22 2.0056417757925440e-01 -3.7595380720196497e-01 -8.2896882364012061e+00 8.3006324042934381e+00 0 1 0 0 0 0 P 638 22 1.5806882346567934e-03 -1.1104587428414425e-01 -3.2270311451299771e+00 3.2289415752549191e+00 0 1 0 0 0 0 V -206 0 1.8682800328784421e-05 -3.4619152170335193e-05 -1.0408814773521101e-04 1.1178936210582781e-04 0 2 0 P 639 22 -5.7278516468940097e-03 4.0175629342698036e-03 -5.5659562091624426e-02 5.6097557421433582e-02 0 1 0 0 0 0 P 640 22 2.4090137701732339e-01 -4.3979313822046129e-01 -1.2545710361797395e+00 1.3510736333360036e+00 0 1 0 0 0 0 V -207 0 1.4407841915793195e-05 -3.7019841130176184e-05 -1.3749834701405880e-04 1.4553853430175799e-04 0 2 0 P 641 22 -1.1942908030012812e-02 5.8027502168063096e-03 -1.6386682353874540e-01 1.6440389538867475e-01 0 1 0 0 0 0 P 642 22 8.5573867010673196e-02 -1.9499183347143767e-01 -5.3881545241010242e-01 5.7936758072195982e-01 0 1 0 0 0 0 V -208 0 3.0130775430693859e-06 4.8855124855909674e-07 -2.0566222450661098e-04 2.0573149856958648e-04 0 2 0 P 643 22 6.7089401055952680e-02 2.0822196573709605e-02 -6.1380722467734525e+00 6.1384741962652809e+00 0 1 0 0 0 0 P 644 22 2.5772455406838507e-02 -5.7652405976623862e-03 -2.0035605417766217e-01 2.0208910386878529e-01 0 1 0 0 0 0 V -209 0 -5.2145645313665063e-05 -8.5741765406951922e-05 -9.2879163539393329e-03 9.2889562361457480e-03 0 2 0 P 645 22 -1.0932758209457419e-01 -1.1264814530701399e-01 -9.9422175001479633e+00 9.9434566899592909e+00 0 1 0 0 0 0 P 646 22 3.6131398756439156e-02 -7.7064872363474474e-03 -3.0951133101785913e+00 3.0953337898789361e+00 0 1 0 0 0 0 V -210 0 -3.2110958624804630e-06 -1.0607455313578801e-06 -1.7015646503609487e-04 1.7021805178797265e-04 0 2 0 P 647 22 -3.4077871616468192e-02 -2.2895949997038954e-02 -4.5603233805116766e-01 4.5787664191197813e-01 0 1 0 0 0 0 P 648 22 -1.0635276434799851e-01 -2.3493561853281764e-02 -6.9854087218946805e+00 6.9862577872459930e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 649 310 -2.6462830651043939e-01 -1.6411805062262330e-01 -1.4756513415393232e+02 1.4756630189908566e+02 4.9767000000000000e-01 2 0 0 -233 0 V -212 0 5.1789436019111175e-06 3.7049036415987636e-06 -5.8619588848213737e-03 5.8619995422175683e-03 0 2 0 P 650 22 6.0859854463408039e-02 -3.5314342557921478e-02 -1.4380409806508590e+01 1.4380581950248189e+01 0 1 0 0 0 0 P 651 22 -2.7385772762747989e-02 5.9260972744468621e-02 -2.3508338501932329e+01 2.3508429147113898e+01 0 1 0 0 0 0 V -213 0 -4.3942653779914515e-04 1.9188391860112315e-04 -2.0393480656827608e-04 5.2375154842924422e-04 0 2 0 P 652 22 -8.7668752374123371e-01 3.8114230346788347e-01 -3.4425970526985555e-01 1.0160537458465611e+00 0 1 0 0 0 0 P 653 22 -2.4201086996203963e-01 1.0735853353592051e-01 -1.7492045547045473e-01 3.1732047151855486e-01 0 1 0 0 0 0 V -214 0 -4.7049454585786115e-04 4.7794618839255799e-04 -7.1550193115935831e-05 6.9368512720641867e-04 0 2 0 P 654 22 -2.9997616515552117e-01 3.7432761884043453e-01 -5.2322371894360391e-02 4.8253963203949768e-01 0 1 0 0 0 0 P 655 22 -9.1761412853073140e-02 2.3614257229480559e-02 -7.2508996856072384e-03 9.5028235696254737e-02 0 1 0 0 0 0 V -215 0 2.9802001604117545e+00 5.1438429341795400e-01 -4.9956938316487602e+01 5.2178960607441688e+01 0 2 0 P 656 2212 1.5633155278552469e-01 1.8209768607436814e-03 -2.8577290292023774e+00 3.0118779303947600e+00 9.3827000000000005e-01 1 0 0 0 0 P 657 -211 6.8964763155008116e-02 3.7065299243854426e-02 -9.1890124814719976e-01 9.3273215003641019e-01 1.3957000000000000e-01 1 0 0 0 0 V -216 0 1.6823267163926440e-04 -2.1290425497537450e-05 -5.1909818156266753e-04 5.5172983669483911e-04 0 2 0 P 658 22 2.4855537804018770e-03 1.2508246532723069e-02 -1.5869054639023250e-01 1.5920214735533308e-01 0 1 0 0 0 0 P 659 22 2.8620095693856695e-01 -4.9042521288731614e-02 -7.3207960720526377e-01 7.8756378023162066e-01 0 1 0 0 0 0 V -217 0 -1.3908909512958409e-05 -2.1988119784614966e-05 -1.3652540236736935e-04 1.3912750488132903e-04 0 2 0 P 660 22 -1.9222031859208735e-01 -2.3403184882717010e-01 -1.2793933314243948e+00 1.3147497304195648e+00 0 1 0 0 0 0 P 661 22 -1.0336582808815045e-01 -2.3325019034510333e-01 -1.6219856424011567e+00 1.6419280038624926e+00 0 1 0 0 0 0 V -218 0 3.9494928568640375e-06 -2.3758926938615032e-07 8.7488111956610679e-04 8.7489147790789971e-04 0 2 0 P 662 22 1.3673330452271085e-01 -6.9502090117162643e-02 3.7409284217636795e+01 3.7409598664153371e+01 0 1 0 0 0 0 P 663 22 2.0248544690013714e-01 4.9095739673316000e-02 3.7733548489822056e+01 3.7734123712915512e+01 0 1 0 0 0 0 V -219 0 0 0 0 0 0 1 0 P 664 130 -1.3726559431784971e-01 -6.2421414692218657e-01 9.2381676799655921e+01 9.2385228088096341e+01 4.9767000000000000e-01 1 0 0 0 0 V -220 0 -6.4845199518062872e-05 5.6404486186452335e-05 3.5094302785776453e-03 3.5106740632666182e-03 0 2 0 P 665 22 -1.8533370845954258e-02 9.4731336516750309e-02 3.5839858892143730e+00 3.5852855347992723e+00 0 1 0 0 0 0 P 666 22 -2.2011844803507644e-01 1.1285586070819151e-01 9.3318802881334140e+00 9.3351581822974232e+00 0 1 0 0 0 0 V -221 0 1.3776127867003847e-05 -8.8528506600290570e-05 3.0725263778180389e-03 3.0739223877605101e-03 0 2 0 P 667 22 4.8894757477239502e-02 -4.3277668515215095e-01 1.6077053506621017e+01 1.6082951713266912e+01 0 1 0 0 0 0 P 668 22 3.0148902648603117e-02 -7.5175712990309562e-02 1.5522638952328833e+00 1.5543756124560368e+00 0 1 0 0 0 0 V -222 0 -1.1126200633302890e+01 -3.3409840608477438e+01 4.6367912888559442e+02 4.6502315373683200e+02 0 2 0 P 669 -211 -1.4787076544852780e+00 -4.7157146950636903e+00 6.3479886844663888e+01 6.3672129342506715e+01 1.3957000000000000e-01 1 0 0 0 0 P 670 211 -4.5623787710280816e-01 -1.0945545897580169e+00 1.7158049509131569e+01 1.7199544921106888e+01 1.3957000000000000e-01 1 0 0 0 0 V -223 0 1.4272052395378587e-01 2.1172110479715001e-01 -5.7460635097822448e-02 2.7290182025410126e-01 0 2 0 P 671 111 3.9855210008884850e-01 5.3438915362448425e-01 -3.5904016487049306e-01 7.6911961643619187e-01 1.3497999999999999e-01 2 0 0 -234 0 P 672 111 5.2004345634495952e-01 8.2831650833689441e-01 -1.0795109051397982e-02 9.8736496253921624e-01 1.3497999999999999e-01 2 0 0 -235 0 V -224 0 -1.9034073936939269e+01 3.1075472273074286e+01 -9.4112749216855664e+03 9.4113874378192995e+03 0 2 0 P 673 211 -3.9765881493111666e-01 3.8121754550187514e-01 -1.0102936885653949e+02 1.0103096708774841e+02 1.3957000000000000e-01 1 0 0 0 0 P 674 -211 6.0608461936677231e-02 1.6905870822128610e-01 -6.5623001255663269e+01 6.5623395430426839e+01 1.3957000000000000e-01 1 0 0 0 0 V -225 0 1.8279664029812025e+01 1.7370899684873457e+01 -9.9953366712106254e+03 9.9954250578923748e+03 0 2 0 P 675 111 3.4208099879702225e-01 2.4666389470171865e-01 -1.2570649670688783e+02 1.2570727662472801e+02 1.3497999999999999e-01 2 0 0 -236 0 P 676 111 -7.1576814666731728e-02 1.0392309351181333e-02 -2.2205433564032376e+01 2.2205961600605075e+01 1.3497999999999999e-01 2 0 0 -237 0 V -226 0 1.2827971656992638e+00 -3.0867156359609527e+00 2.7445624361122095e-01 8.0932589515114994e+00 0 2 0 P 677 211 -3.2723002468180828e-02 -3.0169819416737848e-01 -2.9635618365442481e-02 3.3533662196409730e-01 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 1.1939744313514396e-01 9.3138837786943249e-02 4.8179735891295539e-02 2.1149861555591198e-01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 3.2259526537229867e+01 9.5170494568739290e+00 1.5711640643910528e+02 1.6070250214153134e+02 0 2 0 P 679 211 4.6963623502713228e+00 1.2779483089862085e+00 2.2889720982808008e+01 2.3401875515889486e+01 1.3957000000000000e-01 1 0 0 0 0 P 680 -211 8.1754441935616728e-01 3.4873779152352730e-01 3.9651436130602451e+00 4.0659366180438150e+00 1.3957000000000000e-01 1 0 0 0 0 V -228 0 9.6652016763292536e+01 5.0706999390299060e+01 1.7536967385338146e+03 1.7571107446058436e+03 0 2 0 P 681 22 2.8547450933497567e+00 1.3260355969455242e+00 5.1555901243806652e+01 5.1651901155848229e+01 0 1 0 0 0 0 P 682 22 7.2553342352549588e-01 3.8955816831425405e-01 1.4332709194349997e+01 1.4356347277944970e+01 0 1 0 0 0 0 V -229 0 9.6651531821396418e+01 5.0706877899032243e+01 1.7536871828219271e+03 1.7571011773406246e+03 0 2 0 P 683 22 1.1890167477697305e-01 1.1135109705755250e-01 2.4463214537980051e+00 2.4517392460033500e+00 0 1 0 0 0 0 P 684 22 1.9264962115120146e+00 1.1244836780096945e+00 3.3739796536831214e+01 3.3813454741298592e+01 0 1 0 0 0 0 V -230 0 -5.2197096704056541e-06 3.4932026747635164e-06 3.6588333273180436e-04 3.6594986231908459e-04 0 2 0 P 685 22 -4.5747375075392638e-03 5.2290552065928649e-02 1.6807013145821539e+00 1.6815207815833864e+00 0 1 0 0 0 0 P 686 22 -2.2719819411592954e-01 1.0281957393883086e-01 1.4565767936422171e+01 1.4567902610255832e+01 0 1 0 0 0 0 V -231 0 -6.2172549018022363e-06 6.1950309070339876e-06 3.5004510877636622e-04 3.5017570080750744e-04 0 2 0 P 687 22 -5.5774792175209455e-02 6.3398869801554680e-02 6.0427708800203117e+00 6.0433608325629340e+00 0 1 0 0 0 0 P 688 22 -1.6529387674029603e-01 1.5687957432519747e-01 6.4038808143058752e+00 6.4079343590866458e+00 0 1 0 0 0 0 V -232 0 -4.0054394542289388e-08 -2.2950993550937012e-08 2.4791861360238618e-06 2.4804621930857911e-06 0 2 0 P 689 22 -2.5671426633035566e-02 -1.6565897846895654e-02 4.3204603768631440e+00 4.3205684023240822e+00 0 1 0 0 0 0 P 690 22 -5.7776265199412050e-02 -3.1249265981508009e-02 8.4457489675133113e-01 8.4712535652481669e-01 0 1 0 0 0 0 V -233 0 -2.9383307491837023e+01 -1.8223035963143186e+01 -1.6385063899988058e+04 1.6385193561910339e+04 0 2 0 P 691 -211 -2.5799046800397629e-01 -8.2776471920304004e-02 -4.4625202724915475e+01 4.4626243501448648e+01 1.3957000000000000e-01 1 0 0 0 0 P 692 211 -6.6378385064630773e-03 -8.1341578702319312e-02 -1.0293993142901684e+02 1.0294005839763699e+02 1.3957000000000000e-01 1 0 0 0 0 V -234 0 1.4274810236272920e-01 2.1175808265427395e-01 -5.7485479419284224e-02 2.7295504063684090e-01 0 2 0 P 693 22 3.3640610711686375e-01 3.8297612058244290e-01 -3.1650383482614186e-01 6.0001204596370750e-01 0 1 0 0 0 0 P 694 22 6.2145992971984754e-02 1.5141303304204135e-01 -4.2536330044351228e-02 1.6910757047248434e-01 0 1 0 0 0 0 V -235 0 1.4272084836966645e-01 2.1172162152133175e-01 -5.7460641832076609e-02 2.7290243619661503e-01 0 2 0 P 695 22 2.9137749219874765e-01 5.4230839842582446e-01 -5.7081814216314690e-02 6.1826982416857434e-01 0 1 0 0 0 0 P 696 22 2.2866596414621188e-01 2.8600810991106995e-01 4.6286705164916710e-02 3.6909513837064184e-01 0 1 0 0 0 0 V -236 0 1.8279672777563825e+01 1.7370905992603312e+01 -9.9953398857979209e+03 9.9954282724996137e+03 0 2 0 P 697 22 1.6530127366203218e-01 1.0372368346438990e-01 -7.7267392440898064e+01 7.7267638877665590e+01 0 1 0 0 0 0 P 698 22 1.7677972513499005e-01 1.4294021123732878e-01 -4.8439104265989769e+01 4.8439637747062442e+01 0 1 0 0 0 0 V -237 0 1.8279646973918897e+01 1.7370902161235648e+01 -9.9953419624980834e+03 9.9954303493056577e+03 0 2 0 P 699 22 2.5848925358702455e-02 -3.4130472565717357e-02 -8.5891711973031200e+00 8.5892779040313574e+00 0 1 0 0 0 0 P 700 22 -9.7425740025434179e-02 4.4522781916898693e-02 -1.3616262366729254e+01 1.3616683696573721e+01 0 1 0 0 0 0 E 45 31 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 212 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 1.9443635936110948e+00 -9.5872504885356458e-01 2.6754657267773680e+00 3.4435186014627055e+00 0 3 0 0 -3 0 P 12 2112 -9.4511135057934148e-01 5.3689068663338713e-01 2.3409209839335795e+03 2.3409214248452290e+03 9.3957000000000002e-01 1 0 0 0 0 P 70 2 -9.9925224303175331e-01 4.2183436222017739e-01 2.8089441407656381e+02 2.8089670202530044e+02 3.3000000000000002e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 1.8071986946919966e-01 1.2077978615260503e+00 -4.7211671331634551e+02 4.7211829283345281e+02 0 3 0 0 -4 0 P 66 2103 -1.8071986946919966e-01 -1.2077978615260503e+00 -3.8401924673230178e+03 3.8401927389741472e+03 7.7132999999999996e-01 2 0 0 -9 0 V -3 0 0 0 0 0 0 10 0 P 5 -1 1.8616725126760210e+00 -8.2036551323088496e+00 -8.0094951556669258e+00 1.1615411948052593e+01 0 3 0 0 -5 0 P 11 22 7.7601616977704957e-02 -5.7038627268924176e-02 -3.6598682582551034e-01 3.7844652546444407e-01 0 1 0 0 0 0 P 13 1 9.1102692581459685e-02 6.8187426215440283e-01 -2.2344533469489938e+00 2.3611298078834557e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 5.7987355043103461e-01 1.3775006586178415e+00 -9.1340703127045497e+00 9.2555389835715491e+00 0 2 0 0 -9 0 P 15 21 -1.7802224033283925e-01 1.2097945897513807e-02 -2.1005935556070048e+00 2.1081583347096444e+00 0 2 0 0 -9 0 P 16 21 1.3861002953583892e+00 1.4831622703623346e+00 -1.5889022367379226e+01 1.6018179551375255e+01 0 2 0 0 -9 0 P 17 21 6.9332322401161273e-01 6.5200149554682874e-01 -3.0164956200065269e+00 3.1630758556613401e+00 0 2 0 0 -9 0 P 67 -1 -1.9082391977928106e+00 4.0480921942063824e-01 -1.2892283450107587e+00 2.3614099740832968e+00 3.3000000000000002e-01 2 0 0 -11 0 P 68 21 -1.6401803632109897e+00 8.2639729398035167e-01 -2.3597568638071404e+00 2.9902469074720055e+00 0 2 0 0 -11 0 P 69 21 1.0027164675788089e+00 2.0083834941177883e+00 -9.3144864192287091e+00 9.5811639077825284e+00 0 2 0 0 -11 0 V -4 0 0 0 0 0 0 1 0 P 6 2 1.5913490480190468e-01 1.0635399321525578e+00 -4.1572765877738283e+02 4.1572904963885946e+02 0 3 0 0 -5 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -7.2817534903713010e-01 -1.2812716625989846e+00 -3.3509337529406969e+02 3.3846475386211881e+02 4.7630321692805069e+01 3 0 0 -6 0 P 8 22 2.7489827665150552e+00 -5.8588435375573074e+00 -8.8643778638980095e+01 8.8879707724793278e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -7.2817534903713010e-01 -1.2812716625989846e+00 -3.3509337529406969e+02 3.3846475386211881e+02 4.7630321692805069e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.7489827665150552e+00 -5.8588435375573074e+00 -8.8643778638980095e+01 8.8879707724793278e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 6 0 P 71 -3 8.7020095617630631e+00 1.6146054023527416e+01 -1.6912824967752263e+02 1.7012064798232493e+02 5.0000000000000000e-01 2 0 0 -13 0 P 72 21 -2.7208948920362941e-01 1.7326286189976023e-01 -6.7206482092220190e+00 6.7283850262576319e+00 0 2 0 0 -13 0 P 73 21 1.3196606586513355e+00 2.9942431059369889e+00 -9.8419065009860329e+00 1.0371601593080713e+01 0 2 0 0 -13 0 P 74 21 -1.9970127655784293e+00 -7.2767188507673231e+00 -5.2354453918110472e+01 5.2895439711590910e+01 0 2 0 0 -13 0 P 75 21 -1.9879730645992761e+00 -2.8726349142193519e+00 -2.5013492488589744e+01 2.5256264069190831e+01 0 2 0 0 -13 0 P 76 4 -6.4927702500701931e+00 -1.0445477888976468e+01 -7.2034624499638795e+01 7.3092415479673775e+01 1.5000000000000000e+00 2 0 0 -13 0 V -9 0 0 0 0 0 48 1 0 P 18 21 -1.5103573364590378e-01 -1.3975125984970012e+00 4.5726601345500466e+00 4.7838346503510181e+00 0 2 0 0 -9 0 P 19 21 8.9993189472768753e-01 -1.2716968101883044e+00 2.0052800100686454e+00 2.5393381245852589e+00 0 2 0 0 -9 0 P 20 21 1.4007952749437251e+00 -5.2586031493502128e-01 4.4387109583534134e-01 1.5606979281226374e+00 0 2 0 0 -9 0 P 21 21 1.2257490082377154e+00 5.3731480126729714e-01 8.4822630593290160e-01 1.5845048731175408e+00 0 2 0 0 -9 0 P 22 21 1.0461475272094014e+00 5.7130916856659597e-01 1.4413003010867105e+00 1.8703383043415549e+00 0 2 0 0 -9 0 P 23 21 -1.0034946465325836e+00 -1.1135044581098139e+00 3.8496900143696631e+00 4.1312234132987147e+00 0 2 0 0 -9 0 P 24 21 -6.2640530855308885e-01 -1.2451805545363857e+00 5.9428989531841321e+00 6.1041712125182137e+00 0 2 0 0 -9 0 P 25 21 -3.0152226300105127e+00 -4.1542493743560982e-01 1.3900204065889564e+01 1.4229540346073856e+01 0 2 0 0 -9 0 P 26 21 -1.4007952749437251e+00 5.2586031493502128e-01 1.1544704461273728e+01 1.1641260995754788e+01 0 2 0 0 -9 0 P 27 21 -1.7296948774460241e+00 -2.6229013188242156e+00 2.3344345352380525e+01 2.3554827862426908e+01 0 2 0 0 -9 0 P 28 21 -6.1468868254705405e-02 -2.3468551485354920e+00 2.3793995131455269e+01 2.3909531819458305e+01 0 2 0 0 -9 0 P 29 21 -8.9993189472768753e-01 1.2716968101883044e+00 1.1337832995261898e+02 1.1338903294868129e+02 0 2 0 0 -9 0 P 30 21 -2.6524662650327770e+00 -7.8755437327912736e-01 4.3307890424928610e+02 4.3308774298626867e+02 0 2 0 0 -9 0 P 31 21 -2.2749289677437734e-01 6.7982275216009691e-01 6.0132396328989205e+02 6.0132439060681372e+02 0 2 0 0 -9 0 P 32 21 2.6524662650327770e+00 7.8755437327912736e-01 1.6871474051925400e+03 1.6871496740559501e+03 0 2 0 0 -9 0 P 33 21 1.5994661805175745e+00 1.1507162856497952e+00 9.5353598258296131e+02 9.5353801839280959e+02 0 2 0 0 -9 0 P 34 21 3.0152226300105127e+00 4.1542493743560982e-01 1.4502901679503410e+02 1.4506095221637509e+02 0 2 0 0 -9 0 P 35 21 2.1152488376327803e+00 -3.8832956029803639e-01 1.6875743249372160e+01 1.7012224654972027e+01 0 2 0 0 -9 0 P 36 21 2.5856613162345918e+00 2.7650529042329337e+00 1.2888006775081449e+01 1.3432493463241451e+01 0 2 0 0 -9 0 P 37 21 1.0828387161338586e+00 3.0155576961057498e+00 7.4418043124583368e+00 8.1022576686146284e+00 0 2 0 0 -9 0 P 38 21 1.7296948774460241e+00 2.6229013188242156e+00 4.5692848238623691e+00 5.5452519779476015e+00 0 2 0 0 -9 0 P 39 21 6.1468868254705405e-02 2.3468551485354920e+00 2.4044080112334147e+00 3.3604591047140397e+00 0 2 0 0 -9 0 P 40 21 -6.4159197866764783e+00 6.8572687572103046e+00 7.5451819340027066e+00 1.2046407428560604e+01 0 2 0 0 -9 0 P 41 21 -1.0776015154264187e+00 7.7285588724139764e-01 1.4412548453303067e+00 1.9585062618437268e+00 0 2 0 0 -9 0 P 42 21 -1.1918894051096318e+00 1.0029254240115215e-01 -2.1675124995276223e+00 2.4756351475292879e+00 0 2 0 0 -9 0 P 43 21 -1.3810992341842683e+00 7.3511017498654530e-01 -2.1279145955844654e+00 2.6411820441110305e+00 0 2 0 0 -9 0 P 44 21 1.5103573364590378e-01 1.3975125984970012e+00 -2.1925451412982078e+00 2.6044399498598878e+00 0 2 0 0 -9 0 P 45 21 2.6919848224853543e-01 8.1362250476033293e-01 -1.3445032807005102e+00 1.5944085031483706e+00 0 2 0 0 -9 0 P 46 21 1.8305604410737604e+00 1.3209573248217135e+00 -1.4521622564977819e+00 2.6841488411824383e+00 0 2 0 0 -9 0 P 47 21 1.1918894051096318e+00 -1.0029254240115215e-01 -1.4991497209131921e+00 1.9178396267123017e+00 0 2 0 0 -9 0 P 48 21 2.7014262532939566e+00 -2.6576227163739502e-01 -3.3630337933811143e+00 4.3218433199776065e+00 0 2 0 0 -9 0 P 49 21 6.4159197866764783e+00 -6.8572687572103046e+00 -1.4792528266851587e+01 1.7521559692084566e+01 0 2 0 0 -9 0 P 50 21 4.6780882090499337e-01 -1.1222332781208706e-01 -1.9909746639766748e+00 2.0482722672581328e+00 0 2 0 0 -9 0 P 51 21 6.2649104319312787e-01 1.6112389344311020e+00 -1.1971653581425224e+01 1.2095828677882276e+01 0 2 0 0 -9 0 P 52 21 1.0034946465325836e+00 1.1135044581098139e+00 -1.5972757474120732e+01 1.6042938478063476e+01 0 2 0 0 -9 0 P 53 21 4.5374739425766092e-01 4.7303493909378264e-01 -2.0991836719468743e+01 2.1002067936473193e+01 0 2 0 0 -9 0 P 54 21 1.3810992341842683e+00 -7.3511017498654530e-01 -5.2702922982168658e+01 5.2726140698219460e+01 0 2 0 0 -9 0 P 55 21 -2.6919848224853543e-01 -8.1362250476033293e-01 -1.6304524454129957e+01 1.6327031790206668e+01 0 2 0 0 -9 0 P 56 21 -1.0828387161338586e+00 -3.0155576961057498e+00 -4.1140541686497016e+01 4.1265122054370565e+01 0 2 0 0 -9 0 P 57 21 -1.5994661805175745e+00 -1.1507162856497952e+00 -6.9479279044851250e+00 7.2219209493459706e+00 0 2 0 0 -9 0 P 58 21 -1.2257490082377154e+00 -5.3731480126729714e-01 -3.1174742248125589e+00 3.3926115853759802e+00 0 2 0 0 -9 0 P 59 21 -2.1152488376327803e+00 3.8832956029803639e-01 -1.2697858191472074e+01 1.2878690932825531e+01 0 2 0 0 -9 0 P 60 21 -4.6780882090499337e-01 1.1222332781208706e-01 -4.3364873864648894e+00 4.3630908793183334e+00 0 2 0 0 -9 0 P 61 21 -2.7014262532939566e+00 2.6576227163739502e-01 -3.8737047277220668e+01 3.8832037870096912e+01 0 2 0 0 -9 0 P 62 21 -2.5856613162345918e+00 -2.7650529042329337e+00 -1.2116157009187457e+02 1.2122069637291196e+02 0 2 0 0 -9 0 P 63 21 -6.2649104319312787e-01 -1.6112389344311020e+00 -7.9936059111740107e+01 7.9954750504561247e+01 0 2 0 0 -9 0 P 64 21 -1.8305604410737604e+00 -1.3209573248217135e+00 -1.7075152455697204e+02 1.7076644582093010e+02 0 2 0 0 -9 0 P 65 21 -4.5374739425766092e-01 -4.7303493909378264e-01 -8.5183354364072130e+01 8.5185876232310278e+01 0 2 0 0 -9 0 P 89 92 1.5063054590359772e+00 3.7776460244845720e+00 -5.0710450491161919e+02 8.6851000829789464e+03 8.6702821138007748e+03 2 0 0 -10 0 V -10 0 0 0 0 0 0 98 0 P 90 -213 8.5198569868154594e-01 2.3370705974423451e+00 -1.1695421010413838e+01 1.1983090350977294e+01 7.8981209199928015e-01 2 0 0 -21 0 P 91 113 5.2404778400478480e-01 1.1156805604241148e-01 -4.8140314163694704e+00 4.9072316257784792e+00 7.8673390685723099e-01 2 0 0 -22 0 P 92 221 5.4934815501820194e-02 4.0336619352170217e-01 -3.9594999952528727e+00 4.0178431819743672e+00 5.4744999999999999e-01 2 0 0 -23 0 P 93 213 -1.7558759770460544e-01 3.2685522649782243e-02 -4.3321503542479416e+00 4.4073141315866842e+00 7.9056423825933198e-01 2 0 0 -24 0 P 94 -213 1.4741650051526594e+00 8.1565176720723298e-01 -5.6206951828867711e+00 5.9095589388532996e+00 7.0158552229172999e-01 2 0 0 -25 0 P 95 3222 -3.1095436967435391e-01 2.4827579906547481e-01 -7.8371215526839655e-01 1.4788979787789998e+00 1.1893700000000000e+00 2 0 0 -26 0 P 96 -3322 3.2922589327395746e-01 -1.2269443090459195e-01 1.3839101809466876e+00 1.9410340056539275e+00 1.3149000000000000e+00 2 0 0 -27 0 P 97 333 1.3890807263957389e-01 -8.9882593885616757e-02 1.1765653620900181e+00 1.5659164908019436e+00 1.0200068978038388e+00 2 0 0 -28 0 P 98 -313 -1.3468983969990642e-02 -1.3121574295059399e+00 2.9567369008255245e-01 1.5573648787977328e+00 7.8487190124811135e-01 2 0 0 -29 0 P 99 221 6.9191137421977278e-01 -1.9569318774451178e-01 1.0965838328333013e+00 1.4209978108483055e+00 5.4744999999999999e-01 2 0 0 -30 0 P 100 111 -4.7154000568095704e-02 1.6979633418735007e-01 1.7959789342377175e-01 2.8553335811301400e-01 1.3497999999999999e-01 2 0 0 -31 0 P 101 111 1.3548774780456654e+00 -2.2663860199076663e-01 1.9678171909861415e+00 2.4036601535924955e+00 1.3497999999999999e-01 2 0 0 -32 0 P 102 -213 8.7188444090546924e-01 -9.7200927671287074e-01 1.1226980284423731e+00 1.8459528792962425e+00 6.6491101450102053e-01 2 0 0 -33 0 P 103 213 5.8141236053584844e-01 3.0024106046325810e-01 1.2354370022613663e+00 1.7147396009925810e+00 9.9289590858441712e-01 2 0 0 -34 0 P 104 221 -4.0637733091294875e-01 -3.7290360081367169e-01 1.6634338371200423e+00 1.8360047013980225e+00 5.4744999999999999e-01 2 0 0 -35 0 P 105 -213 1.6587849334669677e-01 -2.3398703344167870e-01 2.6787216411099557e+00 2.8284572262150625e+00 8.6160028064270322e-01 2 0 0 -36 0 P 106 111 -1.2400378207309419e+00 1.6446472821387834e-01 4.2691062704919363e+00 4.4506438177889702e+00 1.3497999999999999e-01 2 0 0 -37 0 P 107 221 -7.8628950785842394e-02 -5.0042733167135378e-01 4.2933654740632310e+00 4.3576712384671223e+00 5.4744999999999999e-01 2 0 0 -38 0 P 108 2224 -2.1146932226389525e+00 -1.5697458384543004e+00 1.3654034706499717e+01 1.3953100974854559e+01 1.1490577117659124e+00 2 0 0 -39 0 P 109 -211 -3.7846052616066966e-01 5.1120814368476875e-02 6.0425485071695952e+00 6.0562131694583714e+00 1.3957000000000000e-01 1 0 0 0 0 P 110 -2212 -1.3240438587227705e+00 -7.8903328937700501e-01 1.1841534057805541e+01 1.1978227961874627e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 213 -4.5784763379408761e-01 -3.2176777424152780e-01 3.7093902643666743e+00 3.8180823867584772e+00 7.1064620057089578e-01 2 0 0 -40 0 P 112 113 -2.0908009957243248e-01 -7.4149031127193871e-02 8.9945245219848058e+00 9.0249918540823479e+00 7.0696111831730057e-01 2 0 0 -41 0 P 113 113 -1.2527823529572819e+00 -2.2837895646750823e+00 2.8126432473755155e+01 2.8258747002305203e+01 8.2183942469605931e-01 2 0 0 -42 0 P 114 113 -1.6434552576236020e-01 1.8980908460177290e-01 1.5225443029377042e+01 1.5243687808418057e+01 7.0204388699848497e-01 2 0 0 -43 0 P 115 -211 1.3508295413425467e-01 1.3917444865314157e-01 1.6773266660770616e+01 1.6774968589832731e+01 1.3957000000000000e-01 1 0 0 0 0 P 116 2214 -9.4811515524480805e-01 -4.2594633622859146e-01 7.9849475802259548e+01 7.9865278520043233e+01 1.2014884766381555e+00 2 0 0 -44 0 P 117 -2214 -1.2306543015445210e+00 1.7430817836950879e-01 2.8883482237071041e+02 2.8884004946708086e+02 1.2143594504569322e+00 2 0 0 -45 0 P 118 323 3.2091339879147424e-01 3.0721629623112635e-02 2.6669001226607804e+02 2.6669166268066084e+02 8.8111955287879318e-01 2 0 0 -46 0 P 119 3122 -3.2563279557123248e-01 5.2793554655973396e-01 4.5212391939780719e+02 4.5212572143835843e+02 1.1156800000000000e+00 2 0 0 -47 0 P 120 -2212 -4.2882028123072063e-01 -9.7464501949952168e-02 2.9929403406092024e+02 2.9929582783796860e+02 9.3827000000000005e-01 1 0 0 0 0 P 121 321 -1.4880586174642571e-01 -1.6100049525871579e-01 8.6990211381012529e+01 8.6991888020764378e+01 4.9359999999999998e-01 1 0 0 0 0 P 122 -321 1.2442938704096425e+00 6.2017969060785305e-01 6.9736477377758422e+02 6.9736633431569226e+02 4.9359999999999998e-01 1 0 0 0 0 P 123 331 9.5947869630882143e-01 9.8403877875443735e-01 7.4613229546070306e+02 7.4613417592910207e+02 9.5772034298681707e-01 2 0 0 -48 0 P 124 213 5.1646844334168085e-01 3.3023326652533151e-02 3.2315171380633672e+02 3.2315246582161171e+02 4.6711928055268653e-01 2 0 0 -49 0 P 125 -213 1.3638555379311195e+00 3.6504372019111386e-01 4.3940547554733956e+02 4.3940824512124004e+02 6.6376253144095088e-01 2 0 0 -50 0 P 126 321 -2.7713453723475484e-01 3.6239008055704969e-01 4.6876138366354816e+01 4.6880956893219015e+01 4.9359999999999998e-01 1 0 0 0 0 P 127 -313 8.4545012548999043e-01 -9.5794016203877591e-02 5.8040377853852426e+01 5.8050798651220219e+01 6.9699370034197972e-01 2 0 0 -51 0 P 128 -211 4.3701895511996919e-01 -1.6678792847183635e-01 2.5225859795100256e+01 2.5230582354895688e+01 1.3957000000000000e-01 1 0 0 0 0 P 129 113 5.2388217800140791e-01 4.7531613806345185e-02 2.9684167905959981e+01 2.9697597979102543e+01 7.2165758392226742e-01 2 0 0 -52 0 P 130 323 6.1319672289870708e-01 1.8984915128613222e-01 2.6960923117522171e+01 2.6979596549742684e+01 7.7149317348131696e-01 2 0 0 -53 0 P 131 221 3.3952903210691587e-01 -4.9976167159637097e-01 1.8607880125740959e+01 1.8625733434377445e+01 5.4744999999999999e-01 2 0 0 -54 0 P 132 -313 1.7581964635019782e+00 9.6815925059875163e-01 2.9115749637155020e+01 2.9199730626559607e+01 9.3209687874144265e-01 2 0 0 -55 0 P 133 111 1.1717376717791521e+00 2.9259274134798580e-01 3.6464025244977778e+00 3.8435726420635961e+00 1.3497999999999999e-01 2 0 0 -56 0 P 134 -211 3.3048863299971215e-01 1.1394279267560834e+00 2.7231263688325607e+00 2.9736199727512074e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 111 -2.9985297188961494e-03 5.5715093631566126e-01 1.3298688604600986e+00 1.4481702052726173e+00 1.3497999999999999e-01 2 0 0 -57 0 P 136 223 1.7900537183427698e+00 1.0391445365243306e+00 7.7017375089827027e+00 8.0135232009257962e+00 7.8465263152797249e-01 2 0 0 -58 0 P 137 211 9.6809388565564236e-01 2.8069215936826444e+00 4.8651896289176726e+00 5.7013651448362648e+00 1.3957000000000000e-01 1 0 0 0 0 P 138 113 3.2826404939882881e-01 1.3178842662614734e+00 2.7120328867625858e+00 3.1444405982534929e+00 8.2934195099230401e-01 2 0 0 -59 0 P 139 223 -8.8330289392273748e-02 8.3559110517017487e-01 2.8180815595517297e+00 3.0431737793176770e+00 7.8313998734420887e-01 2 0 0 -60 0 P 140 -211 1.7542546959423011e-01 1.4539003384068421e+00 1.4125437047199445e+00 2.0394508555113142e+00 1.3957000000000000e-01 1 0 0 0 0 P 141 213 -1.3528911598331019e+00 1.3216761718964969e+00 2.4823870771543795e+00 3.2044166709196382e+00 7.2725388024478621e-01 2 0 0 -61 0 P 142 111 -1.2447802694515240e+00 1.1649537785430397e+00 3.6569879901979202e-01 1.7488711894710920e+00 1.3497999999999999e-01 2 0 0 -62 0 P 143 -211 -4.1292215085090384e-01 1.6434765960873743e+00 2.3141721424310937e+00 2.8716532719418613e+00 1.3957000000000000e-01 1 0 0 0 0 P 144 211 -2.8080401557703110e+00 4.0875889785038160e+00 4.5359356998197002e+00 6.7221771496594203e+00 1.3957000000000000e-01 1 0 0 0 0 P 145 111 -1.7963501767774610e+00 -1.0522242705171119e-02 -1.4716391270659552e+00 2.3261397197742459e+00 1.3497999999999999e-01 2 0 0 -63 0 P 146 -213 -2.8082819089497985e-01 9.7917657263604829e-01 -1.9346103873074005e+00 2.4218686148205490e+00 1.0416712550389817e+00 2 0 0 -64 0 P 147 113 -5.4346868928719716e-01 8.9291435980800204e-01 -1.3708245559780008e+00 1.9091423216096675e+00 8.2037197093878689e-01 2 0 0 -65 0 P 148 323 -2.7844377366338008e-01 4.5542915116215060e-01 -1.2606349602101601e+00 1.6263415370969767e+00 8.7797474084548921e-01 2 0 0 -66 0 P 149 -311 1.0188870630336166e+00 1.1344327073239302e+00 -1.6508881094490191e+00 2.3017765733197755e+00 4.9767000000000000e-01 2 0 0 -67 0 P 150 313 2.0972334834443216e+00 -2.1590317773451009e-01 -3.2465098399613650e+00 3.9698296468889831e+00 8.8018112801677217e-01 2 0 0 -68 0 P 151 3122 1.6168183780217695e+00 -1.5783568701202239e-01 -2.8781395732894537e+00 3.4881862102442724e+00 1.1156800000000000e+00 2 0 0 -69 0 P 152 -2114 9.1789229171642517e-01 -1.4639966107589435e+00 -2.1852969682443018e+00 3.0342873888275950e+00 1.2023164238561934e+00 2 0 0 -70 0 P 153 223 2.7590758687074843e+00 -1.2169293630958844e+00 -5.1123420837272002e+00 5.9875450946638145e+00 7.8818649794044338e-01 2 0 0 -71 0 P 154 111 6.8777070926719408e-01 1.6708447810824542e-01 -1.6718497901194540e+00 1.8205073722655083e+00 1.3497999999999999e-01 2 0 0 -72 0 P 155 -211 3.2688641462311918e-01 -5.9939405139891533e-01 -1.5722364402924953e+00 1.7197485763916713e+00 1.3957000000000000e-01 1 0 0 0 0 P 156 323 2.1316804836698120e+00 -2.2498318640869592e+00 -4.4910444449731104e+00 5.5297685097126683e+00 8.9613306108315560e-01 2 0 0 -73 0 P 157 -321 7.5075148834930794e-01 -5.5792713479234290e-01 -4.0560244642300525e+00 4.1916447725718573e+00 4.9359999999999998e-01 1 0 0 0 0 P 158 111 3.1939162723088071e-01 9.2495341171420709e-01 -3.0852706527055900e+00 3.2395469476816223e+00 1.3497999999999999e-01 2 0 0 -74 0 P 159 213 3.8501135361432198e-01 4.2076145163666362e-01 -6.1238682386488623e+00 6.1831013837876085e+00 6.3537908076092964e-01 2 0 0 -75 0 P 160 113 5.0438454529902788e-01 2.7078028784214597e-01 -1.1017651109177384e+01 1.1053961993327786e+01 6.8826888100302563e-01 2 0 0 -76 0 P 161 223 1.0989999432947368e+00 5.8931955082055154e-01 -1.3179468658703332e+01 1.3261446631100938e+01 7.8260731880929357e-01 2 0 0 -77 0 P 162 311 -3.3518154987780335e-01 2.7450396088051932e-01 -1.0860734108410499e+01 1.0880759160022281e+01 4.9767000000000000e-01 2 0 0 -78 0 P 163 333 7.0387423019241158e-01 -6.4013572243728367e-01 -2.6968532182240224e+01 2.7004541122688625e+01 1.0189703172247164e+00 2 0 0 -79 0 P 164 -313 1.0739418003078761e-01 -5.1678929674370888e-01 -2.3592007732917239e+01 2.3617439301805216e+01 9.6021123576718603e-01 2 0 0 -80 0 P 165 -211 5.3039113144048779e-02 -1.0646597574554688e-01 -1.8414022421984895e+00 1.8505107819162208e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 113 2.2366272290102493e-01 -5.6035017110983798e-01 -2.1162369570073004e+01 2.1179462818153723e+01 5.9978505927201264e-01 2 0 0 -81 0 P 167 213 -6.9469804057445003e-02 -3.5232525307258561e-01 -5.9096819128759641e+00 5.9635864721685357e+00 7.1488751704711651e-01 2 0 0 -82 0 P 168 -213 -3.4868044022085848e-01 -1.2223960543172498e-01 -6.8973476694235076e+00 6.9571611186346205e+00 8.3196477522231227e-01 2 0 0 -83 0 P 169 213 -1.2861972965778123e+00 -9.9403169612950626e-01 -1.6134277490292352e+01 1.6223063949283119e+01 4.8009506364984228e-01 2 0 0 -84 0 P 170 -213 1.6012331039412901e-02 -1.1570529705364989e+00 -1.2357623509523533e+01 1.2466244243606605e+01 1.1650574092092820e+00 2 0 0 -85 0 P 171 223 -1.3035178245787331e+00 -2.9144427342156393e-01 -1.0476093797961399e+01 1.0589901617958372e+01 7.8318358693689871e-01 2 0 0 -86 0 P 172 111 -1.0263401125707208e+00 -8.2287653093936527e-02 -4.9897921749042471e+00 5.0967039185790499e+00 1.3497999999999999e-01 2 0 0 -87 0 P 173 213 -2.0913138620317864e-01 -4.2758208910812406e-01 -7.2370622703249401e+00 7.2973021881427664e+00 8.0559700898843511e-01 2 0 0 -88 0 P 174 -213 -8.1401675434583998e-01 8.4487801352888373e-02 -4.7968140170447482e+00 4.9177168093765227e+00 7.1045931493241943e-01 2 0 0 -89 0 P 175 223 -1.2753078057768297e+00 3.3530619947485624e-01 -1.4268193937037248e+01 1.4349066914109819e+01 7.5863221248046642e-01 2 0 0 -90 0 P 176 213 -1.1417324854430895e+00 -3.8780945866871952e-01 -1.0816772028437986e+01 1.0910327084711849e+01 7.6074354131305311e-01 2 0 0 -91 0 P 177 -211 -4.9759185623820021e-02 -1.8678451900376403e-01 -2.4244214081750237e+00 2.4361164550182686e+00 1.3957000000000000e-01 1 0 0 0 0 P 178 221 -8.5079927993571780e-01 -1.8702644786231518e-01 -1.6087924660259244e+01 1.6120789673077951e+01 5.4744999999999999e-01 2 0 0 -92 0 P 179 211 -1.0788259185285496e+00 -5.6301865824112962e-01 -3.0567019107896524e+01 3.0591550995322674e+01 1.3957000000000000e-01 1 0 0 0 0 P 180 311 -4.5728331929602956e-01 -1.0572239203222715e+00 -3.9015693647935848e+01 3.9035866286151375e+01 4.9767000000000000e-01 2 0 0 -93 0 P 181 -311 -6.5323130526968032e-02 -4.8861506608793813e-02 -4.0563341674815156e+01 4.0566476526990925e+01 4.9767000000000000e-01 2 0 0 -94 0 P 182 111 -3.2006653826008225e+00 -2.2778501763531027e+00 -1.6490413816316794e+02 1.6495098018276482e+02 1.3497999999999999e-01 2 0 0 -95 0 P 183 -213 3.8529642000838954e-01 -7.7247498257369929e-01 -6.6194819384244624e+01 6.6204112626943200e+01 6.9659491689175956e-01 2 0 0 -96 0 P 184 331 -1.1762146582893140e+00 -4.2167785870446178e-01 -7.3689058276055221e+02 7.3689226443191501e+02 9.5766657559964385e-01 2 0 0 -97 0 P 185 213 9.3775623992174553e-02 -6.1265855995817842e-01 -2.1752580979466879e+02 2.1752815359346260e+02 7.9720422470607688e-01 2 0 0 -98 0 P 186 221 -4.3871215623070942e-01 -8.4338628614447270e-02 -8.0818339332008577e+02 8.0818370221208443e+02 5.4744999999999999e-01 2 0 0 -99 0 P 187 2114 -8.3356951806318705e-02 -8.4381476161354663e-01 -2.1859099388867990e+03 2.1859104267599078e+03 1.1890844632896260e+00 2 0 0 -100 0 V -11 0 0 0 0 0 0 1 0 P 188 92 -3.5449553364567445e+00 3.6614243697389557e+00 2.6793094244851721e+02 2.9582952281463832e+02 1.2530819570416446e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 189 223 -1.1807222479662467e+00 1.0284907549301245e+00 -2.6902727881611956e+00 3.2113926450656436e+00 7.8966878261831686e-01 2 0 0 -101 0 P 190 211 -5.4684250417988545e-01 3.7466094765019320e-01 -1.7669577137530201e-01 7.0007766040188812e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 -213 -2.1389636867483946e-02 -1.1517251694334990e-01 -2.1770432977751346e+00 2.3124402847776646e+00 7.7080498509712492e-01 2 0 0 -102 0 P 192 111 -7.3772398497073854e-01 1.9177715358472489e-01 -1.3472109659122116e+00 1.5537735168654001e+00 1.3497999999999999e-01 2 0 0 -103 0 P 193 211 2.2859553698919191e-01 3.3627987304664603e-01 -3.2039395575888235e-01 5.3616428856691867e-01 1.3957000000000000e-01 1 0 0 0 0 P 194 331 -7.7398343156725602e-01 1.2032543763163057e-01 -1.9267320627264455e+00 2.2898949862744589e+00 9.5801568011433191e-01 2 0 0 -104 0 P 195 -211 5.0594443001387335e-01 1.3821749436888673e+00 -2.7556488032424360e+00 3.1272140081764292e+00 1.3957000000000000e-01 1 0 0 0 0 P 196 111 -8.8183889219370284e-03 -4.4601588301433298e-01 3.6866038877696655e-02 4.6753249844985689e-01 1.3497999999999999e-01 2 0 0 -105 0 P 197 213 -9.5302003292814727e-03 -3.7678188941417062e-01 -6.4215208400065515e-01 1.1085515938601604e+00 8.2126239433855242e-01 2 0 0 -106 0 P 198 -211 3.1701004890987650e-01 4.3068720164348712e-01 8.2705346082441489e-01 9.9472812804855482e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -4.8601403790852832e-01 7.2602976647847006e-01 1.7864682729802057e+00 1.9935590139551458e+00 1.3957000000000000e-01 1 0 0 0 0 P 200 113 4.5891119237149690e-02 -3.3727576313275170e-01 3.2799866796374126e+00 3.3955184566399623e+00 8.0955051452157967e-01 2 0 0 -107 0 P 201 -211 2.9244975957558211e-01 -3.1833731760897427e-01 1.6379457540931195e+00 1.6997680982739882e+00 1.3957000000000000e-01 1 0 0 0 0 P 202 213 -1.8968430922557680e-01 -8.9905672490921421e-02 1.9132828897068546e+01 1.9149274950029380e+01 7.6519692903796854e-01 2 0 0 -108 0 P 203 113 -3.2302184348632412e-01 3.1119657485266700e-01 7.4161205328609270e+01 7.4163927522529022e+01 4.5009260738811263e-01 2 0 0 -109 0 P 204 113 -4.7428090081084828e-01 -1.4789188921136043e-01 6.5411098621463864e+01 6.5416728628379644e+01 6.9981939700454965e-01 2 0 0 -110 0 P 205 113 1.5556739450867266e-01 4.4210383181223745e-01 3.7929075863442776e+01 3.7937457208846382e+01 6.4514076441960955e-01 2 0 0 -111 0 P 206 331 -3.3840213945698411e-01 1.4907881623576838e-01 7.5764563260472144e+01 7.5771519325497749e+01 9.5778616755259682e-01 2 0 0 -112 0 V -13 0 0 0 0 0 0 1 0 P 207 92 -7.2817534903713010e-01 -1.2812716625989786e+00 -3.3509337529406969e+02 3.3846475386211881e+02 4.7630321692805239e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 12 0 P 208 313 3.4016743667644529e+00 6.4304678196061689e+00 -7.3797670335148268e+01 7.4161226549425251e+01 9.3224006750419253e-01 2 0 0 -113 0 P 209 213 1.7832266652045836e+00 4.7322361007989366e+00 -4.6081875372536530e+01 4.6360752736911579e+01 4.5409319513113278e-01 2 0 0 -114 0 P 210 -213 2.4274053207544890e+00 3.4566396519751632e+00 -3.6566604450971575e+01 3.6816579017505390e+01 7.0941891965864923e-01 2 0 0 -115 0 P 211 223 1.0568119707444814e+00 1.6563696594318758e+00 -1.5499808311091861e+01 1.5643474758561771e+01 7.8347485663012251e-01 2 0 0 -116 0 P 212 -1114 5.0304864486926759e-01 1.3739441206272967e+00 -7.8184089316423631e+00 8.0490630992606711e+00 1.2325251185203545e+00 2 0 0 -117 0 P 213 -213 -1.3405385169575590e-01 -3.0465921307846500e-01 -4.6612363306740585e+00 4.7306504897548969e+00 7.3562371804777371e-01 2 0 0 -118 0 P 214 2114 1.5106012043602848e-01 1.0839059388756318e+00 -7.2084188796507265e+00 7.3854051425437612e+00 1.1769601228124882e+00 2 0 0 -119 0 P 215 111 2.0376839245720407e-01 9.5253597382538593e-02 -4.7041520009880311e-01 5.3861383797940510e-01 1.3497999999999999e-01 2 0 0 -120 0 P 216 211 -3.7513548504597932e-01 -1.6549761705299173e+00 -1.2786313220221100e+01 1.2899184404746814e+01 1.3957000000000000e-01 1 0 0 0 0 P 217 -213 -2.1174877789763138e+00 -4.6565168150860687e+00 -3.4092669047415427e+01 3.4483981898105036e+01 8.1732577895507696e-01 2 0 0 -121 0 P 218 213 -1.4624568517013021e+00 -3.2285795332704748e+00 -2.2904322908266014e+01 2.3190101073166680e+01 7.8120039159357335e-01 2 0 0 -122 0 P 219 423 -6.1660368628482862e+00 -1.0265356819331664e+01 -7.3205632306352982e+01 7.4205720854157562e+01 2.0066999999999999e+00 2 0 0 -123 0 V -15 0 0 0 0 0 2 1 0 P 77 1 -2.7757952548649567e+00 2.4411748333780570e+00 -7.0638920299289350e+02 7.0639887491331649e+02 0 2 0 0 -15 0 P 78 -1 2.7757952548649567e+00 -2.4411748333780570e+00 -8.6031909561677764e+02 8.6032703703692482e+02 0 2 0 0 -15 0 P 220 92 0 0 -1.5667082986096711e+03 1.5667259119502414e+03 7.4290136562772222e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 5 0 P 221 -213 -1.7885720363582260e+00 1.7287395051384025e+00 -4.2474636243825864e+02 4.2475432242163549e+02 7.5794533062782676e-01 2 0 0 -124 0 P 222 321 1.2221409920756893e-01 -3.9052123101057939e-01 -2.3797370899223017e+02 2.3797457270808695e+02 4.9359999999999998e-01 1 0 0 0 0 P 223 -311 -1.4310621531520257e-01 6.8916925497865578e-01 -2.3930818405535223e+02 2.3930973666976050e+02 4.9767000000000000e-01 2 0 0 -125 0 P 224 -211 1.0455705265694681e+00 -5.9970613535307249e-01 -1.9020645590958804e+02 1.9021032625660933e+02 1.3957000000000000e-01 1 0 0 0 0 P 225 213 7.6389362589639143e-01 -1.4276813937534063e+00 -4.7447358721424200e+02 4.7447695389414901e+02 7.5697099398205658e-01 2 0 0 -126 0 V -17 0 0 0 0 0 2 1 0 P 79 21 -7.5401877658973304e-01 1.3384290257198865e+00 -1.4859746620657739e+02 1.4860540669702181e+02 0 2 0 0 -17 0 P 80 21 7.5401877658973304e-01 -1.3384290257198865e+00 -2.4851028723311703e+02 2.4851503535452068e+02 0 2 0 0 -17 0 P 226 92 0 0 -3.9710775343969442e+02 3.9712044205154251e+02 3.1745319798984757e+00 2 0 0 -18 0 V -18 0 0 0 0 0 0 3 0 P 227 223 -4.0091724737249357e-01 6.1990459875441684e-01 -1.7906191557022262e+02 1.7906512378905094e+02 7.7713162321906681e-01 2 0 0 -127 0 P 228 323 -1.9488028794173745e-02 -7.7785230989156753e-02 -1.6906874637248893e+02 1.6907093537907687e+02 8.5659772680935542e-01 2 0 0 -128 0 P 229 -321 4.2040527616666734e-01 -5.4211936776526004e-01 -4.8977091496982766e+01 4.8984382883414554e+01 4.9359999999999998e-01 1 0 0 0 0 V -19 0 0 0 0 0 8 1 0 P 81 21 -1.3791566704996188e+00 5.5842983452923867e-01 1.1095746819376311e+01 1.1195066524213935e+01 0 2 0 0 -19 0 P 82 21 -6.2674041447266615e-01 1.2638494239576992e+00 5.6589125161322809e+00 5.8321016605345761e+00 0 2 0 0 -19 0 P 83 21 6.2640530855308885e-01 1.2451805545363857e+00 2.6495318642395045e+01 2.6531957488772392e+01 0 2 0 0 -19 0 P 84 21 1.3791566704996188e+00 -5.5842983452923867e-01 7.0220353767907852e+01 7.0236116067818031e+01 0 2 0 0 -19 0 P 85 21 1.0776015154264187e+00 -7.7285588724139764e-01 3.7719532764269857e+01 3.7742836183881572e+01 0 2 0 0 -19 0 P 86 21 2.2749289677437734e-01 -6.7982275216009691e-01 6.2453689694988491e+01 6.2457803903998652e+01 0 2 0 0 -19 0 P 87 21 6.2674041447266615e-01 -1.2638494239576992e+00 5.3320252166011407e+01 5.3338910843404143e+01 0 2 0 0 -19 0 P 88 21 -1.0461475272094014e+00 -5.7130916856659597e-01 1.9207964966682113e+01 1.9244914574402816e+01 0 2 0 0 -19 0 P 230 92 8.8535219354448369e-01 -7.7880725343170487e-01 2.8617177133776340e+02 2.8657970724702608e+02 1.5239931297529406e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 12 0 P 231 313 7.2975987715867485e-01 5.4501671813930848e-02 1.8152815614578788e+01 1.8190145059527943e+01 9.0616921114780302e-01 2 0 0 -129 0 P 232 111 -5.1818868156741256e-02 2.1894553893929872e-01 4.4049285390280470e+00 4.4127358156207617e+00 1.3497999999999999e-01 2 0 0 -130 0 P 233 223 7.3536464272953628e-02 3.6191029531248914e-01 1.3804978332640657e+01 1.3832109102628028e+01 7.8321694880551507e-01 2 0 0 -131 0 P 234 211 6.7783697321832892e-01 -1.5917030585132996e-01 8.3466379456898601e+00 8.3767919235144213e+00 1.3957000000000000e-01 1 0 0 0 0 P 235 113 2.6154504464305384e-01 -2.9369869391191566e-01 4.4080819093255947e+01 4.4090218894684874e+01 8.2105146957190811e-01 2 0 0 -132 0 P 236 -213 1.8952729956052599e+00 -9.8757820558765097e-01 9.4996753814327448e+01 9.5023999065670083e+01 7.8089226690424207e-01 2 0 0 -133 0 P 237 211 -6.7410017169989545e-01 -8.1685344334581322e-01 3.6336919289111584e+01 3.6352618114761711e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 -211 2.6139985595973092e-01 -4.3569955221808354e-01 8.5398067693914239e+00 8.5560471847660118e+00 1.3957000000000000e-01 1 0 0 0 0 P 239 211 1.6138472591488751e-01 -2.7220801937492040e-01 2.3848873803521329e+01 2.3851381589265568e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 221 -8.2516139184730719e-01 -1.9269129760419668e-01 1.1157038849820889e+01 1.1202555005786868e+01 5.4744999999999999e-01 2 0 0 -134 0 P 241 113 -8.5786442680798036e-01 1.0598541874939085e+00 8.8478349916916521e+00 8.9892652329440281e+00 8.1454472834957203e-01 2 0 0 -135 0 P 242 -321 -7.6643888471648236e-01 6.8388057090257848e-01 1.3654364294705637e+01 1.3701840257855718e+01 4.9359999999999998e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 243 -211 2.2529776626023970e-02 1.1630963322574295e-01 -3.8756651171278039e-01 4.2862933581025242e-01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 8.2945592205552188e-01 2.2207609642166020e+00 -1.1307854498701058e+01 1.1554461015167043e+01 1.3497999999999999e-01 2 0 0 -136 0 V -22 0 0 0 0 0 0 2 0 P 245 -211 9.9287861945388967e-02 -6.9062653930214518e-02 -3.5428716893485541e+00 3.5476819645770177e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 211 4.2475992205939583e-01 1.8063070997262598e-01 -1.2711597270209163e+00 1.3595496612014617e+00 1.3957000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 247 22 2.1785812572812164e-02 2.6172747021162276e-02 5.7672015774473178e-03 3.4538311049128911e-02 0 1 0 0 0 0 P 248 22 3.3149002929008027e-02 3.7719344650053988e-01 -3.9652671968303199e+00 3.9833048709252381e+00 0 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 249 211 2.8891679691318167e-01 -3.1220072799245078e-02 -1.7702775288727863e+00 1.7993915423320466e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 111 -4.6450439461778709e-01 6.3905595449027325e-02 -2.5618728253751550e+00 2.6079225892546374e+00 1.3497999999999999e-01 2 0 0 -137 0 V -25 0 0 0 0 0 0 2 0 P 251 -211 1.3634767746256013e-02 -8.1129246333821008e-03 -3.5984892106225064e-01 3.8629361543684249e-01 1.3957000000000000e-01 1 0 0 0 0 P 252 111 1.4605302374064033e+00 8.2376469184061507e-01 -5.2608462618245202e+00 5.5232653234164566e+00 1.3497999999999999e-01 2 0 0 -138 0 V -26 0 -1.6503145905914604e+01 1.3176633411442285e+01 -4.1593614073273670e+01 7.8488908675930944e+01 0 2 0 P 253 2112 -1.5820002645356926e-01 3.3119493263042871e-01 -5.2419472004750201e-01 1.1367889958983872e+00 9.3957000000000002e-01 1 0 0 0 0 P 254 211 -1.5275434322078466e-01 -8.2919133564953895e-02 -2.5951743522089460e-01 3.4210898288061242e-01 1.3957000000000000e-01 1 0 0 0 0 V -27 0 2.7638100404622435e+01 -1.0300043434333849e+01 1.1617752222227568e+02 1.6294736784997974e+02 0 2 0 P 255 -3122 2.8449510713851728e-01 -2.0509565124435222e-01 1.0626680499499952e+00 1.5801920576087032e+00 1.1156800000000000e+00 2 0 0 -139 0 P 256 111 4.4730786135440175e-02 8.2401220339760273e-02 3.2124213099669247e-01 3.6084194804522429e-01 1.3497999999999999e-01 2 0 0 -140 0 V -28 0 0 0 0 0 0 2 0 P 257 130 -1.9535533613894738e-02 6.4554764434135402e-03 6.3963101206643991e-01 8.1069511577832343e-01 4.9767000000000000e-01 1 0 0 0 0 P 258 310 1.5844360625346862e-01 -9.6338070329030301e-02 5.3693435002357814e-01 7.5522137502362030e-01 4.9767000000000000e-01 2 0 0 -141 0 V -29 0 0 0 0 0 0 2 0 P 259 -321 1.8603649946471490e-01 -9.0016844207057078e-01 1.3231767962018801e-01 1.0516946950388759e+00 4.9359999999999998e-01 1 0 0 0 0 P 260 211 -1.9950548343470553e-01 -4.1198898743536916e-01 1.6335601046236445e-01 5.0567018375885719e-01 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 261 22 3.1146235660598875e-01 1.7618896495951725e-01 5.6596751410054669e-01 6.6960479237623038e-01 0 1 0 0 0 0 P 262 22 3.8044901761378397e-01 -3.7188215270402902e-01 5.3061631873275461e-01 7.5139301847207507e-01 0 1 0 0 0 0 V -31 0 -2.9639677030375270e-05 1.0672919467324778e-04 1.1289017882436119e-04 1.7947822907722369e-04 0 2 0 P 263 22 -5.2588892058507426e-02 1.2473976536690747e-01 4.3689003005723578e-02 1.4224742393226877e-01 0 1 0 0 0 0 P 264 22 5.4348914904117215e-03 4.5056568820442622e-02 1.3590889041804816e-01 1.4328593418074523e-01 0 1 0 0 0 0 V -32 0 7.8479022996021854e-05 -1.3127663826160478e-05 1.1398253575380745e-04 1.3922801399024289e-04 0 2 0 P 265 22 3.9823257309425553e-01 -9.0283231677173129e-02 4.8831203169192483e-01 6.3654448744014813e-01 0 1 0 0 0 0 P 266 22 9.5664490495140997e-01 -1.3635537031359352e-01 1.4795051592942168e+00 1.7671156661523473e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 267 -211 8.2083452239342114e-01 -1.0099476996731223e+00 1.0591979981469928e+00 1.6837885417731242e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 111 5.1049918512048140e-02 3.7938422960251565e-02 6.3500030295380247e-02 1.6216433752311851e-01 1.3497999999999999e-01 2 0 0 -142 0 V -34 0 0 0 0 0 0 2 0 P 269 211 -2.5240998365314465e-01 -9.8321664904722546e-03 3.2639472702332517e-01 4.3568425961274765e-01 1.3957000000000000e-01 1 0 0 0 0 P 270 111 8.3382234418899315e-01 3.1007322695373035e-01 9.0904227523804104e-01 1.2790553413798331e+00 1.3497999999999999e-01 2 0 0 -143 0 V -35 0 0 0 0 0 0 3 0 P 271 111 1.3315974508517774e-02 -7.8018843437649546e-02 6.1507125710444333e-01 6.3466251411636110e-01 1.3497999999999999e-01 2 0 0 -144 0 P 272 111 -1.6001056519851709e-01 -8.8198302289216560e-02 3.6987198639988622e-01 4.3405899164197315e-01 1.3497999999999999e-01 2 0 0 -145 0 P 273 111 -2.5968274022294946e-01 -2.0668645508680561e-01 6.7849059361571273e-01 7.6728319563968828e-01 1.3497999999999999e-01 2 0 0 -146 0 V -36 0 0 0 0 0 0 2 0 P 274 -211 -1.9202462978765288e-02 -4.5736243764505796e-01 2.2081526619117797e+00 2.2594174242846670e+00 1.3957000000000000e-01 1 0 0 0 0 P 275 111 1.8508095632546206e-01 2.2337540420337926e-01 4.7056897919817586e-01 5.6903980193039561e-01 1.3497999999999999e-01 2 0 0 -147 0 V -37 0 -3.2918839981117762e-05 4.3659862466286734e-06 1.1333043543613252e-04 1.1814964769734653e-04 0 2 0 P 276 22 -7.5265603979505791e-01 3.6915231350529480e-02 2.4801675595139199e+00 2.5921197834611878e+00 0 1 0 0 0 0 P 277 22 -4.8738178093588397e-01 1.2754949686334888e-01 1.7889387109780166e+00 1.8585240343277822e+00 0 1 0 0 0 0 V -38 0 0 0 0 0 0 3 0 P 278 111 -1.2617532688970681e-01 -3.1150715908114374e-01 2.9349846745883523e+00 2.9572472949929343e+00 1.3497999999999999e-01 2 0 0 -148 0 P 279 111 2.6539826707047180e-02 -1.3298391672337992e-01 6.9823355256171626e-01 7.2397429431692251e-01 1.3497999999999999e-01 2 0 0 -149 0 P 280 111 2.1006549396817249e-02 -5.5936255866830126e-02 6.6014724691316251e-01 6.7644964915726602e-01 1.3497999999999999e-01 2 0 0 -150 0 V -39 0 0 0 0 0 0 2 0 P 281 2212 -1.8569813986340327e+00 -1.4818003100035613e+00 1.1730237101919753e+01 1.2005120787970197e+01 9.3827000000000005e-01 1 0 0 0 0 P 282 211 -2.5771182400491993e-01 -8.7945528450739288e-02 1.9237976045799636e+00 1.9479801868843607e+00 1.3957000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 283 211 -5.4539059555416969e-01 -2.1096473157033717e-02 2.2755131987630186e+00 2.3442133148549646e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 111 8.7542961760082083e-02 -3.0067130108449408e-01 1.4338770656036557e+00 1.4738690719035121e+00 1.3497999999999999e-01 2 0 0 -151 0 V -41 0 0 0 0 0 0 2 0 P 285 -211 -1.2368401736251622e-01 -3.0744450782263283e-01 7.1058185981755102e+00 7.1149109338499947e+00 1.3957000000000000e-01 1 0 0 0 0 P 286 211 -8.5396082209916249e-02 2.3329547669543893e-01 1.8887059238092954e+00 1.9100809202323545e+00 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 287 -211 -7.0433678513092624e-01 -5.5903762188775530e-01 8.5164166784546360e+00 8.5648961578955980e+00 1.3957000000000000e-01 1 0 0 0 0 P 288 211 -5.4844556782635556e-01 -1.7247519427873272e+00 1.9610015795300519e+01 1.9693850844409603e+01 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 289 -211 7.5810792773897115e-02 3.7693855642854995e-01 7.8662234333723449e+00 7.8768509469368304e+00 1.3957000000000000e-01 1 0 0 0 0 P 290 211 -2.4015631853625730e-01 -1.8712947182677708e-01 7.3592195960046976e+00 7.3668368614812287e+00 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 291 2112 -8.8495025977320096e-01 -3.1088601516061459e-01 7.5389999612525060e+01 7.5401688445538966e+01 9.3957000000000002e-01 1 0 0 0 0 P 292 211 -6.3164895471607169e-02 -1.1506032106797688e-01 4.4594761897344890e+00 4.4635900745042711e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 293 -2212 -1.1186619305179213e+00 3.0180136845560795e-01 2.3033028155259495e+02 2.3033510683191861e+02 9.3827000000000005e-01 1 0 0 0 0 P 294 111 -1.1199237102659966e-01 -1.2749319008609916e-01 5.8504540818115437e+01 5.8504942635162216e+01 1.3497999999999999e-01 2 0 0 -152 0 V -46 0 0 0 0 0 0 2 0 P 295 311 2.8912477334571818e-01 1.4462309329539375e-01 2.4894854503790154e+02 2.4894925238066224e+02 4.9767000000000000e-01 2 0 0 -153 0 P 296 211 3.1788625445756072e-02 -1.1390146367228111e-01 1.7741467228176489e+01 1.7742410299998554e+01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 -1.2773760809826511e+01 2.0709592173997947e+01 1.7735691494640971e+04 1.7735762184188472e+04 0 2 0 P 297 2112 -3.7110548968454327e-01 4.4273211294704107e-01 4.0771918715517893e+02 4.0772067901600605e+02 9.3957000000000002e-01 1 0 0 0 0 P 298 111 4.5472694113310765e-02 8.5203433612692836e-02 4.4404732242628278e+01 4.4405042422352452e+01 1.3497999999999999e-01 2 0 0 -154 0 V -48 0 0 0 0 0 0 3 0 P 299 -211 3.1643840651248972e-01 1.9348409911221109e-01 1.6608227274033436e+02 1.6608274554492840e+02 1.3957000000000000e-01 1 0 0 0 0 P 300 211 1.8886397742721794e-01 2.6534927444228817e-01 1.0848249584257967e+02 1.0848307455017871e+02 1.3957000000000000e-01 1 0 0 0 0 P 301 221 4.5417631236911371e-01 5.2520540519993808e-01 4.7156752687778913e+02 4.7156835583399493e+02 5.4744999999999999e-01 2 0 0 -155 0 V -49 0 0 0 0 0 0 2 0 P 302 211 4.7759092321568269e-01 -8.9925885283744109e-02 2.5191083610394389e+02 2.5191134354396939e+02 1.3957000000000000e-01 1 0 0 0 0 P 303 111 3.8877520125998183e-02 1.2294921193627727e-01 7.1240877702392837e+01 7.1241122277642290e+01 1.3497999999999999e-01 2 0 0 -156 0 V -50 0 0 0 0 0 0 2 0 P 304 -211 1.3113987549094148e+00 4.2430477761160401e-01 3.7009358956148827e+02 3.7009618251953225e+02 1.3957000000000000e-01 1 0 0 0 0 P 305 111 5.2456783021704770e-02 -5.9261057420490135e-02 6.9311885985851276e+01 6.9312062601707780e+01 1.3497999999999999e-01 2 0 0 -157 0 V -51 0 0 0 0 0 0 2 0 P 306 -321 7.8403830194827451e-01 -9.3223686994855212e-02 5.2770332464890586e+01 5.2778547120300914e+01 4.9359999999999998e-01 1 0 0 0 0 P 307 211 6.1411823541715885e-02 -2.5703292090223781e-03 5.2700453889618410e+00 5.2722515309193021e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 308 -211 3.8585219373570501e-01 -2.8804027172826735e-01 1.7899790075132241e+01 1.7906809141559830e+01 1.3957000000000000e-01 1 0 0 0 0 P 309 211 1.3802998426570287e-01 3.3557188553461254e-01 1.1784377830827740e+01 1.1790788837542719e+01 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 310 321 3.5835963892788125e-01 -6.3238553569771247e-02 1.5028760676367352e+01 1.5041266873937042e+01 4.9359999999999998e-01 1 0 0 0 0 P 311 111 2.5483708397082583e-01 2.5308770485590348e-01 1.1932162441154821e+01 1.1938329675805647e+01 1.3497999999999999e-01 2 0 0 -158 0 V -54 0 0 0 0 0 0 2 0 P 312 22 -9.5066825605305480e-02 -2.4488876650167024e-01 3.6853304505745532e+00 3.6946811417524823e+00 0 1 0 0 0 0 P 313 22 4.3459585771222137e-01 -2.5487290509470073e-01 1.4922549675166406e+01 1.4931052292624962e+01 0 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 314 -321 1.5696330868575246e+00 8.6522764020852039e-01 2.7595361119895273e+01 2.7657909595523780e+01 4.9359999999999998e-01 1 0 0 0 0 P 315 211 1.8856337664445375e-01 1.0293161039023140e-01 1.5203885172597491e+00 1.5418210310358278e+00 1.3957000000000000e-01 1 0 0 0 0 V -56 0 1.4124140275457086e-04 3.5269164949732845e-05 4.3953780779777262e-04 4.6330471796632159e-04 0 2 0 P 316 22 3.7072348088129020e-01 1.5759062340257801e-01 1.2317513164098621e+00 1.2959483050409775e+00 0 1 0 0 0 0 P 317 22 8.0101419089786197e-01 1.3500211794540778e-01 2.4146512080879159e+00 2.5476243370226186e+00 0 1 0 0 0 0 V -57 0 -6.8958281872392228e-08 1.2813003342873742e-05 3.0583479348233417e-05 3.3304098533714721e-05 0 2 0 P 318 22 3.3528605541576495e-02 6.8537302451704335e-02 1.1287471319350841e-01 1.3624327541363582e-01 0 1 0 0 0 0 P 319 22 -3.6527135260472646e-02 4.8861363386395690e-01 1.2169941472665902e+00 1.3119269298589815e+00 0 1 0 0 0 0 V -58 0 0 0 0 0 0 3 0 P 320 -211 4.3110262623279189e-01 4.7584336696875934e-01 2.1579989602512253e+00 2.2558181845127381e+00 1.3957000000000000e-01 1 0 0 0 0 P 321 211 6.6633030808632610e-01 2.0180679303445290e-01 1.8913081742277793e+00 2.0202100029427843e+00 1.3957000000000000e-01 1 0 0 0 0 P 322 111 6.9262078402365179e-01 3.6149437652111838e-01 3.6524303745036972e+00 3.7374950134702720e+00 1.3497999999999999e-01 2 0 0 -159 0 V -59 0 0 0 0 0 0 2 0 P 323 -211 3.3000706603100066e-01 2.8950628144440510e-01 1.3861728804293363e+00 1.4607099609312999e+00 1.3957000000000000e-01 1 0 0 0 0 P 324 211 -1.7430166321718724e-03 1.0283779848170682e+00 1.3258600063332495e+00 1.6837306373221932e+00 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 3 0 P 325 211 1.4465994339530233e-01 2.3707584941409188e-01 4.3550299160463279e-01 5.3504588419604737e-01 1.3957000000000000e-01 1 0 0 0 0 P 326 -211 -1.2338046488261442e-01 4.8960018091178517e-02 8.2858472546603323e-01 8.5067752683479314e-01 1.3957000000000000e-01 1 0 0 0 0 P 327 111 -1.0960976790496164e-01 5.4955523766490433e-01 1.5539938424810633e+00 1.6574503682868362e+00 1.3497999999999999e-01 2 0 0 -160 0 V -61 0 0 0 0 0 0 2 0 P 328 211 -5.2770315149785851e-01 7.9062273709033337e-01 7.9166032493733773e-01 1.2448938844274533e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 111 -8.2518800833524342e-01 5.3105343480616363e-01 1.6907267522170417e+00 1.9595227864921847e+00 1.3497999999999999e-01 2 0 0 -161 0 V -62 0 -2.5987313344272062e-04 2.4320773406804607e-04 7.6347043032251474e-05 3.6511233922096627e-04 0 2 0 P 330 22 -1.0967705041900722e+00 1.0725704595296932e+00 3.0454127356608196e-01 1.5639879529019185e+00 0 1 0 0 0 0 P 331 22 -1.4800976526145179e-01 9.2383319013346371e-02 6.1157525453710053e-02 1.8488323656917352e-01 0 1 0 0 0 0 V -63 0 -3.4447625548172890e-04 -2.0177929744464974e-06 -2.8220819218082935e-04 4.4607110058720949e-04 0 2 0 P 332 22 -4.8794042041903141e-01 -6.2280468956035583e-02 -4.1351205949262715e-01 6.4261725314367235e-01 0 1 0 0 0 0 P 333 22 -1.3084097563584298e+00 5.1758226250864466e-02 -1.0581270675733281e+00 1.6835224666305735e+00 0 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 334 -211 -2.4418062774438076e-01 1.1790941854152348e+00 -1.6396914224986343e+00 2.0391064275709718e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -3.6647563150599104e-02 -1.9991761277918638e-01 -2.9491896480876634e-01 3.8276218724957695e-01 1.3497999999999999e-01 2 0 0 -162 0 V -65 0 0 0 0 0 0 2 0 P 336 -211 3.7497404799661231e-02 6.5981173436942453e-01 -5.7502852680064875e-01 8.8707111987304721e-01 1.3957000000000000e-01 1 0 0 0 0 P 337 211 -5.8096609408685840e-01 2.3310262543857746e-01 -7.9579602917735204e-01 1.0220712017366202e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 338 311 -2.3117902682172800e-01 1.9814679835132576e-03 -7.2468130319277968e-01 9.0900279909073789e-01 4.9767000000000000e-01 2 0 0 -163 0 P 339 211 -4.7264746841652057e-02 4.5344768317863737e-01 -5.3595365701738040e-01 7.1733873800623871e-01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 1 0 P 340 130 1.0188870630336166e+00 1.1344327073239302e+00 -1.6508881094490191e+00 2.3017765733197755e+00 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 341 321 1.5528537654789747e+00 -2.0974645032671727e-01 -2.8224905768371578e+00 3.2657988925715311e+00 4.9359999999999998e-01 1 0 0 0 0 P 342 -211 5.4437971796534690e-01 -6.1567274077928176e-03 -4.2401926312420729e-01 7.0403075431745188e-01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.1493754178194479e+02 -1.1220336258685219e+01 -2.0460324545789598e+02 2.4797067730866462e+02 0 2 0 P 343 2212 1.5253126054805941e+00 -1.3451863192668220e-01 -2.5444661251940430e+00 3.1143750997484894e+00 9.3827000000000005e-01 1 0 0 0 0 P 344 -211 9.1505772541175465e-02 -2.3317055085340186e-02 -3.3367344809541061e-01 3.7381111049578342e-01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 345 -2112 7.2653313852667967e-01 -1.3322315356115468e+00 -2.0918870475233748e+00 2.7498135337421319e+00 9.3957000000000002e-01 1 0 0 0 0 P 346 111 1.9135915318974542e-01 -1.3176507514739655e-01 -9.3409920720927117e-02 2.8447385508546369e-01 1.3497999999999999e-01 2 0 0 -164 0 V -71 0 0 0 0 0 0 3 0 P 347 211 1.1778187631717820e+00 -7.2051320149619380e-01 -1.9249759492383758e+00 2.3730588914849937e+00 1.3957000000000000e-01 1 0 0 0 0 P 348 -211 9.3936997016603940e-01 -2.8246491280636726e-01 -1.5752702680184503e+00 1.8609563589776561e+00 1.3957000000000000e-01 1 0 0 0 0 P 349 111 6.4188713536966269e-01 -2.1395124879332331e-01 -1.6120958664703737e+00 1.7535298442011642e+00 1.3497999999999999e-01 2 0 0 -165 0 V -72 0 1.4793891347935977e-04 3.5939733718722263e-05 -3.5961351380388762e-04 3.9158963736778330e-04 0 2 0 P 350 22 5.7106960575298760e-01 1.3849754767201361e-01 -1.2389023104704266e+00 1.3711969224786773e+00 0 1 0 0 0 0 P 351 22 1.1670110351420639e-01 2.8586930436231801e-02 -4.3294747964902719e-01 4.4931044978683088e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 352 321 2.0147604753384614e+00 -2.3015665966162748e+00 -4.3166062534093825e+00 5.3134921735727501e+00 4.9359999999999998e-01 1 0 0 0 0 P 353 22 1.1692000833135065e-01 5.1734732529315750e-02 -1.7443819156372806e-01 2.1627633613991801e-01 0 1 0 0 0 0 V -74 0 7.3739320168277829e-05 2.1354797669079377e-04 -7.1230971969465690e-04 7.4792815217594960e-04 0 2 0 P 354 22 1.4645470565621396e-01 6.2163347105832012e-01 -1.9973863717249980e+00 2.0970048810390534e+00 0 1 0 0 0 0 P 355 22 1.7293692157466675e-01 3.0331994065588691e-01 -1.0878842809805922e+00 1.1425420666425690e+00 0 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 356 211 1.0859087059385153e-01 -1.3146508844273680e-01 -1.4365841205548222e+00 1.4533852782334968e+00 1.3957000000000000e-01 1 0 0 0 0 P 357 111 2.7642048302047040e-01 5.5222654007940042e-01 -4.6872841180940403e+00 4.7297161055541128e+00 1.3497999999999999e-01 2 0 0 -166 0 V -76 0 0 0 0 0 0 2 0 P 358 -211 1.1874559575968172e-01 4.1731493168420569e-01 -5.1148379263310044e+00 5.1351045818223566e+00 1.3957000000000000e-01 1 0 0 0 0 P 359 211 3.8563894953934619e-01 -1.4653464384205969e-01 -5.9028131828463799e+00 5.9188574115054280e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 360 211 6.0357861149457792e-01 6.8143249046643772e-01 -9.5857128207101656e+00 9.6298508527050544e+00 1.3957000000000000e-01 1 0 0 0 0 P 361 -211 4.9542133180015890e-01 -9.2112939645886266e-02 -3.5937558379931671e+00 3.6315957783958859e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 1 0 P 362 130 -3.3518154987780335e-01 2.7450396088051932e-01 -1.0860734108410499e+01 1.0880759160022281e+01 4.9767000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 363 130 2.6628253276383534e-01 -2.1812068009139068e-01 -1.2667093516643348e+01 1.2681538416399905e+01 4.9767000000000000e-01 1 0 0 0 0 P 364 310 4.3759169742857629e-01 -4.2201504234589304e-01 -1.4301438665596876e+01 1.4323002706288721e+01 4.9767000000000000e-01 2 0 0 -167 0 V -80 0 0 0 0 0 0 2 0 P 365 -311 -2.6686785063363155e-01 -2.7947361448744645e-01 -1.4357472069623856e+01 1.4371290951401187e+01 4.9767000000000000e-01 2 0 0 -168 0 P 366 111 3.7426203066441915e-01 -2.3731568225626246e-01 -9.2345356632933839e+00 9.2461483504040309e+00 1.3497999999999999e-01 2 0 0 -169 0 V -81 0 0 0 0 0 0 2 0 P 367 211 5.8759821690787785e-02 6.6783449088069782e-02 -6.4867688668004746e+00 6.4888799389346961e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 -211 1.6490290121023712e-01 -6.2713362019790775e-01 -1.4675600703272529e+01 1.4690582879219029e+01 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 369 211 2.7124875535877929e-02 1.5519251891919245e-02 -4.3560508736310100e+00 4.3583982843028020e+00 1.3957000000000000e-01 1 0 0 0 0 P 370 111 -9.6594679593322935e-02 -3.6784450496450483e-01 -1.5536310392449544e+00 1.6051881878657328e+00 1.3497999999999999e-01 2 0 0 -170 0 V -83 0 0 0 0 0 0 2 0 P 371 -211 1.1634577752686190e-01 7.2882613600311601e-03 -4.6938648736857091e+00 4.6973861557277301e+00 1.3957000000000000e-01 1 0 0 0 0 P 372 111 -4.6502621774772041e-01 -1.2952786679175612e-01 -2.2034827957377985e+00 2.2597749629068904e+00 1.3497999999999999e-01 2 0 0 -171 0 V -84 0 0 0 0 0 0 2 0 P 373 211 -7.1877895783597845e-01 -6.3041129446119093e-01 -1.1120549386595025e+01 1.1162444178360355e+01 1.3957000000000000e-01 1 0 0 0 0 P 374 111 -5.6741833874183401e-01 -3.6362040166831527e-01 -5.0137281036973276e+00 5.0606197709227638e+00 1.3497999999999999e-01 2 0 0 -172 0 V -85 0 0 0 0 0 0 2 0 P 375 -211 -1.7426730658040709e-01 1.4964422001480288e-01 -1.1878725367256437e+00 1.2179012419460145e+00 1.3957000000000000e-01 1 0 0 0 0 P 376 111 1.9027963761982000e-01 -1.3066971905513018e+00 -1.1169750972797889e+01 1.1248343001660590e+01 1.3497999999999999e-01 2 0 0 -173 0 V -86 0 0 0 0 0 0 3 0 P 377 211 -2.2773261315202711e-01 -1.6393597616388203e-01 -2.4665425224939024e+00 2.4863726485674746e+00 1.3957000000000000e-01 1 0 0 0 0 P 378 -211 -1.3518705876341422e-01 8.7815573806414415e-02 -2.4487118009865450e+00 2.4579781091480091e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 111 -9.4059815266329161e-01 -2.1532387106409628e-01 -5.5608394744809511e+00 5.6455508602428877e+00 1.3497999999999999e-01 2 0 0 -174 0 V -87 0 -3.6535678359858068e-05 -2.9292777214926246e-06 -1.7762673382043843e-04 1.8143258047102916e-04 0 2 0 P 380 22 -9.0033319750246865e-01 -9.8110691677287601e-02 -4.5329532740961200e+00 4.6225416125206653e+00 0 1 0 0 0 0 P 381 22 -1.2600691506825218e-01 1.5823038583351073e-02 -4.5683890080812678e-01 4.7416230605838483e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 382 211 -2.9195629148974700e-01 1.1995848343716158e-01 -2.0289469907441280e+00 2.0580899373056178e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 111 8.2824905286568357e-02 -5.4754057254528565e-01 -5.2081152795808130e+00 5.2392122508371504e+00 1.3497999999999999e-01 2 0 0 -175 0 V -89 0 0 0 0 0 0 2 0 P 384 -211 -5.8824036967498705e-01 -1.4623145910506280e-01 -1.8853813278613789e+00 1.9853344575903822e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 111 -2.2577638467085293e-01 2.3071926045795119e-01 -2.9114326891833691e+00 2.9323823517861394e+00 1.3497999999999999e-01 2 0 0 -176 0 V -90 0 0 0 0 0 0 3 0 P 386 -211 -9.3429225626294438e-02 -4.0701342194165623e-02 -7.2930618411925674e-01 7.4950177755101210e-01 1.3957000000000000e-01 1 0 0 0 0 P 387 211 -3.6672455947514032e-01 1.9091339156249462e-01 -4.5107828692086089e+00 4.5318403219493488e+00 1.3957000000000000e-01 1 0 0 0 0 P 388 111 -8.1515402067539500e-01 1.8509415010652724e-01 -9.0281048837093820e+00 9.0677248146094573e+00 1.3497999999999999e-01 2 0 0 -177 0 V -91 0 0 0 0 0 0 2 0 P 389 211 6.8142067054181412e-03 -1.9670226594767778e-01 -1.3661020533849144e+00 1.3872464885536582e+00 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -1.1485466921485075e+00 -1.9110719272104171e-01 -9.4506699750530707e+00 9.5230805961581879e+00 1.3497999999999999e-01 2 0 0 -178 0 V -92 0 0 0 0 0 0 2 0 P 391 22 -5.2815526563250204e-01 1.6079267216398399e-01 -8.1078572117147356e+00 8.1266321950480602e+00 0 1 0 0 0 0 P 392 22 -3.2264401430321576e-01 -3.4781912002629917e-01 -7.9800674485445082e+00 7.9941574780298916e+00 0 1 0 0 0 0 V -93 0 0 0 0 0 0 1 0 P 393 130 -4.5728331929602956e-01 -1.0572239203222715e+00 -3.9015693647935848e+01 3.9035866286151375e+01 4.9767000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 1 0 P 394 130 -6.5323130526968032e-02 -4.8861506608793813e-02 -4.0563341674815156e+01 4.0566476526990925e+01 4.9767000000000000e-01 1 0 0 0 0 V -95 0 -1.0442064053135991e-03 -7.4314102230825616e-04 -5.3799425041044409e-02 5.3814707093697206e-02 0 2 0 P 395 22 -1.4001822488413267e+00 -9.3099865137171578e-01 -6.8874470311792038e+01 6.8894992049848952e+01 0 1 0 0 0 0 P 396 22 -1.8004831337594958e+00 -1.3468515249813868e+00 -9.6029667851375891e+01 9.6055988132915871e+01 0 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 397 -211 5.1929162046445387e-01 -3.4516406432305091e-01 -4.0409012654176529e+01 4.0414064204045147e+01 1.3957000000000000e-01 1 0 0 0 0 P 398 111 -1.3399520045606433e-01 -4.2731091825064832e-01 -2.5785806730068096e+01 2.5790048422898057e+01 1.3497999999999999e-01 2 0 0 -179 0 V -97 0 0 0 0 0 0 2 0 P 399 22 -2.7543325426756009e-02 -6.7913049594959260e-03 -6.3345855374637900e+01 6.3345861726723250e+01 0 1 0 0 0 0 P 400 113 -1.1486713328625580e+00 -4.1488655374496586e-01 -6.7354472738591437e+02 6.7354640270519167e+02 8.7477485968989943e-01 2 0 0 -180 0 V -98 0 0 0 0 0 0 2 0 P 401 211 -2.4607052049689185e-01 -5.5597285673331986e-01 -1.1703000451553983e+02 1.1703166705302738e+02 1.3957000000000000e-01 1 0 0 0 0 P 402 111 3.3984614448906642e-01 -5.6685703224858559e-02 -1.0049580527912897e+02 1.0049648654043524e+02 1.3497999999999999e-01 2 0 0 -181 0 V -99 0 0 0 0 0 0 2 0 P 403 22 9.4445949312892755e-02 3.1589437233538317e-03 -3.1277078141385851e+02 3.1277079568951439e+02 0 1 0 0 0 0 P 404 22 -5.3315810554360210e-01 -8.7497572337801102e-02 -4.9541261190622720e+02 4.9541290652257004e+02 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 405 2112 -2.5065299601609348e-01 -6.4503450849423816e-01 -1.7748009052799891e+03 1.7748012888971248e+03 9.3957000000000002e-01 1 0 0 0 0 P 406 111 1.6729604420977479e-01 -1.9878025311930850e-01 -4.1110903360680987e+02 4.1110913786278331e+02 1.3497999999999999e-01 2 0 0 -182 0 V -101 0 0 0 0 0 0 3 0 P 407 211 -3.8887949027483565e-01 1.0322886910317884e-01 -4.1356564028319892e-01 5.9363269880928016e-01 1.3957000000000000e-01 1 0 0 0 0 P 408 -211 -6.1809068397356581e-01 6.1040468046757801e-01 -1.3151298304187757e+00 1.5823009269127519e+00 1.3957000000000000e-01 1 0 0 0 0 P 409 111 -1.7375207371784535e-01 3.1485720535936779e-01 -9.6157731745922115e-01 1.0354590193436120e+00 1.3497999999999999e-01 2 0 0 -183 0 V -102 0 0 0 0 0 0 2 0 P 410 -211 2.0846159108927062e-01 -2.6968269028827968e-01 -5.8823992480217413e-01 6.9403961157261185e-01 1.3957000000000000e-01 1 0 0 0 0 P 411 111 -2.2985122795675456e-01 1.5451017334492978e-01 -1.5888033729729603e+00 1.6184006732050513e+00 1.3497999999999999e-01 2 0 0 -184 0 V -103 0 -5.1234045518003170e-04 1.3318693191821063e-04 -9.3562184985265221e-04 1.0790770628246187e-03 0 2 0 P 412 22 -3.5013963543846449e-01 1.5698680023359418e-01 -7.1281210384806493e-01 8.0953302288718654e-01 0 1 0 0 0 0 P 413 22 -3.8758434953227405e-01 3.4790353351130711e-02 -6.3439886206414664e-01 7.4424049397821357e-01 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 414 22 -1.0020049102553870e-01 1.8891760622040438e-01 -1.3710273740598941e-01 2.5402196941607758e-01 0 1 0 0 0 0 P 415 113 -6.7378294054171739e-01 -6.8592168588773789e-02 -1.7896293253204560e+00 2.0358730168583801e+00 6.9521038698248572e-01 2 0 0 -185 0 V -105 0 -4.6078218085258274e-08 -2.3305410216029748e-06 1.9263398273581465e-07 2.4429705489544317e-06 0 2 0 P 416 22 -2.1737171589280652e-02 -2.4878022370605621e-01 -4.4715844345910548e-02 2.5369984444517280e-01 0 1 0 0 0 0 P 417 22 1.2918782667343623e-02 -1.9723565930827677e-01 8.1581883223607210e-02 2.1383265400468413e-01 0 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 418 211 -7.5270344951941917e-02 -2.6809594819367011e-01 -8.0416172015460674e-01 8.6237864034834688e-01 1.3957000000000000e-01 1 0 0 0 0 P 419 111 6.5740144622660451e-02 -1.0868594122050049e-01 1.6200963615395159e-01 2.4617295351181490e-01 1.3497999999999999e-01 2 0 0 -186 0 V -107 0 0 0 0 0 0 2 0 P 420 -211 -2.4092040057546518e-01 -3.5058344100509002e-02 2.3528586798067415e+00 2.3695348655266573e+00 1.3957000000000000e-01 1 0 0 0 0 P 421 211 2.8681151981261488e-01 -3.0221741903224270e-01 9.2712799983067107e-01 1.0259835911133048e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 422 211 -2.3597024375602657e-01 -1.1320607133997902e-01 2.7749429611312300e+00 2.7907500412896655e+00 1.3957000000000000e-01 1 0 0 0 0 P 423 111 4.6285934530449754e-02 2.3300398849057595e-02 1.6357885935937318e+01 1.6358524908739717e+01 1.3497999999999999e-01 2 0 0 -187 0 V -109 0 0 0 0 0 0 2 0 P 424 211 -3.7200093769828385e-01 2.6038299986590668e-01 5.9147347655644275e+01 5.9149255265698955e+01 1.3957000000000000e-01 1 0 0 0 0 P 425 -211 4.8979094211959763e-02 5.0813574986760333e-02 1.5013857672964992e+01 1.5014672256830067e+01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 426 -211 -2.2104361617284840e-01 -1.9460890563999886e-01 5.6259552870276373e+01 5.6260496814858712e+01 1.3957000000000000e-01 1 0 0 0 0 P 427 211 -2.5323728463799988e-01 4.6717016428638417e-02 9.1515457511874914e+00 9.1562318135209235e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 428 -211 2.2298275037464521e-01 6.0657925185022339e-02 6.3977569015012428e+00 6.4034501517899844e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 211 -6.7415355865972540e-02 3.8144590662721511e-01 3.1531318961941533e+01 3.1534007057056400e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 3 0 P 430 211 3.5010471811099370e-02 -1.9372762323061638e-02 7.8337336441024288e+00 7.8350790441895848e+00 1.3957000000000000e-01 1 0 0 0 0 P 431 -211 -4.4938498514333083e-02 1.5476586784814303e-01 2.4337731324919279e+01 2.4338665077841814e+01 1.3957000000000000e-01 1 0 0 0 0 P 432 221 -3.2847411275375044e-01 1.3685710710687030e-02 4.3593098291450445e+01 4.3597775203466369e+01 5.4744999999999999e-01 2 0 0 -188 0 V -113 0 0 0 0 0 0 2 0 P 433 321 2.8329094696921140e+00 5.6252170003630955e+00 -6.1668998037750775e+01 6.1991752695860711e+01 4.9359999999999998e-01 1 0 0 0 0 P 434 -211 5.6876489707233913e-01 8.0525081924307407e-01 -1.2128672297397499e+01 1.2169473853564536e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 435 211 1.5568092122103809e+00 4.2333595363276100e+00 -4.0756785611692379e+01 4.1005853741501276e+01 1.3957000000000000e-01 1 0 0 0 0 P 436 111 2.2641745299420268e-01 4.9887656447132644e-01 -5.3250897608441496e+00 5.3548989954103057e+00 1.3497999999999999e-01 2 0 0 -189 0 V -115 0 0 0 0 0 0 2 0 P 437 -211 7.3019730190009680e-01 1.4376775409019622e+00 -1.5810652164176442e+01 1.5893278656488514e+01 1.3957000000000000e-01 1 0 0 0 0 P 438 111 1.6972080188543919e+00 2.0189621110732010e+00 -2.0755952286795129e+01 2.0923300361016871e+01 1.3497999999999999e-01 2 0 0 -190 0 V -116 0 0 0 0 0 0 3 0 P 439 -211 2.6378700605930222e-01 4.2460835666513497e-01 -2.7948514703487151e+00 2.8426308883367133e+00 1.3957000000000000e-01 1 0 0 0 0 P 440 211 1.5212247244593097e-01 5.1768271454186332e-01 -3.3751637660265166e+00 3.4208693152409073e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 6.4090249223924833e-01 7.1407858822487769e-01 -9.3297930747166298e+00 9.3799745549841500e+00 1.3497999999999999e-01 2 0 0 -191 0 V -117 0 0 0 0 0 0 2 0 P 442 -2112 2.5584894967372740e-01 1.2679993980675828e+00 -6.2198628019071940e+00 6.4220531154762117e+00 9.3957000000000002e-01 1 0 0 0 0 P 443 211 2.4719969519554025e-01 1.0594472255971385e-01 -1.5985461297351695e+00 1.6270099837844609e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 444 -211 -7.7061107280509925e-02 -5.0807653263354946e-01 -3.6585613125640903e+00 3.6971111479043888e+00 1.3957000000000000e-01 1 0 0 0 0 P 445 111 -5.6992744415245974e-02 2.0341731955508449e-01 -1.0026750181099684e+00 1.0335393418505086e+00 1.3497999999999999e-01 2 0 0 -192 0 V -119 0 0 0 0 0 0 2 0 P 446 2212 2.9172210113151043e-01 9.0806400195240178e-01 -6.2049500443417918e+00 6.3475536753624695e+00 9.3827000000000005e-01 1 0 0 0 0 P 447 -211 -1.4066198069548197e-01 1.7584193692323002e-01 -1.0034688353089345e+00 1.0378514671812913e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 6.3634065156039480e-05 2.9746387793978583e-05 -1.4690419418097677e-04 1.6820169039280370e-04 0 2 0 P 448 22 7.1059156404163493e-02 5.6498676390139363e-02 -6.8914116699136413e-02 1.1397657488769897e-01 0 1 0 0 0 0 P 449 22 1.3270923605304058e-01 3.8754920992399237e-02 -4.0150108339966672e-01 4.2463726309170613e-01 0 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 450 -211 -1.8265652958005727e+00 -3.8849714893581857e+00 -3.0091709557374752e+01 3.0396707192116189e+01 1.3957000000000000e-01 1 0 0 0 0 P 451 111 -2.9092248317574099e-01 -7.7154532572788348e-01 -4.0009594900406737e+00 4.0872747059888468e+00 1.3497999999999999e-01 2 0 0 -193 0 V -122 0 0 0 0 0 0 2 0 P 452 211 -1.4557136062324394e+00 -2.6227711367588089e+00 -1.8461867455618169e+01 1.8704493050411674e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -6.7432454688627005e-03 -6.0580839651166551e-01 -4.4424554526478444e+00 4.4856080227550033e+00 1.3497999999999999e-01 2 0 0 -194 0 V -123 0 0 0 0 0 0 2 0 P 454 421 -5.8154346376105401e+00 -9.7302787881740045e+00 -6.9314490473606512e+01 7.0260035263196372e+01 1.8645000000000000e+00 2 0 0 -195 0 P 455 111 -3.5060222523774581e-01 -5.3507803115765928e-01 -3.8911418327464751e+00 3.9456855909611974e+00 1.3497999999999999e-01 2 0 0 -196 0 V -124 0 0 0 0 0 0 2 0 P 456 -211 -4.4122690236994777e-01 6.2979858007682665e-01 -1.8306361423854329e+02 1.8306528252318606e+02 1.3957000000000000e-01 1 0 0 0 0 P 457 111 -1.3473451339882785e+00 1.0989409250615758e+00 -2.4168274819971535e+02 2.4168903989844941e+02 1.3497999999999999e-01 2 0 0 -197 0 V -125 0 0 0 0 0 0 1 0 P 458 130 -1.4310621531520257e-01 6.8916925497865578e-01 -2.3930818405535223e+02 2.3930973666976050e+02 4.9767000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 459 211 5.6105597534982919e-02 -5.2399517038868706e-02 -1.7383177489875688e+01 1.7383907298903821e+01 1.3957000000000000e-01 1 0 0 0 0 P 460 111 7.0778802836140853e-01 -1.3752818767145376e+00 -4.5709040972436634e+02 4.5709304659524520e+02 1.3497999999999999e-01 2 0 0 -198 0 V -127 0 0 0 0 0 0 3 0 P 461 211 -1.3394739750117074e-01 2.2185662325499925e-01 -1.9491652406037591e+01 1.9493874821832382e+01 1.3957000000000000e-01 1 0 0 0 0 P 462 -211 -1.0866247732683988e-01 2.4196536251119855e-01 -9.0384911882155151e+01 9.0385408836274479e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.5830737254448296e-01 1.5608261298821904e-01 -6.9185351282029885e+01 6.9185840130944086e+01 1.3497999999999999e-01 2 0 0 -199 0 V -128 0 0 0 0 0 0 2 0 P 464 311 2.4246393934214444e-01 -4.0857599888205094e-02 -9.9880981517798048e+01 9.9882524009423022e+01 4.9767000000000000e-01 2 0 0 -200 0 P 465 211 -2.6195196813631821e-01 -3.6927631100951659e-02 -6.9187764854690869e+01 6.9188411369653849e+01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 466 311 7.3834995792344460e-01 2.5186711865636535e-01 1.4538411730498545e+01 1.4567830613383158e+01 4.9767000000000000e-01 2 0 0 -201 0 P 467 111 -8.5900807647696798e-03 -1.9736544684243451e-01 3.6144038840802435e+00 3.6223144461447863e+00 1.3497999999999999e-01 2 0 0 -202 0 V -130 0 -1.1493128154775952e-05 4.8560866484662642e-05 9.7698791989329122e-04 9.7871952912389885e-04 0 2 0 P 468 22 -5.0546534411212582e-02 2.1422189464883393e-01 4.4008942169713388e+00 4.4063948848531149e+00 0 1 0 0 0 0 P 469 22 -1.2723337455286718e-03 4.7236442904647902e-03 4.0343220567079690e-03 6.3409307676469927e-03 0 1 0 0 0 0 V -131 0 0 0 0 0 0 3 0 P 470 211 -2.4865068632631293e-01 2.0844988241744339e-01 5.2687591542900796e+00 5.2805853205971314e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 -211 1.9349376625838371e-01 8.9366331215515547e-03 2.6992190913850531e+00 2.7097570350845026e+00 1.3957000000000000e-01 1 0 0 0 0 P 472 111 1.2869338434088287e-01 1.4452377977349418e-01 5.8370000869655243e+00 5.8417667469463952e+00 1.3497999999999999e-01 2 0 0 -203 0 V -132 0 0 0 0 0 0 2 0 P 473 211 3.7940913050399377e-01 8.4580887822972253e-02 1.2995690054034890e+01 1.3002251535035619e+01 1.3957000000000000e-01 1 0 0 0 0 P 474 -211 -1.1786408586093994e-01 -3.7827958173488790e-01 3.1085129039221059e+01 3.1087967359649259e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 475 -211 1.5305325756794201e+00 -8.4356002296295240e-01 8.5786955116496117e+01 8.5804867411016815e+01 1.3957000000000000e-01 1 0 0 0 0 P 476 111 3.6474041992583983e-01 -1.4401818262469851e-01 9.2097986978313422e+00 9.2191316546532782e+00 1.3497999999999999e-01 2 0 0 -204 0 V -134 0 0 0 0 0 0 3 0 P 477 -211 -8.6431363319911803e-02 1.0909442330694115e-02 1.4387909068842040e+00 1.4481672745680920e+00 1.3957000000000000e-01 1 0 0 0 0 P 478 211 -4.6811356157937040e-01 -1.3766906468097923e-01 7.0511463928464941e+00 7.0693867001428616e+00 1.3957000000000000e-01 1 0 0 0 0 P 479 111 -2.7061646694802488e-01 -6.5931675253911540e-02 2.6671015500901913e+00 2.6850010310759136e+00 1.3497999999999999e-01 2 0 0 -205 0 V -135 0 0 0 0 0 0 2 0 P 480 -211 -1.8171528509795734e-01 6.3749015559426248e-01 5.6557002979907738e+00 5.6961249800992562e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 211 -6.7614914171002294e-01 4.2236403189964594e-01 3.1921346937008783e+00 3.2931402528447715e+00 1.3957000000000000e-01 1 0 0 0 0 V -136 0 1.5027713002212096e-04 4.0234758146110371e-04 -2.0487067191724460e-03 2.0933857895773229e-03 0 2 0 P 482 22 3.4028299949375929e-01 8.3501987753409679e-01 -4.5950191656333672e+00 4.6826543592453511e+00 0 1 0 0 0 0 P 483 22 4.8917292256176259e-01 1.3857410866825053e+00 -6.7128353330676909e+00 6.8718066559216897e+00 0 1 0 0 0 0 V -137 0 -5.3058978703179568e-05 7.2997492967402567e-06 -2.9263524146780958e-04 2.9789537133800896e-04 0 2 0 P 484 22 4.8764853936691154e-03 9.2216741582827888e-03 -1.3935215200853282e-01 1.3974205399050585e-01 0 1 0 0 0 0 P 485 22 -4.6938088001145623e-01 5.4683921290744536e-02 -2.4225206733666225e+00 2.4681805352641315e+00 0 1 0 0 0 0 V -138 0 2.8055621786496218e-04 1.5823863172042656e-04 -1.0105666368178138e-03 1.0609752470131398e-03 0 2 0 P 486 22 1.4005876675825479e+00 7.7274973128980184e-01 -4.9225830851919863e+00 5.1759648561800571e+00 0 1 0 0 0 0 P 487 22 5.9942569823855332e-02 5.1014960550813254e-02 -3.3826317663253436e-01 3.4730046723640035e-01 0 1 0 0 0 0 V -139 0 4.1742637287692745e+01 -2.0468159176742141e+01 1.6886187541110721e+02 2.4128923243616055e+02 0 2 0 P 488 -2212 2.7687335108866662e-01 -1.8234548900457659e-01 1.0352082326354319e+00 1.4359371183027343e+00 9.3827000000000005e-01 1 0 0 0 0 P 489 211 7.6217560498506778e-03 -2.2750162239775648e-02 2.7459817314563276e-02 1.4425493930596878e-01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 2.7638102846122077e+01 -1.0300038936703302e+01 1.1617753975634150e+02 1.6294738754548621e+02 0 2 0 P 490 22 3.2716766326961147e-02 8.3323493178293961e-02 8.2310808168201521e-02 1.2160699180404330e-01 0 1 0 0 0 0 P 491 22 1.2014019808479029e-02 -9.2227283853368630e-04 2.3893132282849092e-01 2.3923495624118099e-01 0 1 0 0 0 0 V -141 0 2.0877139694254452e+00 -1.2693875124986593e+00 7.0748537584744327e+00 9.9510876577955223e+00 0 2 0 P 492 -211 -9.3608988404477997e-02 3.6615770411120713e-02 5.9579201444973348e-02 1.8202423876432039e-01 1.3957000000000000e-01 1 0 0 0 0 P 493 211 2.5205259465794660e-01 -1.3295384074015101e-01 4.7735514857860484e-01 5.7319713625929991e-01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 3.0639445046409965e-05 2.2770109322774893e-05 3.8111827509019324e-05 9.7328760806041919e-05 0 2 0 P 494 22 -2.2210125660765894e-02 2.5778799441279088e-02 7.9253618727722672e-02 8.6249476890819049e-02 0 1 0 0 0 0 P 495 22 7.3260044172814037e-02 1.2159623518972477e-02 -1.5753588432342425e-02 7.5914860632299380e-02 0 1 0 0 0 0 V -143 0 9.7082310224015709e-05 3.6101965150097557e-05 1.0584020059721679e-04 1.4892098815881126e-04 0 2 0 P 496 22 1.0951380760590612e-01 3.6800778626488555e-02 1.9071980050735854e-01 2.2298343810567164e-01 0 1 0 0 0 0 P 497 22 7.2430853658308703e-01 2.7327244832724179e-01 7.1832247473068245e-01 1.0560719032741617e+00 0 1 0 0 0 0 V -144 0 2.8046665235960425e-06 -1.6432656750678425e-05 1.2954889357316644e-04 1.3367528647526642e-04 0 2 0 P 498 22 1.0777337775574223e-02 -1.1022283435195526e-01 5.5974458101301672e-01 5.7059549612273064e-01 0 1 0 0 0 0 P 499 22 2.5386367329435530e-03 3.2203990914305709e-02 5.5326676091426538e-02 6.4067017993630446e-02 0 1 0 0 0 0 V -145 0 -1.1563408573257445e-05 -6.3737854033111706e-06 2.6729365609314421e-05 3.1367937854761048e-05 0 2 0 P 500 22 -1.6591069145687787e-01 -1.1299502378313055e-01 3.1448618413924789e-01 3.7308952404739876e-01 0 1 0 0 0 0 P 501 22 5.9001262583607801e-03 2.4796721493913983e-02 5.5385802260638321e-02 6.0969467594574459e-02 0 1 0 0 0 0 V -146 0 -4.2831428190410677e-05 -3.4090352140387271e-05 1.1190855854867583e-04 1.2655379047346404e-04 0 2 0 P 502 22 7.8130814253044179e-03 9.0682685453542106e-03 9.8731420950675872e-03 1.5516335604726155e-02 0 1 0 0 0 0 P 503 22 -2.6749582164825386e-01 -2.1575472363215983e-01 6.6861745152064511e-01 7.5176686003496207e-01 0 1 0 0 0 0 V -147 0 3.2889744143173022e-05 3.9694845099070235e-05 8.3622289590541278e-05 1.0112101139061283e-04 0 2 0 P 504 22 6.6847424598463878e-02 1.5220170058469032e-01 1.6729008496863701e-01 2.3583873381006101e-01 0 1 0 0 0 0 P 505 22 1.1823353172699820e-01 7.1173703618688952e-02 3.0327889422953885e-01 3.3320106812033462e-01 0 1 0 0 0 0 V -148 0 -4.1960831369575292e-05 -1.0359473357295226e-04 9.7605768131151481e-04 9.8346133211765123e-04 0 2 0 P 506 22 -7.5103475501667710e-02 -3.9338083940941085e-02 7.5463246400057227e-01 7.5938012391960130e-01 0 1 0 0 0 0 P 507 22 -5.1071851388039109e-02 -2.7216907514020267e-01 2.1803522105877802e+00 2.1978671710733324e+00 0 1 0 0 0 0 V -149 0 2.9186267772725993e-06 -1.4624451944608400e-05 7.6785849651221590e-05 7.9616599790733794e-05 0 2 0 P 508 22 1.9222952312970793e-02 -7.4524058017074693e-02 6.2621694222481117e-01 6.3092869315664468e-01 0 1 0 0 0 0 P 509 22 7.3168743940763871e-03 -5.8459858706305233e-02 7.2016610336905165e-02 9.3045601160277838e-02 0 1 0 0 0 0 V -150 0 3.2352469800909799e-06 -8.6148181432490450e-06 1.0167016708202321e-04 1.0418092202002628e-04 0 2 0 P 510 22 6.4442802453997264e-02 -4.8389727176028303e-02 5.7446833459624480e-01 5.8009336139804113e-01 0 1 0 0 0 0 P 511 22 -4.3436253057180012e-02 -7.5465286908018240e-03 8.5678912316917696e-02 9.6356287759224835e-02 0 1 0 0 0 0 V -151 0 1.0339219228272463e-05 -3.5510638834474656e-05 1.6934735848094423e-04 1.7407059507471928e-04 0 2 0 P 512 22 1.0338221472721321e-01 -1.1639344075300279e-01 6.8982085398031712e-01 7.0716909290378382e-01 0 1 0 0 0 0 P 513 22 -1.5839252967131130e-02 -1.8427786033149132e-01 7.4405621162333857e-01 7.6669997899972830e-01 0 1 0 0 0 0 V -152 0 -1.3159134402998166e-05 -1.4980484906525431e-05 6.8742996398247457e-03 6.8743468534382766e-03 0 2 0 P 514 22 -7.1604165104648662e-02 -2.3202322894649505e-02 1.0424144485626956e+01 1.0424416231208102e+01 0 1 0 0 0 0 P 515 22 -4.0388205921950991e-02 -1.0429086719144964e-01 4.8080396332488483e+01 4.8080526403954124e+01 0 1 0 0 0 0 V -153 0 0 0 0 0 0 1 0 P 516 130 2.8912477334571818e-01 1.4462309329539375e-01 2.4894854503790154e+02 2.4894925238066224e+02 4.9767000000000000e-01 1 0 0 0 0 V -154 0 -1.2773738914180223e+01 2.0709633200470677e+01 1.7735712876050839e+04 1.7735783565747697e+04 0 2 0 P 517 22 2.4938159880155700e-02 9.2231768513948528e-02 1.5106409131828794e+01 1.5106711272449134e+01 0 1 0 0 0 0 P 518 22 2.0534534233155061e-02 -7.0283349012556905e-03 2.9298323110799483e+01 2.9298331149903309e+01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 2 0 P 519 22 3.4917807045567151e-01 6.3515015779125716e-01 3.6409952888480922e+02 3.6410025030915301e+02 0 1 0 0 0 0 P 520 22 1.0499824191344218e-01 -1.0994475259131911e-01 1.0746799799297992e+02 1.0746810552484196e+02 0 1 0 0 0 0 V -156 0 8.0936879150342631e-07 2.5596091200945243e-06 1.4831229693858632e-03 1.4831280610576941e-03 0 2 0 P 521 22 -6.6847958691880786e-03 -1.4227364892745061e-02 1.2975465750248747e+00 1.2976417913917488e+00 0 1 0 0 0 0 P 522 22 4.5562315995186259e-02 1.3717657682902232e-01 6.9943331127367969e+01 6.9943480486250536e+01 0 1 0 0 0 0 V -157 0 3.1266179771015201e-05 -3.5321778576525519e-05 4.1312443551962730e-02 4.1312548821535164e-02 0 2 0 P 523 22 -4.2074326734765834e-02 4.5531570609187964e-03 1.7694707128456756e+01 1.7694757736179032e+01 0 1 0 0 0 0 P 524 22 9.4531109756470597e-02 -6.3814214481408935e-02 5.1617178857394521e+01 5.1617304865528745e+01 0 1 0 0 0 0 V -158 0 7.0439729210309999e-06 6.9956181881870908e-06 3.2981788919881017e-04 3.2998835824201670e-04 0 2 0 P 525 22 3.0320986519520629e-02 1.0599612532795552e-01 2.6613452009916538e+00 2.6636277554585890e+00 0 1 0 0 0 0 P 526 22 2.2451609745130519e-01 1.4709157952794794e-01 9.2708172401631668e+00 9.2747019203470558e+00 0 1 0 0 0 0 V -159 0 3.5996685022059703e-04 1.8787480117593748e-04 1.8982304428150612e-03 1.9424399884427086e-03 0 2 0 P 527 22 6.2873467282146334e-01 2.9437053808368296e-01 3.3503456350396470e+00 3.4215167947459810e+00 0 1 0 0 0 0 P 528 22 6.3886111202188386e-02 6.7123838437435440e-02 3.0208473946405029e-01 3.1597821872429205e-01 0 1 0 0 0 0 V -160 0 -8.8105317397976931e-06 4.4173744336516650e-05 1.2491142289892412e-04 1.3322735150385733e-04 0 2 0 P 529 22 -4.3748025156271804e-02 4.4841363850107047e-01 1.3084543313394339e+00 1.3838502151966330e+00 0 1 0 0 0 0 P 530 22 -6.5861742748689833e-02 1.0114159916383388e-01 2.4553951114162947e-01 2.7360015309020319e-01 0 1 0 0 0 0 V -161 0 -1.3614548805082608e-04 8.7617037974914024e-05 2.7894833239949557e-04 3.2329624693880696e-04 0 2 0 P 531 22 -3.3428307669995194e-01 1.4703199614447365e-01 6.8693426042490113e-01 7.7797317524688503e-01 0 1 0 0 0 0 P 532 22 -4.9090493163529153e-01 3.8402143866169003e-01 1.0037924917921406e+00 1.1815496112452999e+00 0 1 0 0 0 0 V -162 0 -1.9315254881987332e-06 -1.0536743276381546e-05 -1.5543830162470298e-05 2.0173644767405724e-05 0 2 0 P 533 22 -4.7042694268158054e-02 -2.1798028097222430e-01 -2.6583204597523269e-01 3.4697996288563349e-01 0 1 0 0 0 0 P 534 22 1.0395131117558947e-02 1.8062668193037919e-02 -2.9086918833533652e-02 3.5782224363943710e-02 0 1 0 0 0 0 V -163 0 0 0 0 0 0 1 0 P 535 130 -2.3117902682172800e-01 1.9814679835132576e-03 -7.2468130319277968e-01 9.0900279909073789e-01 4.9767000000000000e-01 1 0 0 0 0 V -164 0 3.7391541847454386e-07 -2.5746870422871801e-07 -1.8252280601078205e-07 5.5586136746683732e-07 0 2 0 P 536 22 6.4777908108610283e-02 -7.2647487938917329e-02 2.5938084350591847e-02 1.0073042788820619e-01 0 1 0 0 0 0 P 537 22 1.2658124508113514e-01 -5.9117587208479233e-02 -1.1934800507151896e-01 1.8374342719725745e-01 0 1 0 0 0 0 V -165 0 1.4796162482904839e-04 -4.9317976107175105e-05 -3.7160477386072039e-04 4.0420676881896406e-04 0 2 0 P 538 22 2.1712114437279087e-01 -1.2624567987546279e-01 -6.9647799531865096e-01 7.4037906573866263e-01 0 1 0 0 0 0 P 539 22 4.2476599099687179e-01 -8.7705568917860507e-02 -9.1561787115172277e-01 1.0131507784625016e+00 0 1 0 0 0 0 V -166 0 7.7591312275264345e-05 1.5501015499931825e-04 -1.3157220541539548e-03 1.3276327257275612e-03 0 2 0 P 540 22 5.9943033735060935e-02 2.1436812411851375e-01 -1.3240957153866111e+00 1.3426750624915298e+00 0 1 0 0 0 0 P 541 22 2.1647744928540946e-01 3.3785841596088667e-01 -3.3631884027074292e+00 3.3870410430625810e+00 0 1 0 0 0 0 V -167 0 3.2382726802622493e+01 -3.1230020823497867e+01 -1.0583372214644817e+03 1.0599330068566362e+03 0 2 0 P 542 -211 2.6540340115090794e-01 -4.4560638557523696e-01 -1.1580617416783763e+01 1.1593066184363106e+01 1.3957000000000000e-01 1 0 0 0 0 P 543 211 1.7218829627766832e-01 2.3591343229343927e-02 -2.7208212488131136e+00 2.7299365219256146e+00 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 1 0 P 544 310 -2.6686785063363155e-01 -2.7947361448744645e-01 -1.4357472069623856e+01 1.4371290951401187e+01 4.9767000000000000e-01 2 0 0 -206 0 V -169 0 1.1805102722070262e-05 -7.4854935234008635e-06 -2.9127892536218099e-04 2.9164521676496388e-04 0 2 0 P 545 22 6.3375012023601338e-02 -8.9283840828113414e-02 -3.1246738149298317e+00 3.1265915061117524e+00 0 1 0 0 0 0 P 546 22 3.1088701864081786e-01 -1.4803184142814904e-01 -6.1098618483635532e+00 6.1195568442922781e+00 0 1 0 0 0 0 V -170 0 -2.0841615243980662e-06 -7.9367452476261277e-06 -3.3521701699694260e-05 3.4634117268703788e-05 0 2 0 P 547 22 -3.5941573988272364e-02 -2.5531399821742701e-01 -7.9221964238673126e-01 8.3312003709542570e-01 0 1 0 0 0 0 P 548 22 -6.0653105605050571e-02 -1.1253050674707783e-01 -7.6141139685822301e-01 7.7206815077030733e-01 0 1 0 0 0 0 V -171 0 -4.9496504780182539e-05 -1.3786699401329471e-05 -2.3453451132394906e-04 2.4052614236545598e-04 0 2 0 P 549 22 -4.5848319021436207e-01 -1.0747438675754048e-01 -1.9854311715023212e+00 2.0405132972590811e+00 0 1 0 0 0 0 P 550 22 -6.5430275333583756e-03 -2.2053480034215641e-02 -2.1805162423547736e-01 2.1926166564780916e-01 0 1 0 0 0 0 V -172 0 -1.2332910542861569e-04 -7.9033361792261284e-05 -1.0897402492530911e-03 1.0999322134109515e-03 0 2 0 P 551 22 -3.4249873762103515e-03 -3.2723374518937608e-02 -2.0155912624093991e-01 2.0422691093351283e-01 0 1 0 0 0 0 P 552 22 -5.6399335136562367e-01 -3.3089702714937763e-01 -4.8121689774563876e+00 4.8563928599892510e+00 0 1 0 0 0 0 V -173 0 8.6093663883260862e-06 -5.9122641879998481e-05 -5.0538502066792886e-04 5.0894098482754530e-04 0 2 0 P 553 22 4.5734887644425293e-02 -7.5286886872071912e-01 -6.1658836281972835e+00 6.2118454689333635e+00 0 1 0 0 0 0 P 554 22 1.4454474997539474e-01 -5.5382832183058273e-01 -5.0038673446006054e+00 5.0364975327272266e+00 0 1 0 0 0 0 V -174 0 -4.4321881946601150e-05 -1.0146266146244894e-05 -2.6203205908291070e-04 2.6602374036427677e-04 0 2 0 P 555 22 -5.2429512459504057e-01 -1.8669934827541002e-01 -3.0886527913217185e+00 3.1383941896549636e+00 0 1 0 0 0 0 P 556 22 -4.1630302806825098e-01 -2.8624522788686279e-02 -2.4721866831592325e+00 2.5071566705879240e+00 0 1 0 0 0 0 V -175 0 2.5225539985927314e-05 -1.6676151405027348e-04 -1.5862079139339527e-03 1.5956789527374847e-03 0 2 0 P 557 22 1.1668294961741989e-01 -4.7857756619553748e-01 -4.5811108020576556e+00 4.6075185922930793e+00 0 1 0 0 0 0 P 558 22 -3.3858044330851524e-02 -6.8963006349748182e-02 -6.2700447752315702e-01 6.3169365854407011e-01 0 1 0 0 0 0 V -176 0 -5.3569009249447428e-05 5.4741784511767055e-05 -6.9078333805095164e-04 6.9575397601814523e-04 0 2 0 P 559 22 -1.5265958603622898e-01 1.7169134611580950e-01 -1.4654813280571710e+00 1.4833807300973079e+00 0 1 0 0 0 0 P 560 22 -7.3116798634623947e-02 5.9027914342141712e-02 -1.4459513611261980e+00 1.4490016216888320e+00 0 1 0 0 0 0 V -177 0 -3.2083795861173538e-04 7.2851544327719506e-05 -3.5533882770056339e-03 3.5689823579129285e-03 0 2 0 P 561 22 -6.2357544489669203e-01 8.1826629124891803e-02 -6.6262254437026256e+00 6.6560052256202544e+00 0 1 0 0 0 0 P 562 22 -1.9157857577870296e-01 1.0326752098163546e-01 -2.4018794400067560e+00 2.4117195889892051e+00 0 1 0 0 0 0 V -178 0 -2.9267529316669274e-04 -4.8698371636303017e-05 -2.4082413231247862e-03 2.4266931630936772e-03 0 2 0 P 563 22 -3.1868382082941715e-01 -7.7898648705549717e-02 -3.1344954136136907e+00 3.1516168985290474e+00 0 1 0 0 0 0 P 564 22 -8.2986287131909031e-01 -1.1320854401549200e-01 -6.3161745614393805e+00 6.3714636976291423e+00 0 1 0 0 0 0 V -179 0 -2.3847229214264216e-06 -7.6048853829075665e-06 -4.5891199197711324e-04 4.5898748171169197e-04 0 2 0 P 565 22 -4.1854773719790912e-02 -7.4763399733116034e-02 -8.3187762376544061e+00 8.3192174800389935e+00 0 1 0 0 0 0 P 566 22 -9.2140426736273429e-02 -3.5254751851753230e-01 -1.7467030492413691e+01 1.7470830942859060e+01 0 1 0 0 0 0 V -180 0 0 0 0 0 0 2 0 P 567 211 -6.3676537167928593e-01 -5.7749245824223883e-01 -3.0031594549902911e+02 3.0031720824561256e+02 1.3957000000000000e-01 1 0 0 0 0 P 568 -211 -5.1190596118327203e-01 1.6260590449727297e-01 -3.7322878188688526e+02 3.7322919445957916e+02 1.3957000000000000e-01 1 0 0 0 0 V -181 0 6.1211077442491568e-05 -1.0209893583449326e-05 -1.8100710039934624e-02 1.8100832744691618e-02 0 2 0 P 569 22 1.3816161218706904e-01 3.7767226584611173e-02 -4.6862036794739190e+01 4.6862255681368730e+01 0 1 0 0 0 0 P 570 22 2.0168453230199737e-01 -9.4452929809469732e-02 -5.3633768484389783e+01 5.3634230859066498e+01 0 1 0 0 0 0 V -182 0 1.1821167817605148e-05 -1.4045847539604167e-05 -2.9049036398648011e-02 2.9049043765393370e-02 0 2 0 P 571 22 -6.4171333986930970e-03 -5.8580890285627650e-02 -4.8981159058105703e+01 4.8981194509482492e+01 0 1 0 0 0 0 P 572 22 1.7371317760846788e-01 -1.4019936283368087e-01 -3.6212787454870420e+02 3.6212794335330079e+02 0 1 0 0 0 0 V -183 0 -4.2548937245853329e-05 7.7103191838708747e-05 -2.3547398348780840e-04 2.5356635976759098e-04 0 2 0 P 573 22 -1.4170113383035210e-01 3.0519867372063314e-01 -9.3166093959162610e-01 9.9056425744642740e-01 0 1 0 0 0 0 P 574 22 -3.2050939887493253e-02 9.6585316387346448e-03 -2.9916377867595052e-02 4.4894761897184311e-02 0 1 0 0 0 0 V -184 0 -1.8553655741978817e-05 1.2472104632021633e-05 -1.2824865494902315e-04 1.3063775734486303e-04 0 2 0 P 575 22 -1.6744445551994713e-01 9.4120127165680703e-02 -7.1703748278312973e-01 7.4232000898401151e-01 0 1 0 0 0 0 P 576 22 -6.2406772436807423e-02 6.0390046179249077e-02 -8.7176589018983064e-01 8.7608066422104069e-01 0 1 0 0 0 0 V -185 0 0 0 0 0 0 2 0 P 577 -211 -4.6250950226630623e-02 -1.6307474123464233e-01 -9.4529175149499967e-01 9.7045803720207091e-01 1.3957000000000000e-01 1 0 0 0 0 P 578 211 -6.2753199031508677e-01 9.4482572645868540e-02 -8.4433757382545627e-01 1.0654149796563093e+00 1.3957000000000000e-01 1 0 0 0 0 V -186 0 1.2208592862010870e-05 -2.0184050610198316e-05 3.0086786375038355e-05 4.5716744012584771e-05 0 2 0 P 579 22 6.3925971954040470e-02 -2.4738187014706280e-02 5.7556743632516645e-03 6.8786885192012454e-02 0 1 0 0 0 0 P 580 22 1.8141726686199914e-03 -8.3947754205794214e-02 1.5625396179069992e-01 1.7738606831980178e-01 0 1 0 0 0 0 V -187 0 2.2453078971261669e-05 1.1302908771899461e-05 7.9351299363064273e-03 7.9354398988671550e-03 0 2 0 P 581 22 3.3372344141624662e-02 3.9283047643265998e-02 1.5978368499103201e+01 1.5978451638513636e+01 0 1 0 0 0 0 P 582 22 1.2913590388825093e-02 -1.5982648794208403e-02 3.7951743683411676e-01 3.8007327022608045e-01 0 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 583 -211 -9.1755799827675497e-02 -2.7947617475107552e-02 1.3236964628764605e+01 1.3238047913653652e+01 1.3957000000000000e-01 1 0 0 0 0 P 584 211 -2.0291548287994363e-01 3.0687813638642935e-02 2.6339393478957660e+01 2.6340562732397263e+01 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -3.3802830046131327e-02 1.0945514547151649e-02 4.0167401837281833e+00 4.0191645574154524e+00 1.3497999999999999e-01 2 0 0 -207 0 V -189 0 3.0472857540614642e-05 6.7142326169861264e-05 -7.1668813303603558e-04 7.2070007004140639e-04 0 2 0 P 586 22 4.7086168519826818e-02 2.4880951899571060e-01 -2.1196194411752702e+00 2.1346919823283450e+00 0 1 0 0 0 0 P 587 22 1.7933128447437585e-01 2.5006704547561581e-01 -3.2054703196688794e+00 3.2202070130819607e+00 0 1 0 0 0 0 V -190 0 4.7080016856984738e-05 5.6005374218712452e-05 -5.7576359096198765e-04 5.8040577392825816e-04 0 2 0 P 588 22 1.1502120226409457e-01 1.0814028565988131e-01 -1.0500525848277136e+00 1.0618543352344716e+00 0 1 0 0 0 0 P 589 22 1.5821868165902973e+00 1.9108218254133198e+00 -1.9705899701967414e+01 1.9861446025782399e+01 0 1 0 0 0 0 V -191 0 1.1281919538832517e-04 1.2570051254768444e-04 -1.6423399199954607e-03 1.6511734544187647e-03 0 2 0 P 590 22 6.2024580924271810e-01 6.4157733077745760e-01 -8.4676633596533968e+00 8.5145551326929194e+00 0 1 0 0 0 0 P 591 22 2.0656682996530198e-02 7.2501257447420156e-02 -8.6212971506323255e-01 8.6541942229123037e-01 0 1 0 0 0 0 V -192 0 -2.5954012923112052e-06 9.2634523827302709e-06 -4.5660970786215148e-05 4.7066505938880661e-05 0 2 0 P 592 22 -8.4840433700879167e-02 6.3885846868019597e-02 -4.9748991806545673e-01 5.0869983211848235e-01 0 1 0 0 0 0 P 593 22 2.7847689285633200e-02 1.3953147268706489e-01 -5.0518510004451167e-01 5.2483950973202620e-01 0 1 0 0 0 0 V -193 0 -1.0044047312979022e-04 -2.6637466005119230e-04 -1.3813241924999456e-03 1.4111243682495024e-03 0 2 0 P 594 22 -1.9937131625407858e-01 -6.6232736317692276e-01 -3.2257105600641696e+00 3.2990354764790388e+00 0 1 0 0 0 0 P 595 22 -9.1551166921662389e-02 -1.0921796255096072e-01 -7.7524892997650419e-01 7.8823922950980818e-01 0 1 0 0 0 0 V -194 0 -1.3236316103337240e-06 -1.1891412631070481e-04 -8.7200955263694931e-04 8.8047997034971441e-04 0 2 0 P 596 22 -2.7268165545024901e-02 -5.9351361551122184e-01 -4.3346770256223621e+00 4.3752059244231836e+00 0 1 0 0 0 0 P 597 22 2.0524920076162204e-02 -1.2294781000443662e-02 -1.0777842702548204e-01 1.1040209833182006e-01 0 1 0 0 0 0 V -195 0 -7.9190086992607420e-02 -1.3249940403670740e-01 -9.4387107284357674e-01 9.5674676981363049e-01 0 5 0 P 598 -311 -1.7470730336777331e+00 -2.2300974964750981e+00 -1.7601019460305249e+01 1.7834493558823937e+01 4.9767000000000000e-01 2 0 0 -208 0 P 599 211 -1.0242915904604366e+00 -2.6316426901757133e+00 -1.6828749166542138e+01 1.7064612354411569e+01 1.3957000000000000e-01 1 0 0 0 0 P 600 -211 -5.7593519295937645e-01 -7.7281433955365586e-01 -6.5289419836830653e+00 6.6011746349500759e+00 1.3957000000000000e-01 1 0 0 0 0 P 601 111 -7.4995120448484665e-01 -1.4323631402430383e+00 -1.0428400927366550e+01 1.0553855052867396e+01 1.3497999999999999e-01 2 0 0 -209 0 P 602 111 -1.7181836160281481e+00 -2.6633611217264996e+00 -1.7927378935709509e+01 1.8205899662143391e+01 1.3497999999999999e-01 2 0 0 -210 0 V -196 0 -9.8818821307734267e-05 -1.5081416072247562e-04 -1.0967359068884380e-03 1.1121093115860777e-03 0 2 0 P 603 22 -1.8388632764910542e-01 -3.4101470735634526e-01 -2.6761539837364303e+00 2.7040535047957119e+00 0 1 0 0 0 0 P 604 22 -1.6671589758864042e-01 -1.9406332380131400e-01 -1.2149878490100450e+00 1.2416320861654855e+00 0 1 0 0 0 0 V -197 0 -1.0984139827648707e-04 8.9590413611921515e-05 -1.9703022137304741e-02 1.9703535063776992e-02 0 2 0 P 605 22 -1.1667526348181443e+00 9.8458691343466664e-01 -2.0660752731819485e+02 2.0661316770147928e+02 0 1 0 0 0 0 P 606 22 -1.8059249917013437e-01 1.1435401162690904e-01 -3.5075220881520487e+01 3.5075872196970138e+01 0 1 0 0 0 0 V -198 0 2.0621141466346191e-04 -4.0068326955865842e-04 -1.3317159409516555e-01 1.3317236233770768e-01 0 2 0 P 607 22 4.2442802697426374e-01 -6.9303592612176157e-01 -2.4832292938233820e+02 2.4832425917531839e+02 0 1 0 0 0 0 P 608 22 2.8336000138714479e-01 -6.8224595059277604e-01 -2.0876748034202814e+02 2.0876878741992681e+02 0 1 0 0 0 0 V -199 0 -7.2808386050741625e-05 7.1785179424044407e-05 -3.1819577851832356e-02 3.1819802682172812e-02 0 2 0 P 609 22 -5.9865054285196204e-03 2.5195591397139814e-02 -2.6850987456229241e+01 2.6850999944706956e+01 0 1 0 0 0 0 P 610 22 -1.5232086711596335e-01 1.3088702159107923e-01 -4.2334363825800651e+01 4.2334840186237130e+01 0 1 0 0 0 0 V -200 0 0 0 0 0 0 1 0 P 611 130 2.4246393934214444e-01 -4.0857599888205094e-02 -9.9880981517798048e+01 9.9882524009423022e+01 4.9767000000000000e-01 1 0 0 0 0 V -201 0 0 0 0 0 0 1 0 P 612 130 7.3834995792344460e-01 2.5186711865636535e-01 1.4538411730498545e+01 1.4567830613383158e+01 4.9767000000000000e-01 1 0 0 0 0 V -202 0 -8.4933351958833003e-07 -1.9514262345390518e-05 3.5736967511060567e-04 3.5815182206640092e-04 0 2 0 P 613 22 4.7196995674060223e-02 -1.7015142339093137e-01 2.7838582515254160e+00 2.7894526036247260e+00 0 1 0 0 0 0 P 614 22 -5.5787076438829908e-02 -2.7214023451503155e-02 8.3054563255482750e-01 8.3286184252005990e-01 0 1 0 0 0 0 V -203 0 7.2136287433030299e-06 8.1009672502153933e-06 3.2718038940111020e-04 3.2744757419560190e-04 0 2 0 P 615 22 5.4915460556655984e-02 1.5161545047473957e-02 6.1227766943935369e-01 6.1492237294675078e-01 0 1 0 0 0 0 P 616 22 7.3777923784226873e-02 1.2936223472602024e-01 5.2247224175261708e+00 5.2268443739996444e+00 0 1 0 0 0 0 V -204 0 6.4266661166504328e-05 -2.5375766542241496e-05 1.6227513595712345e-03 1.6243958111893989e-03 0 2 0 P 617 22 1.6719992507495338e-01 -2.4149781254700558e-02 5.1432133493723020e+00 5.1459870369095544e+00 0 1 0 0 0 0 P 618 22 1.9754049485088646e-01 -1.1986840136999795e-01 4.0665853484590402e+00 4.0731446177437238e+00 0 1 0 0 0 0 V -205 0 -3.9882034797210661e-05 -9.7166643123011352e-06 3.9306343042613519e-04 3.9570136200352778e-04 0 2 0 P 619 22 -1.7050329941600967e-01 2.4293609338863233e-02 1.3239316805823942e+00 1.3350867572619307e+00 0 1 0 0 0 0 P 620 22 -1.0011316753201523e-01 -9.0225284592774777e-02 1.3431698695077972e+00 1.3499142738139833e+00 0 1 0 0 0 0 V -206 0 -1.1401561243856237e+01 -1.1940125137047600e+01 -6.1340321331363123e+02 6.1399360599874387e+02 0 2 0 P 621 111 -1.8078074647008968e-01 -9.4791019657342337e-02 -2.6518679399544101e+00 2.6631354053183265e+00 1.3497999999999999e-01 2 0 0 -211 0 P 622 111 -8.6087104163541872e-02 -1.8468259483010410e-01 -1.1705604129669446e+01 1.1708155546082860e+01 1.3497999999999999e-01 2 0 0 -212 0 V -207 0 -3.2521967511943696e-06 1.0530765264866133e-06 3.8645371875920003e-04 3.8668696965028397e-04 0 2 0 P 623 22 -5.0883930637152783e-02 -4.4652280848300398e-02 2.9988410666455314e+00 2.9996050979390190e+00 0 1 0 0 0 0 P 624 22 1.7081100591021456e-02 5.5597795395452052e-02 1.0178991170826519e+00 1.0195594594764337e+00 0 1 0 0 0 0 V -208 0 -7.9190086992607420e-02 -1.3249940403670740e-01 -9.4387107284357674e-01 9.5674676981363049e-01 0 1 0 P 625 130 -1.7470730336777331e+00 -2.2300974964750981e+00 -1.7601019460305249e+01 1.7834493558823937e+01 4.9767000000000000e-01 1 0 0 0 0 V -209 0 -7.9242179436684934e-02 -1.3259889757220089e-01 -9.4459544116097938e-01 9.5747985231400645e-01 0 2 0 P 626 22 -1.0274985880375347e-01 -1.1858115186473611e-01 -1.1233713541075014e+00 1.1342760785148740e+00 0 1 0 0 0 0 P 627 22 -6.4720134568109322e-01 -1.3137819883783022e+00 -9.3050295732590484e+00 9.4195789743525236e+00 0 1 0 0 0 0 V -210 0 -7.9456308380967747e-02 -1.3291207453881010e-01 -9.4664880373648275e-01 9.5956765568356372e-01 0 2 0 P 628 22 -1.4179237865264260e+00 -2.0993894297718070e+00 -1.4365880423783473e+01 1.4587544830871309e+01 0 1 0 0 0 0 P 629 22 -3.0025982950172203e-01 -5.6397169195469243e-01 -3.5614985119260365e+00 3.6183548312720819e+00 0 1 0 0 0 0 V -211 0 -1.1401566822699770e+01 -1.1940128062272091e+01 -6.1340329514953794e+02 6.1399368818236144e+02 0 2 0 P 630 22 -8.2849623687967139e-02 -5.2918461939616766e-02 -2.0170904149515483e+00 2.0194846287725743e+00 0 1 0 0 0 0 P 631 22 -9.7931122782122557e-02 -4.1872557717725578e-02 -6.3477752500286166e-01 6.4365077654575242e-01 0 1 0 0 0 0 V -212 0 -1.1401594884302060e+01 -1.1940197305868775e+01 -6.1340778753813765e+02 6.1399818122027284e+02 0 2 0 P 632 22 -1.0198160052594640e-01 -1.8184031114255919e-01 -1.1509403028370915e+01 1.1511291161945120e+01 0 1 0 0 0 0 P 633 22 1.5894496362404538e-02 -2.8422836875448966e-03 -1.9620110129853188e-01 1.9686438413774024e-01 0 1 0 0 0 0 E 47 18 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 163 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.3261502776938470e+00 -2.0679957579683634e+00 3.4177801055704504e+02 3.4178683968424764e+02 0 3 0 0 -3 0 P 16 2 6.5756054993147417e-01 1.2654532082003804e+00 7.3986761588089837e+02 7.3986906388021362e+02 3.3000000000000002e-01 2 0 0 -9 0 P 21 2101 6.6858972776237280e-01 8.0254254976798300e-01 5.4400109952841976e+03 5.4400111264153666e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 3.6204251171581098e-01 -6.3548502860150602e-01 -4.3227507483087571e+01 4.3233694258092981e+01 0 3 0 0 -4 0 P 18 2101 -8.5954995627514449e-02 1.7930723619409256e-01 -4.2717701073839926e+03 4.2717701512958356e+03 5.7933000000000001e-01 2 0 0 -11 0 P 61 2 -2.7608751608829651e-01 4.5617779240741346e-01 -6.4115042673183177e+02 6.4115073338560944e+02 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 10 0 P 5 1 5.5441020601308546e+00 7.6379279006219114e-01 1.5063622599589314e+02 1.5074015068774838e+02 0 3 0 0 -5 0 P 13 -1 -3.4108285012025372e+00 -1.5759591037129062e+00 2.7674496373266958e+01 2.7930342777616552e+01 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 -2.4293632173742314e+00 -6.1775996035903658e-01 3.4184871667428830e+01 3.4276652169211800e+01 0 2 0 0 -9 0 P 15 21 9.6076753539179854e-02 -4.4219339613190234e-01 1.3262878347386984e+01 1.3270595608326696e+01 0 2 0 0 -9 0 P 22 21 -8.0627834579245328e-01 7.1854451742728531e-01 4.7300190487409544e+01 4.7312518545725794e+01 0 2 0 0 -15 0 P 23 21 -8.2552064355271049e-01 3.2684149928153033e-01 2.1229691057706283e+01 2.1248249153853557e+01 0 2 0 0 -15 0 P 24 21 2.5964295972819940e-01 5.7348757230649372e-01 6.6379049071662513e+00 6.6676895562637144e+00 0 2 0 0 -15 0 P 25 21 2.8744147260553410e-01 3.4324441773597397e-01 1.3787075935884983e+00 1.4495771656242151e+00 0 2 0 0 -15 0 P 26 21 -1.4250556840808091e+00 -2.0953212623598807e+00 1.2030466612422320e+01 1.2294441093756015e+01 0 2 0 0 -15 0 P 27 21 1.3356068977289717e+00 -3.9368250117891627e-02 2.4608685194498086e+01 2.4644934218745398e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 7 0 P 6 -2 1.4221801035159147e+00 1.2579259530588474e+00 -1.5628053996142828e+01 1.5742968133632612e+01 0 3 0 0 -5 0 P 17 2 -8.6068999696681203e-01 -7.9597686879549845e-01 -2.4583225320785509e+01 2.4613375096053893e+01 3.3000000000000002e-01 2 0 0 -11 0 P 56 21 7.1050175348942490e-01 1.1739773575981308e-01 -2.4913304513783663e-01 7.6201197120040687e-01 0 2 0 0 -15 0 P 57 21 -1.1054515441978818e+00 -1.5713722667773260e+00 6.1061531705096006e-01 2.0159575845695854e+00 0 2 0 0 -15 0 P 58 21 1.1939557988668631e-01 -2.6733300676889254e-01 -2.8013483661532285e-01 4.0521323730854164e-01 0 2 0 0 -15 0 P 59 21 1.0115505774153906e-01 -1.0656254847896729e-01 -7.6484880533642829e-01 7.7883349791183731e-01 0 2 0 0 -15 0 P 60 21 2.2977528822616833e-02 7.0713139129899327e-01 5.0116552430105732e-01 8.6702344497666139e-01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 -1.4011587471558160e+00 -4.2812698153491113e-01 9.1983813655591561e+01 1.2258424386544425e+02 8.1016839798211493e+01 3 0 0 -6 0 P 8 22 8.3674409108025856e+00 2.4498457246559493e+00 4.3024358344158749e+01 4.3898874955936748e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 -1.4011587471558160e+00 -4.2812698153491113e-01 9.1983813655591561e+01 1.2258424386544425e+02 8.1016839798211493e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 8.3674409108025856e+00 2.4498457246559493e+00 4.3024358344158749e+01 4.3898874955936748e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 2 0 P 11 11 -2.0534882788815640e+01 2.8622018824754369e+00 9.9595615453063701e+01 1.0173082241140629e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 -12 1.9133724041659821e+01 -3.2903288640103496e+00 -7.6118017974721388e+00 2.0853421454037964e+01 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 66 92 -5.0865544151061153e+00 -1.3704592520034646e+00 8.1498986226898114e+02 8.1534665443536858e+02 2.3535932175213574e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 8 0 P 67 213 -2.5572538698089793e+00 -7.6442782255197772e-01 3.0153364730969969e+01 3.0281967207155372e+01 8.0513109850826292e-01 2 0 0 -19 0 P 68 -211 -1.2218450136742092e+00 -7.5478809197892638e-01 8.9496219270790629e+00 9.0651984381914161e+00 1.3957000000000000e-01 1 0 0 0 0 P 69 213 -4.3660672356875596e-01 -1.6985383092935921e-01 9.6504045513570151e+00 9.6818681880024204e+00 6.2352854790638967e-01 2 0 0 -20 0 P 70 -213 -5.6734582877116646e-01 2.0454731369593357e-01 1.4641881705562165e+01 1.4681710235673558e+01 8.9676901799819719e-01 2 0 0 -21 0 P 71 223 -5.3148325325332180e-01 -8.3170454486030432e-01 2.4171710632873936e+01 2.4204712564278587e+01 7.8886532534070630e-01 2 0 0 -22 0 P 72 331 -6.1280913678995763e-01 -3.4977711704968252e-02 1.1783159481226285e+02 1.1783708642694775e+02 9.5783250739187142e-01 2 0 0 -23 0 P 73 111 7.9452908946716673e-03 2.4631952650629638e-01 2.7435884183160800e+02 2.7435898572348327e+02 1.3497999999999999e-01 2 0 0 -24 0 P 74 213 8.3284411986560336e-01 7.3442590981984135e-01 3.3523244207726827e+02 3.3523512565163639e+02 7.5248842808682181e-01 2 0 0 -25 0 V -11 0 0 0 0 0 0 1 0 P 75 92 -9.4664499259432644e-01 -6.1666963260140584e-01 -4.2963533327047780e+03 4.2963835263918891e+03 1.6067669089607900e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 6 0 P 76 213 -6.9876420194512401e-01 -5.1882913421372157e-01 -4.5583896714169967e+01 4.5598335248902536e+01 7.4771835791502472e-01 2 0 0 -26 0 P 77 223 -2.6036794510537714e-01 -2.5161401208464379e-01 -3.4095030288984312e+01 3.4106042684675003e+01 7.8737292574717543e-01 2 0 0 -27 0 P 78 111 2.4242781773227640e-01 3.8797731389178908e-01 -1.8733332706856564e+02 1.8733393432003049e+02 1.3497999999999999e-01 2 0 0 -28 0 P 79 -213 7.9888272626420717e-03 -1.2025123398005345e-01 -6.7935716444413075e+01 6.7939488046752345e+01 7.0565080491202425e-01 2 0 0 -29 0 P 80 2212 6.9574735325185127e-02 -4.7025680182012009e-01 -1.7922480334812781e+03 1.7922483421251097e+03 9.3827000000000005e-01 1 0 0 0 0 P 81 111 -3.0750422586392889e-01 3.5630423560534402e-01 -2.1691573287073675e+03 2.1691573839664193e+03 1.3497999999999999e-01 2 0 0 -30 0 V -13 0 0 0 0 0 2 1 0 P 19 1 5.3053193621754746e-01 4.1601733321664403e-01 5.3342531421218442e-01 8.5969594783609149e-01 0 2 0 0 -13 0 P 20 -1 -5.3053193621754746e-01 -4.1601733321664403e-01 7.5394903457844631e+00 7.5695739134419284e+00 0 2 0 0 -13 0 P 82 92 0 0 8.0729156599966476e+00 8.4292698612780192e+00 2.4249996166661241e+00 2 0 0 -14 0 V -14 0 0 0 0 0 0 3 0 P 83 221 1.3777681082359092e-01 1.2466111495700842e-01 1.4726277939899279e+00 1.5820420238775852e+00 5.4744999999999999e-01 2 0 0 -31 0 P 84 -213 -3.4641468453458824e-01 -3.8915291839811972e-01 3.8633939922095752e+00 3.9674544005328367e+00 7.3718257827173383e-01 2 0 0 -32 0 P 85 213 2.0863787371099732e-01 2.6449180344111128e-01 2.7368938737971442e+00 2.8797734368675978e+00 8.3007306595606367e-01 2 0 0 -33 0 V -15 0 0 0 0 0 28 1 0 P 28 21 2.7814368426922909e+00 -1.4560293960008891e-01 2.4369460483422451e+01 2.4528110309989120e+01 0 2 0 0 -15 0 P 29 21 5.4841496220905830e+00 3.2852419128551680e+00 1.0480602531543413e+02 1.0500081739645114e+02 0 2 0 0 -15 0 P 30 21 -7.0339639985316926e-01 -7.9559205197988159e-01 6.5165752643704437e+01 6.5174404875142301e+01 0 2 0 0 -15 0 P 31 21 -5.2826092077926823e-01 -4.7029688980663142e-01 1.4256939391238509e+01 1.4274472304447286e+01 0 2 0 0 -15 0 P 32 21 4.0865896830284099e-01 -3.4817719075641276e+00 2.9161186564455701e+01 2.9371151486035899e+01 0 2 0 0 -15 0 P 33 21 -1.4855031484025080e-01 -1.8964419687122662e+00 2.6539788905119664e+01 2.6607873918542332e+01 0 2 0 0 -15 0 P 34 21 -5.4841496220905830e+00 -3.2852419128551680e+00 6.5136185011681789e+01 6.5449150562703991e+01 0 2 0 0 -15 0 P 35 21 -2.6373679392107032e+00 1.3872565886377553e-01 4.7651047968395190e+01 4.7724179688513274e+01 0 2 0 0 -15 0 P 36 21 -1.6514304610022885e+00 2.2925991767405187e+00 3.1494285548204008e+01 3.1620772535542667e+01 0 2 0 0 -15 0 P 37 21 -4.0865896830284099e-01 3.4817719075641276e+00 2.7941913460791554e+01 2.8160970608610800e+01 0 2 0 0 -15 0 P 38 21 7.0339639985316926e-01 7.9559205197988159e-01 4.2062942828049898e+00 4.3382767087932397e+00 0 2 0 0 -15 0 P 39 21 8.8057122365634966e-01 4.2494466166423130e+00 8.6170856837389316e+00 9.6481795126605565e+00 0 2 0 0 -15 0 P 40 21 5.4679857832938428e-01 3.1118379036494295e+00 3.6212178122572953e+00 4.8058029784482246e+00 0 2 0 0 -15 0 P 41 21 -2.7814368426922909e+00 1.4560293960008891e-01 3.5202737253923946e+00 4.4888660291430282e+00 0 2 0 0 -15 0 P 42 21 1.6514304610022885e+00 -2.2925991767405187e+00 3.4443689636557866e+00 4.4549872177720973e+00 0 2 0 0 -15 0 P 43 21 1.6735606584711955e+00 -1.3693205763489097e-01 2.3053636082927564e+00 2.8520618914096629e+00 0 2 0 0 -15 0 P 44 21 1.5331738525127494e+00 -4.6494285690203974e-01 -1.0308207613852226e-01 1.6054344697414604e+00 0 2 0 0 -15 0 P 45 21 2.6373679392107032e+00 -1.3872565886377553e-01 -7.6925992653420794e-01 2.7507663095535970e+00 0 2 0 0 -15 0 P 46 21 5.2826092077926823e-01 4.7029688980663142e-01 2.7879715242756986e-01 7.6024115725608588e-01 0 2 0 0 -15 0 P 47 21 1.4855031484025080e-01 1.8964419687122662e+00 -8.1060858837270366e-01 2.0677634343115705e+00 0 2 0 0 -15 0 P 48 21 -5.4679857832938428e-01 -3.1118379036494295e+00 -2.7644530777480507e+00 4.1981811112579432e+00 0 2 0 0 -15 0 P 49 21 -1.0292613459843673e-01 -1.2311047681375449e+00 -7.6708043259350802e+00 7.7696493966007703e+00 0 2 0 0 -15 0 P 50 21 -8.8057122365634966e-01 -4.2494466166423130e+00 -2.7016296855305090e+01 2.7362629588575587e+01 0 2 0 0 -15 0 P 51 21 -1.5331738525127494e+00 4.6494285690203974e-01 -1.1343903485768884e+01 1.1456480271734964e+01 0 2 0 0 -15 0 P 52 21 -3.5798161059663791e-01 -1.1670538667021686e+00 -3.0426019939585441e+01 3.0450498434760647e+01 0 2 0 0 -15 0 P 53 21 8.2697912597514545e-01 -4.3841048836568508e-01 -2.5146661857949709e+01 2.5164075600529625e+01 0 2 0 0 -15 0 P 54 21 -1.6735606584711955e+00 1.3693205763489097e-01 -1.8791624345077093e+03 1.8791631847236172e+03 0 2 0 0 -15 0 P 55 21 1.0292613459843673e-01 1.2311047681375449e+00 -3.5844330622710615e+01 3.5865613762063298e+01 0 2 0 0 -15 0 P 86 92 -4.6408524056829825e-01 -1.6400542135853258e+00 3.3533220098166789e+03 8.6967229055551197e+03 8.0242269340624443e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 92 0 P 87 2212 7.2526989937484132e-01 5.4331185632034962e-01 3.7614046354815441e+03 3.7614048616676241e+03 9.3827000000000005e-01 1 0 0 0 0 P 88 -323 -2.7709107397707527e-02 6.7082768825556027e-02 1.3092384240062549e+03 1.3092387605963049e+03 9.3599437705313693e-01 2 0 0 -34 0 P 89 311 -1.4061387103941791e-01 1.0283683147013457e-01 1.9464658673411316e+02 1.9464730090690745e+02 4.9767000000000000e-01 2 0 0 -35 0 P 90 113 -6.2546082329496666e-01 7.1309865562385055e-01 7.9602996389841749e+01 7.9612546491209571e+01 7.8791727974288428e-01 2 0 0 -36 0 P 91 213 1.5476223911311301e-01 -3.0016667640840822e-01 1.4421245342317039e+01 1.4436376205596488e+01 5.6796949031634603e-01 2 0 0 -37 0 P 92 -213 -2.0779223912211570e-02 4.7224156688994678e-01 5.0862205847058938e+01 5.0870204087799998e+01 7.6826846361303580e-01 2 0 0 -38 0 P 93 111 5.3801840657469902e-02 6.2224018443795867e-02 2.1157106200458493e+00 2.1216072904060779e+00 1.3497999999999999e-01 2 0 0 -39 0 P 94 221 -3.0501084007034063e-01 9.1279612219818326e-02 1.4176021736211144e+01 1.4190160582185046e+01 5.4744999999999999e-01 2 0 0 -40 0 P 95 211 -3.5530845658830923e-01 5.0506644032604997e-01 8.1278402827856993e+01 8.1280868488474951e+01 1.3957000000000000e-01 1 0 0 0 0 P 96 -213 4.8654649454617505e-02 -5.5335280556114463e-01 8.0383388158394578e+00 8.0889886413613894e+00 7.1293738820904973e-01 2 0 0 -41 0 P 97 211 -1.0295084290416812e+00 -4.7936476493239805e-01 5.2479249139375792e+00 5.3712078595557360e+00 1.3957000000000000e-01 1 0 0 0 0 P 98 -321 5.8760320725137039e-01 2.7004274565561942e-01 5.6141331978248976e+00 5.6727712043209468e+00 4.9359999999999998e-01 1 0 0 0 0 P 99 313 -4.4032557204649492e-01 -8.4794061748401961e-01 7.2524871293054876e+00 7.3609741091420693e+00 8.2004900740191866e-01 2 0 0 -42 0 P 100 211 1.2382565538989994e-01 2.2239371854967843e-01 4.5381383819489436e+00 4.5474137174443747e+00 1.3957000000000000e-01 1 0 0 0 0 P 101 -213 1.7148114342925449e+00 -2.5030887737671442e-01 1.9572468337907093e+01 1.9664560930865768e+01 7.8115745921210067e-01 2 0 0 -43 0 P 102 111 9.4200094763404030e-01 -1.9857890837548017e-01 1.9878432363803878e+01 1.9902188126206639e+01 1.3497999999999999e-01 2 0 0 -44 0 P 103 213 3.1941462596589898e+00 1.5674241468300631e+00 4.4328640519430046e+01 4.4477150830158813e+01 7.2745232399240434e-01 2 0 0 -45 0 P 104 221 1.0544038308793990e+00 5.3124853233199612e-02 1.7436455253422452e+01 1.7476963780808941e+01 5.4744999999999999e-01 2 0 0 -46 0 P 105 -321 -2.9004837930274241e-01 1.7285043714363318e-01 3.5833803898608707e+01 3.5838793899068392e+01 4.9359999999999998e-01 1 0 0 0 0 P 106 321 1.7739797612638268e+00 7.3762758349877477e-01 4.0341195049945611e+01 4.0389933865544620e+01 4.9359999999999998e-01 1 0 0 0 0 P 107 -2212 -2.2206276308053285e-01 -2.2288550157618398e-01 7.5141271407788706e+00 7.5790135966528966e+00 9.3827000000000005e-01 1 0 0 0 0 P 108 2212 2.2272434732264987e-01 -1.0559591170373539e+00 2.7343432586063333e+01 2.7380801886965159e+01 9.3827000000000005e-01 1 0 0 0 0 P 109 111 1.0584609889619898e-01 -1.9825432510498656e-01 1.1565406598499612e+00 1.1858811375346867e+00 1.3497999999999999e-01 2 0 0 -47 0 P 110 -2224 -7.4987034167147382e-01 -1.6853135864998476e+00 2.7752391252657993e+01 2.7840021142625549e+01 1.2120105474253462e+00 2 0 0 -48 0 P 111 321 -6.0470147745314995e-01 -1.0859200925488555e+00 3.0451597293794990e+01 3.0480949870824197e+01 4.9359999999999998e-01 1 0 0 0 0 P 112 3212 -1.4733941331210563e+00 -2.0526572585455343e+00 2.1496470003745610e+01 2.1677285120997279e+01 1.1925500000000000e+00 2 0 0 -49 0 P 113 213 -7.5662394780269404e-01 -8.7336567837517265e-01 2.9525849420337135e+01 2.9561298429640551e+01 8.7139741065373832e-01 2 0 0 -50 0 P 114 -213 -2.8694240039873646e+00 -1.5903961203330195e+00 3.1689800735817595e+01 3.1865811872796929e+01 6.5080081624958752e-01 2 0 0 -51 0 P 115 111 -2.5313265415407643e-01 -2.0357890741070067e-01 1.4266612736968664e+01 1.4270948780623458e+01 1.3497999999999999e-01 2 0 0 -52 0 P 116 -313 -2.1476868421468760e+00 1.7585980926171187e+00 2.6604662467180415e+01 2.6763862404566868e+01 8.8940417960683871e-01 2 0 0 -53 0 P 117 323 -1.0642738893953072e+00 9.7222404238931570e-01 2.7666819544864506e+01 2.7718620978031961e+01 8.8946427440816267e-01 2 0 0 -54 0 P 118 223 -2.0717432187914869e-01 1.1409605123124091e+00 1.3206625067677061e+01 1.3280552656121095e+01 7.8321202972543391e-01 2 0 0 -55 0 P 119 -213 4.5806088384811539e-01 1.6444724362945382e+00 1.0219402418795358e+01 1.0390888664008397e+01 7.8757352894418087e-01 2 0 0 -56 0 P 120 331 -6.1742727957229276e-04 2.1521620476473236e+00 5.6089529486175644e+00 6.0835680404667283e+00 9.5793792211842121e-01 2 0 0 -57 0 P 121 221 1.0095848052817126e-01 4.3277174669083024e-01 6.0072300109026724e+00 6.0484707080314202e+00 5.4744999999999999e-01 2 0 0 -58 0 P 122 221 8.2165771140198762e-01 1.5604262935333697e+00 2.5332058398491526e+00 3.1347862673238969e+00 5.4744999999999999e-01 2 0 0 -59 0 P 123 211 -6.1557099718334418e-01 2.3439343361337204e+00 4.9283394265792326e+00 5.4937205164765377e+00 1.3957000000000000e-01 1 0 0 0 0 P 124 331 2.5517071441410505e-01 1.1724671429194780e+00 1.8142324930198090e+00 2.3764526190005881e+00 9.5723362712846327e-01 2 0 0 -60 0 P 125 -213 -3.9683617319846842e-01 5.5082392989757556e-01 1.4087204657167474e+00 1.7098578434752214e+00 6.9154504138046669e-01 2 0 0 -61 0 P 126 -311 -5.3722747570878282e-01 3.2519549910470763e-01 3.1393796962041132e-01 8.6058000846160554e-01 4.9767000000000000e-01 2 0 0 -62 0 P 127 311 -5.6202119472850298e-01 3.2829536813899546e-01 2.1002212260651856e+00 2.2543846830965482e+00 4.9767000000000000e-01 2 0 0 -63 0 P 128 213 9.9781901159043840e-01 -1.3831073644951422e+00 1.5323739488052286e+00 2.3580379988568620e+00 5.5094874849111775e-01 2 0 0 -64 0 P 129 -211 -2.1903796266663766e-01 -2.9932976537359857e-01 1.0018722720819131e+00 1.0774060385919226e+00 1.3957000000000000e-01 1 0 0 0 0 P 130 -1114 2.2310233257078749e+00 -6.2435146861967927e-01 1.5782550298787847e+00 3.0617011679870312e+00 1.2311966806710015e+00 2 0 0 -65 0 P 131 -213 3.9797898714605134e-01 -6.9612100918209274e-01 4.5413845562998900e-01 1.0517241208231045e+00 5.0686305429045475e-01 2 0 0 -66 0 P 132 2114 8.4030608721097966e-01 1.6087493198692751e-01 8.8765982731030213e-01 1.6912804502709464e+00 1.1577972743544160e+00 2 0 0 -67 0 P 133 213 1.3017617467325258e+00 -1.4171548545112703e-01 4.6464604229357853e-01 1.5588174271929813e+00 7.0664623584131170e-01 2 0 0 -68 0 P 134 -2212 1.1094394086879051e+00 8.1257115132886426e-01 -5.3515616427475698e-01 1.7486767541724102e+00 9.3827000000000005e-01 1 0 0 0 0 P 135 2212 6.0546337953111895e-01 -8.0797028345933208e-01 -1.1771051060316697e+00 1.8125476287403941e+00 9.3827000000000005e-01 1 0 0 0 0 P 136 113 -3.1958834282036203e-01 6.6248476538232326e-01 -2.5114371876117841e-01 1.1124188756076991e+00 7.9585162819759714e-01 2 0 0 -69 0 P 137 -211 5.7514147510627700e-01 -3.2548406449489192e-01 3.5246921408968075e-02 6.7635029607175390e-01 1.3957000000000000e-01 1 0 0 0 0 P 138 213 -2.7459292516444767e-01 -5.8824901429522203e-01 -4.2587309236670139e+00 4.3904996924084223e+00 8.4750238434536362e-01 2 0 0 -70 0 P 139 -2212 -2.6012713018356853e-01 -1.9685239475908849e+00 -8.2044918260361790e+00 8.4933379405561631e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 223 -4.1935410654539518e-01 -8.2756936194892083e-01 -4.6467312016023419e+00 4.8021277866525764e+00 7.7948156096407784e-01 2 0 0 -71 0 P 141 2112 -8.7738826944143216e-04 -6.9769042142073368e-01 -3.3077789332429202e+00 3.5086986120295505e+00 9.3957000000000002e-01 1 0 0 0 0 P 142 213 -5.3409530924880788e-01 -2.3681753901261429e+00 -1.0903361726903517e+01 1.1196166502734185e+01 7.5982559280529949e-01 2 0 0 -72 0 P 143 -211 -3.1977963716083679e-01 2.3752717536913065e-01 -2.8651495867519676e+00 2.8960732233054012e+00 1.3957000000000000e-01 1 0 0 0 0 P 144 211 -3.6496376518151447e-01 -5.2724537389610715e-01 -1.0936066448622586e+01 1.0955738924772664e+01 1.3957000000000000e-01 1 0 0 0 0 P 145 -211 4.8831973315961848e-02 1.4134638883921216e-03 -6.7994288610018105e-01 6.9583667103447200e-01 1.3957000000000000e-01 1 0 0 0 0 P 146 211 -6.8409289803412399e-01 -1.8757227743908245e-02 -6.2446428030931296e+00 6.2835800663201677e+00 1.3957000000000000e-01 1 0 0 0 0 P 147 -323 5.7449138991130640e-02 -8.0880496193550944e-01 -3.8474772735075263e+01 3.8494547447249992e+01 9.2982809318055493e-01 2 0 0 -73 0 P 148 311 1.7386650240542043e-01 -4.2095543127218516e-04 -7.6619912368531446e+00 7.6801051347215674e+00 4.9767000000000000e-01 2 0 0 -74 0 P 149 211 1.4385027529095623e-01 1.4585415241471106e-01 -6.6919767329796107e+00 6.6965661883623895e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 223 -6.3324052990756496e-01 -1.6805936300203536e-01 -1.0156910904974328e+02 1.0157423024183387e+02 7.8172792212605657e-01 2 0 0 -75 0 P 151 -323 2.1622656493106468e-01 -3.3116231499488857e-01 -1.8865665310892201e+01 1.8888896263342389e+01 8.4891225603955145e-01 2 0 0 -76 0 P 152 323 -5.0028231278412338e-01 1.9837568766790055e-02 -6.9761813355891854e+02 6.9761881661736300e+02 8.3806471066016941e-01 2 0 0 -77 0 P 153 113 -1.1660481767497774e-01 -3.1448409243159690e-02 -1.1934580331967167e+02 1.1934687277532770e+02 4.9059713263883070e-01 2 0 0 -78 0 P 154 -211 -3.5286971362962195e-02 -1.4066713142262930e-02 -1.7143606778468833e+01 1.7144216990064880e+01 1.3957000000000000e-01 1 0 0 0 0 P 155 213 -9.3322242579603532e-02 4.1359797825335315e-01 -3.2698505788629171e+02 3.2698565178738357e+02 4.5675112469769974e-01 2 0 0 -79 0 P 156 111 -4.8143605627087915e-01 -3.8391265449032874e-01 -4.6948438339711316e+02 4.6948480661568857e+02 1.3497999999999999e-01 2 0 0 -80 0 P 157 -213 -9.6481433760688864e-02 5.1418541141356222e-01 -1.7199968043542963e+01 1.7223328479452135e+01 7.2831854832673770e-01 2 0 0 -81 0 P 158 223 -2.6080478091615161e-02 -1.6205045514806524e-01 -8.1463221525317280e+01 8.1466809828023145e+01 7.4679430301543159e-01 2 0 0 -82 0 P 159 111 1.6890279154078289e-01 2.8963545180703526e-01 -2.4747863695860350e+01 2.4750502903117273e+01 1.3497999999999999e-01 2 0 0 -83 0 P 160 221 -4.6049951727435762e-01 1.1736771723799334e-01 -1.8613201263022319e+01 1.8627313218677976e+01 5.4744999999999999e-01 2 0 0 -84 0 P 161 -2112 3.4906454465624165e-01 1.6727108107520045e-01 -5.1672904694026940e+00 5.2662613162451457e+00 9.3957000000000002e-01 1 0 0 0 0 P 162 2112 8.5218877760141865e-02 7.5145619391423668e-02 -8.5361547269926330e+00 8.5884596074790434e+00 9.3957000000000002e-01 1 0 0 0 0 P 163 111 2.2344543564901712e-01 2.1721186817940433e-01 -5.0140341742122398e+00 5.0255215807872702e+00 1.3497999999999999e-01 2 0 0 -85 0 P 164 113 -5.7389678192508109e-01 -6.6981502412195282e-01 2.8133805009336321e-01 1.1746956361257996e+00 7.2301387003238227e-01 2 0 0 -86 0 P 165 211 5.1983265683246360e-01 -1.3062426660044679e-01 -3.1070348344531777e+00 3.1560155160486594e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 221 -9.2664330190116195e-01 -4.4877666421762097e-01 6.5099061953207860e-01 1.3354993794544956e+00 5.4744999999999999e-01 2 0 0 -87 0 P 167 -211 5.6965800720692805e-01 -3.8217132991309893e-01 -8.1860125903773739e-01 1.0771039767732193e+00 1.3957000000000000e-01 1 0 0 0 0 P 168 211 -3.3936103490561233e-02 2.4067316324434515e-01 2.9775106768697303e-02 2.8185381407610688e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 -323 5.1669921367175642e-01 -9.4928267975298866e-02 -3.9713030840576931e+00 4.1178118424374448e+00 9.5348661805088608e-01 2 0 0 -88 0 P 170 323 -7.3635165210081044e-01 2.4052428214533225e-01 -4.4235248816692989e+00 4.5713067402428305e+00 8.5393632595705005e-01 2 0 0 -89 0 P 171 -213 8.8379990916453419e-02 -1.2593319435278053e-01 -9.0738888807409950e+00 9.1052937352443060e+00 7.3975968585068319e-01 2 0 0 -90 0 P 172 111 -2.4435829313674548e-01 1.9902338970012445e-01 -8.2681682855281959e+00 8.2752732694024473e+00 1.3497999999999999e-01 2 0 0 -91 0 P 173 213 5.8808327781288927e-01 -1.6867672729768937e-01 -1.3620509984272019e+01 1.3655292802910841e+01 7.5791524697675050e-01 2 0 0 -92 0 P 174 -211 -2.4027421817631159e-01 2.4544831968591191e-01 -1.5324105041515383e+01 1.5328589357336636e+01 1.3957000000000000e-01 1 0 0 0 0 P 175 111 -3.6929201692131253e-01 1.0061190438244826e-01 -8.2277203075645815e+00 8.2377242251107106e+00 1.3497999999999999e-01 2 0 0 -93 0 P 176 213 4.4768584488527519e-01 2.6303729828480926e-01 -2.8711073321243262e+01 2.8725282982216036e+01 7.3928337907987252e-01 2 0 0 -94 0 P 177 223 -1.6425018398303007e-01 -3.0901935745565063e-02 -2.5930363773367588e+02 2.5930507736651708e+02 8.4774588492824055e-01 2 0 0 -95 0 P 178 223 -2.3376299742814630e-01 9.6799063046321812e-02 -2.8958960217004034e+02 2.8959076722926687e+02 7.8151406617664687e-01 2 0 0 -96 0 V -17 0 0 0 0 0 4 1 0 P 62 21 -1.2605997585369386e+00 1.6844506005311916e-01 -6.4643381357596503e+00 6.5882587246491955e+00 0 2 0 0 -17 0 P 63 21 -8.2697912597514545e-01 4.3841048836568508e-01 -4.2581407669148037e+00 4.3598005713529426e+00 0 2 0 0 -17 0 P 64 21 3.5798161059663791e-01 1.1670538667021686e+00 -4.2401052216873971e+00 4.4123302066244516e+00 0 2 0 0 -17 0 P 65 21 1.2605997585369386e+00 -1.6844506005311916e-01 -7.7042916123452820e-02 1.2741354325206140e+00 0 2 0 0 -17 0 P 179 92 -4.6899751537850776e-01 1.6054643550678538e+00 -1.5039627040485303e+01 1.6634524935147205e+01 6.9079348459805798e+00 2 0 0 -18 0 V -18 0 0 0 0 0 0 5 0 P 180 111 -1.4826814989673662e+00 6.2304862212755729e-01 -5.1121193098302715e+00 5.3608317872560312e+00 1.3497999999999999e-01 2 0 0 -97 0 P 181 223 2.7022804030709269e-01 6.3549989257778416e-01 -2.6398675545910972e+00 2.8378141847981615e+00 7.7936213304489343e-01 2 0 0 -98 0 P 182 -1114 -3.4923186554839047e-01 6.7276681060481208e-02 -3.8563008223759385e+00 4.0691483203505010e+00 1.2491689127676209e+00 2 0 0 -99 0 P 183 1114 3.1371456720765134e-01 8.4559495567593279e-01 -2.0321015932491302e+00 2.5358216715015480e+00 1.2196339637892941e+00 2 0 0 -100 0 P 184 113 7.7897324162250525e-01 -5.6595579637390181e-01 -1.3992377604388675e+00 1.8309089712409636e+00 6.8356131847814139e-01 2 0 0 -101 0 V -19 0 0 0 0 0 0 2 0 P 185 211 -8.5489541076337805e-01 -5.0705053399148048e-01 8.2995146661025476e+00 8.3599862371367948e+00 1.3957000000000000e-01 1 0 0 0 0 P 186 111 -1.7023584590456013e+00 -2.5737728856049719e-01 2.1853850064867419e+01 2.1921980970018577e+01 1.3497999999999999e-01 2 0 0 -102 0 V -20 0 0 0 0 0 0 2 0 P 187 211 -3.1232327445081898e-01 -3.4092114570124188e-01 4.6110919528117726e+00 4.6363155455097544e+00 1.3957000000000000e-01 1 0 0 0 0 P 188 111 -1.2428344911793691e-01 1.7106731477188269e-01 5.0393125985452416e+00 5.0455526424926642e+00 1.3497999999999999e-01 2 0 0 -103 0 V -21 0 0 0 0 0 0 2 0 P 189 -211 -5.7109606659573942e-01 4.1889139899826350e-01 1.3035791241168075e+01 1.3055763240410350e+01 1.3957000000000000e-01 1 0 0 0 0 P 190 111 3.7502378245730084e-03 -2.1434408530232990e-01 1.6060904643940890e+00 1.6259469952632077e+00 1.3497999999999999e-01 2 0 0 -104 0 V -22 0 0 0 0 0 0 3 0 P 191 211 -2.0279424469453865e-03 -1.4971510163575005e-01 4.2781948303410173e+00 4.2830887821133219e+00 1.3957000000000000e-01 1 0 0 0 0 P 192 -211 -4.5727302443573301e-02 -7.5583051890258032e-02 1.1747178360377157e+00 1.1862738145668330e+00 1.3957000000000000e-01 1 0 0 0 0 P 193 111 -4.8372800836280311e-01 -6.0640639133429619e-01 1.8718797966495206e+01 1.8735349967598438e+01 1.3497999999999999e-01 2 0 0 -105 0 V -23 0 0 0 0 0 0 3 0 P 194 211 -7.2265676076955457e-02 6.6625551284753712e-02 9.4546973252438260e+00 9.4562382895576196e+00 1.3957000000000000e-01 1 0 0 0 0 P 195 -211 -2.3962905660586178e-01 -6.1483889425397488e-02 4.3630706770205805e+01 4.3631631363106415e+01 1.3957000000000000e-01 1 0 0 0 0 P 196 221 -3.0091440410714038e-01 -4.0119373564324469e-02 6.4746190716813217e+01 6.4749216774283724e+01 5.4744999999999999e-01 2 0 0 -106 0 V -24 0 4.7508231684802861e-07 1.4728479156880072e-05 1.6405067599540479e-02 1.6405076203440120e-02 0 2 0 P 197 22 -3.2443911798390429e-02 1.3470462495984667e-01 9.1011521598281362e+01 9.1011627068072116e+01 0 1 0 0 0 0 P 198 22 4.0389202693062100e-02 1.1161490154644969e-01 1.8334732023332663e+02 1.8334735865541117e+02 0 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 199 211 8.7232362260167073e-01 3.8507255335480028e-01 2.3490972032878548e+02 2.3491169705680261e+02 1.3957000000000000e-01 1 0 0 0 0 P 200 111 -3.9479502736067401e-02 3.4935335646504101e-01 1.0032272174848281e+02 1.0032342859483379e+02 1.3497999999999999e-01 2 0 0 -107 0 V -26 0 0 0 0 0 0 2 0 P 201 211 -5.6492568642423879e-01 -8.4976839677102817e-02 -1.6294589547695757e+01 1.6305198263352679e+01 1.3957000000000000e-01 1 0 0 0 0 P 202 111 -1.3383851552088527e-01 -4.3385229453661883e-01 -2.9289307166474213e+01 2.9293136985549861e+01 1.3497999999999999e-01 2 0 0 -108 0 V -27 0 0 0 0 0 0 3 0 P 203 211 -4.3017631626800834e-01 -1.9600026675212484e-01 -1.8250031251957672e+01 1.8256686124540142e+01 1.3957000000000000e-01 1 0 0 0 0 P 204 -211 1.2688491527841941e-01 -9.7612893770100836e-02 -7.3310645617834211e+00 7.3341404031210180e+00 1.3957000000000000e-01 1 0 0 0 0 P 205 111 4.2923455884211793e-02 4.1999148437581908e-02 -8.5139344752432180e+00 8.5152161570138389e+00 1.3497999999999999e-01 2 0 0 -109 0 V -28 0 1.3767395958309064e-05 2.2033103928230738e-05 -1.0638597971411699e-02 1.0638632457022472e-02 0 2 0 P 206 22 1.8474183999352120e-01 2.8459041947554253e-01 -1.1191410042061582e+02 1.1191461474807473e+02 0 1 0 0 0 0 P 207 22 5.7685977738755202e-02 1.0338689441624654e-01 -7.5419226647949813e+01 7.5419319571955768e+01 0 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 208 -211 -2.5970524051721766e-01 1.8107762711684940e-02 -1.6029714541043273e+01 1.6032435958245916e+01 1.3957000000000000e-01 1 0 0 0 0 P 209 111 2.6769406777985977e-01 -1.3835899669173837e-01 -5.1906001903369805e+01 5.1907052088506433e+01 1.3497999999999999e-01 2 0 0 -110 0 V -30 0 -9.1919291100361561e-05 1.0650661031042837e-04 -6.4840541094926096e-01 6.4840542746731966e-01 0 2 0 P 210 22 -3.1572548992406752e-01 3.4387109403033522e-01 -1.9949082008929024e+03 1.9949082555144412e+03 0 1 0 0 0 0 P 211 22 8.2212640601386430e-03 1.2433141575008822e-02 -1.7424912781446511e+02 1.7424912845197818e+02 0 1 0 0 0 0 V -31 0 0 0 0 0 0 3 0 P 212 22 5.0591030388783521e-02 3.3291247059847907e-02 7.6931350034076806e-02 9.7909101235096122e-02 0 1 0 0 0 0 P 213 -211 -6.5896321176079645e-02 1.9801716019336179e-02 1.3957606975518086e-01 2.0903515792840827e-01 1.3957000000000000e-01 1 0 0 0 0 P 214 211 1.5308210161088703e-01 7.1568151877824338e-02 1.2561203742006704e+00 1.2750977647140809e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 215 -211 -3.5239921466720703e-01 1.0261867417494497e-01 1.6632225770383662e+00 1.7089484850216028e+00 1.3957000000000000e-01 1 0 0 0 0 P 216 111 5.9845301326187893e-03 -4.9177159257306463e-01 2.2001714151712086e+00 2.2585059155112335e+00 1.3497999999999999e-01 2 0 0 -111 0 V -33 0 0 0 0 0 0 2 0 P 217 211 1.8728663521866074e-01 2.5907261477295385e-01 2.7196461782926891e+00 2.7419245108972006e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 111 2.1351238492336607e-02 5.4191886681574661e-03 1.7247695504455471e-02 1.3784892597039752e-01 1.3497999999999999e-01 2 0 0 -112 0 V -34 0 0 0 0 0 0 2 0 P 219 -321 -7.3924904408926267e-02 3.5713386897642435e-01 8.9576580669827126e+02 8.9576601693760210e+02 4.9359999999999998e-01 1 0 0 0 0 P 220 111 4.6215797011218737e-02 -2.9005110015086832e-01 4.1347261730798374e+02 4.1347274365870283e+02 1.3497999999999999e-01 2 0 0 -113 0 V -35 0 0 0 0 0 0 1 0 P 221 130 -1.4061387103941791e-01 1.0283683147013457e-01 1.9464658673411316e+02 1.9464730090690745e+02 4.9767000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 222 -211 -4.6682927228771409e-01 6.4453100712346878e-01 3.6345663300751760e+01 3.6354643036964639e+01 1.3957000000000000e-01 1 0 0 0 0 P 223 211 -1.5863155100725257e-01 6.8567648500381717e-02 4.3257333089089990e+01 4.3257903454244932e+01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 224 211 3.0897958887618965e-01 -2.4248088084204092e-01 7.2512706753175635e+00 7.2632411191930331e+00 1.3957000000000000e-01 1 0 0 0 0 P 225 111 -1.5421734976307663e-01 -5.7685795566367319e-02 7.1699746669994768e+00 7.1731350864034571e+00 1.3497999999999999e-01 2 0 0 -114 0 V -38 0 0 0 0 0 0 2 0 P 226 -211 -2.3192039832602140e-01 3.5449108422368342e-02 3.2345479190460367e+01 3.2346631162392356e+01 1.3957000000000000e-01 1 0 0 0 0 P 227 111 2.1114117441380983e-01 4.3679245846757841e-01 1.8516726656598564e+01 1.8523572925407638e+01 1.3497999999999999e-01 2 0 0 -115 0 V -39 0 1.9710630047186555e-06 2.2796145868007366e-06 7.7510339440101415e-05 7.7726367528658163e-05 0 2 0 P 228 22 -1.1487623022230524e-02 2.8712493958114838e-04 1.4644670470647422e-02 1.8614894483334202e-02 0 1 0 0 0 0 P 229 22 6.5289463679700427e-02 6.1936893504214718e-02 2.1010659495752018e+00 2.1029923959227435e+00 0 1 0 0 0 0 V -40 0 0 0 0 0 0 3 0 P 230 111 -2.6511348772953830e-01 1.1676248107782425e-01 7.4962501382265305e+00 7.5030596674706542e+00 1.3497999999999999e-01 2 0 0 -116 0 P 231 111 -4.3854904714178342e-02 1.5246178253253197e-02 1.9458503233628535e+00 1.9510788758915261e+00 1.3497999999999999e-01 2 0 0 -117 0 P 232 111 3.9575523733759799e-03 -4.0729047111259117e-02 4.7339212746217605e+00 4.7360220388228660e+00 1.3497999999999999e-01 2 0 0 -118 0 V -41 0 0 0 0 0 0 2 0 P 233 -211 2.8241266370275336e-01 -3.9922921285443319e-01 3.1508724069588281e+00 3.1916480988433817e+00 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -2.3375801424813586e-01 -1.5412359270671144e-01 4.8874664088806297e+00 4.8973405425180081e+00 1.3497999999999999e-01 2 0 0 -119 0 V -42 0 0 0 0 0 0 2 0 P 235 321 -2.6850299802711732e-02 -4.4440172803968259e-01 3.8107300200644798e+00 3.8682706834326863e+00 4.9359999999999998e-01 1 0 0 0 0 P 236 -211 -4.1347527224378317e-01 -4.0353888944433702e-01 3.4417571092410082e+00 3.4927034257093830e+00 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 237 -211 1.3493008940924078e-01 -1.0361607841706111e-01 9.9868475585354743e-01 1.0226404290897049e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 111 1.5798813448833042e+00 -1.4669279895965331e-01 1.8573783582053544e+01 1.8641920501776063e+01 1.3497999999999999e-01 2 0 0 -120 0 V -44 0 5.4843895036757000e-05 -1.1561390500521687e-05 1.1573349907916136e-03 1.1587180664063541e-03 0 2 0 P 239 22 4.6747861305769756e-01 -1.6567986602699247e-01 9.8310321833081975e+00 9.8435349270937547e+00 0 1 0 0 0 0 P 240 22 4.7452233457634274e-01 -3.2899042348487700e-02 1.0047400180495680e+01 1.0058653199112884e+01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 241 211 7.7974626589251284e-01 3.1651876504057824e-01 7.5945696377200429e+00 7.6423266179138976e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 111 2.4143999937664771e+00 1.2509053817894848e+00 3.6734070881710004e+01 3.6834824212244918e+01 1.3497999999999999e-01 2 0 0 -121 0 V -46 0 0 0 0 0 0 2 0 P 243 22 3.3628277619939745e-01 1.4714982111277503e-01 3.0033089985466122e+00 3.0256576336679184e+00 0 1 0 0 0 0 P 244 22 7.1812105468000165e-01 -9.4024967879575400e-02 1.4433146254875840e+01 1.4451306147141022e+01 0 1 0 0 0 0 V -47 0 3.5895396487138627e-05 -6.7233631462530267e-05 3.9221554664497989e-04 4.0216572988837089e-04 0 2 0 P 245 22 1.3571181776267021e-02 -1.6080788226327730e-01 6.5896214326313485e-01 6.7843530143024633e-01 0 1 0 0 0 0 P 246 22 9.2274917119931951e-02 -3.7446442841709261e-02 4.9757851658682639e-01 5.0744583610444038e-01 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 247 -2212 -3.9826851749371561e-01 -1.0348744473499321e+00 1.8856472632645691e+01 1.8912337075898904e+01 9.3827000000000005e-01 1 0 0 0 0 P 248 -211 -3.5160182417775820e-01 -6.5043913914991569e-01 8.8959186200122993e+00 8.9276840667266413e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 249 3122 -1.3149421004494435e+00 -1.7882263828895730e+00 1.9335221179416390e+01 1.9494161850239902e+01 1.1156800000000000e+00 2 0 0 -122 0 P 250 22 -1.5845203267161273e-01 -2.6443087565596107e-01 2.1612488243292187e+00 2.1831232707573740e+00 0 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 251 211 -6.8307456596611291e-02 -7.0482056675816196e-01 1.3650933717859553e+01 1.3670000332635214e+01 1.3957000000000000e-01 1 0 0 0 0 P 252 111 -6.8831649120608274e-01 -1.6854511161701061e-01 1.5874915702477582e+01 1.5891298097005340e+01 1.3497999999999999e-01 2 0 0 -123 0 V -51 0 0 0 0 0 0 2 0 P 253 -211 -2.0528920212852753e+00 -8.2641918236002376e-01 2.1363511232275780e+01 2.1478278009945367e+01 1.3957000000000000e-01 1 0 0 0 0 P 254 111 -8.1653198270208927e-01 -7.6397693797299571e-01 1.0326289503541815e+01 1.0387533862851560e+01 1.3497999999999999e-01 2 0 0 -124 0 V -52 0 -1.4973730015644796e-05 -1.2042443147585080e-05 8.4392275692372518e-04 8.4417924989670773e-04 0 2 0 P 255 22 -4.0512161902621684e-02 3.1198364966470767e-03 7.6347279966657766e-01 7.6455325810077646e-01 0 1 0 0 0 0 P 256 22 -2.1262049225145474e-01 -2.0669874390734774e-01 1.3503139937302086e+01 1.3506395522522682e+01 0 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 257 -321 -9.5833186161882677e-01 1.1069446614496983e+00 1.3246575310748508e+01 1.3336383500178664e+01 4.9359999999999998e-01 1 0 0 0 0 P 258 211 -1.1893549805280494e+00 6.5165343116742069e-01 1.3358087156431909e+01 1.3427478904388204e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 259 311 -3.7832258944630054e-01 2.7261043240285826e-01 1.3550156754296964e+01 1.3567308794468410e+01 4.9767000000000000e-01 2 0 0 -125 0 P 260 211 -6.8595129994900672e-01 6.9961360998645739e-01 1.4116662790567542e+01 1.4151312183563551e+01 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 3 0 P 261 211 7.5002345039231644e-02 7.1508812478042127e-01 8.9126545151555163e+00 8.9426990707160314e+00 1.3957000000000000e-01 1 0 0 0 0 P 262 -211 -2.7541078446662998e-01 2.8419582955786038e-01 2.9437776250509962e+00 2.9735374321487007e+00 1.3957000000000000e-01 1 0 0 0 0 P 263 111 -6.7658824517504053e-03 1.4167655797412745e-01 1.3501929274705504e+00 1.3643161532563639e+00 1.3497999999999999e-01 2 0 0 -126 0 V -56 0 0 0 0 0 0 2 0 P 264 -211 1.5696428628737563e-01 9.4985952723267930e-01 3.6793651249916675e+00 3.8057953723958073e+00 1.3957000000000000e-01 1 0 0 0 0 P 265 111 3.0109659756073981e-01 6.9461290906185913e-01 6.5400372938036915e+00 6.5850932916125906e+00 1.3497999999999999e-01 2 0 0 -127 0 V -57 0 0 0 0 0 0 3 0 P 266 -211 -5.8337453428439372e-02 5.7374622976400036e-01 1.5382951602360806e+00 1.6487631059514491e+00 1.3957000000000000e-01 1 0 0 0 0 P 267 211 4.5231179496704379e-03 3.8259865366014567e-01 1.3898162486813097e+00 1.4482648854326099e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 221 5.3196908199196646e-02 1.1958171642231774e+00 2.6808415397001744e+00 2.9865400490826701e+00 5.4744999999999999e-01 2 0 0 -128 0 V -58 0 0 0 0 0 0 3 0 P 269 211 -1.3000715635681847e-02 2.7420400000702572e-01 2.7724709067112832e+00 2.7895217449748224e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -211 1.1038860453542326e-01 -1.2199152342664728e-02 1.5167153139499181e+00 1.5271671787330150e+00 1.3957000000000000e-01 1 0 0 0 0 P 271 111 3.5705916284298552e-03 1.7076689902646924e-01 1.7180437902414709e+00 1.7317817843235830e+00 1.3497999999999999e-01 2 0 0 -129 0 V -59 0 0 0 0 0 0 2 0 P 272 22 3.7750465125389387e-01 9.0507007758984837e-01 1.8286186213397402e+00 2.0749717273681756e+00 0 1 0 0 0 0 P 273 22 4.4415306014809380e-01 6.5535621594352123e-01 7.0458721850941242e-01 1.0598145399557215e+00 0 1 0 0 0 0 V -60 0 0 0 0 0 0 3 0 P 274 111 -1.1746076129121385e-02 9.5108013068760544e-02 1.6518374612100717e-01 2.3385631237340587e-01 1.3497999999999999e-01 2 0 0 -130 0 P 275 111 7.0842196459872706e-02 3.1494949488724777e-01 7.5255116980004155e-01 8.2991846870424724e-01 1.3497999999999999e-01 2 0 0 -131 0 P 276 221 1.9607459408335373e-01 7.6240963496346970e-01 8.9649757709876043e-01 1.3126778379229349e+00 5.4744999999999999e-01 2 0 0 -132 0 V -61 0 0 0 0 0 0 2 0 P 277 -211 -4.9110785224374270e-01 3.3006608793653169e-01 1.2549179897839200e+00 1.3944280156840305e+00 1.3957000000000000e-01 1 0 0 0 0 P 278 111 9.4271679045274323e-02 2.2075784196104381e-01 1.5380247593282725e-01 3.1542982779119083e-01 1.3497999999999999e-01 2 0 0 -133 0 V -62 0 0 0 0 0 0 1 0 P 279 130 -5.3722747570878282e-01 3.2519549910470763e-01 3.1393796962041132e-01 8.6058000846160554e-01 4.9767000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 1 0 P 280 130 -5.6202119472850298e-01 3.2829536813899546e-01 2.1002212260651856e+00 2.2543846830965482e+00 4.9767000000000000e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 281 211 8.6607073504008425e-01 -8.4396657181291757e-01 9.7059741217377071e-01 1.5568870266814292e+00 1.3957000000000000e-01 1 0 0 0 0 P 282 111 1.3174827655035432e-01 -5.3914079268222470e-01 5.6177653663145799e-01 8.0115097217543341e-01 1.3497999999999999e-01 2 0 0 -134 0 V -65 0 0 0 0 0 0 2 0 P 283 -2112 2.0853906861195917e+00 -6.8307959523602313e-01 1.3164997038653503e+00 2.7260622337649787e+00 9.3957000000000002e-01 1 0 0 0 0 P 284 211 1.4563263958828329e-01 5.8728126616343773e-02 2.6175532601343449e-01 3.3563893422205282e-01 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 285 -211 1.0512542293967660e-01 -2.5798850968828924e-01 3.9707176867096555e-01 5.0473280065289905e-01 1.3957000000000000e-01 1 0 0 0 0 P 286 111 2.9285356420637476e-01 -4.3813249949380351e-01 5.7066686959023456e-02 5.4699132017020546e-01 1.3497999999999999e-01 2 0 0 -135 0 V -67 0 0 0 0 0 0 2 0 P 287 2212 7.8977776175917913e-01 2.3467474719304052e-02 6.8498172146385250e-01 1.4049377875830029e+00 9.3827000000000005e-01 1 0 0 0 0 P 288 -211 5.0528325451800568e-02 1.3740745726762346e-01 2.0267810584644966e-01 2.8634266268794367e-01 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 289 211 5.8411019963930433e-01 -1.1568198455133379e-01 5.5079625040062163e-01 8.2305731345258526e-01 1.3957000000000000e-01 1 0 0 0 0 P 290 111 7.1765154709322154e-01 -2.6033500899793262e-02 -8.6150208107043075e-02 7.3576011374039618e-01 1.3497999999999999e-01 2 0 0 -136 0 V -69 0 0 0 0 0 0 2 0 P 291 -211 6.2220689557444447e-02 1.8065061681913444e-01 2.2180384721319957e-01 3.2431896507098379e-01 1.3957000000000000e-01 1 0 0 0 0 P 292 211 -3.8180903237780645e-01 4.8183414856318885e-01 -4.7294756597437798e-01 7.8809991053671524e-01 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 293 211 7.4298220670026491e-02 1.3317124035932271e-01 -1.5123046310917008e+00 1.5263682016390991e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 111 -3.4889114583447411e-01 -7.2142025465454473e-01 -2.7464262925753133e+00 2.8641314907693225e+00 1.3497999999999999e-01 2 0 0 -137 0 V -71 0 0 0 0 0 0 3 0 P 295 -211 -1.1554914328793811e-01 -4.2587572127737261e-01 -1.4298064558634824e+00 1.5028466390876321e+00 1.3957000000000000e-01 1 0 0 0 0 P 296 211 -1.6346504626298042e-01 -4.5916120423584533e-01 -1.8856546849695373e+00 1.9526195760241254e+00 1.3957000000000000e-01 1 0 0 0 0 P 297 111 -1.4033991699447665e-01 5.7467563564297143e-02 -1.3312700607693218e+00 1.3466615715408183e+00 1.3497999999999999e-01 2 0 0 -138 0 V -72 0 0 0 0 0 0 2 0 P 298 211 1.1328329002613623e-01 -2.5486122914354298e-01 -1.8381893764908803e+00 1.8644589881956735e+00 1.3957000000000000e-01 1 0 0 0 0 P 299 111 -6.4737859927494412e-01 -2.1133141609826001e+00 -9.0651723504126380e+00 9.3317075145385147e+00 1.3497999999999999e-01 2 0 0 -139 0 V -73 0 0 0 0 0 0 2 0 P 300 -311 1.9395235485985574e-01 -7.9403014016405038e-01 -2.4930630782549983e+01 2.4948990521144808e+01 4.9767000000000000e-01 2 0 0 -140 0 P 301 -211 -1.3650321586872510e-01 -1.4774821771459027e-02 -1.3544141952525278e+01 1.3545556926105185e+01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 1 0 P 302 310 1.7386650240542043e-01 -4.2095543127218516e-04 -7.6619912368531446e+00 7.6801051347215648e+00 4.9767000000000000e-01 2 0 0 -141 0 V -75 0 0 0 0 0 0 3 0 P 303 211 -7.7459967850240091e-02 -1.9882963825816613e-01 -2.5208623984562053e+01 2.5209913451886472e+01 1.3957000000000000e-01 1 0 0 0 0 P 304 -211 -2.9065779454059482e-01 -1.3906313756004285e-01 -2.2475618225199312e+01 2.2478361036774160e+01 1.3957000000000000e-01 1 0 0 0 0 P 305 111 -2.6512276751672997e-01 1.6983341281617365e-01 -5.3884866839981903e+01 5.3885955753173256e+01 1.3497999999999999e-01 2 0 0 -142 0 V -76 0 0 0 0 0 0 2 0 P 306 -311 3.7444042610216471e-01 -3.6443120459592554e-01 -1.4116488792587612e+01 1.4134919419499159e+01 4.9767000000000000e-01 2 0 0 -143 0 P 307 -211 -1.5821386117110001e-01 3.3268889601037015e-02 -4.7491765183045889e+00 4.7539768438432315e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 308 321 -3.2638271075966091e-01 2.1838201532494994e-01 -5.6480947112150761e+02 5.6480982332630833e+02 4.9359999999999998e-01 1 0 0 0 0 P 309 111 -1.7389960202446256e-01 -1.9854444655815986e-01 -1.3280866243741096e+02 1.3280899329105472e+02 1.3497999999999999e-01 2 0 0 -144 0 V -78 0 0 0 0 0 0 2 0 P 310 -211 6.1738719682935428e-02 -2.8090192418518938e-02 -1.4601152580049391e+01 1.4601977166781257e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -1.7834353735791317e-01 -3.3582168246407505e-03 -1.0474465073962227e+02 1.0474489560854643e+02 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 312 211 7.5327180366987920e-02 3.1949969381087745e-01 -1.4381297976047122e+02 1.4381342211910908e+02 1.3957000000000000e-01 1 0 0 0 0 P 313 111 -1.6864942294659147e-01 9.4098284442475685e-02 -1.8317207812582046e+02 1.8317222966827441e+02 1.3497999999999999e-01 2 0 0 -145 0 V -80 0 -4.9564622942322592e-05 -3.9524430533912838e-05 -4.8334178832866663e-02 4.8334222403905516e-02 0 2 0 P 314 22 -4.8526168747845022e-01 -3.5535067227973111e-01 -4.4979340105156064e+02 4.4979380318378747e+02 0 1 0 0 0 0 P 315 22 3.8256312075710930e-03 -2.8561982210597636e-02 -1.9690982345552481e+01 1.9691003431901112e+01 0 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 316 -211 1.4309462228545883e-01 5.1725943579260991e-01 -1.4187802718566678e+01 1.4198635820412873e+01 1.3957000000000000e-01 1 0 0 0 0 P 317 111 -2.3957605604614771e-01 -3.0740243790477089e-03 -3.0121653249762859e+00 3.0246926590392622e+00 1.3497999999999999e-01 2 0 0 -146 0 V -82 0 0 0 0 0 0 3 0 P 318 211 -8.7088627237921420e-02 -1.3747118995398627e-01 -2.5002570659613855e+01 2.5003489799044956e+01 1.3957000000000000e-01 1 0 0 0 0 P 319 -211 -9.3060673705385011e-02 2.6533941961432481e-02 -6.4858244331845709e+00 6.4880476803165124e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 111 1.5406882285169127e-01 -5.1113207155511438e-02 -4.9974826432518853e+01 4.9975272348661647e+01 1.3497999999999999e-01 2 0 0 -147 0 V -83 0 8.1015574421077164e-06 1.3892596023310469e-05 -1.1870510692717203e-03 1.1871776609579708e-03 0 2 0 P 321 22 8.0049040642553526e-02 2.4322713714484676e-01 -1.9507709894077792e+01 1.9509390369784803e+01 0 1 0 0 0 0 P 322 22 8.8853750898229361e-02 4.6408314662188484e-02 -5.2401538017825580e+00 5.2411125333324682e+00 0 1 0 0 0 0 V -84 0 0 0 0 0 0 3 0 P 323 111 3.1874740340524186e-04 2.5295452456558658e-02 -4.7470067345679148e+00 4.7489927879444105e+00 1.3497999999999999e-01 2 0 0 -148 0 P 324 111 -3.5762703353853004e-01 3.3085975388222763e-02 -1.0838216677399538e+01 1.0845005860927252e+01 1.3497999999999999e-01 2 0 0 -149 0 P 325 111 -1.0319123113923283e-01 5.8986289393211919e-02 -3.0279778510548638e+00 3.0333145698063104e+00 1.3497999999999999e-01 2 0 0 -150 0 V -85 0 1.4511908684488811e-05 1.4107062814019948e-05 -3.2564194415395911e-04 3.2638800636263312e-04 0 2 0 P 326 22 1.6935764389593475e-01 1.9844675583952570e-01 -4.6188366059172079e+00 4.6261987331512264e+00 0 1 0 0 0 0 P 327 22 5.4087791753082357e-02 1.8765112339878605e-02 -3.9519756829503172e-01 3.9932284763604414e-01 0 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 328 -211 -6.2068012112099358e-01 -3.6967046848144897e-01 -3.0588104910062794e-03 7.3579155284882491e-01 1.3957000000000000e-01 1 0 0 0 0 P 329 211 4.6783339195912522e-02 -3.0014455564050391e-01 2.8439686058436947e-01 4.3890408327697367e-01 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 330 22 5.8963371855721744e-02 -8.9472290309091887e-02 1.3667909650754704e-02 1.0802213526852598e-01 0 1 0 0 0 0 P 331 22 -9.8560667375688371e-01 -3.5930437390852910e-01 6.3732270988132389e-01 1.2274772441859696e+00 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 332 -321 6.9201686326014222e-01 -4.7789744213010937e-02 -3.3538723325181494e+00 3.4602415784911731e+00 4.9359999999999998e-01 1 0 0 0 0 P 333 111 -1.7531764958838578e-01 -4.7138523762287922e-02 -6.1743075153954363e-01 6.5757026394627172e-01 1.3497999999999999e-01 2 0 0 -151 0 V -89 0 0 0 0 0 0 2 0 P 334 311 -3.2307511938569689e-01 3.1123186946370368e-01 -2.0414387335647968e+00 2.1485786792981529e+00 4.9767000000000000e-01 2 0 0 -152 0 P 335 211 -4.1327653271511355e-01 -7.0707587318371415e-02 -2.3820861481045026e+00 2.4227280609446775e+00 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 336 -211 6.9297303944798730e-02 -3.3239822103062922e-01 -2.5060232932441933e+00 2.5327698720690788e+00 1.3957000000000000e-01 1 0 0 0 0 P 337 111 1.9082686971654692e-02 2.0646502667784872e-01 -6.5678655874968017e+00 6.5725238631752303e+00 1.3497999999999999e-01 2 0 0 -153 0 V -91 0 -8.9714846016079026e-05 7.3070377646453392e-05 -3.0356139546124745e-03 3.0382225116049252e-03 0 2 0 P 338 22 -3.7246436957091421e-02 1.0933176202235742e-01 -2.4287096000939008e+00 2.4314545138334758e+00 0 1 0 0 0 0 P 339 22 -2.0711185617965405e-01 8.9691627677767047e-02 -5.8394586854342956e+00 5.8438187555689716e+00 0 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 340 211 6.4556482488174838e-01 8.0721394578243080e-02 -1.0634502938325404e+01 1.0655299264535882e+01 1.3957000000000000e-01 1 0 0 0 0 P 341 111 -5.7481547068859190e-02 -2.4939812187593244e-01 -2.9860070459466148e+00 2.9999935383749579e+00 1.3497999999999999e-01 2 0 0 -154 0 V -93 0 -1.1248536526164324e-04 3.0646118235858540e-05 -2.5061417026630271e-03 2.5091888693161406e-03 0 2 0 P 342 22 -3.2990164671774819e-01 4.3098390895322108e-02 -7.1647117725271894e+00 7.1724324570674431e+00 0 1 0 0 0 0 P 343 22 -3.9390370203564354e-02 5.7513513487126147e-02 -1.0630085350373923e+00 1.0652917680432672e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 344 211 -9.2346415235474016e-02 2.9091093071994251e-01 -1.2984923038646212e+01 1.2989259529876380e+01 1.3957000000000000e-01 1 0 0 0 0 P 345 111 5.4003226012074923e-01 -2.7873632435133286e-02 -1.5726150282597047e+01 1.5736023452339648e+01 1.3497999999999999e-01 2 0 0 -155 0 V -95 0 0 0 0 0 0 3 0 P 346 211 3.2936760695807432e-03 -1.6759378394050686e-01 -2.5393533776816206e+01 2.5394470578925702e+01 1.3957000000000000e-01 1 0 0 0 0 P 347 -211 -2.5096520540923301e-01 1.0424190928851325e-01 -1.2053583082389433e+02 1.2053621796829927e+02 1.3957000000000000e-01 1 0 0 0 0 P 348 111 8.3421345356622170e-02 3.2449938906428541e-02 -1.1337427313296537e+02 1.1337438881929212e+02 1.3497999999999999e-01 2 0 0 -156 0 V -96 0 0 0 0 0 0 3 0 P 349 211 1.3474741434168047e-01 -4.0372866261261485e-02 -6.7422283945874838e+01 6.7422575144361502e+01 1.3957000000000000e-01 1 0 0 0 0 P 350 -211 -3.7534378171412591e-01 6.2036530728196267e-02 -1.0657021243898633e+02 1.0657098287320612e+02 1.3957000000000000e-01 1 0 0 0 0 P 351 111 6.8333699442991681e-03 7.5135398579387017e-02 -1.1559710578517912e+02 1.1559720921169921e+02 1.3497999999999999e-01 2 0 0 -157 0 V -97 0 -3.1029122526602407e-04 1.3038978397917063e-04 -1.0698493003777944e-03 1.1218991164799956e-03 0 2 0 P 352 22 -6.6021204818445045e-01 3.3626151389159692e-01 -2.4824166174045796e+00 2.5906261823464556e+00 0 1 0 0 0 0 P 353 22 -8.2246945078291589e-01 2.8678710823596038e-01 -2.6297026924256919e+00 2.7702056049095756e+00 0 1 0 0 0 0 V -98 0 0 0 0 0 0 3 0 P 354 -211 6.7670984231668341e-02 -5.4832352491791629e-03 -6.1377076277819897e-01 6.3309064289168948e-01 1.3957000000000000e-01 1 0 0 0 0 P 355 211 5.4848681925231284e-02 -4.0629250471484545e-02 -4.4598310723278006e-01 4.7227092938250520e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 111 1.4770837415019303e-01 6.8161237829844779e-01 -1.5801136845801180e+00 1.7324526125239663e+00 1.3497999999999999e-01 2 0 0 -158 0 V -99 0 0 0 0 0 0 2 0 P 357 -2112 -5.1314366919767450e-02 1.6821221252397937e-02 -2.4639039142885086e+00 2.6375235357211571e+00 9.3957000000000002e-01 1 0 0 0 0 P 358 211 -2.9791749862862305e-01 5.0455459808083275e-02 -1.3923969080874297e+00 1.4316247846293437e+00 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 359 2112 1.0004591034257380e-01 4.8157571711704056e-01 -1.2812335266968760e+00 1.6632124008451779e+00 9.3957000000000002e-01 1 0 0 0 0 P 360 -211 2.1366865686507755e-01 3.6401923855889223e-01 -7.5086806655225402e-01 8.7260927065637006e-01 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 361 -211 5.9513098030800315e-01 -5.8550249749358602e-02 -8.4754629285752836e-01 1.0466248224194841e+00 1.3957000000000000e-01 1 0 0 0 0 P 362 211 1.8384226131450210e-01 -5.0740554662454318e-01 -5.5169146758133913e-01 7.8428414882147968e-01 1.3957000000000000e-01 1 0 0 0 0 V -102 0 -3.1170070485262607e-04 -4.7125610843641782e-05 4.0014254534745507e-03 4.0139001770235312e-03 0 2 0 P 363 22 -1.0760720569721043e+00 -1.5268012418208515e-01 1.4594701215375137e+01 1.4635113455596747e+01 0 1 0 0 0 0 P 364 22 -6.2628640207349706e-01 -1.0469716437841203e-01 7.2591488494922842e+00 7.2868675144218313e+00 0 1 0 0 0 0 V -103 0 -4.5681355115454578e-05 6.2877131349372894e-05 1.8522388136611985e-03 1.8545323906863083e-03 0 2 0 P 365 22 1.8962273951526051e-02 -3.3252736106354759e-03 1.8551096172964723e-01 1.8650721755432675e-01 0 1 0 0 0 0 P 366 22 -1.4324572306946295e-01 1.7439258838251814e-01 4.8538016368155947e+00 4.8590454249383388e+00 0 1 0 0 0 0 V -104 0 3.2492060686175941e-07 -1.8570771650086304e-05 1.3915167858060548e-04 1.4087204842432277e-04 0 2 0 P 367 22 -6.2359478474031615e-02 -6.5747786656006918e-02 5.9389850286127510e-01 6.0077192653001099e-01 0 1 0 0 0 0 P 368 22 6.6109716298604626e-02 -1.4859629864632296e-01 1.0121919615328139e+00 1.0251750687331966e+00 0 1 0 0 0 0 V -105 0 -1.8305892676238867e-04 -2.2948454763911793e-04 7.0838219139433478e-03 7.0900857471416405e-03 0 2 0 P 369 22 -2.2306624077133394e-01 -3.4349315200761765e-01 1.1116663017089385e+01 1.1124205262793868e+01 0 1 0 0 0 0 P 370 22 -2.6066176759146920e-01 -2.6291323932667854e-01 7.6021349494058228e+00 7.6111447048045671e+00 0 1 0 0 0 0 V -106 0 0 0 0 0 0 3 0 P 371 22 -8.4521397751448679e-02 -1.5455886336594695e-02 2.6265707315287955e+01 2.6265847854647134e+01 0 1 0 0 0 0 P 372 211 -1.2947867115521489e-01 -1.5575593311563385e-01 1.5849792657758506e+01 1.5851701224657885e+01 1.3957000000000000e-01 1 0 0 0 0 P 373 -211 -8.6914335200476853e-02 1.3109244588790409e-01 2.2630690743766760e+01 2.2631667694978706e+01 1.3957000000000000e-01 1 0 0 0 0 V -107 0 -5.5903099301270303e-06 4.9468544495762478e-05 1.4205728764044200e-02 1.4205828853708484e-02 0 2 0 P 374 22 -7.0880447044978770e-02 1.7848883050628109e-01 4.0605702165438814e+01 4.0606156314636706e+01 0 1 0 0 0 0 P 375 22 3.1400944308911369e-02 1.7086452595875995e-01 5.9717019583043999e+01 5.9717272280197079e+01 0 1 0 0 0 0 V -108 0 -4.0694760760288573e-05 -1.3191655079822551e-04 -8.9056677245368619e-03 8.9068322142237949e-03 0 2 0 P 376 22 9.7257321380660906e-03 -7.2172476809242408e-02 -2.6977132297651001e+00 2.6986960048001056e+00 0 1 0 0 0 0 P 377 22 -1.4356424765895134e-01 -3.6167981772737640e-01 -2.6591593936709113e+01 2.6594440980749756e+01 0 1 0 0 0 0 V -109 0 4.1689331089977670e-06 4.0791599106899883e-06 -8.2691438959215941e-04 8.2703887270887673e-04 0 2 0 P 378 22 6.2297744868781951e-02 1.7704704878593932e-02 -1.7319363246277204e+00 1.7331468195613295e+00 0 1 0 0 0 0 P 379 22 -1.9374288984570154e-02 2.4294443558987976e-02 -6.7819981506154976e+00 6.7820693374525112e+00 0 1 0 0 0 0 V -110 0 5.6641029499779235e-05 -2.9275194919975810e-05 -1.0982721467858994e-02 1.0982943675126405e-02 0 2 0 P 380 22 1.7871795981584443e-01 -2.1646594156672635e-02 -2.4843562081452166e+01 2.4844214328071779e+01 0 1 0 0 0 0 P 381 22 8.8976107964015311e-02 -1.1671240253506575e-01 -2.7062439821917639e+01 2.7062837760434647e+01 0 1 0 0 0 0 V -111 0 2.0878733064404342e-06 -1.7156848712359993e-04 7.6759228636702980e-04 7.8794393359838582e-04 0 2 0 P 382 22 3.3580810133117901e-02 -2.7481267551184096e-01 1.4869633973049052e+00 1.5125177097659777e+00 0 1 0 0 0 0 P 383 22 -2.7596280000499109e-02 -2.1695891706122367e-01 7.1320801786630328e-01 7.4598820574525582e-01 0 1 0 0 0 0 V -112 0 8.3158172115990646e-07 2.1106495726578673e-07 6.7175814268502547e-07 5.3688991933489796e-06 0 2 0 P 384 22 -1.2924349424568172e-02 -4.2112747993476501e-02 -3.7350750404121877e-02 5.7754661347473993e-02 0 1 0 0 0 0 P 385 22 3.4275587916904778e-02 4.7531936661633967e-02 5.4598445908577348e-02 8.0094264622923531e-02 0 1 0 0 0 0 V -113 0 1.8942613257063346e-06 -1.1888415152961479e-05 1.6947131475736833e-02 1.6947136654513272e-02 0 2 0 P 386 22 5.5798855424978804e-02 -2.5165219608828793e-01 3.9492816456691259e+02 3.9492824868642970e+02 0 1 0 0 0 0 P 387 22 -9.5830584137600646e-03 -3.8398904062580404e-02 1.8544452741071158e+01 1.8544494972273128e+01 0 1 0 0 0 0 V -114 0 -3.1913578760222870e-05 -1.1937438835394571e-05 1.4837471373721888e-03 1.4844011512929261e-03 0 2 0 P 388 22 -1.2720395901483986e-01 9.6903553220045249e-03 3.2744756925554537e+00 3.2769598427981736e+00 0 1 0 0 0 0 P 389 22 -2.7013390748236773e-02 -6.7376150888371844e-02 3.8954989744440232e+00 3.8961752436052826e+00 0 1 0 0 0 0 V -115 0 1.0442743396632901e-04 2.1603136261910550e-04 9.1581107075533949e-03 9.1614967751262391e-03 0 2 0 P 390 22 6.3194173205817418e-04 1.3701900699069253e-01 4.7846621937918359e+00 4.7866237491919046e+00 0 1 0 0 0 0 P 391 22 2.1050923268175167e-01 2.9977345147688589e-01 1.3732064462806729e+01 1.3736949176215729e+01 0 1 0 0 0 0 V -116 0 -5.6507503473546511e-05 2.4887290200097708e-05 1.5977851008340581e-03 1.5992365150971006e-03 0 2 0 P 392 22 -6.7354844192211452e-02 -1.7801395381472958e-02 1.0096632193639321e+00 1.0120639215237466e+00 0 1 0 0 0 0 P 393 22 -1.9775864353732683e-01 1.3456387645929721e-01 6.4865869188625984e+00 6.4909957459469076e+00 0 1 0 0 0 0 V -117 0 -1.4850993150038844e-05 5.1629547545256046e-06 6.5894134331387366e-04 6.6071193655296541e-04 0 2 0 P 394 22 -7.9861801859166748e-02 -2.9646704344979995e-02 1.1523863692747245e+00 1.1555306913123913e+00 0 1 0 0 0 0 P 395 22 3.6006897144988406e-02 4.4892882598233194e-02 7.9346395408812898e-01 7.9554818457913479e-01 0 1 0 0 0 0 V -118 0 3.6200041242819109e-07 -3.7255178102686108e-06 4.3301548334376527e-04 4.3320764188911528e-04 0 2 0 P 396 22 -5.7145698873437130e-02 -5.1084188285274695e-02 2.1744281594422357e+00 2.1757787216920401e+00 0 1 0 0 0 0 P 397 22 6.1103251246813109e-02 1.0355141174015573e-02 2.5594931151795248e+00 2.5602433171308259e+00 0 1 0 0 0 0 V -119 0 -2.5984567037765701e-05 -1.7132395822535005e-05 5.4329131326199859e-04 5.4438892306273869e-04 0 2 0 P 398 22 -1.3771945667654223e-01 -1.2156039360293504e-01 3.9777735383864834e+00 3.9820127951486923e+00 0 1 0 0 0 0 P 399 22 -9.6038557571593644e-02 -3.2563199103776412e-02 9.0969287049414638e-01 9.1532774736931466e-01 0 1 0 0 0 0 V -120 0 3.5145553167095241e-04 -3.2632827659898220e-05 4.1318666146121282e-03 4.1470241436411632e-03 0 2 0 P 400 22 1.5253523528396460e+00 -1.2947992056793409e-01 1.7595493117923354e+01 1.7661960336073452e+01 0 1 0 0 0 0 P 401 22 5.4528992043658367e-02 -1.7212878391719224e-02 9.7829046413018994e-01 9.7996016570261069e-01 0 1 0 0 0 0 V -121 0 4.4142808152883940e-04 2.2870475657847458e-04 6.7161408540104646e-03 6.7345617244215367e-03 0 2 0 P 402 22 7.2451903216690172e-01 3.3834234938621160e-01 1.0108572066237045e+01 1.0140149534975709e+01 0 1 0 0 0 0 P 403 22 1.6898809615995753e+00 9.1256303240327319e-01 2.6625498815472959e+01 2.6694674677269202e+01 0 1 0 0 0 0 V -122 0 -1.7191911196601131e+02 -2.3379758822497897e+02 2.5279394839480110e+03 2.5487198201878509e+03 0 2 0 P 404 2212 -1.1258745204894027e+00 -1.6228927656053793e+00 1.6459644001596427e+01 1.6604264681603059e+01 9.3827000000000005e-01 1 0 0 0 0 P 405 -211 -1.8906757996004067e-01 -1.6533361728419363e-01 2.8755771778199626e+00 2.8898971686368431e+00 1.3957000000000000e-01 1 0 0 0 0 V -123 0 -1.3526717403093764e-05 -3.3122293648977893e-06 3.1197203793430239e-04 3.1229398288839562e-04 0 2 0 P 406 22 -8.8831985419041276e-02 -5.5521437182129880e-02 1.6637529072451298e+00 1.6670475362109138e+00 0 1 0 0 0 0 P 407 22 -5.9948450578704149e-01 -1.1302367443488073e-01 1.4211162795232452e+01 1.4224250560794424e+01 0 1 0 0 0 0 V -124 0 -3.7366745989872050e-04 -3.4961682809885264e-04 4.7255936701931919e-03 4.7536207709819025e-03 0 2 0 P 408 22 -7.8639262588065939e-01 -7.4323206364521843e-01 1.0148346759740550e+01 1.0205868371599072e+01 0 1 0 0 0 0 P 409 22 -3.0139356821429906e-02 -2.0744874327777191e-02 1.7794274380126660e-01 1.8166549125248838e-01 0 1 0 0 0 0 V -125 0 0 0 0 0 0 1 0 P 410 130 -3.7832258944630054e-01 2.7261043240285826e-01 1.3550156754296964e+01 1.3567308794468410e+01 4.9767000000000000e-01 1 0 0 0 0 V -126 0 -1.2460210609647650e-06 2.6091493066819041e-05 2.4865475213196035e-04 2.5125571910166161e-04 0 2 0 P 411 22 -6.8296920621265925e-02 6.7259713825283743e-02 5.4643968270728449e-01 5.5478344000830115e-01 0 1 0 0 0 0 P 412 22 6.1531038169515516e-02 7.4416844148843697e-02 8.0375324476326604e-01 8.0953271324806275e-01 0 1 0 0 0 0 V -127 0 4.1566500366108954e-05 9.5891577562577199e-05 9.0285464787564769e-04 9.0907464559263030e-04 0 2 0 P 413 22 1.5542801589662478e-01 5.0189888804119509e-01 4.6951829232399831e+00 4.7244897126173218e+00 0 1 0 0 0 0 P 414 22 1.4566858166411500e-01 1.9271402102066412e-01 1.8448543705637079e+00 1.8606035789952686e+00 0 1 0 0 0 0 V -128 0 0 0 0 0 0 3 0 P 415 -211 -3.4494745984798798e-02 7.9420392417807906e-01 1.6561602001289693e+00 1.8423615698531175e+00 1.3957000000000000e-01 1 0 0 0 0 P 416 211 1.5811491758839485e-02 2.6634047448642761e-01 5.4057883352394820e-01 6.1878308943878524e-01 1.3957000000000000e-01 1 0 0 0 0 P 417 111 7.1880162425155963e-02 1.3527276555867068e-01 4.8410250604725680e-01 5.2539538979076716e-01 1.3497999999999999e-01 2 0 0 -159 0 V -129 0 8.1210055712601651e-07 3.8839472073445004e-05 3.9075438034215425e-04 3.9387896971245504e-04 0 2 0 P 418 22 2.5190379748237391e-03 -1.5997467902877746e-02 4.2613474420448005e-01 4.2644235806242309e-01 0 1 0 0 0 0 P 419 22 1.0515536536061156e-03 1.8676436692934700e-01 1.2919090460369909e+00 1.3053394262611597e+00 0 1 0 0 0 0 V -130 0 -7.4329505885139221e-07 6.0184622842616688e-06 1.0452874725535387e-05 1.4798494370167383e-05 0 2 0 P 420 22 -2.9985515789429013e-02 2.6331549056243114e-02 -1.3016887385186421e-02 4.1975242584862564e-02 0 1 0 0 0 0 P 421 22 1.8239439660307628e-02 6.8776464012517427e-02 1.7820063350619358e-01 1.9188106978854333e-01 0 1 0 0 0 0 V -131 0 1.5617757749152609e-05 6.9433263791491591e-05 1.6590623175321542e-04 1.8296250318992319e-04 0 2 0 P 422 22 1.0166631798551191e-01 2.9762684696040359e-01 6.7981817112253262e-01 7.4904641113398829e-01 0 1 0 0 0 0 P 423 22 -3.0824121525639216e-02 1.7322647926844160e-02 7.2732998677508973e-02 8.0872057570259059e-02 0 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 424 22 -1.5594854444215827e-02 1.2988172525228153e-01 5.4151835690698447e-01 5.5709477910575123e-01 0 1 0 0 0 0 P 425 22 2.1166944852756958e-01 6.3252790971118811e-01 3.5497922019177591e-01 7.5558305881718368e-01 0 1 0 0 0 0 V -133 0 1.4949838256017334e-05 3.5008329802634185e-05 2.4390380672720470e-05 5.0021649708148380e-05 0 2 0 P 426 22 1.2069225551472086e-02 7.9668960456190999e-02 1.2633838239645684e-01 1.4984724332511354e-01 0 1 0 0 0 0 P 427 22 8.2202453493802244e-02 1.4108888150485283e-01 2.7464093536370412e-02 1.6558258446607729e-01 0 1 0 0 0 0 V -134 0 3.5963583260558782e-05 -1.4717031064448262e-04 1.5334923368999059e-04 2.1869173887141316e-04 0 2 0 P 428 22 8.9836154145316566e-02 -3.5025185820964100e-01 2.7094182162573294e-01 4.5183666238675013e-01 0 1 0 0 0 0 P 429 22 4.1912122405037763e-02 -1.8888893447258367e-01 2.9083471500572500e-01 3.4931430978868327e-01 0 1 0 0 0 0 V -135 0 2.8111855345969097e-05 -4.2057597903975164e-05 5.4779953018951433e-06 5.2507268982013513e-05 0 2 0 P 430 22 1.8696270233989576e-01 -3.7751927241236238e-01 3.2496257138889983e-02 4.2253030641249018e-01 0 1 0 0 0 0 P 431 22 1.0589086186647903e-01 -6.0613227081441096e-02 2.4570429820133473e-02 1.2446101375771529e-01 0 1 0 0 0 0 V -136 0 5.3332566351469517e-05 -1.9346901984995103e-06 -6.4022877239961566e-06 5.4678311840561309e-05 0 2 0 P 432 22 3.1712394743712907e-01 -2.4395900834209949e-02 2.7970767371019188e-02 3.1928846180678572e-01 0 1 0 0 0 0 P 433 22 4.0052759965609253e-01 -1.6376000655833147e-03 -1.1412097547806227e-01 4.1647165193361046e-01 0 1 0 0 0 0 V -137 0 -4.4840588482877768e-05 -9.2719202388485817e-05 -3.5297935374477084e-04 3.6810719639004453e-04 0 2 0 P 434 22 -1.0679444827067013e-01 -1.1379500083858332e-01 -4.4542828766019754e-01 4.7197533393725755e-01 0 1 0 0 0 0 P 435 22 -2.4209669756380400e-01 -6.0762525381596133e-01 -2.3009980049151157e+00 2.3921561568320655e+00 0 1 0 0 0 0 V -138 0 -1.6999993842144778e-05 6.9612997330942192e-06 -1.6126262092773568e-04 1.6312706259152151e-04 0 3 0 P 436 22 -1.3984484933061764e-01 6.9615312804744076e-03 -7.5870742985480077e-01 7.7151928616136989e-01 0 1 0 0 0 0 P 437 -11 -9.4419485544340739e-04 5.2359424991029038e-02 -5.4569825905007263e-01 5.4820548238739497e-01 5.1000000000000004e-04 1 0 0 0 0 P 438 11 4.4912719158437972e-04 -1.8533927072063006e-03 -2.6864371864448507e-02 2.6936802992053799e-02 5.1000000000000004e-04 1 0 0 0 0 V -139 0 -1.6216384853791048e-04 -5.2937053819577433e-04 -2.2707627926669169e-03 2.3375280024433044e-03 0 2 0 P 439 22 -1.4884008588469136e-01 -6.8784902128897063e-01 -2.7930685499929924e+00 2.8803683049593345e+00 0 1 0 0 0 0 P 440 22 -4.9853851339025274e-01 -1.4254651396936295e+00 -6.2721038004196465e+00 6.4513392095791779e+00 0 1 0 0 0 0 V -140 0 0 0 0 0 0 1 0 P 441 310 1.9395235485985574e-01 -7.9403014016405038e-01 -2.4930630782549983e+01 2.4948990521144808e+01 4.9767000000000000e-01 2 0 0 -160 0 V -141 0 3.4820738586459852e+00 -8.4305940627366367e-03 -1.5344887613146807e+02 1.5381164831226886e+02 0 2 0 P 442 211 -6.5575104085941402e-02 -1.3703490173442359e-01 -2.3064440632933976e+00 2.3156516708198156e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 2.3944160649136184e-01 1.3661394630315141e-01 -5.3555471735597466e+00 5.3644534639017492e+00 1.3957000000000000e-01 1 0 0 0 0 V -142 0 -2.1603056899024845e-06 1.3838573408041450e-06 -4.3907124810284342e-04 4.3908012091820026e-04 0 2 0 P 444 22 -2.4438243795520567e-01 9.4209366658978347e-02 -3.8682613423035463e+01 3.8683500092633167e+01 0 1 0 0 0 0 P 445 22 -2.0740329561524315e-02 7.5624046157195299e-02 -1.5202253416946441e+01 1.5202455660540082e+01 0 1 0 0 0 0 V -143 0 0 0 0 0 0 1 0 P 446 310 3.7444042610216471e-01 -3.6443120459592554e-01 -1.4116488792587612e+01 1.4134919419499159e+01 4.9767000000000000e-01 2 0 0 -161 0 V -144 0 -2.7516806889642869e-05 -3.1416455997313767e-05 -2.1014828527600241e-02 2.1014880879852448e-02 0 2 0 P 447 22 -1.9688959326485794e-01 -1.7585551658645990e-01 -1.1961973665309695e+02 1.1962002795364545e+02 0 1 0 0 0 0 P 448 22 2.2989991240395361e-02 -2.2688929971699943e-02 -1.3188925784314005e+01 1.3188965337409273e+01 0 1 0 0 0 0 V -145 0 -1.5440828130819739e-05 8.6152410847049471e-06 -1.6770461038586332e-02 1.6770474913172712e-02 0 2 0 P 449 22 2.0900525581809149e-02 1.7025126481315950e-02 -3.4808417081350122e+01 3.4808427519727587e+01 0 1 0 0 0 0 P 450 22 -1.8954994852840062e-01 7.7073157961159738e-02 -1.4836366104447032e+02 1.4836380214854688e+02 0 1 0 0 0 0 V -146 0 -4.3560836996424395e-05 -5.5893346400584570e-07 -5.4768596199905410e-04 5.4996374036356634e-04 0 2 0 P 451 22 -1.3328232786006713e-01 6.4151121165139519e-02 -1.4795078898948002e+00 1.4868837014129612e+00 0 1 0 0 0 0 P 452 22 -1.0629372818608060e-01 -6.7225145544187223e-02 -1.5326574350814854e+00 1.5378089576263014e+00 0 1 0 0 0 0 V -147 0 2.3149779887596538e-05 -7.6800709780085465e-06 -7.5090223344362562e-03 7.5090893360551655e-03 0 2 0 P 453 22 1.4409927828892399e-01 -6.6233732461754777e-02 -2.8697938835724937e+01 2.8698377043455427e+01 0 1 0 0 0 0 P 454 22 9.9695445627672793e-03 1.5120525306243337e-02 -2.1276887596793912e+01 2.1276895305206242e+01 0 1 0 0 0 0 V -148 0 3.4380758726178840e-08 2.7284201800157128e-06 -5.1202203208298069e-04 5.1223625193614708e-04 0 2 0 P 455 22 4.5406260116740106e-03 -1.0701231018118247e-02 -3.5665559711475628e-02 3.7512208404916182e-02 0 1 0 0 0 0 P 456 22 -4.2218786082687688e-03 3.5996683474676903e-02 -4.7113411748564387e+00 4.7114805795394954e+00 0 1 0 0 0 0 V -149 0 -4.0749692579370090e-04 3.7699703862387841e-05 -1.2349569699547062e-02 1.2357305611983041e-02 0 2 0 P 457 22 -9.7954314006873100e-02 -1.4188208644840431e-03 -4.9447228747453815e+00 4.9456932141728558e+00 0 1 0 0 0 0 P 458 22 -2.5967271953165694e-01 3.4504796252706804e-02 -5.8934938026541577e+00 5.8993126467543977e+00 0 1 0 0 0 0 V -150 0 -3.2865500415212643e-05 1.8786614881343415e-05 -9.6438433985562551e-04 9.6608403788621595e-04 0 2 0 P 459 22 -8.2604133896731588e-02 -7.5263612597238410e-03 -8.0825023246923433e-01 8.1249524757823210e-01 0 1 0 0 0 0 P 460 22 -2.0587097242501240e-02 6.6512650652935754e-02 -2.2197276185856296e+00 2.2208193222280790e+00 0 1 0 0 0 0 V -151 0 -2.9928477430258873e-05 -8.0470177864443341e-06 -1.0540160876890494e-04 1.1225382526819539e-04 0 2 0 P 461 22 -1.3427353296739927e-01 -8.6975696020030954e-02 -5.2536346218070640e-01 5.4918204700100559e-01 0 1 0 0 0 0 P 462 22 -4.1044116620986504e-02 3.9837172257743032e-02 -9.2067289358837151e-02 1.0838821694526617e-01 0 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 463 130 -3.2307511938569689e-01 3.1123186946370368e-01 -2.0414387335647968e+00 2.1485786792981529e+00 4.9767000000000000e-01 1 0 0 0 0 V -153 0 1.8349328134666386e-06 1.9853045477672522e-05 -6.3154586661918132e-04 6.3199379216075807e-04 0 2 0 P 464 22 4.3395146373352594e-02 2.1262321506407794e-01 -5.3487454803644923e+00 5.3531458026129384e+00 0 1 0 0 0 0 P 465 22 -2.4312459401697906e-02 -6.1581883862292363e-03 -1.2191201071323097e+00 1.2193780605622904e+00 0 1 0 0 0 0 V -154 0 -7.1631055576260715e-06 -3.1078931656639758e-05 -3.7210347940545271e-04 3.7384641651751660e-04 0 2 0 P 466 22 1.6367085518923026e-02 -8.1961153103005599e-02 -4.7262678112162920e-01 4.7995998410258173e-01 0 1 0 0 0 0 P 467 22 -7.3848632587782223e-02 -1.6743696877292685e-01 -2.5133802648249857e+00 2.5200335542723766e+00 0 1 0 0 0 0 V -155 0 1.0284577671967588e-04 -5.3083594990215083e-06 -2.9949472653030135e-03 2.9968275489191004e-03 0 2 0 P 468 22 7.1174187720481355e-02 -4.1568721218642059e-02 -1.6460629994972225e+00 1.6481253356147456e+00 0 1 0 0 0 0 P 469 22 4.6885807240026794e-01 1.3695088783508775e-02 -1.4080087283099825e+01 1.4087898116724906e+01 0 1 0 0 0 0 V -156 0 6.7684051360003476e-06 2.6328313481189067e-06 -9.1986410586286961e-03 9.1986504448586196e-03 0 2 0 P 470 22 1.0856755697343806e-01 5.3981322687261427e-02 -1.0049407900739860e+02 1.0049415215047539e+02 0 1 0 0 0 0 P 471 22 -2.5146211616815892e-02 -2.1531383780832889e-02 -1.2880194125566772e+01 1.2880236668816725e+01 0 1 0 0 0 0 V -157 0 2.2493195609730899e-07 2.4732090187377960e-06 -3.8050747047787136e-03 3.8050781092379576e-03 0 2 0 P 472 22 5.2615154257526810e-02 2.5717808563875035e-02 -2.1630860489912386e+01 2.1630939769094351e+01 0 1 0 0 0 0 P 473 22 -4.5781784313227644e-02 4.9417590015511978e-02 -9.3966245295266731e+01 9.3966269442604855e+01 0 1 0 0 0 0 V -158 0 4.5158184918349158e-05 2.0838613923499638e-04 -4.8308070798834768e-04 5.2965457028918313e-04 0 2 0 P 474 22 1.5983261856455003e-02 2.1196275346655019e-01 -6.2207718893885511e-01 6.5739158993309421e-01 0 1 0 0 0 0 P 475 22 1.3172511229373804e-01 4.6964962483189759e-01 -9.5803649564126292e-01 1.0750610225908721e+00 0 1 0 0 0 0 V -159 0 5.8590095971870479e-05 1.1026191440114368e-04 3.9459582912135081e-04 4.2825398931272036e-04 0 2 0 P 476 22 9.1800637000262184e-02 1.5065795804915874e-01 4.4704722875073288e-01 4.8060004370672510e-01 0 1 0 0 0 0 P 477 22 -1.9920474575106217e-02 -1.5385192490488073e-02 3.7055277296523921e-02 4.4795346084042079e-02 0 1 0 0 0 0 V -160 0 1.8756990537603816e+01 -7.6790074739700955e+01 -2.4110230887512321e+03 2.4127986456571784e+03 0 2 0 P 478 -211 2.7929005213242863e-01 -3.3461191549952207e-01 -1.0140899635607317e+01 1.0151221269954419e+01 1.3957000000000000e-01 1 0 0 0 0 P 479 211 -8.5337697272572899e-02 -4.5941822466452825e-01 -1.4789731146942666e+01 1.4797769251190386e+01 1.3957000000000000e-01 1 0 0 0 0 V -161 0 6.3938068822525080e+00 -6.2228931002691477e+00 -2.4104796625421122e+02 2.4136268085492350e+02 0 2 0 P 480 111 -7.0135487389883039e-02 -5.6446146292553470e-02 -2.7724752475817200e+00 2.7772187081459783e+00 1.3497999999999999e-01 2 0 0 -162 0 P 481 111 4.4457591349204778e-01 -3.0798505830337203e-01 -1.1344013545005891e+01 1.1357700711353180e+01 1.3497999999999999e-01 2 0 0 -163 0 V -162 0 6.3938056266265590e+00 -6.2228941108167124e+00 -2.4104801588945284e+02 2.4136273057508666e+02 0 2 0 P 482 22 -5.4396664155362852e-02 -9.4225090435807443e-02 -2.4072747184049157e+00 2.4097321292231499e+00 0 1 0 0 0 0 P 483 22 -1.5738823234520190e-02 3.7778944143253973e-02 -3.6520052917680440e-01 3.6748657892282893e-01 0 1 0 0 0 0 V -163 0 6.3941271532219295e+00 -6.2231149716530814e+00 -2.4105613844281822e+02 2.4137086290371838e+02 0 2 0 P 484 22 4.3375191245197908e-01 -3.1176555318585036e-01 -1.1281842136987526e+01 1.1294480974600660e+01 0 1 0 0 0 0 P 485 22 1.0824001040068745e-02 3.7804948824783379e-03 -6.2171408018365806e-02 6.3219736752520350e-02 0 1 0 0 0 0 E 49 24 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 276 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -2.4807719472200243e-01 2.0610293792652296e-01 7.1625882128194246e+02 7.1625889389585450e+02 0 3 0 0 -3 0 P 68 2101 2.4807719472200243e-01 -2.0610293792652296e-01 3.2302406591805334e+03 3.2302407272318037e+03 5.7933000000000001e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 8.6514922086225010e-01 4.2449064178530377e-01 -3.8830960508846620e+03 3.8830961704639167e+03 0 3 0 0 -4 0 P 32 2103 -8.6514922086225010e-01 -4.2449064178530377e-01 -1.6004956983298612e+03 1.6004961743152771e+03 7.7132999999999996e-01 2 0 0 -9 0 V -3 0 0 0 0 0 0 1 0 P 5 2 -1.8306915496945994e-01 1.5209415249056699e-01 5.2856489811463769e+02 5.2856495170024652e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 26 0 P 6 -1 -4.0877908359458573e+01 -1.6038383876462099e+01 1.4884848325017404e+02 1.5519054131966402e+02 0 3 0 0 -5 0 P 11 1 1.9761856736330692e+01 1.1082805958742080e+01 7.9780819326383758e+00 2.4023285805865079e+01 3.3000000000000002e-01 2 0 0 -9 0 P 12 21 3.8192513304291360e+00 1.4848855355784504e-01 1.0752010288984339e-01 3.8236488003016005e+00 0 2 0 0 -9 0 P 13 21 3.2356264818050962e+00 -1.0443979985164282e+00 -6.8274914794386588e-01 3.4678800884808028e+00 0 2 0 0 -9 0 P 14 21 1.0704848294254117e+00 1.2283982276478542e+00 -4.4491647699442721e-01 1.6890383794394592e+00 0 2 0 0 -9 0 P 15 21 3.3662889264613125e+00 -3.1070898179524303e-01 9.7455145856122838e-01 3.5182654466609127e+00 0 2 0 0 -9 0 P 16 21 6.5091967794417493e-01 -1.5713712828332527e+00 1.4457542002648465e+00 2.2322879167417935e+00 0 2 0 0 -9 0 P 17 21 1.6496548625122887e+00 9.5809168897090943e-02 1.4164216859811589e+00 2.1764169992841209e+00 0 2 0 0 -9 0 P 18 21 -1.7221064850277321e-01 -1.2211818219563972e-01 -8.1308199430662559e-02 2.2623081393826430e-01 0 2 0 0 -9 0 P 19 21 -5.2202502775877024e-01 3.8108365218767026e-01 6.2690282152096721e-01 9.0041214296686811e-01 0 2 0 0 -9 0 P 20 21 1.2014406082954296e+00 -9.7498966388530939e-01 2.4014771092590484e-01 1.5658018083421135e+00 0 2 0 0 -9 0 P 21 21 6.7760047374150894e+00 2.4574605571999539e+00 4.3458332716708813e-02 7.2079984196965361e+00 0 2 0 0 -9 0 P 22 21 7.0932156528877066e-01 1.8753142465866364e+00 1.3313815552150983e+00 2.4067649349285212e+00 0 2 0 0 -9 0 P 23 21 1.0597835156636850e+00 -1.6025940433574031e+00 -4.0252621473328558e+00 4.4602896904380351e+00 0 2 0 0 -9 0 P 24 21 -3.8566274492920494e-01 7.5169707148095932e-01 -1.3607637718996617e+01 1.3633839830787174e+01 0 2 0 0 -9 0 P 25 21 4.1355984715739758e-02 2.5005920656214853e+00 -1.1195769805179582e+01 1.1471701378901553e+01 0 2 0 0 -9 0 P 26 21 1.6397224598210529e+00 2.8087449339613335e+00 -7.7641133008080869e+00 8.4177902799416486e+00 0 2 0 0 -9 0 P 27 21 -6.4685687321799945e-01 -1.4839217826224207e+00 -1.9096761991151661e+00 2.5034597773556535e+00 0 2 0 0 -9 0 P 28 21 -2.0853406246709776e+00 -4.9126711064748163e-01 -4.5417977368064194e-01 2.1900383927519780e+00 0 2 0 0 -9 0 P 29 21 1.7257022669093344e-01 4.6612764704037907e-01 -1.1131082603339022e+00 1.2190428481801312e+00 0 2 0 0 -9 0 P 30 21 9.9337329094548432e-01 2.5849954240773571e-01 2.0156739502406806e-01 1.0460601910624738e+00 0 2 0 0 -9 0 P 31 21 5.8038198994080981e-01 5.5843300335463875e-01 -6.2634713692219810e+00 6.3150426971277724e+00 0 2 0 0 -9 0 P 33 2 3.5679881442621503e-01 5.9177867854926725e-01 -1.7188439943641852e+03 1.7188441649460910e+03 3.3000000000000002e-01 2 0 0 -11 0 P 34 21 -8.9060498632589047e-01 1.6666853377185517e-01 -2.0514628915375492e+03 2.0514630916278375e+03 0 2 0 0 -11 0 P 35 21 -6.0356295181491237e-01 -6.6579112285568465e-01 -1.8623807138181679e+01 1.8645475547066741e+01 0 2 0 0 -11 0 P 36 21 -1.0052263645046820e-01 -5.8785837410031616e-01 -2.2143485440940964e+01 2.2151515292223312e+01 0 2 0 0 -11 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -6.8605612898117585e-01 -1.3573064168536813e+00 4.2118592094696965e+01 4.2146040783931440e+01 0 3 0 0 -6 0 P 8 24 -4.0374921385446797e+01 -1.4528983307117825e+01 6.3529478927011382e+02 6.4160945223597810e+02 7.8879618989789734e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -6.8605612898117585e-01 -1.3573064168536813e+00 4.2118592094696965e+01 4.2146040783931468e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -4.0374921385446797e+01 -1.4528983307117825e+01 6.3529478927011382e+02 6.4160945223597810e+02 7.8879618989789734e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 4 0 P 69 4 -2.6848329635205040e+01 2.8687290772217835e+01 1.9092451726731139e+02 1.9493130777226702e+02 1.5000000000000000e+00 2 0 0 -13 0 P 70 21 -3.3432063154303706e+00 -9.9267137295354448e+00 9.5557786511626588e+01 9.6130157791076599e+01 0 2 0 0 -13 0 P 71 21 -2.3551495345140339e+00 -9.5422678550521276e+00 9.7296380738779092e+01 9.7791550299670291e+01 0 2 0 0 -13 0 P 72 -3 -7.8282359002973916e+00 -2.3747292494748098e+01 2.5151610475239724e+02 2.5275643637296497e+02 5.0000000000000000e-01 2 0 0 -13 0 V -9 0 0 0 0 0 0 1 0 P 88 92 4.2050792083743119e+01 1.6587594941047183e+01 -1.6336721035331607e+03 1.7049914709584698e+03 4.8586825041143203e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 42 0 P 89 311 1.4406467000847822e+01 8.3300720767986451e+00 6.1897234710084623e+00 1.7762228022622427e+01 4.9767000000000000e-01 2 0 0 -23 0 P 90 -323 7.8736706579425420e+00 2.8773532784201539e+00 1.6835411856162530e+00 8.5940226590299940e+00 8.6548427003259343e-01 2 0 0 -24 0 P 91 113 1.6643522657487553e+00 -7.5686829399536382e-01 -3.6697819302625473e-01 1.9900537572217216e+00 6.9478261601525937e-01 2 0 0 -25 0 P 92 113 7.2080763020755134e-01 3.4367283723050690e-01 7.4500901400295083e-02 9.3082126964895562e-01 4.7244385159077540e-01 2 0 0 -26 0 P 93 221 1.9474864859503240e+00 1.5450743502843994e-01 8.9042595625026991e-02 2.0308141832215663e+00 5.4744999999999999e-01 2 0 0 -27 0 P 94 113 3.0138965071317236e+00 -2.5418258270401339e-01 9.2531302173582755e-03 3.1368882790564392e+00 8.3174606329815592e-01 2 0 0 -28 0 P 95 223 6.8425675595867530e-01 -3.8219854587486385e-01 3.2929082765095158e-01 1.1501480994545270e+00 7.7467745866254789e-01 2 0 0 -29 0 P 96 211 -2.2012261798377267e-01 1.8592882869495891e-01 6.6331347025836859e-02 3.2696043917601347e-01 1.3957000000000000e-01 1 0 0 0 0 P 97 111 2.8793744083855172e-01 -2.0151176577053783e-02 1.8575985229060613e-01 3.6883649884077629e-01 1.3497999999999999e-01 2 0 0 -30 0 P 98 -211 1.4756338181954179e-01 1.2912606341281488e-01 1.6496253509659772e-01 2.9178916153963935e-01 1.3957000000000000e-01 1 0 0 0 0 P 99 213 1.6855299708297549e+00 -1.3717934626942738e-01 1.1667832084980734e+00 2.1701494259914549e+00 6.9881043201265636e-01 2 0 0 -31 0 P 100 313 2.4552967766060588e-01 -8.5472897616476895e-01 8.9950913810165989e-01 1.5593515325273921e+00 9.1192876210772111e-01 2 0 0 -32 0 P 101 -313 9.3502822041985456e-01 6.5729736227484375e-02 7.4995468491040096e-01 1.5589971678905448e+00 9.9470697638330952e-01 2 0 0 -33 0 P 102 -211 -1.4402781552529076e-01 -1.5272214401966105e-01 -3.4325256159482653e-01 4.2587576928061910e-01 1.3957000000000000e-01 1 0 0 0 0 P 103 213 8.0875071476523575e-01 7.7155428798253198e-02 2.4143861821095769e-01 1.1585580507936941e+00 7.8989459541697282e-01 2 0 0 -34 0 P 104 -211 3.9059985304300935e+00 1.2105255492115203e+00 5.8740496374516206e-02 4.0920809933126012e+00 1.3957000000000000e-01 1 0 0 0 0 P 105 211 1.6353951729165075e-01 1.2621688374216927e-01 7.3185261780873290e-01 7.7315193497208112e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 223 9.1652564116217750e-01 2.4481235784746025e-01 2.9376031406672265e-01 1.2636932441530471e+00 7.8145579000664167e-01 2 0 0 -35 0 P 107 111 7.1721191819900088e-01 3.0487460818644219e-01 1.7922647597921747e-02 7.9112722366282084e-01 1.3497999999999999e-01 2 0 0 -36 0 P 108 -213 -1.1144422271461197e-02 -4.9201866397656718e-01 -5.9525178297651393e-01 9.1616442446709589e-01 4.9277378549731643e-01 2 0 0 -37 0 P 109 2214 2.0494088567454734e+00 1.0774530879833000e+00 -2.1727229926905803e-01 2.6223940406257995e+00 1.2119246813925770e+00 2 0 0 -38 0 P 110 223 2.0490068514708409e-01 4.8696248471534609e-01 -1.2740288850770082e-01 9.5012315742398545e-01 7.7934957880230327e-01 2 0 0 -39 0 P 111 -2214 4.2616210535783100e-01 -1.5320224103291041e-01 -2.4291913946785781e+00 2.7531942894585355e+00 1.2140934464966477e+00 2 0 0 -40 0 P 112 221 5.4934046674406517e-02 -5.0635463191817309e-01 -5.8835455164383976e+00 5.9308702657579175e+00 5.4744999999999999e-01 2 0 0 -41 0 P 113 113 -1.1270835938712730e-01 1.0782642334331851e+00 -4.3416576311374451e+00 4.5486769825902176e+00 8.1554544603905366e-01 2 0 0 -42 0 P 114 213 -1.5898999450317409e-02 5.9946951169302776e-01 -4.4524713507440312e+00 4.5419217539685839e+00 6.6703494387001805e-01 2 0 0 -43 0 P 115 -213 -2.8316654558806047e-02 8.2536143612343427e-01 -3.8172358978065204e+00 3.9927080326904356e+00 8.2970127253297232e-01 2 0 0 -44 0 P 116 2224 1.0236895929200902e+00 1.0629194969106353e+00 -7.6531261195356697e+00 7.9000547938597112e+00 1.2894914132715432e+00 2 0 0 -45 0 P 117 221 -2.1315142044942992e-01 1.8696873023773988e-01 -3.5099165534043113e+00 3.5636507332352201e+00 5.4744999999999999e-01 2 0 0 -46 0 P 118 -2224 -4.0078755322027627e-02 5.5300724692062386e-01 -1.4793021803460222e+00 1.9261612103749877e+00 1.1019703924343209e+00 2 0 0 -47 0 P 119 323 -1.6369617212589536e-02 8.8728080252063313e-01 -2.3233176261202120e+00 2.6307401340988501e+00 8.5758595745746247e-01 2 0 0 -48 0 P 120 -321 -1.4554664476860216e-01 -6.7072929667453174e-01 -8.2959551609744053e-01 1.1844540073594620e+00 4.9359999999999998e-01 1 0 0 0 0 P 121 223 -1.0257521322286660e+00 1.5635060963309952e-01 -5.4090015252443735e-01 1.4066682650752218e+00 7.8072381996739049e-01 2 0 0 -49 0 P 122 221 3.7000140337434045e-01 -3.8869436131335555e-01 -2.3480675236690784e-02 7.6696622456621277e-01 5.4744999999999999e-01 2 0 0 -50 0 P 123 2212 -4.5308882922530616e-02 -1.5927498959874350e-01 -9.3315161465454410e-01 1.3336206154734376e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 -2112 -4.4597895426231993e-01 2.4399016592373052e-01 -1.2451241632497485e+00 1.6405957440883445e+00 9.3957000000000002e-01 1 0 0 0 0 P 125 2112 4.3884984842861224e-01 4.0245382192502982e-01 -1.5717784533163905e+00 1.9255746050095139e+00 9.3957000000000002e-01 1 0 0 0 0 P 126 221 3.7481275558190491e-01 -1.2944054066010371e-01 -1.7807702152301346e+00 1.9047528756413681e+00 5.4744999999999999e-01 2 0 0 -51 0 P 127 -2212 2.6768516919188695e-01 4.1401691351590036e-01 -7.5055830262347101e+01 7.5063313757904680e+01 9.3827000000000005e-01 1 0 0 0 0 P 128 213 1.9714752577136063e-01 -2.8283858776164650e-01 -4.8193839417913793e+01 4.8200908786123037e+01 7.5005676774942664e-01 2 0 0 -52 0 P 129 2112 -1.0992933584732847e+00 1.8604432088295789e-01 -5.4331020703607828e+02 5.4331216341965740e+02 9.3957000000000002e-01 1 0 0 0 0 P 130 223 8.2346412162530885e-02 -2.8233862642912416e-01 -9.3559987160242804e+02 9.3560024512662437e+02 7.8258704840874027e-01 2 0 0 -53 0 V -11 0 0 0 0 0 31 1 0 P 37 21 -1.4647695967394785e+00 -9.0771862233897405e-01 2.4923869638118830e+01 2.4983370085054879e+01 0 2 0 0 -11 0 P 38 21 -2.2062602587460840e+00 -1.7839315989447688e+00 4.1573755996515359e+01 4.1670459367960326e+01 0 2 0 0 -11 0 P 39 21 -2.0792321592296137e+00 -3.9158039759116265e+00 4.9363591391462371e+01 4.9562292947491827e+01 0 2 0 0 -11 0 P 40 21 -1.9856220357936150e+00 -4.5246623607302370e+00 5.1903371893007574e+01 5.2138040605794600e+01 0 2 0 0 -11 0 P 41 21 -4.0731587873532332e-01 -7.0762568630236811e-01 3.0553793850471904e+00 3.1625912672294807e+00 0 2 0 0 -11 0 P 42 21 -3.0673901671111098e-01 -1.8908113723319239e-01 -1.0088504232150834e+00 1.0712701233823099e+00 0 2 0 0 -11 0 P 43 21 1.7021114422878930e-01 -6.6196686417722415e+00 -1.7667637302378239e+01 1.8867813667960299e+01 0 2 0 0 -11 0 P 44 21 2.7240681264752031e+00 -2.7170807262671470e+00 -2.5316658253558540e+01 2.5607347772821072e+01 0 2 0 0 -11 0 P 45 21 -3.4784154517184129e-01 -1.2587182057269477e+00 -1.2950275935772100e+02 1.2950934347191236e+02 0 2 0 0 -11 0 P 46 21 -9.8265965255359466e-01 -3.8028249321176593e+00 -3.1116807740302329e+02 3.1119286542617101e+02 0 2 0 0 -11 0 P 47 21 -2.1428673109018517e+00 -2.0771391880474668e+00 -1.9850966383388436e+02 1.9853209569981482e+02 0 2 0 0 -11 0 P 48 21 3.0673901671111098e-01 1.8908113723319239e-01 -8.4013299887091524e+00 8.4090538159779911e+00 0 2 0 0 -11 0 P 49 21 2.1428673109018517e+00 2.0771391880474668e+00 -1.2063657118822776e+02 1.2067347966960678e+02 0 2 0 0 -11 0 P 50 21 -1.7021114422878930e-01 6.6196686417722415e+00 -2.2203487767461388e+02 2.2213359918918442e+02 0 2 0 0 -11 0 P 51 21 -4.6366147934076986e-02 2.8501424620379612e-01 -7.4889931156174914e+00 7.4945580807663061e+00 0 2 0 0 -11 0 P 52 21 2.0792321592296137e+00 3.9158039759116265e+00 -8.9515830812233979e-02 4.4344943605450613e+00 0 2 0 0 -11 0 P 53 21 3.4784154517184129e-01 1.2587182057269477e+00 1.4670028712928895e-01 1.3141104353211022e+00 0 2 0 0 -11 0 P 54 21 1.9856220357936150e+00 4.5246623607302370e+00 1.4115592138654254e+00 5.1388484859826793e+00 0 2 0 0 -11 0 P 55 21 2.2062602587460840e+00 1.7839315989447688e+00 5.2752322281855930e+00 5.9898306604046754e+00 0 2 0 0 -11 0 P 56 21 6.1038940948356923e-01 3.9686078279445667e+00 7.8351494113355251e+00 8.8040893692183761e+00 0 2 0 0 -11 0 P 57 21 6.4260670585429691e-01 2.2931521977779012e+00 1.3010263258636789e+01 1.3226429617989009e+01 0 2 0 0 -11 0 P 58 21 9.8265965255359466e-01 3.8028249321176593e+00 2.8365333063084719e+01 2.8635977672096679e+01 0 2 0 0 -11 0 P 59 21 -6.3845405940044009e-01 1.4179291113717010e+00 2.4222403575470725e+01 2.4272267745800292e+01 0 2 0 0 -11 0 P 60 21 1.4647695967394785e+00 9.0771862233897405e-01 3.9226722861927861e+01 3.9264555129981638e+01 0 2 0 0 -11 0 P 61 21 5.1520972547520776e+00 -1.1427239115428649e+00 1.3557476627541578e+02 1.3567743797217742e+02 0 2 0 0 -11 0 P 62 21 1.0739033925495707e+00 -1.9868517071304806e-01 5.7306560121419984e+01 5.7316965876113102e+01 0 2 0 0 -11 0 P 63 21 -6.1038940948356923e-01 -3.9686078279445667e+00 1.0577276054660199e+02 1.0584894565829191e+02 0 2 0 0 -11 0 P 64 21 -6.4260670585429691e-01 -2.2931521977779012e+00 1.3792922086595226e+02 1.3794977875686942e+02 0 2 0 0 -11 0 P 65 21 -1.1437912178703431e+00 -2.1581903347851777e-01 1.1161686261160604e+02 1.1162293158425570e+02 0 2 0 0 -11 0 P 66 21 -5.1520972547520776e+00 1.1427239115428649e+00 4.5232674028370747e+02 4.5235752442039137e+02 0 2 0 0 -11 0 P 67 21 4.0731587873532332e-01 7.0762568630236811e-01 4.0104579491478353e+02 4.0104662604137138e+02 0 2 0 0 -11 0 P 131 92 9.7954552837686126e-01 -2.1299467954446154e+00 6.9227584151189149e+01 9.7892539696229614e+03 9.7890089042348263e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 83 0 P 132 211 1.3686371824210605e-01 -8.6248662296113346e-02 -1.7394794690532390e+03 1.7394794821750650e+03 1.3957000000000000e-01 1 0 0 0 0 P 133 -211 -2.1562145916774489e-01 1.0069350466612450e+00 -1.2116932629346920e+03 1.2116937085468041e+03 1.3957000000000000e-01 1 0 0 0 0 P 134 213 -7.5183547979202414e-01 -4.3346684956461551e-01 -4.8015866712833088e+02 4.8016007471710225e+02 7.7368196283842117e-01 2 0 0 -54 0 P 135 -211 2.6776232955763690e-01 2.2732620697266442e-01 -1.0645158787546767e+02 1.0645225885279666e+02 1.3957000000000000e-01 1 0 0 0 0 P 136 331 -6.9091441338839921e-01 -6.5304277665070265e-01 -7.3022833879046360e+01 7.3035301181233919e+01 9.5766555330353131e-01 2 0 0 -55 0 P 137 323 1.7986616640338579e-01 -1.4709673345369950e-01 -1.0895217147142870e+02 1.0895585772854223e+02 8.6560714872442346e-01 2 0 0 -56 0 P 138 331 2.5655160727515675e-01 5.5557025827572237e-01 -4.9386214418996175e+01 4.9399288869631441e+01 9.5764771557737416e-01 2 0 0 -57 0 P 139 -321 2.1524988582004609e-01 -5.9638556393097708e-01 -1.2760272827052562e+01 1.2785546990059784e+01 4.9359999999999998e-01 1 0 0 0 0 P 140 221 -3.6192239635071721e-01 3.4666375818743711e-01 -1.0851620292284929e+01 1.0876972375282147e+01 5.4744999999999999e-01 2 0 0 -58 0 P 141 323 -3.9338858489608837e-02 -7.9198579957561122e-01 -1.6122373475164277e+01 1.6167107572617418e+01 9.0313439718912969e-01 2 0 0 -59 0 P 142 -321 -3.8191925970791263e-01 5.8964150295819706e-01 -1.1423705265922797e+00 1.4290524143548284e+00 4.9359999999999998e-01 1 0 0 0 0 P 143 2114 7.0753848479992762e-02 -8.9656813458598039e-01 1.1331837475280659e+00 1.9553998277357107e+00 1.3155388833544148e+00 2 0 0 -60 0 P 144 213 -1.4282996515157151e-01 2.4346335023516141e-01 3.2125761698580707e-01 8.4821077825561342e-01 7.3251639300746429e-01 2 0 0 -61 0 P 145 -2112 -1.0842372473728708e-02 -4.0206696573735501e-01 1.9976092051187362e+00 2.2438827338462257e+00 9.3957000000000002e-01 1 0 0 0 0 P 146 111 -3.8023510925749759e-01 2.9215793808628426e-01 1.8389278894851817e+00 1.9052061259153337e+00 1.3497999999999999e-01 2 0 0 -62 0 P 147 111 -1.6512060390488958e-01 -1.1119345577012557e-01 7.7020691408648041e+00 7.7058236061761693e+00 1.3497999999999999e-01 2 0 0 -63 0 P 148 -213 -4.3254219937901928e-01 -5.5620696137907422e-01 7.9329519751205702e+00 8.0073158023825446e+00 8.3001227785238207e-01 2 0 0 -64 0 P 149 2212 -1.5211390162781155e+00 -2.4161579186840343e+00 3.7377347868519223e+01 3.7497975508979962e+01 9.3827000000000005e-01 1 0 0 0 0 P 150 -2212 -1.2147322747150555e+00 -2.5114897577154700e+00 2.5074162709874429e+01 2.5246329267766857e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 113 -3.9884265221955323e-01 3.5725471941025472e-01 6.1321000577402496e-01 1.0752382746438611e+00 7.0242753384765633e-01 2 0 0 -65 0 P 152 211 -3.2352594904238234e+00 -5.5139138401534860e+00 7.6396617967618567e+01 7.6663765016350283e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 111 -8.4658793922334885e-02 -2.0795555727072829e-01 3.6095556398133866e-01 4.4600576762778504e-01 1.3497999999999999e-01 2 0 0 -66 0 P 154 223 -4.1887750188106143e-01 -1.0149389470760867e-01 4.3314331296823587e+00 4.4232157325165273e+00 7.8598033513998733e-01 2 0 0 -67 0 P 155 331 -1.6865434454961448e-01 -2.7281211369976383e-01 1.0459280466411032e+00 1.4540578115676435e+00 9.5783500839842872e-01 2 0 0 -68 0 P 156 -213 7.8364139247161735e-02 8.9027891096419356e-03 1.3438575225623732e+00 1.3983468742580103e+00 3.7841873873500081e-01 2 0 0 -69 0 P 157 223 -1.9106899933255231e-01 -6.3089642827858705e-01 1.2057375315167322e+00 1.5945541813487767e+00 8.0886486920139100e-01 2 0 0 -70 0 P 158 113 2.5278539472048789e-01 -2.8000178681742494e-01 -5.7415747894763391e-02 6.5493810227028582e-01 5.3230244532046322e-01 2 0 0 -71 0 P 159 211 -7.3941586367376314e-02 2.8611118396527085e-01 -6.0989858159269617e-01 6.9194149500757351e-01 1.3957000000000000e-01 1 0 0 0 0 P 160 111 -2.1625139316210329e-01 -1.7676324123730198e+00 -5.4692932057873982e+00 5.7534925724805106e+00 1.3497999999999999e-01 2 0 0 -72 0 P 161 311 8.7354718044610286e-02 -1.3350634507160093e+00 -2.4901063434856567e+00 2.8702491694920669e+00 4.9767000000000000e-01 2 0 0 -73 0 P 162 -323 5.3934399741872241e-01 -8.3903474077925833e-01 -3.6951896825342181e+00 3.9278991627013986e+00 8.8266290205088349e-01 2 0 0 -74 0 P 163 113 -7.9146119414647220e-02 -2.0297026296963794e+00 -5.7376587892272495e+00 6.1400955352125139e+00 8.0875702576555986e-01 2 0 0 -75 0 P 164 211 5.0181929427291105e-01 -5.5333401368476776e-01 -7.8835749998077889e+00 7.9201158891331538e+00 1.3957000000000000e-01 1 0 0 0 0 P 165 221 2.9128519745887965e-01 -1.2804225742282984e+00 -5.1449488271345380e+00 5.3380266926257622e+00 5.4744999999999999e-01 2 0 0 -76 0 P 166 223 4.5078162427424817e-01 -7.2508502826369459e-01 -1.1958911240638507e+01 1.2014758434893583e+01 7.8096723131058854e-01 2 0 0 -77 0 P 167 -211 8.9733655638161269e-02 1.1606443693534245e-01 -4.7943859177915291e+00 4.7986601459254272e+00 1.3957000000000000e-01 1 0 0 0 0 P 168 321 -2.4132662217031287e-01 -1.7752691531142722e-01 -2.6075920334810338e+01 2.6082312332529177e+01 4.9359999999999998e-01 1 0 0 0 0 P 169 -321 4.8486762017419094e-01 -6.4780813812558846e-01 -2.3765172240647761e+01 2.3784066191056784e+01 4.9359999999999998e-01 1 0 0 0 0 P 170 213 4.2474113812335618e-01 -6.8856472851880934e-01 -1.2839726247771909e+01 1.2891020898863909e+01 8.1567351155263723e-01 2 0 0 -78 0 P 171 223 2.6676253080769524e-01 3.2349395522290253e-01 -2.7097499578374457e+01 2.7111996539984457e+01 7.8106491229367470e-01 2 0 0 -79 0 P 172 -211 -6.9606284709659016e-01 -1.3111361625385507e+00 -8.5887978545833590e+01 8.5900919203453782e+01 1.3957000000000000e-01 1 0 0 0 0 P 173 213 -5.0356880131522885e-01 -1.6331447511740242e+00 -1.1804271544024520e+02 1.1805785799103575e+02 8.0896329268663503e-01 2 0 0 -80 0 P 174 -211 2.6488527007687682e-02 -9.0000398545977511e-01 -6.7439892960496920e+01 6.7446047705733577e+01 1.3957000000000000e-01 1 0 0 0 0 P 175 223 -6.2617714548021963e-01 -1.0987410762029672e+00 -1.2859441093045422e+02 1.2860295239898284e+02 7.7298991873384815e-01 2 0 0 -81 0 P 176 331 -1.4108851024686089e+00 -1.6543937052988573e+00 -1.1024144469332492e+02 1.1026704050939648e+02 9.5732926674590235e-01 2 0 0 -82 0 P 177 213 9.1150349282268406e-01 7.3445366481075836e-01 -6.5131648024059544e+01 6.5147580637632387e+01 8.3989749592112906e-01 2 0 0 -83 0 P 178 313 1.9951945734672255e-01 1.3915860131487507e+00 -7.6375357927604611e+01 7.6391782420370390e+01 7.2993365838466817e-01 2 0 0 -84 0 P 179 333 6.3705819931513930e-01 3.3380178909075657e+00 -1.2439503860561821e+02 1.2444559806897081e+02 1.0163869643270822e+00 2 0 0 -85 0 P 180 -321 1.3777916133344706e-01 1.2818290138422928e-01 -7.1526226010803873e+00 7.1721032470950243e+00 4.9359999999999998e-01 1 0 0 0 0 P 181 113 1.3719381646437362e-01 7.2045053745971122e-01 -3.0552898223713925e+01 3.0572435061390909e+01 8.1013862649585566e-01 2 0 0 -86 0 P 182 111 8.2048971423997183e-02 6.3077754652868645e-01 -4.8498447165116749e+00 4.8932428635407712e+00 1.3497999999999999e-01 2 0 0 -87 0 P 183 213 -4.2483225919773410e-02 9.7611541914893885e-01 -5.5277208271398848e+01 5.5291914669898219e+01 8.1943117326328108e-01 2 0 0 -88 0 P 184 113 -4.4466201130499823e-02 1.5090095205057681e+00 -2.8524128934067477e+01 2.8573186169883822e+01 7.2246070863052514e-01 2 0 0 -89 0 P 185 -213 6.2598407780772847e-01 7.6511834985611016e-01 -5.7386027504625137e-01 1.3861359029355411e+00 7.8408862456704431e-01 2 0 0 -90 0 P 186 331 1.6055839195101143e+00 4.1166780083210268e+00 1.4937744714167132e+00 4.7616892762671155e+00 9.5780219538145117e-01 2 0 0 -91 0 P 187 213 1.1037585042204823e+00 1.5845479563819596e+00 -1.2048431826657580e-01 2.2024435978493102e+00 1.0522196866842839e+00 2 0 0 -92 0 P 188 1114 8.5126555187722208e-01 1.6421179077391250e+00 2.9186914696725347e-01 2.2278770880267746e+00 1.2070809656658974e+00 2 0 0 -93 0 P 189 -1114 1.5284349685826557e+00 2.7274343605507889e+00 3.4139669919836502e+00 4.8027625104850635e+00 1.2791971956924943e+00 2 0 0 -94 0 P 190 -213 3.1514534481820411e-01 2.0898532855220551e+00 3.9913910737970748e+00 4.5867583912949312e+00 8.0021652867182336e-01 2 0 0 -95 0 P 191 323 2.1163564191883162e+00 1.6084959317113212e+00 1.0489703338714861e+01 1.0866012760185114e+01 9.8495355976235732e-01 2 0 0 -96 0 P 192 -311 -4.5284272324607172e-01 1.2840584602051111e+00 5.4846244563259692e+00 5.6729757197656125e+00 4.9767000000000000e-01 2 0 0 -97 0 P 193 -213 2.1272345572254842e-01 2.3888655951842250e+00 1.4847007429528487e+01 1.5058886608761641e+01 7.6453004034975669e-01 2 0 0 -98 0 P 194 221 1.1848161688519299e-01 5.8255012070929979e-01 2.5089908522805011e+00 2.6359323086918196e+00 5.4744999999999999e-01 2 0 0 -99 0 P 195 323 7.3446315012118332e-02 1.1499902598366400e+00 9.5753274035415288e+00 9.6883395031107913e+00 9.2149632859590869e-01 2 0 0 -100 0 P 196 -323 2.4570511341742965e-01 7.3090650705466986e-01 5.7330076245407025e+00 5.8376134867661902e+00 7.8470342997743736e-01 2 0 0 -101 0 P 197 213 4.9626822903474416e-01 1.2250753772081837e+00 2.7642297318492499e+01 2.7684352256068848e+01 7.6135862717619041e-01 2 0 0 -102 0 P 198 223 6.8565075928644315e-01 1.3818873143208976e+00 2.5865850181966390e+01 2.5923877510186781e+01 7.9087926641553563e-01 2 0 0 -103 0 P 199 -213 1.9591927665364770e+00 -2.7498294477078944e-01 4.5935492412248884e+01 4.5983851800086988e+01 7.2877383338394508e-01 2 0 0 -104 0 P 200 211 4.5819298835594942e-02 -2.2002286692631495e-01 2.1117161501201419e+01 2.1118818601494727e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -213 1.6125112765934195e+00 -2.5449884509209209e-01 5.2537361288451244e+01 5.2566838099341460e+01 6.5815980569119503e-01 2 0 0 -105 0 P 202 2214 1.1660423568388152e+00 -4.2970102836526519e-01 5.6848745702770778e+01 5.6877215096052950e+01 1.3013113972658898e+00 2 0 0 -106 0 P 203 213 4.9800590895128749e-01 -1.7543458680369215e+00 4.5831416006516349e+01 4.5879593870665779e+01 1.0453235216051489e+00 2 0 0 -107 0 P 204 -2224 2.2411553916538769e-02 -1.1212212086208690e+00 8.2264961750356875e+01 8.2282264875918955e+01 1.2607704179578070e+00 2 0 0 -108 0 P 205 113 3.4891939933105232e-01 -8.5862508295657558e-01 5.7607208057738191e+01 5.7619415971479285e+01 7.4006412324509085e-01 2 0 0 -109 0 P 206 113 -6.3669528205324388e-01 -1.7806021901865610e+00 5.8574479001817828e+01 5.8609212264024187e+01 7.0302690784908561e-01 2 0 0 -110 0 P 207 221 -7.0877220712696898e-01 2.5367984544254346e-01 7.9799663757811274e+01 7.9805092248977573e+01 5.4744999999999999e-01 2 0 0 -111 0 P 208 213 -2.5430568007925407e+00 -7.8289717159342942e-04 1.9712086150750119e+02 1.9713882087313354e+02 7.8327216532592858e-01 2 0 0 -112 0 P 209 221 -1.1923195383402130e+00 -6.5075394545984377e-01 1.0677520182299504e+02 1.0678524491905642e+02 5.4744999999999999e-01 2 0 0 -113 0 P 210 1114 -1.2521345552528680e+00 1.0867617384711175e+00 4.8136617716783775e+02 4.8137063575529305e+02 1.2423985899064467e+00 2 0 0 -114 0 P 211 213 2.2162412493890923e-01 8.9055887598015762e-02 2.6565587405744452e+02 2.6565701026755562e+02 7.3934759582915965e-01 2 0 0 -115 0 P 212 -2212 -5.2033576443731910e-01 6.0945476562071055e-01 1.0619797548915942e+03 1.0619804717294112e+03 9.3827000000000005e-01 1 0 0 0 0 P 213 223 -8.5116726030806319e-02 -6.4307658730427453e-01 1.4532474116733842e+03 1.4532477657296981e+03 7.7991705613059559e-01 2 0 0 -116 0 P 214 2212 5.3167390758937971e-01 1.0533870440933474e-02 5.7335283342820571e+02 5.7335384775795399e+02 9.3827000000000005e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 215 92 -4.0374921385446839e+01 -1.4528983307117834e+01 6.3529478927011428e+02 6.4160945223597889e+02 7.8879618989790060e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 8 0 P 216 423 -2.1358368957986468e+01 2.3161814792611747e+01 1.5580131997330685e+02 1.5896769401154270e+02 2.0066999999999999e+00 2 0 0 -117 0 P 217 221 -1.1756643738597736e+00 1.5343353551468579e+00 7.3342981536117833e+00 7.6044725399326643e+00 5.4744999999999999e-01 2 0 0 -118 0 P 218 213 -4.5007165144807271e+00 3.8095636998993663e+00 3.3585270723126143e+01 3.4108606584907619e+01 8.1080755486037470e-01 2 0 0 -119 0 P 219 -211 2.3056849201342072e-02 -7.9588250292177656e-02 1.0451777055590148e+00 1.0577060692731561e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 211 -1.7480540365452699e-01 -1.8146748297680448e+00 1.1044355115068297e+01 1.1194680047217775e+01 1.3957000000000000e-01 1 0 0 0 0 P 221 -213 -1.3273977148354237e+00 -3.7348050329902649e+00 3.7650944361992508e+01 3.7864720527778907e+01 6.5779629760760161e-01 2 0 0 -120 0 P 222 211 -7.0509563463722484e+00 -2.1653189308599000e+01 2.2305005103613470e+02 2.2420954783335984e+02 1.3957000000000000e-01 1 0 0 0 0 P 223 313 -4.8100689234590153e+00 -1.5752439733126311e+01 1.6578337220131505e+02 1.6660202462196625e+02 9.1213436745395349e-01 2 0 0 -121 0 V -15 0 0 0 0 0 2 1 0 P 73 2 1.8837794778206827e+00 9.5276187715463390e-01 -3.2631924423189935e+00 3.8864900914868397e+00 0 2 0 0 -15 0 P 74 -2 -1.8837794778206827e+00 -9.5276187715463390e-01 4.3728884355451453e+02 4.3729393899019487e+02 0 2 0 0 -15 0 P 224 92 0 0 4.3402565111219553e+02 4.4118042908168172e+02 7.9132200660233863e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 15 0 P 225 213 4.3848968884923750e-01 -2.9904927090349986e-02 -5.8938823501364823e-01 9.3537578627953399e-01 5.7825760530595083e-01 2 0 0 -122 0 P 226 311 3.0048802993423324e-01 2.7850773712885241e-01 -2.5850303969372213e-01 6.9452060171407781e-01 4.9767000000000000e-01 2 0 0 -123 0 P 227 -321 5.4688397422760915e-01 1.4872417451832340e-01 -4.4619884034149770e-01 8.7403393897218795e-01 4.9359999999999998e-01 1 0 0 0 0 P 228 331 3.0372762570675638e-01 3.6695254142943090e-01 -1.0878462516782657e+00 1.5256648575970062e+00 9.5777823745220836e-01 2 0 0 -124 0 P 229 113 5.9567258284325930e-01 2.0156254338578980e-01 1.8635269548198983e+00 2.1655174176174792e+00 9.0624482884982305e-01 2 0 0 -125 0 P 230 211 -4.0394862382516095e-01 4.7867732125311147e-01 1.3978747101182714e+00 1.5381287197957578e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 -211 6.3711405493326878e-02 -5.3658177207738067e-01 1.6521659232314130e+00 1.7438781964640606e+00 1.3957000000000000e-01 1 0 0 0 0 P 232 213 -3.1025489461753436e-01 8.7997615120623401e-02 3.2970253752424652e+00 3.3894216509887407e+00 7.1679922104970717e-01 2 0 0 -126 0 P 233 113 4.6547410523578914e-01 -1.4447166983485080e-01 2.8387326579933440e+01 2.8400318545527593e+01 7.0727994854440657e-01 2 0 0 -127 0 P 234 -213 -3.1579802843159377e-01 7.4622751306876581e-02 6.8604281286333197e+00 6.9109779157108644e+00 7.6866422677663504e-01 2 0 0 -128 0 P 235 323 1.4187942204474066e-01 -3.7757616406758765e-01 2.9166709476621730e+01 2.9183696008220764e+01 9.1020738104732146e-01 2 0 0 -129 0 P 236 -323 3.3472944631352669e-01 -2.9075429204491865e-01 3.5115283050630289e+01 3.5129320822559812e+01 8.8853579999891119e-01 2 0 0 -130 0 P 237 111 -5.9889175022408025e-01 2.9122850733940470e-01 2.1894131529781369e+01 2.1904673026907759e+01 1.3497999999999999e-01 2 0 0 -131 0 P 238 2212 -6.2333368193938199e-01 -1.4448660892011506e-01 8.7101860441877491e+01 8.7109263940687740e+01 9.3827000000000005e-01 1 0 0 0 0 P 239 -2212 -9.3882930161072753e-01 -4.0449775744720989e-01 2.1967125530803304e+02 2.1967563765263839e+02 9.3827000000000005e-01 1 0 0 0 0 V -17 0 0 0 0 0 3 1 0 P 75 1 8.9100447495969570e-01 -9.7294042244731604e-01 5.0978787103778518e+02 5.0978957811951938e+02 0 2 0 0 -17 0 P 76 21 1.1437912178703431e+00 2.1581903347851777e-01 3.7550174018949446e+02 3.7550354421968359e+02 0 2 0 0 -17 0 P 77 -1 -8.9100447495969570e-01 9.7294042244731604e-01 1.1222603501430278e+01 1.1299881919309835e+01 0 2 0 0 -17 0 P 240 92 1.1437912178703429e+00 2.1581903347851783e-01 8.9651221472870998e+02 8.9659300425851291e+02 1.1979536356798834e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 5 0 P 241 113 9.2001996552820087e-01 -7.9791737162402010e-01 4.3062326889580271e+02 4.3062556858345749e+02 7.0533286490941016e-01 2 0 0 -132 0 P 242 223 9.2680131233113960e-01 2.3280398534167185e-01 4.1512906686564736e+02 4.1513090723398631e+02 7.8410828417995904e-01 2 0 0 -133 0 P 243 111 -3.4558968061562839e-01 -1.9928040082280413e-01 3.3496718456644654e+00 3.3760429469331839e+00 1.3497999999999999e-01 2 0 0 -134 0 P 244 221 1.8230541777767348e-01 3.1750535447966349e-01 3.1611744580565155e+01 3.1618604362698630e+01 5.4744999999999999e-01 2 0 0 -135 0 P 245 113 -5.3974579715104265e-01 6.6270746610400666e-01 1.5798462541030460e+01 1.5841881131437413e+01 8.0204264916393719e-01 2 0 0 -136 0 V -19 0 0 0 0 0 4 1 0 P 78 1 8.1352821396846786e-01 -9.9575754170313613e-01 -1.9064488639148502e+00 2.2995452827686655e+00 0 2 0 0 -19 0 P 79 21 2.1566194807375877e-01 -2.8454937718180828e-01 -6.5123662378413683e-01 7.4268941291719315e-01 0 2 0 0 -19 0 P 80 21 4.6366147934076986e-02 -2.8501424620379612e-01 -7.9172714485119783e+01 7.9173241072236706e+01 0 2 0 0 -19 0 P 81 -1 -8.1352821396846786e-01 9.9575754170313613e-01 -3.6722602269242373e+02 3.6722827383486322e+02 0 2 0 0 -19 0 P 246 92 2.6202809600783561e-01 -5.6956362338560451e-01 -4.4895642266524248e+02 4.4944374960278577e+02 2.0914625102916812e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 6 0 P 247 313 2.1571051603765351e-01 -1.2256847993044373e+00 -3.6508761937527194e+00 3.9576928046864168e+00 8.8634141287717205e-01 2 0 0 -137 0 P 248 -311 8.6601076362249352e-01 4.4268408326934072e-01 -5.0179756986046753e+00 5.1355330181955905e+00 4.9767000000000000e-01 2 0 0 -138 0 P 249 -213 2.7536942806508563e-01 -4.3581264878729889e-02 -7.5638739573336471e+00 7.6035033139709975e+00 7.2342639886615490e-01 2 0 0 -139 0 P 250 113 -6.7415103735098880e-01 -4.4911595323171360e-01 -4.5939249532046254e+01 4.5957291436079153e+01 1.0009014998958981e+00 2 0 0 -140 0 P 251 213 9.6916115858950339e-02 5.8004607997715507e-01 -1.3330108887758334e+02 1.3330460976553161e+02 7.6996272824053469e-01 2 0 0 -141 0 P 252 223 -5.1782769022535868e-01 1.2608823078278045e-01 -2.5348335840592176e+02 2.5348511926432192e+02 7.8016404929910954e-01 2 0 0 -142 0 V -21 0 0 0 0 0 6 1 0 P 82 21 3.7175550559959487e+00 -5.1277217251613685e+00 1.3343645253519984e+01 1.4770464255968372e+01 0 2 0 0 -21 0 P 83 21 6.3845405940044009e-01 -1.4179291113717010e+00 1.2469206518091973e+00 1.9932279505236012e+00 0 2 0 0 -21 0 P 84 21 -2.1566194807375877e-01 2.8454937718180828e-01 -9.8868167021159470e-01 1.0511754700876119e+00 0 2 0 0 -21 0 P 85 21 -3.7175550559959487e+00 5.1277217251613685e+00 -9.4829508856153204e+00 1.1403512756341588e+01 0 2 0 0 -21 0 P 86 21 -2.7240681264752031e+00 2.7170807262671470e+00 7.2891369271726640e-03 3.8474833283911281e+00 0 2 0 0 -21 0 P 87 21 -1.0739033925495707e+00 1.9868517071304806e-01 1.3237967814585814e+00 1.7161533183812132e+00 0 2 0 0 -21 0 P 253 92 -3.3751794076980928e+00 1.7823861627903026e+00 5.4500192678880213e+00 3.4782017079693510e+01 3.4139672898905822e+01 2 0 0 -22 0 V -22 0 0 0 0 0 0 16 0 P 254 323 -1.7750506483353408e+00 1.4891111808763675e+00 -2.1935841642079472e+00 3.3163473718259993e+00 9.0448410267213186e-01 2 0 0 -143 0 P 255 -321 -7.1905969210614573e-01 8.0198092182413661e-01 -6.3288115132744849e-01 1.3432794763143050e+00 4.9359999999999998e-01 1 0 0 0 0 P 256 313 -8.0352684750179038e-01 8.9664260356037806e-01 1.8833744047280265e-01 1.5208378345531981e+00 9.0986448130967024e-01 2 0 0 -144 0 P 257 113 4.5718324850069014e-01 -1.6211315550567174e-01 5.7710658618508459e-01 1.0718928385559918e+00 7.6197444027458638e-01 2 0 0 -145 0 P 258 213 -1.3917165120956563e+00 5.5490373534556692e-01 4.0977776791673415e-01 1.7632063942873146e+00 8.3437759092433117e-01 2 0 0 -146 0 P 259 -321 7.8460636456682042e-01 -6.9732454527583110e-01 3.2345361062466300e+00 3.4362382704603034e+00 4.9359999999999998e-01 1 0 0 0 0 P 260 -3122 5.0645845977537331e-02 -2.0390104440105108e-01 1.5990554662136571e+00 1.9610866589853688e+00 1.1156800000000000e+00 2 0 0 -147 0 P 261 2112 5.7764396497882986e-01 -1.2754968069359398e+00 2.2455917082838712e+00 2.8082091375097966e+00 9.3957000000000002e-01 1 0 0 0 0 P 262 111 -2.1545892552290967e-02 1.7522779283492204e-01 8.3011485832987772e-02 2.3723303321391301e-01 1.3497999999999999e-01 2 0 0 -148 0 P 263 213 9.2687757236222579e-02 -6.9754671173723981e-01 5.1987779114855925e-01 1.0135685661882219e+00 5.1174787272486644e-01 2 0 0 -149 0 P 264 223 9.1498222893391845e-01 -5.3937438157333961e-01 3.5930187942861389e+00 3.8274155873446456e+00 7.8179845189974329e-01 2 0 0 -150 0 P 265 -323 1.0386820003899850e+00 -1.3590235586878032e+00 2.6582270454116506e+00 3.2980610933672696e+00 9.4086695107350515e-01 2 0 0 -151 0 P 266 221 -4.3404380035369650e-01 -2.9488948851180236e-01 -6.1934630037147342e-01 9.7910427092524899e-01 5.4744999999999999e-01 2 0 0 -152 0 P 267 -3312 -1.8120060787853318e-01 4.4433665859555455e-01 -1.3055445254053435e+00 1.9184756772717437e+00 1.3212999999999999e+00 2 0 0 -153 0 P 268 3122 -1.3825542996726254e+00 1.7803866596205373e+00 -2.7213961113287644e+00 3.7056675115899647e+00 1.1156800000000000e+00 2 0 0 -154 0 P 269 -323 -5.8291251778601760e-01 8.6946630276151782e-01 -2.1857686714691189e+00 2.5813933573002310e+00 8.8895912443062441e-01 2 0 0 -155 0 V -23 0 0 0 0 0 0 1 0 P 270 310 1.4406467000847822e+01 8.3300720767986451e+00 6.1897234710084623e+00 1.7762228022622352e+01 4.9767000000000000e-01 2 0 0 -156 0 V -24 0 0 0 0 0 0 2 0 P 271 -311 7.2146905590477326e+00 2.7633079136143257e+00 1.6041794403330256e+00 7.9062442154251231e+00 4.9767000000000000e-01 2 0 0 -157 0 P 272 -211 6.5898009889480891e-01 1.1404536480582787e-01 7.9361745283227356e-02 6.8777844360484752e-01 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 273 -211 2.2062196862991615e-01 -3.5267765361772030e-01 5.9705797006506627e-03 4.3882913887457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 1.4437302971188390e+00 -4.0419064037764352e-01 -3.7294877272690541e-01 1.5512246183471450e+00 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 275 211 2.8755328364608990e-01 2.7115301247168533e-01 1.8290560464528907e-01 4.5732383736120441e-01 1.3957000000000000e-01 1 0 0 0 0 P 276 -211 4.3325434656146145e-01 7.2519824758821599e-02 -1.0840470324499400e-01 4.7349743228774149e-01 1.3957000000000000e-01 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 277 22 1.4540404519135455e+00 2.6156126550105757e-01 2.5518837344621542e-01 1.4992561613525555e+00 0 1 0 0 0 0 P 278 22 4.9344603403677861e-01 -1.0705383047261761e-01 -1.6614577782118845e-01 5.3155802186901091e-01 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 279 211 5.3266200122413021e-01 -1.9206583811378050e-01 -2.5590140037580372e-01 6.3685430463548065e-01 1.3957000000000000e-01 1 0 0 0 0 P 280 -211 2.4812345059075933e+00 -6.2116744590232899e-02 2.6515453059316202e-01 2.5000339744209610e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 3 0 P 281 211 4.2605114823987066e-02 -1.1725901777597213e-01 -6.8467366924314751e-02 1.9932997339211084e-01 1.3957000000000000e-01 1 0 0 0 0 P 282 -211 5.4374843763588643e-01 -3.5727362556095388e-01 2.5470997602807927e-01 7.1250527278130427e-01 1.3957000000000000e-01 1 0 0 0 0 P 283 111 9.7903203498801800e-02 9.2334097462062226e-02 1.4304821854718702e-01 2.3831285328111276e-01 1.3497999999999999e-01 2 0 0 -158 0 V -30 0 2.3251594497195002e-06 -1.6272527290875857e-07 1.5000524929100216e-06 2.9784374973380069e-06 0 2 0 P 284 22 1.1966964291993240e-01 -6.7327845047703949e-02 4.5169782233985517e-02 1.4454816284691221e-01 0 1 0 0 0 0 P 285 22 1.6826779791861929e-01 4.7176668470650163e-02 1.4059007005662061e-01 2.2428833599386408e-01 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 286 211 5.1381902767163490e-01 -3.2360058786400081e-01 5.2352163033146648e-01 8.1380711227432012e-01 1.3957000000000000e-01 1 0 0 0 0 P 287 111 1.1717109431581201e+00 1.8642124159457341e-01 6.4326157816660678e-01 1.3563423137171335e+00 1.3497999999999999e-01 2 0 0 -159 0 V -32 0 0 0 0 0 0 2 0 P 288 321 -1.3983779767721522e-02 -8.3329595447787430e-01 7.6716274667057671e-01 1.2356202222871424e+00 4.9359999999999998e-01 1 0 0 0 0 P 289 -211 2.5951345742832738e-01 -2.1433021686894659e-02 1.3234639143108312e-01 3.2373131024024332e-01 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 290 -321 1.0648334336863854e+00 4.7460699521262958e-02 6.6132527565307586e-01 1.3480040206590640e+00 4.9359999999999998e-01 1 0 0 0 0 P 291 211 -1.2980521326653099e-01 1.8269036706221414e-02 8.8629409257325140e-02 2.1099314723148069e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 292 211 5.0066845558739292e-01 -1.7974097216437554e-01 4.2716209356313739e-01 6.9636409914074593e-01 1.3957000000000000e-01 1 0 0 0 0 P 293 111 3.0808225917784271e-01 2.5689640096262878e-01 -1.8572347535217970e-01 4.6219395165294719e-01 1.3497999999999999e-01 2 0 0 -160 0 V -35 0 0 0 0 0 0 3 0 P 294 -211 2.9708171872715988e-01 -1.7537577343769495e-01 5.1786085965993045e-02 3.7573367311225947e-01 1.3957000000000000e-01 1 0 0 0 0 P 295 211 1.2861459584912560e-01 2.5724282527480236e-01 8.1764866025905103e-02 3.2997100423678233e-01 1.3957000000000000e-01 1 0 0 0 0 P 296 111 4.9082932658589207e-01 1.6294530601035279e-01 1.6020936207482453e-01 5.5798856680400721e-01 1.3497999999999999e-01 2 0 0 -161 0 V -36 0 7.1977847360489954e-05 3.0596560730944481e-05 1.7986784106132559e-06 7.9395828628339767e-05 0 2 0 P 297 22 6.5338785362994078e-01 2.3436465262382195e-01 -1.0381030778849880e-03 6.9414951943268233e-01 0 1 0 0 0 0 P 298 22 6.3824064569060063e-02 7.0509955562620269e-02 1.8960750675806735e-02 9.6977704230138559e-02 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 299 -211 1.8891253033699376e-01 -3.0970232013027243e-01 -2.7828357023535555e-01 4.7804288675320272e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 -2.0005695260845494e-01 -1.8231634384629469e-01 -3.1696821274115833e-01 4.3812153771389295e-01 1.3497999999999999e-01 2 0 0 -162 0 V -38 0 0 0 0 0 0 2 0 P 301 2212 1.2671279956888026e+00 6.1163055535857958e-01 -1.8698389829881096e-01 1.7014754963941112e+00 9.3827000000000005e-01 1 0 0 0 0 P 302 111 7.8228086105667061e-01 4.6582253262472040e-01 -3.0288400970247084e-02 9.2091854423168673e-01 1.3497999999999999e-01 2 0 0 -163 0 V -39 0 0 0 0 0 0 3 0 P 303 211 1.8262338794384075e-01 1.5704803471273621e-01 -7.8187682139326670e-02 2.8915131950164041e-01 1.3957000000000000e-01 1 0 0 0 0 P 304 -211 -8.6177277134351554e-02 4.0281464498584324e-01 6.6995184470371560e-02 4.4006170130060268e-01 1.3957000000000000e-01 1 0 0 0 0 P 305 111 1.0845457433759491e-01 -7.2900194983233288e-02 -1.1621039083874571e-01 2.2091013662174119e-01 1.3497999999999999e-01 2 0 0 -164 0 V -40 0 0 0 0 0 0 2 0 P 306 -2112 1.7955077450931894e-01 -2.5982220662418709e-01 -1.7973685761910603e+00 2.0525768300507141e+00 9.3957000000000002e-01 1 0 0 0 0 P 307 -211 2.4661133084851203e-01 1.0661996559127671e-01 -6.3182281848751776e-01 7.0061745940782127e-01 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 3 0 P 308 111 -1.4237487221903062e-02 -2.6953365033554866e-01 -2.6258657546687707e+00 2.6431499497092088e+00 1.3497999999999999e-01 2 0 0 -165 0 P 309 111 1.4287216855529958e-01 -1.1362083961535868e-01 -2.2133105024625066e+00 2.2249236239595791e+00 1.3497999999999999e-01 2 0 0 -166 0 P 310 111 -7.3700634658989989e-02 -1.2320014196726577e-01 -1.0443692593071199e+00 1.0627966920891287e+00 1.3497999999999999e-01 2 0 0 -167 0 V -42 0 0 0 0 0 0 2 0 P 311 211 -3.1844937790673428e-01 5.4062192808833454e-01 -1.3041168968389389e+00 1.4539197849056040e+00 1.3957000000000000e-01 1 0 0 0 0 P 312 -211 2.0574101851960699e-01 5.3764230534485047e-01 -3.0375407342985059e+00 3.0947571976846127e+00 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 313 211 -1.3693011389590835e-02 6.6734195039338284e-01 -2.7709469840200711e+00 2.8536222157927087e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 111 -2.2059880607265734e-03 -6.7872438700355114e-02 -1.6815243667239606e+00 1.6882995381758754e+00 1.3497999999999999e-01 2 0 0 -168 0 V -44 0 0 0 0 0 0 2 0 P 315 -211 -2.1222750476882307e-02 2.9453225818276524e-01 -3.3580955874908575e-01 4.6845223971638639e-01 1.3957000000000000e-01 1 0 0 0 0 P 316 111 -7.0939040819237411e-03 5.3082917794066908e-01 -3.4814263390574345e+00 3.5242557929740488e+00 1.3497999999999999e-01 2 0 0 -169 0 V -45 0 0 0 0 0 0 2 0 P 317 2212 1.0104548102272417e+00 1.0248890028318325e+00 -7.4765175176933223e+00 7.6713806564993314e+00 9.3827000000000005e-01 1 0 0 0 0 P 318 211 1.3234782692848517e-02 3.8030494078802927e-02 -1.7660860184234814e-01 2.2867413736037978e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 319 22 -1.6515328868077345e-01 3.7716507126704707e-01 -2.6381848694482590e+00 2.6701214401468110e+00 0 1 0 0 0 0 P 320 22 -4.7998131768656478e-02 -1.9019634102930719e-01 -8.7173168395605227e-01 8.9352929308840934e-01 0 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 321 -2212 3.5883003191591122e-02 5.1058293495184992e-01 -1.2968638043758214e+00 1.6805323095323761e+00 9.3827000000000005e-01 1 0 0 0 0 P 322 -211 -7.5961758513618749e-02 4.2424311968773873e-02 -1.8243837597020085e-01 2.4562890084261163e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 323 321 -4.9501611727627216e-02 9.5002911004829571e-01 -2.1307120671739819e+00 2.3850745465715768e+00 4.9359999999999998e-01 1 0 0 0 0 P 324 111 3.3131994515037677e-02 -6.2748307527662611e-02 -1.9260555894623013e-01 2.4566558752727322e-01 1.3497999999999999e-01 2 0 0 -170 0 V -49 0 0 0 0 0 0 3 0 P 325 -211 -2.9660023736584112e-01 -1.0101961396324666e-01 -2.4074701966066628e-01 4.1906512093736686e-01 1.3957000000000000e-01 1 0 0 0 0 P 326 211 -1.6878051295187924e-01 2.7029410518877278e-01 -2.0343580312386669e-01 4.0300331976889653e-01 1.3957000000000000e-01 1 0 0 0 0 P 327 111 -5.6037138191094560e-01 -1.2923881592426632e-02 -9.6717329739904365e-02 5.8459982436895697e-01 1.3497999999999999e-01 2 0 0 -171 0 V -50 0 0 0 0 0 0 2 0 P 328 22 6.6003342486441380e-02 -3.2218900070614698e-01 1.9902573665801326e-01 3.8441310753884689e-01 0 1 0 0 0 0 P 329 22 3.0399806088789910e-01 -6.6505360607208547e-02 -2.2250641189470405e-01 3.8255311702736589e-01 0 1 0 0 0 0 V -51 0 0 0 0 0 0 3 0 P 330 111 3.1715423786802144e-01 -4.9603106509934984e-02 -9.7574188687758445e-01 1.0360208052836151e+00 1.3497999999999999e-01 2 0 0 -172 0 P 331 111 -4.6130593058659110e-02 -4.8404281923420382e-02 -3.1883897269201228e-01 3.5263138974255159e-01 1.3497999999999999e-01 2 0 0 -173 0 P 332 111 1.0378911077254259e-01 -3.1433152226748334e-02 -4.8618935566053778e-01 5.1610068061520120e-01 1.3497999999999999e-01 2 0 0 -174 0 V -52 0 0 0 0 0 0 2 0 P 333 211 2.9786757382874290e-01 3.2620835782228394e-02 -3.6743013768905129e+01 3.6744500674486211e+01 1.3957000000000000e-01 1 0 0 0 0 P 334 111 -1.0072004805738227e-01 -3.1545942354387485e-01 -1.1450825649008658e+01 1.1456408111636819e+01 1.3497999999999999e-01 2 0 0 -175 0 V -53 0 0 0 0 0 0 3 0 P 335 -211 -2.3479755127803099e-02 -1.4683801162731897e-01 -1.5603956483633687e+02 1.5603969811172681e+02 1.3957000000000000e-01 1 0 0 0 0 P 336 211 1.5411636196911360e-02 1.5155218302667983e-01 -1.3719280146403059e+02 1.3719295703102446e+02 1.3957000000000000e-01 1 0 0 0 0 P 337 111 9.0414531093422637e-02 -2.8705279782848503e-01 -6.4236750530206064e+02 6.4236758998387324e+02 1.3497999999999999e-01 2 0 0 -176 0 V -54 0 0 0 0 0 0 2 0 P 338 211 -5.6769826013441638e-01 6.0637007587164463e-02 -3.0349223275444189e+02 3.0349280185899380e+02 1.3957000000000000e-01 1 0 0 0 0 P 339 111 -1.8413721965760776e-01 -4.9410385715177996e-01 -1.7666643437388899e+02 1.7666727285810845e+02 1.3497999999999999e-01 2 0 0 -177 0 V -55 0 0 0 0 0 0 3 0 P 340 111 -1.9313546017630373e-01 -4.2310878273031385e-02 -1.1858614786128248e+01 1.1861030973847816e+01 1.3497999999999999e-01 2 0 0 -178 0 P 341 111 -2.6770229428969022e-01 -1.5134850118336307e-01 -1.3712443801395491e+01 1.3716555890383272e+01 1.3497999999999999e-01 2 0 0 -179 0 P 342 221 -2.3007665892240534e-01 -4.5938339719430821e-01 -4.7451775291522623e+01 4.7457714317002832e+01 5.4744999999999999e-01 2 0 0 -180 0 V -56 0 0 0 0 0 0 2 0 P 343 311 6.2055958029386266e-02 -3.4962018284205576e-01 -8.3065040651613572e+01 8.3067290428286469e+01 4.9767000000000000e-01 2 0 0 -181 0 P 344 211 1.1781020837399954e-01 2.0252344938835629e-01 -2.5887130819815127e+01 2.5888567300255755e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 345 111 1.3688436745270874e-01 4.1225386009995209e-02 -9.7634649903059714e+00 9.7654444384183048e+00 1.3497999999999999e-01 2 0 0 -182 0 P 346 111 5.0549283421325523e-02 2.1184183542756435e-01 -6.3856019531557902e+00 6.3907404968312376e+00 1.3497999999999999e-01 2 0 0 -183 0 P 347 221 6.9117956401122491e-02 3.0250303683816282e-01 -3.3237147475534414e+01 3.3243103934381892e+01 5.4744999999999999e-01 2 0 0 -184 0 V -58 0 0 0 0 0 0 2 0 P 348 22 -1.7240349595833093e-01 4.3057433035412190e-01 -4.9414385231577906e+00 4.9631574524214317e+00 0 1 0 0 0 0 P 349 22 -1.8951890039238634e-01 -8.3910572166684794e-02 -5.9101817691271394e+00 5.9138149228607153e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 350 311 -2.1113129704430056e-01 -7.8267446138422014e-01 -1.1432479300277524e+01 1.1471983878879396e+01 4.9767000000000000e-01 2 0 0 -185 0 P 351 211 1.7179243855469173e-01 -9.3113381913910789e-03 -4.6898941748867511e+00 4.6951236937380214e+00 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 352 2212 -2.2989697457590605e-01 -7.3519016229371037e-01 7.6808848103703276e-01 1.4365471455035450e+00 9.3827000000000005e-01 1 0 0 0 0 P 353 -211 3.0065082305589880e-01 -1.6137797229226997e-01 3.6509526649103313e-01 5.1885268223216552e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 354 211 -2.0289122816404384e-01 4.5651640370169955e-01 2.6676779064696909e-01 5.8328116405496278e-01 1.3957000000000000e-01 1 0 0 0 0 P 355 111 6.0061263012472332e-02 -2.1305305346653813e-01 5.4489826338837956e-02 2.6492961420065075e-01 1.3497999999999999e-01 2 0 0 -186 0 V -62 0 -7.9039853421335350e-05 6.0731163535404482e-05 3.8225978427174480e-04 3.9603710773536053e-04 0 2 0 P 356 22 -7.6482374335192629e-02 -2.9588124908430630e-04 2.7784042066509301e-01 2.8817519061331059e-01 0 1 0 0 0 0 P 357 22 -3.0375273492230498e-01 2.9245381933536857e-01 1.5610874688200889e+00 1.6170309353020231e+00 0 1 0 0 0 0 V -63 0 -3.6378908571620972e-06 -2.4497830467928626e-06 1.6968982819928196e-04 1.6977254552653698e-04 0 2 0 P 358 22 -7.4273037894659315e-03 -7.7896478079829801e-02 2.8744218919892903e+00 2.8754867830136366e+00 0 1 0 0 0 0 P 359 22 -1.5769330011542365e-01 -3.3296977690295770e-02 4.8276472488755138e+00 4.8303368231625328e+00 0 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 360 -211 -4.3079014400434962e-01 -4.5644068025746903e-01 7.6596103479073196e+00 7.6865485563700231e+00 1.3957000000000000e-01 1 0 0 0 0 P 361 111 -1.7520553746696321e-03 -9.9766281121605183e-02 2.7334162721325034e-01 3.2076724601252321e-01 1.3497999999999999e-01 2 0 0 -187 0 V -65 0 0 0 0 0 0 2 0 P 362 211 -5.1406323806163201e-01 1.4427030874345584e-01 2.2290902096977488e-01 5.9518329213868715e-01 1.3957000000000000e-01 1 0 0 0 0 P 363 -211 1.1522058584207881e-01 2.1298441066679888e-01 3.9030098480425007e-01 4.8005498250517403e-01 1.3957000000000000e-01 1 0 0 0 0 V -66 0 -7.7831247715796122e-06 -1.9118439729560570e-05 3.3184528875286447e-05 4.1003637985626710e-05 0 2 0 P 364 22 -2.6786699055204109e-02 -1.8446325557397805e-01 2.0018637420997315e-01 2.7353026216958193e-01 0 1 0 0 0 0 P 365 22 -5.7872094867130776e-02 -2.3492301696750238e-02 1.6076918977136548e-01 1.7247550545820309e-01 0 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 366 22 1.5211171755398364e-01 -2.4669606707691571e-01 1.5506578236010702e+00 1.5775096227990650e+00 0 1 0 0 0 0 P 367 111 -5.7098921943504510e-01 1.4520217236930705e-01 2.7807753060812885e+00 2.8457061097174621e+00 1.3497999999999999e-01 2 0 0 -188 0 V -68 0 0 0 0 0 0 3 0 P 368 -211 -1.3441182704344160e-01 -8.3162112227823659e-02 4.4636866419481869e-01 4.9366714032272396e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 211 -3.5700598471032005e-02 -1.3548392475263232e-01 1.9305994997620396e-01 2.7637358010920865e-01 1.3957000000000000e-01 1 0 0 0 0 P 370 221 1.4580809648591087e-03 -5.4166076719307843e-02 4.0649943247008058e-01 6.8401709113571108e-01 5.4744999999999999e-01 2 0 0 -189 0 V -69 0 0 0 0 0 0 2 0 P 371 -211 9.1199914167941917e-02 -7.5453708014860147e-03 2.8157953195102187e-01 3.2732426533718584e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 111 -1.2835774920780172e-02 1.6448159911127951e-02 1.0622779906113513e+00 1.0710226089208243e+00 1.3497999999999999e-01 2 0 0 -190 0 V -70 0 0 0 0 0 0 3 0 P 373 211 -8.6580170886273400e-02 -4.1528770157391726e-01 4.1627457785618704e-01 6.1051151515642188e-01 1.3957000000000000e-01 1 0 0 0 0 P 374 -211 -2.0288518395225627e-01 -2.5854975497422206e-01 7.0877613590041211e-01 7.9363327134545625e-01 1.3957000000000000e-01 1 0 0 0 0 P 375 111 9.8396355505977362e-02 4.2941028269552171e-02 8.0686817760133089e-02 1.9040939484689848e-01 1.3497999999999999e-01 2 0 0 -191 0 V -71 0 0 0 0 0 0 2 0 P 376 -211 -1.1741769146205071e-01 -1.4795262907224421e-01 -3.2606578231745786e-02 2.3710729335397798e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 3.7020308618253855e-01 -1.3204915774518072e-01 -2.4809169663017605e-02 4.1783080891630775e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 -1.2947652067219962e-04 -1.0583372029881234e-03 -3.2746381166230149e-03 3.4447972293048159e-03 0 2 0 P 378 22 1.6699384453248874e-02 -2.4518518736290135e-01 -7.5162307037203657e-01 7.9077928997842739e-01 0 1 0 0 0 0 P 379 22 -2.3295077761535216e-01 -1.5224472250101186e+00 -4.7176701354153616e+00 4.9627132825020830e+00 0 1 0 0 0 0 V -73 0 0 0 0 0 0 1 0 P 380 310 8.7354718044610286e-02 -1.3350634507160093e+00 -2.4901063434856567e+00 2.8702491694920669e+00 4.9767000000000000e-01 2 0 0 -192 0 V -74 0 0 0 0 0 0 2 0 P 381 -311 1.8280397341951998e-01 -2.0717309792349750e-01 -1.2494527048595880e+00 1.3730059999075475e+00 4.9767000000000000e-01 2 0 0 -193 0 P 382 -211 3.5654002399920237e-01 -6.3186164285576085e-01 -2.4457369776746303e+00 2.5548931627938511e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 383 -211 3.9998161032780651e-02 -1.7324007536554276e+00 -3.9059381912133211e+00 4.2753532208030123e+00 1.3957000000000000e-01 1 0 0 0 0 P 384 211 -1.1914428044742786e-01 -2.9730187604095176e-01 -1.8317205980139286e+00 1.8647423144095028e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 385 -211 1.0302910118024257e-01 -5.0759747804201949e-01 -2.4485724648462313e+00 2.5066425943695636e+00 1.3957000000000000e-01 1 0 0 0 0 P 386 211 -8.7220981581447917e-03 -3.3110633233543185e-01 -1.2284221989346698e+00 1.2799251392344753e+00 1.3957000000000000e-01 1 0 0 0 0 P 387 111 1.9697819443678186e-01 -4.4171876385084707e-01 -1.4679541633536368e+00 1.5514589590217238e+00 1.3497999999999999e-01 2 0 0 -194 0 V -77 0 0 0 0 0 0 2 0 P 388 22 2.2187745092147779e-01 -4.1019068131292907e-01 -1.0098611615542477e+01 1.0109373994458453e+01 0 1 0 0 0 0 P 389 111 2.2890417335277041e-01 -3.1489434695076557e-01 -1.8602996250960302e+00 1.9053844404351303e+00 1.3497999999999999e-01 2 0 0 -195 0 V -78 0 0 0 0 0 0 2 0 P 390 211 9.8489512997596118e-02 -7.0986291475323948e-01 -1.0423700663746075e+01 1.0449240204636547e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 3.2625162512576000e-01 2.1298186234430156e-02 -2.4160255840258325e+00 2.4417806942273583e+00 1.3497999999999999e-01 2 0 0 -196 0 V -79 0 0 0 0 0 0 3 0 P 392 -211 1.1194642029960929e-01 1.7468675360125216e-01 -3.1850670948215241e+00 3.1948677040397877e+00 1.3957000000000000e-01 1 0 0 0 0 P 393 211 1.7588381047553214e-01 1.8667946624920398e-01 -1.0854728337656358e+01 1.0858655138051233e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 111 -2.1067699967446209e-02 -3.7872264627553609e-02 -1.3057704145896572e+01 1.3058473697893428e+01 1.3497999999999999e-01 2 0 0 -197 0 V -80 0 0 0 0 0 0 2 0 P 395 211 -2.9067253874096194e-01 -8.8983127958353603e-01 -8.7278717448871063e+01 8.7283848961509904e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -2.1289626257426680e-01 -7.4331347159048811e-01 -3.0763997991374133e+01 3.0774009029525836e+01 1.3497999999999999e-01 2 0 0 -198 0 V -81 0 0 0 0 0 0 3 0 P 397 -211 -5.3468192438282891e-01 -5.0773476502550052e-01 -6.2649515558302937e+01 6.2654009918175383e+01 1.3957000000000000e-01 1 0 0 0 0 P 398 211 -1.1920098275605431e-01 -3.8235694526384933e-01 -5.2563990057835085e+01 5.2565701139554555e+01 1.3957000000000000e-01 1 0 0 0 0 P 399 111 2.7705761658663553e-02 -2.0864936591361735e-01 -1.3380905314316184e+01 1.3383241341252885e+01 1.3497999999999999e-01 2 0 0 -199 0 V -82 0 0 0 0 0 0 2 0 P 400 22 -6.7242641425983860e-03 4.4727398629253790e-02 -3.0676473445915540e+00 3.0679807670022980e+00 0 1 0 0 0 0 P 401 113 -1.4041608383260105e+00 -1.6991211039281111e+00 -1.0717379734873337e+02 1.0719905974239420e+02 7.4625151278164348e-01 2 0 0 -200 0 V -83 0 0 0 0 0 0 2 0 P 402 211 9.4139016905230632e-01 4.3350098723306424e-01 -3.9680589410001694e+01 3.9694367286384086e+01 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -2.9886676229622326e-02 3.0095267757769406e-01 -2.5451058614057850e+01 2.5453213351248316e+01 1.3497999999999999e-01 2 0 0 -201 0 V -84 0 0 0 0 0 0 2 0 P 404 321 1.2332691737017891e-01 9.2772552820147713e-01 -4.4050801917803710e+01 4.4063507290566463e+01 4.9359999999999998e-01 1 0 0 0 0 P 405 -211 7.6192539976543641e-02 4.6386048494727361e-01 -3.2324556009800901e+01 3.2328275129803927e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 406 213 7.3514260409361820e-01 2.7296127633068403e+00 -1.0653521024446580e+02 1.0657459568453598e+02 6.3419476805078712e-01 2 0 0 -202 0 P 407 -211 -9.8084404778478906e-02 6.0840512760072574e-01 -1.7859828361152406e+01 1.7871002384434831e+01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 408 211 2.5957826734255662e-01 7.2264238176125861e-01 -2.8620917357108176e+01 2.8631555721548040e+01 1.3957000000000000e-01 1 0 0 0 0 P 409 -211 -1.2238445087818299e-01 -2.1918443015473783e-03 -1.9319808666057479e+00 1.9408793398428696e+00 1.3957000000000000e-01 1 0 0 0 0 V -87 0 3.3783700903863633e-05 2.5972293861767354e-04 -1.9969257443353296e-03 2.0147949509026659e-03 0 2 0 P 410 22 5.3564062731783296e-02 6.1569850297095119e-01 -4.6115790267661492e+00 4.6528072037734836e+00 0 1 0 0 0 0 P 411 22 2.8484908692213890e-02 1.5079043557735261e-02 -2.3826568974552592e-01 2.4043565976728792e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 412 211 2.7106844102813860e-01 8.0401467740964272e-01 -4.3515474420120626e+01 4.3523969390374816e+01 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -3.1355166694791198e-01 1.7210074173929615e-01 -1.1761733851278219e+01 1.1767945279523397e+01 1.3497999999999999e-01 2 0 0 -203 0 V -89 0 0 0 0 0 0 2 0 P 414 -211 -2.1677478630814451e-01 2.5743039864101491e-01 -4.1599926355662165e+00 4.1759166934924083e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 211 1.7230858517764469e-01 1.2515791218647532e+00 -2.4364136298501261e+01 2.4397269476391418e+01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 416 -211 -9.3369042329752312e-03 -1.0497294361203008e-01 -5.9938304947696058e-02 1.8487531466162052e-01 1.3957000000000000e-01 1 0 0 0 0 P 417 111 6.3532098204070375e-01 8.7009129346814029e-01 -5.1392197009855534e-01 1.2012605882739207e+00 1.3497999999999999e-01 2 0 0 -204 0 V -91 0 0 0 0 0 0 3 0 P 418 211 7.7982436200251126e-01 1.7339182346800510e+00 5.7859808692875769e-01 1.9921982861216969e+00 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 1.7849788699239724e-01 5.3162505293486040e-01 2.0218570772000174e-01 6.1224630490921028e-01 1.3957000000000000e-01 1 0 0 0 0 P 420 221 6.4726167051520600e-01 1.8511347207061155e+00 7.1299067676795369e-01 2.1572446852362086e+00 5.4744999999999999e-01 2 0 0 -205 0 V -92 0 0 0 0 0 0 2 0 P 421 211 3.6794101540986734e-01 5.1640618936662656e-02 2.3335927559600159e-01 4.6041685541658495e-01 1.3957000000000000e-01 1 0 0 0 0 P 422 111 7.3581748881061504e-01 1.5329073374452971e+00 -3.5384359386257741e-01 1.7420267424327256e+00 1.3497999999999999e-01 2 0 0 -206 0 V -93 0 0 0 0 0 0 2 0 P 423 2112 4.9182250315916481e-01 9.9697229565582024e-01 2.3170499561277769e-01 1.4738799553596285e+00 9.3957000000000002e-01 1 0 0 0 0 P 424 -211 3.5944304871805732e-01 6.4514561208330479e-01 6.0164151354475767e-02 7.5399713266714619e-01 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 425 -2112 7.5576495802240662e-01 1.7215216063264052e+00 2.1487397850395129e+00 3.0057763991246769e+00 9.3957000000000002e-01 1 0 0 0 0 P 426 211 7.7267001056024909e-01 1.0059127542243835e+00 1.2652272069441370e+00 1.7969861113603862e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 427 -211 5.5047994070708750e-01 1.5707425882098751e+00 3.0702278694124012e+00 3.4951451183826041e+00 1.3957000000000000e-01 1 0 0 0 0 P 428 111 -2.3533459588888336e-01 5.1911069731217996e-01 9.2116320438467370e-01 1.0916132729123267e+00 1.3497999999999999e-01 2 0 0 -207 0 V -96 0 0 0 0 0 0 2 0 P 429 311 2.0547318034247231e+00 1.5460664165183957e+00 9.1914734938153604e+00 9.5573586604616541e+00 4.9767000000000000e-01 2 0 0 -208 0 P 430 211 6.1624615763592981e-02 6.2429515192925354e-02 1.2982298448995011e+00 1.3086540997234590e+00 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 1 0 P 431 130 -4.5284272324607172e-01 1.2840584602051111e+00 5.4846244563259692e+00 5.6729757197656125e+00 4.9767000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 432 -211 -4.2298533181317224e-02 1.9293340569498298e+00 1.2575220267925012e+01 1.2723197854350445e+01 1.3957000000000000e-01 1 0 0 0 0 P 433 111 2.5502198890386563e-01 4.5953153823439508e-01 2.2717871616034762e+00 2.3356887544111977e+00 1.3497999999999999e-01 2 0 0 -209 0 V -99 0 0 0 0 0 0 2 0 P 434 22 -1.9685522334148919e-01 9.2780172244629089e-02 5.2844703886016253e-01 5.7150364145702937e-01 0 1 0 0 0 0 P 435 22 3.1533684022668218e-01 4.8976994846467070e-01 1.9805438134203388e+00 2.0644286672347905e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 436 311 2.7768241937945476e-01 4.5333193564454477e-01 5.2553978027049704e+00 5.3056101311238359e+00 4.9767000000000000e-01 2 0 0 -210 0 P 437 211 -2.0423610436733641e-01 6.9665832419209528e-01 4.3199296008365575e+00 4.3827293719869562e+00 1.3957000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 438 -311 3.5861398927706212e-01 6.7449636293101645e-01 4.7999293610009914e+00 4.8857493423641545e+00 4.9767000000000000e-01 2 0 0 -211 0 P 439 -211 -1.1290887585963248e-01 5.6410144123653493e-02 9.3307826353971135e-01 9.5186414440203615e-01 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 440 211 4.2535682776282674e-01 6.6692483342302944e-01 2.1463006095472519e+01 2.1478031278577451e+01 1.3957000000000000e-01 1 0 0 0 0 P 441 111 7.0911401271917418e-02 5.5815054378515438e-01 6.1792912230199795e+00 6.2063209774913970e+00 1.3497999999999999e-01 2 0 0 -212 0 V -103 0 0 0 0 0 0 3 0 P 442 211 6.1264159878480495e-01 1.0566561331498050e+00 1.6009939173760795e+01 1.6057069597056156e+01 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 7.6075561658693447e-02 6.7768229669643437e-02 3.7601860643086011e+00 3.7641544929977107e+00 1.3957000000000000e-01 1 0 0 0 0 P 444 111 -3.0664011570552376e-03 2.5746295150144910e-01 6.0957249438969949e+00 6.1026534201329108e+00 1.3497999999999999e-01 2 0 0 -213 0 V -104 0 0 0 0 0 0 2 0 P 445 -211 1.6841709778003071e+00 -2.1161593691113470e-01 3.2389582960382583e+01 3.2434330227702027e+01 1.3957000000000000e-01 1 0 0 0 0 P 446 111 2.7502178873616984e-01 -6.3367007859654725e-02 1.3545909451866299e+01 1.3549521572384963e+01 1.3497999999999999e-01 2 0 0 -214 0 V -105 0 0 0 0 0 0 2 0 P 447 -211 3.3856354154398327e-01 1.2046367703581841e-01 7.7403282448788913e+00 7.7499224442905064e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 1.2739477350494364e+00 -3.7496252212791048e-01 4.4797033043572355e+01 4.4816915655050956e+01 1.3497999999999999e-01 2 0 0 -215 0 V -106 0 0 0 0 0 0 2 0 P 449 2212 5.7877539529409283e-01 -1.0544133099712094e-01 3.2538566946742101e+01 3.2557407580656630e+01 9.3827000000000005e-01 1 0 0 0 0 P 450 111 5.8726696154472235e-01 -3.2425969736814425e-01 2.4310178756028684e+01 2.4319807515396324e+01 1.3497999999999999e-01 2 0 0 -216 0 V -107 0 0 0 0 0 0 2 0 P 451 211 -1.9387485376076936e-02 -7.8271980401384722e-01 2.9419914684958883e+01 2.9430662344251513e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.1739339432736442e-01 -9.7162606402307405e-01 1.6411501321557463e+01 1.6448931526414260e+01 1.3497999999999999e-01 2 0 0 -217 0 V -108 0 0 0 0 0 0 2 0 P 453 -2212 -7.3160954297713049e-02 -1.0882831216257682e+00 6.2528552818451161e+01 6.2545103572068577e+01 9.3827000000000005e-01 1 0 0 0 0 P 454 -211 9.5572508214251811e-02 -3.2938086995100826e-02 1.9736408931905704e+01 1.9737161303850371e+01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 455 -211 3.6344997436058224e-01 -2.7862693665457910e-01 1.4120403413545233e+01 1.4128517303661134e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 211 -1.4530575029529891e-02 -5.7999814630199642e-01 4.3486804644192958e+01 4.3490898667818151e+01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 457 -211 -3.5653282937653741e-01 -4.4879596015018347e-01 1.1808620551086221e+01 1.1823346927867178e+01 1.3957000000000000e-01 1 0 0 0 0 P 458 211 -2.8016245267670647e-01 -1.3318062300363773e+00 4.6765858450731606e+01 4.6785865336157009e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 3 0 P 459 111 -1.0437052767392771e-01 4.4519959929118516e-02 1.2072078484427969e+01 1.2073366298115356e+01 1.3497999999999999e-01 2 0 0 -218 0 P 460 111 -1.7555660623117511e-01 3.5498924733449157e-02 1.2293954879123353e+01 1.2296000425584310e+01 1.3497999999999999e-01 2 0 0 -219 0 P 461 111 -4.2884507322186616e-01 1.7366096077997581e-01 5.5433630394259957e+01 5.5435725525277896e+01 1.3497999999999999e-01 2 0 0 -220 0 V -112 0 0 0 0 0 0 2 0 P 462 211 -1.7892793209101636e+00 2.9101907569912328e-01 1.4729434019224038e+02 1.4730556114771431e+02 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -7.5377747988237698e-01 -2.9180197287071669e-01 4.9826521315260806e+01 4.9833259725419211e+01 1.3497999999999999e-01 2 0 0 -221 0 V -113 0 0 0 0 0 0 3 0 P 464 111 -4.6356693539791421e-01 -3.5218705365093428e-01 3.7787561382581551e+01 3.7792286843575930e+01 1.3497999999999999e-01 2 0 0 -222 0 P 465 111 -3.4664634276364331e-01 -1.2035448959300811e-01 2.4558904969996693e+01 2.4562017055116726e+01 1.3497999999999999e-01 2 0 0 -223 0 P 466 111 -3.8210626017865557e-01 -1.7821240221590140e-01 4.4428735470416811e+01 4.4430941020363775e+01 1.3497999999999999e-01 2 0 0 -224 0 V -114 0 0 0 0 0 0 2 0 P 467 2112 -7.2712279125836399e-01 6.5732788184361335e-01 3.4996193785551742e+02 3.4996457181673657e+02 9.3957000000000002e-01 1 0 0 0 0 P 468 -211 -5.2501176399450400e-01 4.2943385662750405e-01 1.3140423931232036e+02 1.3140606393855654e+02 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 469 211 2.1671495417091011e-01 -5.1950934354058662e-02 2.4651587684112366e+02 2.4651601708368543e+02 1.3957000000000000e-01 1 0 0 0 0 P 470 111 4.9091707679991192e-03 1.4100682195207442e-01 1.9139997216320843e+01 1.9140993183870169e+01 1.3497999999999999e-01 2 0 0 -225 0 V -116 0 0 0 0 0 0 2 0 P 471 22 -7.7513129527346583e-02 -8.0087589469490117e-01 1.1162500142889348e+03 1.1162503042823914e+03 0 1 0 0 0 0 P 472 111 -7.6035965034597277e-03 1.5779930739062667e-01 3.3699739738444930e+02 3.3699746144730665e+02 1.3497999999999999e-01 2 0 0 -226 0 V -117 0 0 0 0 0 0 2 0 P 473 421 -2.0931661067039197e+01 2.2605714824302748e+01 1.5271821644847449e+02 1.5580591379404123e+02 1.8645000000000000e+00 2 0 0 -227 0 P 474 22 -4.2670789094726974e-01 5.5609996830899644e-01 3.0831035248323406e+00 3.1617802175014535e+00 0 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 475 -211 -3.4471067751921569e-01 4.1714826743240424e-01 2.2055298601144657e+00 2.2752318292811720e+00 1.3957000000000000e-01 1 0 0 0 0 P 476 211 -2.1774821212211545e-01 4.0267318688993609e-01 1.3401152903771323e+00 1.4230069415589865e+00 1.3957000000000000e-01 1 0 0 0 0 P 477 111 -6.1320548421844268e-01 7.1451390082451771e-01 3.7886530031201864e+00 3.9062337690925069e+00 1.3497999999999999e-01 2 0 0 -228 0 V -119 0 0 0 0 0 0 2 0 P 478 211 -3.1354677932682620e+00 2.8279921304869218e+00 2.5698893483267781e+01 2.6043834276503176e+01 1.3957000000000000e-01 1 0 0 0 0 P 479 111 -1.3652487212124651e+00 9.8157156941244461e-01 7.8863772398583674e+00 8.0647723084044447e+00 1.3497999999999999e-01 2 0 0 -229 0 V -120 0 0 0 0 0 0 2 0 P 480 -211 -2.5109619429177799e-01 -3.2502261417554795e-01 3.4737743159502639e+00 3.5007537447768367e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 -1.0763015205436455e+00 -3.4097824188147170e+00 3.4177170046042242e+01 3.4363966783002070e+01 1.3497999999999999e-01 2 0 0 -230 0 V -121 0 0 0 0 0 0 2 0 P 482 321 -1.7010415481412409e+00 -5.9555040030353288e+00 6.0918813332135031e+01 6.1234851424937624e+01 4.9359999999999998e-01 1 0 0 0 0 P 483 -211 -3.1090273753177748e+00 -9.7969357300909810e+00 1.0486455886918002e+02 1.0536717319702863e+02 1.3957000000000000e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 484 211 -3.1193469909832208e-02 1.0358328984179746e-02 2.8875708744602751e-02 1.4626660247596932e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 111 4.6968315875906974e-01 -4.0263256074529727e-02 -6.1826394375825100e-01 7.8910918380356365e-01 1.3497999999999999e-01 2 0 0 -231 0 V -123 0 0 0 0 0 0 1 0 P 486 130 3.0048802993423324e-01 2.7850773712885241e-01 -2.5850303969372213e-01 6.9452060171407781e-01 4.9767000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 3 0 P 487 -211 2.5016080157350534e-01 6.6547426039015964e-02 -3.1764448132146245e-01 4.3288195616160524e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 211 -3.5001937778323826e-02 2.5365775998995406e-03 -1.7347181594715419e-01 2.2539704013620343e-01 1.3957000000000000e-01 1 0 0 0 0 P 489 221 8.8568761911574825e-02 2.9786853779051536e-01 -5.9672995440964893e-01 8.6738586129919748e-01 5.4744999999999999e-01 2 0 0 -232 0 V -125 0 0 0 0 0 0 2 0 P 490 211 1.5053890103279596e-01 -1.2900322579664683e-01 1.4236221043716371e+00 1.4441203114511030e+00 1.3957000000000000e-01 1 0 0 0 0 P 491 -211 4.4513368181046342e-01 3.3056576918243663e-01 4.3990485044826111e-01 7.2139710616637620e-01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 492 211 1.4251617028095676e-01 1.0827746676901534e-01 1.9218751941822345e+00 1.9352309721360050e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -4.5277106489849112e-01 -2.0279851648391935e-02 1.3751501810602309e+00 1.4541906788527357e+00 1.3497999999999999e-01 2 0 0 -233 0 V -127 0 0 0 0 0 0 2 0 P 494 -211 4.9887338547880156e-01 -1.5088768805210082e-01 2.7034955696338898e+01 2.7040339329177282e+01 1.3957000000000000e-01 1 0 0 0 0 P 495 211 -3.3399280243012419e-02 6.4160182172500338e-03 1.3523708835945445e+00 1.3599792163503104e+00 1.3957000000000000e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 496 -211 2.2964954646514667e-02 -1.4923043018743246e-01 5.6890998957171957e-01 6.0492600503725802e-01 1.3957000000000000e-01 1 0 0 0 0 P 497 111 -3.3876298307810843e-01 2.2385318149430905e-01 6.2915181390616004e+00 6.3060519106736068e+00 1.3497999999999999e-01 2 0 0 -234 0 V -129 0 0 0 0 0 0 2 0 P 498 311 -1.9193621521217133e-01 -2.3692350997476644e-01 1.4272914923514785e+01 1.4284843299913366e+01 4.9767000000000000e-01 2 0 0 -235 0 P 499 211 3.3381563725691199e-01 -1.4065265409282124e-01 1.4893794553106947e+01 1.4898852708307400e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 500 -321 3.4098947045234035e-01 6.8646182956603879e-02 1.9673029950369916e+01 1.9682294950171478e+01 4.9359999999999998e-01 1 0 0 0 0 P 501 111 -6.2600241388136744e-03 -3.5940047500152250e-01 1.5442253100260377e+01 1.5447025872388339e+01 1.3497999999999999e-01 2 0 0 -236 0 V -131 0 -1.1858696484016230e-05 5.7666355810359788e-06 4.3352719501589776e-04 4.3373592792107172e-04 0 2 0 P 502 22 -3.9186977731671641e-01 2.4666764749381556e-01 1.6160243278378712e+01 1.6166875692819520e+01 0 1 0 0 0 0 P 503 22 -2.0702197290736385e-01 4.4560859845589162e-02 5.7338882514026590e+00 5.7377973340882367e+00 0 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 504 -211 6.0136918791238426e-02 -4.2614597958774925e-01 1.6117328370689319e+02 1.6117391872599146e+02 1.3957000000000000e-01 1 0 0 0 0 P 505 211 8.5988304673696236e-01 -3.7177139203627080e-01 2.6944998518890952e+02 2.6945164985746601e+02 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 506 -211 9.8556714845789684e-01 2.1974958936809022e-01 2.9834567761308722e+02 2.9834741906489359e+02 1.3957000000000000e-01 1 0 0 0 0 P 507 211 -5.8765836126757245e-02 1.3054395973581658e-02 1.1678338925256018e+02 1.1678348816909281e+02 1.3957000000000000e-01 1 0 0 0 0 V -134 0 -1.0717451654361356e-04 -6.1800979059198539e-05 1.0388026054462230e-03 1.0469808300510861e-03 0 2 0 P 508 22 -6.6752184855023960e-02 -1.0305114941718245e-01 1.1906097783898784e+00 1.1969239900581476e+00 0 1 0 0 0 0 P 509 22 -2.7883749576060440e-01 -9.6229251405621663e-02 2.1590620672745868e+00 2.1791189568750355e+00 0 1 0 0 0 0 V -135 0 0 0 0 0 0 3 0 P 510 111 2.3196754075702977e-01 8.9816134988957103e-02 1.5774119689644662e+01 1.5776658310989202e+01 1.3497999999999999e-01 2 0 0 -237 0 P 511 111 -2.4796828456668443e-02 1.7606439567620474e-01 9.3623789313209311e+00 9.3650399042485883e+00 1.3497999999999999e-01 2 0 0 -238 0 P 512 111 -2.4865294522687837e-02 5.1624823814501668e-02 6.4752459595995626e+00 6.4769061474608414e+00 1.3497999999999999e-01 2 0 0 -239 0 V -136 0 0 0 0 0 0 2 0 P 513 -211 -4.2746196272335207e-01 6.9969803457714308e-01 1.4986908185870663e+01 1.5009969947530990e+01 1.3957000000000000e-01 1 0 0 0 0 P 514 211 -1.1228383442769062e-01 -3.6990568473136448e-02 8.1155435515979868e-01 8.3191118390642371e-01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 515 321 -3.9431883565704047e-02 -7.6723360763928694e-01 -2.8286941742068983e+00 2.9724323328420414e+00 4.9359999999999998e-01 1 0 0 0 0 P 516 -211 2.5514239960335755e-01 -4.5845119166515030e-01 -8.2218201954582082e-01 9.8526047184437493e-01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 1 0 P 517 310 8.6601076362249352e-01 4.4268408326934072e-01 -5.0179756986046753e+00 5.1355330181955905e+00 4.9767000000000000e-01 2 0 0 -240 0 V -139 0 0 0 0 0 0 2 0 P 518 -211 3.9549374230890971e-01 9.6253881990411530e-02 -6.5537744910386149e+00 6.5678855025260745e+00 1.3957000000000000e-01 1 0 0 0 0 P 519 111 -1.2012431424382410e-01 -1.3983514686914142e-01 -1.0100994662950324e+00 1.0356178114449233e+00 1.3497999999999999e-01 2 0 0 -241 0 V -140 0 0 0 0 0 0 2 0 P 520 211 -4.4497591304261980e-01 -1.1690850681308826e-01 -3.9927197129440955e+01 3.9930091679838299e+01 1.3957000000000000e-01 1 0 0 0 0 P 521 -211 -2.2917512430836898e-01 -3.3220744641862532e-01 -6.0120524026052991e+00 6.0271997562408606e+00 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 2 0 P 522 211 -1.5324729201087578e-01 -8.6161999395063846e-02 -2.1415964134769595e+01 2.1417140524105594e+01 1.3957000000000000e-01 1 0 0 0 0 P 523 111 2.5016340786982610e-01 6.6620807937221893e-01 -1.1188512474281374e+02 1.1188746924142600e+02 1.3497999999999999e-01 2 0 0 -242 0 V -142 0 0 0 0 0 0 3 0 P 524 211 -4.0548321356658834e-01 9.2026902377378317e-02 -9.0087098905216919e+01 9.0088166562154441e+01 1.3957000000000000e-01 1 0 0 0 0 P 525 -211 -1.4360879347009847e-01 1.7471653036939200e-01 -1.1170645191253483e+02 1.1170676804931698e+02 1.3957000000000000e-01 1 0 0 0 0 P 526 111 3.1264316811328179e-02 -1.4065520196398990e-01 -5.1689807588169991e+01 5.1690184652850498e+01 1.3497999999999999e-01 2 0 0 -243 0 V -143 0 0 0 0 0 0 2 0 P 527 321 -1.2671620533507368e+00 6.8005965256298861e-01 -1.2764656990310488e+00 1.9852421618782361e+00 4.9359999999999998e-01 1 0 0 0 0 P 528 111 -5.0788859498460415e-01 8.0905152831337901e-01 -9.1711846517689855e-01 1.3311052099477636e+00 1.3497999999999999e-01 2 0 0 -244 0 V -144 0 0 0 0 0 0 2 0 P 529 321 -4.6552064888728523e-01 4.2617143972487570e-01 3.9085950374310863e-01 8.9148397755872288e-01 4.9359999999999998e-01 1 0 0 0 0 P 530 -211 -3.3800619861450520e-01 4.7047116383550219e-01 -2.0252206327030597e-01 6.2935385699447499e-01 1.3957000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 531 -211 1.2375260000838846e-01 2.4702072577142586e-01 3.8306888214384310e-01 4.9249923688916691e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 211 3.3343064849230164e-01 -4.0913388127709760e-01 1.9403770404124143e-01 5.7939360166682496e-01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 533 211 -1.2563722846716214e+00 1.5881448520147429e-01 3.3195070381896796e-01 1.3165729805319215e+00 1.3957000000000000e-01 1 0 0 0 0 P 534 111 -1.3534422742403476e-01 3.9608925014409258e-01 7.7827064097766199e-02 4.4663341375539312e-01 1.3497999999999999e-01 2 0 0 -245 0 V -147 0 2.3296820270130117e-01 -9.3793397910856458e-01 7.3555702504942397e+00 9.0208945169551367e+00 0 2 0 P 535 -2212 1.2424222699959589e-03 -2.6503670133145829e-01 1.3833368478305950e+00 1.6923999007715771e+00 9.3827000000000005e-01 1 0 0 0 0 P 536 211 4.9403423707541368e-02 6.1135656930407199e-02 2.1571861838306214e-01 2.6868675821379157e-01 1.3957000000000000e-01 1 0 0 0 0 V -148 0 -6.0706888298152169e-06 4.9371517195421438e-05 2.3389000876600935e-05 6.6841878158431246e-05 0 2 0 P 537 22 -6.4854763429546061e-02 1.5470787748247397e-01 3.9133093314731596e-02 1.7225581757088509e-01 0 1 0 0 0 0 P 538 22 4.3308870877255101e-02 2.0519915352448081e-02 4.3878392518256183e-02 6.4977215643027886e-02 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 539 211 1.1488902024225081e-01 -5.4647182898505264e-01 1.5576701667798953e-01 5.9630033978797459e-01 1.3957000000000000e-01 1 0 0 0 0 P 540 111 -2.2201263006028239e-02 -1.5107488275218722e-01 3.6411077447056978e-01 4.1726822640024736e-01 1.3497999999999999e-01 2 0 0 -246 0 V -150 0 0 0 0 0 0 3 0 P 541 211 8.8989209184823920e-02 -2.0981439846917910e-01 1.1944210976209575e+00 1.2239537182828346e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 -211 6.5382550675362838e-01 -1.5668905441428399e-01 2.0181955634399427e+00 2.1318143376578433e+00 1.3957000000000000e-01 1 0 0 0 0 P 543 111 1.7216751299546618e-01 -1.7287092868987652e-01 3.8040213322523891e-01 4.7164753140396781e-01 1.3497999999999999e-01 2 0 0 -247 0 V -151 0 0 0 0 0 0 2 0 P 544 -321 9.8028213605228176e-01 -7.9208431720875405e-01 2.0228762939829581e+00 2.4339309958561910e+00 4.9359999999999998e-01 1 0 0 0 0 P 545 111 5.8399864337703167e-02 -5.6693924147904917e-01 6.3535075142869257e-01 8.6413009751107850e-01 1.3497999999999999e-01 2 0 0 -248 0 V -152 0 0 0 0 0 0 3 0 P 546 111 -1.1140864983921943e-01 1.6119844588634111e-02 -4.1404694391291783e-02 1.8057044543943448e-01 1.3497999999999999e-01 2 0 0 -249 0 P 547 111 -1.1998683174143251e-01 -2.0984660870760263e-01 -2.1817957650396150e-01 3.5249732904076947e-01 1.3497999999999999e-01 2 0 0 -250 0 P 548 111 -2.0264831877304457e-01 -1.0116272439283384e-01 -3.5976202947622016e-01 4.4603649644504501e-01 1.3497999999999999e-01 2 0 0 -251 0 V -153 0 -1.7386679624935081e+01 4.2635282624403970e+01 -1.2527046495631421e+02 1.8408283702510596e+02 0 2 0 P 549 -3122 -1.2586481549127196e-01 2.9089274301557178e-01 -1.2307571565785711e+00 1.6911432761854168e+00 1.1156800000000000e+00 2 0 0 -252 0 P 550 211 -5.5335792387261197e-02 1.5344391557998277e-01 -7.4787368826772477e-02 2.2733240108632702e-01 1.3957000000000000e-01 1 0 0 0 0 V -154 0 -1.9059835762069059e+02 2.4544336040458867e+02 -3.7517052992234574e+02 5.1086177357709693e+02 0 2 0 P 551 2112 -1.2472121899174611e+00 1.4445917488135571e+00 -2.3483548115863502e+00 3.1685873308810164e+00 9.3957000000000002e-01 1 0 0 0 0 P 552 111 -1.3534210975516422e-01 3.3579491080698021e-01 -3.7304129974241396e-01 5.3708018070894803e-01 1.3497999999999999e-01 2 0 0 -253 0 V -155 0 0 0 0 0 0 2 0 P 553 -311 -1.1517162604787076e-01 5.4413683156623260e-01 -1.5248356733978932e+00 1.6976892102738521e+00 4.9767000000000000e-01 2 0 0 -254 0 P 554 -211 -4.6774089173814687e-01 3.2532947119528516e-01 -6.6093299807122585e-01 8.8370414702637878e-01 1.3957000000000000e-01 1 0 0 0 0 V -156 0 6.0499406958582290e+02 3.4981818966364591e+02 2.5993506889065276e+02 7.4591796973437545e+02 0 2 0 P 555 -211 2.6233196789542053e+00 1.3710114315029300e+00 1.1318305423628436e+00 3.1720653594819694e+00 1.3957000000000000e-01 1 0 0 0 0 P 556 211 1.1783147321893615e+01 6.9590606452957147e+00 5.0578929286456189e+00 1.4590162663140381e+01 1.3957000000000000e-01 1 0 0 0 0 V -157 0 0 0 0 0 0 1 0 P 557 310 7.2146905590477326e+00 2.7633079136143257e+00 1.6041794403330256e+00 7.9062442154251231e+00 4.9767000000000000e-01 2 0 0 -255 0 V -158 0 2.7438042402404651e-05 2.5877262344973554e-05 4.0090241644995826e-05 6.6788807104205001e-05 0 2 0 P 558 22 3.5579568847838743e-02 1.1796455569838812e-01 9.1792733262330950e-02 1.5364715422124028e-01 0 1 0 0 0 0 P 559 22 6.2323634650963057e-02 -2.5630458236325888e-02 5.1255485284856073e-02 8.4665699059872174e-02 0 1 0 0 0 0 V -159 0 1.1405620599008781e-04 1.8146540028831378e-05 6.2616104674357911e-05 1.3202851712678545e-04 0 2 0 P 560 22 2.6907129400668500e-01 9.5654385139605461e-02 1.8182799164879568e-01 3.3854178649304512e-01 0 1 0 0 0 0 P 561 22 9.0263964915143513e-01 9.0766856454967945e-02 4.6143358651781108e-01 1.0178005272240891e+00 0 1 0 0 0 0 V -160 0 4.4633664351323958e-05 3.7218072096161000e-05 -2.6906837424369157e-05 6.6960719381706571e-05 0 2 0 P 562 22 2.5617557306950556e-01 1.8610299924180279e-01 -8.3525191492050330e-02 3.2747016379827321e-01 0 1 0 0 0 0 P 563 22 5.1906686108337124e-02 7.0793401720826016e-02 -1.0219828386012937e-01 1.3472378785467443e-01 0 1 0 0 0 0 V -161 0 2.6593291049351247e-05 8.8284291772052923e-06 8.6801948533145459e-06 3.0232000321669101e-05 0 2 0 P 564 22 2.6105632083547320e-01 1.5505214907726564e-01 1.0764607174134963e-01 3.2214786720227667e-01 0 1 0 0 0 0 P 565 22 2.2977300575041887e-01 7.8931569330871545e-03 5.2563290333474913e-02 2.3584069960172988e-01 0 1 0 0 0 0 V -162 0 -1.8079584416259091e-04 -1.6476326796220015e-04 -2.8645110728745302e-04 3.9594001720012230e-04 0 2 0 P 566 22 -7.8603373366756268e-02 -8.5208700775621871e-02 -4.4054736080760805e-02 1.2401545372915686e-01 0 1 0 0 0 0 P 567 22 -1.2145357924169867e-01 -9.7107643070672808e-02 -2.7291347666039750e-01 3.1410608398473616e-01 0 1 0 0 0 0 V -163 0 4.0681088022817417e-04 2.4224250388947180e-04 -1.5750929970044972e-05 4.7890687635038725e-04 0 2 0 P 568 22 4.2207811984875682e-01 1.9187003895616661e-01 2.8787436251658839e-02 4.6453500146926058e-01 0 1 0 0 0 0 P 569 22 3.6020274120791385e-01 2.7395249366855384e-01 -5.9075837221905923e-02 4.5638354276242660e-01 0 1 0 0 0 0 V -164 0 3.6761126783252542e-06 -2.4709822768383744e-06 -3.9389992881781080e-06 7.4878404988054426e-06 0 2 0 P 570 22 1.3415115911295922e-01 -7.6751402134882879e-02 -7.4033086075568272e-02 1.7137155264189446e-01 0 1 0 0 0 0 P 571 22 -2.5696584775364319e-02 3.8512071516495915e-03 -4.2177304763177423e-02 4.9538583979847207e-02 0 1 0 0 0 0 V -165 0 -3.5986336872641787e-07 -6.8126689691184139e-06 -6.6370763433923815e-05 6.6807634670823531e-05 0 2 0 P 572 22 -2.2889692425025646e-02 -2.4854833730806097e-01 -1.8280540211677003e+00 1.8450153707504211e+00 0 1 0 0 0 0 P 573 22 8.6522052031225861e-03 -2.0985313027487702e-02 -7.9781173350107049e-01 7.9813457895878814e-01 0 1 0 0 0 0 V -166 0 8.0965032482655019e-06 -6.4388432423095745e-06 -1.2542733727508138e-04 1.2608544778655695e-04 0 2 0 P 574 22 5.2098633601464821e-02 -6.0394187022596656e-02 -3.6467090715343697e-01 3.7329156965215643e-01 0 1 0 0 0 0 P 575 22 9.0773534953834750e-02 -5.3226652592762019e-02 -1.8486395953090697e+00 1.8516320543074232e+00 0 1 0 0 0 0 V -167 0 -1.2123462202360951e-05 -2.0265934905127161e-05 -1.7179460257162304e-04 1.7482584220548667e-04 0 2 0 P 576 22 -9.7464231433902940e-02 -4.0619140309456736e-02 -4.4842390277804428e-01 4.6068773323279799e-01 0 1 0 0 0 0 P 577 22 2.3763596774912962e-02 -8.2581001657809031e-02 -5.9594535652907565e-01 6.0210895885633098e-01 0 1 0 0 0 0 V -168 0 -1.2669429691693801e-06 -3.8980496106344505e-05 -9.6573300274627974e-04 9.6962411892625284e-04 0 2 0 P 578 22 -5.6398892340485771e-02 -6.2440132550326051e-02 -6.6265518365601073e-01 6.6797567144044800e-01 0 1 0 0 0 0 P 579 22 5.4192904279759195e-02 -5.4323061500290712e-03 -1.0188691830679499e+00 1.0203238667354275e+00 0 1 0 0 0 0 V -169 0 -2.8928990550329021e-06 2.1647251069569249e-04 -1.4197281003684953e-03 1.4371939816846338e-03 0 2 0 P 580 22 -3.0696663905783954e-02 5.1935094488637845e-01 -3.3586748325131177e+00 3.3987298097504519e+00 0 1 0 0 0 0 P 581 22 2.3602759823860214e-02 1.1478233054290611e-02 -1.2275150654431641e-01 1.2552598322359720e-01 0 1 0 0 0 0 V -170 0 1.6919739040782902e-05 -3.2044101303257666e-05 -9.8359179484206683e-05 1.2545570205184936e-04 0 2 0 P 582 22 -2.0531622183971959e-02 -8.6803465601195423e-02 -8.5943047031508582e-02 1.2386523516686750e-01 0 1 0 0 0 0 P 583 22 5.3663616699009639e-02 2.4055158073532819e-02 -1.0666251191472156e-01 1.2180035236040578e-01 0 1 0 0 0 0 V -171 0 -7.7438465697930508e-05 -1.7859683661331114e-06 -1.3365496281980500e-05 8.0786626347749703e-05 0 2 0 P 584 22 -5.5805214125256430e-01 2.3192038589827041e-03 -1.0380658424344613e-01 5.6762961338834639e-01 0 1 0 0 0 0 P 585 22 -2.3192406583812863e-03 -1.5243085451409337e-02 7.0892545035417800e-03 1.6970210980610995e-02 0 1 0 0 0 0 V -172 0 2.9022580700001683e-05 -4.5391484324243438e-06 -8.9289513659473495e-05 9.4805598784830853e-05 0 2 0 P 586 22 1.8437942630347848e-01 -2.8556934329159935e-02 -3.5669265164208319e-01 4.0254306487348696e-01 0 1 0 0 0 0 P 587 22 1.3277481156454293e-01 -2.1046172180775050e-02 -6.1904923523550126e-01 6.3347774041012817e-01 0 1 0 0 0 0 V -173 0 -2.0886862717690651e-05 -2.1916336306305102e-05 -1.4436289260793549e-04 1.5966331536504280e-04 0 2 0 P 588 22 -8.9971070157536720e-02 -5.0520047389248257e-02 -2.5570768345888062e-01 2.7574170528487596e-01 0 1 0 0 0 0 P 589 22 4.3840477098877617e-02 2.1157654658278818e-03 -6.3131289233131646e-02 7.6889684457675675e-02 0 1 0 0 0 0 V -174 0 3.3832266832888984e-06 -1.0246304122065040e-06 -1.5848375508357503e-05 1.6823398725782681e-05 0 2 0 P 590 22 7.1044144559767458e-02 -4.8601605748688888e-02 -1.1799955027489169e-01 1.4605916754061288e-01 0 1 0 0 0 0 P 591 22 3.2744966212775138e-02 1.7168453521940550e-02 -3.6818980538564611e-01 3.7004151307458844e-01 0 1 0 0 0 0 V -175 0 -4.0430836023137949e-05 -1.2663107763798574e-04 -4.5965670496984851e-03 4.5988079504474194e-03 0 2 0 P 592 22 -1.1968329836376970e-01 -1.5870711344983424e-01 -6.7883586246660812e+00 6.7912682804351929e+00 0 1 0 0 0 0 P 593 22 1.8963250306387423e-02 -1.5675231009404064e-01 -4.6624670243425772e+00 4.6651398312016257e+00 0 1 0 0 0 0 V -176 0 4.8832525661862613e-05 -1.5503606496377310e-04 -3.4694011358193610e-01 3.4694015931824346e-01 0 2 0 P 594 22 -2.7175114443983277e-02 -1.8146395152611322e-02 -9.9282705849792208e+01 9.9282711227256797e+01 0 1 0 0 0 0 P 595 22 1.1758964553740592e-01 -2.6890640267587373e-01 -5.4308479945226850e+02 5.4308487875661638e+02 0 1 0 0 0 0 V -177 0 -9.5228617878781428e-05 -2.5553132328505230e-04 -9.1365017905019760e-02 9.1365451536490255e-02 0 2 0 P 596 22 -1.6907597437727250e-02 -2.3643155857840764e-01 -7.5405197706311682e+01 7.5405570264249675e+01 0 1 0 0 0 0 P 597 22 -1.6722962221988050e-01 -2.5767229857337232e-01 -1.0126123666757731e+02 1.0126170259385877e+02 0 1 0 0 0 0 V -178 0 -1.6933633307672552e-05 -3.7097118102861439e-06 -1.0397336363914250e-03 1.0399454816776728e-03 0 2 0 P 598 22 -2.0167639988382907e-01 -6.5581312088371771e-02 -9.9822538032573132e+00 9.9845062607727595e+00 0 1 0 0 0 0 P 599 22 8.5409397075253256e-03 2.3270433815340379e-02 -1.8763609828709347e+00 1.8765247130750562e+00 0 1 0 0 0 0 V -179 0 -2.0002991024657301e-06 -1.1308915819339465e-06 -1.0246079175870370e-04 1.0249151771095355e-04 0 2 0 P 600 22 -8.8157256703761566e-02 -6.3015211259977680e-02 -2.5268963135077098e+00 2.5292187722651684e+00 0 1 0 0 0 0 P 601 22 -1.7954503758592863e-01 -8.8333289923385391e-02 -1.1185547487887781e+01 1.1187337118118103e+01 0 1 0 0 0 0 V -180 0 0 0 0 0 0 3 0 P 602 111 -1.5198417745041873e-01 -2.5144306727936844e-01 -2.6318067491419463e+01 2.6320053550279642e+01 1.3497999999999999e-01 2 0 0 -256 0 P 603 111 6.2400161957341917e-02 -5.6868403191086402e-02 -9.5808687362000740e+00 9.5821914579176415e+00 1.3497999999999999e-01 2 0 0 -257 0 P 604 111 -1.4049264342932852e-01 -1.5107192672385333e-01 -1.1552839063903088e+01 1.1555469308805549e+01 1.3497999999999999e-01 2 0 0 -258 0 V -181 0 0 0 0 0 0 1 0 P 605 130 6.2055958029386266e-02 -3.4962018284205576e-01 -8.3065040651613572e+01 8.3067290428286469e+01 4.9767000000000000e-01 1 0 0 0 0 V -182 0 1.7604281280648434e-05 5.3018712416083359e-06 -1.2556494737975907e-03 1.2559040445860484e-03 0 2 0 P 606 22 1.0451111182856271e-01 -3.6835591073633732e-02 -4.9767097431725205e+00 4.9779432802166079e+00 0 1 0 0 0 0 P 607 22 3.2373255624146044e-02 7.8060977083628941e-02 -4.7867552471334509e+00 4.7875011582016969e+00 0 1 0 0 0 0 V -183 0 6.4036011119070608e-06 2.6836198677350344e-05 -8.0893031512635559e-04 8.0958126765756004e-04 0 2 0 P 608 22 4.6958650794504661e-02 1.4035728538125188e-02 -7.0894732667893168e-01 7.1063945047065913e-01 0 1 0 0 0 0 P 609 22 3.5906326268208629e-03 1.9780610688943917e-01 -5.6766546264768580e+00 5.6801010463605790e+00 0 1 0 0 0 0 V -184 0 0 0 0 0 0 3 0 P 610 111 2.4565784349978834e-02 -4.2909017914833467e-02 -8.3727064411239152e+00 8.3739403754276296e+00 1.3497999999999999e-01 2 0 0 -259 0 P 611 111 5.7299834088727582e-02 5.4268431407621602e-02 -6.2709384780207538e+00 6.2728874793953775e+00 1.3497999999999999e-01 2 0 0 -260 0 P 612 111 -1.2747662037583917e-02 2.9114362334537469e-01 -1.8593502556389744e+01 1.8596276079558887e+01 1.3497999999999999e-01 2 0 0 -261 0 V -185 0 0 0 0 0 0 1 0 P 613 130 -2.1113129704430056e-01 -7.8267446138422014e-01 -1.1432479300277524e+01 1.1471983878879396e+01 4.9767000000000000e-01 1 0 0 0 0 V -186 0 4.2375377762527982e-06 -1.5031657962686908e-05 3.8444529127589479e-06 1.8691735603199147e-05 0 2 0 P 614 22 -9.0673713130004984e-04 -1.9159228751440596e-01 2.2806603929249429e-02 1.9294706007092649e-01 0 1 0 0 0 0 P 615 22 6.0968000143772384e-02 -2.1460765952132175e-02 3.1683222409588527e-02 7.1982554129724194e-02 0 1 0 0 0 0 V -187 0 -2.0125574598895956e-08 -1.1459990147548228e-06 3.1398307319488562e-06 3.6846010872942407e-06 0 2 0 P 616 22 -6.8276735331275956e-02 -5.4029935815429572e-02 1.4605401167639201e-01 1.7003741023223151e-01 0 1 0 0 0 0 P 617 22 6.6524679956606325e-02 -4.5736345306175603e-02 1.2728761553685833e-01 1.5072983578029159e-01 0 1 0 0 0 0 V -188 0 -1.8223189551448316e-04 4.6341447794514165e-05 8.8748778046711786e-04 9.0821052447199774e-04 0 2 0 P 618 22 -3.6646029372687616e-01 1.0971540272303038e-01 1.4886896083114105e+00 1.5370515171481554e+00 0 1 0 0 0 0 P 619 22 -2.0452892570816891e-01 3.5486769646276679e-02 1.2920856977698780e+00 1.3086545925693067e+00 0 1 0 0 0 0 V -189 0 0 0 0 0 0 2 0 P 620 22 -1.3592478834510965e-01 1.4360202876298389e-01 -1.5299726913022902e-02 1.9832088239799853e-01 0 1 0 0 0 0 P 621 22 1.3738286930996876e-01 -1.9776810548229173e-01 4.2179915938310353e-01 4.8569620873771246e-01 0 1 0 0 0 0 V -190 0 -1.2662300006013405e-06 1.6225863777371842e-06 1.0479213518406306e-04 1.0565477870310271e-04 0 2 0 P 622 22 -3.5449501497908251e-02 -5.2872839270416243e-02 4.8875054990855704e-01 4.9287858984224742e-01 0 1 0 0 0 0 P 623 22 2.2613726577128082e-02 6.9320999181544191e-02 5.7352744070279427e-01 5.7814401907857693e-01 0 1 0 0 0 0 V -191 0 1.6674270216022897e-05 7.2767970423141844e-06 1.3673207663892846e-05 3.2266822129948855e-05 0 2 0 P 624 22 6.4243609974721810e-02 9.0650935560738971e-02 6.8365291901692507e-02 1.3045553525023407e-01 0 1 0 0 0 0 P 625 22 3.4152745531255559e-02 -4.7709907291186800e-02 1.2321525858440584e-02 5.9953859596664522e-02 0 1 0 0 0 0 V -192 0 8.9452233018985094e-01 -1.3671202833897437e+01 -2.5498974510544496e+01 2.9391680641775487e+01 0 2 0 P 626 211 2.0456370299553014e-01 -9.9998271960900531e-01 -1.6146410257317434e+00 1.9152955842313015e+00 1.3957000000000000e-01 1 0 0 0 0 P 627 -211 -1.1720898495091987e-01 -3.3508073110700398e-01 -8.7546531775391334e-01 9.5495358526076524e-01 1.3957000000000000e-01 1 0 0 0 0 V -193 0 0 0 0 0 0 1 0 P 628 130 1.8280397341951998e-01 -2.0717309792349750e-01 -1.2494527048595880e+00 1.3730059999075475e+00 4.9767000000000000e-01 1 0 0 0 0 V -194 0 5.6917547429855065e-05 -1.2763620239298346e-04 -4.2417055835258511e-04 4.4829956502588007e-04 0 2 0 P 629 22 5.8582066977090765e-02 -2.9165544489853834e-01 -9.0468516458251458e-01 9.5233922744259780e-01 0 1 0 0 0 0 P 630 22 1.3839612745969107e-01 -1.5006331895230876e-01 -5.6326899877112235e-01 5.9911973157912601e-01 0 1 0 0 0 0 V -195 0 9.1433517053825418e-05 -1.2578144478695927e-04 -7.4307835897035766e-04 7.6108704431583326e-04 0 2 0 P 631 22 2.2016927847644024e-01 -3.1690587421144389e-01 -1.6354902758841243e+00 1.6803964671487757e+00 0 1 0 0 0 0 P 632 22 8.7348948763301716e-03 2.0115272606783291e-03 -2.2480934921190590e-01 2.2498797328635523e-01 0 1 0 0 0 0 V -196 0 5.3845411008648692e-07 3.5151076752171755e-08 -3.9874710364779027e-06 4.0299779356800045e-06 0 2 0 P 633 22 1.3702994588468598e-01 -2.8575624128022913e-02 -6.4723087845684046e-01 6.6219452005545898e-01 0 1 0 0 0 0 P 634 22 1.8922167924107403e-01 4.9873810362453065e-02 -1.7687947055689919e+00 1.7795861741719001e+00 0 1 0 0 0 0 V -197 0 -7.5756836665551860e-06 -1.3618396739926240e-05 -4.6953884939329544e-03 4.6956652152884970e-03 0 2 0 P 635 22 4.6818100452060286e-02 -1.5720249979250098e-03 -8.4230546596099476e+00 8.4231849204780858e+00 0 1 0 0 0 0 P 636 22 -6.7885800419506495e-02 -3.6300239629628604e-02 -4.6346494862866239e+00 4.6352887774153446e+00 0 1 0 0 0 0 V -198 0 -2.5191335009202400e-07 -8.7953909821019891e-07 -3.6402056581561127e-05 3.6413902323370778e-05 0 2 0 P 637 22 -1.4893017890001681e-01 -6.0196824695841322e-01 -2.6318519954056253e+01 2.6325824555758754e+01 0 1 0 0 0 0 P 638 22 -6.3966083674250010e-02 -1.4134522463207480e-01 -4.4454780373178790e+00 4.4481844737670828e+00 0 1 0 0 0 0 V -199 0 6.2667059645747793e-06 -4.7193946226226354e-05 -3.0265978671773675e-03 3.0271262480289032e-03 0 2 0 P 639 22 7.3182094008559920e-02 -1.6609130767989963e-01 -1.1108444940248951e+01 1.1109927584458545e+01 0 1 0 0 0 0 P 640 22 -4.5476332349896356e-02 -4.2558058233717749e-02 -2.2724603740672324e+00 2.2733137567943431e+00 0 1 0 0 0 0 V -200 0 0 0 0 0 0 2 0 P 641 -211 -7.9767742871423786e-01 -1.1136310426267717e+00 -5.0294918293053520e+01 5.0313763020362650e+01 1.3957000000000000e-01 1 0 0 0 0 P 642 211 -6.0648340961177272e-01 -5.8549006130133929e-01 -5.6878879055679853e+01 5.6885296722031548e+01 1.3957000000000000e-01 1 0 0 0 0 V -201 0 -1.0089056658339394e-06 1.0159472375689709e-05 -8.5916938504336114e-04 8.5924212403056509e-04 0 2 0 P 643 22 5.0375105348018812e-02 1.7209787201763546e-01 -1.4026225408228115e+01 1.4027371618775044e+01 0 1 0 0 0 0 P 644 22 -8.0261781577641134e-02 1.2885480556005860e-01 -1.1424833205829737e+01 1.1425841732473264e+01 0 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 645 211 7.5619508902436039e-01 2.2292749732996393e+00 -8.1985652290682751e+01 8.2019559613746267e+01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 -2.1052484930742254e-02 5.0033779000720124e-01 -2.4549557953783051e+01 2.4555036070789708e+01 1.3497999999999999e-01 2 0 0 -262 0 V -203 0 -2.4683007260201542e-05 1.3547891163158129e-05 -9.2589194268862364e-04 9.2638091067901687e-04 0 2 0 P 647 22 -2.2246172258074925e-01 1.6142246285981249e-01 -7.1159939857316727e+00 7.1213002207812206e+00 0 1 0 0 0 0 P 648 22 -9.1089944367162737e-02 1.0678278879483676e-02 -4.6457398655465472e+00 4.6466450587421768e+00 0 1 0 0 0 0 V -204 0 6.3320436653403915e-05 8.6719252453711427e-05 -5.1220980374190169e-05 1.1972585060815167e-04 0 2 0 P 649 22 5.9599973833512276e-01 7.6422983650241827e-01 -4.8934255061230914e-01 1.0856882899505771e+00 0 1 0 0 0 0 P 650 22 3.9321243705580954e-02 1.0586145696572193e-01 -2.4579419486246250e-02 1.1557229832334368e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 651 111 8.5659194132747876e-02 7.2101632010724592e-01 2.6174457215207042e-01 7.8353803535727395e-01 1.3497999999999999e-01 2 0 0 -263 0 P 652 111 3.3925073655297716e-01 5.6493721618355075e-01 1.9048525705506306e-01 6.9910611071302398e-01 1.3497999999999999e-01 2 0 0 -264 0 P 653 111 2.2235173982948103e-01 5.6518118441531895e-01 2.6076084756082024e-01 6.7460053916591067e-01 1.3497999999999999e-01 2 0 0 -265 0 V -206 0 4.9158819156064207e-05 1.0241114913738124e-04 -2.3639738800363421e-05 1.1638209052995072e-04 0 2 0 P 654 22 5.8175201568556645e-01 1.0737933247117768e+00 -2.4192975394827121e-01 1.2449889629210620e+00 0 1 0 0 0 0 P 655 22 1.5406547312504851e-01 4.5911401273352032e-01 -1.1191383991430620e-01 4.9703777951166350e-01 0 1 0 0 0 0 V -207 0 -6.9787203161186348e-06 1.5393947311331758e-05 2.7316597224555939e-05 3.2371201931631802e-05 0 2 0 P 656 22 -2.0366470769701323e-01 3.1174551865203626e-01 5.2976348748927915e-01 6.4754454228086933e-01 0 1 0 0 0 0 P 657 22 -3.1669888191870138e-02 2.0736517866014370e-01 3.9139971689539454e-01 4.4406873063145735e-01 0 1 0 0 0 0 V -208 0 0 0 0 0 0 1 0 P 658 310 2.0547318034247231e+00 1.5460664165183957e+00 9.1914734938153604e+00 9.5573586604616541e+00 4.9767000000000000e-01 2 0 0 -266 0 V -209 0 1.3085028778714826e-05 2.3578293888966714e-05 1.1656406773575188e-04 1.1984282100910176e-04 0 2 0 P 659 22 4.9998603139709587e-02 6.1688958017312757e-02 5.9189737557473832e-01 5.9720004275740535e-01 0 1 0 0 0 0 P 660 22 2.0502338576415605e-01 3.9784258021708230e-01 1.6798897860287378e+00 1.7384887116537919e+00 0 1 0 0 0 0 V -210 0 0 0 0 0 0 1 0 P 661 130 2.7768241937945476e-01 4.5333193564454477e-01 5.2553978027049704e+00 5.3056101311238359e+00 4.9767000000000000e-01 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 662 130 3.5861398927706212e-01 6.7449636293101645e-01 4.7999293610009914e+00 4.8857493423641545e+00 4.9767000000000000e-01 1 0 0 0 0 V -212 0 3.4901394884890957e-05 2.7471227735527664e-04 3.0413428477652983e-03 3.0546464367161232e-03 0 2 0 P 663 22 -2.8092599584449408e-02 1.7109970184724746e-01 2.2939908243162250e+00 2.3005343301439045e+00 0 1 0 0 0 0 P 664 22 9.9004000856366819e-02 3.8705084193790690e-01 3.8853003987037544e+00 3.9057866473474925e+00 0 1 0 0 0 0 V -213 0 -1.3039908393202797e-06 1.0948643475750009e-04 2.5922144816470337e-03 2.5951608246332723e-03 0 2 0 P 665 22 4.3585451585758349e-02 5.6564583059581695e-02 8.9652305917519104e-01 8.9936246268091602e-01 0 1 0 0 0 0 P 666 22 -4.6651852742813582e-02 2.0089836844186743e-01 5.1992018847218038e+00 5.2032909574519959e+00 0 1 0 0 0 0 V -214 0 4.5050031860075251e-05 -1.0379852942101263e-05 2.2188920200998398e-03 2.2194837046539836e-03 0 2 0 P 667 22 2.2711763125332571e-01 3.3032882250066792e-03 8.9679874960464829e+00 8.9708635626334932e+00 0 1 0 0 0 0 P 668 22 4.7904157482844156e-02 -6.6670296084661407e-02 4.5779219558198161e+00 4.5786580097514689e+00 0 1 0 0 0 0 V -215 0 4.4715300543487948e-04 -1.3161106541661327e-04 1.5723665429038709e-02 1.5730644184315669e-02 0 2 0 P 669 22 1.0858910532016617e+00 -3.4154261798426194e-01 3.9659297972680164e+01 3.9675631392898538e+01 0 1 0 0 0 0 P 670 22 1.8805668184777466e-01 -3.3419904143648510e-02 5.1377350708921892e+00 5.1412842621524177e+00 0 1 0 0 0 0 V -216 0 1.2052079113257131e-04 -6.6545605011428550e-05 4.9890120985934009e-03 4.9909881431738088e-03 0 2 0 P 671 22 3.5312900544511794e-01 -2.6371029406331681e-01 1.4856032413102762e+01 1.4862568495143815e+01 0 1 0 0 0 0 P 672 22 2.3413795609960436e-01 -6.0549403304827450e-02 9.4541463429259220e+00 9.4572390202525085e+00 0 1 0 0 0 0 V -217 0 9.3898593721197926e-06 -1.7633453004021853e-05 2.9784239842320002e-04 2.9852169654282884e-04 0 2 0 P 673 22 2.3363741318695100e-01 -4.9061132663488061e-01 9.0282897762467940e+00 9.0446283615494973e+00 0 1 0 0 0 0 P 674 22 2.8375598114041345e-01 -4.8101473738819345e-01 7.3832115453106679e+00 7.4043031648647633e+00 0 1 0 0 0 0 V -218 0 -1.7972226072579070e-05 7.6661755231132566e-06 2.0787681017181963e-03 2.0789898585612913e-03 0 2 0 P 675 22 -5.3211369160464206e-02 -4.5169370859406512e-02 6.0509300609327363e+00 6.0513326072999183e+00 0 1 0 0 0 0 P 676 22 -5.1159158513463511e-02 8.9689330788525035e-02 6.0211484234952328e+00 6.0220336908154399e+00 0 1 0 0 0 0 V -219 0 -7.0719324829628851e-05 1.4300002963269477e-05 4.9523638398014007e-03 4.9531878456177143e-03 0 2 0 P 677 22 -7.4299845539108331e-02 7.3058331866373602e-02 4.0585954160174280e+00 4.0599328489298836e+00 0 1 0 0 0 0 P 678 22 -1.0125676069206678e-01 -3.7559407132924438e-02 8.2353594631059241e+00 8.2360675766544293e+00 0 1 0 0 0 0 V -220 0 -6.8473444992057559e-05 2.7728345241087935e-05 8.8510557274087184e-03 8.8513902557674808e-03 0 2 0 P 679 22 -2.5667119109564374e-01 1.5130310465482605e-01 2.9181077568842163e+01 2.9182598595885874e+01 0 1 0 0 0 0 P 680 22 -1.7217388212622242e-01 2.2357856125149782e-02 2.6252552825417791e+01 2.6253126929392028e+01 0 1 0 0 0 0 V -221 0 -4.5415391996769989e-04 -1.7581184549878557e-04 3.0020676628878553e-02 3.0024736547713315e-02 0 2 0 P 681 22 -2.7640961182208976e-02 -4.0927079443244398e-02 3.9092903878311231e+00 3.9096023307947378e+00 0 1 0 0 0 0 P 682 22 -7.2613651870016804e-01 -2.5087489342747232e-01 4.5917230927429685e+01 4.5923657394624477e+01 0 1 0 0 0 0 V -222 0 -1.8561566349323393e-05 -1.4101832690252628e-05 1.5130421827429449e-03 1.5132313937307883e-03 0 2 0 P 683 22 -3.8823971798824114e-01 -2.3483764699368548e-01 3.0710958058471366e+01 3.0714309754058551e+01 0 1 0 0 0 0 P 684 22 -7.5327217409673020e-02 -1.1734940665724881e-01 7.0766033241101862e+00 7.0779770895173728e+00 0 1 0 0 0 0 V -223 0 -2.7096215377667401e-05 -9.4077183843389186e-06 1.9196895983421012e-03 1.9199328598979962e-03 0 2 0 P 685 22 -2.7457964602605978e-01 -6.3034070095700431e-02 2.1122186514372824e+01 2.1124065196452076e+01 0 1 0 0 0 0 P 686 22 -7.2066696737583508e-02 -5.7320419497307672e-02 3.4367184556238697e+00 3.4379518586646514e+00 0 1 0 0 0 0 V -224 0 -4.0315564669965845e-05 -1.8802972825323201e-05 4.6876215983086078e-03 4.6878543031888638e-03 0 2 0 P 687 22 -4.8548275806150620e-02 1.7933008297337100e-02 3.6015564038904935e+00 3.6019282416887437e+00 0 1 0 0 0 0 P 688 22 -3.3355798437250495e-01 -1.9614541051323847e-01 4.0827179066526320e+01 4.0829012778675029e+01 0 1 0 0 0 0 V -225 0 3.8563578415459930e-07 1.1076672400377567e-05 1.5035263966262703e-03 1.5036046340201252e-03 0 2 0 P 689 22 2.9885350164238739e-02 -5.2017381174461344e-03 7.3553843293559940e+00 7.3554468813777456e+00 0 1 0 0 0 0 P 690 22 -2.4976179396239619e-02 1.4620856006952054e-01 1.1784612886964849e+01 1.1785546302492422e+01 0 1 0 0 0 0 V -226 0 -1.1351605651964258e-06 2.3558266260399685e-05 5.0311212057424788e-02 5.0311221621534265e-02 0 2 0 P 691 22 -3.5389390693338803e-02 1.7170492232528770e-01 2.7057580139464210e+02 2.7057585819016100e+02 0 1 0 0 0 0 P 692 22 2.7785794189879073e-02 -1.3905614934661033e-02 6.6421595989807216e+01 6.6421603257145634e+01 0 1 0 0 0 0 V -227 0 -4.0852408095020198e+00 4.4119665626359836e+00 2.9806076459555463e+01 3.0408703607162181e+01 0 2 0 P 693 -313 -1.7287238065448872e+01 1.8107144069462322e+01 1.2391078956492863e+02 1.2641737005665665e+02 8.6626505982543911e-01 2 0 0 -267 0 P 694 221 -3.6444230015903263e+00 4.4985707548404257e+00 2.8807426883545840e+01 2.9388543737384570e+01 5.4744999999999999e-01 2 0 0 -268 0 V -228 0 -1.5962064007174104e-05 1.8599175826864830e-05 9.8620647227013128e-05 1.0168133693179429e-04 0 2 0 P 695 22 -2.4957544838881629e-01 3.4152518145963751e-01 1.9408256386021074e+00 1.9863865468394601e+00 0 1 0 0 0 0 P 696 22 -3.6363003582962639e-01 3.7298871936488021e-01 1.8478273645180787e+00 1.9198472222530463e+00 0 1 0 0 0 0 V -229 0 -8.6584493948813404e-04 6.2251570934738706e-04 5.0015647097340207e-03 5.1147034110785505e-03 0 2 0 P 697 22 -1.1811466962474135e+00 8.7046457344579709e-01 6.6626020593032074e+00 6.8222490640778908e+00 0 1 0 0 0 0 P 698 22 -1.8410202496505168e-01 1.1110699596664753e-01 1.2237751805551604e+00 1.2425232443265517e+00 0 1 0 0 0 0 V -230 0 -2.2022026218777377e-05 -6.9766990377877875e-05 6.9929338616690545e-04 7.0311540310211672e-04 0 2 0 P 699 22 -9.8404766839653979e-01 -2.9828394358817469e+00 3.0169934157043009e+01 3.0332995367326294e+01 0 1 0 0 0 0 P 700 22 -9.2253852147105686e-02 -4.2694298293297006e-01 4.0072358889992348e+00 4.0309714156757757e+00 0 1 0 0 0 0 V -231 0 1.4607894596227559e-04 -1.2522514164476450e-05 -1.9228993747466555e-04 2.4542552925195955e-04 0 2 0 P 701 22 4.7037065708500775e-01 -4.0393801074596315e-02 -5.6688482832110731e-01 7.3772530307187711e-01 0 1 0 0 0 0 P 702 22 -6.8749832593803712e-04 1.3054500006658842e-04 -5.1379115437143651e-02 5.1383880731691187e-02 0 1 0 0 0 0 V -232 0 0 0 0 0 0 3 0 P 703 111 4.2739045701660885e-02 1.0298020136158055e-01 -2.1095706053552717e-02 1.7634108175311342e-01 1.3497999999999999e-01 2 0 0 -269 0 P 704 111 -6.7738841666035943e-02 9.0317835542300703e-02 -2.9446885216960672e-01 3.4304134938136549e-01 1.3497999999999999e-01 2 0 0 -270 0 P 705 111 1.1356855787594988e-01 1.0457050088663415e-01 -2.8116539618648956e-01 3.4800343016471857e-01 1.3497999999999999e-01 2 0 0 -271 0 V -233 0 -9.8807503776914395e-05 -4.4256395200364485e-06 3.0009681987826627e-04 3.1734570102289730e-04 0 2 0 P 706 22 -2.3747771017602051e-01 -3.6828094205510017e-02 5.3078459624249641e-01 5.8265277735677690e-01 0 1 0 0 0 0 P 707 22 -2.1529335472247066e-01 1.6548242557118086e-02 8.4436558481773449e-01 8.7153790149595878e-01 0 1 0 0 0 0 V -234 0 -1.3343419136259136e-05 8.8172763107796499e-06 2.4781445354529671e-04 2.4838691929845411e-04 0 2 0 P 708 22 -1.1069208878414616e-01 1.2362235880036440e-02 2.1412521384058070e+00 2.1441469827469368e+00 0 1 0 0 0 0 P 709 22 -2.2807089429396227e-01 2.1149094561427259e-01 4.1502660006557930e+00 4.1619049279266696e+00 0 1 0 0 0 0 V -235 0 0 0 0 0 0 1 0 P 710 130 -1.9193621521217133e-01 -2.3692350997476644e-01 1.4272914923514785e+01 1.4284843299913366e+01 4.9767000000000000e-01 1 0 0 0 0 V -236 0 -4.9173741523610300e-07 -2.8231626059730856e-05 1.2130198632720884e-03 1.2133947740675857e-03 0 2 0 P 711 22 4.5659227836569373e-02 -5.4267762753296790e-02 3.7851367103962779e+00 3.7858010607466466e+00 0 1 0 0 0 0 P 712 22 -5.1919251975383052e-02 -3.0513271224822569e-01 1.1657116389864099e+01 1.1661224811641691e+01 0 1 0 0 0 0 V -237 0 3.4780725957767230e-05 1.3466842677393332e-05 2.3651383825515891e-03 2.3655190181051966e-03 0 2 0 P 713 22 7.9434010516794676e-02 -3.4093622006146684e-02 4.6833893662217738e+00 4.6841870258058096e+00 0 1 0 0 0 0 P 714 22 1.5253353024023511e-01 1.2390975699510379e-01 1.1090730323422887e+01 1.1092471285183393e+01 0 1 0 0 0 0 V -238 0 -1.5700476861816500e-06 1.1147776318791988e-05 5.9279280025519758e-04 5.9296128367215383e-04 0 2 0 P 715 22 1.8405545956832282e-02 1.2366252731534935e-02 2.2443568316315843e-01 2.2552841108273447e-01 0 1 0 0 0 0 P 716 22 -4.3202374413500728e-02 1.6369814294466983e-01 9.1379432481577734e+00 9.1395114931658519e+00 0 1 0 0 0 0 V -239 0 -4.1014884837374636e-06 8.5154278046840565e-06 1.0680809233300135e-03 1.0683547685236693e-03 0 2 0 P 717 22 -7.2519538370332384e-02 4.5191535585545700e-02 2.6947940093504918e+00 2.6961483844857881e+00 0 1 0 0 0 0 P 718 22 4.7654243847644544e-02 6.4332882289559710e-03 3.7804519502490708e+00 3.7807577629750533e+00 0 1 0 0 0 0 V -240 0 1.8643645296569204e+01 9.5301875837979786e+00 -1.0802794025360505e+02 1.1055873670618107e+02 0 2 0 P 719 211 2.9667171604553601e-02 6.3423086837839579e-02 -5.3410130191815075e-01 5.5645899635617158e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 -211 8.3634359201793995e-01 3.7926099643150113e-01 -4.4838743966865247e+00 4.5790740218394186e+00 1.3957000000000000e-01 1 0 0 0 0 V -241 0 -1.9600386122540119e-05 -2.2816553745930680e-05 -1.6481542214150221e-04 1.6897918716521658e-04 0 2 0 P 721 22 -6.5213084559980969e-02 -5.6012830371619769e-03 -1.5418147241880500e-01 1.6749939464583252e-01 0 1 0 0 0 0 P 722 22 -5.4911229683843134e-02 -1.3423386383197944e-01 -8.5591799387622747e-01 8.6811841679909074e-01 0 1 0 0 0 0 V -242 0 3.2473067479626193e-06 8.6478754431517432e-06 -1.4523519793231982e-03 1.4523824126556710e-03 0 2 0 P 723 22 6.5014317219318912e-02 3.3089783986960386e-01 -4.6520753034836375e+01 4.6521975271586570e+01 0 1 0 0 0 0 P 724 22 1.8514909065050719e-01 3.3531023950261502e-01 -6.5364371707977369e+01 6.5365493969839449e+01 0 1 0 0 0 0 V -243 0 2.7781582362652802e-06 -1.2498670934278268e-05 -4.5931745621900083e-03 4.5932080682907200e-03 0 2 0 P 725 22 6.7137564294123916e-02 -1.8041533057543978e-02 -1.9230917444427988e+01 1.9231043099734844e+01 0 1 0 0 0 0 P 726 22 -3.5873247482795731e-02 -1.2261366890644591e-01 -3.2458890143742003e+01 3.2459141553115657e+01 0 1 0 0 0 0 V -244 0 -1.2123079171377019e-04 1.9311706993073923e-04 -2.1891217626590637e-04 3.1772900602578669e-04 0 2 0 P 727 22 -4.7287171570933217e-01 7.8532228881151367e-01 -9.0234733246393040e-01 1.2863006900514407e+00 0 1 0 0 0 0 P 728 22 -3.5016879275271980e-02 2.3729239501865368e-02 -1.4771132712968114e-02 4.4804519896322663e-02 0 1 0 0 0 0 V -245 0 -4.0570719045049582e-05 1.1873151881102439e-04 2.3329402455555494e-05 1.3388261243555341e-04 0 2 0 P 729 22 -4.3200695854501793e-02 4.2660092647185989e-02 5.2923112099746449e-02 8.0542159278864600e-02 0 1 0 0 0 0 P 730 22 -9.2143531569532977e-02 3.5342915749690662e-01 2.4903951998019747e-02 3.6609125447652863e-01 0 1 0 0 0 0 V -246 0 -6.4407073161940026e-06 -4.3827646308723959e-05 1.0563051878629145e-04 1.2105178511067767e-04 0 2 0 P 731 22 -6.9880613432817592e-04 1.7587436312789792e-02 1.1077342858584772e-01 1.1216308985906957e-01 0 1 0 0 0 0 P 732 22 -2.1502456871700062e-02 -1.6866231906497700e-01 2.5333734588472206e-01 3.0510513654117771e-01 0 1 0 0 0 0 V -247 0 5.2525947740168499e-05 -5.2740550224466365e-05 1.1605547540530303e-04 1.4389319538440844e-04 0 2 0 P 733 22 3.9078829641001837e-02 -1.1706980434027468e-01 1.1083760862260922e-01 1.6588390367832356e-01 0 1 0 0 0 0 P 734 22 1.3308868335446436e-01 -5.5801124349601848e-02 2.6956452460262970e-01 3.0576362772564419e-01 0 1 0 0 0 0 V -248 0 5.2809519699686757e-05 -5.1266881149386633e-04 5.7453160900791103e-04 7.8141098314404595e-04 0 2 0 P 735 22 9.7600697200200520e-03 -3.2456896067877727e-01 2.6635449124036736e-01 4.1998212366832505e-01 0 1 0 0 0 0 P 736 22 4.8639794617683120e-02 -2.4237028080027190e-01 3.6899626018832515e-01 4.4414797384275345e-01 0 1 0 0 0 0 V -249 0 -6.3413024930184732e-05 9.1753028893624402e-06 -2.3567262698639863e-05 1.0277943566168656e-04 0 2 0 P 737 22 -1.1128502213832954e-01 -1.0475931928758573e-02 -7.7295383784523566e-02 1.3589951308412132e-01 0 1 0 0 0 0 P 738 22 -1.2362770088989640e-04 2.6595776517392686e-02 3.5890689393231784e-02 4.4670932355313137e-02 0 1 0 0 0 0 V -250 0 -2.0879243579659834e-05 -3.6515994246880781e-05 -3.7966037237736409e-05 6.1339044355150646e-05 0 2 0 P 739 22 -1.2829534012476428e-02 -1.4055483880728598e-01 -1.5656824190454555e-01 2.1079343924372912e-01 0 1 0 0 0 0 P 740 22 -1.0715729772895609e-01 -6.9291769900316658e-02 -6.1611334599415944e-02 1.4170388979704035e-01 0 1 0 0 0 0 V -251 0 -2.0289116318468185e-05 -1.0128395314239143e-05 -3.6019315172241768e-05 4.4657100603882676e-05 0 2 0 P 741 22 -1.2614204768062231e-02 -5.5621903820553341e-02 -1.4427147077917865e-01 1.5513597786245745e-01 0 1 0 0 0 0 P 742 22 -1.9003411400498232e-01 -4.5540820572280503e-02 -2.1549055869704151e-01 2.9090051858258753e-01 0 1 0 0 0 0 V -252 0 -2.5915768815438661e+01 6.2347305721296337e+01 -2.0867135438944686e+02 2.9868127964949502e+02 0 2 0 P 743 -2112 -6.5278838306092574e-02 1.4662599905875415e-01 -1.0105812467606727e+00 1.3891820440586347e+00 9.3957000000000002e-01 1 0 0 0 0 P 744 111 -6.0585977185179371e-02 1.4426674395681763e-01 -2.2017590981789842e-01 3.0196123212678211e-01 1.3497999999999999e-01 2 0 0 -272 0 V -253 0 -1.9059835983870596e+02 2.4544336590766727e+02 -3.7517053603582610e+02 5.1086178237888146e+02 0 2 0 P 745 22 2.3229348658376014e-02 2.8745348459297632e-02 -6.1781442709226572e-02 7.1991974277500453e-02 0 1 0 0 0 0 P 746 22 -1.5857145841354026e-01 3.0704956234768260e-01 -3.1125985703318737e-01 4.6508820643144760e-01 0 1 0 0 0 0 V -254 0 0 0 0 0 0 1 0 P 747 130 -1.1517162604787076e-01 5.4413683156623260e-01 -1.5248356733978932e+00 1.6976892102738521e+00 4.9767000000000000e-01 1 0 0 0 0 V -255 0 3.7455019864559853e+02 1.4345695348849577e+02 8.3280872980257854e+01 4.1045216245822763e+02 0 2 0 P 748 211 1.5827881540866258e+00 4.7106397823454199e-01 4.2426570342195452e-01 1.7107310672070075e+00 1.3957000000000000e-01 1 0 0 0 0 P 749 -211 5.6319024049611066e+00 2.2922439353797839e+00 1.1799137369110710e+00 6.1955131482181152e+00 1.3957000000000000e-01 1 0 0 0 0 V -256 0 -1.7609266740374231e-05 -2.9132822350436480e-05 -3.0492770913522500e-03 3.0495072010966831e-03 0 2 0 P 750 22 1.4990326483478608e-02 5.4903721937029958e-03 -1.8134069279429001e+00 1.8134771959928842e+00 0 1 0 0 0 0 P 751 22 -1.6697450393389734e-01 -2.5693343947307140e-01 -2.4504660563476563e+01 2.4506576354286757e+01 0 1 0 0 0 0 V -257 0 3.2958872745606904e-06 -3.0037076911790812e-06 -5.0604777866546590e-04 5.0611764293408254e-04 0 2 0 P 752 22 2.2721861408535004e-02 -9.8556982857311362e-02 -5.7278868502184395e+00 5.7287797593170842e+00 0 1 0 0 0 0 P 753 22 3.9678300548806916e-02 4.1688579666224954e-02 -3.8529818859816345e+00 3.8534116986005551e+00 0 1 0 0 0 0 V -258 0 -1.5560577420798293e-05 -1.6732309639245869e-05 -1.2795605684102263e-03 1.2798518870760396e-03 0 2 0 P 754 22 -5.3038950273344231e-02 -2.2457811510768626e-02 -1.1275348282929900e+00 1.1290049922642742e+00 0 1 0 0 0 0 P 755 22 -8.7453693155984294e-02 -1.2861411521308469e-01 -1.0425304235610097e+01 1.0426464316541274e+01 0 1 0 0 0 0 V -259 0 1.2127459648962932e-07 -2.1183015202167516e-07 -4.1333774680566961e-05 4.1339866278646878e-05 0 2 0 P 756 22 7.7491368829905885e-02 -3.6216150559768160e-03 -4.7767435692332310e+00 4.7773734577223266e+00 0 1 0 0 0 0 P 757 22 -5.2925584479927047e-02 -3.9287402858856652e-02 -3.5959628718906842e+00 3.5965669177053048e+00 0 1 0 0 0 0 V -260 0 1.5934098538830402e-05 1.5091117580860758e-05 -1.7438401564130034e-03 1.7443821401804866e-03 0 2 0 P 758 22 5.5151851412419593e-02 -3.3911629620082533e-02 -3.3191801225698048e+00 3.3198115023898893e+00 0 1 0 0 0 0 P 759 22 2.1479826763079858e-03 8.8180061027704135e-02 -2.9517583554509490e+00 2.9530759770054882e+00 0 1 0 0 0 0 V -261 0 -1.7223915427885896e-06 3.9337669378779910e-05 -2.5122482428168854e-03 2.5126229854823393e-03 0 2 0 P 760 22 5.8655098468750116e-03 3.7692063185602039e-02 -7.5470679129459672e-01 7.5567019039997696e-01 0 1 0 0 0 0 P 761 22 -1.8613171884458928e-02 2.5345156015977266e-01 -1.7838795765095149e+01 1.7840605889158912e+01 0 1 0 0 0 0 V -262 0 -9.3948576754896015e-06 2.2328016584505534e-04 -1.0955457454582001e-02 1.0957902112767320e-02 0 2 0 P 762 22 -5.0950941356129688e-02 1.2209110728299701e-01 -8.2628515649179786e+00 8.2639105888659117e+00 0 1 0 0 0 0 P 763 22 2.9898456425387434e-02 3.7824668272420425e-01 -1.6286706388865070e+01 1.6291125481923796e+01 0 1 0 0 0 0 V -263 0 6.1633689285262761e-06 5.1878722760601328e-05 1.8833102267019005e-05 5.6377298786579516e-05 0 2 0 P 764 22 1.7682297997734912e-02 8.3226944712129283e-02 8.0233579123181159e-02 1.1694791664459997e-01 0 1 0 0 0 0 P 765 22 6.7976896135012968e-02 6.3778937539511671e-01 1.8151099302888926e-01 6.6659011871267415e-01 0 1 0 0 0 0 V -264 0 1.8878387064893664e-04 3.1437230005279955e-04 1.0599989993771728e-04 3.8903366552932685e-04 0 2 0 P 766 22 2.1694135762436606e-01 4.4562423378417826e-01 1.8214973267413509e-01 5.2803696413877876e-01 0 1 0 0 0 0 P 767 22 1.2230937892861110e-01 1.1931298239937251e-01 8.3355243809279909e-03 1.7106914657424521e-01 0 1 0 0 0 0 V -265 0 1.7295487096358786e-04 4.3962254982382067e-04 2.0283114841747595e-04 5.2473369128068850e-04 0 2 0 P 768 22 1.7431045394837338e-01 5.4075884198754354e-01 2.4176407297504637e-01 6.1745779331455575e-01 0 1 0 0 0 0 P 769 22 4.8041285881107669e-02 2.4422342427775419e-02 1.8996774585773857e-02 5.7142745851354912e-02 0 1 0 0 0 0 V -266 0 9.7926344042242124e+02 7.3683889821430660e+02 4.3805590301872589e+03 4.5549360298970932e+03 0 2 0 P 770 111 1.5182609249380501e+00 9.9274706040813310e-01 6.9115554681079177e+00 7.1469211239018993e+00 1.3497999999999999e-01 2 0 0 -273 0 P 771 111 5.3647087848667308e-01 5.5331935611026273e-01 2.2799180257074427e+00 2.4104375365597552e+00 1.3497999999999999e-01 2 0 0 -274 0 V -267 0 -4.0852408095020198e+00 4.4119665626359836e+00 2.9806076459555463e+01 3.0408703607162181e+01 0 2 0 P 772 -311 -6.5002647724071911e+00 6.8707865706696261e+00 4.7445239473588323e+01 4.8381396986301830e+01 4.9767000000000000e-01 2 0 0 -275 0 P 773 111 -1.0786973293041681e+01 1.1236357498792698e+01 7.6465550091340333e+01 7.8035973070354842e+01 1.3497999999999999e-01 2 0 0 -276 0 V -268 0 -4.0852408095020198e+00 4.4119665626359836e+00 2.9806076459555463e+01 3.0408703607162181e+01 0 2 0 P 774 22 -1.7872574287375875e+00 2.5330602009611738e+00 1.4475416570776476e+01 1.4803660628229135e+01 0 1 0 0 0 0 P 775 22 -1.8571655728527388e+00 1.9655105538792521e+00 1.4332010312769366e+01 1.4584883109155442e+01 0 1 0 0 0 0 V -269 0 3.7154563652519642e-06 8.9524330354653774e-06 -1.8339243202407512e-06 1.5329953767066961e-05 0 2 0 P 776 22 6.3859051631843466e-02 -2.4614784613046174e-03 -2.5276866367184531e-02 6.8723775542954849e-02 0 1 0 0 0 0 P 777 22 -2.1120005930182584e-02 1.0544167982288516e-01 4.1811603136318130e-03 1.0761730621015884e-01 0 1 0 0 0 0 V -270 0 -1.0592517834549823e-04 1.4123260159605613e-04 -4.6046942811688431e-04 5.3642364143526033e-04 0 2 0 P 778 22 -7.9237779786833107e-02 1.1388368357360058e-01 -2.8140298214947290e-01 3.1374473301149663e-01 0 1 0 0 0 0 P 779 22 1.1498938120797155e-02 -2.3565848031299876e-02 -1.3065870020133829e-02 2.9296616369869109e-02 0 1 0 0 0 0 V -271 0 3.8986105743946242e-05 3.5897229669120207e-05 -9.6519178127085471e-05 1.1946350980768113e-04 0 2 0 P 780 22 6.9979967972612578e-02 9.3849659400981944e-02 -2.7956563220731157e-01 3.0308727653697726e-01 0 1 0 0 0 0 P 781 22 4.3588589903337305e-02 1.0720841485652206e-02 -1.5997639791779910e-03 4.4916153627741623e-02 0 1 0 0 0 0 V -272 0 -2.5915782602208417e+01 6.2347338550219384e+01 -2.0867140449204015e+02 2.9868134836291978e+02 0 2 0 P 782 22 -7.2399315713901291e-02 1.5945933960199962e-01 -2.2185206376396563e-01 2.8264337971811343e-01 0 1 0 0 0 0 P 783 22 1.1813338528721923e-02 -1.5192595645181989e-02 1.6761539460672112e-03 1.9317852408668630e-02 0 1 0 0 0 0 V -273 0 9.7926398567689864e+02 7.3683925474049443e+02 4.3805615123406906e+03 4.5549385965776146e+03 0 2 0 P 784 22 9.9948213796932339e-01 6.7062355572270060e-01 4.3350466600893087e+00 4.4990365682845201e+00 0 1 0 0 0 0 P 785 22 5.1877878696872681e-01 3.2212350468543255e-01 2.5765088080186098e+00 2.6478845556173791e+00 0 1 0 0 0 0 V -274 0 9.7926345592871007e+02 7.3683891420758800e+02 4.3805590960865811e+03 4.5549360995689840e+03 0 2 0 P 786 22 3.1210161743649739e-01 3.9757005776707671e-01 1.5908267373589231e+00 1.6691911450566199e+00 0 1 0 0 0 0 P 787 22 2.2436926105017566e-01 1.5574929834318602e-01 6.8909128834851974e-01 7.4124639150313532e-01 0 1 0 0 0 0 V -275 0 -4.0852408095020198e+00 4.4119665626359836e+00 2.9806076459555463e+01 3.0408703607162181e+01 0 1 0 P 788 130 -6.5002647724071911e+00 6.8707865706696261e+00 4.7445239473588323e+01 4.8381396986301830e+01 4.9767000000000000e-01 1 0 0 0 0 V -276 0 -4.0868872455198932e+00 4.4136815890102161e+00 2.9817747540254075e+01 3.0420614384473151e+01 0 2 0 P 789 22 -7.1345386599059291e+00 7.3417337704543604e+00 5.0180994434303138e+01 5.1214596542992361e+01 0 1 0 0 0 0 P 790 22 -3.6524346331357522e+00 3.8946237283383383e+00 2.6284555657037195e+01 2.6821376527362492e+01 0 1 0 0 0 0 E 51 31 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 246 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 1.8582102320166369e+00 2.9913069795277231e-01 1.1928059976787208e+02 1.1929544796606493e+02 0 3 0 0 -3 0 P 17 1 -8.3786303347136304e-01 -4.5759205428748573e-01 1.3742240765647023e+02 1.3742611990102932e+02 3.3000000000000002e-01 2 0 0 -9 0 P 41 2203 -1.0203471985452739e+00 1.5846135633471339e-01 2.1275330893360683e+03 2.1275334797338091e+03 7.7132999999999996e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 -3.0456644357263403e+00 -4.0682367726029722e-01 -2.4918036701833199e+02 2.4919931156556203e+02 0 3 0 0 -4 0 P 11 2112 1.6041960233963943e+00 -1.0659793814447915e-01 -2.7032492536168834e+03 2.7032498949930664e+03 9.3957000000000002e-01 1 0 0 0 0 P 96 2 1.4414684123299459e+00 5.1342161540477638e-01 -1.9232545456009634e+03 1.9232551826285837e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 10 0 P 5 2 -4.1744354612232861e+00 7.7093083909944804e+00 1.2423679390929992e+01 1.5205497587911918e+01 0 3 0 0 -5 0 P 12 -2 2.5095993735048543e+00 -7.6634694188571446e+00 2.4064305015912520e+01 2.5381617924161713e+01 3.3000000000000002e-01 2 0 0 -9 0 P 13 21 7.7139535957787708e-01 -5.8282428932873320e-01 2.5313729980702129e+00 2.7097203192153989e+00 0 2 0 0 -9 0 P 14 21 5.0324870484759865e-01 -4.5842409413167645e-01 6.9216949394023342e+00 6.9550897005832439e+00 0 2 0 0 -9 0 P 15 21 8.6476741723290240e-01 1.0313616953365751e-01 2.8590905639175517e+01 2.8604166567540684e+01 0 2 0 0 -9 0 P 16 21 -6.5023028998976096e-01 3.1300142050855817e-01 4.0069964082174812e+00 4.0714603688023709e+00 0 2 0 0 -9 0 P 42 21 1.3885793005017060e+00 2.1616658775541434e-01 2.4399180491719385e+01 2.4439617205163902e+01 0 2 0 0 -15 0 P 43 21 -5.5421833373998343e-02 1.6632685650468154e-01 1.2281891627658688e+01 1.2283142845231502e+01 0 2 0 0 -15 0 P 44 21 -3.6431990661326907e-01 -2.3891382707444755e-01 1.2137131398040828e+00 1.2895380556056286e+00 0 2 0 0 -15 0 P 45 21 1.0627786334116232e+00 7.0103552390454937e-01 -1.9595044195601274e-01 1.2881559708028993e+00 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 5 0 P 6 -1 -8.8904439937770274e-01 -1.4132412548568171e-01 -1.4068000605335862e+02 1.4068288622154981e+02 0 3 0 0 -5 0 P 92 21 5.8973710913770672e-01 7.2149718361312731e-02 -6.0234475815094100e+01 6.0237405921560978e+01 0 2 0 0 -15 0 P 93 21 -4.3776960893028621e-01 -2.1245196467942937e-01 -1.4254830711748106e+01 1.4263133480704587e+01 0 2 0 0 -15 0 P 94 21 -1.7387985095244032e+00 -4.1050264675703008e-01 -2.7250269674654295e+01 2.7308773865208636e+01 0 2 0 0 -15 0 P 95 21 -5.6754009289084772e-01 3.1909271944329937e-01 -3.7179742045342286e+00 3.7745534975970605e+00 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -6.9086486546667398e+00 -1.7244390059097829e+00 -4.6482067704497210e+00 8.5034664872383825e+00 0 3 0 0 -6 0 P 8 24 1.8451687940657513e+00 9.2924232714185813e+00 -1.2360811989197890e+02 1.4738491732222334e+02 7.9709427125748320e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -6.9086486546667398e+00 -1.7244390059097829e+00 -4.6482067704497210e+00 8.5034664872383843e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 1.8451687940657513e+00 9.2924232714185813e+00 -1.2360811989197890e+02 1.4738491732222334e+02 7.9709427125748320e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 9 0 P 18 2 -5.5494692721551173e+00 5.5261624279176580e+00 -3.7682759605600853e+00 8.6973492569436157e+00 3.3000000000000002e-01 2 0 0 -11 0 P 19 21 -8.4461435857758165e+00 8.9204607215089737e+00 -7.4719505721300559e+00 1.4378525873951093e+01 0 2 0 0 -11 0 P 20 21 -7.0852639705049443e+00 8.4727194171770286e+00 -7.6549547382403791e+00 1.3438239166589236e+01 0 2 0 0 -11 0 P 21 21 -2.8889044375083001e-01 -4.7885543669525527e-01 7.6863166585447873e-01 9.5055502497087785e-01 0 2 0 0 -11 0 P 22 21 -5.7563198368734747e-01 6.6483429397037430e-01 -1.3998260406179344e+00 1.6531393658959912e+00 0 2 0 0 -11 0 P 23 21 1.2335078635473042e+00 -1.4151922077039962e+00 -1.2911215973210117e+00 2.2784436822638181e+00 0 2 0 0 -11 0 P 24 21 2.4214611184019965e+00 -8.2104246557952587e-01 -9.7070032614040525e+00 1.0038102260643019e+01 0 2 0 0 -11 0 P 25 21 2.8281182346309217e+00 -1.0690907583365012e+00 -1.1361798969644884e+01 1.1757197099021347e+01 0 2 0 0 -11 0 P 26 -1 1.7307480833359573e+01 -1.0507572720840161e+01 -8.1721820417914969e+01 8.4193365591944342e+01 3.3000000000000002e-01 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 97 92 3.1609175317021085e+00 -8.7461722665628248e+00 2.0353768265724830e+02 2.0514817478133273e+02 2.3910215926898541e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 9 0 P 98 -2212 9.8169602150824298e-01 -1.0335770737239021e+00 5.5622933672124422e+00 5.8182013321823352e+00 9.3827000000000005e-01 1 0 0 0 0 P 99 3122 1.4108488758682955e+00 -5.2943530193296144e+00 1.7462056388046772e+01 1.8335452642505135e+01 1.1156800000000000e+00 2 0 0 -17 0 P 100 311 8.4400760283041099e-01 -1.2232344777039483e+00 5.8515521842601474e+00 6.0578040423159027e+00 4.9767000000000000e-01 2 0 0 -18 0 P 101 211 -1.9751226810699790e-01 -1.1269659200987334e-01 5.5457309681454836e+00 5.5521458350669475e+00 1.3957000000000000e-01 1 0 0 0 0 P 102 113 1.3188542600754136e+00 -9.1618183651798579e-01 9.6040977961276788e+00 9.7695633452531592e+00 7.9177507061352814e-01 2 0 0 -19 0 P 103 221 -5.4166969389025277e-01 -1.9581683143384498e-01 4.8283179482369452e+00 4.8932715028413227e+00 5.4744999999999999e-01 2 0 0 -20 0 P 104 -323 2.7590063372381460e-02 4.6936283505980758e-01 2.5067829408119298e+01 2.5090478074072045e+01 9.5653335978793563e-01 2 0 0 -21 0 P 105 323 -4.1898872786923663e-01 -3.5499017760325591e-01 4.4521872286305367e+01 4.4534080611172904e+01 8.8637149327122844e-01 2 0 0 -22 0 P 106 -213 -2.6390860208614897e-01 -8.4685093300208819e-02 8.5093932310794131e+01 8.5097177395922969e+01 6.8953993639746669e-01 2 0 0 -23 0 V -11 0 0 0 0 0 0 1 0 P 107 92 1.8451687940657422e+00 9.2924232714185973e+00 -1.2360811989197890e+02 1.4738491732222332e+02 7.9709427125748277e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 16 0 P 108 221 -3.5577736136612321e+00 3.3133385509630955e+00 -2.9136816488348085e+00 5.6943136278764150e+00 5.4744999999999999e-01 2 0 0 -24 0 P 109 323 -6.9752872687944398e+00 8.4439495461715737e+00 -6.4327489338742394e+00 1.2734886679918560e+01 9.1769465706738551e-01 2 0 0 -25 0 P 110 3224 -6.4232861518487363e+00 6.2095806509359388e+00 -5.5625567167512759e+00 1.0614670425831649e+01 1.3826402905096344e+00 2 0 0 -26 0 P 111 331 -2.6996280441421208e+00 2.6679107218502462e+00 -1.4803121696847792e+00 4.1849344827609860e+00 9.5739924211531480e-01 2 0 0 -27 0 P 112 -3222 -1.5035481073210177e+00 1.7050998891230544e+00 -2.3228353378051838e+00 3.4609518266472001e+00 1.1893700000000000e+00 2 0 0 -28 0 P 113 -313 6.3036622787886520e-01 4.5538784167611152e-01 -4.0892567986460038e-01 1.2362382692751834e+00 8.6966958045634679e-01 2 0 0 -29 0 P 114 -211 -5.8000496927767597e-01 -2.1203646144312574e-01 -5.1761036105874769e-01 8.1778083625350828e-01 1.3957000000000000e-01 1 0 0 0 0 P 115 211 3.4044249108256944e-02 -3.1360407118236061e-01 3.1725896303541851e-01 4.6865718695631298e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 -213 2.8143838516932840e-01 -5.2239394658054217e-01 -2.2173182315847191e+00 2.4140812458993333e+00 7.4778681561938365e-01 2 0 0 -30 0 P 117 213 9.1235840733155507e-02 -7.6902351442168648e-01 -2.0231905033654312e+00 2.2713626878045146e+00 6.8269136677909892e-01 2 0 0 -31 0 P 118 1114 2.6570476583811349e+00 -3.2077955966974936e-01 -9.0566977610849300e+00 9.5214627999985986e+00 1.2131272527256853e+00 2 0 0 -32 0 P 119 223 1.2579735587636940e+00 -2.7874753413725883e-01 -4.4575736817979799e+00 4.7067805838000636e+00 7.8969783654450376e-01 2 0 0 -33 0 P 120 -2112 3.3746918225344658e+00 -2.6648342039353579e+00 -1.7663024263337974e+01 1.8203161927085933e+01 9.3957000000000002e-01 1 0 0 0 0 P 121 111 5.9036829791400622e+00 -3.3510312824458639e+00 -2.6253790427454433e+01 2.7117570222702788e+01 1.3497999999999999e-01 2 0 0 -34 0 P 122 211 1.1132989909426971e+00 -3.7701143255678377e-01 -4.7528551113960917e+00 4.8980285583422747e+00 1.3957000000000000e-01 1 0 0 0 0 P 123 113 8.2409172364593086e+00 -4.6933819229286993e+00 -3.7862258027119132e+01 3.9040035961070046e+01 7.9578524543304185e-01 2 0 0 -35 0 V -13 0 0 0 0 0 14 1 0 P 27 2 -3.7594465667228105e+00 5.1006794332529770e+00 -1.5340517735195820e+00 6.5194849499552046e+00 0 2 0 0 -13 0 P 28 21 -2.5073273513960997e-01 2.1530704229161451e-01 -3.2625865129356940e-01 4.6440147983706059e-01 0 2 0 0 -13 0 P 29 21 1.2601496899389806e+00 -6.7486482498384626e-01 2.1590057086627526e-01 1.4456945837742390e+00 0 2 0 0 -13 0 P 30 21 2.2528283022442355e+00 -2.4050441180232971e+00 2.7922265162891713e+00 4.3192593679124514e+00 0 2 0 0 -13 0 P 31 21 1.7118435220976597e-01 -6.9070393923132389e-01 1.1831493158673185e+00 1.3806586535956125e+00 0 2 0 0 -13 0 P 32 21 5.3879451565529612e-01 -1.1774063682421381e+00 1.4929480661078054e+00 1.9762285328808513e+00 0 2 0 0 -13 0 P 33 21 1.6463832017001732e+00 -5.7917389337101854e-01 1.7958996443950839e+00 2.5042515006167902e+00 0 2 0 0 -13 0 P 34 21 2.0936443073631690e+00 -3.5817358561658996e-01 2.7527693943111173e+00 3.4769777309387018e+00 0 2 0 0 -13 0 P 35 21 4.2972584383451178e+00 1.6517087010153675e+00 1.1152414218295734e+01 1.2065277229114258e+01 0 2 0 0 -13 0 P 36 21 1.1106341653116787e+00 1.5010373845191587e+00 3.4987263317446189e+00 3.9658173714033835e+00 0 2 0 0 -13 0 P 37 21 -1.7118435220976597e-01 6.9070393923132389e-01 2.6965697718299624e+00 2.7888823116901582e+00 0 2 0 0 -13 0 P 38 21 -4.0830465237048107e-02 2.2832430133773731e+00 1.6164169663435658e+01 1.6324682131464662e+01 0 2 0 0 -13 0 P 39 21 8.2144896985715499e-01 -2.7037641168808562e+00 1.2902928937179436e+02 1.2906022870969994e+02 0 2 0 0 -13 0 P 40 -2 3.7594465667228105e+00 -5.1006794332529770e+00 1.6885170142197043e+02 1.6897055199727291e+02 0 2 0 0 -13 0 P 124 92 1.3729578390039148e+01 -2.2471307659142323e+00 3.3976545386209443e+02 3.5526239655015621e+02 1.0284578671485806e+02 2 0 0 -14 0 V -14 0 0 0 0 0 0 24 0 P 125 211 -1.2432258878466038e+00 1.5570921124484125e+00 -5.7965443880194156e-01 2.0798138157498181e+00 1.3957000000000000e-01 1 0 0 0 0 P 126 221 -1.9062015598409190e+00 3.0087570537689978e+00 -1.4059727323789435e+00 3.8681629001423659e+00 5.4744999999999999e-01 2 0 0 -36 0 P 127 -213 -2.8292946500805294e-01 1.8649020645084569e-01 3.5014108975934705e-01 1.0728216117137652e+00 9.5578227047295372e-01 2 0 0 -37 0 P 128 223 3.7380723940607608e-01 -3.5380892385998286e-01 3.7759371508845146e-01 1.0102938400459267e+00 7.8307344657132638e-01 2 0 0 -38 0 P 129 223 7.7029392265959373e-01 -1.6824489094595715e-01 7.8364835122184273e-01 1.3569292875123968e+00 7.7813448858180567e-01 2 0 0 -39 0 P 130 211 -1.0171300999439901e-01 -2.7859966390528318e-01 7.1525237528430829e-01 7.8678399474067995e-01 1.3957000000000000e-01 1 0 0 0 0 P 131 -213 3.6803359968319285e+00 -3.7530996505735441e+00 3.7213220858082932e+00 6.5064275496865260e+00 9.2451682314769346e-01 2 0 0 -40 0 P 132 211 1.7574281433675263e+00 1.5714063470425052e-01 2.8569147772309873e+00 3.3607571598430415e+00 1.3957000000000000e-01 1 0 0 0 0 P 133 311 2.9751150422188405e-01 6.1757982332332338e-02 2.0114630814626344e+00 2.0942746478227932e+00 4.9767000000000000e-01 2 0 0 -41 0 P 134 3122 1.9755143069073908e+00 2.0775586816970346e-01 3.6283820457002163e+00 4.2843572924669138e+00 1.1156800000000000e+00 2 0 0 -42 0 P 135 211 8.0540918880434728e-02 5.3545711500183280e-01 9.9597991351755244e-01 1.1422158003856460e+00 1.3957000000000000e-01 1 0 0 0 0 P 136 -2224 1.0611436887524679e+00 7.4350624372114160e-01 5.4622038205378454e+00 5.7441976457805195e+00 1.2170901996404053e+00 2 0 0 -43 0 P 137 223 -1.0402573281145737e-01 5.4007540810451206e-02 2.6121600300623622e+00 2.7289971934072890e+00 7.8122179399841785e-01 2 0 0 -44 0 P 138 213 2.0254950441613055e+00 9.0102511078120662e-01 8.4001538413559214e+00 8.7263432871145739e+00 8.1975983186703538e-01 2 0 0 -45 0 P 139 113 1.0645431069721210e+00 9.4483177371503868e-01 4.0309970246661839e+00 4.3162388239652882e+00 5.9583677749386021e-01 2 0 0 -46 0 P 140 313 5.6999141263096201e-02 -4.4429604963857694e-01 6.0656314957657207e+00 6.1596837498503252e+00 9.7425385496588723e-01 2 0 0 -47 0 P 141 -311 -1.8921619152593180e-01 1.1092698398634038e+00 8.6376205797118235e+00 8.7248178807770760e+00 4.9767000000000000e-01 2 0 0 -48 0 P 142 311 1.8355022090233411e-01 5.8822123447360847e-02 1.2330763084876843e+01 1.2342307094302168e+01 4.9767000000000000e-01 2 0 0 -49 0 P 143 -313 4.4500418874556635e-02 4.1274794780213231e-02 1.4164662005408527e+01 1.4193134585327870e+01 8.9651309739572360e-01 2 0 0 -50 0 P 144 -213 -5.8717454809029519e-02 -5.1976683065223121e-02 2.5516632354713188e+01 2.5522023953846904e+01 5.1868165579426773e-01 2 0 0 -51 0 P 145 211 8.4911729825335180e-01 -1.5666956489666068e+00 3.8317038467726739e+01 3.8358707644612252e+01 1.3957000000000000e-01 1 0 0 0 0 P 146 -213 6.7536913469017712e-01 -9.6793767007254483e-01 4.3068099352673471e+01 4.3090639164508332e+01 7.4092843977573297e-01 2 0 0 -52 0 P 147 331 1.7210360182898272e+00 -2.5838082132360420e+00 1.0416636863207520e+02 1.0421702096980593e+02 9.5764083483940943e-01 2 0 0 -53 0 P 148 221 9.9842158744146936e-01 -1.6458517716456618e+00 5.3538052908627748e+01 5.3575446656747737e+01 5.4744999999999999e-01 2 0 0 -54 0 V -15 0 0 0 0 0 46 1 0 P 46 21 -8.2144896985715499e-01 2.7037641168808562e+00 5.9090421996436060e+00 6.5499540858681478e+00 0 2 0 0 -15 0 P 47 21 -1.8230022759444273e+00 3.2493651325351047e+00 4.6928429762361157e+00 5.9920352353972426e+00 0 2 0 0 -15 0 P 48 21 -1.2601496899389806e+00 6.7486482498384626e-01 1.0305163829652466e+01 1.0403836856132994e+01 0 2 0 0 -15 0 P 49 21 -5.8814528069795786e+00 -2.8040300937740561e+00 8.1523234381537293e+01 8.1783200083602637e+01 0 2 0 0 -15 0 P 50 21 -3.1992666623123602e+00 4.3786033709016214e+00 6.6466251919944887e+02 6.6468464094126170e+02 0 2 0 0 -15 0 P 51 21 -2.2827894545157262e-01 1.2681707594195348e+00 2.0405206370127158e+02 2.0405613215265004e+02 0 2 0 0 -15 0 P 52 21 2.2827894545157262e-01 -1.2681707594195348e+00 8.6806942041205377e+02 8.6807037676842242e+02 0 2 0 0 -15 0 P 53 21 3.1992666623123602e+00 -4.3786033709016214e+00 1.2514440618145095e+03 1.2514558111757099e+03 0 2 0 0 -15 0 P 54 21 1.8230022759444273e+00 -3.2493651325351047e+00 7.6358011798584482e+02 7.6358920781683355e+02 0 2 0 0 -15 0 P 55 21 2.1236612409947329e+00 3.0366060195031817e+00 1.6721317413066066e+02 1.6725422719929929e+02 0 2 0 0 -15 0 P 56 21 5.8814528069795786e+00 2.8040300937740561e+00 2.1918242311983346e+02 2.1927924816673652e+02 0 2 0 0 -15 0 P 57 21 4.0830465237048107e-02 -2.2832430133773731e+00 5.2696263230294784e+00 5.7431548272176363e+00 0 2 0 0 -15 0 P 58 21 -6.1768596703572862e-02 -3.3254978931160389e-01 7.0323786043201231e-01 7.8035133770303433e-01 0 2 0 0 -15 0 P 59 21 -2.1236612409947329e+00 -3.0366060195031817e+00 7.9945468176339887e+00 8.8115658088405588e+00 0 2 0 0 -15 0 P 60 21 -4.1997091170256012e-01 -2.0057404157832179e-01 4.5250761188594268e-01 6.4912914866462501e-01 0 2 0 0 -15 0 P 61 21 -2.6548040411788607e+00 -7.4257619251552087e-01 3.2985046443221178e-01 2.7763654708335146e+00 0 2 0 0 -15 0 P 62 21 -5.9028825548951689e+00 6.7655551447213336e-01 -6.9342032507967710e-01 5.9818543586652106e+00 0 2 0 0 -15 0 P 63 21 -1.0101249838350119e+00 1.3778660774587251e-01 9.2624445811355632e-03 1.0195211744350465e+00 0 2 0 0 -15 0 P 64 21 -2.0936443073631690e+00 3.5817358561658996e-01 -4.3409326129448839e-01 2.1679648896347312e+00 0 2 0 0 -15 0 P 65 21 -5.9115810621100797e+00 -1.0195012459573116e+00 -1.9738599958429048e+00 6.3152432041526323e+00 0 2 0 0 -15 0 P 66 21 -1.1972610300446469e+00 -9.2766853907296998e-01 -5.4962965775264672e-01 1.6112404082354188e+00 0 2 0 0 -15 0 P 67 21 -3.2687595856933953e+00 -2.4539711847772345e+00 -5.3364176624609980e+00 6.7219132152241556e+00 0 2 0 0 -15 0 P 68 21 3.3103497914477720e-01 -1.1794252130733431e+00 -2.1767751855456177e+00 2.4977946671128999e+00 0 2 0 0 -15 0 P 69 21 -4.2972584383451178e+00 -1.6517087010153675e+00 -1.9280304294829520e+01 1.9822328456065897e+01 0 2 0 0 -15 0 P 70 21 -1.6463832017001732e+00 5.7917389337101854e-01 -7.0331433722881131e+00 7.2464560814761905e+00 0 2 0 0 -15 0 P 71 21 -2.2528283022442355e+00 2.4050441180232971e+00 -3.1405269880639793e+01 3.1577689099186028e+01 0 2 0 0 -15 0 P 72 21 -5.3879451565529612e-01 1.1774063682421381e+00 -6.4339383045439931e+00 6.5629374058233862e+00 0 2 0 0 -15 0 P 73 21 6.1768596703572862e-02 3.3254978931160389e-01 -4.8333250943139805e-01 5.8992799271027418e-01 0 2 0 0 -15 0 P 74 21 3.2687595856933953e+00 2.4539711847772345e+00 -1.0606582425235349e+01 1.1366897314047083e+01 0 2 0 0 -15 0 P 75 21 2.6548040411788607e+00 7.4257619251552087e-01 -8.4026990968437207e+00 8.8433452952402991e+00 0 2 0 0 -15 0 P 76 21 8.1639745085468229e-01 -6.0873068362218508e-01 -2.9131605329923564e+00 3.0860269172399430e+00 0 2 0 0 -15 0 P 77 21 7.0999311346711880e-01 -9.5293827839166331e-02 -1.5356522142697211e+00 1.6945202441949376e+00 0 2 0 0 -15 0 P 78 21 1.0101249838350119e+00 -1.3778660774587251e-01 -3.0751184227117667e+00 3.2397053794972006e+00 0 2 0 0 -15 0 P 79 21 5.9115810621100797e+00 1.0195012459573116e+00 -2.2407567110119217e+01 2.3196664355870297e+01 0 2 0 0 -15 0 P 80 21 1.1972610300446469e+00 9.2766853907296998e-01 -1.6407055810117040e+01 1.6476816538662579e+01 0 2 0 0 -15 0 P 81 21 4.1997091170256012e-01 2.0057404157832179e-01 -6.7118196025662575e+00 6.7279363767966789e+00 0 2 0 0 -15 0 P 82 21 2.5073273513960997e-01 -2.1530704229161451e-01 -4.3199343644262793e+00 4.3325577826362611e+00 0 2 0 0 -15 0 P 83 21 -6.7448955691412993e-01 -2.3905129058285559e+00 -3.2283523502175669e+01 3.2378934167616571e+01 0 2 0 0 -15 0 P 84 21 -1.1106341653116787e+00 -1.5010373845191587e+00 -2.9143342680489098e+01 2.9203099905169299e+01 0 2 0 0 -15 0 P 85 21 5.9028825548951689e+00 -6.7655551447213336e-01 -2.2549429781237731e+02 2.2557256060017176e+02 0 2 0 0 -15 0 P 86 21 5.3313906481633214e-02 -2.7633253172941092e+00 -2.6473815549959954e+02 2.6475258220933745e+02 0 2 0 0 -15 0 P 87 21 -7.0999311346711880e-01 9.5293827839166331e-02 -5.5929901423268106e+01 5.5934488862876748e+01 0 2 0 0 -15 0 P 88 21 -8.1639745085468229e-01 6.0873068362218508e-01 -4.0015465298124974e+02 4.0015594880044875e+02 0 2 0 0 -15 0 P 89 21 -5.3313906481633214e-02 2.7633253172941092e+00 -6.8535839748048272e+02 6.8536397031518743e+02 0 2 0 0 -15 0 P 90 21 6.7448955691412993e-01 2.3905129058285559e+00 -1.9934806673335410e+02 1.9936354029370847e+02 0 2 0 0 -15 0 P 91 21 -3.3103497914477720e-01 1.1794252130733431e+00 -5.9083968246348753e+01 5.9096665995013616e+01 0 2 0 0 -15 0 P 149 92 -1.3431212084536241e+01 3.5319167051120761e+00 2.2881988430306515e+03 1.0580453352585879e+04 1.0330050645040676e+04 2 0 0 -16 0 V -16 0 0 0 0 0 0 118 0 P 150 323 -2.1098567186212158e-01 -2.3366931345499550e-01 6.0407215780184310e+02 6.0407287266011315e+02 8.7437758693463008e-01 2 0 0 -55 0 P 151 3122 -3.3575025419253712e-01 7.8354135152278737e-01 7.7786710857452545e+02 7.7786837576111668e+02 1.1156800000000000e+00 2 0 0 -56 0 P 152 -3114 -4.5632987146154669e-01 -7.3749810919686964e-01 3.8758246245551771e+02 3.8758586596539976e+02 1.3733727292248441e+00 2 0 0 -57 0 P 153 -323 3.0417576359344278e-01 4.8480926111816247e-01 2.8078770409738888e+02 2.8078971520045957e+02 8.9544802056633588e-01 2 0 0 -58 0 P 154 2212 2.5322695660548417e-01 2.5627317291292981e-03 4.0260737246009683e+01 4.0272465092719081e+01 9.3827000000000005e-01 1 0 0 0 0 P 155 111 5.3656604516705592e-02 9.9448014102575338e-02 2.1691429148423786e+00 2.1762742299921918e+00 1.3497999999999999e-01 2 0 0 -59 0 P 156 -211 4.2291053974328757e-01 -3.7807203906223363e-01 5.0393848138324742e+01 5.0397234068595303e+01 1.3957000000000000e-01 1 0 0 0 0 P 157 213 2.4591101546114816e-01 -1.8010767467172287e-02 1.9722554577969706e+01 1.9737890810248423e+01 7.3781972122294448e-01 2 0 0 -60 0 P 158 -323 3.9610319857002219e-01 1.2186485979787998e-01 9.2444050857020299e-01 1.3392866578834188e+00 8.7598499423679832e-01 2 0 0 -61 0 P 159 323 1.7872085832798620e-01 4.9204185224155306e-01 1.2170014470495183e+00 1.5319703494968631e+00 7.6928167796856350e-01 2 0 0 -62 0 P 160 -211 -8.4954331188898957e-01 9.4185599080627269e-01 1.6711911932459995e+00 2.1026593484147558e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 211 -5.5321839155639176e-03 5.1755518421647773e-01 3.3547458092125704e-01 6.3238987429632421e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 -211 1.2627712161310292e-01 4.6113667101631861e-01 2.0425494096680898e+00 2.1023988243514515e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 111 3.0475304604902032e-01 5.6630961092825283e-01 7.6313802511160891e-02 6.6153185211263843e-01 1.3497999999999999e-01 2 0 0 -63 0 P 164 223 -4.3472029028790549e-01 1.0904525173927089e+00 2.2961640393080835e+00 2.6832071195971521e+00 7.4105514489080571e-01 2 0 0 -64 0 P 165 211 -1.3183461733675792e+00 1.4449352595720057e+00 3.2958283789341749e+00 3.8350800546370905e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 -211 -2.3393176156084012e-02 2.6360888941817406e-01 3.7083158290823026e-01 4.7647952217611239e-01 1.3957000000000000e-01 1 0 0 0 0 P 167 213 -7.3690412947689488e-01 8.4700887457729179e-01 8.2823865536961350e+00 8.3870971917901009e+00 6.9643416776754907e-01 2 0 0 -65 0 P 168 -2214 -6.5353777830099324e-01 1.0228642075257262e-01 3.1774844863619056e+00 3.4343575012412924e+00 1.1228667087970767e+00 2 0 0 -66 0 P 169 2214 -1.9544037401723435e-01 -8.8327136868078401e-02 1.0066650538567814e+01 1.0143665930443044e+01 1.2290267775276285e+00 2 0 0 -67 0 P 170 -211 -2.8374052265639436e+00 -6.2264120906294962e-01 3.1744418111037490e+01 3.1877360484962061e+01 1.3957000000000000e-01 1 0 0 0 0 P 171 223 -1.6901510002893052e+00 -4.8005699495248166e-01 2.2441172279660858e+01 2.2523496988367572e+01 7.8398863346505354e-01 2 0 0 -68 0 P 172 213 -3.2324868081204350e-01 -3.7069055225110970e-01 2.0977115061023571e+01 2.0995135712431253e+01 7.1726292585717921e-01 2 0 0 -69 0 P 173 -211 -2.3444604085691115e-01 1.9979651099267262e-01 3.4052971363874134e+00 3.4220479195748639e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 3.9787250683915054e-01 -2.2094812771950822e-01 1.2182458719904078e+01 1.2191755445952326e+01 1.3957000000000000e-01 1 0 0 0 0 P 175 223 -2.3116336374424229e+00 1.1399228657477625e+00 2.1659477425098933e+02 2.1661153175542324e+02 7.8510023569020215e-01 2 0 0 -70 0 P 176 221 -3.8564681786578903e-01 1.0552097114209442e+00 8.0484643143665991e+01 8.0494345605570146e+01 5.4744999999999999e-01 2 0 0 -71 0 P 177 113 -2.5335566704325130e-01 -4.3626158477851090e-02 5.4809735663554747e+01 5.4816875359260415e+01 8.4652720465431197e-01 2 0 0 -72 0 P 178 111 -3.7546853308840833e-02 4.0192455808792515e-01 4.3987692081999626e+01 4.3989751390725090e+01 1.3497999999999999e-01 2 0 0 -73 0 P 179 221 -2.9308686031270803e-01 3.6818371994023497e-01 6.6694891946981372e+01 6.6698798883348246e+01 5.4744999999999999e-01 2 0 0 -74 0 P 180 111 -8.2764725641096182e-01 8.0576494231703222e-01 1.8421710226987378e+02 1.8422077311050685e+02 1.3497999999999999e-01 2 0 0 -75 0 P 181 223 -9.8583988254231203e-02 6.8938262062327837e-01 2.0123369125208481e+02 2.0123641861996390e+02 7.8276231999937773e-01 2 0 0 -76 0 P 182 223 -3.1415518657204927e-01 7.2267822532971898e-02 2.3834318543464718e+02 2.3834475755388848e+02 8.0342651676710475e-01 2 0 0 -77 0 P 183 -211 2.7916688999295369e-01 -7.4798768675299082e-02 9.6661142083157486e+01 9.6661674916243427e+01 1.3957000000000000e-01 1 0 0 0 0 P 184 223 -3.6652909188001404e-01 -1.6251157477982051e-01 2.2068446922965794e+02 2.2068657088175004e+02 8.7570245101970856e-01 2 0 0 -78 0 P 185 221 3.4725885526566245e+00 -3.5079019516281802e+00 1.2847491257793258e+03 1.2847587244847193e+03 5.4744999999999999e-01 2 0 0 -79 0 P 186 211 8.1635380060375418e-01 -2.7759463959430124e+00 5.6755693807652085e+02 5.6756433093571127e+02 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 -1.7423205228891162e-01 -3.5895638324502660e-01 1.8212703445052770e+02 1.8213135671130127e+02 1.1896273628507628e+00 2 0 0 -80 0 P 188 213 8.3674828833456938e-01 -4.7977293151855394e-01 1.6506178436305831e+02 1.6506687038399463e+02 8.6528116001113964e-01 2 0 0 -81 0 P 189 2214 1.0942715957567997e+00 8.2424095344364079e-01 1.6767415761222381e+02 1.6768438570158870e+02 1.2463040061243114e+00 2 0 0 -82 0 P 190 -213 2.4458582453132376e+00 5.4477471754749462e-01 1.0598723018568175e+02 1.0602058516731638e+02 8.9023296863870982e-01 2 0 0 -83 0 P 191 211 2.4690078656846118e-01 5.5032671928885890e-01 2.8146145029327286e+01 2.8152953296114358e+01 1.3957000000000000e-01 1 0 0 0 0 P 192 -211 4.0337692467370967e-01 -1.3909924811896231e-02 7.0202095171495431e+00 7.0331876044183916e+00 1.3957000000000000e-01 1 0 0 0 0 P 193 213 1.0693291191850391e+00 8.8987928426112783e-01 7.5690393270156392e+01 7.5706453668895719e+01 7.0437477526087711e-01 2 0 0 -84 0 P 194 223 1.9064517818485657e-01 3.9884267151773928e-01 2.0995464994271007e+01 2.1014685519353034e+01 7.8232735543274812e-01 2 0 0 -85 0 P 195 -213 2.1856090551388951e+00 1.0231432473669178e+00 8.0687771038463950e+01 8.0726100257441033e+01 6.0262639529148332e-01 2 0 0 -86 0 P 196 213 6.5982487428789649e-01 5.5483971796911413e-01 1.7132825314463780e+01 1.7166209291770762e+01 6.3389448300240481e-01 2 0 0 -87 0 P 197 113 -6.0399964728536437e-01 -1.1434761936818962e+00 6.5560389836197777e+00 6.7511739005911640e+00 9.6143044566051761e-01 2 0 0 -88 0 P 198 -211 7.0203369857732867e-01 -4.6461253469376229e-01 1.8432174199777391e+00 2.0311687186302665e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -8.8307645204099550e-01 -4.4485221647193923e-01 5.9854794547311849e+00 6.0682090935100810e+00 1.3957000000000000e-01 1 0 0 0 0 P 200 331 -1.9495398437871281e-01 -5.6567172685224798e-01 2.8732340073541556e+00 3.0867424206587359e+00 9.5630201918253432e-01 2 0 0 -89 0 P 201 -213 -1.2728849058908451e-01 -2.4396281166092001e-01 2.6938059988088514e+00 2.8052421189795385e+00 7.3285221809605572e-01 2 0 0 -90 0 P 202 113 -1.4008426846598085e-01 -1.7446322554561049e+00 3.1567731236913108e+00 3.6671691409258003e+00 6.4772497608875135e-01 2 0 0 -91 0 P 203 223 -1.5652658791667908e+00 -3.3839638295757407e-01 1.4431060075898017e+00 2.2958662521637274e+00 7.8985917365058667e-01 2 0 0 -92 0 P 204 113 -9.3744294660198957e-01 -2.9632796351882651e-01 1.0520284661910027e+00 1.6547801097366757e+00 8.1542858535060847e-01 2 0 0 -93 0 P 205 111 2.3335491417498032e-03 -4.6686200915616105e-01 4.9348356163911544e-01 6.9261187331213936e-01 1.3497999999999999e-01 2 0 0 -94 0 P 206 111 -6.8823225240143282e-01 4.2118025111098745e-02 -1.5364333083379347e-01 7.1921028551774169e-01 1.3497999999999999e-01 2 0 0 -95 0 P 207 111 -1.0844245323912798e+00 3.2243765582988582e-01 4.4707754940738248e-01 1.2239446653886066e+00 1.3497999999999999e-01 2 0 0 -96 0 P 208 211 -6.1299806470237019e+00 -5.8980917220406004e-01 -1.3525453332918018e+00 6.3066152773108470e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 223 -3.7079893195557130e+00 -1.2590655259590791e+00 -9.8189165016689783e-02 3.9934092035879565e+00 7.7668858790152639e-01 2 0 0 -97 0 P 210 -2212 -1.6363660972502223e+00 3.7331843221591515e-01 -3.5791609847227640e-01 1.9558924261082686e+00 9.3827000000000005e-01 1 0 0 0 0 P 211 2212 -3.2075759912786843e+00 -5.0336662689081957e-01 -1.6065832644580882e+00 3.7421093088566617e+00 9.3827000000000005e-01 1 0 0 0 0 P 212 -213 -1.4370759550407102e+00 -6.6326340205074430e-01 -1.9239650035201508e+00 2.5875646535934749e+00 6.9910218187324236e-01 2 0 0 -98 0 P 213 221 -2.8170444113952564e-01 3.1211577176823716e-02 -2.6145858670538302e-01 6.6962202007518667e-01 5.4744999999999999e-01 2 0 0 -99 0 P 214 211 -4.8876770917906781e-01 -1.0375274408274462e+00 -1.0476706192508416e+00 1.5596315511515999e+00 1.3957000000000000e-01 1 0 0 0 0 P 215 -213 -5.6322659771130634e-01 -3.1357306871264756e-01 -9.4899963471377580e-01 1.2401457875269677e+00 4.7096602620856015e-01 2 0 0 -100 0 P 216 113 -1.1541873229322264e+00 -4.6691109317361001e-01 -2.7643060956998617e+00 3.1017308068676193e+00 6.5512705805988591e-01 2 0 0 -101 0 P 217 211 -8.1676868248024892e-01 -9.3426663814486222e-01 -2.6130717394438472e+00 2.8961334451663512e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 113 -3.5908439835645789e-01 3.1012172644333804e-03 -2.9248306362307797e+00 3.0440488474444556e+00 7.6331377054408733e-01 2 0 0 -102 0 P 219 -213 -1.2978370208741936e+00 -9.1133048817761697e-01 -7.0102760427935529e+00 7.2330519465104475e+00 8.1127435144942106e-01 2 0 0 -103 0 P 220 213 -1.4619448334956151e+00 -1.8366873696297517e-01 -6.1061109587078475e+00 6.3408736946458530e+00 8.6664368126559999e-01 2 0 0 -104 0 P 221 221 -2.1313478441751368e+00 -2.2201011177826624e-01 -1.2054230432164386e+01 1.2255452049468424e+01 5.4744999999999999e-01 2 0 0 -105 0 P 222 -211 -4.2163645626663632e-01 1.0409107532187343e+00 -7.9060326658041822e+00 7.9866203612718607e+00 1.3957000000000000e-01 1 0 0 0 0 P 223 -2112 2.5330397295313012e-01 1.7841276467742011e+00 -6.1810607929744226e+00 6.5065796447936828e+00 9.3957000000000002e-01 1 0 0 0 0 P 224 113 -9.4522410163226700e-01 4.6759995639550628e-01 -7.2445212259313179e+00 7.3628901288165416e+00 7.8547115448440175e-01 2 0 0 -106 0 P 225 2214 9.4131496817582194e-01 1.2139081017687423e+00 -1.0127910663274578e+01 1.0321442171787295e+01 1.2640994238692937e+00 2 0 0 -107 0 P 226 -211 -8.0154425648920868e-01 5.2884549664326446e-03 -5.8751685675341712e+00 5.9312382050216375e+00 1.3957000000000000e-01 1 0 0 0 0 P 227 213 1.3106121086270672e+00 8.6427941197777702e-01 -6.1569897359822505e+00 6.4151026275015264e+00 8.8336635159918830e-01 2 0 0 -108 0 P 228 -213 1.2570445459026904e+00 1.4200990419801671e+00 -4.8307255253750645e+00 5.2095190858292977e+00 4.5424412455510921e-01 2 0 0 -109 0 P 229 213 2.2119449141453318e+00 -1.1646751204229057e-01 -6.5051897905079787e+00 6.9165547939018461e+00 7.8420088111570774e-01 2 0 0 -110 0 P 230 -213 2.1139101588859610e+00 5.6940952242864784e-01 -9.8165362443692530e+00 1.0093979937133614e+01 8.5510453756662330e-01 2 0 0 -111 0 P 231 -311 3.1898147136545165e+00 1.6641065332275806e-01 -1.0456219890813957e+01 1.0944533806742962e+01 4.9767000000000000e-01 2 0 0 -112 0 P 232 313 2.8358199949673690e-01 4.3732195641747809e-02 -3.4715876669980439e+00 3.5798919844271460e+00 8.2545407815249960e-01 2 0 0 -113 0 P 233 -1114 8.7531873550944117e-01 2.5153048475538821e-02 -7.7534591895579617e+00 7.9156858073936176e+00 1.3323426108364498e+00 2 0 0 -114 0 P 234 -211 1.3618873408526162e+00 5.8436329332823660e-02 -1.0857842479372858e+01 1.0943965233202006e+01 1.3957000000000000e-01 1 0 0 0 0 P 235 2112 4.9149078506123495e-01 -6.3356714593812891e-01 -8.8212699886002390e+00 8.9073321773071630e+00 9.3957000000000002e-01 1 0 0 0 0 P 236 113 -7.3983663632035861e-03 -1.3174127360310497e-01 -1.4073907652727060e+01 1.4097634402718118e+01 8.0685106197905077e-01 2 0 0 -115 0 P 237 211 3.8496808915969560e-01 2.2550677948852960e-01 -1.0240341936142926e+01 1.0251006608684534e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 111 -4.0296008848982745e-01 -5.8302555444805215e-01 -2.8572449604621055e+00 2.9469244975976712e+00 1.3497999999999999e-01 2 0 0 -116 0 P 239 223 2.2878664813288080e-01 -4.5004054060902166e-01 -2.6581119080049099e+01 2.6597578807437824e+01 7.8767191873252906e-01 2 0 0 -117 0 P 240 -211 1.3575531742848715e-01 -1.5940694397213337e+00 -2.6998709183382950e+01 2.7046427938614194e+01 1.3957000000000000e-01 1 0 0 0 0 P 241 113 1.6258211047131583e+00 1.9758901612039859e-01 -8.4880121953941227e+01 8.4899101612307319e+01 7.3485779381167382e-01 2 0 0 -118 0 P 242 113 1.0242105173434419e+00 -3.9647475929122800e-01 -3.4323281384710150e+01 3.4348020379114395e+01 7.0189709464828831e-01 2 0 0 -119 0 P 243 113 3.7164387752295558e-01 -4.6686917907513514e-01 -6.9853735204967677e+01 6.9861683211538448e+01 8.6854652238225027e-01 2 0 0 -120 0 P 244 213 6.0296046635098588e-01 -9.0418943029192400e-01 -6.3939352227010026e+01 6.3953219960775520e+01 7.6971442226983255e-01 2 0 0 -121 0 P 245 -211 8.2129375455136477e-01 -1.0017400971936165e-01 -6.6939732443952721e+01 6.6944990983018030e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 113 7.6455394443643604e-02 -3.3766862467101122e-01 -2.3952935096586987e+01 2.3964158935772307e+01 6.4648915707862387e-01 2 0 0 -122 0 P 247 211 2.4594791526879567e-01 1.2952393098604179e-01 -6.7872276441489461e+01 6.7872989148560336e+01 1.3957000000000000e-01 1 0 0 0 0 P 248 221 1.1896197864020994e-01 -5.9210331097856916e-01 -3.0890036772967246e+01 3.0900789821960903e+01 5.4744999999999999e-01 2 0 0 -123 0 P 249 113 -2.9755255342545928e-01 2.3506595134999742e-01 -3.2390836688599472e+02 3.2390962167222898e+02 8.1797284235248457e-01 2 0 0 -124 0 P 250 111 -2.0607842754321440e-01 5.0079639385017582e-02 -4.8353450779365794e+01 4.8354104253532917e+01 1.3497999999999999e-01 2 0 0 -125 0 P 251 -213 4.6650183699578324e-01 6.7720471952542394e-01 -2.2270249717370879e+02 2.2270582075823879e+02 8.9672849790025688e-01 2 0 0 -126 0 P 252 223 -3.6482061321239406e-01 3.9453836205555476e-01 -9.3538979370732591e+01 9.3543784707343036e+01 7.8117927292602685e-01 2 0 0 -127 0 P 253 -2112 -6.6833359022377845e-02 5.5692300131451056e-01 -1.6687266275375421e+02 1.6687625054584717e+02 9.3957000000000002e-01 1 0 0 0 0 P 254 2212 -4.8313293513286920e-01 1.7019646255102152e+00 -3.9234644548378157e+02 3.9235155630552862e+02 9.3827000000000005e-01 1 0 0 0 0 P 255 -213 4.3895347499868570e-01 1.6878939291139752e+00 -1.5851684761459393e+02 1.5852761816991594e+02 6.1080184111982516e-01 2 0 0 -128 0 P 256 213 5.5729286346991105e-02 1.1996378746525622e+00 -6.9691723460666296e+01 6.9706361921408643e+01 7.7352221478502048e-01 2 0 0 -129 0 P 257 221 -3.6093129079653952e-01 -2.3897805178335363e-01 -2.0752167734879940e+01 2.0763900141953155e+01 5.4744999999999999e-01 2 0 0 -130 0 P 258 -213 -7.2626802614864305e-01 -3.6733417242269328e-01 -1.5616614846893695e+01 1.5661501910570349e+01 8.6115223888856629e-01 2 0 0 -131 0 P 259 213 -3.3170593258908121e-01 1.2085930690958341e-01 -2.1141916052424040e+01 2.1156942168303264e+01 7.1480888872621806e-01 2 0 0 -132 0 P 260 -211 -5.7775396286124037e-01 -3.4868374083617865e-01 -2.9837249521418716e+01 2.9845205959768929e+01 1.3957000000000000e-01 1 0 0 0 0 P 261 111 5.0202625389983727e-02 4.7847475589884281e-01 -4.6618368171647475e+00 4.6885392720869099e+00 1.3497999999999999e-01 2 0 0 -133 0 P 262 211 -4.0777912426100504e-01 -2.9896458115751529e-01 -3.2656167187376532e+01 3.2660379648585796e+01 1.3957000000000000e-01 1 0 0 0 0 P 263 -323 -5.5621186219986352e-02 2.1355958403101138e-01 -6.0297613114072050e+01 6.0303825663597863e+01 8.3698327283343776e-01 2 0 0 -134 0 P 264 313 9.9576508295475052e-01 1.7528141641472700e-01 -1.1622055102211575e+03 1.1622063204428912e+03 9.2791018303108086e-01 2 0 0 -135 0 P 265 211 -2.1246256541542038e-01 -5.8070239444719840e-02 -2.7789497482327622e+01 2.7790720800288813e+01 1.3957000000000000e-01 1 0 0 0 0 P 266 -213 2.0086352247851225e-01 -3.1644043446877551e-01 -1.2675713335355475e+02 1.2675908997523619e+02 5.9628402287451021e-01 2 0 0 -136 0 P 267 213 2.8157474425630397e-01 6.1414097517356625e-01 -4.8397051660566228e+02 4.8397159073191239e+02 7.6370056440066925e-01 2 0 0 -137 0 V -17 0 3.0753570153150701e+01 -1.1540588065840299e+02 3.8063649858852870e+02 3.9967471979167033e+02 0 2 0 P 268 2212 1.3282724499940721e+00 -4.6302788179116217e+00 1.5254291194294419e+01 1.6024279705067638e+01 9.3827000000000005e-01 1 0 0 0 0 P 269 -211 8.2576425874223272e-02 -6.6407420141799334e-01 2.2077651937523530e+00 2.3111729374374979e+00 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 1 0 P 270 310 8.4400760283041099e-01 -1.2232344777039483e+00 5.8515521842601474e+00 6.0578040423159027e+00 4.9767000000000000e-01 2 0 0 -138 0 V -19 0 0 0 0 0 0 2 0 P 271 211 1.1324345543248349e-01 -4.4645140324361698e-01 3.0162039591375667e+00 3.0543590233752180e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -211 1.2056108046429301e+00 -4.6973043327436881e-01 6.5878938369901112e+00 6.7152043218779420e+00 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 0 3 0 P 273 -211 -3.1118699291325053e-01 -8.1956283634431026e-02 2.2320908558158385e+00 2.2594830272658037e+00 1.3957000000000000e-01 1 0 0 0 0 P 274 211 -2.4284024544304783e-01 -1.1016889859541876e-01 1.5643872428204852e+00 1.5930774624681774e+00 1.3957000000000000e-01 1 0 0 0 0 P 275 111 1.2357544466045605e-02 -3.6916492039951844e-03 1.0318398496006216e+00 1.0407110131073414e+00 1.3497999999999999e-01 2 0 0 -139 0 V -21 0 0 0 0 0 0 2 0 P 276 -311 -2.7021429879703318e-01 1.7994139849732413e-01 1.7400689453516677e+01 1.7410831788309082e+01 4.9767000000000000e-01 2 0 0 -140 0 P 277 -211 2.9780436216941464e-01 2.8942143656248343e-01 7.6671399546026233e+00 7.6796462857629670e+00 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 278 321 3.8226289356072835e-02 -2.4568890057329693e-01 2.4550031929234123e+01 2.4556252421154937e+01 4.9359999999999998e-01 1 0 0 0 0 P 279 111 -4.5721501722530944e-01 -1.0930127702995897e-01 1.9971840357071244e+01 1.9977828190017963e+01 1.3497999999999999e-01 2 0 0 -141 0 V -23 0 0 0 0 0 0 2 0 P 280 -211 7.7554896435045604e-03 -9.8282819408819375e-02 6.9911296346251106e+01 6.9911505178035284e+01 1.3957000000000000e-01 1 0 0 0 0 P 281 111 -2.7166409172965356e-01 1.3597726108610561e-02 1.5182635964543023e+01 1.5185672217887685e+01 1.3497999999999999e-01 2 0 0 -142 0 V -24 0 0 0 0 0 0 2 0 P 282 22 -2.3532086091661895e+00 2.0405023428010067e+00 -1.5827777578476765e+00 3.4937695974359251e+00 0 1 0 0 0 0 P 283 22 -1.2045650044950427e+00 1.2728362081620890e+00 -1.3309038909871320e+00 2.2005440304404900e+00 0 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 284 321 -5.1155463283376701e+00 6.6316765816164764e+00 -4.8552894715142099e+00 9.6935764985234503e+00 4.9359999999999998e-01 1 0 0 0 0 P 285 111 -1.8597409404567695e+00 1.8122729645550966e+00 -1.5774594623600300e+00 3.0413101813951076e+00 1.3497999999999999e-01 2 0 0 -143 0 V -26 0 0 0 0 0 0 2 0 P 286 3122 -5.3906657088333105e+00 4.9704762702958547e+00 -4.4346233820487164e+00 8.6415008847409567e+00 1.1156800000000000e+00 2 0 0 -144 0 P 287 211 -1.0326204430154255e+00 1.2391043806400848e+00 -1.1279333347025600e+00 1.9731695410906938e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 288 22 -1.8193338592462568e-01 2.4190119592870783e-02 -3.0264959953676344e-03 1.8355946850524002e-01 0 1 0 0 0 0 P 289 113 -2.5176946582174953e+00 2.6437206022573756e+00 -1.4772856736894115e+00 4.0013750142557454e+00 7.0751963096805681e-01 2 0 0 -145 0 V -28 0 -5.1156482787757703e+01 5.8014048705597929e+01 -7.9031781822366142e+01 1.1775487707180804e+02 0 2 0 P 290 -2112 -1.2573023905671661e+00 1.5978337449775120e+00 -1.8782056077447991e+00 2.9230686046993117e+00 9.3957000000000002e-01 1 0 0 0 0 P 291 -211 -2.4624571675385182e-01 1.0726614414554252e-01 -4.4462973006038503e-01 5.3788322194788840e-01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 292 -311 3.7809212028127470e-01 5.3425849488183608e-01 -4.4887246379858342e-01 9.3677516428906538e-01 4.9767000000000000e-01 2 0 0 -146 0 P 293 111 2.5227410759759045e-01 -7.8870653205724561e-02 3.9946783933983078e-02 2.9946310498611783e-01 1.3497999999999999e-01 2 0 0 -147 0 V -30 0 0 0 0 0 0 2 0 P 294 -211 2.8289762310953409e-01 -3.8313841124101256e-01 -5.7166066316550868e-01 7.5703487769067845e-01 1.3957000000000000e-01 1 0 0 0 0 P 295 111 -1.4592379402057433e-03 -1.3925553533952961e-01 -1.6456575684192103e+00 1.6570463682086549e+00 1.3497999999999999e-01 2 0 0 -148 0 V -31 0 0 0 0 0 0 2 0 P 296 211 3.2613374664804523e-01 -2.1623595203873905e-01 -7.5957436331391359e-01 8.6576798621832185e-01 1.3957000000000000e-01 1 0 0 0 0 P 297 111 -2.3489790591488971e-01 -5.5278756238294746e-01 -1.2636161400515178e+00 1.4055947015861927e+00 1.3497999999999999e-01 2 0 0 -149 0 V -32 0 0 0 0 0 0 2 0 P 298 2112 2.4127314588081927e+00 -4.5133404233497593e-01 -8.0990789122567790e+00 8.5148603348472829e+00 9.3957000000000002e-01 1 0 0 0 0 P 299 -211 2.4431619957294212e-01 1.3055448266522657e-01 -9.5761884882815185e-01 1.0066024651513155e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 3 0 P 300 211 1.7106641148123908e-01 1.2792059453818463e-02 -6.8952417570468583e-01 7.2412065824927618e-01 1.3957000000000000e-01 1 0 0 0 0 P 301 -211 -1.4318168272051983e-02 -3.9046626167409991e-03 -5.0645324368968303e-01 5.2554250948578729e-01 1.3957000000000000e-01 1 0 0 0 0 P 302 111 1.1012253155545071e+00 -2.8763493097433634e-01 -3.2615962624036117e+00 3.4571174160650004e+00 1.3497999999999999e-01 2 0 0 -150 0 V -34 0 1.1802944157626803e-03 -6.6995526753251000e-04 -5.2487917023352447e-03 5.4214829651253703e-03 0 2 0 P 303 22 3.6223904350115994e+00 -1.9811668295830973e+00 -1.5926347012087641e+01 1.6452819321311981e+01 0 1 0 0 0 0 P 304 22 2.2812925441284628e+00 -1.3698644528627666e+00 -1.0327443415366792e+01 1.0664750901390807e+01 0 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 305 211 2.7470972550728385e+00 -1.7230262867685913e+00 -1.1652894610520571e+01 1.2096478640601307e+01 1.3957000000000000e-01 1 0 0 0 0 P 306 -211 5.4938199813864701e+00 -2.9703556361601078e+00 -2.6209363416598563e+01 2.6943557320468738e+01 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 307 22 -5.3209790477560276e-02 3.5894418961839897e-01 -2.1851553433828291e-01 4.2358145829417654e-01 0 1 0 0 0 0 P 308 22 -1.8529917693633586e+00 2.6498128641505985e+00 -1.1874571980406605e+00 3.4445814418481895e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 309 -211 -4.9591295296935567e-01 2.9522755537942907e-01 -4.0688904888433422e-02 5.9516748756893656e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 2.1298348796130270e-01 -1.0873734892858337e-01 3.9082999464778045e-01 4.7765412414482822e-01 1.3497999999999999e-01 2 0 0 -151 0 V -38 0 0 0 0 0 0 3 0 P 311 211 -3.6192757321447062e-02 6.1897429124957694e-02 2.9346458760684013e-01 3.3277989196173058e-01 1.3957000000000000e-01 1 0 0 0 0 P 312 -211 3.2438057481391419e-01 -2.1494951311683666e-01 7.8730296293699764e-02 4.2083761115216911e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 111 8.5619421913608967e-02 -2.0075683986810389e-01 5.3988311879116036e-03 2.5667633693202740e-01 1.3497999999999999e-01 2 0 0 -152 0 V -39 0 0 0 0 0 0 3 0 P 314 211 -1.1251504489046382e-02 1.6406709918169008e-02 6.3723157022239239e-03 1.4112465337783753e-01 1.3957000000000000e-01 1 0 0 0 0 P 315 -211 1.8350386838731314e-01 -2.1003560280303438e-01 3.4586676773679464e-01 4.6571689907350389e-01 1.3957000000000000e-01 1 0 0 0 0 P 316 111 5.9804155876132703e-01 2.5384001938908229e-02 4.3140926778282418e-01 7.5008773506105586e-01 1.3497999999999999e-01 2 0 0 -153 0 V -40 0 0 0 0 0 0 2 0 P 317 -211 1.8475017991406786e+00 -2.4937372796349648e+00 2.2669597831353019e+00 3.8458516561253497e+00 1.3957000000000000e-01 1 0 0 0 0 P 318 111 1.8328341976912501e+00 -1.2593623709385791e+00 1.4543623026729910e+00 2.6605758935611763e+00 1.3497999999999999e-01 2 0 0 -154 0 V -41 0 0 0 0 0 0 1 0 P 319 130 2.9751150422188405e-01 6.1757982332332338e-02 2.0114630814626344e+00 2.0942746478227936e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 2.8931350104144286e+01 3.0425787032732976e+00 5.3137550514669719e+01 6.2744289102946333e+01 0 2 0 P 320 2212 1.7440965537075375e+00 1.9935473582898569e-01 2.9999761815995334e+00 3.6002531553234518e+00 9.3827000000000005e-01 1 0 0 0 0 P 321 -211 2.3141775319985344e-01 8.4011323407177860e-03 6.2840586410068289e-01 6.8410413714346185e-01 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 322 -2212 6.4615002946107525e-01 6.6312411013839034e-01 4.3787454470494680e+00 4.5728553146776711e+00 9.3827000000000005e-01 1 0 0 0 0 P 323 -211 4.1499365929139259e-01 8.0382133582751161e-02 1.0834583734883771e+00 1.1713423311028486e+00 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 3 0 P 324 211 -1.7337749095245913e-01 4.7786235509724169e-02 3.6807098147823059e-01 4.3278090412991749e-01 1.3957000000000000e-01 1 0 0 0 0 P 325 -211 2.1137660319470841e-02 -1.7773633757918006e-01 7.3600893952317659e-01 7.7021162698174883e-01 1.3957000000000000e-01 1 0 0 0 0 P 326 111 4.8214097821530896e-02 1.8395764287990712e-01 1.5080801090609550e+00 1.5260046622956227e+00 1.3497999999999999e-01 2 0 0 -155 0 V -45 0 0 0 0 0 0 2 0 P 327 211 1.3434941397399385e+00 2.7532801051735206e-01 4.0963620324856311e+00 4.3220878870033186e+00 1.3957000000000000e-01 1 0 0 0 0 P 328 111 6.8200090442136707e-01 6.2569710026385450e-01 4.3037918088702893e+00 4.4042554001112553e+00 1.3497999999999999e-01 2 0 0 -156 0 V -46 0 0 0 0 0 0 2 0 P 329 -211 1.0341017462349649e+00 9.3042398994952669e-01 3.5986650475791708e+00 3.8606897223433791e+00 1.3957000000000000e-01 1 0 0 0 0 P 330 211 3.0441360737156194e-02 1.4407783765512074e-02 4.3233197708701299e-01 4.5554910162190965e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 331 311 -8.6535161019743984e-02 -5.3343951372764820e-01 3.0871054805671747e+00 3.1733171486547938e+00 4.9767000000000000e-01 2 0 0 -157 0 P 332 111 1.4353430228284020e-01 8.9143464089071187e-02 2.9785260151985455e+00 2.9863666011955310e+00 1.3497999999999999e-01 2 0 0 -158 0 V -48 0 0 0 0 0 0 1 0 P 333 310 -1.8921619152593180e-01 1.1092698398634038e+00 8.6376205797118235e+00 8.7248178807770760e+00 4.9767000000000000e-01 2 0 0 -159 0 V -49 0 0 0 0 0 0 1 0 P 334 130 1.8355022090233411e-01 5.8822123447360847e-02 1.2330763084876843e+01 1.2342307094302168e+01 4.9767000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 335 -311 2.3796931690313408e-01 1.9885372143023899e-01 1.1061629639208331e+01 1.1077161093990926e+01 4.9767000000000000e-01 2 0 0 -160 0 P 336 111 -1.9346889802857745e-01 -1.5757892665002576e-01 3.1030323662001962e+00 3.1159734913369457e+00 1.3497999999999999e-01 2 0 0 -161 0 V -51 0 0 0 0 0 0 2 0 P 337 -211 1.5678195801282949e-01 9.1379048770578591e-02 1.2746539001823148e+01 1.2748594707763331e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 111 -2.1549941282185900e-01 -1.4335573183580172e-01 1.2770093352890040e+01 1.2773429246083571e+01 1.3497999999999999e-01 2 0 0 -162 0 V -52 0 0 0 0 0 0 2 0 P 339 -211 6.7066380936969028e-01 -9.4690391893972070e-01 4.1540272117023463e+01 4.1556709498204484e+01 1.3957000000000000e-01 1 0 0 0 0 P 340 111 4.7053253204869337e-03 -2.1033751132824113e-02 1.5278272356500082e+00 1.5339296663038482e+00 1.3497999999999999e-01 2 0 0 -163 0 V -53 0 0 0 0 0 0 3 0 P 341 -211 1.1051994341627511e-01 -1.4284622717909687e-01 5.1799486535555292e+00 5.1849751726390920e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 211 3.8602262550032324e-01 -5.4999081808778827e-01 2.3769800336484501e+01 2.3779705447894383e+01 1.3957000000000000e-01 1 0 0 0 0 P 343 221 1.2244934493732291e+00 -1.8909711679691572e+00 7.5216619642035184e+01 7.5252340349272473e+01 5.4744999999999999e-01 2 0 0 -164 0 V -54 0 0 0 0 0 0 3 0 P 344 111 3.2047186034063119e-01 -7.3428590439662433e-01 2.3187307874605921e+01 2.3201537536870859e+01 1.3497999999999999e-01 2 0 0 -165 0 P 345 111 4.4995336515093648e-01 -7.1594130302739600e-01 2.1577950852149222e+01 2.1594934882012460e+01 1.3497999999999999e-01 2 0 0 -166 0 P 346 111 2.2799636194990167e-01 -1.9562456422164126e-01 8.7727941818726016e+00 8.7789742378644142e+00 1.3497999999999999e-01 2 0 0 -167 0 V -55 0 0 0 0 0 0 2 0 P 347 321 -3.1074038676241367e-01 -2.3963164034437223e-01 2.9722306465257600e+02 2.9722373354989736e+02 4.9359999999999998e-01 1 0 0 0 0 P 348 111 9.9754714900292071e-02 5.9623268893766925e-03 3.0684909314926716e+02 3.0684913911021573e+02 1.3497999999999999e-01 2 0 0 -168 0 V -56 0 -4.0048033904718352e+00 9.3460214012344025e+00 9.2783394646943671e+03 9.2783545795992504e+03 0 2 0 P 349 2112 -1.8744656403358478e-01 6.8339229148712399e-01 6.3334930040729614e+02 6.3335039376275336e+02 9.3957000000000002e-01 1 0 0 0 0 P 350 111 -1.4830369015895234e-01 1.0014906003566326e-01 1.4451780816722930e+02 1.4451798199836321e+02 1.3497999999999999e-01 2 0 0 -169 0 V -57 0 0 0 0 0 0 2 0 P 351 -3122 -3.3833582802709750e-01 -5.2212622059752223e-01 3.5049391506465628e+02 3.5049624295580639e+02 1.1156800000000000e+00 2 0 0 -170 0 P 352 211 -1.1799404343444921e-01 -2.1537188859934750e-01 3.7088547390861443e+01 3.7089623009593396e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 353 -311 2.0781488733761019e-01 1.2655050020288508e-01 9.6868700184584384e+01 9.6870284158436846e+01 4.9767000000000000e-01 2 0 0 -171 0 P 354 -211 9.6360876255832562e-02 3.5825876091527736e-01 1.8391900391280450e+02 1.8391943104202269e+02 1.3957000000000000e-01 1 0 0 0 0 V -59 0 1.1484226667431910e-05 2.1285050477324950e-05 4.6426584634791780e-04 4.6579217549891442e-04 0 2 0 P 355 22 3.2560129134449639e-02 9.5468437523269483e-03 1.1122291117977982e-01 1.1628344768791742e-01 0 1 0 0 0 0 P 356 22 2.1096475382255953e-02 8.9901170350248388e-02 2.0579200036625989e+00 2.0599907823042742e+00 0 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 357 211 -1.0592107167775372e-01 2.0438582248457532e-01 3.8966570312676931e+00 3.9059452943027777e+00 1.3957000000000000e-01 1 0 0 0 0 P 358 111 3.5183208713890191e-01 -2.2239658995174760e-01 1.5825897546702015e+01 1.5831945515945648e+01 1.3497999999999999e-01 2 0 0 -172 0 V -61 0 0 0 0 0 0 2 0 P 359 -321 1.9688917902523989e-01 -1.0712933300260820e-01 2.7057942604077256e-01 6.0588466609031344e-01 4.9359999999999998e-01 1 0 0 0 0 P 360 111 1.9921401954478232e-01 2.2899419280048816e-01 6.5386108252943043e-01 7.3340199179310572e-01 1.3497999999999999e-01 2 0 0 -173 0 V -62 0 0 0 0 0 0 2 0 P 361 311 2.1300889298790790e-01 5.3891768073250268e-01 8.9779848482314639e-01 1.1787801335909811e+00 4.9767000000000000e-01 2 0 0 -174 0 P 362 211 -3.4288034659921668e-02 -4.6875828490949581e-02 3.1920296222637212e-01 3.5319021590588218e-01 1.3957000000000000e-01 1 0 0 0 0 V -63 0 3.6554733020524213e-05 6.7928104092220836e-05 9.1537417352927037e-06 7.9349888547662438e-05 0 3 0 P 363 22 3.0241484543396624e-01 4.8019397881407372e-01 8.8907909190908144e-02 5.7440892432555346e-01 0 1 0 0 0 0 P 364 11 -2.9729482890559805e-04 4.0212844252132916e-02 -6.5198993711908957e-03 4.0742243616080455e-02 5.1000000000000004e-04 1 0 0 0 0 P 365 -11 2.6354954439596601e-03 4.5902787862046143e-02 -6.0742073085563670e-03 4.6380684171004445e-02 5.1000000000000004e-04 1 0 0 0 0 V -64 0 0 0 0 0 0 3 0 P 366 -211 -4.1197656176832237e-01 6.1143534526830445e-01 1.1002296564217089e+00 1.3317518352379509e+00 1.3957000000000000e-01 1 0 0 0 0 P 367 211 5.1409395692504557e-02 1.7751207010929562e-01 2.2380928015279547e-01 3.2206185707479934e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 111 -7.4153124212087695e-02 3.0150510201510894e-01 9.7212510273357933e-01 1.0293934272844016e+00 1.3497999999999999e-01 2 0 0 -175 0 V -65 0 0 0 0 0 0 2 0 P 369 211 -6.6375468483889055e-01 3.0455783942020831e-01 5.2996746037140463e+00 5.3515751372235743e+00 1.3957000000000000e-01 1 0 0 0 0 P 370 111 -7.3149444638004338e-02 5.4245103515708348e-01 2.9827119499820882e+00 3.0355220545665271e+00 1.3497999999999999e-01 2 0 0 -176 0 V -66 0 0 0 0 0 0 2 0 P 371 -2212 -4.3445562713687003e-01 1.3442816525492113e-01 2.6023440707620407e+00 2.8034564164786020e+00 9.3827000000000005e-01 1 0 0 0 0 P 372 111 -2.1908215116412322e-01 -3.2141744502348510e-02 5.7514041559986528e-01 6.3090108476269058e-01 1.3497999999999999e-01 2 0 0 -177 0 V -67 0 0 0 0 0 0 2 0 P 373 2112 -3.0778198207277319e-01 1.2420570537028526e-02 9.1995825346355353e+00 9.2525669203487677e+00 9.3957000000000002e-01 1 0 0 0 0 P 374 211 1.1234160805553881e-01 -1.0074770740510693e-01 8.6706800393227845e-01 8.9109901009427395e-01 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 3 0 P 375 211 -1.1366344760175331e+00 -4.0271536577495509e-01 1.5507742262388168e+01 1.5555181370188617e+01 1.3957000000000000e-01 1 0 0 0 0 P 376 -211 -4.3605195045177336e-01 3.3961411515898952e-02 3.7654338094450295e+00 3.7933186313802660e+00 1.3957000000000000e-01 1 0 0 0 0 P 377 111 -1.1746457381999872e-01 -1.1130304069342557e-01 3.1679962078276613e+00 3.1749969867986896e+00 1.3497999999999999e-01 2 0 0 -178 0 V -69 0 0 0 0 0 0 2 0 P 378 211 -1.2721177538729216e-02 1.6093684674248054e-01 3.3756377359482754e+00 3.3823767392553101e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 111 -3.1052750327331424e-01 -5.3162739899359024e-01 1.7601477325075297e+01 1.7612758973175943e+01 1.3497999999999999e-01 2 0 0 -179 0 V -70 0 0 0 0 0 0 2 0 P 380 22 -4.6493118268661288e-01 -8.0041711479249864e-02 4.3376777022328895e+01 4.3379342463032465e+01 0 1 0 0 0 0 P 381 111 -1.8467024547558100e+00 1.2199645772270122e+00 1.7321799722866041e+02 1.7323218929239073e+02 1.3497999999999999e-01 2 0 0 -180 0 V -71 0 0 0 0 0 0 3 0 P 382 211 1.5122191195769961e-02 1.8606906407126528e-01 1.1021808169567782e+01 1.1024272560533054e+01 1.3957000000000000e-01 1 0 0 0 0 P 383 -211 -1.4081316655108672e-01 2.6379469253378585e-01 2.3694397874088921e+01 2.3696695685015090e+01 1.3957000000000000e-01 1 0 0 0 0 P 384 111 -2.5995584251047227e-01 6.0534595481589315e-01 4.5768437100009287e+01 4.5773377360021989e+01 1.3497999999999999e-01 2 0 0 -181 0 V -72 0 0 0 0 0 0 2 0 P 385 211 -1.7523499855472888e-01 -4.1679804685151156e-01 3.2518429147836386e+01 3.2521871747246230e+01 1.3957000000000000e-01 1 0 0 0 0 P 386 -211 -7.8120668488522449e-02 3.7317188837366044e-01 2.2291306515718361e+01 2.2295003612014181e+01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 -9.3696501448417896e-06 1.0029848474724985e-04 1.0976932796398109e-02 1.0977446687725809e-02 0 2 0 P 387 22 2.3411110915450530e-02 9.6990849482008729e-02 6.4546540967596169e+00 6.4554252233151326e+00 0 1 0 0 0 0 P 388 22 -6.0957964224291367e-02 3.0493370860591640e-01 3.7533037985240014e+01 3.7534326167409958e+01 0 1 0 0 0 0 V -74 0 0 0 0 0 0 3 0 P 389 111 -2.0111099319840406e-01 2.5504330272710835e-01 2.4019238625298957e+01 2.4021813762855306e+01 1.3497999999999999e-01 2 0 0 -182 0 P 390 111 -8.8558416857516753e-02 7.6457239683976622e-02 1.6707734158757130e+01 1.6708689015682715e+01 1.3497999999999999e-01 2 0 0 -183 0 P 391 111 -3.4174502567871938e-03 3.6683177529149957e-02 2.5967919162925277e+01 2.5968296104810221e+01 1.3497999999999999e-01 2 0 0 -184 0 V -75 0 -4.3269571609796806e-04 4.2125559653808146e-04 9.6309086228126506e-02 9.6311005351284479e-02 0 2 0 P 392 22 -1.5228808583462708e-01 8.8458283192603029e-02 3.1624263584616539e+01 3.1624753972137970e+01 0 1 0 0 0 0 P 393 22 -6.7535917057633466e-01 7.1730665912442926e-01 1.5259283868525725e+02 1.5259601913836889e+02 0 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 394 211 -1.5872582678810532e-01 3.9371250400653013e-01 1.1092037946918464e+02 1.1092127958510359e+02 1.3957000000000000e-01 1 0 0 0 0 P 395 -211 5.9595790327410574e-02 1.9021451656200861e-01 1.8232890414093298e+01 1.8234514138242645e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 5.4604820646356059e-04 1.0545560005473964e-01 7.2080421368806896e+01 7.2080624896617707e+01 1.3497999999999999e-01 2 0 0 -185 0 V -77 0 0 0 0 0 0 3 0 P 397 211 -3.4338691019964218e-01 4.8315515947906090e-03 6.4474990943910754e+01 6.4476056601782503e+01 1.3957000000000000e-01 1 0 0 0 0 P 398 -211 3.0533923518638727e-02 1.1352147296495217e-01 1.4804980515758575e+02 1.4804991761709735e+02 1.3957000000000000e-01 1 0 0 0 0 P 399 111 -1.3021998910457439e-03 -4.6085202026770876e-02 2.5818389333150673e+01 2.5818783335008622e+01 1.3497999999999999e-01 2 0 0 -186 0 V -78 0 0 0 0 0 0 3 0 P 400 211 -3.2483836149538564e-01 -2.2877030106102439e-01 1.0463378126126290e+02 1.0463462866865088e+02 1.3957000000000000e-01 1 0 0 0 0 P 401 -211 -1.1350196974705447e-01 2.7665594251976611e-02 1.4636420418621302e+01 1.4637552067807524e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 111 7.1811239362426033e-02 3.8593132029227269e-02 1.0141426754977375e+02 1.0141439014529168e+02 1.3497999999999999e-01 2 0 0 -187 0 V -79 0 0 0 0 0 0 3 0 P 403 211 1.7784773789406358e+00 -1.5604672802944208e+00 6.1466009403552016e+02 6.1466466363331779e+02 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 7.8610648009980988e-01 -9.1253424506270164e-01 3.0822097740377825e+02 3.0822336230998411e+02 1.3957000000000000e-01 1 0 0 0 0 P 405 111 9.0800469361617886e-01 -1.0349004262710575e+00 3.6186805434002736e+02 3.6187069854141731e+02 1.3497999999999999e-01 2 0 0 -188 0 V -80 0 0 0 0 0 0 2 0 P 406 -2212 -2.0064892104575133e-01 -1.9692233010467400e-01 1.6590228714632633e+02 1.6590517854897908e+02 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 2.6416868756839715e-02 -1.6203405314035257e-01 1.6224747304201362e+01 1.6226178162322185e+01 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 408 211 2.4696353646326358e-01 2.2726274021012677e-01 5.0286346144338673e+01 5.0287659795168189e+01 1.3957000000000000e-01 1 0 0 0 0 P 409 111 5.8978475187130597e-01 -7.0703567172868065e-01 1.1477543821871966e+02 1.1477921058882644e+02 1.3497999999999999e-01 2 0 0 -189 0 V -82 0 0 0 0 0 0 2 0 P 410 2112 1.0965274817402419e+00 7.8887646967365954e-01 1.3685139683980367e+02 1.3686128856397977e+02 9.3957000000000002e-01 1 0 0 0 0 P 411 211 -2.2558859834422248e-03 3.5364483769981303e-02 3.0822760772420128e+01 3.0823097137608915e+01 1.3957000000000000e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 2 0 P 412 -211 6.7985536076868636e-01 5.2854633721184918e-01 2.9785962495324224e+01 2.9798734974825816e+01 1.3957000000000000e-01 1 0 0 0 0 P 413 111 1.7660028845445512e+00 1.6228380335645422e-02 7.6201267690357540e+01 7.6221850192490578e+01 1.3497999999999999e-01 2 0 0 -190 0 V -84 0 0 0 0 0 0 2 0 P 414 211 8.1673705268249119e-01 9.5612556221903178e-01 6.0972780692338837e+01 6.0985905754074857e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 2.5259206650254790e-01 -6.6246277957903887e-02 1.4717612577817555e+01 1.4720547914820861e+01 1.3497999999999999e-01 2 0 0 -191 0 V -85 0 0 0 0 0 0 3 0 P 416 -211 -2.0580952178573306e-01 1.0129810291395311e-01 7.5846996355216714e+00 7.5894510480596828e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 211 7.7982770476117097e-02 1.0763353474148696e-01 2.5364435425437306e+00 2.5437554756115746e+00 1.3957000000000000e-01 1 0 0 0 0 P 418 111 3.1847192949447256e-01 1.8991103386229924e-01 1.0874321816205605e+01 1.0881478995681778e+01 1.3497999999999999e-01 2 0 0 -192 0 V -86 0 0 0 0 0 0 2 0 P 419 -211 2.0203614510755639e+00 8.2171535154357100e-01 6.8780890809422218e+01 6.8815605038643056e+01 1.3957000000000000e-01 1 0 0 0 0 P 420 111 1.6524760406333130e-01 2.0142789582334678e-01 1.1906880229041729e+01 1.1910495218797971e+01 1.3497999999999999e-01 2 0 0 -193 0 V -87 0 0 0 0 0 0 2 0 P 421 211 2.8370731102204705e-01 -7.3081522008295138e-02 5.5925252543869677e+00 5.6019326355323509e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 111 3.7611756326584939e-01 6.2792123997740934e-01 1.1540300060076813e+01 1.1564276656238414e+01 1.3497999999999999e-01 2 0 0 -194 0 V -88 0 0 0 0 0 0 2 0 P 423 211 8.7133640795674358e-02 3.8412659922724378e-02 1.5575541233059484e+00 1.5666915573041205e+00 1.3957000000000000e-01 1 0 0 0 0 P 424 -211 -6.9113328808103869e-01 -1.1818888536046206e+00 4.9984848603138294e+00 5.1844823432870433e+00 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 3 0 P 425 -211 -3.5360086708249604e-02 -1.8902266730864481e-01 2.9631251181980767e-01 3.7981679010998609e-01 1.3957000000000000e-01 1 0 0 0 0 P 426 211 3.4252199563206695e-03 7.7761766930894895e-04 3.3905615566447705e-01 3.6667587651079925e-01 1.3957000000000000e-01 1 0 0 0 0 P 427 221 -1.6301911762678389e-01 -3.7742667721291207e-01 2.2378653398698707e+00 2.3402497540379503e+00 5.4744999999999999e-01 2 0 0 -195 0 V -90 0 0 0 0 0 0 2 0 P 428 -211 -3.4328506452463858e-01 -2.5307147897619581e-01 1.0511050882273298e+00 1.1428873524517922e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 111 2.1599657393555408e-01 9.1086673152757959e-03 1.6427009105815218e+00 1.6623547665277465e+00 1.3497999999999999e-01 2 0 0 -196 0 V -91 0 0 0 0 0 0 2 0 P 430 -211 -1.9060839925878401e-01 -1.1025916597654297e+00 2.4708399900430171e+00 2.7159841625731285e+00 1.3957000000000000e-01 1 0 0 0 0 P 431 211 5.0524130792803150e-02 -6.4204059569067529e-01 6.8593313364829389e-01 9.5118497835267224e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 432 -211 -5.3358543942144288e-01 -1.9042752902131438e-01 2.8177871354458478e-01 6.4796226223336417e-01 1.3957000000000000e-01 1 0 0 0 0 P 433 211 -1.8225865295634738e-01 -1.9363437057288063e-01 3.8579994800573125e-01 4.8891090274797805e-01 1.3957000000000000e-01 1 0 0 0 0 P 434 111 -8.4942178678900049e-01 4.5665516636620954e-02 7.7552734603948548e-01 1.1589930871823850e+00 1.3497999999999999e-01 2 0 0 -197 0 V -93 0 0 0 0 0 0 2 0 P 435 -211 7.9205426775194002e-02 8.6099652494097692e-02 1.5613309613289703e-01 2.3988325993759854e-01 1.3957000000000000e-01 1 0 0 0 0 P 436 211 -1.0166483733771836e+00 -3.8242761601292419e-01 8.9589537005810571e-01 1.4148968497990770e+00 1.3957000000000000e-01 1 0 0 0 0 V -94 0 1.0661340318313867e-07 -2.1329633356567461e-05 2.2545898425705059e-05 3.1643519983250124e-05 0 2 0 P 437 22 -3.4589235252374860e-02 -7.2202355081263714e-02 3.7443314504580369e-02 8.8383239789645282e-02 0 1 0 0 0 0 P 438 22 3.6922784394124664e-02 -3.9465965407489734e-01 4.5604024713453506e-01 6.0422863352249412e-01 0 1 0 0 0 0 V -95 0 -1.9946947940585887e-04 1.2207013712594017e-05 -4.4530251392117297e-05 2.0844780339048286e-04 0 2 0 P 439 22 -4.7777300906595382e-01 5.6750717219014625e-02 -4.8721172034402634e-02 4.8359222977754157e-01 0 1 0 0 0 0 P 440 22 -2.1045924333547897e-01 -1.4632692107915879e-02 -1.0492215879939083e-01 2.3561805574020012e-01 0 1 0 0 0 0 V -96 0 -4.3020333612394019e-04 1.2791462299743448e-04 1.7736066228329664e-04 4.8555253275226655e-04 0 2 0 P 441 22 -3.1812525868447771e-03 -2.1475755422299013e-03 -6.3143026126158313e-03 7.3893752249142783e-03 0 1 0 0 0 0 P 442 22 -1.0812432798044349e+00 3.2458523137211576e-01 4.5339185201999832e-01 1.2165552901636922e+00 0 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 443 -211 -4.8079850699139359e-01 -2.9008652370767535e-01 -3.8416899139867462e-02 5.7989054018968067e-01 1.3957000000000000e-01 1 0 0 0 0 P 444 211 -1.0974576046442011e+00 -3.1189883332605584e-01 -2.3706130449575757e-01 1.1736148956155816e+00 1.3957000000000000e-01 1 0 0 0 0 P 445 111 -2.1297332079201183e+00 -6.5708016892534793e-01 1.7728903861893525e-01 2.2399037677826938e+00 1.3497999999999999e-01 2 0 0 -198 0 V -98 0 0 0 0 0 0 2 0 P 446 -211 -5.8730414951768950e-01 -2.2670912844288890e-01 -1.2628566285993941e+00 1.4179597463459457e+00 1.3957000000000000e-01 1 0 0 0 0 P 447 111 -8.4977180552302090e-01 -4.3655427360785548e-01 -6.6110837492075669e-01 1.1696049072475290e+00 1.3497999999999999e-01 2 0 0 -199 0 V -99 0 0 0 0 0 0 3 0 P 448 211 -1.0523174934918256e-01 -8.1312554534894846e-02 -9.7126591654126557e-02 2.1586758048031870e-01 1.3957000000000000e-01 1 0 0 0 0 P 449 -211 -1.1957929574573799e-01 1.5949141278279247e-01 -1.7472910763639346e-01 2.9957764382194502e-01 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -5.6893396044605103e-02 -4.6967281071073917e-02 1.0397112585137020e-02 1.5417679577292284e-01 1.3497999999999999e-01 2 0 0 -200 0 V -100 0 0 0 0 0 0 2 0 P 451 -211 -3.4759309459952252e-02 -1.2650017103289099e-01 -1.0634694370189141e-01 2.1908893217188463e-01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 -5.2846728825135414e-01 -1.8707289767975660e-01 -8.4265269101188434e-01 1.0210568553550829e+00 1.3497999999999999e-01 2 0 0 -201 0 V -101 0 0 0 0 0 0 2 0 P 453 211 -1.0928764493954830e+00 -4.2198049536429633e-01 -2.0083355963988088e+00 2.3292355236801909e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 -211 -6.1310873536743346e-02 -4.4930597809313709e-02 -7.5597049930105298e-01 7.7249528318742777e-01 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 455 -211 -4.6333246208637369e-01 -1.7203948070283668e-02 -9.9807090106668128e-01 1.1093233319047622e+00 1.3957000000000000e-01 1 0 0 0 0 P 456 211 1.0424806372991584e-01 2.0305165334717049e-02 -1.9267597351640982e+00 1.9347255155396934e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 457 -211 -1.4920006891656756e-01 -3.5041802040813486e-01 -2.8503122237681859e+00 2.8790298726226871e+00 1.3957000000000000e-01 1 0 0 0 0 P 458 111 -1.1486369519576261e+00 -5.6091246776948211e-01 -4.1599638190253660e+00 4.3540220738877595e+00 1.3497999999999999e-01 2 0 0 -202 0 V -104 0 0 0 0 0 0 2 0 P 459 211 -1.3936751945882520e+00 1.0048134749593911e-02 -5.6682720197774357e+00 5.8387686191622903e+00 1.3957000000000000e-01 1 0 0 0 0 P 460 111 -6.8269638907363123e-02 -1.9371687171256907e-01 -4.3783893893041143e-01 5.0210507548356276e-01 1.3497999999999999e-01 2 0 0 -203 0 V -105 0 0 0 0 0 0 3 0 P 461 211 -4.4111397547324244e-01 -9.3655920853998285e-03 -2.3018430131851013e+00 2.3478991238811742e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 -211 -7.6121556552142322e-01 9.8250210496495429e-03 -3.8798380228708060e+00 3.9562821609239109e+00 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -9.2901830318047085e-01 -2.2246954074251596e-01 -5.8725493961084787e+00 5.9512707646633389e+00 1.3497999999999999e-01 2 0 0 -204 0 V -106 0 0 0 0 0 0 2 0 P 464 221 -6.6971986275595385e-01 5.4992187601383025e-01 -5.8337771966544354e+00 5.9231407755508991e+00 5.4744999999999999e-01 2 0 0 -205 0 P 465 22 -2.7550423887631309e-01 -8.2321919618323969e-02 -1.4107440292768822e+00 1.4397493532656427e+00 0 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 466 2112 8.9140947353863187e-01 1.2714800706113103e+00 -8.8913362076905678e+00 9.0746858767984602e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 211 4.9905494637190163e-02 -5.7571968842568010e-02 -1.2365744555840108e+00 1.2467562949888342e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 468 211 6.4892094537928890e-01 3.6421167062853554e-01 -4.4333780753072576e+00 4.4975626152271699e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 111 6.6169116324777821e-01 5.0006774134924148e-01 -1.7236116606749932e+00 1.9175400122743560e+00 1.3497999999999999e-01 2 0 0 -206 0 V -109 0 0 0 0 0 0 2 0 P 470 -211 5.5042762007238188e-01 4.4879741643323928e-01 -1.4812096322816644e+00 1.6485907453336259e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 7.0661692583030844e-01 9.7130162554692767e-01 -3.3495158930933999e+00 3.5609283404956713e+00 1.3497999999999999e-01 2 0 0 -207 0 V -110 0 0 0 0 0 0 2 0 P 472 211 8.2380339402014491e-01 -3.6225351982200471e-01 -3.0296255304949478e+00 3.1635407828174644e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 111 1.3881415201251868e+00 2.4578600777971416e-01 -3.4755642600130305e+00 3.7530140110843817e+00 1.3497999999999999e-01 2 0 0 -208 0 V -111 0 0 0 0 0 0 2 0 P 474 -211 1.2396799382578720e+00 5.8885491488498731e-01 -4.5809458829260867e+00 4.7841510665216989e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 8.7423022062808886e-01 -1.9445392456339437e-02 -5.2355903614431663e+00 5.3098288706119146e+00 1.3497999999999999e-01 2 0 0 -209 0 V -112 0 0 0 0 0 0 1 0 P 476 310 3.1898147136545165e+00 1.6641065332275806e-01 -1.0456219890813957e+01 1.0944533806742962e+01 4.9767000000000000e-01 2 0 0 -210 0 V -113 0 0 0 0 0 0 2 0 P 477 321 1.7061519646609880e-01 -1.5333755664235899e-03 -3.2473493405515121e+00 3.2890774688483901e+00 4.9359999999999998e-01 1 0 0 0 0 P 478 -211 1.1296680303063812e-01 4.5265571208171401e-02 -2.2423832644653202e-01 2.9081451557875593e-01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 479 -2112 9.2492775164392571e-01 -1.5987618323038094e-01 -7.0312217560636352e+00 7.1555518939888900e+00 9.3957000000000002e-01 1 0 0 0 0 P 480 211 -4.9609016134484492e-02 1.8502923170591976e-01 -7.2223743349432623e-01 7.6013391340472747e-01 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 481 211 -3.1238785425809029e-01 1.4552844487517214e-01 -5.3716119079603519e+00 5.3844645949618064e+00 1.3957000000000000e-01 1 0 0 0 0 P 482 -211 3.0498948789488672e-01 -2.7726971847827714e-01 -8.7022957447667064e+00 8.7131698077563104e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 -1.0698333694226187e-04 -1.5478957127298628e-04 -7.5858033850767785e-04 7.8238968442617283e-04 0 2 0 P 483 22 -1.5702733510949024e-01 -3.4303719536518557e-01 -1.5539099617786527e+00 1.5990523039258462e+00 0 1 0 0 0 0 P 484 22 -2.4593275338033721e-01 -2.3998835908286656e-01 -1.3033349986834528e+00 1.3478721936718379e+00 0 1 0 0 0 0 V -117 0 0 0 0 0 0 3 0 P 485 -211 3.0397495367247760e-02 3.0033498643158681e-02 -3.6099088332079670e+00 3.6128586448598092e+00 1.3957000000000000e-01 1 0 0 0 0 P 486 211 1.0866133712220592e-01 -3.2283122200042602e-01 -5.6211837409185108e+00 5.6332240962125848e+00 1.3957000000000000e-01 1 0 0 0 0 P 487 111 8.9727815643427120e-02 -1.5724281725175432e-01 -1.7350026505922621e+01 1.7351496066365428e+01 1.3497999999999999e-01 2 0 0 -211 0 V -118 0 0 0 0 0 0 2 0 P 488 -211 1.4523847651539892e+00 1.3868034845361304e-01 -8.0128031825099754e+01 8.0141435086315980e+01 1.3957000000000000e-01 1 0 0 0 0 P 489 211 1.7343633955916926e-01 5.8908667666785548e-02 -4.7520901288414690e+00 4.7576665259913380e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 490 211 4.6942443326988242e-01 -4.0518011908022911e-01 -1.1486296501313115e+01 1.1503869667569541e+01 1.3957000000000000e-01 1 0 0 0 0 P 491 -211 5.5478608407355945e-01 8.7053597890011034e-03 -2.2836984883397037e+01 2.2844150711544859e+01 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 492 -211 9.7008712154905821e-02 -5.7034771819212948e-01 -2.6287476952781390e+01 2.6294212890630394e+01 1.3957000000000000e-01 1 0 0 0 0 P 493 211 2.7463516536804977e-01 1.0347853911699437e-01 -4.3566258252186287e+01 4.3567470320908058e+01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 494 211 -1.4057001922020676e-01 -8.1399586067038426e-02 -1.0902940852493995e+01 1.0905044009117887e+01 1.3957000000000000e-01 1 0 0 0 0 P 495 111 7.4353048557119261e-01 -8.2278984422488555e-01 -5.3036411374516035e+01 5.3048175951657633e+01 1.3497999999999999e-01 2 0 0 -212 0 V -122 0 0 0 0 0 0 2 0 P 496 -211 2.8832968609372406e-01 -1.2574001451778487e-02 -1.0869513259965267e+01 1.0874239762248033e+01 1.3957000000000000e-01 1 0 0 0 0 P 497 211 -2.1187429165008045e-01 -3.2509462321923271e-01 -1.3083421836621721e+01 1.3089919173524272e+01 1.3957000000000000e-01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 498 22 3.1481849659010791e-01 -5.1657256462509515e-01 -2.2578788588432204e+01 2.2586891154415984e+01 0 1 0 0 0 0 P 499 22 -1.9585651794989797e-01 -7.5530746353474010e-02 -8.3112481845350423e+00 8.3138986675449207e+00 0 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 500 211 -2.7454203887815248e-01 4.5926284287188274e-01 -2.7339321927564737e+02 2.7339377849793340e+02 1.3957000000000000e-01 1 0 0 0 0 P 501 -211 -2.3010514547306800e-02 -2.2419689152188532e-01 -5.0515147610347348e+01 5.0515843174295618e+01 1.3957000000000000e-01 1 0 0 0 0 V -125 0 -8.5245168620721784e-05 2.0715643819368475e-05 -2.0001598974819675e-02 2.0001869287031536e-02 0 2 0 P 502 22 -1.4887995671514945e-01 7.3450198293681157e-02 -4.2564211509867050e+01 4.2564535256829004e+01 0 1 0 0 0 0 P 503 22 -5.7198470828064923e-02 -2.3370558908663575e-02 -5.7892392694987489e+00 5.7895689967039150e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 504 -211 3.7341710600835915e-01 -9.7061317706431977e-02 -9.3433946421335733e+01 9.3434847272762170e+01 1.3957000000000000e-01 1 0 0 0 0 P 505 111 9.3084730987424105e-02 7.7426603723185594e-01 -1.2926855075237305e+02 1.2927097348547662e+02 1.3497999999999999e-01 2 0 0 -213 0 V -127 0 0 0 0 0 0 3 0 P 506 -211 -1.2162901352851001e-01 4.4886276348272985e-01 -4.4988561771330737e+01 4.4991181818608794e+01 1.3957000000000000e-01 1 0 0 0 0 P 507 211 -1.3833229787617229e-01 -1.8875512140226473e-02 -1.0945431903619374e+01 1.0947212040116108e+01 1.3957000000000000e-01 1 0 0 0 0 P 508 111 -1.0485930180771176e-01 -3.5448889286948650e-02 -3.7604985695782489e+01 3.7605390848618136e+01 1.3497999999999999e-01 2 0 0 -214 0 V -128 0 0 0 0 0 0 2 0 P 509 -211 5.1029842223410649e-01 1.1376064044071865e+00 -9.6836378176514970e+01 9.6844505114854130e+01 1.3957000000000000e-01 1 0 0 0 0 P 510 111 -7.1344947235420744e-02 5.5028752470678888e-01 -6.1680469438078966e+01 6.1683113055061817e+01 1.3497999999999999e-01 2 0 0 -215 0 V -129 0 0 0 0 0 0 2 0 P 511 211 1.2593781156632539e-01 -1.5631930889287667e-02 -1.3316602712171180e+01 1.3317938739472797e+01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 -7.0208525219334267e-02 1.2152698055418498e+00 -5.6375120748495121e+01 5.6388423181935849e+01 1.3497999999999999e-01 2 0 0 -216 0 V -130 0 0 0 0 0 0 3 0 P 513 111 -1.1639909115549417e-01 -3.8297018605225976e-02 -5.2199325976332842e+00 5.2231150987021566e+00 1.3497999999999999e-01 2 0 0 -217 0 P 514 111 1.4672683116573524e-02 -6.5865323525536937e-02 -2.4829781504894837e+00 2.4875597730870993e+00 1.3497999999999999e-01 2 0 0 -218 0 P 515 111 -2.5920488275761883e-01 -1.3481570965259068e-01 -1.3049256986757172e+01 1.3053225270163898e+01 1.3497999999999999e-01 2 0 0 -219 0 V -131 0 0 0 0 0 0 2 0 P 516 -211 8.7569765449325182e-02 -3.1838045600934534e-01 -4.7384065356436338e+00 4.7519481121451514e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 111 -8.1383779159796821e-01 -4.8953716413347934e-02 -1.0878208311250059e+01 1.0909553798425195e+01 1.3497999999999999e-01 2 0 0 -220 0 V -132 0 0 0 0 0 0 2 0 P 518 211 1.4071114550649730e-01 -1.1572379447072749e-01 -8.7884532803004216e+00 8.7914493951793684e+00 1.3957000000000000e-01 1 0 0 0 0 P 519 111 -4.7241707809557854e-01 2.3658310138031091e-01 -1.2353462772123619e+01 1.2365492773123893e+01 1.3497999999999999e-01 2 0 0 -221 0 V -133 0 1.4892340227338475e-05 1.4193697639685541e-04 -1.3829089500048681e-03 1.3908300903937797e-03 0 2 0 P 520 22 8.8026137851320227e-02 2.1680366205424020e-01 -2.3578341301085586e+00 2.3694164289820248e+00 0 1 0 0 0 0 P 521 22 -3.7823512461336493e-02 2.6167109384460263e-01 -2.3040026870561889e+00 2.3191228431048843e+00 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 522 -311 5.6101371974971474e-03 -1.5378388883331453e-02 -5.0194483375022571e+01 5.0196953141428828e+01 4.9767000000000000e-01 2 0 0 -222 0 P 523 -211 -6.1231323417483496e-02 2.2893797291434281e-01 -1.0103129739049475e+01 1.0106872522169036e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 524 321 3.3935781398447235e-01 3.0240634678726774e-01 -6.7067531332255010e+02 6.7067564899479180e+02 4.9359999999999998e-01 1 0 0 0 0 P 525 -211 6.5640726897027812e-01 -1.2712493037254075e-01 -4.9153019689860741e+02 4.9153067144809933e+02 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 526 -211 1.0024844887206667e-01 -2.9678719696879019e-01 -3.2595460042195192e+01 3.2597264111256777e+01 1.3957000000000000e-01 1 0 0 0 0 P 527 111 1.0061507360644559e-01 -1.9653237499985359e-02 -9.4161673311359564e+01 9.4161825863979431e+01 1.3497999999999999e-01 2 0 0 -223 0 V -137 0 0 0 0 0 0 2 0 P 528 211 2.7637919557265306e-01 6.3705380558281655e-01 -2.4230031532079715e+02 2.4230135060984199e+02 1.3957000000000000e-01 1 0 0 0 0 P 529 111 5.1955486836508949e-03 -2.2912830409250330e-02 -2.4167020128486510e+02 2.4167024012207034e+02 1.3497999999999999e-01 2 0 0 -224 0 V -138 0 4.5342759558286119e+01 -6.5716027462231935e+01 3.1436390246236260e+02 3.2544440502763513e+02 0 2 0 P 530 111 4.7287410474459995e-01 -4.5779989655188569e-01 1.9561376855247854e+00 2.0683048395609358e+00 1.3497999999999999e-01 2 0 0 -225 0 P 531 111 3.7113349808581098e-01 -7.6543458115206264e-01 3.8954144987353621e+00 3.9894992027549669e+00 1.3497999999999999e-01 2 0 0 -226 0 V -139 0 1.5278400170363214e-05 -4.5642153246720194e-06 1.2757277286957983e-03 1.2866956994285600e-03 0 2 0 P 532 22 -3.4107019458001417e-03 4.0770190560121863e-02 1.0526618097953025e-01 1.1293719575094362e-01 0 1 0 0 0 0 P 533 22 1.5768246411845745e-02 -4.4461839764117050e-02 9.2657366862109136e-01 9.2777381735639797e-01 0 1 0 0 0 0 V -140 0 0 0 0 0 0 1 0 P 534 310 -2.7021429879703318e-01 1.7994139849732413e-01 1.7400689453516677e+01 1.7410831788309082e+01 4.9767000000000000e-01 2 0 0 -227 0 V -141 0 -3.8212631817309733e-05 -9.1350662138233712e-06 1.6691852925354985e-03 1.6696857372872154e-03 0 2 0 P 535 22 -7.2923325621033916e-02 2.9909569719728985e-02 2.6856990815526141e+00 2.6868554018467399e+00 0 1 0 0 0 0 P 536 22 -3.8429169160427556e-01 -1.3921084674968795e-01 1.7286141275518631e+01 1.7290972788171224e+01 0 1 0 0 0 0 V -142 0 -2.7065235820850006e-05 1.3547085351387350e-06 1.5126092673720158e-03 1.5129117619426524e-03 0 2 0 P 537 22 -1.7582896644592963e-01 -1.3326467953739207e-02 1.2404750872976079e+01 1.2406004096436144e+01 0 1 0 0 0 0 P 538 22 -9.5835125283723913e-02 2.6924194062349766e-02 2.7778850915669442e+00 2.7796681214515422e+00 0 1 0 0 0 0 V -143 0 -1.9069530120911747e-04 1.8582799965897071e-04 -1.6175054319449229e-04 3.1185180069706457e-04 0 2 0 P 539 22 -1.7469886546211253e+00 1.7366351006915757e+00 -1.5146017065182633e+00 2.8916931306272815e+00 0 1 0 0 0 0 P 540 22 -1.1275228583564409e-01 7.5637863863520879e-02 -6.2857755841766741e-02 1.4961705076782691e-01 0 1 0 0 0 0 V -144 0 -3.0842578012617787e+02 2.8438473169512167e+02 -2.5372602384394267e+02 4.9442161614100945e+02 0 2 0 P 541 2112 -4.8518123313940862e+00 4.3645943948154606e+00 -3.9966057775312067e+00 7.7100853857929534e+00 9.3957000000000002e-01 1 0 0 0 0 P 542 111 -5.3885337743922468e-01 6.0588187548039374e-01 -4.3801760451750965e-01 9.3141549894800246e-01 1.3497999999999999e-01 2 0 0 -228 0 V -145 0 0 0 0 0 0 2 0 P 543 211 -1.3320884452737729e+00 9.8632276489837623e-01 -8.2825094213978723e-01 1.8581635102014356e+00 1.3957000000000000e-01 1 0 0 0 0 P 544 -211 -1.1856062129437221e+00 1.6573978373589997e+00 -6.4903473154962432e-01 2.1432115040543098e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 1 0 P 545 310 3.7809212028127470e-01 5.3425849488183608e-01 -4.4887246379858342e-01 9.3677516428906538e-01 4.9767000000000000e-01 2 0 0 -229 0 V -147 0 8.8180101627372939e-05 -2.7568513793702175e-05 1.3963032118239395e-05 1.0467458306679090e-04 0 2 0 P 546 22 8.1055727743594569e-03 -3.1771751377664095e-02 3.8788653673683740e-02 5.0790788037020237e-02 0 1 0 0 0 0 P 547 22 2.4416853482323100e-01 -4.7098901828060459e-02 1.1581302602993405e-03 2.4867231694909767e-01 0 1 0 0 0 0 V -148 0 -1.3261881975468540e-07 -1.2655855657392955e-05 -1.4956105404808067e-04 1.5059609373892476e-04 0 2 0 P 548 22 3.1808480313247164e-02 -7.5160418700905327e-02 -3.5047588640765603e-01 3.5985304627356679e-01 0 1 0 0 0 0 P 549 22 -3.3267718253452906e-02 -6.4095116638624286e-02 -1.2951816820115543e+00 1.2971933219350880e+00 0 1 0 0 0 0 V -149 0 -5.0706318733692860e-05 -1.1932768076854151e-04 -2.7277094065583771e-04 3.0341919256974344e-04 0 2 0 P 550 22 -1.7947773821821711e-01 -5.2232633596882927e-01 -1.1275100536574967e+00 1.2555142296530457e+00 0 1 0 0 0 0 P 551 22 -5.5420167696672594e-02 -3.0461226414118164e-02 -1.3610608639402108e-01 1.5008047193314730e-01 0 1 0 0 0 0 V -150 0 2.6903985570960265e-05 -7.0271959092595569e-06 -7.9683909861642994e-05 8.4460678269182506e-05 0 2 0 P 552 22 8.7479489904730268e-01 -2.8367517823894234e-01 -2.6054107319263604e+00 2.7629518280609111e+00 0 1 0 0 0 0 P 553 22 2.2643041650720433e-01 -3.9597527353939848e-03 -6.5618553047725137e-01 6.9416558800408945e-01 0 1 0 0 0 0 V -151 0 1.0090561547569595e-05 -5.1516712510726510e-06 1.8516431266006217e-05 2.2629915512556336e-05 0 2 0 P 554 22 1.6813967884041273e-02 -6.8325917255938839e-02 6.8738373414159865e-02 9.8367192012863064e-02 0 1 0 0 0 0 P 555 22 1.9616952007726141e-01 -4.0411431672644528e-02 3.2209162123362056e-01 3.7928693213196540e-01 0 1 0 0 0 0 V -152 0 1.0302864058657581e-05 -2.4157724775270889e-05 6.4965895075557484e-07 3.0886700089533439e-05 0 2 0 P 556 22 5.4902583126851708e-02 -1.6352039062161969e-01 -5.3431429053068392e-02 1.8057721172313246e-01 0 1 0 0 0 0 P 557 22 3.0716838786757263e-02 -3.7236449246484206e-02 5.8830260240979995e-02 7.6099125208894836e-02 0 1 0 0 0 0 V -153 0 2.6283022832904434e-04 1.1155885285508664e-05 1.8959785435225478e-04 3.2965222530896397e-04 0 2 0 P 558 22 5.5705236442259576e-01 -1.2418098690933133e-02 3.8176032563062845e-01 6.7542763647152126e-01 0 1 0 0 0 0 P 559 22 4.0989194338731258e-02 3.7802100629841358e-02 4.9648942152195716e-02 7.4660098589534457e-02 0 1 0 0 0 0 V -154 0 1.7104170505417913e-04 -1.1752480801468216e-04 1.3572237375811711e-04 2.4828729070746453e-04 0 2 0 P 560 22 1.6705843686485593e+00 -1.1606725235169755e+00 1.2847303955554592e+00 2.4059395314272254e+00 0 1 0 0 0 0 P 561 22 1.6224982904269092e-01 -9.8689847421603569e-02 1.6963190711753190e-01 2.5463636213395135e-01 0 1 0 0 0 0 V -155 0 3.0530282889599238e-05 1.1648623806291326e-04 9.5495123688175022e-04 9.6630147894061344e-04 0 2 0 P 562 22 -4.4676470672268771e-02 5.0453041098080229e-02 3.3574735075041290e-01 3.4244383469949558e-01 0 1 0 0 0 0 P 563 22 9.2890568493799661e-02 1.3350460178182688e-01 1.1723327583105421e+00 1.1835608275961271e+00 0 1 0 0 0 0 V -156 0 2.8395228353151152e-05 2.6051009502649605e-05 1.7918913362875678e-04 1.8337195302968584e-04 0 2 0 P 564 22 3.9621800851815268e-03 3.6479760716598415e-03 1.3560822326763164e-01 1.3571513113227515e-01 0 1 0 0 0 0 P 565 22 6.7803872433618551e-01 6.2204912419219460e-01 4.1681835856026579e+00 4.2685402689789802e+00 0 1 0 0 0 0 V -157 0 0 0 0 0 0 1 0 P 566 310 -8.6535161019743984e-02 -5.3343951372764820e-01 3.0871054805671747e+00 3.1733171486547938e+00 4.9767000000000000e-01 2 0 0 -230 0 V -158 0 2.4566633705400784e-06 1.5257362140454519e-06 5.0979003927019870e-05 5.1113199586984198e-05 0 2 0 P 567 22 4.3826610494323397e-02 -1.1295185781378581e-02 2.4279207147456375e-01 2.4697437717335519e-01 0 1 0 0 0 0 P 568 22 9.9707691788516795e-02 1.0043864987044977e-01 2.7357339437239818e+00 2.7393922240221764e+00 0 1 0 0 0 0 V -159 0 -9.0011081121510822e-02 5.2768516656200815e-01 4.1089589660762176e+00 4.1504391548299671e+00 0 2 0 P 569 -211 -2.3652789687808956e-01 3.8672409816485437e-01 4.1492398507748796e+00 4.1762629345218842e+00 1.3957000000000000e-01 1 0 0 0 0 P 570 211 4.7311705352157757e-02 7.2254574169854935e-01 4.4883807289369440e+00 4.5485549462551917e+00 1.3957000000000000e-01 1 0 0 0 0 V -160 0 0 0 0 0 0 1 0 P 571 310 2.3796931690313408e-01 1.9885372143023899e-01 1.1061629639208331e+01 1.1077161093990926e+01 4.9767000000000000e-01 2 0 0 -231 0 V -161 0 -6.6284461378783992e-05 -5.3988183031367784e-05 1.0631312377875437e-03 1.0675650021706861e-03 0 2 0 P 572 22 -7.4960408692116065e-02 6.7834617237364486e-03 1.1491088902354676e+00 1.1515712395863464e+00 0 1 0 0 0 0 P 573 22 -1.1850848933646138e-01 -1.6436238837376221e-01 1.9539234759647284e+00 1.9644022517505992e+00 0 1 0 0 0 0 V -162 0 -8.0622965537007065e-05 -5.3632462733828466e-05 4.7775665966454271e-03 4.7788146260412181e-03 0 2 0 P 574 22 -7.7500407388630344e-02 -1.2292863838369122e-01 5.1107784635743601e+00 5.1128440487673563e+00 0 1 0 0 0 0 P 575 22 -1.3799900543322866e-01 -2.0427093452110488e-02 7.6593148893156799e+00 7.6605851973162169e+00 0 1 0 0 0 0 V -163 0 8.4499351375836557e-07 -3.7772910620778840e-06 2.7437084926872399e-04 2.7546673828158429e-04 0 2 0 P 576 22 -3.4938460901524020e-02 -6.4236681698456505e-02 6.3896702906860103e-01 6.4313755259862615e-01 0 1 0 0 0 0 P 577 22 3.9643786222010952e-02 4.3202930565632389e-02 8.8886020658140708e-01 8.9079211370522204e-01 0 1 0 0 0 0 V -164 0 0 0 0 0 0 3 0 P 578 111 1.0837170056514039e-01 -2.9205481870947686e-01 1.0125644589682965e+01 1.0131334482662721e+01 1.3497999999999999e-01 2 0 0 -232 0 P 579 111 6.3498163975726885e-01 -9.8900665837328883e-01 4.1493692311748816e+01 4.1510553563107521e+01 1.3497999999999999e-01 2 0 0 -233 0 P 580 111 4.8114010905081989e-01 -6.0990969088639158e-01 2.3597282740603404e+01 2.3610452303502232e+01 1.3497999999999999e-01 2 0 0 -234 0 V -165 0 1.2599610481752393e-04 -2.8869044439050110e-04 9.1162776984530149e-03 9.1218722053040859e-03 0 2 0 P 581 22 1.1149161022097738e-01 -1.6844302158061819e-01 4.5738040622835889e+00 4.5782624466964252e+00 0 1 0 0 0 0 P 582 22 2.0898025011965379e-01 -5.6584288281600614e-01 1.8613503812322332e+01 1.8623275090174435e+01 0 1 0 0 0 0 V -166 0 3.7014299592543748e-06 -5.8895138770754075e-06 1.7750567043024894e-04 1.7764538534702391e-04 0 2 0 P 583 22 2.7234184167147230e-01 -5.3611717317836682e-01 1.4458946303506359e+01 1.4471444983476323e+01 0 1 0 0 0 0 P 584 22 1.7761152347946418e-01 -1.7982412984902912e-01 7.1190045486428630e+00 7.1234898985361417e+00 0 1 0 0 0 0 V -167 0 3.1170882262936883e-05 -2.6745120873599733e-05 1.1993863946838583e-03 1.2002313107871312e-03 0 2 0 P 585 22 8.6338220851344377e-02 -1.2964180161050137e-01 5.7845619549168870e+00 5.7866586468683696e+00 0 1 0 0 0 0 P 586 22 1.4165814109855729e-01 -6.5982762611139889e-02 2.9882322269557147e+00 2.9923155909960446e+00 0 1 0 0 0 0 V -168 0 1.7863627660633424e-06 1.0677068011197944e-07 5.4949161586000201e-03 5.4949169816481081e-03 0 2 0 P 587 22 -1.0517621488772279e-02 -3.3993830144890047e-02 2.9979032448211477e+01 2.9979053566311375e+01 0 1 0 0 0 0 P 588 22 1.1027233638906435e-01 3.9956157034266734e-02 2.7687006070105565e+02 2.7687008554390439e+02 0 1 0 0 0 0 V -169 0 -4.0048224494863645e+00 9.3460342717326910e+00 9.2783580371722510e+03 9.2783731520994734e+03 0 2 0 P 589 22 2.2425204263068488e-02 3.4202137517451013e-02 2.3962849327777217e+01 2.3962884229193911e+01 0 1 0 0 0 0 P 590 22 -1.7072889442202083e-01 6.5946922518212242e-02 1.2055495883945208e+02 1.2055509776916931e+02 0 1 0 0 0 0 V -170 0 -2.7169341559758418e+01 -4.1928239487494366e+01 2.8145670969986440e+04 2.8145857906351237e+04 0 2 0 P 591 -2212 -2.8351126477309208e-01 -5.2759724224571247e-01 2.8875825888314591e+02 2.8876040442087293e+02 9.3827000000000005e-01 1 0 0 0 0 P 592 211 -5.4824563254005393e-02 5.4710216481902250e-03 6.1735656181510343e+01 6.1735838534933421e+01 1.3957000000000000e-01 1 0 0 0 0 V -171 0 0 0 0 0 0 1 0 P 593 310 2.0781488733761019e-01 1.2655050020288508e-01 9.6868700184584384e+01 9.6870284158436846e+01 4.9767000000000000e-01 2 0 0 -235 0 V -172 0 3.5076376726274336e-05 -2.2172129424643708e-05 1.5777843030001506e-03 1.5783872634900357e-03 0 2 0 P 594 22 2.6811443046614009e-01 -9.7876093674107864e-02 9.6126247041337649e+00 9.6168611708841798e+00 0 1 0 0 0 0 P 595 22 8.3717656672761848e-02 -1.2452049627763975e-01 6.2132728425682489e+00 6.2150843450614675e+00 0 1 0 0 0 0 V -173 0 1.8771714036960998e-05 2.1577866423247235e-05 6.1612597794007511e-05 6.9107648626019487e-05 0 2 0 P 596 22 1.4735302968533093e-01 1.5072163653336199e-01 5.6920217457353695e-01 6.0697697041649290e-01 0 1 0 0 0 0 P 597 22 5.1860989859451381e-02 7.8272556267126162e-02 8.4658907955893453e-02 1.2642502137661274e-01 0 1 0 0 0 0 V -174 0 0 0 0 0 0 1 0 P 598 310 2.1300889298790790e-01 5.3891768073250268e-01 8.9779848482314639e-01 1.1787801335909811e+00 4.9767000000000000e-01 2 0 0 -236 0 V -175 0 -2.1108436906317018e-05 8.5826477177358880e-05 2.7672524406940278e-04 2.9302725195317134e-04 0 2 0 P 599 22 -7.9129958665546854e-02 1.8142609432641757e-01 7.6239588868458885e-01 7.8767027945969470e-01 0 1 0 0 0 0 P 600 22 4.9768344534591655e-03 1.2007900768869134e-01 2.0972921404899050e-01 2.4172314782470719e-01 0 1 0 0 0 0 V -176 0 -2.7014197864050657e-05 2.0032796787194227e-04 1.1015199252301907e-03 1.1210227747941916e-03 0 2 0 P 601 22 -8.2728426353848458e-02 1.5093389594128365e-01 9.1647962860914900e-01 9.3250198022661679e-01 0 1 0 0 0 0 P 602 22 9.5789817158441204e-03 3.9151713921579984e-01 2.0662323213729392e+00 2.1030200743399097e+00 0 1 0 0 0 0 V -177 0 -3.7392444112411570e-05 -5.4858799705646409e-06 9.8163660219842340e-05 1.0768076462228926e-04 0 2 0 P 603 22 -2.1193578122365270e-01 1.2006844864211195e-02 4.3952604676297358e-01 4.8810253581554042e-01 0 1 0 0 0 0 P 604 22 -7.1463699404705249e-03 -4.4148589366559708e-02 1.3561436883689171e-01 1.4279854894715030e-01 0 1 0 0 0 0 V -178 0 -1.2241037233320865e-05 -1.1598941033897370e-05 3.3013834106666943e-04 3.3086789546132406e-04 0 2 0 P 605 22 -6.8338020343916367e-02 1.7960154257802407e-02 8.8471482126865375e-01 8.8753195274193697e-01 0 1 0 0 0 0 P 606 22 -4.9126553476082357e-02 -1.2926319495122798e-01 2.2832813865590076e+00 2.2874650340567531e+00 0 1 0 0 0 0 V -179 0 -7.8823416392599953e-05 -1.3494678376267289e-04 4.4679088380077349e-03 4.4707725394076371e-03 0 2 0 P 607 22 -1.4006020106865022e-01 -2.6013540075179248e-01 1.0320275373763753e+01 1.0324503430042641e+01 0 1 0 0 0 0 P 608 22 -1.7046730220466402e-01 -2.7149199824179776e-01 7.2812019513115436e+00 7.2882555431333014e+00 0 1 0 0 0 0 V -180 0 -6.2478617462470955e-04 4.1274488990924329e-04 5.8604032060464668e-02 5.8608833594780751e-02 0 2 0 P 609 22 -1.7440644393245242e+00 1.1497087496649674e+00 1.6563994081962718e+02 1.6565311221256056e+02 0 1 0 0 0 0 P 610 22 -1.0263801543128602e-01 7.0255827562044793e-02 7.5780564090332270e+00 7.5790770798302134e+00 0 1 0 0 0 0 V -181 0 -9.0246732694780867e-05 2.1015297846185561e-04 1.5889052036428208e-02 1.5890767105881942e-02 0 2 0 P 611 22 -3.6114994135867426e-02 2.0190315372196641e-01 1.1420801223675923e+01 1.1422642853867130e+01 0 1 0 0 0 0 P 612 22 -2.2384084837460483e-01 4.0344280109392672e-01 3.4347635876333364e+01 3.4350734506154865e+01 0 1 0 0 0 0 V -182 0 -2.2012947290005233e-06 2.7916200354408256e-06 2.6290667924012794e-04 2.6293486584812533e-04 0 2 0 P 613 22 -2.0755805695124097e-01 2.5573202889083280e-01 2.1121004534749897e+01 2.1123572419799920e+01 0 1 0 0 0 0 P 614 22 6.4470637528369033e-03 -6.8872616372448153e-04 2.8982340905490589e+00 2.8982413430553868e+00 0 1 0 0 0 0 V -183 0 -2.4645762350369418e-07 2.1278010900401277e-07 4.6497539150049345e-05 4.6500196512014660e-05 0 2 0 P 615 22 -7.9660337002081562e-03 8.6683215476439743e-02 5.8100822021202916e+00 5.8107342593628584e+00 0 1 0 0 0 0 P 616 22 -8.0592383157308600e-02 -1.0225975792463116e-02 1.0897651956636839e+01 1.0897954756319857e+01 0 1 0 0 0 0 V -184 0 -8.1018218006998772e-07 8.6965586941421814e-06 6.1562696684512724e-03 6.1563590308633502e-03 0 2 0 P 617 22 1.3478426611291110e-02 1.8896970549360178e-02 2.5146458992922835e+01 2.5146469705432402e+01 0 1 0 0 0 0 P 618 22 -1.6895876868078304e-02 1.7786206979789779e-02 8.2146017000244365e-01 8.2182639937782043e-01 0 1 0 0 0 0 V -185 0 5.0762383204826962e-07 9.8034889918293289e-05 6.7008259120304392e-02 6.7008448326249984e-02 0 2 0 P 619 22 4.7115984150599442e-02 1.2518219980655922e-02 4.1143226999456580e+01 4.1143255881743315e+01 0 1 0 0 0 0 P 620 22 -4.6569935944135880e-02 9.2937380074083725e-02 3.0937194369350316e+01 3.0937369014874378e+01 0 1 0 0 0 0 V -186 0 -3.0965464993230882e-08 -1.0958760785334889e-06 6.1394447701516397e-04 6.1395384612264383e-04 0 2 0 P 621 22 6.4210219603504939e-02 -3.8919656116731441e-02 1.1777482636867278e+01 1.1777721976411396e+01 0 1 0 0 0 0 P 622 22 -6.5512419494550694e-02 -7.1655459100394342e-03 1.4040906696283393e+01 1.4041061358597222e+01 0 1 0 0 0 0 V -187 0 5.0760085453989427e-05 2.7279722465919173e-05 7.1685114096133498e-02 7.1685200753306116e-02 0 2 0 P 623 22 6.5945597796149280e-02 -4.1148813588216093e-02 4.9792318373440622e+01 4.9792379045882114e+01 0 1 0 0 0 0 P 624 22 5.8656415662767534e-03 7.9741945617443355e-02 5.1621949176333132e+01 5.1622011099409548e+01 0 1 0 0 0 0 V -188 0 1.1674012617291161e-04 -1.3305482580506630e-04 4.6524563825060955e-02 4.6524903784100881e-02 0 2 0 P 625 22 7.3291331716436647e-01 -8.6847752974482806e-01 3.0969536907186574e+02 3.0969745404137456e+02 0 1 0 0 0 0 P 626 22 1.7509137645181233e-01 -1.6642289652622941e-01 5.2172685268161601e+01 5.2173244500042770e+01 0 1 0 0 0 0 V -189 0 1.0178253565373614e-06 -1.2201719905076591e-06 1.9807455339603498e-04 1.9808106359138464e-04 0 2 0 P 627 22 9.6494056176741033e-02 -1.9480268895687178e-01 3.0226289730014926e+01 3.0227071476299322e+01 0 1 0 0 0 0 P 628 22 4.9329069569456496e-01 -5.1223298277180895e-01 8.4549148488704731e+01 8.4552139112527129e+01 0 1 0 0 0 0 V -190 0 4.0134684333774341e-04 3.6881079171483592e-06 1.7317717039712938e-02 1.7322394677745909e-02 0 2 0 P 629 22 1.1074430505210942e+00 3.2349280326307656e-02 4.5095228252036868e+01 4.5108836026762965e+01 0 1 0 0 0 0 P 630 22 6.5855983402345697e-01 -1.6120899990662237e-02 3.1106039438320675e+01 3.1113014165727598e+01 0 1 0 0 0 0 V -191 0 5.8419450952868774e-05 -1.5321428101673338e-05 3.4038869788670283e-03 3.4045658631188941e-03 0 2 0 P 631 22 2.0369444218085894e-01 -1.0630094887568396e-01 1.2010353309379745e+01 1.2012550850407928e+01 0 1 0 0 0 0 P 632 22 4.8897624321688961e-02 4.0054670917780075e-02 2.7072592684378090e+00 2.7079970644129321e+00 0 1 0 0 0 0 V -192 0 9.8062100637671357e-05 5.8476346547623206e-05 3.3483605352593155e-03 3.3505643340531010e-03 0 2 0 P 633 22 7.7801851447464987e-02 6.3428688971069888e-02 1.5825832885604343e+00 1.5857635989970260e+00 0 1 0 0 0 0 P 634 22 2.4067007804700757e-01 1.2648234489122936e-01 9.2917385276451707e+00 9.2957153966847521e+00 0 1 0 0 0 0 V -193 0 1.5031512532807552e-05 1.8322601151695350e-05 1.0830923716200179e-03 1.0834212040054247e-03 0 2 0 P 635 22 1.4785750893332283e-01 7.7969006578506403e-02 7.4239734320080757e+00 7.4258550031694384e+00 0 1 0 0 0 0 P 636 22 1.7390095130008453e-02 1.2345888924484039e-01 4.4829067970336531e+00 4.4846402156285325e+00 0 1 0 0 0 0 V -194 0 7.7428717187446056e-06 1.2926579573694633e-05 2.3757216277038625e-04 2.3806575234572918e-04 0 3 0 P 637 22 -2.9768879048609042e-03 6.6252480810655504e-02 1.1306464168422816e+00 1.1325897637686182e+00 0 1 0 0 0 0 P 638 11 8.2959924309063904e-02 1.2022831595720201e-01 2.2326780111673243e+00 2.2374513533592970e+00 5.1000000000000004e-04 1 0 0 0 0 P 639 -11 2.9613452686164643e-01 4.4144044320955184e-01 8.1769756320672080e+00 8.1942355391104993e+00 5.1000000000000004e-04 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 640 111 -2.6199772327763104e-02 -1.1828673677143495e-01 6.6097602379395526e-01 6.8541015793211635e-01 1.3497999999999999e-01 2 0 0 -237 0 P 641 111 -4.6694971836449030e-02 -3.0154062464523790e-01 1.0838116163354803e+00 1.1340081079119202e+00 1.3497999999999999e-01 2 0 0 -238 0 P 642 111 -9.0124373462571752e-02 4.2400684203760759e-02 4.9307769974043525e-01 5.2083148819391378e-01 1.3497999999999999e-01 2 0 0 -239 0 V -196 0 3.1108405596089403e-05 1.3118546841765458e-06 2.3658618869891145e-04 2.3941678971800301e-04 0 2 0 P 643 22 1.4825924663073412e-01 -3.6271886488065834e-02 1.3469712558090801e+00 1.3555913904775310e+00 0 1 0 0 0 0 P 644 22 6.7737327304819947e-02 4.5380553803341633e-02 2.9572965477244179e-01 3.0676337605021536e-01 0 1 0 0 0 0 V -197 0 -2.1666644196215168e-04 1.1648141316721203e-05 1.9781780185544636e-04 2.9563040690044732e-04 0 2 0 P 645 22 -6.9166022161977692e-01 8.4570295110909161e-02 5.9687301716180341e-01 9.1749844446849038e-01 0 1 0 0 0 0 P 646 22 -1.5776156516922366e-01 -3.8904778474288200e-02 1.7865432887768215e-01 2.4149464271389467e-01 0 1 0 0 0 0 V -198 0 -6.5365856726025081e-04 -2.0167130802938409e-04 5.4413622581287721e-05 6.8747215951970545e-04 0 2 0 P 647 22 -4.0623602964873345e-01 -7.2256330923351653e-02 4.5724858865759707e-02 4.1513787090744358e-01 0 1 0 0 0 0 P 648 22 -1.7234971782713848e+00 -5.8482383800199622e-01 1.3156417975317553e-01 1.8247658968752507e+00 0 1 0 0 0 0 V -199 0 -4.8453424531944226e-06 -2.4892035029730016e-06 -3.7695960896164824e-06 6.6690095784749498e-06 0 2 0 P 649 22 -3.1556857813959877e-01 -2.3190106737000327e-01 -2.4063990295496857e-01 4.5964028919424765e-01 0 1 0 0 0 0 P 650 22 -5.3420322738342207e-01 -2.0465320623785221e-01 -4.2046847196578813e-01 7.0996461805328159e-01 0 1 0 0 0 0 V -200 0 -1.2148659869150315e-05 -1.0029099374976840e-05 2.2201343776184935e-06 3.2921948447095776e-05 0 2 0 P 651 22 -4.9575847390045787e-02 -9.2338906865275086e-02 -6.9929980675592267e-03 1.0503875659721008e-01 0 1 0 0 0 0 P 652 22 -7.3175486545593183e-03 4.5371625794201169e-02 1.7390110652696245e-02 4.9138039175712779e-02 0 1 0 0 0 0 V -201 0 -2.4911537037423112e-04 -8.8184709306562834e-05 -3.9721992616206217e-04 4.8131826198095343e-04 0 2 0 P 653 22 -3.7043279295633774e-01 -1.3552938433303291e-01 -4.7396904188706884e-01 6.1663224111496973e-01 0 1 0 0 0 0 P 654 22 -1.5803449529501643e-01 -5.1543513346723691e-02 -3.6868364912481544e-01 4.0442461424011344e-01 0 1 0 0 0 0 V -202 0 -1.5978103464197273e-04 -7.8025675816057399e-05 -5.7867137387859844e-04 6.0566582908037827e-04 0 2 0 P 655 22 -4.2218395246544492e-02 -5.1541630130151825e-02 -1.8548784043813044e-01 1.9709051596682220e-01 0 1 0 0 0 0 P 656 22 -1.1064185567110816e+00 -5.0937083763933033e-01 -3.9744759785872357e+00 4.1569315579209380e+00 0 1 0 0 0 0 V -203 0 -1.9143717779022714e-05 -5.4320795897758880e-05 -1.2277588125116835e-04 1.4079696354502786e-04 0 2 0 P 657 22 3.7084398741003215e-02 -2.7279095581796052e-02 -5.6368299723408892e-02 7.2779027882011085e-02 0 1 0 0 0 0 P 658 22 -1.0535403764836633e-01 -1.6643777613077301e-01 -3.8147063920700253e-01 4.2932604760155169e-01 0 1 0 0 0 0 V -204 0 -2.1681964429903026e-04 -5.1921223215976471e-05 -1.3705694137926769e-03 1.3889418603530567e-03 0 2 0 P 659 22 -8.3883190931589313e-01 -2.3886082776913833e-01 -5.2326050865801044e+00 5.3047949497820452e+00 0 1 0 0 0 0 P 660 22 -9.0186393864577774e-02 1.6391287026622379e-02 -6.3994430952837444e-01 6.4647581488129469e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 661 111 -7.5738041316952887e-02 1.7960705271467403e-01 -1.1613413104666863e+00 1.1852966650100136e+00 1.3497999999999999e-01 2 0 0 -240 0 P 662 111 -2.0803367241601647e-01 1.0149518673298710e-01 -2.2938621766286671e+00 2.3094593669420695e+00 1.3497999999999999e-01 2 0 0 -241 0 P 663 111 -3.8594814902298452e-01 2.6881963656616908e-01 -2.3785737095590815e+00 2.4283847435988157e+00 1.3497999999999999e-01 2 0 0 -242 0 V -206 0 4.8377779570988012e-05 3.6561115374146839e-05 -1.2601725641437210e-04 1.4019580914007305e-04 0 2 0 P 664 22 1.3337342561720142e-01 6.6426801545593175e-02 -4.1941530745016936e-01 4.4509570964902018e-01 0 1 0 0 0 0 P 665 22 5.2831773763057677e-01 4.3364093980364826e-01 -1.3041963532248237e+00 1.4724443026253358e+00 0 1 0 0 0 0 V -207 0 1.0152691513905614e-04 1.3955688592578639e-04 -4.8125936897905428e-04 5.1163516783432432e-04 0 2 0 P 666 22 2.0385018202691157e-01 2.3203109190933668e-01 -7.1530284660362331e-01 7.7913508885448801e-01 0 1 0 0 0 0 P 667 22 5.0276674380339692e-01 7.3927053363759088e-01 -2.6342130464897768e+00 2.7817932516411843e+00 0 1 0 0 0 0 V -208 0 7.9302845558044044e-04 1.4041457252517798e-04 -1.9855478115373610e-03 2.1440514975112871e-03 0 2 0 P 668 22 1.3134639397479353e+00 2.1602056226417785e-01 -3.3389549249225707e+00 3.5945058624244570e+00 0 1 0 0 0 0 P 669 22 7.4677580377251543e-02 2.9765445515536306e-02 -1.3660933509045978e-01 1.5850814865992457e-01 0 1 0 0 0 0 V -209 0 1.1154363235402167e-04 -2.4810509359551447e-06 -6.6801255853807565e-04 6.7748470074711551e-04 0 2 0 P 670 22 8.4237997157962574e-01 7.3149223029012906e-03 -4.9372365539008838e+00 5.0085888545359634e+00 0 1 0 0 0 0 P 671 22 3.1850249048463175e-02 -2.6760314759240730e-02 -2.9835380754228241e-01 3.0124001607595247e-01 0 1 0 0 0 0 V -210 0 4.4281275366884529e+01 2.3101266453579714e+00 -1.4515412142900297e+02 1.5193293616208840e+02 0 2 0 P 672 211 9.4465103052516608e-01 2.2047103143835822e-01 -3.3740933626712235e+00 3.5135393622525073e+00 1.3957000000000000e-01 1 0 0 0 0 P 673 -211 2.2451636831293507e+00 -5.4060378115600161e-02 -7.0821265281427337e+00 7.4309944444904552e+00 1.3957000000000000e-01 1 0 0 0 0 V -211 0 1.1940563601649421e-05 -2.0925148426196508e-05 -2.3088614550425446e-03 2.3090570173640839e-03 0 2 0 P 674 22 -1.6012844386112085e-02 -1.0580513348249561e-01 -7.3694256150010169e+00 7.3702025095983448e+00 0 1 0 0 0 0 P 675 22 1.0574066002953920e-01 -5.1437683769258724e-02 -9.9806008909216040e+00 9.9812935567670902e+00 0 1 0 0 0 0 V -212 0 3.6416642022279240e-04 -4.0298607519349112e-04 -2.5976177771491766e-02 2.5981939827017703e-02 0 2 0 P 676 22 1.5985368589405746e-02 -6.3842456940741657e-02 -3.1126953373110213e+00 3.1133910217373821e+00 0 1 0 0 0 0 P 677 22 7.2754511698178681e-01 -7.5894738728414390e-01 -4.9923716037205011e+01 4.9934784929920241e+01 0 1 0 0 0 0 V -213 0 2.8623207355973531e-06 2.3808391663472125e-05 -3.9749596883846064e-03 3.9750341865232982e-03 0 2 0 P 678 22 -2.6882979094568611e-02 4.6920127300386527e-02 -8.1498841151126467e+00 8.1500635140271367e+00 0 1 0 0 0 0 P 679 22 1.1996771008199272e-01 7.2734590993146941e-01 -1.2111866663726040e+02 1.2112090997144951e+02 0 1 0 0 0 0 V -214 0 -2.3154941149498160e-05 -7.8277933488396136e-06 -8.3039007098321717e-03 8.3039901753340778e-03 0 2 0 P 680 22 -1.1437027866267532e-01 6.4479401634646516e-03 -3.3151877690408185e+01 3.3152075599219380e+01 0 1 0 0 0 0 P 681 22 9.5109768549635591e-03 -4.1896829450413300e-02 -4.4531080053743057e+00 4.4533152493987496e+00 0 1 0 0 0 0 V -215 0 -2.4609839148875411e-05 1.8981705072932504e-04 -2.1276158863631926e-02 2.1277070757062932e-02 0 2 0 P 682 22 -6.4611258163198709e-02 1.1697375124739691e-01 -1.7900091485531814e+01 1.7900590288132150e+01 0 1 0 0 0 0 P 683 22 -6.7336890722220289e-03 4.3331377345939193e-01 -4.3780377952547148e+01 4.3782522766929674e+01 0 1 0 0 0 0 V -216 0 -1.2265633308710255e-05 2.1231116533721275e-04 -9.8488973621807842e-03 9.8512213359459051e-03 0 2 0 P 684 22 8.7887666223309315e-03 2.8433666090709725e-01 -1.5669504397696736e+01 1.5672086416574912e+01 0 1 0 0 0 0 P 685 22 -7.8997291841665207e-02 9.3093314463475263e-01 -4.0705616350798387e+01 4.0716336765360936e+01 0 1 0 0 0 0 V -217 0 -4.6421944437971569e-05 -1.5273504734300915e-05 -2.0817982220632759e-03 2.0830674578135419e-03 0 2 0 P 686 22 -1.6688583934742877e-02 2.8032190276302195e-02 -3.0802499612620360e-01 3.0974781801326956e-01 0 1 0 0 0 0 P 687 22 -9.9710507220751282e-02 -6.6329208881528171e-02 -4.9119076015070808e+00 4.9133672806888882e+00 0 1 0 0 0 0 V -218 0 2.0800310231761134e-06 -9.3372095066851045e-06 -3.5199230719109729e-04 3.5264180783551322e-04 0 2 0 P 688 22 4.3038456858482149e-02 -7.7127642904598614e-02 -2.3240504347097741e+00 2.3257281451501313e+00 0 1 0 0 0 0 P 689 22 -2.8365773741908629e-02 1.1262319379061674e-02 -1.5892771577970954e-01 1.6183162793696812e-01 0 1 0 0 0 0 V -219 0 -4.4193688337665291e-05 -2.2985691442313864e-05 -2.2248608520623902e-03 2.2255374329903680e-03 0 2 0 P 690 22 -1.8630364713697659e-01 -2.8150028557338422e-02 -8.7455088977412228e+00 8.7475383596481162e+00 0 1 0 0 0 0 P 691 22 -7.2901235620642227e-02 -1.0666568109525226e-01 -4.3037480890159490e+00 4.3056869105157860e+00 0 1 0 0 0 0 V -220 0 -1.8625916592955534e-04 -1.1203803119536694e-05 -2.4896435478659962e-03 2.4968174397117324e-03 0 2 0 P 692 22 -2.9907164457086916e-01 -4.7990097087607507e-02 -4.8242804849890026e+00 4.8337800007706733e+00 0 1 0 0 0 0 P 693 22 -5.1476614702709911e-01 -9.6361932574042528e-04 -6.0539278262610567e+00 6.0757737976545236e+00 0 1 0 0 0 0 V -221 0 -4.2894613978145702e-06 2.1481316569609266e-06 -1.1216720171077909e-04 1.1227643193826024e-04 0 2 0 P 694 22 -2.0680347755794726e-01 7.6179703676998042e-02 -3.7823472655885717e+00 3.7887625767640452e+00 0 1 0 0 0 0 P 695 22 -2.6561360053763128e-01 1.6040339770331288e-01 -8.5711155065350475e+00 8.5767301963598523e+00 0 1 0 0 0 0 V -222 0 0 0 0 0 0 1 0 P 696 130 5.6101371974971474e-03 -1.5378388883331453e-02 -5.0194483375022571e+01 5.0196953141428828e+01 4.9767000000000000e-01 1 0 0 0 0 V -223 0 2.6708210372479540e-06 -5.2169399955225654e-07 -2.4995159171293147e-03 2.4995199666293720e-03 0 2 0 P 697 22 8.4993100849663716e-02 -5.2919794182463689e-02 -8.7050865387748530e+01 8.7050922965168596e+01 0 1 0 0 0 0 P 698 22 1.5621972756781869e-02 3.3266556682478327e-02 -7.1108079236110404e+00 7.1109028988108003e+00 0 1 0 0 0 0 V -224 0 5.8378796360214522e-07 -2.5745566867786758e-06 -2.7154813333838797e-02 2.7154817697707626e-02 0 2 0 P 699 22 1.3051888914077362e-02 5.5726313126839941e-02 -8.9297018811587463e+01 8.9297037153596435e+01 0 1 0 0 0 0 P 700 22 -7.8563402304264677e-03 -7.8639143536090264e-02 -1.5237318247327764e+02 1.5237320296847389e+02 0 1 0 0 0 0 V -225 0 4.5342780519598826e+01 -6.5716047755343126e+01 3.1436398917299721e+02 3.2544449671035591e+02 0 2 0 P 701 22 1.2868843095114096e-01 -2.0738599208618552e-01 6.3482111632512161e-01 6.8012315921935163e-01 0 1 0 0 0 0 P 702 22 3.4418567379345893e-01 -2.5041390446570017e-01 1.3213165691996638e+00 1.3881816803415843e+00 0 1 0 0 0 0 V -226 0 4.5342940704433069e+01 -6.5716401062367282e+01 3.1436580377100449e+02 3.2544635225797828e+02 0 2 0 P 703 22 9.7620996998245252e-02 -3.2942389883890993e-01 1.7258138116242818e+00 1.7596827204283993e+00 0 1 0 0 0 0 P 704 22 2.7351250108756575e-01 -4.3601068231315271e-01 2.1696006871110800e+00 2.2298164823265676e+00 0 1 0 0 0 0 V -227 0 -2.6963030837743172e+00 1.7955250696464080e+00 1.7363082872441754e+02 1.7373203287497199e+02 0 2 0 P 705 -211 -1.0107944704216860e-01 8.7158359710892835e-02 1.4194270605119334e+01 1.4195584222938365e+01 1.3957000000000000e-01 1 0 0 0 0 P 706 211 -1.6913485175486459e-01 9.2783038786431307e-02 3.2064188483973424e+00 3.2152475653707171e+00 1.3957000000000000e-01 1 0 0 0 0 V -228 0 -3.0842631862803171e+02 2.8438533718174722e+02 -2.5372646157580431e+02 4.9442254694889499e+02 0 2 0 P 707 22 -6.6101395140388000e-02 2.9705975617857303e-02 -6.7752138435299855e-02 9.9207820707192640e-02 0 1 0 0 0 0 P 708 22 -4.7275198229883664e-01 5.7617589986253637e-01 -3.7026546608220978e-01 8.3220767824080977e-01 0 1 0 0 0 0 V -229 0 3.0448905272873077e+01 4.3025457102313581e+01 -3.6149061026811140e+01 7.5441345400687339e+01 0 2 0 P 709 -211 1.7667324445438143e-01 4.8203749230619752e-01 -1.6254945365475293e-01 5.5630539191917217e-01 1.3957000000000000e-01 1 0 0 0 0 P 710 211 2.0141887582689325e-01 5.2221002575638581e-02 -2.8632301014383049e-01 3.8046977236989321e-01 1.3957000000000000e-01 1 0 0 0 0 V -230 0 -3.6211814531352613e+00 -2.2322501636523413e+01 1.2918412560128547e+02 1.3279177005290336e+02 0 2 0 P 711 111 -1.9508202076845524e-01 -3.2594239087018945e-01 2.4231203994599300e+00 2.4564257586322715e+00 1.3497999999999999e-01 2 0 0 -243 0 P 712 111 1.0854685974871126e-01 -2.0749712285745872e-01 6.6398508110724475e-01 7.1689139002252222e-01 1.3497999999999999e-01 2 0 0 -244 0 V -231 0 9.4540283382619723e+00 7.9000467036495161e+00 4.3945564679249122e+02 4.4007267933920753e+02 0 2 0 P 713 211 6.5418225790851894e-02 2.4805411230082566e-01 8.6270866233809862e+00 8.6320283699206009e+00 1.3957000000000000e-01 1 0 0 0 0 P 714 -211 1.7255109111228220e-01 -4.9200390870586690e-02 2.4345430158273449e+00 2.4451327240703238e+00 1.3957000000000000e-01 1 0 0 0 0 V -232 0 7.3531312547771489e-05 -1.9816219588342549e-04 6.8703539133271414e-03 6.8742145641877998e-03 0 2 0 P 715 22 -2.9631306907644431e-02 -3.7490061420361404e-02 1.8795044988334846e+00 1.8801118797001592e+00 0 1 0 0 0 0 P 716 22 1.3800300747278482e-01 -2.5456475728911548e-01 8.2461400908494795e+00 8.2512226029625619e+00 0 1 0 0 0 0 V -233 0 1.4226200594141502e-04 -2.2157817218681119e-04 9.2962938336953443e-03 9.3000714475518463e-03 0 2 0 P 717 22 4.7867520108937767e-01 -8.1019838527376020e-01 3.1584786237267551e+01 3.1598801765660735e+01 0 1 0 0 0 0 P 718 22 1.5630643866789121e-01 -1.7880827309952865e-01 9.9089060744812638e+00 9.9117517974467866e+00 0 1 0 0 0 0 V -234 0 2.9055188720781036e-05 -3.6831352942694636e-05 1.4249976055383130e-03 1.4257928918347527e-03 0 2 0 P 719 22 -2.2700576581904364e-03 -1.5689857475437285e-03 6.7129110794972668e-01 6.7129677974083790e-01 0 1 0 0 0 0 P 720 22 4.8341016670901032e-01 -6.0834070513884786e-01 2.2925991632653677e+01 2.2939155523761393e+01 0 1 0 0 0 0 V -235 0 8.0183131910337249e+00 4.8828144995224596e+00 3.7375742731390596e+03 3.7376353890610139e+03 0 2 0 P 721 -211 1.6140132543635519e-01 -1.0549312149693782e-01 6.3753641561714645e+01 6.3754085918872875e+01 1.3957000000000000e-01 1 0 0 0 0 P 722 211 4.6413561901255000e-02 2.3204362169982290e-01 3.3115058622869739e+01 3.3116198239563964e+01 1.3957000000000000e-01 1 0 0 0 0 V -236 0 8.0247793146045776e+00 2.0302886869903435e+01 3.3823163946967746e+01 4.4408711297535923e+01 0 2 0 P 723 111 -1.2158780121250757e-02 1.2233614798578107e-01 5.4022244411990894e-01 5.7024017621430712e-01 1.3497999999999999e-01 2 0 0 -245 0 P 724 111 2.2516767310915867e-01 4.1658153274672161e-01 3.5757604070323740e-01 6.0853995737667388e-01 1.3497999999999999e-01 2 0 0 -246 0 V -237 0 -3.1249683494817233e-06 -1.4108607660781518e-05 7.8837675697418567e-05 8.1752048191710523e-05 0 2 0 P 725 22 -4.9868919950146612e-03 3.0590899907202325e-02 1.1192914887228733e-01 1.1614132174285374e-01 0 1 0 0 0 0 P 726 22 -2.1212880332748440e-02 -1.4887763667863727e-01 5.4904687492166793e-01 5.6926883618926261e-01 0 1 0 0 0 0 V -238 0 -6.0372377541490722e-07 -3.8986476957180749e-06 1.4012704475856211e-05 1.4661699736272144e-05 0 2 0 P 727 22 -4.1685701587488758e-02 -4.1005817910586155e-02 9.6021686809186324e-02 1.1242481557484886e-01 0 1 0 0 0 0 P 728 22 -5.0092702489602722e-03 -2.6053480673465174e-01 9.8778992952629396e-01 1.0215832923370713e+00 0 1 0 0 0 0 V -239 0 -1.5230425114432068e-05 7.1654361717615784e-06 8.3326881430270346e-05 8.8017088756460970e-05 0 2 0 P 729 22 -8.2066773959372202e-02 5.9416986726524339e-02 1.7512451802882784e-01 2.0232135456888356e-01 0 1 0 0 0 0 P 730 22 -8.0575995031995605e-03 -1.7016302522763573e-02 3.1795318171160741e-01 3.1851013362503022e-01 0 1 0 0 0 0 V -240 0 -6.9729650286510064e-06 1.6535860654719218e-05 -1.0692106903481954e-04 1.0912656374494179e-04 0 2 0 P 731 22 -6.9165097237230619e-02 1.8520485191037994e-01 -8.0745774892641253e-01 8.3130780349296085e-01 0 1 0 0 0 0 P 732 22 -6.5729440797222677e-03 -5.5977991957059216e-03 -3.5388356154027373e-01 3.5398886151705306e-01 0 1 0 0 0 0 V -241 0 -1.5288564090602046e-06 7.4589639707549073e-07 -1.6857780038735340e-05 1.6972405061199452e-05 0 2 0 P 733 22 -1.6123515272486166e-01 1.2714450758159146e-01 -2.0227008993215216e+00 2.0330965123177176e+00 0 1 0 0 0 0 P 734 22 -4.6798519691154811e-02 -2.5649320848604377e-02 -2.7116127730714573e-01 2.7636285462435228e-01 0 1 0 0 0 0 V -242 0 -1.6351134054193584e-05 1.1388850872896045e-05 -1.0077099133973276e-04 1.0288129267690330e-04 0 2 0 P 735 22 -1.8514403406071112e-01 5.6716382372168417e-02 -1.0960037457052547e+00 1.1129776601430998e+00 0 1 0 0 0 0 P 736 22 -2.0080411496227343e-01 2.1210325419400067e-01 -1.2825699638538266e+00 1.3154070834557163e+00 0 1 0 0 0 0 V -243 0 -3.6212227336772242e+00 -2.2322570607915502e+01 1.2918463834829791e+02 1.3279228984753234e+02 0 2 0 P 737 22 3.7742570978200620e-03 1.0671161649058082e-02 4.6193173995693441e-02 4.7559731195384022e-02 0 1 0 0 0 0 P 738 22 -1.9885627786627530e-01 -3.3661355251924752e-01 2.3769272254642364e+00 2.4088660274368876e+00 0 1 0 0 0 0 V -244 0 -3.6211433453572117e+00 -2.2322574482981818e+01 1.2918435870794704e+02 1.3279202173349586e+02 0 2 0 P 739 22 1.3239466394705041e-01 -1.5189518241550704e-01 4.2468018179482153e-01 4.7005717768371041e-01 0 1 0 0 0 0 P 740 22 -2.3847804198339165e-02 -5.5601940441951700e-02 2.3930489931242321e-01 2.4683421233881195e-01 0 1 0 0 0 0 V -245 0 8.0247744837585469e+00 2.0302935475691932e+01 3.3823378584573170e+01 4.4408937861587958e+01 0 2 0 P 741 22 -6.2377718584875737e-02 1.0656684134041521e-01 3.0194434652987223e-01 3.2621750389958959e-01 0 1 0 0 0 0 P 742 22 5.0218938463624976e-02 1.5769306645365858e-02 2.3827809759003671e-01 2.4402267231471753e-01 0 1 0 0 0 0 V -246 0 8.0248499388533094e+00 2.0303017531456135e+01 3.3823276101340930e+01 4.4408902167196388e+01 0 2 0 P 743 22 7.1516279505535574e-02 4.2303739137223718e-02 9.5012690242537487e-02 1.2622042578928555e-01 0 1 0 0 0 0 P 744 22 1.5365139360362309e-01 3.7427779360949787e-01 2.6256335046069995e-01 4.8231953158738844e-01 0 1 0 0 0 0 E 53 22 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 171 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 1.0699586115038495e+00 1.0908339495793131e+00 6.0121650214903299e+00 6.2032941556497088e+00 0 3 0 0 -3 0 P 11 2112 -2.2366836529121414e-01 -6.5379394967285842e-01 4.0143032371143699e+03 4.0143034065417578e+03 9.3957000000000002e-01 1 0 0 0 0 P 19 2 -8.4629024621263538e-01 -4.3703999990645470e-01 7.8860580567050442e+02 7.8860644991552522e+02 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 1.1356967741177724e+00 -3.9394756640310939e+00 -5.0457898968976878e+02 5.0459564614849580e+02 0 3 0 0 -4 0 P 53 2101 -1.1356967741177724e+00 3.9394756640310939e+00 -5.6477768559299266e+03 5.6477783737746513e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 2 0 P 5 -1 4.5974055433896299e-01 3.9164130970139039e+00 5.2384094087722683e+00 6.5567206786380492e+00 0 3 0 0 -5 0 P 20 21 7.2870204297855357e-01 -2.9465242216031462e+00 -1.6081061333587257e+01 1.6365009785225620e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 5 0 P 6 2 2.7651232243224246e+00 -1.6849649210196864e+00 -3.7502708862430086e+02 3.7504106737162795e+02 0 3 0 0 -5 0 P 49 21 -2.0900575692661816e+00 3.0237673790603531e-01 -2.5690183284353171e+01 2.5776836297694345e+01 0 2 0 0 -13 0 P 50 21 3.0388085541661042e-01 -1.4583399489392557e+00 -3.4335303950113406e+01 3.4367603878182052e+01 0 2 0 0 -13 0 P 51 21 -4.8416377609806788e-01 -6.4107604520229589e-01 -2.4221111752824655e+01 2.4234431035215959e+01 0 2 0 0 -13 0 P 52 21 5.2243005392939723e-01 -3.3652641260743688e-01 -2.8450485131888630e+01 2.8457271257579269e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -9.3628468023288924e-01 -1.1378769517284542e+01 -2.9919106009654109e+02 3.0957989438886386e+02 7.8702398587324581e+01 3 0 0 -6 0 P 8 22 4.1611484588942771e+00 1.3610217693278759e+01 -7.0597619118987524e+01 7.2017893661402155e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -9.3628468023288924e-01 -1.1378769517284542e+01 -2.9919106009654109e+02 3.0957989438886386e+02 7.8702398587324581e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 4.1611484588942771e+00 1.3610217693278759e+01 -7.0597619118987524e+01 7.2017893661402155e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 4 0 P 12 -3 2.2086419950573454e+01 -3.4949125002138814e+01 -1.1030060245168218e+02 1.1779526385153289e+02 5.0000000000000000e-01 2 0 0 -9 0 P 13 21 -5.8734243749878279e-01 2.2148439921589480e-01 -5.9810153345003725e+00 6.0138648895291658e+00 0 2 0 0 -9 0 P 14 21 -5.6623485018605280e+00 4.9970799384088815e+00 -4.5380799629623795e+01 4.6004890756216710e+01 0 2 0 0 -9 0 P 15 4 -1.6773013691447023e+01 1.8351791147229491e+01 -1.3752864268073475e+02 1.3976587489158510e+02 1.5000000000000000e+00 2 0 0 -9 0 V -9 0 0 0 0 0 0 1 0 P 65 92 -9.3628468023288036e-01 -1.1378769517284546e+01 -2.9919106009654109e+02 3.0957989438886386e+02 7.8702398587324623e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 9 0 P 66 321 4.4633039974189810e+00 -7.1954219921335252e+00 -2.2640174264165847e+01 2.4176772156143024e+01 4.9359999999999998e-01 1 0 0 0 0 P 67 -213 9.7270599943730733e+00 -1.5001619169505485e+01 -4.6952284320925848e+01 5.0247045927522308e+01 7.6442635254717939e-01 2 0 0 -17 0 P 68 223 7.0157723436328316e+00 -1.1662789440645462e+01 -3.7511425871274668e+01 3.9912022456620612e+01 7.8787471538233744e-01 2 0 0 -18 0 P 69 211 6.6335192955067990e-01 -4.8092472860319019e-01 -3.7648902158835353e+00 3.8555417906665514e+00 1.3957000000000000e-01 1 0 0 0 0 P 70 -2214 -2.1404093323902593e+00 1.3715801980771702e+00 -1.3530897413744844e+01 1.3824812903617948e+01 1.2560583779481405e+00 2 0 0 -19 0 P 71 221 1.3159422048110164e-01 -1.4637872680473060e-02 -3.3974349846525929e+00 3.4438056396408325e+00 5.4744999999999999e-01 2 0 0 -20 0 P 72 2214 -1.1225352710791305e+00 8.3619297539903903e-01 -9.9378103420488202e+00 1.0119816184964607e+01 1.3005003252655134e+00 2 0 0 -21 0 P 73 -323 -4.9219145622736420e+00 5.5610725066666156e+00 -4.1203955130169199e+01 4.1877336411475113e+01 8.9141245679978565e-01 2 0 0 -22 0 P 74 433 -1.4752507999946516e+01 1.5207778006140758e+01 -1.2025218755367585e+02 1.2212274091821301e+02 2.1124000000000001e+00 2 0 0 -23 0 V -11 0 0 0 0 0 3 1 0 P 16 1 -2.5756419917906703e-01 -1.5637622393177255e+00 3.6080797307545742e-01 1.6253842780246035e+00 0 2 0 0 -11 0 P 17 21 1.1734702490013313e+00 3.4725017127596736e-01 7.5069399988829200e-01 1.4356728694973373e+00 0 2 0 0 -11 0 P 18 -1 2.5756419917906703e-01 1.5637622393177255e+00 6.5875208625030740e-02 1.5862002398581754e+00 0 2 0 0 -11 0 P 75 92 1.1734702490013313e+00 3.4725017127596725e-01 1.1773771815887801e+00 4.6472573873801162e+00 4.3258720612254224e+00 2 0 0 -12 0 V -12 0 0 0 0 0 0 4 0 P 76 221 4.2694754754800079e-01 9.6795972134679803e-02 4.8431312071784260e-01 8.5200608564622682e-01 5.4744999999999999e-01 2 0 0 -24 0 P 77 -213 -2.3252872667136099e-01 -9.3540460214325771e-01 -1.3153248432812265e-01 1.2254033596233822e+00 7.4515852065486932e-01 2 0 0 -25 0 P 78 223 3.6077397016175672e-01 1.9629868723093188e-01 1.0534937674337344e+00 1.3726136469127543e+00 7.7815684377543404e-01 2 0 0 -26 0 P 79 211 6.1827745796293465e-01 9.8956011405361344e-01 -2.2889722223467424e-01 1.1972342951977524e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 28 1 0 P 21 21 4.3232975421336939e-01 9.8628780617952816e-01 1.5241807710988416e+01 1.5279802844007595e+01 0 2 0 0 -13 0 P 22 21 -5.5336815728572009e-01 2.4145479479329718e-01 6.3313630728740744e+00 6.3600845195626059e+00 0 2 0 0 -13 0 P 23 21 7.2903180239600385e-01 7.8794178281096172e-01 2.2408766340300279e+01 2.2434463410480287e+01 0 2 0 0 -13 0 P 24 21 1.4239303088840822e+00 2.4462511261641531e+00 5.5562740820934280e+01 5.5634790281182283e+01 0 2 0 0 -13 0 P 25 21 1.2002232877584218e+00 1.0175524815685082e+00 5.0970096946888781e+01 5.0994379413504632e+01 0 2 0 0 -13 0 P 26 21 -1.6947480737372586e-01 1.6138281562854362e+00 7.3302129415847773e+01 7.3320088242759567e+01 0 2 0 0 -13 0 P 27 21 -9.3715260043853466e-01 1.1418817437035081e-01 2.3234349333674152e+02 2.3234541138110760e+02 0 2 0 0 -13 0 P 28 21 8.1307286056704320e-01 2.0797060924538240e+00 9.4988745674128779e+02 9.4989008139854764e+02 0 2 0 0 -13 0 P 29 21 9.3715260043853466e-01 -1.1418817437035081e-01 5.2521181917595129e+02 5.2521266768428939e+02 0 2 0 0 -13 0 P 30 21 5.5336815728572009e-01 -2.4145479479329718e-01 8.8404910574344228e+01 8.8406972182024347e+01 0 2 0 0 -13 0 P 31 21 4.9664814588740996e-01 -3.1865895186807620e+00 7.2725154287619432e+01 7.2796628206939843e+01 0 2 0 0 -13 0 P 32 21 -8.1307286056704320e-01 -2.0797060924538240e+00 2.8998118950324493e+01 2.9083967534790517e+01 0 2 0 0 -13 0 P 33 21 -4.3232975421336939e-01 -9.8628780617952816e-01 6.7301218096465112e+00 6.8157326991069898e+00 0 2 0 0 -13 0 P 34 21 1.6947480737372586e-01 -1.6138281562854362e+00 1.2502336540584897e+01 1.2607203575829113e+01 0 2 0 0 -13 0 P 35 21 7.2158445246857650e-01 -7.9553892977164509e-01 9.8248698753733041e+00 9.8834019638404076e+00 0 2 0 0 -13 0 P 36 21 8.3036143768113679e-01 -6.5629717476697114e-01 3.4311727071030083e+00 3.5907063712817813e+00 0 2 0 0 -13 0 P 37 21 2.3198944131306614e+00 -1.4638965636866135e+00 7.2010268577842114e+00 7.7058218928144120e+00 0 2 0 0 -13 0 P 38 21 -1.4239303088840822e+00 -2.4462511261641531e+00 1.1077186914811088e+00 3.0395333188295082e+00 0 2 0 0 -13 0 P 39 21 -1.2002232877584218e+00 -1.0175524815685082e+00 3.4240328191128411e-01 1.6103381634574407e+00 0 2 0 0 -13 0 P 40 21 -3.6216034170124689e+00 -1.9347481513458742e+00 -1.9653089346664230e+00 4.5521095030691363e+00 0 2 0 0 -13 0 P 41 21 -7.2903180239600385e-01 -7.8794178281096172e-01 -1.1806771079459935e+00 1.5957249309426100e+00 0 2 0 0 -13 0 P 42 21 2.5055870688692479e+00 1.1230237232226907e+00 -1.6603345735281572e+00 3.2087162134814400e+00 0 2 0 0 -13 0 P 43 21 3.6216034170124689e+00 1.9347481513458742e+00 -3.8249478005893169e+00 5.6115494648524411e+00 0 2 0 0 -13 0 P 44 21 1.3512398920826794e+00 -1.6817080322376574e-01 -3.2111868171615621e+00 3.4879580616350223e+00 0 2 0 0 -13 0 P 45 21 -1.3308073711962807e+00 5.0072349076531042e-01 -1.3619495316851681e+01 1.3693517625474451e+01 0 2 0 0 -13 0 P 46 21 -2.5055870688692479e+00 -1.1230237232226907e+00 -2.0658262189814738e+02 2.0660086838916123e+02 0 2 0 0 -13 0 P 47 21 -9.7758355142933973e-01 -1.9898758411010435e+00 -4.8089872584751731e+02 4.8090383633032980e+02 0 2 0 0 -13 0 P 48 21 1.3308073711962807e+00 -5.0072349076531042e-01 -4.3436226220495875e+01 4.3459492870390562e+01 0 2 0 0 -13 0 P 80 92 1.7409493764510273e+00 -9.8380230575522596e+00 -3.5818012130911056e+03 9.4957118244177655e+03 8.7942676389045628e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 87 0 P 81 323 -7.3896953791885811e-01 -4.4919598109584241e-01 7.7624191100708765e+02 7.7624291523521526e+02 9.0066415643123399e-01 2 0 0 -27 0 P 82 -323 9.0087984987991861e-03 1.0718427432290600e-01 2.5133615389282911e+00 2.6585163259375491e+00 8.5974019494262022e-01 2 0 0 -28 0 P 83 111 -2.6540891716260683e-02 -2.3356133839379814e-01 3.1523429213828678e+00 3.1639754759033889e+00 1.3497999999999999e-01 2 0 0 -29 0 P 84 213 1.3861037163124788e-02 -7.9286096943873313e-02 4.9399004820236776e+00 4.9892710687188151e+00 6.9550744880049398e-01 2 0 0 -30 0 P 85 223 9.7881758158355411e-03 1.4091985710144922e-01 1.3142686462464481e+00 1.5363346522440902e+00 7.8298650988902874e-01 2 0 0 -31 0 P 86 113 2.3924360029003694e-01 -5.4669222058882372e-01 -1.8638381062768559e+00 2.0414699262679528e+00 5.8103105692786006e-01 2 0 0 -32 0 P 87 -211 -4.0686935797197588e-01 -5.7357473542659509e-01 -1.1973058286804075e+00 1.3955470912399530e+00 1.3957000000000000e-01 1 0 0 0 0 P 88 223 3.5661578438060820e-01 -3.3177880682760542e-02 -2.9523408683175636e+00 3.0746536895243675e+00 7.8032244510311577e-01 2 0 0 -33 0 P 89 2112 -3.3820331937626719e-01 -5.3853558048904411e-02 -1.4773506232503935e+00 1.7839950504051247e+00 9.3957000000000002e-01 1 0 0 0 0 P 90 111 6.0354863283999716e-01 -6.4354094351785485e-01 -1.8850950453959670e+00 2.0857178209823353e+00 1.3497999999999999e-01 2 0 0 -34 0 P 91 -1114 4.3433014698973532e-01 4.4978212787617555e-04 -3.2277907081060855e+00 3.5075937630444440e+00 1.3022819480912000e+00 2 0 0 -35 0 P 92 2114 -7.8727887774762806e-02 -1.1266959774275689e+00 -1.3150687643496219e+00 2.1545758768349899e+00 1.2795114099554896e+00 2 0 0 -36 0 P 93 -323 -3.0604554093346797e-01 2.1819379961129795e-01 4.0698387972129713e-01 1.0878713668347542e+00 9.3624560085046216e-01 2 0 0 -37 0 P 94 -3112 -1.5099519726124971e-01 1.0546677160010347e-01 8.9471547102297577e-01 1.5060880177451708e+00 1.1974400000000001e+00 2 0 0 -38 0 P 95 311 3.2254327332006216e-01 1.1653132644293969e-01 2.3355297018095419e-01 6.4794763058978544e-01 4.9767000000000000e-01 2 0 0 -39 0 P 96 -323 -1.0583305520795791e-02 -1.0792290552775012e-01 1.8479338620709300e+00 2.0431953235581695e+00 8.6488624207365683e-01 2 0 0 -40 0 P 97 211 1.5434178542682753e-01 3.9958903914859040e-01 1.2914295406535350e+00 1.3677583230633386e+00 1.3957000000000000e-01 1 0 0 0 0 P 98 -211 -2.2243035687811118e-02 -3.2445415657849513e-01 2.0332157231551413e+00 2.0637856512106474e+00 1.3957000000000000e-01 1 0 0 0 0 P 99 323 -3.5951031628967212e-01 3.5807986627989419e-01 7.7050393237367834e+00 7.7686389196909493e+00 8.5243816553053453e-01 2 0 0 -41 0 P 100 -323 1.4763838181303948e+00 1.7519059547933318e+00 4.3228909055004102e+01 4.3298615037411288e+01 8.8464818953386415e-01 2 0 0 -42 0 P 101 213 1.9921831686850835e-01 5.6461415641818591e-01 8.1992681025189214e+00 8.2326585681822220e+00 4.3611076560452733e-01 2 0 0 -43 0 P 102 -211 -1.2937591411223320e-01 4.3416721467525515e-01 2.2903433620171956e+01 2.2908338889495553e+01 1.3957000000000000e-01 1 0 0 0 0 P 103 223 2.9203823591067052e-01 1.3318819491945508e+00 4.7835714624280335e+01 4.7861541803326389e+01 7.8255627155439755e-01 2 0 0 -44 0 P 104 213 -1.3764986850808114e-01 8.0779298734305094e-01 3.1279327653823856e+01 3.1297975669943916e+01 7.0389314844720574e-01 2 0 0 -45 0 P 105 2214 2.3142604608537945e-01 -8.5012174790638786e-02 9.4571760976668145e+01 9.4580447694393925e+01 1.2579057036458217e+00 2 0 0 -46 0 P 106 -211 6.4461489832615060e-01 7.6434763604071700e-03 2.9890337084959576e+01 2.9897613911937601e+01 1.3957000000000000e-01 1 0 0 0 0 P 107 -2112 -4.2180944513905028e-01 6.7621040861562476e-01 8.4825008823051220e+01 8.4833956039668166e+01 9.3957000000000002e-01 1 0 0 0 0 P 108 1114 8.2242592404041359e-01 1.3433629376326834e+00 3.6057207311816865e+02 3.6057767042725516e+02 1.2471926994197662e+00 2 0 0 -47 0 P 109 213 4.2663511157430062e-01 2.6200962911182440e-01 5.1702016252077328e+01 5.1710562200035689e+01 7.9567075446814173e-01 2 0 0 -48 0 P 110 -2112 5.6931061090770819e-02 -2.4599382051944316e-02 2.1422638642764610e+02 2.1422845581273131e+02 9.3957000000000002e-01 1 0 0 0 0 P 111 111 -1.5493168823802117e-01 1.0788483294808839e+00 5.0417862944449627e+02 5.0417982558376639e+02 1.3497999999999999e-01 2 0 0 -49 0 P 112 -211 6.2296726607515940e-01 -1.8905339089024881e-01 2.5878353947796904e+02 2.5878439600163233e+02 1.3957000000000000e-01 1 0 0 0 0 P 113 213 -3.1818705688501175e-01 2.7161480875405736e-02 3.4652581193425526e+01 3.4661201048758677e+01 7.0391336562752027e-01 2 0 0 -50 0 P 114 311 9.6371424459644128e-01 -1.1255934400769334e-01 8.0590408421566082e+01 8.0597785451803134e+01 4.9767000000000000e-01 2 0 0 -51 0 P 115 -321 -1.9185327099375879e-01 -8.7190929132782380e-01 5.3774444018126751e+01 5.3784119439743009e+01 4.9359999999999998e-01 1 0 0 0 0 P 116 213 1.0334079045470618e-01 7.2446442556235835e-02 3.0028444889749228e+01 3.0037731103067728e+01 7.3611107686629973e-01 2 0 0 -52 0 P 117 -211 3.0815619901890762e-01 -9.8460342187078366e-03 2.2132843701126124e+01 2.2135431038738812e+01 1.3957000000000000e-01 1 0 0 0 0 P 118 111 -3.1437380272279219e-01 -4.5966731445413911e-01 6.8874622004345355e+01 6.8877005602520711e+01 1.3497999999999999e-01 2 0 0 -53 0 P 119 211 3.0870454797159591e-01 -1.0785173132184518e+00 2.4177970543533295e+01 2.4204384674717801e+01 1.3957000000000000e-01 1 0 0 0 0 P 120 313 -3.4643932459901866e-01 -2.1923013106049765e+00 2.0227912469289979e+01 2.0370221707498164e+01 9.2265069515148990e-01 2 0 0 -54 0 P 121 -313 2.9948691967772378e-01 -1.8053649737298678e+00 3.0151908513758070e+01 3.0220992661820826e+01 9.0651825153338594e-01 2 0 0 -55 0 P 122 113 5.8232197152458753e-01 -1.1528330273624894e+00 6.1576961809353286e+00 6.3360417781956553e+00 7.4838512200416496e-01 2 0 0 -56 0 P 123 311 8.2972720423829094e-01 -4.7637256129122718e-01 2.6146011325532368e+00 2.8282843848971271e+00 4.9767000000000000e-01 2 0 0 -57 0 P 124 -323 1.6358826422093303e-01 -1.1369354155937905e+00 7.7575658333761837e+00 7.8900697930997952e+00 8.6832621830627743e-01 2 0 0 -58 0 P 125 213 -4.2355952763274024e-01 -3.8719256980363798e-01 4.7779443452289865e+00 4.8773695158032533e+00 7.9414134007845461e-01 2 0 0 -59 0 P 126 -211 2.0248989226134473e-01 -1.0853809320095528e-01 3.1422431824009265e+00 3.1537207670288145e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 321 1.1184023041528328e+00 -1.2406263539039921e+00 2.8637411228027383e+00 3.3518102038103184e+00 4.9359999999999998e-01 1 0 0 0 0 P 128 -323 -2.6332401640949493e-02 -3.3281997094816401e-01 8.2132247151761384e-01 1.2200182251880871e+00 8.3809983840421476e-01 2 0 0 -60 0 P 129 331 -7.8643003392112754e-01 -9.0519130591205343e-01 1.5569853978372414e-01 1.5426437644738784e+00 9.5794793711735737e-01 2 0 0 -61 0 P 130 213 -8.6694765352998149e-01 -7.9758835095804481e-01 -4.6903166278771136e-01 1.4798509901980574e+00 7.6303528158772038e-01 2 0 0 -62 0 P 131 313 -1.2158228012379675e+00 -1.7417573311803766e-01 -4.2431954225384971e-01 1.6069699509458073e+00 9.4537985978489636e-01 2 0 0 -63 0 P 132 333 -1.3933046904035187e+00 -2.0691418857021007e+00 2.8204914731809166e-01 2.7084500006319514e+00 1.0166137816068914e+00 2 0 0 -64 0 P 133 -313 -1.5222769114068100e+00 -7.6133568634067450e-01 -8.0011604487489874e-01 2.1013998622321237e+00 9.3740955479707710e-01 2 0 0 -65 0 P 134 -211 4.5802988310784137e-01 -3.1913020749738052e-01 -8.1475467045593220e-01 9.9746700250527520e-01 1.3957000000000000e-01 1 0 0 0 0 P 135 221 3.7206917760747715e-01 4.7307579386963317e-01 -3.6654753315564020e-01 8.9235350407412706e-01 5.4744999999999999e-01 2 0 0 -66 0 P 136 211 3.3235974985277894e-01 3.7659147575565882e-01 4.5733202533290579e-02 5.2331200411224821e-01 1.3957000000000000e-01 1 0 0 0 0 P 137 331 1.3315630874943023e+00 9.2514445772294818e-01 -2.4848649049585285e+00 3.1178006668451701e+00 9.5769247603434071e-01 2 0 0 -67 0 P 138 -211 3.3221907237303734e+00 8.7921288801684550e-01 -3.2149440013807755e+00 4.7080050153126747e+00 1.3957000000000000e-01 1 0 0 0 0 P 139 213 1.0940294858583841e-01 3.0228885280013287e-02 -2.3783927712148394e+00 2.4863106314547667e+00 7.1561553312756454e-01 2 0 0 -68 0 P 140 313 -5.7621726332261558e-01 9.3298733377408724e-02 -3.5297772444663784e+00 3.6830507644679287e+00 8.7453104570066786e-01 2 0 0 -69 0 P 141 -313 8.7059479785686811e-01 -4.5898093587157962e-02 -5.7911307893115751e+00 5.9278773909304405e+00 9.1787395972508024e-01 2 0 0 -70 0 P 142 -211 1.0271261349167655e-01 2.1146779692352416e-01 -1.8186711858978262e+00 1.8391066248102594e+00 1.3957000000000000e-01 1 0 0 0 0 P 143 211 -4.7471914029396656e-02 -2.2245924197558684e-01 -1.7765684291420869e+00 1.7965012845212076e+00 1.3957000000000000e-01 1 0 0 0 0 P 144 -213 1.4274300026346645e-01 -2.3413048487473118e-01 -2.3826474850078519e+01 2.3834051418446492e+01 5.3470607594763042e-01 2 0 0 -71 0 P 145 213 -1.5596420079688775e+00 -4.6036084582035974e-01 -5.3211277284921010e+01 5.3238708829117535e+01 5.2504494800047685e-01 2 0 0 -72 0 P 146 113 -3.4980766438994099e-01 4.8330170594529476e-01 -6.7731694795341454e+01 6.7737991296289877e+01 7.0500997576096813e-01 2 0 0 -73 0 P 147 223 -1.0105556327049256e-02 -7.6707793116093814e-01 -1.0148924296569032e+02 1.0149516545725878e+02 7.8336630810135344e-01 2 0 0 -74 0 P 148 111 -4.9389413988426639e-01 1.0037462718807104e-01 -6.4376469073758130e+01 6.4378583368167796e+01 1.3497999999999999e-01 2 0 0 -75 0 P 149 -213 -1.1582194425003522e+00 -1.1698415197802228e+00 -1.3920448977714011e+02 1.3921785966974588e+02 1.0062183921788252e+00 2 0 0 -76 0 P 150 223 -4.4711374737478415e-01 -5.9938526119805902e-01 -7.2937991301151783e+01 7.2945993765217381e+01 7.7990893943214601e-01 2 0 0 -77 0 P 151 211 9.2749643997268338e-01 -1.1746857743093249e-01 -7.3790457388959780e+01 7.3796511638217922e+01 1.3957000000000000e-01 1 0 0 0 0 P 152 -213 -9.4695985021206275e-01 -3.1299346736599154e-01 -1.1969555572540476e+02 1.1970217098020851e+02 7.6744973325277366e-01 2 0 0 -78 0 P 153 2114 -5.4011472065138277e-01 -4.2996219870242303e-01 -1.8993417686507438e+01 1.9039662044069672e+01 1.1323532728244787e+00 2 0 0 -79 0 P 154 111 3.8928676819551609e-02 -2.6136307252239832e-01 -3.8334185829978886e+00 3.8448853988683189e+00 1.3497999999999999e-01 2 0 0 -80 0 P 155 -1114 7.0334892620557657e-02 2.9048616941018844e-03 -2.1527916315992584e+01 2.1561494381852150e+01 1.2007929192499331e+00 2 0 0 -81 0 P 156 223 -8.5678192676745840e-02 -2.9834098036412088e-01 -4.0720531000212269e+01 4.0729332797275788e+01 7.8775445332414784e-01 2 0 0 -82 0 P 157 -211 -6.9459352037459648e-02 -7.3662705353359323e-02 -5.3783251876734406e+00 5.3810884033816047e+00 1.3957000000000000e-01 1 0 0 0 0 P 158 211 1.4662783930018169e-01 -3.5910971973098721e-01 -1.1121104433626154e+01 1.1128742207571456e+01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 -4.8044345872305927e-01 -3.2788942279455380e-01 -3.4586691713964278e+01 3.4591845870202064e+01 1.3497999999999999e-01 2 0 0 -83 0 P 160 113 7.7647967789670480e-01 -3.5556366215165630e-01 -3.6495119441145178e+01 3.6511235683439551e+01 6.6876146733142328e-01 2 0 0 -84 0 P 161 113 -4.3677028341126645e-01 7.6411443069521412e-02 -1.4193756942920160e+02 1.4194003223011242e+02 7.0889140693504205e-01 2 0 0 -85 0 P 162 -213 -7.6460207163875105e-01 -3.1618163425537870e-03 -1.6479024759419249e+02 1.6479394902312339e+02 7.9706094841583153e-01 2 0 0 -86 0 P 163 213 1.0265111163922508e-01 -2.0035556852702607e-01 -6.4056135870555579e+01 6.4060499550365165e+01 7.1300797379734371e-01 2 0 0 -87 0 P 164 331 -5.1624412214543747e-01 1.8797350478462211e+00 -2.3881298414850171e+03 2.3881308290110051e+03 9.5748091071799224e-01 2 0 0 -88 0 P 165 223 3.9890005686967944e-01 6.6976891123511095e-01 -7.3177124211204534e+02 7.3177209719909092e+02 8.0233739808295990e-01 2 0 0 -89 0 P 166 111 -6.4789775078386380e-01 5.2832960226989756e-01 -7.7377759298584056e+02 7.7377805637677886e+02 1.3497999999999999e-01 2 0 0 -90 0 P 167 2112 2.6063476789717849e-01 7.2936308340335232e-01 -1.3386312883058301e+03 1.3386318421149635e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 11 1 0 P 54 21 -1.4549252582740217e+00 -3.3795134943002489e+00 9.5602576757133502e+00 1.0243849168713743e+01 0 2 0 0 -15 0 P 55 21 1.4440096904255579e+00 -3.0646041846676746e+00 1.9219319829329828e+00 3.8949692350192247e+00 0 2 0 0 -15 0 P 56 21 9.7758355142933973e-01 1.9898758411010435e+00 -2.6050970454763121e+01 2.6145139837032119e+01 0 2 0 0 -15 0 P 57 21 1.4549252582740217e+00 3.3795134943002489e+00 -2.7806606175970298e+01 2.8048979767378896e+01 0 2 0 0 -15 0 P 58 21 -4.9664814588740996e-01 3.1865895186807620e+00 -1.1278525064811578e+01 1.1730564341878974e+01 0 2 0 0 -15 0 P 59 21 -2.3198944131306614e+00 1.4638965636866135e+00 -1.2201810124725821e+01 1.2506361323626864e+01 0 2 0 0 -15 0 P 60 21 -1.4440096904255579e+00 3.0646041846676746e+00 -2.6966537219018414e+00 4.3300004723524674e+00 0 2 0 0 -15 0 P 61 21 -7.2158445246857650e-01 7.9553892977164509e-01 8.4914888685700296e-01 1.3691676825272634e+00 0 2 0 0 -15 0 P 62 21 -8.3036143768113679e-01 6.5629717476697114e-01 6.1862527878272588e-01 1.2259377367321711e+00 0 2 0 0 -15 0 P 63 21 -1.3512398920826794e+00 1.6817080322376574e-01 8.6289282506187037e-01 1.6120529434717066e+00 0 2 0 0 -15 0 P 64 21 -1.1734702490013313e+00 -3.4725017127596736e-01 2.3309869034828998e+00 2.6327010941144140e+00 0 2 0 0 -15 0 P 168 92 -5.9156150388224562e+00 7.9131186599548338e+00 -6.3890721989341806e+01 1.0373972360284785e+02 8.1131337648665905e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 24 0 P 169 223 -4.6789921284223823e-01 4.2655541746521597e-01 -1.6433146713437950e-02 1.0034838441886340e+00 7.7835119302881672e-01 2 0 0 -91 0 P 170 211 -1.9867409820700307e-01 1.5664698014598943e-01 -3.4287409406612313e-01 4.4838833946579010e-01 1.3957000000000000e-01 1 0 0 0 0 P 171 -213 -1.0008887844365235e+00 5.1169344092227176e-01 2.5177771198820165e-01 1.3504479986625839e+00 7.0477602438226339e-01 2 0 0 -92 0 P 172 -2212 -5.4373339018736133e-01 6.1548069469141653e-01 6.5156311862803784e-01 1.4068928799303679e+00 9.3827000000000005e-01 1 0 0 0 0 P 173 113 -1.4276990588183271e+00 -1.7987021916341455e+00 4.6898019618310745e+00 5.2804320854831239e+00 7.8426168557748788e-01 2 0 0 -93 0 P 174 2224 1.3464622852531830e-01 1.5233798555726846e-01 1.8462013411138589e+00 2.2675352406300604e+00 1.3007383314367562e+00 2 0 0 -94 0 P 175 -2212 -6.6392875211674718e-01 -7.0923510592991901e-01 7.1295748929724190e-01 1.5272441840831319e+00 9.3827000000000005e-01 1 0 0 0 0 P 176 -211 -4.3317517441590858e-01 8.8074413685083300e-02 1.4682415139203129e+00 1.5396787853884446e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 2224 4.3707424285466180e-02 -2.2761444104807462e+00 3.6654682456029275e+00 4.4699798102620418e+00 1.1671839308037377e+00 2 0 0 -95 0 P 178 -321 -4.4672320270554705e-01 2.7837039487299525e-01 -2.5062893772382616e-01 7.6387663991106713e-01 4.9359999999999998e-01 1 0 0 0 0 P 179 321 3.9630631856710452e-01 -1.0175808484204072e+00 8.7740199638681771e-01 1.4852625035567888e+00 4.9359999999999998e-01 1 0 0 0 0 P 180 -211 6.0166943595898403e-01 -5.8386696346224987e-01 8.8559765851915120e-02 8.5453458573516861e-01 1.3957000000000000e-01 1 0 0 0 0 P 181 331 -6.6720925460882180e-02 5.9024604793166298e-02 -9.8295938269692618e-01 1.3753332217969527e+00 9.5780829871176087e-01 2 0 0 -96 0 P 182 213 3.2569520565544324e-02 1.9970033873758400e-01 -1.5437779812053281e+00 1.6845516280796895e+00 6.4305733294144107e-01 2 0 0 -97 0 P 183 -213 1.0204420391065872e+00 1.5520731024235390e+00 -2.0070485318374796e+01 2.0172296669124329e+01 8.0432525860097648e-01 2 0 0 -98 0 P 184 211 -6.6416160574158167e-01 6.2543240601709726e-01 -4.1160376514572796e+00 4.2182368432973902e+00 1.3957000000000000e-01 1 0 0 0 0 P 185 -211 1.1044677764696540e+00 1.4712585729412939e+00 -1.8496751597516852e+01 1.8588538143244488e+01 1.3957000000000000e-01 1 0 0 0 0 P 186 -2214 2.1672543708509395e-01 2.9183495834419482e+00 -1.2657273008179482e+01 1.3045284325698177e+01 1.1870757888450607e+00 2 0 0 -99 0 P 187 321 -7.2217295982751395e-01 6.8648217261823230e-01 -7.2172948410667050e+00 7.3024500915868478e+00 4.9359999999999998e-01 1 0 0 0 0 P 188 3212 -3.1279767618579807e-01 2.3279604977533674e+00 -5.9939918477198040e+00 6.5473167204862488e+00 1.1925500000000000e+00 2 0 0 -100 0 P 189 111 -1.7264045215065555e+00 7.5289598953910331e-01 -4.6716791975804277e+00 5.0388620807130708e+00 1.3497999999999999e-01 2 0 0 -101 0 P 190 211 1.9729933827710971e-01 2.9325001895616731e-01 -8.2688189038185478e-01 9.1001980640195279e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 -213 -1.8997200670615658e-01 6.7412672359068282e-01 -1.8531679108145421e-01 1.0147281719422305e+00 7.1048909005376071e-01 2 0 0 -102 0 P 192 113 -7.9849718850517426e-01 5.0893484172987757e-01 -7.7030944819791103e-01 1.4443490031792594e+00 7.7211071992601366e-01 2 0 0 -103 0 V -17 0 0 0 0 0 0 2 0 P 193 -211 2.8934927593735305e+00 -4.9720293457998936e+00 -1.5603737224659024e+01 1.6630979265369554e+01 1.3957000000000000e-01 1 0 0 0 0 P 194 111 6.8335672349995429e+00 -1.0029589823705592e+01 -3.1348547096266824e+01 3.3616066662152747e+01 1.3497999999999999e-01 2 0 0 -104 0 V -18 0 0 0 0 0 0 3 0 P 195 211 6.5100691848056946e-01 -1.1642673493718856e+00 -3.4024763129635480e+00 3.6572740277289890e+00 1.3957000000000000e-01 1 0 0 0 0 P 196 -211 5.2899771917622607e+00 -8.6821910659856805e+00 -2.7834290445878739e+01 2.9633283733094498e+01 1.3957000000000000e-01 1 0 0 0 0 P 197 111 1.0747882333900014e+00 -1.8163310252878959e+00 -6.2746591124323832e+00 6.6214646957971253e+00 1.3497999999999999e-01 2 0 0 -105 0 V -19 0 0 0 0 0 0 2 0 P 198 -2212 -1.6995156242994376e+00 9.1581924459229069e-01 -1.1279691680446021e+01 1.1482111009950508e+01 9.3827000000000005e-01 1 0 0 0 0 P 199 111 -4.4089370809082162e-01 4.5576095348487961e-01 -2.2512057332988231e+00 2.3427018936674409e+00 1.3497999999999999e-01 2 0 0 -106 0 V -20 0 0 0 0 0 0 2 0 P 200 22 3.0111154363356274e-01 -1.0969911302817083e-01 -1.3657253738930926e+00 1.4028213906281803e+00 0 1 0 0 0 0 P 201 22 -1.6951732315246110e-01 9.5061240347697765e-02 -2.0317096107595005e+00 2.0409842490126522e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 202 2112 -7.1159102003972696e-01 8.6301010546757917e-01 -7.0817828452240210e+00 7.2308774207387563e+00 9.3957000000000002e-01 1 0 0 0 0 P 203 211 -4.1094425103940341e-01 -2.6817130068540248e-02 -2.8560274968247992e+00 2.8889387642258493e+00 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 204 -311 -2.3147059388645181e+00 2.9978787049613276e+00 -2.0742097972555076e+01 2.1090932744785107e+01 4.9767000000000000e-01 2 0 0 -107 0 P 205 -211 -2.6072086234091243e+00 2.5631938017052880e+00 -2.0461857157614123e+01 2.0786403666690003e+01 1.3957000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 206 431 -1.3652735592519953e+01 1.4253449533829485e+01 -1.1236987911496654e+02 1.1410706699120296e+02 1.9684999999999999e+00 2 0 0 -108 0 P 207 22 -1.0997724074265633e+00 9.5432847231127427e-01 -7.8823084387093241e+00 8.0156739270100683e+00 0 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 208 22 8.5901950323592144e-03 7.5619600532460973e-02 4.2163654983980153e-01 4.2845010864299515e-01 0 1 0 0 0 0 P 209 22 4.1835735251564155e-01 2.1176371602218833e-02 6.2676570878041127e-02 4.2355597700323167e-01 0 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 210 -211 -2.4138859842244351e-01 -7.2811800126864071e-02 1.2681159240729351e-01 3.1485072424077354e-01 1.3957000000000000e-01 1 0 0 0 0 P 211 111 8.8598717510825556e-03 -8.6259280201639366e-01 -2.5834407673541615e-01 9.1055263538260844e-01 1.3497999999999999e-01 2 0 0 -109 0 V -26 0 0 0 0 0 0 2 0 P 212 22 8.3002571776124657e-04 1.1381933294284100e-01 9.6229837895915915e-01 9.6900655294052107e-01 0 1 0 0 0 0 P 213 111 3.5994394444399547e-01 8.2479354288090889e-02 9.1195388474575173e-02 4.0360709397223332e-01 1.3497999999999999e-01 2 0 0 -110 0 V -27 0 0 0 0 0 0 2 0 P 214 321 -4.2512680486841753e-01 3.8041974169487881e-02 4.2141792689699423e+02 4.2141843212075145e+02 4.9359999999999998e-01 1 0 0 0 0 P 215 111 -3.1384273305044064e-01 -4.8723795526533031e-01 3.5482398411009348e+02 3.5482448311446382e+02 1.3497999999999999e-01 2 0 0 -111 0 V -28 0 0 0 0 0 0 2 0 P 216 -321 2.1303391146744408e-01 4.0116064420188127e-02 1.1290287779490253e+00 1.2511353593823304e+00 4.9359999999999998e-01 1 0 0 0 0 P 217 111 -2.0402511296864489e-01 6.7068209902717876e-02 1.3843327609792657e+00 1.4073809665552182e+00 1.3497999999999999e-01 2 0 0 -112 0 V -29 0 -2.4254865490593793e-06 -2.1344417915973354e-05 2.8808245915687436e-04 2.8914552082120565e-04 0 2 0 P 218 22 9.9356943806557588e-03 -2.3019790937844309e-01 2.4964799050408231e+00 2.5070902879189796e+00 0 1 0 0 0 0 P 219 22 -3.6476586096916445e-02 -3.3634290153550712e-03 6.5586301634204480e-01 6.5688518798440920e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 220 211 -2.2739946388201493e-01 -2.1178568831426797e-01 3.5315020596521469e+00 3.5478937802837236e+00 1.3957000000000000e-01 1 0 0 0 0 P 221 111 2.4126050104513974e-01 1.3249959137039466e-01 1.4083984223715307e+00 1.4413772884350891e+00 1.3497999999999999e-01 2 0 0 -113 0 V -31 0 0 0 0 0 0 3 0 P 222 211 -2.4916199276725216e-02 8.6230220192675344e-02 7.1006736339999177e-01 7.2919950173233850e-01 1.3957000000000000e-01 1 0 0 0 0 P 223 -211 -1.0692207265480713e-01 -2.9230635035676113e-02 5.6268647656315640e-01 5.9023945602818551e-01 1.3957000000000000e-01 1 0 0 0 0 P 224 111 1.4162644774736791e-01 8.3920271944449981e-02 4.1514806283299968e-02 2.1689569448356574e-01 1.3497999999999999e-01 2 0 0 -114 0 V -32 0 0 0 0 0 0 2 0 P 225 -211 -1.6276453456961588e-03 -2.9145676252241071e-01 -3.3023009494872219e-01 4.6204046809696048e-01 1.3957000000000000e-01 1 0 0 0 0 P 226 211 2.4087124563573312e-01 -2.5523545806641307e-01 -1.5336080113281338e+00 1.5794294581709925e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 3 0 P 227 211 -1.2911282171982486e-01 4.6958871971268669e-02 -5.3942369238657351e-01 5.7387538821353368e-01 1.3957000000000000e-01 1 0 0 0 0 P 228 -211 1.6597046182708611e-01 8.6239265045415209e-02 -5.3282703695749190e-01 5.8169394121614337e-01 1.3957000000000000e-01 1 0 0 0 0 P 229 111 3.1975814427334692e-01 -1.6637601769944441e-01 -1.8800901389734983e+00 1.9190843600946907e+00 1.3497999999999999e-01 2 0 0 -115 0 V -34 0 1.0654347931718124e-04 -1.1360325825413760e-04 -3.3277282732791912e-04 3.6818844651449810e-04 0 2 0 P 230 22 2.8135343622536357e-01 -3.9154035850185098e-01 -9.6229206161828051e-01 1.0763222659896698e+00 0 1 0 0 0 0 P 231 22 3.2219519661463358e-01 -2.5200058501600386e-01 -9.2280298377768633e-01 1.0093955549926654e+00 0 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 232 -2112 2.1778429882275105e-01 2.4771148429330989e-01 -2.6174425685755844e+00 2.8004621698848324e+00 9.3957000000000002e-01 1 0 0 0 0 P 233 211 2.1654584816698430e-01 -2.4726170216543369e-01 -6.1034813953050104e-01 7.0713159315961138e-01 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 234 2212 8.0514065727692569e-02 -6.0288936440693075e-01 -1.0363679024940886e+00 1.5245875254359760e+00 9.3827000000000005e-01 1 0 0 0 0 P 235 -211 -1.5924195350245537e-01 -5.2380661302063802e-01 -2.7870086185553344e-01 6.2998835139901410e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 236 -321 -2.1824329392634731e-01 -1.5562198816514489e-01 3.8360558443605236e-01 6.8017831702783627e-01 4.9359999999999998e-01 1 0 0 0 0 P 237 111 -8.7802247007120679e-02 3.7381578777644281e-01 2.3378295285244780e-02 4.0769304980691790e-01 1.3497999999999999e-01 2 0 0 -116 0 V -38 0 -2.9345297645366277e+00 2.0497034743072353e+00 1.7388428427730776e+01 2.9270203266388268e+01 0 2 0 P 238 -2112 -2.2653399421029041e-01 -7.5810945410984473e-02 6.9014616201409995e-01 1.1900245626959838e+00 9.3957000000000002e-01 1 0 0 0 0 P 239 211 7.5538796949040699e-02 1.8127771701108794e-01 2.0456930900887582e-01 3.1606345504918693e-01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 1 0 P 240 310 3.2254327332006216e-01 1.1653132644293969e-01 2.3355297018095419e-01 6.4794763058978533e-01 4.9767000000000000e-01 2 0 0 -117 0 V -40 0 0 0 0 0 0 2 0 P 241 -311 -1.5286437648883747e-01 -1.2225460086412182e-01 7.1551142729451134e-01 8.9327808465269964e-01 4.9767000000000000e-01 2 0 0 -118 0 P 242 -211 1.4228107096804168e-01 1.4331695336371705e-02 1.1324224347764187e+00 1.1499172389054699e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 243 321 -1.0127891075673519e-01 -3.2183125555915494e-02 3.8732929058641159e+00 3.9060634999897155e+00 4.9359999999999998e-01 1 0 0 0 0 P 244 111 -2.5823140553293694e-01 3.9026299183580965e-01 3.8317464178726679e+00 3.8625754197012356e+00 1.3497999999999999e-01 2 0 0 -119 0 V -42 0 0 0 0 0 0 2 0 P 245 -311 6.4574956583529874e-01 1.0613322534138481e+00 2.7047936604581992e+01 2.7081025989579853e+01 4.9767000000000000e-01 2 0 0 -120 0 P 246 -211 8.3063425229509602e-01 6.9057370137948371e-01 1.6180972450422107e+01 1.6217589047831432e+01 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 247 211 1.7191047391365194e-01 5.3332164092166412e-01 5.6368880465647804e+00 5.6663896634560436e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 2.7307842954856387e-02 3.1292515496521657e-02 2.5623800559541405e+00 2.5662689047261771e+00 1.3497999999999999e-01 2 0 0 -121 0 V -44 0 0 0 0 0 0 3 0 P 249 211 -8.9617691686446621e-03 7.5737315746588874e-01 2.3308783768501151e+01 2.3321504560482353e+01 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 2.2248631874438010e-01 3.9197129617164272e-01 2.0812161717470502e+01 2.0817509380281198e+01 1.3957000000000000e-01 1 0 0 0 0 P 251 111 7.8513686334935079e-02 1.8253749555701929e-01 3.7147691383086774e+00 3.7225278625628477e+00 1.3497999999999999e-01 2 0 0 -122 0 V -45 0 0 0 0 0 0 2 0 P 252 211 -1.6035053868160742e-01 8.6201103836070514e-01 2.2652979395094778e+01 2.2670371205275835e+01 1.3957000000000000e-01 1 0 0 0 0 P 253 111 2.2700670173526311e-02 -5.4218051017654166e-02 8.6263482587290792e+00 8.6276044646680869e+00 1.3497999999999999e-01 2 0 0 -123 0 V -46 0 0 0 0 0 0 2 0 P 254 2212 9.7997601357762809e-02 -3.0039736740397216e-01 7.6510992015704147e+01 7.6517397315435787e+01 9.3827000000000005e-01 1 0 0 0 0 P 255 111 1.3342844472761667e-01 2.1538519261333339e-01 1.8060768960964001e+01 1.8063050378958152e+01 1.3497999999999999e-01 2 0 0 -124 0 V -47 0 0 0 0 0 0 2 0 P 256 2112 7.8909123496625988e-01 8.8703716148834910e-01 2.5256133960894454e+02 2.5256587765720150e+02 9.3957000000000002e-01 1 0 0 0 0 P 257 -211 3.3334689074153614e-02 4.5632577614433434e-01 1.0801073350922410e+02 1.0801179277005356e+02 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 258 211 4.6590821636920476e-01 -7.3560482470268640e-02 1.8451495925181931e+01 1.8458051448421283e+01 1.3957000000000000e-01 1 0 0 0 0 P 259 111 -3.9273104794904201e-02 3.3557011158209304e-01 3.3250520326895398e+01 3.3252510751614402e+01 1.3497999999999999e-01 2 0 0 -125 0 V -49 0 -8.6872231378345595e-06 6.0492442034724460e-05 2.8269957586617763e-02 2.8270024655716805e-02 0 2 0 P 260 22 -1.6413317696049920e-01 8.4838755786857589e-01 3.8065593793028756e+02 3.8065691873750961e+02 0 1 0 0 0 0 P 261 22 9.2014887224780312e-03 2.3046077161230799e-01 1.2352269151420874e+02 1.2352290684625675e+02 0 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 262 211 -3.4281014928989295e-01 8.1093827522538547e-02 8.7501275795906484e+00 8.7583278912890279e+00 1.3957000000000000e-01 1 0 0 0 0 P 263 111 2.4623092404881159e-02 -5.3932346647132805e-02 2.5902453613834876e+01 2.5902873157469653e+01 1.3497999999999999e-01 2 0 0 -126 0 V -51 0 0 0 0 0 0 1 0 P 264 130 9.6371424459644128e-01 -1.1255934400769334e-01 8.0590408421566082e+01 8.0597785451803148e+01 4.9767000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 265 211 2.9801040571314388e-03 -2.7589061440967166e-01 8.1434197469906113e+00 8.1492876665826550e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.0036068639757474e-01 3.4833705696590750e-01 2.1885025142758614e+01 2.1888443436485076e+01 1.3497999999999999e-01 2 0 0 -127 0 V -53 0 -9.8193986522411260e-05 -1.4357610490878952e-04 2.1512841229949384e-02 2.1513585741753737e-02 0 2 0 P 267 22 -3.5839843874545439e-02 -1.5773470743416859e-01 2.0743564760534316e+01 2.0744195422016720e+01 0 1 0 0 0 0 P 268 22 -2.7853395884824672e-01 -3.0193260701997049e-01 4.8131057243811036e+01 4.8132810180503995e+01 0 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 269 311 -4.9965881390416150e-01 -1.2354979635772030e+00 1.1507607278233289e+01 1.1595206546123414e+01 4.9767000000000000e-01 2 0 0 -128 0 P 270 111 1.5321948930514284e-01 -9.5680334702777337e-01 8.7203051910566884e+00 8.7750151613747480e+00 1.3497999999999999e-01 2 0 0 -129 0 V -55 0 0 0 0 0 0 2 0 P 271 -321 -1.1782078311897341e-01 -9.8367002916113844e-01 1.5508182408616324e+01 1.5547631685955308e+01 4.9359999999999998e-01 1 0 0 0 0 P 272 211 4.1730770279669721e-01 -8.2169494456872938e-01 1.4643726105141743e+01 1.4673360975865517e+01 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 273 211 -2.3391565439507944e-02 -4.9560514291726271e-01 1.3723865927181558e+00 1.4659796614524707e+00 1.3957000000000000e-01 1 0 0 0 0 P 274 -211 6.0571353696409547e-01 -6.5722788444522673e-01 4.7853095882171734e+00 4.8700621167431857e+00 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 1 0 P 275 130 8.2972720423829094e-01 -4.7637256129122718e-01 2.6146011325532368e+00 2.8282843848971275e+00 4.9767000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 276 -321 1.8954763769655428e-01 -3.4113264517069480e-01 3.1427826336182596e+00 3.2051557576395604e+00 4.9359999999999998e-01 1 0 0 0 0 P 277 111 -2.5959373475621252e-02 -7.9580277042309555e-01 4.6147831997579241e+00 4.6849140354602348e+00 1.3497999999999999e-01 2 0 0 -130 0 V -59 0 0 0 0 0 0 2 0 P 278 211 -3.3138302710915030e-01 1.2771764718596337e-01 2.8405406769237378e+00 2.8660561107935605e+00 1.3957000000000000e-01 1 0 0 0 0 P 279 111 -9.2176500523589930e-02 -5.1491021698960127e-01 1.9374036683052485e+00 2.0113134050096932e+00 1.3497999999999999e-01 2 0 0 -131 0 V -60 0 0 0 0 0 0 2 0 P 280 -311 1.6624469103466985e-01 -2.0757643435602627e-01 7.5605932781383056e-01 9.4341211009371495e-01 4.9767000000000000e-01 2 0 0 -132 0 P 281 -211 -1.9257709267561934e-01 -1.2524353659213774e-01 6.5263143703783194e-02 2.7660611509437183e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 282 22 4.2737276811649322e-02 1.3157092410846413e-02 -2.7334970446743233e-02 5.2409775035840538e-02 0 1 0 0 0 0 P 283 113 -8.2916731073277694e-01 -9.1834839832289972e-01 1.8303351023046738e-01 1.4902339894380379e+00 8.1019372221652186e-01 2 0 0 -133 0 V -62 0 0 0 0 0 0 2 0 P 284 211 -7.4759625479841524e-02 -4.7057045048807727e-01 -3.4228536608031240e-01 6.0304610703259798e-01 1.3957000000000000e-01 1 0 0 0 0 P 285 111 -7.9218802805013988e-01 -3.2701790046996754e-01 -1.2674629670739890e-01 8.7680488316545935e-01 1.3497999999999999e-01 2 0 0 -134 0 V -63 0 0 0 0 0 0 2 0 P 286 321 -7.1059326102496545e-01 -2.0146997025740712e-01 -5.7828013819083379e-01 1.0599914196613220e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -211 -5.0522954021300204e-01 2.7294237139369442e-02 1.5396059593698405e-01 5.4697853128448548e-01 1.3957000000000000e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 288 130 -7.3459477714401111e-01 -1.2233058303467674e+00 1.3103986774738433e-01 1.5168894214829589e+00 4.9767000000000000e-01 1 0 0 0 0 P 289 310 -6.5870991325950756e-01 -8.4583605535533335e-01 1.5100927957070734e-01 1.1915605791489925e+00 4.9767000000000000e-01 2 0 0 -135 0 V -65 0 0 0 0 0 0 2 0 P 290 -321 -6.2666668886626908e-01 -6.7077605241090160e-02 -2.9954292498835144e-01 8.5473824529505515e-01 4.9359999999999998e-01 1 0 0 0 0 P 291 211 -8.9561022254054079e-01 -6.9425808109958431e-01 -5.0057311988654718e-01 1.2466616169370683e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 292 22 -1.1000281681569343e-01 1.0472335634085361e-01 4.5987785943350006e-02 1.5868987846315777e-01 0 1 0 0 0 0 P 293 22 4.8207199442317061e-01 3.6835243752877961e-01 -4.1253531909899022e-01 7.3366362561096932e-01 0 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 294 -211 9.2424153668337616e-02 1.9738294900896555e-01 -4.0677975223365620e-01 4.8213255902091812e-01 1.3957000000000000e-01 1 0 0 0 0 P 295 211 2.8922452170609247e-01 3.2585217105470868e-02 -4.3143770621000643e-01 5.3882362566027153e-01 1.3957000000000000e-01 1 0 0 0 0 P 296 221 9.4991441211987215e-01 6.9517629160851191e-01 -1.6466474465148659e+00 2.0968444821639811e+00 5.4744999999999999e-01 2 0 0 -136 0 V -68 0 0 0 0 0 0 2 0 P 297 211 -1.3865294867925645e-02 -3.0485850434757850e-01 -9.3880677553507341e-01 9.9697988985003039e-01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.2326824345376404e-01 3.3508738962759177e-01 -1.4395859956797659e+00 1.4893307416047359e+00 1.3497999999999999e-01 2 0 0 -137 0 V -69 0 0 0 0 0 0 2 0 P 299 311 -1.3373689442901970e-01 1.6294120911748000e-01 -1.3609448920015059e+00 1.4643366493143493e+00 4.9767000000000000e-01 2 0 0 -138 0 P 300 111 -4.4248036889359593e-01 -6.9642475740071277e-02 -2.1688323524648725e+00 2.2187141151535799e+00 1.3497999999999999e-01 2 0 0 -139 0 V -70 0 0 0 0 0 0 2 0 P 301 -321 1.4909406431721980e-01 -1.1888612037196792e-02 -2.8386588147094289e+00 2.8851334813901310e+00 4.9359999999999998e-01 1 0 0 0 0 P 302 211 7.2150073353964828e-01 -3.4009481549961168e-02 -2.9524719746021457e+00 3.0427439095403086e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 303 -211 2.5557366051682162e-01 -7.6291030490107742e-02 -1.8362063916302098e+01 1.8364531283660543e+01 1.3957000000000000e-01 1 0 0 0 0 P 304 111 -1.1283066025335517e-01 -1.5783945438462341e-01 -5.4644109337764215e+00 5.4695201347859523e+00 1.3497999999999999e-01 2 0 0 -140 0 V -72 0 0 0 0 0 0 2 0 P 305 211 -1.4411477767961112e-01 -1.5723332699118728e-01 -8.0551904010770237e+00 8.0592222683560344e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 -1.4155272302892665e+00 -3.0312751882917249e-01 -4.5156086883843990e+01 4.5179486560761504e+01 1.3497999999999999e-01 2 0 0 -141 0 V -73 0 0 0 0 0 0 2 0 P 307 211 -2.4362938181134361e-01 -1.0120143947045129e-01 -2.8315171109172720e+01 2.8316744017165217e+01 1.3957000000000000e-01 1 0 0 0 0 P 308 -211 -1.0617828257859738e-01 5.8450314541574599e-01 -3.9416523686168738e+01 3.9421247279124657e+01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 3 0 P 309 211 2.0618394921786118e-01 -2.1331645913947256e-01 -3.4889048907487933e+01 3.4890589407269118e+01 1.3957000000000000e-01 1 0 0 0 0 P 310 -211 -1.9265753689670989e-01 -1.2537649243772478e-01 -1.4907020448618441e+01 1.4909445819070790e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 111 -2.3631968648200552e-02 -4.2838497958374083e-01 -5.1693173609583958e+01 5.1695130230918878e+01 1.3497999999999999e-01 2 0 0 -142 0 V -75 0 -7.1188215323711174e-06 1.4467656115490719e-06 -9.2790044912798920e-04 9.2793092384585647e-04 0 2 0 P 312 22 -4.3187813061635416e-01 1.1299915634009816e-01 -5.0609899223013969e+01 5.0611868043895271e+01 0 1 0 0 0 0 P 313 22 -6.2016009267912224e-02 -1.2624529152027122e-02 -1.3766569850744162e+01 1.3766715324272521e+01 0 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 314 -211 -9.2716049846600124e-01 -4.0180204811944581e-01 -5.5133418308645673e+01 5.5142854166762120e+01 1.3957000000000000e-01 1 0 0 0 0 P 315 111 -2.3105894403435101e-01 -7.6803947166077691e-01 -8.4071071468494424e+01 8.4075005502983728e+01 1.3497999999999999e-01 2 0 0 -143 0 V -77 0 0 0 0 0 0 3 0 P 316 211 3.1649770936117268e-02 -5.4154855023548255e-02 -1.1187348665407258e+01 1.1188395077159749e+01 1.3957000000000000e-01 1 0 0 0 0 P 317 -211 -1.2595611840826854e-01 -4.2714756075501981e-01 -4.4351783255497168e+01 4.4354238554053914e+01 1.3957000000000000e-01 1 0 0 0 0 P 318 111 -3.5280739990263288e-01 -1.1808284541949102e-01 -1.7398859380247366e+01 1.7403360134003727e+01 1.3497999999999999e-01 2 0 0 -144 0 V -78 0 0 0 0 0 0 2 0 P 319 -211 -4.7095941347984277e-01 -1.5183967002582735e-01 -9.3685378478087699e+01 9.3686789241717406e+01 1.3957000000000000e-01 1 0 0 0 0 P 320 111 -4.7600043673222009e-01 -1.6115379734016419e-01 -2.6010177247317078e+01 2.6015381738491122e+01 1.3497999999999999e-01 2 0 0 -145 0 V -79 0 0 0 0 0 0 2 0 P 321 2212 -4.1025115681619462e-01 -4.4422340518646203e-01 -1.7171280606484920e+01 1.7207523607565662e+01 9.3827000000000005e-01 1 0 0 0 0 P 322 -211 -1.2986356383518821e-01 1.4261206484039002e-02 -1.8221370800225176e+00 1.8321384365040059e+00 1.3957000000000000e-01 1 0 0 0 0 V -80 0 2.1902666160139668e-06 -1.4705221424765602e-05 -2.1568184262895146e-04 2.1632700670964707e-04 0 2 0 P 323 22 8.6303827403021255e-02 -1.4811406488371801e-01 -1.9806573175790934e+00 1.9880617536989120e+00 0 1 0 0 0 0 P 324 22 -4.7375150583469645e-02 -1.1324900763868032e-01 -1.8527612654187953e+00 1.8568236451694069e+00 0 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 325 -2112 1.9284621799866175e-01 2.7692862599215714e-03 -1.4819138352168373e+01 1.4850146484743858e+01 9.3957000000000002e-01 1 0 0 0 0 P 326 211 -1.2251132537810409e-01 1.3557543418031302e-04 -6.7087779638242129e+00 6.7113478971082960e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 3 0 P 327 -211 -2.2408545246604385e-02 -1.7237303679899799e-01 -2.3173069261375392e+01 2.3174141481058506e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 211 1.6946912229671543e-01 -9.9435663463687360e-02 -6.6201765784021642e+00 6.6245622458170823e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 111 -2.3273876972685686e-01 -2.6532280101435532e-02 -1.0927285160434712e+01 1.0930629070400204e+01 1.3497999999999999e-01 2 0 0 -146 0 V -83 0 -2.3151370282092605e-04 -1.5800172321784158e-04 -1.6666462872255136e-02 1.6668946531411825e-02 0 2 0 P 330 22 -3.2940344302945385e-01 -2.3629085360743637e-01 -2.0181526512308430e+01 2.0185597646906231e+01 0 1 0 0 0 0 P 331 22 -1.5104001569360542e-01 -9.1598569187117396e-02 -1.4405165201655848e+01 1.4406248223295835e+01 0 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 332 211 8.1388100945141706e-01 -2.0711098506771750e-01 -3.2031385456564756e+01 3.2042697004303641e+01 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.7401331554712314e-02 -1.4845267708393878e-01 -4.4637339845804229e+00 4.4685386791359063e+00 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 334 211 -2.7859361790431864e-01 -2.3794345231946235e-01 -4.4490217286685450e+01 4.4491944725891940e+01 1.3957000000000000e-01 1 0 0 0 0 P 335 -211 -1.5817666550694784e-01 3.1435489538898376e-01 -9.7447352142516152e+01 9.7448087504220481e+01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 336 -211 -8.9932837045913439e-01 3.1005819298545532e-02 -1.3488445332892707e+02 1.3488752715691376e+02 1.3957000000000000e-01 1 0 0 0 0 P 337 111 1.3472629882038337e-01 -3.4167635641099321e-02 -2.9905794265265413e+01 2.9906421866209620e+01 1.3497999999999999e-01 2 0 0 -147 0 V -87 0 0 0 0 0 0 2 0 P 338 211 2.2318880357516652e-01 1.5526140053529566e-01 -3.8888514645309094e+01 3.8889715484274980e+01 1.3957000000000000e-01 1 0 0 0 0 P 339 111 -1.2053769193594142e-01 -3.5561696906232176e-01 -2.5167621225246492e+01 2.5170784066090196e+01 1.3497999999999999e-01 2 0 0 -148 0 V -88 0 0 0 0 0 0 3 0 P 340 211 -3.5694312075507863e-02 2.8662623595308234e-01 -2.8117976059830892e+02 2.8117994359233779e+02 1.3957000000000000e-01 1 0 0 0 0 P 341 -211 -1.9469371584186435e-01 4.1352792341906236e-01 -4.0061914946335077e+02 4.0061943451049638e+02 1.3957000000000000e-01 1 0 0 0 0 P 342 221 -2.8585609422806529e-01 1.1795808884740764e+00 -1.7063309314233575e+03 1.7063314509081711e+03 5.4744999999999999e-01 2 0 0 -149 0 V -89 0 0 0 0 0 0 3 0 P 343 -211 1.3624042687701055e-01 3.3245883583747865e-01 -3.2019690496033417e+02 3.2019713695830200e+02 1.3957000000000000e-01 1 0 0 0 0 P 344 211 4.0578566157879331e-01 2.3588722724561223e-01 -2.5949966418375874e+02 2.5950012619660822e+02 1.3957000000000000e-01 1 0 0 0 0 P 345 111 -1.4312603158612447e-01 1.0142284815202002e-01 -1.5207467296795241e+02 1.5207483404418076e+02 1.3497999999999999e-01 2 0 0 -150 0 V -90 0 -5.7613998914972424e-06 4.6981458254946288e-06 -6.8807803930142127e-03 6.8807845136960623e-03 0 2 0 P 346 22 -3.4425926380216665e-01 2.9378072132982397e-01 -3.5720632162028437e+02 3.5720660831939682e+02 0 1 0 0 0 0 P 347 22 -3.0363848698169721e-01 2.3454888094007365e-01 -4.1657127136555613e+02 4.1657144805738204e+02 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 348 -211 8.4326023301651589e-04 1.5308950474234703e-01 7.3832681327679783e-02 2.1992761827954305e-01 1.3957000000000000e-01 1 0 0 0 0 P 349 211 -2.8128147213118326e-01 1.7345041735263164e-01 -2.9074555759395848e-01 4.6175434811673355e-01 1.3957000000000000e-01 1 0 0 0 0 P 350 111 -1.8746100094407159e-01 1.0001549537023735e-01 2.0047972955284074e-01 3.2180187779235742e-01 1.3497999999999999e-01 2 0 0 -151 0 V -92 0 0 0 0 0 0 2 0 P 351 -211 -3.2063183491323416e-01 4.2876924922073228e-01 -1.0960001001949134e-01 5.6403881934970612e-01 1.3957000000000000e-01 1 0 0 0 0 P 352 111 -6.8025694952328952e-01 8.2924191701539515e-02 3.6137772200769297e-01 7.8640917931287802e-01 1.3497999999999999e-01 2 0 0 -152 0 V -93 0 0 0 0 0 0 2 0 P 353 211 -1.0655959100246828e+00 -7.8347042527303890e-01 2.3426077282789817e+00 2.6938098121863132e+00 1.3957000000000000e-01 1 0 0 0 0 P 354 -211 -3.6210314879364430e-01 -1.0152317663611066e+00 2.3471942335520928e+00 2.5866222732968107e+00 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 355 2212 2.7288977238719710e-02 3.6474077396918103e-01 1.6342974656131344e+00 1.9196508326995008e+00 9.3827000000000005e-01 1 0 0 0 0 P 356 211 1.0735725128659859e-01 -2.1240278841191257e-01 2.1190387550072454e-01 3.4788440793055980e-01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 357 2212 -2.3111095203277695e-02 -2.0981168339608227e+00 3.1158658950097031e+00 3.8718986608969894e+00 9.3827000000000005e-01 1 0 0 0 0 P 358 211 6.6818519488743872e-02 -1.7802757651992365e-01 5.4960235059322449e-01 5.9808114936505274e-01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 359 22 -2.0636421503586820e-02 -1.0948085225857818e-01 -2.3476011799260679e-01 2.5985425127105577e-01 0 1 0 0 0 0 P 360 113 -4.6084503957295360e-02 1.6850545705174449e-01 -7.4819926470431930e-01 1.1154789705258970e+00 8.0868617115678654e-01 2 0 0 -153 0 V -97 0 0 0 0 0 0 2 0 P 361 211 2.1671067336015368e-01 -1.1026838897103929e-01 -7.8767018442838777e-01 8.3607818886269847e-01 1.3957000000000000e-01 1 0 0 0 0 P 362 111 -1.8414115279460935e-01 3.0996872770862327e-01 -7.5610779677694040e-01 8.4847343921699125e-01 1.3497999999999999e-01 2 0 0 -154 0 V -98 0 0 0 0 0 0 2 0 P 363 -211 9.8481662649018997e-01 1.5907424174662572e+00 -1.8312391928984322e+01 1.8408245521292031e+01 1.3957000000000000e-01 1 0 0 0 0 P 364 111 3.5625412616397095e-02 -3.8669315042718345e-02 -1.7580933893904713e+00 1.7640511478322949e+00 1.3497999999999999e-01 2 0 0 -155 0 V -99 0 0 0 0 0 0 2 0 P 365 -2112 -5.1159642960001996e-04 2.2519705858929391e+00 -1.0029437926466196e+01 1.0322005071070080e+01 9.3957000000000002e-01 1 0 0 0 0 P 366 -211 2.1723703351469395e-01 6.6637899754900887e-01 -2.6278350817132843e+00 2.7232792546280944e+00 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 367 3122 -3.5070721515135750e-01 2.3072695969240682e+00 -5.9349143643775006e+00 6.4741361523020018e+00 1.1156800000000000e+00 2 0 0 -156 0 P 368 22 3.7909538965559458e-02 2.0690900829298954e-02 -5.9077483342303214e-02 7.3180568184247285e-02 0 1 0 0 0 0 V -101 0 -1.6143334106665317e-03 7.0402106547379011e-04 -4.3684129174943551e-03 4.7117597916954360e-03 0 2 0 P 369 22 -1.2981451728859563e+00 5.2568070403308698e-01 -3.5893715911737312e+00 3.8529351813915675e+00 0 1 0 0 0 0 P 370 22 -4.2825934862059911e-01 2.2721528550601644e-01 -1.0823076064066963e+00 1.1859268993215024e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 371 -211 -2.6212044934662965e-01 1.2623116966345355e-01 -2.9288232185455854e-01 4.3577663718377541e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 111 7.2148442640473084e-02 5.4789555392722933e-01 1.0756553077310435e-01 5.7895153475845518e-01 1.3497999999999999e-01 2 0 0 -157 0 V -103 0 0 0 0 0 0 2 0 P 373 -211 -5.7736596420126129e-01 6.8152143964923406e-01 -6.2447204654470145e-01 1.0987575033351737e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 211 -2.2113122430391294e-01 -1.7258659791935649e-01 -1.4583740165320955e-01 3.4559149984408566e-01 1.3957000000000000e-01 1 0 0 0 0 V -104 0 2.5095502132986534e-05 -3.6832533310664140e-05 -1.1512399065763279e-04 1.2345119958752089e-04 0 2 0 P 375 22 1.4629194297324544e+00 -2.0705450974237141e+00 -6.6427166943532727e+00 7.1100615566810514e+00 0 1 0 0 0 0 P 376 22 5.3706478052670894e+00 -7.9590447262818778e+00 -2.4705830401913552e+01 2.6506005105471694e+01 0 1 0 0 0 0 V -105 0 1.7672143089183872e-04 -2.9864917366065346e-04 -1.0317071793855396e-03 1.0887304859583955e-03 0 2 0 P 377 22 3.1161355824499354e-01 -4.9071305405822740e-01 -1.9130952305235409e+00 1.9994588448270645e+00 0 1 0 0 0 0 P 378 22 7.6317467514500781e-01 -1.3256179712296685e+00 -4.3615638819088423e+00 4.6220058509700612e+00 0 1 0 0 0 0 V -106 0 -2.1975913619374680e-04 2.2716956856196199e-04 -1.1220913754619731e-03 1.1676967374770510e-03 0 2 0 P 379 22 -1.7575125706771855e-01 9.6475222779689770e-02 -7.6810354664877467e-01 7.9383816445526245e-01 0 1 0 0 0 0 P 380 22 -2.6514245102310308e-01 3.5928573070518982e-01 -1.4831021866500484e+00 1.5488637292121783e+00 0 1 0 0 0 0 V -107 0 0 0 0 0 0 1 0 P 381 130 -2.3147059388645181e+00 2.9978787049613276e+00 -2.0742097972555076e+01 2.1090932744785107e+01 4.9767000000000000e-01 1 0 0 0 0 V -108 0 -7.5624535917704716e-01 7.8951979910373715e-01 -6.2243349705342244e+00 6.3205603944076776e+00 0 2 0 P 382 333 -6.9990760526641065e+00 7.9315732991733032e+00 -5.9233441366341971e+01 6.0179267622738912e+01 1.0231104135059472e+00 2 0 0 -158 0 P 383 213 -6.6536595398558465e+00 6.3218762346561821e+00 -5.3136437748624552e+01 5.3927799368464029e+01 6.9944528966283970e-01 2 0 0 -159 0 V -109 0 4.4737130774067106e-07 -4.3555852807757876e-05 -1.3044853323306583e-05 4.5977541741285218e-05 0 2 0 P 384 22 2.2256740781435334e-02 -2.1115118224395057e-02 -1.6865340158127174e-02 3.5009290573953696e-02 0 1 0 0 0 0 P 385 22 -1.3396869030352780e-02 -8.4147768379199861e-01 -2.4147873657728899e-01 8.7554334480865470e-01 0 1 0 0 0 0 V -110 0 1.0267560827522682e-06 2.3527602012472032e-07 2.6013889462667458e-07 1.1513071553907896e-06 0 2 0 P 386 22 8.0081328413938530e-02 7.8728703554737378e-02 3.9103343035261071e-02 1.1891299071373190e-01 0 1 0 0 0 0 P 387 22 2.7986261603005697e-01 3.7506507333534989e-03 5.2092045439314102e-02 2.8469410325850136e-01 0 1 0 0 0 0 V -111 0 -4.6124061313319746e-06 -7.1607180782556875e-06 5.2146892296849904e-03 5.2146965633288024e-03 0 2 0 P 388 22 -2.3443774674933365e-01 -4.4549378069116263e-01 3.1067332604036557e+02 3.1067373390544145e+02 0 1 0 0 0 0 P 389 22 -7.9404986301106983e-02 -4.1744174574167674e-02 4.4150658069727889e+01 4.4150749209022365e+01 0 1 0 0 0 0 V -112 0 -2.2366056430659755e-06 7.3522878902562021e-07 1.5175614511548688e-05 1.5428278244476717e-05 0 2 0 P 390 22 -1.2388530919425532e-01 -2.2665178951709126e-02 8.7588310749262865e-01 8.8489123521595192e-01 0 1 0 0 0 0 P 391 22 -8.0139803774389576e-02 8.9733388854426999e-02 5.0844965348663707e-01 5.2248973133926646e-01 0 1 0 0 0 0 V -113 0 1.1366937363722701e-04 6.2426901598133352e-05 6.6356393114129139e-04 6.7910185397769215e-04 0 2 0 P 392 22 -3.6442679258810017e-03 2.2865291671522819e-02 3.4682272968311917e-02 4.1700867019618719e-02 0 1 0 0 0 0 P 393 22 2.4490476897102073e-01 1.0963429969887184e-01 1.3737161494032188e+00 1.3996764214154711e+00 0 1 0 0 0 0 V -114 0 3.6365669913127157e-05 2.1548354541769906e-05 1.0659829190229489e-05 5.5692685629153043e-05 0 2 0 P 394 22 8.6481353930520061e-02 -1.2182719167199815e-02 5.8050513419405141e-02 1.0486803770558160e-01 0 1 0 0 0 0 P 395 22 5.5145093816847859e-02 9.6102991111649785e-02 -1.6535707136105169e-02 1.1202765677798428e-01 0 1 0 0 0 0 V -115 0 3.1245148418247596e-06 -1.6257422865865187e-06 -1.8371289827630893e-05 1.8752321631888578e-05 0 2 0 P 396 22 1.2855784654572619e-01 -1.4154775797677807e-01 -8.7141677570909848e-01 8.9214913814001306e-01 0 1 0 0 0 0 P 397 22 1.9120029772762076e-01 -2.4828259722666345e-02 -1.0086733632643998e+00 1.0269352219546775e+00 0 1 0 0 0 0 V -116 0 -4.8984536035029556e-06 2.0855039080392903e-05 1.3042661057919874e-06 2.2745038504400087e-05 0 2 0 P 398 22 -7.7728805225368666e-02 1.7682333192774008e-01 -4.6075041581146343e-02 1.9857282626909303e-01 0 1 0 0 0 0 P 399 22 -1.0073441781752006e-02 1.9699245584870273e-01 6.9453336866391116e-02 2.0912022353782486e-01 0 1 0 0 0 0 V -117 0 8.1040876974238909e+00 2.9279174830398627e+00 5.8681544738404936e+00 1.6280061796319060e+01 0 2 0 P 400 -211 -2.8151518463952595e-02 -9.4607883869496659e-02 4.9904294486901687e-02 1.7808251792448870e-01 1.3957000000000000e-01 1 0 0 0 0 P 401 211 3.5069479178401475e-01 2.1113921031243635e-01 1.8364867569405249e-01 4.6986511266529668e-01 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 1 0 P 402 310 -1.5286437648883747e-01 -1.2225460086412182e-01 7.1551142729451134e-01 8.9327808465269964e-01 4.9767000000000000e-01 2 0 0 -160 0 V -119 0 -5.6363032443076629e-05 8.5180985731684314e-05 8.3633842761489136e-04 8.4306733816961294e-04 0 2 0 P 403 22 -6.3016952347408155e-04 -9.0033859965817382e-03 3.2443695071458008e-02 3.3675679991969049e-02 0 1 0 0 0 0 P 404 22 -2.5760123600946283e-01 3.9926637783239138e-01 3.7993027228012095e+00 3.8288997397092657e+00 0 1 0 0 0 0 V -120 0 0 0 0 0 0 1 0 P 405 310 6.4574956583529874e-01 1.0613322534138481e+00 2.7047936604581992e+01 2.7081025989579853e+01 4.9767000000000000e-01 2 0 0 -161 0 V -121 0 7.1316130410673254e-06 8.1722350597855507e-06 6.6918148948720124e-04 6.7019708653246184e-04 0 2 0 P 406 22 2.2018716158135792e-03 6.9987795753682983e-02 7.4008694516302054e-01 7.4339210797115929e-01 0 1 0 0 0 0 P 407 22 2.5105971339042809e-02 -3.8695280257161326e-02 1.8222931107911200e+00 1.8228767967550179e+00 0 1 0 0 0 0 V -122 0 1.6680359394524560e-05 3.8780385573524089e-05 7.8920869961885852e-04 7.9085705311038182e-04 0 2 0 P 408 22 1.0589611296763683e-01 1.2767744658436028e-01 3.1663183635024175e+00 3.1706604195593981e+00 0 1 0 0 0 0 P 409 22 -2.7382426632701747e-02 5.4860048972658997e-02 5.4845077480625992e-01 5.5186744300344859e-01 0 1 0 0 0 0 V -123 0 2.1350174120329898e-06 -5.0992539904914644e-06 8.1131541905426032e-04 8.1143356629539347e-04 0 2 0 P 410 22 1.8759725280410908e-02 -2.2753025385512059e-02 3.6315381128966484e-01 3.6434917059189209e-01 0 1 0 0 0 0 P 411 22 3.9409448931154037e-03 -3.1465025632142103e-02 8.2631944474394139e+00 8.2632552940761936e+00 0 1 0 0 0 0 V -124 0 8.4439394728633415e-06 1.3630523337739020e-05 1.1429649821001330e-03 1.1431093602759727e-03 0 2 0 P 412 22 1.4714762848336149e-01 1.1771317397749974e-01 1.1922900663268209e+01 1.1924389671679537e+01 0 1 0 0 0 0 P 413 22 -1.3719183755744810e-02 9.7672018635833635e-02 6.1378682976957926e+00 6.1386607072786132e+00 0 1 0 0 0 0 V -125 0 -7.4207820691080065e-07 6.3407074127739420e-06 6.2827949641086828e-04 6.2831710613931173e-04 0 2 0 P 414 22 4.4108859848260830e-02 5.2528312879863974e-02 5.8878646430112038e+00 5.8882641643860172e+00 0 1 0 0 0 0 P 415 22 -8.3381964643165038e-02 2.8304179870222906e-01 2.7362655683884192e+01 2.7364246587228383e+01 0 1 0 0 0 0 V -126 0 3.2910071058092890e-07 -7.2083446356030713e-07 3.4620005277699194e-04 3.4620566020054596e-04 0 2 0 P 416 22 4.9738630021171355e-02 2.8138132519270789e-02 7.4089758840622491e+00 7.4091962679115220e+00 0 1 0 0 0 0 P 417 22 -2.5115537616290200e-02 -8.2070479166403601e-02 1.8493477729772628e+01 1.8493676889558127e+01 0 1 0 0 0 0 V -127 0 1.0601420794121939e-05 3.6795959171228333e-05 2.3117853111248683e-03 2.3121463964411696e-03 0 2 0 P 418 22 1.1478337345223583e-01 3.4941718799219196e-01 2.1502162223940243e+01 2.1505307435578040e+01 0 1 0 0 0 0 P 419 22 -1.4422687054661078e-02 -1.0801310262844909e-03 3.8286291881837231e-01 3.8313600090703315e-01 0 1 0 0 0 0 V -128 0 0 0 0 0 0 1 0 P 420 310 -4.9965881390416150e-01 -1.2354979635772030e+00 1.1507607278233289e+01 1.1595206546123414e+01 4.9767000000000000e-01 2 0 0 -162 0 V -129 0 1.2114552615095595e-05 -7.5651240859986779e-05 6.8948536857707423e-04 6.9381110296631030e-04 0 2 0 P 421 22 9.8589989989275012e-02 -2.5725587917442350e-01 2.6563631888313539e+00 2.6706115338016065e+00 0 1 0 0 0 0 P 422 22 5.4629499315867823e-02 -6.9954746785334987e-01 6.0639420022253345e+00 6.1044036275731415e+00 0 1 0 0 0 0 V -130 0 -1.7033066819755771e-05 -5.2216058976511785e-04 3.0279586937635807e-03 3.0739745659018117e-03 0 2 0 P 423 22 3.0253835972852819e-02 -3.6596099553986911e-01 2.4235683483525583e+00 2.4512295453473856e+00 0 1 0 0 0 0 P 424 22 -5.6213209448474070e-02 -4.2984177488322650e-01 2.1912148514053658e+00 2.2336844901128492e+00 0 1 0 0 0 0 V -131 0 -1.8604627993446443e-05 -1.0392793155197583e-04 3.9103973699601509e-04 4.0595745624841674e-04 0 2 0 P 425 22 -3.0995338438697090e-02 -3.3244052955428993e-01 9.9706994685661865e-01 1.0514874681230995e+00 0 1 0 0 0 0 P 426 22 -6.1181162084892840e-02 -1.8246968743531139e-01 9.4033372144862981e-01 9.5982593688659368e-01 0 1 0 0 0 0 V -132 0 0 0 0 0 0 1 0 P 427 310 1.6624469103466985e-01 -2.0757643435602627e-01 7.5605932781383056e-01 9.4341211009371495e-01 4.9767000000000000e-01 2 0 0 -163 0 V -133 0 0 0 0 0 0 2 0 P 428 -211 -3.6073906093829466e-01 -7.8491322117246054e-01 3.7016226305629174e-01 9.5011647746417172e-01 1.3957000000000000e-01 1 0 0 0 0 P 429 211 -4.6842824979448222e-01 -1.3343517715043912e-01 -1.8712875282582436e-01 5.4011751197386604e-01 1.3957000000000000e-01 1 0 0 0 0 V -134 0 -2.4963210762536812e-05 -1.0304897932688019e-05 -3.9939943625070355e-06 2.7629633775146471e-05 0 2 0 P 430 22 -6.8712647789335257e-01 -2.7045877531684254e-01 -6.1960954523564642e-02 7.4103299903140718e-01 0 1 0 0 0 0 P 431 22 -1.0506155015678728e-01 -5.6559125153124959e-02 -6.4785342183834249e-02 1.3577188413405214e-01 0 1 0 0 0 0 V -135 0 -5.9327592880828526e+00 -7.6181360149467672e+00 1.3600853546086860e+00 1.0731950363823575e+01 0 2 0 P 432 211 -8.9141933570243428e-02 -3.2551639962458262e-01 1.7974550975889192e-01 4.0705705241854806e-01 1.3957000000000000e-01 1 0 0 0 0 P 433 -211 -5.6956797968926420e-01 -5.2031965573075067e-01 -2.8736230188184577e-02 7.8450352673044454e-01 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 434 -211 3.8920650274833651e-01 1.3428017614146792e-01 -6.0653559400777590e-01 7.4624264095838166e-01 1.3957000000000000e-01 1 0 0 0 0 P 435 211 3.8587033648527025e-01 2.8905482695234175e-01 -7.0840118089678816e-01 8.6819388822985155e-01 1.3957000000000000e-01 1 0 0 0 0 P 436 111 1.7483757288626528e-01 2.7184128851470218e-01 -3.3171067161030171e-01 4.8240795297574757e-01 1.3497999999999999e-01 2 0 0 -164 0 V -137 0 4.9731077042227272e-06 1.3518694127980410e-05 -5.8078350152620598e-05 6.0085241564980684e-05 0 2 0 P 437 22 -1.7398638812556665e-02 1.3646005854447657e-01 -4.7588212655652401e-01 4.9536638822840151e-01 0 1 0 0 0 0 P 438 22 1.4066688226632071e-01 1.9862733108311520e-01 -9.6370386912324180e-01 9.9396435337633460e-01 0 1 0 0 0 0 V -138 0 0 0 0 0 0 1 0 P 439 130 -1.3373689442901970e-01 1.6294120911748000e-01 -1.3609448920015059e+00 1.4643366493143493e+00 4.9767000000000000e-01 1 0 0 0 0 V -139 0 -7.5298663652925486e-06 -1.1851340139272215e-06 -3.6907892261115671e-05 3.7756750274975993e-05 0 2 0 P 440 22 -7.2360525192536343e-02 3.7917408895925382e-02 -3.3532477468124172e-01 3.4513255427233458e-01 0 1 0 0 0 0 P 441 22 -3.7011984370105960e-01 -1.0755988463599667e-01 -1.8335075777836307e+00 1.8735815608812449e+00 0 1 0 0 0 0 V -140 0 -1.8189392750633995e-05 -2.5445245298582937e-05 -8.8091584682863154e-04 8.8173949940316756e-04 0 2 0 P 442 22 -7.0293629349336847e-02 -1.4531309921336982e-01 -2.7415454071141778e+00 2.7462935586712027e+00 0 1 0 0 0 0 P 443 22 -4.2537030904018329e-02 -1.2526355171253572e-02 -2.7228655266622432e+00 2.7232265761147487e+00 0 1 0 0 0 0 V -141 0 -1.4870701636929991e-03 -3.1844805200464694e-04 -4.7438345287339222e-02 4.7462927620083875e-02 0 2 0 P 444 22 -1.0665687902456507e+00 -1.8116471631960912e-01 -3.2489421900958760e+01 3.2507428767856496e+01 0 1 0 0 0 0 P 445 22 -3.4895844004361581e-01 -1.2196280250956336e-01 -1.2666664982885230e+01 1.2672057792905008e+01 0 1 0 0 0 0 V -142 0 -1.4310750281867823e-05 -2.5941598681804138e-04 -3.1303701770115766e-02 3.1304886636249307e-02 0 2 0 P 446 22 7.9959479683499608e-03 -1.5219753559934004e-01 -2.6145495181675191e+01 2.6145939384922219e+01 0 1 0 0 0 0 P 447 22 -3.1627916616550518e-02 -2.7618744398440082e-01 -2.5547678427908767e+01 2.5549190845996652e+01 0 1 0 0 0 0 V -143 0 -1.2510408101268995e-04 -4.1584571714007614e-04 -4.5519268599507404e-02 4.5521398635076961e-02 0 2 0 P 448 22 -1.1617951892275953e-01 -2.1025278457561189e-01 -2.8711197907820999e+01 2.8712202792821454e+01 0 1 0 0 0 0 P 449 22 -1.1487942511159145e-01 -5.5778668708516499e-01 -5.5359873560673428e+01 5.5362802710162292e+01 0 1 0 0 0 0 V -144 0 -1.6793491918957657e-04 -5.6206964787785622e-05 -8.2817878673152028e-03 8.2839302082031059e-03 0 2 0 P 450 22 1.5677762808646045e-03 1.6511236300586308e-02 -8.1740048824153422e-01 8.1756873535143171e-01 0 1 0 0 0 0 P 451 22 -3.5437517618349745e-01 -1.3459408172007734e-01 -1.6581458892005831e+01 1.6585791398652294e+01 0 1 0 0 0 0 V -145 0 -1.8949460171801320e-05 -6.4154929881921996e-06 -1.0354587512422871e-03 1.0356659407543263e-03 0 2 0 P 452 22 -2.7681897236096042e-01 -1.4504696946556800e-01 -1.7996748004191264e+01 1.7999461272304025e+01 0 1 0 0 0 0 P 453 22 -1.9918146437125961e-01 -1.6106827874596205e-02 -8.0134292431258114e+00 8.0159204661870991e+00 0 1 0 0 0 0 V -146 0 -6.2349374478884014e-05 -7.1078448586993306e-06 -2.9273566896700688e-03 2.9282525038694250e-03 0 2 0 P 454 22 -1.3139121067610221e-01 -2.1075163113660301e-02 -3.3184368935773811e+00 3.3211039172839349e+00 0 1 0 0 0 0 P 455 22 -1.0134755905075467e-01 -5.4571169877752320e-03 -7.6088482668573301e+00 7.6095251531162678e+00 0 1 0 0 0 0 V -147 0 4.0792335280534202e-06 -1.0345253013096079e-06 -9.0548556382877136e-04 9.0550456628661548e-04 0 2 0 P 456 22 2.7659145019468968e-02 1.2976956156842311e-02 -1.1988853097325345e+00 1.1992745372043798e+00 0 1 0 0 0 0 P 457 22 1.0706715380091440e-01 -4.7144591797941636e-02 -2.8706908955532882e+01 2.8707147329005235e+01 0 1 0 0 0 0 V -148 0 -2.9183944279226912e-05 -8.6100087393226410e-05 -6.0934504691579783e-03 6.0942162393454119e-03 0 2 0 P 458 22 -9.3585990945855652e-02 -1.5170305760266797e-01 -1.5170211197010955e+01 1.5171258349830572e+01 0 1 0 0 0 0 P 459 22 -2.6951700990085783e-02 -2.0391391145965382e-01 -9.9974100282355369e+00 9.9995257162596207e+00 0 1 0 0 0 0 V -149 0 0 0 0 0 0 3 0 P 460 22 2.3601938563620320e-02 1.4962639735462549e-01 -1.3632980115528190e+02 1.3632988530820742e+02 0 1 0 0 0 0 P 461 211 -1.4697761785531499e-01 5.3608110498323003e-01 -1.0507113343754634e+03 1.0507114906815395e+03 1.3957000000000000e-01 1 0 0 0 0 P 462 -211 -1.6248041493637067e-01 4.9387338613622089e-01 -5.1928979589261223e+02 5.1929007491842412e+02 1.3957000000000000e-01 1 0 0 0 0 V -150 0 -2.6948049192271011e-05 1.9096092240748166e-05 -2.8632916895854222e-02 2.8632947223601567e-02 0 2 0 P 463 22 -5.7131470119114333e-02 9.4020215527769402e-02 -1.1816930088476117e+02 1.1816935209858356e+02 0 1 0 0 0 0 P 464 22 -8.5994561467010122e-02 7.4026326242506201e-03 -3.3905372083191246e+01 3.3905481945597167e+01 0 1 0 0 0 0 V -151 0 -4.0303890144587790e-05 2.1503211429886769e-05 4.3102901165693874e-05 6.9187017382536871e-05 0 2 0 P 465 22 -1.0055585745345022e-01 -2.0261691256693450e-02 9.4316591084888005e-02 1.3934717777785868e-01 0 1 0 0 0 0 P 466 22 -8.6905143490621353e-02 1.2027718662693081e-01 1.0616313846795274e-01 1.8245470001449879e-01 0 1 0 0 0 0 V -152 0 -3.0302234924620082e-04 3.6938811718648275e-05 1.6097671088072073e-04 3.5030815510398035e-04 0 2 0 P 467 22 -4.9818902504943358e-01 8.9161316734839346e-02 3.2252630053589221e-01 6.0013770054793592e-01 0 1 0 0 0 0 P 468 22 -1.8206792447385597e-01 -6.2371250332998330e-03 3.8851421471800734e-02 1.8627147876494196e-01 0 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 469 211 -3.7634653361539333e-01 1.6961807062556405e-01 -5.6297190407601094e-01 7.1191583275414694e-01 1.3957000000000000e-01 1 0 0 0 0 P 470 -211 3.3026202965809798e-01 -1.1126135738195608e-03 -1.8522736062830841e-01 4.0356313777174996e-01 1.3957000000000000e-01 1 0 0 0 0 V -154 0 -2.7957359666643856e-05 4.7061219474540330e-05 -1.1479659652627857e-04 1.2882007496847891e-04 0 2 0 P 471 22 -9.5102744606591877e-02 4.5524636612341705e-02 -1.8833361008835939e-01 2.1583923012118669e-01 0 1 0 0 0 0 P 472 22 -8.9038408188017476e-02 2.6444409109628153e-01 -5.6777418668858104e-01 6.3263420909580459e-01 0 1 0 0 0 0 V -155 0 2.8740760708757045e-06 -3.1196425494950660e-06 -1.4183398225361889e-04 1.4231462373160203e-04 0 2 0 P 473 22 3.7895398256525194e-02 4.4258976196706094e-02 -5.3951828958025583e-01 5.4265541826706776e-01 0 1 0 0 0 0 P 474 22 -2.2699856401280946e-03 -8.2928291239424440e-02 -1.2185750998102154e+00 1.2213957295652276e+00 0 1 0 0 0 0 V -156 0 -2.4900551291663739e+01 1.6381837173526338e+02 -4.2138465693679592e+02 4.5966992512553816e+02 0 2 0 P 475 2112 -1.9977011964542440e-01 1.8241673040041926e+00 -4.6482861782438292e+00 5.0849631889969169e+00 9.3957000000000002e-01 1 0 0 0 0 P 476 111 -1.5093709550593309e-01 4.8310229291987561e-01 -1.2866281861336715e+00 1.3891729633050847e+00 1.3497999999999999e-01 2 0 0 -165 0 V -157 0 2.0329491848600800e-05 1.5438224013999581e-04 3.0309075303803460e-05 1.6313298078043950e-04 0 2 0 P 477 22 4.8234027217571911e-02 5.3575838521363606e-01 1.1703711905806041e-01 5.5050999622691588e-01 0 1 0 0 0 0 P 478 22 2.3914415422901170e-02 1.2137168713593284e-02 -9.4715882849560600e-03 2.8441538531539332e-02 0 1 0 0 0 0 V -158 0 -7.5624535917704716e-01 7.8951979910373715e-01 -6.2243349705342244e+00 6.3205603944076776e+00 0 2 0 P 479 130 -3.6824923367381501e+00 4.2813397992115148e+00 -3.2097798932966867e+01 3.2594585318063437e+01 4.9767000000000000e-01 1 0 0 0 0 P 480 310 -3.3165837159259564e+00 3.6502334999617880e+00 -2.7135642433375104e+01 2.7584682304675471e+01 4.9767000000000000e-01 2 0 0 -166 0 V -159 0 -7.5624535917704716e-01 7.8951979910373715e-01 -6.2243349705342244e+00 6.3205603944076776e+00 0 2 0 P 481 211 -5.5974285677897306e+00 5.5422988151905592e+00 -4.6206827883148350e+01 4.6873646172835400e+01 1.3957000000000000e-01 1 0 0 0 0 P 482 111 -1.0562309720661163e+00 7.7957741946562276e-01 -6.9296098654761984e+00 7.0541531956286194e+00 1.3497999999999999e-01 2 0 0 -167 0 V -160 0 -9.2613226354179705e+00 -7.4068224937257359e+00 4.3349420772254071e+01 5.4119453695746877e+01 0 2 0 P 483 211 4.1190742316852068e-02 1.1935388289411884e-01 1.8997098244259603e-01 2.6741500646882455e-01 1.3957000000000000e-01 1 0 0 0 0 P 484 -211 -1.9405511880568951e-01 -2.4160848375824065e-01 5.2554044485191531e-01 6.2586307818387510e-01 1.3957000000000000e-01 1 0 0 0 0 V -161 0 9.4457964847442408e+00 1.5524793199782286e+01 3.9564765973734978e+02 3.9613167956954408e+02 0 2 0 P 485 211 2.9959158510905037e-02 3.1475553542617485e-01 5.4296567617869895e+00 5.4406452681625250e+00 1.3957000000000000e-01 1 0 0 0 0 P 486 -211 6.1579040732439372e-01 7.4657671798767322e-01 2.1618279842795001e+01 2.1640380721417326e+01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 -7.1674884069702474e+00 -1.7722928294973478e+01 1.6507392537365303e+02 1.6633051631048775e+02 0 2 0 P 487 111 -3.0664198741273752e-01 -4.5234612677195041e-01 3.3793019160460092e+00 3.4258644700341323e+00 1.3497999999999999e-01 2 0 0 -168 0 P 488 111 -1.9301682649142402e-01 -7.8315183680525247e-01 8.1283053621872803e+00 8.1693420760892828e+00 1.3497999999999999e-01 2 0 0 -169 0 V -163 0 3.7963722721430737e+00 -4.7402260778072129e+00 1.7265409501762480e+01 2.1543807225800965e+01 0 2 0 P 489 111 2.5336669148182771e-02 1.6564491492186705e-02 5.8370305939379563e-01 5.9987097873425754e-01 1.3497999999999999e-01 2 0 0 -170 0 P 490 111 1.4090802188648707e-01 -2.2414092584821296e-01 1.7235626842003487e-01 3.4354113135945735e-01 1.3497999999999999e-01 2 0 0 -171 0 V -164 0 6.9257016684192457e-05 1.0768232676372330e-04 -1.3139790914956168e-04 1.9109242422143621e-04 0 2 0 P 491 22 1.9619921399705606e-01 2.3277949091417807e-01 -2.7450237371749686e-01 4.0991703567901000e-01 0 1 0 0 0 0 P 492 22 -2.1361641110790787e-02 3.9061797600524119e-02 -5.7208297892804849e-02 7.2490917296737498e-02 0 1 0 0 0 0 V -165 0 -2.4900601314071565e+01 1.6381853184129855e+02 -4.2138508334118399e+02 4.5967038551452526e+02 0 2 0 P 493 22 -7.5329392651778140e-02 2.8339697112216639e-01 -9.1171190374871680e-01 9.5770922313383466e-01 0 1 0 0 0 0 P 494 22 -7.5607702854154954e-02 1.9970532179770920e-01 -3.7491628238495467e-01 4.3146374017124983e-01 0 1 0 0 0 0 V -166 0 -1.7410909261108383e+01 1.9119650232268807e+01 -1.4248955340017753e+02 1.4484069194418797e+02 0 2 0 P 495 211 -2.6115441386151761e+00 3.0105319130222510e+00 -2.1259432261080743e+01 2.1630219717692221e+01 1.3957000000000000e-01 1 0 0 0 0 P 496 -211 -7.0503957731078004e-01 6.3970158693953716e-01 -5.8762101722943578e+00 5.9544625869832464e+00 1.3957000000000000e-01 1 0 0 0 0 V -167 0 -7.5635910256198202e-01 7.8960375022508644e-01 -6.2250812062565455e+00 6.3213200419502513e+00 0 2 0 P 497 22 -4.9933321033206396e-01 3.7574790558580828e-01 -2.9412807549040583e+00 3.0069340901758443e+00 0 1 0 0 0 0 P 498 22 -5.5689776173405225e-01 4.0382951387981442e-01 -3.9883291105721401e+00 4.0472191054527755e+00 0 1 0 0 0 0 V -168 0 -7.1675973270986599e+00 -1.7723088969637214e+01 1.6507512571155112e+02 1.6633173318754086e+02 0 2 0 P 499 22 -1.9703975693750719e-01 -1.8543584293821663e-01 1.4376156671759583e+00 1.4628567681663076e+00 0 1 0 0 0 0 P 500 22 -1.0960223047523032e-01 -2.6691028383373372e-01 1.9416862488700510e+00 1.9630077018678247e+00 0 1 0 0 0 0 V -169 0 -7.1674962638441597e+00 -1.7722960173672075e+01 1.6507425624154425e+02 1.6633084884880478e+02 0 2 0 P 501 22 -2.0303657023801175e-01 -5.8322858185739268e-01 6.0923661785532977e+00 6.1235859658479130e+00 0 1 0 0 0 0 P 502 22 1.0019743746587749e-02 -1.9992325494785976e-01 2.0359391836339822e+00 2.0457561102413702e+00 0 1 0 0 0 0 V -170 0 3.7963725105504280e+00 -4.7402259219423453e+00 1.7265414994161706e+01 2.1543812870333483e+01 0 2 0 P 503 22 3.2035510153923585e-02 -5.6465887874952332e-02 2.6423298699413422e-01 2.7209142180556001e-01 0 1 0 0 0 0 P 504 22 -6.6988410057408172e-03 7.3030379367139034e-02 3.1947007239966146e-01 3.2777955692869776e-01 0 1 0 0 0 0 V -171 0 3.7963902663123656e+00 -4.7402547009452789e+00 1.7265431511920816e+01 2.1543851096527369e+01 0 2 0 P 505 22 3.5266523293558991e-02 1.1718331751125575e-02 3.4147651736170126e-02 5.0468892234121231e-02 0 1 0 0 0 0 P 506 22 1.0564149859292808e-01 -2.3585925759933854e-01 1.3820861668386475e-01 2.9307223912533625e-01 0 1 0 0 0 0 E 55 22 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 239 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 -4.0641692570681442e+00 2.2625112385789549e-02 5.3163514521990726e+02 5.3165068006787851e+02 0 3 0 0 -3 0 P 40 2203 4.0641692570681442e+00 -2.2625112385789549e-02 5.7623195411702027e+03 5.7623210260697542e+03 7.7132999999999996e-01 2 0 0 -19 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -1.9794151189230542e+00 1.0231429922038997e+00 -2.8843403056570071e+02 2.8844263709474558e+02 0 3 0 0 -4 0 P 26 2101 1.2436651736771234e+00 -3.7233381613551297e-01 -2.1853389873672586e+03 2.1853394497574373e+03 5.7933000000000001e-01 2 0 0 -11 0 P 76 2 7.3574994524593085e-01 -6.5080917606838673e-01 -5.0114744310341017e+01 5.0125456385517744e+01 3.3000000000000002e-01 2 0 0 -19 0 V -3 0 0 0 0 0 0 7 0 P 5 2 -1.0416435336592663e+01 7.9924950375925112e+00 1.0939420033096084e+02 1.1017927739869123e+02 0 3 0 0 -5 0 P 11 -2 7.0598379483638241e-01 -2.4837708723575211e+00 1.2829310611924242e+01 1.3090746412721286e+01 3.3000000000000002e-01 2 0 0 -9 0 P 12 21 2.4114452181853124e-01 1.8534268449469243e-01 2.7389863815227526e+00 2.7558209283743182e+00 0 2 0 0 -9 0 P 13 21 -1.1209568194341097e+00 5.2510022713754073e-02 1.7646152353474771e+00 2.0912121896980387e+00 0 2 0 0 -9 0 P 14 21 -9.0806428974333584e-03 -4.3424264022101056e-01 1.8062432617611428e+00 1.8577308333876243e+00 0 2 0 0 -9 0 P 15 21 -1.4557351875130897e-01 -1.1073023399845640e-01 2.7695103140162161e+01 2.7695707082114783e+01 0 2 0 0 -9 0 P 16 1 6.9109919344157307e+00 -5.3684967434299367e+00 3.7263482084290081e+02 3.7273771095962718e+02 3.3000000000000002e-01 2 0 0 -9 0 V -4 0 0 0 0 0 0 11 0 P 6 -1 9.1791422330983385e-01 -1.0014970388188391e+00 -1.7821252386036399e+01 1.7872957210459752e+01 0 3 0 0 -5 0 P 17 1 -1.1597032889046179e+00 -6.8044828744479158e-01 -3.8718458047342946e-01 1.4376138179424691e+00 3.3000000000000002e-01 2 0 0 -11 0 P 18 21 -1.1855528028239759e+00 1.7949742199847071e-01 2.0757663090762604e-01 1.2168988579528057e+00 0 2 0 0 -11 0 P 19 21 -2.6014666775190937e-01 -5.9693384323382359e-01 -4.0238550389620240e+00 4.0762011329815895e+00 0 2 0 0 -11 0 P 20 21 -7.5285229581383672e-01 -1.9562382371123248e+00 -4.3006564509727481e+00 4.7842763850916903e+00 0 2 0 0 -11 0 P 21 21 3.6364824623931585e-01 2.6218347784003493e-01 -1.9149464645509675e+00 1.9667232100988374e+00 0 2 0 0 -11 0 P 22 21 -2.9390353076432558e+00 3.2579424016237248e+00 -1.2247119636850495e+02 1.2254976971485819e+02 0 2 0 0 -11 0 P 23 21 -3.9004192409937705e-01 7.7355278796543570e-01 -4.9760257791926080e+01 4.9767798546221272e+01 0 2 0 0 -11 0 P 24 21 2.0224110338309451e+00 -3.4512991081698308e-01 -7.0377907632063135e+00 7.3307407450934861e+00 0 2 0 0 -11 0 P 25 21 6.2799646330301007e-01 6.2186304933798109e-01 -7.7666700286692347e+01 7.7671728618802803e+01 0 2 0 0 -11 0 P 75 21 5.4570401096730636e-01 6.9786902845716037e-01 -4.8590164998144053e-01 1.0104031185226188e+00 0 2 0 0 -19 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -1.0609480209919782e+00 -3.5688438200830219e-01 1.4333259806418543e+01 1.4376902094806850e+01 0 3 0 0 -6 0 P 8 24 -8.4375730922908527e+00 7.3478823807819751e+00 7.7239688138505912e+01 1.1367533251434413e+02 8.2649426999486792e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -1.0609480209919782e+00 -3.5688438200830219e-01 1.4333259806418543e+01 1.4376902094806848e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -8.4375730922908527e+00 7.3478823807819751e+00 7.7239688138505912e+01 1.1367533251434413e+02 8.2649426999486792e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 9 0 P 27 2 -6.4440248736141048e-01 1.0174600082426175e+00 6.5972342420756842e+00 6.7143785325900840e+00 3.3000000000000002e-01 2 0 0 -13 0 P 28 -1 -8.9376525546963101e+00 7.3313905905584216e+00 5.2292062999470922e+01 5.3555575563338259e+01 3.3000000000000002e-01 2 0 0 -13 0 P 29 1 -3.1184113821314865e+00 4.4999698910754464e+00 2.5887898434052396e+01 2.6462547192222544e+01 3.3000000000000002e-01 2 0 0 -15 0 P 30 21 -1.9538513398397173e+00 5.9610296752647223e+00 4.5754399481368875e+00 7.7644098659580676e+00 0 2 0 0 -15 0 P 31 21 -2.4317610541343423e-01 1.0064560137790608e-03 1.2642473364672441e-01 2.7407817219800368e-01 0 2 0 0 -15 0 P 32 21 -2.9210838532153049e-01 -1.5385549491350328e-01 5.4058297819745658e-02 3.3454614278661038e-01 0 2 0 0 -15 0 P 33 21 5.8237219690730724e-01 -8.4756281182839510e-02 1.8835219067687647e-01 6.1791386993930342e-01 0 2 0 0 -15 0 P 34 21 1.4003224563027494e+00 -1.7023439003706211e+00 -1.6109257815265274e+00 2.7301940609307751e+00 0 2 0 0 -15 0 P 35 -1 4.7693345092629817e+00 -9.5220185639060588e+00 -1.0870856925846791e+01 1.5221689114380490e+01 3.3000000000000002e-01 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 81 92 6.5825092699877921e+00 -8.1593877827984791e+00 4.1946907947361859e+02 4.2022892840592323e+02 2.2981266228518450e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 8 0 P 82 -213 7.5141330665552797e-01 -1.5207036523548505e+00 9.3280969608588666e+00 9.5067528139406789e+00 6.9842293667964805e-01 2 0 0 -23 0 P 83 -2112 -5.8566152698960838e-01 -7.6903549601465337e-01 3.3055385341786159e+00 3.5698447871253474e+00 9.3957000000000002e-01 1 0 0 0 0 P 84 2112 1.6895081000459264e-01 1.2629384259017554e-01 8.0243895496450843e+00 8.0819622580305737e+00 9.3957000000000002e-01 1 0 0 0 0 P 85 -2212 -2.3741100737213086e-01 -3.5854560621447767e-01 4.4540601619169431e+00 4.5720806485704886e+00 9.3827000000000005e-01 1 0 0 0 0 P 86 223 -2.0356916454668181e-01 -1.6724937659786102e-01 2.4493548900121592e+01 2.4507410606396029e+01 7.8091238248495154e-01 2 0 0 -24 0 P 87 2224 2.9898918427859994e-01 -4.9222851884475710e-01 3.5284171614983862e+01 3.5309415948143133e+01 1.2043274456194191e+00 2 0 0 -25 0 P 88 -323 3.3937817647044515e+00 -2.3106778357569051e+00 1.7089832702609337e+02 1.7095061427121490e+02 1.0086390142414865e+00 2 0 0 -26 0 P 89 311 2.9960159032530407e+00 -2.6672411396051507e+00 1.6368094672582021e+02 1.6373084707250200e+02 4.9767000000000000e-01 2 0 0 -27 0 V -11 0 0 0 0 0 0 1 0 P 90 92 -2.4296113699865782e+00 1.1439550440222110e+00 -2.4526939984816399e+03 2.4561412007864806e+03 1.3005589709216559e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 26 0 P 91 113 -6.8907984381055964e-01 -1.7012614061326903e-01 -2.4500757776891455e-01 1.0130308857075625e+00 6.8002126979036959e-01 2 0 0 -28 0 P 92 111 -3.9999859817861805e-01 7.9746532720623431e-02 -1.9935638448864695e-01 4.7362533342527852e-01 1.3497999999999999e-01 2 0 0 -29 0 P 93 311 -6.8001033460887184e-01 -5.4503445010209162e-01 -4.4982459691005522e-01 1.0997700686317358e+00 4.9767000000000000e-01 2 0 0 -30 0 P 94 -321 -1.8689110863265559e-01 -2.5159019230640467e-01 -1.2385735992797913e+00 1.3696464624798670e+00 4.9359999999999998e-01 1 0 0 0 0 P 95 321 -1.8116827941671684e-01 2.9908386752812499e-01 -3.5076494114245438e-01 6.9924967587912690e-01 4.9359999999999998e-01 1 0 0 0 0 P 96 -323 -3.9799984643722647e-01 -1.1681470599192401e+00 -2.8750260068097830e+00 3.2455390592979403e+00 8.6300510672529207e-01 2 0 0 -31 0 P 97 213 -1.9646575512008793e-01 4.7769915161789453e-02 -1.0604918499838134e+00 1.3125194194140863e+00 7.4644725515439370e-01 2 0 0 -32 0 P 98 -213 -6.5524784110011136e-01 -1.4665602316806767e+00 -9.5328290884540081e+00 9.7199169207869360e+00 1.0108441377935893e+00 2 0 0 -33 0 P 99 223 -3.2657501357709584e-01 6.5384647239174176e-01 -7.8657043279070242e+00 7.9383121674899249e+00 7.8315327076587282e-01 2 0 0 -34 0 P 100 323 -7.7786543244881934e-01 1.0062763665884906e+00 -3.3904181748476994e+01 3.3939935244452776e+01 8.9888687104330811e-01 2 0 0 -35 0 P 101 -311 -6.1064124317058488e-02 1.7293474688064354e+00 -4.8962508844531762e+01 4.8995605101630254e+01 4.9767000000000000e-01 2 0 0 -36 0 P 102 111 -5.2565389143199803e-01 1.1283761143134352e-01 -1.3052028864262281e+01 1.3063794296224465e+01 1.3497999999999999e-01 2 0 0 -37 0 P 103 -211 -9.1565850196227616e-01 4.3734745311120238e-01 -3.1005568499800194e+01 3.1022483154442373e+01 1.3957000000000000e-01 1 0 0 0 0 P 104 321 3.3774085740733889e-01 2.9199436620550170e-04 -2.0264932737618604e+01 2.0273756652190269e+01 4.9359999999999998e-01 1 0 0 0 0 P 105 -311 -3.0866245946024362e-01 2.9835292222875139e-03 -3.5765928702336272e+00 3.6242203856322921e+00 4.9767000000000000e-01 2 0 0 -38 0 P 106 113 5.4161266910462447e-01 1.4665470347857229e-01 -6.4501927949977089e+00 6.5202419970611389e+00 7.7053015658860402e-01 2 0 0 -39 0 P 107 2112 4.2552912667595305e-01 6.5079484736639293e-01 -2.4849578602969835e+01 2.4879488690507376e+01 9.3957000000000002e-01 1 0 0 0 0 P 108 -2112 1.0361063617878234e+00 -1.9809719818971677e-01 -1.0858011919043403e+01 1.0949519327890901e+01 9.3957000000000002e-01 1 0 0 0 0 P 109 2112 2.1949184558756690e-01 -2.6404356746857804e-01 -2.8967421929493838e+01 2.8984689418760752e+01 9.3957000000000002e-01 1 0 0 0 0 P 110 -2212 2.5246489449816285e-02 2.0827670457192102e-01 -5.0638341630251162e+01 5.0647467954734175e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 221 5.0209986005442145e-02 -4.8998121973300657e-01 -3.2561055758930145e+01 3.2569382190594951e+01 5.4744999999999999e-01 2 0 0 -40 0 P 112 213 2.6788666239701725e-01 2.6761003790959181e-01 -3.8365623336898445e+01 3.8376352995324467e+01 8.2464343609991553e-01 2 0 0 -41 0 P 113 -213 -7.8039056184758759e-02 -6.8081308837138043e-03 -2.4789472714051706e+02 2.4789581334856177e+02 7.2965418427948603e-01 2 0 0 -42 0 P 114 111 4.2358709225198593e-01 1.5874231227325039e-01 -3.4463448512826824e+02 3.4463480843404864e+02 1.3497999999999999e-01 2 0 0 -43 0 P 115 211 -2.5278406806531090e-01 5.8980589574822141e-02 -2.0273020368596050e+02 2.0273041790720740e+02 1.3957000000000000e-01 1 0 0 0 0 P 116 2112 8.7614169409826204e-01 -1.5624717158388696e-01 -1.2901609646166421e+03 1.2901616136941047e+03 9.3957000000000002e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 117 92 -9.5820550420577213e+00 8.3488505988010395e+00 5.8889297241546608e+01 6.0269954095928341e+01 1.7317482415051715e+00 2 0 0 -14 0 V -14 0 0 0 0 0 0 2 0 P 118 111 -1.1486297259170955e-01 4.1131184424682637e-01 2.4617803173443891e+00 2.5021896145085747e+00 1.3497999999999999e-01 2 0 0 -44 0 P 119 213 -9.4671920694659892e+00 7.9375387545541933e+00 5.6427516924202081e+01 5.7767764481419626e+01 6.4629698238914024e-01 2 0 0 -45 0 V -15 0 0 0 0 0 0 1 0 P 120 92 1.1444819497668695e+00 -1.0009682180190751e+00 1.8350390896959315e+01 5.3405378418415786e+01 5.0130687424332784e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 14 0 P 121 2214 -1.7379059474536582e+00 2.6808279944441522e+00 1.2400983731111115e+01 1.2855154589329336e+01 1.1240312265601498e+00 2 0 0 -46 0 P 122 -213 -5.5199556692069018e-01 1.4665140816202831e+00 9.2116474409343478e+00 9.3629499921855803e+00 5.9583665765457627e-01 2 0 0 -47 0 P 123 -2212 -5.1060455482101030e-01 9.5593322644479528e-01 2.9392467548619110e+00 3.2701754423411891e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 111 -5.4766267934382629e-01 4.1218156868323369e-01 1.9086972264632345e+00 2.0325286612042333e+00 1.3497999999999999e-01 2 0 0 -48 0 P 125 211 -7.7555322899539370e-01 1.6924444306972979e+00 1.1614421281242246e+00 2.1986992890991734e+00 1.3957000000000000e-01 1 0 0 0 0 P 126 -211 -2.4673935683034540e-02 1.4099027179644338e-01 -1.0106397788840386e-01 2.2401065235821557e-01 1.3957000000000000e-01 1 0 0 0 0 P 127 223 -8.6164637369280395e-01 2.1550074153743837e+00 2.2071790542234395e+00 3.2958131484597089e+00 7.7733744187494336e-01 2 0 0 -49 0 P 128 323 2.7468578936561849e-01 6.7945643670743161e-01 6.8245585806662823e-01 1.3231927249290685e+00 8.6485817151321553e-01 2 0 0 -50 0 P 129 -311 1.0581773994198028e-01 -1.0868394989773421e-01 1.1910766010436960e-01 5.3373369637614210e-01 4.9767000000000000e-01 2 0 0 -51 0 P 130 -213 -7.8405331522982905e-03 -2.1267853918851759e-01 -4.6619080177624533e-01 1.0873191023754500e+00 9.5897618934898576e-01 2 0 0 -52 0 P 131 213 2.8274823188688902e-01 -1.3585578857675360e+00 -9.4861594377842839e-01 1.7861391181107225e+00 6.0398232493872805e-01 2 0 0 -53 0 P 132 -211 6.3183507137780492e-01 -9.3104846226501425e-01 -1.1857713201569915e+00 1.6406097052973629e+00 1.3957000000000000e-01 1 0 0 0 0 P 133 111 5.0671494975700404e-01 -7.1185298209336667e-01 -6.1344538403280269e-01 1.0761178132591318e+00 1.3497999999999999e-01 2 0 0 -54 0 P 134 213 4.3605629875002894e+00 -7.8615018245749306e+00 -8.9652815292970889e+00 1.2718934483090477e+01 7.5980325074326616e-01 2 0 0 -55 0 V -17 0 0 0 0 0 4 1 0 P 36 1 -1.1403045948073365e+00 3.3345102722970474e+00 -4.5567464532062747e+00 5.7604853583531677e+00 0 2 0 0 -17 0 P 37 21 -2.1831020848522922e+00 -7.9023019878581613e-01 -2.4531163793406279e+01 2.4640787234560641e+01 0 2 0 0 -17 0 P 38 21 -2.6628499369193787e-01 -5.1397508965387839e-01 -1.2492255438644007e+01 1.2505659680120077e+01 0 2 0 0 -17 0 P 39 -1 1.1403045948073365e+00 -3.3345102722970474e+00 -3.7597728559920142e+01 3.7762527010125105e+01 0 2 0 0 -17 0 P 135 92 -2.4493870785442295e+00 -1.3042052884396944e+00 -7.9177894245176702e+01 8.0669459283158986e+01 1.5189544938605831e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 8 0 P 136 313 -5.1526901695801819e-01 8.1772050114074768e-01 -3.4633109014124894e+00 3.6947222847449877e+00 8.4987139246234089e-01 2 0 0 -56 0 P 137 -311 8.0612493758114676e-02 8.2045835450457927e-01 -7.8006177379365882e-01 1.2392828916193317e+00 4.9767000000000000e-01 2 0 0 -57 0 P 138 -211 -1.0573702966785554e+00 2.7035470148041835e-01 -5.7822543561578268e+00 5.8860061869757514e+00 1.3957000000000000e-01 1 0 0 0 0 P 139 213 -2.4844835820322461e-01 7.8896938940582628e-01 -1.6363545225993266e+00 1.9384277152476184e+00 6.2900445109359338e-01 2 0 0 -58 0 P 140 2212 -2.5759145039353770e-01 1.8170970096298081e-01 -5.6462725849313449e+00 5.7323744178993747e+00 9.3827000000000005e-01 1 0 0 0 0 P 141 -2224 -6.1775768801777009e-01 -1.0591104982985727e-01 -9.5149338987585903e+00 9.6193953392336802e+00 1.2672639358650539e+00 2 0 0 -59 0 P 142 213 -6.2606695602080020e-01 -1.2251503586464425e+00 -1.6645041948902975e+01 1.6718605414701880e+01 7.4926116744873372e-01 2 0 0 -60 0 P 143 223 7.9250419396956218e-01 -2.8523565274579465e+00 -3.5709664258620471e+01 3.5840645032736340e+01 7.7956028761130325e-01 2 0 0 -61 0 V -19 0 0 0 0 0 34 1 0 P 41 21 -5.3250874765601512e+00 5.4768051138918752e+00 3.7747469798836832e+01 3.8512639835548391e+01 0 2 0 0 -19 0 P 42 21 -3.2025069071118843e+00 1.0467502778266693e+00 1.4671686577281054e+01 1.5053575112118668e+01 0 2 0 0 -19 0 P 43 21 -2.5473088155212884e+00 -1.8157239492844454e-01 1.6246957305309532e+01 1.6446439505764868e+01 0 2 0 0 -19 0 P 44 21 -1.2224209781863332e+01 5.6156490895371469e+00 1.6644531230674264e+02 1.6698804989692201e+02 0 2 0 0 -19 0 P 45 21 -2.7708865889161705e-01 -6.2733381722238457e-01 8.9281728605178387e+01 8.9284362508626586e+01 0 2 0 0 -19 0 P 46 21 5.3250874765601512e+00 -5.4768051138918752e+00 1.3109513722990147e+02 1.3131750437856817e+02 0 2 0 0 -19 0 P 47 21 1.2224209781863332e+01 -5.6156490895371469e+00 1.5706778727121292e+02 1.5764281340347495e+02 0 2 0 0 -19 0 P 48 21 4.7745099277222716e-02 -3.5088499864779638e-01 4.4825078392591831e+00 4.4964737746150689e+00 0 2 0 0 -19 0 P 49 21 -2.2525796260642612e+00 -2.0081935011974492e+00 1.1003706743742535e+01 1.1410018326553924e+01 0 2 0 0 -19 0 P 50 21 -7.3934241155076008e-01 -1.2468630319543468e+00 3.5537431581740480e+00 3.8380183762250195e+00 0 2 0 0 -19 0 P 51 21 1.6699153419912347e+00 -1.2434849730973736e+00 5.8363298548502005e+00 6.1965811785493816e+00 0 2 0 0 -19 0 P 52 21 2.5473088155212884e+00 1.8157239492844454e-01 2.2115701344154184e+00 3.3782825807902381e+00 0 2 0 0 -19 0 P 53 21 2.2525796260642612e+00 2.0081935011974492e+00 1.1007833492011470e+00 3.2122702395486544e+00 0 2 0 0 -19 0 P 54 21 2.7708865889161705e-01 6.2733381722238457e-01 8.1423671394189001e-01 1.0645690533958097e+00 0 2 0 0 -19 0 P 55 21 -1.8451636864977388e+00 8.4047085913793440e-01 3.8824283616352031e+00 4.3799851915570889e+00 0 2 0 0 -19 0 P 56 21 -1.8334684272758974e+00 1.3472287554556830e+00 2.9993444543571868e+00 3.7646645201435192e+00 0 2 0 0 -19 0 P 57 21 -1.6699153419912347e+00 1.2434849730973736e+00 -2.0825804671099521e-01 2.0924252774607166e+00 0 2 0 0 -19 0 P 58 21 -5.1562588608609383e+00 6.0367368742107341e-01 -4.7021939672437274e-01 5.2127280422200553e+00 0 2 0 0 -19 0 P 59 21 -8.6411428289230463e-01 -5.3414791400328288e-01 7.0911185001985899e-01 1.2388894639035104e+00 0 2 0 0 -19 0 P 60 21 1.0512340039029426e+00 -4.6004344461384985e+00 -2.0554251754276214e+00 5.1472189263680166e+00 0 2 0 0 -19 0 P 61 21 1.8451636864977388e+00 -8.4047085913793440e-01 -3.8320847126821767e-01 2.0634604497013522e+00 0 2 0 0 -19 0 P 62 21 4.2539881725117540e-01 -1.2281768299241573e+00 -3.6247541329390214e+00 3.8507434351745338e+00 0 2 0 0 -19 0 P 63 21 5.1562588608609383e+00 -6.0367368742107341e-01 -1.5077715122071405e+01 1.5946439121742266e+01 0 2 0 0 -19 0 P 64 21 2.6628499369193787e-01 5.1397508965387839e-01 -3.9793995001516271e+00 4.0212807005302738e+00 0 2 0 0 -19 0 P 65 21 3.2025069071118843e+00 -1.0467502778266693e+00 -4.3002510003610418e+01 4.3134297296291308e+01 0 2 0 0 -19 0 P 66 21 4.7281123390087663e+00 4.3539045614090249e-01 -7.0416521272261761e+01 7.0576420136094171e+01 0 2 0 0 -19 0 P 67 21 2.1831020848522922e+00 7.9023019878581613e-01 -1.7116621342657413e+02 1.7118195879610528e+02 0 2 0 0 -19 0 P 68 21 8.6411428289230463e-01 5.3414791400328288e-01 -7.4466381530575944e+01 7.4473310559859186e+01 0 2 0 0 -19 0 P 69 21 2.3668915190438451e+00 2.2698130379703132e+00 -6.6640667466004618e+02 6.6641474342795789e+02 0 2 0 0 -19 0 P 70 21 1.8334684272758974e+00 -1.3472287554556830e+00 -9.7590202936977312e+02 9.7590468159540808e+02 0 2 0 0 -19 0 P 71 21 -1.0512340039029426e+00 4.6004344461384985e+00 -1.2206162347517668e+03 1.2206253567862682e+03 0 2 0 0 -19 0 P 72 21 -4.2539881725117540e-01 1.2281768299241573e+00 -8.9329745427927165e+01 8.9339200806239333e+01 0 2 0 0 -19 0 P 73 21 -4.7281123390087663e+00 -4.3539045614090249e-01 -6.7450214262457564e+02 6.7451885445573942e+02 0 2 0 0 -19 0 P 74 21 -2.3668915190438451e+00 -2.2698130379703132e+00 -3.6670902954389766e+02 3.6672369241121777e+02 0 2 0 0 -19 0 P 144 92 7.1034129795520728e+00 -2.6910800215946284e-01 1.9825522743076367e+03 1.0862908835144477e+04 1.0680459929675430e+04 2 0 0 -20 0 V -20 0 0 0 0 0 0 95 0 P 145 213 2.0002787748408082e+00 -5.8679017256751886e-01 2.9018673746496847e+03 2.9018682199732561e+03 7.4873000265872536e-01 2 0 0 -62 0 P 146 2114 1.8715055056256986e+00 2.9637843995495999e-01 2.4759079071307224e+03 2.4759089340980022e+03 1.2226940887789912e+00 2 0 0 -63 0 P 147 111 5.4174330970691731e-01 -1.9057061994401121e-02 5.5135367164651029e+01 5.5138197113856592e+01 1.3497999999999999e-01 2 0 0 -64 0 P 148 221 -4.1422394606428697e-01 1.8141232033584836e-01 7.3026091029986503e+01 7.3029543094078278e+01 5.4744999999999999e-01 2 0 0 -65 0 P 149 211 -6.9369829160111397e-03 1.4794544910975338e-02 2.0303875090455287e+02 2.0303879953266633e+02 1.3957000000000000e-01 1 0 0 0 0 P 150 111 -1.5596043118590530e-01 1.6336435322625431e-01 2.1042797230505840e+01 2.1044442174897036e+01 1.3497999999999999e-01 2 0 0 -66 0 P 151 111 -2.9904279370279901e-01 6.0220102703391197e-02 2.6344818652007753e+01 2.6346930418187444e+01 1.3497999999999999e-01 2 0 0 -67 0 P 152 113 -5.0383062453786609e-01 2.5372708222058943e-01 5.0636508823261233e+00 5.1513975465929045e+00 7.6033788179129458e-01 2 0 0 -68 0 P 153 -213 -6.4969171575958895e-01 1.2353299702522378e+00 1.0764807571807188e+01 1.0880724423806443e+01 7.4896092544979254e-01 2 0 0 -69 0 P 154 211 -5.4776352233055070e-01 4.1277910143122581e-01 2.9354742179748743e+00 3.0177674085770003e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 -213 -2.3324408833941055e+00 1.2957779343609743e+00 1.2797129266765824e+01 1.3096829845184692e+01 8.0069569356968862e-01 2 0 0 -70 0 P 156 221 -1.4913645181179269e+00 -6.0880077561188718e-02 1.3060247904623862e+01 1.3156658061319256e+01 5.4744999999999999e-01 2 0 0 -71 0 P 157 331 -1.4988020549166539e+00 1.2186807142597285e+00 1.2039712981088398e+01 1.2231218874895221e+01 9.5730675098092310e-01 2 0 0 -72 0 P 158 211 -5.2733741619693186e-01 9.7797585376841689e-01 7.5702992164036038e+00 7.6526747959034784e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 331 -2.2279429894693474e+00 1.2513707678715578e+00 1.9925718222038931e+01 2.0111717736239285e+01 9.5774990214483235e-01 2 0 0 -73 0 P 160 223 -1.1389625120239610e+00 1.3445451940967790e-01 5.6585909239526408e+00 5.8305152401234492e+00 8.1236881961765872e-01 2 0 0 -74 0 P 161 -323 -5.5165862443172387e+00 1.8637863510263788e+00 6.7613702833734365e+01 6.7869169411492237e+01 8.3959654836807585e-01 2 0 0 -75 0 P 162 321 -5.5266713986256322e-01 5.3602528339754263e-01 1.2685707791462987e+01 1.2718631498801669e+01 4.9359999999999998e-01 1 0 0 0 0 P 163 -213 -1.0275728498293366e+00 7.5106019485941977e-01 1.6085374378624049e+01 1.6152073428544540e+01 7.2815504021525290e-01 2 0 0 -76 0 P 164 211 -2.7105832209140346e-01 1.2947276746653729e-02 3.5704365394158160e+00 3.5834532385459905e+00 1.3957000000000000e-01 1 0 0 0 0 P 165 -213 -1.4004706071492259e+00 2.3678039880302573e-01 2.0815984393565980e+01 2.0880851324824334e+01 8.2907351754193737e-01 2 0 0 -77 0 P 166 -313 -1.2856640710498652e+00 6.2296845958851899e-01 3.7760088021876243e+01 3.7801090033511969e+01 1.0281724060708886e+00 2 0 0 -78 0 P 167 313 -2.5847713909112471e-02 4.9375617393910706e-02 2.0221085069737544e+01 2.0235018407356407e+01 7.4872057042831230e-01 2 0 0 -79 0 P 168 211 -1.6646775262075990e+00 2.2022610725322713e-02 1.7668848188881206e+01 1.7747656531730449e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 113 6.7058435577001019e-01 3.2076850521811931e-02 1.7104174310653093e+01 1.7132072652983528e+01 7.1022689005554207e-01 2 0 0 -80 0 P 170 113 1.9017488575260602e-02 -3.4551514576826475e-01 3.6948152627381852e+01 3.6959506117998615e+01 8.4815536857665086e-01 2 0 0 -81 0 P 171 -321 1.5715641377080449e+00 -1.5631429488383797e+00 4.3318057945191825e+01 4.3377540442266088e+01 4.9359999999999998e-01 1 0 0 0 0 P 172 311 2.3688706776686180e-01 -9.5264174849376182e-01 1.9055134603545671e+01 1.9086892674607672e+01 4.9767000000000000e-01 2 0 0 -82 0 P 173 -313 3.4708142186025204e+00 -1.6310150412291191e+00 5.3848046024499382e+01 5.3991455763660127e+01 8.7090379370915927e-01 2 0 0 -83 0 P 174 323 3.4036074926192423e+00 -2.7610208831974141e+00 5.8068284299106175e+01 5.8239335902592423e+01 8.2874884730154430e-01 2 0 0 -84 0 P 175 -211 1.4999347778141823e+00 -7.4595650944086489e-01 2.0282059936145465e+01 2.0351601668909765e+01 1.3957000000000000e-01 1 0 0 0 0 P 176 211 2.1686740064733170e-01 7.4316689455386525e-02 2.4727956031929712e+00 2.4873182988643876e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 -213 2.8167681151312518e+00 -1.1951587964266011e+00 3.9379027645357667e+01 3.9505499358073138e+01 7.8362878570013461e-01 2 0 0 -85 0 P 178 223 2.9462596517036390e+00 -1.8040185431942592e+00 3.6976331249819303e+01 3.7144450868457540e+01 7.2541628286542226e-01 2 0 0 -86 0 P 179 -2112 -9.9086963863773825e-01 -1.0011264779118028e+00 7.2644612473003622e+00 7.4591732694702104e+00 9.3957000000000002e-01 1 0 0 0 0 P 180 2112 -3.9372296111589605e-01 -4.8125258226974110e-01 4.4531195585642376e+00 4.5934396051127653e+00 9.3957000000000002e-01 1 0 0 0 0 P 181 -313 -3.7494366693717907e-01 -8.1051082752480363e-01 8.9852551125811360e+00 9.0822113223936505e+00 9.7685337258911709e-01 2 0 0 -87 0 P 182 313 -2.8712031218191830e-01 -4.8917890720781670e-01 2.0287390958286582e+00 2.2506508675342611e+00 7.9240957317826788e-01 2 0 0 -88 0 P 183 113 2.2122890405235579e-01 -6.1312235257136372e-01 2.7787267701964913e+00 2.9677125107554061e+00 8.1310136875833761e-01 2 0 0 -89 0 P 184 213 8.8723635455675043e-01 -5.3234081665667121e-01 1.1421928037839089e+00 1.7582765299624235e+00 8.4637867463394356e-01 2 0 0 -90 0 P 185 -2224 1.9873892683150969e+00 -1.6020195184429301e-01 4.0320825677673833e+00 4.6698146163279999e+00 1.2546306023640053e+00 2 0 0 -91 0 P 186 331 4.1307984450263840e-01 1.1809636073826917e+00 1.0440985526885413e+00 1.8901567444492808e+00 9.5772685613599318e-01 2 0 0 -92 0 P 187 2224 1.6836255118514361e+00 3.9977751750511181e-01 1.5417369175280440e+00 2.6798453204312076e+00 1.3454372118046261e+00 2 0 0 -93 0 P 188 -211 3.2188993736560761e-01 1.2860811848095897e-02 9.5083923814425286e-01 1.0135845174199190e+00 1.3957000000000000e-01 1 0 0 0 0 P 189 -2214 -2.2662225820254247e+00 1.7354465946939548e+00 2.4876803003756263e+00 3.9835008697127696e+00 1.2378151024319426e+00 2 0 0 -94 0 P 190 213 -5.1442702582674839e-02 4.8254494368512946e-01 3.6758688134685719e-01 1.0641546563204638e+00 8.7281672927661147e-01 2 0 0 -95 0 P 191 2112 -5.4723475066039418e-01 6.2706026135111481e-01 9.5377936514696871e-01 1.5764381706797850e+00 9.3957000000000002e-01 1 0 0 0 0 P 192 223 -1.2654271044354115e+00 -4.0617495134780982e-02 9.1972834818688898e-01 1.7645430025829956e+00 8.1532584649035644e-01 2 0 0 -96 0 P 193 213 -1.2377483114494388e+00 1.4431154713684194e-01 7.5991572817621325e-02 1.4963197093746177e+00 8.2483407324787394e-01 2 0 0 -97 0 P 194 111 -1.7398886189802376e+00 6.9521563323625413e-01 1.4972160284226301e+00 2.4021683161924101e+00 1.3497999999999999e-01 2 0 0 -98 0 P 195 -211 4.3357224371951858e-02 4.2844179032750113e-01 1.5070155074576715e-02 4.5293389261375216e-01 1.3957000000000000e-01 1 0 0 0 0 P 196 111 -4.4206447136998467e-01 -2.0646966450767029e-01 -1.6324829413348796e-01 5.3190255230354710e-01 1.3497999999999999e-01 2 0 0 -99 0 P 197 211 -7.4422658738606007e-01 5.1174012155792936e-01 -7.6645464186602440e-03 9.1394184473424189e-01 1.3957000000000000e-01 1 0 0 0 0 P 198 331 -2.0194835885157469e+00 -5.8766382810384665e-01 3.1902346550528948e-01 2.3331824042063412e+00 9.5828044987309091e-01 2 0 0 -100 0 P 199 111 8.1601938764897897e-01 -1.5473172328521740e+00 -8.7614185469593275e-01 1.9611023456337904e+00 1.3497999999999999e-01 2 0 0 -101 0 P 200 -321 -3.8632541542384369e-01 -2.3091894194192208e-01 -3.5660294718167523e-01 7.5721694796711914e-01 4.9359999999999998e-01 1 0 0 0 0 P 201 323 5.5260016006966128e-01 -6.8414503564199758e-01 -9.0212303178624637e-02 1.2469850025822191e+00 8.7943844032290264e-01 2 0 0 -102 0 P 202 113 3.6988174339854851e-01 -1.9808323098563057e+00 -8.0548793896876003e-01 2.3046725004731616e+00 7.7601248104837739e-01 2 0 0 -103 0 P 203 -211 2.9314835538113559e-01 -5.4231645571292353e-01 -3.9867782437026961e-01 7.4730642238930578e-01 1.3957000000000000e-01 1 0 0 0 0 P 204 113 1.2711950446813411e+00 -9.5093181713297159e-01 -2.1284994697203041e+00 2.7870747558901772e+00 8.4679840568016029e-01 2 0 0 -104 0 P 205 223 1.5943242320445865e+00 -1.2996372675586979e-01 -5.8715264832297080e+00 6.1357267915522060e+00 7.8330051075360807e-01 2 0 0 -105 0 P 206 221 6.4509350102801566e-01 1.0202506476320475e-01 -2.6420655579272165e+00 2.7761063837313174e+00 5.4744999999999999e-01 2 0 0 -106 0 P 207 211 1.8152567499116963e+00 -7.7586084706205272e-01 -3.9840037097858096e+00 4.4484696769328345e+00 1.3957000000000000e-01 1 0 0 0 0 P 208 -213 2.2472036910313280e+00 4.6627203991689549e-02 -2.0657381200083663e+01 2.0799986668413389e+01 9.2733426307235589e-01 2 0 0 -107 0 P 209 223 7.1185940768203326e-01 4.5317186841471645e-02 -1.2914576081696950e+01 1.2957680134466932e+01 7.7871794219176604e-01 2 0 0 -108 0 P 210 111 1.8975018534683610e+00 -4.5081486803264836e-01 -2.5981109622719021e+01 2.6054558606073105e+01 1.3497999999999999e-01 2 0 0 -109 0 P 211 -1114 1.2909902283868651e+00 -1.1281697799196165e-01 -2.5404628660300986e+01 2.5469438682283638e+01 1.2719142984125458e+00 2 0 0 -110 0 P 212 223 2.7265970668944597e+00 -1.2114976363065431e-01 -3.8728492470067998e+01 3.8832429972951743e+01 7.8261086732940355e-01 2 0 0 -111 0 P 213 1114 1.8449700861298099e+00 8.3407557271223132e-01 -1.6820933858900264e+02 1.6822671105649866e+02 1.3210327994593818e+00 2 0 0 -112 0 P 214 -311 8.9632138247887172e-01 9.2473953595172986e-01 -7.3178564840704595e+01 7.3191588060405877e+01 4.9767000000000000e-01 2 0 0 -113 0 P 215 311 6.3147890075035662e-01 8.7850515829357523e-01 -2.1233741296790532e+02 2.1234075246698856e+02 4.9767000000000000e-01 2 0 0 -114 0 P 216 211 6.9117758804316065e-01 -9.9558058408783737e-03 -8.0607061968941082e+01 8.0610146660491139e+01 1.3957000000000000e-01 1 0 0 0 0 P 217 -213 1.4435114211456426e+00 1.0191490300758344e-01 -3.5088190944179979e+02 3.5088572233587593e+02 7.6266229458469392e-01 2 0 0 -115 0 P 218 111 1.3352946528856735e-01 -1.5689862153555431e-01 -2.1676522577885714e+02 2.1676536571568542e+02 1.3497999999999999e-01 2 0 0 -116 0 P 219 213 9.5362749108487788e-01 6.7481171243397209e-01 -2.8479160288996616e+02 2.8479541767979367e+02 8.9893188449321737e-01 2 0 0 -117 0 P 220 -323 8.3029525943865135e-01 7.1683887954964221e-02 -6.2591210390362835e+02 6.2591339432127984e+02 9.5960873374132627e-01 2 0 0 -118 0 P 221 221 -2.6791830446620485e-01 3.8071684887603513e-01 -1.4519745068205435e+02 1.4519922903241255e+02 5.4744999999999999e-01 2 0 0 -119 0 P 222 311 -5.0525249777715087e-01 8.8449350514178504e-01 -2.1868448936277917e+02 2.1868742801573100e+02 4.9767000000000000e-01 2 0 0 -120 0 P 223 -2112 -4.5854662066673990e-01 1.0163039568037995e+00 -3.2151031114225282e+02 3.2151361728752494e+02 9.3957000000000002e-01 1 0 0 0 0 P 224 211 4.2477670787586624e-01 1.3890334340066111e+00 -3.2398862984873483e+02 3.2399191594880534e+02 1.3957000000000000e-01 1 0 0 0 0 P 225 2112 -8.9663079925249112e-01 7.5490887675410479e-01 -1.7534989444922454e+02 1.7535632896859315e+02 9.3957000000000002e-01 1 0 0 0 0 P 226 -321 -1.5447598443341193e+00 1.1305043420384582e-01 -3.5744970627767731e+02 3.5745340286859084e+02 4.9359999999999998e-01 1 0 0 0 0 P 227 313 -1.6523036976028129e+00 -8.5987054337979518e-01 -1.6846501716452806e+02 1.6847776673487351e+02 9.0906042991297942e-01 2 0 0 -121 0 P 228 221 -5.0312232818028702e-01 -4.0477840143946275e-01 -1.2692059405904192e+02 1.2692341736430670e+02 5.4744999999999999e-01 2 0 0 -122 0 P 229 113 -1.1933967749724779e+00 8.7309189508076812e-02 -1.1269110479477359e+02 1.1270048089193568e+02 8.2551477868632217e-01 2 0 0 -123 0 P 230 211 1.4166453260576034e-01 1.4021467590820971e-01 -2.0387230678811513e+01 2.0388682731631089e+01 1.3957000000000000e-01 1 0 0 0 0 P 231 -2212 -1.1651497818356944e+00 1.5489152678691914e-01 -8.4564608857014093e+01 8.4577981692233990e+01 9.3827000000000005e-01 1 0 0 0 0 P 232 2212 -3.4783183065418349e-01 -1.0347922343551528e+00 -1.5686082463503718e+02 1.5686742949933068e+02 9.3827000000000005e-01 1 0 0 0 0 P 233 -213 -4.6278940605791810e-02 3.0228149654776759e-01 -1.6194627706056945e+00 1.8109406345354593e+00 7.5055344442289174e-01 2 0 0 -124 0 P 234 213 -1.4062351107511809e-01 -4.4262195224128770e-01 -1.1787336198756243e+01 1.1845791073350059e+01 1.0797140021680205e+00 2 0 0 -125 0 P 235 111 -4.4001896113575377e-02 -2.4172597766147110e-04 -1.5717129661762588e-01 2.1179858869573209e-01 1.3497999999999999e-01 2 0 0 -126 0 P 236 -323 7.4881215178231952e-01 9.4607719654117650e-01 -9.4305304021710104e+00 9.5500380220215000e+00 9.0141048103098842e-01 2 0 0 -127 0 P 237 321 -6.1358944520606440e-01 -5.3911654906213469e-01 -1.1072361588049809e+01 1.1113414000983759e+01 4.9359999999999998e-01 1 0 0 0 0 P 238 111 2.6436727698210472e-01 1.4683362300417052e-01 -1.5196372568617726e+00 1.5553029167418921e+00 1.3497999999999999e-01 2 0 0 -128 0 P 239 111 7.0854180226840291e-01 -6.1788561525284735e-01 -2.7007182274630910e+01 2.7023877000434933e+01 1.3497999999999999e-01 2 0 0 -129 0 V -21 0 0 0 0 0 4 1 0 P 77 21 -1.7188221268342951e+00 -1.0901742645431050e+00 4.4436386761824764e+01 4.4482977619278614e+01 0 2 0 0 -21 0 P 78 21 1.7188221268342951e+00 1.0901742645431050e+00 -4.2833918366114574e+00 4.7423912804319448e+00 0 2 0 0 -21 0 P 79 21 7.3934241155076008e-01 1.2468630319543468e+00 -1.9320100825671451e+00 2.4153586858090428e+00 0 2 0 0 -21 0 P 80 21 -4.7745099277222716e-02 3.5088499864779638e-01 5.6606157963320282e-02 3.5861418530284644e-01 0 2 0 0 -21 0 P 240 92 6.9159731227353738e-01 1.5977480306021432e+00 3.8277591000609483e+01 5.1999341770822454e+01 3.5152901248363897e+01 2 0 0 -22 0 V -22 0 0 0 0 0 0 13 0 P 241 223 -3.2092236833893212e-01 -1.0045412383132220e+00 1.7877698155432469e+00 2.2192494923633550e+00 7.8539998091121888e-01 2 0 0 -130 0 P 242 213 1.4485699108657411e+00 2.1290284432768987e+00 -2.8273301500702721e+00 3.8949890929097286e+00 7.3893663966657330e-01 2 0 0 -131 0 P 243 -213 4.6331795240842760e-01 5.2810099154374135e-01 -1.0813388843151270e+00 1.4587406988263711e+00 6.8196514675395636e-01 2 0 0 -132 0 P 244 211 1.5743185911174218e-01 1.6616081412741006e-02 -5.1176491394820423e-01 5.5357384012731958e-01 1.3957000000000000e-01 1 0 0 0 0 P 245 -213 -3.5319076226872442e-01 7.3063336836095158e-02 -2.5254549542961788e-02 8.8135925009525828e-01 8.0378751527643844e-01 2 0 0 -133 0 P 246 -2112 7.5348939422889705e-01 -1.1034781274956161e-02 3.2281054122295999e-01 1.2469428471417112e+00 9.3957000000000002e-01 1 0 0 0 0 P 247 331 -1.8478372627252837e-01 3.0175279491175894e-01 1.4293198900485544e+00 1.7565083988156827e+00 9.5768817069513978e-01 2 0 0 -134 0 P 248 2112 -2.2929380515840647e-01 4.8605278542137953e-01 2.3260625401999100e+00 2.5655762871372896e+00 9.3957000000000002e-01 1 0 0 0 0 P 249 221 6.2329984635421345e-02 -5.2069828897211123e-01 5.9776105013829000e+00 6.0254908965051355e+00 5.4744999999999999e-01 2 0 0 -135 0 P 250 221 -1.1618592479050267e+00 -7.1277969439674416e-01 2.3520762886379547e+01 2.3566585668366901e+01 5.4744999999999999e-01 2 0 0 -136 0 P 251 213 -1.0795713799541733e-01 -1.4800895779178916e-01 4.6593798517341254e+00 4.7276705234450915e+00 7.7941425460077973e-01 2 0 0 -137 0 P 252 -213 8.6236253317110781e-03 3.7828794741849325e-01 9.8750454737972515e-01 1.2965974949789039e+00 7.5021576550614699e-01 2 0 0 -138 0 P 253 221 1.5584163363063241e-01 8.1908610529857595e-02 1.7120589245950779e+00 1.8060572801097010e+00 5.4744999999999999e-01 2 0 0 -139 0 V -23 0 0 0 0 0 0 2 0 P 254 -211 3.5348510933937378e-02 -2.3277571640197320e-01 6.8085271026288563e-01 7.3380804666071597e-01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 7.1606479572159065e-01 -1.2879279359528775e+00 8.6472442505959819e+00 8.7729447672799648e+00 1.3497999999999999e-01 2 0 0 -140 0 V -24 0 0 0 0 0 0 3 0 P 256 211 -1.9932590352769886e-01 -2.3831737165865211e-01 9.0659871040983919e+00 9.0723827047821217e+00 1.3957000000000000e-01 1 0 0 0 0 P 257 -211 8.0549427998306930e-02 -5.7760529399384385e-02 1.2071474584563333e+01 1.2072688305417557e+01 1.3957000000000000e-01 1 0 0 0 0 P 258 111 -8.4792689017289910e-02 1.2882852446017548e-01 3.3560872114598719e+00 3.3623395961963549e+00 1.3497999999999999e-01 2 0 0 -141 0 V -25 0 0 0 0 0 0 2 0 P 259 2212 4.3920593595661972e-01 -4.4794652132706186e-01 3.0771793532978933e+01 3.0792485865375220e+01 9.3827000000000005e-01 1 0 0 0 0 P 260 211 -1.4021675167801981e-01 -4.4281997517695224e-02 4.5123780820049273e+00 4.5169300827679146e+00 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 261 -311 2.2436766046782664e+00 -1.3890476388500714e+00 1.2342775418634655e+02 1.2345696301530936e+02 4.9767000000000000e-01 2 0 0 -142 0 P 262 -211 1.1501051600261847e+00 -9.2163019690683357e-01 4.7470572839746815e+01 4.7493651255905533e+01 1.3957000000000000e-01 1 0 0 0 0 V -27 0 0 0 0 0 0 1 0 P 263 310 2.9960159032530407e+00 -2.6672411396051507e+00 1.6368094672582021e+02 1.6373084707250200e+02 4.9767000000000000e-01 2 0 0 -143 0 V -28 0 0 0 0 0 0 2 0 P 264 211 4.0380053575175365e-02 -1.2235913184010093e-01 7.3281462997646471e-02 2.0359828975330974e-01 1.3957000000000000e-01 1 0 0 0 0 P 265 -211 -7.2945989738573502e-01 -4.7767008773168106e-02 -3.1828904076656100e-01 8.0943259595425276e-01 1.3957000000000000e-01 1 0 0 0 0 V -29 0 -1.2639059618816530e-05 2.5198117844397515e-06 -6.2992151482955104e-06 1.4965499512752904e-05 0 2 0 P 266 22 -1.5053370605460237e-01 2.4830295002580251e-02 -4.9934514496459441e-03 1.5264951610086605e-01 0 1 0 0 0 0 P 267 22 -2.4946489212401568e-01 5.4916237718043180e-02 -1.9436293303900101e-01 3.2097581732441249e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 268 130 -6.8001033460887184e-01 -5.4503445010209162e-01 -4.4982459691005522e-01 1.0997700686317358e+00 4.9767000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 269 -311 -4.7927485229968696e-02 -4.2875449214623879e-01 -1.0317534228754870e+00 1.2240580104273373e+00 4.9767000000000000e-01 2 0 0 -144 0 P 270 -211 -3.5007236120725777e-01 -7.3939256777300122e-01 -1.8432725839342958e+00 2.0214810488706028e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 271 211 -3.4252685005978756e-01 -1.7139286387249184e-01 -3.3042457737561098e-01 5.2474788520978899e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 1.4606109493969968e-01 2.1916277903428127e-01 -7.3006727260820237e-01 7.8777153420429735e-01 1.3497999999999999e-01 2 0 0 -145 0 V -33 0 0 0 0 0 0 2 0 P 273 -211 4.9459042634455212e-02 3.7125890549279665e-02 -1.9618271882037577e+00 1.9677576654463467e+00 1.3957000000000000e-01 1 0 0 0 0 P 274 111 -7.0470688373456658e-01 -1.5036861222299565e+00 -7.5710019002502502e+00 7.7521592553405885e+00 1.3497999999999999e-01 2 0 0 -146 0 V -34 0 0 0 0 0 0 2 0 P 275 22 1.7700247855174048e-01 3.7707865132201085e-01 -1.9959647610338060e+00 2.0389687378635859e+00 0 1 0 0 0 0 P 276 111 -5.0357749212883640e-01 2.7676782106973097e-01 -5.8697395668732186e+00 5.8993434296263390e+00 1.3497999999999999e-01 2 0 0 -147 0 V -35 0 0 0 0 0 0 2 0 P 277 311 -3.3987006131043929e-01 9.0223601573486056e-01 -2.4222488204623286e+01 2.4246776110210579e+01 4.9767000000000000e-01 2 0 0 -148 0 P 278 211 -4.3799537113838011e-01 1.0404035085363005e-01 -9.6816935438537097e+00 9.6931591342422010e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 1 0 P 279 310 -6.1064124317058488e-02 1.7293474688064354e+00 -4.8962508844531762e+01 4.8995605101630254e+01 4.9767000000000000e-01 2 0 0 -149 0 V -37 0 -1.8261181592300154e-05 3.9199711946881567e-06 -4.5342662372180033e-04 4.5383535405382161e-04 0 2 0 P 280 22 -2.4732088893747319e-02 8.2621253267108688e-03 -1.7417885905732882e+00 1.7419837637553468e+00 0 1 0 0 0 0 P 281 22 -5.0092180253825080e-01 1.0457548610463265e-01 -1.1310240273688994e+01 1.1321810532469119e+01 0 1 0 0 0 0 V -38 0 0 0 0 0 0 1 0 P 282 310 -3.0866245946024362e-01 2.9835292222875139e-03 -3.5765928702336272e+00 3.6242203856322925e+00 4.9767000000000000e-01 2 0 0 -150 0 V -39 0 0 0 0 0 0 2 0 P 283 211 6.2270185706578988e-02 -1.6806693242232015e-01 -6.2090927460953127e-01 6.6115972502710330e-01 1.3957000000000000e-01 1 0 0 0 0 P 284 -211 4.7934248339804553e-01 3.1472163590089247e-01 -5.8292835203881781e+00 5.8590822720340370e+00 1.3957000000000000e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 285 22 2.0752829630447289e-01 -1.1232730576980580e-01 -5.2930873988708464e+00 5.2983449896617598e+00 0 1 0 0 0 0 P 286 22 -1.5731831029903073e-01 -3.7765391396320075e-01 -2.7267968360059299e+01 2.7271037200933190e+01 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 287 211 3.1011723175554373e-01 4.3187733720742166e-01 -3.4682842764605880e+01 3.4687198686995458e+01 1.3957000000000000e-01 1 0 0 0 0 P 288 111 -4.2230569358526440e-02 -1.6426729929782988e-01 -3.6827805722925659e+00 3.6891543083290115e+00 1.3497999999999999e-01 2 0 0 -151 0 V -42 0 0 0 0 0 0 2 0 P 289 -211 -2.1215455750410178e-01 1.3004642655726279e-02 -2.2852524147414044e+02 2.2852538294306848e+02 1.3957000000000000e-01 1 0 0 0 0 P 290 111 1.3411550131934299e-01 -1.9812773539440082e-02 -1.9369485666376622e+01 1.9370430405493288e+01 1.3497999999999999e-01 2 0 0 -152 0 V -43 0 6.2359730210030768e-06 2.3369757831023565e-06 -5.0736469327745219e-03 5.0736516924240974e-03 0 2 0 P 291 22 -1.6036346333599017e-03 1.7372315668896840e-02 -2.9014641500998842e+01 2.9014646746091540e+01 0 1 0 0 0 0 P 292 22 4.2519072688534582e-01 1.4136999660435354e-01 -3.1561984362726940e+02 3.1562016168795708e+02 0 1 0 0 0 0 V -44 0 -6.6432336994337604e-05 2.3788699204133136e-04 1.4237992971779818e-03 1.4471704844835527e-03 0 2 0 P 293 22 1.5809146136729058e-02 3.1268680055365719e-02 8.9584562998944781e-02 9.6192792774142818e-02 0 1 0 0 0 0 P 294 22 -1.3067211872843859e-01 3.8004316419146067e-01 2.3721957543454444e+00 2.4059968217344321e+00 0 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 295 211 -1.4977164891910748e+00 1.3137179613726155e+00 8.2713450384864089e+00 8.5090327355476543e+00 1.3957000000000000e-01 1 0 0 0 0 P 296 111 -7.9694755802749144e+00 6.6238207931815776e+00 4.8156171885715672e+01 4.9258731745871970e+01 1.3497999999999999e-01 2 0 0 -153 0 V -46 0 0 0 0 0 0 2 0 P 297 2212 -1.6141091946538912e+00 2.5134869349277222e+00 1.1693991273919421e+01 1.2105897222912565e+01 9.3827000000000005e-01 1 0 0 0 0 P 298 111 -1.2379675279976718e-01 1.6734105951642994e-01 7.0699245719169468e-01 7.4925736641677287e-01 1.3497999999999999e-01 2 0 0 -154 0 V -47 0 0 0 0 0 0 2 0 P 299 -211 -6.2665584900448035e-01 1.0901612906918603e+00 6.6627159686046058e+00 6.7817706431295122e+00 1.3957000000000000e-01 1 0 0 0 0 P 300 111 7.4660282083790150e-02 3.7635279092842266e-01 2.5489314723297420e+00 2.5811793490560686e+00 1.3497999999999999e-01 2 0 0 -155 0 V -48 0 -9.2707235170946754e-05 6.9773265665700767e-05 3.2310042169729529e-04 3.4406235752948341e-04 0 2 0 P 301 22 -4.2954658737536872e-01 2.5052132860479021e-01 1.3072653340492768e+00 1.3986471536519500e+00 0 1 0 0 0 0 P 302 22 -1.1811609196845763e-01 1.6166024007844348e-01 6.0143189241395756e-01 6.3388150755228312e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 3 0 P 303 -211 -8.1257933773456303e-02 5.3793597890331690e-01 7.9875689667438532e-01 9.7645805546613007e-01 1.3957000000000000e-01 1 0 0 0 0 P 304 211 -3.3831475396003297e-01 4.0672713590690562e-01 4.1389875047259161e-01 6.8605815815632187e-01 1.3957000000000000e-01 1 0 0 0 0 P 305 111 -4.4207368595931462e-01 1.2103443005641610e+00 9.9452340707646258e-01 1.6332969348372568e+00 1.3497999999999999e-01 2 0 0 -156 0 V -50 0 0 0 0 0 0 2 0 P 306 311 3.1179451677298797e-01 5.1600798569765427e-01 2.2039042185555990e-01 8.1223606724838515e-01 4.9767000000000000e-01 2 0 0 -157 0 P 307 211 -3.7108727407369466e-02 1.6344845100977731e-01 4.6206543621106833e-01 5.1095665768068321e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 1 0 P 308 130 1.0581773994198028e-01 -1.0868394989773421e-01 1.1910766010436960e-01 5.3373369637614210e-01 4.9767000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 309 -211 -3.0800595386868362e-01 2.3827440210303916e-01 -1.2125717768656137e-01 4.3107475727143751e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 3.0016542071638530e-01 -4.5095294129155672e-01 -3.4493362408968392e-01 6.5624434510401242e-01 1.3497999999999999e-01 2 0 0 -158 0 V -53 0 0 0 0 0 0 2 0 P 311 211 -5.8388298074638191e-03 -4.4768594288501540e-01 -5.9681709022356044e-01 7.5903044700017352e-01 1.3957000000000000e-01 1 0 0 0 0 P 312 111 2.8858706169435283e-01 -9.1087194288252049e-01 -3.5179885355486784e-01 1.0271086711105486e+00 1.3497999999999999e-01 2 0 0 -159 0 V -54 0 9.5231821962555986e-05 -1.3378538858334327e-04 -1.1529070066706899e-04 2.0224518746126096e-04 0 2 0 P 313 22 2.0474700320962286e-02 -8.9237096269534119e-02 -9.0437146895513146e-02 1.2869090971180505e-01 0 1 0 0 0 0 P 314 22 4.8624024943604172e-01 -6.2261588582383254e-01 -5.2300823713728950e-01 9.4742690354732673e-01 0 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 315 211 6.3824771340476860e-01 -1.0078957111746509e+00 -9.1951191544522937e-01 1.5126783715702508e+00 1.3957000000000000e-01 1 0 0 0 0 P 316 111 3.7223152740955205e+00 -6.8536061134002795e+00 -8.0457696138518582e+00 1.1206256111520224e+01 1.3497999999999999e-01 2 0 0 -160 0 V -56 0 0 0 0 0 0 2 0 P 317 321 -4.7203048411626231e-01 5.2208491224686970e-01 -1.7474823465456448e+00 1.9474909357990675e+00 4.9359999999999998e-01 1 0 0 0 0 P 318 -211 -4.3238532841755918e-02 2.9563558889387798e-01 -1.7158285548668446e+00 1.7472313489459208e+00 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 1 0 P 319 130 8.0612493758114676e-02 8.2045835450457927e-01 -7.8006177379365882e-01 1.2392828916193321e+00 4.9767000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 320 211 6.1512444381432045e-02 4.2593950708951595e-01 -3.9122926060183838e-01 5.9812069330905093e-01 1.3957000000000000e-01 1 0 0 0 0 P 321 111 -3.0996080258465669e-01 3.6302988231631045e-01 -1.2451252619974884e+00 1.3403070219385680e+00 1.3497999999999999e-01 2 0 0 -161 0 V -59 0 0 0 0 0 0 2 0 P 322 -2212 -5.8668435331277280e-01 -2.4862664212363683e-01 -6.5406070048653744e+00 6.6382154471356012e+00 9.3827000000000005e-01 1 0 0 0 0 P 323 -211 -3.1073334704997284e-02 1.4271559229377956e-01 -2.9743268938932150e+00 2.9811798920980790e+00 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 324 211 -3.6202636028122892e-01 -5.5890413545604101e-01 -1.1734476571050530e+01 1.1754184663327447e+01 1.3957000000000000e-01 1 0 0 0 0 P 325 111 -2.6404059573957128e-01 -6.6624622319040150e-01 -4.9105653778524463e+00 4.9644207513744361e+00 1.3497999999999999e-01 2 0 0 -162 0 V -61 0 0 0 0 0 0 3 0 P 326 211 3.5498496681121372e-01 -7.8622216697735503e-01 -1.0799005694293024e+01 1.0834304933533193e+01 1.3957000000000000e-01 1 0 0 0 0 P 327 -211 -8.0441898903308176e-02 -5.2980677113121344e-01 -7.0726064105118356e+00 7.0942517108394716e+00 1.3957000000000000e-01 1 0 0 0 0 P 328 111 5.1796112606165667e-01 -1.5363275893493782e+00 -1.7838052153815610e+01 1.7912088388363678e+01 1.3497999999999999e-01 2 0 0 -163 0 V -62 0 0 0 0 0 0 2 0 P 329 211 1.5825073647495336e+00 -7.3425376169379941e-01 2.3394999127947958e+03 2.3395005674085201e+03 1.3957000000000000e-01 1 0 0 0 0 P 330 111 4.1777141009127466e-01 1.4746358912628052e-01 5.6236746185488880e+02 5.6236765256473586e+02 1.3497999999999999e-01 2 0 0 -164 0 V -63 0 0 0 0 0 0 2 0 P 331 2212 1.1937902656336590e+00 4.6300318710246625e-02 1.6509234030827697e+03 1.6509241019731658e+03 9.3827000000000005e-01 1 0 0 0 0 P 332 -211 6.7771523999203964e-01 2.5007812124471335e-01 8.2498450404795267e+02 8.2498483212483643e+02 1.3957000000000000e-01 1 0 0 0 0 V -64 0 5.6833333164074648e-06 -1.9992426930794349e-07 5.7841539250155750e-04 5.7844508099851814e-04 0 2 0 P 333 22 4.6020837963056249e-01 2.4323919040035044e-02 4.8455976514997317e+01 4.8458167974322883e+01 0 1 0 0 0 0 P 334 22 8.1534930076354817e-02 -4.3380981034436168e-02 6.6793906496537074e+00 6.6800291395337084e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 335 22 -4.5205376969188255e-01 3.2603871774459692e-01 6.0230848988235373e+01 6.0233427793043411e+01 0 1 0 0 0 0 P 336 22 3.7829823627595592e-02 -1.4462639740874855e-01 1.2795242041751129e+01 1.2796115301034868e+01 0 1 0 0 0 0 V -66 0 -4.2497816755431396e-06 4.4515319013854797e-06 5.7339732515727688e-04 5.7344214841454689e-04 0 2 0 P 337 22 -1.6041430447131239e-01 1.3565201845739516e-01 1.3878193599264968e+01 1.3879783564518206e+01 0 1 0 0 0 0 P 338 22 4.4538732854070761e-03 2.7712334768859145e-02 7.1646036312408743e+00 7.1646586103788303e+00 0 1 0 0 0 0 V -67 0 -7.8498079014524435e-05 1.5807645192653016e-05 6.9154572513253822e-03 6.9160115853268171e-03 0 2 0 P 339 22 -1.1529921003262759e-01 8.9777578696726396e-02 1.2771256517595981e+01 1.2772092505134333e+01 0 1 0 0 0 0 P 340 22 -1.8374358367017141e-01 -2.9557475993335205e-02 1.3573562134411773e+01 1.3574837913053111e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 341 211 -1.4812796793004818e-01 4.5972108088189184e-01 2.3430169138917014e+00 2.3963500184181972e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 -211 -3.5570265660781791e-01 -2.0599399866130239e-01 2.7206339684344218e+00 2.7550475281747069e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 343 -211 -5.8022257629904161e-01 1.2408678284685133e+00 1.0302373898518050e+01 1.0393978975134656e+01 1.3957000000000000e-01 1 0 0 0 0 P 344 111 -6.9469139460547238e-02 -5.5378582162755935e-03 4.6243367328913737e-01 4.8674544867178487e-01 1.3497999999999999e-01 2 0 0 -165 0 V -70 0 0 0 0 0 0 2 0 P 345 -211 -4.6653288707214585e-01 6.3801809906798379e-01 3.6405087774581419e+00 3.7279356181549019e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 111 -1.8659079963219596e+00 6.5775983529299042e-01 9.1566204893076808e+00 9.3688942270297897e+00 1.3497999999999999e-01 2 0 0 -166 0 V -71 0 0 0 0 0 0 2 0 P 347 22 -3.0930586475917905e-02 8.9255909468980571e-02 1.5950109279730764e+00 1.5978057387894229e+00 0 1 0 0 0 0 P 348 22 -1.4604339316420090e+00 -1.5013598703016928e-01 1.1465236976650786e+01 1.1558852322529832e+01 0 1 0 0 0 0 V -72 0 0 0 0 0 0 3 0 P 349 -211 -2.4747035238184192e-01 2.6637684919939980e-01 2.2894495977822271e+00 2.3223387881148163e+00 1.3957000000000000e-01 1 0 0 0 0 P 350 211 -2.3475500245063582e-01 1.0430577023561036e-01 2.6102818727044474e+00 2.6266025288858379e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 221 -1.0165767000841761e+00 8.4799809482471833e-01 7.1399815106017233e+00 7.2822775578945667e+00 5.4744999999999999e-01 2 0 0 -167 0 V -73 0 0 0 0 0 0 2 0 P 352 22 1.7805365297705308e-02 -2.3210737110362572e-02 2.2609782792305472e-01 2.2798244919755198e-01 0 1 0 0 0 0 P 353 223 -2.2457483547670525e+00 1.2745815049819202e+00 1.9699620394115875e+01 1.9883735287041731e+01 7.8736370700045888e-01 2 0 0 -168 0 V -74 0 0 0 0 0 0 2 0 P 354 22 -9.6117914431809370e-01 -6.9836160997811564e-02 2.9124299575398966e+00 3.0677338043628910e+00 0 1 0 0 0 0 P 355 111 -1.7778336770586728e-01 2.0429068040748943e-01 2.7461609664127438e+00 2.7627814357605578e+00 1.3497999999999999e-01 2 0 0 -169 0 V -75 0 0 0 0 0 0 2 0 P 356 -311 -3.3497496628423393e+00 1.1233972293626098e+00 4.3902189077500438e+01 4.4046937752403977e+01 4.9767000000000000e-01 2 0 0 -170 0 P 357 -211 -2.1668365814748993e+00 7.4038912166376880e-01 2.3711513756233920e+01 2.3822231659088246e+01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 358 -211 -2.0724057364024026e-01 5.1199852825351155e-01 4.8244324354964743e+00 4.8579542255837422e+00 1.3957000000000000e-01 1 0 0 0 0 P 359 111 -8.2033227618909632e-01 2.3906166660590825e-01 1.1260941943127575e+01 1.1294119202960797e+01 1.3497999999999999e-01 2 0 0 -171 0 V -77 0 0 0 0 0 0 2 0 P 360 -211 -5.5923658471733709e-02 2.2194760649999579e-01 5.0253898374010673e+00 5.0325352456154606e+00 1.3957000000000000e-01 1 0 0 0 0 P 361 111 -1.3445469486774921e+00 1.4832792303029946e-02 1.5790594556164912e+01 1.5848316079208869e+01 1.3497999999999999e-01 2 0 0 -172 0 V -78 0 0 0 0 0 0 2 0 P 362 -311 -1.2633746262998928e+00 4.6473422614763554e-01 3.6003128782410904e+01 3.6031722841117322e+01 4.9767000000000000e-01 2 0 0 -173 0 P 363 111 -2.2289444749972319e-02 1.5823423344088344e-01 1.7569592394653348e+00 1.7693671923946408e+00 1.3497999999999999e-01 2 0 0 -174 0 V -79 0 0 0 0 0 0 2 0 P 364 321 3.0505772761096474e-02 1.2903529455461582e-01 1.8061209847802530e+01 1.8068439966853024e+01 4.9359999999999998e-01 1 0 0 0 0 P 365 -211 -5.6353486670208945e-02 -7.9659677160705100e-02 2.1598752219350161e+00 2.1665784405033834e+00 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 366 -211 6.4966448711977764e-01 2.5213182853812327e-01 1.3244575200195312e+01 1.3263630212853315e+01 1.3957000000000000e-01 1 0 0 0 0 P 367 211 2.0919868650232588e-02 -2.2005497801631135e-01 3.8595991104577818e+00 3.8684424401302140e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 368 -211 -3.4691374583379891e-01 1.9050412171906377e-02 1.7428152746488720e+01 1.7432174276466338e+01 1.3957000000000000e-01 1 0 0 0 0 P 369 211 3.6593123440905950e-01 -3.6456555794017115e-01 1.9519999880893131e+01 1.9527331841532273e+01 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 1 0 P 370 310 2.3688706776686180e-01 -9.5264174849376182e-01 1.9055134603545671e+01 1.9086892674607675e+01 4.9767000000000000e-01 2 0 0 -175 0 V -83 0 0 0 0 0 0 2 0 P 371 -321 2.5547558912570572e+00 -1.2478910486631545e+00 3.6131881259566924e+01 3.6246937719601775e+01 4.9359999999999998e-01 1 0 0 0 0 P 372 211 9.1605832734546311e-01 -3.8312399256596474e-01 1.7716164764932454e+01 1.7744518044058363e+01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 373 321 2.5042227347147392e+00 -2.1075141967007460e+00 4.0237332224273118e+01 4.0373249721577842e+01 4.9359999999999998e-01 1 0 0 0 0 P 374 111 8.9938475790450312e-01 -6.5350668649666777e-01 1.7830952074833053e+01 1.7866086181014577e+01 1.3497999999999999e-01 2 0 0 -176 0 V -85 0 0 0 0 0 0 2 0 P 375 -211 2.4996368605877679e+00 -8.3634391021512322e-01 3.1259410518381376e+01 3.1370653185940441e+01 1.3957000000000000e-01 1 0 0 0 0 P 376 111 3.1713125454348390e-01 -3.5881488621147789e-01 8.1196171269762925e+00 8.1348461721326988e+00 1.3497999999999999e-01 2 0 0 -177 0 V -86 0 0 0 0 0 0 3 0 P 377 -211 1.3074093549953039e+00 -7.8906648035199889e-01 1.6852724044486347e+01 1.6922344182661355e+01 1.3957000000000000e-01 1 0 0 0 0 P 378 211 1.2225571375790161e+00 -5.2866517405600266e-01 1.3470665119143495e+01 1.3537076174636615e+01 1.3957000000000000e-01 1 0 0 0 0 P 379 111 4.1629315912931897e-01 -4.8628688878625781e-01 6.6529420861894595e+00 6.6850305111595594e+00 1.3497999999999999e-01 2 0 0 -178 0 V -87 0 0 0 0 0 0 2 0 P 380 -311 -5.4866891005487584e-01 -4.1132373149167023e-01 6.5606201681630534e+00 6.6151067417507976e+00 4.9767000000000000e-01 2 0 0 -179 0 P 381 111 1.7372524311769680e-01 -3.9918709603313335e-01 2.4246349444180821e+00 2.4671045806428524e+00 1.3497999999999999e-01 2 0 0 -180 0 V -88 0 0 0 0 0 0 2 0 P 382 311 -1.6415080524559009e-02 -1.5545896338213464e-01 1.1677604115988964e+00 1.2789748832413010e+00 4.9767000000000000e-01 2 0 0 -181 0 P 383 111 -2.7070523165735932e-01 -3.3371994382568210e-01 8.6097868422976176e-01 9.7167598429296009e-01 1.3497999999999999e-01 2 0 0 -182 0 V -89 0 0 0 0 0 0 2 0 P 384 211 2.2497469556243496e-01 -2.5894273547475677e-01 3.5074741559133077e-01 5.1006714101435491e-01 1.3957000000000000e-01 1 0 0 0 0 P 385 -211 -3.7457915100791899e-03 -3.5417961709660700e-01 2.4279793546051605e+00 2.4576453697410510e+00 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 386 211 5.7588967913170030e-01 -3.7175139367209326e-01 1.7543741112831673e-01 7.2118381245765795e-01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 3.1134667542505018e-01 -1.6058942298457790e-01 9.6675539265559218e-01 1.0370927175047655e+00 1.3497999999999999e-01 2 0 0 -183 0 V -91 0 0 0 0 0 0 2 0 P 388 -2212 1.2691214383232221e+00 1.7608772597556346e-02 3.0286818251095835e+00 3.4152955193852721e+00 9.3827000000000005e-01 1 0 0 0 0 P 389 -211 7.1826782999187466e-01 -1.7781072444184934e-01 1.0034007426578000e+00 1.2545190969427276e+00 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 390 211 1.4590466030336436e-02 1.9443476144047872e-01 4.0827072193028571e-02 2.4323731802347484e-01 1.3957000000000000e-01 1 0 0 0 0 P 391 -211 1.5838094651985299e-01 9.4062186231148176e-02 1.9967422926288245e-01 3.0542069646773101e-01 1.3957000000000000e-01 1 0 0 0 0 P 392 221 2.4010843195244896e-01 8.9246665971106498e-01 8.0359725123263048e-01 1.3414987299580754e+00 5.4744999999999999e-01 2 0 0 -184 0 V -93 0 0 0 0 0 0 2 0 P 393 2212 8.2396231001508435e-01 8.3785394722303633e-02 7.3514564772286073e-01 1.4514556820516535e+00 9.3827000000000005e-01 1 0 0 0 0 P 394 211 8.5966320183635170e-01 3.1599212278280814e-01 8.0659126980518325e-01 1.2283896383795538e+00 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 395 -2212 -2.1783079347625089e+00 1.7328699874886007e+00 2.2679617089798336e+00 3.7110463158638667e+00 9.3827000000000005e-01 1 0 0 0 0 P 396 111 -8.7914647262915868e-02 2.5766072053541446e-03 2.1971859139579264e-01 2.7245455384890316e-01 1.3497999999999999e-01 2 0 0 -185 0 V -95 0 0 0 0 0 0 2 0 P 397 211 3.1903806935423101e-01 3.4699701495852870e-03 2.5958275783915730e-01 4.3435046156012858e-01 1.3957000000000000e-01 1 0 0 0 0 P 398 111 -3.7048077193690582e-01 4.7907497353554424e-01 1.0800412350769993e-01 6.2980419476033545e-01 1.3497999999999999e-01 2 0 0 -186 0 V -96 0 0 0 0 0 0 2 0 P 399 22 -1.3214329694177631e-02 1.7713657084717072e-01 2.8903640096550648e-01 3.3925510213385768e-01 0 1 0 0 0 0 P 400 111 -1.2522127747412339e+00 -2.1775406598195168e-01 6.3069194722138255e-01 1.4252879004491379e+00 1.3497999999999999e-01 2 0 0 -187 0 V -97 0 0 0 0 0 0 2 0 P 401 211 -1.0066466682383819e+00 2.4499702187251252e-01 -2.3747563472752559e-01 1.0720240283646054e+00 1.3957000000000000e-01 1 0 0 0 0 P 402 111 -2.3110164321105703e-01 -1.0068547473567058e-01 3.1346720754514690e-01 4.2429568101001247e-01 1.3497999999999999e-01 2 0 0 -188 0 V -98 0 -1.6893236195628647e-03 6.7501113410564683e-04 1.4537036295374395e-03 2.3323560085632628e-03 0 2 0 P 403 22 -2.7787487103527847e-01 7.3024155648587594e-02 1.8780994344762278e-01 3.4324851947074886e-01 0 1 0 0 0 0 P 404 22 -1.4620137479449593e+00 6.2219147758766657e-01 1.3094060849750073e+00 2.0589197967216610e+00 0 1 0 0 0 0 V -99 0 -1.0327290235854769e-04 -4.8234415755290905e-05 -3.8137254251624702e-05 1.2426042784680625e-04 0 2 0 P 405 22 -3.1739531600564963e-01 -1.0261696777953581e-01 -5.8208497415106156e-02 3.3861225298254771e-01 0 1 0 0 0 0 P 406 22 -1.2466915536433504e-01 -1.0385269672813446e-01 -1.0503979671838180e-01 1.9329029932099942e-01 0 1 0 0 0 0 V -100 0 0 0 0 0 0 3 0 P 407 -211 -3.8310933941438058e-01 -7.7911387911072952e-02 -2.7934989985570403e-02 4.1605660537749750e-01 1.3957000000000000e-01 1 0 0 0 0 P 408 211 -4.1457968122793581e-01 -2.7525441228236047e-01 1.8194574634611180e-01 5.4792822803849794e-01 1.3957000000000000e-01 1 0 0 0 0 P 409 221 -1.2217945678734305e+00 -2.3449802791041313e-01 1.6501270914474805e-01 1.3691975707903461e+00 5.4744999999999999e-01 2 0 0 -189 0 V -101 0 3.7914704564333301e-04 -7.1892992542632876e-04 -4.0708174438047480e-04 9.1118688085767383e-04 0 2 0 P 410 22 5.3157509170606754e-01 -1.1227082876251948e+00 -5.8704727826356218e-01 1.3739252105341355e+00 0 1 0 0 0 0 P 411 22 2.8444429594291137e-01 -4.2460894522697906e-01 -2.8909457643237058e-01 5.8717713509965475e-01 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 412 311 1.9461256206257310e-01 -5.4618090152120102e-01 1.4217932111548726e-01 7.7722455876788377e-01 4.9767000000000000e-01 2 0 0 -190 0 P 413 211 3.5798759800708818e-01 -1.3796413412079661e-01 -2.3239162429411192e-01 4.6976044381433540e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 414 211 3.3383155528822545e-01 -5.2341151611786552e-01 -4.9847333198337673e-01 8.0830598792138597e-01 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 3.6050188110323088e-02 -1.4574207937384400e+00 -3.0701460698538330e-01 1.4963665125517758e+00 1.3957000000000000e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 416 211 3.1799578966596692e-01 -6.8731936256303561e-01 -6.7826826845845511e-01 1.0261855861865194e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 -211 9.5319925501537417e-01 -2.6361245456993598e-01 -1.4502312012618490e+00 1.7608891697036575e+00 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 3 0 P 418 211 4.8604505351296412e-01 8.2248611871746147e-02 -1.8356242842133519e+00 1.9057809228484344e+00 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 1.0239341830546607e+00 -4.4536545585229528e-02 -3.3588876931308542e+00 3.5145456370754942e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 111 8.4344995476961684e-02 -1.6767579304238642e-01 -6.7701450588550127e-01 7.1540023162827626e-01 1.3497999999999999e-01 2 0 0 -191 0 V -106 0 0 0 0 0 0 2 0 P 421 22 1.8461580270691108e-01 -7.3878504192175466e-03 -1.8055369608942726e+00 1.8149659203682751e+00 0 1 0 0 0 0 P 422 22 4.6047769832110458e-01 1.0941291518242230e-01 -8.3652859703294380e-01 9.6114046336304215e-01 0 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 423 -211 2.9212410564391716e-01 2.4759841262978291e-01 -5.5068966336913618e+00 5.5219590532795788e+00 1.3957000000000000e-01 1 0 0 0 0 P 424 111 1.9550795853874108e+00 -2.0097120863809337e-01 -1.5150484566392301e+01 1.5278027615133812e+01 1.3497999999999999e-01 2 0 0 -192 0 V -108 0 0 0 0 0 0 3 0 P 425 -211 4.4633068683346766e-01 -4.5345827361553105e-02 -3.8448185100150405e+00 3.8734192241381020e+00 1.3957000000000000e-01 1 0 0 0 0 P 426 211 1.1498107860741572e-02 2.8006978446484195e-02 -5.6645066765327732e+00 5.6663067575547341e+00 1.3957000000000000e-01 1 0 0 0 0 P 427 111 2.5403061298782409e-01 6.2656035756540565e-02 -3.4052508951491371e+00 3.4179541527740969e+00 1.3497999999999999e-01 2 0 0 -193 0 V -109 0 8.2807349161121530e-04 -1.9673648337138180e-04 -1.1338206664670019e-02 1.1370259943558858e-02 0 2 0 P 428 22 1.3474836690397105e+00 -3.6250351745296827e-01 -1.7955418112049550e+01 1.8009557479766450e+01 0 1 0 0 0 0 P 429 22 5.5001818442865047e-01 -8.8311350579680065e-02 -8.0256915106694677e+00 8.0450011263066585e+00 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 430 -2112 1.0243744455618073e+00 -5.1447493445146972e-02 -2.3411528421027835e+01 2.3452813149871723e+01 9.3957000000000002e-01 1 0 0 0 0 P 431 211 2.6661578282505782e-01 -6.1369484546814679e-02 -1.9931002392731503e+00 2.0166255324119171e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 3 0 P 432 211 1.9635179111257914e-01 8.4532648713077641e-02 -4.8039754255734612e+00 4.8107545633700006e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 -211 8.6785518202501910e-01 -6.2332008000816640e-02 -1.0062967598438433e+01 1.0101477840806803e+01 1.3957000000000000e-01 1 0 0 0 0 P 434 111 1.6623900937568612e+00 -1.4335040434291532e-01 -2.3861549446056102e+01 2.3920197568774938e+01 1.3497999999999999e-01 2 0 0 -194 0 V -112 0 0 0 0 0 0 2 0 P 435 2112 1.7664315388560075e+00 9.2825007502279278e-01 -1.6039563758168563e+02 1.6041080161760800e+02 9.3957000000000002e-01 1 0 0 0 0 P 436 -211 7.8538547273802300e-02 -9.4174502310561445e-02 -7.8137010073169924e+00 7.8159094388906469e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 1 0 P 437 130 8.9632138247887172e-01 9.2473953595172986e-01 -7.3178564840704595e+01 7.3191588060405877e+01 4.9767000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 1 0 P 438 310 6.3147890075035662e-01 8.7850515829357523e-01 -2.1233741296790532e+02 2.1234075246698856e+02 4.9767000000000000e-01 2 0 0 -195 0 V -115 0 0 0 0 0 0 2 0 P 439 -211 -2.9579858086891380e-02 -3.8415261372099808e-02 -2.6969588277440156e+01 2.6969992998513149e+01 1.3957000000000000e-01 1 0 0 0 0 P 440 111 1.4730912792325339e+00 1.4033016437968326e-01 -3.2391232116435964e+02 3.2391572933736273e+02 1.3497999999999999e-01 2 0 0 -196 0 V -116 0 1.5151739211441901e-05 -1.7803463759882082e-05 -2.4596594946387246e-02 2.4596610825177181e-02 0 2 0 P 441 22 3.1166115867432509e-02 2.2865611020623195e-02 -4.0921990930004512e+01 4.0922009186235201e+01 0 1 0 0 0 0 P 442 22 1.0236334942113484e-01 -1.7976423255617752e-01 -1.7584323484885263e+02 1.7584335652945029e+02 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 443 211 6.9065342471496016e-01 5.5276373273988666e-01 -1.1407673824205284e+02 1.1408025349563370e+02 1.3957000000000000e-01 1 0 0 0 0 P 444 111 2.6297406636991771e-01 1.2204797969408543e-01 -1.7071486464791332e+02 1.7071516418415996e+02 1.3497999999999999e-01 2 0 0 -197 0 V -118 0 0 0 0 0 0 2 0 P 445 -321 9.7880946344093112e-02 1.4076109817833191e-01 -2.4881622789620735e+02 2.4881677656424981e+02 4.9359999999999998e-01 1 0 0 0 0 P 446 111 7.3241431309455829e-01 -6.9077210223367699e-02 -3.7709587600742105e+02 3.7709661775703012e+02 1.3497999999999999e-01 2 0 0 -198 0 V -119 0 0 0 0 0 0 3 0 P 447 111 -9.9996288696458047e-02 1.1555319955302105e-01 -2.9587892201259109e+01 2.9588594699873962e+01 1.3497999999999999e-01 2 0 0 -199 0 P 448 111 -1.7246717116108573e-01 1.5811838708982773e-01 -4.1696955942058445e+01 4.1697830888234790e+01 1.3497999999999999e-01 2 0 0 -200 0 P 449 111 4.5451553913389365e-03 1.0704526223318631e-01 -7.3912602538736792e+01 7.3912803444303776e+01 1.3497999999999999e-01 2 0 0 -201 0 V -120 0 0 0 0 0 0 1 0 P 450 130 -5.0525249777715087e-01 8.8449350514178504e-01 -2.1868448936277917e+02 2.1868742801573100e+02 4.9767000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 451 311 -1.5775639787701490e+00 -8.8791962673888025e-01 -1.6186083916725596e+02 1.6187172711974091e+02 4.9767000000000000e-01 2 0 0 -202 0 P 452 111 -7.4739718832663865e-02 2.8049083359085028e-02 -6.6041779972721084e+00 6.6060396151326177e+00 1.3497999999999999e-01 2 0 0 -203 0 V -122 0 0 0 0 0 0 3 0 P 453 111 -3.2251081279834004e-01 -3.2509399377415116e-01 -6.4486155363525015e+01 6.4487922532038866e+01 1.3497999999999999e-01 2 0 0 -204 0 P 454 111 -6.9297280832563021e-02 3.1948697102139448e-02 -2.8423345957528948e+01 2.8423768888980128e+01 1.3497999999999999e-01 2 0 0 -205 0 P 455 111 -1.1131423454938393e-01 -1.1163310476745103e-01 -3.4011092737987951e+01 3.4011725943287708e+01 1.3497999999999999e-01 2 0 0 -206 0 V -123 0 0 0 0 0 0 2 0 P 456 211 -4.4739955577286145e-01 1.1128151557085213e-01 -1.8352737149948222e+01 1.8359057454515554e+01 1.3957000000000000e-01 1 0 0 0 0 P 457 -211 -7.4599721919961648e-01 -2.3972326062775308e-02 -9.4338367644825368e+01 9.4341423437420133e+01 1.3957000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 458 -211 -2.4382066272240166e-01 -1.1230891064828001e-01 -8.7534379012365071e-01 9.2615783902606597e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 111 1.9754172211660984e-01 4.1459040719604762e-01 -7.4411898048204395e-01 8.8478279550939332e-01 1.3497999999999999e-01 2 0 0 -207 0 V -125 0 0 0 0 0 0 2 0 P 460 211 4.0348921408833333e-01 4.8871889496603926e-02 -4.3749650787179775e+00 4.3960199308431696e+00 1.3957000000000000e-01 1 0 0 0 0 P 461 111 -5.4411272516345144e-01 -4.9149384173789157e-01 -7.4123711200382640e+00 7.4497711425068873e+00 1.3497999999999999e-01 2 0 0 -208 0 V -126 0 -5.1265651548916858e-06 -2.8162967589233068e-08 -1.8311685717117956e-05 2.4676192631809516e-05 0 2 0 P 462 22 -3.3977303795112046e-02 -4.2733715025582229e-02 -6.5607938679672047e-03 5.4987922212591155e-02 0 1 0 0 0 0 P 463 22 -1.0024592318463329e-02 4.2491989047920758e-02 -1.5061050274965868e-01 1.5681066648327360e-01 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 464 -321 3.7271731416982440e-01 9.1453296424745800e-01 -7.0848524637906083e+00 7.1703601117835820e+00 4.9359999999999998e-01 1 0 0 0 0 P 465 111 3.7609483761249518e-01 3.1544232293718465e-02 -2.3456779383804025e+00 2.3796779102379180e+00 1.3497999999999999e-01 2 0 0 -209 0 V -128 0 4.2041323522989024e-05 2.3350393132009292e-05 -2.4166213868306388e-04 2.4733391305241023e-04 0 2 0 P 466 22 3.3926262094142477e-02 3.3590382864465501e-02 -5.5595930706181718e-01 5.5800542666654929e-01 0 1 0 0 0 0 P 467 22 2.3044101488796223e-01 1.1324324013970502e-01 -9.6367794979995558e-01 9.9729749007534285e-01 0 1 0 0 0 0 V -129 0 2.2500833297330286e-05 -1.9621906824851108e-05 -8.5765455791962794e-04 8.5818472458171972e-04 0 2 0 P 468 22 2.5671716161125568e-01 -2.0836224041301116e-01 -7.7683206892503369e+00 7.7753536804013317e+00 0 1 0 0 0 0 P 469 22 4.5182464065714717e-01 -4.0952337483983614e-01 -1.9238861585380572e+01 1.9248523320033609e+01 0 1 0 0 0 0 V -130 0 0 0 0 0 0 3 0 P 470 -211 -1.3545329521449781e-01 -1.0137859111360467e-01 3.0645063782511323e-01 3.7685141932075039e-01 1.3957000000000000e-01 1 0 0 0 0 P 471 211 -1.2531480241064619e-01 -1.8009306767265013e-01 7.8800762928519441e-01 8.2980306183975816e-01 1.3957000000000000e-01 1 0 0 0 0 P 472 111 -6.0154270713788142e-02 -7.2306957952696738e-01 6.9331154843293952e-01 1.0125950112028468e+00 1.3497999999999999e-01 2 0 0 -210 0 V -131 0 0 0 0 0 0 2 0 P 473 211 1.7755722069281124e-01 2.2651173159853372e-01 -1.0581678798199588e-01 3.3691409690119606e-01 1.3957000000000000e-01 1 0 0 0 0 P 474 111 1.2710126901729299e+00 1.9025167116783652e+00 -2.7215133620882765e+00 3.5580749960085329e+00 1.3497999999999999e-01 2 0 0 -211 0 V -132 0 0 0 0 0 0 2 0 P 475 -211 -3.9061212863923139e-02 -5.1997950239964154e-02 -3.8154549175840730e-01 4.1144417891218654e-01 1.3957000000000000e-01 1 0 0 0 0 P 476 111 5.0237916527235082e-01 5.8009894178370547e-01 -6.9979339255671968e-01 1.0472965199141846e+00 1.3497999999999999e-01 2 0 0 -212 0 V -133 0 0 0 0 0 0 2 0 P 477 -211 -5.7128735965432775e-01 -3.3801310543467841e-02 5.6391264602827292e-02 5.9175293452485322e-01 1.3957000000000000e-01 1 0 0 0 0 P 478 111 2.1809659738560327e-01 1.0686464737956300e-01 -8.1645814145789086e-02 2.8960631557040500e-01 1.3497999999999999e-01 2 0 0 -213 0 V -134 0 0 0 0 0 0 3 0 P 479 111 6.0212500001220352e-02 6.5239554893462531e-02 1.4392512120315135e-01 2.1636955791523879e-01 1.3497999999999999e-01 2 0 0 -214 0 P 480 111 -2.2566952306070014e-02 -7.0770329688569542e-02 1.1052287788379986e-01 1.8961174498519495e-01 1.3497999999999999e-01 2 0 0 -215 0 P 481 221 -2.2242927396767873e-01 3.0728356970686593e-01 1.1748718909616032e+00 1.3505270959152489e+00 5.4744999999999999e-01 2 0 0 -216 0 V -135 0 0 0 0 0 0 2 0 P 482 22 -1.0378226449656686e-01 -5.5941175838641932e-01 3.9570209428629943e+00 3.9977152244877776e+00 0 1 0 0 0 0 P 483 22 1.6611224913198822e-01 3.8713469414308088e-02 2.0205895585199056e+00 2.0277756720173579e+00 0 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 484 22 -1.0546371869785778e+00 -7.2418449747878688e-01 1.8279663019203667e+01 1.8324376739146921e+01 0 1 0 0 0 0 P 485 22 -1.0722206092644901e-01 1.1404803082042661e-02 5.2410998671758806e+00 5.2422089292199798e+00 0 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 486 211 6.4571888935627486e-02 2.7538226298976975e-01 2.2026442250275551e+00 2.2251126458130881e+00 1.3957000000000000e-01 1 0 0 0 0 P 487 111 -1.7252902693104483e-01 -4.2339122078155894e-01 2.4567356267065703e+00 2.5025578776320034e+00 1.3497999999999999e-01 2 0 0 -217 0 V -138 0 0 0 0 0 0 2 0 P 488 -211 2.0585431438244312e-01 2.9772515231610758e-02 7.9257777246700523e-01 8.3121700639594842e-01 1.3957000000000000e-01 1 0 0 0 0 P 489 111 -1.9723068905073204e-01 3.4851543218688247e-01 1.9492677491271979e-01 4.6538048858295528e-01 1.3497999999999999e-01 2 0 0 -218 0 V -139 0 0 0 0 0 0 3 0 P 490 111 3.2203569515393986e-02 -6.2352684773274242e-02 1.9688411110332282e-01 2.4881294337898438e-01 1.3497999999999999e-01 2 0 0 -219 0 P 491 111 -1.7124698887087590e-03 7.7689846419485453e-02 5.1356937051712004e-01 5.3666725587010977e-01 1.3497999999999999e-01 2 0 0 -220 0 P 492 111 1.2535053400394719e-01 6.6571448883646384e-02 1.0016054429746351e+00 1.0205770808606067e+00 1.3497999999999999e-01 2 0 0 -221 0 V -140 0 1.7840301392305785e-04 -3.2087909762153996e-04 2.1544062012999222e-03 2.1857236898318215e-03 0 2 0 P 493 22 1.8924633039808056e-01 -2.9706105808368710e-01 2.3999787615822683e+00 2.4256870164645923e+00 0 1 0 0 0 0 P 494 22 5.2681846532351007e-01 -9.9086687786919048e-01 6.2472654890137136e+00 6.3472577508153707e+00 0 1 0 0 0 0 V -141 0 -1.1508684427589980e-05 1.7485550351892873e-05 4.5551272256840841e-04 4.5636134199168661e-04 0 2 0 P 495 22 -8.5732656582933209e-03 4.4884182964752904e-02 2.4736052480823972e-01 2.5154586062559020e-01 0 1 0 0 0 0 P 496 22 -7.6219423358996591e-02 8.3944341495422584e-02 3.1087266866516319e+00 3.1107937355707644e+00 0 1 0 0 0 0 V -142 0 0 0 0 0 0 1 0 P 497 130 2.2436766046782664e+00 -1.3890476388500714e+00 1.2342775418634655e+02 1.2345696301530936e+02 4.9767000000000000e-01 1 0 0 0 0 V -143 0 3.9323943313745239e+01 -3.5008639060973501e+01 2.1483798746186699e+03 2.1490348372315589e+03 0 2 0 P 498 -211 4.9807829970666334e-01 -6.3080112408887390e-01 3.3955416979555963e+01 3.3965214765863145e+01 1.3957000000000000e-01 1 0 0 0 0 P 499 211 2.4979376035463776e+00 -2.0364400155162765e+00 1.2972552974626424e+02 1.2976563230663885e+02 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 1 0 P 500 130 -4.7927485229968696e-02 -4.2875449214623879e-01 -1.0317534228754870e+00 1.2240580104273373e+00 4.9767000000000000e-01 1 0 0 0 0 V -145 0 2.1280126252265945e-05 3.1930553509628229e-05 -1.0636592680729872e-04 1.1477305241843857e-04 0 2 0 P 501 22 -2.3075788979209713e-02 1.5983243832892739e-02 -4.0608143939188199e-02 4.9365752041476543e-02 0 1 0 0 0 0 P 502 22 1.6913688391890941e-01 2.0317953520138857e-01 -6.8945912866901415e-01 7.3840578216282071e-01 0 1 0 0 0 0 V -146 0 -2.6651487478456242e-04 -5.6868284932540616e-04 -2.8632963151228336e-03 2.9318086724200126e-03 0 2 0 P 503 22 -6.2789976535481773e-01 -1.2570971055333304e+00 -6.5455294775971087e+00 6.6946626046549653e+00 0 1 0 0 0 0 P 504 22 -7.6807118379748823e-02 -2.4658901669662606e-01 -1.0254724226531413e+00 1.0574966506856243e+00 0 1 0 0 0 0 V -147 0 -1.9173155911906589e-05 1.0537628602771206e-05 -2.2348384039601679e-04 2.2461097471999298e-04 0 2 0 P 505 22 -3.4111153922093240e-01 1.4355434753703172e-01 -4.2391923286462374e+00 4.2553162669935087e+00 0 1 0 0 0 0 P 506 22 -1.6246595290790397e-01 1.3321347353269924e-01 -1.6305472382269810e+00 1.6440271626328304e+00 0 1 0 0 0 0 V -148 0 0 0 0 0 0 1 0 P 507 310 -3.3987006131043929e-01 9.0223601573486056e-01 -2.4222488204623286e+01 2.4246776110210579e+01 4.9767000000000000e-01 2 0 0 -222 0 V -149 0 -1.4147716626370741e+00 4.0066599187061804e+01 -1.1343938985383863e+03 1.1351606932350428e+03 0 2 0 P 508 211 -1.4767045937353881e-01 7.1479451704668362e-01 -2.5049664022253797e+01 2.5060684052492817e+01 1.3957000000000000e-01 1 0 0 0 0 P 509 -211 8.6606335056480341e-02 1.0145529517597520e+00 -2.3912844822277965e+01 2.3934921049137436e+01 1.3957000000000000e-01 1 0 0 0 0 V -150 0 -7.5755100357916376e+00 7.3224828199192904e-02 -8.7780403323992473e+01 8.8949326559792965e+01 0 2 0 P 510 -211 -2.3628753600516564e-01 1.7711610774761594e-01 -2.5687395786504239e+00 2.5894216966574244e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 211 -7.2374923455077969e-02 -1.7413257852532843e-01 -1.0078532915832030e+00 1.0347986889748677e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 -1.3751884814030469e-05 -5.3491700750644292e-05 -1.1992538816029770e-03 1.2013294132649846e-03 0 2 0 P 512 22 -8.5402380252217164e-02 -8.0131680445211240e-02 -1.6331979197856246e+00 1.6373912476728976e+00 0 1 0 0 0 0 P 513 22 4.3171810893690724e-02 -8.4135618852618638e-02 -2.0495826525069414e+00 2.0517630606561137e+00 0 1 0 0 0 0 V -152 0 1.6382019527127534e-06 -2.4201023730793088e-07 -2.3659553839451222e-04 2.3660707824971544e-04 0 2 0 P 514 22 6.5919515897475661e-02 -4.5457720270484732e-02 -4.1619813719229901e+00 4.1627515812431479e+00 0 1 0 0 0 0 P 515 22 6.8195985421867319e-02 2.5644946731044654e-02 -1.5207504294453631e+01 1.5207678824250143e+01 0 1 0 0 0 0 V -153 0 -3.9058371942103502e-04 3.2463322537591672e-04 2.3601322996403070e-03 2.4141687198195789e-03 0 2 0 P 516 22 -3.3472384721083985e+00 2.8242227317530846e+00 2.0628741137837682e+01 2.1088508727732030e+01 0 1 0 0 0 0 P 517 22 -4.6222371081665150e+00 3.7995980614284930e+00 2.7527430747877993e+01 2.8170223018139939e+01 0 1 0 0 0 0 V -154 0 -2.9466970634341259e-05 3.9831691665336373e-05 1.6828329906572168e-04 1.7834348894011083e-04 0 2 0 P 518 22 -9.1463750316192499e-02 1.0915585267509217e-01 6.3676573792132429e-01 6.5249614771707098e-01 0 1 0 0 0 0 P 519 22 -3.2333002483574680e-02 5.8185206841337773e-02 7.0226719270370469e-02 9.6761218699701806e-02 0 1 0 0 0 0 V -155 0 6.3172401443395774e-06 3.1844387577038960e-05 2.1567306970660452e-04 2.1840166348819024e-04 0 2 0 P 520 22 5.4669561150062829e-02 2.0861922352947052e-01 1.8302835938443360e+00 1.8429456788625427e+00 0 1 0 0 0 0 P 521 22 1.9990720933727321e-02 1.6773356739895215e-01 7.1864787848540590e-01 7.3823367019352604e-01 0 1 0 0 0 0 V -156 0 -2.5285551713364728e-04 6.9228783288648296e-04 5.6884347199299122e-04 9.3420656828935105e-04 0 2 0 P 522 22 -2.4311009773129841e-01 7.0409174415713760e-01 6.5636522142681797e-01 9.9280562433330188e-01 0 1 0 0 0 0 P 523 22 -1.9896358822801621e-01 5.0625255640702349e-01 3.3815818564964456e-01 6.4049131050395491e-01 0 1 0 0 0 0 V -157 0 0 0 0 0 0 1 0 P 524 130 3.1179451677298797e-01 5.1600798569765427e-01 2.2039042185555990e-01 8.1223606724838515e-01 4.9767000000000000e-01 1 0 0 0 0 V -158 0 9.8650187785927812e-05 -1.4820691948744558e-04 -1.1336338046173371e-04 2.1567650172180582e-04 0 2 0 P 525 22 3.0266410509511052e-02 -9.3096974193963900e-02 -1.3563684880856094e-02 9.8828516920719714e-02 0 1 0 0 0 0 P 526 22 2.6989901020687429e-01 -3.5785596709759282e-01 -3.3136993920882785e-01 5.5741582818329272e-01 0 1 0 0 0 0 V -159 0 2.2100901967889397e-05 -6.9757429168008575e-05 -2.6941859171312107e-05 7.8659202243187726e-05 0 2 0 P 527 22 2.6055678139517774e-01 -6.5619370780596786e-01 -2.2348058515527022e-01 7.4055627094536214e-01 0 1 0 0 0 0 P 528 22 2.8030280299175127e-02 -2.5467823507655257e-01 -1.2831826839959762e-01 2.8655240016518674e-01 0 1 0 0 0 0 V -160 0 6.1227732886648563e-04 -1.1273380504383508e-03 -1.3234350035117245e-03 1.8432980694314130e-03 0 2 0 P 529 22 9.8612261017972813e-01 -1.7409244943923110e+00 -1.9969073808001625e+00 2.8268171120496937e+00 0 1 0 0 0 0 P 530 22 2.7361926639157925e+00 -5.1126816190079687e+00 -6.0488622330516959e+00 8.3794389994705316e+00 0 1 0 0 0 0 V -161 0 -2.5776964128253072e-05 3.0190295598410896e-05 -1.0354712255890811e-04 1.1146262926558305e-04 0 2 0 P 531 22 -2.3409980681492384e-02 -8.2199402722752824e-03 -9.6314797898291726e-02 9.9459212282102832e-02 0 1 0 0 0 0 P 532 22 -2.8655082190316433e-01 3.7124982258858574e-01 -1.1488104640991967e+00 1.2408478096564650e+00 0 1 0 0 0 0 V -162 0 -4.2796887330843271e-05 -1.0798818442525671e-04 -7.9592652265477045e-04 8.0465564382011727e-04 0 2 0 P 533 22 -1.3143701673998368e-01 -1.7165378049829713e-01 -1.3414882419378793e+00 1.3587977822275272e+00 0 1 0 0 0 0 P 534 22 -1.3260357899958761e-01 -4.9459244269210434e-01 -3.5690771359145668e+00 3.6056229691469088e+00 0 1 0 0 0 0 V -163 0 4.5350750827146880e-05 -1.3451513286956814e-04 -1.5618335387838449e-03 1.5683158762725656e-03 0 2 0 P 535 22 3.9983962054563121e-01 -9.8853398273511517e-01 -1.1819425298985154e+01 1.1867429610301908e+01 0 1 0 0 0 0 P 536 22 1.1812150551602546e-01 -5.4779360661426302e-01 -6.0186268548304556e+00 6.0446587780617662e+00 0 1 0 0 0 0 V -164 0 6.2639586179442416e-06 2.2110316733707134e-06 8.4319951630192520e-03 8.4319980224743536e-03 0 2 0 P 537 22 7.2715823087149328e-02 -2.3614450319376722e-02 7.7278266447411156e+01 7.7278304266787998e+01 0 1 0 0 0 0 P 538 22 3.4505558700412531e-01 1.7107803944565725e-01 4.8508919540747769e+02 4.8508934829794788e+02 0 1 0 0 0 0 V -165 0 -2.3159399999224806e-05 -1.8461934977985081e-06 1.5416466212160574e-04 1.6226964420646098e-04 0 2 0 P 539 22 -1.8479182061997206e-02 1.9377432429764595e-02 4.0541223440346907e-01 4.0629551420273397e-01 0 1 0 0 0 0 P 540 22 -5.0989957398550029e-02 -2.4915290646040190e-02 5.7021438885668345e-02 8.0449934469051160e-02 0 1 0 0 0 0 V -166 0 -1.6652058273998094e-04 5.8700938787896871e-05 8.1717093383701248e-04 8.3611503321144923e-04 0 2 0 P 541 22 -7.8724632682649079e-02 8.4036709534415289e-04 3.9221745667518232e-01 4.0004100705880324e-01 0 1 0 0 0 0 P 542 22 -1.7871833636393104e+00 6.5691946819764624e-01 8.7644030326324991e+00 8.9688532199709865e+00 0 1 0 0 0 0 V -167 0 0 0 0 0 0 3 0 P 543 111 -3.8336246077853608e-01 2.9494386585302917e-01 2.2000584600765243e+00 2.2566425256324476e+00 1.3497999999999999e-01 2 0 0 -223 0 P 544 111 -4.3655851050947930e-01 2.5913778221697531e-01 2.3355605086507842e+00 2.3939085640933944e+00 1.3497999999999999e-01 2 0 0 -224 0 P 545 111 -1.9665572879616081e-01 2.9391644675471396e-01 2.6043625418744156e+00 2.6317264681687256e+00 1.3497999999999999e-01 2 0 0 -225 0 V -168 0 0 0 0 0 0 3 0 P 546 211 -5.2118816105670551e-01 5.6030938269200337e-01 5.5595731688264252e+00 5.6137257955829174e+00 1.3957000000000000e-01 1 0 0 0 0 P 547 -211 -9.4286650382430426e-01 5.6630290584752352e-01 7.6254174546145865e+00 7.7055932521283532e+00 1.3957000000000000e-01 1 0 0 0 0 P 548 111 -7.8169368988604293e-01 1.4796921644239330e-01 6.5146297706748646e+00 6.5644162393304608e+00 1.3497999999999999e-01 2 0 0 -226 0 V -169 0 -8.8167598510138695e-06 1.0131329449968650e-05 1.3618957760518484e-04 1.3701383180141121e-04 0 2 0 P 549 22 -5.8634362955340670e-02 1.6046573833579383e-03 8.6469908238500881e-01 8.6668625610538719e-01 0 1 0 0 0 0 P 550 22 -1.1914900475052660e-01 2.0268602302413150e-01 1.8814618840277351e+00 1.8960951796551706e+00 0 1 0 0 0 0 V -170 0 0 0 0 0 0 1 0 P 551 130 -3.3497496628423393e+00 1.1233972293626098e+00 4.3902189077500438e+01 4.4046937752403977e+01 4.9767000000000000e-01 1 0 0 0 0 V -171 0 -5.7700700578685186e-05 1.6815168737173140e-05 7.9207445343109132e-04 7.9440808236563875e-04 0 2 0 P 552 22 -7.9708006395009356e-01 2.5250592255330734e-01 1.1023236170834823e+01 1.1054900793189974e+01 0 1 0 0 0 0 P 553 22 -2.3252212239002694e-02 -1.3444255947399102e-02 2.3770577229275364e-01 2.3921840977082270e-01 0 1 0 0 0 0 V -172 0 -1.3386123741852867e-04 1.4767323179072373e-06 1.5720897875240569e-03 1.5778364626460723e-03 0 2 0 P 554 22 -6.0173109227456767e-01 5.7328069876049596e-02 6.5654763939188081e+00 6.5932425326322397e+00 0 1 0 0 0 0 P 555 22 -7.4281585640292447e-01 -4.2495277573019651e-02 9.2251181622461029e+00 9.2550735465766323e+00 0 1 0 0 0 0 V -173 0 0 0 0 0 0 1 0 P 556 310 -1.2633746262998928e+00 4.6473422614763554e-01 3.6003128782410904e+01 3.6031722841117322e+01 4.9767000000000000e-01 2 0 0 -227 0 V -174 0 -5.3211619010879506e-06 3.7775278113849452e-05 4.1943909647273791e-04 4.2240124860970393e-04 0 2 0 P 557 22 -6.2873882676375403e-03 7.0949067959315021e-02 2.5420816423781828e-01 2.6399828079115428e-01 0 1 0 0 0 0 P 558 22 -1.6002056482334777e-02 8.7285165481568436e-02 1.5027510752275166e+00 1.5053689116034867e+00 0 1 0 0 0 0 V -175 0 5.5208513555689343e+01 -2.2202113176222460e+02 4.4409585841160961e+03 4.4483600683476225e+03 0 2 0 P 559 111 2.5101346390283763e-01 -9.1644102105904057e-01 1.6445145384778620e+01 1.6473126546926231e+01 1.3497999999999999e-01 2 0 0 -228 0 P 560 111 -1.4126396135975845e-02 -3.6200727434721268e-02 2.6099892187670521e+00 2.6137661276814419e+00 1.3497999999999999e-01 2 0 0 -229 0 V -176 0 1.3083208156538181e-04 -9.5064586496286619e-05 2.5938404623159911e-03 2.5989513653030261e-03 0 2 0 P 561 22 1.7337921515298457e-01 -1.7302258917167249e-01 3.3010766869875181e+00 3.3101517279398576e+00 0 1 0 0 0 0 P 562 22 7.2600554275151852e-01 -4.8048409732499525e-01 1.4529875387845536e+01 1.4555934453074720e+01 0 1 0 0 0 0 V -177 0 2.0354443012901095e-05 -2.3029824556666936e-05 5.2114158327133090e-04 5.2211902944649009e-04 0 2 0 P 563 22 6.7118313943791169e-02 -1.5106284859781213e-01 2.1235054495522618e+00 2.1299296341830862e+00 0 1 0 0 0 0 P 564 22 2.5001294059969276e-01 -2.0775203761366579e-01 5.9961116774240306e+00 6.0049165379496126e+00 0 1 0 0 0 0 V -178 0 1.2481658647676375e-04 -1.4580270700016785e-04 1.9947421739106926e-03 2.0043632007816620e-03 0 2 0 P 565 22 6.3840704459561554e-02 -2.3026629505457578e-02 4.9355274098234786e-01 4.9819691823962875e-01 0 1 0 0 0 0 P 566 22 3.5245245466975739e-01 -4.6326025928080022e-01 6.1593893452071118e+00 6.1868335929199327e+00 0 1 0 0 0 0 V -179 0 0 0 0 0 0 1 0 P 567 310 -5.4866891005487584e-01 -4.1132373149167023e-01 6.5606201681630534e+00 6.6151067417507976e+00 4.9767000000000000e-01 2 0 0 -230 0 V -180 0 1.3133712326121436e-05 -3.0178737352792445e-05 1.8330357341491408e-04 1.8651429843541826e-04 0 2 0 P 568 22 -7.7200809761907782e-03 1.0298276163217043e-03 1.6239920440286784e-01 1.6258585973534950e-01 0 1 0 0 0 0 P 569 22 1.8144532409388758e-01 -4.0021692364945505e-01 2.2622357400152144e+00 2.3045187209075033e+00 0 1 0 0 0 0 V -181 0 0 0 0 0 0 1 0 P 570 130 -1.6415080524559009e-02 -1.5545896338213464e-01 1.1677604115988964e+00 1.2789748832413010e+00 4.9767000000000000e-01 1 0 0 0 0 V -182 0 -1.3029609472054558e-04 -1.6062639478605780e-04 4.1440706374956383e-04 4.6768799151751831e-04 0 2 0 P 571 22 -1.2057758593631951e-01 -5.2376994929209976e-02 2.4437021795435299e-01 2.7748712988371732e-01 0 1 0 0 0 0 P 572 22 -1.5012764572103984e-01 -2.8134294889647210e-01 6.1660846627540877e-01 6.9418885440924283e-01 0 1 0 0 0 0 V -183 0 4.3770525451527222e-05 -2.2576388254014403e-05 1.3591085069999178e-04 1.4579919032430298e-04 0 2 0 P 573 22 2.9590757637634935e-01 -1.6326307253237221e-01 7.8493968260714397e-01 8.5460308327377310e-01 0 1 0 0 0 0 P 574 22 1.5439099048700805e-02 2.6736495477942932e-03 1.8181571004844826e-01 1.8248963423099246e-01 0 1 0 0 0 0 V -184 0 0 0 0 0 0 3 0 P 575 -211 1.1353899311268528e-01 3.8724443290904770e-01 4.2286294210096859e-01 6.0095108492986304e-01 1.3957000000000000e-01 1 0 0 0 0 P 576 211 6.4744967101529466e-02 5.9830875909592726e-02 8.4929578286857446e-02 1.8564606821872276e-01 1.3957000000000000e-01 1 0 0 0 0 P 577 111 6.1824471738234216e-02 4.4539135089242465e-01 2.9580473084480446e-01 5.5490157680948959e-01 1.3497999999999999e-01 2 0 0 -231 0 V -185 0 -2.0469668659067477e-05 5.9992614882972875e-07 5.1158332588863975e-05 6.3437147455787133e-05 0 2 0 P 578 22 -3.9174174555837930e-02 6.7044662752655901e-02 8.3194590022038398e-02 1.1380220808351514e-01 0 1 0 0 0 0 P 579 22 -4.8740472707077931e-02 -6.4468055547301756e-02 1.3652400137375426e-01 1.5865234576538809e-01 0 1 0 0 0 0 V -186 0 -2.0509372764997770e-05 2.6521017982264517e-05 5.9789791993672357e-06 3.4865207529579343e-05 0 2 0 P 580 22 -5.1121546713448256e-02 5.0999878286085272e-02 -2.9984799225270423e-02 7.8188799122064556e-02 0 1 0 0 0 0 P 581 22 -3.1935922522345755e-01 4.2807509524945897e-01 1.3798892273297034e-01 5.5161539563827089e-01 0 1 0 0 0 0 V -187 0 -2.5950976933765429e-04 -4.5127560247890076e-05 1.3070520046432133e-04 2.9537802340479969e-04 0 2 0 P 582 22 -8.4719955934778393e-02 -2.1218680161149538e-02 8.4236365551833434e-02 1.2134030081862360e-01 0 1 0 0 0 0 P 583 22 -1.1674928188064555e+00 -1.9653538582080216e-01 5.4645558166954911e-01 1.3039475996305143e+00 0 1 0 0 0 0 V -188 0 -5.0640499048463883e-06 -2.2062857782838605e-06 6.8688978602014311e-06 9.2974436407758314e-06 0 2 0 P 584 22 -1.2494969478547084e-01 -9.8159594479490853e-02 1.0532327096488116e-01 1.9063243066724556e-01 0 1 0 0 0 0 P 585 22 -1.0615194842558617e-01 -2.5258802561797297e-03 2.0814393658026575e-01 2.3366325034276691e-01 0 1 0 0 0 0 V -189 0 0 0 0 0 0 2 0 P 586 22 -9.7565696353469111e-01 -2.4096846962036564e-01 -9.7004070458139940e-02 1.0096445431588099e+00 0 1 0 0 0 0 P 587 22 -2.4613760433873946e-01 6.4704417099525000e-03 2.6201677960288799e-01 3.5955302763153590e-01 0 1 0 0 0 0 V -190 0 0 0 0 0 0 1 0 P 588 310 1.9461256206257310e-01 -5.4618090152120102e-01 1.4217932111548726e-01 7.7722455876788377e-01 4.9767000000000000e-01 2 0 0 -232 0 V -191 0 4.1707738018809435e-05 -8.2913965538336659e-05 -3.3477675215619519e-04 3.5375810112524975e-04 0 2 0 P 589 22 2.0152818915900973e-02 1.7430452597128460e-03 -7.1285795194595825e-03 2.1447399912338211e-02 0 1 0 0 0 0 P 590 22 6.4192176561060715e-02 -1.6941883830209925e-01 -6.6988592636604172e-01 6.9395283171593825e-01 0 1 0 0 0 0 V -192 0 2.1634990281834820e-04 -2.2239555761880474e-05 -1.6765587897744538e-03 1.6906727554700826e-03 0 2 0 P 591 22 1.4101671720641851e-01 -1.1173845128373697e-02 -8.4956791783681451e-01 8.6126431271950910e-01 0 1 0 0 0 0 P 592 22 1.8140628681809920e+00 -1.8979736350971968e-01 -1.4300916648555486e+01 1.4416763302414303e+01 0 1 0 0 0 0 V -193 0 6.8320303030621195e-05 1.6851037358200072e-05 -9.1582573578655321e-04 9.1924221539979925e-04 0 2 0 P 593 22 2.1774246379814266e-01 7.1976930541429215e-02 -2.1600592078516909e+00 2.1721989412795333e+00 0 1 0 0 0 0 P 594 22 3.6288149189681429e-02 -9.3208947848886572e-03 -1.2451916872974464e+00 1.2457552114945636e+00 0 1 0 0 0 0 V -194 0 3.4555847474849869e-04 -2.9798028311977798e-05 -4.9600636232623114e-03 4.9722547184268542e-03 0 2 0 P 595 22 7.1533893959395423e-01 -2.5886974460338621e-02 -1.1042004624455924e+01 1.1065181700290879e+01 0 1 0 0 0 0 P 596 22 9.4705115416290697e-01 -1.1746342988257671e-01 -1.2819544821600177e+01 1.2855015868484060e+01 0 1 0 0 0 0 V -195 0 6.3398059388022205e+01 8.8198548094005304e+01 -2.1317861771220319e+04 2.1318197044118515e+04 0 2 0 P 597 111 3.6955194919645738e-02 1.6928175431275269e-01 -6.5011494502395905e+01 6.5011865524950352e+01 1.3497999999999999e-01 2 0 0 -233 0 P 598 111 5.9452370583071090e-01 7.0922340398082262e-01 -1.4732591846550940e+02 1.4732888694203820e+02 1.3497999999999999e-01 2 0 0 -234 0 V -196 0 4.4271758038475243e-04 4.2174325315085234e-05 -9.7347449614531012e-02 9.7348473894646431e-02 0 2 0 P 599 22 2.7749117020855069e-01 -5.6243477925466403e-03 -5.2048177264639492e+01 5.2048917275522342e+01 0 1 0 0 0 0 P 600 22 1.1956001090239832e+00 1.4595451217222991e-01 -2.7186414389972015e+02 2.7186681206184051e+02 0 1 0 0 0 0 V -197 0 6.9906489519529898e-06 3.2444057815810433e-06 -4.5381193138451948e-03 4.5381272764278852e-03 0 2 0 P 601 22 1.4881804499514992e-01 1.0738616622688492e-01 -1.3225481714064301e+02 1.3225494446524158e+02 0 1 0 0 0 0 P 602 22 1.1415602137476778e-01 1.4661813467200522e-02 -3.8460047507270311e+01 3.8460219718918403e+01 0 1 0 0 0 0 V -198 0 6.6930676900295348e-04 -6.3125260606930556e-05 -3.4460389135278979e-01 3.4460456919049087e-01 0 2 0 P 603 22 7.5806396153361461e-02 -1.6316249936896378e-02 -6.5217530984052033e+01 6.5217577082298106e+01 0 1 0 0 0 0 P 604 22 6.5660791694119680e-01 -5.2760960286471321e-02 -3.1187834502336904e+02 3.1187904067473193e+02 0 1 0 0 0 0 V -199 0 -6.1234144191796603e-06 7.0760638974631954e-06 -1.8118565008777268e-03 1.8118995193757508e-03 0 2 0 P 605 22 -5.8208887222917484e-02 9.3746014630953528e-02 -2.7270153681495692e+01 2.7270376939129470e+01 0 1 0 0 0 0 P 606 22 -4.1787401473540563e-02 2.1807184922067523e-02 -2.3177385197634157e+00 2.3182177607445009e+00 0 1 0 0 0 0 V -200 0 -9.1361472250079762e-05 8.3760454451021585e-05 -2.2088234285788055e-02 2.2088697773246416e-02 0 2 0 P 607 22 -1.4453983477816124e-01 7.9747722120463674e-02 -1.8830288791354235e+01 1.8831012384596384e+01 0 1 0 0 0 0 P 608 22 -2.7927336382924505e-02 7.8370664969364054e-02 -2.2866667150704206e+01 2.2866818503638420e+01 0 1 0 0 0 0 V -201 0 2.4033300014024967e-06 5.6602045052903626e-05 -3.9082574712754850e-02 3.9082680945069267e-02 0 2 0 P 609 22 -3.5616595676747312e-02 1.1799678976848535e-01 -4.4237183892825968e+01 4.4237355600803994e+01 0 1 0 0 0 0 P 610 22 4.0161751068086247e-02 -1.0951527535299040e-02 -2.9675418645910828e+01 2.9675447843499793e+01 0 1 0 0 0 0 V -202 0 0 0 0 0 0 1 0 P 611 310 -1.5775639787701490e+00 -8.8791962673888025e-01 -1.6186083916725596e+02 1.6187172711974091e+02 4.9767000000000000e-01 2 0 0 -235 0 V -203 0 -3.4621770713233094e-05 1.2993210945158055e-05 -3.0592613933009146e-03 3.0601237528030496e-03 0 2 0 P 612 22 4.6385137422622520e-03 -4.6832059351194409e-02 -1.7280179634052879e+00 1.7286586821707084e+00 0 1 0 0 0 0 P 613 22 -7.9378232574926127e-02 7.4881142710279444e-02 -4.8761600338668210e+00 4.8773809329619100e+00 0 1 0 0 0 0 V -204 0 -2.4780847254288619e-04 -2.4979331803182754e-04 -4.9549395017619180e-02 4.9550752861489106e-02 0 2 0 P 614 22 -2.0866015732675471e-03 -6.1529627982070033e-02 -7.0611531475887794e+00 7.0614215298853713e+00 0 1 0 0 0 0 P 615 22 -3.2042421122507247e-01 -2.6356436579208109e-01 -5.7425002215936239e+01 5.7426501002153493e+01 0 1 0 0 0 0 V -205 0 -1.9173725173813882e-05 8.8398207049127748e-06 -7.8643983914272898e-03 7.8645154114793739e-03 0 2 0 P 616 22 -3.6213770636625509e-02 -3.1250570344530312e-02 -3.5686102793496928e+00 3.5689308428730975e+00 0 1 0 0 0 0 P 617 22 -3.3083510195937506e-02 6.3199267446669760e-02 -2.4854735678179253e+01 2.4854838046107030e+01 0 1 0 0 0 0 V -206 0 -8.3837018110234609e-06 -8.4077177226947099e-06 -2.5615669095389254e-03 2.5616145997956101e-03 0 2 0 P 618 22 -5.9010706788885051e-02 -1.2229393593657029e-01 -2.9580654948384627e+01 2.9580966604316270e+01 0 1 0 0 0 0 P 619 22 -5.2303527760498882e-02 1.0660831169119251e-02 -4.4304377896033253e+00 4.4307593389714377e+00 0 1 0 0 0 0 V -207 0 5.0784631149652885e-06 1.0658417210318189e-05 -1.9130038733249906e-05 2.2746267186523217e-05 0 2 0 P 620 22 7.8325790591026054e-02 2.1110371848120699e-01 -2.4501285263238634e-01 3.3276268928977215e-01 0 1 0 0 0 0 P 621 22 1.1921593152558380e-01 2.0348668871484063e-01 -4.9910612784965763e-01 5.5202010621962128e-01 0 1 0 0 0 0 V -208 0 -2.5359806413676343e-05 -2.2907364785932488e-05 -3.4547307566465684e-04 3.4721620220040656e-04 0 2 0 P 622 22 -4.8455015258496892e-01 -4.5878451466465076e-01 -7.0114946070481636e+00 7.0431760382608442e+00 0 1 0 0 0 0 P 623 22 -5.9562572578482520e-02 -3.2709327073240785e-02 -4.0087651299010046e-01 4.0659510424604667e-01 0 1 0 0 0 0 V -209 0 2.0523043348598600e-04 1.7213308506756795e-05 -1.2800082637888621e-03 1.2985616398658254e-03 0 2 0 P 624 22 1.4783860452124320e-01 3.5800886453438818e-02 -5.9318941119505253e-01 6.1238193475279257e-01 0 1 0 0 0 0 P 625 22 2.2825623309125195e-01 -4.2566541597203519e-03 -1.7524885271853501e+00 1.7672959754851250e+00 0 1 0 0 0 0 V -210 0 -7.6304204054643740e-06 -9.1719587133627653e-05 8.7944854517107583e-05 1.2844517179363973e-04 0 2 0 P 626 22 -4.2122353829768403e-03 -5.5492424209691005e-01 5.7741477023667176e-01 8.0085359103972320e-01 0 1 0 0 0 0 P 627 22 -5.5942035330811296e-02 -1.6814533743005730e-01 1.1589677819626773e-01 2.1174142016312361e-01 0 1 0 0 0 0 V -211 0 6.9560458447416793e-05 1.0412164700748440e-04 -1.4894400237016852e-04 1.9472766072773818e-04 0 2 0 P 628 22 7.4706176896687793e-01 1.0065255540243809e+00 -1.5286645184817056e+00 1.9768687836123340e+00 0 1 0 0 0 0 P 629 22 5.2395092120605213e-01 8.9599115765398407e-01 -1.1928488436065707e+00 1.5812062123961972e+00 0 1 0 0 0 0 V -212 0 6.0001497085490491e-06 6.9283934069721198e-06 -8.3579603029864000e-06 1.2508352939598658e-05 0 2 0 P 630 22 2.6137758858110360e-01 3.7984863926287521e-01 -4.7252168363694369e-01 6.6021206749757499e-01 0 1 0 0 0 0 P 631 22 2.4100157669124725e-01 2.0025030252083029e-01 -2.2727170891977602e-01 3.8708445241660977e-01 0 1 0 0 0 0 V -213 0 4.1260163256269893e-05 2.0216971975077414e-05 -1.5445998063373266e-05 5.4788584525026165e-05 0 2 0 P 632 22 2.0216354532159767e-01 1.1234278827964150e-01 -2.7512791143607045e-02 2.3291190354284977e-01 0 1 0 0 0 0 P 633 22 1.5933052064005627e-02 -5.4781409000785024e-03 -5.4133023002182049e-02 5.6694412027555187e-02 0 1 0 0 0 0 V -214 0 7.2405593367219089e-06 7.8450632061094936e-06 1.7307010672122720e-05 2.6018461660183888e-05 0 2 0 P 634 22 7.9326935580702210e-02 2.4229573953356513e-02 2.1260280064826897e-02 8.5626131940085476e-02 0 1 0 0 0 0 P 635 22 -1.9114435579481854e-02 4.1009980940106022e-02 1.2266484113832445e-01 1.3074342597515332e-01 0 1 0 0 0 0 V -215 0 -1.3894389682521624e-06 -4.3573032163010580e-06 6.8048530139278521e-06 1.1674325524668126e-05 0 2 0 P 636 22 4.7614446788195125e-02 -6.6315461833205469e-02 4.3678386049007902e-02 9.2588754333036385e-02 0 1 0 0 0 0 P 637 22 -7.0181399094265143e-02 -4.4548678553640699e-03 6.6844491834791964e-02 9.7022990652158539e-02 0 1 0 0 0 0 V -216 0 0 0 0 0 0 2 0 P 638 22 -3.2352265133290864e-01 1.3051059154739026e-02 3.9408994354315985e-01 5.1004325274665308e-01 0 1 0 0 0 0 P 639 22 1.0109337736522990e-01 2.9423251055212690e-01 7.8078194741844331e-01 8.4048384316859603e-01 0 1 0 0 0 0 V -217 0 -6.5199110559809636e-05 -1.6000050255208647e-04 9.2840596501992257e-04 9.4572229756598571e-04 0 2 0 P 640 22 -1.8146765797424841e-01 -3.9165903321637191e-01 2.0762351956220253e+00 2.1206319569246976e+00 0 1 0 0 0 0 P 641 22 8.9386310432035612e-03 -3.1732187565187031e-02 3.8050043108454507e-01 3.8192592070730597e-01 0 1 0 0 0 0 V -218 0 -1.3932859697045691e-05 2.4619985065640839e-05 1.3770105550652642e-05 3.2875619328699103e-05 0 2 0 P 642 22 -2.1530372134311668e-02 1.7240965593978749e-01 8.4532272812661485e-02 1.9322099143828053e-01 0 1 0 0 0 0 P 643 22 -1.7570031691642038e-01 1.7610577624709498e-01 1.1039450210005829e-01 2.7215949714467474e-01 0 1 0 0 0 0 V -219 0 2.1897017765389414e-05 -4.2397096556251371e-05 1.3387257820880790e-04 1.6918191130408901e-04 0 2 0 P 644 22 -5.0897029776145068e-02 -1.7555089375210005e-02 9.9795452009532715e-02 1.1339233238977119e-01 0 1 0 0 0 0 P 645 22 8.3100599291539054e-02 -4.4797595398064237e-02 9.7088659093790095e-02 1.3542061098921312e-01 0 1 0 0 0 0 V -220 0 -2.8622350894221414e-07 1.2985139533246789e-05 8.5838371981823410e-05 8.9698969962826537e-05 0 2 0 P 646 22 -3.2587940789823584e-02 5.6749816138979066e-02 8.9039562529968988e-02 1.1050139914162729e-01 0 1 0 0 0 0 P 647 22 3.0875470901114824e-02 2.0940030280506394e-02 4.2452980798715106e-01 4.2616585672848245e-01 0 1 0 0 0 0 V -221 0 3.6805516346488057e-06 1.9546757974076811e-06 2.9409212969905260e-05 2.9966259602279236e-05 0 2 0 P 648 22 -1.9622970600873809e-02 -1.4961880886066219e-02 6.9567868527070753e-02 7.3814681373364943e-02 0 1 0 0 0 0 P 649 22 1.4497350460482100e-01 8.1533329769712615e-02 9.3203757444756430e-01 9.4676239948724172e-01 0 1 0 0 0 0 V -222 0 -3.8706253205650887e+00 1.0275155022964206e+01 -2.7585888504097056e+02 2.7613548893478577e+02 0 2 0 P 650 211 -2.3806994206705348e-01 6.0832451217768457e-01 -1.1253848594246497e+01 1.1273656193824428e+01 1.3957000000000000e-01 1 0 0 0 0 P 651 -211 -1.0180011924338582e-01 2.9391150355717588e-01 -1.2968639610376789e+01 1.2973119916386151e+01 1.3957000000000000e-01 1 0 0 0 0 V -223 0 -9.6090223640040822e-05 7.3928005296919669e-05 5.5144707966605700e-04 5.6562993810944635e-04 0 2 0 P 652 22 -2.8742702914230733e-01 2.7734480206848372e-01 1.6247709295903092e+00 1.6731452447285429e+00 0 1 0 0 0 0 P 653 22 -9.5935431636228793e-02 1.7599063784545489e-02 5.7528753048621506e-01 5.8349728090390418e-01 0 1 0 0 0 0 V -224 0 -3.6022659523846711e-05 2.1382774299080229e-05 1.9271895742516419e-04 1.9753355176816467e-04 0 2 0 P 654 22 -4.3665554015613656e-01 2.4456456386047040e-01 2.3163199630920679e+00 2.3697717312146640e+00 0 1 0 0 0 0 P 655 22 9.7029646657253036e-05 1.4573218356504903e-02 1.9240545558716477e-02 2.4136832878730013e-02 0 1 0 0 0 0 V -225 0 -4.4866028273987440e-05 6.7055578248399143e-05 5.9417238518673897e-04 6.0041532912904517e-04 0 2 0 P 656 22 -1.3929091973414373e-01 9.1931132882849917e-02 1.2768173544999826e+00 1.2876784731701627e+00 0 1 0 0 0 0 P 657 22 -5.7364809062017075e-02 2.0198531387186405e-01 1.3275451873744331e+00 1.3440479949985624e+00 0 1 0 0 0 0 V -226 0 -5.7350974668429087e-05 1.0856143389275834e-05 4.7796262370575790e-04 4.8161533644943370e-04 0 2 0 P 658 22 -3.9222088742959571e-02 -2.0617151808342969e-02 2.8316177891076116e-01 2.8660780210935588e-01 0 1 0 0 0 0 P 659 22 -7.4247160114308342e-01 1.6858636825073628e-01 6.2314679917641032e+00 6.2778084372211067e+00 0 1 0 0 0 0 V -227 0 -4.5093248007262465e+00 1.6587618019933243e+00 1.2850487744695985e+02 1.2860693735491918e+02 0 2 0 P 660 211 -9.8856611009750717e-01 2.9902219023293108e-01 2.2587198546127265e+01 2.2611229404244224e+01 1.3957000000000000e-01 1 0 0 0 0 P 661 -211 -2.7480851620238556e-01 1.6571203591470446e-01 1.3415930236283637e+01 1.3420493436873098e+01 1.3957000000000000e-01 1 0 0 0 0 V -228 0 5.5208564244992154e+01 -2.2202131682702432e+02 4.4409619050254259e+03 4.4483633949074283e+03 0 2 0 P 662 22 6.9117561544633263e-02 -4.2615590768151324e-01 8.2869868793530532e+00 8.2982249688433587e+00 0 1 0 0 0 0 P 663 22 1.8189590235820438e-01 -4.9028511337752739e-01 8.1581585054255665e+00 8.1749015780828724e+00 0 1 0 0 0 0 V -229 0 5.5208512236132634e+01 -2.2202113514376029e+02 4.4409588279170448e+03 4.4483603125013751e+03 0 2 0 P 664 22 -2.3559032826094119e-03 4.8414346174756394e-02 5.9682720705273695e-01 5.9879229643857035e-01 0 1 0 0 0 0 P 665 22 -1.1770492853366432e-02 -8.4615073609477662e-02 2.0131620117143152e+00 2.0149738312428718e+00 0 1 0 0 0 0 V -230 0 -2.1164600285044870e+01 -1.5866585850296548e+01 2.5307230086590349e+02 2.5517409035999191e+02 0 2 0 P 666 211 -5.6566489605210679e-01 -3.3685078679947927e-01 5.7298577399636361e+00 5.7692455947302381e+00 1.3957000000000000e-01 1 0 0 0 0 P 667 -211 1.6995985997230886e-02 -7.4472944692190984e-02 8.3076242819941737e-01 8.4586114702055937e-01 1.3957000000000000e-01 1 0 0 0 0 V -231 0 4.2672954873629553e-06 3.0742138967575401e-05 2.0417258046606321e-05 3.8300836676382313e-05 0 2 0 P 668 22 8.5560012741307895e-02 3.9980906736688149e-01 2.2281150579498851e-01 4.6563158531579285e-01 0 1 0 0 0 0 P 669 22 -2.3735541003073683e-02 4.5582283525543152e-02 7.2993225049815938e-02 8.9269991493696618e-02 0 1 0 0 0 0 V -232 0 5.6284367154641322e+00 -1.5796229219873322e+01 4.1120023428337200e+00 2.2478298401533969e+01 0 2 0 P 670 111 2.1149350248670185e-01 -8.3692057803234118e-02 1.3067612946691470e-01 2.9500798861367517e-01 1.3497999999999999e-01 2 0 0 -236 0 P 671 111 -1.6880940424128719e-02 -4.6248884371796689e-01 1.1503191648572563e-02 4.8221657015420860e-01 1.3497999999999999e-01 2 0 0 -237 0 V -233 0 6.3398067759873392e+01 8.8198586443191644e+01 -2.1317876498961810e+04 2.1318211771944058e+04 0 2 0 P 672 22 4.2030010543028231e-03 1.2206207677546908e-01 -2.2449547613558451e+01 2.2449879840864018e+01 0 1 0 0 0 0 P 673 22 3.2752193865342914e-02 4.7219677537283608e-02 -4.2561946888837454e+01 4.2561985684086338e+01 0 1 0 0 0 0 V -234 0 6.3398088324789974e+01 8.8198582613457987e+01 -2.1317868941894671e+04 2.1318204214937348e+04 0 2 0 P 674 22 3.8255126652769711e-01 4.9639495215531093e-01 -9.0041092999004846e+01 9.0043273940231018e+01 0 1 0 0 0 0 P 675 22 2.1197243930301377e-01 2.1282845182551172e-01 -5.7284825466504564e+01 5.7285613001807185e+01 0 1 0 0 0 0 V -235 0 -1.4901650551018448e+00 -8.3872782169941729e-01 -1.5289355586360503e+02 1.5290384061055221e+02 0 2 0 P 676 111 -1.3248581210609578e+00 -7.6947305529006049e-01 -1.2224790941128218e+02 1.2225758427538642e+02 1.3497999999999999e-01 2 0 0 -238 0 P 677 111 -2.5270585770919129e-01 -1.1844657144881980e-01 -3.9612929755973788e+01 3.9614142844354490e+01 1.3497999999999999e-01 2 0 0 -239 0 V -236 0 5.6285297901194733e+00 -1.5796266051309480e+01 4.1120598511522664e+00 2.2478428229479228e+01 0 2 0 P 678 22 1.0068646275815904e-01 -4.4295997856747808e-02 -1.1383236939851677e-02 1.1058696709876784e-01 0 1 0 0 0 0 P 679 22 1.1080703972854281e-01 -3.9396059946486317e-02 1.4205936640676639e-01 1.8442102151490733e-01 0 1 0 0 0 0 V -237 0 5.6284325276167388e+00 -1.5796343954754777e+01 4.1120051965616486e+00 2.2478418030497487e+01 0 2 0 P 680 22 4.1422785386439086e-02 -3.5277861765310581e-01 3.0597123138656663e-02 3.5651757904312281e-01 0 1 0 0 0 0 P 681 22 -5.8303725810567808e-02 -1.0971022606486110e-01 -1.9093931490084100e-02 1.2569899111108579e-01 0 1 0 0 0 0 V -238 0 -1.4907097327872745e+00 -8.3904416863203846e-01 -1.5294381461002342e+02 1.5295410333451545e+02 0 2 0 P 682 22 -2.2958567625692819e-01 -1.4796061775175717e-01 -2.6064893171129967e+01 2.6066324212469333e+01 0 1 0 0 0 0 P 683 22 -1.0952724448040294e+00 -6.2151243753830332e-01 -9.6183016240152213e+01 9.6191260062917053e+01 0 1 0 0 0 0 V -239 0 -1.4901761449498179e+00 -8.3873301965755809e-01 -1.5289529425373476e+02 1.5290557905391759e+02 0 2 0 P 684 22 -1.0732297610555512e-01 -9.9596050236139572e-02 -1.3326527221065296e+01 1.3327331517157404e+01 0 1 0 0 0 0 P 685 22 -1.4538288160363616e-01 -1.8850521212680226e-02 -2.6286402534908490e+01 2.6286811327197078e+01 0 1 0 0 0 0 E 56 41 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 267 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 6.3025125034486240e-01 -1.5608419695341000e+00 1.9452414252898802e+01 1.9525108567144983e+01 0 3 0 0 -3 0 P 16 2101 -1.7880188390121066e-01 3.6145160557737538e-01 3.8899755288348720e+03 3.8899755928764857e+03 5.7933000000000001e-01 2 0 0 -9 0 P 21 2 -4.5144936644365175e-01 1.1993903639567247e+00 1.0087534688187022e+01 1.0173966771175884e+01 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 7.9350883045900622e-01 1.2907195919618031e+00 -2.1409034301832048e+03 2.1409039663150570e+03 0 3 0 0 -4 0 P 108 2203 -7.9350883045900622e-01 -1.2907195919618031e+00 -1.1968432930191095e+03 1.1968445005965161e+03 7.7132999999999996e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 14 0 P 5 -2 1.0003614864163026e+01 -1.0257720694460053e+00 -3.0805747333149420e+00 1.0517340889050738e+01 0 3 0 0 -5 0 P 13 2 -1.0499899244979101e+00 -5.4262234289970435e-01 7.0635962817166409e-01 1.4158961024283889e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 4.9535803854359983e-01 4.0039251959885136e-01 1.2898926301649314e+00 1.4385815074073083e+00 0 2 0 0 -9 0 P 15 21 -6.3453392564729386e-02 -6.0242936340307540e-01 3.3113481667761038e+00 3.3662997716379435e+00 0 2 0 0 -9 0 P 22 21 -2.7574400668731508e-01 3.4891572569002499e-01 1.1026196358497136e+00 1.1889268279499483e+00 0 2 0 0 -13 0 P 23 21 4.6321719747654339e-01 -1.2959977708520807e+00 8.2530843986248943e+00 8.3670533932153930e+00 0 2 0 0 -13 0 P 24 21 -5.5943765103619141e-02 2.8844957927574533e+00 -1.9970005919302466e+01 2.0177328418308132e+01 0 2 0 0 -13 0 P 25 21 -1.3045988663419938e-01 9.3723958840172750e-01 -2.6174323016129932e+00 2.7832336735558405e+00 0 2 0 0 -13 0 P 26 21 -1.9495747437559372e+00 6.9982049704316884e-01 -1.6444493586568179e+01 1.6574436935481540e+01 0 2 0 0 -13 0 P 27 21 -3.0163843268160900e-01 1.7425856925080294e-01 -9.5580536458100731e+00 9.5643996826361857e+00 0 2 0 0 -13 0 P 28 21 -2.1272170451727654e+00 6.3116866731662902e-01 -1.3476371482465675e+01 1.3657818807455673e+01 0 2 0 0 -13 0 P 29 21 -4.2861007759990706e+00 -6.0393247141214168e-01 -2.8860821117946031e+01 2.9183597960054986e+01 0 2 0 0 -13 0 P 30 21 -3.0076073060719022e-01 -1.9639985518539025e+00 -8.3041820572937326e+01 8.3065586805828787e+01 0 2 0 0 -13 0 P 31 21 3.1703176079971879e-01 -1.2966020696646954e+00 -1.9474288849505118e+01 1.9519979822181526e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 3 0 P 6 1 1.1653713200998055e+00 2.6752250866964773e+00 -1.7756452256670705e+03 1.7756476233627661e+03 0 3 0 0 -5 0 P 106 21 -1.4490091404178268e-01 -1.0765343811603139e+00 -1.4289350967582706e+02 1.4289763829407536e+02 0 2 0 0 -13 0 P 107 21 -3.3504948253253491e-01 -6.1374980363618858e-01 -2.1051722837873946e+01 2.1063332628524677e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 3 0 0 -6 0 P 8 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 11 3.8889381082532978e+01 9.9574802708035470e+00 -6.4348808273781026e+02 6.4473905419182495e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 -12 -3.5643554689559657e+01 4.9081792325658270e+01 -6.0425972452305109e+02 6.0729671496681112e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 111 92 -7.9688716242025026e-01 -3.8320758112655301e-01 3.8952831292599849e+03 3.8961963702579596e+03 8.4348779698580927e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 11 0 P 112 221 -1.9396974754442750e-01 1.2598924306987255e-01 3.1949337287330484e-03 5.9431411091551523e-01 5.4744999999999999e-01 2 0 0 -17 0 P 113 223 -5.4564597509654456e-01 -1.1334947568334210e+00 6.5349495577190488e+00 6.7003799684583347e+00 7.7909313042627482e-01 2 0 0 -18 0 P 114 213 -3.9441813280558591e-01 -3.2653899542578857e-02 8.4058736532943872e+00 8.4541143666159542e+00 8.1037393099259503e-01 2 0 0 -19 0 P 115 -211 6.2067640778002942e-01 3.3800632674824665e-01 3.5205742917886478e+00 3.5935234254140744e+00 1.3957000000000000e-01 1 0 0 0 0 P 116 223 3.7718586716942831e-01 2.2730629852546597e-01 2.5481311947971516e+01 2.5497026924395573e+01 7.7922144591589504e-01 2 0 0 -20 0 P 117 113 -8.2504205999324987e-01 -2.0374545284331191e-01 6.1077079632131792e+01 6.1090023896303194e+01 9.2690703461292867e-01 2 0 0 -21 0 P 118 213 7.4462068175255380e-01 -3.7022949926663090e-01 2.1669260651856166e+02 2.1669576065528562e+02 8.2184933097928414e-01 2 0 0 -22 0 P 119 -211 -3.1322325275422336e-01 -1.0448531114927263e-01 1.5631336659839113e+02 1.5631377764961803e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2214 -9.5049730367357463e-02 7.5361195990320451e-01 1.5066331994641766e+03 1.5066338836070302e+03 1.2184168838635854e+00 2 0 0 -23 0 P 121 -2214 8.3769597141783364e-02 -5.9740141289930782e-01 4.6550780342107242e+02 4.6550993878808310e+02 1.2744248818855703e+00 2 0 0 -24 0 P 122 2212 -2.5579081770265655e-01 6.1388892316118060e-01 1.4451131692411484e+03 1.4451136268658397e+03 9.3827000000000005e-01 1 0 0 0 0 V -11 0 0 0 0 0 4 1 0 P 17 2 -2.4510261161848934e+00 -9.3852038831382611e-01 -1.0162161541263165e+01 1.0495612260951207e+01 0 2 0 0 -11 0 P 18 21 -1.5118186265680786e+00 -5.7158301477300355e-01 -1.0920106164589825e+01 1.1039067956504656e+01 0 2 0 0 -11 0 P 19 21 9.1795879951363357e-01 -2.2917706231768326e-01 -2.7228504205467079e+01 2.7244937360005721e+01 0 2 0 0 -11 0 P 20 -2 2.4510261161848934e+00 9.3852038831382611e-01 -5.9015137999255117e+01 5.9073470040388067e+01 0 2 0 0 -11 0 P 123 92 -5.9385982705444507e-01 -8.0076007709068675e-01 -1.0732590991057519e+02 1.0785308761784965e+02 1.0603946641482150e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 7 0 P 124 221 -1.4327812970501628e+00 -3.1715631974414271e-01 -9.7617879944391799e+00 9.8866403154563738e+00 5.4744999999999999e-01 2 0 0 -25 0 P 125 211 -4.5475281739552614e-01 -9.4300196253977286e-01 -4.8048456252358624e+00 4.9195603557158680e+00 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -1.0455551102232519e+00 5.2607524903311782e-02 -4.8048601601660819e+00 4.9194363294326351e+00 1.3497999999999999e-01 2 0 0 -26 0 P 127 113 -5.4292307192056422e-01 -2.2148993427114952e-01 -6.1087963704559840e+00 6.1875058882484737e+00 7.8994478820119496e-01 2 0 0 -27 0 P 128 311 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389745e+01 4.9767000000000000e-01 2 0 0 -28 0 P 129 -321 1.6809372678608958e+00 -2.1519884311027904e-01 -2.9657299043359608e+01 2.9709777652278355e+01 4.9359999999999998e-01 1 0 0 0 0 P 130 223 1.1498121463644551e+00 4.9551508984439335e-01 -3.5090282720025776e+01 3.5121271722328203e+01 7.7986078634625899e-01 2 0 0 -29 0 V -13 0 0 0 0 0 74 1 0 P 32 21 2.2919498513335910e+00 -5.3931438577433810e-01 5.4911357009882424e+00 5.9746519073832962e+00 0 2 0 0 -13 0 P 33 21 3.8275082768368374e+00 3.6553705284511260e+00 1.5564529802174704e+01 1.6439773151485639e+01 0 2 0 0 -13 0 P 34 21 2.6293041569352962e+00 2.5667889340332115e+00 7.9396237158021936e+00 8.7486725010187243e+00 0 2 0 0 -13 0 P 35 21 5.7644642234917343e-01 9.8089113377593973e-01 1.9821416854542029e+00 2.2854591563566911e+00 0 2 0 0 -13 0 P 36 21 -5.3890140962706091e-02 2.7404738935971873e-01 5.4609241298814792e-01 6.1337023275593960e-01 0 2 0 0 -13 0 P 37 21 -2.5645263155703646e-02 1.3041663402810690e+00 3.3087988598539289e+00 3.5566356880646492e+00 0 2 0 0 -13 0 P 38 21 3.3716652055867755e-02 -2.2187543183966403e+00 9.1906635303119355e+00 9.4547503227444061e+00 0 2 0 0 -13 0 P 39 21 2.5213698438065348e+00 -1.3044207475783756e+00 2.3154239373566323e+01 2.3327614973339621e+01 0 2 0 0 -13 0 P 40 21 1.1374896133187604e+00 -1.0709938123047886e+00 1.6755976217700258e+01 1.6828655602113315e+01 0 2 0 0 -13 0 P 41 21 2.4633426515889321e+00 -3.3125263080737302e+00 4.1258546615875410e+01 4.1464545776062494e+01 0 2 0 0 -13 0 P 42 21 1.8765359236492645e+00 1.1871959259510274e+00 2.6203848599061335e+01 2.6297766115049953e+01 0 2 0 0 -13 0 P 43 21 -5.7644642234917343e-01 -9.8089113377593973e-01 3.4456282820570408e+01 3.4475061475003855e+01 0 2 0 0 -13 0 P 44 21 -1.4127517917197032e+00 -1.1361949925331560e+00 8.8030640521746875e+01 8.8049307080493747e+01 0 2 0 0 -13 0 P 45 21 2.5645263155703646e-02 -1.3041663402810690e+00 2.3173135613390048e+02 2.3173502739805923e+02 0 2 0 0 -13 0 P 46 21 -2.5245419624345616e-01 -2.6719005480120606e-01 6.6202681689115320e+02 6.6202691894414613e+02 0 2 0 0 -13 0 P 47 21 1.4127517917197032e+00 1.1361949925331560e+00 1.3896332854063241e+03 1.3896344680223863e+03 0 2 0 0 -13 0 P 48 21 2.5245419624345616e-01 2.6719005480120606e-01 5.4687024989630231e+01 5.4688260402604023e+01 0 2 0 0 -13 0 P 49 21 9.3132849782446436e-01 6.8669548972004613e-01 1.2771682076240751e+02 1.2772206242119404e+02 0 2 0 0 -13 0 P 50 21 -3.3716652055867755e-02 2.2187543183966403e+00 4.0215320953119857e+01 4.0276494967914857e+01 0 2 0 0 -13 0 P 51 21 -1.8282763906214214e+00 4.0115474249900318e+00 7.0294034634439413e+01 7.0432140479267105e+01 0 2 0 0 -13 0 P 52 21 -4.2493496184377975e+00 2.1968843743290272e+00 9.3448641803408776e+01 9.3570999396371136e+01 0 2 0 0 -13 0 P 53 21 -1.8016928865495392e+00 2.3419894882116729e-01 1.8537995702078970e+01 1.8626814839241050e+01 0 2 0 0 -13 0 P 54 21 -9.3132849782446436e-01 -6.8669548972004613e-01 8.6339478491838637e+00 8.7111410807590808e+00 0 2 0 0 -13 0 P 55 21 -6.3280387971454042e+00 -1.4769041269268166e+00 2.7628974104691839e+01 2.8382838668745645e+01 0 2 0 0 -13 0 P 56 21 -2.6293041569352962e+00 -2.5667889340332115e+00 8.3053441710776710e+00 9.0818713700209628e+00 0 2 0 0 -13 0 P 57 21 -2.5213698438065348e+00 1.3044207475783756e+00 9.1650012017673657e+00 9.5945852648442909e+00 0 2 0 0 -13 0 P 58 21 -3.4767577075515682e-01 5.7011883976277411e-01 2.3272311839395439e+00 2.4211400034949024e+00 0 2 0 0 -13 0 P 59 21 2.3088839059774262e-02 3.2892297985008279e-01 2.2607665199560172e+00 2.2846856849283728e+00 0 2 0 0 -13 0 P 60 21 -4.2663340640220210e-01 5.3288846869669737e-01 2.4668070541485823e+00 2.5595162093500137e+00 0 2 0 0 -13 0 P 61 21 -2.7235874873859904e+00 2.7064803100231232e+00 7.4578779428432176e+00 8.3882601223576625e+00 0 2 0 0 -13 0 P 62 21 -2.2919498513335910e+00 5.3931438577433810e-01 3.9475559527521433e+00 4.5964216655829242e+00 0 2 0 0 -13 0 P 63 21 -2.2907802242727042e+00 -4.0226783466691823e-01 2.5056031540007084e+00 3.4187045224857924e+00 0 2 0 0 -13 0 P 64 21 -1.8765359236492645e+00 -1.1871959259510274e+00 1.3113427535256532e+00 2.5788449074275790e+00 0 2 0 0 -13 0 P 65 21 -1.1374896133187604e+00 1.0709938123047886e+00 7.6791084132077247e-01 1.7408611164079646e+00 0 2 0 0 -13 0 P 66 21 -2.0100594716904077e+00 1.1950825638901958e+00 5.5888075633528878e-01 2.4043521193969468e+00 0 2 0 0 -13 0 P 67 21 -9.1795879951363357e-01 2.2917706231768326e-01 -3.9283776468404602e-01 1.0244471645033884e+00 0 2 0 0 -13 0 P 68 21 -2.2202915482781052e+00 2.2931386178317714e-01 -9.0567087128387347e-01 2.4088418656385873e+00 0 2 0 0 -13 0 P 69 21 -6.9209919897388739e-01 -1.8276976386733144e+00 1.0625486119189624e+00 2.2245200633672018e+00 0 2 0 0 -13 0 P 70 21 1.0974082109116090e+00 -1.4793290650290782e+00 8.1104693157102148e-01 2.0125894735953467e+00 0 2 0 0 -13 0 P 71 21 2.7235874873859904e+00 -2.7064803100231232e+00 2.0440120821380905e+00 4.3498218195593807e+00 0 2 0 0 -13 0 P 72 21 1.5118186265680786e+00 5.7158301477300355e-01 3.4903819535779795e-01 1.6535205968580542e+00 0 2 0 0 -13 0 P 73 21 2.2907802242727042e+00 4.0226783466691823e-01 -1.0274911734027061e+00 2.5426819616591811e+00 0 2 0 0 -13 0 P 74 21 4.2493496184377975e+00 -2.1968843743290272e+00 -3.2115415473152611e+00 5.7617074070123167e+00 0 2 0 0 -13 0 P 75 21 1.8016928865495392e+00 -2.3419894882116729e-01 -2.5067821150723426e+00 3.0959494468609656e+00 0 2 0 0 -13 0 P 76 21 4.2663340640220210e-01 -5.3288846869669737e-01 -3.3458622009045778e+00 3.4147884342913959e+00 0 2 0 0 -13 0 P 77 21 3.4767577075515682e-01 -5.7011883976277411e-01 -1.8164162637576227e+00 1.9352731012097093e+00 0 2 0 0 -13 0 P 78 21 5.3890140962706091e-02 -2.7404738935971873e-01 -6.5426318239873249e-01 7.1138346252241114e-01 0 2 0 0 -13 0 P 79 21 -2.3088839059774262e-02 -3.2892297985008279e-01 -3.1922325539690849e-01 4.5894107241429810e-01 0 2 0 0 -13 0 P 80 21 -9.3297002321780897e-01 -8.3566416332879623e+00 -1.4491781841706969e+01 1.6754570522667912e+01 0 2 0 0 -13 0 P 81 21 -4.0422079593563165e+00 -9.5648883823126116e+00 -2.8793930127679420e+01 3.0609099090800875e+01 0 2 0 0 -13 0 P 82 21 -3.8275082768368374e+00 -3.6553705284511260e+00 -1.3732826537603481e+01 1.4717407313159134e+01 0 2 0 0 -13 0 P 83 21 -1.8396918775672468e+00 3.5076898330315426e-01 -4.7612002809216607e+00 5.1163007338391404e+00 0 2 0 0 -13 0 P 84 21 -2.4633426515889321e+00 3.3125263080737302e+00 -1.6624719714693128e+01 1.7129570722961045e+01 0 2 0 0 -13 0 P 85 21 -4.3170938568895023e-01 3.1672682924854845e-01 -2.3097535125758859e+00 2.3710019331317325e+00 0 2 0 0 -13 0 P 86 21 -2.2293456748496046e+00 1.4724864523063381e+00 -1.5591261313224100e+01 1.5818521670100365e+01 0 2 0 0 -13 0 P 87 21 -2.5681698473071308e+00 2.4884971888383181e+00 -4.9706974962155648e+01 4.9835443958209524e+01 0 2 0 0 -13 0 P 88 21 -1.0974082109116090e+00 1.4793290650290782e+00 -5.4666161612356085e+01 5.4697184065473152e+01 0 2 0 0 -13 0 P 89 21 -1.8242550257676140e+00 1.3243641552904142e-01 -2.2644655520464190e+02 2.2645394191722988e+02 0 2 0 0 -13 0 P 90 21 -1.4428508959266808e+00 -1.5871315338421952e+00 -7.5192118504893884e+01 7.5222705950182345e+01 0 2 0 0 -13 0 P 91 21 -1.9589249265875797e+00 -2.4473705025324115e+00 -1.2473946486162077e+02 1.2477884878138681e+02 0 2 0 0 -13 0 P 92 21 1.8282763906214214e+00 -4.0115474249900318e+00 -6.8494543017015289e+01 6.8636269788015184e+01 0 2 0 0 -13 0 P 93 21 2.5681698473071308e+00 -2.4884971888383181e+00 -5.4222757300156495e+01 5.4340551376068575e+01 0 2 0 0 -13 0 P 94 21 2.0100594716904077e+00 -1.1950825638901958e+00 -2.2156419752345965e+01 2.2279486027653178e+01 0 2 0 0 -13 0 P 95 21 4.3170938568895023e-01 -3.1672682924854845e-01 -4.6618003043369205e+00 4.6924482901331555e+00 0 2 0 0 -13 0 P 96 21 1.8396918775672468e+00 -3.5076898330315426e-01 -2.5983872810484662e+01 2.6051279264471418e+01 0 2 0 0 -13 0 P 97 21 2.2202915482781052e+00 -2.2931386178317714e-01 -2.6446956727484729e+01 2.6540983394592047e+01 0 2 0 0 -13 0 P 98 21 1.4428508959266808e+00 1.5871315338421952e+00 -1.7131009215502147e+01 1.7264769965314109e+01 0 2 0 0 -13 0 P 99 21 6.9209919897388739e-01 1.8276976386733144e+00 -1.6242077004503077e+01 1.6359234254079251e+01 0 2 0 0 -13 0 P 100 21 4.0422079593563165e+00 9.5648883823126116e+00 -1.7237771059692227e+02 1.7269018977807937e+02 0 2 0 0 -13 0 P 101 21 9.3297002321780897e-01 8.3566416332879623e+00 -1.4482319119673554e+02 1.4506708999927463e+02 0 2 0 0 -13 0 P 102 21 6.3280387971454042e+00 1.4769041269268166e+00 -3.3575882534388273e+02 3.3582169989016830e+02 0 2 0 0 -13 0 P 103 21 2.2293456748496046e+00 -1.4724864523063381e+00 -7.4254174078206188e+02 7.4254654736396492e+02 0 2 0 0 -13 0 P 104 21 1.8242550257676140e+00 -1.3243641552904142e-01 -7.1381127856972205e+02 7.1381362193442658e+02 0 2 0 0 -13 0 P 105 21 1.9589249265875797e+00 2.4473705025324115e+00 -5.5170479271759041e+02 5.5171369868510976e+02 0 2 0 0 -13 0 P 131 92 -9.7782391947879663e+00 -4.6548535903390897e-01 -2.0286046800342438e+03 8.1903714067458041e+03 7.9351654678364484e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 164 0 P 132 111 -9.5378886780884922e-02 9.2016129485517639e-01 3.7281450095512794e+00 3.8435762973089558e+00 1.3497999999999999e-01 2 0 0 -30 0 P 133 113 1.7111059602166162e-01 -8.8303316087832129e-01 9.3511847499636431e+00 9.4248957009459957e+00 7.5827194757295746e-01 2 0 0 -31 0 P 134 221 -5.9237764754734812e-01 6.6245614510044482e-01 5.0432351371495123e+00 5.1501147145063220e+00 5.4744999999999999e-01 2 0 0 -32 0 P 135 221 5.5949257037198585e-01 -3.7844598157706683e-01 1.3356639670320541e-01 8.7965605898075816e-01 5.4744999999999999e-01 2 0 0 -33 0 P 136 213 1.7643180981315237e-01 3.0573422024266106e-01 4.4575534532322197e-01 9.4402442716508184e-01 7.5357991895936527e-01 2 0 0 -34 0 P 137 113 -6.1006547629510433e-01 7.8421187115020008e-01 -4.3211779756747069e+00 4.5111053994124450e+00 8.3085779946503613e-01 2 0 0 -35 0 P 138 -211 1.3778881272259097e-01 3.9013610545415672e-01 -4.4811341333903005e+00 4.5023588088940754e+00 1.3957000000000000e-01 1 0 0 0 0 P 139 211 -5.1471806676339016e-01 3.9306527626725007e-01 -3.5166835082200163e+00 3.5785440728802449e+00 1.3957000000000000e-01 1 0 0 0 0 P 140 311 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300324e+00 4.9767000000000000e-01 2 0 0 -36 0 P 141 -321 -8.6621862706943487e-01 9.4605578613282582e-01 -1.4267764152839385e+01 1.4333809372996630e+01 4.9359999999999998e-01 1 0 0 0 0 P 142 223 -1.4823278846344665e-01 7.0068809158244638e-01 -5.0938869159078699e+00 5.2029198299935979e+00 7.8086752014802596e-01 2 0 0 -37 0 P 143 223 -1.5127336842276602e+00 -1.6932258679773229e-01 -8.9042401749900222e+00 9.0676146742845045e+00 7.8683508411640057e-01 2 0 0 -38 0 P 144 211 -1.1052020216926355e+00 1.7888768218666659e-01 -2.0680044964895078e+01 2.0710799401437260e+01 1.3957000000000000e-01 1 0 0 0 0 P 145 -211 -1.1836048869607055e-01 1.6870905370595057e-01 -1.2760479751112799e+00 1.3000962155826516e+00 1.3957000000000000e-01 1 0 0 0 0 P 146 113 -1.1965349864064070e+00 1.6293335719855687e-01 -1.2531649205245573e+01 1.2615527799632281e+01 8.0688698550683258e-01 2 0 0 -39 0 P 147 111 -2.3673624416023592e-01 -2.4200729240265403e-01 -4.6805328292745960e+00 4.6947011348106509e+00 1.3497999999999999e-01 2 0 0 -40 0 P 148 113 -2.0503896461125839e+00 5.3360163757153500e-01 -1.5414376149219221e+01 1.5590345801569375e+01 9.8339297047964802e-01 2 0 0 -41 0 P 149 213 -1.1279683274631416e+00 -1.0629888103991101e+00 -2.0170403482798850e+01 2.0237874087779595e+01 5.6930938436242173e-01 2 0 0 -42 0 P 150 331 -1.2585005341064656e-01 -2.0679762452408088e-01 -2.0539292866478739e+01 2.0563041993890913e+01 9.5788365373064077e-01 2 0 0 -43 0 P 151 313 -2.5891868332793694e-01 -1.0976812115405470e+00 -2.3427568915158162e+01 2.3473181595386592e+01 9.3130339243749294e-01 2 0 0 -44 0 P 152 -321 -5.8152469734450962e-01 -4.0236864860739080e-01 -2.5693310184079895e+01 2.5707778991549375e+01 4.9359999999999998e-01 1 0 0 0 0 P 153 221 3.7558069010983147e-01 -6.0121950718713923e-01 -4.1464817357575745e+00 4.2421148072720607e+00 5.4744999999999999e-01 2 0 0 -45 0 P 154 211 3.7166412348551842e-01 2.5263117957493336e-01 -1.3386359820979408e+00 1.4189372118057229e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 2112 4.8656919045718644e-01 -2.1099169578659491e-01 7.1963271134692353e-01 1.2968924770132602e+00 9.3957000000000002e-01 1 0 0 0 0 P 156 -2112 2.7693644967545605e-01 3.0404244051744694e-01 4.8921693944190998e-02 1.0268012075533515e+00 9.3957000000000002e-01 1 0 0 0 0 P 157 313 1.8047452413869469e+00 5.7464973658489826e-01 5.7315708504760536e+00 6.1264646927334088e+00 1.0465837334949950e+00 2 0 0 -46 0 P 158 -321 1.3041552224063184e+00 9.4508609836262170e-01 5.2668349808775874e+00 5.5296654739001863e+00 4.9359999999999998e-01 1 0 0 0 0 P 159 3222 8.3075042829696188e-01 1.8296383599183643e+00 4.4084598082256141e+00 4.9886713341170283e+00 1.1893700000000000e+00 2 0 0 -47 0 P 160 -3322 1.8542265179893243e+00 9.8944077685311804e-01 6.6420463292861696e+00 7.0896326055232510e+00 1.3149000000000000e+00 2 0 0 -48 0 P 161 -311 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425931e+00 4.9767000000000000e-01 2 0 0 -49 0 P 162 -211 1.4298062467162460e+00 1.3474966941410549e+00 6.6461866500901925e+00 6.9319095505211950e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 321 7.6410158396290562e-01 6.9909897553263511e-01 1.8606876457340611e+00 2.1859529004973464e+00 4.9359999999999998e-01 1 0 0 0 0 P 164 3224 3.2395285587733541e-01 1.5676247251179283e-02 4.1571351898734719e+00 4.4023116848350057e+00 1.4118725105304402e+00 2 0 0 -50 0 P 165 -211 6.7709439517060932e-01 -7.0060770228368074e-01 9.2688784337453249e+00 9.3209921777093996e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 -2112 9.2167164365202447e-01 1.7289840255036981e-01 5.9304801504111522e+00 6.0772328469162167e+00 9.3957000000000002e-01 1 0 0 0 0 P 167 313 2.4368048812152451e-01 -2.7189249717698005e-01 5.9901665861521334e+00 6.0642794212361464e+00 8.7182765421982122e-01 2 0 0 -51 0 P 168 -311 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645047e+00 4.9767000000000000e-01 2 0 0 -52 0 P 169 -211 8.2675932128159796e-02 -3.9746599663937121e-01 1.3273593382207474e+00 1.3950545243464900e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 111 1.3786554306129115e+00 -1.9488201490323926e+00 2.0080262669134132e+01 2.0222110652240410e+01 1.3497999999999999e-01 2 0 0 -53 0 P 171 221 8.1577905188286604e-01 3.1773786874613397e-01 1.6663022606641665e+01 1.6694983579107749e+01 5.4744999999999999e-01 2 0 0 -54 0 P 172 211 2.2723467062803587e-01 2.2022509676426130e-01 7.0122979398662952e+00 7.0208216663816030e+00 1.3957000000000000e-01 1 0 0 0 0 P 173 113 1.3167927918971483e+00 -1.1762731205460377e+00 1.6526735514980462e+01 1.6636723078691851e+01 7.2801531855450885e-01 2 0 0 -55 0 P 174 311 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280085e+01 4.9767000000000000e-01 2 0 0 -56 0 P 175 -313 2.3671732340945112e-01 -1.2818661158563485e-01 9.0995186506478944e+00 9.1482919540292045e+00 9.0417869034536813e-01 2 0 0 -57 0 P 176 111 6.3669604849360489e-02 3.2443801829702268e-01 2.8213067643071827e+01 2.8215327736520177e+01 1.3497999999999999e-01 2 0 0 -58 0 P 177 223 -5.9529930597106151e-01 -6.6909166784838903e-01 4.9008447852470091e+01 4.9022843881333117e+01 7.8051033408005732e-01 2 0 0 -59 0 P 178 113 1.7439300796065513e-01 4.5153278989565365e-02 2.1139860425192904e+01 2.1149444202864011e+01 6.1060589056441528e-01 2 0 0 -60 0 P 179 111 -7.9604417957461746e-02 -9.6209230235598897e-01 4.3259944128694286e+01 4.3270924927481758e+01 1.3497999999999999e-01 2 0 0 -61 0 P 180 113 5.9714359549159754e-02 -3.3812967846350012e-01 1.2082496526331296e+02 1.2082716193306055e+02 6.4259818942612779e-01 2 0 0 -62 0 P 181 313 -7.0125682803178158e-01 1.2932329278298590e-01 2.1123998264694384e+02 2.1124305884618306e+02 8.8946970601160780e-01 2 0 0 -63 0 P 182 -323 3.7591087000047047e-01 3.2172473610928232e-01 3.3853664827469237e+02 3.3853822148893727e+02 9.0574170822959221e-01 2 0 0 -64 0 P 183 213 3.5865522298360386e-01 -4.7339465582558199e-01 2.9925170177958864e+02 2.9925289532902849e+02 6.0133913684443618e-01 2 0 0 -65 0 P 184 311 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 2 0 0 -66 0 P 185 221 2.5994388602780161e-01 -2.1971917570972543e-01 2.4042429868065742e+02 2.4042516287803269e+02 5.4744999999999999e-01 2 0 0 -67 0 P 186 333 1.9401697942219695e-01 4.9437006858390177e-02 3.9568878893459038e+02 3.9569013623563654e+02 1.0129852159978843e+00 2 0 0 -68 0 P 187 -321 1.8767593486739167e-01 3.2317846264445632e-01 4.7583526931697583e+02 4.7583567209016002e+02 4.9359999999999998e-01 1 0 0 0 0 P 188 223 4.1211719745933267e-01 2.6963666964811467e-01 4.6095379421228202e+01 4.6104611526514589e+01 7.8016376855931513e-01 2 0 0 -69 0 P 189 3212 4.6113282985353568e-02 7.5510760968410517e-01 1.7324197899084831e+02 1.7324773526400020e+02 1.1925500000000000e+00 2 0 0 -70 0 P 190 -3112 2.7241775814165076e-01 5.5060609804795047e-01 6.2317676746792522e+01 6.2332207374530590e+01 1.1974400000000001e+00 2 0 0 -71 0 P 191 -213 -1.1185640412266291e+00 1.8677657111647226e+00 4.4372768731290904e+01 4.4431414791525569e+01 6.8431076992887618e-01 2 0 0 -72 0 P 192 223 1.9568918983671615e-01 1.2729495677269613e+00 3.0872829065873162e+01 3.0909303763703615e+01 7.7122614406223777e-01 2 0 0 -73 0 P 193 323 -6.0023605285414339e-01 9.0108152680739173e-01 2.7246443724479708e+01 2.7282237203205870e+01 8.8291559259718566e-01 2 0 0 -74 0 P 194 -323 -3.0703714755842770e+00 2.3060980355854404e+00 6.5480404290779745e+01 6.5599237691837274e+01 9.1179521735205749e-01 2 0 0 -75 0 P 195 111 -8.2657351272765955e-01 7.8848798350730487e-01 1.2765680916774796e+01 1.2817400904293603e+01 1.3497999999999999e-01 2 0 0 -76 0 P 196 213 -7.9433878678597092e-01 4.3574366466307551e-01 1.7578414382623187e+01 1.7616247407695436e+01 7.1461449218151363e-01 2 0 0 -77 0 P 197 111 -9.3314735858685560e-01 -6.2790142045255470e-01 7.8946953041036680e+00 7.9755537570553985e+00 1.3497999999999999e-01 2 0 0 -78 0 P 198 223 -1.4873893292554239e+00 2.3891052157349510e-01 1.6881736267763948e+01 1.6966975143136498e+01 7.8474253062634569e-01 2 0 0 -79 0 P 199 -213 -8.6327166983079384e-01 1.3232007939613391e-01 5.2690952433733145e+00 5.3557217283060572e+00 3.9704403781757419e-01 2 0 0 -80 0 P 200 323 -1.6613365377513465e+00 -7.6011701606238102e-01 1.0124147137273564e+01 1.0324922914625303e+01 8.7627676336584359e-01 2 0 0 -81 0 P 201 -311 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696917e+00 4.9767000000000000e-01 2 0 0 -82 0 P 202 3112 -1.8441967940919355e+00 -1.3213630468256885e+00 1.0038364402446758e+01 1.0360969286064202e+01 1.1974400000000001e+00 2 0 0 -83 0 P 203 221 -1.4583744633757945e+00 1.7279417687409573e-01 7.4072308360005090e+00 7.5712273815600772e+00 5.4744999999999999e-01 2 0 0 -84 0 P 204 -3112 -2.7871596910270373e+00 -4.3261702294956333e-01 1.0276470718751812e+01 1.0723578209664675e+01 1.1974400000000001e+00 2 0 0 -85 0 P 205 -211 -2.3463548895022307e-01 3.8275857104720590e-01 3.7780705689810018e-01 6.0313837013326677e-01 1.3957000000000000e-01 1 0 0 0 0 P 206 211 -6.4460098550996059e-01 2.0472505911299932e-01 3.1021058469222291e+00 3.1780439346803107e+00 1.3957000000000000e-01 1 0 0 0 0 P 207 311 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 2 0 0 -86 0 P 208 -321 -1.6835957314647925e+00 5.7502921006996155e-01 2.5030946983757643e+00 3.1103500138211153e+00 4.9359999999999998e-01 1 0 0 0 0 P 209 111 -1.4014985911539006e+00 9.9159072173989193e-01 6.3981511675636975e+00 6.6258590706295362e+00 1.3497999999999999e-01 2 0 0 -87 0 P 210 213 -9.6646484642001329e-01 1.0297103343557248e+00 3.9278503494105834e+00 4.2807800120428974e+00 9.5011129458422561e-01 2 0 0 -88 0 P 211 113 -1.5844201907951090e+00 3.2761292509146417e-01 1.6301442665538992e+00 2.4279522150855071e+00 7.8731446022150242e-01 2 0 0 -89 0 P 212 -213 -1.1710739363307439e+00 -5.2844511866246523e-03 1.8497534609192328e+00 2.2276480672007817e+00 4.1156525040772202e-01 2 0 0 -90 0 P 213 113 -6.2093468371241456e-01 -8.6668736080996303e-02 9.5906356420507188e-01 1.3134358278937774e+00 6.4205872204835146e-01 2 0 0 -91 0 P 214 2224 -2.0185366513081511e+00 1.9186110978437379e-01 2.2501044345770262e+00 3.2526963087490626e+00 1.1856485197243571e+00 2 0 0 -92 0 P 215 111 -9.2642973855978927e-01 4.5143517373897674e-01 1.1576608301212377e+00 1.5557840385393122e+00 1.3497999999999999e-01 2 0 0 -93 0 P 216 -2224 -3.1032735478718187e+00 -8.5363516668582565e-02 -3.5868877264797472e-01 3.3600610247344354e+00 1.2344062586590931e+00 2 0 0 -94 0 P 217 213 -9.2680052695863313e-01 4.6310995514766951e-01 1.1674412209241978e+00 1.7497123530220562e+00 7.9066065203557612e-01 2 0 0 -95 0 P 218 113 -1.6876829116224674e+00 -7.0622510073982764e-02 -4.1776953565468920e-02 1.9645158264640727e+00 1.0021556612956735e+00 2 0 0 -96 0 P 219 111 -1.8969189782821572e-02 1.8792948360487647e-02 -8.6176548071781031e-02 1.6235455924200173e-01 1.3497999999999999e-01 2 0 0 -97 0 P 220 2112 1.2311947456161887e-01 -1.8395851082529507e-01 -4.4092232421181160e-01 1.0612273175949323e+00 9.3957000000000002e-01 1 0 0 0 0 P 221 -3122 7.1199729324989025e-02 -1.9503849061399534e-01 5.8922097304292043e-01 1.2786839452149945e+00 1.1156800000000000e+00 2 0 0 -98 0 P 222 333 4.7572441015108302e-01 -2.1474214213958498e+00 1.2670522471103023e+00 2.7350441383951600e+00 1.0184854277696322e+00 2 0 0 -99 0 P 223 -311 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679957e-01 4.9767000000000000e-01 2 0 0 -100 0 P 224 111 1.2940890778630012e+00 -9.2518979500341925e-01 1.1728881721895412e-01 1.6008182174336356e+00 1.3497999999999999e-01 2 0 0 -101 0 P 225 -213 1.2261900383170972e+00 -5.2838540579492410e-01 5.2201528021316679e-01 1.6417319868511671e+00 8.0003175983775732e-01 2 0 0 -102 0 P 226 223 6.6024216925665991e-01 9.4027839869779237e-02 -2.4006983269977769e-01 1.0578426798937934e+00 7.8526215628735507e-01 2 0 0 -103 0 P 227 331 1.4946045294379426e+00 -1.0732848342928707e+00 9.5876268473866905e-02 2.0767748473918295e+00 9.5813280549378643e-01 2 0 0 -104 0 P 228 223 9.9420282128298698e-01 -3.7546557748686166e-01 -1.0613068048478145e+00 1.6955343449694420e+00 7.8679789732185013e-01 2 0 0 -105 0 P 229 213 9.2827556121699073e-01 1.2565483393623539e-01 -5.9530845933283794e-01 1.2728415388191838e+00 6.2309611324906244e-01 2 0 0 -106 0 P 230 -211 1.5554644844482319e+00 -1.6863632900265141e-01 -1.7007854817912444e+00 2.3151801255650000e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 3212 1.3099515119184744e+00 -9.1416401295275251e-01 -1.2311207243195397e+00 2.3429687463780744e+00 1.1925500000000000e+00 2 0 0 -107 0 P 232 -3212 1.3242055177125795e+00 -6.8638328788203096e-01 -1.9338349209273054e+00 2.7178181092416955e+00 1.1925500000000000e+00 2 0 0 -108 0 P 233 213 4.4600368878850227e-01 -8.0727387354407465e-01 -1.6343381049089423e+00 2.0195652366821699e+00 7.4630577294963429e-01 2 0 0 -109 0 P 234 223 5.9193869189485193e-01 -1.0175355777714485e+00 -3.4830928743747203e+00 3.7577959153385119e+00 7.7673940470532832e-01 2 0 0 -110 0 P 235 113 -1.7673372205386045e-02 -2.9141556480679931e+00 -4.8090909785285803e+00 5.6572316424831532e+00 6.1991800078394799e-01 2 0 0 -111 0 P 236 -211 -3.2654834478515110e-01 -6.7351702809598046e-01 -2.7714904742543802e+00 2.8741778376433031e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 211 -1.4113547946701910e-01 8.1332088206809740e-03 -2.5848972391342706e-01 3.2600934790116970e-01 1.3957000000000000e-01 1 0 0 0 0 P 238 113 -5.6972190284160862e-01 -3.5003862791043274e+00 -6.6608917286834028e+00 7.5771878863400373e+00 6.8484340847811531e-01 2 0 0 -112 0 P 239 -213 -8.6042664087407350e-01 -2.8563772686369608e+00 -9.5358671015221450e+00 1.0019230517937205e+01 7.4363545407684173e-01 2 0 0 -113 0 P 240 211 -1.7150384319993699e+00 -3.7363227332416113e+00 -9.2359168317705915e+00 1.0110544193981660e+01 1.3957000000000000e-01 1 0 0 0 0 P 241 -213 -8.1549856648566732e-01 -1.3430766565358121e+00 -4.4625495466393730e+00 4.8342640599841600e+00 9.9341216429620149e-01 2 0 0 -114 0 P 242 111 -1.9899595175840767e+00 -2.8105357529960577e+00 -9.9097800936532590e+00 1.0491949828580909e+01 1.3497999999999999e-01 2 0 0 -115 0 P 243 211 1.5907968441241596e-01 2.5791089111383038e-02 -3.3179660333165167e-01 3.9438597484282650e-01 1.3957000000000000e-01 1 0 0 0 0 P 244 221 -6.1327225553376563e-01 -1.9053975470304130e-01 -3.2725294108080534e+00 3.3795796343086031e+00 5.4744999999999999e-01 2 0 0 -116 0 P 245 -211 -6.4329156172857138e-01 -6.8687745213541831e-02 -1.4702607017873401e+00 1.6123549100163732e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 113 -4.5403661687550312e-01 -8.6902816474020469e-02 -2.8367549097601654e+00 2.9740262594884488e+00 7.6416779904912269e-01 2 0 0 -117 0 P 247 2212 -3.7022331340018594e-01 9.6636894054778391e-02 -3.4626391076266749e+00 3.6078558970173993e+00 9.3827000000000005e-01 1 0 0 0 0 P 248 -2212 -5.2882150793671845e-01 -4.3613633431824639e-01 -3.8558104386500678e+00 4.0270947122052956e+00 9.3827000000000005e-01 1 0 0 0 0 P 249 213 -1.6059435270807487e+00 -5.4791989963380516e-01 -4.7447532838858999e+00 5.0922126184455179e+00 7.3394468314884231e-01 2 0 0 -118 0 P 250 113 -1.4939629446410834e+00 2.2898207276010285e-01 -7.3349343404515981e+00 7.5318728112929723e+00 8.0217716070205192e-01 2 0 0 -119 0 P 251 223 -1.8797596367186018e+00 1.8505823868378783e+00 -1.0122234129684928e+01 1.0489907890746126e+01 7.8764987009991638e-01 2 0 0 -120 0 P 252 223 -1.8133470483218717e+00 1.7186906924022449e+00 -1.7262417226371358e+01 1.7459919314773000e+01 7.8460739688900027e-01 2 0 0 -121 0 P 253 -211 -2.5838464734318373e-01 3.8031641369989722e-01 -1.4854522860686203e+01 1.4862292299778700e+01 1.3957000000000000e-01 1 0 0 0 0 P 254 211 -1.7649897167754627e+00 1.4636054011096398e+00 -3.7881886874393018e+01 3.7951471149610136e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 311 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -122 0 P 256 -311 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 2 0 0 -123 0 P 257 1114 -1.1721384161292434e+00 7.9620984340023501e-02 -5.7798059416760822e+01 5.7824385184096379e+01 1.2898068101919591e+00 2 0 0 -124 0 P 258 223 -2.5658458888797053e-01 1.1741062227357534e-01 -6.6069309686689479e+01 6.6074625560155994e+01 7.8920183328603977e-01 2 0 0 -125 0 P 259 -1114 -1.1118756984451283e+00 4.7098036284291449e-03 -7.5095286699551011e+01 7.5113186769820999e+01 1.2051773642106405e+00 2 0 0 -126 0 P 260 -211 -8.8366504358488751e-01 -5.7185408679097882e-01 -5.3190507796194645e+01 5.3201104127713144e+01 1.3957000000000000e-01 1 0 0 0 0 P 261 213 -7.5457908692256526e-01 -1.8550274055557001e-03 -6.0851918697939290e+01 6.0861347878563521e+01 7.6043627962360516e-01 2 0 0 -127 0 P 262 313 -5.2356689018349933e-01 -1.3194785611780053e+00 -6.2402774114210409e+01 6.2425474597775633e+01 9.0471854543684183e-01 2 0 0 -128 0 P 263 -313 -1.1166248071558116e+00 -1.3816476856172815e+00 -4.8281968538343975e+01 4.8322766889805884e+01 8.8629152187922478e-01 2 0 0 -129 0 P 264 -213 7.4932935392847599e-01 -1.7881148332235097e+00 -5.4211638245296051e+01 5.4258059505359093e+01 1.1298012704852716e+00 2 0 0 -130 0 P 265 2224 2.1305547501532636e+00 -2.8875932717779862e+00 -4.6292857887869758e+01 4.6449002697402115e+01 1.2663734481366959e+00 2 0 0 -131 0 P 266 -213 2.9501615734955484e+00 -2.0611191424768478e+00 -5.7704459572170741e+01 5.7822650963053867e+01 8.3823889772115534e-01 2 0 0 -132 0 P 267 -2112 1.3366857100925198e+00 -8.2706876300639198e-01 -1.9515446600578798e+01 1.9601179026559830e+01 9.3957000000000002e-01 1 0 0 0 0 P 268 -213 1.4454688220488716e+00 -7.3744816474676456e-01 -1.7258252555606354e+01 1.7343707648671078e+01 5.6894975021936267e-01 2 0 0 -133 0 P 269 223 1.5333538260086685e+00 1.6892059317215538e+00 -2.2561208053669169e+01 2.2689639384113832e+01 7.7912508924065293e-01 2 0 0 -134 0 P 270 213 1.1917981052355211e+00 2.4088605343486744e-01 -1.9862858981540064e+01 1.9913265186034764e+01 7.2564084395440487e-01 2 0 0 -135 0 P 271 2212 1.0148440736041775e+00 9.6779805550273279e-01 -2.5790979365897766e+01 2.5846112063810075e+01 9.3827000000000005e-01 1 0 0 0 0 P 272 -211 8.3949500658127896e-01 2.3400794756034817e+00 -3.4751319161058518e+01 3.4840413129537779e+01 1.3957000000000000e-01 1 0 0 0 0 P 273 -2214 1.7983847562803692e+00 7.3664058181282535e+00 -1.1993075545251776e+02 1.2017692097077203e+02 1.2681120591629913e+00 2 0 0 -136 0 P 274 223 1.1509038263009055e+00 3.5319809372778194e-01 -2.0722945499304867e+01 2.0772678532097942e+01 7.8382059166358686e-01 2 0 0 -137 0 P 275 113 1.2596345802193534e+00 4.5750511743499249e+00 -7.3766824680073668e+01 7.3923106188787401e+01 7.5062153873152426e-01 2 0 0 -138 0 P 276 2214 1.5190503581519559e+00 1.6381843012732062e+00 -9.0013673850423800e+01 9.0049028670783741e+01 1.1725709810594909e+00 2 0 0 -139 0 P 277 213 2.0578233862762640e-01 1.2216377008536984e-01 -2.0912759884649834e+01 2.0924960597890376e+01 6.7318620947914676e-01 2 0 0 -140 0 P 278 -2224 3.0556014846562324e-01 1.5957522138898375e+00 -5.1694021773796713e+01 5.1734448116246725e+01 1.2415484728318067e+00 2 0 0 -141 0 P 279 331 6.1159455107455185e-01 9.8642666529095557e-01 -4.3395578927702907e+01 4.3421661426494119e+01 9.5777090459737735e-01 2 0 0 -142 0 P 280 113 1.7370568052796040e+00 2.4297024488596281e-01 -8.8460462398386383e+01 8.8479856883274010e+01 5.9604149490845026e-01 2 0 0 -143 0 P 281 223 1.0381032329670323e+00 -1.9541194859645697e-01 -6.0129467008396098e+01 6.0143779295091235e+01 7.7816516942080050e-01 2 0 0 -144 0 P 282 223 6.0277948289184857e-01 4.2525395145953201e-02 -1.4154617604409043e+02 1.4154968951817088e+02 7.9340939728978999e-01 2 0 0 -145 0 P 283 113 1.3576402747404808e+00 2.1290308839209571e-01 -3.0819349617131866e+02 3.0819771455210758e+02 8.4359824629068492e-01 2 0 0 -146 0 P 284 321 1.9707904859542941e-01 -1.8041953679716968e-01 -1.6127321181959451e+02 1.6127418852044630e+02 4.9359999999999998e-01 1 0 0 0 0 P 285 -311 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -147 0 P 286 2112 1.1564324061673690e+00 4.0927520449593802e-01 -2.1981471572107174e+02 2.1982014666864256e+02 9.3957000000000002e-01 1 0 0 0 0 P 287 -2212 9.0904909410333434e-01 -3.5196262463989575e-02 -3.5959413299945447e+02 3.5959650783517719e+02 9.3827000000000005e-01 1 0 0 0 0 P 288 321 7.1688243292429099e-01 -1.5260811464153853e-01 -2.1460689020507988e+02 2.1460870945540515e+02 4.9359999999999998e-01 1 0 0 0 0 P 289 333 8.0097651661225422e-01 9.8596548019314847e-02 -2.9490839976680940e+02 2.9491126732797227e+02 1.0198329819226979e+00 2 0 0 -148 0 P 290 -321 5.0418828950498273e-01 5.3523060479821194e-01 -2.0070252973120446e+02 2.0070448365469218e+02 4.9359999999999998e-01 1 0 0 0 0 P 291 223 -4.8590448068744879e-01 -5.8809670963273808e-01 -7.4207865814018902e+01 7.4215919884725380e+01 7.8323352858977313e-01 2 0 0 -149 0 P 292 211 3.9242950286129108e-01 -2.0840078293561953e-01 -1.8648424078664419e+02 1.8648482236728285e+02 1.3957000000000000e-01 1 0 0 0 0 P 293 221 -1.7063816599739356e-01 -6.0097669642154050e-01 -5.0431125538651315e+01 5.0437966007473435e+01 5.4744999999999999e-01 2 0 0 -150 0 P 294 2214 1.6431277093737304e-02 -5.3759544996054023e-02 -3.2489795453959999e+02 3.2490020742516401e+02 1.2086193871872084e+00 2 0 0 -151 0 P 295 111 -5.7351337967272420e-01 -8.2647110166747562e-01 -8.0206852911437488e+02 8.0206917132338140e+02 1.3497999999999999e-01 2 0 0 -152 0 V -15 0 0 0 0 0 2 1 0 P 109 21 5.1387124488148161e-01 -3.2205039602836177e-01 7.0657442164984490e+00 7.0917220367749429e+00 0 2 0 0 -15 0 P 110 21 -5.1387124488148161e-01 3.2205039602836177e-01 1.2307516868381542e+01 1.2322449090152261e+01 0 2 0 0 -15 0 P 296 92 0 0 1.9373261084879992e+01 1.9414171126927204e+01 1.2596807066429270e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 2 0 P 297 -211 -2.0317271556976602e-01 2.5215155745021967e-01 6.9362772865471038e+00 6.9452344770386132e+00 1.3957000000000000e-01 1 0 0 0 0 P 298 213 2.0317271556976602e-01 -2.5215155745021967e-01 1.2436983798332886e+01 1.2468936649888589e+01 8.3123740210821184e-01 2 0 0 -153 0 V -17 0 0 0 0 0 0 3 0 P 299 211 -1.3311297140433123e-01 8.2070871348664379e-02 -5.7585411632740287e-02 2.1737192922024559e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 -211 -4.2938482434311713e-03 -2.7874120168555949e-02 -7.8442671347478413e-02 1.6256826657142293e-01 1.3957000000000000e-01 1 0 0 0 0 P 301 111 -5.6562927896665088e-02 7.1792491889764123e-02 1.3922301670895176e-01 2.1437391512384674e-01 1.3497999999999999e-01 2 0 0 -154 0 V -18 0 0 0 0 0 0 3 0 P 302 -211 -3.3900975360586688e-01 -8.4631353862517522e-01 4.2709349160994501e+00 4.3693865772162566e+00 1.3957000000000000e-01 1 0 0 0 0 P 303 211 -2.5033979406491824e-01 -8.4753424823063292e-02 1.4403521465048290e+00 1.4710361132048297e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 111 4.3703572574240603e-02 -2.0242779338518258e-01 8.2366249511477030e-01 8.5995727803724942e-01 1.3497999999999999e-01 2 0 0 -155 0 V -19 0 0 0 0 0 0 2 0 P 305 211 -4.4526015143556819e-01 -1.8172716722569746e-01 2.8014743515334413e+00 2.8458776665492875e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 5.0842018629982250e-02 1.4907326768311860e-01 5.6043993017609459e+00 5.6082367000666684e+00 1.3497999999999999e-01 2 0 0 -156 0 V -20 0 0 0 0 0 0 3 0 P 307 211 -2.6929065983679287e-03 1.1285645195543136e-01 1.7468123181512798e+00 1.7560116429679400e+00 1.3957000000000000e-01 1 0 0 0 0 P 308 -211 2.0154960412591191e-01 1.2413227727648309e-02 1.7424304682299983e+01 1.7426033678885940e+01 1.3957000000000000e-01 1 0 0 0 0 P 309 111 1.7832916964188436e-01 1.0203661884238632e-01 6.3101949475202526e+00 6.3149816025416952e+00 1.3497999999999999e-01 2 0 0 -157 0 V -21 0 0 0 0 0 0 2 0 P 310 -211 -4.4685271127191584e-01 -5.1144332797634284e-01 2.5860721786668751e+01 2.5870014741698281e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -3.7818934872133403e-01 3.0769787513303087e-01 3.5216357845463044e+01 3.5220009154604917e+01 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 312 211 1.2991520945383486e-01 -4.4532952738337911e-01 6.3737149545197269e+01 6.3738990486838958e+01 1.3957000000000000e-01 1 0 0 0 0 P 313 111 6.1470547229871897e-01 7.5100028116748221e-02 1.5295545697336439e+02 1.5295677016844670e+02 1.3497999999999999e-01 2 0 0 -158 0 V -23 0 0 0 0 0 0 2 0 P 314 2212 -1.2219673877438203e-01 7.9464546996402807e-01 1.1677973569188712e+03 1.1677980106040429e+03 9.3827000000000005e-01 1 0 0 0 0 P 315 111 2.7147008407024571e-02 -4.1033510060823578e-02 3.3883584254530552e+02 3.3883587300298723e+02 1.3497999999999999e-01 2 0 0 -159 0 V -24 0 0 0 0 0 0 2 0 P 316 -2112 2.0383755609826110e-01 -2.5760982211119121e-01 2.8949200422010205e+02 2.8949371532336625e+02 9.3957000000000002e-01 1 0 0 0 0 P 317 -211 -1.2006795895647772e-01 -3.3979159078811655e-01 1.7601579920097041e+02 1.7601622346471694e+02 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 3 0 P 318 211 -2.2537908639659168e-01 -9.1510707193303495e-02 -1.5674323812313566e+00 1.5923234585813844e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 -211 -9.0395642249094277e-01 -7.5107488114054516e-02 -6.0381441426750193e+00 6.1074907139638022e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 111 -3.0344578816262824e-01 -1.5053812443678469e-01 -2.1562114705328037e+00 2.1868261429111868e+00 1.3497999999999999e-01 2 0 0 -160 0 V -26 0 -4.1412397752595289e-04 2.0836814097827171e-05 -1.9031113535077952e-03 1.9484927384605410e-03 0 2 0 P 321 22 -1.1382747632865017e-01 4.0426905399940288e-02 -4.4421580483599166e-01 4.6034629390672083e-01 0 1 0 0 0 0 P 322 22 -9.3172763389460167e-01 1.2180619503371494e-02 -4.3606443553300904e+00 4.4590900355259144e+00 0 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 323 -211 1.4254201284684628e-01 -2.0005022368394540e-01 -1.6107380024488089e+00 1.6353271889304617e+00 1.3957000000000000e-01 1 0 0 0 0 P 324 211 -6.8546508476741042e-01 -2.1439710587204105e-02 -4.4980583680071753e+00 4.5521786993180120e+00 1.3957000000000000e-01 1 0 0 0 0 V -28 0 0 0 0 0 0 1 0 P 325 130 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389741e+01 4.9767000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 3 0 P 326 211 2.5167538714079141e-01 7.4449632190263848e-02 -1.0977353280090194e+01 1.0981377330236525e+01 1.3957000000000000e-01 1 0 0 0 0 P 327 -211 5.3309548495712133e-01 -1.9899962064743846e-02 -1.1139730934144831e+01 1.1153370426674401e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 111 3.6504127426654226e-01 4.4096541971887332e-01 -1.2973198505790748e+01 1.2986523965417277e+01 1.3497999999999999e-01 2 0 0 -161 0 V -30 0 -3.0542603647347061e-05 2.9465768231238892e-04 1.1938413123666275e-03 1.2308051750146046e-03 0 2 0 P 329 22 -1.2899026002081496e-01 6.5304148426829556e-01 2.6509678462506225e+00 2.7332640174725600e+00 0 1 0 0 0 0 P 330 22 3.3611373239930027e-02 2.6711981058688078e-01 1.0771771633006568e+00 1.1103122798363956e+00 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 331 -211 7.4338762428573388e-02 -9.1962591215722234e-01 8.7346102008974533e+00 8.7843117668051978e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 211 9.6771833593088247e-02 3.6592751278901069e-02 6.1657454906619036e-01 6.4058393414079928e-01 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 3 0 P 333 -211 -2.6433657073505956e-01 2.1069054534130133e-01 1.4428354141759185e+00 1.4884616709288756e+00 1.3957000000000000e-01 1 0 0 0 0 P 334 211 -2.2718123810590876e-01 1.2236106234764597e-01 1.4061006963613412e+00 1.4363782571920345e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -1.0085983870637980e-01 3.2940453741149744e-01 2.1942990266122524e+00 2.2252747863854112e+00 1.3497999999999999e-01 2 0 0 -162 0 V -33 0 0 0 0 0 0 3 0 P 336 111 1.1452527962241617e-01 -2.1564067455358379e-01 8.3943073226767542e-02 2.9134683821396057e-01 1.3497999999999999e-01 2 0 0 -163 0 P 337 111 2.1798140389722739e-01 -1.6157765338157687e-01 1.0065385695279425e-01 3.1933372799749282e-01 1.3497999999999999e-01 2 0 0 -164 0 P 338 111 2.2698588685234231e-01 -1.2276536419061545e-03 -5.1030533476356360e-02 2.6897549276930482e-01 1.3497999999999999e-01 2 0 0 -165 0 V -34 0 0 0 0 0 0 2 0 P 339 211 1.2060933333105567e-01 -1.4039999345637508e-01 4.1279361792102048e-01 4.7343122557076578e-01 1.3957000000000000e-01 1 0 0 0 0 P 340 111 5.5822476482096692e-02 4.4613421369903616e-01 3.2961727402201504e-02 4.7059320159431600e-01 1.3497999999999999e-01 2 0 0 -166 0 V -35 0 0 0 0 0 0 2 0 P 341 -211 1.5862968892975057e-01 3.2887229730958190e-01 -1.3134574465456359e+00 1.3703906796727032e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 211 -7.6869516522485493e-01 4.5533957384061818e-01 -3.0077205291290707e+00 3.1407147197397411e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 1 0 P 343 310 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300331e+00 4.9767000000000000e-01 2 0 0 -167 0 V -37 0 0 0 0 0 0 3 0 P 344 -211 1.2005336521129144e-01 3.1092501659564013e-02 -5.0581641834251301e-01 5.3917491421880326e-01 1.3957000000000000e-01 1 0 0 0 0 P 345 211 -1.8221207856344207e-02 2.3427491252188562e-01 -2.3629269615407358e+00 2.3786803815412054e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 111 -2.5006494581839389e-01 4.3532067740099673e-01 -2.2251435360246208e+00 2.2850645342335896e+00 1.3497999999999999e-01 2 0 0 -168 0 V -38 0 0 0 0 0 0 3 0 P 347 -211 -5.9016838819195361e-01 1.7141108689545579e-02 -4.7192997852929928e+00 4.7581364831617305e+00 1.3957000000000000e-01 1 0 0 0 0 P 348 211 -1.1034022836323337e-01 -3.0323389382045547e-02 -5.3715563395821642e-01 5.6666606915529982e-01 1.3957000000000000e-01 1 0 0 0 0 P 349 111 -8.1222506767247327e-01 -1.5614030610523233e-01 -3.6477847557388130e+00 3.7428121219674733e+00 1.3497999999999999e-01 2 0 0 -169 0 V -39 0 0 0 0 0 0 2 0 P 350 -211 2.5084824323340603e-02 1.7172563836451307e-01 -1.9557957883483599e+00 1.9684348843444670e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 211 -1.2216198107297476e+00 -8.7922811659562079e-03 -1.0575853416897214e+01 1.0647092915287814e+01 1.3957000000000000e-01 1 0 0 0 0 V -40 0 -4.1813923581260875e-05 -4.2744931037189045e-05 -8.2670671209264686e-04 8.2920921206708917e-04 0 2 0 P 352 22 -1.7905707402183735e-01 -2.2906237901470136e-01 -4.2758823563526276e+00 4.2857555850287161e+00 0 1 0 0 0 0 P 353 22 -5.7679170138398558e-02 -1.2944913387952650e-02 -4.0465047292196826e-01 4.0894554978193431e-01 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 354 211 -5.9718795198551451e-02 2.6452495283792704e-01 -1.4674440599005480e+00 1.4988034023884778e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 -211 -1.9906708509140325e+00 2.6907668473360791e-01 -1.3946932089318674e+01 1.4091542399180899e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 356 211 -6.2484684743194474e-01 -3.3409804107312108e-01 -1.1050184857881687e+01 1.1073758181487090e+01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 -5.0312148003119694e-01 -7.2889076932598906e-01 -9.1202186249171646e+00 9.1641159062925084e+00 1.3497999999999999e-01 2 0 0 -170 0 V -43 0 0 0 0 0 0 2 0 P 358 22 8.1110939178376681e-02 7.1308275250644287e-02 -4.8974168720692255e+00 4.8986075443335881e+00 0 1 0 0 0 0 P 359 113 -2.0696099258902326e-01 -2.7810589977472516e-01 -1.5641875994409514e+01 1.5664434449557323e+01 7.6553658047847217e-01 2 0 0 -171 0 V -44 0 0 0 0 0 0 2 0 P 360 321 1.0329203360506498e-01 -8.7387326781869390e-01 -1.7137062043677236e+01 1.7166737027788869e+01 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 -3.6221071693300189e-01 -2.2380794372185306e-01 -6.2905068714809262e+00 6.3064445675977261e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 362 111 1.6889257592659648e-01 -9.4484418283927146e-02 -1.7355837553971882e+00 1.7515486233331292e+00 1.3497999999999999e-01 2 0 0 -172 0 P 363 111 2.9925921186909250e-02 -2.0438383490219006e-01 -8.4333768920500407e-01 8.7869583540713725e-01 1.3497999999999999e-01 2 0 0 -173 0 P 364 111 1.7676219299632576e-01 -3.0235125400102209e-01 -1.5675602911553823e+00 1.6118703485317942e+00 1.3497999999999999e-01 2 0 0 -174 0 V -46 0 0 0 0 0 0 2 0 P 365 311 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 2 0 0 -175 0 P 366 111 3.7898161351632903e-01 -2.1799505613207515e-01 1.2846742739940369e+00 1.3637288948114183e+00 1.3497999999999999e-01 2 0 0 -176 0 V -47 0 2.6817846767744381e+01 5.9063419656930051e+01 1.4231157227461964e+02 1.6104165445601933e+02 0 2 0 P 367 2112 5.8115766378682054e-01 1.6774805152241707e+00 3.8726477300170425e+00 4.3625539921978111e+00 9.3957000000000002e-01 1 0 0 0 0 P 368 211 2.4959276451014145e-01 1.5215784469419352e-01 5.3581207820857168e-01 6.2611734191921709e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 5.5561167844417639e+02 2.9648203464623077e+02 1.9902630414974558e+03 2.1243805076085168e+03 0 2 0 P 369 -3122 1.5246765486763587e+00 6.8901077612516815e-01 5.2717372079757707e+00 5.6422805212127161e+00 1.1156800000000000e+00 2 0 0 -177 0 P 370 111 3.2954996931296582e-01 3.0043000072794990e-01 1.3703091213103993e+00 1.4473520843105354e+00 1.3497999999999999e-01 2 0 0 -178 0 V -49 0 0 0 0 0 0 1 0 P 371 310 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425934e+00 4.9767000000000000e-01 2 0 0 -179 0 V -50 0 0 0 0 0 0 2 0 P 372 3122 4.0008082281271762e-01 1.7226597706454996e-01 3.7675672439506922e+00 3.9533587026383934e+00 1.1156800000000000e+00 2 0 0 -180 0 P 373 211 -7.6127966935382194e-02 -1.5658972981337069e-01 3.8956794592278010e-01 4.4895298219661400e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 374 311 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -181 0 P 375 111 3.2308081006429989e-01 1.4648299619720992e-02 1.7578846612369856e+00 1.7924770194135893e+00 1.3497999999999999e-01 2 0 0 -182 0 V -52 0 0 0 0 0 0 1 0 P 376 130 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645051e+00 4.9767000000000000e-01 1 0 0 0 0 V -53 0 2.3332650498310875e-04 -3.2982236468777218e-04 3.3984253089612997e-03 3.4224319558740653e-03 0 2 0 P 377 22 5.4748163446670128e-01 -7.7073006323284021e-01 7.4008500562631090e+00 7.4609880395118520e+00 0 1 0 0 0 0 P 378 22 8.3117379614621023e-01 -1.1780900857995524e+00 1.2679412612871024e+01 1.2761122612728558e+01 0 1 0 0 0 0 V -54 0 0 0 0 0 0 3 0 P 379 -211 2.5687463659686677e-01 6.5879190823043429e-02 5.2726859506992803e+00 5.2811950888328152e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 211 2.4344618234348475e-01 -2.6033907415343182e-02 5.2831048139718035e+00 5.2906162276567530e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.1545823294251452e-01 2.7789258533843370e-01 6.1072318419705818e+00 6.1231722626181826e+00 1.3497999999999999e-01 2 0 0 -183 0 V -55 0 0 0 0 0 0 2 0 P 382 -211 4.1775258590954462e-01 -7.2867077866813867e-01 9.3546085054334149e+00 9.3932772982354855e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 211 8.9904020598760359e-01 -4.4760234187789893e-01 7.1721270095470473e+00 7.2434457804563630e+00 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 1 0 P 384 310 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280088e+01 4.9767000000000000e-01 2 0 0 -184 0 V -57 0 0 0 0 0 0 2 0 P 385 -321 7.1424613341219384e-02 -2.0219924047183085e-01 8.2801006520162108e+00 8.2975715589416641e+00 4.9359999999999998e-01 1 0 0 0 0 P 386 211 1.6529271006823174e-01 7.4012628886196002e-02 8.1941799863168385e-01 8.5072039508754027e-01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 8.4540998512518928e-06 4.3079133421901049e-05 3.7461531531249770e-03 3.7464532500979474e-03 0 2 0 P 387 22 3.6906006137794822e-02 2.7604572388385823e-01 1.8433548845177015e+01 1.8435652587377820e+01 0 1 0 0 0 0 P 388 22 2.6763598711565674e-02 4.8392294413164484e-02 9.7795187978948146e+00 9.7796751491423581e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 389 -211 -2.7048272019072223e-01 -3.3337801697846353e-01 2.0863152665314590e+01 2.0868035861701252e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 211 -3.6903342906120246e-01 -1.0185232158680115e-01 1.1405057272625475e+01 1.1412334149679658e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 4.4216843280863220e-02 -2.3386132928312431e-01 1.6740237914530020e+01 1.6742473869952200e+01 1.3497999999999999e-01 2 0 0 -185 0 V -60 0 0 0 0 0 0 2 0 P 392 -211 3.6535041280299030e-01 2.8363138994268199e-02 1.4670351021381544e+01 1.4675590763824106e+01 1.3957000000000000e-01 1 0 0 0 0 P 393 211 -1.9095740484233517e-01 1.6790139995297170e-02 6.4695094038113599e+00 6.4738534390399041e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 -5.5865219181540288e-07 -6.7518234192367481e-06 3.0359197674457219e-04 3.0366903838848478e-04 0 2 0 P 394 22 -8.9078266023006322e-02 -9.5497267321269530e-01 4.3017933459134625e+01 4.3028624273134682e+01 0 1 0 0 0 0 P 395 22 9.4738480655445784e-03 -7.1196291432936137e-03 2.4201066955966205e-01 2.4230065434707967e-01 0 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 396 211 9.3430636949675128e-02 4.8614313543461886e-02 7.8310333940595754e+01 7.8310529140773440e+01 1.3957000000000000e-01 1 0 0 0 0 P 397 -211 -3.3716277400515381e-02 -3.8674399200696202e-01 4.2514631322717214e+01 4.2516632792287105e+01 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 398 311 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -186 0 P 399 111 -4.2885849112531471e-01 -1.5673053900609951e-01 6.7992945942717043e+01 6.7994613033952248e+01 1.3497999999999999e-01 2 0 0 -187 0 V -64 0 0 0 0 0 0 2 0 P 400 -311 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -188 0 P 401 -211 1.2172230641498865e-02 3.7825020894308725e-01 1.1158794225620269e+02 1.1158867128047673e+02 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 402 211 4.3187380787425550e-01 -3.8323959647493888e-01 2.6988168414236554e+02 2.6988233788612160e+02 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -7.3218584890651639e-02 -9.0155059350643107e-02 2.9370017637223118e+01 2.9370557442906950e+01 1.3497999999999999e-01 2 0 0 -189 0 V -66 0 0 0 0 0 0 1 0 P 404 130 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 405 111 6.5309564888249233e-03 -6.6103335182406145e-02 9.7992131137707318e+01 9.7992246615813144e+01 1.3497999999999999e-01 2 0 0 -190 0 P 406 111 1.2000194664104810e-01 4.1020079997362527e-02 6.8020962999834879e+01 6.8021215147477818e+01 1.3497999999999999e-01 2 0 0 -191 0 P 407 111 1.3341098289792858e-01 -1.9463592052468182e-01 7.4411204543115218e+01 7.4411701114741675e+01 1.3497999999999999e-01 2 0 0 -192 0 V -68 0 0 0 0 0 0 2 0 P 408 130 1.5093662397629165e-01 1.0034531946336880e-01 2.1097599386832690e+02 2.1097665869760286e+02 4.9767000000000000e-01 1 0 0 0 0 P 409 310 4.3080355445905313e-02 -5.0908312604978634e-02 1.8471279506626348e+02 1.8471347753803366e+02 4.9767000000000000e-01 2 0 0 -193 0 V -69 0 0 0 0 0 0 3 0 P 410 211 -8.8986611946982638e-02 6.9570257664758217e-02 7.3060465880930776e+00 7.3082525387498647e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 -211 3.2612733257024029e-01 -9.3180200276067285e-02 1.7277474714617092e+01 1.7281367245849093e+01 1.3957000000000000e-01 1 0 0 0 0 P 412 111 1.7497647683607498e-01 2.9324661225942372e-01 2.1511858118518035e+01 2.1514991741915633e+01 1.3497999999999999e-01 2 0 0 -194 0 V -70 0 0 0 0 0 0 2 0 P 413 3122 7.9052202219132631e-02 6.3510108851245561e-01 1.6014488825012842e+02 1.6015005331610672e+02 1.1156800000000000e+00 2 0 0 -195 0 P 414 22 -3.2938919233779070e-02 1.2000652117164945e-01 1.3097090740719890e+01 1.3097681947893477e+01 0 1 0 0 0 0 V -71 0 1.2757481431566603e+01 2.5785202550200765e+01 2.9183729040974845e+03 2.9190533818123808e+03 0 2 0 P 415 -2112 3.3471436843346714e-01 4.2790066680758426e-01 4.3607026156806192e+01 4.3620530197538514e+01 9.3957000000000002e-01 1 0 0 0 0 P 416 211 -6.2296610291816372e-02 1.2270543124036619e-01 1.8710650589986333e+01 1.8711677176992062e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 417 -211 -5.3966998199939242e-01 4.8812533848599660e-01 1.8762747152632105e+01 1.8777371235986347e+01 1.3957000000000000e-01 1 0 0 0 0 P 418 111 -5.7889405922723680e-01 1.3796403726787261e+00 2.5610021578658795e+01 2.5654043555539207e+01 1.3497999999999999e-01 2 0 0 -196 0 V -73 0 0 0 0 0 0 3 0 P 419 -211 8.4195936056102455e-03 2.0789552799372421e-01 3.9004499495231943e+00 3.9084883310241265e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 211 3.4367819715696907e-01 6.4192760786830705e-01 1.3652165927200944e+01 1.3672282181321119e+01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -1.5640860092586314e-01 4.2312643186493037e-01 1.3320213189149028e+01 1.3328533251358381e+01 1.3497999999999999e-01 2 0 0 -197 0 V -74 0 0 0 0 0 0 2 0 P 422 311 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 2 0 0 -198 0 P 423 211 -2.0753747025873301e-01 -4.8462844466245950e-02 5.2824018809414319e+00 5.2885413740963330e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 424 -311 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -199 0 P 425 -211 -4.1519813495381386e-01 6.1074003971623614e-01 1.3946591518839895e+01 1.3966828117566944e+01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 -4.4604980650574202e-05 4.2549743859432887e-05 6.8888361593526519e-04 6.9167461880071085e-04 0 2 0 P 426 22 -2.3131739921367450e-01 1.5252274105477401e-01 2.7591004671769230e+00 2.7729778783275121e+00 0 1 0 0 0 0 P 427 22 -5.9525611351398500e-01 6.3596524245253083e-01 1.0006580449597873e+01 1.0044423025966090e+01 0 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 428 211 -3.2420035273119030e-01 1.8115415106660560e-01 2.8463603409524980e+00 2.8738771147366253e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 111 -4.7013843405478062e-01 2.5458951359646992e-01 1.4732054041670690e+01 1.4742370292958812e+01 1.3497999999999999e-01 2 0 0 -200 0 V -78 0 -1.3983035899499822e-05 -9.4089835037750707e-06 1.1830050938585944e-04 1.1951215794275435e-04 0 2 0 P 430 22 -4.7587767431975525e-01 -4.0016980423991849e-01 4.2600418017949506e+00 4.3051773002028346e+00 0 1 0 0 0 0 P 431 22 -4.5726968426710041e-01 -2.2773161621263621e-01 3.6346535023087179e+00 3.6703764568525643e+00 0 1 0 0 0 0 V -79 0 0 0 0 0 0 3 0 P 432 -211 -6.2150685489726676e-01 7.8100740241283148e-02 5.0205055395510092e+00 5.0613561575799917e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 211 -7.7339441987470581e-01 1.6872379521568628e-01 7.8500433457686851e+00 7.8910878187428972e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 111 -9.2488054483451543e-02 -7.9140138834743121e-03 4.0111873824442554e+00 4.0145311668136143e+00 1.3497999999999999e-01 2 0 0 -201 0 V -80 0 0 0 0 0 0 2 0 P 435 -211 -4.8881373301361830e-01 -1.8868727647097155e-02 3.4599769991687270e+00 3.4971725027716833e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -3.7445793681717549e-01 1.5118880704323107e-01 1.8091182442045874e+00 1.8585492255343738e+00 1.3497999999999999e-01 2 0 0 -202 0 V -81 0 0 0 0 0 0 2 0 P 437 311 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 2 0 0 -203 0 P 438 211 -2.3124155086897880e-01 -3.3684822055876906e-01 2.8743198814706590e+00 2.9065673817166879e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 1 0 P 439 310 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696908e+00 4.9767000000000000e-01 2 0 0 -204 0 V -83 0 -2.1481408161251331e+01 -1.5391382865966664e+01 1.1692797845173176e+02 1.2068571580492544e+02 0 2 0 P 440 2112 -1.6685242240378610e+00 -9.6565662968149657e-01 8.3457714687441840e+00 8.6169112218969399e+00 9.3957000000000002e-01 1 0 0 0 0 P 441 -211 -1.7567257005407436e-01 -3.5570641714419182e-01 1.6925929337025740e+00 1.7440580641672592e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 442 22 -6.9369290055963195e-01 -7.3844423871074344e-02 2.3778260423066357e+00 2.4780475230905736e+00 0 1 0 0 0 0 P 443 22 -7.6468156281616251e-01 2.4663860074517008e-01 5.0294047936938737e+00 5.0931798584695036e+00 0 1 0 0 0 0 V -85 0 -6.6124195948730431e+01 -1.0263657618316149e+01 2.4380496232626649e+02 2.5441240022602068e+02 0 2 0 P 444 -2112 -2.6292253938341017e+00 -3.1653082360471818e-01 9.7026808524626684e+00 1.0101377403281182e+01 9.3957000000000002e-01 1 0 0 0 0 P 445 211 -1.5793429719293592e-01 -1.1608619934484518e-01 5.7378986628914297e-01 6.2220080638349406e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 1 0 P 446 130 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 1 0 0 0 0 V -87 0 -1.4785007413585779e-04 1.0460714170320036e-04 6.7496830209288431e-04 6.9899018164531828e-04 0 2 0 P 447 22 -1.1609632116846085e+00 8.6534513767992827e-01 5.5108258561418211e+00 5.6978820102659693e+00 0 1 0 0 0 0 P 448 22 -2.4053537946929221e-01 1.2624558405996367e-01 8.8732531142187587e-01 9.2797706036356664e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 449 211 -6.4642357927476746e-01 1.1410649784545004e+00 3.3132734348513795e+00 3.5661117996901934e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -3.2004126714524589e-01 -1.1135464409877557e-01 6.1457691455920416e-01 7.1466821235270495e-01 1.3497999999999999e-01 2 0 0 -205 0 V -89 0 0 0 0 0 0 2 0 P 451 211 -1.4766341798580660e+00 9.1994134776747574e-02 1.4809242821358144e+00 2.0979818722472086e+00 1.3957000000000000e-01 1 0 0 0 0 P 452 -211 -1.0778601093704292e-01 2.3561879031471655e-01 1.4921998441808487e-01 3.2997034283829840e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 453 -211 -8.7329616946689381e-01 7.5263142472155542e-02 1.1650286431975723e+00 1.4646099359867493e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -2.9777776686384994e-01 -8.0547593658780198e-02 6.8472481772166038e-01 7.6303813121403208e-01 1.3497999999999999e-01 2 0 0 -206 0 V -91 0 0 0 0 0 0 2 0 P 455 -211 -9.2323025441794174e-02 2.1477743632714319e-01 2.6616411783798294e-01 3.8075715450462372e-01 1.3957000000000000e-01 1 0 0 0 0 P 456 211 -5.2861165827062040e-01 -3.0144617240813948e-01 6.9289944636708889e-01 9.3267867338915345e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 457 2212 -1.9226228964946190e+00 2.5105496858605597e-01 1.9639306251800579e+00 2.9149410787865397e+00 9.3827000000000005e-01 1 0 0 0 0 P 458 211 -9.5913754813531829e-02 -5.9193858801682174e-02 2.8617380939696824e-01 3.3775522996252194e-01 1.3957000000000000e-01 1 0 0 0 0 V -93 0 -8.5110838608413631e-05 4.1473221999532737e-05 1.0635397372811340e-04 1.4292944052024268e-04 0 2 0 P 459 22 -5.5038113910546993e-01 2.6249674384585009e-01 5.8411685220637644e-01 8.4440300558690229e-01 0 1 0 0 0 0 P 460 22 -3.7604859945431929e-01 1.8893842989312667e-01 5.7354397791486122e-01 7.1138103295240995e-01 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 461 -2212 -3.0034647518820718e+00 -1.6340168897528362e-01 -3.6167654414129125e-01 3.1715392387987253e+00 9.3827000000000005e-01 1 0 0 0 0 P 462 -211 -9.9808795989746471e-02 7.8038172306701056e-02 2.9877714933164998e-03 1.8852178593570948e-01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 463 211 -2.0619999689447668e-01 5.0362776002960541e-01 5.9809251368635086e-01 8.2058137879151127e-01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 -7.2060053006415647e-01 -4.0517804881935883e-02 5.6934870723784692e-01 9.2913097423054491e-01 1.3497999999999999e-01 2 0 0 -207 0 V -96 0 0 0 0 0 0 2 0 P 465 -211 -2.0385821111055416e-01 -3.6220140979609450e-01 -7.8664292450954840e-02 4.4543898269267251e-01 1.3957000000000000e-01 1 0 0 0 0 P 466 211 -1.4838247005119132e+00 2.9157889972211171e-01 3.6887338885485912e-02 1.5190768437714002e+00 1.3957000000000000e-01 1 0 0 0 0 V -97 0 -5.4731838131263985e-06 5.4223328431606724e-06 -2.4864535247821415e-05 4.6844190806467883e-05 0 2 0 P 467 22 -1.9705846225357582e-03 1.5069638392957595e-02 -1.2178071002327252e-01 1.2272537854421744e-01 0 1 0 0 0 0 P 468 22 -1.6998605160285816e-02 3.7233099675300502e-03 3.5604161951491492e-02 3.9629180697784289e-02 0 1 0 0 0 0 V -98 0 3.7976633007273047e-01 -1.0402996262150903e+00 3.1427968709405993e+00 6.8202662257423352e+00 0 2 0 P 469 -2212 7.1289145041890822e-02 -1.5445558513177707e-01 6.0981027764510254e-01 1.1318824309974957e+00 9.3827000000000005e-01 1 0 0 0 0 P 470 211 -8.9415716901796184e-05 -4.0582905482218282e-02 -2.0589304602182137e-02 1.4680151421749890e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 471 -321 1.0038375018802244e-01 -9.5747959943768235e-01 5.8014328305206309e-01 1.2276201649987597e+00 4.9359999999999998e-01 1 0 0 0 0 P 472 321 3.7534065996306060e-01 -1.1899418219581674e+00 6.8690896405823920e-01 1.5074239733964006e+00 4.9359999999999998e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 473 310 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679946e-01 4.9767000000000000e-01 2 0 0 -208 0 V -101 0 1.1488333490807863e-05 -8.2134136583885698e-06 1.0412367046470049e-06 1.4211335104077831e-05 0 2 0 P 474 22 1.4435757764459331e-01 -1.5555736336425940e-01 -9.6165086740462012e-04 2.1222188457519126e-01 0 1 0 0 0 0 P 475 22 1.1497315002184079e+00 -7.6963243163915995e-01 1.1825046808635874e-01 1.3885963328584443e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 476 -211 6.4291291426941599e-01 -4.9454709508610400e-01 6.2481354543056222e-01 1.0333371163594225e+00 1.3957000000000000e-01 1 0 0 0 0 P 477 111 5.8327712404768117e-01 -3.3838310708820062e-02 -1.0279826521739548e-01 6.0839487049174457e-01 1.3497999999999999e-01 2 0 0 -209 0 V -103 0 0 0 0 0 0 3 0 P 478 -211 1.9367344517678403e-01 -1.3441370752915358e-01 7.4193503682874140e-02 2.8383253694232846e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 211 3.3161504232253403e-01 -5.0838567942118260e-02 -2.1167271648523855e-01 4.2052136698296505e-01 1.3957000000000000e-01 1 0 0 0 0 P 480 111 1.3495368175734179e-01 2.7928011534105107e-01 -1.0259061989741322e-01 3.5348877596849970e-01 1.3497999999999999e-01 2 0 0 -210 0 V -104 0 0 0 0 0 0 3 0 P 481 -211 1.8298976692532751e-01 -1.4862546174945823e-01 -1.0669585020692001e-02 2.7416857519442145e-01 1.3957000000000000e-01 1 0 0 0 0 P 482 211 2.7086816075914885e-02 -5.0652211916194179e-02 -9.4710643744833831e-03 1.5122442969811159e-01 1.3957000000000000e-01 1 0 0 0 0 P 483 221 1.2845279464367001e+00 -8.7400716062721828e-01 1.1601691786904229e-01 1.6513818424992961e+00 5.4744999999999999e-01 2 0 0 -211 0 V -105 0 0 0 0 0 0 3 0 P 484 211 2.4242331910144835e-01 -2.8879973733053099e-01 -2.4863283611991935e-01 4.7272870234774300e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 -211 5.3606262164470220e-01 -1.7527092030547467e-01 -3.2520793996948161e-01 6.6582506632636862e-01 1.3957000000000000e-01 1 0 0 0 0 P 486 111 2.1571688053683633e-01 8.8605080149143992e-02 -4.8746602875841349e-01 5.5698057629533038e-01 1.3497999999999999e-01 2 0 0 -212 0 V -106 0 0 0 0 0 0 2 0 P 487 211 -3.3784735675481313e-02 -9.4428454817126785e-03 -8.6200214725578900e-02 1.6775231030954402e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 9.6206029689247208e-01 1.3509767941794806e-01 -5.0910824460725901e-01 1.1050892285096399e+00 1.3497999999999999e-01 2 0 0 -213 0 V -107 0 0 0 0 0 0 2 0 P 489 3122 1.2861282209344809e+00 -8.7616170010251626e-01 -1.1087966059631398e+00 2.2126809307277004e+00 1.1156800000000000e+00 2 0 0 -214 0 P 490 22 2.3823290983993460e-02 -3.8002312850236149e-02 -1.2232411835639999e-01 1.3028781565037384e-01 0 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 491 -3122 1.3328849122824100e+00 -6.2435441660021751e-01 -1.8753445922776306e+00 2.6321207854320132e+00 1.1156800000000000e+00 2 0 0 -215 0 P 492 22 -8.6793945698304606e-03 -6.2028871281813447e-02 -5.8490328649674642e-02 8.5697323809682271e-02 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 493 211 1.6352498208888305e-01 -5.7698647102462766e-02 -3.4427479907372972e-02 2.2524340149579661e-01 1.3957000000000000e-01 1 0 0 0 0 P 494 111 2.8247870669961922e-01 -7.4957522644161190e-01 -1.5999106250015693e+00 1.7943218351863734e+00 1.3497999999999999e-01 2 0 0 -216 0 V -110 0 0 0 0 0 0 3 0 P 495 -211 1.9545074995621259e-01 -6.5403151837277684e-01 -1.9204953951975325e+00 2.0429734630088499e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 211 2.8530693106995164e-01 -2.5403511663583600e-01 -1.3820998203697235e+00 1.4406989913811832e+00 1.3957000000000000e-01 1 0 0 0 0 P 497 111 1.1118101086868773e-01 -1.0946894276283572e-01 -1.8049765880746443e-01 2.7412346094847867e-01 1.3497999999999999e-01 2 0 0 -217 0 V -111 0 0 0 0 0 0 2 0 P 498 211 5.2489225794783434e-02 -7.1433658617988982e-01 -8.0907252155347420e-01 1.0895457802279682e+00 1.3957000000000000e-01 1 0 0 0 0 P 499 -211 -7.0162598000169468e-02 -2.1998190618881033e+00 -4.0000184569751065e+00 4.5676858622551855e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 500 -211 -6.9126424432539562e-03 -1.9094039395394029e+00 -3.7142119420282071e+00 4.1786027956912930e+00 1.3957000000000000e-01 1 0 0 0 0 P 501 211 -5.6280926039835466e-01 -1.5909823395649245e+00 -2.9466797866551953e+00 3.3985850906487438e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 502 -211 -4.5125981166231938e-01 -2.2885562268996611e+00 -7.8060779803421063e+00 8.1483408275172575e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 111 -4.0916682921175401e-01 -5.6782104173729964e-01 -1.7297891211800389e+00 1.8708896904199468e+00 1.3497999999999999e-01 2 0 0 -218 0 V -114 0 0 0 0 0 0 2 0 P 504 -211 -7.4464548608927983e-01 -3.6972942406954323e-01 -1.6269637249242004e+00 1.8323993817110846e+00 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -7.0853080396387519e-02 -9.7334723246626897e-01 -2.8355858217151724e+00 3.0018646782730749e+00 1.3497999999999999e-01 2 0 0 -219 0 V -115 0 -4.4271586228711654e-04 -6.2527340299215362e-04 -2.2046764270680914e-03 2.3341945272698796e-03 0 2 0 P 506 22 -1.3167327456731837e+00 -1.9679441103467479e+00 -6.8025667273536978e+00 7.2028815917711775e+00 0 1 0 0 0 0 P 507 22 -6.7322677191089320e-01 -8.4259164264931008e-01 -3.1072133662995611e+00 3.2890682368097313e+00 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 508 22 -6.3304411189734389e-01 -3.2192633161853706e-01 -2.8083682316781022e+00 2.8967764040905983e+00 0 1 0 0 0 0 P 509 22 1.9771856363578318e-02 1.3138657691549580e-01 -4.6416117912995120e-01 4.8280323021800525e-01 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 510 -211 1.2905330776752127e-01 -1.9241956541400762e-01 -1.1309582654954131e+00 1.1628527114782197e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 211 -5.8308992464302445e-01 1.0551674893998715e-01 -1.7057966442647523e+00 1.8111735480102293e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 512 211 -1.0702332936833268e+00 -1.2362155306792325e-01 -3.5129628615751138e+00 3.6771006843703913e+00 1.3957000000000000e-01 1 0 0 0 0 P 513 111 -5.3571023339742208e-01 -4.2429834656588200e-01 -1.2317904223107861e+00 1.4151119340751270e+00 1.3497999999999999e-01 2 0 0 -220 0 V -119 0 0 0 0 0 0 2 0 P 514 -211 -3.0625466188265321e-01 3.7393789633251995e-01 -2.3822328467080025e+00 2.4347760860237151e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -1.1877082827584302e+00 -1.4495582357241707e-01 -4.9527014937435956e+00 5.0970967252692567e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 516 211 -5.7282502290046045e-01 6.2193140407372827e-01 -4.0846424054614676e+00 4.1735728750829395e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 -211 -3.3406291594068510e-01 2.9216957663837884e-01 -1.0712142160796640e+00 1.1678787501067960e+00 1.3957000000000000e-01 1 0 0 0 0 P 518 111 -9.7287169787745642e-01 9.3648140612577135e-01 -4.9663775081437977e+00 5.1484562655563915e+00 1.3497999999999999e-01 2 0 0 -221 0 V -121 0 0 0 0 0 0 3 0 P 519 -211 -1.6747337785881769e-01 3.5532788349039501e-01 -3.9408681763983484e+00 3.9628559153376308e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 211 -6.5606740246757667e-01 4.1021848185040549e-01 -5.1552311937230400e+00 5.2148434382124345e+00 1.3957000000000000e-01 1 0 0 0 0 P 521 111 -9.8980626799547733e-01 9.5314432706144425e-01 -8.1663178562499699e+00 8.2822199612229355e+00 1.3497999999999999e-01 2 0 0 -222 0 V -122 0 0 0 0 0 0 1 0 P 522 310 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -223 0 V -123 0 0 0 0 0 0 1 0 P 523 130 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 524 2112 -1.0025411444960000e+00 2.4762507505735337e-01 -4.0375055415801917e+01 4.0399186854913061e+01 9.3957000000000002e-01 1 0 0 0 0 P 525 -211 -1.6959727163324345e-01 -1.6800409071732988e-01 -1.7423004000958901e+01 1.7425198329183317e+01 1.3957000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 526 22 -1.3535102538818325e-01 2.7952478983467072e-01 -1.0071553705504458e+01 1.0076341005100328e+01 0 1 0 0 0 0 P 527 111 -1.2123356349978728e-01 -1.6211416756109540e-01 -5.5997755981185016e+01 5.5998284555055655e+01 1.3497999999999999e-01 2 0 0 -224 0 V -126 0 0 0 0 0 0 2 0 P 528 -2112 -1.1057290404247513e+00 6.2289478049111918e-02 -6.1903745329327961e+01 6.1920779987602771e+01 9.3957000000000002e-01 1 0 0 0 0 P 529 211 -6.1466580203770856e-03 -5.7579674420682771e-02 -1.3191541370223055e+01 1.3192406782218230e+01 1.3957000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 530 211 -1.1448623887606267e-01 2.2926459753080367e-01 -3.0975827552287125e+01 3.0977201966744886e+01 1.3957000000000000e-01 1 0 0 0 0 P 531 111 -6.4009284804650257e-01 -2.3111962493635937e-01 -2.9876091145652161e+01 2.9884145911818635e+01 1.3497999999999999e-01 2 0 0 -225 0 V -128 0 0 0 0 0 0 2 0 P 532 321 -4.2042955560296735e-01 -1.2490778497195061e+00 -5.9513329992444312e+01 5.9529967614937071e+01 4.9359999999999998e-01 1 0 0 0 0 P 533 -211 -1.0313733458053201e-01 -7.0400711458499202e-02 -2.8894441217660987e+00 2.8955069828385667e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 534 -311 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 2 0 0 -226 0 P 535 111 -3.0204755368595976e-01 -1.6351430669869163e-01 -5.2367869292747669e+00 5.2497739566771697e+00 1.3497999999999999e-01 2 0 0 -227 0 V -130 0 0 0 0 0 0 2 0 P 536 -211 8.3272019658133953e-02 -5.8888391597143805e-02 -1.6303543496742719e+01 1.6304459893139811e+01 1.3957000000000000e-01 1 0 0 0 0 P 537 111 6.6605733427034197e-01 -1.7292264416263661e+00 -3.7908094748553331e+01 3.7953599612219286e+01 1.3497999999999999e-01 2 0 0 -228 0 V -131 0 0 0 0 0 0 2 0 P 538 2212 1.8283077509902117e+00 -2.1301051224982039e+00 -3.4175830882779856e+01 3.4303758164179229e+01 9.3827000000000005e-01 1 0 0 0 0 P 539 211 3.0224699916305181e-01 -7.5748814927978214e-01 -1.2117027005089897e+01 1.2145244533222879e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 540 -211 2.9089982035438711e+00 -2.0049546659832567e+00 -5.4478784483466150e+01 5.4593402095323952e+01 1.3957000000000000e-01 1 0 0 0 0 P 541 111 4.1163369951677076e-02 -5.6164476493590937e-02 -3.2256750887045871e+00 3.2292488677299129e+00 1.3497999999999999e-01 2 0 0 -229 0 V -133 0 0 0 0 0 0 2 0 P 542 -211 5.0717790540492147e-01 -2.4060572472866068e-01 -8.6236125848834497e+00 8.6429910529609675e+00 1.3957000000000000e-01 1 0 0 0 0 P 543 111 9.3829091664395015e-01 -4.9684244001810385e-01 -8.6346399707229047e+00 8.7007165957101105e+00 1.3497999999999999e-01 2 0 0 -230 0 V -134 0 0 0 0 0 0 3 0 P 544 211 4.5954362992296782e-01 8.6416140913779915e-01 -8.7890621302093646e+00 8.8444925350427077e+00 1.3957000000000000e-01 1 0 0 0 0 P 545 -211 9.4305394931758113e-01 6.6626012771725274e-01 -1.1950069870091166e+01 1.2006535844866745e+01 1.3957000000000000e-01 1 0 0 0 0 P 546 111 1.3075624676811948e-01 1.5878439486650184e-01 -1.8220760533686400e+00 1.8386110042043819e+00 1.3497999999999999e-01 2 0 0 -231 0 V -135 0 0 0 0 0 0 2 0 P 547 211 7.9758207878700105e-01 -1.6524061860885875e-01 -1.0614913456712763e+01 1.0647032878358276e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 3.9421602644851994e-01 4.0612667204372616e-01 -9.2479455248273013e+00 9.2662323076764856e+00 1.3497999999999999e-01 2 0 0 -232 0 V -136 0 0 0 0 0 0 2 0 P 549 -2212 1.4529231513669718e+00 6.7132069972024366e+00 -1.0693024923461154e+02 1.0715473244724242e+02 9.3827000000000005e-01 1 0 0 0 0 P 550 111 3.4546160491339739e-01 6.5319882092581749e-01 -1.3000506217906223e+01 1.3022188523529621e+01 1.3497999999999999e-01 2 0 0 -233 0 V -137 0 0 0 0 0 0 3 0 P 551 211 6.2755527675323730e-01 6.0114867548809129e-03 -1.0298936787768188e+01 1.0318984470707317e+01 1.3957000000000000e-01 1 0 0 0 0 P 552 -211 6.4967361087830230e-02 2.2450897404247538e-01 -2.6190259359222110e+00 2.6331353317605108e+00 1.3957000000000000e-01 1 0 0 0 0 P 553 111 4.5838118845983800e-01 1.2267763293042569e-01 -7.8049827756144694e+00 7.8205587296301156e+00 1.3497999999999999e-01 2 0 0 -234 0 V -138 0 0 0 0 0 0 2 0 P 554 211 -1.0986898001611440e-02 8.1246665145864017e-01 -1.4137328085179032e+01 1.4161346967875335e+01 1.3957000000000000e-01 1 0 0 0 0 P 555 -211 1.2706214782209646e+00 3.7625845228912844e+00 -5.9629496594894640e+01 5.9761759220912069e+01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 556 2212 1.3696519165972645e+00 1.5331848955082423e+00 -7.6247102479807822e+01 7.6280584616635380e+01 9.3827000000000005e-01 1 0 0 0 0 P 557 111 1.4939844155469140e-01 1.0499940576496405e-01 -1.3766571370615983e+01 1.3768444054148370e+01 1.3497999999999999e-01 2 0 0 -235 0 V -140 0 0 0 0 0 0 2 0 P 558 211 -9.5122343388916453e-02 -8.7062377719035661e-02 -1.3923673280689432e+01 1.3924969857421980e+01 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.0090468201654286e-01 2.0922614780440552e-01 -6.9890866039604012e+00 6.9999907404683954e+00 1.3497999999999999e-01 2 0 0 -236 0 V -141 0 0 0 0 0 0 2 0 P 560 -2212 7.9956755782367109e-03 1.0612947857400963e+00 -3.6475219951094530e+01 3.6502718140252128e+01 9.3827000000000005e-01 1 0 0 0 0 P 561 -211 2.9756447288738652e-01 5.3445742814974107e-01 -1.5218801822702183e+01 1.5231729975994600e+01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 562 22 2.1051712033551939e-02 -4.1142823590531133e-02 -4.3854423292326006e+00 4.3856858448294718e+00 0 1 0 0 0 0 P 563 223 5.9054283904099991e-01 1.0275694888814868e+00 -3.9010136598470304e+01 3.9035975581664637e+01 7.8229935560695696e-01 2 0 0 -237 0 V -143 0 0 0 0 0 0 2 0 P 564 -211 5.5342689869080886e-01 1.2598230811957775e-01 -1.8747614937148573e+01 1.8756724087394630e+01 1.3957000000000000e-01 1 0 0 0 0 P 565 211 1.1836299065887952e+00 1.1698793676638504e-01 -6.9712847461237814e+01 6.9723132795879394e+01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 3 0 P 566 -211 1.6167866862186708e-01 -7.6602039724113113e-02 -5.0244923477493657e+00 5.0296134048124577e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 211 1.2373747540626116e-01 -5.1837954297145016e-02 -1.9259599320002913e+01 1.9260572262741373e+01 1.3957000000000000e-01 1 0 0 0 0 P 568 111 7.5268708893890413e-01 -6.6971954575198819e-02 -3.5845375340643820e+01 3.5853593627537407e+01 1.3497999999999999e-01 2 0 0 -238 0 V -145 0 0 0 0 0 0 2 0 P 569 22 5.7542487605413273e-01 -1.2096342722600081e-01 -5.3106277786432571e+01 5.3109532913295787e+01 0 1 0 0 0 0 P 570 111 2.7354606837715813e-02 1.6348882237195400e-01 -8.8439898257657859e+01 8.8440156604875085e+01 1.3497999999999999e-01 2 0 0 -239 0 V -146 0 0 0 0 0 0 2 0 P 571 -211 1.3701553450210049e+00 3.7342467181524917e-02 -2.7565341951921630e+02 2.7565686258925479e+02 1.3957000000000000e-01 1 0 0 0 0 P 572 211 -1.2515070280524206e-02 1.7556062121057078e-01 -3.2540076652102378e+01 3.2540851962852820e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 573 310 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -240 0 V -148 0 0 0 0 0 0 2 0 P 574 321 4.4507323458190218e-01 7.5445245304814473e-02 -1.2675932461029535e+02 1.2676108945093289e+02 4.9359999999999998e-01 1 0 0 0 0 P 575 -321 3.5590328203035199e-01 2.3151302714500381e-02 -1.6814907515651404e+02 1.6815017787703940e+02 4.9359999999999998e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 576 22 -6.2488058438212302e-01 -3.9913499111879353e-01 -6.4564091652279743e+01 6.4568349176433586e+01 0 1 0 0 0 0 P 577 111 1.3897610369467420e-01 -1.8896171851394453e-01 -9.6437741617391612e+00 9.6475707082917896e+00 1.3497999999999999e-01 2 0 0 -241 0 V -150 0 0 0 0 0 0 3 0 P 578 22 -7.0510358622244140e-02 -2.3984238285756929e-01 -1.7296971614689348e+01 1.7298778081663933e+01 0 1 0 0 0 0 P 579 211 4.4442497368725929e-02 -1.1202593090239153e-01 -5.3243783371714128e+00 5.3275706853130664e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 -211 -1.4457030474387536e-01 -2.4910838266157978e-01 -2.7809775586790558e+01 2.7811617240496428e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 581 2112 1.5135906528403212e-01 -8.1915487259626052e-02 -2.2054600688888851e+02 2.2054807540790796e+02 9.3957000000000002e-01 1 0 0 0 0 P 582 211 -1.3492778819029480e-01 2.8155942263572029e-02 -1.0435194765071148e+02 1.0435213201725607e+02 1.3957000000000000e-01 1 0 0 0 0 V -152 0 -7.6107868220902204e-05 -1.0967652355379499e-04 -1.0643818972942594e-01 1.0643827495352039e-01 0 3 0 P 583 22 -2.9848077808674555e-02 -1.0943146180779233e-02 -3.8510412641130742e+01 3.8510425763036686e+01 0 1 0 0 0 0 P 584 -11 -1.4612629056746559e-02 -2.2408250516419068e-02 -2.0295894596065654e+01 2.0295912233090835e+01 5.1000000000000004e-04 1 0 0 0 0 P 585 11 -5.2905267280730306e-01 -7.9311970497027717e-01 -7.4326222187717838e+02 7.4326283332725382e+02 5.1000000000000004e-04 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 586 211 3.4978552860815242e-02 1.8567160807331137e-01 1.2859771199358374e+00 1.3072545211638158e+00 1.3957000000000000e-01 1 0 0 0 0 P 587 111 1.6819416270895077e-01 -4.3782316552353101e-01 1.1151006678397048e+01 1.1161682128724772e+01 1.3497999999999999e-01 2 0 0 -242 0 V -154 0 -3.9518943049119740e-06 5.0159415430707511e-06 9.7271245903310129e-06 1.4977708647744207e-05 0 2 0 P 588 22 -7.3570786528157350e-02 4.7245302883753497e-02 1.7664704815864921e-02 8.9201014967212944e-02 0 1 0 0 0 0 P 589 22 1.7007858631492252e-02 2.4547189006010627e-02 1.2155831189308684e-01 1.2517290015663379e-01 0 1 0 0 0 0 V -155 0 4.3034828652643780e-06 -1.9933028102143615e-05 8.1105896513745365e-05 8.4679837205665857e-05 0 2 0 P 590 22 3.4544082384907332e-02 -1.5912937123738349e-01 3.7132451585401793e-01 4.0545942644417715e-01 0 1 0 0 0 0 P 591 22 9.1594901893332706e-03 -4.3298422147799082e-02 4.5233797926075231e-01 4.5449785159307227e-01 0 1 0 0 0 0 V -156 0 6.2460713030626959e-07 1.8314030095968984e-06 6.8851470875687138e-05 6.8898614289897788e-05 0 2 0 P 592 22 -1.1905794839662887e-02 -1.8038359156136623e-03 2.0955746201951566e+00 2.0956092170490295e+00 0 1 0 0 0 0 P 593 22 6.2747813469645142e-02 1.5087710359873224e-01 3.5088246815657897e+00 3.5126274830176381e+00 0 1 0 0 0 0 V -157 0 6.2320570835968663e-06 3.5658666191288826e-06 2.2052194377702260e-04 2.2068922267700857e-04 0 2 0 P 594 22 1.9969103128953214e-01 8.8321847428489531e-02 5.8653626914591763e+00 5.8694255902151014e+00 0 1 0 0 0 0 P 595 22 -2.1361861647647789e-02 1.3714771413896799e-02 4.4483225606107607e-01 4.4555601232659331e-01 0 1 0 0 0 0 V -158 0 1.4963861996038181e-04 1.8281705748204211e-05 3.7234162584095648e-02 3.7234482257026351e-02 0 2 0 P 596 22 4.3719971301913485e-01 2.8414829815181421e-02 9.2958461081091031e+01 9.2959493531087674e+01 0 1 0 0 0 0 P 597 22 1.7750575927958404e-01 4.6685198301566797e-02 5.9996995892273368e+01 5.9997276637359001e+01 0 1 0 0 0 0 V -159 0 3.0267893068320052e-06 -4.5750819984181511e-06 3.7778921699606616e-02 3.7778925095523538e-02 0 2 0 P 598 22 -2.8880351668452143e-02 -3.5672285499681128e-02 2.7948926382703689e+02 2.7948926759567303e+02 0 1 0 0 0 0 P 599 22 5.6027360075476713e-02 -5.3612245611424489e-03 5.9346578718268603e+01 5.9346605407314222e+01 0 1 0 0 0 0 V -160 0 -7.9428014042315717e-05 -3.9403889353905348e-05 -5.6439601945601904e-04 5.7240951881053269e-04 0 2 0 P 600 22 -3.1183871604522373e-01 -1.2787034177636744e-01 -2.0712750306150651e+00 2.0985172054525014e+00 0 1 0 0 0 0 P 601 22 8.3929278825955016e-03 -2.2667782660417246e-02 -8.4936439917738707e-02 8.8308937458685302e-02 0 1 0 0 0 0 V -161 0 4.3386218508710943e-05 5.2410024299715175e-05 -1.5419024225686259e-03 1.5434861922512385e-03 0 2 0 P 602 22 3.6535943004552857e-01 4.4161945641701744e-01 -1.2973139031867646e+01 1.2985794222825843e+01 0 1 0 0 0 0 P 603 22 -3.1815577898629705e-04 -6.5403669814412257e-04 -5.9473923101441055e-05 7.2974259143281496e-04 0 1 0 0 0 0 V -162 0 -2.5379822510312859e-05 8.2889570326734013e-05 5.5216150000097673e-04 5.5995607210468108e-04 0 2 0 P 604 22 -8.4858668313497851e-02 7.7630147160151680e-02 5.6833238796444774e-01 5.7985268521014766e-01 0 1 0 0 0 0 P 605 22 -1.6001170392881951e-02 2.5177439025134579e-01 1.6259666386478049e+00 1.6454221011752639e+00 0 1 0 0 0 0 V -163 0 5.4311071975335773e-07 -1.0226280376788801e-06 3.9808139363472970e-07 1.3816477158749319e-06 0 2 0 P 606 22 1.1110258333579513e-01 -6.7137755390032888e-02 2.9342271065216259e-02 1.3308730628412244e-01 0 1 0 0 0 0 P 607 22 3.4226962866210379e-03 -1.4850291916355091e-01 5.4600802161551283e-02 1.5825953192983808e-01 0 1 0 0 0 0 V -164 0 4.4144968595203476e-05 -3.2722242845905029e-05 2.0384130364910097e-05 6.4670550523130544e-05 0 2 0 P 608 22 1.8246810056267390e-01 -1.5407946942974535e-01 1.3067263014575828e-01 2.7223230317490249e-01 0 1 0 0 0 0 P 609 22 3.5513303334553492e-02 -7.4981839518315132e-03 -3.0018773192964032e-02 4.7101424822590304e-02 0 1 0 0 0 0 V -165 0 5.6380051062987950e-05 -3.0493162362714481e-07 -1.2675255378498870e-05 6.6809669214768023e-05 0 2 0 P 610 22 1.5629447797873078e-01 5.9272811617123743e-02 -5.4638072284284134e-02 1.7585945805268952e-01 0 1 0 0 0 0 P 611 22 7.0691408873611514e-02 -6.0500465259029898e-02 3.6075388079277754e-03 9.3116034716615323e-02 0 1 0 0 0 0 V -166 0 1.6795846570804687e-06 1.3423270115360811e-05 9.9175126408736319e-07 1.4159191260131311e-05 0 2 0 P 612 22 8.8762006613232747e-02 3.5139103501920521e-01 -7.3169086190899872e-03 3.6250226269861546e-01 0 1 0 0 0 0 P 613 22 -3.2939530131136062e-02 9.4743178679830939e-02 4.0278636021291489e-02 1.0809093889570057e-01 0 1 0 0 0 0 V -167 0 5.8194757435905009e+00 1.6391496056570528e+01 -3.6935008738567987e+01 4.2938642877598774e+01 0 2 0 P 614 111 4.6037197571210636e-02 -2.2999289523593373e-02 -2.9058014755777606e-01 3.2450703140841131e-01 1.3497999999999999e-01 2 0 0 -243 0 P 615 111 1.7166229270591718e-01 6.3618516633134004e-01 -1.0911134843167920e+00 1.2817752317216218e+00 1.3497999999999999e-01 2 0 0 -244 0 V -168 0 -3.6846001179087060e-05 6.4142641585785472e-05 -3.2786539146331803e-04 3.3669449449266921e-04 0 2 0 P 616 22 -1.4196815812055172e-01 1.4866334818016907e-01 -1.0952678736333827e+00 1.1143910731990234e+00 0 1 0 0 0 0 P 617 22 -1.0809678769784217e-01 2.8665732922082771e-01 -1.1298756623912380e+00 1.1706734610345657e+00 0 1 0 0 0 0 V -169 0 -4.7321224760593346e-04 -9.0969249946531208e-05 -2.1252439646961239e-03 2.1806080692367510e-03 0 2 0 P 618 22 -3.1901381769645237e-01 -4.1561351663143989e-03 -1.2453043607719190e+00 1.2855232554482801e+00 0 1 0 0 0 0 P 619 22 -4.9321124997602084e-01 -1.5198417093891795e-01 -2.4024803949668945e+00 2.4572888665191939e+00 0 1 0 0 0 0 V -170 0 -9.5333233258119936e-05 -1.3811279480163778e-04 -1.7281312049733308e-03 1.7364490167361942e-03 0 2 0 P 620 22 -2.4221196715545883e-02 -3.4353108747470454e-02 -8.3476022029741836e-01 8.3581781976812553e-01 0 1 0 0 0 0 P 621 22 -4.7890028331565110e-01 -6.9453766057851862e-01 -8.2854584046197459e+00 8.3282980865243808e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 622 211 -1.9152017635186680e-01 -4.9525486530404544e-01 -1.2450101878820432e+01 1.2462201809370013e+01 1.3957000000000000e-01 1 0 0 0 0 P 623 -211 -1.5440816237156476e-02 2.1714896552932031e-01 -3.1917741155890820e+00 3.2022326401873098e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 2.0935869646649089e-06 -1.1712258244503818e-06 -2.1514240673094736e-05 2.1712140664967733e-05 0 2 0 P 624 22 -1.7164290433487467e-03 -5.1934534500188846e-02 -6.2216004565596528e-01 6.2432624837743689e-01 0 1 0 0 0 0 P 625 22 1.7060900496994524e-01 -4.2549883783738307e-02 -1.1134237097412230e+00 1.1272223749556924e+00 0 1 0 0 0 0 V -173 0 1.1182305473968963e-05 -7.6371332449317781e-05 -3.1512679591386145e-04 3.2833894030721318e-04 0 2 0 P 626 22 2.9881587566890418e-02 -1.9446701291353726e-02 -3.5038349332988750e-01 3.5219266866970445e-01 0 1 0 0 0 0 P 627 22 4.4333620018828024e-05 -1.8493713361083633e-01 -4.9295419587511657e-01 5.2650316673743280e-01 0 1 0 0 0 0 V -174 0 5.5692103202238959e-05 -9.5261192202459821e-05 -4.9388802000534108e-04 5.0784869930261341e-04 0 2 0 P 628 22 1.8691804702625456e-01 -2.5306053184774174e-01 -1.1865181766825594e+00 1.2275191944247863e+00 0 1 0 0 0 0 P 629 22 -1.0155854029928794e-02 -4.9290722153280307e-02 -3.8104211447282282e-01 3.8435115410700788e-01 0 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 630 130 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 1 0 0 0 0 V -176 0 5.2250133594461580e-05 -3.0054943035758407e-05 1.7711783381455315e-04 1.8801708156602681e-04 0 2 0 P 631 22 7.1381752921829675e-02 -2.5802625999512854e-02 1.0504833828474659e-01 1.2960047660039858e-01 0 1 0 0 0 0 P 632 22 3.0759986059449940e-01 -1.9219243013256229e-01 1.1796259357092902e+00 1.2341284182110204e+00 0 1 0 0 0 0 V -177 0 7.1039891327504233e+02 3.6643134481150577e+02 2.5254569656684307e+03 2.6971924924040927e+03 0 2 0 P 633 -2112 1.1422147066867083e+00 5.9541899629508177e-01 4.2255011488959902e+00 4.5162849734645594e+00 9.3957000000000002e-01 1 0 0 0 0 P 634 111 3.8246184198965044e-01 9.3591779830086430e-02 1.0462360590797810e+00 1.1259955477481565e+00 1.3497999999999999e-01 2 0 0 -245 0 V -178 0 5.5561168031183911e+02 2.9648203634886158e+02 1.9902630492634262e+03 2.1243805158111140e+03 0 2 0 P 635 22 7.1289868399566497e-02 1.5230009407052197e-01 4.8621509421616277e-01 5.1447320808177111e-01 0 1 0 0 0 0 P 636 22 2.5826010091339929e-01 1.4812990665742792e-01 8.8409402709423657e-01 9.3287887622876431e-01 0 1 0 0 0 0 V -179 0 5.5209363211154461e-01 -5.2128970822942033e-01 2.7330200827139302e+00 3.1587949778593916e+00 0 2 0 P 637 111 5.4473612168521028e-02 -2.0135342999722378e-01 1.7584087262199635e-01 3.0438493898154434e-01 1.3497999999999999e-01 2 0 0 -246 0 P 638 111 1.4319901079884229e-01 1.4709900787341600e-02 8.0269468176634418e-01 8.2659584466104896e-01 1.3497999999999999e-01 2 0 0 -247 0 V -180 0 7.9538906338402043e+01 3.4247698549261749e+01 7.4901910077430466e+02 7.8595576103995711e+02 0 2 0 P 639 2212 2.8113737551741153e-01 1.6173787011823723e-01 3.4071838954093634e+00 3.5488660234756857e+00 9.3827000000000005e-01 1 0 0 0 0 P 640 -211 1.1894344729530607e-01 1.0528106946312728e-02 3.6038334854132892e-01 4.0449267916270770e-01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 1 0 P 641 310 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -248 0 V -182 0 2.2857299422344308e-05 1.0363369163570521e-06 1.2436670579055224e-04 1.2681404362039812e-04 0 2 0 P 642 22 3.3064429514652588e-01 -2.9385785503240722e-03 1.6837507302587995e+00 1.7159110719393005e+00 0 1 0 0 0 0 P 643 22 -7.5634850822259448e-03 1.7586878170045065e-02 7.4133930978186227e-02 7.6565947474288729e-02 0 1 0 0 0 0 V -183 0 3.3042510594032325e-05 2.9107716129004940e-05 6.3969886268683274e-04 6.4136853386075846e-04 0 2 0 P 644 22 2.7490091490234275e-01 2.6115949324123056e-01 4.7049954255147108e+00 4.7202496489103742e+00 0 1 0 0 0 0 P 645 22 4.0557318040171764e-02 1.6733092097203136e-02 1.4022364164558709e+00 1.4029226137078079e+00 0 1 0 0 0 0 V -184 0 1.6510356519907546e+01 -2.0951009388828552e+01 3.4277481425724073e+02 3.4387324490704015e+02 0 2 0 P 646 111 1.1584217849857776e+00 -1.2621767385808140e+00 2.1450577286789734e+01 2.1519305673935758e+01 1.3497999999999999e-01 2 0 0 -249 0 P 647 111 9.9029184113605215e-02 -3.3348032841390018e-01 4.6556138091395436e+00 4.6705433783443295e+00 1.3497999999999999e-01 2 0 0 -250 0 V -185 0 1.3791437503772767e-05 -7.2942427999000018e-05 5.2213574707276333e-03 5.2220548755439458e-03 0 2 0 P 648 22 2.1473331500103339e-02 2.1415622482539296e-03 4.5633340839199754e-01 4.5684337564337524e-01 0 1 0 0 0 0 P 649 22 2.2743511780759881e-02 -2.3600289153137824e-01 1.6283904506138022e+01 1.6285630494308823e+01 0 1 0 0 0 0 V -186 0 0 0 0 0 0 1 0 P 650 310 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -251 0 V -187 0 -6.4898479034697910e-05 -2.3717785260807778e-05 1.0289265266013758e-02 1.0289517544300922e-02 0 2 0 P 651 22 -3.7076014040847560e-01 -1.2245226039503190e-01 4.9333140644562064e+01 4.9334685805160788e+01 0 1 0 0 0 0 P 652 22 -5.8098350716839123e-02 -3.4278278611067622e-02 1.8659805298154975e+01 1.8659927228791460e+01 0 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 653 310 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -252 0 V -189 0 -3.8156288164306583e-05 -4.6982366965856362e-05 1.5305551971952054e-02 1.5305833280055125e-02 0 2 0 P 654 22 -1.5408943224027936e-02 -5.5379560032673752e-03 1.9517334687879231e+01 1.9517341556246379e+01 0 1 0 0 0 0 P 655 22 -5.7809641666623703e-02 -8.4617103347375724e-02 9.8526829493438850e+00 9.8532158866605712e+00 0 1 0 0 0 0 V -190 0 5.7259152975389607e-06 -5.7955078829102164e-05 8.5913088485572914e-02 8.5913189729219838e-02 0 2 0 P 656 22 -6.4140966160402851e-02 -3.6653323657850727e-02 4.7909740780391559e+01 4.7909797736725935e+01 0 1 0 0 0 0 P 657 22 7.0671922649227781e-02 -2.9450011524555422e-02 5.0082390357315759e+01 5.0082448879087224e+01 0 1 0 0 0 0 V -191 0 7.2852717417934541e-06 2.4903131825419027e-06 4.1295263407232592e-03 4.1295416485090863e-03 0 2 0 P 658 22 8.7393068341428085e-02 8.5525989547457659e-02 5.4895167875559508e+01 5.4895304064456596e+01 0 1 0 0 0 0 P 659 22 3.2608878299620024e-02 -4.4505909550095132e-02 1.3125795124275372e+01 1.3125911083021251e+01 0 1 0 0 0 0 V -192 0 7.8972404442270773e-05 -1.1521440214880167e-04 4.4047585982568103e-02 4.4047879927297903e-02 0 2 0 P 660 22 1.0358314056572004e-01 -1.0958195529204297e-01 2.7762783353347977e+01 2.7763192849470158e+01 0 1 0 0 0 0 P 661 22 2.9827842332208532e-02 -8.5053965232638862e-02 4.6648421189767241e+01 4.6648508265271531e+01 0 1 0 0 0 0 V -193 0 1.2260988875696963e+00 -1.4488883577432832e+00 5.2570632300147599e+03 5.2570826536678287e+03 0 2 0 P 662 111 -4.0794161306335473e-02 -1.0598500749054776e-01 1.6055890388883756e+02 1.6055900078964987e+02 1.3497999999999999e-01 2 0 0 -253 0 P 663 111 8.3874516752240794e-02 5.5076694885569120e-02 2.4153891177425916e+01 2.4154476748383797e+01 1.3497999999999999e-01 2 0 0 -254 0 V -194 0 3.3274369359114265e-05 5.5765187790187018e-05 4.0907985209178380e-03 4.0913944258317405e-03 0 2 0 P 664 22 5.7109002705339050e-02 2.1821668015513598e-01 1.4321259070863738e+01 1.4323035339357533e+01 0 1 0 0 0 0 P 665 22 1.1786747413073592e-01 7.5029932104287753e-02 7.1905990476542971e+00 7.1919564025580964e+00 0 1 0 0 0 0 V -195 0 1.9210083408778569e+01 1.5433276418424106e+02 3.8916014663914379e+04 3.8917269800969007e+04 0 2 0 P 666 2212 1.3829406545060660e-01 6.2138776432242016e-01 1.4044115540962187e+02 1.4044573233596188e+02 9.3827000000000005e-01 1 0 0 0 0 P 667 -211 -5.9241863231473957e-02 1.3713324190035391e-02 1.9703732840506547e+01 1.9704320980144828e+01 1.3957000000000000e-01 1 0 0 0 0 V -196 0 -7.2295112924534088e-05 1.7229621715448068e-04 3.1983043745524428e-03 3.2038020536856158e-03 0 2 0 P 668 22 -5.4899348331959485e-01 1.2966001182389595e+00 2.3465244512513383e+01 2.3507451281314708e+01 0 1 0 0 0 0 P 669 22 -2.9900575907641967e-02 8.3040254439766731e-02 2.1447770661454109e+00 2.1465922742245089e+00 0 1 0 0 0 0 V -197 0 -7.3128842317440605e-05 1.9783276580076606e-04 6.2278657578791734e-03 6.2317558030159327e-03 0 2 0 P 670 22 -8.1206401551535773e-02 1.2067788807765223e-01 5.8741685648858937e+00 5.8759691933346128e+00 0 1 0 0 0 0 P 671 22 -7.5202199374327358e-02 3.0244854378727820e-01 7.4460446242631342e+00 7.4525640580237669e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 1 0 P 672 130 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 673 310 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -255 0 V -200 0 -9.7427874271153141e-05 5.2759173308814661e-05 3.0529576077170549e-03 3.0550954683143693e-03 0 2 0 P 674 22 -2.5971657690663985e-01 2.0988432958907718e-01 9.6143360259585613e+00 9.6201331254911349e+00 0 1 0 0 0 0 P 675 22 -2.1042185714814071e-01 4.4705184007392727e-02 5.1177180157121285e+00 5.1222371674676772e+00 0 1 0 0 0 0 V -201 0 -7.0949290365020413e-05 -6.0709858381969450e-06 3.0770557332510887e-03 3.0796208118384211e-03 0 2 0 P 676 22 -5.9974481706348774e-02 -5.8889056441193813e-02 1.3249310257300573e+00 1.3275944721060642e+00 0 1 0 0 0 0 P 677 22 -3.2513572777102775e-02 5.0975042557719501e-02 2.6862563567141984e+00 2.6869366947075481e+00 0 1 0 0 0 0 V -202 0 -9.0676759332457125e-05 3.6611084242323768e-05 4.3808653390564861e-04 4.5005647967767969e-04 0 2 0 P 678 22 -9.6101124843582741e-02 9.7320276959662208e-02 4.5712311657598281e-01 4.7714589614901520e-01 0 1 0 0 0 0 P 679 22 -2.7835681197359274e-01 5.3868530083568851e-02 1.3519951276286046e+00 1.3814033293853587e+00 0 1 0 0 0 0 V -203 0 0 0 0 0 0 1 0 P 680 130 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 1 0 0 0 0 V -204 0 -1.5617632826542147e+01 -6.1385552261550727e+00 5.3886219856013092e+01 5.6788381863814713e+01 0 2 0 P 681 211 -3.1253019405652588e-01 -1.3387584005324293e-01 6.7600374586473966e-01 7.6945351521071803e-01 1.3957000000000000e-01 1 0 0 0 0 P 682 -211 -9.2253798689452748e-01 -3.5157123896567982e-01 3.5854074599863557e+00 3.7214654522589727e+00 1.3957000000000000e-01 1 0 0 0 0 V -205 0 -4.7033923026387570e-05 -1.6364907581732757e-05 9.0319487705483434e-05 1.0502911074260955e-04 0 2 0 P 683 22 -1.3134421016177045e-01 -6.3046120503593719e-02 1.4165829437904479e-01 2.0320725188819683e-01 0 1 0 0 0 0 P 684 22 -1.8869705698347544e-01 -4.8308523595181854e-02 4.7291862018015934e-01 5.1146096046450795e-01 0 1 0 0 0 0 V -206 0 -1.2475372964072763e-04 -3.3745342469147750e-05 2.8686485122108262e-04 3.1967414400876036e-04 0 2 0 P 685 22 -1.4122446350123194e-01 1.4579009360950178e-02 2.0355345039157621e-01 2.4817514736869475e-01 0 1 0 0 0 0 P 686 22 -1.5655330336261800e-01 -9.5126603019730374e-02 4.8117136733008420e-01 5.1486298384533746e-01 0 1 0 0 0 0 V -207 0 -2.0001326775327693e-04 -1.1246312233359236e-05 1.5803110138651555e-04 2.5789395729432983e-04 0 2 0 P 687 22 -7.0207213810202518e-01 -1.9330174967431394e-02 5.2610327802955259e-01 8.7753267854642392e-01 0 1 0 0 0 0 P 688 22 -1.8528391962131234e-02 -2.1187629914504486e-02 4.3245429208294342e-02 5.1598295684120915e-02 0 1 0 0 0 0 V -208 0 4.7633184300895532e+00 4.2354881049835102e-01 2.7340754574658801e+00 8.8431748625724733e+00 0 2 0 P 689 -211 3.1133600199242017e-01 1.3748590257612459e-01 2.5574478144335300e-01 4.4801524268634463e-01 1.3957000000000000e-01 1 0 0 0 0 P 690 211 3.1332281348318079e-02 -1.0701623191802564e-01 -5.9058173717179453e-02 1.8815376300045492e-01 1.3957000000000000e-01 1 0 0 0 0 V -209 0 1.9693409568809412e-04 -1.1424958813418978e-05 -3.4708173120874380e-05 2.0541469689418581e-04 0 2 0 P 691 22 -3.7246149657566559e-03 -7.8668898931835100e-03 6.3408665058492693e-03 1.0768811507293322e-02 0 1 0 0 0 0 P 692 22 5.8700173901343777e-01 -2.5971420815636553e-02 -1.0913913172324474e-01 5.9762605898445120e-01 0 1 0 0 0 0 V -210 0 8.3401651552009946e-05 1.7259568291705629e-04 -6.3401213081193151e-05 2.1845678707663307e-04 0 2 0 P 693 22 8.4072036537419487e-02 1.5385487131507988e-01 -1.2629159823963515e-01 2.1607636738165140e-01 0 1 0 0 0 0 P 694 22 5.0881645219922306e-02 1.2542524402597122e-01 2.3700978342221936e-02 1.3741240858684825e-01 0 1 0 0 0 0 V -211 0 0 0 0 0 0 2 0 P 695 22 9.1509746572344053e-01 -7.4754699403113933e-01 -1.3173196811594412e-01 1.1889420471503884e+00 0 1 0 0 0 0 P 696 22 3.6943048071325946e-01 -1.2646016659607895e-01 2.4774888598498643e-01 4.6243979534890800e-01 0 1 0 0 0 0 V -212 0 1.4244979165104253e-05 5.8510836866631591e-06 -3.2190078987230427e-05 3.6780509179205760e-05 0 2 0 P 697 22 1.3116895313702617e-01 1.2093923917139338e-01 -3.0677341841587580e-01 3.5488240881308963e-01 0 1 0 0 0 0 P 698 22 8.4547927399810166e-02 -3.2334159022249391e-02 -1.8069261034253767e-01 2.0209816748224077e-01 0 1 0 0 0 0 V -213 0 4.0284161411361974e-04 5.6569185336429397e-05 -2.1317789298508214e-04 4.6273183706920461e-04 0 2 0 P 699 22 4.1459782968447439e-01 1.1752860089682196e-01 -1.8797307177866096e-01 4.7014700692628730e-01 0 1 0 0 0 0 P 700 22 5.4746246720799763e-01 1.7569078521126099e-02 -3.2113517282859805e-01 6.3494222158335234e-01 0 1 0 0 0 0 V -214 0 2.5775259491430116e+01 -1.7559131981557996e+01 -2.2221361584890410e+01 4.4344276280483690e+01 0 2 0 P 701 2212 9.8874773635934465e-01 -7.5860679142754572e-01 -8.3638486145038160e-01 1.7700272821397691e+00 9.3827000000000005e-01 1 0 0 0 0 P 702 -211 2.9738048457513627e-01 -1.1755490867497051e-01 -2.7241174451275818e-01 4.4265364858793127e-01 1.3957000000000000e-01 1 0 0 0 0 V -215 0 2.1366239082526384e+01 -1.0008445301153683e+01 -3.0061905984150741e+01 4.2193081696247596e+01 0 2 0 P 703 -2112 1.1138096031339999e+00 -4.3333735457616673e-01 -1.6267397659040195e+00 2.2265280473818545e+00 9.3957000000000002e-01 1 0 0 0 0 P 704 111 2.1907530914841028e-01 -1.9101706202405075e-01 -2.4860482637361125e-01 4.0559273805015911e-01 1.3497999999999999e-01 2 0 0 -256 0 V -216 0 1.0064770204298328e-05 -2.6707508304306029e-05 -5.7005120761825609e-05 6.3932029265871922e-05 0 2 0 P 705 22 1.8449153725946318e-01 -5.1031539840655460e-01 -9.3716531909840206e-01 1.0829301771083906e+00 0 1 0 0 0 0 P 706 22 9.7987169440156063e-02 -2.3925982803505724e-01 -6.6274530590316727e-01 7.1139165807798288e-01 0 1 0 0 0 0 V -217 0 9.1119881088432618e-06 -8.9716732825958346e-06 -1.4792926488770253e-05 2.2466154040167701e-05 0 2 0 P 707 22 6.2273253671259486e-02 -1.2515149232949954e-01 -7.9493077164483422e-02 1.6081045821769283e-01 0 1 0 0 0 0 P 708 22 4.8907757197428250e-02 1.5682549566663803e-02 -1.0100458164298101e-01 1.1331300273078584e-01 0 1 0 0 0 0 V -218 0 -2.3331096522134937e-05 -3.2377716340285340e-05 -9.8634283299402673e-05 1.0667997704883603e-04 0 2 0 P 709 22 -1.5238624859306366e-01 -1.9018507153879224e-01 -7.7683907844499023e-01 8.1416883015486674e-01 0 1 0 0 0 0 P 710 22 -2.5678058061869036e-01 -3.7763597019850736e-01 -9.5295004273504869e-01 1.0567208602650799e+00 0 1 0 0 0 0 V -219 0 -2.4480660100889405e-05 -3.3630411867545293e-04 -9.7973175336847564e-04 1.0371832593098619e-03 0 2 0 P 711 22 -4.7094707206962204e-02 -1.6528578372743810e-01 -6.2090325920157818e-01 6.4425007492156738e-01 0 1 0 0 0 0 P 712 22 -2.3758373189425315e-02 -8.0806144873883090e-01 -2.2146825625135942e+00 2.3576146033515077e+00 0 1 0 0 0 0 V -220 0 -6.3258699571216450e-06 -5.0102760710309347e-06 -1.4545449274972692e-05 1.6710179331387082e-05 0 2 0 P 713 22 -1.3303041365068499e-01 -1.8331038855147769e-01 -4.3345890352421845e-01 4.8906687738118582e-01 0 1 0 0 0 0 P 714 22 -4.0267981974673711e-01 -2.4098795801440431e-01 -7.9833151878656761e-01 9.2604505669394122e-01 0 1 0 0 0 0 V -221 0 -6.1183284580906027e-05 5.8894722192789365e-05 -3.1233233434574355e-04 3.2378315201801971e-04 0 2 0 P 715 22 -4.1394488840273475e-01 4.2578747014621565e-01 -2.4287588634468973e+00 2.5003029730694908e+00 0 1 0 0 0 0 P 716 22 -5.5892680947472162e-01 5.1069393597955570e-01 -2.5376186446969005e+00 2.6481532924869016e+00 0 1 0 0 0 0 V -222 0 -6.1292718703627152e-05 5.9022466326513542e-05 -5.0569069866692742e-04 5.1286781538861976e-04 0 2 0 P 717 22 -9.3424140243224429e-01 9.3422010705446545e-01 -7.7562824549205622e+00 7.8680043039484895e+00 0 1 0 0 0 0 P 718 22 -5.5564865563233042e-02 1.8924220006978795e-02 -4.1003540132940813e-01 4.1421565727444615e-01 0 1 0 0 0 0 V -223 0 -1.6903411194691762e+00 7.6771705586798840e+00 -1.6704606600191198e+02 1.6782395201303450e+02 0 2 0 P 719 111 -2.0910470929011304e-01 2.6488679320180425e-01 -3.4082945121141575e+00 3.4276202932016142e+00 1.3497999999999999e-01 2 0 0 -257 0 P 720 111 1.4942552293477154e-01 6.1634032207249058e-03 -2.4894341700026432e+00 2.4975724337084482e+00 1.3497999999999999e-01 2 0 0 -258 0 V -224 0 -2.6068411886855723e-05 -3.4858819378717637e-05 -1.2040993644963105e-02 1.2041107302278574e-02 0 2 0 P 721 22 -4.7659294313653179e-03 2.3024557546644706e-02 -7.1972739351880284e+00 7.1973123415946398e+00 0 1 0 0 0 0 P 722 22 -1.1646763406842196e-01 -1.8513872510774010e-01 -4.8800482045996986e+01 4.8800972213461009e+01 0 1 0 0 0 0 V -225 0 -1.5577947031839606e-04 -5.6247609800128191e-05 -7.2709477508733199e-03 7.2729080402450597e-03 0 2 0 P 723 22 -1.2406154375219754e-01 -1.0436814170996277e-01 -7.3656698222499077e+00 7.3674538278868882e+00 0 1 0 0 0 0 P 724 22 -5.1603130429430499e-01 -1.2675148322639662e-01 -2.2510421323402252e+01 2.2516692083931748e+01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 1 0 P 725 130 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 1 0 0 0 0 V -227 0 -1.8789777367814162e-04 -1.0171899695354876e-04 -3.2577009587721065e-03 3.2657799301321778e-03 0 2 0 P 726 22 -9.8742975301253269e-02 -1.2958951465171503e-01 -2.3164490981717019e+00 2.3221714066578940e+00 0 1 0 0 0 0 P 727 22 -2.0330457838470647e-01 -3.3924792046976605e-02 -2.9203378311030650e+00 2.9276025500192757e+00 0 1 0 0 0 0 V -228 0 2.5680124126781640e-04 -6.6671061753152347e-04 -1.4615627341137078e-02 1.4633171935080992e-02 0 2 0 P 728 22 3.9488384293166995e-01 -9.0894745383209852e-01 -2.1326824337540682e+01 2.1349837354124130e+01 0 1 0 0 0 0 P 729 22 2.7117349133867197e-01 -8.2027898779426756e-01 -1.6581270411012650e+01 1.6603762258095156e+01 0 1 0 0 0 0 V -229 0 4.2228774081899641e-06 -5.7618144288484923e-06 -3.3091630919049152e-04 3.3128293686761383e-04 0 2 0 P 730 22 -3.2736646243361221e-02 -2.0419438010375442e-02 -2.1851403038440043e+00 2.1854809056451145e+00 0 1 0 0 0 0 P 731 22 7.3900016195038304e-02 -3.5745038483215488e-02 -1.0405347848605828e+00 1.0437679620847982e+00 0 1 0 0 0 0 V -230 0 2.0021810869478633e-04 -1.0601920139601617e-04 -1.8425109457332314e-03 1.8566107698380972e-03 0 2 0 P 732 22 3.7482875608027388e-01 -2.6224906363708034e-01 -3.4106175623845778e+00 3.4411601713098636e+00 0 1 0 0 0 0 P 733 22 5.6346216056367626e-01 -2.3459337638102351e-01 -5.2240224083383273e+00 5.2595564244002473e+00 0 1 0 0 0 0 V -231 0 3.5027927508939576e-06 4.2536310198609524e-06 -4.8811088946560889e-05 4.9254039148600072e-05 0 2 0 P 734 22 2.2103473072237936e-02 8.2751909090109807e-02 -1.1731799816906168e+00 1.1763025594716305e+00 0 1 0 0 0 0 P 735 22 1.0865277369588155e-01 7.6032485776392031e-02 -6.4889607167802310e-01 6.6230844473275119e-01 0 1 0 0 0 0 V -232 0 6.4309717389651207e-05 6.6252738983817758e-05 -1.5086468414144969e-03 1.5116300226098219e-03 0 2 0 P 736 22 3.5481334459866376e-01 2.8788857028233866e-01 -7.1377630606681404e+00 7.1523726027551948e+00 0 1 0 0 0 0 P 737 22 3.9402681849856215e-02 1.1823810176138751e-01 -2.1101824641591613e+00 2.1138597049212908e+00 0 1 0 0 0 0 V -233 0 6.3882138645046598e-05 1.2078835114433230e-04 -2.4040302275451738e-03 2.4080396805039924e-03 0 2 0 P 738 22 2.8243820302205580e-01 4.6793477037071962e-01 -1.0384138176070101e+01 1.0398512391085790e+01 0 1 0 0 0 0 P 739 22 6.3023401891341618e-02 1.8526405055509784e-01 -2.6163680418361217e+00 2.6236761324438316e+00 0 1 0 0 0 0 V -234 0 3.7188408530402123e-04 9.9528210271637450e-05 -6.3321727710414985e-03 6.3448095230672725e-03 0 2 0 P 740 22 1.0690837274370636e-01 7.0264089256418694e-02 -1.4433400690182150e+00 1.4489986187830710e+00 0 1 0 0 0 0 P 741 22 3.5147281571613159e-01 5.2413543674007003e-02 -6.3616427065962542e+00 6.3715601108470459e+00 0 1 0 0 0 0 V -235 0 7.0438810368322106e-06 4.9505424250073509e-06 -6.4907029826131470e-04 6.4915859208743826e-04 0 2 0 P 742 22 1.4433243584258459e-01 3.5067455891633161e-02 -7.4278565617346404e+00 7.4293414701575875e+00 0 1 0 0 0 0 P 743 22 5.0660057121067938e-03 6.9931949873330901e-02 -6.3387148088813436e+00 6.3391025839907806e+00 0 1 0 0 0 0 V -236 0 2.9872774276008541e-05 2.0771247041135075e-05 -6.9385230271726338e-04 6.9493482760984787e-04 0 2 0 P 744 22 2.6595339129699630e-01 1.1806897499546447e-01 -4.9124064458151855e+00 4.9210170268030415e+00 0 1 0 0 0 0 P 745 22 3.4951290719546543e-02 9.1157172808941048e-02 -2.0766801581452152e+00 2.0789737136653552e+00 0 1 0 0 0 0 V -237 0 0 0 0 0 0 3 0 P 746 211 4.0716413945063162e-01 6.5720178265344942e-01 -2.0453752726074384e+01 2.0468834289814179e+01 1.3957000000000000e-01 1 0 0 0 0 P 747 -211 1.5826736729557286e-01 1.0134390427953499e-01 -3.5457128517341818e+00 3.5534319408619939e+00 1.3957000000000000e-01 1 0 0 0 0 P 748 111 2.5111332294795449e-02 2.6902380194850234e-01 -1.5010671020661738e+01 1.5013709350988467e+01 1.3497999999999999e-01 2 0 0 -259 0 V -238 0 5.8903333867336597e-05 -5.2410509733231833e-06 -2.8051658415803133e-03 2.8058089833371256e-03 0 2 0 P 749 22 5.4891653572885640e-02 -4.1198549231600635e-02 -3.6787475394676590e+00 3.6793877035765208e+00 0 1 0 0 0 0 P 750 22 6.9779543536601840e-01 -2.5773405343598180e-02 -3.2166627801176162e+01 3.2174205923960876e+01 0 1 0 0 0 0 V -239 0 1.4693022594664131e-06 8.7815005908772063e-06 -4.7503860358099432e-03 4.7503999124542768e-03 0 2 0 P 751 22 -1.0608406023043717e-02 1.6744162506424523e-01 -6.0624531977538545e+01 6.0624764137534385e+01 0 1 0 0 0 0 P 752 22 3.7963012860759530e-02 -3.9528026922912261e-03 -2.7815366280119310e+01 2.7815392467340683e+01 0 1 0 0 0 0 V -240 0 1.7544549980818637e+01 -1.3287867655642611e+00 -2.8328132820646224e+03 2.8329467750762365e+03 0 2 0 P 753 211 3.3395522795578292e-01 6.5363911138751535e-02 -5.7809835809678958e+01 5.7811005826417670e+01 1.3957000000000000e-01 1 0 0 0 0 P 754 -211 7.9135413072235108e-02 -9.6650514521375047e-02 -8.8894329592630523e+00 8.8914060675290063e+00 1.3957000000000000e-01 1 0 0 0 0 V -241 0 1.4102817339079698e-05 -1.9175185729306621e-05 -9.7861705607419280e-04 9.7900231656954172e-04 0 2 0 P 755 22 6.1092134047216619e-02 -9.3224802538886639e-02 -2.2430251534172858e+00 2.2457927222950689e+00 0 1 0 0 0 0 P 756 22 7.7883969647457585e-02 -9.5736915975057901e-02 -7.4007490083218750e+00 7.4017779859967225e+00 0 1 0 0 0 0 V -242 0 3.3969430748175402e-05 -8.8425207282220679e-05 2.2521194733120887e-03 2.2542755467736910e-03 0 2 0 P 757 22 1.7035851339353436e-01 -4.1092918385679900e-01 1.0927832676777681e+01 1.0936883094779835e+01 0 1 0 0 0 0 P 758 22 -2.1643506845835945e-03 -2.6893981666731962e-02 2.2317400161936557e-01 2.2479903394493703e-01 0 1 0 0 0 0 V -243 0 5.8194933746022386e+00 1.6391487248459587e+01 -3.6935120022969791e+01 4.2938767155087014e+01 0 2 0 P 759 22 2.1264245317034271e-02 -1.7847415052051872e-03 8.9981171120764522e-03 2.3158573848707790e-02 0 1 0 0 0 0 P 760 22 2.4772952254176361e-02 -2.1214548018388187e-02 -2.9957826466985249e-01 3.0134845755970330e-01 0 1 0 0 0 0 V -244 0 5.8194889795431610e+00 1.6391545109374213e+01 -3.6935092868438311e+01 4.2938741708367139e+01 0 2 0 P 761 22 5.0555801579855085e-02 3.8498334704217291e-01 -5.5316611598883214e-01 6.7584082330926543e-01 0 1 0 0 0 0 P 762 22 1.2110649112606210e-01 2.5120181928916713e-01 -5.3794736832795975e-01 6.0593440841235591e-01 0 1 0 0 0 0 V -245 0 7.1039895655604471e+02 3.6643135540274807e+02 2.5254570840649353e+03 2.6971926198265191e+03 0 2 0 P 763 22 1.9372940901322067e-01 -1.0401068480301538e-03 6.3248572780355294e-01 6.6149101400854815e-01 0 1 0 0 0 0 P 764 22 1.8873243297642975e-01 9.4631886678116589e-02 4.1375033127622796e-01 4.6450453373960826e-01 0 1 0 0 0 0 V -246 0 5.5214858287883606e-01 -5.2149282539082475e-01 2.7331974638437493e+00 3.1591020290220215e+00 0 2 0 P 765 22 6.7943750918057849e-02 -4.3972019132378519e-02 2.1946814010010467e-02 8.3854364230988812e-02 0 1 0 0 0 0 P 766 22 -1.3470138749536818e-02 -1.5738141086484525e-01 1.5389405861198588e-01 2.2053057475055549e-01 0 1 0 0 0 0 V -247 0 5.5211131230527322e-01 -5.2128789205838533e-01 2.7331191881295291e+00 3.1588970342534082e+00 0 2 0 P 767 22 1.5734271138854929e-02 -1.1710027817708276e-02 4.5354650614759229e-01 4.5397040132419475e-01 0 1 0 0 0 0 P 768 22 1.2746473965998736e-01 2.6419928605049874e-02 3.4914817561875189e-01 3.7262544333685410e-01 0 1 0 0 0 0 V -248 0 -2.3221937203653706e-01 -8.3803594578539853e-01 1.2378008386335120e+01 1.2493592556593743e+01 0 2 0 P 769 111 -2.1007566335191094e-01 -2.6535313856906168e-01 3.3332599205886893e+00 3.3531157706056187e+00 1.3497999999999999e-01 2 0 0 -260 0 P 770 111 1.3067534140913559e-01 -2.1187658227639329e-02 8.9902200432645851e-01 9.1868663121693905e-01 1.3497999999999999e-01 2 0 0 -261 0 V -249 0 1.6510511898734837e+01 -2.0951178684282088e+01 3.4277769141786280e+02 3.4387613128618381e+02 0 2 0 P 771 22 3.4608057484918514e-01 -4.1856277200663949e-01 6.1115559126115606e+00 6.1356403277388365e+00 0 1 0 0 0 0 P 772 22 8.1234121013659244e-01 -8.4361396657417442e-01 1.5339021374178174e+01 1.5383665346196919e+01 0 1 0 0 0 0 V -250 0 1.6510371730223042e+01 -2.0951060609497006e+01 3.4277552933285705e+02 3.4387396227575277e+02 0 2 0 P 773 22 1.1179296245496410e-01 -3.4049150293053171e-01 4.5015911093763892e+00 4.5158337708599170e+00 0 1 0 0 0 0 P 774 22 -1.2763778341358891e-02 7.0111745166315294e-03 1.5402269976315447e-01 1.5470960748441195e-01 0 1 0 0 0 0 V -251 0 -2.5634079793228746e+00 2.6919131858569605e+00 1.3480280425796320e+03 1.3480413030082466e+03 0 2 0 P 775 111 -2.9420682174197654e-01 2.5131457931322942e-01 1.3022820225659302e+02 1.3022884703189320e+02 1.3497999999999999e-01 2 0 0 -262 0 P 776 111 2.1808484835509710e-02 3.4739252475855999e-02 1.3018834447633772e+01 1.3019598780337631e+01 1.3497999999999999e-01 2 0 0 -263 0 V -252 0 2.2905751564047588e+01 -3.5595845413983285e+00 1.4291664715640214e+04 1.4291717876903973e+04 0 2 0 P 777 111 1.8279443920262844e-01 -2.3695624301270182e-01 1.1222317832130916e+02 1.1222365853154521e+02 1.3497999999999999e-01 2 0 0 -264 0 P 778 111 1.8094420015634316e-01 1.8043077017889689e-01 1.1472552769718048e+02 1.1472589167691538e+02 1.3497999999999999e-01 2 0 0 -265 0 V -253 0 1.2260791437956435e+00 -1.4489396529280316e+00 5.2571409381626672e+03 5.2571603618626341e+03 0 3 0 P 779 22 -6.5038995644094280e-02 -2.1360384467465116e-03 7.9702064854890466e+01 7.9702091420280709e+01 0 1 0 0 0 0 P 780 -11 1.9922626937671800e-02 -8.5263438659147581e-02 6.6352679615537539e+01 6.6352737390308974e+01 5.1000000000000004e-04 1 0 0 0 0 P 781 11 4.3222074000870093e-03 -1.8585530384653683e-02 1.4504159418409575e+01 1.4504171979060221e+01 5.1000000000000004e-04 1 0 0 0 0 V -254 0 1.2261085393293176e+00 -1.4488820198585435e+00 5.2570660094948762e+03 5.2570854332153285e+03 0 2 0 P 782 22 1.1096562081050221e-01 1.3153255323044396e-02 1.9443964258454457e+01 1.9444285342001692e+01 0 1 0 0 0 0 P 783 22 -2.7091104058261421e-02 4.1923439562524728e-02 4.7099269189714574e+00 4.7101914063821031e+00 0 1 0 0 0 0 V -255 0 -1.1507078111758497e+02 7.3473986000586351e+01 2.2333894359704686e+03 2.2376624568261132e+03 0 2 0 P 784 111 -1.0351969009330031e+00 4.2956798630949328e-01 1.8495213885591919e+01 1.8529633497529179e+01 1.3497999999999999e-01 2 0 0 -266 0 P 785 111 -1.6199764396974605e+00 1.2657900095597112e+00 3.3038598886347934e+01 3.3102776076741165e+01 1.3497999999999999e-01 2 0 0 -267 0 V -256 0 2.1366291327530174e+01 -1.0008490854836426e+01 -3.0061965271343563e+01 4.2193178421863180e+01 0 2 0 P 786 22 1.7223250489391898e-01 -6.1733530835467343e-02 -1.4176713115907519e-01 2.3145838513331476e-01 0 1 0 0 0 0 P 787 22 4.6842804254491312e-02 -1.2928353118858341e-01 -1.0683769521453605e-01 1.7413435291684440e-01 0 1 0 0 0 0 V -257 0 -1.6904111902783872e+00 7.6772593220176963e+00 -1.6704720811848748e+02 1.6782510060566270e+02 0 2 0 P 788 22 -1.4765727126762232e-01 2.2163974408978340e-01 -3.0457199071246519e+00 3.0573414265622647e+00 0 1 0 0 0 0 P 789 22 -6.1447438022490718e-02 4.3247049112020826e-02 -3.6257460498950556e-01 3.7027886663934978e-01 0 1 0 0 0 0 V -258 0 -1.6903407351458315e+00 7.6771705745321945e+00 -1.6704607240475167e+02 1.6782395843680584e+02 0 2 0 P 790 22 6.6490143301456972e-02 -6.3655958838597301e-02 -1.0203698210398104e+00 1.0245133439544478e+00 0 1 0 0 0 0 P 791 22 8.2935379633314571e-02 6.9819362059322210e-02 -1.4690643489628326e+00 1.4730590897540004e+00 0 1 0 0 0 0 V -259 0 1.0227575525429421e-06 1.0957050069130500e-05 -6.1136848395340474e-04 6.1149223187933316e-04 0 2 0 P 792 22 -4.4839716115330150e-02 1.8339547998973249e-01 -8.4706454259079571e+00 8.4727491662197423e+00 0 1 0 0 0 0 P 793 22 6.9951048410125602e-02 8.5628321958769876e-02 -6.5400255947537813e+00 6.5409601847687231e+00 0 1 0 0 0 0 V -260 0 -2.3242766873055079e-01 -8.3829905185217557e-01 1.2381313419439236e+01 1.2496917277403941e+01 0 2 0 P 794 22 -4.6739801355008818e-02 -2.0328069699797665e-02 2.1397317976128771e-01 2.1995990795047599e-01 0 1 0 0 0 0 P 795 22 -1.6333586199690212e-01 -2.4502506886926398e-01 3.1192867408274014e+00 3.1331558626551428e+00 0 1 0 0 0 0 V -261 0 -2.3220808822769526e-01 -8.3803777533856949e-01 1.2378086016837798e+01 1.2493671885135917e+01 0 2 0 P 796 22 1.4429995742686419e-01 -2.2664260392563140e-02 5.4011178679036131e-01 5.5951486900922776e-01 0 1 0 0 0 0 P 797 22 -1.3624616017728595e-02 1.4766021649238105e-03 3.5891021753609725e-01 3.5917176220771113e-01 0 1 0 0 0 0 V -262 0 -2.5634185835077368e+00 2.6919222440638433e+00 1.3480327364338493e+03 1.3480459968857037e+03 0 2 0 P 798 22 -3.0676729493944860e-01 2.2671315406546047e-01 1.2319050457185693e+02 1.2319109513960890e+02 0 1 0 0 0 0 P 799 22 1.2560473197472043e-02 2.4601425247768944e-02 7.0376976847360835e+00 7.0377518922842679e+00 0 1 0 0 0 0 V -263 0 -2.5634046502484154e+00 2.6919184888185841e+00 1.3480300299102319e+03 1.3480432904555221e+03 0 2 0 P 800 22 -1.1820245590838951e-02 -4.1861740319001306e-02 2.1364089748912685e+00 2.1368517570258176e+00 0 1 0 0 0 0 P 801 22 3.3628730426348660e-02 7.6600992794857298e-02 1.0882425472742504e+01 1.0882747023311813e+01 0 1 0 0 0 0 V -264 0 2.2905774555094453e+01 -3.5596143446686681e+00 1.4291678830557295e+04 1.4291731991881452e+04 0 2 0 P 802 22 1.1897890058568597e-02 1.6410341096972033e-02 4.3399220988415381e+00 4.3399694334287542e+00 0 1 0 0 0 0 P 803 22 1.7089654914405983e-01 -2.5336658410967383e-01 1.0788325622246762e+02 1.0788368909811645e+02 0 1 0 0 0 0 V -265 0 2.2905765438350556e+01 -3.5595707064637567e+00 1.4291673512477737e+04 1.4291726673769404e+04 0 2 0 P 804 22 1.7934073718150681e-01 1.1571090940544328e-01 9.9105850367145678e+01 9.9106080182346176e+01 0 1 0 0 0 0 P 805 22 1.6034629748363427e-03 6.4719860773453625e-02 1.5619677330034813e+01 1.5619811494569175e+01 0 1 0 0 0 0 V -266 0 -1.1507097050537887e+02 7.3474064589435670e+01 2.2333928196434226e+03 2.2376658467960856e+03 0 2 0 P 806 22 -4.3063881229938067e-01 1.5901999326194144e-01 6.5454577753714780e+00 6.5615359965549676e+00 0 1 0 0 0 0 P 807 22 -6.0455808863362237e-01 2.7054799304755184e-01 1.1949756110220441e+01 1.1968097500974212e+01 0 1 0 0 0 0 V -267 0 -1.1507107976724249e+02 7.3474219354444827e+01 2.2333955267789524e+03 2.2376685594659393e+03 0 2 0 P 808 22 -1.1283681298247601e+00 8.2396220903032336e-01 2.1714939205414947e+01 2.1759841751565688e+01 0 1 0 0 0 0 P 809 22 -4.9160830987270043e-01 4.4182780052938780e-01 1.1323659680932987e+01 1.1342934325175468e+01 0 1 0 0 0 0 E 57 31 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 193 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 3 -1.8579865115511323e+00 -2.4188455049296360e+00 3.5481332887660682e+02 3.5482643824263295e+02 0 3 0 0 -3 0 P 13 321 9.7836488916793651e-01 9.6866607334641630e-01 1.2960205956101649e+03 1.2960214208872108e+03 4.9359999999999998e-01 1 0 0 0 0 P 15 2101 8.7962162238319574e-01 1.4501794315832197e+00 1.0634932066287856e+03 1.0634947169231300e+03 5.7933000000000001e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 -2.3170888679579020e+00 -1.1271914505393035e+00 -7.0416749446716335e+02 7.0417220885629308e+02 0 3 0 0 -4 0 P 74 2101 2.3170888679579020e+00 1.1271914505393035e+00 -2.5448325597512544e+03 2.5448339301916653e+03 5.7933000000000001e-01 2 0 0 -11 0 V -3 0 0 0 0 0 0 9 0 P 5 -1 -1.4777277841440641e+00 -1.4045270918000201e+00 2.1438486252378368e+00 2.9584561317629956e+00 0 3 0 0 -5 0 P 14 1 1.3699162725970199e-01 1.6160751325838256e+00 -2.8415051712557671e+00 3.2883912751326227e+00 3.3000000000000002e-01 2 0 0 -9 0 P 16 1 9.7943341248568827e-01 -8.7983839642842832e-01 -2.4342699743656988e+00 2.7871088463534193e+00 3.3000000000000002e-01 2 0 0 -11 0 P 75 -1 -8.6018146366902415e-01 1.2345784447131465e+00 -7.1859223912445302e-01 1.6998149583763555e+00 3.3000000000000002e-01 2 0 0 -13 0 P 76 21 8.3985976310928245e-01 3.1009245917935152e-01 -1.1354335270093319e+00 1.4459360460223436e+00 0 2 0 0 -13 0 P 77 21 -1.0652076546772995e+00 -2.0339784206915614e+00 1.0664307707174994e+00 2.5316022894908219e+00 0 2 0 0 -13 0 P 78 21 -8.1420229599944682e-01 -9.2306049547593394e-01 8.1411939828980707e+01 8.1421243620904576e+01 0 2 0 0 -13 0 P 79 21 3.8349689550463267e-01 3.2175295989529873e-01 5.2342221690871455e+01 5.2344615447745888e+01 0 2 0 0 -13 0 P 80 3 3.7412833771760037e-03 -6.4774598451088350e-01 2.1560959888314989e+02 2.1561115165828144e+02 5.0000000000000000e-01 2 0 0 -13 0 V -4 0 0 0 0 0 0 2 0 P 6 2 -3.4613111219787815e+00 -1.2808312488195008e+00 -6.8815657970606799e+02 6.8816647651286019e+02 0 3 0 0 -5 0 P 73 21 1.1600319592095758e+00 1.4144568584628103e-01 -6.6418247606491896e+00 6.7438503230428237e+00 0 2 0 0 -11 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -5.8407062917408030e+00 -3.2256368880924748e+00 -6.3683229324958040e+02 6.4193326292040501e+02 8.0488668362683327e+01 3 0 0 -6 0 P 8 22 9.0166738561795778e-01 5.4027854747295401e-01 -4.9180437831249854e+01 4.9191669724218329e+01 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -5.8407062917408030e+00 -3.2256368880924748e+00 -6.3683229324958040e+02 6.4193326292040501e+02 8.0488668362683327e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 9.0166738561795778e-01 5.4027854747295401e-01 -4.9180437831249854e+01 4.9191669724218329e+01 0 1 0 0 0 0 V -8 0 0 0 0 0 0 2 0 P 11 -11 -2.2812638697225758e+01 -3.6484327185562712e+01 -3.0905019490663977e+02 3.1203132148328552e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 12 1.6971932405484960e+01 3.3258690297470238e+01 -3.2778209834294103e+02 3.2990194143711983e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 85 92 1.0166132496428977e+00 3.0662545641670453e+00 1.0606517014575300e+03 1.0667831081982624e+03 1.1416537440415463e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 8 0 P 86 221 -1.2067414306202527e-01 1.5836865177359554e+00 -1.8659865149231547e+00 2.5108230546252064e+00 5.4744999999999999e-01 2 0 0 -19 0 P 87 111 1.4081913448258432e-01 -1.6770849564913506e-01 -3.4385261485818192e-01 4.2943030784299480e-01 1.3497999999999999e-01 2 0 0 -20 0 P 88 2112 2.4787600793361336e-01 -3.3455846299354852e-01 2.5644199529728100e+00 2.7626822764434529e+00 9.3957000000000002e-01 1 0 0 0 0 P 89 -3122 -1.1599957668699879e-02 8.5626026965523516e-02 4.3711026831128069e-01 1.2013632359011890e+00 1.1156800000000000e+00 2 0 0 -21 0 P 90 -323 3.6666728878548971e-01 4.1504156345337939e-01 9.0392939697680475e+01 9.0398962667449339e+01 8.8442058000876422e-01 2 0 0 -22 0 P 91 213 -5.9518716746929989e-01 1.4760751782680376e-01 5.7889550576179410e+01 5.7899791032495173e+01 8.9983329063548800e-01 2 0 0 -23 0 P 92 -211 1.3436747587617362e-01 7.0162349596940365e-01 3.3310956654138340e+02 3.3311036178918528e+02 1.3957000000000000e-01 1 0 0 0 0 P 93 2212 8.5434461076506174e-01 6.3493640085866321e-01 5.7846795355078393e+02 5.7846969383431997e+02 9.3827000000000005e-01 1 0 0 0 0 V -11 0 0 0 0 0 56 1 0 P 17 21 -2.4441080566542666e+00 -6.3920677965712647e-01 3.3194303348727749e+00 4.1714346750051732e+00 0 2 0 0 -11 0 P 18 21 3.1509886538730442e-01 -6.5105557137916215e+00 9.2002726808945425e+01 9.2233336507353997e+01 0 2 0 0 -11 0 P 19 21 1.4732901818436954e+00 -2.9579039454024880e-01 1.4133289298193439e+01 1.4212949810079838e+01 0 2 0 0 -11 0 P 20 21 6.7471998367027763e-01 -3.7476051710184019e-02 6.0776959390957535e+00 6.1151483578828092e+00 0 2 0 0 -11 0 P 21 21 1.3095121248004542e+00 -5.3652226946243542e-01 1.7269554228659953e+01 1.7327440128514521e+01 0 2 0 0 -11 0 P 22 21 4.3999206849550632e+00 -1.4211912277205949e+00 1.3279250792503163e+02 1.3287298163117751e+02 0 2 0 0 -11 0 P 23 21 2.6203700387277538e+00 3.6429402799167399e+00 2.1038999429127554e+02 2.1043784605176384e+02 0 2 0 0 -11 0 P 24 21 2.6999812891628077e+00 5.0780801270261966e-01 2.3603240923545636e+02 2.3604839753201787e+02 0 2 0 0 -11 0 P 25 21 1.6412918216175039e+00 -1.2312061175851359e+00 4.9627478229700023e+02 4.9627902358580769e+02 0 2 0 0 -11 0 P 26 21 -1.3681716898354224e+00 -4.8226650656581738e+00 1.8417126022436582e+03 1.8417194246831452e+03 0 2 0 0 -11 0 P 27 21 -1.3095121248004542e+00 5.3652226946243542e-01 5.9098330627581538e+02 5.9098500063440258e+02 0 2 0 0 -11 0 P 28 21 -7.4380496945389096e-01 -8.1819418541458439e-02 1.3422678595895019e+02 1.3422887174196043e+02 0 2 0 0 -11 0 P 29 21 -1.6412918216175039e+00 1.2312061175851359e+00 1.9367552728948488e+02 1.9368639492284348e+02 0 2 0 0 -11 0 P 30 21 -4.7895763311847528e-01 -1.3484618000499251e+00 6.0484670350153465e+01 6.0501595821988445e+01 0 2 0 0 -11 0 P 31 21 -1.2587312059057747e+00 1.1071322523367344e+00 2.7172450010235831e+01 2.7224110373557671e+01 0 2 0 0 -11 0 P 32 21 -1.3273805920422133e+00 2.8572631217905547e-01 2.0152673999805124e+01 2.0198362510461664e+01 0 2 0 0 -11 0 P 33 21 -2.1648912124064346e+00 -6.6466234698828952e-01 1.5494909382480106e+01 1.5659525751705528e+01 0 2 0 0 -11 0 P 34 21 -1.7784618204712932e+00 -2.8438493099002460e-01 1.8083888954202958e+01 1.8173355247278693e+01 0 2 0 0 -11 0 P 35 21 -2.6999812891628077e+00 -5.0780801270261966e-01 2.2353580541657518e+01 2.2521774596420325e+01 0 2 0 0 -11 0 P 36 21 -4.3999206849550632e+00 1.4211912277205949e+00 3.8513140680793299e+01 3.8789703422921669e+01 0 2 0 0 -11 0 P 37 21 -2.9513139834018420e+00 1.9440266889462541e+00 1.0133271475480393e+01 1.0731853744425665e+01 0 2 0 0 -11 0 P 38 21 -1.2391521607336158e+00 1.6106050412228312e+00 4.7029721427489708e+00 5.1232307825956882e+00 0 2 0 0 -11 0 P 39 21 -5.3127489677902628e-01 2.2949212773018099e+00 2.3242309698746086e+00 3.3092244236806305e+00 0 2 0 0 -11 0 P 40 21 -1.7843812510584986e-01 6.3002901417655777e-01 1.5524616567796188e+00 1.6849076885593748e+00 0 2 0 0 -11 0 P 41 21 -3.1509886538730442e-01 6.5105557137916215e+00 1.4367290719713875e+01 1.5776744455752889e+01 0 2 0 0 -11 0 P 42 21 4.7895763311847528e-01 1.3484618000499251e+00 2.7763404781012615e+00 3.1234301802441298e+00 0 2 0 0 -11 0 P 43 21 2.8088919746818872e+00 6.7512010188323570e+00 1.3210759563565288e+01 1.5099429047763596e+01 0 2 0 0 -11 0 P 44 21 2.4441080566542666e+00 6.3920677965712647e-01 1.2862390413465269e+01 1.3108140091109997e+01 0 2 0 0 -11 0 P 45 21 2.8541871622244979e+00 4.6905610724613334e-01 7.6831520352962199e+00 8.2095811821449498e+00 0 2 0 0 -11 0 P 46 21 2.1648912124064346e+00 6.6466234698828952e-01 4.9081928882036099e+00 5.4054497893210582e+00 0 2 0 0 -11 0 P 47 21 1.4931911150068220e+00 -7.3863109372683078e-01 5.3413796778110383e+00 5.5951347133995046e+00 0 2 0 0 -11 0 P 48 21 1.3273805920422133e+00 -2.8572631217905547e-01 2.3878010657401365e+00 2.7468477735672781e+00 0 2 0 0 -11 0 P 49 21 1.2587312059057747e+00 -1.1071322523367344e+00 3.6272550228806821e+00 3.9958885212050590e+00 0 2 0 0 -11 0 P 50 21 5.3127489677902628e-01 -2.2949212773018099e+00 3.4775626718171746e+00 4.2002808026816902e+00 0 2 0 0 -11 0 P 51 21 1.7843812510584986e-01 -6.3002901417655777e-01 5.6411187777758987e-01 8.6429100067357789e-01 0 2 0 0 -11 0 P 52 21 2.9513139834018420e+00 -1.9440266889462541e+00 1.9653794868827703e+00 4.0437866565161622e+00 0 2 0 0 -11 0 P 53 21 1.7784618204712932e+00 2.8438493099002460e-01 8.2282426728493607e-01 1.9801113632018930e+00 0 2 0 0 -11 0 P 54 21 7.4380496945389096e-01 8.1819418541458439e-02 1.2136152720717031e-01 7.5806917238522686e-01 0 2 0 0 -11 0 P 55 21 2.4353614321044695e-01 -2.7773601095545253e-01 -1.6079693109232507e-01 4.0286821403528039e-01 0 2 0 0 -11 0 P 56 21 1.2391521607336158e+00 -1.6106050412228312e+00 -1.1397451222979040e+00 2.3299282435442192e+00 0 2 0 0 -11 0 P 57 21 -1.4732901818436954e+00 2.9579039454024880e-01 -1.5009373235196861e+00 2.1238852997640301e+00 0 2 0 0 -11 0 P 58 21 -9.1299651419272787e-01 5.9382947663123609e-01 -1.8441813808195473e+00 2.1417752094012323e+00 0 2 0 0 -11 0 P 59 21 -1.3734259882836988e-01 5.9776186687890531e-01 -1.5835478661042068e+00 1.6981772826152963e+00 0 2 0 0 -11 0 P 60 21 1.3681716898354224e+00 4.8226650656581738e+00 -4.4577471249803153e+00 6.7083158496493844e+00 0 2 0 0 -11 0 P 61 21 2.2428145967421846e+00 -4.6075547361838703e-01 -1.0795866154240393e+01 1.1035997414919159e+01 0 2 0 0 -11 0 P 62 21 9.1299651419272787e-01 -5.9382947663123609e-01 -7.5820316059537314e+00 7.6598563534785375e+00 0 2 0 0 -11 0 P 63 21 1.3734259882836988e-01 -5.9776186687890531e-01 -1.3212489948475596e+00 1.4566678225776704e+00 0 2 0 0 -11 0 P 64 21 -2.8088919746818872e+00 -6.7512010188323570e+00 -1.3615763135600995e+01 1.5455018443434689e+01 0 2 0 0 -11 0 P 65 21 -2.6203700387277538e+00 -3.6429402799167399e+00 -9.4671358676570776e+00 1.0476832276961442e+01 0 2 0 0 -11 0 P 66 21 -2.8541871622244979e+00 -4.6905610724613334e-01 -1.4446696727169892e+01 1.4733412514267469e+01 0 2 0 0 -11 0 P 67 21 -6.7471998367027763e-01 3.7476051710184019e-02 -5.4030522189571375e+00 5.4451469026641925e+00 0 2 0 0 -11 0 P 68 21 -2.4353614321044695e-01 2.7773601095545253e-01 -2.8320895994147133e+00 2.8560774926364054e+00 0 2 0 0 -11 0 P 69 21 -2.2428145967421846e+00 4.6075547361838703e-01 -4.4612322916563038e+01 4.4671040607238204e+01 0 2 0 0 -11 0 P 70 21 3.4385752915033374e-01 -5.2884989237046121e+00 -1.7198791833894583e+02 1.7206955138382349e+02 0 2 0 0 -11 0 P 71 21 -1.4931911150068220e+00 7.3863109372683078e-01 -2.0278122067650364e+02 2.0278806339292117e+02 0 2 0 0 -11 0 P 72 21 -3.4385752915033374e-01 5.2884989237046121e+00 -2.8960664528553070e+03 2.8960713019214127e+03 0 2 0 0 -11 0 P 94 92 4.4565542396531628e+00 3.8879873995715719e-01 -1.6815327453398440e+03 1.0233631885361925e+04 1.0094535609893403e+04 2 0 0 -12 0 V -12 0 0 0 0 0 0 108 0 P 95 -213 1.0566751801384442e+00 -9.1348483303539396e-01 -2.1641764546509168e+00 2.7173283173585796e+00 8.6556136752230395e-01 2 0 0 -24 0 P 96 321 -1.2242409608639939e+00 -3.3482882407147530e-01 1.4656688661753734e+00 2.0006755001654031e+00 4.9359999999999998e-01 1 0 0 0 0 P 97 -311 1.6700207414001889e-01 -1.6961085157785891e-01 7.7094659152156220e-01 9.4799346496626735e-01 4.9767000000000000e-01 2 0 0 -25 0 P 98 -213 -1.0423016014918440e+00 -2.0049886869678188e-01 1.9353568229460614e+00 2.3486850336307530e+00 8.0257269468632375e-01 2 0 0 -26 0 P 99 213 -4.6500575568994440e-01 -4.6291239183732469e-01 9.9033535799102914e+00 9.9564823242605449e+00 7.9032266148031105e-01 2 0 0 -27 0 P 100 313 3.9724242586301339e-01 -2.6937366563361862e+00 3.1647476139858973e+01 3.1783013570315340e+01 1.0877439355433203e+00 2 0 0 -28 0 P 101 -323 1.0141510710461422e-01 -1.8433348233124522e+00 3.0010717057539484e+01 3.0080561944488533e+01 8.8820059318551470e-01 2 0 0 -29 0 P 102 213 5.6004269836887788e-01 -7.5744409808607227e-01 8.7912744744337949e+00 8.8689609595515915e+00 6.9612659157469026e-01 2 0 0 -30 0 P 103 223 2.0205934857351919e+00 -1.1186691512428122e+00 4.2265050690881615e+01 4.2335300407428335e+01 7.8034093822584705e-01 2 0 0 -31 0 P 104 311 -4.9530774151521746e-02 -1.5726785907864646e-01 1.0436460884837359e+01 1.0449620936030522e+01 4.9767000000000000e-01 2 0 0 -32 0 P 105 -313 3.4644939708882121e+00 -8.1532706602851768e-01 7.4775278015077490e+01 7.4865931279670392e+01 9.4762199282201198e-01 2 0 0 -33 0 P 106 223 1.9228658467591131e-01 -2.6715523058761091e-02 4.4665572394067176e+01 4.4672927724828675e+01 7.8703644660957428e-01 2 0 0 -34 0 P 107 2112 1.2031701295562314e+00 -3.0754328156253163e-01 3.8334016123318477e+01 3.8365632865344878e+01 9.3957000000000002e-01 1 0 0 0 0 P 108 -3122 2.8314717919702201e+00 2.5413391480305232e+00 1.6900365407801141e+02 1.6905015667178952e+02 1.1156800000000000e+00 2 0 0 -35 0 P 109 -321 1.5362585561685431e+00 6.2782865420935607e-01 1.7289445639613834e+02 1.7290312591924598e+02 4.9359999999999998e-01 1 0 0 0 0 P 110 111 1.4896528868119974e-01 2.4414917789416701e-01 1.3014340008608485e+01 1.3018182090382890e+01 1.3497999999999999e-01 2 0 0 -36 0 P 111 213 1.5590741360643283e+00 1.2691298256418218e-01 2.0346539893265407e+02 2.0347355040105961e+02 9.3291528103007870e-01 2 0 0 -37 0 P 112 -213 -1.8126864298589379e-01 -5.1598309393057973e-01 2.6354610643976730e+02 2.6354774500760709e+02 7.5138682404823165e-01 2 0 0 -38 0 P 113 213 2.7548373089723394e-01 -3.0124739347827982e+00 1.0181837702509932e+03 1.0181888335530351e+03 1.0769768193365650e+00 2 0 0 -39 0 P 114 113 -2.1745445752771259e-01 -6.7511249466342918e-02 6.8184397423749502e+01 6.8186270390583672e+01 4.5119123226040048e-01 2 0 0 -40 0 P 115 -211 -5.9269277272265886e-01 -2.9745139484498789e-01 4.1653979562096919e+02 4.1654034687866528e+02 1.3957000000000000e-01 1 0 0 0 0 P 116 223 3.0646822155896902e-01 -1.3726416864895510e+00 5.8777784054957885e+02 5.8778001705970496e+02 7.6193543725030288e-01 2 0 0 -41 0 P 117 211 -1.1047428304321942e+00 -1.3442106570540216e-01 1.6822788872340783e+02 1.6823162767406276e+02 1.3957000000000000e-01 1 0 0 0 0 P 118 311 -2.8997889725485809e-01 4.0308103590839243e-02 2.1628800056570319e+02 2.1628877126804937e+02 4.9767000000000000e-01 2 0 0 -42 0 P 119 333 -1.2077175782223748e+00 5.2856182472170839e-02 1.4584128953952455e+02 1.4584985137179763e+02 1.0178580938667738e+00 2 0 0 -43 0 P 120 -321 1.5531698413722195e-01 -4.5874200933548781e-01 4.5832155110128589e+01 4.5837371767975256e+01 4.9359999999999998e-01 1 0 0 0 0 P 121 321 1.6370077170411067e-02 3.1575660690691731e-01 7.3872860190121614e+01 7.3875185846422653e+01 4.9359999999999998e-01 1 0 0 0 0 P 122 -313 -1.2132523039608540e+00 4.4042782260757568e-01 1.4001098506048331e+02 1.4002007798792857e+02 9.3826665651686536e-01 2 0 0 -44 0 P 123 1114 -1.2138153636025653e+00 1.7731562752329036e-01 4.4437099914642488e+01 4.4469742347742191e+01 1.1820943625508615e+00 2 0 0 -45 0 P 124 -1114 -2.0015492327797837e+00 -4.2576149476695446e-01 1.9668804492221621e+01 1.9815744292595678e+01 1.2705823604289970e+00 2 0 0 -46 0 P 125 -213 -2.0307419946211578e+00 1.7630876002241577e-01 3.6101437279599338e+01 3.6168613204471832e+01 8.3654626546940480e-01 2 0 0 -47 0 P 126 211 -6.1843327876077703e-01 6.0038246062845621e-02 5.9285769966008877e+00 5.9626813851483202e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 -213 -2.6436022629033387e+00 2.4021074320923069e-01 1.9974466386278635e+01 2.0163027679064481e+01 7.2252587812791347e-01 2 0 0 -48 0 P 128 323 -1.7157448465583951e+00 -1.2960282422478880e-01 1.4879015493665651e+01 1.5006655392826708e+01 9.2413567606366132e-01 2 0 0 -49 0 P 129 -313 -1.9806649990370537e+00 2.7585240022115565e-01 1.4285523869697951e+01 1.4451630428669368e+01 8.7994399254398248e-01 2 0 0 -50 0 P 130 -213 -9.3568132101469104e-01 2.5771867848734148e-01 8.1567658003574550e+00 8.2412562776239167e+00 6.6600169658761077e-01 2 0 0 -51 0 P 131 111 -1.4325672694413096e+00 3.7366241440126935e-01 4.9840971282009576e+00 5.2010879982126577e+00 1.3497999999999999e-01 2 0 0 -52 0 P 132 223 -3.4455517642108403e-03 1.6870677822703306e+00 4.6543525053443808e+00 5.0138139138942028e+00 7.9317283447688958e-01 2 0 0 -53 0 P 133 213 -1.9485982202536187e+00 4.2604634175210898e-01 8.8837110186932868e+00 9.1596743814207588e+00 1.0003813276482687e+00 2 0 0 -54 0 P 134 113 -9.6908630224008685e-01 2.2467024252376375e+00 5.8956455419002385e+00 6.4287429486654526e+00 7.6374046346227409e-01 2 0 0 -55 0 P 135 -213 -1.0551978759834648e+00 1.7714554405474083e+00 4.9919082034699684e+00 5.4403393802625439e+00 6.5318307176445134e-01 2 0 0 -56 0 P 136 321 -3.3991709135852005e-01 2.2719787210339448e+00 4.2211057463263773e+00 4.8310253176213269e+00 4.9359999999999998e-01 1 0 0 0 0 P 137 -321 7.6878018490019417e-01 1.5143120025167389e+00 2.4840479973732847e+00 3.0493112709127717e+00 4.9359999999999998e-01 1 0 0 0 0 P 138 323 2.2974561797705190e-01 3.2538537660383517e+00 7.7202089920488604e+00 8.4301119098386241e+00 9.0819191350137218e-01 2 0 0 -57 0 P 139 -311 2.8995095369417390e-01 3.4496707310018571e+00 6.7770508091587978e+00 7.6262961394571445e+00 4.9767000000000000e-01 2 0 0 -58 0 P 140 -213 6.5345059110685699e-01 8.6490023633341517e-01 2.7276934088214215e+00 3.0092419671347312e+00 6.6345745184569427e-01 2 0 0 -59 0 P 141 113 1.4342103563399289e+00 2.0929637347807000e+00 5.8706591884819757e+00 6.4331019000550045e+00 6.9476917594521337e-01 2 0 0 -60 0 P 142 321 1.5458627959960941e-02 -2.2475419195484925e-01 8.0385586692228295e-01 9.6983433160775279e-01 4.9359999999999998e-01 1 0 0 0 0 P 143 3122 2.3345475600529015e+00 1.9524233779015616e+00 8.9021549542141276e+00 9.4739207326198702e+00 1.1156800000000000e+00 2 0 0 -61 0 P 144 -3122 3.7202153359255532e+00 2.0828190362496493e-01 1.5559711230827544e+01 1.6038476827497494e+01 1.1156800000000000e+00 2 0 0 -62 0 P 145 -323 2.1273564396938900e+00 -7.8600890777803212e-01 4.2920269978454497e+00 4.9304394238390792e+00 8.6271764633564962e-01 2 0 0 -63 0 P 146 211 3.5693376409084371e-01 1.6906805280153467e-01 4.7224578486489260e-01 6.3125397792712501e-01 1.3957000000000000e-01 1 0 0 0 0 P 147 113 1.0957935642143062e+00 2.0990700321370559e-01 2.5122274345819990e+00 2.8088191488324235e+00 5.7736803029748629e-01 2 0 0 -64 0 P 148 -211 1.1180647783689321e+00 -2.0813454626464010e+00 3.4492938705544161e+00 4.1832016176431406e+00 1.3957000000000000e-01 1 0 0 0 0 P 149 323 2.1341492365854910e+00 -2.4245418263372043e-01 3.0391468763578362e+00 3.8193974831129216e+00 8.5907299063508480e-01 2 0 0 -65 0 P 150 -313 1.1212433025895261e+00 -1.2768640196326051e+00 1.8910711975007821e+00 2.6881398153476090e+00 8.7314209874787085e-01 2 0 0 -66 0 P 151 -213 1.4472913409893143e-01 -6.7487460583651515e-01 1.1474461118817338e+00 1.4749554341788120e+00 6.1843245167203342e-01 2 0 0 -67 0 P 152 111 4.3619440953034316e-01 -5.8113760831450656e-01 1.5116752577910275e-01 7.5435913459916770e-01 1.3497999999999999e-01 2 0 0 -68 0 P 153 2212 2.0527538919596999e+00 -7.7059203451780078e-01 3.1097290291478324e-01 2.4051331280960784e+00 9.3827000000000005e-01 1 0 0 0 0 P 154 111 9.6044135330482422e-02 -7.8335624022657535e-01 6.0497917252628958e-02 8.0296393033884284e-01 1.3497999999999999e-01 2 0 0 -69 0 P 155 -2112 4.1550952642490541e-01 4.8277957664837845e-01 -6.2152380477061486e-01 1.2941436979621614e+00 9.3957000000000002e-01 1 0 0 0 0 P 156 113 3.8044763991521391e-01 -4.6905222133056601e-01 1.4614324338933149e-01 1.1806490852102596e+00 1.0039043887578512e+00 2 0 0 -70 0 P 157 111 -1.8453830433388993e-01 3.5787855795608858e-01 -1.4435108614203522e+00 1.5046842377886744e+00 1.3497999999999999e-01 2 0 0 -71 0 P 158 311 9.6774723577959298e-02 1.3473668052393487e-01 -3.2226686558549444e-01 6.1567092001855872e-01 4.9767000000000000e-01 2 0 0 -72 0 P 159 -323 1.3164749511206164e-01 -8.8215209667399638e-02 -7.8378699829804466e-01 1.1675220710372383e+00 8.5068956821632624e-01 2 0 0 -73 0 P 160 323 1.9160462566187950e-01 5.1944742552507006e-01 -1.4419961811019726e+00 1.7963399440671475e+00 9.1703121423364731e-01 2 0 0 -74 0 P 161 -311 -2.8209744816260512e-01 9.8887943118635391e-01 -9.0707253724102765e-01 1.4587383303389871e+00 4.9767000000000000e-01 2 0 0 -75 0 P 162 -213 -2.9294456636407236e-02 1.0514091551404705e+00 -1.8589359176816005e+00 2.2731085573563421e+00 7.7785627899829701e-01 2 0 0 -76 0 P 163 113 -8.1228045045200786e-02 9.1902539981022568e-01 -1.7792805021093518e+00 2.1558869456899323e+00 7.9423153841404892e-01 2 0 0 -77 0 P 164 113 2.7480531655594043e-01 -2.5026708940940617e-01 -1.1715515212275811e+00 1.5007421474108580e+00 8.6112858974477613e-01 2 0 0 -78 0 P 165 211 3.3062882964057105e-01 7.0916356362505195e-01 -9.4232515243836690e-01 1.2327549881387090e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 111 6.9575205331890477e-01 6.1907732884645106e-01 -2.2548702615128957e+00 2.4433557161093766e+00 1.3497999999999999e-01 2 0 0 -79 0 P 167 1114 5.1974931283064907e-01 -4.2137530416013091e-01 -5.6293248879753799e+00 5.7902855962890030e+00 1.1791573673894817e+00 2 0 0 -80 0 P 168 -1114 -1.6588156877118884e-01 -4.4723435790600830e-01 -2.5993239915213380e+00 2.9710319815848765e+00 1.3575752490938200e+00 2 0 0 -81 0 P 169 -211 8.9111243641585158e-01 -1.1862233221181469e-01 -4.4882810641309616e+00 4.5795523064564865e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 321 4.7506241617898204e-01 -2.5700105531568257e-01 -3.1131493089550131e+00 3.1979795842916605e+00 4.9359999999999998e-01 1 0 0 0 0 P 171 -321 -1.4835845043495204e+00 -3.1268656537187858e+00 -7.1881800001918528e+00 7.9932399234046745e+00 4.9359999999999998e-01 1 0 0 0 0 P 172 211 1.9279180292661380e-01 -1.2192767126522169e-01 -1.7261917268933566e-01 3.1829577436058532e-01 1.3957000000000000e-01 1 0 0 0 0 P 173 223 -1.1859788923070165e+00 -2.6976167012377030e+00 -7.2178628920152041e+00 7.8354066146574146e+00 7.8254091860599473e-01 2 0 0 -82 0 P 174 111 -2.2491551708545998e-01 -3.3202915971359676e-01 -4.9474598365043054e-01 6.5101731272230323e-01 1.3497999999999999e-01 2 0 0 -83 0 P 175 313 -1.6871912131814488e+00 -1.0192329025784397e+00 -7.1592839529428485e+00 7.4775826368202383e+00 8.7945748736101947e-01 2 0 0 -84 0 P 176 -323 -1.3974535403917081e+00 -2.6173106329423375e+00 -6.3263065216084957e+00 7.0219501821141108e+00 6.9457815102397424e-01 2 0 0 -85 0 P 177 111 -8.9089763784919784e-01 -2.8367881985490884e-01 -3.3983686857410098e+00 3.5272229300945286e+00 1.3497999999999999e-01 2 0 0 -86 0 P 178 331 -5.9133850592156123e-01 -3.4324687904436940e-01 -1.1671908147651987e+01 1.1731077253091430e+01 9.5772337457904988e-01 2 0 0 -87 0 P 179 221 -1.4553676575166148e+00 2.6623959379208834e-01 -1.5142261628429821e+01 1.5224216474622468e+01 5.4744999999999999e-01 2 0 0 -88 0 P 180 113 -7.5759244871803189e-01 -2.0047551704954891e-01 -9.5871433589535897e+00 9.6508124070000125e+00 7.8148933369981521e-01 2 0 0 -89 0 P 181 111 -2.7290648171661821e-02 4.4465635004136561e-01 -3.2066834887080451e+00 3.2402936049473245e+00 1.3497999999999999e-01 2 0 0 -90 0 P 182 113 -9.3982250884965823e-01 -4.7143263141327596e-01 -3.2553109326554861e+01 3.2577803829093291e+01 7.0912652337256532e-01 2 0 0 -91 0 P 183 211 5.8036154647052841e-02 -1.2631276188600602e+00 -4.2058516984948824e+01 4.2077751726237729e+01 1.3957000000000000e-01 1 0 0 0 0 P 184 -211 -8.9787269589774524e-02 -4.5157746824185707e-01 -2.3151681689376133e+01 2.3156680003720268e+01 1.3957000000000000e-01 1 0 0 0 0 P 185 331 -1.5277334591871228e-01 -4.3393449439310322e-01 -2.4033679490532105e+01 2.4057158839693010e+01 9.5786363536178554e-01 2 0 0 -92 0 P 186 3224 -5.5426070928451109e-02 -1.3987366630016069e+00 -8.0826232365025206e+01 8.0850122177258854e+01 1.3794496913158463e+00 2 0 0 -93 0 P 187 -3214 -4.3170473068707371e-01 -5.2227377012099030e-01 -9.4633610070022797e+01 9.4645899145385300e+01 1.3663569401419622e+00 2 0 0 -94 0 P 188 -213 -6.6525330760820556e-01 6.6662022773550245e-01 -4.2961571000626185e+02 4.2961752760659141e+02 8.2146096959940385e-01 2 0 0 -95 0 P 189 211 -1.6886353020112116e-01 1.9065487211775811e-02 -1.2497149817625619e+01 1.2499084435818268e+01 1.3957000000000000e-01 1 0 0 0 0 P 190 -211 -6.3993059584962175e-01 3.7352229517010374e+00 -1.8057661942452964e+03 1.8057701761743085e+03 1.3957000000000000e-01 1 0 0 0 0 P 191 211 4.6584159658224455e-01 3.1582515290688722e-02 -1.6018529118189886e+02 1.6018603246432880e+02 1.3957000000000000e-01 1 0 0 0 0 P 192 113 4.8029751711321497e-02 7.0611821868319746e-01 -3.1749972177794336e+02 3.1750193496073678e+02 9.5103361911671225e-01 2 0 0 -96 0 P 193 311 -2.3772036985188780e-01 2.8353315526693262e-01 -1.5246143346599922e+02 1.5246269468942421e+02 4.9767000000000000e-01 2 0 0 -97 0 P 194 -313 4.2186299786627979e-01 2.4694317019727288e-01 -6.6800513536320466e+01 6.6809969700878554e+01 1.0121726127006099e+00 2 0 0 -98 0 P 195 -213 -2.9712551526831728e-02 3.3068122499173758e-01 -1.6860569581273445e+01 1.6881089492072828e+01 7.6298291339187863e-01 2 0 0 -99 0 P 196 2112 6.2942247383117678e-01 -9.4974483372035651e-02 -3.4731561430104989e+01 3.4750098474121074e+01 9.3957000000000002e-01 1 0 0 0 0 P 197 -313 2.9625946980403567e-01 -8.3900189432551786e-01 -4.4084772781782590e+01 4.4101458578966948e+01 8.2447784615945707e-01 2 0 0 -100 0 P 198 -3112 -3.8895770535707030e-01 5.7688269220195154e-01 -3.0784107475265518e+01 3.0815243262700641e+01 1.1974400000000001e+00 2 0 0 -101 0 P 199 331 7.3413410848857130e-01 1.9164219742665653e-01 -5.6845828217373207e+02 5.6845959547210532e+02 9.5782711289966804e-01 2 0 0 -102 0 P 200 -211 1.0347335952366326e+00 3.6659226924801849e-02 -6.0123888135739446e+02 6.0123978906355489e+02 1.3957000000000000e-01 1 0 0 0 0 P 201 223 2.7516599248536888e-01 5.2275614148726568e-01 -4.7778575800660667e+02 4.7778674836615193e+02 7.7289717685332759e-01 2 0 0 -103 0 P 202 2212 4.9706415333598480e-01 3.8504216663238827e-01 -8.2548347165085579e+02 8.2548424433757953e+02 9.3827000000000005e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 203 92 -1.5124934723546795e+00 -1.7383610368905820e+00 3.4857616540758579e+02 3.5505436402082142e+02 6.7475542119903466e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 15 0 P 204 211 1.4220371949391811e-01 -1.0961656036852790e-01 -2.4891616374141981e-01 3.3715979834001175e-01 1.3957000000000000e-01 1 0 0 0 0 P 205 -213 1.6132613592985864e-01 1.1018327580439709e+00 -6.1082717013852750e-01 1.3303291656696881e+00 3.9573262238426077e-01 2 0 0 -104 0 P 206 211 -6.9560469392806423e-01 2.4269044945993246e-01 -3.2089132002131965e-01 8.1560748441811448e-01 1.3957000000000000e-01 1 0 0 0 0 P 207 221 -2.1792533831774766e-01 1.8781907785145827e-01 -1.1866596184256384e-01 6.2972261519330697e-01 5.4744999999999999e-01 2 0 0 -105 0 P 208 -211 6.3127543261117525e-01 -4.9399203740047343e-01 -2.8534962614819237e-01 8.6223024702013928e-01 1.3957000000000000e-01 1 0 0 0 0 P 209 -311 -8.5285391871598504e-01 -7.1683438274476530e-01 1.6983211007453627e+00 2.0912152756450544e+00 4.9767000000000000e-01 2 0 0 -106 0 P 210 321 -1.3816235812136959e-01 -1.1219689362050086e-01 9.2194506825721412e-01 1.0608018896210294e+00 4.9359999999999998e-01 1 0 0 0 0 P 211 -2214 2.4769635945298793e-01 -2.6541085054116659e-01 9.9169808459295172e+00 9.9988525588687196e+00 1.2242332250806469e+00 2 0 0 -107 0 P 212 111 -5.8319761430671757e-01 -7.2390461798570838e-01 2.2399943178238924e+00 2.4289815762078981e+00 1.3497999999999999e-01 2 0 0 -108 0 P 213 2212 1.7946495450081024e-01 4.5608300433227550e-01 1.0061925373956482e+01 1.0117455816592630e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -2.1965317199952397e-01 -5.8664666604023097e-01 4.5260498786758667e+01 4.5265048680387260e+01 1.3957000000000000e-01 1 0 0 0 0 P 215 331 5.3634272617373380e-01 1.3333278520930431e-01 5.1676997236195795e+01 5.1688827514855930e+01 9.5781279966841493e-01 2 0 0 -109 0 P 216 211 -3.9461052828332038e-01 -5.9904530850452964e-01 6.7838369750806482e+00 6.8230855659331056e+00 1.3957000000000000e-01 1 0 0 0 0 P 217 111 -4.8259966701264334e-01 4.6084217827688484e-02 5.7796644801730970e+01 5.7798835594945935e+01 1.3497999999999999e-01 2 0 0 -110 0 P 218 -323 1.7380449016820837e-01 -2.9855601240930868e-01 1.6380367114299926e+02 1.6380621023712263e+02 8.4409041649682948e-01 2 0 0 -111 0 V -15 0 0 0 0 0 2 1 0 P 81 1 9.7744333043353371e-01 7.1379129133825525e-01 -3.4579779192441964e+02 3.4579991005388655e+02 0 2 0 0 -15 0 P 82 -1 -9.7744333043353371e-01 -7.1379129133825525e-01 -2.0150608456177391e-01 1.2269874383687671e+00 0 2 0 0 -15 0 P 219 92 0 0 -3.4599929800898144e+02 3.4702689749225533e+02 2.6686201685371785e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 9 0 P 220 113 5.4598974212998141e-01 3.9964420409176821e-01 -2.5180068170444179e+02 2.5180248619449057e+02 6.7151069733469226e-01 2 0 0 -112 0 P 221 -211 5.5413680822873790e-01 2.1200598242327418e-01 -4.2908303461481168e+01 4.2912632171264839e+01 1.3957000000000000e-01 1 0 0 0 0 P 222 331 -3.0451601468292194e-01 2.9883406192175466e-01 -1.6040675797905799e+01 1.6074908911593258e+01 9.5780199557972689e-01 2 0 0 -113 0 P 223 113 7.0230296968467137e-02 4.2462139524154716e-02 -2.5102131970008507e+01 2.5114650078588618e+01 7.8859609580748735e-01 2 0 0 -114 0 P 224 213 -1.6404610358506358e-01 -4.8580767252373408e-01 -2.2363636907700810e+00 2.4345064639023142e+00 8.1398952487301857e-01 2 0 0 -115 0 P 225 -213 2.0615661992288678e-01 -1.8462551677360836e-01 -9.3802561784043914e-01 1.2812936618807995e+00 8.2778877430720188e-01 2 0 0 -116 0 P 226 211 -4.1829376083073111e-01 4.7350375089776392e-01 -2.5259834539511488e+00 2.6075367048229912e+00 1.3957000000000000e-01 1 0 0 0 0 P 227 313 -5.3232590280965686e-01 -6.5008675212064537e-01 -3.6607077724420716e+00 3.8612369021883644e+00 8.9575965946146341e-01 2 0 0 -117 0 P 228 -311 4.2668314658300309e-02 -1.0593019744072792e-01 -7.8642454014048901e-01 9.3764640352362627e-01 4.9767000000000000e-01 2 0 0 -118 0 V -17 0 0 0 0 0 2 1 0 P 83 21 -5.3092684276888535e-01 1.8981994261475814e+00 8.1454922792607576e+00 8.3805780734562791e+00 0 2 0 0 -17 0 P 84 21 5.3092684276888535e-01 -1.8981994261475814e+00 1.5081968615949967e-01 1.9768133324957098e+00 0 2 0 0 -17 0 P 229 92 0 0 8.2963119654202568e+00 1.0357391405951988e+01 6.2005455008823844e+00 2 0 0 -18 0 V -18 0 0 0 0 0 0 6 0 P 230 -213 -5.6998983198177332e-02 2.0424071943164604e-01 2.6390793647247937e+00 2.7594255656295843e+00 7.7764156484485103e-01 2 0 0 -119 0 P 231 211 2.8757808207865421e-01 -1.1356066525476534e-01 -2.8842250444298190e-01 4.4526902424748116e-01 1.3957000000000000e-01 1 0 0 0 0 P 232 -323 -5.2189867142389235e-01 -6.6629149285572808e-01 1.6010089172080895e+00 2.0119595524840959e+00 8.7660088476241360e-01 2 0 0 -120 0 P 233 321 -4.6051097068842706e-01 8.4416590564015714e-01 3.3639048119896682e+00 3.5332963326753259e+00 4.9359999999999998e-01 1 0 0 0 0 P 234 -211 4.7773170331591575e-01 1.5688183628855049e-01 3.1614289654044420e-02 5.2279894713046571e-01 1.3957000000000000e-01 1 0 0 0 0 P 235 211 2.7409883991592676e-01 -4.2543630324986026e-01 9.4912708628664366e-01 1.0846419837850358e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 236 22 7.0657188082272259e-03 7.3486525177295470e-01 -1.2649695701274652e+00 1.4629507428461388e+00 0 1 0 0 0 0 P 237 22 -1.2773986187025249e-01 8.4882126596300067e-01 -6.0101694479568946e-01 1.0478723117790676e+00 0 1 0 0 0 0 V -20 0 4.9735068163407811e-05 -5.9231960864834600e-05 -1.2144324917898645e-04 1.5166792290323262e-04 0 2 0 P 238 22 8.3253783433303960e-02 -5.0012508677132535e-02 -2.5017767673364494e-01 2.6836786956709974e-01 0 1 0 0 0 0 P 239 22 5.7565351049280351e-02 -1.1769598697200252e-01 -9.3674938124536991e-02 1.6106243827589506e-01 0 1 0 0 0 0 V -21 0 -2.5975358412053580e+00 1.9173921175859963e+01 9.7880494129828904e+01 2.6901684925799736e+02 0 2 0 P 240 -2112 -8.8364201103186948e-02 2.2227144083067953e-02 4.1857267358776828e-01 1.0326166500425540e+00 9.3957000000000002e-01 1 0 0 0 0 P 241 111 7.6764243434487067e-02 6.3398882882455557e-02 1.8537594723512404e-02 1.6874658585863508e-01 1.3497999999999999e-01 2 0 0 -121 0 V -22 0 0 0 0 0 0 2 0 P 242 -311 6.0945609404480405e-02 4.3937654203237957e-03 3.7266553682780994e+01 3.7269926649954357e+01 4.9767000000000000e-01 2 0 0 -122 0 P 243 -211 3.0572167938100925e-01 4.1064779803305557e-01 5.3126386014899474e+01 5.3129036017494983e+01 1.3957000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 244 211 -2.2747829007562120e-01 -2.7212595110185123e-01 1.0769002311075509e+01 1.0775745425100228e+01 1.3957000000000000e-01 1 0 0 0 0 P 245 111 -3.6770887739367875e-01 4.1973346892865504e-01 4.7120548265103906e+01 4.7124045607394955e+01 1.3497999999999999e-01 2 0 0 -123 0 V -24 0 0 0 0 0 0 2 0 P 246 -211 1.0756361291561360e+00 -9.0424127125213449e-01 -2.1600023086164946e+00 2.5806462595850399e+00 1.3957000000000000e-01 1 0 0 0 0 P 247 111 -1.8960949017691874e-02 -9.2435617832595327e-03 -4.1741460344223028e-03 1.3668205777353928e-01 1.3497999999999999e-01 2 0 0 -124 0 V -25 0 0 0 0 0 0 1 0 P 248 130 1.6700207414001889e-01 -1.6961085157785891e-01 7.7094659152156220e-01 9.4799346496626724e-01 4.9767000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 249 -211 -2.3928323306377250e-01 2.3555398502309841e-01 8.4342259486433302e-01 9.1846807452050205e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 111 -8.0301836842807151e-01 -4.3605285371988028e-01 1.0919342280817284e+00 1.4302169591102509e+00 1.3497999999999999e-01 2 0 0 -125 0 V -27 0 0 0 0 0 0 2 0 P 251 211 8.5044729050748447e-02 -1.0863694264953898e-01 6.4838617930503484e-01 6.7743561587898171e-01 1.3957000000000000e-01 1 0 0 0 0 P 252 111 -5.5005048474069285e-01 -3.5427544918778575e-01 9.2549674006052562e+00 9.2790467083815624e+00 1.3497999999999999e-01 2 0 0 -126 0 V -28 0 0 0 0 0 0 2 0 P 253 311 5.0965847839412597e-02 -1.8216608581881379e+00 1.6937593552498960e+01 1.7042617069524713e+01 4.9767000000000000e-01 2 0 0 -127 0 P 254 111 3.4627657802360079e-01 -8.7207579814804848e-01 1.4709882587360013e+01 1.4740396500790629e+01 1.3497999999999999e-01 2 0 0 -128 0 V -29 0 0 0 0 0 0 2 0 P 255 -311 1.8433795689463647e-01 -7.4743821443483072e-01 1.5913181307511662e+01 1.5939562701698820e+01 4.9767000000000000e-01 2 0 0 -129 0 P 256 -211 -8.2922849790022235e-02 -1.0958966088776216e+00 1.4097535750027824e+01 1.4140999242789716e+01 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 257 211 3.8830569870419551e-02 5.5230579082643408e-02 2.2627479264406292e+00 2.2680533930076763e+00 1.3957000000000000e-01 1 0 0 0 0 P 258 111 5.2121212849845833e-01 -8.1267467716871578e-01 6.5285265479931658e+00 6.6009075665439170e+00 1.3497999999999999e-01 2 0 0 -130 0 V -31 0 0 0 0 0 0 3 0 P 259 211 3.2036776805693773e-01 -3.2118510474002954e-01 9.1406152665768676e+00 9.1529297284964848e+00 1.3957000000000000e-01 1 0 0 0 0 P 260 -211 8.6506987417634529e-01 -5.4308685839469462e-01 1.4229566293105673e+01 1.4266861108798867e+01 1.3957000000000000e-01 1 0 0 0 0 P 261 111 8.3515584350190908e-01 -2.5439718810808820e-01 1.8894869131199076e+01 1.8915509570132983e+01 1.3497999999999999e-01 2 0 0 -131 0 V -32 0 0 0 0 0 0 1 0 P 262 130 -4.9530774151521746e-02 -1.5726785907864646e-01 1.0436460884837359e+01 1.0449620936030524e+01 4.9767000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 263 -321 2.4971263601560949e+00 -9.0349176067737658e-01 5.4174009647746743e+01 5.4241302525790765e+01 4.9359999999999998e-01 1 0 0 0 0 P 264 211 9.6736761073211697e-01 8.8164694648858941e-02 2.0601268367330746e+01 2.0624628753879634e+01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 3 0 P 265 211 1.9308835241998318e-01 -9.3688961094085726e-02 8.9037374557107878e+00 8.9074172013215129e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 -211 -4.2253726591820875e-02 2.3571487792894319e-01 2.4155565943904335e+01 2.4157156139254035e+01 1.3957000000000000e-01 1 0 0 0 0 P 267 111 4.1451958847749042e-02 -1.6874143989361856e-01 1.1606268994452055e+01 1.1608354384253127e+01 1.3497999999999999e-01 2 0 0 -132 0 V -35 0 1.0667130314306148e+02 9.5741006291382718e+01 6.3669502438858344e+03 6.3687021568986747e+03 0 2 0 P 268 -2212 2.3346921153986941e+00 2.1157847134806604e+00 1.3602964637644953e+02 1.3606936604586028e+02 9.3827000000000005e-01 1 0 0 0 0 P 269 211 4.9677967657152577e-01 4.2555443454986275e-01 3.2974007701561881e+01 3.2980790625929238e+01 1.3957000000000000e-01 1 0 0 0 0 V -36 0 1.9330664544599724e-05 3.1682319408062078e-05 1.6888218940331165e-03 1.6893204665166222e-03 0 2 0 P 270 22 8.8141210980754031e-02 1.4297324104128653e-01 4.6927244789988292e+00 4.6957292571571712e+00 0 1 0 0 0 0 P 271 22 6.0824077700445706e-02 1.0117593685288045e-01 8.3216155296096570e+00 8.3224528332257179e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 272 211 4.7152116762901108e-01 -2.9010665019203835e-01 4.1796910654697946e+01 4.1800809969924153e+01 1.3957000000000000e-01 1 0 0 0 0 P 273 111 1.0875529684353171e+00 4.1701963275622056e-01 1.6166848827795613e+02 1.6167274043113542e+02 1.3497999999999999e-01 2 0 0 -133 0 V -38 0 0 0 0 0 0 2 0 P 274 -211 1.2459316222044386e-01 -7.8170451595936913e-02 2.0253947685260272e+01 2.0254962619015981e+01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 -3.0586180520633766e-01 -4.3781264233464279e-01 2.4329215875450706e+02 2.4329278238859109e+02 1.3497999999999999e-01 2 0 0 -134 0 V -39 0 0 0 0 0 0 2 0 P 276 211 6.9842173199909834e-03 -3.8310227669796659e-01 2.8412504127311684e+02 2.8412533391862286e+02 1.3957000000000000e-01 1 0 0 0 0 P 277 111 2.6849951357724289e-01 -2.6293716580848314e+00 7.3405872897787629e+02 7.3406349963441221e+02 1.3497999999999999e-01 2 0 0 -135 0 V -40 0 0 0 0 0 0 2 0 P 278 211 5.4669320485050257e-02 -9.3376255142431711e-02 3.5266342420278072e+01 3.5266784590444750e+01 1.3957000000000000e-01 1 0 0 0 0 P 279 -211 -2.7212377801276283e-01 2.5865005676088796e-02 3.2918055003471430e+01 3.2919485800138936e+01 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 280 -211 4.7554589078674375e-01 -7.3842141860174670e-01 3.9706991962883029e+02 3.9707091553514260e+02 1.3957000000000000e-01 1 0 0 0 0 P 281 211 -1.6907766922777473e-01 -6.3422026788780417e-01 1.9070792092074853e+02 1.9070910152456230e+02 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 1 0 P 282 130 -2.8997889725485809e-01 4.0308103590839243e-02 2.1628800056570319e+02 2.1628877126804940e+02 4.9767000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 283 321 -4.9375162235331949e-01 -7.6933792456756869e-02 6.3421461054088390e+01 6.3425350394524813e+01 4.9359999999999998e-01 1 0 0 0 0 P 284 -321 -7.1396595586905542e-01 1.2978997492892771e-01 8.2419828485436156e+01 8.2424500977272800e+01 4.9359999999999998e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 285 -311 -9.5094782975413905e-01 6.2484106352144508e-01 1.1405799525807916e+02 1.1406475654579063e+02 4.9767000000000000e-01 2 0 0 -136 0 P 286 111 -2.6230447420671493e-01 -1.8441324091386943e-01 2.5952989802404154e+01 2.5955321442137972e+01 1.3497999999999999e-01 2 0 0 -137 0 V -45 0 0 0 0 0 0 2 0 P 287 2112 -8.5665483224502414e-01 2.4424176793467270e-01 3.1044472730246643e+01 3.1071459419002835e+01 9.3957000000000002e-01 1 0 0 0 0 P 288 -211 -3.5716053135754111e-01 -6.6926140411382354e-02 1.3392627184395845e+01 1.3398282928739359e+01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 289 -2112 -1.2115341903375734e+00 -1.1711274741870785e-01 1.3517288338431312e+01 1.3604462734674826e+01 9.3957000000000002e-01 1 0 0 0 0 P 290 211 -7.9001504244221032e-01 -3.0864874734824665e-01 6.1515161537903094e+00 6.2112815579208558e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 291 -211 -1.7414976523096919e+00 2.5032283593766974e-01 2.4941671621998669e+01 2.5004038447412967e+01 1.3957000000000000e-01 1 0 0 0 0 P 292 111 -2.8924434231146567e-01 -7.4014075915253955e-02 1.1159765657600667e+01 1.1164574757058865e+01 1.3497999999999999e-01 2 0 0 -138 0 V -48 0 0 0 0 0 0 2 0 P 293 -211 -2.1022662712017244e+00 -7.8026725191191998e-02 1.5156426634445328e+01 1.5302364515168895e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 111 -5.4133599170161439e-01 3.1823746840042266e-01 4.8180397518333056e+00 4.8606631638955831e+00 1.3497999999999999e-01 2 0 0 -139 0 V -49 0 0 0 0 0 0 2 0 P 295 321 -1.5290565149430417e+00 -3.0056014760686034e-01 1.3463052304840094e+01 1.3561923482717317e+01 4.9359999999999998e-01 1 0 0 0 0 P 296 111 -1.8668833161535339e-01 1.7095732338207156e-01 1.4159631888255568e+00 1.4447319101093898e+00 1.3497999999999999e-01 2 0 0 -140 0 V -50 0 0 0 0 0 0 2 0 P 297 -311 -1.8227947403003248e+00 3.5769657116759801e-01 1.1753603812373095e+01 1.1909886880630854e+01 4.9767000000000000e-01 2 0 0 -141 0 P 298 111 -1.5787025873672889e-01 -8.1844170946442349e-02 2.5319200573248559e+00 2.5417435480385140e+00 1.3497999999999999e-01 2 0 0 -142 0 V -51 0 0 0 0 0 0 2 0 P 299 -211 -5.3573255436594958e-01 4.0798768300689470e-01 5.9388005903704837e+00 5.9784860588929707e+00 1.3957000000000000e-01 1 0 0 0 0 P 300 111 -3.9994876664874135e-01 -1.5026900451955327e-01 2.2179652099869700e+00 2.2627702187309455e+00 1.3497999999999999e-01 2 0 0 -143 0 V -52 0 -1.3536339104683036e-04 3.5307390165229517e-05 4.7094771950441415e-04 4.9145120343675394e-04 0 2 0 P 301 22 -9.8663464280104585e-01 2.9949394689586478e-01 3.6244311271591330e+00 3.7682417037820746e+00 0 1 0 0 0 0 P 302 22 -4.4593262664026384e-01 7.4168467505404623e-02 1.3596660010418247e+00 1.4328462944305829e+00 0 1 0 0 0 0 V -53 0 0 0 0 0 0 3 0 P 303 -211 -2.5529174836171709e-01 5.1015831098475506e-01 1.7972437514929245e+00 1.8907671105212194e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 211 9.8501902370702804e-02 9.0243429548260501e-01 2.0430445518391038e+00 2.2400002473511642e+00 1.3957000000000000e-01 1 0 0 0 0 P 305 111 1.5334429422680343e-01 2.7447517580297076e-01 8.1406420201235308e-01 8.8304655602182003e-01 1.3497999999999999e-01 2 0 0 -144 0 V -54 0 0 0 0 0 0 2 0 P 306 211 -1.9089324983745978e-01 -1.7390343365470415e-01 5.8394217189868725e-01 6.5356780986532603e-01 1.3957000000000000e-01 1 0 0 0 0 P 307 111 -1.7577049704161587e+00 5.9994977540681316e-01 8.2997688467945991e+00 8.5061065715554314e+00 1.3497999999999999e-01 2 0 0 -145 0 V -55 0 0 0 0 0 0 2 0 P 308 211 -8.6525278024562904e-02 6.2839687452184456e-01 9.6750761187802725e-01 1.1652982534904848e+00 1.3957000000000000e-01 1 0 0 0 0 P 309 -211 -8.8256102421552396e-01 1.6183055507157931e+00 4.9281379300222117e+00 5.2634446951749680e+00 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 310 -211 -4.6986565759193560e-01 1.2603340568310735e+00 2.7670389767108081e+00 3.0798052137317660e+00 1.3957000000000000e-01 1 0 0 0 0 P 311 111 -5.8533221839152916e-01 5.1112138371633486e-01 2.2248692267591603e+00 2.3605341665307780e+00 1.3497999999999999e-01 2 0 0 -146 0 V -57 0 0 0 0 0 0 2 0 P 312 311 -6.5953549581604667e-02 2.1193048673966319e+00 4.4768925327522071e+00 4.9785585434326212e+00 4.9767000000000000e-01 2 0 0 -147 0 P 313 211 2.9569916755865655e-01 1.1345488986417194e+00 3.2433164592966528e+00 3.4515533664060007e+00 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 1 0 P 314 310 2.8995095369417390e-01 3.4496707310018571e+00 6.7770508091587978e+00 7.6262961394571454e+00 4.9767000000000000e-01 2 0 0 -148 0 V -59 0 0 0 0 0 0 2 0 P 315 -211 1.4304278712871829e-01 4.7071797819886613e-01 1.8009932239739577e+00 1.8721893685333464e+00 1.3957000000000000e-01 1 0 0 0 0 P 316 111 5.1040780397813879e-01 3.9418225813454910e-01 9.2670018484746397e-01 1.1370525986013851e+00 1.3497999999999999e-01 2 0 0 -149 0 V -60 0 0 0 0 0 0 2 0 P 317 -211 8.0407349834083308e-01 1.3082387731211775e+00 4.2415201831588369e+00 4.5130916373673875e+00 1.3957000000000000e-01 1 0 0 0 0 P 318 211 6.3013685799909580e-01 7.8472496165952232e-01 1.6291390053231387e+00 1.9200102626876183e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 4.3133706643012523e+01 3.6073481074618670e+01 1.6447852545656065e+02 1.7504261837814934e+02 0 2 0 P 319 2212 1.9363166131119864e+00 1.6976643856293934e+00 7.2945850053341763e+00 7.7924776153283943e+00 9.3827000000000005e-01 1 0 0 0 0 P 320 -211 3.9823094694091499e-01 2.5475899227216825e-01 1.6075699488799517e+00 1.6814431172914768e+00 1.3957000000000000e-01 1 0 0 0 0 V -62 0 1.3841590658656278e+02 7.7494246737338699e+00 5.7892120260944375e+02 5.9673435806460793e+02 0 2 0 P 321 -2212 3.1412241327984707e+00 2.5031371746165820e-01 1.3435277101918551e+01 1.3831737685766814e+01 9.3827000000000005e-01 1 0 0 0 0 P 322 211 5.7899120312708230e-01 -4.2031813836693258e-02 2.1244341289089936e+00 2.2067391417306812e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 323 -321 9.4433454350446366e-01 -4.3305854499078433e-01 2.4791721172394694e+00 2.7329915441404045e+00 4.9359999999999998e-01 1 0 0 0 0 P 324 111 1.1830218961894261e+00 -3.5295036278724778e-01 1.8128548806059803e+00 2.1974478796986738e+00 1.3497999999999999e-01 2 0 0 -150 0 V -64 0 0 0 0 0 0 2 0 P 325 211 3.0279032422397861e-01 7.2015620050330589e-02 3.1366854428580421e-01 4.6339612703309380e-01 1.3957000000000000e-01 1 0 0 0 0 P 326 -211 7.9300323999032762e-01 1.3789138316337501e-01 2.1985588902961948e+00 2.3454230217993302e+00 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 327 321 2.0910203310518773e+00 -2.4995191036714370e-01 2.7631336310450654e+00 3.5090440871241237e+00 4.9359999999999998e-01 1 0 0 0 0 P 328 111 4.3128905533613954e-02 7.4977277334232640e-03 2.7601324531277105e-01 3.1035339598879835e-01 1.3497999999999999e-01 2 0 0 -151 0 V -66 0 0 0 0 0 0 2 0 P 329 -311 5.1109381241943197e-01 -6.4712078421272201e-01 1.3163213379470025e+00 1.6310608474511625e+00 4.9767000000000000e-01 2 0 0 -152 0 P 330 111 6.1014949017009412e-01 -6.2974323541988297e-01 5.7474985955377955e-01 1.0570789678964467e+00 1.3497999999999999e-01 2 0 0 -153 0 V -67 0 0 0 0 0 0 2 0 P 331 -211 3.1169089154933921e-01 -2.2210872697089926e-01 3.7188882916249222e-01 5.5160183522836903e-01 1.3957000000000000e-01 1 0 0 0 0 P 332 111 -1.6696175745040778e-01 -4.5276587886561592e-01 7.7555728271924174e-01 9.2335359895044333e-01 1.3497999999999999e-01 2 0 0 -154 0 V -68 0 1.3631148866589059e-04 -1.8160648274786087e-04 4.7240106765869673e-05 2.3573850186810438e-04 0 2 0 P 333 22 4.3868525351086840e-01 -5.3575741509050445e-01 1.5187409365725926e-01 7.0890514160680751e-01 0 1 0 0 0 0 P 334 22 -2.4908439805251888e-03 -4.5380193224002142e-02 -7.0656787815650852e-04 4.5453992992360193e-02 0 1 0 0 0 0 V -69 0 1.8786589120524569e-05 -1.5322738623755271e-04 1.1833617015363119e-05 1.5706272315296383e-04 0 2 0 P 335 22 1.1770592265752468e-01 -4.1924862289437820e-01 4.6644428808410271e-02 4.3794953449724616e-01 0 1 0 0 0 0 P 336 22 -2.1661787327042263e-02 -3.6410761733219710e-01 1.3853488444218687e-02 3.6501439584159667e-01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 337 211 5.3391693627588288e-01 5.4084689153797667e-02 -1.0505453579410642e-01 5.6436574030853726e-01 1.3957000000000000e-01 1 0 0 0 0 P 338 -211 -1.5346929636066894e-01 -5.2313691048436373e-01 2.5119777918343794e-01 6.1628334490172232e-01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 -3.6705920838956935e-06 7.1184473411701401e-06 -2.8712410467152735e-05 2.9929190429736898e-05 0 2 0 P 339 22 -8.7672381273482120e-02 1.4884393307790847e-01 -3.9436298846583312e-01 4.3053818590685605e-01 0 1 0 0 0 0 P 340 22 -9.6865923060407824e-02 2.0903462487818011e-01 -1.0491478729545192e+00 1.0741460518818184e+00 0 1 0 0 0 0 V -72 0 0 0 0 0 0 1 0 P 341 130 9.6774723577959298e-02 1.3473668052393487e-01 -3.2226686558549444e-01 6.1567092001855872e-01 4.9767000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 342 -311 2.7694968506250600e-01 1.2564458147814045e-02 -7.4672351305779272e-01 9.3921798722029437e-01 4.9767000000000000e-01 2 0 0 -155 0 P 343 -211 -1.4530218995044436e-01 -1.0077966781521369e-01 -3.7063485240251999e-02 2.2830408381694403e-01 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 344 311 1.9672134001553085e-01 1.1280348137991568e-01 -4.2640541626965528e-01 6.9348462055984561e-01 4.9767000000000000e-01 2 0 0 -156 0 P 345 211 -5.1167143536513604e-03 4.0664394414515431e-01 -1.0155907648323172e+00 1.1028553235073018e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 346 130 -2.8209744816260512e-01 9.8887943118635391e-01 -9.0707253724102765e-01 1.4587383303389871e+00 4.9767000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 347 -211 3.0401168535601084e-02 6.1012586703034430e-02 -8.0300936268136736e-01 8.1789399572222143e-01 1.3957000000000000e-01 1 0 0 0 0 P 348 111 -5.9695625172008319e-02 9.9039656843743606e-01 -1.0559265550002330e+00 1.4552145616341208e+00 1.3497999999999999e-01 2 0 0 -157 0 V -77 0 0 0 0 0 0 2 0 P 349 211 1.6821129853988434e-01 3.3556931149641661e-01 -1.9886350596805155e-01 4.4713340590986761e-01 1.3957000000000000e-01 1 0 0 0 0 P 350 -211 -2.4943934358508513e-01 5.8345608831380913e-01 -1.5804169961413004e+00 1.7087535397800646e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 351 -211 -2.8428978804214139e-01 -1.0630454359221368e-01 -3.2074743408318634e-01 4.6311989910210349e-01 1.3957000000000000e-01 1 0 0 0 0 P 352 211 5.5909510459808176e-01 -1.4396254581719248e-01 -8.5080408714439471e-01 1.0376222483087543e+00 1.3957000000000000e-01 1 0 0 0 0 V -79 0 1.3534640780675377e-05 1.2043067959953494e-05 -4.3864561880949231e-05 4.7531217132883291e-05 0 2 0 P 353 22 1.6813203946408489e-01 8.9946994388213908e-02 -5.4298757178409496e-01 5.7549487191964943e-01 0 1 0 0 0 0 P 354 22 5.2762001385481994e-01 5.2913033445823721e-01 -1.7118826897288009e+00 1.8678608441897271e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 355 2112 2.6589937557231108e-01 -3.1851179992988604e-01 -3.8526233817713176e+00 3.9871858435863490e+00 9.3957000000000002e-01 1 0 0 0 0 P 356 -211 2.5384993725833804e-01 -1.0286350423024487e-01 -1.7767015062040630e+00 1.8030997527026544e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 357 -2112 2.0346485582837048e-01 -2.8379731251966672e-01 -1.9698542649977320e+00 2.2102163858727497e+00 9.3957000000000002e-01 1 0 0 0 0 P 358 211 -3.6934642459955930e-01 -1.6343704538634155e-01 -6.2946972652360578e-01 7.6081559571212654e-01 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 3 0 P 359 211 -5.5015367792509240e-01 -1.4463387989298979e+00 -4.1611758819699016e+00 4.4417822432231500e+00 1.3957000000000000e-01 1 0 0 0 0 P 360 -211 -6.1289015092315779e-01 -9.2753613869967155e-01 -2.4044882716236811e+00 2.6527346755694103e+00 1.3957000000000000e-01 1 0 0 0 0 P 361 111 -2.2935063458766364e-02 -3.2374176360813345e-01 -6.5219873842162179e-01 7.4088969586485498e-01 1.3497999999999999e-01 2 0 0 -158 0 V -83 0 -8.8685879461124364e-05 -1.3092159410570990e-04 -1.9508206120445563e-04 2.5670102121614681e-04 0 2 0 P 362 22 -2.0128786555891764e-01 -3.1934453774550126e-01 -3.8950385639304536e-01 5.4241219819820330e-01 0 1 0 0 0 0 P 363 22 -2.3627651526542361e-02 -1.2684621968095496e-02 -1.0524212725738516e-01 1.0860511452409996e-01 0 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 364 321 -1.2325617470960077e+00 -6.6507351711404405e-01 -4.0826539987438712e+00 4.3443337667621869e+00 4.9359999999999998e-01 1 0 0 0 0 P 365 -211 -4.5462946608544103e-01 -3.5415938546439563e-01 -3.0766299541989772e+00 3.1332488700580510e+00 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 2 0 P 366 -321 -1.2118400998503236e+00 -2.2321905142199685e+00 -5.1585509914994718e+00 5.7710935022124739e+00 4.9359999999999998e-01 1 0 0 0 0 P 367 111 -1.8561344054138457e-01 -3.8512011872236901e-01 -1.1677555301090243e+00 1.2508566799016385e+00 1.3497999999999999e-01 2 0 0 -159 0 V -86 0 -3.8311011993951974e-05 -1.2198957779402242e-05 -1.4613906014344233e-04 1.5168014173483262e-04 0 2 0 P 368 22 -3.4582786310080832e-01 -1.7669814605857947e-01 -1.4721072691222143e+00 1.5224713322489438e+00 0 1 0 0 0 0 P 369 22 -5.4506977474838947e-01 -1.0698067379632939e-01 -1.9262614166187955e+00 2.0047515978455848e+00 0 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 370 211 -1.6791685828541814e-01 -6.0144155114117324e-02 -3.1233971820088580e+00 3.1315975367488895e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 -211 -2.3480509932478577e-01 2.8957331080622012e-02 -2.2446045367713925e+00 2.2613494363072135e+00 1.3957000000000000e-01 1 0 0 0 0 P 372 221 -1.8861654831135730e-01 -3.1206005501087408e-01 -6.3039064288717359e+00 6.3381302800353261e+00 5.4744999999999999e-01 2 0 0 -160 0 V -88 0 0 0 0 0 0 3 0 P 373 -211 -6.4628782982513511e-01 7.4035335806819827e-02 -5.4628226109996723e+00 5.5031881536139933e+00 1.3957000000000000e-01 1 0 0 0 0 P 374 211 -1.9932198612676982e-01 9.6471572362542515e-02 -3.3077643478940533e+00 3.3181049990207652e+00 1.3957000000000000e-01 1 0 0 0 0 P 375 111 -6.0975784156470991e-01 9.5732685622725994e-02 -6.3716746695360946e+00 6.4029233219877071e+00 1.3497999999999999e-01 2 0 0 -161 0 V -89 0 0 0 0 0 0 2 0 P 376 -211 -7.8801463804258165e-01 -3.3004106639794689e-01 -8.6993102825383275e+00 8.7422750672840053e+00 1.3957000000000000e-01 1 0 0 0 0 P 377 211 3.0422189324549823e-02 1.2956554934839795e-01 -8.8783307641526255e-01 9.0853733971600770e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 -6.3488291380296236e-07 1.0344375750239342e-05 -7.4599494454984262e-05 7.5381391916599247e-05 0 2 0 P 378 22 6.4583170223410430e-03 3.0397477672794267e-02 -5.8896896573265978e-01 5.8978823242230571e-01 0 1 0 0 0 0 P 379 22 -3.3748965194002861e-02 4.1425887236857134e-01 -2.6177145229753855e+00 2.6505053725250187e+00 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 380 211 -3.6046236936070175e-01 -4.4306110316988301e-01 -1.0355982319515949e+01 1.0372660499982354e+01 1.3957000000000000e-01 1 0 0 0 0 P 381 -211 -5.7936013948895648e-01 -2.8371528243392972e-02 -2.2197127007038912e+01 2.2205143329110932e+01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 382 22 -1.3103373930174661e-01 -3.0156674140763828e-01 -4.2533025335919099e+00 4.2659928249609127e+00 0 1 0 0 0 0 P 383 113 -2.1739606616965682e-02 -1.3236775298546499e-01 -1.9780376956940195e+01 1.9791166014732095e+01 6.3948872664793277e-01 2 0 0 -162 0 V -93 0 0 0 0 0 0 2 0 P 384 3122 -1.1677910790814208e-01 -8.9637008330993551e-01 -6.1496989907407794e+01 6.1513751521269725e+01 1.1156800000000000e+00 2 0 0 -163 0 P 385 211 6.1353036979690967e-02 -5.0236657969167164e-01 -1.9329242457617418e+01 1.9336370655989132e+01 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 386 -3122 -4.4944196424460287e-01 -6.1118971856218851e-01 -8.7733720017507281e+01 8.7744093367725085e+01 1.1156800000000000e+00 2 0 0 -164 0 P 387 111 1.7737233557529188e-02 8.8915948441198239e-02 -6.8998900525155200e+00 6.9018057776602273e+00 1.3497999999999999e-01 2 0 0 -165 0 V -95 0 0 0 0 0 0 2 0 P 388 -211 7.9495820408747031e-02 -3.2307048023530280e-02 -1.1818900172246477e+02 1.1818911528253561e+02 1.3957000000000000e-01 1 0 0 0 0 P 389 111 -7.4474912801695259e-01 6.9892727575903268e-01 -3.1142670828379704e+02 3.1142841232405578e+02 1.3497999999999999e-01 2 0 0 -166 0 V -96 0 0 0 0 0 0 2 0 P 390 211 2.1279099102530355e-01 5.4183483736466331e-01 -8.7258930367426998e+01 8.7260983684858928e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 -211 -1.6476123931398204e-01 1.6428338131853418e-01 -2.3024079141051638e+02 2.3024095127587788e+02 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 1 0 P 392 310 -2.3772036985188780e-01 2.8353315526693262e-01 -1.5246143346599922e+02 1.5246269468942421e+02 4.9767000000000000e-01 2 0 0 -167 0 V -98 0 0 0 0 0 0 2 0 P 393 -321 1.0914542864818849e-01 -1.8394685267250627e-01 -4.1391548288968409e+01 4.1395043904883188e+01 4.9359999999999998e-01 1 0 0 0 0 P 394 211 3.1271756921809130e-01 4.3089002286977912e-01 -2.5408965247352054e+01 2.5414925795995369e+01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 395 -211 3.9943755226290699e-02 7.8491998454609774e-02 -1.4658343316849029e+01 1.4659272324263425e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -6.9656306753122427e-02 2.5218922653712783e-01 -2.2022262644244170e+00 2.2218171678094043e+00 1.3497999999999999e-01 2 0 0 -168 0 V -100 0 0 0 0 0 0 2 0 P 397 -321 4.3871222730584070e-01 -5.3742631942177543e-01 -3.0757372961297619e+01 3.0769155463021029e+01 4.9359999999999998e-01 1 0 0 0 0 P 398 211 -1.4245275750180503e-01 -3.0157557490374243e-01 -1.3327399820484967e+01 1.3332303115945914e+01 1.3957000000000000e-01 1 0 0 0 0 V -101 0 -2.3856870747211487e+00 3.5383322234305687e+00 -1.8881550949902697e+02 1.8900648205111216e+02 0 2 0 P 399 -2112 -2.5584393138391326e-01 2.6533973296389191e-01 -2.0918927127155161e+01 2.0943260615941430e+01 9.3957000000000002e-01 1 0 0 0 0 P 400 211 -1.3311377397315707e-01 3.1154295923805964e-01 -9.8651803481103588e+00 9.8719826467592107e+00 1.3957000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 401 22 -1.3427072637118592e-01 -1.8720027480671406e-02 -8.8373145610804343e+01 8.8373249596333238e+01 0 1 0 0 0 0 P 402 113 8.6840483485975717e-01 2.1036222490732795e-01 -4.8008513656292774e+02 4.8008634587577211e+02 6.0230265120620785e-01 2 0 0 -169 0 V -103 0 0 0 0 0 0 3 0 P 403 211 1.0758947483075160e-01 -4.7868786439112916e-02 -1.0628749054091715e+02 1.0628764741109975e+02 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 -8.5969111423611064e-02 1.0374160090592945e-01 -1.6206872029756170e+02 1.6206883639886499e+02 1.3957000000000000e-01 1 0 0 0 0 P 405 111 2.5354562907822831e-01 4.6688332702044916e-01 -2.0942954716812781e+02 2.0943026455618715e+02 1.3497999999999999e-01 2 0 0 -170 0 V -104 0 0 0 0 0 0 2 0 P 406 -211 1.4988272287391052e-01 3.0469943967050583e-01 -2.5459603555470478e-01 4.4677231938851159e-01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 1.1443413055948110e-02 7.9713331837346491e-01 -3.5623113458382272e-01 8.8355684628117637e-01 1.3497999999999999e-01 2 0 0 -171 0 V -105 0 0 0 0 0 0 2 0 P 408 22 1.6495454392990194e-01 -4.1485197647848297e-02 -5.5877608029094993e-02 1.7903443877102540e-01 0 1 0 0 0 0 P 409 22 -3.8287988224764957e-01 2.2930427549930657e-01 -6.2788353813468853e-02 4.5068817642228082e-01 0 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 410 130 -8.5285391871598504e-01 -7.1683438274476530e-01 1.6983211007453627e+00 2.0912152756450544e+00 4.9767000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 411 -2212 4.2620308055719121e-03 -8.6726733062740521e-02 7.6677094348076187e+00 7.7253904924393364e+00 9.3827000000000005e-01 1 0 0 0 0 P 412 111 2.4343432864741599e-01 -1.7868411747842605e-01 2.2492714111218977e+00 2.2734620664293819e+00 1.3497999999999999e-01 2 0 0 -172 0 V -108 0 -1.0861713321304476e-04 -1.3482298691972936e-04 4.1718579645557807e-04 4.5238356427200797e-04 0 2 0 P 413 22 -2.2320454031982823e-01 -2.3037120976247949e-01 6.2927670859112139e-01 7.0631461621722735e-01 0 1 0 0 0 0 P 414 22 -3.5999307398688934e-01 -4.9353340822322889e-01 1.6107176092327709e+00 1.7226669599906708e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 3 0 P 415 211 6.8486058271598801e-02 1.3519191134181011e-01 8.0767112809174257e+00 8.0793385925624275e+00 1.3957000000000000e-01 1 0 0 0 0 P 416 -211 1.1770186146616643e-01 6.6576740294806327e-02 5.1756843951111042e+00 5.1793315141278109e+00 1.3957000000000000e-01 1 0 0 0 0 P 417 221 3.5015480643596852e-01 -6.8435866427312142e-02 3.8424601560167261e+01 3.8430157408165691e+01 5.4744999999999999e-01 2 0 0 -173 0 V -110 0 -2.6115905645095661e-04 2.4938498030178232e-05 3.1276683873169155e-02 3.1277869422037100e-02 0 2 0 P 418 22 -4.7063218005175245e-01 1.7485509980124294e-02 5.3099941960769684e+01 5.3102030437913285e+01 0 1 0 0 0 0 P 419 22 -1.1967486960890903e-02 2.8598707847564190e-02 4.6967028409612857e+00 4.6968051570326530e+00 0 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 420 -311 -4.0783923744891343e-02 -9.4308761694217556e-03 7.2344803638025880e+01 7.2346527498721628e+01 4.9767000000000000e-01 2 0 0 -174 0 P 421 -211 2.1458841391309971e-01 -2.8912513623988695e-01 9.1458867504973384e+01 9.1459682738401014e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 422 -211 3.6924131296024582e-01 4.7640717588257907e-02 -5.8421798191545022e+01 5.8423151168896069e+01 1.3957000000000000e-01 1 0 0 0 0 P 423 211 1.7674842916973557e-01 3.5200348650351032e-01 -1.9337888351289675e+02 1.9337933502559449e+02 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 424 22 -2.4646755922353997e-01 6.5074772016213422e-02 -2.2717723042111615e+00 2.2860293930488864e+00 0 1 0 0 0 0 P 425 113 -5.8048455459381969e-02 2.3375928990554123e-01 -1.3768903493694639e+01 1.3788879518544373e+01 7.0177056753451916e-01 2 0 0 -175 0 V -114 0 0 0 0 0 0 2 0 P 426 211 -3.7803662493257575e-02 1.2305263959690381e-01 -2.3506227446670088e+01 2.3506994270397392e+01 1.3957000000000000e-01 1 0 0 0 0 P 427 -211 1.0803395946172473e-01 -8.0590500072749094e-02 -1.5959045233384193e+00 1.6076558081912249e+00 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 428 211 -1.9194609758794759e-01 1.6067963701936466e-01 -4.9617354609016490e-01 5.7300019447780792e-01 1.3957000000000000e-01 1 0 0 0 0 P 429 111 2.7899994002884031e-02 -6.4648730954309874e-01 -1.7401901446799160e+00 1.8615062694245061e+00 1.3497999999999999e-01 2 0 0 -176 0 V -116 0 0 0 0 0 0 2 0 P 430 -211 1.2185793992887772e-01 -4.8754278481510138e-01 -6.5462855112954266e-01 8.3699799844619605e-01 1.3957000000000000e-01 1 0 0 0 0 P 431 111 8.4298679994009029e-02 3.0291726804149305e-01 -2.8339706671089637e-01 4.4429566343460336e-01 1.3497999999999999e-01 2 0 0 -177 0 V -117 0 0 0 0 0 0 2 0 P 432 311 -1.8870965519120694e-01 -6.7474321236628901e-02 -1.7093928768693132e+00 1.7916092080529935e+00 4.9767000000000000e-01 2 0 0 -178 0 P 433 111 -3.4361624761844983e-01 -5.8261243088401649e-01 -1.9513148955727584e+00 2.0696276941353706e+00 1.3497999999999999e-01 2 0 0 -179 0 V -118 0 0 0 0 0 0 1 0 P 434 310 4.2668314658300309e-02 -1.0593019744072792e-01 -7.8642454014048901e-01 9.3764640352362627e-01 4.9767000000000000e-01 2 0 0 -180 0 V -119 0 0 0 0 0 0 2 0 P 435 -211 2.8347980843283654e-01 -8.7511253918451992e-02 8.8019035164002302e-01 9.3927304942262924e-01 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -3.4047879163101391e-01 2.9175197335009800e-01 1.7588890130847705e+00 1.8201525162069550e+00 1.3497999999999999e-01 2 0 0 -181 0 V -120 0 0 0 0 0 0 2 0 P 437 -321 -3.4620789605653929e-01 -4.9264654132813662e-01 1.5374839776792639e+00 1.7233857558872077e+00 4.9359999999999998e-01 1 0 0 0 0 P 438 111 -1.7569077536735306e-01 -1.7364495152759143e-01 6.3524939528825417e-02 2.8857379659688820e-01 1.3497999999999999e-01 2 0 0 -182 0 V -121 0 -2.5975233019032165e+00 1.9173931531954317e+01 9.7880497157911918e+01 2.6901687682245097e+02 0 2 0 P 439 22 3.1730243655828307e-02 -1.0116447993034195e-02 6.3359267334345409e-02 7.1578960872584960e-02 0 1 0 0 0 0 P 440 22 4.5033999778658768e-02 7.3515330875489754e-02 -4.4821672610833002e-02 9.7167624986050125e-02 0 1 0 0 0 0 V -122 0 0 0 0 0 0 1 0 P 441 310 6.0945609404480405e-02 4.3937654203237957e-03 3.7266553682780994e+01 3.7269926649954357e+01 4.9767000000000000e-01 2 0 0 -183 0 V -123 0 -1.3725162483123023e-04 1.5667041006689860e-04 1.7588293919267497e-02 1.7589599343045784e-02 0 2 0 P 442 22 -3.2064662795040527e-01 3.9985179897976281e-01 4.4818113721377607e+01 4.4821044312504569e+01 0 1 0 0 0 0 P 443 22 -4.7062249443273453e-02 1.9881669948892212e-02 2.3024345437263007e+00 2.3030012948903771e+00 0 1 0 0 0 0 V -124 0 -9.7044554692179726e-07 -4.7309727808933741e-07 -2.1363811629506225e-07 6.9955619935834686e-06 0 2 0 P 444 22 9.2655266929723666e-03 8.7782382234748088e-03 -6.5540902455212852e-02 6.6772130008334984e-02 0 1 0 0 0 0 P 445 22 -2.8226475710664240e-02 -1.8021800006734343e-02 6.1366756420790557e-02 6.9909927765204355e-02 0 1 0 0 0 0 V -125 0 -7.4283844890383547e-05 -4.0337411724646120e-05 1.0101023341234977e-04 1.3230334314532965e-04 0 2 0 P 446 22 -9.3366261955913118e-02 -1.0249261177821085e-01 1.8750250166236618e-01 2.3319344431262398e-01 0 1 0 0 0 0 P 447 22 -7.0965210647215848e-01 -3.3356024194166944e-01 9.0443172641936220e-01 1.1970235147976269e+00 0 1 0 0 0 0 V -126 0 -1.2832148014042854e-04 -8.2649050002425392e-05 2.1590947530151705e-03 2.1647122235934741e-03 0 2 0 P 448 22 -4.4130133639513278e-02 -2.5007441742503751e-02 3.5157393173979501e-01 3.5521411897125388e-01 0 1 0 0 0 0 P 449 22 -5.0592035110117961e-01 -3.2926800744528195e-01 8.9033934688654615e+00 8.9238325894103081e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 1 0 P 450 310 5.0965847839412597e-02 -1.8216608581881379e+00 1.6937593552498960e+01 1.7042617069524713e+01 4.9767000000000000e-01 2 0 0 -184 0 V -128 0 4.0901069003353697e-05 -1.0300677163841280e-04 1.7374837367598016e-03 1.7410879414851439e-03 0 2 0 P 451 22 1.9136960020794944e-01 -6.3283310529926062e-01 9.8487376044989858e+00 9.8709033257001799e+00 0 1 0 0 0 0 P 452 22 1.5490697781565135e-01 -2.3924269284878791e-01 4.8611449828610276e+00 4.8694931750904491e+00 0 1 0 0 0 0 V -129 0 0 0 0 0 0 1 0 P 453 130 1.8433795689463647e-01 -7.4743821443483072e-01 1.5913181307511662e+01 1.5939562701698820e+01 4.9767000000000000e-01 1 0 0 0 0 V -130 0 1.7273673093968524e-05 -2.6933135162453005e-05 2.1636417728844603e-04 2.1876298189081787e-04 0 2 0 P 454 22 3.0796713249599234e-01 -3.5839853113899123e-01 3.2684692142072431e+00 3.3024512511225508e+00 0 1 0 0 0 0 P 455 22 2.1324499600246594e-01 -4.5427614602972455e-01 3.2600573337859231e+00 3.2984563154213653e+00 0 1 0 0 0 0 V -131 0 5.0080629919547576e-05 -1.5255082664323802e-05 1.1330423605372300e-03 1.1342800770564505e-03 0 2 0 P 456 22 2.6221060603966428e-01 -1.6071685145106356e-02 5.7942677836431802e+00 5.8002199828582661e+00 0 1 0 0 0 0 P 457 22 5.7294523746224479e-01 -2.3832550296298186e-01 1.3100601347555896e+01 1.3115289587274717e+01 0 1 0 0 0 0 V -132 0 8.8403890752411176e-06 -3.5987201165934929e-05 2.4752493362188922e-03 2.4756940837706962e-03 0 2 0 P 458 22 2.9093885235831219e-02 -3.1935700000804305e-02 7.6742735038142107e-01 7.6864236235462946e-01 0 1 0 0 0 0 P 459 22 1.2358073611917824e-02 -1.3680573989281425e-01 1.0838841644070634e+01 1.0839712021898498e+01 0 1 0 0 0 0 V -133 0 2.9824918910277661e-05 1.1436295143253780e-05 4.4335767481508120e-03 4.4336933586768719e-03 0 2 0 P 460 22 1.0664707076418396e+00 4.1148828082890881e-01 1.5493217415355369e+02 1.5493639104588249e+02 0 1 0 0 0 0 P 461 22 2.1082260793477435e-02 5.5313519273117555e-03 6.7363141244024289e+00 6.7363493852529635e+00 0 1 0 0 0 0 V -134 0 -6.6394687809731643e-05 -9.5037802079774009e-05 5.2812435721302217e-02 5.2812571096133638e-02 0 2 0 P 462 22 -2.9339435503872630e-01 -3.4985439799991314e-01 2.1474379518500939e+02 2.1474428059626791e+02 0 1 0 0 0 0 P 463 22 -1.2467450167611359e-02 -8.7958244334729652e-02 2.8548363569497671e+01 2.8548501792323222e+01 0 1 0 0 0 0 V -135 0 4.8848517740780712e-06 -4.7836551499044919e-05 1.3354840151296985e-02 1.3354926944564253e-02 0 2 0 P 464 22 4.6408210499354986e-02 -6.6490869980114664e-01 1.7035072487243337e+02 1.7035202881640291e+02 0 1 0 0 0 0 P 465 22 2.2209130307788791e-01 -1.9644629582836850e+00 5.6370800410544291e+02 5.6371147081800927e+02 0 1 0 0 0 0 V -136 0 0 0 0 0 0 1 0 P 466 310 -9.5094782975413905e-01 6.2484106352144508e-01 1.1405799525807916e+02 1.1406475654579063e+02 4.9767000000000000e-01 2 0 0 -185 0 V -137 0 -6.2654788655356421e-05 -4.4049468350288739e-05 6.1992045540282493e-03 6.1997614960902737e-03 0 2 0 P 467 22 7.2316995831990709e-03 1.1194611788408660e-02 1.5839702943702081e+00 1.5840263603422760e+00 0 1 0 0 0 0 P 468 22 -2.6953617378991401e-01 -1.9560785270227810e-01 2.4369019508033947e+01 2.4371295081795697e+01 0 1 0 0 0 0 V -138 0 -9.0685993888861504e-06 -2.3205432412270854e-06 3.4988910487884886e-04 3.5003988326939292e-04 0 2 0 P 469 22 -9.6537550549919502e-03 2.6177413310234592e-02 6.2349777092978387e-01 6.2412172074739225e-01 0 1 0 0 0 0 P 470 22 -2.7959058725647373e-01 -1.0019148922548854e-01 1.0536267886670883e+01 1.0540453036311472e+01 0 1 0 0 0 0 V -139 0 -1.3538576009609744e-04 7.9589796745303915e-05 1.2049706355654821e-03 1.2156305642020422e-03 0 2 0 P 471 22 -1.5347481573278060e-01 2.8761828769455367e-02 1.3552478272311419e+00 1.3642134858859540e+00 0 1 0 0 0 0 P 472 22 -3.8786117596883379e-01 2.8947563963096729e-01 3.4627919246021635e+00 3.4964496780096299e+00 0 1 0 0 0 0 V -140 0 -4.4860374163805063e-05 4.1080282986104032e-05 3.4024964443822288e-04 3.4716263996311753e-04 0 2 0 P 473 22 -1.8941295774443423e-01 9.8321861327511223e-02 1.0079680236932136e+00 1.0303125709047738e+00 0 1 0 0 0 0 P 474 22 2.7246261290808198e-03 7.2635462054560354e-02 4.0799516513234318e-01 4.1441933920461632e-01 0 1 0 0 0 0 V -141 0 0 0 0 0 0 1 0 P 475 130 -1.8227947403003248e+00 3.5769657116759801e-01 1.1753603812373095e+01 1.1909886880630854e+01 4.9767000000000000e-01 1 0 0 0 0 V -142 0 -6.2591757083062932e-05 -3.2449243496125166e-05 1.0038453502891616e-03 1.0077401278703042e-03 0 2 0 P 476 22 -4.2178780828066031e-02 9.8575556613793303e-03 1.7783710034262248e-01 1.8303621284879992e-01 0 1 0 0 0 0 P 477 22 -1.1569147790866285e-01 -9.1701726607821679e-02 2.3540829569822335e+00 2.3587073351897141e+00 0 1 0 0 0 0 V -143 0 -1.6679749038417054e-05 -6.2669258981368939e-06 9.2499605358238116e-05 9.4368185446072088e-05 0 2 0 P 478 22 -3.1998141510131339e-01 -1.4349348406141030e-01 1.5057189967601805e+00 1.5460168767457896e+00 0 1 0 0 0 0 P 479 22 -7.9967351547427928e-02 -6.7755204581429682e-03 7.1224621322678960e-01 7.1675334198515606e-01 0 1 0 0 0 0 V -144 0 3.2118865677824942e-05 5.7490442327602843e-05 1.7051054223698824e-04 1.8495930261468578e-04 0 2 0 P 480 22 2.3973400211982680e-02 5.4003462921817451e-02 5.0156000474818656e-02 7.7503047094304681e-02 0 1 0 0 0 0 P 481 22 1.2937089401482074e-01 2.2047171288115330e-01 7.6390820153753436e-01 8.0554350892751525e-01 0 1 0 0 0 0 V -145 0 -7.5839323684596645e-04 2.5885905756303182e-04 3.5810836669043331e-03 3.6701117675233749e-03 0 2 0 P 482 22 -1.7132921619250545e+00 5.8860406575407465e-01 8.1712800523951081e+00 8.3696859243944299e+00 0 1 0 0 0 0 P 483 22 -4.4412808491104190e-02 1.1345709652738494e-02 1.2848879439949107e-01 1.3642064716100136e-01 0 1 0 0 0 0 V -146 0 -1.8089289709030893e-04 1.5795854894050935e-04 6.8758053534366038e-04 7.2950685208786326e-04 0 2 0 P 484 22 -3.3295939248768658e-01 3.4478839855345267e-01 1.5144176843215496e+00 1.5884589763064922e+00 0 1 0 0 0 0 P 485 22 -2.5237282590384263e-01 1.6633298516288217e-01 7.1045154243761066e-01 7.7207519022428572e-01 0 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 486 310 -6.5953549581604667e-02 2.1193048673966319e+00 4.4768925327522071e+00 4.9785585434326212e+00 4.9767000000000000e-01 2 0 0 -186 0 V -148 0 1.5071382619775262e+01 1.7931069664287674e+02 3.5226483816370393e+02 3.9640782561696778e+02 0 2 0 P 487 -211 3.1420320961507747e-01 3.1155792825009194e+00 6.0615993268587340e+00 6.8240767951976933e+00 1.3957000000000000e-01 1 0 0 0 0 P 488 211 -2.4252255920903559e-02 3.3409144850093797e-01 7.1545148230006350e-01 8.0221934425945252e-01 1.3957000000000000e-01 1 0 0 0 0 V -149 0 1.7655895956991468e-04 1.3635451659382622e-04 3.2056175316027050e-04 3.9332632107233012e-04 0 2 0 P 489 22 1.1283916956499916e-01 5.4206201526573156e-02 2.6888142962278994e-01 2.9659435879337526e-01 0 1 0 0 0 0 P 490 22 3.9756863441313961e-01 3.3997605660797592e-01 6.5781875522467403e-01 8.4045823980800960e-01 0 1 0 0 0 0 V -150 0 1.3112254347299546e-04 -3.9119943119776438e-05 2.0093131298596690e-04 2.4355842952994232e-04 0 2 0 P 491 22 1.7542715411127735e-01 -6.8741498116177288e-02 3.6479349448220388e-01 4.1057809680909191e-01 0 1 0 0 0 0 P 492 22 1.0075947420781488e+00 -2.8420886467107048e-01 1.4480613861237763e+00 1.7868697828895823e+00 0 1 0 0 0 0 V -151 0 1.1201312339435374e-05 1.9472877676588567e-06 7.1685347270403544e-05 8.0604070079301631e-05 0 2 0 P 493 22 1.8863768452804689e-02 3.3750575477984178e-02 7.3932504404341350e-03 3.9365000411674254e-02 0 1 0 0 0 0 P 494 22 2.4265137080809268e-02 -2.6252847744560916e-02 2.6861999487233690e-01 2.7098839557712406e-01 0 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 495 130 5.1109381241943197e-01 -6.4712078421272201e-01 1.3163213379470025e+00 1.6310608474511625e+00 4.9767000000000000e-01 1 0 0 0 0 V -153 0 4.0995830344907851e-04 -4.2312330430579901e-04 3.8617335772021669e-04 7.1024938522807083e-04 0 2 0 P 496 22 5.0758765361943747e-01 -4.4267052892824721e-01 4.2402024918487785e-01 7.9586154261109132e-01 0 1 0 0 0 0 P 497 22 1.0256183655065666e-01 -1.8707270649163577e-01 1.5072961036890173e-01 2.6121742528535541e-01 0 1 0 0 0 0 V -154 0 -2.0909240992388640e-07 -5.6701552612392465e-07 9.7125918985342529e-07 1.1563500059214927e-06 0 2 0 P 498 22 -1.1066618827439723e-02 -1.4224689463731163e-01 3.2041631185162783e-01 3.5074672056461176e-01 0 1 0 0 0 0 P 499 22 -1.5589513862296805e-01 -3.1051898422830432e-01 4.5514097086761390e-01 5.7260687838583146e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 1 0 P 500 130 2.7694968506250600e-01 1.2564458147814045e-02 -7.4672351305779272e-01 9.3921798722029437e-01 4.9767000000000000e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 1 0 P 501 130 1.9672134001553085e-01 1.1280348137991568e-01 -4.2640541626965528e-01 6.9348462055984561e-01 4.9767000000000000e-01 1 0 0 0 0 V -157 0 -7.4679685208355038e-07 1.2389937076498581e-05 -1.3209722237323419e-05 1.8204845842607731e-05 0 2 0 P 502 22 3.6859939255715353e-02 2.2462611879865874e-01 -2.7886502206415675e-01 3.5997395586254127e-01 0 1 0 0 0 0 P 503 22 -9.6555564427723672e-02 7.6577044963877738e-01 -7.7706153293607638e-01 1.0952406057715796e+00 0 1 0 0 0 0 V -158 0 -1.0173006471349736e-05 -1.4359790467346131e-04 -2.8928727398106651e-04 3.2862676330239866e-04 0 3 0 P 504 22 -2.6499776387649064e-03 -2.7828435382607752e-01 -4.5301112744880229e-01 5.3166557680398907e-01 0 1 0 0 0 0 P 505 -11 -1.5136733342595059e-02 2.6400683892371353e-03 -5.6778456957597187e-02 5.8822988124290272e-02 5.1000000000000004e-04 1 0 0 0 0 P 506 11 -5.1483524774063975e-03 -4.8097478171293014e-02 -1.4240915401522233e-01 1.5040113093657553e-01 5.1000000000000004e-04 1 0 0 0 0 V -159 0 -4.9168179723480524e-05 -1.0201661666978089e-04 -3.0933327678222292e-04 3.3134640393677351e-04 0 2 0 P 507 22 -1.3593008640500785e-02 -1.5997981391326510e-01 -5.0986979055726811e-01 5.3455169447541373e-01 0 1 0 0 0 0 P 508 22 -1.7202043190088379e-01 -2.2514030480910391e-01 -6.5788573955175622e-01 7.1630498542622456e-01 0 1 0 0 0 0 V -160 0 0 0 0 0 0 2 0 P 509 22 1.6355287047433842e-01 -2.4921493408530934e-01 -3.1095518732454055e+00 3.1238070486532217e+00 0 1 0 0 0 0 P 510 22 -3.5216941878569574e-01 -6.2845120925564726e-02 -3.1943545556263304e+00 3.2143232313821044e+00 0 1 0 0 0 0 V -161 0 -1.4998822591556460e-05 2.3548324760922880e-06 -1.5673044521124704e-04 1.5749909952349702e-04 0 2 0 P 511 22 -5.2295514318851255e-01 3.6237978801107552e-02 -5.4979062207224789e+00 5.5228405811460686e+00 0 1 0 0 0 0 P 512 22 -8.6802698376197335e-02 5.9494706821618441e-02 -8.7376844881361559e-01 8.8008274084163907e-01 0 1 0 0 0 0 V -162 0 0 0 0 0 0 2 0 P 513 -211 -2.3220319765358868e-01 9.3060662647800663e-02 -6.2583786716691323e+00 6.2649311245085606e+00 1.3957000000000000e-01 1 0 0 0 0 P 514 211 2.1046359103662302e-01 -2.2542841563326566e-01 -1.3521998285271062e+01 1.3526234890223535e+01 1.3957000000000000e-01 1 0 0 0 0 V -163 0 -3.3981544361433698e+01 -2.6083466722676388e+02 -1.7895004749282863e+04 1.7899882210116579e+04 0 2 0 P 515 2212 -1.4966401476196506e-01 -7.9614683622219184e-01 -5.6755178575051637e+01 5.6768714049034450e+01 9.3827000000000005e-01 1 0 0 0 0 P 516 -211 3.2884906853822969e-02 -1.0022324708774365e-01 -4.7418113323561579e+00 4.7450374722352695e+00 1.3957000000000000e-01 1 0 0 0 0 V -164 0 -3.9043255477619546e+01 -5.3094366404403843e+01 -7.6214735542167718e+03 7.6223746925058786e+03 0 2 0 P 517 -2212 -3.9671298922166742e-01 -4.1455861763175733e-01 -7.3633394548206752e+01 7.3641607691087614e+01 9.3827000000000005e-01 1 0 0 0 0 P 518 211 -5.2728975022935408e-02 -1.9663110093043115e-01 -1.4100325469300520e+01 1.4102485676637471e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 7.7489872230671102e-06 3.8845321969911444e-05 -3.0144024255019529e-03 3.0152393615225049e-03 0 2 0 P 519 22 -5.6762129604836945e-04 1.2269262675730944e-01 -4.8226133477505275e+00 4.8241738468629096e+00 0 1 0 0 0 0 P 520 22 1.8304854853577555e-02 -3.3776678316111190e-02 -2.0772767047649929e+00 2.0776319307973168e+00 0 1 0 0 0 0 V -166 0 -2.0716612330179524e-04 1.9441990428968679e-04 -8.6629257317270364e-02 8.6629731328452225e-02 0 2 0 P 521 22 -6.6942131510035430e-01 5.6857111534016103e-01 -2.5985676754326880e+02 2.5985825181442044e+02 0 1 0 0 0 0 P 522 22 -7.5327812916598305e-02 1.3035616041887155e-01 -5.1569940740528253e+01 5.1570160509635350e+01 0 1 0 0 0 0 V -167 0 -1.1942840141152278e+01 1.4244429916457131e+01 -7.6595141119367281e+03 7.6595774745747567e+03 0 2 0 P 523 111 2.7702077862489738e-02 2.3912886440282974e-01 -1.0125905025579270e+02 1.0125942636774346e+02 1.3497999999999999e-01 2 0 0 -187 0 P 524 111 -2.6542244771437756e-01 4.4404290864102879e-02 -5.1202383210206520e+01 5.1203268321680760e+01 1.3497999999999999e-01 2 0 0 -188 0 V -168 0 -3.0952494187088759e-06 1.1206286885267503e-05 -9.7858182303349605e-05 9.8728724184492966e-05 0 2 0 P 525 22 1.1599891353529252e-02 3.6739338163962985e-02 -1.0247666335859519e-01 1.0947969209515775e-01 0 1 0 0 0 0 P 526 22 -8.1256198106651675e-02 2.1544988837316487e-01 -2.0997496010658221e+00 2.1123374757142459e+00 0 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 527 211 7.6242010869828208e-02 2.2169073546590060e-01 -1.1684211497400500e+02 1.1684243352057469e+02 1.3957000000000000e-01 1 0 0 0 0 P 528 -211 7.9216282398992899e-01 -1.1328510558572633e-02 -3.6324302158892277e+02 3.6324391235519749e+02 1.3957000000000000e-01 1 0 0 0 0 V -170 0 3.3115709484788726e-05 6.0979842867377754e-05 -2.7353688039365671e-02 2.7353781737745119e-02 0 2 0 P 529 22 2.6471633371199377e-01 4.5830529008322191e-01 -1.9752956403666184e+02 1.9753027308994928e+02 0 1 0 0 0 0 P 530 22 -1.1170704633765417e-02 8.5780369372272600e-03 -1.1899983131465962e+01 1.1899991466237871e+01 0 1 0 0 0 0 V -171 0 1.1511349884409329e-06 8.0186570977158127e-05 -3.5834599431705474e-05 8.8880231366123786e-05 0 2 0 P 531 22 5.4048411500097877e-02 1.5321673745726203e-01 -8.7279902826098668e-02 1.8442988060524451e-01 0 1 0 0 0 0 P 532 22 -4.2604998444149771e-02 6.4391658091620285e-01 -2.6895123175772406e-01 6.9912696567593235e-01 0 1 0 0 0 0 V -172 0 8.0992650579277834e-06 -5.9449710200724443e-06 7.4835153476982219e-05 7.5639996944823839e-05 0 2 0 P 533 22 2.7791414787645227e-02 -9.4016530407357787e-02 7.5498549845079643e-01 7.6132422370284147e-01 0 1 0 0 0 0 P 534 22 2.1564291385977077e-01 -8.4667587071068251e-02 1.4942859126711012e+00 1.5121378427265404e+00 0 1 0 0 0 0 V -173 0 0 0 0 0 0 3 0 P 535 -211 1.7291420111981270e-01 3.3233228027137733e-02 1.3803219779148344e+01 1.3805048345614951e+01 1.3957000000000000e-01 1 0 0 0 0 P 536 211 1.0911379701544700e-01 -1.9509051697763850e-02 1.9542996798149392e+01 1.9543809507390687e+01 1.3957000000000000e-01 1 0 0 0 0 P 537 111 6.8126808300708816e-02 -8.2160042756686022e-02 5.0783849828695224e+00 5.0812995551600482e+00 1.3497999999999999e-01 2 0 0 -189 0 V -174 0 0 0 0 0 0 1 0 P 538 310 -4.0783923744891343e-02 -9.4308761694217556e-03 7.2344803638025880e+01 7.2346527498721628e+01 4.9767000000000000e-01 2 0 0 -190 0 V -175 0 0 0 0 0 0 2 0 P 539 211 -1.2237062485606230e-01 4.6639684833744463e-02 -1.2191277416745420e+01 1.2192779612007097e+01 1.3957000000000000e-01 1 0 0 0 0 P 540 -211 6.4322169396680326e-02 1.8711960507179679e-01 -1.5776260769492203e+00 1.5960999065372781e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 4.0907885443423265e-06 -9.4790087756585980e-05 -2.5515238132661061e-04 2.7294014906942353e-04 0 2 0 P 541 22 6.3903613995190373e-02 -3.9200166199468184e-01 -9.2234378964264430e-01 1.0042245969804731e+00 0 1 0 0 0 0 P 542 22 -3.6003619992306335e-02 -2.5448564754841690e-01 -8.1784635503727154e-01 8.5728167244403308e-01 0 1 0 0 0 0 V -177 0 1.5741194631213233e-07 5.6564108402829131e-07 -5.2919077562402838e-07 8.2963867434521311e-07 0 2 0 P 543 22 2.7151305610908980e-02 4.3660826275592909e-02 5.7770679863508190e-03 5.1738145134546533e-02 0 1 0 0 0 0 P 544 22 5.7147374383100059e-02 2.5925644176590013e-01 -2.8917413469724718e-01 3.9255751830005675e-01 0 1 0 0 0 0 V -178 0 0 0 0 0 0 1 0 P 545 310 -1.8870965519120694e-01 -6.7474321236628901e-02 -1.7093928768693132e+00 1.7916092080529935e+00 4.9767000000000000e-01 2 0 0 -191 0 V -179 0 -2.4240133485152086e-04 -4.1099928168761063e-04 -1.3765394933469837e-03 1.4600023112444703e-03 0 2 0 P 546 22 -1.7448528415723305e-01 -4.1864502703136963e-01 -1.3251982843105863e+00 1.4006638660953770e+00 0 1 0 0 0 0 P 547 22 -1.6913096346121678e-01 -1.6396740385264685e-01 -6.2611661126217211e-01 6.6896382803999377e-01 0 1 0 0 0 0 V -180 0 1.0029514265381589e+00 -2.4899704496760426e+00 -1.8485511338214611e+01 2.2040097096252559e+01 0 2 0 P 548 211 6.5655574828487551e-02 -9.8291666383602982e-02 -7.7414671930950940e-01 7.9545888272380305e-01 1.3957000000000000e-01 1 0 0 0 0 P 549 -211 -2.2987260170187242e-02 -7.6385310571249303e-03 -1.2277820830979634e-02 1.4218752079982327e-01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 -4.5289012027317760e-05 3.8807582013406981e-05 2.3395978729459643e-04 2.4210879274790266e-04 0 2 0 P 550 22 -2.5621776823157222e-01 1.6982040638353424e-01 1.3679609971932274e+00 1.4020712553303865e+00 0 1 0 0 0 0 P 551 22 -8.4261023399441679e-02 1.2193156696656375e-01 3.9092801589154319e-01 4.1808126087656877e-01 0 1 0 0 0 0 V -182 0 -3.3405254503781407e-06 -3.3016268423583145e-06 1.2078418846184113e-06 5.4868453385133118e-06 0 2 0 P 552 22 -1.0287772229895510e-01 -7.3403194603835389e-02 -3.4029385445103824e-02 1.3088106737508262e-01 0 1 0 0 0 0 P 553 22 -7.2813053068397957e-02 -1.0024175692375605e-01 9.7554324973929241e-02 1.5769272922180574e-01 0 1 0 0 0 0 V -183 0 3.6084275908579122e+00 2.6014317561796746e-01 2.2064536205170616e+03 2.2066533249408967e+03 0 2 0 P 554 -211 1.3321013981226781e-01 1.7353185890463991e-02 3.2829184967489056e+01 3.2829756494511479e+01 1.3957000000000000e-01 1 0 0 0 0 P 555 211 -7.2264530407787395e-02 -1.2959420470140197e-02 4.4373687152919414e+00 4.4401701554428783e+00 1.3957000000000000e-01 1 0 0 0 0 V -184 0 8.3486183304101722e+00 -2.9840279083318586e+02 2.7745148957588640e+03 2.7917185977776758e+03 0 2 0 P 556 211 1.7608654515945837e-01 -6.7830431543107239e-01 5.4213127405831587e+00 5.4682003284287131e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 -211 -1.2512069732004577e-01 -1.1433565427570656e+00 1.1516280811915800e+01 1.1574416741095998e+01 1.3957000000000000e-01 1 0 0 0 0 V -185 0 -3.2511549257857645e+01 2.1362424288051432e+01 3.8994800924507754e+03 3.8997112512289955e+03 0 2 0 P 558 211 -3.2075646224554744e-01 3.0507732561077000e-01 6.2587724538471704e+01 6.2589445592457416e+01 1.3957000000000000e-01 1 0 0 0 0 P 559 -211 -6.3019136750859162e-01 3.1976373791067503e-01 5.1470270719607463e+01 5.1475310953333214e+01 1.3957000000000000e-01 1 0 0 0 0 V -186 0 -5.0635092707345974e-01 1.6270723731553115e+01 3.4370836728999834e+01 3.8222320859887631e+01 0 2 0 P 560 211 8.6167655201609225e-02 4.2942864639989814e-01 1.2164345627908912e+00 1.3003948083578536e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 -211 -1.5212120478321389e-01 1.6898762209967340e+00 3.2604579699613159e+00 3.6781637350747673e+00 1.3957000000000000e-01 1 0 0 0 0 V -187 0 -1.1942826608588625e+01 1.4244546731758676e+01 -7.6595635773432541e+03 7.6596269401650152e+03 0 2 0 P 562 22 -4.3749224584145117e-02 1.6838801365731787e-01 -5.9009424304711352e+01 5.9009680776049393e+01 0 1 0 0 0 0 P 563 22 7.1451302446634848e-02 7.0740850745511841e-02 -4.2249625951081349e+01 4.2249745591694065e+01 0 1 0 0 0 0 V -188 0 -1.1942856797210904e+01 1.4244432702960225e+01 -7.6595173250406078e+03 7.6595806877341802e+03 0 2 0 P 564 22 -2.3155788929681892e-01 -1.0628496017774302e-02 -4.3324518371509456e+01 4.3325138478073946e+01 0 1 0 0 0 0 P 565 22 -3.3864558417558636e-02 5.5032786881877183e-02 -7.8778648386970662e+00 7.8781298436068150e+00 0 1 0 0 0 0 V -189 0 1.7174216270937979e-05 -2.0711880951542480e-05 1.2802196987992084e-03 1.2809544388538699e-03 0 2 0 P 566 22 1.7122629887016075e-02 -7.1934738158214492e-03 3.6461540290511345e+00 3.6462013293406623e+00 0 1 0 0 0 0 P 567 22 5.1004178413692737e-02 -7.4966568940864564e-02 1.4322309538183879e+00 1.4350982258193865e+00 0 1 0 0 0 0 V -190 0 -3.5162961400750619e+00 -8.1310846105672940e-01 6.2374026437008397e+03 6.2375512710067460e+03 0 2 0 P 568 -211 -8.0534755238910211e-02 5.5152797318150912e-02 9.5220569864943307e+00 9.5235800367718291e+00 1.3957000000000000e-01 1 0 0 0 0 P 569 211 3.9750831494018868e-02 -6.4583673487572671e-02 6.2822746651531546e+01 6.2822947461949788e+01 1.3957000000000000e-01 1 0 0 0 0 V -191 0 -6.0577807366288837e-02 -2.1659975107802831e-02 -5.4873330303833123e-01 5.7512562020812097e-01 0 2 0 P 570 111 -1.7055874139335014e-01 -2.3524792283934290e-01 -1.0134211377684879e+00 1.0628611726570341e+00 1.3497999999999999e-01 2 0 0 -192 0 P 571 111 -1.8150913797856778e-02 1.6777360160271401e-01 -6.9597173910082544e-01 7.2874803539595967e-01 1.3497999999999999e-01 2 0 0 -193 0 V -192 0 -6.0597354150248778e-02 -2.1686935557247988e-02 -5.4884944557009807e-01 5.7524742878592594e-01 0 2 0 P 572 22 -1.5336975984060230e-01 -2.3575064881332441e-01 -7.8622565167050196e-01 8.3501582439746180e-01 0 1 0 0 0 0 P 573 22 -1.7188981552747853e-02 5.0272597398150589e-04 -2.2719548609798587e-01 2.2784534825957209e-01 0 1 0 0 0 0 V -193 0 -6.0578246776440858e-02 -2.1655913525856777e-02 -5.4875015161417084e-01 5.7514326225571077e-01 0 2 0 P 574 22 4.7661405321740020e-02 1.2498663525540513e-01 -5.0144154469405100e-01 5.1897677336742809e-01 0 1 0 0 0 0 P 575 22 -6.5812319119596799e-02 4.2786966347308900e-02 -1.9453019440677441e-01 2.0977126202853150e-01 0 1 0 0 0 0 E 59 26 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 314 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 8.9976550254268506e-01 -1.0047480428970695e-01 1.1523392503269260e+03 1.1523396059830486e+03 0 3 0 0 -3 0 P 18 2 -8.5971380099956063e-01 7.6091157313439781e-02 1.5961607425681553e+01 1.5988330409877790e+01 3.3000000000000002e-01 2 0 0 -65 0 P 37 2101 -4.0051701543124429e-02 2.4383646976267177e-02 3.3915162199801539e+03 3.3915162697841242e+03 5.7933000000000001e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 -2.0787552451882174e+00 3.6533234226983657e-01 -2.3987937599103691e+02 2.3988866108455133e+02 0 3 0 0 -4 0 P 11 2114 1.1757887891195300e+00 -2.9237642126944130e-01 -4.2548976534627682e+03 4.2548979933967075e+03 1.1936520037010743e+00 2 0 0 -64 0 P 89 2 9.0296645606868731e-01 -7.2955921000395274e-02 -7.0273570635001681e+02 7.0273636774415218e+02 3.3000000000000002e-01 2 0 0 -63 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -9.7454756046945523e-01 5.0918159055016057e+00 7.3702286246877300e+00 9.0109157216845990e+00 0 3 0 0 -5 0 P 12 -2 2.6005869548804322e-01 -1.0037976438894642e+00 1.2960629939475998e+00 1.6923118859292452e+00 3.3000000000000002e-01 2 0 0 -65 0 P 13 21 -3.5651852822865782e-01 -6.0040615912209749e-01 3.0719639770154457e+00 3.1503262835716925e+00 0 2 0 0 -65 0 P 14 21 -3.1930343982516490e-01 -1.2678805391542418e+00 1.0642813255001737e+02 1.0643616337426070e+02 0 2 0 0 -65 0 P 15 21 7.6865413385460235e-01 -8.0295550970491847e-02 2.5750117452506169e+02 2.5750233427745712e+02 0 2 0 0 -65 0 P 16 21 -4.8130509940227734e-01 -4.1039385101523851e-01 2.3643576292384338e+02 2.3643660898238988e+02 0 2 0 0 -65 0 P 17 21 -4.6444203967376729e-01 1.2934488016429615e+00 5.0240499321170194e+02 5.0240687288318514e+02 0 2 0 0 -65 0 P 38 21 1.3972543532001588e-01 2.3347264303697515e-01 -1.0549516391548325e-02 2.7229389383189317e-01 0 2 0 0 -12 0 P 39 21 7.7446957083076751e-02 8.0499951099751277e-01 1.4906905824671686e+00 1.6959306166597645e+00 0 2 0 0 -13 0 P 40 21 1.9175608287556478e-01 2.7542749767930674e-01 9.4622192509148673e-01 1.0039754146997346e+00 0 2 0 0 -14 0 P 41 21 -2.4747673599789746e-01 -2.7786476195555996e+00 2.2992109478173219e+01 2.3160725929573644e+01 0 2 0 0 -15 0 P 42 21 3.8255880723021007e-01 -1.3641295411417712e-01 7.9236964311433544e+00 7.9340988693079373e+00 0 2 0 0 -16 0 P 43 21 1.0306062922074590e+00 -1.1193353316977039e+00 -4.6511002754806602e-01 1.5910337055041224e+00 0 2 0 0 -17 0 P 44 21 1.2932559392032266e+00 -8.7009528799996361e-01 1.6317996307825471e+00 2.2566228682494147e+00 0 2 0 0 -18 0 P 45 21 -4.2326813974421651e-01 4.5118562645887844e-01 3.3812314819731859e-01 7.0501890115973920e-01 0 2 0 0 -19 0 V -4 0 0 0 0 0 0 3 0 P 6 -1 -1.9901566301230105e+00 3.6126833052656299e-01 -2.2064432238438098e+02 2.2065359330561952e+02 0 3 0 0 -5 0 P 87 21 2.9373533421229547e-01 6.5040265602641956e-01 -5.9115115667457863e+00 5.9544330599394808e+00 0 2 0 0 -61 0 P 88 21 -3.5976924665676219e-01 -6.2989849636693107e-01 -1.0339592165842298e+01 1.0365007099974061e+01 0 2 0 0 -62 0 V -5 0 0 0 0 0 0 2 0 P 7 22 1.7101278668099158e+00 2.4791169496293617e+00 -4.4118351224823060e+00 5.3418018793987354e+00 0 3 0 0 -6 0 P 8 24 -4.6748320574023809e+00 2.9739672863988074e+00 -2.0886225863721100e+02 2.2432270714790533e+02 8.1648853776046394e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 1.7101278668099158e+00 2.4791169496293617e+00 -4.4118351224823060e+00 5.3418018793987381e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -4.6748320574023809e+00 2.9739672863988074e+00 -2.0886225863721100e+02 2.2432270714790533e+02 8.1648853776046394e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 13 0 P 19 4 -2.0706878805942651e+01 -2.7642876062290878e+01 -5.9877363766584033e+01 6.9140813695783194e+01 1.5000000000000000e+00 2 0 0 -67 0 P 20 21 -1.7296334085035217e-01 1.7835254460772645e-01 -2.0713799213500114e-01 3.2346884739010950e-01 0 2 0 0 -67 0 P 21 -1 2.5182022338712291e+00 1.6810597824456865e+00 -2.1079662301489826e+01 2.1298553172168333e+01 3.3000000000000002e-01 2 0 0 -67 0 P 22 1 2.8501064202261048e+00 -4.4203807365283931e-01 -4.0365330130303931e+00 4.9720220263447139e+00 3.3000000000000002e-01 2 0 0 -69 0 P 23 21 1.3241121606235071e-01 4.6390918021642980e-01 -1.4349891803712393e+00 1.5139149267414969e+00 0 2 0 0 -69 0 P 24 21 2.1765340222906233e+00 -4.9368857565371871e-01 -1.3402670092199321e+01 1.3587221730738545e+01 0 2 0 0 -69 0 P 25 21 1.3030467233654544e-01 1.4845300114736046e+00 -3.8707844006664565e+00 4.1477440300772335e+00 0 2 0 0 -69 0 P 26 21 4.6590233796085805e+00 6.6665573378132708e+00 -2.7150133106193856e+01 2.8342180813658906e+01 0 2 0 0 -69 0 P 27 21 1.0231415370378805e+00 3.7113976491598505e-01 -3.3450639596065104e+00 3.5176719892241963e+00 0 2 0 0 -69 0 P 28 21 1.3736566471400449e+00 4.6493996668239355e+00 -1.5043302168243088e+01 1.5805214012191096e+01 0 2 0 0 -69 0 P 29 21 -2.3551013961848066e-01 7.6412427264252383e+00 -2.6487941589569257e+01 2.7569096921778964e+01 0 2 0 0 -69 0 P 30 21 8.4247437708653683e-01 6.6193339279557524e+00 -2.1778548960209349e+01 2.2777851951798905e+01 0 2 0 0 -69 0 P 31 -3 7.3466572334921609e-01 1.7970450553186075e+00 -1.1148128106912370e+01 1.1326953030009388e+01 5.0000000000000000e-01 2 0 0 -69 0 V -9 0 0 0 0 0 2 1 0 P 35 2 5.3240366396189252e-02 -5.7514673601085031e-01 -1.0713229889687562e+02 1.0713385597108906e+02 0 2 0 0 -9 0 P 36 -2 -5.3240366396189252e-02 5.7514673601085031e-01 -1.2753875687928029e+02 1.2754006482128163e+02 0 2 0 0 -9 0 P 94 91 0 0 -2.3467105577615592e+02 2.3467392079237069e+02 1.1596037979368690e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 95 111 0 0 -2.7316139499562091e+01 2.7316472992682204e+01 1.3497999999999999e-01 2 0 0 -75 0 P 146 21 0 0 -2.0735491627659383e+02 2.0735744779968849e+02 1.0246237979368691e+00 2 0 0 -76 0 V -11 0 0 0 0 0 0 1 0 P 96 2101 -4.0051701543124429e-02 2.4383646976267177e-02 3.3915162199801539e+03 3.3915162697841242e+03 5.7933000000000001e-01 2 0 0 -76 0 V -12 0 0 0 0 0 0 1 0 P 97 21 1.3972543532001588e-01 2.3347264303697515e-01 -1.0549516391548325e-02 2.7229389383189317e-01 0 2 0 0 -76 0 V -13 0 0 0 0 0 0 1 0 P 98 21 7.7446957083076751e-02 8.0499951099751277e-01 1.4906905824671686e+00 1.6959306166597645e+00 0 2 0 0 -76 0 V -14 0 0 0 0 0 0 1 0 P 99 21 1.9175608287556478e-01 2.7542749767930674e-01 9.4622192509148673e-01 1.0039754146997346e+00 0 2 0 0 -76 0 V -15 0 0 0 0 0 0 1 0 P 100 21 -2.4747673599789746e-01 -2.7786476195555996e+00 2.2992109478173219e+01 2.3160725929573644e+01 0 2 0 0 -76 0 V -16 0 0 0 0 0 0 1 0 P 101 21 3.8255880723021007e-01 -1.3641295411417712e-01 7.9236964311433544e+00 7.9340988693079373e+00 0 2 0 0 -76 0 V -17 0 0 0 0 0 0 1 0 P 102 21 1.0306062922074590e+00 -1.1193353316977039e+00 -4.6511002754806602e-01 1.5910337055041224e+00 0 2 0 0 -76 0 V -18 0 0 0 0 0 0 1 0 P 103 21 1.2932559392032266e+00 -8.7009528799996361e-01 1.6317996307825471e+00 2.2566228682494147e+00 0 2 0 0 -76 0 V -19 0 0 0 0 0 0 1 0 P 104 21 -4.2326813974421651e-01 4.5118562645887844e-01 3.3812314819731859e-01 7.0501890115973920e-01 0 2 0 0 -76 0 V -20 0 0 0 0 0 1 1 0 P 46 21 -2.4928442751453166e+00 -4.3498153346216428e-01 -5.7737780527485183e-01 2.5955436125409026e+00 0 2 0 0 -20 0 P 105 21 -2.4928442751453166e+00 -4.3498153346216428e-01 -5.7737780527485183e-01 2.5955436125409026e+00 0 2 0 0 -76 0 V -21 0 0 0 0 0 1 1 0 P 47 21 -3.2481859429200077e+00 5.3594508978484423e-01 -3.5153426393500936e-01 3.3108194450570623e+00 0 2 0 0 -21 0 P 106 21 -3.2481859429200077e+00 5.3594508978484423e-01 -3.5153426393500936e-01 3.3108194450570623e+00 0 2 0 0 -76 0 V -22 0 0 0 0 0 1 1 0 P 48 21 -4.6285704787524180e+00 1.4753810632466775e+00 3.8034064394224694e+00 6.1697904747248584e+00 0 2 0 0 -22 0 P 107 21 -4.6285704787524180e+00 1.4753810632466775e+00 3.8034064394224694e+00 6.1697904747248584e+00 0 2 0 0 -76 0 V -23 0 0 0 0 0 1 1 0 P 49 21 7.1314008256886297e-01 4.3297413611374047e+00 3.8073398200189001e+00 5.8095667253945766e+00 0 2 0 0 -23 0 P 108 21 7.1314008256886297e-01 4.3297413611374047e+00 3.8073398200189001e+00 5.8095667253945766e+00 0 2 0 0 -76 0 V -24 0 0 0 0 0 1 1 0 P 50 21 -1.6881442596483479e-01 4.4580902347667708e+00 7.1490413522724223e+00 8.4268534524007119e+00 0 2 0 0 -24 0 P 109 21 -1.6881442596483479e-01 4.4580902347667708e+00 7.1490413522724223e+00 8.4268534524007119e+00 0 2 0 0 -76 0 V -25 0 0 0 0 0 1 1 0 P 51 21 -5.3856695073473271e-01 1.8892029430268342e+00 1.5414433603528899e+01 1.5539108901026657e+01 0 2 0 0 -25 0 P 110 21 -5.3856695073473271e-01 1.8892029430268342e+00 1.5414433603528899e+01 1.5539108901026657e+01 0 2 0 0 -76 0 V -26 0 0 0 0 0 1 1 0 P 52 21 -3.2949299919811498e-01 4.7356543404732721e-01 3.7018823025698411e+00 3.7465667535658285e+00 0 2 0 0 -26 0 P 111 21 -3.2949299919811498e-01 4.7356543404732721e-01 3.7018823025698411e+00 3.7465667535658285e+00 0 2 0 0 -76 0 V -27 0 0 0 0 0 1 1 0 P 53 21 -3.0042310520469817e+00 4.7632281363258699e-01 2.8891672419316791e+01 2.9051351480128780e+01 0 2 0 0 -27 0 P 112 21 -3.0042310520469817e+00 4.7632281363258699e-01 2.8891672419316791e+01 2.9051351480128780e+01 0 2 0 0 -76 0 V -28 0 0 0 0 0 1 1 0 P 54 21 -2.4148341045655304e+00 3.2280663686462202e-01 4.7369787403480032e+01 4.7432398068496099e+01 0 2 0 0 -28 0 P 113 21 -2.4148341045655304e+00 3.2280663686462202e-01 4.7369787403480032e+01 4.7432398068496099e+01 0 2 0 0 -76 0 V -29 0 0 0 0 0 1 1 0 P 55 21 -3.3520838650517009e+00 1.0803001833354591e+00 2.9017504260591096e+02 2.9019641428878253e+02 0 2 0 0 -29 0 P 114 21 -3.3520838650517009e+00 1.0803001833354591e+00 2.9017504260591096e+02 2.9019641428878253e+02 0 2 0 0 -76 0 V -30 0 0 0 0 0 1 1 0 P 56 21 -4.8858117967465802e+00 4.2592624448139444e+00 8.3414235226713663e+02 8.3416753492283488e+02 0 2 0 0 -30 0 P 115 21 -4.8858117967465802e+00 4.2592624448139444e+00 8.3414235226713663e+02 8.3416753492283488e+02 0 2 0 0 -76 0 V -31 0 0 0 0 0 1 1 0 P 57 21 7.2534185972396262e-02 5.9298871783411267e-01 1.8327137791467854e+02 1.8327235159612192e+02 0 2 0 0 -31 0 P 116 21 7.2534185972396262e-02 5.9298871783411267e-01 1.8327137791467854e+02 1.8327235159612192e+02 0 2 0 0 -76 0 V -32 0 0 0 0 0 1 1 0 P 58 21 4.8858117967465802e+00 -4.2592624448139444e+00 5.2719818569782706e+02 5.2723802923970459e+02 0 2 0 0 -32 0 P 117 21 4.8858117967465802e+00 -4.2592624448139444e+00 5.2719818569782706e+02 5.2723802923970459e+02 0 2 0 0 -76 0 V -33 0 0 0 0 0 1 1 0 P 59 21 -7.2534185972396262e-02 -5.9298871783411267e-01 2.1506224618647487e+01 2.1514520542538996e+01 0 2 0 0 -33 0 P 118 21 -7.2534185972396262e-02 -5.9298871783411267e-01 2.1506224618647487e+01 2.1514520542538996e+01 0 2 0 0 -76 0 V -34 0 0 0 0 0 1 1 0 P 60 21 3.3520838650517009e+00 -1.0803001833354591e+00 6.2342606388984628e+01 6.2442005782136128e+01 0 2 0 0 -34 0 P 119 21 3.3520838650517009e+00 -1.0803001833354591e+00 6.2342606388984628e+01 6.2442005782136128e+01 0 2 0 0 -76 0 V -35 0 0 0 0 0 1 1 0 P 61 21 1.6881442596483479e-01 -4.4580902347667708e+00 6.7916952062711573e+01 6.8063319374979045e+01 0 2 0 0 -35 0 P 120 21 1.6881442596483479e-01 -4.4580902347667708e+00 6.7916952062711573e+01 6.8063319374979045e+01 0 2 0 0 -76 0 V -36 0 0 0 0 0 1 1 0 P 62 21 5.3856695073473271e-01 -1.8892029430268342e+00 1.9790588707707382e+01 1.9887849142579494e+01 0 2 0 0 -36 0 P 121 21 5.3856695073473271e-01 -1.8892029430268342e+00 1.9790588707707382e+01 1.9887849142579494e+01 0 2 0 0 -76 0 V -37 0 0 0 0 0 1 1 0 P 63 21 2.4148341045655304e+00 -3.2280663686462202e-01 1.5874105046150120e+01 1.6059976304265998e+01 0 2 0 0 -37 0 P 122 21 2.4148341045655304e+00 -3.2280663686462202e-01 1.5874105046150120e+01 1.6059976304265998e+01 0 2 0 0 -76 0 V -38 0 0 0 0 0 1 1 0 P 64 21 1.3374834862437199e+00 3.1096751409274764e-01 8.6400823781376843e+00 8.7485190959270938e+00 0 2 0 0 -38 0 P 123 21 1.3374834862437199e+00 3.1096751409274764e-01 8.6400823781376843e+00 8.7485190959270938e+00 0 2 0 0 -76 0 V -39 0 0 0 0 0 1 1 0 P 65 21 3.0042310520469817e+00 -4.7632281363258699e-01 1.4827158758269738e+01 1.5135948086585298e+01 0 2 0 0 -39 0 P 124 21 3.0042310520469817e+00 -4.7632281363258699e-01 1.4827158758269738e+01 1.5135948086585298e+01 0 2 0 0 -76 0 V -40 0 0 0 0 0 1 1 0 P 66 21 4.6285704787524180e+00 -1.4753810632466775e+00 1.3406381045344753e+01 1.4259434304752219e+01 0 2 0 0 -40 0 P 125 21 4.6285704787524180e+00 -1.4753810632466775e+00 1.3406381045344753e+01 1.4259434304752219e+01 0 2 0 0 -76 0 V -41 0 0 0 0 0 1 1 0 P 67 21 3.2481859429200077e+00 -5.3594508978484423e-01 3.5244341149120872e+00 4.8228191848133566e+00 0 2 0 0 -41 0 P 126 21 3.2481859429200077e+00 -5.3594508978484423e-01 3.5244341149120872e+00 4.8228191848133566e+00 0 2 0 0 -76 0 V -42 0 0 0 0 0 1 1 0 P 68 21 -6.9249681610532765e-01 -3.5154771153504298e+00 2.5194147652801586e+00 4.3801349235360627e+00 0 2 0 0 -42 0 P 127 21 -6.9249681610532765e-01 -3.5154771153504298e+00 2.5194147652801586e+00 4.3801349235360627e+00 0 2 0 0 -76 0 V -43 0 0 0 0 0 1 1 0 P 69 21 1.4948011526274902e+00 8.2345576450419261e-02 6.4728725534627413e-02 1.4984662451209110e+00 0 2 0 0 -43 0 P 128 21 1.4948011526274902e+00 8.2345576450419261e-02 6.4728725534627413e-02 1.4984662451209110e+00 0 2 0 0 -76 0 V -44 0 0 0 0 0 1 1 0 P 70 21 1.5264049078308666e+00 8.3900927754416454e-01 -6.0570431810897785e-01 1.8441058080899801e+00 0 2 0 0 -44 0 P 129 21 1.5264049078308666e+00 8.3900927754416454e-01 -6.0570431810897785e-01 1.8441058080899801e+00 0 2 0 0 -76 0 V -45 0 0 0 0 0 1 1 0 P 71 21 2.5703756675852616e+00 5.5287325798374187e+00 -5.4932764351144696e+00 8.2066924521669531e+00 0 2 0 0 -45 0 P 130 21 2.5703756675852616e+00 5.5287325798374187e+00 -5.4932764351144696e+00 8.2066924521669531e+00 0 2 0 0 -76 0 V -46 0 0 0 0 0 1 1 0 P 72 21 6.9249681610532765e-01 3.5154771153504298e+00 -3.1711546612856099e+00 4.7848043925182608e+00 0 2 0 0 -46 0 P 131 21 6.9249681610532765e-01 3.5154771153504298e+00 -3.1711546612856099e+00 4.7848043925182608e+00 0 2 0 0 -76 0 V -47 0 0 0 0 0 1 1 0 P 73 21 1.4435134187901668e+00 1.6465181147982627e-01 -5.0612064141458957e+00 5.2656102757270613e+00 0 2 0 0 -47 0 P 132 21 1.4435134187901668e+00 1.6465181147982627e-01 -5.0612064141458957e+00 5.2656102757270613e+00 0 2 0 0 -76 0 V -48 0 0 0 0 0 1 1 0 P 74 21 -2.5703756675852616e+00 -5.5287325798374187e+00 -1.1977475381969786e+01 1.3440001173272359e+01 0 2 0 0 -48 0 P 133 21 -2.5703756675852616e+00 -5.5287325798374187e+00 -1.1977475381969786e+01 1.3440001173272359e+01 0 2 0 0 -76 0 V -49 0 0 0 0 0 1 1 0 P 75 21 -3.9568617289394536e+00 -2.0999880735007550e+00 -1.9502136315839216e+01 2.0009998139239443e+01 0 2 0 0 -49 0 P 134 21 -3.9568617289394536e+00 -2.0999880735007550e+00 -1.9502136315839216e+01 2.0009998139239443e+01 0 2 0 0 -76 0 V -50 0 0 0 0 0 1 1 0 P 76 21 -1.4948011526274902e+00 -8.2345576450419261e-02 -7.7341251491312057e+00 7.8776838666121414e+00 0 2 0 0 -50 0 P 135 21 -1.4948011526274902e+00 -8.2345576450419261e-02 -7.7341251491312057e+00 7.8776838666121414e+00 0 2 0 0 -76 0 V -51 0 0 0 0 0 1 1 0 P 77 21 -2.0072565407205425e+00 2.0297368986547184e+00 -2.6925177084382177e+01 2.7076079327025266e+01 0 2 0 0 -51 0 P 136 21 -2.0072565407205425e+00 2.0297368986547184e+00 -2.6925177084382177e+01 2.7076079327025266e+01 0 2 0 0 -76 0 V -52 0 0 0 0 0 1 1 0 P 78 21 -1.4275972049480157e-01 6.9499021381042736e-01 -9.5352370581007637e+00 9.5615970156279921e+00 0 2 0 0 -52 0 P 137 21 -1.4275972049480157e-01 6.9499021381042736e-01 -9.5352370581007637e+00 9.5615970156279921e+00 0 2 0 0 -76 0 V -53 0 0 0 0 0 1 1 0 P 79 21 1.4275972049480157e-01 -6.9499021381042736e-01 -1.0999919896115840e+01 1.1022777755904050e+01 0 2 0 0 -53 0 P 138 21 1.4275972049480157e-01 -6.9499021381042736e-01 -1.0999919896115840e+01 1.1022777755904050e+01 0 2 0 0 -76 0 V -54 0 0 0 0 0 1 1 0 P 80 21 2.0072565407205425e+00 -2.0297368986547184e+00 -4.0078383752327014e+01 4.0179917308237656e+01 0 2 0 0 -54 0 P 139 21 2.0072565407205425e+00 -2.0297368986547184e+00 -4.0078383752327014e+01 4.0179917308237656e+01 0 2 0 0 -76 0 V -55 0 0 0 0 0 1 1 0 P 81 21 2.4928442751453166e+00 4.3498153346216428e-01 -4.0726417849447301e+01 4.0804957938495143e+01 0 2 0 0 -55 0 P 140 21 2.4928442751453166e+00 4.3498153346216428e-01 -4.0726417849447301e+01 4.0804957938495143e+01 0 2 0 0 -76 0 V -56 0 0 0 0 0 1 1 0 P 82 21 3.9568617289394536e+00 2.0999880735007550e+00 -8.5568817739849464e+01 8.5685992286057868e+01 0 2 0 0 -56 0 P 141 21 3.9568617289394536e+00 2.0999880735007550e+00 -8.5568817739849464e+01 8.5685992286057868e+01 0 2 0 0 -76 0 V -57 0 0 0 0 0 1 1 0 P 83 21 -1.4435134187901668e+00 -1.6465181147982627e-01 -6.5338668751881158e+01 6.5354819833561649e+01 0 2 0 0 -57 0 P 142 21 -1.4435134187901668e+00 -1.6465181147982627e-01 -6.5338668751881158e+01 6.5354819833561649e+01 0 2 0 0 -76 0 V -58 0 0 0 0 0 1 1 0 P 84 21 -1.3374834862437199e+00 -3.1096751409274764e-01 -1.1251921349128257e+02 1.1252759202776723e+02 0 2 0 0 -58 0 P 143 21 -1.3374834862437199e+00 -3.1096751409274764e-01 -1.1251921349128257e+02 1.1252759202776723e+02 0 2 0 0 -76 0 V -59 0 0 0 0 0 1 1 0 P 85 21 -1.6112676301715823e+00 -9.6344862997986447e-01 -1.1260560262458030e+02 1.1262125092132273e+02 0 2 0 0 -59 0 P 144 21 -1.6112676301715823e+00 -9.6344862997986447e-01 -1.1260560262458030e+02 1.1262125092132273e+02 0 2 0 0 -76 0 V -60 0 0 0 0 0 1 1 0 P 86 21 -7.1314008256886297e-01 -4.3297413611374047e+00 -9.9178898493963663e+02 9.9179869221360968e+02 0 2 0 0 -60 0 P 145 21 -7.1314008256886297e-01 -4.3297413611374047e+00 -9.9178898493963663e+02 9.9179869221360968e+02 0 2 0 0 -76 0 V -61 0 0 0 0 0 0 1 0 P 147 21 2.9373533421229547e-01 6.5040265602641956e-01 -5.9115115667457863e+00 5.9544330599394808e+00 0 2 0 0 -76 0 V -62 0 0 0 0 0 0 1 0 P 148 21 -3.5976924665676219e-01 -6.2989849636693107e-01 -1.0339592165842298e+01 1.0365007099974061e+01 0 2 0 0 -76 0 V -63 0 0 0 0 0 0 1 0 P 149 2 9.0296645606868731e-01 -7.2955921000395274e-02 -7.0273570635001681e+02 7.0273636774415218e+02 3.3000000000000002e-01 2 0 0 -76 0 V -64 0 0 0 0 0 0 2 0 P 150 2112 1.0729560917388572e+00 -9.2340828196501759e-02 -3.4171895302528651e+03 3.4171898291173679e+03 9.3957000000000002e-01 1 0 0 0 0 P 151 111 1.0283269738067269e-01 -2.0003559307293953e-01 -8.3770812320990296e+02 8.3770816427933937e+02 1.3497999999999999e-01 2 0 0 -78 0 V -65 0 0 0 0 0 0 1 0 P 152 92 -1.4525700787867823e+00 -1.9932337851951327e+00 1.1230996976072688e+03 1.1236129480966715e+03 3.3868029529315258e+01 2 0 0 -66 0 V -66 0 0 0 0 0 0 12 0 P 153 -211 -4.7749476569193694e-01 -5.6117078687939470e-01 1.9513199589849202e+00 2.0904648455649637e+00 1.3957000000000000e-01 1 0 0 0 0 P 154 213 4.2969563388790682e-01 -7.9895319319420144e-01 3.4757249575791689e+00 3.6374547856200028e+00 5.7223141646855125e-01 2 0 0 -79 0 P 155 111 8.6601683168804983e-02 3.5105725213874767e-01 1.1286789145475711e+00 1.1928439706647143e+00 1.3497999999999999e-01 2 0 0 -80 0 P 156 -213 4.7396001029680096e-01 -5.4814311391117398e-01 9.7744062826654101e+00 9.8340061279888911e+00 8.0222152927058221e-01 2 0 0 -81 0 P 157 223 -2.9195874324928350e-01 -5.3463713217276654e-01 1.2296202037406346e+01 1.2336196983052583e+01 7.8364193934607707e-01 2 0 0 -82 0 P 158 -313 -3.0195792811093419e-01 1.0551027629614489e-01 3.3835741571841716e+01 3.3849482152555140e+01 9.0979298246251872e-01 2 0 0 -83 0 P 159 323 -4.6924184033817406e-03 -8.6511333263139145e-01 3.4085827777686217e+02 3.4086083655891912e+02 9.9796169293859438e-01 2 0 0 -84 0 P 160 111 -1.7606676087093531e-01 -3.2784692408421545e-01 2.3033721680021181e+01 2.3037123022265451e+01 1.3497999999999999e-01 2 0 0 -85 0 P 161 -323 -1.2588171655574582e-01 1.0181682134936181e+00 2.3026550900845322e+02 2.3026956042452258e+02 9.0183505324898583e-01 2 0 0 -86 0 P 162 323 -1.3815621358083338e-01 -5.5463358434275944e-01 1.3621459616638785e+02 1.3621866917266453e+02 8.8482588539920359e-01 2 0 0 -87 0 P 163 221 -7.1734373614667069e-01 1.0457723045419745e+00 3.0886663547793182e+02 3.0886972404997687e+02 5.4744999999999999e-01 2 0 0 -88 0 P 164 223 -2.0927512353057365e-01 -3.2324376444971425e-01 2.1398883774587521e+01 2.1416586002876684e+01 7.8079870115422489e-01 2 0 0 -89 0 V -67 0 0 0 0 0 0 1 0 P 165 92 -1.8361639912921774e+01 -2.5783463735237465e+01 -8.1164164060208861e+01 9.0762835715341623e+01 2.5462403598629209e+01 2 0 0 -68 0 V -68 0 0 0 0 0 0 9 0 P 166 421 -1.1350746970384497e+01 -1.5371619893225423e+01 -3.3158574297105559e+01 3.8315709109895984e+01 1.8645000000000000e+00 2 0 0 -90 0 P 167 213 -4.8805282587503651e+00 -6.3718247579254941e+00 -1.3768839881213596e+01 1.5946141603119244e+01 5.2799007761436401e-01 2 0 0 -91 0 P 168 111 -6.1773905801439766e-01 -7.2940948027836616e-01 -2.4399784826894453e+00 2.6239958708244870e+00 1.3497999999999999e-01 2 0 0 -92 0 P 169 113 -9.9650308399162169e-01 -8.5513305643059001e-01 -2.2678830332605515e+00 2.7331958428332110e+00 7.7639881641108421e-01 2 0 0 -93 0 P 170 -211 -1.9325205912195760e+00 -3.2250041057474079e+00 -6.2072914826300769e+00 7.2584595233980052e+00 1.3957000000000000e-01 1 0 0 0 0 P 171 113 -6.0760971855175883e-01 -4.1664990052371298e-01 -1.6572579850690152e+00 1.9616679251789777e+00 7.4756291368420302e-01 2 0 0 -94 0 P 172 223 1.5753120903255949e-01 8.8881870321457376e-02 -9.1755134222987724e+00 9.2105011665107348e+00 7.8138921596063349e-01 2 0 0 -95 0 P 173 211 1.0682081353599355e+00 2.8719194445514040e-01 -6.0046591390126594e+00 6.1072873678939761e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 221 7.9826842359795191e-01 8.1010364411693880e-01 -6.4841663369291558e+00 6.6058773056869873e+00 5.4744999999999999e-01 2 0 0 -96 0 V -69 0 0 0 0 0 0 1 0 P 175 92 1.3686807855519403e+01 2.8757431021636268e+01 -1.2769809457700185e+02 1.3355987143256345e+02 2.2740214384387272e+01 2 0 0 -70 0 V -70 0 0 0 0 0 0 11 0 P 176 3214 2.2521186680699947e+00 -4.1096634421305588e-02 -5.0146267558781377e+00 5.6725192405866469e+00 1.3990230897403682e+00 2 0 0 -97 0 P 177 -3224 1.3859590083062732e+00 -4.4753269551879260e-01 -6.4385277548502566e+00 6.7475270716389497e+00 1.3976101195468615e+00 2 0 0 -98 0 P 178 213 1.6838923232094327e+00 2.8050157732993211e+00 -8.6825489634736446e+00 9.3220811443062370e+00 9.0051846915594769e-01 2 0 0 -99 0 P 179 311 1.2038704499687234e+00 4.7920284879663627e-01 -8.8659582504166998e+00 8.9739528947746692e+00 4.9767000000000000e-01 2 0 0 -100 0 P 180 -313 8.8546078292008201e-01 7.8089714328149218e-01 -4.1115992595870416e+00 4.3666664731011755e+00 8.7674766574796748e-01 2 0 0 -101 0 P 181 2112 1.6007413460111168e+00 1.4683195407459964e+00 -7.9899654936222033e+00 8.3331071938826948e+00 9.3957000000000002e-01 1 0 0 0 0 P 182 -3122 2.1109405184170216e+00 5.6100827023384543e+00 -1.9362091757034509e+01 2.0299370356481393e+01 1.1156800000000000e+00 2 0 0 -102 0 P 183 -313 5.3033776522827980e-01 3.1519019767850485e+00 -1.3311247703070570e+01 1.3717970353749360e+01 8.8184522301591173e-01 2 0 0 -103 0 P 184 -211 7.5339911313328423e-01 4.3633767741589500e+00 -1.2647102176254014e+01 1.3400572388463441e+01 1.3957000000000000e-01 1 0 0 0 0 P 185 2214 1.2165603791682925e-01 6.2088518930146188e+00 -2.3755240546504190e+01 2.4578833312676252e+01 1.1148773785014550e+00 2 0 0 -104 0 P 186 -3214 1.1584318423383622e+00 4.3784116991558450e+00 -1.7519185916310555e+01 1.8147271002902610e+01 1.3744512875644201e+00 2 0 0 -105 0 V -71 0 0 0 0 0 3 1 0 P 32 1 -1.8007720494727386e+00 -1.0516349170167765e+00 7.2468084835104225e+00 7.5408851714854910e+00 0 2 0 0 -71 0 P 33 21 -1.5264049078308666e+00 -8.3900927754416454e-01 2.3541171034292780e+00 2.9284323190255894e+00 0 2 0 0 -71 0 P 34 -1 1.8007720494727386e+00 1.0516349170167765e+00 8.8808617387904587e-01 2.2665862050860217e+00 0 2 0 0 -71 0 P 187 92 -1.5264049078308664e+00 -8.3900927754416466e-01 1.0489011760818746e+01 1.2735903695597102e+01 7.0107080037949530e+00 2 0 0 -72 0 V -72 0 0 0 0 0 0 6 0 P 188 1114 -1.1210002925687170e+00 -7.7687992525339700e-01 3.9048193942661187e+00 4.2826401472679514e+00 1.1104990116850939e+00 2 0 0 -106 0 P 189 -2114 -7.6801983227901405e-01 -1.7904225764739490e-01 2.1190105484321999e+00 2.5982807824421714e+00 1.2802135475161980e+00 2 0 0 -107 0 P 190 211 1.1368328665070107e-01 -6.1282765883414581e-02 1.9891081908421282e+00 1.9981768307217636e+00 1.3957000000000000e-01 1 0 0 0 0 P 191 313 -4.1209193037656033e-01 -2.0558069763675990e-01 5.9073208466182436e-01 1.0669958783853926e+00 7.5988987775875372e-01 2 0 0 -108 0 P 192 -323 -8.3329271939491231e-02 2.3148816795713928e-01 9.7152729662670323e-01 1.3724089521961829e+00 9.3760892941103957e-01 2 0 0 -109 0 P 193 213 7.4435313268221492e-01 1.5228820091966266e-01 9.1381424598977457e-01 1.4174011045836428e+00 7.7247403375640789e-01 2 0 0 -110 0 V -73 0 0 0 0 0 4 1 0 P 90 21 -2.2633464550032562e-01 2.3389388935787738e+00 2.1515985397777749e+02 2.1517268559521716e+02 0 2 0 0 -73 0 P 91 21 1.6112676301715823e+00 9.6344862997986447e-01 2.4328311543040638e+01 2.4400638499307618e+01 0 2 0 0 -73 0 P 92 21 3.2949299919811498e-01 -4.7356543404732721e-01 -2.0910078686043157e-01 6.1363914144279785e-01 0 2 0 0 -73 0 P 93 21 2.2633464550032562e-01 -2.3389388935787738e+00 -2.1781471529948777e+00 3.2040891903548734e+00 0 2 0 0 -73 0 P 194 92 1.9407606293696973e+00 4.8988319593253715e-01 2.3710091758096280e+02 2.4339105242632246e+02 5.4939537184910513e+01 2 0 0 -74 0 V -74 0 0 0 0 0 0 17 0 P 195 -311 -4.8700872009968915e-01 -9.7638529556277887e-02 4.1645079444766324e+00 4.2234479545054224e+00 4.9767000000000000e-01 2 0 0 -111 0 P 196 313 3.5317625309501827e-01 -4.5510347762721372e-02 2.3246447853293009e+00 2.4855622612908372e+00 8.0451334314030498e-01 2 0 0 -112 0 P 197 223 -1.9564309549310305e-01 4.2889457958961674e-01 4.2821838998612790e+01 4.2831692092477560e+01 7.8849572001003909e-01 2 0 0 -113 0 P 198 213 1.7219359795675188e-01 4.4902575267944023e-01 4.3817428902178065e+01 4.3822586992281074e+01 4.6987268154881628e-01 2 0 0 -114 0 P 199 221 4.0204367077910586e-01 1.3979269264785963e-02 1.0728809875913658e+01 1.0750297548867433e+01 5.4744999999999999e-01 2 0 0 -115 0 P 200 -211 2.6546490690763605e-02 4.2450658079056333e-02 2.1420360238468195e+01 2.1420873448699250e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -311 1.3358205847204765e-01 1.7876280271132328e+00 7.8110660440460279e+01 7.8132812620585028e+01 4.9767000000000000e-01 2 0 0 -116 0 P 202 321 -5.1423675526780302e-02 -5.0093943662020979e-01 8.0139541919440376e+00 8.0449168711766976e+00 4.9359999999999998e-01 1 0 0 0 0 P 203 -2114 1.4799792162321801e-01 -2.3671704653429546e-01 7.0112805046450166e+00 7.1247707266735096e+00 1.2354615525882535e+00 2 0 0 -117 0 P 204 311 -4.0288393607077729e-03 7.4292337295512323e-01 3.8468666573260211e+00 3.9494315892006897e+00 4.9767000000000000e-01 2 0 0 -118 0 P 205 3112 4.9090971744795087e-01 -2.2460428058775903e-01 1.0983938587093650e+01 1.1062197289516583e+01 1.1974400000000001e+00 2 0 0 -119 0 P 206 213 5.2866776258477899e-01 -1.0496369731193740e+00 -1.0585753444565973e+00 1.7714223363125632e+00 7.9757630052557227e-01 2 0 0 -120 0 P 207 223 -1.1415603671333474e-01 2.9438915868798238e-01 9.6307323105796672e-01 1.2814965128073936e+00 7.8423637156533632e-01 2 0 0 -121 0 P 208 -211 1.0455954492923598e-01 -4.0768498132734154e-01 -1.0737080602190201e-01 4.5623241590386321e-01 1.3957000000000000e-01 1 0 0 0 0 P 209 211 2.4955239007621222e-01 -4.2903008144787114e-01 1.3802907466963188e-01 5.3373684202429927e-01 1.3957000000000000e-01 1 0 0 0 0 P 210 113 2.5968591177968314e-01 -2.4091307541578313e-01 -4.8471327544434839e-01 9.9276051232384788e-01 7.9066465252620766e-01 2 0 0 -122 0 P 211 -213 -7.5894322871454908e-02 -3.6732870065067418e-02 4.4061835747103482e+00 4.5068144116763040e+00 9.4329910169502285e-01 2 0 0 -123 0 V -75 0 0 0 -5.8363673970008856e-03 5.8364386511535228e-03 0 2 0 P 212 22 2.9009226686589219e-02 5.2626868712937022e-02 -7.4409386848054790e+00 7.4411813332009435e+00 0 1 0 0 0 0 P 213 22 -2.9009226686589219e-02 -5.2626868712937022e-02 -1.9875200814756614e+01 1.9875291659481260e+01 0 1 0 0 0 0 V -76 0 0 0 0 0 0 1 0 P 214 92 2.8271297587197020e+00 -2.8183479479477827e+00 3.1247982597783048e+03 8.1083811203701107e+03 7.4820762020386492e+03 2 0 0 -77 0 V -77 0 0 0 0 0 0 118 0 P 215 2112 6.1117587698231646e-01 -1.1089771557717547e-01 2.2959042260930119e+03 2.2959045023732569e+03 9.3957000000000002e-01 1 0 0 0 0 P 216 221 -9.0512901667395640e-01 5.0556742387838549e-01 8.9610827695165040e+02 8.9610904391135080e+02 5.4744999999999999e-01 2 0 0 -124 0 P 217 111 3.9706790573094203e-01 -4.5056454063961543e-01 7.4417741824813675e+01 7.4420287484207321e+01 1.3497999999999999e-01 2 0 0 -125 0 P 218 223 -2.2543893322176303e-01 -7.3840920238902388e-02 1.0187947082115384e+02 1.0188272851052297e+02 7.7943489559819656e-01 2 0 0 -126 0 P 219 223 9.3231533083518336e-02 2.2775137147675939e-01 1.0333922910951346e+01 1.0366063671133505e+01 7.7765705715182509e-01 2 0 0 -127 0 P 220 -2114 -3.1481525994095975e-02 3.6583635382795587e-01 9.9625456733040796e+00 1.0041145158000774e+01 1.1989380580795206e+00 2 0 0 -128 0 P 221 2114 -5.4917124276243658e-02 1.6199861017060643e-01 4.7752007826370670e+00 4.9273233985525620e+00 1.2027942131511635e+00 2 0 0 -129 0 P 222 221 5.9160079588065850e-01 2.3158600644632563e-01 2.6207131115053279e+00 2.7516290257562566e+00 5.4744999999999999e-01 2 0 0 -130 0 P 223 -311 -1.4175844364771187e-01 -2.5017064465786193e-01 7.6346655636342775e-01 9.5563456372160527e-01 4.9767000000000000e-01 2 0 0 -131 0 P 224 321 1.6070118179758858e-02 -5.2890205727405615e-01 9.6038101646654876e+00 9.6310334997766045e+00 4.9359999999999998e-01 1 0 0 0 0 P 225 -2212 3.4512019887811846e-01 3.7996665929241266e-02 2.4867154253875579e+00 2.6804208434601895e+00 9.3827000000000005e-01 1 0 0 0 0 P 226 -211 -1.0244724122079400e-01 -8.8695759736989155e-01 3.9101021041819690e+00 4.0131742382799906e+00 1.3957000000000000e-01 1 0 0 0 0 P 227 2214 -8.1236830120913539e-01 -1.1587541779507557e+00 7.0819010181701909e+00 7.3049853344720308e+00 1.0985605144750641e+00 2 0 0 -132 0 P 228 113 1.1733141973530419e+00 -4.3808083830464070e-02 2.8269955934054898e+00 3.1567731346426471e+00 7.7118557075998040e-01 2 0 0 -133 0 P 229 213 9.9941274500409072e-02 3.1742456137155983e-02 1.3615986955186021e-01 4.5885328450761803e-01 4.2545385737664204e-01 2 0 0 -134 0 P 230 -213 -3.2836984303803163e-02 -4.1511349644895662e-01 1.9957017691932306e+00 2.1769911445882575e+00 7.6358850802147038e-01 2 0 0 -135 0 P 231 211 8.2408345015504425e-01 -3.9998641667210488e-01 9.1269729601827776e-01 1.3006147797871235e+00 1.3957000000000000e-01 1 0 0 0 0 P 232 -321 -3.2711969266684016e-01 -7.2655304430770586e-03 9.0843034493028302e-02 5.9912728044962926e-01 4.9359999999999998e-01 1 0 0 0 0 P 233 221 -5.0322304813432073e-01 -8.9363129443536374e-02 -7.3302081711238487e-01 1.0479695729827501e+00 5.4744999999999999e-01 2 0 0 -136 0 P 234 323 -1.2038829932393689e+00 -3.6941743621333645e-01 3.4519378045993265e-01 1.5873503254235111e+00 9.0261775185539606e-01 2 0 0 -137 0 P 235 -321 1.6261259971804298e-01 6.8918079768493026e-02 2.0322485144717020e-01 5.6225782302406535e-01 4.9359999999999998e-01 1 0 0 0 0 P 236 323 -5.4771556262322763e-01 7.4612038437744943e-02 7.9725651954413457e-01 1.3127622478705145e+00 8.8440232228262783e-01 2 0 0 -138 0 P 237 -323 -1.7809457603112848e+00 7.3467934709352289e-01 3.9629496532342312e-01 2.1522583078266515e+00 8.7386759858209795e-01 2 0 0 -139 0 P 238 323 -3.1284136743785038e+00 -3.7748367790462423e-02 4.7833029969225893e-01 3.2776770685646963e+00 8.5203875081003222e-01 2 0 0 -140 0 P 239 223 -5.1333460376763640e-01 6.1783250768096598e-01 8.4184805853985178e-01 1.3994957632114540e+00 7.7759296203532180e-01 2 0 0 -141 0 P 240 221 1.1359798394864420e-01 4.9990550247208415e-01 1.9727983464421517e-01 7.7551972832179594e-01 5.4744999999999999e-01 2 0 0 -142 0 P 241 -211 -7.1130695311963654e-01 1.8047022987756547e-01 9.2824567812382597e-01 1.1914893659970129e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 223 -1.1989674717770584e+00 1.7439232116112482e+00 1.9119446053970111e+00 2.9574132700328715e+00 7.8228505628308365e-01 2 0 0 -143 0 P 243 -311 7.4815687985404486e-02 5.2721467856986681e-01 7.9930348338199797e-01 1.0817181665826148e+00 4.9767000000000000e-01 2 0 0 -144 0 P 244 311 1.8222581990086587e-01 1.2137911543078275e+00 9.9390667406202471e-01 1.6559049252174796e+00 4.9767000000000000e-01 2 0 0 -145 0 P 245 -311 2.8516209280859527e-02 3.0895071482051284e+00 4.1184268025104682e+00 5.1725218558783235e+00 4.9767000000000000e-01 2 0 0 -146 0 P 246 333 6.6112792457864639e-02 1.2301436922024289e+00 6.9084458601742762e+00 7.0909667174220958e+00 1.0186070782381160e+00 2 0 0 -147 0 P 247 321 -8.6540224947411815e-02 1.3788456284569135e+00 2.9628810916554751e+00 3.3062077673579786e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 -213 -8.3535923931974487e-01 4.9014462490100580e-01 9.1857711400309778e+00 9.2667549560674516e+00 7.4584795148774363e-01 2 0 0 -148 0 P 249 211 -9.9124836580544318e-01 5.5363818900390638e-01 9.1880258249591638e+00 9.2589625181254522e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -213 -9.5669658915211542e-01 4.6724416476210440e-01 2.4459724645602485e+01 2.4493278686779362e+01 7.1343227873917348e-01 2 0 0 -149 0 P 251 211 -1.0853035169125507e+00 3.5223801840311492e-01 7.2095954675051788e+00 7.3006644858808931e+00 1.3957000000000000e-01 1 0 0 0 0 P 252 111 -8.7917087192368937e-01 7.7012557831098016e-01 1.7733937393954346e+01 1.7772922942540998e+01 1.3497999999999999e-01 2 0 0 -150 0 P 253 -2212 -2.0532233037307059e+00 -1.2761985446166113e-02 1.3455928599907480e+02 1.3457822144751714e+02 9.3827000000000005e-01 1 0 0 0 0 P 254 2112 -3.1305885304287495e-01 -1.7004011047646450e-01 3.9569406329227164e+01 3.9582163009580746e+01 9.3957000000000002e-01 1 0 0 0 0 P 255 213 -1.3214691573457629e+00 8.3483749860391943e-01 1.0056411978768404e+02 1.0057804126814382e+02 5.9746320546558040e-01 2 0 0 -151 0 P 256 113 -7.5076801548335126e-01 5.0198535377259113e-01 1.2688616779376801e+02 1.2689133038722362e+02 7.0321272941803525e-01 2 0 0 -152 0 P 257 -211 -4.6081997786423501e-01 7.0885500389622613e-01 5.2604762170361084e+01 5.2611741211004414e+01 1.3957000000000000e-01 1 0 0 0 0 P 258 -313 -5.5232933412195839e-01 2.0729424773704417e-03 1.3901443167766791e+02 1.3901844533308685e+02 9.0047552605932268e-01 2 0 0 -153 0 P 259 321 -1.3725130087583304e+00 1.1860991059467481e+00 1.9589843119676169e+02 1.9590745164327137e+02 4.9359999999999998e-01 1 0 0 0 0 P 260 221 -6.8884169314773869e-01 3.3501551557651821e-01 1.0525842699314508e+02 1.0526263768710932e+02 5.4744999999999999e-01 2 0 0 -154 0 P 261 -213 -2.5067203893459333e-01 1.3670731017025564e-01 7.4515678539434390e+01 7.4520675061482990e+01 8.1433289694805266e-01 2 0 0 -155 0 P 262 223 -8.7058247220559826e-01 1.0041013247267967e+00 1.3719512661418131e+02 1.3720379180251135e+02 7.8203899801139110e-01 2 0 0 -156 0 P 263 -2112 -3.3683300354699047e-01 6.7445913996687534e-02 2.0805448492251003e+02 2.0805689004111218e+02 9.3957000000000002e-01 1 0 0 0 0 P 264 2112 8.9799179732080647e-01 -5.9154803521193211e-01 1.8710250435109160e+02 1.8710795345089201e+02 9.3957000000000002e-01 1 0 0 0 0 P 265 223 1.1822379977176338e+00 -2.6730237963755626e-01 9.1851524008275206e+01 9.1862905885577050e+01 7.8859232447681504e-01 2 0 0 -157 0 P 266 213 4.4462269293299600e-01 -1.4484434545128628e+00 1.0713928441753157e+02 1.0715241184321832e+02 7.1931949643858895e-01 2 0 0 -158 0 P 267 223 3.6507096407244749e-01 -3.0987107112827994e-01 3.5945902906752437e+01 3.5957572866511057e+01 7.8090574287049008e-01 2 0 0 -159 0 P 268 223 2.7023895641395566e+00 -9.6690264732790243e-01 1.4729372255782840e+02 1.4732374564349925e+02 7.7943274382933381e-01 2 0 0 -160 0 P 269 -321 1.2951346461287910e-01 -1.1730325948610278e+00 1.8444285972040785e+01 1.8488593921240817e+01 4.9359999999999998e-01 1 0 0 0 0 P 270 321 -1.0396121036798894e-01 -1.1635402495551925e+00 3.1090297516391150e+01 3.1116151344009655e+01 4.9359999999999998e-01 1 0 0 0 0 P 271 -321 2.2106694776874317e-01 -9.0682738971454846e-01 1.2946875637432834e+01 1.2989858976959070e+01 4.9359999999999998e-01 1 0 0 0 0 P 272 323 2.7094949137194919e+00 -1.2852944268417266e+00 3.8359407813749428e+01 3.8486699023020876e+01 8.8796926518494956e-01 2 0 0 -161 0 P 273 111 6.0414772807230559e-02 -2.6720091223104375e-01 9.7694740812205616e+00 9.7742462469650722e+00 1.3497999999999999e-01 2 0 0 -162 0 P 274 -321 -5.4770066188450761e-02 -9.8579539795681204e-01 1.7091420987109068e+01 1.7127028482646235e+01 4.9359999999999998e-01 1 0 0 0 0 P 275 321 9.8242182276319412e-01 -2.6091336197944859e-01 6.2474845101143632e+00 6.3488528164086215e+00 4.9359999999999998e-01 1 0 0 0 0 P 276 -323 6.1953004522367250e-01 -4.0832140568259685e-02 7.4053010303791638e+00 7.4806590860891271e+00 8.5807474681107032e-01 2 0 0 -163 0 P 277 323 1.4330446847215377e+00 -1.5495527652351400e+00 1.6541691668961917e+01 1.6704850662225429e+01 9.8475455601520889e-01 2 0 0 -164 0 P 278 -213 4.4985117549155723e-01 -5.8857985313915964e-02 3.4988939774160910e+00 3.5906134172266988e+00 6.6664481115767260e-01 2 0 0 -165 0 P 279 -311 3.0825165723400555e-01 -5.0069105196510533e-01 4.7421307871868770e+00 4.8042887554133404e+00 4.9767000000000000e-01 2 0 0 -166 0 P 280 323 2.3971375603159579e+00 -1.8288593507141432e-01 1.1313180426320104e+01 1.1600048085271684e+01 8.9070111362817483e-01 2 0 0 -167 0 P 281 -211 1.2824257916609834e+00 -4.9088098844722344e-01 7.0302354781226848e+00 7.1644448995502170e+00 1.3957000000000000e-01 1 0 0 0 0 P 282 213 2.5024332777179259e+00 -1.5904509735284822e-01 4.0252904732344845e+00 4.8065417510887691e+00 7.8256792588575197e-01 2 0 0 -168 0 P 283 -321 2.3660852114094970e+00 -9.4324029441121704e-01 7.7320374046454523e+00 8.1557406081537476e+00 4.9359999999999998e-01 1 0 0 0 0 P 284 313 1.0553638717797129e+00 2.7217286084964282e-01 2.8678518541204840e+00 3.1901620699200888e+00 8.7446486901051834e-01 2 0 0 -169 0 P 285 211 4.4490845699530435e-01 -2.3229527037188173e+00 2.7873191392966135e+00 3.6582346245162736e+00 1.3957000000000000e-01 1 0 0 0 0 P 286 -213 7.1595310821963121e-01 -4.1907597350766629e-01 -3.9074231666365034e-01 1.1276934479535912e+00 6.5635312887578534e-01 2 0 0 -170 0 P 287 -2112 2.9808210912066346e-01 -8.4581118068363159e-01 4.2053064153381647e-01 1.3652425800992676e+00 9.3957000000000002e-01 1 0 0 0 0 P 288 2212 6.1438523922172794e-01 1.5730437334418237e-01 4.4875969385675868e-01 1.2181747591282450e+00 9.3827000000000005e-01 1 0 0 0 0 P 289 -2214 1.0873057912638491e+00 1.9731408674990818e+00 -2.0612211974198207e+00 3.3066209080594824e+00 1.2686962750053232e+00 2 0 0 -171 0 P 290 223 5.7027883550947278e-01 1.9695828831945497e+00 -1.8651023399811506e+00 2.8793056228134244e+00 7.7930702996883228e-01 2 0 0 -172 0 P 291 2212 1.0739509039415018e+00 8.8802668912099758e-01 -1.1764360094701345e+00 2.0509300870448959e+00 9.3827000000000005e-01 1 0 0 0 0 P 292 221 5.2781104977257731e-01 3.3391516234927088e-01 -7.5219963104555954e-01 1.1205309577846772e+00 5.4744999999999999e-01 2 0 0 -173 0 P 293 -211 3.8502175765159297e-01 1.4960078226940727e+00 -1.4295773377203587e+00 2.1093724917260608e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 -2112 1.1270477980922420e+00 2.7124239315691895e-01 -2.5488122600505005e+00 2.9534801331503493e+00 9.3957000000000002e-01 1 0 0 0 0 P 295 2212 -7.6626744230088556e-02 1.2409649049728120e+00 -1.5981098106415319e+00 2.2316296989138222e+00 9.3827000000000005e-01 1 0 0 0 0 P 296 -211 -7.8159963050896050e-02 6.3109436095166571e-01 -4.7902504113113314e-01 8.0829069472547599e-01 1.3957000000000000e-01 1 0 0 0 0 P 297 111 6.2334672711313777e-01 5.5533099748989989e-01 -1.5776128550484509e+00 1.7899820054374604e+00 1.3497999999999999e-01 2 0 0 -174 0 P 298 331 7.5290161762094091e-02 -1.3911614144711171e+00 -3.6114386727637884e+00 3.9876135778028581e+00 9.5790086604637492e-01 2 0 0 -175 0 P 299 213 -1.4547510727591730e+00 -9.5357225734930051e-01 -4.0126625483607397e+00 4.4180595380237602e+00 6.2624964736565747e-01 2 0 0 -176 0 P 300 -211 -1.4097617286181097e+00 -3.5155345912980209e+00 -9.7628081231464847e+00 1.0472741466701269e+01 1.3957000000000000e-01 1 0 0 0 0 P 301 213 -1.1741820500128131e+00 -1.1868856268407577e-01 -6.6985817729021502e+00 6.8369705975217778e+00 6.9309358793461495e-01 2 0 0 -177 0 P 302 -2114 -1.0556924957431952e+00 -4.7413731289710009e-01 -8.4280492568814580e+00 8.5851033852775718e+00 1.1544232423312235e+00 2 0 0 -178 0 P 303 -211 -9.0763743079253456e-01 3.1167177271629815e-01 -3.2964300222536700e+00 3.4361134550825185e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 2112 -1.7696878439215371e+00 4.1208440976224869e-01 -1.6671190928751070e+01 1.6796220032896233e+01 9.3957000000000002e-01 1 0 0 0 0 P 305 213 -6.0291856096048757e-01 -4.0993538440169058e-01 -4.8736532983122185e+00 4.9917634587896362e+00 7.9602019184357109e-01 2 0 0 -179 0 P 306 -213 -8.6179653923823907e-01 7.7990408649897158e-01 -1.7660023342573123e+01 1.7725332800023068e+01 9.7982383731224176e-01 2 0 0 -180 0 P 307 331 3.6127753331792517e-01 -1.0556119896921927e+00 -1.7187866608278835e+01 1.7250635241456955e+01 9.5750695086138637e-01 2 0 0 -181 0 P 308 211 5.8582770447598909e-01 2.3510682452920068e-01 -7.2407453667554371e+00 7.2695489935320019e+00 1.3957000000000000e-01 1 0 0 0 0 P 309 -2224 2.2215584036924665e+00 1.1450175341470710e+00 -4.3564274350285231e+01 4.3653172821713966e+01 1.2276444277502359e+00 2 0 0 -182 0 P 310 223 1.3598066335670236e+00 -5.8586328117110953e-01 -3.5695374539134484e+01 3.5734702452391630e+01 7.8542091069467379e-01 2 0 0 -183 0 P 311 3222 8.4148794878215993e-01 -4.9177723067266793e-01 -2.2793437058843541e+01 2.2845247224858735e+01 1.1893700000000000e+00 2 0 0 -184 0 P 312 311 4.9819860649910869e-01 -1.2004428937990931e-01 -2.2262207025129339e+01 2.2273664932865191e+01 4.9767000000000000e-01 2 0 0 -185 0 P 313 211 2.1180056596006144e-01 4.5378669085534612e-01 -6.2829354493867200e+00 6.3044063548123823e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 -213 1.1238347064548471e+00 4.8540105660620975e-01 -3.7761035181996562e+01 3.7790476849072192e+01 8.5190599897657293e-01 2 0 0 -186 0 P 315 -2112 -2.1806476530358146e-01 -2.4957028182557259e-01 -6.2575926418323256e+01 6.2583857315315292e+01 9.3957000000000002e-01 1 0 0 0 0 P 316 111 -5.6615253417015099e-01 4.7258428824988492e-02 -5.1680469654072795e+01 5.1683768489894206e+01 1.3497999999999999e-01 2 0 0 -187 0 P 317 2114 -1.0764056474343653e+00 -8.5212831557852076e-01 -7.1666022393862121e+01 7.1690137737844211e+01 1.2539183902824811e+00 2 0 0 -188 0 P 318 113 -4.0457946912644191e-02 -1.8308053385277384e-01 -8.6184805489478450e+01 8.6188724536305543e+01 8.0024034425871882e-01 2 0 0 -189 0 P 319 111 -8.0413864997520534e-01 -6.5674837206693970e-01 -1.7263404835265484e+02 1.7263722318092286e+02 1.3497999999999999e-01 2 0 0 -190 0 P 320 111 -7.5318518886929231e-01 -7.3742240482357990e-01 -1.5002903543416892e+02 1.5003279898955222e+02 1.3497999999999999e-01 2 0 0 -191 0 P 321 211 4.4437677212478871e-01 -5.9121665055758921e-01 -1.3694671149494232e+02 1.3694877975691264e+02 1.3957000000000000e-01 1 0 0 0 0 P 322 113 -1.2499800332416757e+00 -3.5552515734063500e-01 -2.8408130045062740e+02 2.8408627455006928e+02 1.0664303993750406e+00 2 0 0 -192 0 P 323 -211 4.4138175306203720e-01 -1.2395826249044541e+00 -2.1700130944971897e+02 2.1700534363377668e+02 1.3957000000000000e-01 1 0 0 0 0 P 324 111 -8.4744505105974408e-02 -4.1698500208031941e-01 -1.1073209468112022e+02 1.1073299449663627e+02 1.3497999999999999e-01 2 0 0 -193 0 P 325 223 -8.5257140590167771e-02 -3.7786696419357368e-01 -5.2257650423347371e+01 5.2265146658629398e+01 7.9591158843921983e-01 2 0 0 -194 0 P 326 111 -3.3525048532593288e-01 5.3155976881434397e-01 -1.3940822964904541e+01 1.3955633744654632e+01 1.3497999999999999e-01 2 0 0 -195 0 P 327 211 3.7056960053360749e-01 -3.3490582164858507e-01 -1.9337082427009221e+01 1.9344035781399459e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 -213 -1.4507205826629221e-01 -3.7837765702628723e-01 -4.9488290347473267e+01 4.9496983513092211e+01 8.3443383565156204e-01 2 0 0 -196 0 P 329 111 1.3766470501284880e-01 1.7892874323578220e-01 -2.9415185245385853e+01 2.9416361258437927e+01 1.3497999999999999e-01 2 0 0 -197 0 P 330 -313 -2.5623615810324574e-01 5.0361649714207213e-01 -2.1887817434551284e+01 2.1915649876928914e+01 9.4861527237020526e-01 2 0 0 -198 0 P 331 311 7.9057852548599702e-03 -3.0449764512830235e-01 -1.9953118524937548e+02 1.9953203838924421e+02 4.9767000000000000e-01 2 0 0 -199 0 P 332 213 9.8083025986338890e-01 -8.3975735051139699e-02 -4.6508326648453186e+02 4.6508492040681949e+02 7.5455017912911371e-01 2 0 0 -200 0 V -78 0 3.4270317182534024e-05 -6.6664430643383933e-05 -2.7917699156051123e-01 2.7917700524742839e-01 0 2 0 P 333 22 1.9869543819046070e-02 -1.2748131518957109e-01 -2.7488870787735584e+02 2.7488873815557957e+02 0 1 0 0 0 0 P 334 22 8.2963153561626618e-02 -7.2554277883368407e-02 -5.6281941533254712e+02 5.6281942612375974e+02 0 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 335 211 2.9423409429185871e-01 -9.0299140658020416e-02 1.0388411539480242e+00 1.0924277390671613e+00 1.3957000000000000e-01 1 0 0 0 0 P 336 111 1.3546153959604809e-01 -7.0865405253618097e-01 2.4368838036311447e+00 2.5450270465528413e+00 1.3497999999999999e-01 2 0 0 -201 0 V -80 0 6.4419397257855485e-05 2.6113691741644227e-04 8.3957739286752962e-04 8.8730711461007159e-04 0 2 0 P 337 22 2.9948826707984377e-02 2.0376744541584180e-01 4.3293987278055640e-01 4.7943199463086245e-01 0 1 0 0 0 0 P 338 22 5.6652856460820605e-02 1.4728980672290590e-01 6.9573904176701473e-01 7.1341197603385187e-01 0 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 339 -211 1.9253964901203038e-01 -6.9049480403516295e-01 6.0784455140188900e+00 6.1221592794240172e+00 1.3957000000000000e-01 1 0 0 0 0 P 340 111 2.8142036128477049e-01 1.4235169012398902e-01 3.6959607686465192e+00 3.7118468485648726e+00 1.3497999999999999e-01 2 0 0 -202 0 V -82 0 0 0 0 0 0 3 0 P 341 211 2.8222670400259425e-02 -9.8082957620141728e-02 4.6640533961973167e+00 4.6672572945124591e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 -211 -3.9104195867638775e-02 -1.7744076962567187e-01 1.0688029239567414e+00 1.0930845530050661e+00 1.3957000000000000e-01 1 0 0 0 0 P 343 111 -2.8107721778190414e-01 -2.5911340492695295e-01 6.5633457172522878e+00 6.5758551355350585e+00 1.3497999999999999e-01 2 0 0 -203 0 V -83 0 0 0 0 0 0 2 0 P 344 -311 -3.0701266890809709e-01 2.9121157594026353e-01 2.9838704860891902e+01 2.9845854723313682e+01 4.9767000000000000e-01 2 0 0 -204 0 P 345 111 5.0547407971628325e-03 -1.8570129964411866e-01 3.9970367109498195e+00 4.0036274292414609e+00 1.3497999999999999e-01 2 0 0 -205 0 V -84 0 0 0 0 0 0 2 0 P 346 311 -1.9308911965262565e-01 -3.4757950625145495e-01 2.4816204561631380e+02 2.4816286316615466e+02 4.9767000000000000e-01 2 0 0 -206 0 P 347 211 1.8839670124924390e-01 -5.1753382637993639e-01 9.2696232160548362e+01 9.2697973392764467e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -9.2361960813413225e-05 -1.7198353968277618e-04 1.2083142148316624e-02 1.2084926441033345e-02 0 2 0 P 348 22 -5.2540770339076615e-02 -1.0305177061119483e-02 2.4848745931182488e+00 2.4854513619756609e+00 0 1 0 0 0 0 P 349 22 -1.2352599053185870e-01 -3.1754174702309595e-01 2.0548847086902931e+01 2.0551671660289792e+01 0 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 350 -311 -1.8749321654064371e-01 3.9747019247661358e-01 1.5163837301620137e+02 1.5163982650573590e+02 4.9767000000000000e-01 2 0 0 -207 0 P 351 -211 6.1611499984897899e-02 6.2069802101700455e-01 7.8627135992251837e+01 7.8629733918786656e+01 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 352 321 -2.7923272083469512e-02 -1.9194436044037083e-01 1.0685022547046054e+02 1.0685154161917779e+02 4.9359999999999998e-01 1 0 0 0 0 P 353 111 -1.1023294149736387e-01 -3.6268922390238861e-01 2.9364370695927306e+01 2.9367127553486746e+01 1.3497999999999999e-01 2 0 0 -208 0 V -88 0 0 0 0 0 0 3 0 P 354 111 -3.0701426184579250e-01 6.0300154534030892e-01 1.8254827657097161e+02 1.8254958057265702e+02 1.3497999999999999e-01 2 0 0 -209 0 P 355 111 -2.3719428163410963e-01 1.8796274434773910e-01 5.6037862334276511e+01 5.6038842116127171e+01 1.3497999999999999e-01 2 0 0 -210 0 P 356 111 -1.7313519266676852e-01 2.5480801485392640e-01 7.0280496572683703e+01 7.0281301361192646e+01 1.3497999999999999e-01 2 0 0 -211 0 V -89 0 0 0 0 0 0 3 0 P 357 -211 -1.0394035232127309e-01 -2.3934142073388218e-01 1.1831105427872311e+01 1.1834805589567123e+01 1.3957000000000000e-01 1 0 0 0 0 P 358 211 -1.3804384697618341e-01 6.9207623251578573e-02 7.6614256500299263e+00 7.6642526429287674e+00 1.3957000000000000e-01 1 0 0 0 0 P 359 111 3.2709075766882839e-02 -1.5310996696741069e-01 1.9063526966852853e+00 1.9175277703807954e+00 1.3497999999999999e-01 2 0 0 -212 0 V -90 0 -8.0270789140980223e-02 -1.0870580257174016e-01 -2.3449249045574708e-01 2.7096297845175304e-01 0 2 0 P 360 -321 -1.7976727161236545e+00 -2.8388235242631565e+00 -5.7664431392810878e+00 6.6922383127595815e+00 4.9359999999999998e-01 1 0 0 0 0 P 361 20213 -9.5530742542608422e+00 -1.2532796368962265e+01 -2.7392131157824469e+01 3.1623470797136395e+01 1.1759436026380199e+00 2 0 0 -213 0 V -91 0 0 0 0 0 0 2 0 P 362 211 -2.5923903686990442e+00 -3.3082608145498669e+00 -6.7715661284345376e+00 7.9711144175373390e+00 1.3957000000000000e-01 1 0 0 0 0 P 363 111 -2.2881378900513210e+00 -3.0635639433756277e+00 -6.9972737527790585e+00 7.9750271855819062e+00 1.3497999999999999e-01 2 0 0 -214 0 V -92 0 -2.1438173393674494e-05 -2.5313612131731442e-05 -8.4677633881314276e-05 9.1063820124694372e-05 0 2 0 P 364 22 -3.2230284289753836e-03 -2.4150968915139452e-02 -2.8798627097913573e-02 3.7722912593259501e-02 0 1 0 0 0 0 P 365 22 -6.1451602958542229e-01 -7.0525851136322670e-01 -2.4111798555915316e+00 2.5862729582312274e+00 0 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 366 -211 -9.1087729829924990e-01 -8.1794743263370795e-01 -1.4712545512187234e+00 1.9190636243988426e+00 1.3957000000000000e-01 1 0 0 0 0 P 367 211 -8.5625785692371767e-02 -3.7185623796882006e-02 -7.9662848204182812e-01 8.1413221843436856e-01 1.3957000000000000e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 368 -211 -3.2552496284874771e-01 1.5209706632851927e-01 -4.6746395405185409e-01 6.0588971955399151e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 211 -2.8208475570301111e-01 -5.6874696685223225e-01 -1.1897940310171611e+00 1.3557782056249861e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 3 0 P 370 211 1.6176787865251622e-02 -4.3578666174423381e-02 -8.7084622331528738e-01 8.8318385298514068e-01 1.3957000000000000e-01 1 0 0 0 0 P 371 -211 1.3616761623598827e-02 2.4019738405508817e-01 -6.9638187386248074e+00 6.9693709478564871e+00 1.3957000000000000e-01 1 0 0 0 0 P 372 111 1.2773765954370905e-01 -1.0773684755920740e-01 -1.3408484603586774e+00 1.3579463656691071e+00 1.3497999999999999e-01 2 0 0 -215 0 V -96 0 0 0 0 0 0 2 0 P 373 22 5.9218512560392005e-02 -8.1324047086906298e-02 -3.9658742675154635e-01 4.0914791936642153e-01 0 1 0 0 0 0 P 374 22 7.3904991103755990e-01 8.9142769120384513e-01 -6.0875789101776094e+00 6.1967293863205661e+00 0 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 375 3122 2.0995200857446901e+00 -2.9360960759338008e-02 -4.8788509862699998e+00 5.4274096459627819e+00 1.1156800000000000e+00 2 0 0 -216 0 P 376 111 1.5259858232530465e-01 -1.1735673661967578e-02 -1.3577576960813717e-01 2.4510959462386397e-01 1.3497999999999999e-01 2 0 0 -217 0 V -98 0 0 0 0 0 0 2 0 P 377 -3122 1.0996799420375931e+00 -1.3724457175070048e-01 -4.9146947973277877e+00 5.1601452363936096e+00 1.1156800000000000e+00 2 0 0 -218 0 P 378 -211 2.8627906626868010e-01 -3.1028812376809212e-01 -1.5238329575224692e+00 1.5873818352453406e+00 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 379 211 1.2336121219696088e+00 2.5910083789251654e+00 -7.5100265335167116e+00 8.0408396082844362e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 111 4.5028020123982393e-01 2.1400739437415542e-01 -1.1725224299569332e+00 1.2812415360218006e+00 1.3497999999999999e-01 2 0 0 -219 0 V -100 0 0 0 0 0 0 1 0 P 381 130 1.2038704499687234e+00 4.7920284879663627e-01 -8.8659582504166998e+00 8.9739528947746692e+00 4.9767000000000000e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 382 -321 2.9303685180358868e-01 1.5161747644456333e-01 -1.5697456447255307e+00 1.6782731615601640e+00 4.9359999999999998e-01 1 0 0 0 0 P 383 211 5.9242393111649327e-01 6.2927966683692882e-01 -2.5418536148615107e+00 2.6883933115410112e+00 1.3957000000000000e-01 1 0 0 0 0 V -102 0 2.5132635202850719e+02 6.6793053042265387e+02 -2.3052302262812418e+03 2.4168216279233970e+03 0 2 0 P 384 -2112 1.6416346399933339e+00 4.4514203851804179e+00 -1.5101583918158026e+01 1.5857198250601995e+01 9.3957000000000002e-01 1 0 0 0 0 P 385 111 4.6930587842368754e-01 1.1586623171580361e+00 -4.2605078388764834e+00 4.4421721058793997e+00 1.3497999999999999e-01 2 0 0 -220 0 V -103 0 0 0 0 0 0 2 0 P 386 -311 3.9124638275850815e-01 1.4461643018130510e+00 -5.6236803270724449e+00 5.8410547651825429e+00 4.9767000000000000e-01 2 0 0 -221 0 P 387 111 1.3909138246977162e-01 1.7057376749719972e+00 -7.6875673759981247e+00 7.8769155885668170e+00 1.3497999999999999e-01 2 0 0 -222 0 V -104 0 0 0 0 0 0 2 0 P 388 2212 8.2623609623549726e-02 4.7605506664188102e+00 -1.8489847214773889e+01 1.9116078832411983e+01 9.3827000000000005e-01 1 0 0 0 0 P 389 111 3.9032428293279520e-02 1.4483012265958091e+00 -5.2653933317303014e+00 5.4627544802642669e+00 1.3497999999999999e-01 2 0 0 -223 0 V -105 0 0 0 0 0 0 2 0 P 390 -3122 8.7748760421376948e-01 3.9761314884714993e+00 -1.5801246972912399e+01 1.6355541992564376e+01 1.1156800000000000e+00 2 0 0 -224 0 P 391 111 2.8094423812459263e-01 4.0228021068434572e-01 -1.7179389433981547e+00 1.7917290103382313e+00 1.3497999999999999e-01 2 0 0 -225 0 V -106 0 0 0 0 0 0 2 0 P 392 2112 -9.3074942102043534e-01 -6.2985797789230780e-01 3.4702058733044217e+00 3.7667142372445732e+00 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -1.9025087154828157e-01 -1.4702194736108920e-01 4.3461352096169703e-01 5.1592591002337829e-01 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 2 0 P 394 -2212 -6.0351961448355251e-01 9.3586667639513635e-02 1.3462978198486275e+00 1.7509605369783217e+00 9.3827000000000005e-01 1 0 0 0 0 P 395 211 -1.6450021779546156e-01 -2.7262892528690852e-01 7.7271272858357221e-01 8.4732024546384965e-01 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 396 321 -2.1302589889394241e-01 -1.3181591497396661e-01 1.7637669696071931e-01 5.8095195005333233e-01 4.9359999999999998e-01 1 0 0 0 0 P 397 -211 -1.9906603148261789e-01 -7.3764782662793280e-02 4.1435538770110503e-01 4.8604392833206012e-01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 398 -311 2.3758569193716658e-02 -1.1985517959127263e-01 2.9841798130741148e-01 5.9300797140728168e-01 4.9767000000000000e-01 2 0 0 -226 0 P 399 -211 -1.0708784113320789e-01 3.5134334754841190e-01 6.7310931531929175e-01 7.7940098078890119e-01 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 400 211 6.9429247115574322e-01 2.6249456679668653e-01 3.6388130968204901e-01 8.3835244708729273e-01 1.3957000000000000e-01 1 0 0 0 0 P 401 111 5.0060661526471706e-02 -1.1020636587702387e-01 5.4993293630772566e-01 5.7904865749635015e-01 1.3497999999999999e-01 2 0 0 -227 0 V -111 0 0 0 0 0 0 1 0 P 402 310 -4.8700872009968915e-01 -9.7638529556277887e-02 4.1645079444766324e+00 4.2234479545054224e+00 4.9767000000000000e-01 2 0 0 -228 0 V -112 0 0 0 0 0 0 2 0 P 403 311 3.9391789184207954e-01 -1.7165530984722288e-01 1.4718494896048986e+00 1.6120338705691810e+00 4.9767000000000000e-01 2 0 0 -229 0 P 404 111 -4.0741638747061298e-02 1.2614496208450152e-01 8.5279529572440227e-01 8.7352839072165656e-01 1.3497999999999999e-01 2 0 0 -230 0 V -113 0 0 0 0 0 0 3 0 P 405 211 1.2363581142205782e-02 -2.2417091792459244e-02 2.2383599044496694e+00 2.2428531451905238e+00 1.3957000000000000e-01 1 0 0 0 0 P 406 -211 -1.5555974724495367e-01 6.5717552566246409e-02 2.0273327380703307e+01 2.0274511103889846e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 -5.2446929390355175e-02 3.8559411881582961e-01 2.0310151713459813e+01 2.0314327843397191e+01 1.3497999999999999e-01 2 0 0 -231 0 V -114 0 0 0 0 0 0 2 0 P 408 211 2.3380204630744261e-01 4.4432406735962993e-01 3.5658771611228339e+01 3.5662579265671972e+01 1.3957000000000000e-01 1 0 0 0 0 P 409 111 -6.1608448350690716e-02 4.7016853198103229e-03 8.1586572909497264e+00 8.1600077266090967e+00 1.3497999999999999e-01 2 0 0 -232 0 V -115 0 0 0 0 0 0 3 0 P 410 211 2.5521189974394859e-01 1.2021400270291964e-01 3.9145066182634030e+00 3.9271397186177062e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 -211 1.1902447436464021e-01 -5.3817614303097686e-02 4.5853939068804266e+00 4.5893768887794772e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 111 2.7807296670517082e-02 -5.2417119135036001e-02 2.2289093507698290e+00 2.2337809414702505e+00 1.3497999999999999e-01 2 0 0 -233 0 V -116 0 0 0 0 0 0 1 0 P 413 310 1.3358205847204765e-01 1.7876280271132328e+00 7.8110660440460279e+01 7.8132812620585042e+01 4.9767000000000000e-01 2 0 0 -234 0 V -117 0 0 0 0 0 0 2 0 P 414 -2212 2.1735563907590053e-01 -3.8940815919264993e-01 5.4270672156673250e+00 5.5256032561662431e+00 9.3827000000000005e-01 1 0 0 0 0 P 415 211 -6.9357717452682502e-02 1.5269111265835447e-01 1.5842132889776916e+00 1.5991674705072660e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 1 0 P 416 130 -4.0288393607077729e-03 7.4292337295512323e-01 3.8468666573260211e+00 3.9494315892006897e+00 4.9767000000000000e-01 1 0 0 0 0 V -119 0 3.7691140523528020e+01 -1.7244701420514687e+01 8.4332649787451601e+02 8.4933505636373445e+02 0 2 0 P 417 2112 3.9858051465467470e-01 -1.9443661150252400e-01 1.0457322723818828e+01 1.0508808798220311e+01 9.3957000000000002e-01 1 0 0 0 0 P 418 -211 9.2329202793276194e-02 -3.0167669085235018e-02 5.2661586327482190e-01 5.5338849129627199e-01 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 419 211 -4.9367409519004174e-02 -1.4021386967070124e-01 5.9833845206399353e-02 2.1250163364744473e-01 1.3957000000000000e-01 1 0 0 0 0 P 420 111 5.7803517210378308e-01 -9.0942310344867283e-01 -1.1184091896629966e+00 1.5589207026651184e+00 1.3497999999999999e-01 2 0 0 -235 0 V -121 0 0 0 0 0 0 3 0 P 421 211 7.8691227277227882e-02 -8.6607719993399612e-02 2.9602789213931130e-01 3.4757086218107403e-01 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -1.4039027294600320e-01 3.4774437158926963e-01 6.7547859886290607e-01 7.8510298632196274e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.2456991044559413e-02 3.3252507092112395e-02 -8.4332599442506102e-03 1.4882266430435678e-01 1.3497999999999999e-01 2 0 0 -236 0 V -122 0 0 0 0 0 0 2 0 P 424 211 -1.2683035121802744e-01 1.3922530194036395e-01 -3.4273925338776551e-01 4.1523439573724696e-01 1.3957000000000000e-01 1 0 0 0 0 P 425 -211 3.8651626299771058e-01 -3.8013837735614708e-01 -1.4197402205658291e-01 5.7752611658660336e-01 1.3957000000000000e-01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 426 -211 -1.7539002791963645e-01 -2.0917598157709741e-01 4.1267196538646802e+00 4.1380926934585958e+00 1.3957000000000000e-01 1 0 0 0 0 P 427 111 9.9495705048181560e-02 1.7244311151202998e-01 2.7946392084566735e-01 3.6872171821770761e-01 1.3497999999999999e-01 2 0 0 -237 0 V -124 0 0 0 0 0 0 3 0 P 428 111 -1.6074851524620906e-01 1.6964893904999087e-01 2.9154623476364662e+02 2.9154635968454045e+02 1.3497999999999999e-01 2 0 0 -238 0 P 429 111 -1.6537969063910529e-01 1.2033725300095008e-01 1.4533901474552641e+02 1.4533922133511408e+02 1.3497999999999999e-01 2 0 0 -239 0 P 430 111 -5.7900081078864196e-01 2.1558123182744449e-01 4.5922302744247725e+02 4.5922346289169616e+02 1.3497999999999999e-01 2 0 0 -240 0 V -125 0 3.9500206144590057e-05 -4.4822036683989924e-05 7.4030565061253611e-03 7.4033097476222725e-03 0 2 0 P 431 22 1.3783843355537417e-01 -1.0399897761342737e-01 2.7820533655869077e+01 2.7821069499903370e+01 0 1 0 0 0 0 P 432 22 2.5922947217556785e-01 -3.4656556302618807e-01 4.6597208168944597e+01 4.6599217984303948e+01 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 433 22 2.1039963617891452e-01 1.9302616240950027e-01 3.3844196656569572e+01 3.3845401082493233e+01 0 1 0 0 0 0 P 434 111 -4.3583856940067750e-01 -2.6686708264840264e-01 6.8035274164584280e+01 6.8037327428029741e+01 1.3497999999999999e-01 2 0 0 -241 0 V -127 0 0 0 0 0 0 3 0 P 435 211 -1.0475457717941022e-01 1.4521820410787761e-01 4.2739584652019769e+00 4.2799839480325144e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 -211 1.2625987536990324e-02 -3.1850596152928443e-02 5.0080167572269507e-01 5.2101437537100703e-01 1.3957000000000000e-01 1 0 0 0 0 P 437 111 1.8536012272593821e-01 1.1438376352181021e-01 5.5591627700266724e+00 5.5650653477299805e+00 1.3497999999999999e-01 2 0 0 -242 0 V -128 0 0 0 0 0 0 2 0 P 438 -2212 2.5831457557913308e-02 4.8320874977277700e-01 8.0115037844922181e+00 8.0807611919849283e+00 9.3827000000000005e-01 1 0 0 0 0 P 439 211 -5.7312983552009283e-02 -1.1737239594482114e-01 1.9510418888118615e+00 1.9603839660158457e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 440 2212 -2.2725621361157283e-01 1.3782471692711795e-01 3.5264514909909721e+00 3.6588046887519918e+00 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 1.7233908933532918e-01 2.4173893243488481e-02 1.2487492916460952e+00 1.2685187098005699e+00 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 3 0 P 442 111 2.9037615295634639e-01 1.2177129758212130e-01 1.0065281309846932e+00 1.0632332942417204e+00 1.3497999999999999e-01 2 0 0 -243 0 P 443 111 2.0788948239645194e-01 1.5561875268393399e-01 1.2829650617934774e+00 1.3159233196735702e+00 1.3497999999999999e-01 2 0 0 -244 0 P 444 111 9.3335160527860173e-02 -4.5804043819729662e-02 3.3121991872715750e-01 3.7247241184096569e-01 1.3497999999999999e-01 2 0 0 -245 0 V -131 0 0 0 0 0 0 1 0 P 445 310 -1.4175844364771187e-01 -2.5017064465786193e-01 7.6346655636342775e-01 9.5563456372160516e-01 4.9767000000000000e-01 2 0 0 -246 0 V -132 0 0 0 0 0 0 2 0 P 446 2112 -6.4457433547379384e-01 -9.6731372103820501e-01 6.1435233840848147e+00 6.3227243546241354e+00 9.3957000000000002e-01 1 0 0 0 0 P 447 211 -1.6779396573534147e-01 -1.9144045691255071e-01 9.3837763408537600e-01 9.8226097984789507e-01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 448 211 7.2989607205815066e-01 1.0497159910724298e-01 9.1476881021479350e-01 1.1832366938473629e+00 1.3957000000000000e-01 1 0 0 0 0 P 449 -211 4.4341812529489122e-01 -1.4877968293770705e-01 1.9122267831906963e+00 1.9735364407952842e+00 1.3957000000000000e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 450 211 -9.5514566575380461e-02 1.9097524646508122e-02 1.4087274398457025e-01 2.2093587932576511e-01 1.3957000000000000e-01 1 0 0 0 0 P 451 111 1.9545584107578953e-01 1.2644931490647857e-02 -4.7128744327100403e-03 2.3791740518185289e-01 1.3497999999999999e-01 2 0 0 -247 0 V -135 0 0 0 0 0 0 2 0 P 452 -211 -8.7755325624733413e-03 -5.0513653683573057e-01 1.9306657726273402e+00 2.0005474354068373e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -2.4061451741329822e-02 9.0023040386773945e-02 6.5035996565890430e-02 1.7644370918142019e-01 1.3497999999999999e-01 2 0 0 -248 0 V -136 0 0 0 0 0 0 3 0 P 454 -211 -2.2715171879107243e-01 -3.6571695861339688e-02 -1.0444029918678002e-01 2.8865715525885877e-01 1.3957000000000000e-01 1 0 0 0 0 P 455 211 -5.5642018830794768e-02 -6.6376586754809796e-03 -3.2384785768928737e-01 3.5706765829769521e-01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -2.2042931051245354e-01 -4.6153774906715711e-02 -3.0473266023631757e-01 4.0224475942619614e-01 1.3497999999999999e-01 2 0 0 -249 0 V -137 0 0 0 0 0 0 2 0 P 457 311 -5.1973368732809633e-01 -3.8762673074075715e-01 3.4931254431013603e-01 8.8886009621359852e-01 4.9767000000000000e-01 2 0 0 -250 0 P 458 211 -6.8414930591127265e-01 1.8209294527420702e-02 -4.1187638502033583e-03 6.9849022920991255e-01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 459 311 -4.3569906925706614e-01 2.6175508764466177e-01 3.4264037937023128e-01 7.8957410249723514e-01 4.9767000000000000e-01 2 0 0 -251 0 P 460 211 -1.1201649336616151e-01 -1.8714304920691680e-01 4.5461614017390339e-01 5.2318814537327962e-01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 461 -311 -1.3073618626234031e+00 3.0469383218540291e-01 1.0457365025169274e-01 1.4354944961374543e+00 4.9767000000000000e-01 2 0 0 -252 0 P 462 -211 -4.7358389768788156e-01 4.2998551490811998e-01 2.9172131507173038e-01 7.1676381168919701e-01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 463 321 -2.1972110485669880e+00 2.2459966970532169e-01 2.7351912869405032e-01 2.2796129226994077e+00 4.9359999999999998e-01 1 0 0 0 0 P 464 111 -9.3120262581151592e-01 -2.6234803749578411e-01 2.0481117099820864e-01 9.9806414586528902e-01 1.3497999999999999e-01 2 0 0 -253 0 V -141 0 0 0 0 0 0 2 0 P 465 22 -7.8837520528342794e-02 4.2145456612950005e-01 7.9306389302559033e-01 9.0154847034164887e-01 0 1 0 0 0 0 P 466 111 -4.3449708323929359e-01 1.9637794155146598e-01 4.8784165514261360e-02 4.9794729286980510e-01 1.3497999999999999e-01 2 0 0 -254 0 V -142 0 0 0 0 0 0 2 0 P 467 22 3.4005585045217852e-03 3.0973730735861038e-01 3.7960688255239700e-01 4.8994912863383511e-01 0 1 0 0 0 0 P 468 22 1.1019742544412242e-01 1.9016819511347374e-01 -1.8232704790818186e-01 2.8557059968796084e-01 0 1 0 0 0 0 V -143 0 0 0 0 0 0 3 0 P 469 211 -1.3601586222957438e-02 7.0442168583979489e-02 1.2559024281244116e-01 2.0099700558038736e-01 1.3957000000000000e-01 1 0 0 0 0 P 470 -211 -9.0034529614210279e-01 1.1585851710887041e+00 1.4387171820536875e+00 2.0596912792426818e+00 1.3957000000000000e-01 1 0 0 0 0 P 471 111 -2.8502058941199820e-01 5.1489587193856434e-01 3.4763718053088244e-01 6.9672498520980186e-01 1.3497999999999999e-01 2 0 0 -255 0 V -144 0 0 0 0 0 0 1 0 P 472 130 7.4815687985404486e-02 5.2721467856986681e-01 7.9930348338199797e-01 1.0817181665826148e+00 4.9767000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 1 0 P 473 310 1.8222581990086587e-01 1.2137911543078275e+00 9.9390667406202471e-01 1.6559049252174796e+00 4.9767000000000000e-01 2 0 0 -256 0 V -146 0 0 0 0 0 0 1 0 P 474 130 2.8516209280859527e-02 3.0895071482051284e+00 4.1184268025104682e+00 5.1725218558783235e+00 4.9767000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 2 0 P 475 -213 2.6679644205473430e-01 1.0939595513113596e+00 5.8685335847691569e+00 6.0140649703327842e+00 6.7923721218873667e-01 2 0 0 -257 0 P 476 211 -2.0068364959686966e-01 1.3618414089106942e-01 1.0399122754051195e+00 1.0769017470893114e+00 1.3957000000000000e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 477 -211 5.2273283049981585e-03 3.1702544492870760e-01 2.1869388894554369e+00 2.2142072958072450e+00 1.3957000000000000e-01 1 0 0 0 0 P 478 111 -8.4058656762474293e-01 1.7311917997229814e-01 6.9988322505755409e+00 7.0525476602602071e+00 1.3497999999999999e-01 2 0 0 -258 0 V -149 0 0 0 0 0 0 2 0 P 479 -211 -1.2916864602045813e-01 3.1972834570075637e-01 1.1249847546460988e+01 1.1255996639910373e+01 1.3957000000000000e-01 1 0 0 0 0 P 480 111 -8.2752794313165734e-01 1.4751581906134800e-01 1.3209877099141497e+01 1.3237282046868989e+01 1.3497999999999999e-01 2 0 0 -259 0 V -150 0 -4.0355410773947960e-05 3.5350049748874547e-05 8.1401733272462411e-04 8.1580683449009961e-04 0 2 0 P 481 22 -5.7337599335245137e-01 4.4892136964107032e-01 1.1785519261524236e+01 1.1807995371341915e+01 0 1 0 0 0 0 P 482 22 -3.0579487857123794e-01 3.2120420866990979e-01 5.9484181324301098e+00 5.9649275711990821e+00 0 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 483 211 -8.5626977509024715e-01 2.2823899756642529e-01 5.3662500342457371e+01 5.3669998264923400e+01 1.3957000000000000e-01 1 0 0 0 0 P 484 111 -4.6519938225551566e-01 6.0659850103749413e-01 4.6901619445226665e+01 4.6908043003220413e+01 1.3497999999999999e-01 2 0 0 -260 0 V -152 0 0 0 0 0 0 2 0 P 485 -211 -2.9809588191100450e-01 4.2210232739375875e-01 9.5365291065505374e+01 9.5366793231832347e+01 1.3957000000000000e-01 1 0 0 0 0 P 486 211 -4.5267213357234681e-01 7.9883026378832392e-02 3.1520876728262639e+01 3.1524537155391283e+01 1.3957000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 487 -311 -3.0734084500664027e-01 -2.8921526196721786e-01 8.6242038385307779e+01 8.6244506863594296e+01 4.9767000000000000e-01 2 0 0 -261 0 P 488 111 -2.4498848911531815e-01 2.9128820444458831e-01 5.2772393292360135e+01 5.2773938469492542e+01 1.3497999999999999e-01 2 0 0 -262 0 V -154 0 0 0 0 0 0 3 0 P 489 111 -9.6825051925820305e-02 8.3240546141786553e-02 1.2547185087603344e+01 1.2548560766166698e+01 1.3497999999999999e-01 2 0 0 -263 0 P 490 111 -4.9271182916165768e-01 1.7270834516756020e-01 7.0443368158017933e+01 7.0445432287448853e+01 1.3497999999999999e-01 2 0 0 -264 0 P 491 111 -9.9304812060260747e-02 7.9066624267171468e-02 2.2267873747523812e+01 2.2268644633493782e+01 1.3497999999999999e-01 2 0 0 -265 0 V -155 0 0 0 0 0 0 2 0 P 492 -211 2.5545912896797529e-01 -2.3347549770123151e-02 3.4706885663366151e+01 3.4708114277637215e+01 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -5.0613116790256862e-01 1.6005485994037880e-01 3.9808792876068239e+01 3.9812560783845775e+01 1.3497999999999999e-01 2 0 0 -266 0 V -156 0 0 0 0 0 0 3 0 P 494 -211 -3.2300507117526278e-01 4.2489976226400544e-01 4.4872081223467646e+01 4.4875472423077113e+01 1.3957000000000000e-01 1 0 0 0 0 P 495 211 -1.3304730397618095e-01 4.4111780322953015e-01 3.2999709403919809e+01 3.3003220858417365e+01 1.3957000000000000e-01 1 0 0 0 0 P 496 111 -4.1453009705415444e-01 1.3808375923326097e-01 5.9323335986793829e+01 5.9325098521016848e+01 1.3497999999999999e-01 2 0 0 -267 0 V -157 0 0 0 0 0 0 2 0 P 497 22 7.1746683961407876e-01 -1.4678326117232482e-01 2.8462217084150101e+01 2.8471636857353182e+01 0 1 0 0 0 0 P 498 111 4.6477115810355490e-01 -1.2051911846523140e-01 6.3389306924125101e+01 6.3391269028223874e+01 1.3497999999999999e-01 2 0 0 -268 0 V -158 0 0 0 0 0 0 2 0 P 499 211 5.4789694818730073e-01 -7.6833943391661574e-01 7.0141724758739258e+01 7.0148211441683813e+01 1.3957000000000000e-01 1 0 0 0 0 P 500 111 -1.0327425525430464e-01 -6.8010402059624719e-01 3.6997559658792319e+01 3.7004200401534504e+01 1.3497999999999999e-01 2 0 0 -269 0 V -159 0 0 0 0 0 0 3 0 P 501 211 2.1997453734806433e-01 4.1990845885339065e-02 1.0591897451718365e+01 1.0595183973902373e+01 1.3957000000000000e-01 1 0 0 0 0 P 502 -211 1.6790860001141383e-01 -4.3556769515780713e-01 1.7719060484813458e+01 1.7725758002534068e+01 1.3957000000000000e-01 1 0 0 0 0 P 503 111 -2.2812173287030724e-02 8.3705778144188225e-02 7.6349449702206069e+00 7.6366308900746107e+00 1.3497999999999999e-01 2 0 0 -270 0 V -160 0 0 0 0 0 0 3 0 P 504 211 1.0885280748622868e+00 -2.0051657724539168e-01 6.5545376243568512e+01 6.5554869590011151e+01 1.3957000000000000e-01 1 0 0 0 0 P 505 -211 6.4285333744980300e-01 -3.7577783277579963e-01 4.0144454600607908e+01 4.0151602512953893e+01 1.3957000000000000e-01 1 0 0 0 0 P 506 111 9.7100815182746669e-01 -3.9060823730671124e-01 4.1603891713651990e+01 4.1617273540534200e+01 1.3497999999999999e-01 2 0 0 -271 0 V -161 0 0 0 0 0 0 2 0 P 507 321 2.0107123942061409e+00 -1.0439064327609275e+00 3.1789162575785650e+01 3.1873612961230247e+01 4.9359999999999998e-01 1 0 0 0 0 P 508 111 6.9878251951335124e-01 -2.4138799408079922e-01 6.5702452379637784e+00 6.6130860617906286e+00 1.3497999999999999e-01 2 0 0 -272 0 V -162 0 9.9728324536196371e-07 -4.4107588348252512e-06 1.6126739147537069e-04 1.6134616692581021e-04 0 2 0 P 509 22 6.5125534598326082e-02 -5.2352173847214925e-02 1.8967234838939173e+00 1.8985631566313315e+00 0 1 0 0 0 0 P 510 22 -4.7107617910955284e-03 -2.1484873838382881e-01 7.8727505973266450e+00 7.8756830903337409e+00 0 1 0 0 0 0 V -163 0 0 0 0 0 0 2 0 P 511 -311 1.3285887983387887e-01 -1.2988847017777436e-01 3.1589300458493286e+00 3.2032853385400242e+00 4.9767000000000000e-01 2 0 0 -273 0 P 512 -211 4.8667116538979360e-01 8.9056329609514664e-02 4.2463709845298352e+00 4.2773737475491034e+00 1.3957000000000000e-01 1 0 0 0 0 V -164 0 0 0 0 0 0 2 0 P 513 311 1.0970025983785177e+00 -1.3923646204422115e+00 1.5018423608376498e+01 1.5130856454498831e+01 4.9767000000000000e-01 2 0 0 -274 0 P 514 211 3.3604208634301991e-01 -1.5718814479292831e-01 1.5232680605854192e+00 1.5739942077265967e+00 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 515 -211 -4.6619253173939980e-02 1.8526160550728021e-01 9.8169328885802942e-01 1.0098003344872319e+00 1.3957000000000000e-01 1 0 0 0 0 P 516 111 4.9647042866549718e-01 -2.4411959082119616e-01 2.5172006885580611e+00 2.5808130827394664e+00 1.3497999999999999e-01 2 0 0 -275 0 V -166 0 0 0 0 0 0 1 0 P 517 130 3.0825165723400555e-01 -5.0069105196510533e-01 4.7421307871868770e+00 4.8042887554133404e+00 4.9767000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 518 321 1.4952538222693172e+00 1.7456667727330141e-01 6.9556336096235558e+00 7.1337744139515697e+00 4.9359999999999998e-01 1 0 0 0 0 P 519 111 9.0188373804664057e-01 -3.5745261234471570e-01 4.3575468166965479e+00 4.4662736713201152e+00 1.3497999999999999e-01 2 0 0 -276 0 V -168 0 0 0 0 0 0 2 0 P 520 211 2.4408316847336824e+00 -2.4165796577792525e-01 3.7796330705262369e+00 4.5079001562079188e+00 1.3957000000000000e-01 1 0 0 0 0 P 521 111 6.1601592984243864e-02 8.2612868425077035e-02 2.4565740270824829e-01 2.9864159488085046e-01 1.3497999999999999e-01 2 0 0 -277 0 V -169 0 0 0 0 0 0 2 0 P 522 311 4.1932486009736736e-01 -7.7757542521224521e-02 1.2355905018689111e+00 1.3986561017359787e+00 4.9767000000000000e-01 2 0 0 -278 0 P 523 111 6.3603901168234545e-01 3.4993040337086734e-01 1.6322613522515730e+00 1.7915059681841103e+00 1.3497999999999999e-01 2 0 0 -279 0 V -170 0 0 0 0 0 0 2 0 P 524 -211 4.5708580474325178e-01 5.3676530398944586e-02 -2.9409124620721627e-01 5.6371805790587226e-01 1.3957000000000000e-01 1 0 0 0 0 P 525 111 2.5886730347637948e-01 -4.7275250390661089e-01 -9.6651070456434104e-02 5.6397539004771891e-01 1.3497999999999999e-01 2 0 0 -280 0 V -171 0 0 0 0 0 0 2 0 P 526 -2112 6.3444868454540315e-01 1.0387873715419800e+00 -1.2483008340253725e+00 1.9805683764326161e+00 9.3957000000000002e-01 1 0 0 0 0 P 527 -211 4.5285710671844603e-01 9.3435349595710193e-01 -8.1292036339444829e-01 1.3260525316268665e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 3 0 P 528 211 4.1373423417484512e-01 9.9278900149791516e-01 -8.8782999983633215e-01 1.4016161783929488e+00 1.3957000000000000e-01 1 0 0 0 0 P 529 -211 2.3244333051893895e-01 3.2183811617084412e-01 -4.9509107789724549e-01 6.4977275661310308e-01 1.3957000000000000e-01 1 0 0 0 0 P 530 111 -7.5898729184311259e-02 6.5495576552579049e-01 -4.8218126224757318e-01 8.2791668780737271e-01 1.3497999999999999e-01 2 0 0 -281 0 V -173 0 0 0 0 0 0 3 0 P 531 211 2.8505263440305151e-01 1.4345755222848594e-01 -3.6315675303753309e-01 5.0318752552927259e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 -211 3.2293015491122283e-02 2.4110226049880397e-02 -2.8376600688032480e-02 1.4801742538057552e-01 1.3957000000000000e-01 1 0 0 0 0 P 533 111 2.1046539987840354e-01 1.6634738407090457e-01 -3.6066627731999396e-01 4.6932600687482912e-01 1.3497999999999999e-01 2 0 0 -282 0 V -174 0 9.4442746565918964e-05 8.4137739679859488e-05 -2.3902281758741664e-04 2.7119869174576196e-04 0 2 0 P 534 22 2.8199543045188852e-01 3.4140606828436343e-01 -8.1922271318779760e-01 9.3123862680835445e-01 0 1 0 0 0 0 P 535 22 3.4135129666124925e-01 2.1392492920553641e-01 -7.5839014186065346e-01 8.5874337862910577e-01 0 1 0 0 0 0 V -175 0 0 0 0 0 0 3 0 P 536 -211 1.1097596798608225e-01 -2.6715441591819200e-01 -8.7089038324347268e-01 9.2823326375486082e-01 1.3957000000000000e-01 1 0 0 0 0 P 537 211 6.6032107159826959e-03 -3.4588903781629432e-01 -1.1109407116268930e+00 1.1719009678822307e+00 1.3957000000000000e-01 1 0 0 0 0 P 538 221 -4.2289016939970843e-02 -7.7811796073663086e-01 -1.6296075778934227e+00 1.8874793461657666e+00 5.4744999999999999e-01 2 0 0 -283 0 V -176 0 0 0 0 0 0 2 0 P 539 211 -1.4092361953107089e+00 -8.9307031800780790e-01 -3.4542773424945090e+00 3.8386238407600315e+00 1.3957000000000000e-01 1 0 0 0 0 P 540 111 -4.5514877448464046e-02 -6.0501939341492554e-02 -5.5838520586623053e-01 5.7943569726372834e-01 1.3497999999999999e-01 2 0 0 -284 0 V -177 0 0 0 0 0 0 2 0 P 541 211 -1.0172932046692240e+00 1.2882119882543086e-01 -4.7065817228170710e+00 4.8190114820353678e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -1.5688884534358896e-01 -2.4750976150950663e-01 -1.9920000500850792e+00 2.0179591154864105e+00 1.3497999999999999e-01 2 0 0 -285 0 V -178 0 0 0 0 0 0 2 0 P 543 -2212 -9.7236757613014579e-01 -3.0138502701321696e-01 -7.5325856825468582e+00 7.6587550747772895e+00 9.3827000000000005e-01 1 0 0 0 0 P 544 211 -8.3324919613049414e-02 -1.7275228588388319e-01 -8.9546357433459944e-01 9.2634831050028088e-01 1.3957000000000000e-01 1 0 0 0 0 V -179 0 0 0 0 0 0 2 0 P 545 211 -9.5740337396319430e-02 1.2432286815281944e-01 -2.3490619210937842e+00 2.3584304275902066e+00 1.3957000000000000e-01 1 0 0 0 0 P 546 111 -5.0717822356416820e-01 -5.3425825255451009e-01 -2.5245913772184343e+00 2.6333330311994292e+00 1.3497999999999999e-01 2 0 0 -286 0 V -180 0 0 0 0 0 0 2 0 P 547 -211 -6.9687126128517318e-01 9.8921534278048973e-01 -1.3684267633882067e+01 1.3738370973656586e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 -1.6492527795306583e-01 -2.0931125628151812e-01 -3.9757557086910551e+00 3.9869618263664823e+00 1.3497999999999999e-01 2 0 0 -287 0 V -181 0 0 0 0 0 0 2 0 P 549 22 1.4165321279518675e-01 -1.1401141308191888e-01 -4.1715153436621550e+00 4.1754765593183398e+00 0 1 0 0 0 0 P 550 223 2.1962432052273845e-01 -9.4160057661027385e-01 -1.3016351264616681e+01 1.3075158682138616e+01 7.7429182559205767e-01 2 0 0 -288 0 V -182 0 0 0 0 0 0 2 0 P 551 -2212 1.6761794466185189e+00 6.9694562122760906e-01 -3.4443580754511153e+01 3.4504143468888572e+01 9.3827000000000005e-01 1 0 0 0 0 P 552 -211 5.4537895707394757e-01 4.4807191291946197e-01 -9.1206935957740818e+00 9.1490293528253979e+00 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 3 0 P 553 211 3.8880929564368411e-01 3.5836517166135916e-02 -7.4616563158370726e+00 7.4731687847199604e+00 1.3957000000000000e-01 1 0 0 0 0 P 554 -211 9.1268357101697462e-01 -5.9225812140462109e-01 -2.3768617562544954e+01 2.3793915642503954e+01 1.3957000000000000e-01 1 0 0 0 0 P 555 111 5.8313766906364743e-02 -2.9441676932624325e-02 -4.4651006607524586e+00 4.4676180251677131e+00 1.3497999999999999e-01 2 0 0 -289 0 V -184 0 8.9972966439128506e+00 -5.2581449722334472e+00 -2.4371034077145370e+02 2.4426430168495671e+02 0 2 0 P 556 2212 7.8222959939461312e-01 -5.2580068439003980e-01 -1.7840954947087347e+01 1.7890454815984263e+01 9.3827000000000005e-01 1 0 0 0 0 P 557 111 5.9258349387546726e-02 3.4023453717371872e-02 -4.9524821117561926e+00 4.9547924088744697e+00 1.3497999999999999e-01 2 0 0 -290 0 V -185 0 0 0 0 0 0 1 0 P 558 310 4.9819860649910869e-01 -1.2004428937990931e-01 -2.2262207025129339e+01 2.2273664932865191e+01 4.9767000000000000e-01 2 0 0 -291 0 V -186 0 0 0 0 0 0 2 0 P 559 -211 1.0315590864374751e+00 1.7708787866707404e-01 -3.2895232424109153e+01 3.2912175107194670e+01 1.3957000000000000e-01 1 0 0 0 0 P 560 111 9.2275620017371898e-02 3.0831317793913571e-01 -4.8658027578874066e+00 4.8783017418775163e+00 1.3497999999999999e-01 2 0 0 -292 0 V -187 0 -7.0741300543783158e-05 5.9049858738789230e-06 -6.4575241041734425e-03 6.4579362968639319e-03 0 2 0 P 561 22 -4.3122018398235895e-01 6.7786619052734004e-02 -4.3138976594389220e+01 4.3141185049602633e+01 0 1 0 0 0 0 P 562 22 -1.3493235018779204e-01 -2.0528190227745505e-02 -8.5414930596835692e+00 8.5425834402915726e+00 0 1 0 0 0 0 V -188 0 0 0 0 0 0 2 0 P 563 2112 -6.5029200838926882e-01 -8.1676038993739863e-01 -5.6743995033190629e+01 5.6761375435611214e+01 9.3957000000000002e-01 1 0 0 0 0 P 564 111 -4.2611363904509653e-01 -3.5367925641122122e-02 -1.4922027360671496e+01 1.4928762302233000e+01 1.3497999999999999e-01 2 0 0 -293 0 V -189 0 0 0 0 0 0 2 0 P 565 -211 2.3438402297519112e-01 6.6462033795879477e-02 -1.3923090807615925e+01 1.3925921531237400e+01 1.3957000000000000e-01 1 0 0 0 0 P 566 211 -2.7484196988783532e-01 -2.4954256764865332e-01 -7.2261714681862529e+01 7.2262803005068150e+01 1.3957000000000000e-01 1 0 0 0 0 V -190 0 -5.1748972154501837e-05 -4.2263922048336308e-05 -1.1109569924783390e-02 1.1109774235445043e-02 0 2 0 P 567 22 -2.9526404908716708e-01 -1.7760320799281998e-01 -5.0589544170047347e+01 5.0590717558573374e+01 0 1 0 0 0 0 P 568 22 -5.0887460088803826e-01 -4.7914516407411978e-01 -1.2204450418260750e+02 1.2204650562234949e+02 0 1 0 0 0 0 V -191 0 -5.3567767590522369e-08 -5.2446692501927056e-08 -1.0670311393181813e-05 1.0670579063421568e-05 0 2 0 P 569 22 -1.9261718227274674e-01 -1.5029865297508924e-01 -4.2271359673568597e+01 4.2272065713851667e+01 0 1 0 0 0 0 P 570 22 -5.6056800659654560e-01 -5.8712375184849064e-01 -1.0775767576060032e+02 1.0776073327570053e+02 0 1 0 0 0 0 V -192 0 0 0 0 0 0 2 0 P 571 211 -5.9877539862733375e-01 -5.9682146906475386e-01 -2.0534585012454954e+02 2.0534763785104226e+02 1.3957000000000000e-01 1 0 0 0 0 P 572 -211 -6.5120463461434197e-01 2.4129631172411886e-01 -7.8735450326077824e+01 7.8738636699027012e+01 1.3957000000000000e-01 1 0 0 0 0 V -193 0 -3.5929655810774699e-05 -1.7679172926038863e-04 -4.6947776072602025e-02 4.6948157572992456e-02 0 2 0 P 573 22 -4.2414583450158937e-02 -3.4741791798679866e-02 -2.1691559911704566e+01 2.1691629200962641e+01 0 1 0 0 0 0 P 574 22 -4.2329921655815464e-02 -3.8224321028163954e-01 -8.9040534769415657e+01 8.9041365295673629e+01 0 1 0 0 0 0 V -194 0 0 0 0 0 0 3 0 P 575 211 -1.3608698926320040e-01 -2.2038304875892764e-01 -2.2744689064358603e+01 2.2746592025533865e+01 1.3957000000000000e-01 1 0 0 0 0 P 576 -211 1.9477542386304672e-01 9.1140524730409497e-02 -1.3978483656696156e+01 1.3980834352298531e+01 1.3957000000000000e-01 1 0 0 0 0 P 577 111 -1.4394557519001408e-01 -2.4862444016505553e-01 -1.5534477702292614e+01 1.5537720280797005e+01 1.3497999999999999e-01 2 0 0 -294 0 V -195 0 -3.3018070619981395e-05 5.2352132968248231e-05 -1.3730004796514178e-03 1.3744591602294640e-03 0 2 0 P 578 22 -1.9303294423565687e-01 3.2444462559755699e-01 -9.7308516789607307e+00 9.7381723352265777e+00 0 1 0 0 0 0 P 579 22 -1.4221754109027598e-01 2.0711514321678692e-01 -4.2099712859438103e+00 4.2174614094280516e+00 0 1 0 0 0 0 V -196 0 0 0 0 0 0 2 0 P 580 -211 1.1405001867233826e-01 -4.5496117490790650e-01 -4.1651655002844350e+01 4.1654529661710278e+01 1.3957000000000000e-01 1 0 0 0 0 P 581 111 -2.5912207693863049e-01 7.6583517881619240e-02 -7.8366353446289185e+00 7.8424538513819337e+00 1.3497999999999999e-01 2 0 0 -295 0 V -197 0 1.2576602670473805e-05 1.6346351882958155e-05 -2.6872762867945934e-03 2.6873837235474626e-03 0 2 0 P 582 22 1.1415347511089426e-01 1.0245451033400152e-01 -2.4861830511187080e+01 2.4862303680664041e+01 0 1 0 0 0 0 P 583 22 2.3511229901954533e-02 7.6474232901780681e-02 -4.5533547341987726e+00 4.5540575777738912e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 584 -321 -4.4871270349523579e-01 5.2189697066577501e-01 -1.5196069305393312e+01 1.5219654491235499e+01 4.9359999999999998e-01 1 0 0 0 0 P 585 211 1.9247654539199002e-01 -1.8280473523702850e-02 -6.6917481291579728e+00 6.6959953856934158e+00 1.3957000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 586 310 7.9057852548599702e-03 -3.0449764512830235e-01 -1.9953118524937548e+02 1.9953203838924421e+02 4.9767000000000000e-01 2 0 0 -296 0 V -200 0 0 0 0 0 0 2 0 P 587 211 -5.3565751795831576e-02 8.9737146601188672e-02 -8.7105628333560531e+01 8.7105802844670052e+01 1.3957000000000000e-01 1 0 0 0 0 P 588 111 1.0343960116592206e+00 -1.7371288165232837e-01 -3.7797763815097136e+02 3.7797911756214950e+02 1.3497999999999999e-01 2 0 0 -297 0 V -201 0 8.5427602881791819e-06 -4.4690631127596779e-05 1.5367988763929943e-04 1.6049984409204106e-04 0 2 0 P 589 22 4.0132592586302807e-02 -6.0273680300029768e-02 1.5838046070518993e-01 1.7414910811656939e-01 0 1 0 0 0 0 P 590 22 9.5328947009745285e-02 -6.4838037223615108e-01 2.2785033429259545e+00 2.3708779384362719e+00 0 1 0 0 0 0 V -202 0 8.7185132645761819e-05 4.4101112404051206e-05 1.1450231546746889e-03 1.1499447245944337e-03 0 2 0 P 591 22 3.6278290884652308e-02 -2.5574358847724538e-02 3.7451975540042798e-01 3.7714083497438999e-01 0 1 0 0 0 0 P 592 22 2.4514207040011821e-01 1.6792604897171357e-01 3.3214410132460914e+00 3.3347060135904831e+00 0 1 0 0 0 0 V -203 0 -2.0248433039696075e-05 -1.8666188852851391e-05 4.7281479203795844e-04 4.7371595407614533e-04 0 2 0 P 593 22 -2.9058193598023324e-01 -2.2113718261345211e-01 5.7685539551942711e+00 5.7800998476704279e+00 0 1 0 0 0 0 P 594 22 9.5047181983291124e-03 -3.7976222313500854e-02 7.9479176205801672e-01 7.9575528786463057e-01 0 1 0 0 0 0 V -204 0 0 0 0 0 0 1 0 P 595 310 -3.0701266890809709e-01 2.9121157594026353e-01 2.9838704860891902e+01 2.9845854723313682e+01 4.9767000000000000e-01 2 0 0 -298 0 V -205 0 1.3053499038434558e-06 -4.7956004741155920e-05 1.0322055463705773e-03 1.0339075512474807e-03 0 2 0 P 596 22 -1.1967239816998756e-02 -1.9897220225271009e-01 3.8326202111065446e+00 3.8378002598729002e+00 0 1 0 0 0 0 P 597 22 1.7021980614161589e-02 1.3270902608591409e-02 1.6441649984327494e-01 1.6582716936856046e-01 0 1 0 0 0 0 V -206 0 0 0 0 0 0 1 0 P 598 130 -1.9308911965262565e-01 -3.4757950625145495e-01 2.4816204561631380e+02 2.4816286316615466e+02 4.9767000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 1 0 P 599 130 -1.8749321654064371e-01 3.9747019247661358e-01 1.5163837301620137e+02 1.5163982650573590e+02 4.9767000000000000e-01 1 0 0 0 0 V -208 0 -7.3545578421196197e-06 -2.4198019572646348e-05 1.9591417941596367e-03 1.9593257270939116e-03 0 2 0 P 600 22 -6.9096391666292639e-02 -2.1669347747310225e-01 1.2454598376178428e+01 1.2456674961097244e+01 0 1 0 0 0 0 P 601 22 -4.1136549831071227e-02 -1.4599574642928639e-01 1.6909772319748878e+01 1.6910452592389504e+01 0 1 0 0 0 0 V -209 0 -1.6664262527451339e-04 3.2729997608570285e-04 9.9084400393113364e-02 9.9085108185197404e-02 0 2 0 P 602 22 -9.5527437186425937e-02 1.0350811802137720e-01 2.8338216662017654e+01 2.8338566706966791e+01 0 1 0 0 0 0 P 603 22 -2.1148682465936658e-01 4.9949342731893170e-01 1.5421005990895395e+02 1.5421101386569023e+02 0 1 0 0 0 0 V -210 0 -3.9874758271357818e-05 3.1598438812486589e-05 9.4205315542546884e-03 9.4206962654955536e-03 0 2 0 P 604 22 -2.1932153126460108e-01 2.0833469943704619e-01 4.9567648193879336e+01 4.9568571219607037e+01 0 1 0 0 0 0 P 605 22 -1.7872750369508542e-02 -2.0371955089307083e-02 6.4702141403971769e+00 6.4702708965201383e+00 0 1 0 0 0 0 V -211 0 -9.1685602132932057e-05 1.3493632294125417e-04 3.7217792334514638e-02 3.7218218518919412e-02 0 2 0 P 606 22 -7.9142682636384395e-02 2.7258083974024339e-02 2.4476833457446094e+01 2.4476976583534768e+01 0 1 0 0 0 0 P 607 22 -9.3992510030384127e-02 2.2754993087990205e-01 4.5803663115237605e+01 4.5804324777657882e+01 0 1 0 0 0 0 V -212 0 5.5736878854914609e-06 -2.6090225664471050e-05 3.2484607656651463e-04 3.2675033009296869e-04 0 2 0 P 608 22 3.5864368924134998e-02 -7.4996549266086940e-02 3.7159257303614063e-01 3.8077785609954601e-01 0 1 0 0 0 0 P 609 22 -3.1552931572521601e-03 -7.8113417701323767e-02 1.5347601236491446e+00 1.5367499142812493e+00 0 1 0 0 0 0 V -213 0 -8.0270789140980223e-02 -1.0870580257174016e-01 -2.3449249045574708e-01 2.7096297845175304e-01 0 2 0 P 610 113 -7.1776982547405241e+00 -9.4669674893014157e+00 -1.9920710638028854e+01 2.3204247422799391e+01 6.7790888386345871e-01 2 0 0 -299 0 P 611 211 -2.3753759995203185e+00 -3.0658288796608502e+00 -7.4714205197956165e+00 8.4192233743370100e+00 1.3957000000000000e-01 1 0 0 0 0 V -214 0 -1.4548522882160786e-03 -1.9478865467396887e-03 -4.4490324533180085e-03 5.0707112538873412e-03 0 2 0 P 612 22 -1.0636553434022067e+00 -1.5101170360224663e+00 -3.2880820144847775e+00 3.7713789899732451e+00 0 1 0 0 0 0 P 613 22 -1.2244825466491143e+00 -1.5534469073531612e+00 -3.7091917382942814e+00 4.2036481956086611e+00 0 1 0 0 0 0 V -215 0 3.0443892782542165e-06 -2.5677071644633344e-06 -3.1956626503578905e-05 3.2364123241765707e-05 0 2 0 P 614 22 1.3891468319334277e-01 -7.3522648878526220e-02 -1.2557676018512283e+00 1.2655651460766479e+00 0 1 0 0 0 0 P 615 22 -1.1177023649633699e-02 -3.4214198680681165e-02 -8.5080858507449120e-02 9.2381219592459235e-02 0 1 0 0 0 0 V -216 0 1.2383366184445826e+02 -1.7317649451353752e+00 -2.8776385009384938e+02 3.2011887638175028e+02 0 2 0 P 616 2212 1.8448567428580156e+00 6.7536337671287486e-02 -4.2947135576457640e+00 4.7679107262721550e+00 9.3827000000000005e-01 1 0 0 0 0 P 617 -211 2.5466334288667425e-01 -9.6897298430625486e-02 -5.8413742862423523e-01 6.5949891969062624e-01 1.3957000000000000e-01 1 0 0 0 0 V -217 0 7.0879124590013865e-06 -5.4509960902592783e-07 -6.3065249648550163e-06 1.1384872146791723e-05 0 2 0 P 618 22 1.7198420923170446e-01 1.0327375200384511e-02 -1.2826255929402863e-01 2.1479410378368963e-01 0 1 0 0 0 0 P 619 22 -1.9385626906399812e-02 -2.2063048862352091e-02 -7.5132103141085302e-03 3.0315490840174351e-02 0 1 0 0 0 0 V -218 0 6.0155066333808655e+01 -7.5075992586725881e+00 -2.6884530693165141e+02 2.8227202035911358e+02 0 2 0 P 620 -2212 9.7890790029536912e-01 -2.1059046764084263e-01 -4.3695675314677800e+00 4.5799650683470619e+00 9.3827000000000005e-01 1 0 0 0 0 P 621 211 1.2077204174222408e-01 7.3345895890142135e-02 -5.4512726586000748e-01 5.8018016804654771e-01 1.3957000000000000e-01 1 0 0 0 0 V -219 0 1.6346769192479026e-04 7.7692278534247750e-05 -4.2566725080817232e-04 4.6513614437181523e-04 0 2 0 P 622 22 1.6000714280519773e-01 1.4965794855747838e-01 -5.0930437993370803e-01 5.5442829900247215e-01 0 1 0 0 0 0 P 623 22 2.9027305843462620e-01 6.4349445816677009e-02 -6.6321805002322509e-01 7.2681323701932843e-01 0 1 0 0 0 0 V -220 0 2.5132656293451032e+02 6.6793105112535443e+02 -2.3052321409529322e+03 2.4168236242349863e+03 0 2 0 P 624 22 2.7138731489588741e-01 8.3368780614542326e-01 -2.9430742615712737e+00 3.0708911641289514e+00 0 1 0 0 0 0 P 625 22 1.9791856352780016e-01 3.2497451101261293e-01 -1.3174335773052095e+00 1.3712809417504483e+00 0 1 0 0 0 0 V -221 0 0 0 0 0 0 1 0 P 626 310 3.9124638275850815e-01 1.4461643018130510e+00 -5.6236803270724449e+00 5.8410547651825429e+00 4.9767000000000000e-01 2 0 0 -300 0 V -222 0 2.1621347651061346e-05 2.6515192111270980e-04 -1.1950098120818958e-03 1.2244434366412353e-03 0 2 0 P 627 22 1.4896621919607728e-01 1.6485174493832422e+00 -7.5038061207442697e+00 7.6841985276996700e+00 0 1 0 0 0 0 P 628 22 -9.8748367263056559e-03 5.7220225588755162e-02 -1.8376125525385498e-01 1.9271706086714707e-01 0 1 0 0 0 0 V -223 0 1.2133214235826803e-05 4.5020383892752265e-04 -1.6367453454280046e-03 1.6980949770470995e-03 0 3 0 P 629 22 2.6041221984119772e-02 5.4194206004634815e-02 -1.8445141730855791e-01 1.9400382097792501e-01 0 1 0 0 0 0 P 630 -11 1.2884248792706507e-02 1.3818345386166659e+00 -5.0380662045036342e+00 5.2241500779593366e+00 5.1000000000000004e-04 1 0 0 0 0 P 631 11 1.0695751645324451e-04 1.2272481974508609e-02 -4.2875709918109642e-02 4.4600581327005707e-02 5.1000000000000004e-04 1 0 0 0 0 V -224 0 7.5530520994897515e+01 3.4224903169721279e+02 -1.3601062972308057e+03 1.4078177308945360e+03 0 2 0 P 632 -2212 8.5726416803613237e-01 3.4324325305497032e+00 -1.3678865311220100e+01 1.4160091868557036e+01 9.3827000000000005e-01 1 0 0 0 0 P 633 211 2.0223436177637083e-02 5.4369895792179623e-01 -2.1223816616922990e+00 2.1954501240073396e+00 1.3957000000000000e-01 1 0 0 0 0 V -225 0 1.0158784767389564e-04 1.4546224915671854e-04 -6.2119700642370313e-04 6.4787907732216632e-04 0 2 0 P 634 22 2.0918749513733562e-01 3.6532378531540310e-01 -1.5368915552885414e+00 1.5935044803690512e+00 0 1 0 0 0 0 P 635 22 7.1756742987257024e-02 3.6956425368942565e-02 -1.8104738810961329e-01 1.9822452996918027e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 1 0 P 636 310 2.3758569193716658e-02 -1.1985517959127263e-01 2.9841798130741148e-01 5.9300797140728168e-01 4.9767000000000000e-01 2 0 0 -301 0 V -227 0 1.3794518724144473e-05 -3.0368032128513298e-05 1.5153735399419801e-04 1.5956036745140266e-04 0 2 0 P 637 22 4.1041343856500052e-02 -2.2693394902187115e-02 4.0169384533501988e-02 6.1749182436162148e-02 0 1 0 0 0 0 P 638 22 9.0193176699716517e-03 -8.7512970974836762e-02 5.0976355177422361e-01 5.1729947506018803e-01 0 1 0 0 0 0 V -228 0 -1.6116384393301502e+01 -3.2311127275166602e+00 1.3781439237557126e+02 1.3976487050576691e+02 0 2 0 P 639 211 -2.9410622972311121e-02 1.1106143579725664e-01 1.1348854923019220e+00 1.1491929745705651e+00 1.3957000000000000e-01 1 0 0 0 0 P 640 -211 -4.5759809712737798e-01 -2.0869996535353452e-01 3.0296224521747104e+00 3.0742549799348571e+00 1.3957000000000000e-01 1 0 0 0 0 V -229 0 0 0 0 0 0 1 0 P 641 130 3.9391789184207954e-01 -1.7165530984722288e-01 1.4718494896048986e+00 1.6120338705691810e+00 4.9767000000000000e-01 1 0 0 0 0 V -230 0 -5.1516984398820697e-06 1.5950777247922651e-05 1.0783425334944496e-04 1.1045591159481893e-04 0 2 0 P 642 22 -4.0924905233964970e-02 2.7758088403430106e-02 6.0347062094873349e-01 6.0549331101876880e-01 0 1 0 0 0 0 P 643 22 1.8326648690367118e-04 9.8386873681071407e-02 2.4932467477566880e-01 2.6803507970288759e-01 0 1 0 0 0 0 V -231 0 -5.7424886592840120e-06 4.2219246772408961e-05 2.2237873072570909e-03 2.2242445576449378e-03 0 2 0 P 644 22 -6.8441590527172511e-02 2.0661107795531403e-01 1.3721503023345610e+01 1.3723229124682371e+01 0 1 0 0 0 0 P 645 22 1.5994661136817346e-02 1.7898304086051559e-01 6.5886486901142041e+00 6.5910987187148233e+00 0 1 0 0 0 0 V -232 0 -5.4790831178444074e-05 4.1813948169173148e-06 7.2558167952333540e-03 7.2570177911066586e-03 0 2 0 P 646 22 -8.9650570704854993e-02 1.4301400415860905e-02 3.2683115029443730e+00 3.2695721180546036e+00 0 1 0 0 0 0 P 647 22 2.8042122354164284e-02 -9.5997150960505824e-03 4.8903457880053534e+00 4.8904356085544931e+00 0 1 0 0 0 0 V -233 0 4.0708119251087717e-06 -7.6735338995030712e-06 3.2629819693046584e-04 3.2701136692151177e-04 0 2 0 P 648 22 -4.4037760500399925e-02 4.1630426725829664e-03 1.2001735662863420e+00 1.2009884447764934e+00 0 1 0 0 0 0 P 649 22 7.1845057170917007e-02 -5.6580161807618969e-02 1.0287357844834872e+00 1.0327924966937572e+00 0 1 0 0 0 0 V -234 0 9.7037603758038955e+00 1.2985811279295206e+02 5.6741686748944485e+03 5.6757778688999233e+03 0 2 0 P 650 211 8.9007152616111695e-02 5.0927232561166236e-01 1.6404527592402928e+01 1.6413265546187322e+01 1.3957000000000000e-01 1 0 0 0 0 P 651 -211 4.4574905855935966e-02 1.2783557015015705e+00 6.1706132848057351e+01 6.1719547074397717e+01 1.3957000000000000e-01 1 0 0 0 0 V -235 0 8.9003155851400255e-05 -1.4002872163732921e-04 -1.7220742303781776e-04 2.4003532822111098e-04 0 2 0 P 652 22 3.3984155564624946e-01 -4.4633478526624498e-01 -5.1094982253998222e-01 7.5879954180031450e-01 0 1 0 0 0 0 P 653 22 2.3819361645753359e-01 -4.6308831818242785e-01 -6.0745936712301429e-01 8.0012116086480389e-01 0 1 0 0 0 0 V -236 0 -4.8773660992728605e-05 3.0917642735004029e-05 -7.8411085613934936e-06 1.3837290382609895e-04 0 2 0 P 654 22 3.1496586273479524e-02 -2.9958485138355116e-02 -3.7098319082719731e-03 4.3626925532925409e-02 0 1 0 0 0 0 P 655 22 -8.3953577318038944e-02 6.3210992230467514e-02 -4.7234280359786367e-03 1.0519573877143143e-01 0 1 0 0 0 0 V -237 0 1.4659607585947617e-05 2.5407612765214206e-05 4.1175962440226810e-05 5.4327125928404440e-05 0 2 0 P 656 22 1.2902557002318937e-01 1.1727376968501940e-01 2.3183006372547771e-01 2.9007914992791700e-01 0 1 0 0 0 0 P 657 22 -2.9529864975007810e-02 5.5169341827010582e-02 4.7633857120189659e-02 7.8642568289790563e-02 0 1 0 0 0 0 V -238 0 -1.1170819698411185e-04 1.1789332593533173e-04 2.0260283072021476e-01 2.0260291753089416e-01 0 2 0 P 658 22 -9.7060724397603146e-02 1.5650354250261008e-02 8.2715205634083048e+01 8.2715264061758617e+01 0 1 0 0 0 0 P 659 22 -6.3687790848605930e-02 1.5399858479972986e-01 2.0883102912956357e+02 2.0883109562278187e+02 0 1 0 0 0 0 V -239 0 -6.0484361183416758e-05 4.4010977685361591e-05 5.3154879102378226e-02 5.3154954658446739e-02 0 2 0 P 660 22 -6.4661638634425263e-03 -2.9006299360970038e-03 4.7208602910941643e+01 4.7208603442888425e+01 0 1 0 0 0 0 P 661 22 -1.5891352677566276e-01 1.2323788293704709e-01 9.8130411834584763e+01 9.8130617892225658e+01 0 1 0 0 0 0 V -240 0 -2.2075463803085651e-04 8.2194283516618581e-05 1.7508716967151922e-01 1.7508733569449003e-01 0 2 0 P 662 22 -3.2718014148164026e-01 1.7340367853255648e-01 3.0389127701315982e+02 3.0389150261297169e+02 0 1 0 0 0 0 P 663 22 -2.5182066930700164e-01 4.2177553294888009e-02 1.5533175042931740e+02 1.5533196027872449e+02 0 1 0 0 0 0 V -241 0 -3.3152306533488888e-04 -2.0299395117379451e-04 5.1751414917129382e-02 5.1752976743546709e-02 0 2 0 P 664 22 -1.4464434958436422e-02 -1.1096602097860534e-02 8.2846426208269897e+00 8.2846626792694380e+00 0 1 0 0 0 0 P 665 22 -4.2137413444224109e-01 -2.5577048055054213e-01 5.9750631543757294e+01 5.9752664748760303e+01 0 1 0 0 0 0 V -242 0 3.3434264029473197e-05 2.0631929317005527e-05 1.0027319420299471e-03 1.0037966173143862e-03 0 2 0 P 666 22 1.7362678491849617e-01 1.2836055322757087e-01 4.0201951762955712e+00 4.0259895612850514e+00 0 1 0 0 0 0 P 667 22 1.1733337807442068e-02 -1.3976789705760641e-02 1.5389675937311014e+00 1.5390757864449300e+00 0 1 0 0 0 0 V -243 0 3.2195038988539127e-04 1.3501217759885305e-04 1.1159736118201567e-03 1.1788446473141052e-03 0 2 0 P 668 22 1.0488227195272851e-01 1.6188229797445396e-02 1.7425222667642587e-01 2.0402496968663791e-01 0 1 0 0 0 0 P 669 22 1.8549388100361788e-01 1.0558306778467590e-01 8.3227590430826726e-01 8.5920832455508256e-01 0 1 0 0 0 0 V -244 0 7.2237926736003306e-05 5.4074770524908971e-05 4.4580771990161504e-04 4.5726013293686488e-04 0 2 0 P 670 22 9.2881928852908704e-02 8.2166522879657755e-02 9.1693675327392909e-01 9.2528449662474344e-01 0 1 0 0 0 0 P 671 22 1.1500755354354324e-01 7.3452229804276223e-02 3.6602830851954821e-01 3.9063882304882708e-01 0 1 0 0 0 0 V -245 0 2.8266434376899753e-06 -1.3871696277209073e-06 1.0030953012855886e-05 1.1280279507705493e-05 0 2 0 P 672 22 8.5225764681694904e-02 -2.9130338041005378e-02 3.4016470803487442e-01 3.5188639665723692e-01 0 1 0 0 0 0 P 673 22 8.1093958461652803e-03 -1.6673705778724283e-02 -8.9447893077169230e-03 2.0586015183728844e-02 0 1 0 0 0 0 V -246 0 -1.1315635450378558e+01 -1.9969461730050902e+01 6.0942466692380954e+01 7.6281962954732165e+01 0 2 0 P 674 211 -1.2487189949546475e-01 -5.9277008305703954e-02 6.7432386044481973e-01 7.0235262415860933e-01 1.3957000000000000e-01 1 0 0 0 0 P 675 -211 -1.6886544152247124e-02 -1.9089363635215797e-01 8.9142695918608017e-02 2.5328193956299594e-01 1.3957000000000000e-01 1 0 0 0 0 V -247 0 4.7679319632184133e-05 3.0845930566786689e-06 -1.1496542913567814e-06 5.8037354858721265e-05 0 2 0 P 676 22 4.2983124569444031e-02 -5.5170137435020576e-02 8.8403054799354817e-03 7.0494283905363414e-02 0 1 0 0 0 0 P 677 22 1.5247271650634550e-01 6.7815068925668437e-02 -1.3553179912645522e-02 1.6742312127648948e-01 0 1 0 0 0 0 V -248 0 -6.8087721085979392e-06 2.5474205509545705e-05 1.8403514643802315e-05 4.9929032492601460e-05 0 2 0 P 678 22 5.2134627914533882e-02 3.1499795340704795e-02 5.0804964321083661e-02 7.9318351810660770e-02 0 1 0 0 0 0 P 679 22 -7.6196079655863710e-02 5.8523245046069150e-02 1.4231032244806770e-02 9.7125357370759252e-02 0 1 0 0 0 0 V -249 0 -2.3573676811179946e-04 -4.9358870230889456e-05 -3.2589446609987936e-04 4.3017817982823349e-04 0 2 0 P 680 22 -1.6140083078249549e-02 -4.2066737376174813e-02 -1.1459044472904610e-01 1.2313034840545783e-01 0 1 0 0 0 0 P 681 22 -2.0428922743420400e-01 -4.0870375305408959e-03 -1.9014221550727145e-01 2.7911441102073831e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 682 130 -5.1973368732809633e-01 -3.8762673074075715e-01 3.4931254431013603e-01 8.8886009621359852e-01 4.9767000000000000e-01 1 0 0 0 0 V -251 0 0 0 0 0 0 1 0 P 683 310 -4.3569906925706614e-01 2.6175508764466177e-01 3.4264037937023128e-01 7.8957410249723514e-01 4.9767000000000000e-01 2 0 0 -302 0 V -252 0 0 0 0 0 0 1 0 P 684 130 -1.3073618626234031e+00 3.0469383218540291e-01 1.0457365025169274e-01 1.4354944961374543e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -9.3863755276239478e-05 -2.6444268203438574e-05 2.0644642851669833e-05 1.0060329099249187e-04 0 2 0 P 685 22 -2.1525569273736059e-01 -5.8690894609940029e-02 1.0657320768142965e-01 2.4725995017686386e-01 0 1 0 0 0 0 P 686 22 -7.1594693307415536e-01 -2.0365714288584411e-01 9.8237963316778990e-02 7.5080419568842516e-01 0 1 0 0 0 0 V -254 0 -6.2781146590193930e-05 2.8374948443170975e-05 7.0488985187142668e-06 7.1949164203324439e-05 0 2 0 P 687 22 -4.9386992269805759e-02 7.8566833194317828e-02 7.1991510124943640e-03 9.3078730432587603e-02 0 1 0 0 0 0 P 688 22 -3.8511009096948784e-01 1.1781110835714816e-01 4.1585014501766999e-02 4.0486856243721747e-01 0 1 0 0 0 0 V -255 0 -1.2425484713340392e-05 2.2446907428454645e-05 1.5155257665372711e-05 3.0373755352153779e-05 0 2 0 P 689 22 1.2863143956961851e-02 5.0167680902004498e-02 3.0725730574605991e-02 6.0218993672147600e-02 0 1 0 0 0 0 P 690 22 -2.9788373336896007e-01 4.6472819103655982e-01 3.1691144995627646e-01 6.3650599153765441e-01 0 1 0 0 0 0 V -256 0 1.5346697905034857e+01 1.0222308877578146e+02 8.3704853027555828e+01 1.3945703556497617e+02 0 2 0 P 691 111 -7.5563583774502022e-02 1.3714008108319101e-01 1.2012268688296623e-01 2.3909478734663692e-01 1.3497999999999999e-01 2 0 0 -303 0 P 692 111 2.5778940367536790e-01 1.0766510732246366e+00 8.7378398717905847e-01 1.4168101378708429e+00 1.3497999999999999e-01 2 0 0 -304 0 V -257 0 0 0 0 0 0 2 0 P 693 -211 -1.1846260183798001e-01 5.3178435215144104e-01 1.7743015369496629e+00 1.8613043045534730e+00 1.3957000000000000e-01 1 0 0 0 0 P 694 111 3.8525904389271426e-01 5.6217519915991854e-01 4.0942320478194940e+00 4.1527606657793115e+00 1.3497999999999999e-01 2 0 0 -305 0 V -258 0 -3.9303395478081804e-04 8.0945518966822117e-05 3.2724514336032653e-03 3.2975672047970547e-03 0 2 0 P 695 22 -6.7557408869081015e-01 1.2863821728429531e-01 5.1244611152933199e+00 5.1704013250820049e+00 0 1 0 0 0 0 P 696 22 -1.6501247893393284e-01 4.4480962688002827e-02 1.8743711352822205e+00 1.8821463351782008e+00 0 1 0 0 0 0 V -259 0 -3.5231485049734649e-04 6.2803938126744122e-05 5.6240226253386032e-03 5.6356901105777844e-03 0 2 0 P 697 22 -8.2964387644214432e-01 1.5430621789276616e-01 1.3129373252939114e+01 1.3156464623354989e+01 0 1 0 0 0 0 P 698 22 2.1159333104869408e-03 -6.7903988314181414e-03 8.0503846202384224e-02 8.0817423514000300e-02 0 1 0 0 0 0 V -260 0 -1.1598124867373841e-05 1.5123418963463685e-05 1.1693283773730511e-03 1.1694885263984929e-03 0 2 0 P 699 22 -4.2054280009979228e-01 4.6112810122982495e-01 3.7747273127025871e+01 3.7752432026278115e+01 0 1 0 0 0 0 P 700 22 -4.4656582155723386e-02 1.4547039980766921e-01 9.1543463182007940e+00 9.1556109769423077e+00 0 1 0 0 0 0 V -261 0 0 0 0 0 0 1 0 P 701 310 -3.0734084500664027e-01 -2.8921526196721786e-01 8.6242038385307779e+01 8.6244506863594296e+01 4.9767000000000000e-01 2 0 0 -306 0 V -262 0 -9.1331070971355769e-05 1.0859148431551375e-04 1.9673410838678795e-02 1.9673986876691241e-02 0 2 0 P 702 22 -1.4183843319162898e-01 2.5864115154812084e-01 3.9915152507227681e+01 3.9916242471726314e+01 0 1 0 0 0 0 P 703 22 -1.0315005592368916e-01 3.2647052896467466e-02 1.2857240785132456e+01 1.2857695997766212e+01 0 1 0 0 0 0 V -263 0 -1.7171023602270446e-05 1.4761937680772277e-05 2.2251267311103745e-03 2.2253706949256330e-03 0 2 0 P 704 22 1.6179348276306488e-02 -1.1018320490102809e-02 4.4213108511592978e+00 4.4213541836496226e+00 0 1 0 0 0 0 P 705 22 -1.1300440020212679e-01 9.4258866631889371e-02 8.1258742364440444e+00 8.1272065825170738e+00 0 1 0 0 0 0 V -264 0 -1.6265635559818288e-04 5.7015294425032818e-05 2.3255097325631517e-02 2.3255778745785948e-02 0 2 0 P 706 22 -3.5676033850887195e-01 6.3546521818062210e-02 5.0645481578860895e+01 5.0646777986899686e+01 0 1 0 0 0 0 P 707 22 -1.3595149065278572e-01 1.0916182334949798e-01 1.9797886579157041e+01 1.9798654300549170e+01 0 1 0 0 0 0 V -265 0 -1.6125508256071361e-06 1.2839151255089925e-06 3.6159454361884338e-04 3.6160706157020478e-04 0 2 0 P 708 22 -1.1476849282818859e-01 8.0442852495838643e-02 1.2957640638472929e+01 1.2958398580660683e+01 0 1 0 0 0 0 P 709 22 1.5463680767927847e-02 -1.3762282286671709e-03 9.3102331090508841e+00 9.3102460528330990e+00 0 1 0 0 0 0 V -266 0 -1.3212125393884745e-04 4.1780965361137819e-05 1.0391748159620304e-02 1.0392731740027647e-02 0 2 0 P 710 22 -5.8247294722482273e-02 3.7185402405611613e-02 9.0264704575427661e+00 9.0267349812868041e+00 0 1 0 0 0 0 P 711 22 -4.4788387318008632e-01 1.2286945753476719e-01 3.0782322418525471e+01 3.0785825802558971e+01 0 1 0 0 0 0 V -267 0 -9.6959523827786057e-05 3.2298102450830136e-05 1.3875861970051006e-02 1.3876274230777572e-02 0 2 0 P 712 22 -2.3871145028876742e-01 1.0933875514503957e-01 4.2718017539733104e+01 4.2718824429574617e+01 0 1 0 0 0 0 P 713 22 -1.7581864676538703e-01 2.8745004088221410e-02 1.6605318447060725e+01 1.6606274091442238e+01 0 1 0 0 0 0 V -268 0 2.3077687418443355e-05 -5.9842408363628652e-06 3.1475245082673237e-03 3.1476219343323543e-03 0 2 0 P 714 22 1.7350652517602294e-01 -1.1339563749025961e-03 1.6711926019624126e+01 1.6712826723374047e+01 0 1 0 0 0 0 P 715 22 2.9126463292753202e-01 -1.1938516209032880e-01 4.6677380904500978e+01 4.6678442304849831e+01 0 1 0 0 0 0 V -269 0 -5.9969912244787551e-05 -3.9492687051630046e-04 2.1483964232379072e-02 2.1487820418594199e-02 0 2 0 P 716 22 -1.1425792426760528e-01 -6.0337405687419787e-01 3.4412567367428103e+01 3.4418046254015415e+01 0 1 0 0 0 0 P 717 22 1.0983669013300633e-02 -7.6729963722049294e-02 2.5849922913642165e+00 2.5861541475190921e+00 0 1 0 0 0 0 V -270 0 -1.0021773489113527e-06 3.6773363841136873e-06 3.3541604357748141e-04 3.3549010888763418e-04 0 2 0 P 718 22 4.8334287131570368e-03 1.0845349799801614e-01 3.9270320807243659e+00 3.9285323578022711e+00 0 1 0 0 0 0 P 719 22 -2.7645602000187758e-02 -2.4747719853827913e-02 3.7079128894962414e+00 3.7080985322723397e+00 0 1 0 0 0 0 V -271 0 2.2555938759754389e-04 -9.0735957913062773e-05 9.6643352776643772e-03 9.6674437960334644e-03 0 2 0 P 720 22 8.2194453311264593e-01 -3.1925346585784581e-01 3.6723484731766213e+01 3.6734069287723116e+01 0 1 0 0 0 0 P 721 22 1.4906361871482079e-01 -7.1354771448865442e-02 4.8804069818857760e+00 4.8832042528110904e+00 0 1 0 0 0 0 V -272 0 1.2239121329073538e-04 -4.2278918897314214e-05 1.1507733290925561e-03 1.1582768659729498e-03 0 2 0 P 722 22 -1.8970290015830531e-03 -1.5055388412894142e-02 1.2610470008124774e-01 1.2701440399371011e-01 0 1 0 0 0 0 P 723 22 7.0067954851493430e-01 -2.2633260566790508e-01 6.4441405378825305e+00 6.4860716577969182e+00 0 1 0 0 0 0 V -273 0 0 0 0 0 0 1 0 P 724 130 1.3285887983387887e-01 -1.2988847017777436e-01 3.1589300458493286e+00 3.2032853385400242e+00 4.9767000000000000e-01 1 0 0 0 0 V -274 0 0 0 0 0 0 1 0 P 725 130 1.0970025983785177e+00 -1.3923646204422115e+00 1.5018423608376498e+01 1.5130856454498831e+01 4.9767000000000000e-01 1 0 0 0 0 V -275 0 5.2981465206208618e-05 -2.6051528672136483e-05 2.6862623229416855e-04 2.7541470881645608e-04 0 2 0 P 726 22 2.1485240904462147e-01 -7.5545053947552385e-02 1.3168175019475514e+00 1.3363670701882795e+00 0 1 0 0 0 0 P 727 22 2.8161801962087568e-01 -1.6857453687364379e-01 1.2003831866105097e+00 1.2444460125511869e+00 0 1 0 0 0 0 V -276 0 1.8662535717942034e-04 -7.3967096466373564e-05 9.0170018239089651e-04 9.2419885624775769e-04 0 2 0 P 728 22 5.8099441862642198e-01 -2.9702977736814484e-01 2.9663422482387221e+00 3.0372631655496005e+00 0 1 0 0 0 0 P 729 22 3.2088931942021859e-01 -6.0422834976570847e-02 1.3912045684578258e+00 1.4290105057705149e+00 0 1 0 0 0 0 V -277 0 4.3708880450964869e-06 5.8617250216671563e-06 1.7430409712969139e-05 2.1189857495521709e-05 0 2 0 P 730 22 2.8876233369667877e-02 6.3718812619737346e-03 2.0338893182684872e-01 2.0552735904035435e-01 0 1 0 0 0 0 P 731 22 3.2725359614575990e-02 7.6240987163103305e-02 4.2268470881399560e-02 9.3114235840496093e-02 0 1 0 0 0 0 V -278 0 0 0 0 0 0 1 0 P 732 130 4.1932486009736736e-01 -7.7757542521224521e-02 1.2355905018689111e+00 1.3986561017359787e+00 4.9767000000000000e-01 1 0 0 0 0 V -279 0 2.0683365075924828e-05 1.1379393639615303e-05 5.3079538877094814e-05 5.8258017660960785e-05 0 2 0 P 733 22 2.2370594022174664e-01 5.4978947040632532e-02 4.6638669053421311e-01 5.2017648679621054e-01 0 1 0 0 0 0 P 734 22 4.1233307146059883e-01 2.9495145633023478e-01 1.1658746617173599e+00 1.2713294813878997e+00 0 1 0 0 0 0 V -280 0 1.1310177476491042e-04 -2.0655040825297494e-04 -4.2227842043978111e-05 2.4640662100437825e-04 0 2 0 P 735 22 1.8407265456395877e-01 -2.8727467977657778e-01 -1.2208689573351300e-01 3.6237369373176564e-01 0 1 0 0 0 0 P 736 22 7.4794648912420700e-02 -1.8547782413003308e-01 2.5435825277078897e-02 2.0160169631595326e-01 0 1 0 0 0 0 V -281 0 -1.4700597993253632e-05 1.2685642455194824e-04 -9.3392247437607760e-05 1.6035670860584119e-04 0 2 0 P 737 22 -7.3109952604198850e-02 6.0107026445968459e-01 -4.8206006225864700e-01 7.7395893406060889e-01 0 1 0 0 0 0 P 738 22 -2.7887765801124023e-03 5.3885501066105894e-02 -1.2119998892617762e-04 5.3957753746763731e-02 0 1 0 0 0 0 V -282 0 1.0027457256281083e-05 7.9254893413781070e-06 -1.7183659079818968e-05 2.2360665819262489e-05 0 2 0 P 739 22 1.1069900573280639e-01 1.1906935171931492e-01 -1.1248998211812301e-01 1.9770123030984263e-01 0 1 0 0 0 0 P 740 22 9.9766394145597154e-02 4.7278032351589665e-02 -2.4817629520187096e-01 2.7162477656498635e-01 0 1 0 0 0 0 V -283 0 0 0 0 0 0 3 0 P 741 111 -1.4054020615986930e-02 -2.0211825787419890e-01 -1.9139084661724279e-01 3.0967622160966879e-01 1.3497999999999999e-01 2 0 0 -307 0 P 742 111 4.0180539571189576e-02 -3.4538000976303795e-01 -8.3213129736046154e-01 9.1190126842271302e-01 1.3497999999999999e-01 2 0 0 -308 0 P 743 111 -6.8415535895173477e-02 -2.3061969309939392e-01 -6.0608543391571812e-01 6.6590185613338448e-01 1.3497999999999999e-01 2 0 0 -309 0 V -284 0 -1.4158863185077795e-06 -1.8821069715897415e-06 -1.7370363664899330e-05 1.8025206750027503e-05 0 2 0 P 744 22 -2.6045091270492964e-02 -5.3917783874419971e-02 -5.5545703240586597e-01 5.5867520890616607e-01 0 1 0 0 0 0 P 745 22 -1.9469786177971085e-02 -6.5841554670725798e-03 -2.9281734603645872e-03 2.0760488357562369e-02 0 1 0 0 0 0 V -285 0 -1.7825826462675070e-05 -2.8122241876559590e-05 -2.2633251668524498e-04 2.2928200486564400e-04 0 2 0 P 746 22 -1.3742712398946522e-01 -9.5581181786699942e-02 -9.2565152491715186e-01 9.4066610564068209e-01 0 1 0 0 0 0 P 747 22 -1.9461721354123728e-02 -1.5192857972280671e-01 -1.0663485251679274e+00 1.0772930098457285e+00 0 1 0 0 0 0 V -286 0 -2.0908469963070410e-05 -2.2024846704888474e-05 -1.0407651694635464e-04 1.0855940185812882e-04 0 2 0 P 748 22 -3.5180698698593421e-01 -4.5303248591741380e-01 -1.9287589252065189e+00 2.0122419290315068e+00 0 1 0 0 0 0 P 749 22 -1.5537123657823398e-01 -8.1225766637096311e-02 -5.9583245201191537e-01 6.2109110216792274e-01 0 1 0 0 0 0 V -287 0 -4.1270108441440841e-05 -5.2377042209446757e-05 -9.9487398942599259e-04 9.9767815442369573e-04 0 2 0 P 750 22 1.6858965273506908e-02 4.9333173182954642e-03 -2.0371763373381160e-01 2.0447355971851158e-01 0 1 0 0 0 0 P 751 22 -1.8178424322657272e-01 -2.1424457359981358e-01 -3.7720380749572433e+00 3.7824882666479707e+00 0 1 0 0 0 0 V -288 0 0 0 0 0 0 3 0 P 752 211 -1.4326228280558306e-01 -3.4492178089798736e-01 -3.8674670519861611e+00 3.8879655733700926e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 2.0299747584369240e-01 -2.7907831331746541e-01 -6.5563368651106062e+00 6.5668961887539687e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 1.5988912748462913e-01 -3.1760048239482114e-01 -2.5925473475199148e+00 2.6202969200145554e+00 1.3497999999999999e-01 2 0 0 -310 0 V -289 0 2.3294875106603212e-06 -1.1761205345826962e-06 -1.7836947902483599e-04 1.7847004136673598e-04 0 2 0 P 755 22 3.9481646002175998e-02 -3.1094180040680368e-03 -3.2683478298845531e-01 3.2922552182732701e-01 0 1 0 0 0 0 P 756 22 1.8832120904188742e-02 -2.6332258928556292e-02 -4.1382658777640033e+00 4.1383925033403850e+00 0 1 0 0 0 0 V -290 0 8.9973030339620212e+00 -5.2581413033573394e+00 -2.4371087481609959e+02 2.4426483597873059e+02 0 2 0 P 757 22 9.6438898241322429e-02 -3.4373931925650233e-03 -3.5676733699365730e+00 3.5689782223096507e+00 0 1 0 0 0 0 P 758 22 -3.7180548853775704e-02 3.7460846909936896e-02 -1.3848087418196191e+00 1.3858141865648208e+00 0 1 0 0 0 0 V -291 0 1.6577627328317654e+01 -3.9944902821329298e+00 -7.4077800851719087e+02 7.4115927197704309e+02 0 2 0 P 759 211 3.0186003276973922e-02 -1.6122202358659957e-01 -5.2887414917333517e+00 5.2931247941990858e+00 1.3957000000000000e-01 1 0 0 0 0 P 760 -211 4.6801260322213473e-01 4.1177734206690263e-02 -1.6973465533395988e+01 1.6980540138666104e+01 1.3957000000000000e-01 1 0 0 0 0 V -292 0 2.3622753274377673e-05 7.8928823586602414e-05 -1.2456557648674834e-03 1.2488555311212695e-03 0 2 0 P 761 22 -3.5761687902422022e-03 1.1918176313886383e-01 -1.0791423405682410e+00 1.0857095711354885e+00 0 1 0 0 0 0 P 762 22 9.5851788807614094e-02 1.8913141480027187e-01 -3.7866604173191654e+00 3.7925921707420289e+00 0 1 0 0 0 0 V -293 0 -3.1621779485181803e-04 -2.6246443272225528e-05 -1.1073596698956295e-02 1.1078594681123231e-02 0 2 0 P 763 22 -1.7196035307188295e-01 -5.6837166654185103e-02 -7.9704203533057534e+00 7.9724777475344837e+00 0 1 0 0 0 0 P 764 22 -2.5415328597321357e-01 2.1469241013062978e-02 -6.9516070073657437e+00 6.9562845546985201e+00 0 1 0 0 0 0 V -294 0 -5.6511769898403034e-05 -9.7607773876897842e-05 -6.0986996525943509e-03 6.0999726604660824e-03 0 2 0 P 765 22 -5.7313006736648575e-02 -5.2725433735154280e-03 -2.2846674822049109e+00 2.2853923262099549e+00 0 1 0 0 0 0 P 766 22 -8.6632568453365505e-02 -2.4335189679154007e-01 -1.3249810220087703e+01 1.3252327954587052e+01 0 1 0 0 0 0 V -295 0 -1.0203979080214948e-04 3.0157855462789741e-05 -3.0859919023729161e-03 3.0882831745750864e-03 0 2 0 P 767 22 -5.3487604269990212e-02 -2.0249878243436326e-02 -7.5130349806043295e-01 7.5347722432549968e-01 0 1 0 0 0 0 P 768 22 -2.0563447266864024e-01 9.6833396125055565e-02 -7.0853318465684856e+00 7.0889766270564296e+00 0 1 0 0 0 0 V -296 0 8.9633589331151647e-02 -3.4523094159375098e+00 -2.2622289552332704e+03 2.2622386278952731e+03 0 2 0 P 769 211 -4.3435248804844583e-02 7.6071123617136430e-02 -7.5601567106131299e+01 7.5601746686994346e+01 1.3957000000000000e-01 1 0 0 0 0 P 770 -211 5.1341034059704548e-02 -3.8056876874543877e-01 -1.2392961814324417e+02 1.2393029170224985e+02 1.3957000000000000e-01 1 0 0 0 0 V -297 0 1.4432966005698667e-04 -2.4238222956973271e-05 -5.2739360369309797e-02 5.2739566792101483e-02 0 2 0 P 771 22 3.7039594228459044e-01 -1.2547304913284754e-01 -1.4661779341103832e+02 1.4661831495881418e+02 0 1 0 0 0 0 P 772 22 6.6400006937463019e-01 -4.8239832519480837e-02 -2.3135984473993307e+02 2.3136080260333537e+02 0 1 0 0 0 0 V -298 0 -8.5322813819011900e-01 8.0931484567921819e-01 8.2925641749605973e+01 8.2945512147215780e+01 0 2 0 P 773 111 -7.9475591247934560e-02 2.3335052362099015e-01 2.3100914398794252e+01 2.3102623974286946e+01 1.3497999999999999e-01 2 0 0 -311 0 P 774 111 -2.2753707766016254e-01 5.7861052319273389e-02 6.7377904620976485e+00 6.7432307490267354e+00 1.3497999999999999e-01 2 0 0 -312 0 V -299 0 -8.0270789140980223e-02 -1.0870580257174016e-01 -2.3449249045574708e-01 2.7096297845175304e-01 0 2 0 P 775 211 -3.4275248541295915e+00 -4.6128906077881009e+00 -9.0447864896801455e+00 1.0717011188474903e+01 1.3957000000000000e-01 1 0 0 0 0 P 776 -211 -3.7501734006109331e+00 -4.8540768815133157e+00 -1.0875924148348709e+01 1.2487236234324486e+01 1.3957000000000000e-01 1 0 0 0 0 V -300 0 1.2879161363276337e+00 4.7605253931143503e+00 -1.8512193231586785e+01 1.9227752681602070e+01 0 2 0 P 777 -211 -2.2021536389798819e-02 1.2970214437893265e-01 -6.7859944600086552e-01 7.0518408045994796e-01 1.3957000000000000e-01 1 0 0 0 0 P 778 211 4.1326791914830696e-01 1.3164621574341182e+00 -4.9450808810715792e+00 5.1358706847225948e+00 1.3957000000000000e-01 1 0 0 0 0 V -301 0 2.0829364317139150e+00 -1.0507817960952805e+01 2.6162589172588643e+01 5.1989574703330995e+01 0 2 0 P 779 -211 9.8604839859536789e-02 3.9014279776782269e-02 3.2284245436701814e-01 3.6735822260015649e-01 1.3957000000000000e-01 1 0 0 0 0 P 780 211 -7.4846270665820128e-02 -1.5886945936805491e-01 -2.4424473059606669e-02 2.2564974880712521e-01 1.3957000000000000e-01 1 0 0 0 0 V -302 0 -1.2227682238138492e+01 7.3460290869857232e+00 9.6160354164595532e+00 2.2159012745338803e+01 0 2 0 P 781 111 -4.2591839624040111e-02 2.0923395616638354e-01 6.9080732096949990e-03 2.5270582718066981e-01 1.3497999999999999e-01 2 0 0 -313 0 P 782 111 -3.9310722963302602e-01 5.2521131478278235e-02 3.3573230616053629e-01 5.3686827531656522e-01 1.3497999999999999e-01 2 0 0 -314 0 V -303 0 1.5346695727317151e+01 1.0222309272811363e+02 8.3704856489452268e+01 1.3945704245560952e+02 0 2 0 P 783 22 -6.3086068227989706e-02 -1.2832494901748657e-03 1.5068486714375159e-02 6.4873399984754193e-02 0 1 0 0 0 0 P 784 22 -1.2477515546512306e-02 1.3842333057336587e-01 1.0505420016859107e-01 1.7422138736188270e-01 0 1 0 0 0 0 V -304 0 1.5346816090530730e+01 1.0222358237458404e+02 8.3705253620413174e+01 1.3945768511226677e+02 0 2 0 P 785 22 2.2909415378224579e-01 1.0400774804009796e+00 8.5828356185175270e-01 1.3678069926270242e+00 0 1 0 0 0 0 P 786 22 2.8695249893122103e-02 3.6573592823656964e-02 1.5500425327305719e-02 4.9003145243818332e-02 0 1 0 0 0 0 V -305 0 8.1085772322883107e-06 1.1832145390815751e-05 8.6171622166770684e-05 8.7403478567157843e-05 0 2 0 P 787 22 1.2501852261140553e-01 1.7468596576263379e-01 9.4377069225948251e-01 9.6790905419791662e-01 0 1 0 0 0 0 P 788 22 2.6024052128130870e-01 3.8748923339728469e-01 3.1504613555600116e+00 3.1848516115813950e+00 0 1 0 0 0 0 V -306 0 -1.1892951698898400e+00 -1.1191558808547086e+00 3.3372472731662037e+02 3.3373427941277299e+02 0 2 0 P 789 -211 -3.4922037969577679e-01 -2.7459465500508839e-01 4.9879263775171779e+01 4.9881437345331335e+01 1.3957000000000000e-01 1 0 0 0 0 P 790 211 4.1879534689136487e-02 -1.4620606962129471e-02 3.6362774610135993e+01 3.6363069518262954e+01 1.3957000000000000e-01 1 0 0 0 0 V -307 0 -1.0003149768838485e-07 -1.4386055490999077e-06 -1.3622516683369966e-06 2.2041647079169292e-06 0 2 0 P 791 22 3.4216197158117884e-02 -2.4080840127934738e-03 -1.0336714016514214e-02 3.5824498227261539e-02 0 1 0 0 0 0 P 792 22 -4.8270217774104812e-02 -1.9971017386140541e-01 -1.8105413260072858e-01 2.7385172338240721e-01 0 1 0 0 0 0 V -308 0 2.0744100670390408e-07 -1.7831014138998949e-06 -4.2960636137910732e-06 4.7078938997576585e-06 0 2 0 P 793 22 6.2085418939143031e-02 -7.8963450387480941e-02 -3.0055793153480898e-01 3.1689887338144318e-01 0 1 0 0 0 0 P 794 22 -2.1904879367953451e-02 -2.6641655937555697e-01 -5.3157336582565262e-01 5.9500239504126973e-01 0 1 0 0 0 0 V -309 0 -5.5644275467200833e-06 -1.8756946887979136e-05 -4.9294629356025234e-05 5.4159666853417729e-05 0 2 0 P 795 22 -3.3113803700307178e-02 7.4344404720906023e-03 -5.6069445118843445e-02 6.5540655905861431e-02 0 1 0 0 0 0 P 796 22 -3.5301732194866299e-02 -2.3805413357148450e-01 -5.5001598879687463e-01 6.0036120022752293e-01 0 1 0 0 0 0 V -310 0 3.2859991608919263e-05 -6.5272413144451153e-05 -5.3281349035706066e-04 5.3851650927817308e-04 0 2 0 P 797 22 1.4770296209960701e-01 -1.6068171495982933e-01 -1.2986983285627516e+00 1.3169100679800099e+00 0 1 0 0 0 0 P 798 22 1.2186165385022117e-02 -1.5691876743499181e-01 -1.2938490189571634e+00 1.3033868520345455e+00 0 1 0 0 0 0 V -311 0 -8.5324342974446399e-01 8.0935974364294949e-01 8.2930086496507514e+01 8.2949957223049338e+01 0 2 0 P 799 22 -6.3165877035225346e-02 2.2438581054033344e-01 2.2765647579967503e+01 2.2766840989809580e+01 0 1 0 0 0 0 P 800 22 -1.6309714212709211e-02 8.9647130806567270e-03 3.3526681882674864e-01 3.3578298447736543e-01 0 1 0 0 0 0 V -312 0 -8.5327028631112078e-01 8.0932556364509667e-01 8.2926889832822127e+01 8.2946761238170424e+01 0 2 0 P 801 22 -1.0627630327753124e-01 -1.6814553699077826e-02 4.2543749138391664e+00 4.2557353406148799e+00 0 1 0 0 0 0 P 802 22 -1.2126077438263128e-01 7.4675606018351215e-02 2.4834155482584821e+00 2.4874954084118546e+00 0 1 0 0 0 0 V -313 0 -1.2227684095810961e+01 7.3460382128690727e+00 9.6160357177599316e+00 2.2159023767277798e+01 0 2 0 P 803 22 -7.3202126880700824e-02 4.7818249498763392e-02 1.2458614087235441e-02 8.8319609543741004e-02 0 1 0 0 0 0 P 804 22 3.0610287256660710e-02 1.6141570666762015e-01 -5.5505408775404419e-03 1.6438621763692882e-01 0 1 0 0 0 0 V -314 0 -1.2227685216638003e+01 7.3460294849284535e+00 9.6160379602400639e+00 2.2159016813088705e+01 0 2 0 P 805 22 -2.4652918320126765e-01 9.1696980055519739e-02 1.7552275863383371e-01 3.1621703483464897e-01 0 1 0 0 0 0 P 806 22 -1.4657804643175840e-01 -3.9175848577241497e-02 1.6020954752670261e-01 2.2065124048191626e-01 0 1 0 0 0 0 E 61 59 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 389 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 -2.1761972524346498e+00 1.2646348761784136e+00 1.1998833962853546e+03 1.1998860361789070e+03 0 3 0 0 -3 0 P 89 2203 2.1761972524346498e+00 -1.2646348761784136e+00 1.8481346453153305e+03 1.8481365202009952e+03 7.7132999999999996e-01 2 0 0 -11 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -2.6419284738511886e+00 -1.3971590443317590e+00 -2.0357862465309427e+02 2.0360056054712015e+02 0 3 0 0 -4 0 P 91 2 1.3078420068994436e+00 6.5703691258449937e-01 -1.8382894686606235e+02 1.8383506943481999e+02 3.3000000000000002e-01 2 0 0 -13 0 P 93 2103 1.3340864669517449e+00 7.4012213174725960e-01 -5.7310131000013212e+02 5.7310385973338862e+02 7.7132999999999996e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 2 0 P 5 1 -1.9461787074172023e+00 1.7811647442910676e+00 1.1675690021003174e+03 1.1675719827166713e+03 0 3 0 0 -5 0 P 88 21 -1.4045457139153694e-01 -5.2571231135938845e-01 2.2704028292119101e+00 2.3347012502316131e+00 0 2 0 0 -11 0 V -4 0 0 0 0 0 0 11 0 P 6 -2 1.7022551808057094e+00 1.5787579060075629e+00 -4.2804321954438701e-01 2.3607986411719439e+00 0 3 0 0 -5 0 P 11 2 -8.2965446887621042e-01 8.1331023813876879e-01 -2.2345652611489411e+00 2.5400751932809476e+00 3.3000000000000002e-01 2 0 0 -9 0 P 12 21 -6.2560311784056311e-01 2.6080050111655495e-01 3.1770756848093584e-01 7.4855478189946001e-01 0 2 0 0 -9 0 P 13 -2 -1.8580412974999194e-01 3.6513847863810317e-01 -1.6442495497161897e+01 1.6450909016142649e+01 3.3000000000000002e-01 2 0 0 -9 0 P 14 4 2.7313772365132055e-01 -8.7702291836511104e-01 -1.3611939406195235e+01 1.3725110848854730e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 -3.9462060749056282e-01 -2.4009793618268807e-01 1.1284231331482787e-01 4.7550586798655681e-01 0 2 0 0 -11 0 P 16 21 6.6591149548498429e-01 -7.7941919880372179e-01 3.7176552470824209e+00 3.8564093329731404e+00 0 2 0 0 -11 0 P 17 21 -1.1235389644811344e+00 -7.6851401657680396e-01 2.3306744473147837e+01 2.3346462077475241e+01 0 2 0 0 -11 0 P 18 21 1.6557386132851090e-01 1.7191013102364144e-01 8.4446544918981914e-01 8.7754754377136823e-01 0 2 0 0 -11 0 P 90 -4 -1.1095963756520704e+00 -4.5984499855297539e-01 -2.7100237985392504e+01 2.7168282249793879e+01 1.5000000000000000e+00 2 0 0 -13 0 P 92 2 -1.2695530446635768e+00 -1.4529947875330007e+00 -1.4201676697967918e+02 1.4203025720650621e+02 3.3000000000000002e-01 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 8.4988917575927569e-01 3.4299046427405711e+00 1.1627524128936268e+03 1.1654094352967472e+03 7.8571570120895061e+01 3 0 0 -6 0 P 8 22 -1.0938127023707687e+00 -6.9981992441941421e-02 4.3885459871463599e+00 4.5233460610959453e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 8.4988917575927569e-01 3.4299046427405711e+00 1.1627524128936268e+03 1.1654094352967472e+03 7.8571570120895061e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.0938127023707687e+00 -6.9981992441941421e-02 4.3885459871463599e+00 4.5233460610959453e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 94 1 1.7178793178161911e+01 -3.4764533170665284e+00 4.2684799519371063e+02 4.2720781425860389e+02 3.3000000000000002e-01 2 0 0 -17 0 P 95 21 7.3826847704327205e+00 -5.4824608036642031e-01 1.7420892818535438e+02 1.7436615287283877e+02 0 2 0 0 -17 0 P 96 21 9.1050904136171713e+00 -1.5305355131425882e+00 1.9283335392763135e+02 1.9305426075944627e+02 0 2 0 0 -17 0 P 97 21 -1.9678567651654646e+00 -7.6068714063027043e-01 3.2367223489454311e+01 3.2435910062620572e+01 0 2 0 0 -17 0 P 98 21 -1.0616292820696000e+01 -1.2404716771572109e+00 1.3167650969019303e+02 1.3210960467516389e+02 0 2 0 0 -17 0 P 99 21 -7.6927887058749234e-01 -5.5378858133914854e-01 1.2149343334283710e+01 1.2186263382508111e+01 0 2 0 0 -17 0 P 100 21 -2.0074044248734890e+00 8.2073482209260473e-01 3.2367396397630074e+01 3.2439969601319191e+01 0 2 0 0 -17 0 P 101 21 -5.2812755342246396e+00 2.8404755097037531e+00 4.4027013773111094e+01 4.4433524665137028e+01 0 2 0 0 -17 0 P 102 -2 -1.2174570770905433e+01 7.8788766206463761e+00 1.1627464890225930e+02 1.1717593501911057e+02 3.3000000000000002e-01 2 0 0 -17 0 V -9 0 0 0 0 0 0 1 0 P 150 92 -1.6410617164667654e+00 1.4392492178934269e+00 -1.8359353189829903e+01 1.9739538991323059e+01 6.9151303800135411e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 5 0 P 151 323 -1.1806659358811280e+00 1.1958357462719647e+00 -3.3429086485559139e+00 3.8522608412978210e+00 9.1699518678932179e-01 2 0 0 -35 0 P 152 -323 4.2370212143510812e-02 -3.2958903292747654e-01 -4.4453165861140487e-01 9.8914236209108142e-01 8.1876129089751293e-01 2 0 0 -36 0 P 153 213 -2.2617561625123384e-01 5.5285189841619002e-02 -1.8372360496851889e+00 2.0816149888717539e+00 9.5051186106763841e-01 2 0 0 -37 0 P 154 -211 -6.1777160925905639e-01 2.2346406754960108e-01 -8.1160837885275683e+00 8.1438242735211528e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 221 3.4118123278114243e-01 2.9425324715771828e-01 -4.6185930444498187e+00 4.6726965255412383e+00 5.4744999999999999e-01 2 0 0 -38 0 V -11 0 0 0 0 0 69 1 0 P 19 21 7.3901821287688341e-01 1.4514394977505682e+00 -5.0232863852359175e+00 5.2807414860690436e+00 0 2 0 0 -11 0 P 20 21 1.0544424677988353e+00 -2.1583632220478144e+00 -1.5251653258158092e+02 1.5253544863874961e+02 0 2 0 0 -11 0 P 21 21 3.5255532250548289e+00 -9.2775897224324111e-01 -2.1116575373942817e+02 2.1119722018671101e+02 0 2 0 0 -11 0 P 22 21 1.4476080535084890e+00 3.6326832868969130e+00 -3.1321051042241044e+02 3.1323492109917498e+02 0 2 0 0 -11 0 P 23 21 -1.0544424677988353e+00 2.1583632220478144e+00 -4.4580827259748679e+02 4.4581474436930785e+02 0 2 0 0 -11 0 P 24 21 1.3547631267943061e+00 4.7097965478919629e-01 -1.0944957107944379e+03 1.0944966505898437e+03 0 2 0 0 -11 0 P 25 21 -7.5675056117669470e-01 -2.4047076608140090e+00 -8.3580244342702201e+02 8.3580624532778302e+02 0 2 0 0 -11 0 P 26 21 -5.3141194461776187e-01 -2.5032878538284611e+00 -4.8065090618224076e+02 4.8065771861330097e+02 0 2 0 0 -11 0 P 27 21 1.2749048877780658e+00 -1.7844930973198430e+00 -4.1759797030732142e+02 4.1760372915346647e+02 0 2 0 0 -11 0 P 28 21 3.7925725193193016e-01 -9.2701222948507370e-02 -8.2088090818859158e+01 8.2089019264851430e+01 0 2 0 0 -11 0 P 29 21 -8.9637576663032874e+00 -1.5763253072856229e+00 -3.0138524506993332e+02 3.0152263546678938e+02 0 2 0 0 -11 0 P 30 21 -1.4476080535084890e+00 -3.6326832868969130e+00 -3.3929565646237933e+01 3.4154170783110111e+01 0 2 0 0 -11 0 P 31 21 -3.0997929332250225e+00 -3.1755126264291933e+00 -3.0939932391995445e+01 3.1256551522692519e+01 0 2 0 0 -11 0 P 32 21 -3.7027125432634569e+00 -3.3170886342116863e+00 -3.3922136500799930e+01 3.4284464440386984e+01 0 2 0 0 -11 0 P 33 21 -6.3259365930415283e+00 -4.8533399971988445e+00 -4.3887572538951446e+01 4.4605957071553988e+01 0 2 0 0 -11 0 P 34 21 -3.5255532250548289e+00 9.2775897224324111e-01 -2.1509760652029808e+01 2.1816509014067353e+01 0 2 0 0 -11 0 P 35 21 -1.7559887167158099e+00 4.6406540026979964e-01 -7.1851098443443764e+00 7.4111170915223887e+00 0 2 0 0 -11 0 P 36 21 -4.5827034476089628e+00 4.0728621841266435e+00 -1.9469388481179720e+01 2.0411919681664180e+01 0 2 0 0 -11 0 P 37 21 -3.7925725193193016e-01 9.2701222948507370e-02 -8.7807682653831542e-01 9.6096227458870997e-01 0 2 0 0 -11 0 P 38 21 -4.2556600302544254e+00 7.7242358263211019e-01 -8.0114603699197122e+00 9.1044372556960056e+00 0 2 0 0 -11 0 P 39 21 -5.4893715155169334e+00 4.9530471913162222e+00 -1.0589056231904237e+01 1.2914874679887690e+01 0 2 0 0 -11 0 P 40 21 -2.4807144684423488e+00 2.4442475296128827e+00 -3.6816101120048432e+00 5.0677947153346885e+00 0 2 0 0 -11 0 P 41 21 -9.4486147076417870e-01 3.1373383844093374e+00 -1.6698855820928626e+00 3.6775226980270914e+00 0 2 0 0 -11 0 P 42 21 -4.0459595798798995e+00 8.0062862751302713e-02 -1.3049300601676539e+00 4.2519456071242283e+00 0 2 0 0 -11 0 P 43 21 -1.5729659049652869e+00 -7.3316315652137687e-01 -1.2020161553185167e+00 2.1110643737011814e+00 0 2 0 0 -11 0 P 44 21 -1.5373149167735298e+00 -2.9565299056798566e+00 -8.7572656801310444e-01 3.4454757666304601e+00 0 2 0 0 -11 0 P 45 21 -4.3138582662248187e-01 -1.7704037511270563e+00 -1.4079419754619495e+00 2.3027643778040363e+00 0 2 0 0 -11 0 P 46 21 -7.2516018452988973e-01 -1.2027405376275839e+00 -2.2646047539945093e+00 2.6647470397571786e+00 0 2 0 0 -11 0 P 47 21 2.4807144684423488e+00 -2.4442475296128827e+00 -5.5754357402681780e+00 6.5737184267214888e+00 0 2 0 0 -11 0 P 48 21 4.5827034476089628e+00 -4.0728621841266435e+00 -2.5240962680270149e+00 6.6302669048752350e+00 0 2 0 0 -11 0 P 49 21 2.8176867814074563e-01 -1.9680350291721915e+00 4.6547630644502980e-01 2.0418676881452624e+00 0 2 0 0 -11 0 P 50 21 4.7052125184338772e-01 -1.0995336118559742e+00 8.1015319654723272e-01 1.4445458157888285e+00 0 2 0 0 -11 0 P 51 21 -3.2217198919620477e-01 -9.3946148714570421e-01 6.3267741401031485e-01 1.1775667228023374e+00 0 2 0 0 -11 0 P 52 21 -2.6404787874334446e-01 -1.2305094632168205e+00 1.6345420897942953e-01 1.2690910525916173e+00 0 2 0 0 -11 0 P 53 21 1.0342869960701733e+00 -8.4832888802033701e-01 1.2891829235714644e-01 1.3438866836880135e+00 0 2 0 0 -11 0 P 54 21 5.4893715155169334e+00 -4.9530471913162222e+00 3.6642572419649744e+00 8.2518275097136478e+00 0 2 0 0 -11 0 P 55 21 4.3381062366305896e+00 1.4736337309648666e+00 2.8084972715044754e+00 5.3738644398029551e+00 0 2 0 0 -11 0 P 56 21 1.5430095188944017e+00 7.8175532030649386e-01 1.3754650738890271e+00 2.2099601638298343e+00 0 2 0 0 -11 0 P 57 21 8.9637576663032874e+00 1.5763253072856229e+00 1.1468991561039543e+01 1.4641431637712083e+01 0 2 0 0 -11 0 P 58 21 1.5729659049652869e+00 7.3316315652137687e-01 2.9989043696185642e+00 3.4648488235969217e+00 0 2 0 0 -11 0 P 59 21 6.3259365930415283e+00 4.8533399971988445e+00 1.2517301108533355e+01 1.4840997606269003e+01 0 2 0 0 -11 0 P 60 21 2.7732454910324362e+00 -1.5984562912943023e-01 8.5599208813489387e+00 8.9993714599208037e+00 0 2 0 0 -11 0 P 61 21 4.0459595798798995e+00 -8.0062862751302713e-02 1.4305165112080923e+01 1.4866537857480843e+01 0 2 0 0 -11 0 P 62 21 1.5258941605889329e+00 7.7554474933080741e-01 7.5000843129082284e+00 7.6929244990618546e+00 0 2 0 0 -11 0 P 63 21 -4.3381062366305896e+00 -1.4736337309648666e+00 3.4025977072472235e+00 5.7068759624416856e+00 0 2 0 0 -11 0 P 64 21 -8.4975330854836884e-01 -8.7640906212197875e-02 3.3031685575516939e-01 9.1589892402304740e-01 0 2 0 0 -11 0 P 65 21 -3.9785920346254819e+00 1.1437784077546433e+00 1.9618259298096410e+00 4.5810680635529248e+00 0 2 0 0 -11 0 P 66 21 -1.4895374277647224e+00 6.2110966388890820e-01 1.9935864202495934e+00 2.5649338740583016e+00 0 2 0 0 -11 0 P 67 21 -4.2167607847215720e+00 2.3768997180064368e+00 6.9954019681914490e+00 8.5068426858383575e+00 0 2 0 0 -11 0 P 68 21 -1.0342869960701733e+00 8.4832888802033701e-01 5.3317012989822894e+00 5.4969491751387984e+00 0 2 0 0 -11 0 P 69 21 -1.5673459367839202e+00 1.1359022784931281e+00 8.3167894850534196e+00 8.5390769179422481e+00 0 2 0 0 -11 0 P 70 21 -2.7732454910324362e+00 1.5984562912943023e-01 1.3837338523465556e+01 1.4113411302433848e+01 0 2 0 0 -11 0 P 71 21 -3.8096426348625321e+00 -2.0879851426381189e+00 2.2560401141900225e+01 2.2974872331412264e+01 0 2 0 0 -11 0 P 72 21 -3.2325335268172402e+00 -3.7710503431638615e-01 2.5869780598438744e+01 2.6073684615340845e+01 0 2 0 0 -11 0 P 73 21 -1.5430095188944017e+00 -7.8175532030649386e-01 2.2501212718981524e+01 2.2567600527771713e+01 0 2 0 0 -11 0 P 74 21 -5.9118361077007382e+00 -3.6396144293199360e+00 7.0431478127792630e+01 7.0772803467321822e+01 0 2 0 0 -11 0 P 75 21 -5.2455268392268906e-01 -1.4631887325702790e+00 4.4776518248211579e+00 4.7397724259351692e+00 0 2 0 0 -11 0 P 76 21 -8.0574954781221741e-01 -2.4522127576777657e+00 1.2202720630393827e+01 1.2472729072907674e+01 0 2 0 0 -11 0 P 77 21 -1.5913955272348074e-01 -1.7271403759215933e+00 1.3176371684317429e+01 1.3290037999895326e+01 0 2 0 0 -11 0 P 78 21 3.9785920346254819e+00 -1.1437784077546433e+00 6.0206671762289631e+01 6.0348825575284515e+01 0 2 0 0 -11 0 P 79 21 3.2325335268172402e+00 3.7710503431638615e-01 3.4359971491196831e+01 3.4513752651439731e+01 0 2 0 0 -11 0 P 80 21 5.9118361077007382e+00 3.6396144293199360e+00 9.5578475154811315e+01 9.5830274507993096e+01 0 2 0 0 -11 0 P 81 21 3.8096426348625321e+00 2.0879851426381189e+00 2.0497875747038239e+02 2.0502478892334722e+02 0 2 0 0 -11 0 P 82 21 2.2062799642494735e+00 -2.1502513966985562e-02 2.5565902091748467e+02 2.5566854149489259e+02 0 2 0 0 -11 0 P 83 21 1.5673459367839202e+00 -1.1359022784931281e+00 2.6793841758850505e+02 2.6794540949063474e+02 0 2 0 0 -11 0 P 84 21 4.2167607847215720e+00 -2.3768997180064368e+00 8.2427038528615969e+02 8.2428459817200223e+02 0 2 0 0 -11 0 P 85 21 1.6838617712001283e-01 -7.8741719200769533e-01 1.5491467859409363e+02 1.5491677127945266e+02 0 2 0 0 -11 0 P 86 21 -1.5258941605889329e+00 -7.7554474933080741e-01 1.6858259067090808e+02 1.6859128002350084e+02 0 2 0 0 -11 0 P 87 21 -2.2062799642494735e+00 2.1502513966985562e-02 7.9156194292153702e+02 7.9156501793305483e+02 0 2 0 0 -11 0 P 156 92 -1.6244422992564662e+01 -2.8236038565520484e+01 4.3304114031987046e+02 9.6562621344015024e+03 9.6464922445371030e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 153 0 P 157 423 1.8935712759740975e-01 -1.0152607351604783e+00 -7.9225676026494742e+00 8.2377504690711252e+00 2.0066999999999999e+00 2 0 0 -39 0 P 158 323 -1.4503524676338456e-01 2.7061780135505537e-01 -4.6234326275806454e+00 4.7563035952395616e+00 1.0733244668307671e+00 2 0 0 -40 0 P 159 -313 4.5946130344798214e-01 -2.6275779203105570e-01 5.6012485776336836e-02 9.9694611830684166e-01 8.4298150490095614e-01 2 0 0 -41 0 P 160 -213 -4.6238031603124799e-02 -1.7085934731652239e-01 8.6140980932267652e-01 1.1758761112297520e+00 7.8059393876170635e-01 2 0 0 -42 0 P 161 323 1.8101017019532184e-01 -3.8121475860184201e-01 2.0055916323337428e-01 1.0831988989014218e+00 9.7724434136728644e-01 2 0 0 -43 0 P 162 -313 -5.8213375183864069e-01 -1.2237706297249001e-01 6.2994741176187565e+00 6.3880300796693508e+00 8.7732450646285476e-01 2 0 0 -44 0 P 163 2112 -1.4222028727128336e-01 -1.8351576300998151e-01 6.1372867349853948e+00 6.2131300403027412e+00 9.3957000000000002e-01 1 0 0 0 0 P 164 -2212 -1.1446927817727925e-01 -7.6673454809105923e-01 8.5180988061938550e+00 8.6046117255727470e+00 9.3827000000000005e-01 1 0 0 0 0 P 165 221 2.2860520323397335e-01 3.1993565090983150e-01 8.2126315480921286e-01 1.0624470959139212e+00 5.4744999999999999e-01 2 0 0 -45 0 P 166 113 -1.9829225656426819e-01 1.8073943022898453e-01 1.6000659017871703e+00 1.8040855785057361e+00 7.8900400750410560e-01 2 0 0 -46 0 P 167 323 -1.4763137653338605e-02 -1.4369623584594619e-02 1.1849721663508588e+00 1.4859153577063455e+00 8.9630406611037705e-01 2 0 0 -47 0 P 168 3122 1.2702466095556017e-01 2.2098905669912514e-01 -5.8004760379895182e-01 1.2830309866657741e+00 1.1156800000000000e+00 2 0 0 -48 0 P 169 -2112 -2.1008067898201740e-02 -2.6547051703308316e-01 -4.6597622307171377e-02 9.7769067584554059e-01 9.3957000000000002e-01 1 0 0 0 0 P 170 3114 -1.8789140048474837e-01 3.4354106177151844e-01 -4.3024289191041873e+00 4.5341463488959297e+00 1.3763229525671110e+00 2 0 0 -49 0 P 171 -3112 2.4486622564485966e-01 4.6219860093738491e-01 -1.4129525556636063e+01 1.4189818251986233e+01 1.1974400000000001e+00 2 0 0 -50 0 P 172 2112 7.1486712390118867e-01 -5.2798784127094611e-01 -2.2376329532336001e+01 2.2413672641714854e+01 9.3957000000000002e-01 1 0 0 0 0 P 173 -2212 8.5165879798413435e-01 -1.1057567489718496e+00 -9.3782713295601141e+01 9.3797791468530349e+01 9.3827000000000005e-01 1 0 0 0 0 P 174 111 1.1848698942215630e+00 6.7205544007959739e-01 -6.8196759935069863e+01 6.8210496702653657e+01 1.3497999999999999e-01 2 0 0 -51 0 P 175 2212 8.1262986312875918e-01 1.1123405771721493e+00 -1.4146113077330961e+02 1.4147094945291906e+02 9.3827000000000005e-01 1 0 0 0 0 P 176 -3122 1.0935555896390716e+00 -1.3243389807910024e+00 -1.0129676325872164e+02 1.0131746505968047e+02 1.1156800000000000e+00 2 0 0 -52 0 P 177 -311 1.6936740025665228e-01 1.3537065254110459e+00 -2.0281735211662144e+02 2.0282255101861756e+02 4.9767000000000000e-01 2 0 0 -53 0 P 178 -213 -9.2954557824072567e-02 -2.5671849854782613e-01 -7.6953212787537268e+01 7.6957932788940724e+01 8.0741308251238819e-01 2 0 0 -54 0 P 179 213 7.4834976803763664e-01 6.2699742279391935e-01 -2.8180481484092394e+02 2.8180758730793025e+02 7.8066871703550855e-01 2 0 0 -55 0 P 180 111 1.4639077276344323e-01 3.7063920285547641e-01 -2.8460242779421929e+01 2.8463352619483913e+01 1.3497999999999999e-01 2 0 0 -56 0 P 181 -211 -2.3841350928591021e-02 2.1519458386081997e-01 -2.0643308233404856e+01 2.0644915396368130e+01 1.3957000000000000e-01 1 0 0 0 0 P 182 111 4.9368041513470379e-01 3.8861413783842758e-01 -7.4506837878096704e+01 7.4509609121869644e+01 1.3497999999999999e-01 2 0 0 -57 0 P 183 223 -1.4385318636464356e-01 1.4423923289585161e+00 -2.5723875926356862e+02 2.5724404065832687e+02 7.8485501391546519e-01 2 0 0 -58 0 P 184 211 3.4972697996780579e-02 -1.0946302985158456e-02 -2.9783126635189171e+02 2.9783130130909268e+02 1.3957000000000000e-01 1 0 0 0 0 P 185 111 -3.4653544015174792e-01 -1.6026717660006456e-01 -2.9925682517830535e+02 2.9925709917690904e+02 1.3497999999999999e-01 2 0 0 -59 0 P 186 331 6.5150762395860462e-01 -7.4409103863919623e-01 -4.0338164870657425e+02 4.0338399810811387e+02 9.5774881613952512e-01 2 0 0 -60 0 P 187 1114 -5.8214616185039800e-02 -6.7285283351201097e-01 -3.7315259909799863e+02 3.7315525133460119e+02 1.2342062714835553e+00 2 0 0 -61 0 P 188 223 3.7905378970309149e-02 -8.9654171200383614e-01 -3.7071261053757331e+02 3.7071454188719395e+02 7.9166355888193962e-01 2 0 0 -62 0 P 189 -2114 -1.9696164298755179e-02 -1.1605094909725167e+00 -3.0991925219963747e+02 3.0992396918971156e+02 1.2556369321095799e+00 2 0 0 -63 0 P 190 323 2.6721090661803748e-01 -1.1586405060101759e+00 -2.7254121663322684e+02 2.7254529644768974e+02 9.0000130490381947e-01 2 0 0 -64 0 P 191 -323 -5.2799809068369334e-02 -1.2932104476193651e+00 -2.5694816972722629e+02 2.5695306741654758e+02 9.1746799380607502e-01 2 0 0 -65 0 P 192 223 -8.9091405252844658e-01 -1.3647531183736691e-01 -5.6417752577178334e+01 5.6430236380806946e+01 7.7228153823629953e-01 2 0 0 -66 0 P 193 221 6.9819349376199602e-02 6.7264754101654138e-03 -2.9153308853790833e+01 2.9158532861137548e+01 5.4744999999999999e-01 2 0 0 -67 0 P 194 221 -9.2039531123617324e-01 -5.5605123664145406e-01 -5.4772089313911231e+01 5.4785379343582946e+01 5.4744999999999999e-01 2 0 0 -68 0 P 195 2114 -1.0994465239552087e+00 -7.3933341060372873e-02 -4.6529066280766585e+01 4.6556284552720619e+01 1.1486398895931362e+00 2 0 0 -69 0 P 196 113 -3.1009690111552768e+00 -1.4302122753767947e+00 -1.1001788416789687e+02 1.1007459792365441e+02 9.0595546944886729e-01 2 0 0 -70 0 P 197 -1114 -3.1981461578049379e+00 -6.4500512329872628e-01 -8.2136414114458901e+01 8.2209755770542827e+01 1.1871182816601020e+00 2 0 0 -71 0 P 198 113 -1.3330510209105628e+00 -1.8594798248502378e+00 -1.5999676324310521e+01 1.6197900904188234e+01 1.0712893987263921e+00 2 0 0 -72 0 P 199 223 -2.5994206336172399e+00 -2.4136781891036727e+00 -2.2931385844329558e+01 2.3217507351368031e+01 7.8826444692157260e-01 2 0 0 -73 0 P 200 -213 -3.0370316371073800e+00 -3.8397627268515011e+00 -3.4126722310375762e+01 3.4486033501586810e+01 8.2824637624306796e-01 2 0 0 -74 0 P 201 2224 -2.4950283203538586e+00 -1.8750666735856503e+00 -2.5922413747631047e+01 2.6143319891088588e+01 1.3268756816890248e+00 2 0 0 -75 0 P 202 -2224 -2.3785186192017052e+00 -1.3597841462199265e+00 -1.6842317855223385e+01 1.7099539318945492e+01 1.1064404356250441e+00 2 0 0 -76 0 P 203 211 -2.0209409727770895e+00 -2.1690767040283543e-01 -1.2650668900264975e+01 1.2813670620160339e+01 1.3957000000000000e-01 1 0 0 0 0 P 204 111 -6.2581474480541432e-01 -2.1196721843256400e-01 -2.0576591138174525e+00 2.1653532796248118e+00 1.3497999999999999e-01 2 0 0 -77 0 P 205 -213 -1.8362223714147756e+00 -1.3194877331463277e+00 -1.1947927086070720e+01 1.2187185453139287e+01 8.1349071287860542e-01 2 0 0 -78 0 P 206 111 -3.3927378046739148e-01 -1.0612075898468334e-01 -9.0987987585981167e-01 9.8613858178998992e-01 1.3497999999999999e-01 2 0 0 -79 0 P 207 213 -1.9563057237285810e+00 1.2394726049488400e+00 -1.0700781511062232e+01 1.0972924624444802e+01 7.3138597412305872e-01 2 0 0 -80 0 P 208 221 -1.6337082941939951e+00 9.2666419714862647e-01 -9.6452066089927797e+00 9.8416168060666411e+00 5.4744999999999999e-01 2 0 0 -81 0 P 209 223 -1.6934038570458543e+00 7.5616454753699824e-01 -5.7767227992993613e+00 6.1183785159701030e+00 7.9033405515000921e-01 2 0 0 -82 0 P 210 -213 -2.8132435270075420e+00 2.1740866346413665e+00 -1.0067124303925482e+01 1.0705932301433723e+01 7.9309700227574853e-01 2 0 0 -83 0 P 211 213 -1.3508727705921901e+00 6.2196629777074774e-01 -2.1000057560063583e+00 2.6581078905964826e+00 6.6619371424637153e-01 2 0 0 -84 0 P 212 -211 -5.2515521774742124e-01 5.8735530400654634e-01 -1.4907939109656640e+00 1.6919576016390787e+00 1.3957000000000000e-01 1 0 0 0 0 P 213 321 -3.7144633677419532e+00 1.3858272696076004e+00 -6.0268383017520843e+00 7.2307797786235257e+00 4.9359999999999998e-01 1 0 0 0 0 P 214 -321 -1.6314452084728130e+00 1.6856326413763605e+00 -4.7158290368097626e+00 5.2901470049839299e+00 4.9359999999999998e-01 1 0 0 0 0 P 215 223 -1.5814581009264115e+00 1.1454500820881159e+00 -2.1678429140614068e+00 3.0193899641532451e+00 7.7724335959957958e-01 2 0 0 -85 0 P 216 111 -3.9384365947467370e-01 3.6350958084099955e-01 -9.9195251509259252e-01 1.1355357484773971e+00 1.3497999999999999e-01 2 0 0 -86 0 P 217 213 -2.5423800513973673e+00 3.1953170406073959e+00 -4.5570811863373777e+00 6.1663301390029535e+00 7.6347306996830189e-01 2 0 0 -87 0 P 218 1114 -1.7929739564077323e+00 1.0285488039860768e+00 -4.4399904246263694e-01 2.4491918277039764e+00 1.2364211291653908e+00 2 0 0 -88 0 P 219 213 -1.5964002698912390e+00 2.7532706993237160e-01 -1.5025033555082818e+00 2.3456687171625337e+00 7.8762083531031346e-01 2 0 0 -89 0 P 220 -2212 -7.8829697670012133e-01 -7.6616790396141821e-01 -1.1190955274381762e+00 1.8278814986117986e+00 9.3827000000000005e-01 1 0 0 0 0 P 221 323 -1.7758459684954373e+00 4.8819455907187498e-01 -1.6586523013048807e-01 2.0471202168101814e+00 8.7819535194502429e-01 2 0 0 -90 0 P 222 -313 -8.6409539737226682e-01 -2.2459902958463598e+00 -1.3160790271867449e+00 2.8848106239766396e+00 8.9383167633046290e-01 2 0 0 -91 0 P 223 -213 -7.3611847205963366e-01 -4.9633638021241716e-01 -1.2930885982886762e+00 1.6468802912675136e+00 5.0191270507073382e-01 2 0 0 -92 0 P 224 211 -5.5989410276197749e-01 -3.7112368686332520e-01 -3.3100223272136925e-01 7.6174566636456731e-01 1.3957000000000000e-01 1 0 0 0 0 P 225 -211 -4.6771595683402188e-02 -3.9522601588787329e-02 7.1335320879618080e-02 1.6827991889740063e-01 1.3957000000000000e-01 1 0 0 0 0 P 226 213 2.1671360933539430e-01 -1.9184975293921664e+00 -1.5137852045259785e+00 2.5753493165391350e+00 7.8312253064371151e-01 2 0 0 -93 0 P 227 2114 1.3888508083466908e-01 -1.2027247974815256e+00 -2.8178548577485092e+00 3.3327074398927961e+00 1.3041460333967569e+00 2 0 0 -94 0 P 228 223 5.9724381201531962e-01 -5.7364795982789685e-01 -1.4891052969544472e+00 1.8776073592869911e+00 7.8879823619578260e-01 2 0 0 -95 0 P 229 -2212 2.8462297477998919e+00 -3.0448360993697201e+00 -2.6323971525801930e+00 5.0181586275344428e+00 9.3827000000000005e-01 1 0 0 0 0 P 230 111 5.1759362656804953e-01 -2.0277649146901805e-01 -6.4862482209384209e-01 8.6484404836514805e-01 1.3497999999999999e-01 2 0 0 -96 0 P 231 213 6.8742428942228306e-01 -3.1278259571934117e+00 1.2279890562327209e+00 3.5127817730688768e+00 7.5883548335392137e-01 2 0 0 -97 0 P 232 -213 1.2428688739023881e+00 -1.5447491214936271e+00 -6.9556676215452229e-01 2.2813380846946170e+00 8.8866048071986103e-01 2 0 0 -98 0 P 233 321 7.3241317341936940e-01 -2.0700590892549298e-01 2.3185372936620521e-01 9.3631064009190790e-01 4.9359999999999998e-01 1 0 0 0 0 P 234 -323 6.3240265215599978e-01 -2.5376063549253161e+00 4.5552016570953097e-01 2.8000433876688664e+00 8.9071051663759471e-01 2 0 0 -99 0 P 235 211 1.6576764727361564e+00 -1.3974722029698607e+00 1.1437864066492629e+00 2.4553099550305362e+00 1.3957000000000000e-01 1 0 0 0 0 P 236 223 4.1823161791993463e-01 -9.0734940752119908e-01 1.6407588167027548e-01 1.2907121710656231e+00 8.0051007491102721e-01 2 0 0 -100 0 P 237 311 1.0334439358529635e-01 -2.1580132592566628e-01 7.4847749147610776e-02 5.5725029422087524e-01 4.9767000000000000e-01 2 0 0 -101 0 P 238 -323 3.3669696991176870e+00 -1.7907084956683963e+00 1.9155812431747525e+00 4.3538875575813476e+00 8.6241723870938558e-01 2 0 0 -102 0 P 239 111 1.1292304209064370e+00 -7.2081137912300819e-01 1.3465814083981236e+00 1.9042666508704120e+00 1.3497999999999999e-01 2 0 0 -103 0 P 240 113 1.7829065417728920e+00 5.1246811273096704e-01 1.5700122712584013e+00 2.4938599297388331e+00 5.5948146885522609e-01 2 0 0 -104 0 P 241 323 1.8829882452680726e+00 2.6103376990672465e-02 1.7077757518234871e+00 2.7001281425471872e+00 9.0987243586724453e-01 2 0 0 -105 0 P 242 -323 4.7867508287249674e+00 1.7985653529020105e+00 6.2776556940192041e+00 8.1379961850905023e+00 8.1865748084111922e-01 2 0 0 -106 0 P 243 223 8.9661448524328502e-01 4.4233956559947923e-01 1.8209081039160937e+00 2.2249893019211098e+00 7.9705033988655127e-01 2 0 0 -107 0 P 244 211 3.0714766267216409e+00 2.0531395829500445e+00 4.8489448273203530e+00 6.0976304035969946e+00 1.3957000000000000e-01 1 0 0 0 0 P 245 313 1.8391751221996993e+00 3.6747843666645458e-01 3.0559878509259906e+00 3.7028480899233513e+00 9.2434663439029152e-01 2 0 0 -108 0 P 246 -313 3.1128922012974702e+00 3.6778895752100171e-01 3.8089607504485046e+00 5.0132829232056189e+00 8.9412364663666366e-01 2 0 0 -109 0 P 247 311 3.5198135331102947e+00 1.8056335546353444e+00 8.8605517253657595e+00 9.7162982739453589e+00 4.9767000000000000e-01 2 0 0 -110 0 P 248 3224 2.6712297868197785e+00 6.5237807285545790e-01 6.8705246931471287e+00 7.5327360510031749e+00 1.4060359636234827e+00 2 0 0 -111 0 P 249 -2224 1.1658799288259998e+00 1.0411846366550468e+00 5.9845361885539017e+00 6.3023044261929968e+00 1.2087291806913396e+00 2 0 0 -112 0 P 250 213 3.3850663511715857e+00 6.0635388895815177e-02 9.8847655696723660e+00 1.0470751903907706e+01 6.8242524395417314e-01 2 0 0 -113 0 P 251 2112 8.1446546200411840e-01 2.0713794510849287e-01 2.6389685465009243e+00 2.9245866188954897e+00 9.3957000000000002e-01 1 0 0 0 0 P 252 111 1.0119292480167812e-01 -2.3179943927072066e-01 1.5712839448083356e+00 1.5972237863519887e+00 1.3497999999999999e-01 2 0 0 -114 0 P 253 -2112 -1.2238866426504489e+00 -4.0182510478042260e-01 1.8400864906183236e+00 2.4347632342275181e+00 9.3957000000000002e-01 1 0 0 0 0 P 254 -211 -3.9509031497874997e-01 3.6657325691917636e-01 5.0685970832462075e-02 5.5903592211732644e-01 1.3957000000000000e-01 1 0 0 0 0 P 255 213 -1.7935088823807788e+00 -1.4883822082609174e-01 2.1277840940586761e+00 2.8889158739792364e+00 7.6127711698348577e-01 2 0 0 -115 0 P 256 -213 -6.7688212230226774e-01 3.1152740283231756e-01 -3.7516612962007680e-02 9.2685641869501278e-01 5.4994235554295412e-01 2 0 0 -116 0 P 257 211 -2.6176362444055118e-01 9.7230315795745648e-02 1.0744477276494846e+00 1.1188796332676432e+00 1.3957000000000000e-01 1 0 0 0 0 P 258 313 -4.1895697654346185e+00 -2.1417163867208119e-01 2.6256430719572568e+00 5.0330623804869878e+00 9.1616105259983771e-01 2 0 0 -117 0 P 259 -323 -2.6501525643097530e+00 1.5835000076394086e+00 3.7611599436690333e+00 4.9478765694690141e+00 8.9687096983259007e-01 2 0 0 -118 0 P 260 221 -2.4674479456241531e+00 1.0081768592966818e+00 4.3704975785506948e+00 5.1483658116536031e+00 5.4744999999999999e-01 2 0 0 -119 0 P 261 321 -1.9567434528630621e+00 3.0524067441614156e-01 1.0115045890971251e+01 1.0318905520746611e+01 4.9359999999999998e-01 1 0 0 0 0 P 262 -313 -6.3484708272994916e-01 7.5907032061724400e-01 3.8753184874362736e+00 4.1019081154117902e+00 9.1013089065421993e-01 2 0 0 -120 0 P 263 -211 -1.0476625585692163e+00 -3.6215439213433182e-01 5.1123494376195957e+00 5.2330057517261901e+00 1.3957000000000000e-01 1 0 0 0 0 P 264 211 -3.7159337963290495e-01 1.7140027869768013e-02 4.3215600674836679e-01 5.8703834577570380e-01 1.3957000000000000e-01 1 0 0 0 0 P 265 223 -1.7322901093359679e+00 5.9658229114041050e-01 8.0003535215313129e+00 8.2446804445987159e+00 7.8253415967895934e-01 2 0 0 -121 0 P 266 -213 -5.2062877991125163e+00 -4.3994021489288854e-01 3.3017470401896112e+01 3.3441040462030763e+01 9.2241823660691180e-01 2 0 0 -122 0 P 267 223 -1.2625941683034010e+00 -8.7132006113792970e-01 1.3846579504853311e+01 1.3954749779565613e+01 8.0866231721751825e-01 2 0 0 -123 0 P 268 111 -1.3365761384788457e+00 -3.9413479748630603e-01 1.5300435624600933e+01 1.5364352505572695e+01 1.3497999999999999e-01 2 0 0 -124 0 P 269 323 -3.6032700918831071e+00 -2.5346936089269008e+00 4.0766464963513030e+01 4.1015040573238885e+01 9.5951058196459049e-01 2 0 0 -125 0 P 270 3212 -1.2864771760098530e+00 -6.7642817037404657e-01 1.6080011285050318e+01 1.6189549623875134e+01 1.1925500000000000e+00 2 0 0 -126 0 P 271 211 -1.0290758462555862e+00 -6.2794749832995511e-01 8.5757531691507189e+00 8.6611972244663793e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -2224 -1.2432999496045420e+00 -2.7877095590140391e+00 2.1849667013530656e+01 2.2097296990244043e+01 1.2511859665029352e+00 2 0 0 -127 0 P 273 111 -7.7243537456143735e-02 1.5773503429653971e-01 6.3425284018520878e-01 6.7182078771520104e-01 1.3497999999999999e-01 2 0 0 -128 0 P 274 211 -2.7060815445635400e-01 -6.2564209027923745e-01 7.3396463007530013e+00 7.3725534520574660e+00 1.3957000000000000e-01 1 0 0 0 0 P 275 223 -2.0587458808561562e-01 -8.9406310303567571e-01 4.6398310318205738e+00 4.7911825381006006e+00 7.6528748279698122e-01 2 0 0 -129 0 P 276 223 1.9142753132500875e-01 -1.1612113532711443e+00 9.9033729226162883e+00 1.0003459779776620e+01 7.7933049118075015e-01 2 0 0 -130 0 P 277 331 2.0230454728701247e-01 -5.7406024822732915e-01 8.5400492664370198e+00 8.6151190409907343e+00 9.5779033134701008e-01 2 0 0 -131 0 P 278 221 8.6843263109904478e-01 -5.8089346844759160e-01 1.5430209230434764e+01 1.5475227651118315e+01 5.4744999999999999e-01 2 0 0 -132 0 P 279 -211 7.0364886645673319e-01 2.0457894316805392e-01 7.0384528976643885e+00 7.0778720848001928e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 211 3.2273372244459089e+00 6.2852956112275493e-01 5.0814091428641220e+01 5.0920547154097910e+01 1.3957000000000000e-01 1 0 0 0 0 P 281 -213 1.5952435377950271e+00 7.0216545993484447e-01 1.6865397779685541e+01 1.6967056110328560e+01 6.3365014480661774e-01 2 0 0 -133 0 P 282 111 3.2609072013199540e+00 1.3447993739072364e+00 6.3439092928149634e+01 6.3537223202454214e+01 1.3497999999999999e-01 2 0 0 -134 0 P 283 331 1.9861365937359612e-01 6.7834924526156887e-02 1.1179118460269590e+01 1.1222026075087568e+01 9.5766942027492075e-01 2 0 0 -135 0 P 284 213 1.5651539182344334e+00 5.0940805515319010e-01 5.0594078718186324e+01 5.0629243817400798e+01 9.2213059018927712e-01 2 0 0 -136 0 P 285 223 1.3826769746418661e+00 4.5190632431865030e-01 2.7382716391783632e+01 2.7432395240640968e+01 7.7918977388134558e-01 2 0 0 -137 0 P 286 -213 1.6043763689903978e+00 5.8346852884328426e-01 8.0663810948497613e+01 8.0685180009008562e+01 7.3035422476148548e-01 2 0 0 -138 0 P 287 223 3.9116387526152852e-01 3.9225123234805365e-01 5.2949717996914018e+01 5.2958436995536921e+01 7.8520242673170115e-01 2 0 0 -139 0 P 288 331 2.1758484695604521e+00 -5.6239347129989632e-02 1.6853273892041244e+02 1.6854951508221131e+02 9.5784498016228403e-01 2 0 0 -140 0 P 289 221 9.2988668743762704e-01 4.4637972123904773e-01 1.3404874737857921e+02 1.3405383366161391e+02 5.4744999999999999e-01 2 0 0 -141 0 P 290 223 1.7970700145491871e+00 -8.2187598004787510e-01 3.2966274767030058e+02 3.2966959543045988e+02 7.8103072094599557e-01 2 0 0 -142 0 P 291 111 2.0496843443099502e-01 -9.6921537911573263e-01 1.3919448764547238e+02 1.3919807829491106e+02 1.3497999999999999e-01 2 0 0 -143 0 P 292 113 2.2656868695292895e+00 -4.6418081397128153e-01 3.4831518002480141e+02 3.4832352932107187e+02 6.8384366559773158e-01 2 0 0 -144 0 P 293 321 1.3963535673065655e+00 -1.2735548210600303e+00 2.6116868273726300e+02 2.6117598708312431e+02 4.9359999999999998e-01 1 0 0 0 0 P 294 -321 -1.5214384957070540e-01 -3.8305863579058858e-01 5.8715948951676509e+01 5.8719470228581741e+01 4.9359999999999998e-01 1 0 0 0 0 P 295 321 -1.1747710600172241e+00 6.6139881063899397e-02 4.7586426086779818e+02 4.7586597154423976e+02 4.9359999999999998e-01 1 0 0 0 0 P 296 -321 5.0771440123273351e-02 -3.9533525694063792e-01 5.1389694035160716e+01 5.1393610125111323e+01 4.9359999999999998e-01 1 0 0 0 0 P 297 211 -9.4195648457732328e-01 -4.9081376602916289e-02 8.7560139009700777e+01 8.7565330549158503e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 313 -1.0883946777161571e-01 -8.0636667175717366e-02 2.7567679776681985e+02 2.7567841746434380e+02 9.3524348439463878e-01 2 0 0 -145 0 P 299 -311 -5.1283730469712852e-01 -5.3336223064514343e-01 5.3167458700918488e+01 5.3174935989739950e+01 4.9767000000000000e-01 2 0 0 -146 0 P 300 311 -6.5534791239249957e-01 -4.2670826377857546e-01 4.3224614066031705e+01 4.3234552124602146e+01 4.9767000000000000e-01 2 0 0 -147 0 P 301 3212 1.4622447128241589e-01 1.8584589835033974e-01 5.9310890449228637e+01 5.9323349717264250e+01 1.1925500000000000e+00 2 0 0 -148 0 P 302 -2114 8.2209182405893394e-02 -3.1438034973561280e-01 7.0538852299643580e+01 7.0550663994531661e+01 1.2493650244830348e+00 2 0 0 -149 0 P 303 -213 -2.0266394821952644e-01 1.0100511535932750e-01 4.8047383796262757e+01 4.8054494481864559e+01 7.9503178108921779e-01 2 0 0 -150 0 P 304 213 7.0613913425967634e-01 5.8658092722335818e-02 5.2973086213197888e+01 5.2982150244634113e+01 6.7698474525746888e-01 2 0 0 -151 0 P 305 -211 -8.7707775619877179e-02 1.2749188225069188e-01 1.4047944322580344e+02 1.4047959779146072e+02 1.3957000000000000e-01 1 0 0 0 0 P 306 211 -1.2770059378811091e-01 -5.1962864002068743e-01 2.7094358168175233e+02 2.7094414600741328e+02 1.3957000000000000e-01 1 0 0 0 0 P 307 221 6.3107258768912522e-01 3.7257315084466593e-02 2.1355090043465447e+02 2.1355253784179823e+02 5.4744999999999999e-01 2 0 0 -152 0 P 308 2112 3.6874549371348412e-03 -2.2459538524391523e-01 3.1810671714182666e+02 3.1810818401798377e+02 9.3957000000000002e-01 1 0 0 0 0 P 309 213 1.0980931266146274e+00 -6.5359900745179667e-01 7.2266969074929068e+02 7.2267112963165539e+02 6.6833766925296945e-01 2 0 0 -153 0 V -13 0 0 0 0 0 0 1 0 P 310 92 1.9824563124737327e-01 1.9719191403152397e-01 -2.1092918485145486e+02 2.1100335168461388e+02 5.5870577283898939e+00 2 0 0 -14 0 V -14 0 0 0 0 0 0 4 0 P 311 -431 -4.5491968632957658e-01 -3.6657900911563196e-01 -5.4902404454996542e+01 5.4940789394410402e+01 1.9684999999999999e+00 2 0 0 -154 0 P 312 333 -1.4040794034186338e-01 -5.6648339267583558e-02 -4.4612754302836620e+01 4.4624540376419340e+01 1.0143144962778581e+00 2 0 0 -155 0 P 313 311 1.0770429984769053e-01 3.8528110512724068e-01 -9.5512889867369495e+00 9.5726087605853962e+00 4.9767000000000000e-01 2 0 0 -156 0 P 314 211 6.8586895807112280e-01 2.3513815728749890e-01 -1.0186273710688477e+02 1.0186541315319874e+02 1.3957000000000000e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 315 92 6.4533422288168163e-02 -7.1287265578574111e-01 -7.1511807697981135e+02 7.1513411693989485e+02 4.7359092172312733e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 4 0 P 316 223 -3.5513619531571261e-01 4.7970062549038517e-01 -1.7266306008060118e+02 1.7266584750384425e+02 7.7868056106410466e-01 2 0 0 -157 0 P 317 213 -3.4766903254190229e-01 -8.1275822518450835e-01 -1.3535805624127264e+02 1.3536370394043541e+02 8.6458392856145339e-01 2 0 0 -158 0 P 318 -213 3.5743959301251071e-01 -3.8697806389965639e-01 -1.6626268793712273e+02 1.6626618238880636e+02 9.4047380939987857e-01 2 0 0 -159 0 P 319 2214 4.0989905713327235e-01 7.1630078080384208e-03 -2.4083427272081471e+02 2.4083838310680886e+02 1.3460282287384018e+00 2 0 0 -160 0 V -17 0 0 0 0 0 0 1 0 P 320 92 8.4988917575928724e-01 3.4299046427405662e+00 1.1627524128936279e+03 1.1654094352967481e+03 7.8571570120891778e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 15 0 P 321 111 3.9848981943142912e+00 -2.8432262112853229e-01 9.3705783710956084e+01 9.3791003691488541e+01 1.3497999999999999e-01 2 0 0 -161 0 P 322 2214 1.9238388565722587e+01 -3.8115947502230401e+00 4.6128474575350862e+02 4.6170303887662584e+02 1.1981627128048458e+00 2 0 0 -162 0 P 323 221 1.6343105015892725e+00 -2.5113999306534956e-01 4.9820825175176182e+01 4.9851262418816340e+01 5.4744999999999999e-01 2 0 0 -163 0 P 324 -2224 6.5745182108471045e+00 -1.0232450006045699e+00 1.4572175803080697e+02 1.4587776983897021e+02 1.1052825731411398e+00 2 0 0 -164 0 P 325 113 1.7841983806199799e+00 -7.0922944506587282e-01 4.2109456392699713e+01 4.2160962853421978e+01 8.0876496696725886e-01 2 0 0 -165 0 P 326 211 -8.5385928466817884e-01 6.7104927139876491e-01 1.8635518528275419e+01 1.8667656880424371e+01 1.3957000000000000e-01 1 0 0 0 0 P 327 -211 -3.4913360401987710e+00 -9.3403918803176955e-01 4.7818996019713332e+01 4.7955580662407051e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 223 -2.3619989600328362e+00 -4.4618355166870455e-01 2.6760514256726363e+01 2.6879694048024451e+01 7.8403442652107191e-01 2 0 0 -166 0 P 329 211 -2.8707879242816453e-01 -7.6238313533177587e-02 1.0875989731991448e+01 1.0880940168422754e+01 1.3957000000000000e-01 1 0 0 0 0 P 330 -213 -4.4617443736894300e+00 -2.2141137035137118e-01 6.2473660848778174e+01 6.2639310119392235e+01 8.7674770268637403e-01 2 0 0 -167 0 P 331 211 -2.4158123434451775e+00 2.1339889767222700e-01 2.2593808641765520e+01 2.2724025987792920e+01 1.3957000000000000e-01 1 0 0 0 0 P 332 2212 -2.4899629920560971e+00 1.4759210194846786e+00 2.1543019634085063e+01 2.1756844994278012e+01 9.3827000000000005e-01 1 0 0 0 0 P 333 -2214 -2.4853822399491268e+00 6.8620244830283006e-01 2.9800862159634445e+01 2.9940729124975107e+01 1.3068574516331861e+00 2 0 0 -168 0 P 334 223 -5.1854993518928074e+00 2.5493405245138598e+00 4.9773669840382745e+01 5.0114725047298535e+01 8.2396392426791154e-01 2 0 0 -169 0 P 335 -213 -8.3337502989733565e+00 5.5913967150405934e+00 7.9833804169127717e+01 8.0465890584409834e+01 7.7983854545464382e-01 2 0 0 -170 0 V -19 0 0 0 0 0 11 1 0 P 103 1 -1.6502743302999490e+00 5.3250800183385616e+00 2.6499122500827415e+01 2.7079205599145876e+01 0 2 0 0 -19 0 P 104 21 1.5373149167735298e+00 2.9565299056798566e+00 1.1729885756661412e+01 1.2194040597801944e+01 0 2 0 0 -19 0 P 105 21 -5.3709906837622090e-01 2.8096319113385664e+00 4.9849586958497355e+01 4.9931591470924019e+01 0 2 0 0 -19 0 P 106 21 2.6404787874334446e-01 1.2305094632168205e+00 2.0829066710103067e+01 2.0867052854566186e+01 0 2 0 0 -19 0 P 107 21 8.0574954781221741e-01 2.4522127576777657e+00 5.1563281076470581e+01 5.1627846508583197e+01 0 2 0 0 -19 0 P 108 21 5.2455268392268906e-01 1.4631887325702790e+00 5.7822153424996536e+01 5.7843041962617853e+01 0 2 0 0 -19 0 P 109 21 -1.6838617712001283e-01 7.8741719200769533e-01 4.0406634649442154e+01 4.0414657037174194e+01 0 2 0 0 -19 0 P 110 21 5.6662864661143501e-05 4.2718917504502835e-01 4.6620622390387922e+01 4.6622579536761222e+01 0 2 0 0 -19 0 P 111 21 -4.7052125184338772e-01 1.0995336118559742e+00 8.0642064461495281e+01 8.0650932573802251e+01 0 2 0 0 -19 0 P 112 21 -7.3901821287688341e-01 -1.4514394977505682e+00 3.7668340286554297e+01 3.7703536763521846e+01 0 2 0 0 -19 0 P 113 -1 1.6502743302999490e+00 -5.3250800183385616e+00 2.5540217323590139e+02 2.5546301097456035e+02 0 2 0 0 -19 0 P 336 92 1.2166969798999370e+00 1.1774773251641424e+01 6.7903293145133739e+02 6.8039749587945892e+02 4.1411408657194713e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 18 0 P 337 113 -1.2347451681772306e+00 5.0956723638899062e+00 2.6697211596838311e+01 2.7218070101396268e+01 7.6925972708513912e-01 2 0 0 -171 0 P 338 -213 1.4406756295183065e-01 1.0058612569248817e+00 4.5782082507758890e+00 4.7665519495992976e+00 8.5294452919228803e-01 2 0 0 -172 0 P 339 223 4.7879558539209316e-01 1.8301876900711853e+00 1.0536335186743401e+01 1.0732909427618882e+01 7.7598545127092056e-01 2 0 0 -173 0 P 340 2212 -2.1749096364182924e-01 1.1521723129603467e+00 1.4912172088818926e+01 1.4987595883178477e+01 9.3827000000000005e-01 1 0 0 0 0 P 341 111 -1.2677773928835442e-01 -1.4719226275258038e-01 3.2477136212117230e+00 3.2563171717751103e+00 1.3497999999999999e-01 2 0 0 -174 0 P 342 -2214 8.1444824454531339e-01 1.8919654728473414e+00 2.9427386735837477e+01 2.9528263112061499e+01 1.3055163810151875e+00 2 0 0 -175 0 P 343 213 6.4549642584817635e-01 7.2380002723519465e-01 3.4808594873948998e+01 3.4831758616027116e+01 8.2010918252522458e-01 2 0 0 -176 0 P 344 111 -3.3040247705800602e-01 2.2488067159378310e-02 5.3443556472536100e+00 5.3563073469268154e+00 1.3497999999999999e-01 2 0 0 -177 0 P 345 113 -3.3073689323047045e-01 3.1577441052169455e+00 6.8425590467400681e+01 6.8503907924284533e+01 8.0201955078527731e-01 2 0 0 -178 0 P 346 111 1.4318256603561194e-01 -3.1157460445576012e-02 1.3775969117351279e+01 1.3777409653384563e+01 1.3497999999999999e-01 2 0 0 -179 0 P 347 2114 -2.1538481943050888e-01 5.4186756703483807e-01 3.3758502435231854e+01 3.3785254935106401e+01 1.2111784674154531e+00 2 0 0 -180 0 P 348 -2214 4.0127026770293839e-01 8.1977812885441192e-01 4.1811867574032092e+01 4.1839838680379422e+01 1.2275083557708848e+00 2 0 0 -181 0 P 349 331 2.9875797245359697e-02 7.0280260302696484e-01 3.5081964705736119e+01 3.5102086069292739e+01 9.5779681532055172e-01 2 0 0 -182 0 P 350 113 2.5881691322791378e-01 -3.7904517538101666e-02 5.1115868388668019e+01 5.1122523864083838e+01 7.8231845125160759e-01 2 0 0 -183 0 P 351 213 5.4818672718503041e-02 -6.5099755196534648e-01 3.5168332255992063e+01 3.5184854667496715e+01 8.5767208504763304e-01 2 0 0 -184 0 P 352 2112 1.8812791040555596e-01 -1.9393396437864552e-01 7.2008802500322147e+01 7.2015438843407139e+01 9.3957000000000002e-01 1 0 0 0 0 P 353 211 -4.2208606265668741e-01 -1.3430983506852909e+00 8.9441675491588782e+01 8.9452863924815034e+01 1.3957000000000000e-01 1 0 0 0 0 P 354 -2212 9.3542115730972764e-01 -2.7652822358144302e+00 1.0889238051358615e+02 1.0893554370862519e+02 9.3827000000000005e-01 1 0 0 0 0 V -21 0 0 0 0 0 3 1 0 P 114 1 2.1331257812604969e+00 -2.0986284806978239e-01 -8.4784970519480297e+01 8.4812059838225963e+01 0 2 0 0 -21 0 P 115 21 -7.2014055521263376e-01 -2.7975183434744855e-01 -2.9669667270488338e+02 2.9669767855117567e+02 0 2 0 0 -21 0 P 116 -1 -2.1331257812604969e+00 2.0986284806978239e-01 -5.4636175591519770e+02 5.4636596031849547e+02 0 2 0 0 -21 0 P 355 92 -7.2014055521263387e-01 -2.7975183434744855e-01 -9.2784339913956137e+02 9.2787569870789707e+02 7.7033799273246775e+00 2 0 0 -22 0 V -22 0 0 0 0 0 0 5 0 P 356 -211 -2.2133269939520109e-01 1.3116426175884724e-01 -1.0461261184725176e+01 1.0465355110426110e+01 1.3957000000000000e-01 1 0 0 0 0 P 357 213 7.4141142602791588e-01 -3.4604245259232219e-01 -7.1739250801808566e+01 7.1747911083472587e+01 7.5710168105455078e-01 2 0 0 -185 0 P 358 313 1.2752012179094658e+00 -1.3357844535082911e-01 -1.1626887079618356e+02 1.1627980982119452e+02 9.4861714422574195e-01 2 0 0 -186 0 P 359 -311 -3.6717108804713516e-01 1.0832888796611762e-02 -4.1757616034160343e+01 4.1762197071569908e+01 4.9767000000000000e-01 2 0 0 -187 0 P 360 331 -2.1482494117076789e+00 5.7871913040243750e-02 -6.8761640032268383e+02 6.8762042562123406e+02 9.5781736698148467e-01 2 0 0 -188 0 V -23 0 0 0 0 0 2 1 0 P 117 2 -1.7576840235927589e+00 1.0542491583195532e+00 1.2420154373619172e+00 2.3965593590095011e+00 0 2 0 0 -23 0 P 118 -2 1.7576840235927589e+00 -1.0542491583195532e+00 2.5227345100291771e+01 2.5310468885894348e+01 0 2 0 0 -23 0 P 361 92 0 0 2.6469360537653689e+01 2.7707028244903849e+01 8.1885509640962315e+00 2 0 0 -24 0 V -24 0 0 0 0 0 0 6 0 P 362 113 -7.1648149641616754e-01 2.8823589648497816e-01 1.1309972360680625e+00 1.5885396169197725e+00 8.0490850399332425e-01 2 0 0 -189 0 P 363 113 -3.0837966872051792e-01 5.2790261859150189e-01 9.7636128403187439e-01 1.4264746053493291e+00 8.4129022813427035e-01 2 0 0 -190 0 P 364 223 -3.0038810626636114e-01 -7.9579813678072028e-02 1.3616061969829898e+00 1.5941687020488158e+00 7.6865886698729924e-01 2 0 0 -191 0 P 365 211 -1.4694028307551324e-02 -7.5059746467618108e-02 5.2130427715718914e+00 5.2154716568250690e+00 1.3957000000000000e-01 1 0 0 0 0 P 366 223 1.2124427843984993e+00 -6.5772678617444658e-01 1.3988450634387110e+01 1.4078768801093732e+01 7.9520926382541834e-01 2 0 0 -192 0 P 367 -211 1.2750051531209858e-01 -3.7721687563434070e-03 3.7989024146117649e+00 3.8036048626671350e+00 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 12 1 0 P 119 21 5.2615156169014039e+00 2.8069954741794687e+00 -1.0689290677046964e+02 1.0705912519733792e+02 0 2 0 0 -25 0 P 120 21 7.2516018452988973e-01 1.2027405376275839e+00 -3.2796380718787525e+01 3.2826437978339015e+01 0 2 0 0 -25 0 P 121 21 3.7027125432634569e+00 3.3170886342116863e+00 -4.7283659262637670e+01 4.7544269796164478e+01 0 2 0 0 -25 0 P 122 21 3.0997929332250225e+00 3.1755126264291933e+00 -2.3346972054810870e+01 2.3764967931760452e+01 0 2 0 0 -25 0 P 123 21 7.5675056117669470e-01 2.4047076608140090e+00 -1.3258741294086432e+01 1.3496277673837760e+01 0 2 0 0 -25 0 P 124 21 -2.8176867814074563e-01 1.9680350291721915e+00 -1.2272766774783269e+01 1.2432753507258724e+01 0 2 0 0 -25 0 P 125 21 -5.1767873346583282e-01 -5.3344496352619918e-02 -4.1519333895802371e+00 4.1844220363014459e+00 0 2 0 0 -25 0 P 126 21 -5.2615156169014039e+00 -2.8069954741794687e+00 -4.3719207400122642e+01 4.4124050877881778e+01 0 2 0 0 -25 0 P 127 21 9.4486147076417870e-01 -3.1373383844093374e+00 -1.5065463800956685e+01 1.5417647514298642e+01 0 2 0 0 -25 0 P 128 21 5.3709906837622090e-01 -2.8096319113385664e+00 -2.1239786251884198e+01 2.1431542802891993e+01 0 2 0 0 -25 0 P 129 21 -5.6662864661143501e-05 -4.2718917504502835e-01 -4.6606300710971142e+00 4.6801670113470335e+00 0 2 0 0 -25 0 P 130 21 4.2556600302544254e+00 -7.7242358263211019e-01 -6.8481625642524733e+01 6.8618075833755441e+01 0 2 0 0 -25 0 P 368 92 1.3222532717118652e+01 4.8681569384770000e+00 -3.9317007343174100e+02 3.9557973816117470e+02 4.1256372573337210e+01 2 0 0 -26 0 V -26 0 0 0 0 0 0 20 0 P 369 -323 7.5792333533560718e-01 -1.6660453845777228e+00 -1.2093293277075531e+01 1.2265840504326576e+01 9.2355074928191228e-01 2 0 0 -193 0 P 370 321 1.6912699372789361e-01 -1.4444606800387370e+00 -1.5625736323498797e+01 1.5701030132054875e+01 4.9359999999999998e-01 1 0 0 0 0 P 371 -211 3.2616293274231253e-03 -3.9011714383933339e-02 -5.4963508638848757e-01 5.6842859285430325e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 -2112 8.5271276848383226e-01 -3.4117330985021397e+00 -2.4188157848155718e+01 2.4460515400807633e+01 9.3957000000000002e-01 1 0 0 0 0 P 373 2112 1.7429199694694220e+00 -4.1047986431022754e-01 -2.6729217481702399e+01 2.6805598719447111e+01 9.3957000000000002e-01 1 0 0 0 0 P 374 -2112 3.9831606665990646e+00 1.6391109322568558e+00 -7.2064230339801568e+01 7.2198949713947101e+01 9.3957000000000002e-01 1 0 0 0 0 P 375 2212 1.9176868848497608e+00 5.7912637885108953e-01 -3.5195112515730280e+01 3.5264560197722872e+01 9.3827000000000005e-01 1 0 0 0 0 P 376 111 2.0869618086705168e+00 2.1615300162409428e+00 -6.1510627166514148e+01 6.1584113987458387e+01 1.3497999999999999e-01 2 0 0 -194 0 P 377 223 2.1514892541931561e+00 1.1492613204330273e+00 -2.3937344899185224e+01 2.4073933199410842e+01 7.7978924947361794e-01 2 0 0 -195 0 P 378 -213 1.2283349775234718e+00 1.6100388442057698e+00 -1.7171983263348675e+01 1.7310426043823888e+01 8.2024918476663655e-01 2 0 0 -196 0 P 379 211 1.1040598566706592e+00 1.3597720853467778e+00 -1.3468722503498302e+01 1.3582852938626020e+01 1.3957000000000000e-01 1 0 0 0 0 P 380 -213 6.2698545210241730e-01 1.6295771168683451e+00 -1.0338964257543509e+01 1.0508578060336776e+01 6.9813938039635282e-01 2 0 0 -197 0 P 381 -311 1.2160786149167702e+00 1.0267746765815724e+00 -1.6978471511050135e+01 1.7060166579332339e+01 4.9767000000000000e-01 2 0 0 -198 0 P 382 321 3.6512239936292895e-01 1.2222033067117122e+00 -4.8369931440974909e+00 5.0266528550815721e+00 4.9359999999999998e-01 1 0 0 0 0 P 383 -321 3.0495064706974262e-01 1.5536742381194024e+00 -7.0581600692648410e+00 7.2503905452540156e+00 4.9359999999999998e-01 1 0 0 0 0 P 384 221 -5.1922813962540310e-02 -1.0820641177232540e-01 -3.0725898302595178e+00 3.1232858296468229e+00 5.4744999999999999e-01 2 0 0 -199 0 P 385 221 -1.1370632775220715e+00 -1.9029983218016319e-01 -1.0711537258558600e+01 1.0787300814717559e+01 5.4744999999999999e-01 2 0 0 -200 0 P 386 323 -1.4781202723601543e+00 -4.4324418135373006e-01 -1.2905619741838310e+01 1.3027182225002127e+01 8.7815195645097455e-01 2 0 0 -201 0 P 387 -211 -9.9391775785275818e-02 2.7406995436890524e-01 -3.7198103220844332e+00 3.7338266807884133e+00 1.3957000000000000e-01 1 0 0 0 0 P 388 213 -2.5217444015539741e+00 -1.6235007643884209e+00 -2.1013866592145074e+01 2.1246105140535473e+01 9.0523197661065946e-01 2 0 0 -202 0 V -27 0 0 0 0 0 12 1 0 P 131 21 3.0581489278141403e+00 4.3641155717213226e-01 -6.1585281330169366e+01 6.1662708393550403e+01 0 2 0 0 -27 0 P 132 21 5.1767873346583282e-01 5.3344496352619918e-02 -5.7908849840254595e+00 5.8142227171467598e+00 0 2 0 0 -27 0 P 133 21 1.4895374277647224e+00 -6.2110966388890820e-01 -1.2930174493049659e+01 1.3030499276083022e+01 0 2 0 0 -27 0 P 134 21 1.7559887167158099e+00 -4.6406540026979964e-01 -9.7043958661168457e+00 9.8728998878377432e+00 0 2 0 0 -27 0 P 135 21 7.2014055521263376e-01 2.7975183434744855e-01 -3.4952405956605492e+00 3.5796047728256584e+00 0 2 0 0 -27 0 P 136 21 8.4975330854836884e-01 8.7640906212197875e-02 -2.2361841506048861e+00 2.3938005700657459e+00 0 2 0 0 -27 0 P 137 21 -1.3547631267943061e+00 -4.7097965478919629e-01 3.1646670331239695e+00 3.4745247726111415e+00 0 2 0 0 -27 0 P 138 21 -3.0581489278141403e+00 -4.3641155717213226e-01 7.7840124921127449e+00 8.3745794156656874e+00 0 2 0 0 -27 0 P 139 21 1.5913955272348074e-01 1.7271403759215933e+00 3.0842200790143002e+00 3.5384675738481182e+00 0 2 0 0 -27 0 P 140 21 5.3141194461776187e-01 2.5032878538284611e+00 9.6147653526611054e-01 2.7337311246490312e+00 0 2 0 0 -27 0 P 141 21 4.3138582662248187e-01 1.7704037511270563e+00 -1.5990259974355963e+00 2.4243158444993131e+00 0 2 0 0 -27 0 P 142 21 3.2217198919620477e-01 9.3946148714570421e-01 -1.0563259320595022e+00 1.4498990141365136e+00 0 2 0 0 -27 0 P 389 92 5.4224449280729923e+00 5.8048759859871772e+00 -8.3403137209604708e+01 1.1834925336291917e+02 8.3590447904922783e+01 2 0 0 -28 0 V -28 0 0 0 0 0 0 19 0 P 390 -2112 -4.1610395850160870e-01 -1.0745950006505813e+00 2.7316981635170612e-01 1.5117243310767861e+00 9.3957000000000002e-01 1 0 0 0 0 P 391 2112 1.3152782347085445e-02 7.5094376026535237e-01 1.1761953335653528e+00 1.6823545328990106e+00 9.3957000000000002e-01 1 0 0 0 0 P 392 -1114 -1.8152053947653219e+00 2.7379938146038663e-01 3.3407453736468891e+00 4.0044045514179762e+00 1.2266782110238568e+00 2 0 0 -203 0 P 393 331 -7.1370437620041405e-01 -2.1259119747581018e-02 4.2074544045497406e+00 4.3737675773943741e+00 9.5778096030416726e-01 2 0 0 -204 0 P 394 2114 -9.4155680161472621e-01 1.2833516350410556e-01 2.5403875451220936e+00 3.0061848518687038e+00 1.2963716131321388e+00 2 0 0 -205 0 P 395 331 -2.0852913271464538e-01 2.1420147294414460e+00 1.7127421026870957e+00 2.9123592555931519e+00 9.5741288010306769e-01 2 0 0 -206 0 P 396 -213 1.2258169610452745e+00 2.2264720627579089e+00 -1.2950228495678098e+00 2.9330502278851123e+00 6.8256456849623282e-01 2 0 0 -207 0 P 397 113 2.7337838313519819e-01 9.7788353952276669e-02 -7.7233264819839742e-01 1.1375972294248711e+00 7.8315479592969517e-01 2 0 0 -208 0 P 398 223 -1.1592638209072785e-01 3.9431938144596346e-01 -2.2003445483664650e+00 2.3690317704968726e+00 7.7580197051112931e-01 2 0 0 -209 0 P 399 213 5.4786410978056810e-01 8.2391869117892769e-01 -2.8236265626435748e+00 3.0726187056737149e+00 6.9937232768389712e-01 2 0 0 -210 0 P 400 -211 3.3580588097457015e-01 -3.2043979416514978e-01 -2.8303176031919302e+00 2.8715195926930086e+00 1.3957000000000000e-01 1 0 0 0 0 P 401 211 1.5167894433357278e+00 4.3370451380723013e-01 -2.9949491507200676e+01 2.9991336601517059e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 -323 1.3167459455013164e+00 -1.5644669880907563e-01 -1.9225528785935190e+01 1.9288304228801074e+01 8.1205139578747410e-01 2 0 0 -211 0 P 403 313 1.6214125047368313e+00 2.4079143743666218e-01 -2.0113429699769878e+01 2.0200255886681916e+01 9.0184509367327870e-01 2 0 0 -212 0 P 404 213 8.8691526165705337e-01 -2.0994937550425649e-01 -8.2994008023270354e+00 8.3887385350191011e+00 8.1251652882445657e-01 2 0 0 -213 0 P 405 -2224 6.0676687183789813e-01 -6.0233611502411577e-01 -4.0498508517550524e+00 4.3029461398008149e+00 1.1760436762056559e+00 2 0 0 -214 0 P 406 113 5.7089075910576592e-01 4.4563824017717230e-01 -3.0880086807969356e+00 3.2823607327088267e+00 8.4473940775308387e-01 2 0 0 -215 0 P 407 2224 3.3667329381138955e-01 -4.8110814661699824e-01 -8.5036629571191258e-01 1.6028814952100618e+00 1.2252723351553281e+00 2 0 0 -216 0 P 408 -211 3.8125877669175445e-01 7.1328452107750084e-01 -1.1561109500627436e+00 1.4178171167566824e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 3 1 0 P 143 21 1.6191007662902397e+00 -2.2182357766419298e+00 -8.6625320700330166e-01 2.8796617632665424e+00 0 2 0 0 -29 0 P 144 21 -1.6191007662902397e+00 2.2182357766419298e+00 -5.7593856641751424e+00 6.3806410713095287e+00 0 2 0 0 -29 0 P 145 21 -1.2749048877780658e+00 1.7844930973198430e+00 -4.7588110950328488e+00 5.2398550672199233e+00 0 2 0 0 -29 0 P 409 92 -1.2749048877780658e+00 1.7844930973198430e+00 -1.1384449966211292e+01 1.4500157901795996e+01 8.7085636046701751e+00 2 0 0 -30 0 V -30 0 0 0 0 0 0 7 0 P 410 3214 -1.3606535570721869e+00 7.3888780333203885e-01 -3.4204015363425357e+00 4.0088093734036736e+00 1.4050169515663267e+00 2 0 0 -217 0 P 411 311 1.9819593188087020e-01 -1.2681529829300811e-01 -1.2066325807996796e+00 1.3262734865941364e+00 4.9767000000000000e-01 2 0 0 -218 0 P 412 -2112 -5.9257429968458286e-01 6.4591869962353243e-01 -1.8256176672074105e+00 2.2324934308727218e+00 9.3957000000000002e-01 1 0 0 0 0 P 413 2212 -3.2880077025539034e-01 6.4827431593536411e-01 -2.2419874521249512e+00 2.5367750912541958e+00 9.3827000000000005e-01 1 0 0 0 0 P 414 -2212 1.9985635264399243e-01 2.0879372492284307e-01 -8.7391924830279388e-01 1.3143906674628498e+00 9.3827000000000005e-01 1 0 0 0 0 P 415 223 -6.2237431012057554e-01 -5.2442331912438045e-01 -8.4314299188481590e-01 1.4081016555149863e+00 7.8069876902687141e-01 2 0 0 -219 0 P 416 221 1.2314457648298072e+00 1.9385717092345292e-01 -9.7274848954910620e-01 1.6733141966934306e+00 5.4744999999999999e-01 2 0 0 -220 0 V -31 0 0 0 0 0 2 1 0 P 146 21 1.2095567148923825e+00 -9.4945052714249589e-01 5.4267281812319625e+00 5.6403778688142499e+00 0 2 0 0 -31 0 P 147 21 -1.2095567148923825e+00 9.4945052714249589e-01 -3.5916604734486333e+00 3.9069820458463429e+00 0 2 0 0 -31 0 P 417 92 0 0 1.8350677077833293e+00 9.5473599146605928e+00 9.3693440457653576e+00 2 0 0 -32 0 V -32 0 0 0 0 0 0 10 0 P 418 -211 4.7269182476853816e-01 -7.4042480946001521e-01 -1.3246089004856423e-01 8.9927311310823033e-01 1.3957000000000000e-01 1 0 0 0 0 P 419 -313 -2.0571556549896525e-01 -6.0958897667523701e-02 1.2643415195499603e+00 1.6107689898133088e+00 9.7467039525825649e-01 2 0 0 -221 0 P 420 313 5.9731871789868551e-01 -3.2926826027011853e-03 4.4413935243025604e-01 1.1704678058848010e+00 9.0329099836362903e-01 2 0 0 -222 0 P 421 111 -1.5212114391631906e-01 2.0293871737894407e-02 3.7036618701167695e-01 4.2301701684222115e-01 1.3497999999999999e-01 2 0 0 -223 0 P 422 111 2.9344413007870757e-01 -4.9715057596046094e-02 1.5246104468474038e+00 1.5592426557356838e+00 1.3497999999999999e-01 2 0 0 -224 0 P 423 221 -6.1022390534332560e-01 1.9164520059634399e-01 -1.0281509245697321e-02 8.4196692898025527e-01 5.4744999999999999e-01 2 0 0 -225 0 P 424 211 3.1790743816309829e-02 -1.9000443284595706e-01 -4.9018669323412800e-01 5.4486247348970285e-01 1.3957000000000000e-01 1 0 0 0 0 P 425 -211 6.9623995679088571e-02 1.5846789843064374e-01 -7.6319495671762216e-01 7.9492509236189024e-01 1.3957000000000000e-01 1 0 0 0 0 P 426 113 -5.5389360756998418e-01 2.8132487436949677e-01 -6.3784764512972991e-01 1.2053850886131985e+00 8.1250340307447433e-01 2 0 0 -226 0 P 427 211 5.7084810087264536e-02 3.9266403503786435e-01 2.6558189631977402e-01 4.9745074983130078e-01 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 2 1 0 P 148 21 -1.0229998021929234e+00 7.5430446763930503e-01 3.2297339843190410e-03 1.2710288180717955e+00 0 2 0 0 -33 0 P 149 21 1.0229998021929234e+00 -7.5430446763930503e-01 5.2684986136174160e+01 5.2700315634671966e+01 0 2 0 0 -33 0 P 428 92 0 0 5.2688215870158480e+01 5.3971344452743764e+01 1.1698629426402702e+01 2 0 0 -34 0 V -34 0 0 0 0 0 0 9 0 P 429 113 -6.7035518421472956e-02 3.9363433527703701e-01 1.1359021934003239e+00 1.3877710630044624e+00 6.9006737330628665e-01 2 0 0 -227 0 P 430 213 -1.7909880369522682e-01 -6.1992317123456786e-01 4.2942338277370045e+00 4.4162864905039294e+00 8.0421457286480835e-01 2 0 0 -228 0 P 431 -211 -2.0667932734131200e-02 -7.7689157806832304e-02 1.1787280170429399e+01 1.1788380566039695e+01 1.3957000000000000e-01 1 0 0 0 0 P 432 213 2.9187615551013751e-01 -7.4073824883587036e-01 1.9664728897651852e+01 1.9696595043761842e+01 7.8766036865896427e-01 2 0 0 -229 0 P 433 111 1.7055851106469241e-01 2.9982357607076809e-01 5.3509570924500398e+00 5.3637622792314215e+00 1.3497999999999999e-01 2 0 0 -230 0 P 434 313 -1.3448278765555585e-01 -4.8133566074509054e-02 1.3344731015080191e+00 1.6186306358887494e+00 9.0484485765822131e-01 2 0 0 -231 0 P 435 -321 -9.1538760009694076e-01 5.8950312260471760e-01 1.7808005970128942e+00 2.1448403475068791e+00 4.9359999999999998e-01 1 0 0 0 0 P 436 223 6.7612951781198072e-01 -3.8356094005528828e-03 6.2847353023994392e+00 6.3686208801065884e+00 7.7734693448145542e-01 2 0 0 -232 0 P 437 113 1.7810845821651708e-01 2.0735871939980974e-01 1.0551046875695038e+00 1.1864571467001896e+00 4.6873702416751889e-01 2 0 0 -233 0 V -35 0 0 0 0 0 0 2 0 P 438 311 -1.2369415839618028e+00 1.0558553248941982e+00 -2.8607596388428793e+00 3.3281340251519032e+00 4.9767000000000000e-01 2 0 0 -234 0 P 439 211 5.6275648080675006e-02 1.3998042137776626e-01 -4.8214900971303404e-01 5.2412681614591750e-01 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 440 -311 2.3125532980712013e-01 -3.2789030227135463e-01 -2.5861271525568169e-01 6.8959919031254413e-01 4.9767000000000000e-01 2 0 0 -235 0 P 441 -211 -1.8888511766360930e-01 -1.6987306561219494e-03 -1.8591894335572315e-01 2.9954317177853707e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 442 211 -3.7131233117947887e-01 -9.7440039417604291e-02 -2.5898761456822877e-01 4.8365460606447730e-01 1.3957000000000000e-01 1 0 0 0 0 P 443 111 1.4513671492824504e-01 1.5272522925922330e-01 -1.5782484351169601e+00 1.5979603828072768e+00 1.3497999999999999e-01 2 0 0 -236 0 V -38 0 0 0 0 0 0 3 0 P 444 111 6.4524073878478458e-02 5.2426891754406907e-03 -4.2267290814981784e-01 4.4840030060593178e-01 1.3497999999999999e-01 2 0 0 -237 0 P 445 111 8.9423671618135747e-02 9.8600097683220034e-02 -1.6433314461834303e+00 1.6542298554687414e+00 1.3497999999999999e-01 2 0 0 -238 0 P 446 111 1.8723348728452821e-01 1.9041046029905753e-01 -2.5525886901165706e+00 2.5700663694665660e+00 1.3497999999999999e-01 2 0 0 -239 0 V -39 0 0 0 0 0 0 2 0 P 447 421 9.2306192415234023e-02 -8.2612157249673923e-01 -7.2889072426309616e+00 7.5693808417452990e+00 1.8645000000000000e+00 2 0 0 -240 0 P 448 22 9.7050935182175710e-02 -1.8913916266373909e-01 -6.3366036001851256e-01 6.6836962732582783e-01 0 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 449 311 2.3138959303418449e-01 3.2718157890368132e-01 -3.5856760261487737e+00 3.6421610237243072e+00 4.9767000000000000e-01 2 0 0 -241 0 P 450 211 -3.7642483979756902e-01 -5.6563777548625918e-02 -1.0377566014318720e+00 1.1141425715152551e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 451 -311 6.4660146569710530e-02 -3.2429279911288245e-02 1.1739138973989460e-01 5.1641917086320965e-01 4.9767000000000000e-01 2 0 0 -242 0 P 452 111 3.9480115687827161e-01 -2.3032851211976749e-01 -6.1378903963557767e-02 4.8052694744363206e-01 1.3497999999999999e-01 2 0 0 -243 0 V -42 0 0 0 0 0 0 2 0 P 453 -211 -1.6001939064369911e-01 2.5713707932765140e-01 4.1900809673477046e-01 5.3551214083009402e-01 1.3957000000000000e-01 1 0 0 0 0 P 454 111 1.1378135904057432e-01 -4.2799642664417376e-01 4.4240171258790600e-01 6.4036397039965787e-01 1.3497999999999999e-01 2 0 0 -244 0 V -43 0 0 0 0 0 0 2 0 P 455 311 2.6411163142661283e-02 -5.8540018964744578e-01 1.8693849032897755e-01 7.9120942843490627e-01 4.9767000000000000e-01 2 0 0 -245 0 P 456 211 1.5459900705266058e-01 2.0418543104560383e-01 1.3620672904396714e-02 2.9198947046651563e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 457 -321 -3.6331811495522615e-01 1.3553282386569734e-01 4.9570760608528381e+00 4.9966602077867890e+00 4.9359999999999998e-01 1 0 0 0 0 P 458 211 -2.1881563688341454e-01 -2.5790988683818733e-01 1.3423980567659184e+00 1.3913698718825611e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 459 -211 1.7307233928666313e-01 2.3267239345054369e-01 3.2787544439619565e-01 4.5942634800168486e-01 1.3957000000000000e-01 1 0 0 0 0 P 460 211 1.2121051164926757e-02 9.4867725588572357e-03 8.5880748032084703e-02 1.6459710361205229e-01 1.3957000000000000e-01 1 0 0 0 0 P 461 111 4.3411812782383465e-02 7.7776484900430515e-02 4.0750696238093242e-01 4.3842364430018405e-01 1.3497999999999999e-01 2 0 0 -246 0 V -46 0 0 0 0 0 0 2 0 P 462 -211 1.7599556697333343e-01 1.2295627111165715e-01 1.4542052796208590e-01 2.9448191634244747e-01 1.3957000000000000e-01 1 0 0 0 0 P 463 211 -3.7428782353760165e-01 5.7783159117327398e-02 1.4546453738250844e+00 1.5096036621632887e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 464 311 -2.1499135053033427e-01 1.7670961324570592e-01 6.2605823527657589e-01 8.4680098669871928e-01 4.9767000000000000e-01 2 0 0 -247 0 P 465 211 2.0022821287699566e-01 -1.9107923683030054e-01 5.5891393107428311e-01 6.3911437100762647e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 9.3628536105214906e+00 1.6288869986632097e+01 -4.2754696297936718e+01 9.4570859040649637e+01 0 2 0 P 466 2112 1.8639969408125770e-01 1.3652905901372228e-01 -4.4039392913155567e-01 1.0630727292263162e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 111 -5.9375033125697536e-02 8.4459997685402868e-02 -1.3965367466739614e-01 2.1995825743945796e-01 1.3497999999999999e-01 2 0 0 -248 0 V -49 0 0 0 0 0 0 2 0 P 468 3122 -2.7528115441862155e-01 1.2459717363603272e-01 -3.5462297546605748e+00 3.7298514052031799e+00 1.1156800000000000e+00 2 0 0 -249 0 P 469 -211 8.7389753933873202e-02 2.1894388813548568e-01 -7.5619916444361235e-01 8.0429494369275034e-01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 3.4389786482822416e+01 6.4912632017896186e+01 -1.9843952170890057e+03 1.9928629137429878e+03 0 2 0 P 470 -2112 5.9974556839938447e-03 4.0975378442343408e-01 -1.1027030110353916e+01 1.1074570825674281e+01 9.3957000000000002e-01 1 0 0 0 0 P 471 211 2.3886876996086581e-01 5.2444816513950825e-02 -3.1024954462821452e+00 3.1152474263119529e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 6.4581474948768403e-04 3.6630461942995478e-04 -3.7170725366664784e-02 3.7178212608225368e-02 0 2 0 P 472 22 1.2408661073783961e-01 2.6113622895701717e-02 -6.0988419449252156e+00 6.1001600370354501e+00 0 1 0 0 0 0 P 473 22 1.0607832834837232e+00 6.4594181718389576e-01 -6.2097917990144644e+01 6.2110336665618206e+01 0 1 0 0 0 0 V -52 0 9.7287388200887762e+01 -1.1781886696432731e+02 -9.0117938438751789e+03 9.0136355647400542e+03 0 2 0 P 474 -2212 9.2994070564665510e-01 -9.9363840971536266e-01 -8.2690504754725922e+01 8.2707025301297904e+01 9.3827000000000005e-01 1 0 0 0 0 P 475 211 1.6361488399241658e-01 -3.3070057107563977e-01 -1.8606258503995718e+01 1.8610439758382569e+01 1.3957000000000000e-01 1 0 0 0 0 V -53 0 0 0 0 0 0 1 0 P 476 310 1.6936740025665228e-01 1.3537065254110459e+00 -2.0281735211662144e+02 2.0282255101861753e+02 4.9767000000000000e-01 2 0 0 -250 0 V -54 0 0 0 0 0 0 2 0 P 477 -211 -3.5334311481088038e-01 -3.5577397474034972e-01 -5.6215968012369807e+01 5.6218377474190518e+01 1.3957000000000000e-01 1 0 0 0 0 P 478 111 2.6038855698680780e-01 9.9055476192523598e-02 -2.0737244775167454e+01 2.0739555314750199e+01 1.3497999999999999e-01 2 0 0 -251 0 V -55 0 0 0 0 0 0 2 0 P 479 211 7.0947319117807806e-01 1.3212968681307385e-01 -1.6997360668370945e+02 1.6997519601199582e+02 1.3957000000000000e-01 1 0 0 0 0 P 480 111 3.8876576859558656e-02 4.9486773598084544e-01 -1.1183120815721449e+02 1.1183239129593439e+02 1.3497999999999999e-01 2 0 0 -252 0 V -56 0 4.9393202627399634e-05 1.2505608722949559e-04 -9.6026717524099123e-03 9.6037210327533443e-03 0 2 0 P 481 22 -1.9482267238084636e-02 6.9854392546607217e-03 -1.6733761219631049e+00 1.6735041083470923e+00 0 1 0 0 0 0 P 482 22 1.6587304000152786e-01 3.6365376360081569e-01 -2.6786866657458827e+01 2.6789848511136821e+01 0 1 0 0 0 0 V -57 0 2.4993715034792029e-05 1.9674491273823009e-05 -3.7720813242317591e-03 3.7722216248696401e-03 0 2 0 P 483 22 6.7519556975226561e-02 7.7504924829045141e-02 -7.6729523501376642e+00 7.6736408354463652e+00 0 1 0 0 0 0 P 484 22 4.2616085815947718e-01 3.1110921300938243e-01 -6.6833885527959040e+01 6.6835968286423281e+01 0 1 0 0 0 0 V -58 0 0 0 0 0 0 3 0 P 485 -211 3.2061352980867750e-03 7.2987854291104026e-01 -8.7775990777924576e+01 8.7779136301275514e+01 1.3957000000000000e-01 1 0 0 0 0 P 486 211 4.5035594816623279e-03 8.1612164329814010e-02 -5.3292108871464812e+01 5.3292354316359237e+01 1.3957000000000000e-01 1 0 0 0 0 P 487 111 -1.5156288114439265e-01 6.3090162171766173e-01 -1.1617065961417920e+02 1.1617255004069212e+02 1.3497999999999999e-01 2 0 0 -253 0 V -59 0 -7.2966168507661430e-05 -3.3745702341228371e-05 -6.3011228875944639e-02 6.3011286568826735e-02 0 2 0 P 488 22 -9.2406597893367137e-02 -7.0165277651970587e-02 -1.3781447561240725e+02 1.3781452445394973e+02 0 1 0 0 0 0 P 489 22 -2.5412884225838078e-01 -9.0101898948093964e-02 -1.6144234956589810e+02 1.6144257472295931e+02 0 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 490 22 2.3568544468958441e-01 -5.4881585295289560e-02 -3.7639886997534333e+01 3.7640664882602671e+01 0 1 0 0 0 0 P 491 113 4.1582217926902015e-01 -6.8920945334390660e-01 -3.6574176170903991e+02 3.6574333322551109e+02 7.0825357026033309e-01 2 0 0 -254 0 V -61 0 0 0 0 0 0 2 0 P 492 2112 5.0450164131625543e-02 -3.2086700972145038e-01 -2.9263270647519198e+02 2.9263439509332761e+02 9.3957000000000002e-01 1 0 0 0 0 P 493 -211 -1.0866478031666535e-01 -3.5198582379056059e-01 -8.0519892622806665e+01 8.0520856241273577e+01 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 3 0 P 494 211 -1.5973131291059586e-01 -4.6242401302583384e-02 -8.0816188072256409e+01 8.0816479673190557e+01 1.3957000000000000e-01 1 0 0 0 0 P 495 -211 2.4842379449317442e-01 -5.2267853721922841e-01 -2.0899533442224572e+02 2.0899618225528945e+02 1.3957000000000000e-01 1 0 0 0 0 P 496 111 -5.0787102612269416e-02 -3.2762077348202434e-01 -8.0901088043071169e+01 8.0901879958713948e+01 1.3497999999999999e-01 2 0 0 -255 0 V -63 0 0 0 0 0 0 2 0 P 497 -2212 8.4041752321144136e-02 -5.9118565813896884e-01 -1.9382374158193187e+02 1.9382693237760051e+02 9.3827000000000005e-01 1 0 0 0 0 P 498 211 -1.0373791661989931e-01 -5.6932383283354782e-01 -1.1609551061770561e+02 1.1609703681211107e+02 1.3957000000000000e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 499 311 3.8197749354667637e-01 -9.7602028681611508e-01 -1.8096542468850805e+02 1.8096914413934445e+02 4.9767000000000000e-01 2 0 0 -256 0 P 500 211 -1.1476658692863888e-01 -1.8262021919406088e-01 -9.1575791944718816e+01 9.1576152308345328e+01 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 501 -321 -2.2355856475474767e-01 -5.1911465808307622e-01 -9.8565235558628856e+01 9.8568091998111171e+01 4.9359999999999998e-01 1 0 0 0 0 P 502 111 1.7075875568637833e-01 -7.7409578953628899e-01 -1.5838293416859742e+02 1.5838497541843634e+02 1.3497999999999999e-01 2 0 0 -257 0 V -66 0 0 0 0 0 0 3 0 P 503 211 -3.4904676281372948e-01 4.1658379754440367e-02 -2.2167042423884947e+01 2.2170268800139738e+01 1.3957000000000000e-01 1 0 0 0 0 P 504 -211 -1.7886436073475945e-01 -1.3001285325537645e-01 -2.4573614144587005e+01 2.4575005345136738e+01 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -3.6300292897995778e-01 -4.8120838336430882e-02 -9.6770960087063855e+00 9.6849622355304668e+00 1.3497999999999999e-01 2 0 0 -258 0 V -67 0 0 0 0 0 0 2 0 P 506 22 2.0967377527367023e-01 1.8839487295375071e-01 -1.0388557826597731e+01 1.0392381316943572e+01 0 1 0 0 0 0 P 507 22 -1.3985442589747063e-01 -1.8166839754358530e-01 -1.8764751027193100e+01 1.8766151544193978e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 508 22 -2.3023662404743042e-01 6.0485691754438985e-02 -1.8311398838726646e+01 1.8312946099764485e+01 0 1 0 0 0 0 P 509 22 -6.9015868718874274e-01 -6.1653692839589302e-01 -3.6460690475184585e+01 3.6472433243818458e+01 0 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 510 2212 -8.9752213604835540e-01 -2.0333724061930711e-01 -3.8381136286495462e+01 3.8403630886331023e+01 9.3827000000000005e-01 1 0 0 0 0 P 511 -211 -2.0192438790685316e-01 1.2940389955893422e-01 -8.1479299942711236e+00 8.1526536663895914e+00 1.3957000000000000e-01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 512 -211 -1.0113787915372849e+00 -9.0933640445108466e-01 -4.6277637174768095e+01 4.6297828912604629e+01 1.3957000000000000e-01 1 0 0 0 0 P 513 211 -2.0895902196179916e+00 -5.2087587092571008e-01 -6.3740246993128764e+01 6.3776769011049751e+01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 514 -2112 -2.1515167665873762e+00 -5.4206178247807024e-01 -5.5934173654452721e+01 5.5986046739918180e+01 9.3957000000000002e-01 1 0 0 0 0 P 515 211 -1.0466293912175617e+00 -1.0294334082065611e-01 -2.6202240460006177e+01 2.6223709030624644e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 516 211 -5.1916378322200130e-01 -1.2230719304734534e+00 -6.1638997464082266e+00 6.3070259115999230e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 -211 -8.1388723768856153e-01 -6.3640789437678424e-01 -9.8357765779022941e+00 9.8908749925883086e+00 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 3 0 P 518 -211 -1.2105502148807463e+00 -9.1205147572685974e-01 -1.0421451323211848e+01 1.0532017716662716e+01 1.3957000000000000e-01 1 0 0 0 0 P 519 211 -7.0601280783332565e-01 -4.7995873257238775e-01 -4.8904719359038715e+00 4.9663880245668031e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 111 -6.8285761090316799e-01 -1.0216679808044253e+00 -7.6194625852138413e+00 7.7191016101385124e+00 1.3497999999999999e-01 2 0 0 -259 0 V -74 0 0 0 0 0 0 2 0 P 521 -211 -2.1797801751580428e+00 -3.2014896396749402e+00 -2.7659351981302123e+01 2.7929557986753384e+01 1.3957000000000000e-01 1 0 0 0 0 P 522 111 -8.5725146194933688e-01 -6.3827308717656106e-01 -6.4673703290736384e+00 6.5564755148334255e+00 1.3497999999999999e-01 2 0 0 -260 0 V -75 0 0 0 0 0 0 2 0 P 523 2212 -2.4397697317768761e+00 -1.6905752927611450e+00 -2.4886873273156894e+01 2.5080816036797128e+01 9.3827000000000005e-01 1 0 0 0 0 P 524 211 -5.5258588576982633e-02 -1.8449138082450531e-01 -1.0355404744741528e+00 1.0625038542914591e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 525 -2212 -2.1218354989839292e+00 -1.2890530548043848e+00 -1.5098402180037926e+01 1.5329903543268721e+01 9.3827000000000005e-01 1 0 0 0 0 P 526 -211 -2.5668312021777628e-01 -7.0731091415541805e-02 -1.7439156751854590e+00 1.7696357756767698e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 -2.1308788976079606e-04 -7.2174150016719144e-05 -7.0062625089915788e-04 7.3729576487581374e-04 0 2 0 P 527 22 -6.0996934715062689e-01 -1.9313092368197166e-01 -1.8775863358244966e+00 1.9836059605225211e+00 0 1 0 0 0 0 P 528 22 -1.5845397654787423e-02 -1.8836294750592342e-02 -1.8007277799295573e-01 1.8174731910229067e-01 0 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 529 -211 -2.3715232277736373e-01 -5.1559118292056882e-01 -3.7327559892624231e+00 3.7782300819800030e+00 1.3957000000000000e-01 1 0 0 0 0 P 530 111 -1.5990700486374119e+00 -8.0389655022575879e-01 -8.2151710968082963e+00 8.4089553711592835e+00 1.3497999999999999e-01 2 0 0 -261 0 V -79 0 -2.5909295384086295e-04 -8.1041160537952437e-05 -6.9484728337129557e-04 7.5308371221738098e-04 0 2 0 P 531 22 -2.0377032609521004e-01 5.8716357659664162e-03 -4.6088421990301137e-01 5.0395544054918184e-01 0 1 0 0 0 0 P 532 22 -1.3550345437218148e-01 -1.1199239475064976e-01 -4.4899565595680024e-01 4.8218314124080808e-01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 533 211 -1.5601439125025507e+00 1.1632164405807608e+00 -9.5193618332143650e+00 9.7172450319992709e+00 1.3957000000000000e-01 1 0 0 0 0 P 534 111 -3.9616181122603056e-01 7.6256164368079332e-02 -1.1814196778478669e+00 1.2556795924455324e+00 1.3497999999999999e-01 2 0 0 -262 0 V -81 0 0 0 0 0 0 3 0 P 535 22 6.9970418101494847e-03 5.9259478554780441e-02 -3.4017664479625126e-01 3.4537051706466254e-01 0 1 0 0 0 0 P 536 -211 -8.8193153367716270e-01 5.6968645494941272e-01 -4.7369131609905688e+00 4.8538821541846939e+00 1.3957000000000000e-01 1 0 0 0 0 P 537 211 -7.5877380232698177e-01 2.9771826364443321e-01 -4.5681168032059603e+00 4.6423641348172850e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 3 0 P 538 -211 -1.7332329293719315e-01 6.8337226961270358e-03 -1.0260385765287787e+00 1.0499155247283860e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 211 -9.9082886309251683e-01 5.7246786499222746e-01 -2.6323753079148338e+00 2.8737329101720093e+00 1.3957000000000000e-01 1 0 0 0 0 P 540 111 -5.2925170101614438e-01 1.7686295984864370e-01 -2.1183089148557483e+00 2.1947300810697072e+00 1.3497999999999999e-01 2 0 0 -263 0 V -83 0 0 0 0 0 0 2 0 P 541 -211 -1.2412221827956262e+00 1.1474507164098904e+00 -5.7806366427453098e+00 6.0243269693803372e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -1.5720213442119157e+00 1.0266359182314764e+00 -4.2864876611801730e+00 4.6816053320533859e+00 1.3497999999999999e-01 2 0 0 -264 0 V -84 0 0 0 0 0 0 2 0 P 543 211 -8.2761470485770050e-01 1.0585183904283296e-01 -1.3908821935926314e+00 1.6279385040223413e+00 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2325806573448952e-01 5.1611445872791473e-01 -7.0912356241372687e-01 1.0301693865741413e+00 1.3497999999999999e-01 2 0 0 -265 0 V -85 0 0 0 0 0 0 3 0 P 545 211 -7.0463319155524384e-01 5.1758101741911222e-01 -1.1701648163238205e+00 1.4673661869131689e+00 1.3957000000000000e-01 1 0 0 0 0 P 546 -211 -1.9839498154635268e-01 3.2543231373834836e-01 -1.9570110267155252e-01 4.5060566575969058e-01 1.3957000000000000e-01 1 0 0 0 0 P 547 111 -6.7842992782481493e-01 3.0243675093065531e-01 -8.0197699506603382e-01 1.1014181114803860e+00 1.3497999999999999e-01 2 0 0 -266 0 V -86 0 -9.1218156885866731e-05 8.4192478860516570e-05 -2.2974618980977862e-04 2.6300151230638808e-04 0 2 0 P 548 22 -3.4981384411973809e-01 2.5034414275262007e-01 -8.0218386135560116e-01 9.1024220005872902e-01 0 1 0 0 0 0 P 549 22 -4.4029815354935609e-02 1.1316543808837952e-01 -1.8976865373699134e-01 2.2529354841866805e-01 0 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 550 211 -4.3531139832422094e-01 7.4600502313817452e-01 -6.2452322491422529e-01 1.0749551392572811e+00 1.3957000000000000e-01 1 0 0 0 0 P 551 111 -2.1070686530731466e+00 2.4493120174692216e+00 -3.9325579614231527e+00 5.0913749997456730e+00 1.3497999999999999e-01 2 0 0 -267 0 V -88 0 0 0 0 0 0 2 0 P 552 2112 -1.5112590822364871e+00 1.0875500412939008e+00 -3.4164838452942570e-01 2.1133349260143790e+00 9.3957000000000002e-01 1 0 0 0 0 P 553 -211 -2.8171487417124536e-01 -5.9001237307823827e-02 -1.0235065793321128e-01 3.3585690168959753e-01 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 554 211 -3.8414801884154726e-01 -8.6962400621444693e-03 -2.6103919439951564e-02 4.0964194668177195e-01 1.3957000000000000e-01 1 0 0 0 0 P 555 111 -1.2122522510496914e+00 2.8402330999451608e-01 -1.4763994360683304e+00 1.9360267704807619e+00 1.3497999999999999e-01 2 0 0 -268 0 V -90 0 0 0 0 0 0 2 0 P 556 311 -1.0704652605969409e+00 3.4606332054949906e-01 1.6818489947862814e-01 1.2416188164196200e+00 4.9767000000000000e-01 2 0 0 -269 0 P 557 211 -7.0538070789849616e-01 1.4213123852237589e-01 -3.3405012960911618e-01 8.0550140039056128e-01 1.3957000000000000e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 558 -321 -7.9135950515040177e-01 -1.4047745109080887e+00 -1.0591998933795315e+00 1.9912776468951183e+00 4.9359999999999998e-01 1 0 0 0 0 P 559 211 -7.2735892221865203e-02 -8.4121578493827109e-01 -2.5687913380721356e-01 8.9353297708152146e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 560 -211 -2.9593234159506437e-01 -6.9584415539612171e-02 -7.3238703478471312e-01 8.0516364504904958e-01 1.3957000000000000e-01 1 0 0 0 0 P 561 111 -4.4018613046456934e-01 -4.2675196467280496e-01 -5.6070156350396316e-01 8.4171664621846387e-01 1.3497999999999999e-01 2 0 0 -270 0 V -93 0 0 0 0 0 0 2 0 P 562 211 2.0173217708341104e-01 -2.3696670078949819e-01 -5.0609951342253967e-01 6.1029959113570087e-01 1.3957000000000000e-01 1 0 0 0 0 P 563 111 1.4981432251983232e-02 -1.6815308286026680e+00 -1.0076856911034389e+00 1.9650497254034340e+00 1.3497999999999999e-01 2 0 0 -271 0 V -94 0 0 0 0 0 0 2 0 P 564 2212 -5.6833348066885551e-02 -6.0612352514383616e-01 -1.5547057944285727e+00 1.9152222997122454e+00 9.3827000000000005e-01 1 0 0 0 0 P 565 -211 1.9571842890155464e-01 -5.9660127233768945e-01 -1.2631490633199365e+00 1.4174851401805508e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 3 0 P 566 -211 -6.6671745657545566e-03 -3.3433073073732378e-01 -5.3171678858408766e-01 6.4344698063960060e-01 1.3957000000000000e-01 1 0 0 0 0 P 567 211 5.3163231745763029e-01 -2.7274335418365120e-01 -8.3008471147082041e-01 1.0322510699119252e+00 1.3957000000000000e-01 1 0 0 0 0 P 568 111 7.2278669123443773e-02 3.3426125093078234e-02 -1.2730379689953900e-01 2.0190930873546531e-01 1.3497999999999999e-01 2 0 0 -272 0 V -96 0 3.6509182977155740e-04 -1.4303120538009019e-04 -4.5751649745702180e-04 6.1002972192348074e-04 0 2 0 P 569 22 8.2307805617318403e-02 -3.4394091967457123e-02 -1.9291975309534728e-01 2.1254542940786547e-01 0 1 0 0 0 0 P 570 22 4.3528582095073109e-01 -1.6838239950156092e-01 -4.5570506899849483e-01 6.5229861895728258e-01 0 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 571 211 1.6602423614154138e-01 -2.1863619904386931e+00 6.9594307632101837e-01 2.3046820497848697e+00 1.3957000000000000e-01 1 0 0 0 0 P 572 111 5.2140005328074168e-01 -9.4146396675471855e-01 5.3204597991170266e-01 1.2080997232840069e+00 1.3497999999999999e-01 2 0 0 -273 0 V -98 0 0 0 0 0 0 2 0 P 573 -211 1.1699983626435864e+00 -1.1360097459027212e+00 -2.4677842658955362e-01 1.6552322157644992e+00 1.3957000000000000e-01 1 0 0 0 0 P 574 111 7.2870511258801660e-02 -4.0873937559090573e-01 -4.4878833556496855e-01 6.2610586893011744e-01 1.3497999999999999e-01 2 0 0 -274 0 V -99 0 0 0 0 0 0 2 0 P 575 -311 6.2217690576313645e-01 -1.8371995243214938e+00 1.0720136209406071e-01 2.0053861860417150e+00 4.9767000000000000e-01 2 0 0 -275 0 P 576 -211 1.0225746392863328e-02 -7.0040683060382214e-01 3.4831880361547024e-01 7.9465720162715126e-01 1.3957000000000000e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 3 0 P 577 211 9.6353301004331551e-02 -3.2725783328492503e-01 2.5315011267362941e-01 4.4715367884816332e-01 1.3957000000000000e-01 1 0 0 0 0 P 578 -211 1.6845617301047205e-02 -3.3267500526811872e-01 -2.0114680143187771e-01 4.1339600213194055e-01 1.3957000000000000e-01 1 0 0 0 0 P 579 111 3.0503269961455592e-01 -2.4741656896815542e-01 1.1207257042852378e-01 4.3016249008551910e-01 1.3497999999999999e-01 2 0 0 -276 0 V -101 0 0 0 0 0 0 1 0 P 580 130 1.0334439358529635e-01 -2.1580132592566628e-01 7.4847749147610776e-02 5.5725029422087513e-01 4.9767000000000000e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 581 -321 2.8901624246114732e+00 -1.7295799386801796e+00 1.5848152161823734e+00 3.7549654904358558e+00 4.9359999999999998e-01 1 0 0 0 0 P 582 111 4.7680727450621374e-01 -6.1128556988216690e-02 3.3076602699237900e-01 5.9892206714549157e-01 1.3497999999999999e-01 2 0 0 -277 0 V -103 0 4.5403606420078190e-04 -2.8982070935128018e-04 5.4142760545209160e-04 7.6565926611858758e-04 0 2 0 P 583 22 7.4800588939653168e-01 -4.3038211697189344e-01 7.9234371166269180e-01 1.1715588481132801e+00 0 1 0 0 0 0 P 584 22 3.8122453150990521e-01 -2.9042926215111470e-01 5.5423769673543177e-01 7.3270780275713188e-01 0 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 585 -211 3.4967679054320955e-01 2.0172153825265365e-01 5.7444104890426961e-01 7.1584058309504495e-01 1.3957000000000000e-01 1 0 0 0 0 P 586 211 1.4332297512296823e+00 3.1074657447831333e-01 9.9557122235413176e-01 1.7780193466437881e+00 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 587 311 1.5479090020664308e+00 -1.2563657665385153e-01 1.0690579371378333e+00 1.9499659304533996e+00 4.9767000000000000e-01 2 0 0 -278 0 P 588 211 3.3507924320164206e-01 1.5173995364452400e-01 6.3871781468565403e-01 7.5016221209378775e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 589 -311 2.5700571050740897e+00 1.0734645920991992e+00 3.1520044240598590e+00 4.2356023269454175e+00 4.9767000000000000e-01 2 0 0 -279 0 P 590 -211 2.2166937236508777e+00 7.2510076080281138e-01 3.1256512699593451e+00 3.9023938581450843e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 3 0 P 591 -211 5.1010962544091576e-01 5.2015128162179264e-02 7.2890801593481402e-01 9.0205547729572955e-01 1.3957000000000000e-01 1 0 0 0 0 P 592 211 9.2786284343165902e-03 2.0523043388649308e-02 5.5694166986779932e-02 1.5195036489559943e-01 1.3957000000000000e-01 1 0 0 0 0 P 593 111 3.7722623136805261e-01 3.6980139404865059e-01 1.0363059209944994e+00 1.1709834597297806e+00 1.3497999999999999e-01 2 0 0 -280 0 V -108 0 0 0 0 0 0 2 0 P 594 321 1.6952570722960554e+00 3.9601740608989988e-01 2.3356877783712058e+00 2.9546242883196814e+00 4.9359999999999998e-01 1 0 0 0 0 P 595 -211 1.4391804990364393e-01 -2.8538969423445290e-02 7.2030007255478490e-01 7.4822380160367019e-01 1.3957000000000000e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 596 -321 1.3187375508127142e+00 3.2535824975817984e-01 1.4648030839051502e+00 2.0577210095703600e+00 4.9359999999999998e-01 1 0 0 0 0 P 597 211 1.7941546504847565e+00 4.2430707762821929e-02 2.3441576665433548e+00 2.9555619136352598e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 1 0 P 598 310 3.5198135331102947e+00 1.8056335546353444e+00 8.8605517253657595e+00 9.7162982739453607e+00 4.9767000000000000e-01 2 0 0 -281 0 V -111 0 0 0 0 0 0 2 0 P 599 3122 2.1187574098497066e+00 4.8428939182182279e-01 6.0049606242634042e+00 6.4828977423817289e+00 1.1156800000000000e+00 2 0 0 -282 0 P 600 211 5.5247237697007190e-01 1.6808868103363503e-01 8.6556406888372406e-01 1.0498383086214451e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 601 -2212 9.6932152237292313e-01 6.2506448937565784e-01 4.2621181558090608e+00 4.5140105888877846e+00 9.3827000000000005e-01 1 0 0 0 0 P 602 -211 1.9655840645307665e-01 4.1612014727938906e-01 1.7224180327448404e+00 1.7882938373052117e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 603 211 5.6707568040459611e-01 1.4415680743430831e-01 2.3163059266724293e+00 2.3931378863897104e+00 1.3957000000000000e-01 1 0 0 0 0 P 604 111 2.8179906707669895e+00 -8.3521418538493139e-02 7.5684596429999358e+00 8.0776140175179947e+00 1.3497999999999999e-01 2 0 0 -283 0 V -114 0 5.9412057704326351e-06 -1.3609332558351123e-05 9.2252706977085297e-05 9.3775678435468370e-05 0 2 0 P 605 22 9.8171202786992859e-02 -6.2042831159957325e-02 5.8146611538805781e-01 5.9295003271731594e-01 0 1 0 0 0 0 P 606 22 3.0217220146852670e-03 -1.6975660811076335e-01 9.8981782942027774e-01 1.0042737536346726e+00 0 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 607 211 -3.9505925786036783e-01 8.8282931800686304e-02 1.5494982304898083e-01 4.5536241152670881e-01 1.3957000000000000e-01 1 0 0 0 0 P 608 111 -1.3984496245204108e+00 -2.3712115262677802e-01 1.9728342710096951e+00 2.4335534624525272e+00 1.3497999999999999e-01 2 0 0 -284 0 V -116 0 0 0 0 0 0 2 0 P 609 -211 -7.1005549183445882e-01 2.4268023569515088e-01 -7.6045188526011748e-02 7.6703008668453543e-01 1.3957000000000000e-01 1 0 0 0 0 P 610 111 3.3173369532191077e-02 6.8847167137166640e-02 3.8528575564004061e-02 1.5982633201047763e-01 1.3497999999999999e-01 2 0 0 -285 0 V -117 0 0 0 0 0 0 2 0 P 611 321 -3.7567659288698687e+00 -2.9097361744823885e-01 2.1316160848542047e+00 4.3572220489180458e+00 4.9359999999999998e-01 1 0 0 0 0 P 612 -211 -4.3280383656474991e-01 7.6801978776157659e-02 4.9402698710305160e-01 6.7584033156894296e-01 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 613 -311 -8.3192900129370095e-01 4.8136893466506164e-01 1.1910591896723863e+00 1.6093847696114043e+00 4.9767000000000000e-01 2 0 0 -286 0 P 614 -211 -1.8182235630160524e+00 1.1021310729743470e+00 2.5701007539966469e+00 3.3384917998576102e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 615 22 -1.2343602031948520e-01 -3.7170873525024919e-02 4.0281729040097347e-01 4.2294195156889797e-01 0 1 0 0 0 0 P 616 22 -2.3440119253046681e+00 1.0453477328217067e+00 3.9676802881497211e+00 4.7254238600847049e+00 0 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 617 -321 -2.0881103433782608e-01 4.2784151723480524e-01 1.3313858973930466e+00 1.4976247125725792e+00 4.9359999999999998e-01 1 0 0 0 0 P 618 211 -4.2603604839212306e-01 3.3122880338243876e-01 2.5439325900432270e+00 2.6042834028392110e+00 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 3 0 P 619 -211 -6.5188421865585477e-01 8.2468303886882824e-02 3.0163006678453903e+00 3.0901947445789046e+00 1.3957000000000000e-01 1 0 0 0 0 P 620 211 -3.1979196502849727e-01 2.7868274821914252e-01 2.5814785939072480e+00 2.6198172628550074e+00 1.3957000000000000e-01 1 0 0 0 0 P 621 111 -7.6061392565161579e-01 2.3543123903438520e-01 2.4025742597786746e+00 2.5346684371648047e+00 1.3497999999999999e-01 2 0 0 -287 0 V -122 0 0 0 0 0 0 2 0 P 622 -211 -3.3571259860802011e-01 1.9804104084057699e-03 1.3602502803723966e+00 1.4080012361651957e+00 1.3957000000000000e-01 1 0 0 0 0 P 623 111 -4.8705752005044962e+00 -4.4192062530129433e-01 3.1657220121523718e+01 3.2033039225865572e+01 1.3497999999999999e-01 2 0 0 -288 0 V -123 0 0 0 0 0 0 3 0 P 624 211 -3.9315739011129963e-01 -2.9208550369395514e-01 6.9968019015253633e+00 7.0153120606966741e+00 1.3957000000000000e-01 1 0 0 0 0 P 625 -211 -6.0414752815131822e-01 -2.5659509132207570e-01 4.3360358191391830e+00 4.3876556025308027e+00 1.3957000000000000e-01 1 0 0 0 0 P 626 111 -2.6528925004078319e-01 -3.2263946612189881e-01 2.5137417841887655e+00 2.5517821163381371e+00 1.3497999999999999e-01 2 0 0 -289 0 V -124 0 -3.4613729377541236e-05 -1.0207031852289004e-05 3.9624015633794738e-04 3.9789543175168551e-04 0 2 0 P 627 22 -2.6637971785142961e-01 -1.1057053067263942e-01 3.6874773173031952e+00 3.6987393747007111e+00 0 1 0 0 0 0 P 628 22 -1.0701964206274162e+00 -2.8356426681366664e-01 1.1612958307297738e+01 1.1665613130871984e+01 0 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 629 321 -1.6359929799471562e+00 -8.2032160754269068e-01 1.7366577111615278e+01 1.7469717859883069e+01 4.9359999999999998e-01 1 0 0 0 0 P 630 111 -1.9672771119359509e+00 -1.7143720013842101e+00 2.3399887851897745e+01 2.3545322713355805e+01 1.3497999999999999e-01 2 0 0 -290 0 V -126 0 0 0 0 0 0 2 0 P 631 3122 -1.1421517473226954e+00 -5.7355556366185001e-01 1.4906084248280402e+01 1.5002318690047645e+01 1.1156800000000000e+00 2 0 0 -291 0 P 632 22 -1.4432542868715745e-01 -1.0287260671219653e-01 1.1739270367699151e+00 1.1872309338274871e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 633 -2212 -1.2262867310943721e+00 -2.7486330291755410e+00 2.0943301271366050e+01 2.1179258282858623e+01 9.3827000000000005e-01 1 0 0 0 0 P 634 -211 -1.7013218510169969e-02 -3.9076529838498346e-02 9.0636574216460919e-01 9.1803870738542215e-01 1.3957000000000000e-01 1 0 0 0 0 V -128 0 -2.8222203631572577e-05 5.7631102929193439e-05 2.3173476253302410e-04 2.4546083334916097e-04 0 2 0 P 635 22 -1.1301185923299098e-01 1.2865288528074473e-01 5.4644069170661036e-01 5.7264358441456831e-01 0 1 0 0 0 0 P 636 22 3.5768321776847238e-02 2.9082149015794975e-02 8.7812148478598445e-02 9.9177203300642433e-02 0 1 0 0 0 0 V -129 0 0 0 0 0 0 3 0 P 637 211 -4.6489705310565774e-02 -1.0517544593163168e-01 3.7539553090402561e-01 4.1668304099098641e-01 1.3957000000000000e-01 1 0 0 0 0 P 638 -211 -1.1585370619256391e-01 -1.5830860723920462e-01 2.1512752882449351e+00 2.1647052563981770e+00 1.3957000000000000e-01 1 0 0 0 0 P 639 111 -4.3531176582485953e-02 -6.3057904986483937e-01 2.1131602126716134e+00 2.2097942407114370e+00 1.3497999999999999e-01 2 0 0 -292 0 V -130 0 0 0 0 0 0 3 0 P 640 211 -2.4588595008894574e-02 -9.2967917694560698e-02 1.8708174619949767e+00 1.8784795430694208e+00 1.3957000000000000e-01 1 0 0 0 0 P 641 -211 3.2907587273151745e-01 -5.8861276515292127e-01 5.3565774501854202e+00 5.4006627076730052e+00 1.3957000000000000e-01 1 0 0 0 0 P 642 111 -1.1305974639761412e-01 -4.7963067042366236e-01 2.6759780104358915e+00 2.7243175290341939e+00 1.3497999999999999e-01 2 0 0 -293 0 V -131 0 0 0 0 0 0 3 0 P 643 211 -8.3917504976048427e-02 -6.3233608663762805e-02 2.4760512289994407e+00 2.4822067017949347e+00 1.3957000000000000e-01 1 0 0 0 0 P 644 -211 7.8112012967507957e-02 -1.3020846051556276e-01 1.0069101897324269e+00 1.0278149857083525e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 221 2.0811003929555294e-01 -3.8061817904800366e-01 5.0570878477051524e+00 5.1050973534874480e+00 5.4744999999999999e-01 2 0 0 -294 0 V -132 0 0 0 0 0 0 3 0 P 646 -211 5.0123190650909311e-01 -2.9258703088512211e-01 8.4749770774307649e+00 8.4959729779832642e+00 1.3957000000000000e-01 1 0 0 0 0 P 647 211 9.6160184649517963e-02 -1.3459088200085462e-01 3.7092453238422651e+00 3.7155540830373210e+00 1.3957000000000000e-01 1 0 0 0 0 P 648 111 2.7104053994043370e-01 -1.5371555556161481e-01 3.2459868291617355e+00 3.2637005900977307e+00 1.3497999999999999e-01 2 0 0 -295 0 V -133 0 0 0 0 0 0 2 0 P 649 -211 1.0710329310732818e+00 1.6877810781197466e-01 1.0271797703605507e+01 1.0329806650553310e+01 1.3957000000000000e-01 1 0 0 0 0 P 650 111 5.2421060672174546e-01 5.3338735212286981e-01 6.5936000760800333e+00 6.6372494597752496e+00 1.3497999999999999e-01 2 0 0 -296 0 V -134 0 3.4014095189874988e-04 1.4027425833169820e-04 6.6172485520101911e-03 6.6274843921771652e-03 0 2 0 P 651 22 5.9640506012701577e-01 2.9014887138394019e-01 1.1334693584885613e+01 1.1354081381888962e+01 0 1 0 0 0 0 P 652 22 2.6645021411929379e+00 1.0546505025232962e+00 5.2104399343264021e+01 5.2183141820565261e+01 0 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 653 22 -5.2453417330102142e-02 1.1333089861859809e-01 1.2495355403488690e+00 1.2557604549300978e+00 0 1 0 0 0 0 P 654 113 2.5106707670369821e-01 -4.5495974092441209e-02 9.9295829199207208e+00 9.9662656201574702e+00 8.1530907470007308e-01 2 0 0 -297 0 V -136 0 0 0 0 0 0 2 0 P 655 211 4.7110556790366459e-01 -2.4616015696961974e-01 1.5369011455912068e+01 1.5378833772293838e+01 1.3957000000000000e-01 1 0 0 0 0 P 656 111 1.0940483503307687e+00 7.5556821212280978e-01 3.5225067262274258e+01 3.5250410045106960e+01 1.3497999999999999e-01 2 0 0 -298 0 V -137 0 0 0 0 0 0 3 0 P 657 211 3.7731403755900228e-01 1.1034682063455047e-01 8.5501993078565874e+00 8.5603697521038473e+00 1.3957000000000000e-01 1 0 0 0 0 P 658 -211 1.1434237447810960e-02 1.3810420114189587e-01 2.8727340658018066e+00 2.8794590307690147e+00 1.3957000000000000e-01 1 0 0 0 0 P 659 111 9.9392869963505293e-01 2.0345530254220393e-01 1.5959783018125240e+01 1.5992566457768108e+01 1.3497999999999999e-01 2 0 0 -299 0 V -138 0 0 0 0 0 0 2 0 P 660 -211 1.2448502908408778e+00 1.8708023621474643e-01 4.8000414582918751e+01 4.8017121229602758e+01 1.3957000000000000e-01 1 0 0 0 0 P 661 111 3.5952607814951987e-01 3.9638829262853781e-01 3.2663396365578862e+01 3.2668058779405811e+01 1.3497999999999999e-01 2 0 0 -300 0 V -139 0 0 0 0 0 0 2 0 P 662 22 -9.7665653272693900e-02 1.0712340563640911e-01 3.2803670185825240e+01 3.2803990483846079e+01 0 1 0 0 0 0 P 663 111 4.8882952853422240e-01 2.8512782671164449e-01 2.0146047811088778e+01 2.0154446511690843e+01 1.3497999999999999e-01 2 0 0 -301 0 V -140 0 0 0 0 0 0 3 0 P 664 211 4.3488264697112039e-01 -2.6446655980477057e-02 3.9346427578354017e+01 3.9349087223286475e+01 1.3957000000000000e-01 1 0 0 0 0 P 665 -211 3.8244147693815905e-01 -5.1751919340301761e-03 1.8877047186009811e+01 1.8881437405918945e+01 1.3957000000000000e-01 1 0 0 0 0 P 666 221 1.3585243456511726e+00 -2.4617499215482407e-02 1.1030926415604864e+02 1.1031899045300592e+02 5.4744999999999999e-01 2 0 0 -302 0 V -141 0 0 0 0 0 0 3 0 P 667 111 3.0480065924575206e-01 2.3576341107995713e-01 4.7193357698509359e+01 4.7195123882534020e+01 1.3497999999999999e-01 2 0 0 -303 0 P 668 111 3.2373664606150115e-01 1.2259352174337676e-01 3.0132020294498666e+01 3.0134311029390670e+01 1.3497999999999999e-01 2 0 0 -304 0 P 669 111 3.0134938213037388e-01 8.8022788415713857e-02 5.6723369385571175e+01 5.6724398749689222e+01 1.3497999999999999e-01 2 0 0 -305 0 V -142 0 0 0 0 0 0 3 0 P 670 -211 4.4686084501188306e-01 3.6831932045070528e-02 7.4497511149203604e+01 7.4498991190596925e+01 1.3957000000000000e-01 1 0 0 0 0 P 671 211 5.5243179034571666e-01 -5.0417960625251257e-01 1.0362701004285682e+02 1.0362980299202346e+02 1.3957000000000000e-01 1 0 0 0 0 P 672 111 7.9777737919158731e-01 -3.5452830584043304e-01 1.5153822647824015e+02 1.5154080124783951e+02 1.3497999999999999e-01 2 0 0 -306 0 V -143 0 1.5042813272193163e-05 -7.1131567204726364e-05 1.0215605597916427e-02 1.0215869118829693e-02 0 2 0 P 673 22 1.3477958017326808e-01 -8.3885542838986271e-01 1.2156892358126679e+02 1.2157189241215609e+02 0 1 0 0 0 0 P 674 22 7.0188854257726974e-02 -1.3035995072586987e-01 1.7625564064205584e+01 1.7626185882754967e+01 0 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 675 -211 1.4261774840982795e+00 -4.6940062455193649e-01 1.8569012253697787e+02 1.8569624499904469e+02 1.3957000000000000e-01 1 0 0 0 0 P 676 211 8.3950938543101017e-01 5.2198105806549322e-03 1.6262505748782354e+02 1.6262728432202715e+02 1.3957000000000000e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 677 321 1.3481525044285089e-01 1.5922504806130475e-01 2.0008481118547229e+02 2.0008552880169464e+02 4.9359999999999998e-01 1 0 0 0 0 P 678 -211 -2.4365471821446660e-01 -2.3986171523702210e-01 7.5591986581347570e+01 7.5592888662649187e+01 1.3957000000000000e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 1 0 P 679 310 -5.1283730469712852e-01 -5.3336223064514343e-01 5.3167458700918488e+01 5.3174935989739950e+01 4.9767000000000000e-01 2 0 0 -307 0 V -147 0 0 0 0 0 0 1 0 P 680 130 -6.5534791239249957e-01 -4.2670826377857546e-01 4.3224614066031705e+01 4.3234552124602146e+01 4.9767000000000000e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 2 0 P 681 3122 7.7459599663986911e-02 2.0615980619919369e-01 5.7014111162808355e+01 5.7025451470398203e+01 1.1156800000000000e+00 2 0 0 -308 0 P 682 22 6.8764871618428980e-02 -2.0313907848853976e-02 2.2967792864202807e+00 2.2978982468660454e+00 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 683 -2112 7.2092442328380135e-02 -3.4449531968911533e-03 4.7857505984904698e+01 4.7866782637524665e+01 9.3957000000000002e-01 1 0 0 0 0 P 684 111 1.0116740077513250e-02 -3.1093539653872165e-01 2.2681346314738878e+01 2.2683881357006992e+01 1.3497999999999999e-01 2 0 0 -309 0 V -150 0 0 0 0 0 0 2 0 P 685 -211 1.6498751593189595e-01 2.5388195881901776e-01 3.1523299343785258e+01 3.1525062382685608e+01 1.3957000000000000e-01 1 0 0 0 0 P 686 111 -3.6765146415142241e-01 -1.5287684345969027e-01 1.6524084452477499e+01 1.6529432099178951e+01 1.3497999999999999e-01 2 0 0 -310 0 V -151 0 0 0 0 0 0 2 0 P 687 211 7.4250258797372493e-01 4.1851611827284210e-02 5.0006790822232588e+01 5.0012515131454705e+01 1.3957000000000000e-01 1 0 0 0 0 P 688 111 -3.6363453714048630e-02 1.6806480895051601e-02 2.9662953909652985e+00 2.9696351131794056e+00 1.3497999999999999e-01 2 0 0 -311 0 V -152 0 0 0 0 0 0 2 0 P 689 22 3.7326415211997477e-01 1.4975906592472110e-01 1.8027265384600759e+02 1.8027310248228258e+02 0 1 0 0 0 0 P 690 22 2.5780843556915045e-01 -1.1250175084025452e-01 3.3278246588646887e+01 3.3279435359515652e+01 0 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 691 211 4.5581970137588379e-01 -3.2228913760936506e-02 3.5803530452850163e+02 3.5803562333782492e+02 1.3957000000000000e-01 1 0 0 0 0 P 692 111 6.4227342523874364e-01 -6.2137009369086016e-01 3.6463438622078900e+02 3.6463550629383036e+02 1.3497999999999999e-01 2 0 0 -312 0 V -154 0 -1.0380123772246118e-01 -8.3644115681792752e-02 -1.2527348689498320e+01 1.2536107167842502e+01 0 2 0 P 693 333 1.4714843041062417e-01 -3.7060706679785321e-01 -3.4655834490910927e+01 3.4673101468202027e+01 1.0188713875113029e+00 2 0 0 -313 0 P 694 -213 -6.0206811674020078e-01 4.0280576822212819e-03 -2.0246569964085612e+01 2.0267687926208374e+01 7.0219393412023179e-01 2 0 0 -314 0 V -155 0 0 0 0 0 0 2 0 P 695 -321 -1.7897946230267595e-01 -6.9721014100591575e-02 -2.2279175564253265e+01 2.2285470590735866e+01 4.9359999999999998e-01 1 0 0 0 0 P 696 321 3.8571521960812566e-02 1.3072674833008013e-02 -2.2333578738583359e+01 2.2339069785683474e+01 4.9359999999999998e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 1 0 P 697 310 1.0770429984769053e-01 3.8528110512724068e-01 -9.5512889867369495e+00 9.5726087605853962e+00 4.9767000000000000e-01 2 0 0 -315 0 V -157 0 0 0 0 0 0 3 0 P 698 211 -8.7848234174508086e-02 2.6840141505257409e-01 -3.6255866564644194e+01 3.6257235095495552e+01 1.3957000000000000e-01 1 0 0 0 0 P 699 -211 -2.3862353015155349e-01 -7.2498129021751997e-02 -8.2522017682518836e+01 8.2522512560795832e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 111 -2.8664430989651019e-02 2.8379733945956315e-01 -5.3885175833438147e+01 5.3886099847552849e+01 1.3497999999999999e-01 2 0 0 -316 0 V -158 0 0 0 0 0 0 2 0 P 701 211 -5.2663791240586577e-01 -5.1519487706623990e-01 -1.1346908078404360e+02 1.1347155831754868e+02 1.3957000000000000e-01 1 0 0 0 0 P 702 111 1.7896887986396343e-01 -2.9756334811826846e-01 -2.1888975457229037e+01 2.1892145622886723e+01 1.3497999999999999e-01 2 0 0 -317 0 V -159 0 0 0 0 0 0 2 0 P 703 -211 -2.6265502485860615e-01 -7.2264988720734911e-03 -2.9651676759541449e+01 2.9653169380718815e+01 1.3957000000000000e-01 1 0 0 0 0 P 704 111 6.2009461787111686e-01 -3.7975156502758295e-01 -1.3661101117758130e+02 1.3661301300808753e+02 1.3497999999999999e-01 2 0 0 -318 0 V -160 0 0 0 0 0 0 2 0 P 705 2112 2.5719323040094488e-01 3.2374065038239469e-01 -1.8201237064221806e+02 1.8201526533494803e+02 9.3957000000000002e-01 1 0 0 0 0 P 706 211 1.5270582673232741e-01 -3.1657764257435628e-01 -5.8821902078596636e+01 5.8823117771860808e+01 1.3957000000000000e-01 1 0 0 0 0 V -161 0 1.8166351078628454e-03 -1.2961697647348748e-04 4.2718586071285487e-02 4.2757436150002062e-02 0 2 0 P 707 22 3.6486261008805108e+00 -2.9038180303778982e-01 8.6331076459964137e+01 8.6408631263038401e+01 0 1 0 0 0 0 P 708 22 3.3627209343378051e-01 6.0591819092575159e-03 7.3747072509919436e+00 7.3823724284501457e+00 0 1 0 0 0 0 V -162 0 0 0 0 0 0 2 0 P 709 2212 1.7042420818396540e+01 -3.2263568681850892e+00 4.0979964109706219e+02 4.1016762388061068e+02 9.3827000000000005e-01 1 0 0 0 0 P 710 111 2.1959677473260473e+00 -5.8523788203795080e-01 5.1485104656446431e+01 5.1535414996015220e+01 1.3497999999999999e-01 2 0 0 -319 0 V -163 0 0 0 0 0 0 3 0 P 711 -211 8.1353201499671357e-01 -9.5885603613536985e-02 2.2390646282936657e+01 2.2406060544881381e+01 1.3957000000000000e-01 1 0 0 0 0 P 712 211 6.4437189531761074e-01 -7.2794699191740919e-02 1.8526225761475406e+01 1.8538096853716148e+01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 1.7640659127494804e-01 -8.2459690260071661e-02 8.9039531307641226e+00 8.9071050202188164e+00 1.3497999999999999e-01 2 0 0 -320 0 V -164 0 0 0 0 0 0 2 0 P 714 -2212 5.8433995673057311e+00 -9.7400390910333368e-01 1.2878322651725429e+02 1.2892282103997519e+02 9.3827000000000005e-01 1 0 0 0 0 P 715 -211 7.3111864354137279e-01 -4.9241091501236268e-02 1.6938531513552682e+01 1.6954948798995041e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 716 -211 6.6383885679178567e-01 -1.7139742186380572e-01 2.2993831799055762e+01 2.3004474340705464e+01 1.3957000000000000e-01 1 0 0 0 0 P 717 211 1.1203595238281945e+00 -5.3783202320206702e-01 1.9115624593643950e+01 1.9156488512716511e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 0 0 0 0 0 3 0 P 718 -211 -1.5900209953927673e+00 -3.6903366909862573e-01 1.7005435391102580e+01 1.7084164165699836e+01 1.3957000000000000e-01 1 0 0 0 0 P 719 211 -2.9704806699227942e-01 -1.9381616362728815e-01 3.9806538001520533e+00 3.9988606778621372e+00 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -4.7492989764778926e-01 1.1666628105720928e-01 5.7744250654717275e+00 5.7966692044624750e+00 1.3497999999999999e-01 2 0 0 -321 0 V -167 0 0 0 0 0 0 2 0 P 721 -211 -3.7465269920256867e+00 1.1271637324934858e-01 5.1912012566830526e+01 5.2047340931179626e+01 1.3957000000000000e-01 1 0 0 0 0 P 722 111 -7.1521738166374316e-01 -3.3412774360071978e-01 1.0561648281947649e+01 1.0591969188212614e+01 1.3497999999999999e-01 2 0 0 -322 0 V -168 0 0 0 0 0 0 2 0 P 723 -2112 -1.3508657067816490e+00 4.2570791707602873e-01 1.9268623453566267e+01 1.9343440928868986e+01 9.3957000000000002e-01 1 0 0 0 0 P 724 -211 -1.1345165331674780e+00 2.6049453122680127e-01 1.0532238706068178e+01 1.0597288196106120e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 3 0 P 725 -211 -6.1144014004629277e-01 3.4858800079978680e-01 7.9903536379626550e+00 8.0225060725289854e+00 1.3957000000000000e-01 1 0 0 0 0 P 726 211 -3.0768786510745989e+00 1.4143464135145751e+00 2.8653288984570775e+01 2.8853041562876609e+01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 -1.4971805607719160e+00 7.8640611019949791e-01 1.3130027217849316e+01 1.3239177411892941e+01 1.3497999999999999e-01 2 0 0 -323 0 V -170 0 0 0 0 0 0 2 0 P 728 -211 -4.8412292671544538e-01 3.8492959143340266e-01 6.0563648410900210e+00 6.0894647278577754e+00 1.3957000000000000e-01 1 0 0 0 0 P 729 111 -7.8496273722579106e+00 5.2064671236071902e+00 7.3777439328037687e+01 7.4376425856552061e+01 1.3497999999999999e-01 2 0 0 -324 0 V -171 0 0 0 0 0 0 2 0 P 730 211 -1.0868094185234067e+00 3.0735557367613540e+00 1.6955210656660526e+01 1.7266341470497000e+01 1.3957000000000000e-01 1 0 0 0 0 P 731 -211 -1.4793574965382392e-01 2.0221166271285522e+00 9.7420009401777836e+00 9.9517286308992681e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 732 -211 3.7712018773607131e-01 9.6948317755659463e-01 3.7985955509274714e+00 3.9409294857925712e+00 1.3957000000000000e-01 1 0 0 0 0 P 733 111 -2.3305262478424066e-01 3.6378079368286936e-02 7.7961269984841752e-01 8.2562246380672577e-01 1.3497999999999999e-01 2 0 0 -325 0 V -173 0 0 0 0 0 0 3 0 P 734 -211 2.9788152199956103e-01 2.4906880115391630e-01 1.9326607752609997e+00 1.9762151011439701e+00 1.3957000000000000e-01 1 0 0 0 0 P 735 211 -7.3143513288920561e-03 8.8857539217454007e-01 4.8017001298854556e+00 4.8852250357128382e+00 1.3957000000000000e-01 1 0 0 0 0 P 736 111 1.8822841472142421e-01 6.9254349674272919e-01 3.8019742815969462e+00 3.8714692907620747e+00 1.3497999999999999e-01 2 0 0 -326 0 V -174 0 -1.8879387867992119e-05 -2.1919461849314101e-05 4.8364046782343616e-04 4.8492168461307009e-04 0 2 0 P 737 22 -7.8589543150853744e-02 2.7349376745600053e-03 1.1767552161927477e+00 1.1793797670867445e+00 0 1 0 0 0 0 P 738 22 -4.8188196137500687e-02 -1.4992720042714039e-01 2.0709584050189758e+00 2.0769374046883660e+00 0 1 0 0 0 0 V -175 0 0 0 0 0 0 2 0 P 739 -2212 5.9594167747986326e-01 1.2573122572470239e+00 1.7185103400957594e+01 1.7266850033798445e+01 9.3827000000000005e-01 1 0 0 0 0 P 740 111 2.1850656706545007e-01 6.3465321560031718e-01 1.2242283334879883e+01 1.2261413078263054e+01 1.3497999999999999e-01 2 0 0 -327 0 V -176 0 0 0 0 0 0 2 0 P 741 211 3.2387581387937553e-01 7.1744841584339758e-01 1.6028799848207338e+01 1.6048723691652363e+01 1.3957000000000000e-01 1 0 0 0 0 P 742 111 3.2162061196880076e-01 6.3516113917970784e-03 1.8779795025741656e+01 1.8783034924374750e+01 1.3497999999999999e-01 2 0 0 -328 0 V -177 0 -1.2082603880702853e-05 8.2237400260685123e-07 1.9543961309958946e-04 1.9587667899007041e-04 0 2 0 P 743 22 5.5456901198141124e-03 -1.1941944792040344e-02 5.1032816507051748e-01 5.1049799293294240e-01 0 1 0 0 0 0 P 744 22 -3.3594816717782011e-01 3.4430011951418656e-02 4.8340274821830924e+00 4.8458093539938734e+00 0 1 0 0 0 0 V -178 0 0 0 0 0 0 2 0 P 745 -211 2.2092162529285947e-01 1.2223907295159162e+00 2.3968466254657461e+01 2.4001039557604205e+01 1.3957000000000000e-01 1 0 0 0 0 P 746 211 -5.5165851852332992e-01 1.9353533757010291e+00 4.4457124212743217e+01 4.4502868366680318e+01 1.3957000000000000e-01 1 0 0 0 0 V -179 0 4.6723012710478957e-06 -1.0167232371452391e-06 4.4953432389881984e-04 4.4958133114645943e-04 0 2 0 P 747 22 9.4914048166832257e-02 -5.0462127942531090e-02 1.2389433002385017e+01 1.2389899322572518e+01 0 1 0 0 0 0 P 748 22 4.8268517868779670e-02 1.9304667496955075e-02 1.3865361149662621e+00 1.3875103308120456e+00 0 1 0 0 0 0 V -180 0 0 0 0 0 0 2 0 P 749 2112 -1.1104988388245332e-01 2.5612317540239388e-01 2.7993659820751027e+01 2.8010814217057650e+01 9.3957000000000002e-01 1 0 0 0 0 P 750 111 -1.0433493554805558e-01 2.8574439163244425e-01 5.7648426144808225e+00 5.7744407180487443e+00 1.3497999999999999e-01 2 0 0 -329 0 V -181 0 0 0 0 0 0 2 0 P 751 -2212 2.4436868866183487e-01 3.9644974971041397e-01 2.6411841131389711e+01 2.6432604695767555e+01 9.3827000000000005e-01 1 0 0 0 0 P 752 111 1.5690157904110352e-01 4.2332837914399801e-01 1.5400026442642382e+01 1.5407233984611866e+01 1.3497999999999999e-01 2 0 0 -330 0 V -182 0 0 0 0 0 0 3 0 P 753 211 -6.6127016444444214e-02 1.5633850877616887e-01 4.1098721364417763e+00 4.1157433440911610e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 -211 1.6939873821162545e-02 1.3851132197110602e-01 3.4281609042371222e+00 3.4338374038208541e+00 1.3957000000000000e-01 1 0 0 0 0 P 755 221 7.9062939868641366e-02 4.0795277227968990e-01 2.7543931665057219e+01 2.7552505321380725e+01 5.4744999999999999e-01 2 0 0 -331 0 V -183 0 0 0 0 0 0 2 0 P 756 -211 4.1664522055193132e-01 -2.6480562045024347e-01 3.3663251960243244e+01 3.3667160967033610e+01 1.3957000000000000e-01 1 0 0 0 0 P 757 211 -1.5782830732401754e-01 2.2690110291214180e-01 1.7452616428424779e+01 1.7455362897050236e+01 1.3957000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 758 211 -1.3205743006443374e-01 -5.1639171246306348e-01 3.2155271009821824e+01 3.2159991185718994e+01 1.3957000000000000e-01 1 0 0 0 0 P 759 111 1.8687610278293679e-01 -1.3460583950228291e-01 3.0130612461702375e+00 3.0248634817777145e+00 1.3497999999999999e-01 2 0 0 -332 0 V -185 0 0 0 0 0 0 2 0 P 760 211 4.0500653626941535e-01 -4.3528434806052690e-01 -2.6144397854137804e+01 2.6151530006835792e+01 1.3957000000000000e-01 1 0 0 0 0 P 761 111 3.3640488975850052e-01 8.9241895468204727e-02 -4.5594852947670759e+01 4.5596381076636789e+01 1.3497999999999999e-01 2 0 0 -333 0 V -186 0 0 0 0 0 0 2 0 P 762 321 1.2509875509541870e+00 5.9357881085567346e-02 -9.3690437193564705e+01 9.3700107554324518e+01 4.9359999999999998e-01 1 0 0 0 0 P 763 -211 2.4213666955278795e-02 -1.9293632643639647e-01 -2.2578433602618862e+01 2.2579702266870012e+01 1.3957000000000000e-01 1 0 0 0 0 V -187 0 0 0 0 0 0 1 0 P 764 310 -3.6717108804713516e-01 1.0832888796611762e-02 -4.1757616034160343e+01 4.1762197071569908e+01 4.9767000000000000e-01 2 0 0 -334 0 V -188 0 0 0 0 0 0 2 0 P 765 22 -1.9564396963698957e-01 7.2161244407377229e-02 -8.9555660724213325e+01 8.9555903499202415e+01 0 1 0 0 0 0 P 766 113 -1.9526054420706893e+00 -1.4289331367133482e-02 -5.9806073959847049e+02 5.9806452212203169e+02 8.4350446777491728e-01 2 0 0 -335 0 V -189 0 0 0 0 0 0 2 0 P 767 -211 -3.6647494341560649e-01 2.4844031185285192e-01 1.1167193650432621e+00 1.2093669409520176e+00 1.3957000000000000e-01 1 0 0 0 0 P 768 211 -3.5000655300056105e-01 3.9795584632126242e-02 1.4277871024800359e-02 3.7917267596775495e-01 1.3957000000000000e-01 1 0 0 0 0 V -190 0 0 0 0 0 0 2 0 P 769 -211 1.9020485860248587e-01 2.4225383116076157e-01 6.9228330298329344e-01 7.7045490681643203e-01 1.3957000000000000e-01 1 0 0 0 0 P 770 211 -4.9858452732300379e-01 2.8564878743074035e-01 2.8407798104858106e-01 6.5601969853289721e-01 1.3957000000000000e-01 1 0 0 0 0 V -191 0 0 0 0 0 0 3 0 P 771 211 -1.1127045248208091e-01 1.6546961254880957e-01 6.3465261539278572e-01 6.7972423334579102e-01 1.3957000000000000e-01 1 0 0 0 0 P 772 -211 -1.8616268412981643e-01 4.1152445058706959e-02 2.7259352362213013e-01 3.6074517698433128e-01 1.3957000000000000e-01 1 0 0 0 0 P 773 111 -2.9549696544638095e-03 -2.8620187128558855e-01 4.5436005796807383e-01 5.5369929171869348e-01 1.3497999999999999e-01 2 0 0 -336 0 V -192 0 0 0 0 0 0 3 0 P 774 -211 7.0097320115980488e-01 -4.1536841593006885e-01 8.1453079336616359e+00 8.1871494104338698e+00 1.3957000000000000e-01 1 0 0 0 0 P 775 211 1.8903725675733740e-01 -2.9015454361076953e-01 2.2025162392355950e+00 2.2339387441505245e+00 1.3957000000000000e-01 1 0 0 0 0 P 776 111 3.2243232648135706e-01 4.7796173366391831e-02 3.6406264614898798e+00 3.6576806465093386e+00 1.3497999999999999e-01 2 0 0 -337 0 V -193 0 0 0 0 0 0 2 0 P 777 -311 4.8607914588903711e-01 -1.1759972163300201e+00 -1.0051540879884946e+01 1.0143983038125725e+01 4.9767000000000000e-01 2 0 0 -338 0 P 778 -211 2.7184418944657007e-01 -4.9004816824770270e-01 -2.0417523971905855e+00 2.1218574662008507e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 9.2291439911387280e-05 9.5589060030592987e-05 -2.7201764437972710e-03 2.7234262418967268e-03 0 2 0 P 779 22 1.4839022129224005e-01 1.2359194405982891e-01 -3.4584420302423924e+00 3.4638296584790029e+00 0 1 0 0 0 0 P 780 22 1.9385715873782767e+00 2.0379380721811136e+00 -5.8052185136271760e+01 5.8120284328979388e+01 0 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 781 211 5.8692595156655447e-01 8.3970418224870058e-02 -5.9250415087976611e+00 5.9562681076018089e+00 1.3957000000000000e-01 1 0 0 0 0 P 782 -211 1.2225020489692178e+00 6.6212769495498702e-01 -1.3663443977512800e+01 1.3734704418213417e+01 1.3957000000000000e-01 1 0 0 0 0 P 783 111 3.4206125365738388e-01 4.0316320725317029e-01 -4.3488594128747629e+00 4.3829606735956181e+00 1.3497999999999999e-01 2 0 0 -339 0 V -196 0 0 0 0 0 0 2 0 P 784 -211 6.0805874236520774e-01 1.3525139382878621e+00 -1.0947649629276384e+01 1.1048508568025145e+01 1.3957000000000000e-01 1 0 0 0 0 P 785 111 6.2027623515826413e-01 2.5752490591790766e-01 -6.2243336340722921e+00 6.2619174757987448e+00 1.3497999999999999e-01 2 0 0 -340 0 V -197 0 0 0 0 0 0 2 0 P 786 -211 5.3376069718469021e-01 9.8233289103071897e-01 -4.8495361821589835e+00 4.9786905263963721e+00 1.3957000000000000e-01 1 0 0 0 0 P 787 111 9.3224754917727207e-02 6.4724422583762631e-01 -5.4894280753845255e+00 5.5298875339404034e+00 1.3497999999999999e-01 2 0 0 -341 0 V -198 0 0 0 0 0 0 1 0 P 788 310 1.2160786149167702e+00 1.0267746765815724e+00 -1.6978471511050135e+01 1.7060166579332339e+01 4.9767000000000000e-01 2 0 0 -342 0 V -199 0 0 0 0 0 0 2 0 P 789 22 -2.6334192786341015e-01 5.1897194191410187e-02 -2.0221754767958164e+00 2.0399107697863030e+00 0 1 0 0 0 0 P 790 22 2.1141911390086984e-01 -1.6010360596373560e-01 -1.0504143534637012e+00 1.0833750598605201e+00 0 1 0 0 0 0 V -200 0 0 0 0 0 0 2 0 P 791 22 -7.2620931368135966e-01 4.6592527665873858e-02 -8.1347419620855295e+00 8.1672258215765634e+00 0 1 0 0 0 0 P 792 22 -4.1085396384071182e-01 -2.3689235984603704e-01 -2.5767952964730703e+00 2.6200749931409955e+00 0 1 0 0 0 0 V -201 0 0 0 0 0 0 2 0 P 793 311 -1.1156399674888902e+00 -5.9201966534069139e-01 -1.0137512946269677e+01 1.0227999999310423e+01 4.9767000000000000e-01 2 0 0 -343 0 P 794 211 -3.6248030487126404e-01 1.4877548398696142e-01 -2.7681067955686327e+00 2.7991822256917045e+00 1.3957000000000000e-01 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 795 211 -7.6724678805840518e-01 -5.8715350197572758e-01 -9.7376380996926120e+00 9.7864443192690498e+00 1.3957000000000000e-01 1 0 0 0 0 P 796 111 -1.7544976134955690e+00 -1.0363472624126935e+00 -1.1276228492452463e+01 1.1459660821266425e+01 1.3497999999999999e-01 2 0 0 -344 0 V -203 0 0 0 0 0 0 2 0 P 797 -2112 -1.0836095793309926e+00 2.7848099467925952e-01 2.1301007470770643e+00 2.5829987151397709e+00 9.3957000000000002e-01 1 0 0 0 0 P 798 211 -7.3159581543432950e-01 -4.6816132188729175e-03 1.2106446265698250e+00 1.4214058362782052e+00 1.3957000000000000e-01 1 0 0 0 0 V -204 0 0 0 0 0 0 3 0 P 799 211 -8.8321801445897283e-02 7.3044488532763241e-02 1.1693606639799168e+00 1.1832245709412956e+00 1.3957000000000000e-01 1 0 0 0 0 P 800 -211 -3.7682041618106184e-02 1.9398132887760024e-02 7.1969672638979831e-01 7.3432920866341145e-01 1.3957000000000000e-01 1 0 0 0 0 P 801 221 -5.8770053313641057e-01 -1.1370174116810429e-01 2.3183970141800256e+00 2.4562137977896668e+00 5.4744999999999999e-01 2 0 0 -345 0 V -205 0 0 0 0 0 0 2 0 P 802 2212 -9.9449924706193882e-01 -4.9374458156550394e-02 2.0639820587739517e+00 2.4762550598364816e+00 9.3827000000000005e-01 1 0 0 0 0 P 803 -211 5.2942445447212605e-02 1.7770962166065596e-01 4.7640548634814156e-01 5.2992979203222179e-01 1.3957000000000000e-01 1 0 0 0 0 V -206 0 0 0 0 0 0 2 0 P 804 22 2.1085106523246866e-01 3.0697923055932436e-01 7.5491483402683216e-03 3.7249350242000839e-01 0 1 0 0 0 0 P 805 22 -4.1938019794711406e-01 1.8350354988821216e+00 1.7051929543468274e+00 2.5398657531731432e+00 0 1 0 0 0 0 V -207 0 0 0 0 0 0 2 0 P 806 -211 8.2282501339670688e-01 1.0464101825235432e+00 -9.1915799883013960e-01 1.6236829999952802e+00 1.3957000000000000e-01 1 0 0 0 0 P 807 111 4.0299194764856749e-01 1.1800618802343656e+00 -3.7586485073767012e-01 1.3093672278898321e+00 1.3497999999999999e-01 2 0 0 -346 0 V -208 0 0 0 0 0 0 2 0 P 808 -211 1.9739532875447297e-01 2.4998147302639503e-01 -8.3856058729072536e-01 9.0781016524816405e-01 1.3957000000000000e-01 1 0 0 0 0 P 809 211 7.5983054380725223e-02 -1.5219311907411837e-01 6.6227939092327923e-02 2.2978706417670711e-01 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 810 22 3.0612755044966905e-01 1.1143589537069933e-01 -1.1382129762019522e+00 1.1839175710816570e+00 0 1 0 0 0 0 P 811 111 -4.2205393254039686e-01 2.8288348607526409e-01 -1.0621315721645126e+00 1.1851141994152155e+00 1.3497999999999999e-01 2 0 0 -347 0 V -210 0 0 0 0 0 0 2 0 P 812 211 1.8903828265857234e-01 7.2245924727393482e-02 -1.3696489328563650e+00 1.3915361763622238e+00 1.3957000000000000e-01 1 0 0 0 0 P 813 111 3.5882582712199579e-01 7.5167276645153425e-01 -1.4539776297872098e+00 1.6810825293114908e+00 1.3497999999999999e-01 2 0 0 -348 0 V -211 0 0 0 0 0 0 2 0 P 814 -311 9.7633295462916403e-01 -7.9019449004239878e-02 -1.1142849460363440e+01 1.1196885264967113e+01 4.9767000000000000e-01 2 0 0 -349 0 P 815 -211 3.4041299087215238e-01 -7.7427249804835757e-02 -8.0826793255717497e+00 8.0914189638339611e+00 1.3957000000000000e-01 1 0 0 0 0 V -212 0 0 0 0 0 0 2 0 P 816 321 7.5737843858836773e-01 -7.2412628109972121e-02 -1.1864799993263052e+01 1.1899411142072672e+01 4.9359999999999998e-01 1 0 0 0 0 P 817 -211 8.6403406614846368e-01 3.1320406554663427e-01 -8.2486297065068257e+00 8.3008447446092415e+00 1.3957000000000000e-01 1 0 0 0 0 V -213 0 0 0 0 0 0 2 0 P 818 211 8.3888415504979175e-01 -1.0948587657620314e-01 -7.9677810694767706e+00 8.0137836718229210e+00 1.3957000000000000e-01 1 0 0 0 0 P 819 111 4.8031106607261544e-02 -1.0046349892805334e-01 -3.3161973285026408e-01 3.7495486319617943e-01 1.3497999999999999e-01 2 0 0 -350 0 V -214 0 0 0 0 0 0 2 0 P 820 -2212 6.0523539597319420e-01 -4.4164925981521985e-01 -2.9928248358994938e+00 3.2247038692740442e+00 9.3827000000000005e-01 1 0 0 0 0 P 821 -211 1.5314758647039497e-03 -1.6068685520889597e-01 -1.0570260158555584e+00 1.0782422705267700e+00 1.3957000000000000e-01 1 0 0 0 0 V -215 0 0 0 0 0 0 2 0 P 822 -211 -6.5519812205347928e-03 -1.0105123144106808e-01 -1.2942818777852452e-01 2.1560547424706905e-01 1.3957000000000000e-01 1 0 0 0 0 P 823 211 5.7744274032630072e-01 5.4668947161824033e-01 -2.9585804930184110e+00 3.0667552584617579e+00 1.3957000000000000e-01 1 0 0 0 0 V -216 0 0 0 0 0 0 2 0 P 824 2212 2.0847119125155666e-01 -1.4752213205116493e-01 -6.5413790727336285e-01 1.1719513691526364e+00 9.3827000000000005e-01 1 0 0 0 0 P 825 211 1.2820210255983289e-01 -3.3358601456583326e-01 -1.9622838843854964e-01 4.3093012605742542e-01 1.3957000000000000e-01 1 0 0 0 0 V -217 0 0 0 0 0 0 2 0 P 826 3122 -8.5037752973763436e-01 4.8191329185958398e-01 -2.6887820535064200e+00 3.0707772888328817e+00 1.1156800000000000e+00 2 0 0 -351 0 P 827 111 -5.1027602733455257e-01 2.5697451147245481e-01 -7.3161948283611589e-01 9.3803208457079201e-01 1.3497999999999999e-01 2 0 0 -352 0 V -218 0 0 0 0 0 0 1 0 P 828 310 1.9819593188087020e-01 -1.2681529829300811e-01 -1.2066325807996796e+00 1.3262734865941364e+00 4.9767000000000000e-01 2 0 0 -353 0 V -219 0 0 0 0 0 0 3 0 P 829 -211 -4.3532884599481442e-01 -2.6907871527861538e-01 -4.5663642805795784e-01 6.9993654819611861e-01 1.3957000000000000e-01 1 0 0 0 0 P 830 211 3.4128080371028047e-02 -2.9453117100422305e-01 -2.5334276731419747e-01 4.1421694703783646e-01 1.3957000000000000e-01 1 0 0 0 0 P 831 111 -2.2117354449678922e-01 3.9186567158457968e-02 -1.3316379651266061e-01 2.9394816028103121e-01 1.3497999999999999e-01 2 0 0 -354 0 V -220 0 0 0 0 0 0 2 0 P 832 22 8.2643044194993753e-01 3.8554746713633276e-01 -6.1505339724328822e-01 1.0999658204950373e+00 0 1 0 0 0 0 P 833 22 4.0501532287986963e-01 -1.9169029621287981e-01 -3.5769509230581786e-01 5.7334837619839318e-01 0 1 0 0 0 0 V -221 0 0 0 0 0 0 2 0 P 834 -311 2.0371062446581401e-01 -1.4892428596355828e-01 7.0052061123779052e-01 8.9558975939822760e-01 4.9767000000000000e-01 2 0 0 -355 0 P 835 111 -4.0942618996477925e-01 8.7965388296034563e-02 5.6382090831216980e-01 7.1517923041508125e-01 1.3497999999999999e-01 2 0 0 -356 0 V -222 0 0 0 0 0 0 2 0 P 836 321 3.9407142659058580e-01 5.1677023543415163e-02 -2.8711130885758888e-02 6.3437220387890991e-01 4.9359999999999998e-01 1 0 0 0 0 P 837 -211 2.0324729130809971e-01 -5.4969706146116348e-02 4.7285048331601492e-01 5.3609560200589113e-01 1.3957000000000000e-01 1 0 0 0 0 V -223 0 -6.5130550669066100e-05 8.6888055629107520e-06 1.5857199787126431e-04 1.8111441013403965e-04 0 2 0 P 838 22 1.2008226943317566e-03 3.2020861106626622e-02 1.4150193077344261e-02 3.5028638073428112e-02 0 1 0 0 0 0 P 839 22 -1.5332196661065084e-01 -1.1726989368732215e-02 3.5621599393433273e-01 3.8798837876879311e-01 0 1 0 0 0 0 V -224 0 9.8400099334745582e-05 -1.6670862029413950e-05 5.1124491526321049e-04 5.2285807240448428e-04 0 2 0 P 840 22 1.8766238768146928e-01 2.4400258307019924e-02 7.2621950252081624e-01 7.5047139199128776e-01 0 1 0 0 0 0 P 841 22 1.0578174239723828e-01 -7.4115315903066012e-02 7.9839094432658753e-01 8.0877126374439579e-01 0 1 0 0 0 0 V -225 0 0 0 0 0 0 3 0 P 842 211 -2.7126635787864867e-01 -1.1449741600674683e-02 -9.3780038767676058e-03 3.0542472944439514e-01 1.3957000000000000e-01 1 0 0 0 0 P 843 -211 -2.6642553848820000e-01 3.4440866955289084e-02 3.8893259220102873e-02 3.0522321567685734e-01 1.3957000000000000e-01 1 0 0 0 0 P 844 111 -7.2532008976476908e-02 1.6865407524172960e-01 -3.9796764589032592e-02 2.3131898385900279e-01 1.3497999999999999e-01 2 0 0 -357 0 V -226 0 0 0 0 0 0 2 0 P 845 211 -4.9944271307911070e-01 -4.6970472292611046e-02 -6.6371975709655073e-01 8.4359525234292199e-01 1.3957000000000000e-01 1 0 0 0 0 P 846 -211 -5.4450894490873467e-02 3.2829534666210780e-01 2.5872111966820825e-02 3.6178983627027650e-01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 2 0 P 847 211 -4.2074134637232530e-02 -1.5869182759552089e-01 4.2428559624574802e-01 4.7586907971908449e-01 1.3957000000000000e-01 1 0 0 0 0 P 848 -211 -2.4961383784240423e-02 5.5232616287255787e-01 7.1161659715457593e-01 9.1190198328537775e-01 1.3957000000000000e-01 1 0 0 0 0 V -228 0 0 0 0 0 0 2 0 P 849 211 -8.3391788088472932e-02 -1.9179243489928302e-01 2.8171150134562206e-01 3.7759725011656653e-01 1.3957000000000000e-01 1 0 0 0 0 P 850 111 -9.5707015606753890e-02 -4.2813073633528487e-01 4.0125223263913830e+00 4.0386892403873640e+00 1.3497999999999999e-01 2 0 0 -358 0 V -229 0 0 0 0 0 0 2 0 P 851 211 3.4811666123266033e-01 -3.8094839058682259e-02 8.8903400616382040e+00 8.8983292040168909e+00 1.3957000000000000e-01 1 0 0 0 0 P 852 111 -5.6240505722522781e-02 -7.0264340977718809e-01 1.0774388836013648e+01 1.0798265839744953e+01 1.3497999999999999e-01 2 0 0 -359 0 V -230 0 7.8882515118143793e-06 1.3866700421187188e-05 2.4747926744132320e-04 2.4807150135188421e-04 0 2 0 P 853 22 1.8146035368793459e-01 2.7221299636167956e-01 5.1740066838081216e+00 5.1843391998826496e+00 0 1 0 0 0 0 P 854 22 -1.0901842623242156e-02 2.7610579709088499e-02 1.7695040864191797e-01 1.7942307934877172e-01 0 1 0 0 0 0 V -231 0 0 0 0 0 0 2 0 P 855 321 6.7837562212656668e-04 -2.8285240407648904e-01 6.1759077639204019e-01 8.3968164787010624e-01 4.9359999999999998e-01 1 0 0 0 0 P 856 -211 -1.3516116327768241e-01 2.3471883800197998e-01 7.1688232511597894e-01 7.7894898801864310e-01 1.3957000000000000e-01 1 0 0 0 0 V -232 0 0 0 0 0 0 3 0 P 857 211 1.1252533086906084e-01 -9.1375362713707609e-02 2.7759603697779318e+00 2.7832440005281400e+00 1.3957000000000000e-01 1 0 0 0 0 P 858 -211 3.8025324846826569e-01 2.3224698298211771e-01 2.1606078350705036e+00 2.2104834756095810e+00 1.3957000000000000e-01 1 0 0 0 0 P 859 111 1.8335093847465425e-01 -1.4470722966896299e-01 1.3481670975510045e+00 1.3748934039688685e+00 1.3497999999999999e-01 2 0 0 -360 0 V -233 0 0 0 0 0 0 2 0 P 860 211 -1.0631400316685199e-01 1.0252148202818823e-01 3.1879441562515692e-01 3.7805156510772819e-01 1.3957000000000000e-01 1 0 0 0 0 P 861 -211 2.8442246138336907e-01 1.0483723737162153e-01 7.3631027194434695e-01 8.0840558159246156e-01 1.3957000000000000e-01 1 0 0 0 0 V -234 0 0 0 0 0 0 1 0 P 862 130 -1.2369415839618028e+00 1.0558553248941982e+00 -2.8607596388428793e+00 3.3281340251519032e+00 4.9767000000000000e-01 1 0 0 0 0 V -235 0 0 0 0 0 0 1 0 P 863 310 2.3125532980712013e-01 -3.2789030227135463e-01 -2.5861271525568169e-01 6.8959919031254413e-01 4.9767000000000000e-01 2 0 0 -361 0 V -236 0 3.5606669290056595e-05 3.7468374099343376e-05 -3.8719472267607880e-04 3.9203069269799225e-04 0 2 0 P 864 22 2.6613029175446286e-02 6.8749275336548135e-02 -2.2122839290320637e-01 2.3318816009336557e-01 0 1 0 0 0 0 P 865 22 1.1852368575279876e-01 8.3975953922675151e-02 -1.3570200422137537e+00 1.3647722227139110e+00 0 1 0 0 0 0 V -237 0 5.8044807716675872e-06 4.7162379374848117e-07 -3.8022967562169860e-05 4.0337361955461070e-05 0 2 0 P 866 22 6.7686463269588049e-02 9.2549747208144854e-03 -7.7992064227064492e-02 1.0368159889501488e-01 0 1 0 0 0 0 P 867 22 -3.1623893911095881e-03 -4.0122855453737947e-03 -3.4468084392275333e-01 3.4471870171091679e-01 0 1 0 0 0 0 V -238 0 1.9722475065944449e-06 2.1746344484278676e-06 -3.6243829945651712e-05 3.6484195389721003e-05 0 2 0 P 868 22 9.1479223335071969e-02 7.8644972242250796e-02 -6.7532405623641367e-01 6.8601462148599646e-01 0 1 0 0 0 0 P 869 22 -2.0555517169362249e-03 1.9955125440969234e-02 -9.6800738994701663e-01 9.6821523398274467e-01 0 1 0 0 0 0 V -239 0 1.9501393191911533e-05 1.9832292331883641e-05 -2.6586609278682756e-04 2.6768648881763182e-04 0 2 0 P 870 22 -1.6038915062854701e-02 2.6982814215342911e-02 -1.4311539383049329e-01 1.4651735395723733e-01 0 1 0 0 0 0 P 871 22 2.0327240234738292e-01 1.6342764608371463e-01 -2.4094732962860772e+00 2.4235490155093280e+00 0 1 0 0 0 0 V -240 0 3.7856196219362296e-03 -3.3880522564294753e-02 -2.9892935195562209e-01 3.1043200776300295e-01 0 2 0 P 872 -321 -1.6075034477725217e-01 -1.0777576467066488e-01 -2.9434479551242672e+00 2.9908164626605864e+00 4.9359999999999998e-01 1 0 0 0 0 P 873 20213 2.5305653719248622e-01 -7.1834580782607438e-01 -4.3454592875066949e+00 4.5785643790847130e+00 1.2248171469276732e+00 2 0 0 -362 0 V -241 0 0 0 0 0 0 1 0 P 874 310 2.3138959303418449e-01 3.2718157890368132e-01 -3.5856760261487737e+00 3.6421610237243072e+00 4.9767000000000000e-01 2 0 0 -363 0 V -242 0 0 0 0 0 0 1 0 P 875 130 6.4660146569710530e-02 -3.2429279911288245e-02 1.1739138973989460e-01 5.1641917086320965e-01 4.9767000000000000e-01 1 0 0 0 0 V -243 0 1.4251906045121486e-04 -8.3146167559374111e-05 -2.2157138022543215e-05 1.7346516816887743e-04 0 2 0 P 876 22 1.9412887848447991e-01 -3.6964021743064776e-02 -3.3873976790389865e-02 2.0049889443251201e-01 0 1 0 0 0 0 P 877 22 2.0067227839379170e-01 -1.9336449037670272e-01 -2.7504927173167895e-02 2.8002805301112005e-01 0 1 0 0 0 0 V -244 0 3.6346929546085125e-06 -1.3672148141300187e-05 1.4132318346422570e-05 2.0456131225913523e-05 0 2 0 P 878 22 -1.5409384923195695e-02 -7.7154008492466050e-02 1.3538887837095925e-01 1.5658971408337502e-01 0 1 0 0 0 0 P 879 22 1.2919074396377003e-01 -3.5084241815170775e-01 3.0701283421694675e-01 4.8377425631628285e-01 0 1 0 0 0 0 V -245 0 0 0 0 0 0 1 0 P 880 310 2.6411163142661283e-02 -5.8540018964744578e-01 1.8693849032897755e-01 7.9120942843490627e-01 4.9767000000000000e-01 2 0 0 -364 0 V -246 0 5.7310922126352851e-06 1.0267809113925931e-05 5.3797799009299899e-05 5.7879322991635119e-05 0 2 0 P 881 22 1.9561829534402837e-02 8.5146045363528086e-02 4.0385352821932113e-01 4.1319509492608331e-01 0 1 0 0 0 0 P 882 22 2.3849983247980627e-02 -7.3695604630975688e-03 3.6534341616112891e-03 2.5228549374100663e-02 0 1 0 0 0 0 V -247 0 0 0 0 0 0 1 0 P 883 310 -2.1499135053033427e-01 1.7670961324570592e-01 6.2605823527657589e-01 8.4680098669871928e-01 4.9767000000000000e-01 2 0 0 -365 0 V -248 0 9.3628532162584062e+00 1.6288870547464782e+01 -4.2754697225267378e+01 9.4570860501220125e+01 0 2 0 P 884 22 -2.5483477360714944e-03 -3.4732593489535328e-02 -1.3545678994828470e-02 3.7367533316024333e-02 0 1 0 0 0 0 P 885 22 -5.6826685389626042e-02 1.1919259117493819e-01 -1.2610799567256770e-01 1.8259072412343361e-01 0 1 0 0 0 0 V -249 0 -1.6570631556391003e+01 7.5001641926807769e+00 -2.1346636242824539e+02 2.2451952269031983e+02 0 2 0 P 886 2212 -3.0470296868687080e-01 1.7537074771196290e-01 -2.9921082745729981e+00 3.1554177723318744e+00 9.3827000000000005e-01 1 0 0 0 0 P 887 -211 2.9421814268249216e-02 -5.0773574075930195e-02 -5.5412148008757633e-01 5.7443363287130533e-01 1.3957000000000000e-01 1 0 0 0 0 V -250 0 9.6404879504733021e+00 7.7053738954050488e+01 -1.1544478077034146e+04 1.1544774001468089e+04 0 2 0 P 888 211 -1.0354511274219208e-01 4.9135378968667381e-01 -8.8554158037992977e+01 8.8555691718487239e+01 1.3957000000000000e-01 1 0 0 0 0 P 889 -211 2.7291251299884434e-01 8.6235273572437210e-01 -1.1426319407862847e+02 1.1426685930013032e+02 1.3957000000000000e-01 1 0 0 0 0 V -251 0 3.1708069276240664e-06 1.2062196348600193e-06 -2.5252184717267843e-04 2.5254998310537952e-04 0 2 0 P 890 22 2.3728972559626435e-01 3.3007009964764036e-02 -1.6158716555233564e+01 1.6160492461214162e+01 0 1 0 0 0 0 P 891 22 2.3098831390543452e-02 6.6048466227759547e-02 -4.5785282199338884e+00 4.5790628535360414e+00 0 1 0 0 0 0 V -252 0 2.0987692162844612e-05 2.6715653854015155e-04 -6.0372572911483957e-02 6.0373211634160831e-02 0 2 0 P 892 22 -6.6282203643615728e-03 4.2781340458877642e-01 -8.7179452667861611e+01 8.7180502612168823e+01 0 1 0 0 0 0 P 893 22 4.5504797223920229e-02 6.7054331392069025e-02 -2.4651755489352883e+01 2.4651888683765574e+01 0 1 0 0 0 0 V -253 0 -7.9178158231437155e-05 3.2959012164225713e-04 -6.0688862598348749e-02 6.0689850178476765e-02 0 2 0 P 894 22 -1.4212198457039471e-01 4.7164629617577936e-01 -9.5759881522625236e+01 9.5761148479508194e+01 0 1 0 0 0 0 P 895 22 -9.4408965739979350e-03 1.5925532554188240e-01 -2.0410778091553972e+01 2.0411401561183911e+01 0 1 0 0 0 0 V -254 0 0 0 0 0 0 2 0 P 896 -211 -1.0767078639475153e-01 -4.4102469474699180e-01 -1.7120348709716532e+02 1.7120414588961850e+02 1.3957000000000000e-01 1 0 0 0 0 P 897 211 5.2349296566377168e-01 -2.4818475859691483e-01 -1.9453827461187461e+02 1.9453918733589265e+02 1.3957000000000000e-01 1 0 0 0 0 V -255 0 -2.7046208749690068e-05 -1.7447145780253846e-04 -4.3083137307410660e-02 4.3083559034870683e-02 0 2 0 P 898 22 -5.6812675295130045e-02 -3.3817081658381409e-01 -7.5560448685857395e+01 7.5561226781924020e+01 0 1 0 0 0 0 P 899 22 6.0255726828606247e-03 1.0550043101789740e-02 -5.3406393572137700e+00 5.3406531767899246e+00 0 1 0 0 0 0 V -256 0 0 0 0 0 0 1 0 P 900 130 3.8197749354667637e-01 -9.7602028681611508e-01 -1.8096542468850805e+02 1.8096914413934445e+02 4.9767000000000000e-01 1 0 0 0 0 V -257 0 5.0917799455150702e-06 -2.3082420583502484e-05 -4.7227507876237687e-03 4.7228116547515017e-03 0 2 0 P 901 22 1.4659851977780436e-01 -7.3635830108519595e-01 -1.4248887758013421e+02 1.4249085566702192e+02 0 1 0 0 0 0 P 902 22 2.4160235908573954e-02 -3.7737488451092975e-02 -1.5894056588463183e+01 1.5894119751414481e+01 0 1 0 0 0 0 V -258 0 -5.5899556996894617e-07 -7.4102254570904222e-08 -1.4901956340219250e-05 1.4914069702387952e-05 0 2 0 P 903 22 -1.6323373512861039e-01 -3.5481414141479622e-02 -6.0858029168681904e+00 6.0880950490276442e+00 0 1 0 0 0 0 P 904 22 -1.9976919385134737e-01 -1.2639424194951260e-02 -3.5912930918381951e+00 3.5968671865028248e+00 0 1 0 0 0 0 V -259 0 -1.1455284225283276e-04 -1.7139000747910758e-04 -1.2782036571591109e-03 1.2949186110853407e-03 0 2 0 P 905 22 -1.0684563074107815e-01 -8.6103347086386783e-02 -9.0650626458072003e-01 9.1683334522258086e-01 0 1 0 0 0 0 P 906 22 -5.7601198016208977e-01 -9.3556463371803855e-01 -6.7129563206331211e+00 6.8022682649159316e+00 0 1 0 0 0 0 V -260 0 -6.9238585894529443e-05 -5.1552115023692540e-05 -5.2235731977994643e-04 5.2955417779853512e-04 0 2 0 P 907 22 -1.4132986131839706e-01 -9.4457816500782346e-02 -7.6422198291849019e-01 7.8289951333120777e-01 0 1 0 0 0 0 P 908 22 -7.1592160063093979e-01 -5.4381527067577873e-01 -5.7031483461551478e+00 5.7735760015022182e+00 0 1 0 0 0 0 V -261 0 -4.8681254486117079e-05 -2.4473407262801863e-05 -2.5009838383971943e-04 2.5599785121022421e-04 0 2 0 P 909 22 -1.3111910856381730e+00 -6.8443146275035804e-01 -6.9886586689354884e+00 7.1434598396818023e+00 0 1 0 0 0 0 P 910 22 -2.8787896299923882e-01 -1.1946508747540080e-01 -1.2265124278728077e+00 1.2654955314774810e+00 0 1 0 0 0 0 V -262 0 -3.1926818526215549e-04 6.1455108803908917e-05 -9.5211023852140764e-04 1.0119565626735157e-03 0 2 0 P 911 22 -5.6685629289435331e-02 -3.0896103707757496e-02 -1.2166251776915722e-01 1.3773016380659064e-01 0 1 0 0 0 0 P 912 22 -3.3947618193659523e-01 1.0715226807583683e-01 -1.0597571600787097e+00 1.1179494286389418e+00 0 1 0 0 0 0 V -263 0 -1.3090727989104560e-04 4.3746007698818726e-05 -5.2395118897172828e-04 5.4285351271667493e-04 0 2 0 P 913 22 -1.2842561784317752e-01 8.3816926136782099e-02 -4.1517854829728063e-01 4.4259647919030953e-01 0 1 0 0 0 0 P 914 22 -4.0082608317296686e-01 9.3046033711861612e-02 -1.7031303665584676e+00 1.7521336018793978e+00 0 1 0 0 0 0 V -264 0 -3.4398872631522740e-04 2.2464782886198720e-04 -9.3796654629680145e-04 1.0244259476584626e-03 0 2 0 P 915 22 -1.9138968585896077e-01 9.8526020499078992e-02 -4.0549386302216139e-01 4.5908894728278105e-01 0 1 0 0 0 0 P 916 22 -1.3806316583529552e+00 9.2810989773239738e-01 -3.8809937981580114e+00 4.2225163847706062e+00 0 1 0 0 0 0 V -265 0 -3.0796274867840140e-05 3.0375838950405209e-05 -4.1735360758750922e-05 6.0630464520100757e-05 0 2 0 P 917 22 -3.0525645237154292e-01 2.7046150762890464e-01 -3.0418948268646301e-01 5.0878499407944222e-01 0 1 0 0 0 0 P 918 22 -2.1800161336294660e-01 2.4565295109901011e-01 -4.0493407972726386e-01 5.2138439249469903e-01 0 1 0 0 0 0 V -266 0 -2.9747232914484349e-06 1.3260995871274746e-06 -3.5164422272432322e-06 4.8294068045445842e-06 0 2 0 P 919 22 -2.0547663682601425e-01 1.4105053008330598e-01 -2.0366637827356673e-01 3.2186316029825923e-01 0 1 0 0 0 0 P 920 22 -4.7295329099880062e-01 1.6138622084734930e-01 -5.9831061679246700e-01 7.7955495118212659e-01 0 1 0 0 0 0 V -267 0 -5.0427221254981320e-04 5.8617928204315330e-04 -9.4115571473901748e-04 1.2184885064366372e-03 0 2 0 P 921 22 -1.8530974482953424e+00 2.1867973279900403e+00 -3.5444421873296195e+00 4.5584123470683373e+00 0 1 0 0 0 0 P 922 22 -2.5397120477780433e-01 2.6251468947918116e-01 -3.8811577409353287e-01 5.3296265267733589e-01 0 1 0 0 0 0 V -268 0 -1.3194522604812871e-04 3.0913961848875958e-05 -1.6069580993616187e-04 2.1072304847866318e-04 0 2 0 P 923 22 -1.1914575294908498e+00 2.6750108233479802e-01 -1.4145178959613038e+00 1.8686863705891155e+00 0 1 0 0 0 0 P 924 22 -2.0794721558841475e-02 1.6522227659718058e-02 -6.1881540107026435e-02 6.7340399891646155e-02 0 1 0 0 0 0 V -269 0 0 0 0 0 0 1 0 P 925 130 -1.0704652605969409e+00 3.4606332054949906e-01 1.6818489947862814e-01 1.2416188164196200e+00 4.9767000000000000e-01 1 0 0 0 0 V -270 0 -1.7066145276043761e-04 -1.6545298731372444e-04 -2.1738563932408416e-04 3.2633601041604985e-04 0 2 0 P 926 22 -3.9732018735142427e-01 -4.0869087030097989e-01 -5.5374190813578861e-01 7.9468337063902839e-01 0 1 0 0 0 0 P 927 22 -4.2865943113145108e-02 -1.8061094371825116e-02 -6.9596553681746161e-03 4.7033275579435554e-02 0 1 0 0 0 0 V -271 0 1.5274515684740153e-07 -1.7144268040504242e-05 -1.0273991588494570e-05 2.0034922127018727e-05 0 2 0 P 928 22 -2.9460521793678255e-02 -7.2380088493603634e-01 -4.9966759190292664e-01 8.8001326454583340e-01 0 1 0 0 0 0 P 929 22 4.4441954045661487e-02 -9.5772994366663156e-01 -5.0801809920051233e-01 1.0850364608576006e+00 0 1 0 0 0 0 V -272 0 8.7522962748584017e-06 4.0476028914623237e-06 -1.5415343985875521e-05 2.4449399970086906e-05 0 2 0 P 930 22 7.7604582853461446e-02 7.0215167459965297e-02 -4.9688502894574396e-02 1.1585157893267944e-01 0 1 0 0 0 0 P 931 22 -5.3259137300176772e-03 -3.6789042366887063e-02 -7.7615294004964600e-02 8.6057729802785810e-02 0 1 0 0 0 0 V -273 0 5.5761298877023949e-04 -1.0068517120747564e-03 5.6899830975278736e-04 1.2920061921631112e-03 0 2 0 P 932 22 2.8233120288872066e-01 -4.1408260235739247e-01 1.9265119954346838e-01 5.3692624669054845e-01 0 1 0 0 0 0 P 933 22 2.3906885039202105e-01 -5.2738136439732597e-01 3.3939478036823428e-01 6.7117347659345850e-01 0 1 0 0 0 0 V -274 0 1.2253434273734657e-05 -6.8730972067738316e-05 -7.5465346374935661e-05 1.0528191693465120e-04 0 2 0 P 934 22 -1.8262139558688811e-02 -1.0930960616984400e-01 -5.6929867360753561e-02 1.2459175550565303e-01 0 1 0 0 0 0 P 935 22 9.1132650817490474e-02 -2.9942976942106170e-01 -3.9185846820421499e-01 5.0151411342446450e-01 0 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 936 130 6.2217690576313645e-01 -1.8371995243214938e+00 1.0720136209406071e-01 2.0053861860417150e+00 4.9767000000000000e-01 1 0 0 0 0 V -276 0 8.2552592374959976e-05 -6.6959638067159690e-05 3.0330784977121264e-05 1.1641712099686333e-04 0 2 0 P 937 22 2.5657786327915880e-02 -3.1423192617660030e-02 -2.9026974378468535e-02 4.9882905640147142e-02 0 1 0 0 0 0 P 938 22 2.7937491328664005e-01 -2.1599337635049540e-01 1.4109954480699230e-01 3.8027958444537208e-01 0 1 0 0 0 0 V -277 0 1.2541387770676087e-04 -1.6078549511331045e-05 8.7000874937852448e-05 1.5753354216890459e-04 0 2 0 P 939 22 1.5594935269653298e-01 1.2628367349568582e-02 1.7488253057665115e-01 2.3465629283971187e-01 0 1 0 0 0 0 P 940 22 3.2085792180968076e-01 -7.3756924337785273e-02 1.5588349641572785e-01 3.6426577430577972e-01 0 1 0 0 0 0 V -278 0 0 0 0 0 0 1 0 P 941 310 1.5479090020664308e+00 -1.2563657665385153e-01 1.0690579371378333e+00 1.9499659304533996e+00 4.9767000000000000e-01 2 0 0 -366 0 V -279 0 0 0 0 0 0 1 0 P 942 310 2.5700571050740897e+00 1.0734645920991992e+00 3.1520044240598590e+00 4.2356023269454175e+00 4.9767000000000000e-01 2 0 0 -367 0 V -280 0 3.2274350909065819e-05 3.1639103979868830e-05 8.8663242802662824e-05 1.0018585120915734e-04 0 2 0 P 943 22 3.0566248667033197e-01 2.6915250797969159e-01 8.9504359129379152e-01 9.8334920482264931e-01 0 1 0 0 0 0 P 944 22 7.1563744697720630e-02 1.0064888606895901e-01 1.4126232970070779e-01 1.8763425490713126e-01 0 1 0 0 0 0 V -281 0 7.3400234751547578e+02 3.7653678394830064e+02 1.8477302009103253e+03 2.0261828290473197e+03 0 2 0 P 945 -211 3.1031944669162739e+00 1.5932174413028071e+00 7.9628200215321492e+00 8.6944890703815663e+00 1.3957000000000000e-01 1 0 0 0 0 P 946 211 4.1661906619402078e-01 2.1241611333253727e-01 8.9773170383361023e-01 1.0218092035637945e+00 1.3957000000000000e-01 1 0 0 0 0 V -282 0 7.7623839324604930e+01 1.7742664527155291e+01 2.2000069308617378e+02 2.3751063258732378e+02 0 2 0 P 947 2212 1.6502438366036893e+00 4.1265472761898297e-01 4.5910334930851695e+00 4.9851306674955449e+00 9.3827000000000005e-01 1 0 0 0 0 P 948 -211 4.6851357324601728e-01 7.1634664202839857e-02 1.4139271311782347e+00 1.4977670748861847e+00 1.3957000000000000e-01 1 0 0 0 0 V -283 0 6.5295675514887171e-04 -1.9352751944874944e-05 1.7536881513604749e-03 1.8716643362016684e-03 0 2 0 P 949 22 2.5096047674047410e+00 -4.4268507269417022e-02 6.6461344562393556e+00 7.1043070738621985e+00 0 1 0 0 0 0 P 950 22 3.0838590336224841e-01 -3.9252911269076117e-02 9.2232518676058040e-01 9.7330694365579651e-01 0 1 0 0 0 0 V -284 0 -2.1712242583506506e-04 -3.6815283848918741e-05 3.0630103164357874e-04 3.7783200903516192e-04 0 2 0 P 951 22 -9.3370659538149647e-01 -1.8118530195030416e-01 1.4208783593537708e+00 1.7098337439592164e+00 0 1 0 0 0 0 P 952 22 -4.6474302913891430e-01 -5.5935850676473865e-02 5.5195591165592439e-01 7.2371971849331085e-01 0 1 0 0 0 0 V -285 0 1.9590814769034932e-05 4.0658278546235315e-05 2.2753377116446171e-05 9.4386796089349052e-05 0 2 0 P 953 22 2.8182028302525860e-02 -3.8430414635661110e-02 1.3948874618027534e-02 4.9655760908706763e-02 0 1 0 0 0 0 P 954 22 4.9913412296652146e-03 1.0727758177282774e-01 2.4579700945976529e-02 1.1017057110177075e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 955 310 -8.3192900129370095e-01 4.8136893466506164e-01 1.1910591896723863e+00 1.6093847696114043e+00 4.9767000000000000e-01 2 0 0 -368 0 V -287 0 -1.1211526624870319e-04 3.4702804086829314e-05 3.5414188950932317e-04 3.7361270560680898e-04 0 2 0 P 956 22 -4.3894888265712284e-01 7.8491653319125693e-02 1.2102023231432668e+00 1.2897390139745581e+00 0 1 0 0 0 0 P 957 22 -3.2166504299449294e-01 1.5693958571525951e-01 1.1923719366354080e+00 1.2449294231902461e+00 0 1 0 0 0 0 V -288 0 -1.1982644683075894e-03 -1.0872181648195540e-04 7.7883454161809780e-03 7.8808048610525764e-03 0 2 0 P 958 22 -9.9100645507418017e-01 -1.2271226677540520e-01 6.1826144274218624e+00 6.2627368819535123e+00 0 1 0 0 0 0 P 959 22 -3.8795687454303160e+00 -3.1920835852588914e-01 2.5474605694101857e+01 2.5770302343912054e+01 0 1 0 0 0 0 V -289 0 -3.0021397994342956e-05 -3.6511422229279185e-05 2.8446702060690062e-04 2.8877184619300234e-04 0 2 0 P 960 22 -4.9858006178386594e-02 -1.4040645616141328e-01 1.1105741110190397e+00 1.1205242745151134e+00 0 1 0 0 0 0 P 961 22 -2.1543124386239659e-01 -1.8223300996048550e-01 1.4031676731697258e+00 1.4312578418230237e+00 0 1 0 0 0 0 V -290 0 -3.4795457070357390e-04 -3.0322295224633855e-04 4.1387651402127112e-03 4.1644883718189472e-03 0 2 0 P 962 22 -1.1225105613896242e+00 -1.0448387982925584e+00 1.4130892916311407e+01 1.4213861287036279e+01 0 1 0 0 0 0 P 963 22 -8.4476655054632677e-01 -6.6953320309165165e-01 9.2689949355863401e+00 9.3314614263195299e+00 0 1 0 0 0 0 V -291 0 -3.0739856653371649e+00 -1.5436666669764070e+00 4.0118214950798567e+01 4.0377220196990812e+01 0 2 0 P 964 2212 -9.6289295046103340e-01 -4.5559879174373014e-01 1.3357848741848127e+01 1.3433063935531591e+01 9.3827000000000005e-01 1 0 0 0 0 P 965 -211 -1.7925879686166210e-01 -1.1795677191811987e-01 1.5482355064322750e+00 1.5692547545160529e+00 1.3957000000000000e-01 1 0 0 0 0 V -292 0 -3.8922221436371349e-06 -5.6381516280565250e-05 1.8894249176169885e-04 1.9758276140965458e-04 0 2 0 P 966 22 -5.4025314262727837e-02 -5.9583261732025505e-01 2.0621826585451863e+00 2.1472150706550996e+00 0 1 0 0 0 0 P 967 22 1.0494137680241889e-02 -3.4746432544584302e-02 5.0977554126427106e-02 6.2579170056337674e-02 0 1 0 0 0 0 V -293 0 -9.3337464851824010e-06 -3.9596330496872659e-05 2.2091771072518945e-04 2.2490842206311824e-04 0 2 0 P 968 22 2.5485957626603353e-02 -1.3169475156659644e-01 5.9779890435225402e-01 6.1266350607090014e-01 0 1 0 0 0 0 P 969 22 -1.3854570402421748e-01 -3.4793591885706598e-01 2.0781791060836374e+00 2.1116540229632936e+00 0 1 0 0 0 0 V -294 0 0 0 0 0 0 3 0 P 970 -211 3.1286794077434676e-02 -4.0578105307446946e-02 1.2641662515019472e+00 1.2728792332544634e+00 1.3957000000000000e-01 1 0 0 0 0 P 971 211 2.0560554166769188e-01 -2.1044827311057396e-01 2.9700581162795547e+00 2.9878566085737357e+00 1.3957000000000000e-01 1 0 0 0 0 P 972 111 -2.8782296449573613e-02 -1.2959180062998274e-01 8.2286347992365050e-01 8.4436151165924911e-01 1.3497999999999999e-01 2 0 0 -369 0 V -295 0 2.2888671065911060e-05 -1.2980880239305898e-05 2.7411517418497847e-04 2.7561105538228306e-04 0 2 0 P 973 22 1.1697106576226246e-01 -1.3833254050973666e-02 7.6657614550017095e-01 7.7557241827768575e-01 0 1 0 0 0 0 P 974 22 1.5406947417817124e-01 -1.3988230151064115e-01 2.4794106836615648e+00 2.4881281718200450e+00 0 1 0 0 0 0 V -296 0 1.4488655604362881e-04 1.4742291646787308e-04 1.8224049546165274e-03 1.8344692066479330e-03 0 2 0 P 975 22 4.1474579762488450e-01 3.9976523531253916e-01 4.5402954798311814e+00 4.5766919673698228e+00 0 1 0 0 0 0 P 976 22 1.0946480909686092e-01 1.3362211681033065e-01 2.0533045962488519e+00 2.0605574924054286e+00 0 1 0 0 0 0 V -297 0 0 0 0 0 0 2 0 P 977 211 1.2020707419733921e-01 2.8734268683245767e-01 7.3851865939861536e+00 7.3930694825123879e+00 1.3957000000000000e-01 1 0 0 0 0 P 978 -211 1.3086000250635899e-01 -3.3283866092489889e-01 2.5443963259345663e+00 2.5731961376450814e+00 1.3957000000000000e-01 1 0 0 0 0 V -298 0 5.9979678764716211e-04 4.1422976081683830e-04 1.9311653074728940e-02 1.9325546902847688e-02 0 2 0 P 979 22 1.0158918141252316e+00 6.6086184309131824e-01 3.2463997962546152e+01 3.2486611677210369e+01 0 1 0 0 0 0 P 980 22 7.8156536205537266e-02 9.4706369031491530e-02 2.7610692997281081e+00 2.7637983678965878e+00 0 1 0 0 0 0 V -299 0 6.0099898958649818e-05 1.2302334292065101e-05 9.6504039690522149e-04 9.6702271355507473e-04 0 2 0 P 981 22 1.9157542182894791e-01 1.7729904613506764e-02 2.3334157863073486e+00 2.3413339624143514e+00 0 1 0 0 0 0 P 982 22 8.0235327780610499e-01 1.8572539792869716e-01 1.3626367231817891e+01 1.3651232495353760e+01 0 1 0 0 0 0 V -300 0 1.8489844733324224e-04 2.0385608806271623e-04 1.6798256481729057e-02 1.6800654285754467e-02 0 2 0 P 983 22 1.1688571938314557e-01 2.2794343275211912e-01 1.5764683706960332e+01 1.5766764819087999e+01 0 1 0 0 0 0 P 984 22 2.4264035876637427e-01 1.6844485987641866e-01 1.6898712658618528e+01 1.6901293960317805e+01 0 1 0 0 0 0 V -301 0 3.3303672575969828e-05 1.9425593645244942e-05 1.3725385657698925e-03 1.3731107643761295e-03 0 2 0 P 985 22 2.9430373738631310e-01 2.3298857187607866e-01 1.1797791479181921e+01 1.1803761356056039e+01 0 1 0 0 0 0 P 986 22 1.9452579114790930e-01 5.2139254835565828e-02 8.3482563319068568e+00 8.3506851556348032e+00 0 1 0 0 0 0 V -302 0 0 0 0 0 0 3 0 P 987 111 3.1296721026739671e-01 8.2532448400539624e-02 2.4908496448236626e+01 2.4910964955054595e+01 1.3497999999999999e-01 2 0 0 -370 0 P 988 111 8.1509645839228384e-01 -8.2520246692273896e-02 5.7959457676848160e+01 5.7965404730945778e+01 1.3497999999999999e-01 2 0 0 -371 0 P 989 111 2.3046067699149217e-01 -2.4629700923748141e-02 2.7441310030963855e+01 2.7442620767005554e+01 1.3497999999999999e-01 2 0 0 -372 0 V -303 0 2.4477240004670977e-04 1.8933153266808238e-04 3.7898971277530120e-02 3.7900389624536700e-02 0 2 0 P 990 22 9.2292909114113780e-02 1.5399965827107581e-01 2.2512700716186657e+01 2.2513416609044747e+01 0 1 0 0 0 0 P 991 22 2.1250775013163825e-01 8.1763752808881318e-02 2.4680656982322702e+01 2.4681707273489288e+01 0 1 0 0 0 0 V -304 0 2.5097160188611149e-05 9.5038646094301348e-06 2.3359361670592348e-03 2.3361137525789275e-03 0 2 0 P 992 22 1.8004303217296369e-01 -3.6333743471461742e-03 1.5125034370024970e+01 1.5126106352570709e+01 0 1 0 0 0 0 P 993 22 1.4369361388853746e-01 1.2622689609052293e-01 1.5006985924473694e+01 1.5008204676819965e+01 0 1 0 0 0 0 V -305 0 3.3319868926343053e-05 9.7325826647088950e-06 6.2718404120373720e-03 6.2719542276929701e-03 0 2 0 P 994 22 1.9553131123925174e-01 1.1733944949062829e-01 3.4060020209216084e+01 3.4060783574255751e+01 0 1 0 0 0 0 P 995 22 1.0581807089112215e-01 -2.9316661074914426e-02 2.2663349176355091e+01 2.2663615175433485e+01 0 1 0 0 0 0 V -306 0 3.1578196509800485e-05 -1.4033193723116658e-05 5.9982947866052752e-03 5.9983967029825719e-03 0 2 0 P 996 22 4.1465236055065374e-01 -2.2451091465263012e-01 9.1132042956457880e+01 9.1133262836072063e+01 0 1 0 0 0 0 P 997 22 3.8312501864093351e-01 -1.3001739118780295e-01 6.0406183521782260e+01 6.0407538411767447e+01 0 1 0 0 0 0 V -307 0 -4.8488879905173754e+01 -5.0429516165914656e+01 5.0269949089110341e+03 5.0277018882129669e+03 0 2 0 P 998 211 -3.3749833343444148e-02 -3.0890808256842706e-01 2.2871328664690378e+01 2.2873865391050867e+01 1.3957000000000000e-01 1 0 0 0 0 P 999 -211 -4.7908747135368435e-01 -2.2445414807671643e-01 3.0296130036228110e+01 3.0301070598689083e+01 1.3957000000000000e-01 1 0 0 0 0 V -308 0 6.3566647176557360e+00 1.6918351914416629e+01 4.6788208357552958e+03 4.6797514697045608e+03 0 2 0 P 1000 2212 8.0074011180927926e-02 9.9512974657863087e-02 4.4243678522930331e+01 4.4253810621376985e+01 9.3827000000000005e-01 1 0 0 0 0 P 1001 -211 -2.6144115169410148e-03 1.0664683154133060e-01 1.2770432639878027e+01 1.2771640849021219e+01 1.3957000000000000e-01 1 0 0 0 0 V -309 0 1.4446241794500577e-06 -4.4400151495949190e-05 3.2387924427931241e-03 3.2391544352262974e-03 0 2 0 P 1002 22 -3.1426013606804630e-02 -4.4762733889847715e-02 7.0639486592485943e+00 7.0641603858616140e+00 0 1 0 0 0 0 P 1003 22 4.1542753684317882e-02 -2.6617266264887396e-01 1.5617397655490285e+01 1.5619720971145375e+01 0 1 0 0 0 0 V -310 0 -5.7308672173444069e-05 -2.3830093876992982e-05 2.5757366179379958e-03 2.5765701969159018e-03 0 2 0 P 1004 22 -2.3229041519216620e-01 -1.3115806174002290e-01 1.2895409489658272e+01 1.2898168365319094e+01 0 1 0 0 0 0 P 1005 22 -1.3536104895925619e-01 -2.1718781719667391e-02 3.6286749628192267e+00 3.6312637338598610e+00 0 1 0 0 0 0 V -311 0 -6.0943141763868558e-07 2.8166734540486572e-07 4.9713473848406059e-05 4.9769445749740508e-05 0 2 0 P 1006 22 -8.6361496008286340e-02 2.4159696267520646e-02 1.7637522195584878e+00 1.7660305464272181e+00 0 1 0 0 0 0 P 1007 22 4.9998042294237710e-02 -7.3532153724690449e-03 1.2025431714068107e+00 1.2036045667521871e+00 0 1 0 0 0 0 V -312 0 3.9139136022143210e-04 -3.7865319755395985e-04 2.2220248074784069e-01 2.2220316330279935e-01 0 2 0 P 1008 22 4.4117349378962656e-01 -5.0108213213371899e-01 2.5934272233501014e+02 2.5934358165470167e+02 0 1 0 0 0 0 P 1009 22 2.0109993144911709e-01 -1.2028796155714118e-01 1.0529166388577889e+02 1.0529192463912869e+02 0 1 0 0 0 0 V -313 0 -1.0380123772246118e-01 -8.3644115681792752e-02 -1.2527348689498320e+01 1.2536107167842502e+01 0 2 0 P 1010 -321 4.6233521469137333e-02 -1.5782012332727507e-01 -1.3094037169735852e+01 1.3104369313029093e+01 4.9359999999999998e-01 1 0 0 0 0 P 1011 321 1.0091490894148684e-01 -2.1278694347057814e-01 -2.1561797321175074e+01 2.1568732155172935e+01 4.9359999999999998e-01 1 0 0 0 0 V -314 0 -1.0380123772246118e-01 -8.3644115681792752e-02 -1.2527348689498320e+01 1.2536107167842502e+01 0 2 0 P 1012 -211 -3.0855755115746503e-01 3.0239796820045700e-01 -7.6648169340333761e+00 7.6782518004225970e+00 1.3957000000000000e-01 1 0 0 0 0 P 1013 111 -2.9351056558273581e-01 -2.9836991051823575e-01 -1.2581753030052237e+01 1.2589436125785777e+01 1.3497999999999999e-01 2 0 0 -373 0 V -315 0 1.1524800239045097e+00 4.1226652777551056e+00 -1.0220269548495203e+02 1.0243082577788597e+02 0 2 0 P 1014 -211 8.6026562915662977e-02 1.3591800846399568e-01 -7.3060863419587108e+00 7.3091895375347544e+00 1.3957000000000000e-01 1 0 0 0 0 P 1015 211 2.1677736932027548e-02 2.4936309666324499e-01 -2.2452026447782392e+00 2.2634192230506431e+00 1.3957000000000000e-01 1 0 0 0 0 V -316 0 -1.9050180324050674e-06 1.8860972660306490e-05 -3.5811710924622542e-03 3.5812325017939559e-03 0 2 0 P 1016 22 4.8859317342952222e-02 1.3121441684439997e-01 -1.9858502697679864e+01 1.9858996295126232e+01 0 1 0 0 0 0 P 1017 22 -7.7523748332603240e-02 1.5258292261516315e-01 -3.4026673135758287e+01 3.4027103552426610e+01 0 1 0 0 0 0 V -317 0 3.1787766074353092e-06 -5.2852060701696446e-06 -3.8878358738711477e-04 3.8883989465373004e-04 0 2 0 P 1018 22 1.4713595123080694e-03 1.2879470462488735e-02 -1.3021766593379318e+00 1.3022411826473252e+00 0 1 0 0 0 0 P 1019 22 1.7749752035165536e-01 -3.1044281858075717e-01 -2.0586798797891106e+01 2.0589904440239394e+01 0 1 0 0 0 0 V -318 0 3.0771553698651799e-04 -1.8844778423511658e-04 -6.7791800559568571e-02 6.7792793947241095e-02 0 2 0 P 1020 22 2.1043088274583514e-02 -5.3232026583861086e-02 -1.1047895170296272e+01 1.1048043453665182e+01 0 1 0 0 0 0 P 1021 22 5.9905152959653329e-01 -3.2651953844372184e-01 -1.2556311600728503e+02 1.2556496955442238e+02 0 1 0 0 0 0 V -319 0 6.2992889494737031e-04 -1.6787962972698850e-04 1.4768866765905950e-02 1.4783298642989566e-02 0 2 0 P 1022 22 6.7386605638253838e-01 -2.4438672173154272e-01 1.6146996039992114e+01 1.6162898918425011e+01 0 1 0 0 0 0 P 1023 22 1.5221016909435088e+00 -3.4085116030640811e-01 3.5338108616454313e+01 3.5372516077590220e+01 0 1 0 0 0 0 V -320 0 2.7830432038541207e-05 -1.3009087637350576e-05 1.4047143062464354e-03 1.4052115577642380e-03 0 2 0 P 1024 22 6.8581233329745375e-02 -4.7204182717060401e-02 6.4437066553843598e+00 6.4442444926520048e+00 0 1 0 0 0 0 P 1025 22 1.0782535794520265e-01 -3.5255507543011259e-02 2.4602464753797628e+00 2.4628605275668112e+00 0 1 0 0 0 0 V -321 0 -8.8772653363323862e-05 2.1806955887119998e-05 1.0793404189722452e-03 1.0834982352094862e-03 0 2 0 P 1026 22 -4.2921287489566989e-01 1.2578184978991919e-01 5.5135763049111901e+00 5.5316876661459213e+00 0 1 0 0 0 0 P 1027 22 -4.5717022752119328e-02 -9.1155687327099146e-03 2.6084876056053768e-01 2.6498153831655380e-01 0 1 0 0 0 0 V -322 0 -7.8502370075126124e-06 -3.6673912649458528e-06 1.1592481436959532e-04 1.1625761710421126e-04 0 2 0 P 1028 22 -3.9366251819449727e-01 -1.3037288806945352e-01 6.1230618849272931e+00 6.1370884069584806e+00 0 1 0 0 0 0 P 1029 22 -3.2155486346924589e-01 -2.0375485553126627e-01 4.4385863970203561e+00 4.4548807812541336e+00 0 1 0 0 0 0 V -323 0 -2.8648506500639898e-04 1.5047858054326838e-04 2.5124268906496932e-03 2.5333127485451007e-03 0 2 0 P 1030 22 -1.0803795475910312e-01 5.2247905705426673e-02 1.2378852509296507e+00 1.2436888428334065e+00 0 1 0 0 0 0 P 1031 22 -1.3891426060128127e+00 7.3415820449407132e-01 1.1892141966919665e+01 1.1995488569059534e+01 0 1 0 0 0 0 V -324 0 -3.8571604341064813e-03 2.5583608034220971e-03 3.6252857162561429e-02 3.6547187966914481e-02 0 2 0 P 1032 22 -4.4038781553467530e+00 2.9094730629157710e+00 4.1864126274885862e+01 4.2195547692506160e+01 0 1 0 0 0 0 P 1033 22 -3.4457492169111572e+00 2.2969940606914196e+00 3.1913313053151825e+01 3.2180878164045900e+01 0 1 0 0 0 0 V -325 0 -1.3487609553121729e-05 2.1053327816675422e-06 4.5119044284291565e-05 4.7781797954092398e-05 0 2 0 P 1034 22 5.4800869326738647e-03 3.2230735280251555e-02 7.8661301035422057e-02 8.5184810442241465e-02 0 1 0 0 0 0 P 1035 22 -2.3853271171691451e-01 4.1473440880353775e-03 7.0095139881299540e-01 7.4043765336448431e-01 0 1 0 0 0 0 V -326 0 1.2883475759838814e-05 4.7401808946454543e-05 2.6022980413971278e-04 2.6498645720579627e-04 0 2 0 P 1036 22 1.3590703193968787e-01 5.0084204898592000e-01 2.3987128125462553e+00 2.4542079448238763e+00 0 1 0 0 0 0 P 1037 22 5.2321382781736356e-02 1.9170144775680917e-01 1.4032614690506913e+00 1.4172613459381980e+00 0 1 0 0 0 0 V -327 0 7.7810645483469740e-06 2.2600133729266159e-05 4.3595026972035965e-04 4.3663148388273850e-04 0 2 0 P 1038 22 8.7241339940663576e-02 2.6202971032681988e-01 3.8897267056180782e+00 3.8995184914149421e+00 0 1 0 0 0 0 P 1039 22 1.3126522712478650e-01 3.7262350527349730e-01 8.3525566292618052e+00 8.3618945868481109e+00 0 1 0 0 0 0 V -328 0 1.4568119729250451e-04 2.8770244127993583e-06 8.5064915693999765e-03 8.5079591131282401e-03 0 2 0 P 1040 22 1.3952781809857073e-01 -2.3191406424529441e-03 1.1924275250958551e+01 1.1925091766986922e+01 0 1 0 0 0 0 P 1041 22 1.8209279387023006e-01 8.6707520342500233e-03 6.8555197747831045e+00 6.8579431573878242e+00 0 1 0 0 0 0 V -329 0 -7.3501455221087166e-06 2.0130005827794185e-05 4.0611931090877440e-04 4.0679547424361454e-04 0 2 0 P 1042 22 -5.2048946727144565e-02 4.9168712759186300e-02 2.3117908185851106e+00 2.3128993588274041e+00 0 1 0 0 0 0 P 1043 22 -5.2285988820911011e-02 2.3657567887325795e-01 3.4530517958957119e+00 3.4615413592213411e+00 0 1 0 0 0 0 V -330 0 3.4828920796290736e-05 9.3970186139209823e-05 3.4184888674132622e-03 3.4200887933663682e-03 0 2 0 P 1044 22 3.1230150290983305e-02 2.4710587412499554e-01 7.0348705579413560e+00 7.0392784006817353e+00 0 1 0 0 0 0 P 1045 22 1.2567142875012022e-01 1.7622250501900247e-01 8.3651558847010250e+00 8.3679555839301312e+00 0 1 0 0 0 0 V -331 0 0 0 0 0 0 2 0 P 1046 22 -1.8663396142800248e-01 1.7434909642632135e-01 5.7117343219327879e+00 5.7174416313004892e+00 0 1 0 0 0 0 P 1047 22 2.6569690129664386e-01 2.3360367585336855e-01 2.1832197343124431e+01 2.1835063690080240e+01 0 1 0 0 0 0 V -332 0 4.4880094599729340e-05 -3.2326887818050334e-05 7.2361565630448194e-04 7.2645007677164613e-04 0 2 0 P 1048 22 3.6917350337832611e-02 -7.3478767802150374e-02 5.1165723014253273e-01 5.1822306126881035e-01 0 1 0 0 0 0 P 1049 22 1.4995875244510418e-01 -6.1127071700132554e-02 2.5014040160277049e+00 2.5066404205089037e+00 0 1 0 0 0 0 V -333 0 8.6282178706739238e-05 2.2889040579771220e-05 -1.1694310546325871e-02 1.1694702485624462e-02 0 2 0 P 1050 22 4.9174505106998875e-02 3.4338011464493515e-02 -1.5279807528814301e+01 1.5279925240281582e+01 0 1 0 0 0 0 P 1051 22 2.8723038465150164e-01 5.4903884003711212e-02 -3.0315045418856460e+01 3.0316455836355214e+01 0 1 0 0 0 0 V -334 0 -5.8981611595351087e+00 1.7401730698778817e-01 -6.7078579176105336e+02 6.7085938060777664e+02 0 2 0 P 1052 111 -1.6164335992483547e-01 2.1228160091502382e-01 -1.8714892322093803e+01 1.8717280953222357e+01 1.3497999999999999e-01 2 0 0 -374 0 P 1053 111 -2.0552772812229966e-01 -2.0144871211841206e-01 -2.3042723712066540e+01 2.3044916118347555e+01 1.3497999999999999e-01 2 0 0 -375 0 V -335 0 0 0 0 0 0 2 0 P 1054 211 2.2113537135758921e-02 2.1370137851564268e-02 -3.1839712460316971e+01 3.1840033213423006e+01 1.3957000000000000e-01 1 0 0 0 0 P 1055 -211 -1.9747189792064481e+00 -3.5659469218697754e-02 -5.6622102713815354e+02 5.6622448890860869e+02 1.3957000000000000e-01 1 0 0 0 0 V -336 0 -1.9758914726951557e-06 -1.9137382209266841e-04 3.0381569662355694e-04 3.7024059021778126e-04 0 2 0 P 1056 22 6.0523371740960188e-02 -1.8430948312842590e-01 2.4671471011211360e-01 3.1384902785203311e-01 0 1 0 0 0 0 P 1057 22 -6.3478341395423993e-02 -1.0189238815716264e-01 2.0764534785596020e-01 2.3985026386666045e-01 0 1 0 0 0 0 V -337 0 4.4764385274242421e-05 6.6357066072013641e-06 5.0544065274161576e-04 5.0780834371441728e-04 0 2 0 P 1058 22 5.9233809822628679e-02 5.7019743707656306e-02 1.2206807306988745e+00 1.2234465013633120e+00 0 1 0 0 0 0 P 1059 22 2.6319851665872834e-01 -9.2235703412644771e-03 2.4199457307910053e+00 2.4342341451460272e+00 0 1 0 0 0 0 V -338 0 0 0 0 0 0 1 0 P 1060 130 4.8607914588903711e-01 -1.1759972163300201e+00 -1.0051540879884946e+01 1.0143983038125725e+01 4.9767000000000000e-01 1 0 0 0 0 V -339 0 2.2271363228059909e-06 2.6249667663086188e-06 -2.8315112155004067e-05 2.8537143021092637e-05 0 2 0 P 1061 22 1.5744658859845113e-02 9.6819599118401697e-02 -7.9021883495978906e-01 7.9628370332518239e-01 0 1 0 0 0 0 P 1062 22 3.2631659479753877e-01 3.0634360813476857e-01 -3.5586405779149737e+00 3.5866769702704349e+00 0 1 0 0 0 0 V -340 0 3.5446027917137846e-05 1.4716402930051599e-05 -3.5569298201891146e-04 3.5784073140468178e-04 0 2 0 P 1063 22 4.8699082372508340e-01 1.5076028502865846e-01 -4.3318321466671899e+00 4.3617265472326006e+00 0 1 0 0 0 0 P 1064 22 1.3328541143318071e-01 1.0676462088924919e-01 -1.8925014874051023e+00 1.9001909285661431e+00 0 1 0 0 0 0 V -341 0 6.0520941683676495e-05 4.2018699948940901e-04 -3.5637031893543639e-03 3.5899692228126916e-03 0 2 0 P 1065 22 1.2293106619569150e-01 3.9949282723977808e-01 -3.5030910939313102e+00 3.5279390270287987e+00 0 1 0 0 0 0 P 1066 22 -2.9706311277964293e-02 2.4775139859784825e-01 -1.9863369814532152e+00 2.0019485069116048e+00 0 1 0 0 0 0 V -342 0 2.0005495372973229e+01 1.6891289583975283e+01 -2.7930984813651884e+02 2.8065379933380746e+02 0 2 0 P 1067 -211 9.8436409644948519e-01 6.1270041901334493e-01 -1.1294458847667771e+01 1.1354675465393044e+01 1.3957000000000000e-01 1 0 0 0 0 P 1068 211 2.3171451846728494e-01 4.1407425756822747e-01 -5.6840126633823633e+00 5.7054911139392965e+00 1.3957000000000000e-01 1 0 0 0 0 V -343 0 0 0 0 0 0 1 0 P 1069 130 -1.1156399674888902e+00 -5.9201966534069139e-01 -1.0137512946269677e+01 1.0227999999310423e+01 4.9767000000000000e-01 1 0 0 0 0 V -344 0 -2.8127434795946024e-06 -1.6614322997791766e-06 -1.8077618300872453e-05 1.8371689995726673e-05 0 2 0 P 1070 22 -5.4881684910261908e-01 -3.9370791665233407e-01 -3.8500208278312718e+00 3.9088190329341477e+00 0 1 0 0 0 0 P 1071 22 -1.2056807643929499e+00 -6.4263934576035942e-01 -7.4262076646211908e+00 7.5508417883322787e+00 0 1 0 0 0 0 V -345 0 0 0 0 0 0 3 0 P 1072 111 -9.1250567681392634e-03 2.2636298362422563e-02 6.0724292880563402e-01 6.2254256372477756e-01 1.3497999999999999e-01 2 0 0 -376 0 P 1073 111 -3.1220417487398794e-01 -1.0767229738226045e-01 8.5354084071547343e-01 9.2510341994914214e-01 1.3497999999999999e-01 2 0 0 -377 0 P 1074 111 -2.6637130149428345e-01 -2.8665742148266404e-02 8.5761324465891819e-01 9.0856781411574716e-01 1.3497999999999999e-01 2 0 0 -378 0 V -346 0 7.2617710595240269e-05 2.1264293890572693e-04 -6.7729504554750209e-05 2.3594330103268957e-04 0 2 0 P 1075 22 1.9998765322992157e-01 4.5231152505067718e-01 -9.6752945721490194e-02 5.0392649230206821e-01 0 1 0 0 0 0 P 1076 22 2.0300429441864593e-01 7.2775035518368847e-01 -2.7911190501617988e-01 8.0544073558776386e-01 0 1 0 0 0 0 V -347 0 -5.9172107224300919e-05 3.9660362525889770e-05 -1.4891121354121799e-04 1.6615342039047725e-04 0 2 0 P 1077 22 -3.9428588301696471e-01 2.7234199039202711e-01 -1.0477086683752290e+00 1.1520959035886529e+00 0 1 0 0 0 0 P 1078 22 -2.7768049523432148e-02 1.0541495683236993e-02 -1.4422903789283636e-02 3.3018295826562877e-02 0 1 0 0 0 0 V -348 0 1.6624426913102653e-05 3.4825054452378370e-05 -6.7362890329144865e-05 7.7884676996594867e-05 0 2 0 P 1079 22 2.6649434516220888e-01 6.5186056937395620e-01 -1.2717848579131539e+00 1.4537462511474122e+00 0 1 0 0 0 0 P 1080 22 9.2331481959786882e-02 9.9812197077577977e-02 -1.8219277187405575e-01 2.2733627816407889e-01 0 1 0 0 0 0 V -349 0 0 0 0 0 0 1 0 P 1081 130 9.7633295462916403e-01 -7.9019449004239878e-02 -1.1142849460363440e+01 1.1196885264967113e+01 4.9767000000000000e-01 1 0 0 0 0 V -350 0 7.8719204441534875e-06 -1.6465176985603167e-05 -5.4349864891808418e-05 6.1452151776626810e-05 0 2 0 P 1082 22 7.3010493750461494e-02 -1.2099796726585493e-01 -2.8633799637717156e-01 3.1931252473000210e-01 0 1 0 0 0 0 P 1083 22 -2.4979387143199961e-02 2.0534468337801589e-02 -4.5281736473092513e-02 5.5642338466177325e-02 0 1 0 0 0 0 V -351 0 -1.6110614332069099e+02 9.1299674734385349e+01 -5.0939646418450781e+02 5.8176641397529465e+02 0 2 0 P 1084 2112 -7.0166747830644205e-01 5.0519940292528343e-01 -2.3956843643757084e+00 2.7147115952607610e+00 9.3957000000000002e-01 1 0 0 0 0 P 1085 111 -1.4871005143119242e-01 -2.3286111065699520e-02 -2.9309768913071171e-01 3.5606569357212065e-01 1.3497999999999999e-01 2 0 0 -379 0 V -352 0 -1.7904192593266174e-05 9.0165339904294870e-06 -2.5670530113097933e-05 3.2912984739938178e-05 0 3 0 P 1086 22 -2.5513715162615419e-01 9.5047941567270575e-02 -2.5113714304202206e-01 3.7040375531491510e-01 0 1 0 0 0 0 P 1087 -11 -5.1981553391136125e-03 2.8097080759313053e-03 -9.5206889758100762e-03 1.1216902289652900e-02 5.1000000000000004e-04 1 0 0 0 0 P 1088 11 -2.4994072036928486e-01 1.5911686182925294e-01 -4.7096165081828389e-01 5.5641142696622414e-01 5.1000000000000004e-04 1 0 0 0 0 V -353 0 4.7241643434843512e+00 -3.0227477664085463e+00 -2.8761087878063254e+01 3.1612828051600566e+01 0 2 0 P 1089 -211 2.5642256779510760e-02 3.0916366100860029e-02 -9.1825142212116928e-01 9.2966596482455921e-01 1.3957000000000000e-01 1 0 0 0 0 P 1090 211 1.7255367510135944e-01 -1.5773166439386813e-01 -2.8838115867851033e-01 3.9660752176957703e-01 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -5.9056507708181381e-06 1.0463375313335613e-06 -3.5556643056442957e-06 7.8488373611494323e-06 0 2 0 P 1091 22 -3.3969312437133976e-02 6.4706037908930522e-02 -3.4879025935602638e-02 8.0977354732912982e-02 0 1 0 0 0 0 P 1092 22 -1.8720423205965525e-01 -2.5519470750472558e-02 -9.8284770577057964e-02 2.1297080554811829e-01 0 1 0 0 0 0 V -355 0 0 0 0 0 0 1 0 P 1093 310 2.0371062446581401e-01 -1.4892428596355828e-01 7.0052061123779052e-01 8.9558975939822760e-01 4.9767000000000000e-01 2 0 0 -380 0 V -356 0 -1.3512331841229657e-04 2.9031301522281434e-05 1.8607835548558680e-04 2.3603128779219379e-04 0 2 0 P 1094 22 -3.3431723692921522e-01 5.3589793146070375e-02 5.2302364817550118e-01 6.2305185770386240e-01 0 1 0 0 0 0 P 1095 22 -7.5108953035564030e-02 3.4375595149964189e-02 4.0797260136668644e-02 9.2127372711218763e-02 0 1 0 0 0 0 V -357 0 -2.1838400534426378e-07 5.0779446190255993e-07 -1.1982264069804408e-07 6.9646997126023705e-07 0 2 0 P 1096 22 3.8951275963219824e-02 6.3870925450963345e-02 -1.5606602658515240e-02 7.6421613851489684e-02 0 1 0 0 0 0 P 1097 22 -1.1148328493969674e-01 1.0478314979076624e-01 -2.4190161930517352e-02 1.5489737000751311e-01 0 1 0 0 0 0 V -358 0 -1.8169103493766452e-05 -8.1276713185791713e-05 7.6174074551446831e-04 7.6670829533818160e-04 0 2 0 P 1098 22 -1.0813098565778970e-01 -3.0407380048545751e-01 2.4433172022849914e+00 2.4645389299385698e+00 0 1 0 0 0 0 P 1099 22 1.2423970051035809e-02 -1.2405693584982737e-01 1.5692051241063918e+00 1.5741503104487935e+00 0 1 0 0 0 0 V -359 0 -1.0241569312498536e-05 -1.2795352905799908e-04 1.9620493920923863e-03 1.9663974680128879e-03 0 2 0 P 1100 22 2.2076906346592845e-02 -1.9490103000228837e-01 2.3171024460925600e+00 2.3253897623791833e+00 0 1 0 0 0 0 P 1101 22 -7.8317412069115619e-02 -5.0774237977489978e-01 8.4572863899210891e+00 8.4728760773657701e+00 0 1 0 0 0 0 V -360 0 9.7977609771165839e-05 -7.7327493371581789e-05 7.2042276352153622e-04 7.3470455363735870e-04 0 2 0 P 1102 22 -1.7654248901660782e-02 -3.3358702312790672e-02 2.6036585571204723e-01 2.6308716111764513e-01 0 1 0 0 0 0 P 1103 22 2.0100518737631504e-01 -1.1134852735617230e-01 1.0878012418389573e+00 1.1118062428512234e+00 0 1 0 0 0 0 V -361 0 1.2009573362458536e+01 -1.7028029768009681e+01 -1.3430299655874499e+01 3.5812329487315964e+01 0 2 0 P 1104 -211 -1.0727207746496382e-01 -8.4381265180744194e-02 -1.1711959493432385e-01 2.2764946943652728e-01 1.3957000000000000e-01 1 0 0 0 0 P 1105 211 3.3852740727208397e-01 -2.4350903709061042e-01 -1.4149312032135783e-01 4.6194972087601693e-01 1.3957000000000000e-01 1 0 0 0 0 V -362 0 3.7856196219362296e-03 -3.3880522564294753e-02 -2.9892935195562209e-01 3.1043200776300295e-01 0 2 0 P 1106 213 8.0669492709968801e-02 -3.1645454737382228e-01 -3.7284840910605346e+00 3.8103769854345080e+00 7.1465243736365536e-01 2 0 0 -381 0 P 1107 111 1.7238704448251743e-01 -4.0189126045225210e-01 -6.1697519644616050e-01 7.6818739365020550e-01 1.3497999999999999e-01 2 0 0 -382 0 V -363 0 8.7369102125567597e+00 1.2353866224492247e+01 -1.3538953537616939e+02 1.3752232080399548e+02 0 2 0 P 1108 111 2.7760763107485464e-01 3.6544278556846144e-01 -3.0131575435263569e+00 3.0508937065825186e+00 1.3497999999999999e-01 2 0 0 -383 0 P 1109 111 -4.6218038040670158e-02 -3.8261206664780126e-02 -5.7251848262241700e-01 5.9126731714178882e-01 1.3497999999999999e-01 2 0 0 -384 0 V -364 0 1.0351234206622810e+00 -2.2943383579552311e+01 7.3266144515313369e+00 3.1009592633157428e+01 0 2 0 P 1110 211 1.1179953680228510e-01 -1.9684634256790731e-02 4.3975557195360906e-02 1.8520328232963792e-01 1.3957000000000000e-01 1 0 0 0 0 P 1111 -211 -8.5388373659623817e-02 -5.6571555539065499e-01 1.4296293313361663e-01 6.0600614610526826e-01 1.3957000000000000e-01 1 0 0 0 0 V -365 0 -1.5264894799782690e+01 1.2546800834787019e+01 4.4451616664857987e+01 6.0124874542263434e+01 0 2 0 P 1112 111 -2.8401867511037010e-01 7.9379271997597103e-02 1.9213947446415466e-01 3.7696797567124984e-01 1.3497999999999999e-01 2 0 0 -385 0 P 1113 111 6.9027324580035868e-02 9.7330341248108812e-02 4.3391876081242120e-01 4.6983301102746933e-01 1.3497999999999999e-01 2 0 0 -386 0 V -366 0 5.4619933995173490e+01 -4.4332460855592473e+00 3.7723066333700935e+01 6.8807023069196447e+01 0 2 0 P 1114 -211 1.6230279662995889e-01 -5.5763970412725662e-02 2.4588786520467776e-01 3.3074528771399136e-01 1.3957000000000000e-01 1 0 0 0 0 P 1115 211 1.3856062054364717e+00 -6.9872606241125859e-02 8.2317007193315550e-01 1.6192206427394080e+00 1.3957000000000000e-01 1 0 0 0 0 V -367 0 1.2275639795258073e+01 5.1273042297608891e+00 1.5055257280636678e+01 2.0230962331103520e+01 0 2 0 P 1116 111 2.1326891592190700e+00 9.5930334521129590e-01 2.4479300949613871e+00 3.3880978894066494e+00 1.3497999999999999e-01 2 0 0 -387 0 P 1117 111 4.3736794585501987e-01 1.1416124688790345e-01 7.0407432909847156e-01 8.4750443753876781e-01 1.3497999999999999e-01 2 0 0 -388 0 V -368 0 -3.0385576912731832e+01 1.7581635890706583e+01 4.3502535143175770e+01 5.8781560233097728e+01 0 2 0 P 1118 211 -5.2401766742806843e-01 6.8752543934311128e-02 6.5527337040926303e-01 8.5333721525649420e-01 1.3957000000000000e-01 1 0 0 0 0 P 1119 -211 -3.0791133386563263e-01 4.1261639073075052e-01 5.3578581926312341e-01 7.5604755435491011e-01 1.3957000000000000e-01 1 0 0 0 0 V -369 0 -5.3880300702916740e-06 -2.4259513825830753e-05 1.5403959101530128e-04 1.5806401073616781e-04 0 2 0 P 1120 22 2.1584808744994841e-02 -1.3368950380031480e-01 6.6346916034902947e-01 6.7714851703978396e-01 0 1 0 0 0 0 P 1121 22 -5.0367105194568454e-02 4.0977031703320621e-03 1.5939431957462108e-01 1.6721299461946526e-01 0 1 0 0 0 0 V -370 0 7.0476333033606193e-05 1.8585283469746580e-05 5.6090843815633940e-03 5.6096402586741315e-03 0 2 0 P 1122 22 2.0509293571015547e-01 -1.1924682572230276e-02 1.3385074533721951e+01 1.3386651021955588e+01 0 1 0 0 0 0 P 1123 22 1.0787427455724123e-01 9.4457130972769893e-02 1.1523421914514675e+01 1.1524313933099007e+01 0 1 0 0 0 0 V -371 0 3.2220759904308227e-05 -3.2620250383131992e-06 2.2911371418213953e-03 2.2913722288472856e-03 0 2 0 P 1124 22 1.3115855985032504e-01 1.2957796103690022e-02 1.2621497100167019e+01 1.2622185211833424e+01 0 1 0 0 0 0 P 1125 22 6.8393789854195886e-01 -9.5478042795963919e-02 4.5337960576681141e+01 4.5343219519112353e+01 0 1 0 0 0 0 V -372 0 4.9798486695059732e-07 -5.3220438721519992e-08 5.9295830000638701e-05 5.9298662269995253e-05 0 2 0 P 1126 22 3.5856073567430195e-02 4.3849193159675129e-02 8.4610356031275256e+00 8.4612252001198982e+00 0 1 0 0 0 0 P 1127 22 1.9460460342406197e-01 -6.8478894083423267e-02 1.8980274427836328e+01 1.8981395566885656e+01 0 1 0 0 0 0 V -373 0 -1.0382029683876756e-01 -8.3663490339790508e-02 -1.2528165685962696e+01 1.2536924663208902e+01 0 2 0 P 1128 22 -6.0939064679254917e-02 -5.0388317402170557e-03 -2.4687155118472535e+00 2.4694726639233191e+00 0 1 0 0 0 0 P 1129 22 -2.3257150090348089e-01 -2.9333107877801867e-01 -1.0113037518204983e+01 1.0119963461862458e+01 0 1 0 0 0 0 V -374 0 -5.8981805025060803e+00 1.7404270955827544e-01 -6.7078803126918467e+02 6.7086162040174224e+02 0 2 0 P 1130 22 -3.1231621251062880e-02 5.9064423364150631e-02 -1.8809595571678825e+00 1.8821458168735248e+00 0 1 0 0 0 0 P 1131 22 -1.3041173867377259e-01 1.5321717755087319e-01 -1.6833932764925922e+01 1.6835135136348836e+01 0 1 0 0 0 0 V -375 0 -5.8981969303558932e+00 1.7398224609432947e-01 -6.7078980220357528e+02 6.7086339143187320e+02 0 2 0 P 1132 22 -5.3780351594144439e-02 1.2564401046411414e-02 -3.6469090763862173e+00 3.6473272408462916e+00 0 1 0 0 0 0 P 1133 22 -1.5174737652815523e-01 -2.1401311316482347e-01 -1.9395814635680324e+01 1.9397588877501263e+01 0 1 0 0 0 0 V -376 0 -3.4608622404207179e-06 8.5852737419605685e-06 2.3030915603766154e-04 2.3611185185964958e-04 0 2 0 P 1134 22 -2.8304040712996154e-02 -3.3563507085849993e-02 7.4306927556110985e-02 8.6308442295142618e-02 0 1 0 0 0 0 P 1135 22 1.9178983944856891e-02 5.6199805448272556e-02 5.3293600124952301e-01 5.3623412142963467e-01 0 1 0 0 0 0 V -377 0 -6.4617153025594402e-05 -2.2285023316472347e-05 1.7665804482072442e-04 1.9146941028409334e-04 0 2 0 P 1136 22 -1.4449349539574677e-01 -3.6968699868167462e-02 5.6166513304953458e-01 5.8113060207252420e-01 0 1 0 0 0 0 P 1137 22 -1.6771067947824117e-01 -7.0703597514092983e-02 2.9187570766593890e-01 3.4397281787661760e-01 0 1 0 0 0 0 V -378 0 -2.1603003555922825e-05 -2.3248230049116457e-06 6.9553371065278699e-05 7.3685842314964018e-05 0 2 0 P 1138 22 -2.8182006636484080e-01 -2.0626298251234430e-02 8.0697681312857084e-01 8.5502021666892536e-01 0 1 0 0 0 0 P 1139 22 1.5448764870557363e-02 -8.0394438970319768e-03 5.0636431530347331e-02 5.3547597446821450e-02 0 1 0 0 0 0 V -379 0 -1.6110614555728782e+02 9.1299674384162600e+01 -5.0939646859269243e+02 5.8176641933051712e+02 0 2 0 P 1140 22 -1.4546257993193826e-01 -5.1047572541053583e-02 -1.6853647956300780e-01 2.2840700901303748e-01 0 1 0 0 0 0 P 1141 22 -3.2474714992541754e-03 2.7761461475354063e-02 -1.2456120956770393e-01 1.2765868455908311e-01 0 1 0 0 0 0 V -380 0 3.3764762591995985e+00 -2.4684000517537621e+00 1.1611035109861566e+01 1.4844280059128005e+01 0 2 0 P 1142 211 2.6808273888788497e-01 4.5716401896578267e-02 4.4139021324946986e-01 5.3690171311368695e-01 1.3957000000000000e-01 1 0 0 0 0 P 1143 -211 -6.4372114422070983e-02 -1.9464068786013655e-01 2.5913039798832066e-01 3.5868804628454065e-01 1.3957000000000000e-01 1 0 0 0 0 V -381 0 3.7856196219362296e-03 -3.3880522564294753e-02 -2.9892935195562209e-01 3.1043200776300295e-01 0 2 0 P 1144 211 -1.0984900882242608e-01 1.3159442699125232e-01 -1.9187261639078759e+00 1.9314175558172444e+00 1.3957000000000000e-01 1 0 0 0 0 P 1145 111 1.9051850153239488e-01 -4.4804897436507457e-01 -1.8097579271526585e+00 1.8789594296172634e+00 1.3497999999999999e-01 2 0 0 -389 0 V -382 0 3.8323401888430125e-03 -3.3989443670167735e-02 -2.9909656539693330e-01 3.1064020293584627e-01 0 2 0 P 1146 22 1.1292722561770781e-01 -2.4314851273843593e-01 -2.6220829366133236e-01 3.7500259572090083e-01 0 1 0 0 0 0 P 1147 22 5.9459818864809624e-02 -1.5874274771381616e-01 -3.5476690278482814e-01 3.9318479792930422e-01 0 1 0 0 0 0 V -383 0 8.7370756658057704e+00 1.2354084027208856e+01 -1.3539133120830638e+02 1.3752413912676343e+02 0 2 0 P 1148 22 9.0277134729578656e-02 1.8101342102149287e-01 -9.6786687217400458e-01 9.8877808526320876e-01 0 1 0 0 0 0 P 1149 22 1.8733049634527599e-01 1.8442936454696857e-01 -2.0452906713523524e+00 2.0621156213193093e+00 0 1 0 0 0 0 V -384 0 8.7369050742578604e+00 1.2353861970795544e+01 -1.3538959902601724e+02 1.3752238653824847e+02 0 2 0 P 1150 22 -4.6757591655121611e-02 -8.7104248885936708e-02 -3.8608021356349148e-01 3.9853651508563359e-01 0 1 0 0 0 0 P 1151 22 5.3955361445144970e-04 4.8843042221156575e-02 -1.8643826905892549e-01 1.9273080205615509e-01 0 1 0 0 0 0 V -385 0 -1.5264949435005791e+01 1.2546816104572478e+01 4.4451653625748143e+01 6.0124947057669139e+01 0 2 0 P 1152 22 -1.0586119813068930e-01 -3.5765557122451386e-02 7.5895152854469169e-02 1.3507717265603253e-01 0 1 0 0 0 0 P 1153 22 -1.7815747697968082e-01 1.1514482912004849e-01 1.1624432160968549e-01 2.4189080301521731e-01 0 1 0 0 0 0 V -386 0 -1.5264886406329303e+01 1.2546812669776820e+01 4.4451669427686546e+01 6.0124931672124717e+01 0 2 0 P 1154 22 -1.9631096045111245e-02 -2.0558554087549050e-03 4.5135807440121658e-03 2.0247935315157589e-02 0 1 0 0 0 0 P 1155 22 8.8658420625147116e-02 9.9386196656863726e-02 4.2940518006840905e-01 4.4958507571231177e-01 0 1 0 0 0 0 V -387 0 1.2276695319430445e+01 5.1277790143140578e+00 1.5056468825871171e+01 2.0232639190201891e+01 0 2 0 P 1156 22 3.2631157605584654e-01 1.0718344557805866e-01 4.0561003695421055e-01 5.3149509663968797e-01 0 1 0 0 0 0 P 1157 22 1.8063775831632236e+00 8.5211989963323720e-01 2.0423200580071765e+00 2.8566027927669615e+00 0 1 0 0 0 0 V -388 0 1.2275643816011993e+01 5.1273052792531653e+00 1.5055263753240913e+01 2.0230970122270708e+01 0 2 0 P 1158 22 1.5966050370704846e-01 -2.3342948236645907e-02 2.5986116274385379e-01 3.0588264674373872e-01 0 1 0 0 0 0 P 1159 22 2.7770744214797138e-01 1.3750419512454937e-01 4.4421316635461777e-01 5.4162179079502926e-01 0 1 0 0 0 0 V -389 0 3.8247098964546574e-03 -3.3972452519993319e-02 -2.9930067512694292e-01 3.1081752958540843e-01 0 2 0 P 1160 22 -2.5034626040226294e-03 -1.0226418592714401e-01 -2.5986240398854576e-01 2.7927173157170293e-01 0 1 0 0 0 0 P 1161 22 1.9302196413641753e-01 -3.4578478843793059e-01 -1.5498955231641127e+00 1.5996876980455597e+00 0 1 0 0 0 0 E 63 9 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 139 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.5195688796293103e-01 1.9472434278569989e-01 9.3572167081744897e+02 9.3572170341713456e+02 0 3 0 0 -3 0 P 15 2203 4.7953448507140928e-01 1.4765698543903361e-02 5.7488672109398558e+03 5.7488672827036735e+03 7.7132999999999996e-01 2 0 0 -9 0 P 24 1 -3.2757759710847822e-01 -2.0949004132960325e-01 5.9644608516257897e+01 5.9646788834078968e+01 3.3000000000000002e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 3 5.0232445873963683e-01 4.2491784416488976e-01 -3.7110724797763856e+02 3.7110783121159352e+02 0 3 0 0 -4 0 P 11 321 -2.6283213221718282e-01 -3.0525232996271501e-01 -2.2929069773882356e+03 2.2929070659004760e+03 4.9359999999999998e-01 1 0 0 0 0 P 50 2101 -2.3949232652245400e-01 -1.1966551420217472e-01 -3.9976388694985117e+03 3.9976389204410393e+03 5.7933000000000001e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 11 0 P 5 -4 -8.9237956273366752e+00 2.2478038119318446e+00 1.6556308846717901e+01 1.8941966978202586e+01 0 3 0 0 -5 0 P 12 4 7.4249447632670762e+00 -6.5578631312165636e-01 -3.7738871593206063e+00 8.4883499407911920e+00 1.5000000000000000e+00 2 0 0 -9 0 P 13 21 2.0485796680379184e-01 -3.6414026370349056e-01 1.0966553835260909e+01 1.0974509917982159e+01 0 2 0 0 -9 0 P 14 21 4.1045886617669280e-01 -3.6240321968324135e-01 3.5648630841384044e-01 6.5337207052824320e-01 0 2 0 0 -9 0 P 25 21 3.1116327435640596e-02 -3.5790312693585530e-01 5.3025377770107546e+01 5.3026594747699185e+01 0 2 0 0 -15 0 P 26 21 3.5414277397737920e-01 -7.9111996431348086e-01 5.8744867813743281e+02 5.8744931758690416e+02 0 2 0 0 -15 0 P 27 21 -3.3664362597580416e-01 4.2968776662513591e-01 2.5919231572084283e+02 2.5919289050674359e+02 0 2 0 0 -15 0 P 28 21 1.3002648276410194e+00 4.6062788902353206e-02 -6.7812202445859526e-01 1.4671945619370377e+00 0 2 0 0 -15 0 P 29 21 -1.0218667623707107e+00 4.4107589862544627e-01 -1.1185626665239341e-01 1.1186024551982956e+00 0 2 0 0 -15 0 P 30 21 -3.9421689335269634e-02 -8.6306001086958373e-01 2.0651431265874702e+00 2.2385805290951062e+00 0 2 0 0 -15 0 P 31 21 3.7278342515571994e-01 4.3739927966334247e-01 1.3576614836090910e+00 1.4742897666322179e+00 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 3 0 P 6 3 -9.8774437719428221e-01 1.8199745428599678e-01 -1.2334792349640773e+02 1.2335201252068694e+02 0 3 0 0 -5 0 P 48 21 6.0316920514560335e-01 3.6382076012041042e-01 -3.4225526083114197e+01 3.4232773979060781e+01 0 2 0 0 -15 0 P 49 21 9.5810149737553907e-01 -1.3379267442279394e-01 -2.0421678755118523e+02 2.0421907887532186e+02 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -3.1614310879802616e+00 2.3790627698640123e+00 3.8075204946968553e+00 5.4910653342077165e+00 0 3 0 0 -6 0 P 8 -24 -6.7501089165506940e+00 5.0738496353829224e-02 -1.1059913514438672e+02 1.3680291416468174e+02 8.0232799306036128e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -3.1614310879802616e+00 2.3790627698640123e+00 3.8075204946968553e+00 5.4910653342077138e+00 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 -6.7501089165506940e+00 5.0738496353829224e-02 -1.1059913514438672e+02 1.3680291416468174e+02 8.0232799306036128e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 8 0 P 16 1 4.8044108677521482e+00 -8.6109876904310436e+00 -2.5355865269384946e+01 2.7207724571344286e+01 3.3000000000000002e-01 2 0 0 -11 0 P 17 -1 -4.3113061332804996e+00 -1.4135575041209377e+01 -5.5650512467151657e+01 5.7580294200161269e+01 3.3000000000000002e-01 2 0 0 -11 0 P 18 1 2.3033229771026054e-01 -5.1896264728181993e+00 -2.0475433720046343e+01 2.1126702580354436e+01 3.3000000000000002e-01 2 0 0 -13 0 P 19 21 2.8895560271486133e-02 4.5776471351499259e-02 -2.3943825097706017e-01 2.4548139392579507e-01 0 2 0 0 -13 0 P 20 21 9.1391980370579676e-02 -5.6204088122108350e-02 3.0489105205889769e-02 1.1153913722971841e-01 0 2 0 0 -13 0 P 21 21 -5.5313767383456269e-01 5.1931082493260772e-01 -1.2366939321247082e-01 7.6872565842752860e-01 0 2 0 0 -13 0 P 22 21 -5.7165636143177387e+00 2.2074238498085439e+01 -7.8202214077145698e+00 2.4106160368100433e+01 0 2 0 0 -13 0 P 23 -2 -1.3241322012223700e+00 5.4038059945650172e+00 -9.6448374110568791e-01 5.6562862551384399e+00 3.3000000000000002e-01 2 0 0 -13 0 V -9 0 0 0 0 0 0 1 0 P 51 92 8.5197960813189706e+00 -1.3675640979644850e+00 5.7564163639242097e+03 5.7689835146329742e+03 3.8048256214414772e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 15 0 P 52 423 5.4042522506248520e+00 -5.6755272741371687e-01 -2.3319061349307750e+00 6.2444126704523875e+00 2.0066999999999999e+00 2 0 0 -17 0 P 53 323 6.9149311450687867e-01 6.7175829922721850e-02 -4.1715814822563085e-01 1.2196164757478243e+00 9.1146481432267934e-01 2 0 0 -18 0 P 54 -311 2.4948538167915441e-01 2.1419066014328250e-01 1.7060067679464646e-02 5.9673031544696675e-01 4.9767000000000000e-01 2 0 0 -19 0 P 55 -213 6.9242876536836884e-01 -2.1735494414685086e-01 5.3472593471019636e-01 1.1164061788129114e+00 6.5858193414738375e-01 2 0 0 -20 0 P 56 211 -1.7897988307980442e-01 -7.4334870944438747e-02 5.1958329677946791e-01 5.7184443581957456e-01 1.3957000000000000e-01 1 0 0 0 0 P 57 111 -2.1961799365177845e-01 2.7524066120955143e-01 3.7974268505573772e-01 5.3517622515583119e-01 1.3497999999999999e-01 2 0 0 -21 0 P 58 -211 7.3821537705078522e-01 -2.2563611985793977e-01 1.0163077789370387e+00 1.2838360050749147e+00 1.3957000000000000e-01 1 0 0 0 0 P 59 111 2.6896552606205295e-02 -3.3851763038985339e-01 1.9100060575022506e+00 1.9446491587744434e+00 1.3497999999999999e-01 2 0 0 -22 0 P 60 213 4.4724214894261910e-01 -1.4805862294895461e-01 4.5735773954274267e-01 9.8832218131002658e-01 7.3868649407540221e-01 2 0 0 -23 0 P 61 -211 -1.3590652201957413e-02 -1.8185477282741921e-01 8.7527720483453155e+00 8.7557840413878658e+00 1.3957000000000000e-01 1 0 0 0 0 P 62 223 3.8048695766169552e-02 -1.6234286452128033e-01 2.3286887862905585e+00 2.4574394637303496e+00 7.6708170724730096e-01 2 0 0 -24 0 P 63 213 5.8742685109856685e-01 3.5817951025986000e-01 2.5688627748634691e+01 2.5708157097645174e+01 7.2827390610819176e-01 2 0 0 -25 0 P 64 -211 -2.8152238132799395e-01 -4.7987375125380349e-01 6.1660199305615515e+02 6.1660225985174270e+02 1.3957000000000000e-01 1 0 0 0 0 P 65 2212 -3.2839037223273937e-01 -1.4842186503598281e-01 2.2540911953914019e+03 2.2540914194772399e+03 9.3827000000000005e-01 1 0 0 0 0 P 66 211 6.6640822616964401e-01 2.6159740984033936e-01 2.8468673676163326e+03 2.8468674610546345e+03 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 67 92 4.9310473447164860e-01 -2.2746562731640420e+01 -8.1006377736536606e+01 8.4788018771505563e+01 1.0455889480054523e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 6 0 P 68 311 3.5258539876192052e+00 -6.7812639758371933e+00 -2.1729391376589440e+01 2.3039776745400488e+01 4.9767000000000000e-01 2 0 0 -26 0 P 69 -323 -1.1431213046809102e-01 -2.3861189882651641e+00 -5.0092324331542377e+00 5.6196732098797257e+00 8.8413026593587829e-01 2 0 0 -27 0 P 70 111 3.1985154007839317e-01 -9.9225137882662995e-01 -3.2065184611730757e+00 3.3744404052698305e+00 1.3497999999999999e-01 2 0 0 -28 0 P 71 113 -1.2754322888169096e+00 -5.7305691652677231e+00 -2.4237625750424769e+01 2.4959941844221873e+01 1.0344294891437282e+00 2 0 0 -29 0 P 72 113 -8.0781997131934968e-01 -3.1492633076952270e+00 -1.0971755594463053e+01 1.1473113438112197e+01 8.2612266153489955e-01 2 0 0 -30 0 P 73 211 -1.1550364026215987e+00 -3.7070959157485004e+00 -1.5851854120732092e+01 1.6321073128621514e+01 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 0 1 0 P 74 92 -7.2432136510223453e+00 2.2797301227994254e+01 -2.9592757407850240e+01 5.2014895393176353e+01 3.5463177585898002e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 10 0 P 75 111 -8.8199099910778248e-02 -7.1919086183123437e-01 -1.3112065198751288e+00 1.5041598037208919e+00 1.3497999999999999e-01 2 0 0 -31 0 P 76 111 -6.0114550875838800e-02 -4.6377279903693946e-01 -3.2063930233894631e+00 3.2431273162172007e+00 1.3497999999999999e-01 2 0 0 -32 0 P 77 223 3.0678770707184605e-01 -3.0216892031599083e+00 -1.2070684566830392e+01 1.2471009170659698e+01 7.7454469532581038e-01 2 0 0 -33 0 P 78 -211 -1.0032807145960275e-01 2.7370264196794131e-01 -5.7726966885618491e-01 6.6158817524526803e-01 1.3957000000000000e-01 1 0 0 0 0 P 79 221 -5.6382748672281247e-01 -3.3937358902059667e-01 -1.0086971741051802e+00 1.3229691452398504e+00 5.4744999999999999e-01 2 0 0 -34 0 P 80 111 7.7615223306022829e-01 -3.8185372903663722e-01 -1.8148567348705933e+00 2.0149811730556482e+00 1.3497999999999999e-01 2 0 0 -35 0 P 81 323 -1.7536027233136064e-01 9.1541883949837832e-01 -1.3217958944027393e+00 1.8430675142340973e+00 8.8374804030585019e-01 2 0 0 -36 0 P 82 -313 -4.1429147227907803e+00 1.4688708396860575e+01 -4.4802981547002849e+00 1.5926380834994339e+01 8.0909713752135093e-01 2 0 0 -37 0 P 83 -211 -5.1461062366883259e-01 5.8746860209848084e-01 -6.0159420933022534e-01 9.9565999720990428e-01 1.3957000000000000e-01 1 0 0 0 0 P 84 223 -2.6807987633944133e+00 1.1257882929654194e+01 -3.1999614614900467e+00 1.2031952262599447e+01 7.7557193530589252e-01 2 0 0 -38 0 V -15 0 0 0 0 0 16 1 0 P 32 21 -3.4169822043058398e+00 -5.2047501516050438e+00 8.7920334129053623e-01 6.2879400474648266e+00 0 2 0 0 -15 0 P 33 21 2.1032757803432497e-01 -6.8027841585843851e-01 6.7966875519532943e-01 9.8436072146008569e-01 0 2 0 0 -15 0 P 34 21 -2.1032757803432497e-01 6.8027841585843851e-01 2.4195772100159968e+02 2.4195876873695053e+02 0 2 0 0 -15 0 P 35 21 6.6772588611170736e-01 5.7503261172428100e-02 4.9529437866548798e-01 8.3335526971800034e-01 0 2 0 0 -15 0 P 36 21 3.4169822043058398e+00 5.2047501516050438e+00 1.9878299619697350e+00 6.5357983049418014e+00 0 2 0 0 -15 0 P 37 21 1.9045173682560792e+00 4.3218072015387321e+00 -2.0189488975171486e+00 5.1362786668994920e+00 0 2 0 0 -15 0 P 38 21 -4.0489329154892767e-01 5.9015685190085545e+00 -6.0323913506049562e+00 8.4487984334429260e+00 0 2 0 0 -15 0 P 39 21 3.9314340308514839e+00 1.8463168604291933e+00 -4.8850221287436977e+00 6.5367041149464509e+00 0 2 0 0 -15 0 P 40 21 -1.1342161188064155e+00 5.4793727551972937e-01 -4.7029736153118771e+00 4.8687413453975905e+00 0 2 0 0 -15 0 P 41 21 4.0489329154892767e-01 -5.9015685190085545e+00 -1.7171896398420927e+01 1.8162226611299502e+01 0 2 0 0 -15 0 P 42 21 1.6089836805988726e+00 -1.3528919367077115e+00 -1.2963923049409026e+01 1.3133257246694015e+01 0 2 0 0 -15 0 P 43 21 -1.9045173682560792e+00 -4.3218072015387321e+00 -5.5846564378866383e+01 5.6045909367376034e+01 0 2 0 0 -15 0 P 44 21 -3.9314340308514839e+00 -1.8463168604291933e+00 -6.1964250281136913e+01 6.2116289106734463e+01 0 2 0 0 -15 0 P 45 21 -6.6772588611170736e-01 -5.7503261172428100e-02 -1.0913089917097382e+01 1.0933649711906893e+01 0 2 0 0 -15 0 P 46 21 -1.6089836805988726e+00 1.3528919367077115e+00 -5.9854783783633550e+01 5.9891687961372099e+01 0 2 0 0 -15 0 P 47 21 1.1342161188064155e+00 -5.4793727551972937e-01 -9.2228278688026933e+01 9.2236880211867671e+01 0 2 0 0 -15 0 P 85 92 1.6545760554181848e+00 -7.5698483813680473e-01 -3.3567197817191327e+03 5.7958156781421831e+03 4.7248183426843216e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 72 0 P 86 -213 -2.8280792645904190e-01 -4.5673761162392273e-01 3.5447447820091713e+02 3.5447557815901393e+02 7.0087501419151377e-01 2 0 0 -39 0 P 87 2212 4.6784248509908102e-02 -1.7437313018102460e-01 1.6344060512075882e+02 1.6344339799327219e+02 9.3827000000000005e-01 1 0 0 0 0 P 88 111 -3.4015226029181506e-01 7.7420989765475567e-02 4.9105776079017858e+01 4.9107200709192114e+01 1.3497999999999999e-01 2 0 0 -40 0 P 89 -2212 -2.8999839142999737e-02 -2.2065415777470165e-01 3.1165823752124930e+02 3.1165972934386667e+02 9.3827000000000005e-01 1 0 0 0 0 P 90 223 1.9157240860556563e-01 -2.0042851316937094e-01 3.9337708217753963e+01 3.9344946547618612e+01 7.0189702463395920e-01 2 0 0 -41 0 P 91 113 -2.0340569703059391e-01 -2.4611012640978588e-01 3.0908404062011684e+01 3.0917245997805804e+01 6.6686906987346817e-01 2 0 0 -42 0 P 92 2212 8.4231855484512297e-01 3.5937504123409780e-01 4.0501423048828800e+00 4.2570710882953762e+00 9.3827000000000005e-01 1 0 0 0 0 P 93 -2212 -2.2382860215994188e-01 -5.2785848474403256e-02 2.0115595764630210e+00 2.2315035539976460e+00 9.3827000000000005e-01 1 0 0 0 0 P 94 113 2.3283566344342482e-01 2.1974835219718850e-01 1.9394864578865600e+00 2.0996018782598220e+00 7.3771169328017405e-01 2 0 0 -43 0 P 95 2114 -2.7972023853818934e-01 -8.3938360215640578e-02 1.4543589923729809e+00 1.8628195618524837e+00 1.1267863955340318e+00 2 0 0 -44 0 P 96 -1114 3.6835286207023193e-01 2.9626992122088930e-01 2.9063908548556860e-01 1.3804158145519032e+00 1.2639687677460798e+00 2 0 0 -45 0 P 97 313 -9.6794933922905169e-02 -9.1985898036056668e-01 7.7665842789967843e-01 1.5078046305111255e+00 9.0264427499434863e-01 2 0 0 -46 0 P 98 -323 8.2290247679860248e-02 5.5227255897537531e-01 7.0926245896388518e-01 1.2329394945453711e+00 8.3982730204124445e-01 2 0 0 -47 0 P 99 223 -3.6545447090784561e-01 -5.2283984924171634e-01 3.4067302789805444e-02 1.0139348475355374e+00 7.8739114528035414e-01 2 0 0 -48 0 P 100 211 3.5032024712613422e-02 -3.2378923854990638e-01 4.0977058222755891e-01 5.4171803432718213e-01 1.3957000000000000e-01 1 0 0 0 0 P 101 223 -9.2250634948149191e-01 -7.0352048553626001e-01 1.4209918775074240e+00 1.9946806550853335e+00 7.8330962040992291e-01 2 0 0 -49 0 P 102 313 -4.0002883910948434e-01 -1.4564727154112742e+00 4.8972437705085758e-01 1.8579987357015608e+00 9.6488004100715763e-01 2 0 0 -50 0 P 103 -313 -2.0809147161434741e-02 -2.6002005227978089e-02 1.2659803175583364e+00 1.4901821505468342e+00 7.8538369761653382e-01 2 0 0 -51 0 P 104 -211 -2.9843937770032364e-01 -5.9944296158362942e-01 -9.2914537566782446e-02 6.9029763330432903e-01 1.3957000000000000e-01 1 0 0 0 0 P 105 211 -7.2948265045510885e-01 -9.9945618558848259e-01 -1.4007278822907676e-01 1.2530593661628155e+00 1.3957000000000000e-01 1 0 0 0 0 P 106 311 -3.1462534109441198e-01 -9.8153700886658612e-01 4.7142724324584568e+00 4.8512311840780526e+00 4.9767000000000000e-01 2 0 0 -52 0 P 107 -311 -8.7366490857108195e-02 3.8888915712568800e-01 1.2865224198828235e+01 1.2881014587184906e+01 4.9767000000000000e-01 2 0 0 -53 0 P 108 113 -1.7760037801624042e+00 -1.2343404157739470e+00 8.9121707975522142e+00 9.1972753594910834e+00 6.9663478551904090e-01 2 0 0 -54 0 P 109 113 1.5505548590008396e+00 1.3371760142376703e+00 2.0314502924519573e+01 2.0434855711571426e+01 8.4382392630522096e-01 2 0 0 -55 0 P 110 -211 -1.7791827191928866e-01 -4.9799912637574439e-01 2.1022960819760023e+01 2.1030074166664722e+01 1.3957000000000000e-01 1 0 0 0 0 P 111 113 2.4258298143929902e-01 6.2055255258696602e-02 5.3054590270005470e+01 5.3060044498425789e+01 7.1838436729623889e-01 2 0 0 -56 0 P 112 213 1.0416626662548328e-01 -4.1795375184953176e-01 2.6234207893448520e+01 2.6250325255839087e+01 8.1263539848990574e-01 2 0 0 -57 0 P 113 -213 6.1180494654885509e-01 2.8443361146511759e-01 4.0961555316929172e+01 4.0973808096208757e+01 7.4076187209030353e-01 2 0 0 -58 0 P 114 111 -6.4435960909851020e-01 -8.4021805802118418e-02 2.2253170102752183e+01 2.2263064887658917e+01 1.3497999999999999e-01 2 0 0 -59 0 P 115 111 5.7369500002750251e-01 5.7304365034414406e-01 6.6284528719071085e+00 6.6792298997526549e+00 1.3497999999999999e-01 2 0 0 -60 0 P 116 211 -7.4671381001259896e-01 -7.7664195889738233e-02 8.9167334097788160e+00 8.9493702419417431e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 311 8.1974923491263940e-01 2.4986749022793978e-01 1.3963863404542149e+00 1.7123062843778216e+00 4.9767000000000000e-01 2 0 0 -61 0 P 118 -323 -3.5126703863777337e-01 4.8615108237150390e-01 6.5579243307547772e+00 6.6454942971257456e+00 8.9246373478196517e-01 2 0 0 -62 0 P 119 111 2.8729792059922893e-01 8.0495280530002211e-02 2.3512944185778695e+00 2.3739891803889246e+00 1.3497999999999999e-01 2 0 0 -63 0 P 120 111 -2.7910065058154748e-01 -1.3061245700177426e-01 9.3564099097132591e-01 9.9428388876863905e-01 1.3497999999999999e-01 2 0 0 -64 0 P 121 213 4.7064862168531885e-01 1.9244238152269680e-01 3.2014644940328694e+00 3.3283232535320315e+00 7.5486195966447867e-01 2 0 0 -65 0 P 122 -211 8.1980746207465038e-02 -1.5516264770707969e-01 5.5760271021430274e-01 6.0099655350970160e-01 1.3957000000000000e-01 1 0 0 0 0 P 123 223 5.1828500616000850e-01 1.8375373794681849e-01 1.3926232560498992e+00 1.6916089278320965e+00 7.8724611628799102e-01 2 0 0 -66 0 P 124 2224 9.4366032801945754e-01 3.1306393962315124e+00 2.6727224435250158e-01 3.5056201976818087e+00 1.2355325466691749e+00 2 0 0 -67 0 P 125 -213 6.6379811464185756e-01 1.3300172418500178e-01 -8.7872134842837191e-01 1.3238405087544127e+00 7.2255455766128684e-01 2 0 0 -68 0 P 126 -2212 1.3030742523318304e+00 2.9265040226384920e+00 7.5522888275308431e-01 3.4224478900129234e+00 9.3827000000000005e-01 1 0 0 0 0 P 127 211 7.6665781786905626e-02 -1.0046566138547265e-01 -1.2651941815302312e-02 1.8870836692186083e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 -4.8476535425065366e-02 2.4155059157138443e+00 -1.1705656959110766e+00 2.6880220334251685e+00 1.3497999999999999e-01 2 0 0 -69 0 P 129 313 9.3070497519798578e-01 1.8570148223426886e+00 -7.3391868683265726e-01 2.3718234479173179e+00 8.7874571290532766e-01 2 0 0 -70 0 P 130 -311 7.2361711315373856e-01 1.7548239152304139e+00 -2.2261752292782107e+00 2.9675849238506120e+00 4.9767000000000000e-01 2 0 0 -71 0 P 131 1114 1.3257788195461420e+00 1.1885934456827374e+00 -1.9959747359803335e+00 2.9389515915848157e+00 1.2178166748447961e+00 2 0 0 -72 0 P 132 211 -5.0907952805511958e-01 2.0852158424232753e-01 -4.8032523588601200e-01 7.4352897328127476e-01 1.3957000000000000e-01 1 0 0 0 0 P 133 -2112 2.1434886813946994e+00 2.8825395216106289e+00 -5.2621287939779595e+00 6.4402149847832222e+00 9.3957000000000002e-01 1 0 0 0 0 P 134 223 -6.4246436241920835e-01 2.3658998203054576e-01 -1.3460298709154461e+00 1.7001619139321975e+00 7.8103703088458354e-01 2 0 0 -73 0 P 135 -211 3.8857712322225851e-01 -2.5037255141590209e-01 -8.0157357280210850e-01 9.3577698876865534e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 113 1.9949542442306048e-01 -2.5821793204606303e-01 -3.6575773846390178e+00 3.6941423608419908e+00 4.0291504408318968e-01 2 0 0 -74 0 P 137 213 -3.9704589251010858e-01 -1.9013391530957164e+00 -3.9345268566310083e+00 4.4605112798786060e+00 8.0182496626115962e-01 2 0 0 -75 0 P 138 223 2.0933567640436684e-01 -1.0900241549296898e+00 -6.8977482641752239e+00 7.0301069028146967e+00 7.8198328967099340e-01 2 0 0 -76 0 P 139 -211 -4.5506427269974961e-02 -3.6970641501389673e-01 -2.8366113026869835e+00 2.8643667948879821e+00 1.3957000000000000e-01 1 0 0 0 0 P 140 113 7.5757418974488822e-01 -1.2193472308889337e+00 -7.8014965423126004e+00 7.9731832617640741e+00 8.0472150680543086e-01 2 0 0 -77 0 P 141 111 -7.6608625012757714e-01 -5.5415086478581588e-01 -5.3074461330299059e+00 5.3926964849684893e+00 1.3497999999999999e-01 2 0 0 -78 0 P 142 211 3.7324629911290996e-01 -8.1691300234572417e-01 -8.0209389448157555e+00 8.0722735951257913e+00 1.3957000000000000e-01 1 0 0 0 0 P 143 113 -7.6995086590324779e-02 -1.8830576994569481e+00 -8.8555615785095245e+00 9.0855300454226136e+00 7.5766139710283220e-01 2 0 0 -79 0 P 144 3214 -2.6175703988977733e-01 -7.4773062420920955e-01 -2.5787870786235047e+01 2.5837422629990815e+01 1.3894281697497790e+00 2 0 0 -80 0 P 145 311 -1.5999775851189213e+00 -4.7509681211811738e-01 -1.5869502181816205e+01 1.5964786881801372e+01 4.9767000000000000e-01 2 0 0 -81 0 P 146 -2212 -7.1023892535061450e-01 -1.3143204423951913e+00 -2.4562666108432214e+01 2.4625937434006559e+01 9.3827000000000005e-01 1 0 0 0 0 P 147 211 -3.9596281231583569e-01 -8.0025375705600843e-01 -7.5262467305906977e+00 7.5803075306379553e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 221 -2.7557354254713937e+00 -1.0289216292226322e+00 -5.2146488239642707e+01 5.2232257223711628e+01 5.4744999999999999e-01 2 0 0 -82 0 P 149 -213 -2.1327226755765089e-01 6.3760497690026252e-01 -4.7618885336185123e+01 4.7631429731769188e+01 8.6187729117441980e-01 2 0 0 -83 0 P 150 321 -3.9003199420248785e-01 5.6645061037288424e-01 -1.8728317777412265e+01 1.8747440331475381e+01 4.9359999999999998e-01 1 0 0 0 0 P 151 -321 2.1759175608741085e-01 -7.3550900916818901e-02 -2.0117243852219113e+02 2.0117317519448790e+02 4.9359999999999998e-01 1 0 0 0 0 P 152 111 1.4170274919718857e+00 -4.2024477424967122e-01 -7.1267287774949224e+01 7.1282740540618349e+01 1.3497999999999999e-01 2 0 0 -84 0 P 153 221 2.1148908569360256e-01 -2.6415630197364265e-01 -9.4729622678853355e+02 9.4729644541478172e+02 5.4744999999999999e-01 2 0 0 -85 0 P 154 2212 -6.4504818109583595e-01 3.1623954300079515e-01 -5.2908735372728654e+02 5.2908867339921403e+02 9.3827000000000005e-01 1 0 0 0 0 P 155 111 2.5857423665149742e-01 -4.4009656011874780e-02 -4.0827080262587805e+02 4.0827090919371750e+02 1.3497999999999999e-01 2 0 0 -86 0 P 156 -2214 3.5489382203826886e-01 -3.9035992985342777e-01 -8.6285308394497815e+02 8.6285409117454060e+02 1.2082436770810980e+00 2 0 0 -87 0 P 157 2212 1.2349492904676554e-01 2.1353224924370168e-01 -1.2891507813994756e+03 1.2891511464450127e+03 9.3827000000000005e-01 1 0 0 0 0 V -17 0 0 0 0 0 0 2 0 P 158 421 5.1166386164154831e+00 -4.7854991648512202e-01 -2.3319438019051737e+00 5.9433427377870460e+00 1.8645000000000000e+00 2 0 0 -88 0 P 159 22 2.8761363420936925e-01 -8.9002810928594800e-02 3.7666974398845635e-05 3.0106993266534110e-01 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 160 311 1.6459098964223262e-01 1.1041660821964265e-01 -4.0695800164667778e-01 6.7273491454390633e-01 4.9767000000000000e-01 2 0 0 -89 0 P 161 211 5.2690212486464605e-01 -4.3240778296920808e-02 -1.0200146578953032e-02 5.4688156120391795e-01 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 1 0 P 162 310 2.4948538167915441e-01 2.1419066014328250e-01 1.7060067679464646e-02 5.9673031544696675e-01 4.9767000000000000e-01 2 0 0 -90 0 V -20 0 0 0 0 0 0 2 0 P 163 -211 1.9056302042274811e-01 -3.1975259930623806e-01 4.1232702299117685e-01 5.7275592384933294e-01 1.3957000000000000e-01 1 0 0 0 0 P 164 111 5.0186574494562064e-01 1.0239765515938720e-01 1.2239891171901955e-01 5.4365025496357844e-01 1.3497999999999999e-01 2 0 0 -91 0 V -21 0 -4.3698065135078186e-05 5.4765477734158190e-05 7.5558565626668235e-05 1.0648565336902850e-04 0 2 0 P 165 22 -1.6861162408935784e-01 1.6450530389060702e-01 1.6288670933854923e-01 2.8639824522041496e-01 0 1 0 0 0 0 P 166 22 -5.1006369562420585e-02 1.1073535731894441e-01 2.1685597571718845e-01 2.4877797993541625e-01 0 1 0 0 0 0 V -22 0 1.0810919344640309e-05 -1.3606527395779112e-04 7.6771628460174277e-04 7.8164088598785047e-04 0 2 0 P 167 22 3.0410452475967038e-02 -1.3404738463692142e-01 4.5399315703120713e-01 4.7434511020875308e-01 0 1 0 0 0 0 P 168 22 -3.5138998697617401e-03 -2.0447024575293193e-01 1.4560129004710434e+00 1.4703040485656904e+00 0 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 169 211 -1.6866419368186983e-01 -3.0565850612946359e-02 1.9707799963151912e-01 2.9614422886966635e-01 1.3957000000000000e-01 1 0 0 0 0 P 170 111 6.1590634262448896e-01 -1.1749277233600826e-01 2.6027973991122355e-01 6.9217795244036029e-01 1.3497999999999999e-01 2 0 0 -92 0 V -24 0 0 0 0 0 0 3 0 P 171 211 1.8660211000122856e-01 8.1214145414023990e-03 1.0600996005169383e+00 1.0854387374454793e+00 1.3957000000000000e-01 1 0 0 0 0 P 172 -211 -1.5002393005089434e-01 9.4568280547932815e-03 2.2509398057288055e-01 3.0453849703267055e-01 1.3957000000000000e-01 1 0 0 0 0 P 173 111 1.4705158158353081e-03 -1.7992110711747597e-01 1.0434952052007396e+00 1.0674622292522000e+00 1.3497999999999999e-01 2 0 0 -93 0 V -25 0 0 0 0 0 0 2 0 P 174 211 2.6585765703542397e-01 -5.4299550263852685e-02 1.7009731666638444e+01 1.7012468365610733e+01 1.3957000000000000e-01 1 0 0 0 0 P 175 111 3.2156919406314277e-01 4.1247906052371264e-01 8.6788960819962444e+00 8.6956887320344389e+00 1.3497999999999999e-01 2 0 0 -94 0 V -26 0 0 0 0 0 0 1 0 P 176 310 3.5258539876192052e+00 -6.7812639758371933e+00 -2.1729391376589440e+01 2.3039776745400488e+01 4.9767000000000000e-01 2 0 0 -95 0 V -27 0 0 0 0 0 0 2 0 P 177 -321 -3.2777195832627712e-02 -1.0008545352022655e+00 -2.7070088418469211e+00 2.9281943198905025e+00 4.9359999999999998e-01 1 0 0 0 0 P 178 111 -8.1534934635463310e-02 -1.3852644530628986e+00 -2.3022235913073166e+00 2.6914788899892228e+00 1.3497999999999999e-01 2 0 0 -96 0 V -28 0 1.4875767311641779e-04 -4.6147974220986962e-04 -1.4912988224850684e-03 1.5693965476449852e-03 0 2 0 P 179 22 4.4413321760739248e-02 -1.2515126998075052e-01 -5.7335670098380043e-01 5.8853486735336658e-01 0 1 0 0 0 0 P 180 22 2.7543821831765392e-01 -8.6710010884587940e-01 -2.6331617601892754e+00 2.7859055379164639e+00 0 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 181 211 -3.8443978729046741e-01 -3.7940100490062543e+00 -1.6185218171931634e+01 1.6628982929209421e+01 1.3957000000000000e-01 1 0 0 0 0 P 182 -211 -8.9099250152644216e-01 -1.9365591162614686e+00 -8.0524075784931348e+00 8.3309589150124506e+00 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 183 211 -8.6825151064316064e-01 -3.0451538517913099e+00 -1.0316069318548749e+01 1.0792015040612963e+01 1.3957000000000000e-01 1 0 0 0 0 P 184 -211 6.0431539323810887e-02 -1.0410945590391670e-01 -6.5568627591430395e-01 6.8109839749923329e-01 1.3957000000000000e-01 1 0 0 0 0 V -31 0 -2.9957046145126997e-06 -2.4427498530967533e-05 -4.4535459275010661e-05 5.1089166097266947e-05 0 2 0 P 185 22 -7.4193873426009610e-02 -4.3125393598276840e-01 -9.1417832663129228e-01 1.0135120626006255e+00 0 1 0 0 0 0 P 186 22 -1.4005226484768629e-02 -2.8793692584846597e-01 -3.9702819324383654e-01 4.9064774112026638e-01 0 1 0 0 0 0 V -32 0 -3.5806907768880533e-06 -2.7624376459419978e-05 -1.9098706983009878e-04 1.9317512815553579e-04 0 2 0 P 187 22 3.6559675593282590e-02 -1.9989700635050556e-01 -1.1860977167789997e+00 1.2033799137328729e+00 0 1 0 0 0 0 P 188 22 -9.6674226469121383e-02 -2.6387579268643391e-01 -2.0202953066104632e+00 2.0397474024843278e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 3 0 P 189 211 3.1928136411758616e-02 -7.3558676384822219e-01 -3.8704500173674536e+00 3.9423305816335534e+00 1.3957000000000000e-01 1 0 0 0 0 P 190 -211 2.8248494873354780e-02 -1.5412106051823409e+00 -5.4488719375969907e+00 5.6644340656610268e+00 1.3957000000000000e-01 1 0 0 0 0 P 191 111 2.4661107578673264e-01 -7.4489183412934479e-01 -2.7513626118659471e+00 2.8642445233651186e+00 1.3497999999999999e-01 2 0 0 -97 0 V -34 0 0 0 0 0 0 3 0 P 192 22 -1.3443920289805683e-01 -8.5968606917014148e-02 -1.0371512039748347e-01 1.9031901337013463e-01 0 1 0 0 0 0 P 193 -211 -6.6315361173888671e-02 -1.5568994184782126e-01 -5.6774637895497460e-01 6.0864835565101705e-01 1.3957000000000000e-01 1 0 0 0 0 P 194 211 -3.6307292265086699e-01 -9.7715040255761290e-02 -3.3723567475272220e-01 5.2400177621869881e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 1.9442741564165396e-04 -9.5654989481890252e-05 -4.5462460802242976e-04 5.0475611015010429e-04 0 2 0 P 195 22 5.6409907990715191e-01 -3.0806999380385042e-01 -1.2159574814739922e+00 1.3753790349525377e+00 0 1 0 0 0 0 P 196 22 2.1205315315307638e-01 -7.3783735232786821e-02 -5.9889925339660111e-01 6.3960213810311040e-01 0 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 197 311 -2.6833755622451283e-01 4.8012530784013963e-01 -1.0995406282923776e+00 1.3263447430719997e+00 4.9767000000000000e-01 2 0 0 -98 0 P 198 211 9.2977283893152143e-02 4.3529353165823875e-01 -2.2225526611036164e-01 5.1672277116209775e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 199 -321 -1.6469290804740053e+00 6.1457819681426651e+00 -1.8227665044863359e+00 6.6369518670799339e+00 4.9359999999999998e-01 1 0 0 0 0 P 200 211 -2.4959856423167746e+00 8.5429264287179087e+00 -2.6575316502139490e+00 9.2894289679144038e+00 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 0 3 0 P 201 211 -8.0405701593258549e-01 4.0217281880774269e+00 -1.1941487858574653e+00 4.2739064579505968e+00 1.3957000000000000e-01 1 0 0 0 0 P 202 -211 -7.7688624167979037e-01 3.4683551746001826e+00 -1.1520681403774937e+00 3.7389544841653355e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 111 -1.0998555057820374e+00 3.7677995669765849e+00 -8.5374453525508742e-01 4.0190913204835157e+00 1.3497999999999999e-01 2 0 0 -99 0 V -39 0 0 0 0 0 0 2 0 P 204 -211 1.2714367221264802e-01 6.7799271868090108e-02 6.8865066106911513e+01 6.8865358286651229e+01 1.3957000000000000e-01 1 0 0 0 0 P 205 111 -4.0995159867168990e-01 -5.2453688349201288e-01 2.8560941209400562e+02 2.8561021987236262e+02 1.3497999999999999e-01 2 0 0 -100 0 V -40 0 -1.5569248523883841e-05 3.5436678550648493e-06 2.2476406038769931e-03 2.2477058112086116e-03 0 2 0 P 206 22 -2.8807799242722887e-01 1.0345097878399262e-02 3.6461093075053476e+01 3.6462232572601508e+01 0 1 0 0 0 0 P 207 22 -5.2074267864586195e-02 6.7075891887076300e-02 1.2644683003964381e+01 1.2644968136590602e+01 0 1 0 0 0 0 V -41 0 0 0 0 0 0 3 0 P 208 -211 5.4951288309491371e-02 2.0944528277851263e-02 1.9460677848993097e+01 1.9461267184963631e+01 1.3957000000000000e-01 1 0 0 0 0 P 209 211 1.1904350646878413e-01 4.0009190679501323e-02 1.1361044574031892e+01 1.1362595904537427e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 111 1.7577613827290117e-02 -2.6138223212672351e-01 8.5159857947289748e+00 8.5210834581175821e+00 1.3497999999999999e-01 2 0 0 -101 0 V -42 0 0 0 0 0 0 2 0 P 211 -211 -2.7824164019254444e-01 -3.8755458541609800e-01 2.5183640042755179e+01 2.5188545463265164e+01 1.3957000000000000e-01 1 0 0 0 0 P 212 211 7.4835943161950497e-02 1.4144445900631211e-01 5.7247640192565052e+00 5.7287005345406579e+00 1.3957000000000000e-01 1 0 0 0 0 V -43 0 0 0 0 0 0 2 0 P 213 211 -1.3424512474794628e-01 -1.7795343779970982e-02 1.3269823727713026e-01 2.3542946896108094e-01 1.3957000000000000e-01 1 0 0 0 0 P 214 -211 3.6708078819137108e-01 2.3754369597715946e-01 1.8067882206094299e+00 1.8641724092987422e+00 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 215 2112 -3.0096704627330867e-01 -1.7118763580695293e-01 1.2312255056491308e+00 1.5870080025811502e+00 9.3957000000000002e-01 1 0 0 0 0 P 216 111 2.1246807735119316e-02 8.7249275591312334e-02 2.2313348672385014e-01 2.7581155927133383e-01 1.3497999999999999e-01 2 0 0 -102 0 V -45 0 0 0 0 0 0 2 0 P 217 -2112 2.1559986385090299e-01 -1.6166523965938581e-02 2.8598972456097499e-01 1.0056473364177581e+00 9.3957000000000002e-01 1 0 0 0 0 P 218 211 1.5275299821932894e-01 3.1243644518682789e-01 4.6493609245935857e-03 3.7476847813414504e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 219 321 -2.1746950997889541e-01 -9.4837331207019648e-01 5.7606366710330170e-01 1.2337727648858030e+00 4.9359999999999998e-01 1 0 0 0 0 P 220 -211 1.2067457605599023e-01 2.8514331709629703e-02 2.0059476079637675e-01 2.7403186562532356e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 221 -311 9.1377179303868225e-02 6.5631430027746862e-01 6.3228495863129286e-01 1.0423809032487166e+00 4.9767000000000000e-01 2 0 0 -103 0 P 222 -211 -9.0869316240079802e-03 -1.0404174130209327e-01 7.6977500332592319e-02 1.9055859129665434e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 3 0 P 223 211 -3.4946607542675145e-01 -5.6949875829523688e-01 6.4020731074812293e-02 6.8559011988311647e-01 1.3957000000000000e-01 1 0 0 0 0 P 224 -211 -5.4133519709523271e-02 -2.4283250332671518e-02 -6.8641056444070675e-02 1.6646769576292764e-01 1.3957000000000000e-01 1 0 0 0 0 P 225 111 3.8145124228429077e-02 7.0942159386192055e-02 3.8687628159063840e-02 1.6187703188949368e-01 1.3497999999999999e-01 2 0 0 -104 0 V -49 0 0 0 0 0 0 3 0 P 226 -211 -1.7185750255966109e-01 -4.3715895599261000e-02 1.5061370164456520e-01 2.7131227900183125e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 211 -4.0709539935576106e-01 -6.5139687228912890e-01 7.2959229426733663e-01 1.0685641067146894e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 111 -3.4355344756606970e-01 -8.4077176478701051e-03 5.4078588159552210e-01 6.5480426936881264e-01 1.3497999999999999e-01 2 0 0 -105 0 V -50 0 0 0 0 0 0 2 0 P 229 311 -2.0443972141153312e-02 -8.5008228305830857e-01 5.4843587079910483e-01 1.1276148177661143e+00 4.9767000000000000e-01 2 0 0 -106 0 P 230 111 -3.7958486696833099e-01 -6.0639043235296552e-01 -5.8711493748247259e-02 7.3038391793544610e-01 1.3497999999999999e-01 2 0 0 -107 0 V -51 0 0 0 0 0 0 2 0 P 231 -321 -7.8747984742571886e-02 1.6262723635839912e-01 1.0070500929050263e+00 1.1359752254017730e+00 4.9359999999999998e-01 1 0 0 0 0 P 232 211 5.7938837581137152e-02 -1.8862924158637723e-01 2.5893022465331006e-01 3.5420692514506102e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 1 0 P 233 310 -3.1462534109441198e-01 -9.8153700886658612e-01 4.7142724324584568e+00 4.8512311840780500e+00 4.9767000000000000e-01 2 0 0 -108 0 V -53 0 0 0 0 0 0 1 0 P 234 310 -8.7366490857108195e-02 3.8888915712568800e-01 1.2865224198828235e+01 1.2881014587184902e+01 4.9767000000000000e-01 2 0 0 -109 0 V -54 0 0 0 0 0 0 2 0 P 235 -211 -9.2600732370892624e-01 -6.2857742405147587e-01 5.8868270660503148e+00 5.9938978830200567e+00 1.3957000000000000e-01 1 0 0 0 0 P 236 211 -8.4999645645347799e-01 -6.0576299172247106e-01 3.0253437315018998e+00 3.2033774764710241e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 237 -211 7.2912454697444784e-01 2.8993763778769310e-01 1.0391633381715193e+01 1.0422149997178325e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 8.2143031202639161e-01 1.0472383764499773e+00 9.9228695428043796e+00 1.0012705714393096e+01 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 239 211 4.2923986057713626e-01 1.2014943606862034e-01 2.4554258863566297e+01 2.4558700919812921e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 -211 -1.8665687913783724e-01 -5.8094180809923741e-02 2.8500331406439173e+01 2.8501343578612861e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 241 211 4.0664503354587977e-01 -2.7869986663605689e-01 1.9314810392362766e+01 1.9321604852516657e+01 1.3957000000000000e-01 1 0 0 0 0 P 242 111 -3.0247876692039649e-01 -1.3925388521347484e-01 6.9193975010857516e+00 6.9287204033224254e+00 1.3497999999999999e-01 2 0 0 -110 0 V -58 0 0 0 0 0 0 2 0 P 243 -211 2.6688964178781305e-01 4.1088603597866891e-01 1.3743308626098194e+01 1.3752747696098439e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 3.4491530476104204e-01 -1.2645242451355129e-01 2.7218246690830977e+01 2.7221060400110339e+01 1.3497999999999999e-01 2 0 0 -111 0 V -59 0 -1.3385484981019499e-04 -1.7454114189681500e-05 4.6227210704158674e-03 4.6247765452297656e-03 0 2 0 P 245 22 -4.7269317222873343e-02 8.4895140007732132e-03 8.3986948476437073e-01 8.4124147046912479e-01 0 1 0 0 0 0 P 246 22 -5.9709029187563689e-01 -9.2511319802891623e-02 2.1413300617987812e+01 2.1421823417189792e+01 0 1 0 0 0 0 V -60 0 1.7123362866560047e-04 1.7103921705349594e-04 1.9784276272952757e-03 1.9935833018792102e-03 0 2 0 P 247 22 1.6704927733096964e-01 1.5033502474873400e-01 1.3914249647827124e+00 1.4094571697442859e+00 0 1 0 0 0 0 P 248 22 4.0664572269653287e-01 4.2270862559541006e-01 5.2370279071243955e+00 5.2697727300083690e+00 0 1 0 0 0 0 V -61 0 0 0 0 0 0 1 0 P 249 310 8.1974923491263940e-01 2.4986749022793978e-01 1.3963863404542149e+00 1.7123062843778218e+00 4.9767000000000000e-01 2 0 0 -112 0 V -62 0 0 0 0 0 0 2 0 P 250 -311 -3.1221031327572391e-01 2.2527998440772714e-02 3.4095619635922367e+00 3.4598802006578815e+00 4.9767000000000000e-01 2 0 0 -113 0 P 251 -211 -3.9056725362049467e-02 4.6362308393073121e-01 3.1483623671625405e+00 3.1856140964678636e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 1.6877372167279905e-05 4.7287108948817554e-06 1.3812724747334362e-04 1.3946045566550196e-04 0 2 0 P 252 22 1.3443926370867360e-01 9.0523854789671565e-02 8.8536573902916516e-01 9.0007831645872372e-01 0 1 0 0 0 0 P 253 22 1.5285865689055536e-01 -1.0028574259669354e-02 1.4659286795487043e+00 1.4739108639302008e+00 0 1 0 0 0 0 V -64 0 -4.0144146054982250e-05 -1.8786504221878632e-05 1.3457692957117212e-04 1.4301176857766485e-04 0 2 0 P 254 22 -1.2761183506344909e-01 -2.3010789239934173e-02 5.6480921576519971e-01 5.7950300006385236e-01 0 1 0 0 0 0 P 255 22 -1.5148881551809837e-01 -1.0760166776184009e-01 3.7083177520612620e-01 4.1478088870478669e-01 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 256 211 1.3472767425707621e-01 2.8193707722283662e-01 5.2955406954880246e-01 6.3051356781545509e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 3.3592094742824263e-01 -8.9494695700139848e-02 2.6719104244840670e+00 2.6978096857165772e+00 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 3 0 P 258 -211 1.7362497751366079e-01 1.0490181679726078e-01 1.6518321956883161e-01 2.9650515157600571e-01 1.3957000000000000e-01 1 0 0 0 0 P 259 211 1.8471415488291434e-01 -1.0771935259267149e-01 1.8422242212364168e-01 3.1486578672538362e-01 1.3957000000000000e-01 1 0 0 0 0 P 260 111 1.5994587376343333e-01 1.8657127374222918e-01 1.0432176143574259e+00 1.0802379895307075e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 261 2212 5.1943678139609062e-01 2.0226473550875719e+00 3.0983821275318790e-01 2.3102526277210398e+00 9.3827000000000005e-01 1 0 0 0 0 P 262 211 4.2422354662336698e-01 1.1079920411439408e+00 -4.2565968400686299e-02 1.1953675699607684e+00 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 263 -211 5.4445546176481585e-01 7.9259779160797697e-02 -9.6296851747232726e-01 1.1178112599992045e+00 1.3957000000000000e-01 1 0 0 0 0 P 264 111 1.1934265287704168e-01 5.3741945024204069e-02 8.4247169043955378e-02 2.0602924875520812e-01 1.3497999999999999e-01 2 0 0 -116 0 V -69 0 -2.9399268714407508e-06 1.4649171372216837e-04 -7.0990583671462463e-05 1.6301883246807558e-04 0 2 0 P 265 22 -3.8461729124077207e-02 2.1331911769931278e+00 -9.8427330936451596e-01 2.3496335564798003e+00 0 1 0 0 0 0 P 266 22 -1.0014806300988156e-02 2.8231473872071655e-01 -1.8629238654656061e-01 3.3838847694536811e-01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 267 311 4.8691118284880786e-01 9.9239390687418694e-01 -6.7811418772000898e-01 1.3890437166883571e+00 4.9767000000000000e-01 2 0 0 -117 0 P 268 111 4.4379379234917793e-01 8.6462091546850162e-01 -5.5804499112648322e-02 9.8277973122896090e-01 1.3497999999999999e-01 2 0 0 -118 0 V -71 0 0 0 0 0 0 1 0 P 269 310 7.2361711315373856e-01 1.7548239152304139e+00 -2.2261752292782107e+00 2.9675849238506120e+00 4.9767000000000000e-01 2 0 0 -119 0 V -72 0 0 0 0 0 0 2 0 P 270 2112 1.0922010376843232e+00 1.1899335093587393e+00 -1.6088975390767664e+00 2.4658037106713890e+00 9.3957000000000002e-01 1 0 0 0 0 P 271 -211 2.3357778186181866e-01 -1.3400636760020701e-03 -3.8707719690356701e-01 4.7314788091342636e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 3 0 P 272 -211 -4.9637742031187004e-01 -4.2408769760903887e-02 -8.0142009188089003e-01 9.5390932258704464e-01 1.3957000000000000e-01 1 0 0 0 0 P 273 211 3.3970641401937583e-02 7.1471348740707000e-02 -3.4589152929922373e-01 3.8129108710935083e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 111 -1.8005758350927584e-01 2.0752740305074266e-01 -1.9871824973533223e-01 3.6496150423580170e-01 1.3497999999999999e-01 2 0 0 -120 0 V -74 0 0 0 0 0 0 2 0 P 275 211 8.2069252215246163e-02 -8.6971764902138204e-02 -2.6350712564506900e+00 2.6414730287326389e+00 1.3957000000000000e-01 1 0 0 0 0 P 276 -211 1.1742617220781432e-01 -1.7124616714392482e-01 -1.0225061281883279e+00 1.0526693321093521e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 277 211 -3.3871688612762796e-01 -1.7373225465826510e+00 -3.8194791729286206e+00 4.2119971150450617e+00 1.3957000000000000e-01 1 0 0 0 0 P 278 111 -5.8329006382480605e-02 -1.6401660651306560e-01 -1.1504768370238767e-01 2.4851416483354402e-01 1.3497999999999999e-01 2 0 0 -121 0 V -76 0 0 0 0 0 0 3 0 P 279 -211 -1.7377574135333543e-01 -4.3822694684460584e-01 -1.9274528090766443e+00 1.9891694199693231e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 211 1.7298080735335972e-01 -2.8214175669157759e-01 -2.9615075959660739e+00 2.9832085673727851e+00 1.3957000000000000e-01 1 0 0 0 0 P 281 111 2.1013061040434255e-01 -3.6965545139350642e-01 -2.0087878591325055e+00 2.0577289154725880e+00 1.3497999999999999e-01 2 0 0 -122 0 V -77 0 0 0 0 0 0 2 0 P 282 211 8.7230843689000370e-01 -8.1305026499562016e-01 -5.6112400455106028e+00 5.7382460191003277e+00 1.3957000000000000e-01 1 0 0 0 0 P 283 -211 -1.1473424714511549e-01 -4.0629696589331360e-01 -2.1902564968019966e+00 2.2349372426637450e+00 1.3957000000000000e-01 1 0 0 0 0 V -78 0 -5.0245685917996024e-05 -3.6345372728693598e-05 -3.4810215087725869e-04 3.5369350877878915e-04 0 2 0 P 284 22 -7.6327274663288625e-01 -5.3500534093356855e-01 -5.1109965403130850e+00 5.1952961066403400e+00 0 1 0 0 0 0 P 285 22 -2.8135034946909217e-03 -1.9145523852247374e-02 -1.9644959271682119e-01 1.9740037832814944e-01 0 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 286 -211 -1.3872066164543045e-01 -4.5318188355626565e-01 -1.2290963743337440e+00 1.3246791777073064e+00 1.3957000000000000e-01 1 0 0 0 0 P 287 211 6.1725575055105682e-02 -1.4298758159006824e+00 -7.6264652041757808e+00 7.7608508677153090e+00 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 288 3122 -4.1600122177419457e-01 -6.0178925456756149e-01 -2.0306496183137607e+01 2.0350276077282413e+01 1.1156800000000000e+00 2 0 0 -123 0 P 289 111 1.5424418188441721e-01 -1.4594136964164797e-01 -5.4813746030974402e+00 5.4871465527084018e+00 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 1 0 P 290 130 -1.5999775851189213e+00 -4.7509681211811738e-01 -1.5869502181816205e+01 1.5964786881801368e+01 4.9767000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 3 0 P 291 211 -7.2810009160099654e-01 -3.1978251829773990e-01 -1.2302633131589756e+01 1.2329097791719725e+01 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -1.4535784226313584e+00 -4.9139029423136193e-01 -2.9526525793886165e+01 2.9566696803903024e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 111 -5.7405691123903868e-01 -2.1774881669353030e-01 -1.0317329314166786e+01 1.0336462628088878e+01 1.3497999999999999e-01 2 0 0 -125 0 V -83 0 0 0 0 0 0 2 0 P 294 -211 2.0902699995753898e-01 5.9492718633720554e-01 -2.9532679931471769e+01 2.9539740932570986e+01 1.3957000000000000e-01 1 0 0 0 0 P 295 111 -4.2229926751518987e-01 4.2677790563057039e-02 -1.8086205404713354e+01 1.8091688799198202e+01 1.3497999999999999e-01 2 0 0 -126 0 V -84 0 2.3578098559826784e-04 -6.9925056236717640e-05 -1.1858253596131570e-02 1.1860824801235443e-02 0 2 0 P 296 22 7.8744756649021463e-01 -1.7109488899448988e-01 -4.0192097391943477e+01 4.0200174625173972e+01 0 1 0 0 0 0 P 297 22 6.2957992548167108e-01 -2.4914988525518134e-01 -3.1075190383005740e+01 3.1082565915444377e+01 0 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 298 22 1.8973044064325758e-03 -1.5998578914150738e-01 -3.5579610450929630e+02 3.5579614048362379e+02 0 1 0 0 0 0 P 299 -211 2.1635224593039726e-01 4.3443661428330713e-02 -3.4577565848656536e+02 3.4577575706988023e+02 1.3957000000000000e-01 1 0 0 0 0 P 300 211 -6.7604646432272708e-03 -1.4761417426046602e-01 -2.4572446379267191e+02 2.4572454786127770e+02 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.2556320480302481e-05 -3.8391137419063888e-06 -3.5614867072745138e-02 3.5614876369024502e-02 0 2 0 P 301 22 1.8365432509796883e-02 -2.9851654078264022e-02 -1.9086155198039940e+01 1.9086187378678577e+01 0 1 0 0 0 0 P 302 22 2.4020880414170054e-01 -1.4158001933610760e-02 -3.8918464742783812e+02 3.8918472181503893e+02 0 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 303 -2212 3.3976167671203572e-01 -2.8108219023662684e-01 -8.1963292778227230e+02 8.1963358343879929e+02 9.3827000000000005e-01 1 0 0 0 0 P 304 111 1.5132145326233129e-02 -1.0927773961680087e-01 -4.3220156162705869e+01 4.3220507735741378e+01 1.3497999999999999e-01 2 0 0 -127 0 V -88 0 7.2129896700907747e-01 -6.7461782295036632e-02 -3.2873704428548950e-01 8.3784048449174076e-01 0 5 0 P 305 -311 8.0116651966425545e-01 1.1717848870174985e-02 -6.2831389967878692e-01 1.1333397044322786e+00 4.9767000000000000e-01 2 0 0 -128 0 P 306 211 8.9732766669187136e-01 4.3230983131749910e-02 -3.4942776892933464e-01 9.7398429654288998e-01 1.3957000000000000e-01 1 0 0 0 0 P 307 -211 1.4560157750356892e-01 1.2844349316545144e-02 -1.2792370077452840e-02 2.0250487972661729e-01 1.3957000000000000e-01 1 0 0 0 0 P 308 111 2.6064127292218386e+00 -2.1076296648707690e-01 -1.0645894949573826e+00 2.8265489092293592e+00 1.3497999999999999e-01 2 0 0 -129 0 P 309 111 6.6613012333394916e-01 -3.3558013131651521e-01 -2.7682026826221723e-01 8.0696494785590145e-01 1.3497999999999999e-01 2 0 0 -130 0 V -89 0 0 0 0 0 0 1 0 P 310 310 1.6459098964223262e-01 1.1041660821964265e-01 -4.0695800164667778e-01 6.7273491454390633e-01 4.9767000000000000e-01 2 0 0 -131 0 V -90 0 4.0068842343716282e+00 3.4400299268094536e+00 2.7399487602071171e-01 9.5838452619680705e+00 0 2 0 P 311 -211 2.8004244967632264e-01 1.0619255906912493e-01 1.6043134624837588e-01 3.6731272096325707e-01 1.3957000000000000e-01 1 0 0 0 0 P 312 211 -3.0557067997168234e-02 1.0799810107415758e-01 -1.4337127856891124e-01 2.2941759448370971e-01 1.3957000000000000e-01 1 0 0 0 0 V -91 0 4.6108070372521591e-05 9.4076121704257859e-06 1.1245193942599366e-05 4.9946951881754882e-05 0 2 0 P 313 22 1.6944239138560679e-01 -2.8495325647956590e-02 5.1972081270851102e-02 1.7950990171542125e-01 0 1 0 0 0 0 P 314 22 3.3242335356001385e-01 1.3089298080734380e-01 7.0426830448168456e-02 3.6414035324815719e-01 0 1 0 0 0 0 V -92 0 1.7386910175112678e-04 -3.3167969502087643e-05 7.3476438624650692e-05 1.9540042132041267e-04 0 2 0 P 315 22 3.5653718713366733e-01 -2.8787941856980706e-02 2.0587425669618767e-01 4.1271263728623148e-01 0 1 0 0 0 0 P 316 22 2.5936915549082157e-01 -8.8704830479027552e-02 5.4405483215035876e-02 2.7946531515412881e-01 0 1 0 0 0 0 V -93 0 4.1143893102513964e-07 -5.0340531658426338e-05 2.9196187292536728e-04 2.9866766054723330e-04 0 2 0 P 317 22 -3.7984196287716578e-02 -1.6802891603750005e-02 8.7611506206335218e-02 9.6958302138671237e-02 0 1 0 0 0 0 P 318 22 3.9454712103551885e-02 -1.6311821551372596e-01 9.5588369899440440e-01 9.7050392711352862e-01 0 1 0 0 0 0 V -94 0 2.0572090225822118e-07 2.6387964413313636e-07 5.5522430803586994e-06 5.5629860220985898e-06 0 2 0 P 319 22 2.7664292064412765e-01 2.9094328860961149e-01 7.1739664131666618e+00 7.1851912570211258e+00 0 1 0 0 0 0 P 320 22 4.4926273419015138e-02 1.2153577191410114e-01 1.5049296688295828e+00 1.5104974750133131e+00 0 1 0 0 0 0 V -95 0 1.4057591497800752e+02 -2.7036921876461713e+02 -8.6635155210777532e+02 9.1859666005644328e+02 0 2 0 P 321 -211 1.6902175829719022e+00 -2.9168737735962527e+00 -9.9815588968803919e+00 1.0536412382100139e+01 1.3957000000000000e-01 1 0 0 0 0 P 322 211 1.8356364046473028e+00 -3.8643902022409407e+00 -1.1747832479709050e+01 1.2503364363300349e+01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 -1.8180698286844171e-06 -3.0888692290277025e-05 -5.1335090522299924e-05 6.0014723582081729e-05 0 2 0 P 323 22 -5.3751867457461966e-02 -5.8748976915145978e-01 -1.1032719869439109e+00 1.2510965467492769e+00 0 1 0 0 0 0 P 324 22 -2.7783067178001341e-02 -7.9777468391143880e-01 -1.1989516043634056e+00 1.4403823432399463e+00 0 1 0 0 0 0 V -97 0 1.2463884645909804e-04 -3.7647319223801923e-04 -1.3905566124297803e-03 1.4476078668816355e-03 0 2 0 P 325 22 1.4387597489060386e-01 -2.4906494648071731e-01 -8.9683105376261574e-01 9.4182778824428814e-01 0 1 0 0 0 0 P 326 22 1.0273510089612875e-01 -4.9582688764862753e-01 -1.8545315581033315e+00 1.9224167351208301e+00 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 327 310 -2.6833755622451283e-01 4.8012530784013963e-01 -1.0995406282923776e+00 1.3263447430719997e+00 4.9767000000000000e-01 2 0 0 -132 0 V -99 0 -9.2784924781165760e-05 3.1785538879841910e-04 -7.2022753961348875e-05 3.3905461571931281e-04 0 2 0 P 328 22 -7.0498435768593182e-01 2.2768169873746626e+00 -5.7283799061125018e-01 2.4513347184885244e+00 0 1 0 0 0 0 P 329 22 -3.9487114809610552e-01 1.4909825796019223e+00 -2.8090654464383724e-01 1.5677566019949905e+00 0 1 0 0 0 0 V -100 0 -1.1031584776772241e-04 -1.4115015327504908e-04 7.6856010630717467e-02 7.6856227999681406e-02 0 2 0 P 330 22 -4.1850253050060689e-02 -1.1184148046365024e-01 6.8150578090931205e+01 6.8150682711830171e+01 0 1 0 0 0 0 P 331 22 -3.6810134562162916e-01 -4.1269540302836261e-01 2.1745883400307443e+02 2.1745953716053251e+02 0 1 0 0 0 0 V -101 0 1.5688980401895128e-06 -2.3329791845085598e-05 7.6009824512635776e-04 7.6055323942640933e-04 0 2 0 P 332 22 -1.8942188582262959e-02 -7.8484502953695495e-02 4.5482643998273753e+00 4.5489809490092634e+00 0 1 0 0 0 0 P 333 22 3.6519802409553076e-02 -1.8289772917302799e-01 3.9677213949015999e+00 3.9721025091083133e+00 0 1 0 0 0 0 V -102 0 2.9602452988352340e-06 1.2156144166026722e-05 3.1088428121613171e-05 3.8427884408622024e-05 0 2 0 P 334 22 7.1783935944653238e-02 6.5910743965862911e-02 9.3520266012330461e-02 1.3506738979063990e-01 0 1 0 0 0 0 P 335 22 -5.0537128209533926e-02 2.1338531625449429e-02 1.2961322071151968e-01 1.4074416948069388e-01 0 1 0 0 0 0 V -103 0 0 0 0 0 0 1 0 P 336 310 9.1377179303868225e-02 6.5631430027746862e-01 6.3228495863129286e-01 1.0423809032487166e+00 4.9767000000000000e-01 2 0 0 -133 0 V -104 0 4.4208860838286683e-06 8.2219474056248951e-06 4.4837603862690865e-06 1.8760980126482179e-05 0 2 0 P 337 22 -8.9907383252011142e-03 8.9597542940612770e-02 5.8574804160157395e-02 1.0742234757734524e-01 0 1 0 0 0 0 P 338 22 4.7135862553630191e-02 -1.8655383554420712e-02 -1.9887176001093559e-02 5.4454684312148345e-02 0 1 0 0 0 0 V -105 0 -7.9247210719026428e-06 -1.9394017927260177e-07 1.2474266527170596e-05 1.5104319948472958e-05 0 2 0 P 339 22 -1.1242092359986973e-01 -1.6210444380462690e-02 3.0076542227270808e-01 3.2149818320628232e-01 0 1 0 0 0 0 P 340 22 -2.3113252396619999e-01 7.8027267325925858e-03 2.4002045932281402e-01 3.3330608616253043e-01 0 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 341 310 -2.0443972141153312e-02 -8.5008228305830857e-01 5.4843587079910483e-01 1.1276148177661143e+00 4.9767000000000000e-01 2 0 0 -134 0 V -107 0 -1.1223517545222406e-04 -1.7929675940785923e-04 -1.7359740535827139e-05 2.1595899707931943e-04 0 2 0 P 342 22 -3.3096007719591147e-01 -5.4151616549291592e-01 -7.8831591261554149e-03 6.3469400059042891e-01 0 1 0 0 0 0 P 343 22 -4.8624789772419554e-02 -6.4874266860049559e-02 -5.0828334622091839e-02 9.5689917345017458e-02 0 1 0 0 0 0 V -108 0 -4.3643996227270576e-01 -1.3615622111966166e+00 6.5395141898249616e+00 6.7294997522779125e+00 0 2 0 P 344 211 -6.8664159381003162e-02 -4.7857253066335936e-01 1.4134914485213395e+00 1.5003947126779626e+00 1.3957000000000000e-01 1 0 0 0 0 P 345 -211 -2.4596118171340883e-01 -5.0296447820322676e-01 3.3007809839371176e+00 3.3508364714000871e+00 1.3957000000000000e-01 1 0 0 0 0 V -109 0 -5.5878293866937536e+00 2.4872765737010067e+01 8.2284039497698461e+02 8.2385032447307731e+02 0 2 0 P 346 211 -2.3856055082584277e-02 3.2581050874654310e-01 1.1538797724677183e+01 1.1544264996737086e+01 1.3957000000000000e-01 1 0 0 0 0 P 347 -211 -6.3510435774523921e-02 6.3078648379144925e-02 1.3264264741510527e+00 1.3367495904478157e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 -1.9516686443983416e-05 -8.9850089032301746e-06 4.4645682996159708e-04 4.4705836692749253e-04 0 2 0 P 348 22 -5.7909571333923389e-02 2.5609506303761194e-02 1.0341311657782251e+00 1.0360678709906181e+00 0 1 0 0 0 0 P 349 22 -2.4456919558647308e-01 -1.6486339151723606e-01 5.8852663353075272e+00 5.8926525323318080e+00 0 1 0 0 0 0 V -111 0 1.6385879863890249e-05 -6.0073711081397537e-06 1.2930563365133097e-03 1.2931900073060720e-03 0 2 0 P 350 22 3.5239239825362523e-01 -1.2532909324753100e-01 2.4969668507975861e+01 2.4972469505080230e+01 0 1 0 0 0 0 P 351 22 -7.4770934925831815e-03 -1.1233312660202824e-03 2.2485781828551166e+00 2.2485908950300950e+00 0 1 0 0 0 0 V -112 0 2.0045312006183900e+00 6.1100048508797122e-01 3.4145807868379499e+00 4.1870992077425688e+00 0 2 0 P 352 -211 5.7355076260662863e-01 5.4957818370511155e-02 5.9301070002384348e-01 8.3852389013638740e-01 1.3957000000000000e-01 1 0 0 0 0 P 353 211 2.4619847230601077e-01 1.9490967185742861e-01 8.0337564043037146e-01 8.7378239424143445e-01 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 1 0 P 354 130 -3.1221031327572391e-01 2.2527998440772714e-02 3.4095619635922367e+00 3.4598802006578815e+00 4.9767000000000000e-01 1 0 0 0 0 V -114 0 1.1439340683324427e-05 -3.0476227258290847e-06 9.0988352631770047e-05 9.1870317495686059e-05 0 2 0 P 355 22 3.3186013387286617e-01 -1.0542598520820864e-01 2.6271560489747330e+00 2.6501310708106049e+00 0 1 0 0 0 0 P 356 22 4.0608135553764826e-03 1.5931289508068797e-02 4.4754375509334185e-02 4.7678614905971382e-02 0 1 0 0 0 0 V -115 0 7.6810104539293022e-06 8.9596303443033332e-06 5.0097981354955657e-05 5.1875794574038327e-05 0 2 0 P 357 22 4.7429758284694866e-03 1.6728204044830646e-02 6.9310669223796809e-03 1.8718128083690333e-02 0 1 0 0 0 0 P 358 22 1.5520289793496383e-01 1.6984306969739854e-01 1.0362865474350462e+00 1.0615198614470169e+00 0 1 0 0 0 0 V -116 0 3.0169834911170426e-06 1.3585969224732600e-06 2.1297692991694511e-06 5.2084215257233162e-06 0 2 0 P 359 22 4.4768231500834546e-02 5.0019565480993469e-02 1.0844398660956438e-01 1.2753920853759088e-01 0 1 0 0 0 0 P 360 22 7.4574421376207151e-02 3.7223795432105990e-03 -2.4196817565609000e-02 7.8490040217617296e-02 0 1 0 0 0 0 V -117 0 0 0 0 0 0 1 0 P 361 310 4.8691118284880786e-01 9.9239390687418694e-01 -6.7811418772000898e-01 1.3890437166883571e+00 4.9767000000000000e-01 2 0 0 -135 0 V -118 0 1.4850303688936503e-05 2.8932092768911690e-05 -1.8673396818939312e-06 3.2885943245908261e-05 0 2 0 P 362 22 2.8511029888591555e-01 4.9532380199252563e-01 2.7943820997926305e-02 5.7220137057080789e-01 0 1 0 0 0 0 P 363 22 1.5868349346326235e-01 3.6929711347597594e-01 -8.3748320110574620e-02 4.1057836065815295e-01 0 1 0 0 0 0 V -119 0 6.4449371691557189e+01 1.5629439479810938e+02 -1.9827556893586947e+02 2.6430964705898953e+02 0 2 0 P 364 -211 1.1169666487423414e-01 5.9315556591356833e-01 -9.2904940889548282e-01 1.1166567330148145e+00 1.3957000000000000e-01 1 0 0 0 0 P 365 211 6.1192044827950443e-01 1.1616683493168456e+00 -1.2971258203827281e+00 1.8509281908357980e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 -1.8013662837654292e-04 2.0761850710594943e-04 -1.9880548659238504e-04 3.6512172150128796e-04 0 2 0 P 366 22 1.1919984690006576e-02 4.2409793109928574e-02 -1.6303779091393742e-03 4.4083270282087153e-02 0 1 0 0 0 0 P 367 22 -1.9197756819928241e-01 1.6511760994081409e-01 -1.9708787182619283e-01 3.2087823395371462e-01 0 1 0 0 0 0 V -121 0 -2.3328916428517963e-05 -6.5599089433172287e-05 -4.6013775389695371e-05 9.9394221541994457e-05 0 2 0 P 368 22 -1.7491902988521199e-02 2.1899179756701238e-02 -4.4797307404249405e-03 2.8383247377332613e-02 0 1 0 0 0 0 P 369 22 -4.0837103393959406e-02 -1.8591578626976682e-01 -1.1056795296196273e-01 2.2013091745621138e-01 0 1 0 0 0 0 V -122 0 4.7899615190908322e-06 -8.4263562747469923e-06 -4.5790646716089813e-05 4.6906266073600647e-05 0 2 0 P 370 22 2.2179546629739877e-01 -3.6187328368609756e-01 -1.8381360856975260e+00 1.8865019936006591e+00 0 1 0 0 0 0 P 371 22 -1.1664855893056204e-02 -7.7821677074088533e-03 -1.7065177343497959e-01 1.7122692187192881e-01 0 1 0 0 0 0 V -123 0 -7.6284707501615614e+00 -1.1035380392998032e+01 -3.7237273369215347e+02 3.7317555258894532e+02 0 2 0 P 372 2212 -3.1282134385150157e-01 -5.4151195489703918e-01 -1.5888666473773389e+01 1.5928627225789922e+01 9.3827000000000005e-01 1 0 0 0 0 P 373 -211 -1.0317987792269301e-01 -6.0277299670522359e-02 -4.4178297093642174e+00 4.4216488514924883e+00 1.3957000000000000e-01 1 0 0 0 0 V -124 0 8.5434872876744120e-05 -8.0835997899326710e-05 -3.0360985852702325e-03 3.0392956315071725e-03 0 2 0 P 374 22 -2.0888318129458454e-03 -6.7773584733260450e-02 -2.2762128657207059e+00 2.2772225697279587e+00 0 1 0 0 0 0 P 375 22 1.5633301369736305e-01 -7.8167784908387522e-02 -3.2051617373767343e+00 3.2099239829804431e+00 0 1 0 0 0 0 V -125 0 -2.5198248636683210e-04 -9.5580920915041100e-05 -4.5287953900560087e-03 4.5371939650407072e-03 0 2 0 P 376 22 -3.3526184838084788e-01 -1.7468277077128766e-01 -7.0554032888972165e+00 7.0655240532012726e+00 0 1 0 0 0 0 P 377 22 -2.3879506285819074e-01 -4.3066045922242634e-02 -3.2619260252695694e+00 3.2709385748876048e+00 0 1 0 0 0 0 V -126 0 -6.2626270493728641e-06 6.3290444987110293e-07 -2.6821538160493584e-04 2.6829669942209729e-04 0 2 0 P 378 22 -2.1006847416551833e-01 -5.7560363540902970e-03 -1.1410748608369813e+01 1.1412683545039108e+01 0 1 0 0 0 0 P 379 22 -2.1223079334967151e-01 4.8433826917147330e-02 -6.6754567963435401e+00 6.6790052541590983e+00 0 1 0 0 0 0 V -127 0 6.4797435379968975e-06 -4.6793875677450918e-05 -1.8507324742712133e-02 1.8507475289977961e-02 0 2 0 P 380 22 3.2439934454780352e-03 5.8472019211546532e-03 -2.4119763993259859e+01 2.4119764920160783e+01 0 1 0 0 0 0 P 381 22 1.1888151880755093e-02 -1.1512494153795552e-01 -1.9100392169446007e+01 1.9100742815580595e+01 0 1 0 0 0 0 V -128 0 7.2129896700907747e-01 -6.7461782295036632e-02 -3.2873704428548950e-01 8.3784048449174076e-01 0 1 0 P 382 130 8.0116651966425545e-01 1.1717848870174985e-02 -6.2831389967878692e-01 1.1333397044322786e+00 4.9767000000000000e-01 1 0 0 0 0 V -129 0 7.2155146401128045e-01 -6.7482200019603714e-02 -3.2884017670693594e-01 8.3811430725133629e-01 0 2 0 P 383 22 9.8418155832219434e-01 -1.4122445529575131e-02 -3.9584485597210650e-01 1.0608986441733330e+00 0 1 0 0 0 0 P 384 22 1.6222311708996444e+00 -1.9664052095750176e-01 -6.6874463898527625e-01 1.7656502650560266e+00 0 1 0 0 0 0 V -130 0 7.2132164343298655e-01 -6.7473206125076193e-02 -3.2874646781030825e-01 8.3786795521945046e-01 0 2 0 P 385 22 5.6829844829620502e-01 -2.4577522916591482e-01 -2.6547551396892599e-01 6.7368081323761764e-01 0 1 0 0 0 0 P 386 22 9.7831675037744079e-02 -8.9804902150600358e-02 -1.1344754293291249e-02 1.3328413461828389e-01 0 1 0 0 0 0 V -131 0 1.0857368783919750e+01 7.2837148492522008e+00 -2.6845291549977134e+01 4.4377466086683960e+01 0 2 0 P 387 211 2.9904608615438460e-01 7.9066717999959471e-02 -2.6014309956675841e-01 4.2759130567837916e-01 1.3957000000000000e-01 1 0 0 0 0 P 388 -211 -1.3445509651215196e-01 3.1349890219683180e-02 -1.4681490207991940e-01 2.4514360886552725e-01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 -6.4154839973325352e+01 1.1478960576750572e+02 -2.6288102956876799e+02 3.1710594647456321e+02 0 2 0 P 389 111 -2.4108088450219278e-01 4.5498000338207140e-01 -1.0511314119235609e+00 1.1782290277710561e+00 1.3497999999999999e-01 2 0 0 -136 0 P 390 111 -2.7256671722320047e-02 2.5145304458068195e-02 -4.8409216368816642e-02 1.4811571530094356e-01 1.3497999999999999e-01 2 0 0 -137 0 V -133 0 2.1881087408674631e+00 1.5716036193433350e+01 1.5140631996303993e+01 2.4960748220593025e+01 0 2 0 P 391 211 -6.1769028446974537e-02 2.5845287605069439e-01 4.5209581879515966e-02 3.0354076037309952e-01 1.3957000000000000e-01 1 0 0 0 0 P 392 -211 1.5314620775084276e-01 3.9786142422677423e-01 5.8707537675177690e-01 7.3884014287561706e-01 1.3957000000000000e-01 1 0 0 0 0 V -134 0 -1.3468988446806331e+00 -5.6005498199143943e+01 3.6132295410135470e+01 7.4290019806701949e+01 0 2 0 P 393 211 7.3599951831171712e-02 -5.3772322020761334e-02 5.3644101910975163e-02 1.7511678987147503e-01 1.3957000000000000e-01 1 0 0 0 0 P 394 -211 -9.4043923972325028e-02 -7.9630996103754725e-01 4.9479176888812970e-01 9.5249802789463922e-01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.9526956469495580e+01 1.2132436258592907e+02 -8.2902334461869415e+01 1.6981648351914953e+02 0 2 0 P 395 111 3.3744553766218405e-02 4.7117183706692600e-01 -1.6555648815070576e-01 5.1843046411519633e-01 1.3497999999999999e-01 2 0 0 -138 0 P 396 111 4.5316662908258942e-01 5.2122206980726093e-01 -5.1255769956930330e-01 8.7061325257316091e-01 1.3497999999999999e-01 2 0 0 -139 0 V -136 0 -6.4154850884836520e+01 1.1478962636025989e+02 -2.6288107714380556e+02 3.1710599980213925e+02 0 2 0 P 397 22 -5.9254694938702598e-02 2.5154675003279559e-01 -5.4786379046836420e-01 6.0575706288140307e-01 0 1 0 0 0 0 P 398 22 -1.8182618956349020e-01 2.0343325334927584e-01 -5.0326762145519666e-01 5.7247196488965302e-01 0 1 0 0 0 0 V -137 0 -6.4154841369426961e+01 1.1478960705546194e+02 -2.6288103204831447e+02 3.1710595406113106e+02 0 2 0 P 399 22 -7.3815559852608681e-02 9.0789820172653447e-03 -6.2216272898952034e-02 9.6964062436867601e-02 0 1 0 0 0 0 P 400 22 4.6558888130288641e-02 1.6066322440802850e-02 1.3807056530135389e-02 5.1151652864075983e-02 0 1 0 0 0 0 V -138 0 5.9526967489023562e+01 1.2132451645049873e+02 -8.2902388525537489e+01 1.6981665281636552e+02 0 2 0 P 401 22 4.8144039525000480e-02 8.0190052380189891e-02 -6.6726140159132516e-02 1.1489417227631085e-01 0 1 0 0 0 0 P 402 22 -1.4399485758782070e-02 3.9098178468673611e-01 -9.8830347991573225e-02 4.0353629183888540e-01 0 1 0 0 0 0 V -139 0 5.9527047853456899e+01 1.2132446769370711e+02 -8.2902437822421547e+01 1.6981665908390360e+02 0 2 0 P 403 22 1.0813522609028890e-01 2.1613903699217829e-01 -1.4979429126718971e-01 2.8433719441842947e-01 0 1 0 0 0 0 P 404 22 3.4503140299230051e-01 3.0508303281508264e-01 -3.6276340830211362e-01 5.8627605815473138e-01 0 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testPolarization.cc0000644000175000017500000001322611460340545021454 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testPolarization.cc // // garren@fnal.gov, Oct. 2010 ////////////////////////////////////////////////////////////////////////// #include #include #include #include "HepMC/GenEvent.h" #include "HepMC/IO_GenEvent.h" int main() { // // In this example we will place the following event into HepMC "by hand" // // name status pdg_id parent Px Py Pz Energy Mass // 1 !p+! 3 2212 0,0 0.000 0.000 7000.000 7000.000 0.938 // 2 !p+! 3 2212 0,0 0.000 0.000-7000.000 7000.000 0.938 //========================================================================= // 3 !d! 3 1 1,1 0.750 -1.569 32.191 32.238 0.000 // 4 !u~! 3 -2 2,2 -3.047 -19.000 -54.629 57.920 0.000 // 5 !W-! 3 -24 1,2 1.517 -20.68 -20.605 85.925 80.799 // 6 !gamma! 1 22 1,2 -3.813 0.113 -1.833 4.233 0.000 // 7 !d! 1 1 5,5 -2.445 28.816 6.082 29.552 0.010 // 8 !u~! 1 -2 5,5 3.962 -49.498 -26.687 56.373 0.006 // open an output file const char outfile[] = "testPolarization.cout"; std::ofstream os( outfile ); if( !os ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } // declare several IO_GenEvent instances for comparison HepMC::IO_GenEvent xout1("testPolarization1.dat",std::ios::out); HepMC::IO_GenEvent xout2("testPolarization2.dat",std::ios::out); // output streams for copy test std::ofstream xout4( "testPolarization4.out" ); std::ofstream xout5( "testPolarization5.out" ); // build the graph, which will look like // p7 # // p1 / # // \v1__p3 p5---v4 # // \_v3_/ \ # // / \ p8 # // v2__p4 \ # // / p6 # // p2 # // // define a flow pattern as p1 -> p3 -> p6 // and p2 -> p4 -> p5 // // First create the event container, with Signal Process 20, event number 1 // HepMC::GenEvent* evt = new HepMC::GenEvent( 20, 1 ); // // create vertex 1 and vertex 2, together with their inparticles HepMC::GenVertex* v1 = new HepMC::GenVertex(); evt->add_vertex( v1 ); HepMC::GenParticle* p1 = new HepMC::GenParticle( HepMC::FourVector(0,0,7000,7000), 2212, 3 ); p1->set_flow(1,231); p1->set_polarization(HepMC::Polarization(rand(),rand())); v1->add_particle_in( p1 ); HepMC::GenVertex* v2 = new HepMC::GenVertex(); evt->add_vertex( v2 ); HepMC::GenParticle* p2 = new HepMC::GenParticle( HepMC::FourVector(0,0,-7000,7000), 2212, 3 ); p2->set_flow(1,243); p2->set_polarization(HepMC::Polarization(rand(),rand())); v2->add_particle_in( p2 ); // // create the outgoing particles of v1 and v2 HepMC::GenParticle* p3 = new HepMC::GenParticle( HepMC::FourVector(.750,-1.569,32.191,32.238), 1, 3 ); p3->set_flow(1,231); p3->set_polarization(HepMC::Polarization(rand(),rand())); v1->add_particle_out( p3 ); HepMC::GenParticle* p4 = new HepMC::GenParticle( HepMC::FourVector(-3.047,-19.,-54.629,57.920), -2, 3 ); p4->set_flow(1,243); p4->set_polarization(HepMC::Polarization(rand(),rand())); v2->add_particle_out( p4 ); // // create v3 HepMC::GenVertex* v3 = new HepMC::GenVertex(); evt->add_vertex( v3 ); v3->add_particle_in( p3 ); v3->add_particle_in( p4 ); HepMC::GenParticle* p6 = new HepMC::GenParticle( HepMC::FourVector(-3.813,0.113,-1.833,4.233 ), 22, 1 ); p6->set_flow(1,231); p6->set_polarization(HepMC::Polarization(rand(),rand())); v3->add_particle_out( p6 ); HepMC::GenParticle* p5 = new HepMC::GenParticle( HepMC::FourVector(1.517,-20.68,-20.605,85.925), -24, 3 ); p5->set_flow(1,243); p5->set_polarization(HepMC::Polarization(rand(),rand())); v3->add_particle_out( p5 ); // // create v4 HepMC::GenVertex* v4 = new HepMC::GenVertex(HepMC::FourVector(0.12,-0.3,0.05,0.004)); evt->add_vertex( v4 ); v4->add_particle_in( p5 ); HepMC::GenParticle* p7 = new HepMC::GenParticle( HepMC::FourVector(-2.445,28.816,6.082,29.552), 1,1 ); v4->add_particle_out( p7 ); HepMC::GenParticle* p8 = new HepMC::GenParticle( HepMC::FourVector(3.962,-49.498,-26.687,56.373), -2,1 ); v4->add_particle_out( p8 ); // // tell the event which vertex is the signal process vertex evt->set_signal_process_vertex( v3 ); // the event is complete, we now print it out evt->print( os ); // print each particle so we can see the polarization for ( HepMC::GenEvent::particle_iterator ip = evt->particles_begin(); ip != evt->particles_end(); ++ip ) { (*ip)->print(os); } // write event xout1 << evt; // call the write method directly evt->write(xout4); // make a copy and write it HepMC::GenEvent(*evt).write(xout5); // try changing polarization p2->set_polarization(HepMC::Polarization(rand(),rand())); xout2 << evt; // now clean-up by deleteing all objects from memory // // deleting the event deletes all contained vertices, and all particles // contained in those vertices delete evt; return 0; } hepmc-2.06.09.orig/test/testPolarization.sh.in0000755000175000017500000000127411657245323022117 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ rm -f testPolarization.cout ./testPolarization@EXEEXT@ if [ "$?" -ne 0 ] then exit 1; fi if [ ! -e testPolarization.cout ] then echo "ERROR: testPolarization.cout does not exist" exit 1; fi OS=`uname` case "$OS" in CYGWIN*) cmd2=`@DIFF_Q@ testPolarization4.out testPolarization5.out` cmd3=`@DIFF_Q@ testPolarization1.dat testPolarization2.dat` ;; *) cmd2=`@DIFF_Q@ testPolarization4.out testPolarization5.out` cmd3=`@DIFF_Q@ testPolarization1.dat testPolarization2.dat` esac if [ -n "$cmd2" ] then echo $cmd2 exit 1; fi if [ -z "$cmd3" ] then echo "we expect testPolarization1.dat testPolarization2.dat to differ" exit 1; fi exit 0; hepmc-2.06.09.orig/test/testHepMC.cc.in0000644000175000017500000003751711717265754020370 0ustar sylvestresylvestre//------------------------------------------------------------------- // testHepMC.cc.in // // garren@fnal.gov, March 2006 // based on example_EventSelection // Apply an event selection to the events in testHepMC.input // Events containing a photon of pT > 25 GeV pass the selection // and are written to "testHepMC.out" // Also write events using IO_AsciiParticles //------------------------------------------------------------------- // #include "HepMC/GenEvent.h" #include "HepMC/GenCrossSection.h" #ifndef HEPMC_IO_ASCII_REMOVED #include "HepMC/IO_Ascii.h" #endif #ifdef HEPMC_HAS_IO_GENEVENT #include "HepMC/IO_GenEvent.h" #endif #include "HepMC/IO_AsciiParticles.h" // define methods and classes used by this test #include "IsGoodEvent.h" #include "testHepMCMethods.h" void read_testIOGenEvent(std::ostream & os); void read_testUnits(std::ostream & os); void read_variousFormats(std::ostream & os); void writeWithCrossSection(std::ostream & os); void readWithCrossSection(std::ostream & os); void writeWithWeight(std::ostream & os); void readWithWeight(std::ostream & os); void read_nan(std::ostream & os); int main() { std::ofstream os( "testHepMC.cout" ); std::ofstream osv( "testHepMCVarious.cout" ); read_testIOGenEvent(os); read_testUnits(os); read_variousFormats(osv); read_nan(os); writeWithCrossSection(os); readWithCrossSection(os); writeWithWeight(os); readWithWeight(os); return 0; } void read_testIOGenEvent(std::ostream & os) { os << std::endl; os << "basic IO_GenEvent input and output" << std::endl; // declare an input strategy to read the data produced with the // example_MyPythia - units are GeV and mm HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare another IO_GenEvent for writing out the good events HepMC::IO_GenEvent ascii_out("testHepMC.out",std::ios::out); // declare an output IO_GenEvent for testing precision HepMC::IO_GenEvent prec_out("testHepMCprecision.out",std::ios::out); prec_out.precision(10); // declare an IO_AsciiParticle for output HepMC::IO_AsciiParticles particle_out("testHepMCParticle.out",std::ios::out); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { ++icount; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { particleTypes(evt,os); // verify use_input_units() evt->write_units(os); double pim = findPiZero(evt); os << " pizero mass: " << pim << std::endl; // ascii_out << evt; particle_out << evt; prec_out << evt; ++num_good_events; } // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void read_testUnits(std::ostream & os) { os << std::endl; os << "IO_GenEvent input and output using define_units" << std::endl; // declare an input strategy to read the data produced with the // example_MyPythia - units are GeV and mm // we DO NOT define input units here, instead we use define_units HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); // declare another IO_GenEvent for writing out the good events HepMC::IO_GenEvent ascii_out("testDefineUnits.out",std::ios::out); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { ++icount; evt->define_units( HepMC::Units::GEV, HepMC::Units::MM ); if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { // verify define_units() evt->write_units(os); double pim = findPiZero(evt); os << " pizero mass: " << pim << std::endl; // particleTypes(evt,os); ascii_out << evt; ++num_good_events; } // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void read_variousFormats(std::ostream & os) { os << std::endl; os << "process varied input" << std::endl; // declare an input strategy HepMC::IO_GenEvent ascii_in("@srcdir@/testHepMCVarious.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare another IO_GenEvent for writing out the good events HepMC::IO_GenEvent ascii_out("testHepMCVarious.out",std::ios::out); //........................................EVENT LOOP int icount=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; double pim; os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; ascii_out << evt; // units should be unknown evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << std::endl; if( HepMC::Units::name( evt->momentum_unit() ) == "GEV" ) { os << " GenEvent units are GeV" << std::endl; if( pim > 1.0 ) { // presume units are MEV and out of sync os << " pizero units are MeV" << std::endl; repairUnits(evt,HepMC::Units::MEV,HepMC::Units::GEV); // set units to MeV and mm evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; // convert units to MeV evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; } else if( pim > 0.1 ) { // presume units are GEV os << " pizero units are GeV" << std::endl; // set units to GeV and mm evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; // convert units to MeV evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; } else { os << " pizero mass: " << pim << " is inconsistent with allowed units " << std::endl; } } else if( HepMC::Units::name( evt->momentum_unit() ) == "MEV" ) { os << " GenEvent units are MeV" << std::endl; if( pim > 1.0 ) { // presume units are MEV os << " pizero units are MeV" << std::endl; // set units to MeV and mm evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; // convert units to MeV evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; } else if( pim > 0.1 ) { // presume units are GEV and out of sync os << " pizero units are GeV" << std::endl; repairUnits(evt,HepMC::Units::GEV,HepMC::Units::MEV); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; // convert units to MeV evt->use_units(HepMC::Units::MEV, HepMC::Units::MM); evt->write_units(os); pim = findPiZero(evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt->momentum_unit() ) << std::endl; } else { os << " pizero mass: " << pim << " is inconsistent with allowed units " << std::endl; } } // clean up and get next event delete evt; ascii_in >> evt; } std::cout << "testHepMC: the HeavyIon and PdfInfo input stream errors are intentional" << std::endl; //........................................PRINT RESULT os << icount << " events processed. Finished." << std::endl; } void writeWithCrossSection(std::ostream & os) { // declare an input strategy to read input data // units are GeV and mm HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare another IO_GenEvent for writing out some events HepMC::IO_GenEvent ascii_out("testCrossSection.out",std::ios::out); // declare an output stream for printing events std::ofstream xout( "testCrossSection.cout" ); // create an empty GenCrossSection object HepMC::GenCrossSection cross; //........................................EVENT LOOP int icount=0; const double xs0 = 0.00346; const double xs1 = 0.12; const double xs2 = 33.234; const double xs3 = 459.345; double xserr = 0.0001; double wgt1, wgt2; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; // use a variety of arbitrary cross section values if( icount < 10 ) { const double xs = xs0 - 1.34 * xserr; cross.set_cross_section( xs, xserr ); } else if( icount < 20 ) { const double xs = xs1 - 1.34 * xserr; cross.set_cross_section( xs, xserr ); } else if( icount < 30 ) { const double xs = xs2 - 1.34 * xserr; cross.set_cross_section( xs, xserr ); } else { const double xs = xs3 - 1.34 * xserr; cross.set_cross_section( xs, xserr ); } xserr *= 0.99; if ( icount == 10 ) xserr += 0.01; if ( icount == 20 ) xserr += 0.4; if ( icount == 30 ) xserr += 1.0; // attach this cross section to the event evt->set_cross_section( cross ); evt->write_cross_section(os); // add weights wgt1 = 0.9853 + (double)icount * 0.00033; wgt2 = 0.9853 + (double)(icount+1) * 0.00033; evt->weights().push_back(0.3456); evt->weights()["weightName"] = wgt1; evt->weights()["second weight name"] = wgt2; if ( icount%20==1 ) { os << "writeWithCrossSection: Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; ascii_out << evt; evt->print(xout); } // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << "writeWithCrossSection processed " << icount << " events. Finished." << std::endl; } void readWithCrossSection(std::ostream & os) { // read the file we just wrote HepMC::IO_GenEvent ascii_in("testCrossSection.out",std::ios::in); // declare another IO_GenEvent for writing out some events HepMC::IO_GenEvent ascii_out("testCrossSection2.out",std::ios::out); //........................................EVENT LOOP int icount=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { ++icount; os << "readWithCrossSection: Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if (evt->cross_section()->cross_section() <= 0) { os << "testReadCrossSection: invalid cross-section!" << std::endl; } ascii_out << evt; // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << "readWithCrossSection processed " << icount << " events. Finished." << std::endl; } void read_nan(std::ostream & os) { // Read an input file that has corrupt information (nan's) // HepMC::IO_GenEvent xin("@srcdir@/testHepMCVarious.input",std::ios::in); HepMC::IO_GenEvent xout("testNaN.out",std::ios::out); // set input units xin.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); //........................................EVENT LOOP int icount=0; int invaliddata=0; bool ok = true; os << "---------------------------------------- " << std::endl; os << "Begin NaN test " << std::endl; HepMC::GenEvent* evt = xin.read_next_event(); // // To recover from corrupt input, replace "while(evt) {...}" // with "while(ok) { if(evt) {... xin >> evt;} else {...} }" // while ( ok ) { if( evt ) { ++icount; os << "read_nan: Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; xout << evt; // clean up and get next event delete evt; xin >> evt; } else if (xin.error_type() == HepMC::IO_Exception::InvalidData ) { ++invaliddata; os << "INPUT ERROR: " << xin.error_message() << std::endl; // clean up and get next event delete evt; xin >> evt; } else if (invaliddata > 50 ) { os << "INPUT ERROR: " << xin.error_message() << std::endl; ok = false; } else { ok = false; } } // print status of input stream if ( xin.error_type() != 0 ) { os << "processing of @srcdir@/testHepMCVarious.input ended with error " << xin.error_type() << std::endl; os << " --- " << xin.error_message() << std::endl; } os << icount << " events processed and " << invaliddata << " events ignored. Finished." << std::endl; os << "End NaN test " << std::endl; os << "---------------------------------------- " << std::endl; } void writeWithWeight(std::ostream & os) { // declare an input strategy to read input data // units are GeV and mm HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare another IO_GenEvent for writing out some events HepMC::IO_GenEvent ascii_out("testWithWeight.out",std::ios::out); // declare an output stream for printing events std::ofstream xout( "testWithWeight.cout" ); //........................................EVENT LOOP int icount=0; double wgt1, wgt2; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; // add weights wgt1 = 0.9853 + (double)icount * 0.00033; wgt2 = 0.9853 + (double)(icount+1) * 0.00033; evt->weights().push_back(0.3456); evt->weights().push_back(wgt1); evt->weights().push_back(wgt2); if ( icount%20==1 ) { os << "writeWithWeight: Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; ascii_out << evt; evt->print(xout); } // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << "writeWithWeight processed " << icount << " events. Finished." << std::endl; } void readWithWeight(std::ostream & os) { // read the file we just wrote HepMC::IO_GenEvent ascii_in("testWithWeight.out",std::ios::in); // declare another IO_GenEvent for writing out some events HepMC::IO_GenEvent ascii_out("testWithWeight2.out",std::ios::out); //........................................EVENT LOOP int icount=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { ++icount; os << "readWithWeight: Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( !evt->cross_section() ) { os << "testReadCrossSection: invalid cross-section!" << std::endl; } ascii_out << evt; // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << "readWithWeight processed " << icount << " events. Finished." << std::endl; } hepmc-2.06.09.orig/test/testCrossSection.dat0000644000175000017500000064160111763464675021627 0ustar sylvestresylvestre HepMC::Version 2.06.09 HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 3 3.4560000000000002e-01 9.8595999999999995e-01 9.8563000000000001e-01 N 3 "0" "second weight name" "weightName" U GEV MM C 3.3260000000000000e-03 1.0000000000000000e-04 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 3 3.4560000000000002e-01 9.9256000000000000e-01 9.9222999999999995e-01 N 3 "0" "second weight name" "weightName" U GEV MM C 3.2685771680665248e+01 4.0912561144384779e-01 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 1.5073383106491554e+00 -1.2993365623313919e+00 2.7209201338025518e+03 2.7209208615607290e+03 0 3 0 0 -3 0 P 13 2203 -1.5073383106491554e+00 1.2993365623313919e+00 4.2445390246486650e+03 4.2445395612551065e+03 7.7132999999999996e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 2.5858216316097202e+00 -2.1708479932488607e+00 -4.3397297718328176e+01 4.3528433279564204e+01 0 3 0 0 -4 0 P 16 2 -9.0692769071088786e-01 1.4604855287320972e+00 -7.6935046429856322e+02 7.6935245586936981e+02 3.3000000000000002e-01 2 0 0 -11 0 P 31 2101 -1.6788939408988324e+00 7.1036246451676344e-01 -6.0892474052497901e+03 6.0892477056910939e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 6 0 P 5 -3 1.9131593054692739e+00 -4.0833345117393832e-01 1.5134760262017681e+02 1.5136024489148531e+02 0 3 0 0 -5 0 P 11 3 -2.3763962284599889e+00 -1.5682078523784135e+00 3.3160241945312552e+00 4.3991534823891785e+00 5.0000000000000000e-01 2 0 0 -9 0 P 12 21 -1.7899416997370041e-01 2.7373785189054706e-01 1.8197775504657279e-01 3.7428228354280341e-01 0 2 0 0 -9 0 P 17 1 1.1548355662297878e+00 3.4375600693342656e-01 1.0589855551638902e+03 1.0589862920544110e+03 3.3000000000000002e-01 2 0 0 -13 0 P 18 21 1.2020137443834598e+00 -9.8631711370454744e-01 1.4970067852719885e+03 1.4970075927692765e+03 0 2 0 0 -13 0 P 19 21 -2.4138821327432236e-01 9.7656750468602660e-01 8.6876499652477523e+00 8.7456969007269940e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 8 0 P 6 4 -5.9089825329223244e-01 -1.6901151672419878e+00 -1.5889612462364616e+01 1.5990166798017459e+01 0 3 0 0 -5 0 P 14 -4 1.2883406923195979e+00 -8.1779995058646193e-02 -1.5140846367359584e+01 1.5269634521725274e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 4.8780533685027683e-01 -5.0842485147169025e-01 -1.9217346871295313e+00 2.0468302528471822e+00 0 2 0 0 -11 0 P 26 21 7.3199240075760574e-01 2.4932276178633131e-01 -7.8263490844843397e-01 1.1002236655488444e+00 0 2 0 0 -13 0 P 27 21 3.8517080731795145e-01 1.6355688468072610e-01 -4.1897803992779883e+00 4.2106255116681233e+00 0 2 0 0 -13 0 P 28 21 -4.9565627720230027e-01 -4.4399621171836968e-02 -1.3956559470714644e-01 5.1684139415898722e-01 0 2 0 0 -13 0 P 29 21 6.4928719605614766e-03 1.4868576029816710e-01 1.7868600341142118e-01 2.3254741563149370e-01 0 2 0 0 -13 0 P 30 21 8.0668235928323240e-01 -3.3823327368415140e-01 -4.1172703508799797e+00 4.2091630187533973e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 3 0 0 -6 0 P 8 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821259e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821045e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 13 0 P 32 -3 -1.8175462476630642e+00 -2.6075903952270956e+00 7.4978093125731151e+00 8.1590530406035970e+00 5.0000000000000000e-01 2 0 0 -15 0 P 33 21 -7.7086820243997201e+00 -1.2078882165221280e+01 4.1059302235880892e+01 4.3487808326150649e+01 0 2 0 0 -15 0 P 34 21 -8.6664999417158739e-01 -2.3788922262766904e-01 4.1521896803822882e+00 4.2483352782605541e+00 0 2 0 0 -15 0 P 35 21 -2.7355636784212805e+00 -4.9103226906665798e+00 4.5665344073097550e+01 4.6009979644415822e+01 0 2 0 0 -15 0 P 36 21 -8.1750908960544592e-03 -2.4124905925706416e-02 6.8686147210170772e+00 6.8686619533188251e+00 0 2 0 0 -15 0 P 37 21 6.4416385788967663e+00 3.9997054871194289e+00 1.5990357572048969e+01 1.7697002199435030e+01 0 2 0 0 -15 0 P 38 21 4.3820415185385482e+00 1.4472618519174791e+00 9.4571366554555141e+00 1.0523036085568249e+01 0 2 0 0 -15 0 P 39 21 1.5785379900501961e+00 6.3340244933387069e-01 4.9379047129305471e+00 5.2226318846761126e+00 0 2 0 0 -15 0 P 40 21 2.1695667705919841e-01 -2.8556071886963619e-01 9.3101540850151454e-01 9.9769976182675046e-01 0 2 0 0 -15 0 P 41 21 4.4744182629032359e-01 3.7836193256341005e-01 7.6527884936886914e-01 9.6385354552363345e-01 0 2 0 0 -15 0 P 42 21 7.0915200046107396e-01 9.4447177453203079e-01 5.3145921951374853e-01 1.2951341222637094e+00 0 2 0 0 -15 0 P 43 21 1.1637549392207085e+00 6.4262106092344524e+00 1.4233902665894258e+00 6.6840517804561888e+00 0 2 0 0 -15 0 P 44 4 1.1845655554320238e+00 8.2373132175066175e+00 1.2079282052863620e+00 8.5419912870215189e+00 1.5000000000000000e+00 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 45 92 -4.0627287090828448e+00 4.8665618435255187e-03 4.2480370265982428e+03 4.2493129970210384e+03 1.0404740032327815e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 14 0 P 46 3122 -7.3771937707635449e-01 -1.9294115521747696e-01 2.3626223120200218e+00 2.7217976082628574e+00 1.1156800000000000e+00 2 0 0 -17 0 P 47 113 -5.8649080238289153e-01 -3.6887303658376347e-01 1.5544771643782693e+00 1.8799923714648183e+00 7.9870725788248087e-01 2 0 0 -18 0 P 48 -2112 -8.3505206138920984e-01 -4.5948159379032477e-01 3.2157041824918604e+00 3.4830992599204103e+00 9.3957000000000002e-01 1 0 0 0 0 P 49 -211 -4.6959323148633048e-01 -1.2832517867366380e-01 9.7275164850053275e-01 1.0966816808444948e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 321 2.1227525312906162e-01 -1.5289242719376326e-02 2.1781765734125420e+00 2.2435214928761309e+00 4.9359999999999998e-01 1 0 0 0 0 P 51 -321 -2.7058491563472709e-01 -6.9924173239626061e-02 6.3841624885677168e+00 6.4093117592302722e+00 4.9359999999999998e-01 1 0 0 0 0 P 52 213 2.1203810470765724e-01 2.0958133779211251e-02 6.7514724368505332e+00 6.8027312640157040e+00 8.0583694606582701e-01 2 0 0 -19 0 P 53 111 -3.3213424623765248e-01 3.4211924550281853e-01 4.3402841912560630e+00 4.3684831688967929e+00 1.3497999999999999e-01 2 0 0 -20 0 P 54 -211 3.1101552012023875e-01 -7.6976657694286010e-01 4.3071461940135706e+01 4.3079688771881727e+01 1.3957000000000000e-01 1 0 0 0 0 P 55 211 -1.6705318266988844e-01 2.9031993215322216e-01 2.3857982790456216e+01 2.3860742131028751e+01 1.3957000000000000e-01 1 0 0 0 0 P 56 311 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -21 0 P 57 -311 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -22 0 P 58 2112 -4.9118388741375185e-01 1.5592546903498823e+00 3.6302423682361400e+03 3.6302428579180933e+03 9.3957000000000002e-01 1 0 0 0 0 P 59 211 -4.2689663996527044e-01 -1.8418355465330538e-01 4.2449709914417917e+02 4.2449737670088257e+02 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 60 92 8.6921833845898688e-01 8.7028068220176080e-01 -7.8641304535305233e+02 7.8666892064394222e+02 2.0024981314782629e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 9 0 P 61 -411 1.1688720643707666e+00 -7.4513028084903610e-01 -1.6866644499133198e+01 1.7026434159519269e+01 1.8693000000000000e+00 2 0 0 -23 0 P 62 213 3.7470388189717097e-01 1.1020281521248323e-01 -1.5451543037357895e+01 1.5475868794289363e+01 7.7445790275939808e-01 2 0 0 -24 0 P 63 -213 -2.1178538509080652e-01 3.9040080476128763e-01 -2.5920552948920815e+01 2.5932809177743518e+01 6.6201271419408125e-01 2 0 0 -25 0 P 64 211 -1.0539248551241585e-01 -5.6877312112187807e-02 -2.4813930335012659e+00 2.4881989020663533e+00 1.3957000000000000e-01 1 0 0 0 0 P 65 -2224 6.3960254240566017e-01 -4.3830975700149433e-02 -3.3696696807691140e+01 3.3728822474444563e+01 1.3247932655519623e+00 2 0 0 -26 0 P 66 111 -4.9002768594274757e-02 -9.3633614435907869e-02 -1.7412505148631521e+00 1.7496689632594586e+00 1.3497999999999999e-01 2 0 0 -27 0 P 67 2212 -1.7983236018661933e-01 2.1939525582136044e-01 -1.6103988517067441e+02 1.6104286833117743e+02 9.3827000000000005e-01 1 0 0 0 0 P 68 213 -7.6187580460114623e-01 8.5913101305733230e-01 -1.2365619630425306e+02 1.2366417060794262e+02 8.0848430729299015e-01 2 0 0 -28 0 P 69 331 -6.0713462293482384e-03 2.3062297644657839e-01 -4.0555888303665745e+02 4.0556007923349972e+02 9.5761898627699404e-01 2 0 0 -29 0 V -13 0 0 0 0 0 6 1 0 P 20 21 2.7497223922082998e+00 -3.2443890390539156e+00 2.5418671295121317e+01 2.5771998057588963e+01 0 2 0 0 -13 0 P 21 21 -2.0575204360516910e-01 2.4229652480183916e+00 4.9419044762411302e+00 5.5077685453225653e+00 0 2 0 0 -13 0 P 22 21 -2.7497223922082998e+00 3.2443890390539156e+00 6.7021782526682061e-01 4.3053716917648712e+00 0 2 0 0 -13 0 P 23 21 2.0575204360516910e-01 -2.4229652480183916e+00 -1.4189664353904355e-01 2.4358220694459964e+00 0 2 0 0 -13 0 P 24 21 1.2587821098669902e+00 -2.6667816242118747e-01 -5.8254265308406481e+01 5.8268474119927362e+01 0 2 0 0 -13 0 P 25 21 -1.2587821098669902e+00 2.6667816242118747e-01 -3.6098622829217867e+01 3.6121547860087098e+01 0 2 0 0 -13 0 P 70 92 1.8712493185571446e+00 1.2233013743409056e+00 -3.5970819712830998e+03 8.7966676707654060e+03 8.0275997909536509e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 50 0 P 71 -213 8.7695914611789827e-01 -1.3056393899451380e-01 7.7453546713867104e+02 7.7453638241747433e+02 7.9481340084842744e-01 2 0 0 -30 0 P 72 223 4.8295247219301213e-01 -1.9931783509541660e-02 9.9052523820924489e+02 9.9052566384292925e+02 7.8074427808345570e-01 2 0 0 -31 0 P 73 211 1.3850104916568237e-01 -4.3565090467300321e-01 6.8677299646723853e+01 6.8678962869296143e+01 1.3957000000000000e-01 1 0 0 0 0 P 74 111 4.2475962909123333e-01 1.2253088954042510e-01 3.4986130518811797e+02 3.4986161052921358e+02 1.3497999999999999e-01 2 0 0 -32 0 P 75 113 2.5170671641125530e-01 7.9527061042662023e-02 2.2599488119587267e+02 2.2599641994950557e+02 7.9108939580457083e-01 2 0 0 -33 0 P 76 -211 -1.9221335908804853e-02 -5.3067745014872614e-01 1.3807915012377745e+02 1.3808024176798583e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 213 -1.4049907214162011e-01 5.4367330912058265e-01 1.1669475275555600e+01 1.1707613671742026e+01 7.5910738610194239e-01 2 0 0 -34 0 P 78 223 8.1633397897400806e-01 -8.5768108564839712e-02 9.2590479009986204e+00 9.3278515479896740e+00 7.7787475513226845e-01 2 0 0 -35 0 P 79 -211 -1.4210113651499059e-01 -3.8388855788894088e-01 1.4955103913496963e+00 1.5567897332047844e+00 1.3957000000000000e-01 1 0 0 0 0 P 80 111 9.5463497763658234e-01 -3.9478491268212601e-01 7.3124203460701409e+00 7.3862638719334406e+00 1.3497999999999999e-01 2 0 0 -36 0 P 81 211 7.2490675961385420e-02 1.3169438131253494e-01 3.6667839444915624e+00 3.6725172005930387e+00 1.3957000000000000e-01 1 0 0 0 0 P 82 -213 4.4126493964800634e-01 -2.1003298064756973e-01 3.0615450194359637e+00 3.2079186412104401e+00 8.2392687944381182e-01 2 0 0 -37 0 P 83 111 -2.3027854891341855e-02 -2.8065908362951703e-01 6.3048404098198441e-01 7.0358334947440981e-01 1.3497999999999999e-01 2 0 0 -38 0 P 84 213 2.2642962321946897e-01 6.4703057792370411e-01 8.0785724570491790e-01 1.2852258827712018e+00 7.2749797062774335e-01 2 0 0 -39 0 P 85 111 -3.9094005207012528e-01 2.2862878685255186e-01 1.1012349532976333e+00 1.1983502281281138e+00 1.3497999999999999e-01 2 0 0 -40 0 P 86 2112 3.7269907250953721e-01 -2.8015513221139599e-01 4.1715239773705060e+00 4.3013713598608181e+00 9.3957000000000002e-01 1 0 0 0 0 P 87 -2212 -4.4502325970543771e-01 -2.1754495217768732e-01 1.7491568031425615e+00 2.0457936412983475e+00 9.3827000000000005e-01 1 0 0 0 0 P 88 321 -5.0379083550468627e-02 1.8803084736306059e+00 2.7277173368670735e+00 3.3499523635287178e+00 4.9359999999999998e-01 1 0 0 0 0 P 89 -323 -8.1116466091627526e-01 1.0534532017480058e+00 -8.4500355663205268e-02 1.6198712899609433e+00 9.2146130170505902e-01 2 0 0 -41 0 P 90 211 -8.9799083863894580e-01 2.3005438883367976e-01 4.0876039776347678e-01 1.0226814830536783e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 331 3.8608499147221492e-01 -6.2301749856969058e-01 1.4524261016864801e-02 1.2064351176701817e+00 9.5815568402303219e-01 2 0 0 -42 0 P 92 113 -4.2308470357622924e-01 -1.7764392720888758e-01 -1.4921992585509802e+00 1.8764952260107282e+00 1.0411616948133349e+00 2 0 0 -43 0 P 93 -213 -5.9228690859513926e-02 -3.6096116901355901e-01 5.0680556828157078e-03 8.5602583207208316e-01 7.7392088525231784e-01 2 0 0 -44 0 P 94 223 4.4519376696515300e-01 -3.6599579577299851e-01 -9.3581058961126686e+00 9.4083900348679848e+00 7.8198892107010165e-01 2 0 0 -45 0 P 95 213 2.5449089999962965e-01 -5.2538580551351322e-01 -1.5990871713898519e+01 1.6022635374114184e+01 8.2223494126538865e-01 2 0 0 -46 0 P 96 -211 -3.9985126704558338e-01 6.0759733471177846e-01 -5.2292352414804952e+00 5.2814237240112059e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 221 -5.4103870668604441e-02 -1.8671774238069413e-01 -6.7313154173464085e+00 6.7563377279741221e+00 5.4744999999999999e-01 2 0 0 -47 0 P 98 213 3.2263683737559473e-01 -3.9310173367445850e-01 -3.0380981895830683e+01 3.0395598885213076e+01 7.9356608680380858e-01 2 0 0 -48 0 P 99 -211 4.0901777019801971e-01 2.4457160340083145e-01 -2.4147552200210995e+00 2.4652856554661087e+00 1.3957000000000000e-01 1 0 0 0 0 P 100 211 -3.8554471983155963e-01 4.8755575017222624e-01 -1.2591851607058537e+01 1.2607956298290325e+01 1.3957000000000000e-01 1 0 0 0 0 P 101 313 -2.7509880964698280e-02 -4.0663952030180289e-01 -4.3936450704745784e+00 4.5023486881603016e+00 8.9493810481577130e-01 2 0 0 -49 0 P 102 3224 -9.2672852486645571e-02 6.5585209965268648e-02 -4.0204721714874072e+00 4.2506978129614730e+00 1.3752620615928364e+00 2 0 0 -50 0 P 103 -3224 3.3909533539442915e-01 3.1246322967426809e-01 -4.3825925655100573e+00 4.6089362027682723e+00 1.3500208922602861e+00 2 0 0 -51 0 P 104 -313 2.9239998644659210e-01 4.7617792020952156e-02 -2.8607764941309388e+00 3.0128119422957576e+00 8.9734522012261986e-01 2 0 0 -52 0 P 105 -211 3.3114193757278626e-01 4.8736178797093938e-01 -6.8654531220075832e-01 9.1542380665925804e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 213 -6.5980063614748952e-01 -2.7824199752659268e-01 -8.6444920386959794e+00 8.7073410305708592e+00 7.6012481010450028e-01 2 0 0 -53 0 P 107 -211 6.7548772052830464e-01 2.8279401240234431e-01 -2.3109875521773585e+01 2.3121896170747007e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 -3.8123255767312253e-01 -3.0685043734591605e-01 -1.1953401963161754e+01 1.2004205412817816e+01 9.8875358218105502e-01 2 0 0 -54 0 P 109 331 1.4931133481974440e-01 -1.1268304079557502e-01 -9.9766292699747137e+00 1.0024233320468472e+01 9.5766942641267616e-01 2 0 0 -55 0 P 110 221 1.9001747233615021e-01 1.1235252860039266e-01 -1.1311205093270679e+01 1.1326596659853676e+01 5.4744999999999999e-01 2 0 0 -56 0 P 111 3122 -1.6531213545598181e-02 1.7941481008998922e-01 -9.7845632368603006e+01 9.7852158782672305e+01 1.1156800000000000e+00 2 0 0 -57 0 P 112 -3212 2.1512032592093658e-01 -4.9536064251785050e-01 -8.8021694916783730e+01 8.8031429673989905e+01 1.1925500000000000e+00 2 0 0 -58 0 P 113 213 -3.0271802830700351e-01 -1.8199115940732644e-01 -9.3693985986604460e+01 9.3696228323527890e+01 5.4353749629009396e-01 2 0 0 -59 0 P 114 -213 -1.4424928218799363e-01 8.0356077501503209e-01 -1.5775355144448991e+02 1.5775717774879575e+02 6.9110067374553441e-01 2 0 0 -60 0 P 115 111 1.7128022450432756e-01 -3.6555194441179756e-01 -8.1007288706637596e+01 8.1008407022606633e+01 1.3497999999999999e-01 2 0 0 -61 0 P 116 111 1.5788168370261174e-02 -4.8321618446635503e-02 -1.0310912881680434e+01 1.0311921658889448e+01 1.3497999999999999e-01 2 0 0 -62 0 P 117 213 1.9689425293322910e-01 -1.5224892223532024e-01 -6.4658169287785782e+01 6.4660495121341583e+01 4.8869889289292329e-01 2 0 0 -63 0 P 118 -211 -7.1825664261600375e-01 -2.9746020738896345e-01 -7.9981103969115236e+02 7.9981142969252869e+02 1.3957000000000000e-01 1 0 0 0 0 P 119 211 -7.0721336506262444e-02 7.1538494473250414e-01 -1.9344004753605057e+02 1.9344143363731823e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2112 -9.2559101045397996e-01 2.0797149321907010e-01 -4.4406806478088056e+03 4.4406808485395886e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 121 92 2.9874720503971322e+00 1.9223572236693229e+00 1.4048773091264587e+02 1.6069923890952060e+02 7.7941147044214631e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 23 0 P 122 321 -1.9596084643502856e+00 -3.0602237549375295e+00 9.0339720928884173e+00 9.7499398715542842e+00 4.9359999999999998e-01 1 0 0 0 0 P 123 111 -2.1221753418868241e+00 -3.0794768752118356e+00 9.7608878684791733e+00 1.0453705447739610e+01 1.3497999999999999e-01 2 0 0 -64 0 P 124 -213 -5.8801121921525645e+00 -8.8594710964628405e+00 3.2017570968426774e+01 3.3747254672951620e+01 8.2849245105086544e-01 2 0 0 -65 0 P 125 213 -1.1405902431970816e+00 -2.4992193557709950e+00 2.1111220865463821e+01 2.1310746560358947e+01 9.5772075174289650e-01 2 0 0 -66 0 P 126 -211 -5.9892796811931859e-01 2.1874519221366373e-01 6.1395360304544235e+00 6.1741352936472156e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 213 -4.5559783483989907e-01 -3.2530999344707040e-01 6.7553426559176861e+00 6.8289650272447275e+00 8.2868146203666626e-01 2 0 0 -67 0 P 128 113 -5.7440792125096041e-01 -1.3510713832725041e+00 1.4285720978915283e+01 1.4384112737546413e+01 8.1580452090620947e-01 2 0 0 -68 0 P 129 -323 1.3411301224220290e-01 5.6031818823388205e-03 2.7919730682451793e+00 2.9745260344901774e+00 1.0171891762860905e+00 2 0 0 -69 0 P 130 313 1.2324498805479818e+00 3.7849258064035401e-01 4.8207774900212632e+00 5.0746247963754492e+00 9.2180902253684249e-01 2 0 0 -70 0 P 131 211 1.6120206802060957e-01 -7.1135203600750430e-02 1.1811311498599026e+00 1.2023297808816087e+00 1.3957000000000000e-01 1 0 0 0 0 P 132 223 1.2785603990255554e+00 8.1470418811002865e-01 4.2252255004056352e+00 4.5561557209133206e+00 7.7946444168590967e-01 2 0 0 -71 0 P 133 113 1.2567864011156424e+00 4.7197901755798238e-01 3.3548075691944046e+00 3.6963380307328726e+00 7.7839884382872360e-01 2 0 0 -72 0 P 134 -213 1.5702635608886917e+00 6.2797790528091013e-01 3.9810681837186714e+00 4.3848941954086769e+00 7.1993702595142928e-01 2 0 0 -73 0 P 135 -313 2.9950025276104766e+00 1.4295147405663253e+00 7.2274828460366631e+00 8.0017007909111246e+00 8.8156379441532173e-01 2 0 0 -74 0 P 136 311 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -75 0 P 137 213 1.6729071976051537e+00 8.5620849094171136e-01 3.0695739662043788e+00 3.7282048788027744e+00 9.7237637392591791e-01 2 0 0 -76 0 P 138 -2212 5.6456212520249682e-01 1.0007903273826917e+00 2.0028501160208223e+00 2.4924026265313830e+00 9.3827000000000005e-01 1 0 0 0 0 P 139 -213 9.5986336228977864e-01 4.5552201652155105e-01 6.3324037919285980e-01 1.4469243010152428e+00 7.5083858000640402e-01 2 0 0 -77 0 P 140 2224 -7.8524718047965902e-02 1.4537681742328321e+00 2.1735353569266671e+00 2.8439842589241842e+00 1.1155189292169956e+00 2 0 0 -78 0 P 141 -213 4.3109300650004678e-01 9.7089208546243078e-01 9.3226226300081128e-01 1.6345673268370955e+00 8.2111192725543636e-01 2 0 0 -79 0 P 142 223 8.4775152594623793e-01 6.9685656413280006e-01 5.1616019999694440e-01 1.4417240686217714e+00 7.7965070208605758e-01 2 0 0 -80 0 P 143 213 -6.9411667715650036e-02 8.6435598231357802e-01 -4.6980410204834594e-02 1.0258343082727188e+00 5.4607657458456793e-01 2 0 0 -81 0 P 144 423 1.9798114286895228e+00 1.0463034435943911e+01 2.2730832830925096e+00 1.1071968903622894e+01 2.0066999999999999e+00 2 0 0 -82 0 V -17 0 -1.9844667492655856e+00 -5.1901213251491485e-01 6.3554592233402145e+00 7.3216415613673087e+00 0 2 0 P 145 2212 -5.6405112594990248e-01 -8.2328990329775781e-02 1.8320933095166183e+00 2.1358483614268189e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -211 -1.7366825112645196e-01 -1.1061216488770119e-01 5.3052900250340351e-01 5.8594924683603844e-01 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 147 211 -1.2405291990440502e-01 1.5180733255592282e-01 9.8520447119075288e-02 2.6003972111024848e-01 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 -4.6243788247848655e-01 -5.2068036913968629e-01 1.4559567172591938e+00 1.6199526503545698e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 149 211 -1.6401757664718711e-01 -1.6181441769908414e-01 1.0378249140804121e+00 1.0722154673434461e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 111 3.7605568135484441e-01 1.8277255147829538e-01 5.7136475227701213e+00 5.7305157966722584e+00 1.3497999999999999e-01 2 0 0 -83 0 V -20 0 -2.1337750193070739e-05 2.1979230023625941e-05 2.7883875537992317e-04 2.8065038049059407e-04 0 2 0 P 151 22 -2.0299074029907288e-01 2.6252242577301055e-01 2.4946979827878186e+00 2.5166726624665596e+00 0 1 0 0 0 0 P 152 22 -1.2914350593857957e-01 7.9596819729807991e-02 1.8455862084682444e+00 1.8518105064302333e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 1 0 P 153 310 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -84 0 V -22 0 0 0 0 0 0 1 0 P 154 310 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -85 0 V -23 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 3 0 P 155 333 2.3005001914978035e-01 -1.8891038012288625e-01 -8.2469504198468382e+00 8.3158471983839330e+00 1.0259206872019917e+00 2 0 0 -86 0 P 156 -211 6.7707841467988750e-01 -6.3633879806255356e-01 -5.9907253670076601e+00 6.0639617786851350e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 111 2.6174363054109889e-01 8.0118897336403663e-02 -2.6289687122787009e+00 2.6466251824502018e+00 1.3497999999999999e-01 2 0 0 -87 0 V -24 0 0 0 0 0 0 2 0 P 158 211 2.6553185864339701e-01 3.5264117770652248e-01 -5.3710811805618999e+00 5.3909976628871830e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 111 1.0917202325377394e-01 -2.4243836249403924e-01 -1.0080461856795997e+01 1.0084871131402181e+01 1.3497999999999999e-01 2 0 0 -88 0 V -25 0 0 0 0 0 0 2 0 P 160 -211 -2.4426207882457773e-01 2.0745765263264787e-01 -5.5682657854634128e+00 5.5792263158300033e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 111 3.2476693733771218e-02 1.8294315212863976e-01 -2.0352287163457397e+01 2.0353582861913512e+01 1.3497999999999999e-01 2 0 0 -89 0 V -26 0 0 0 0 0 0 2 0 P 162 -2212 6.7891220695115995e-01 -2.6938319910007968e-01 -2.5439516053421304e+01 2.5467289151338523e+01 9.3827000000000005e-01 1 0 0 0 0 P 163 -211 -3.9309664545499771e-02 2.2555222339993028e-01 -8.2571807542698359e+00 8.2615333231060397e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 -1.7545294729911774e-05 -3.3525235594481608e-05 -6.2344953883797553e-04 6.2646373910703974e-04 0 2 0 P 164 22 -1.3943100255850547e-02 3.3588080481148697e-02 -2.5646016790007836e-01 2.5902584217504093e-01 0 1 0 0 0 0 P 165 22 -3.5059668338424207e-02 -1.2722169491705657e-01 -1.4847903469630739e+00 1.4906431210844178e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 166 211 1.1741752767951077e-01 5.9244901067751467e-02 -2.4668746433273466e+01 2.4669491831169758e+01 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -8.7929333228065698e-01 7.9988611198958082e-01 -9.8987449870979589e+01 9.8994678776772872e+01 1.3497999999999999e-01 2 0 0 -90 0 V -29 0 0 0 0 0 0 3 0 P 168 211 -6.7504817019198513e-02 2.1432555030263287e-02 -4.1979376582973444e+01 4.1979668344744397e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 -211 4.4469542840321237e-02 -6.9910430478048916e-02 -1.2780395423055235e+02 1.2780405729771864e+02 1.3957000000000000e-01 1 0 0 0 0 P 170 221 1.6963927949529032e-02 2.7910085189436401e-01 -2.3577555222313160e+02 2.3577635359103664e+02 5.4744999999999999e-01 2 0 0 -91 0 V -30 0 0 0 0 0 0 2 0 P 171 -211 8.6386022358688364e-01 -7.0654186651049333e-02 7.4701973770997915e+02 7.4702025357721789e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 111 1.3098922531014681e-02 -5.9909752343464469e-02 2.7515729428691831e+01 2.7516128840256126e+01 1.3497999999999999e-01 2 0 0 -92 0 V -31 0 0 0 0 0 0 2 0 P 173 22 1.6926641057211625e-01 3.6123228903412097e-01 3.7191796379176452e+02 3.7191817773657777e+02 0 1 0 0 0 0 P 174 111 3.1368606162089585e-01 -3.8116407254366264e-01 6.1860727441748043e+02 6.1860748610635142e+02 1.3497999999999999e-01 2 0 0 -93 0 V -32 0 5.6436604519175483e-07 1.6280330993721719e-07 4.6485077123992365e-04 4.6485117693795790e-04 0 2 0 P 175 22 3.8185582995770503e-02 2.3989543116426159e-02 1.5021587931467392e+01 1.5021655621792634e+01 0 1 0 0 0 0 P 176 22 3.8657404609546286e-01 9.8541346423998935e-02 3.3483971725665060e+02 3.3483995490742092e+02 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 177 211 1.7502709826283822e-01 -7.2253309396830834e-02 1.9461599680901642e+01 1.9463021269844411e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 7.6679618148417103e-02 1.5178037043949286e-01 2.0653328151497104e+02 2.0653339867966116e+02 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 179 211 1.6296883721185318e-01 5.6243079477968649e-01 8.2798181701248907e+00 8.3016718771611888e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -3.0346790935347329e-01 -1.8757485659103824e-02 3.3896571054307092e+00 3.4059417945808343e+00 1.3497999999999999e-01 2 0 0 -94 0 V -35 0 0 0 0 0 0 3 0 P 181 -211 1.9357415831584032e-01 5.5271447718090408e-02 3.1876873772349965e+00 3.1970856240619940e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 5.3124449692864362e-01 -7.7979213723395127e-02 5.6103361119600752e+00 5.6376992246264059e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 111 9.1515323729524131e-02 -6.3060342559535007e-02 4.6102441180354975e-01 4.9306669930127561e-01 1.3497999999999999e-01 2 0 0 -95 0 V -36 0 5.6399558106351325e-04 -2.3323778348715264e-04 4.3201567705729998e-03 4.3637833118717051e-03 0 2 0 P 184 22 6.0152711440246365e-01 -2.5407154692728640e-01 4.1453379317665098e+00 4.1964525243187989e+00 0 1 0 0 0 0 P 185 22 3.5310786323411864e-01 -1.4071336575483961e-01 3.1670824143036311e+00 3.1898113476146417e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 186 -211 1.1414130684189257e-01 2.6467084943073615e-01 6.4809866664659299e-01 7.2290425581473383e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 3.2712363280611384e-01 -4.7470383007830586e-01 2.4134463527893710e+00 2.4850143853957061e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -9.2152121994269624e-06 -1.1231324079235629e-04 2.5230505635093632e-04 2.8155770027142357e-04 0 2 0 P 188 22 4.4312363323561511e-02 -1.4226542374713172e-01 3.9594711711123376e-01 4.2305691802163847e-01 0 1 0 0 0 0 P 189 22 -6.7340218214903366e-02 -1.3839365988238528e-01 2.3453692387075067e-01 2.8052643145277134e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 190 211 4.0322473881604282e-01 6.3687839440575356e-01 5.4420540727985800e-01 9.4012955993668912e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 -1.7679511559657388e-01 1.0152183517950436e-02 2.6365183842505979e-01 3.4509632283451225e-01 1.3497999999999999e-01 2 0 0 -97 0 V -40 0 -1.1498802596763853e-04 6.7247069570746382e-05 3.2390857047193844e-04 3.5247329205758586e-04 0 2 0 P 192 22 -3.9541540899512673e-01 2.0790443889794896e-01 1.0051908558896452e+00 1.0999937536860889e+00 0 1 0 0 0 0 P 193 22 4.4753569250014945e-03 2.0724347954602883e-02 9.6044097407988055e-02 9.8356474442024944e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 194 -311 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -98 0 P 195 -211 -1.3776347211087997e-01 1.0257146128803515e-02 -1.9611982330692460e-01 2.7753694040378146e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 196 22 1.1928310723212228e-01 6.2424229046454179e-02 9.2406209769038995e-03 1.3494677883904066e-01 0 1 0 0 0 0 P 197 223 2.6680188424009266e-01 -6.8544172761614486e-01 5.2836400399609018e-03 1.0714883388311411e+00 7.7913139842235690e-01 2 0 0 -99 0 V -43 0 0 0 0 0 0 2 0 P 198 -211 1.1668201970610442e-01 -4.4466239966254167e-01 -9.0124037193265960e-01 1.0212998268371851e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -5.3976672328233366e-01 2.6701847245365407e-01 -5.9095888661832063e-01 8.5519539917354281e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 200 -211 -2.8285333140334207e-01 -1.2677482532142470e-01 2.5528442376328292e-01 4.2512090672818953e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 2.2362464054382813e-01 -2.3418634369213437e-01 -2.5021636808046721e-01 4.3090492534389380e-01 1.3497999999999999e-01 2 0 0 -100 0 V -45 0 0 0 0 0 0 3 0 P 202 -211 1.9376355805150766e-01 -3.8720878823476292e-03 -1.4890898146180365e+00 1.5081205423945816e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 211 9.0701539973870052e-02 -4.3171555039072046e-01 -4.4139722644893755e+00 4.4381568271506877e+00 1.3957000000000000e-01 1 0 0 0 0 P 204 111 1.6072866893977533e-01 6.9591842500069612e-02 -3.4550438170052566e+00 3.4621126653227159e+00 1.3497999999999999e-01 2 0 0 -101 0 V -46 0 0 0 0 0 0 2 0 P 205 211 3.1601308074546486e-01 8.1951041368575422e-02 -4.1020722236496665e+00 4.1174089611455589e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 -6.1522180745835209e-02 -6.0733684688208867e-01 -1.1888799490248854e+01 1.1905226412968625e+01 1.3497999999999999e-01 2 0 0 -102 0 V -47 0 0 0 0 0 0 2 0 P 207 22 1.3142818429080874e-01 -6.7188657540822996e-02 -5.0545426544338246e-01 5.2656594818030733e-01 0 1 0 0 0 0 P 208 22 -1.8553205495941319e-01 -1.1952908483987112e-01 -6.2258611519030262e+00 6.2297717797938148e+00 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 209 211 1.1527824663344002e-01 1.7618369235062545e-01 -4.4313150484662591e+00 4.4385090527406499e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 111 2.0735859074215474e-01 -5.6928542602508403e-01 -2.5949666847364426e+01 2.5957089832472430e+01 1.3497999999999999e-01 2 0 0 -103 0 V -49 0 0 0 0 0 0 2 0 P 211 321 -1.8049013031365618e-01 -1.0298015469208779e-01 -3.4192346740575754e+00 3.4609230438827532e+00 4.9359999999999998e-01 1 0 0 0 0 P 212 -211 1.5298024934895790e-01 -3.0365936560971507e-01 -9.7441039641700233e-01 1.0414256442775469e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 213 3122 4.1566977743454060e-02 -9.0669325462081497e-03 -2.8301295872369461e+00 3.0423979630972817e+00 1.1156800000000000e+00 2 0 0 -104 0 P 214 211 -1.3423983023009964e-01 7.4652142511476796e-02 -1.1903425842504611e+00 1.2082998498641908e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 215 -3122 1.4644010092526616e-01 2.9462648835286787e-01 -3.9129095753338130e+00 4.0821382482636706e+00 1.1156800000000000e+00 2 0 0 -105 0 P 216 -211 1.9265523446916299e-01 1.7836741321400194e-02 -4.6968299017624388e-01 5.2679795450460165e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 217 -311 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -106 0 P 218 111 -1.4885300802435425e-01 -1.4978228857165021e-01 -8.0617713874096109e-01 8.4423523463322847e-01 1.3497999999999999e-01 2 0 0 -107 0 V -53 0 0 0 0 0 0 2 0 P 219 211 -2.5375029447482039e-01 -3.8243313097061077e-01 -2.4079874229302018e+00 2.4553059942703834e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 111 -4.0605034167266918e-01 1.0419113344401808e-01 -6.2365046157657771e+00 6.2520350363004749e+00 1.3497999999999999e-01 2 0 0 -108 0 V -54 0 0 0 0 0 0 2 0 P 221 211 -6.8803944468509970e-01 -3.0625630690087424e-01 -8.1868653584578439e+00 8.2226173074864803e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 3.0680688701197723e-01 -5.9413044504183564e-04 -3.7665366047039095e+00 3.7815881053313332e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 223 22 1.4803887835073931e-01 1.4431039886464253e-01 -3.9233262621300380e+00 3.9287695223623227e+00 0 1 0 0 0 0 P 224 113 1.2724564690050806e-03 -2.5699343966021754e-01 -6.0533030078446757e+00 6.0954637981061488e+00 6.6794787376515263e-01 2 0 0 -109 0 V -56 0 0 0 0 0 0 2 0 P 225 22 2.7486911490570909e-01 2.4665741492151072e-01 -5.0974148933587955e+00 5.1107760179546959e+00 0 1 0 0 0 0 P 226 22 -8.4851642569558877e-02 -1.3430488632111803e-01 -6.2137901999118847e+00 6.2158206418989801e+00 0 1 0 0 0 0 V -57 0 -5.1384144154367772e-01 5.5767693277105579e+00 -3.0413460358706184e+03 3.0415488970824849e+03 0 2 0 P 227 2212 -5.5781591737588045e-02 1.8546033000560758e-01 -7.5892828715246239e+01 7.5898875539197462e+01 9.3827000000000005e-01 1 0 0 0 0 P 228 -211 3.9250378191989864e-02 -6.0455199156183590e-03 -2.1952803653356771e+01 2.1953283243474850e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 229 -3122 1.5817021808919415e-01 -4.6711831736620663e-01 -7.8043803566704312e+01 7.8053335831090763e+01 1.1156800000000000e+00 2 0 0 -110 0 P 230 22 5.6950107831742425e-02 -2.8242325151643891e-02 -9.9778913500794122e+00 9.9780938428991330e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 231 211 -2.2057048299308663e-01 1.2058414904337308e-01 -3.1752686671178758e+01 3.1753988450239152e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -8.2147545313916867e-02 -3.0257530845069952e-01 -6.1941299315425702e+01 6.1942239873288742e+01 1.3497999999999999e-01 2 0 0 -111 0 V -60 0 0 0 0 0 0 2 0 P 233 -211 -7.4626039256974197e-02 5.5212060759843820e-02 -7.2841457685032779e+01 7.2841650550236082e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -6.9623242931019416e-02 7.4834871425518823e-01 -8.4912093759457122e+01 8.4915527198559630e+01 1.3497999999999999e-01 2 0 0 -112 0 V -61 0 3.7095050924952572e-05 -7.9169489839899478e-05 -1.7544170721174722e-02 1.7544412920692747e-02 0 2 0 P 235 22 1.3051674595057553e-02 -1.0381379811796879e-02 -7.9006772465227870e-01 7.9024371480813493e-01 0 1 0 0 0 0 P 236 22 1.5822854990927002e-01 -3.5517056460000063e-01 -8.0217220981985307e+01 8.0218163307798491e+01 0 1 0 0 0 0 V -62 0 1.5640011215518141e-06 -4.7868165371285921e-06 -1.0214154633381629e-03 1.0215153944162522e-03 0 2 0 P 237 22 6.9792978338652722e-02 -1.5039179832264731e-02 -7.2497788692693597e+00 7.2501304050382371e+00 0 1 0 0 0 0 P 238 22 -5.4004809968391555e-02 -3.3282438614370767e-02 -3.0611340124110744e+00 3.0617912538512102e+00 0 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 239 211 -1.0358361896008007e-01 -4.6590364867594776e-02 -3.1691643432288359e+01 3.1692154288599902e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 3.0047787189330916e-01 -1.0565855736772548e-01 -3.2966525855497423e+01 3.2968340832741681e+01 1.3497999999999999e-01 2 0 0 -113 0 V -64 0 -5.1181826233904744e-04 -7.4269664342761776e-04 2.3540942018907534e-03 2.5211853382997506e-03 0 2 0 P 241 22 -5.8725538308890379e-01 -9.5414217075973340e-01 2.8620591107837323e+00 3.0735384364945171e+00 0 1 0 0 0 0 P 242 22 -1.5349199587979205e+00 -2.1253347044521020e+00 6.8988287576954406e+00 7.3801670112450930e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 243 -211 -4.1839656186445389e+00 -5.7883022373468282e+00 2.0736168567910838e+01 2.1932126612587918e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -1.6961465735080259e+00 -3.0711688591160131e+00 1.1281402400515939e+01 1.1815128060363703e+01 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 2 0 P 245 211 -7.9207809269603291e-01 -2.3846094897531902e+00 1.8521407113532455e+01 1.8691595741767490e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -3.4851215050104867e-01 -1.1460986601780454e-01 2.5898137519313642e+00 2.6191508185914563e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 247 211 -4.5509931606842358e-01 -3.3463298989938156e-01 2.3300753748670862e+00 2.4016297930524053e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 -4.9851877147551659e-04 9.3229964523111226e-03 4.4252672810506004e+00 4.4273352341923227e+00 1.3497999999999999e-01 2 0 0 -116 0 V -68 0 0 0 0 0 0 2 0 P 249 211 1.2633607542023662e-01 -4.9385416405376997e-02 1.6813651929675688e+00 1.6925922191505520e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -7.0074399667119702e-01 -1.3016859668671270e+00 1.2604355785947714e+01 1.2691520518395860e+01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 251 -321 -1.2669965574403158e-01 -3.0792559741866704e-01 1.6866098932232190e+00 1.7886209403419544e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 111 2.6081266798623448e-01 3.1352877930100587e-01 1.1053631750219604e+00 1.1859050941482230e+00 1.3497999999999999e-01 2 0 0 -117 0 V -70 0 0 0 0 0 0 2 0 P 253 321 7.1130158276548627e-01 3.9730596402338592e-01 2.1769947433776453e+00 2.3762889225401733e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 5.2114829778249550e-01 -1.8813383383031970e-02 2.6437827466436179e+00 2.6983358738352758e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 255 -211 8.5658487028361097e-01 4.6170671721684930e-01 2.1597437012294618e+00 2.3729482448258929e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 211 1.8317520616048497e-01 2.8065561972304365e-01 6.9972896405861429e-01 7.8830269635248829e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 2.3880032258145939e-01 7.2341851170135779e-02 1.3657528351175596e+00 1.3949047797349405e+00 1.3497999999999999e-01 2 0 0 -118 0 V -72 0 0 0 0 0 0 2 0 P 258 -211 1.2763369501819466e+00 4.7616414147585207e-01 2.7105047171436283e+00 3.0367884197923716e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 211 -1.9550549066303984e-02 -4.1851239178697201e-03 6.4430285205077642e-01 6.5954961094050124e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 260 -211 1.4406480739443299e+00 5.7294582521730630e-01 3.8418712804254009e+00 4.1452609702949896e+00 1.3957000000000000e-01 1 0 0 0 0 P 261 111 1.2961548694436184e-01 5.5032080063603842e-02 1.3919690329327078e-01 2.3963322511368726e-01 1.3497999999999999e-01 2 0 0 -119 0 V -74 0 0 0 0 0 0 2 0 P 262 -321 2.3467978243028602e+00 8.7581671916669590e-01 5.0381757927884312e+00 5.6481298880925079e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 211 6.4820470330761637e-01 5.5369802139962943e-01 2.1893070532482319e+00 2.3535709028186163e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 264 310 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -120 0 V -76 0 0 0 0 0 0 2 0 P 265 211 1.9538542758906119e-01 2.1777184809530614e-01 1.2671323496382063e+00 1.3079389204151113e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.4775217700160925e+00 6.3843664284640522e-01 1.8024416165661723e+00 2.4202659583876627e+00 1.3497999999999999e-01 2 0 0 -121 0 V -77 0 0 0 0 0 0 2 0 P 267 -211 1.2488741767569310e-01 3.8090232697473647e-01 3.5516549082212417e-01 5.5344896834251345e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 8.3497594461408564e-01 7.4619689546814610e-02 2.7807488837073568e-01 8.9347533267272949e-01 1.3497999999999999e-01 2 0 0 -122 0 V -78 0 0 0 0 0 0 2 0 P 269 2212 -9.2232292670682794e-02 1.1379748418494542e+00 1.6324744945112593e+00 2.2020029756163755e+00 9.3827000000000005e-01 1 0 0 0 0 P 270 211 1.3707574622716890e-02 3.1579333238337798e-01 5.4106086241540785e-01 6.4198128330780868e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 271 -211 -2.0630679887456405e-01 4.2374710124254417e-01 3.2449594031169304e-01 5.8898344734983732e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 6.3739980537461083e-01 5.4714498421988667e-01 6.0776632268911834e-01 1.0455838794872583e+00 1.3497999999999999e-01 2 0 0 -123 0 V -80 0 0 0 0 0 0 3 0 P 273 -211 1.5334866236891118e-01 4.5158223115453339e-01 2.8003428162375815e-01 5.7038698050479297e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 4.0722086739074048e-01 2.6508251451934939e-01 6.3393595605261185e-02 5.0950574796181791e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 2.8718199618658619e-01 -1.9808181541082735e-02 1.7273232276792508e-01 3.6183134015516061e-01 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 2 0 P 276 211 2.0154978183196928e-01 4.3429865194117984e-01 -1.4862327560746878e-02 4.9893717772377255e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -2.7096144954761930e-01 4.3005733037239829e-01 -3.2118082644087727e-02 5.2689713054894660e-01 1.3497999999999999e-01 2 0 0 -125 0 V -82 0 0 0 0 0 0 2 0 P 278 421 1.9143744857938487e+00 9.9772993986181735e+00 2.0368651444011325e+00 1.0527892136035650e+01 1.8645000000000000e+00 2 0 0 -126 0 P 279 22 6.5436942895674158e-02 4.8573503732573614e-01 2.3621813869137712e-01 5.4407676758724466e-01 0 1 0 0 0 0 V -83 0 9.3158625679084489e-05 4.5277443080327440e-05 1.4154168577331435e-03 1.4195955612927864e-03 0 2 0 P 280 22 6.0133077554468027e-02 8.1120094621999247e-02 9.5951376230901608e-01 9.6481247754579591e-01 0 1 0 0 0 0 P 281 22 3.1592260380037640e-01 1.0165245685629615e-01 4.7541337604611051e+00 4.7657033191264624e+00 0 1 0 0 0 0 V -84 0 2.3194919718120641e+01 9.0320585302742025e+00 1.9472780077286959e+03 1.9475633034498369e+03 0 2 0 P 282 -211 3.2899014348052175e-01 2.5432521102866373e-01 1.8344247268080039e+01 1.8349490550008031e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 211 1.9163934301953689e-01 -5.1593058824597436e-02 2.5364045821834221e+01 2.5365206242380879e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -1.8278419990207519e+02 -4.0449265532861070e+01 1.0015066615449587e+04 1.0017227546588516e+04 0 2 0 P 284 211 -8.6303227058914667e-01 -6.9112908356443833e-02 4.6000283128253848e+01 4.6008641894307154e+01 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 -1.3894645869463809e-01 -1.5262017196883429e-01 8.8998872716861932e+00 8.9033742069452231e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 2 0 P 286 321 9.3860133353128899e-02 -9.0077769540969452e-02 -3.0078943519050432e+00 3.0509003788096396e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -321 1.3618988579665145e-01 -9.8832610581916808e-02 -5.2390560679417950e+00 5.2649468195742948e+00 4.9359999999999998e-01 1 0 0 0 0 V -87 0 2.1932548233008348e-01 -1.3976113890248107e-01 -3.1645818630019038e+00 3.1945606003544724e+00 0 2 0 P 288 22 6.9273239458605015e-02 2.1583735867047225e-02 -2.8692066721167769e-01 2.9595288245303841e-01 0 1 0 0 0 0 P 289 22 1.9247039108249386e-01 5.8535161469356438e-02 -2.3420480450670231e+00 2.3506722999971634e+00 0 1 0 0 0 0 V -88 0 4.7888732563644145e-05 -1.0634653053609607e-04 -4.4218337957882582e-03 4.4237679412416622e-03 0 2 0 P 290 22 1.1627593184832767e-01 -2.5688553754755078e-01 -9.4705633195358434e+00 9.4747601479439059e+00 0 1 0 0 0 0 P 291 22 -7.1039085945537291e-03 1.4447175053511545e-02 -6.0989853726015519e-01 6.1011098345827497e-01 0 1 0 0 0 0 V -89 0 2.7989665861191741e-06 1.5766745659670319e-05 -1.7540385172393157e-03 1.7541501855240888e-03 0 2 0 P 292 22 -2.4564334390896319e-02 1.2586614939719518e-01 -1.6225936999026789e+01 1.6226443762897485e+01 0 1 0 0 0 0 P 293 22 5.7041028124667534e-02 5.7077002731444601e-02 -4.1263501644306082e+00 4.1271390990160279e+00 0 1 0 0 0 0 V -90 0 -1.6659800060248923e-04 1.5155286873553658e-04 -1.8754959952295668e-02 1.8756329599042085e-02 0 2 0 P 294 22 -7.3974616708617480e-01 6.0254421213368348e-01 -8.0148472874392638e+01 8.0154151408498777e+01 0 1 0 0 0 0 P 295 22 -1.3954716519448215e-01 1.9734189985589731e-01 -1.8838976996586958e+01 1.8840527368274092e+01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 296 211 2.0476936133392874e-02 9.1316000922192136e-02 -1.0448603186185416e+02 1.0448616698844991e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 -211 -1.9264491139159019e-02 2.5079280640141448e-05 -2.3844985149394361e+01 2.3845401394838909e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.5751482955295177e-02 1.8775977169153174e-01 -1.0744453521188308e+02 1.0744478520774781e+02 1.3497999999999999e-01 2 0 0 -127 0 V -92 0 1.8997502130095858e-06 -8.6887730274279145e-06 3.9906345517734896e-03 3.9906924788436415e-03 0 2 0 P 299 22 -5.9917957432297005e-02 -4.1537240124929473e-02 1.3919329915478281e+01 1.3919520853817806e+01 0 1 0 0 0 0 P 300 22 7.3016879963311687e-02 -1.8372512218535003e-02 1.3596399513213550e+01 1.3596607986438331e+01 0 1 0 0 0 0 V -93 0 6.4369338304830161e-05 -7.8216032323622550e-05 1.2694010285012669e-01 1.2694014628932984e-01 0 2 0 P 301 22 1.5868264013653646e-01 -1.2420659115557327e-01 1.9071826028136354e+02 1.9071836674061441e+02 0 1 0 0 0 0 P 302 22 1.5500342148435939e-01 -2.5695748138808933e-01 4.2788901413611688e+02 4.2788911936573703e+02 0 1 0 0 0 0 V -94 0 -1.1974657226291926e-04 -7.4015885789501519e-06 1.3375378648329906e-03 1.3439637031044875e-03 0 2 0 P 303 22 -2.5535126102248640e-01 -5.4301076686487849e-02 2.3261202389401259e+00 2.3407238708232878e+00 0 1 0 0 0 0 P 304 22 -4.8116648330986854e-02 3.5543591027384025e-02 1.0635368664905835e+00 1.0652179237575472e+00 0 1 0 0 0 0 V -95 0 8.3865667897269084e-06 -5.7789204376488588e-06 4.2248793575951405e-05 4.5185184698705130e-05 0 2 0 P 305 22 -7.4386887816514299e-03 1.7096912439986470e-02 2.1711601026946792e-01 2.1791512205696625e-01 0 1 0 0 0 0 P 306 22 9.8954012511175554e-02 -8.0157254999521477e-02 2.4390840153408183e-01 2.7515157724430922e-01 0 1 0 0 0 0 V -96 0 1.9704238135533929e-04 -2.8593707007579293e-04 1.4537354349718756e-03 1.4968443215194493e-03 0 2 0 P 307 22 1.0883558779781551e-01 -8.7138402176381469e-02 4.1970802411082808e-01 4.4225910031130433e-01 0 1 0 0 0 0 P 308 22 2.1828804500829832e-01 -3.8756542790192439e-01 1.9937383286785431e+00 2.0427552850844024e+00 0 1 0 0 0 0 V -97 0 -2.2019531221933132e-05 1.2644372056884850e-06 3.2837388455731629e-05 4.2981160591385249e-05 0 2 0 P 309 22 -1.9271554372318800e-01 -1.4442293172495155e-02 2.3252199710018881e-01 3.0234804408175781e-01 0 1 0 0 0 0 P 310 22 1.5920428126614140e-02 2.4594476690445590e-02 3.1129841324870962e-02 4.2748278752754561e-02 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 311 310 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -128 0 V -99 0 0 0 0 0 0 3 0 P 312 -211 3.3708344961490527e-02 -3.8195038478618437e-01 1.8532978879020140e-01 4.4816209620111541e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 211 -5.3442209570627876e-02 -2.2146634310668603e-01 -1.0876039161808590e-01 2.8846493474555740e-01 1.3957000000000000e-01 1 0 0 0 0 P 314 111 2.8653574884923000e-01 -8.2024999723274442e-02 -7.1285757132154612e-02 3.3486130788446838e-01 1.3497999999999999e-01 2 0 0 -129 0 V -100 0 8.3231665057211033e-05 -8.7162663612360094e-05 -9.3128936459144842e-05 1.6038006514177639e-04 0 2 0 P 315 22 -5.1661193948099992e-03 -2.4810046140043979e-02 8.8078615708871242e-03 2.6829193139646452e-02 0 1 0 0 0 0 P 316 22 2.2879075993863815e-01 -2.0937629755209039e-01 -2.5902422965135435e-01 4.0407573220424731e-01 0 1 0 0 0 0 V -101 0 4.9023823157233946e-05 2.1226195690003698e-05 -1.0538223093779641e-03 1.0559783775649671e-03 0 2 0 P 317 22 1.6469980756415120e-02 6.1084307068275619e-02 -1.6820717405300594e+00 1.6832610888171657e+00 0 1 0 0 0 0 P 318 22 1.4425868818336021e-01 8.5075354317939913e-03 -1.7729720764751975e+00 1.7788515765055497e+00 0 1 0 0 0 0 V -102 0 -1.0248114430443839e-05 -1.0116769966893501e-04 -1.9803878233773521e-03 1.9831241532949758e-03 0 2 0 P 319 22 -5.1903991300502862e-02 -6.1200428464747358e-01 -1.1631967535653756e+01 1.1648172046258704e+01 0 1 0 0 0 0 P 320 22 -9.6181894453323483e-03 4.6674377653848969e-03 -2.5683195459509767e-01 2.5705436670992060e-01 0 1 0 0 0 0 V -103 0 8.8741246029353963e-05 -2.4363156535258678e-04 -1.1105427375059752e-02 1.1108604118040998e-02 0 2 0 P 321 22 4.7274198055564369e-02 -9.7976794113359938e-02 -2.8800431704285150e+00 2.8820969736493010e+00 0 1 0 0 0 0 P 322 22 1.6008439268659036e-01 -4.7130863191172406e-01 -2.3069623676935912e+01 2.3074992858823126e+01 0 1 0 0 0 0 V -104 0 2.1527444674318521e+00 -4.6957440581547205e-01 -1.4657177744896254e+02 1.5756510909227748e+02 0 2 0 P 323 2212 -3.4840977164562907e-02 -5.2186920231660723e-02 -2.5431382500112334e+00 2.7114276903327603e+00 9.3827000000000005e-01 1 0 0 0 0 P 324 -211 7.6407954908016967e-02 4.3119987685452575e-02 -2.8699133722571285e-01 3.3097027276452179e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 1.3265726186690680e+01 2.6689645098168672e+01 -3.5446292847168172e+02 3.6979302742572571e+02 0 2 0 P 325 -2212 1.5958067549103055e-01 3.2060398680402924e-01 -3.1567066142395404e+00 3.3126122848332966e+00 9.3827000000000005e-01 1 0 0 0 0 P 326 211 -1.3140574565764420e-02 -2.5977498451161360e-02 -7.5620296109427276e-01 7.6952596343037361e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 327 310 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -130 0 V -107 0 -1.5337379937032414e-06 -1.5433130295128232e-06 -8.3066141810159461e-06 8.6987537045143330e-06 0 2 0 P 328 22 -3.7307630759296821e-02 -1.2225377224602654e-01 -3.1814608849567771e-01 3.4286262229405373e-01 0 1 0 0 0 0 P 329 22 -1.1154537726505742e-01 -2.7528516325623684e-02 -4.8803105024528337e-01 5.0137261233917474e-01 0 1 0 0 0 0 V -108 0 -7.8865836476704740e-05 2.0236704785591708e-05 -1.2112959964202977e-03 1.2143124194609939e-03 0 2 0 P 330 22 -1.5131833213718898e-01 1.0698233076824459e-01 -2.5065299923812407e+00 2.5133712538031645e+00 0 1 0 0 0 0 P 331 22 -2.5473200953548020e-01 -2.7911973242265094e-03 -3.7299746233845359e+00 3.7386637824973112e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 332 211 3.7300131581517355e-02 -3.3225499072101472e-01 -1.6566492137336521e+00 1.6958039630037867e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.6027675112512272e-02 7.5261551060797169e-02 -4.3966537941110237e+00 4.3996598351023630e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 2.6405701837519837e+00 -7.7982993007320696e+00 -1.3029010341796770e+03 1.3030601704154778e+03 0 2 0 P 334 -2212 1.7220395755946979e-01 -3.8237278977060402e-01 -7.1908607895458388e+01 7.1915951660316892e+01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 -1.4033739470275641e-02 -8.4745527595602610e-02 -6.1351956712459277e+00 6.1373841707738768e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 -7.1427905328503207e-06 -2.6309149475094311e-05 -5.3858423237354690e-03 5.3859241059454428e-03 0 2 0 P 336 22 -3.5770985869032337e-02 -2.8953305563906762e-01 -5.0984607136736621e+01 5.0985441783327843e+01 0 1 0 0 0 0 P 337 22 -4.6376559444884530e-02 -1.3042252811631894e-02 -1.0956692178689083e+01 1.0956798089960902e+01 0 1 0 0 0 0 V -112 0 -1.7551842520711538e-05 1.8865680813227385e-04 -2.1406122941536796e-02 2.1406988502804772e-02 0 2 0 P 338 22 -8.0286668814878143e-02 5.7779065752968028e-01 -5.9525675858009009e+01 5.9528534118907011e+01 0 1 0 0 0 0 P 339 22 1.0663425883858725e-02 1.7055805672550797e-01 -2.5386417901448109e+01 2.5386993079652637e+01 0 1 0 0 0 0 V -113 0 6.7187333606529885e-05 -2.3625422722544653e-05 -7.3713680030589928e-03 7.3717738348789202e-03 0 2 0 P 340 22 -1.2335498355771022e-02 -7.4059523706035222e-03 -2.7159042999156084e+00 2.7159424108309609e+00 0 1 0 0 0 0 P 341 22 3.1281337024908018e-01 -9.8252604997121948e-02 -3.0250621555581812e+01 3.0252398421910719e+01 0 1 0 0 0 0 V -114 0 -8.1021390797921325e-04 -1.4670334287573128e-03 5.3888910717802690e-03 5.6438407084497396e-03 0 2 0 P 342 22 -4.8587594651029892e-01 -9.8067409406381123e-01 3.3872364013090688e+00 3.5596583477236079e+00 0 1 0 0 0 0 P 343 22 -1.2102706269977270e+00 -2.0904947650522021e+00 7.8941659992068693e+00 8.2554697126400942e+00 0 1 0 0 0 0 V -115 0 -9.8516456018675041e-05 -3.2397601657837485e-05 7.3208142735309983e-04 7.4037434865636194e-04 0 2 0 P 344 22 -1.0582060976970183e-01 2.7773008509941854e-02 7.5655810671428558e-01 7.6442757033536479e-01 0 1 0 0 0 0 P 345 22 -2.4269154073134683e-01 -1.4238287452774639e-01 1.8332556452170787e+00 1.8547232482560911e+00 0 1 0 0 0 0 V -116 0 -2.1261866108416613e-08 3.9762655619080825e-07 1.8873800909275420e-04 1.8882620746227122e-04 0 2 0 P 346 22 1.3701766050722928e-02 1.6877052404695968e-02 1.1492474511622532e-01 1.1696268777182300e-01 0 1 0 0 0 0 P 347 22 -1.4200284822198445e-02 -7.5540559523848460e-03 4.3103425359343746e+00 4.3103725464205001e+00 0 1 0 0 0 0 V -117 0 3.9659449652515547e-05 4.7675517195196901e-05 1.6808269140455216e-04 1.8032998066073807e-04 0 2 0 P 348 22 2.2189777329585378e-01 1.7090452012840207e-01 7.7175710376428419e-01 8.2100913758898786e-01 0 1 0 0 0 0 P 349 22 3.8914894690380696e-02 1.4262425917260380e-01 3.3360607125767611e-01 3.6489595655923507e-01 0 1 0 0 0 0 V -118 0 4.9824731096665069e-05 1.5093837573680184e-05 2.8495886026714965e-04 2.9104129678065308e-04 0 2 0 P 350 22 1.5711280955429704e-01 1.0490351873218232e-01 1.0622832091644729e+00 1.0789507864778676e+00 0 1 0 0 0 0 P 351 22 8.1687513027162359e-02 -3.2561667562046530e-02 3.0346962595308674e-01 3.1595399325707280e-01 0 1 0 0 0 0 V -119 0 3.3823228722222976e-05 1.4360649910993738e-05 3.6323504301105803e-05 6.2532414710160219e-05 0 2 0 P 352 22 1.5473104914365582e-01 6.3661750907534731e-02 1.2865456110435905e-01 2.1106044676979319e-01 0 1 0 0 0 0 P 353 22 -2.5115562199293982e-02 -8.6296708439308929e-03 1.0542342188911721e-02 2.8572778343894122e-02 0 1 0 0 0 0 V -120 0 4.8572525032297548e+01 2.8544033180682732e+01 1.3950388584931414e+02 1.5358972150787298e+02 0 2 0 P 354 111 5.1654591582856790e-01 4.5730537088227718e-01 1.8375361352708055e+00 1.9674111248600072e+00 1.3497999999999999e-01 2 0 0 -131 0 P 355 111 2.6591599044471420e-01 2.5146323074637399e-03 4.0975235511759373e-01 5.0678815127649712e-01 1.3497999999999999e-01 2 0 0 -132 0 V -121 0 6.6642964961977059e-04 2.8796401977340636e-04 8.1298330715980180e-04 1.0916502398589912e-03 0 2 0 P 356 22 1.0177129125649877e+00 3.7069054974771970e-01 1.2106855245682948e+00 1.6244723744874781e+00 0 1 0 0 0 0 P 357 22 4.5980885745110484e-01 2.6774609309868552e-01 5.9175609199787738e-01 7.9579358390018506e-01 0 1 0 0 0 0 V -122 0 1.7430972560220277e-04 1.5577619562966499e-05 5.8050962786920530e-05 1.8652206818066101e-04 0 3 0 P 358 22 2.8736228462862523e-01 6.2337796790484991e-02 1.5309029325025983e-01 3.3151126892328320e-01 0 1 0 0 0 0 P 359 11 3.9021046762354122e-01 1.2288367788971719e-02 8.4696183425568741e-02 3.9948581528354338e-01 5.1000000000000004e-04 1 0 0 0 0 P 360 -11 1.5740319236191927e-01 -6.4750326420938465e-06 4.0288411694907128e-02 1.6247824846590309e-01 5.1000000000000004e-04 1 0 0 0 0 V -123 0 8.1987514462796568e-05 7.0378209922122772e-05 7.8175816420573375e-05 1.3449144903824778e-04 0 2 0 P 361 22 3.4433217110872449e-01 2.7338575327507170e-01 3.9774502332559170e-01 5.9287900766893564e-01 0 1 0 0 0 0 P 362 22 2.9306763426588633e-01 2.7375923094481497e-01 2.1002129936352670e-01 4.5270487181832270e-01 0 1 0 0 0 0 V -124 0 1.1525069614002883e-05 -7.9493378491408561e-07 6.9320224489119165e-06 1.4520866346742673e-05 0 2 0 P 363 22 -5.5261422719354953e-03 -1.0875404177234163e-02 3.7191125654135376e-02 3.9140675669302898e-02 0 1 0 0 0 0 P 364 22 2.9270813845852167e-01 -8.9327773638485722e-03 1.3554119711378970e-01 3.2269066448585765e-01 0 1 0 0 0 0 V -125 0 -6.0138627269926064e-05 9.5449214414613208e-05 -7.1284583249102415e-06 1.1694235544052164e-04 0 2 0 P 365 22 1.4806878555669097e-02 3.6451249127863940e-02 1.1053419039329224e-03 3.9359357162795768e-02 0 1 0 0 0 0 P 366 22 -2.8576832810328845e-01 3.9360608124453439e-01 -3.3223424548020651e-02 4.8753777338615073e-01 0 1 0 0 0 0 V -126 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 3 0 P 367 -321 9.0973991892192296e-03 1.6695573778195438e+00 5.3498051780683975e-01 1.8213593041837060e+00 4.9359999999999998e-01 1 0 0 0 0 P 368 311 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 2 0 0 -133 0 P 369 211 9.0953373940276727e-01 4.8017960527329260e+00 6.6594685369729034e-01 4.9343147398603193e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 1.7989748316348035e-06 2.1444019247280622e-05 -1.2271226473815835e-02 1.2271255025811223e-02 0 2 0 P 370 22 -2.3564685434985310e-02 1.2853845306975048e-01 -9.1298002518840178e+01 9.1298096044542277e+01 0 1 0 0 0 0 P 371 22 3.9316168390280487e-02 5.9221318621781253e-02 -1.6146532693042897e+01 1.6146689163205540e+01 0 1 0 0 0 0 V -128 0 -7.4110418624237212e+01 1.1480778126668004e+02 1.2284156326431871e+01 1.4772911339205135e+02 0 2 0 P 372 -211 -6.0577836167837174e-01 7.3827051501716001e-01 -4.4786304566678758e-02 9.6617616136922679e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -6.7622827127023610e-02 3.0492554060204241e-01 1.5640577221039809e-01 3.7615818818793517e-01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 2.8428750945630758e-05 -8.1381408700782695e-06 -7.0726429201931359e-06 3.3223389267859981e-05 0 2 0 P 374 22 1.9879161434333362e-01 -1.1717448571255196e-01 -6.6812368314700762e-02 2.4023292570971397e-01 0 1 0 0 0 0 P 375 22 8.7744134505896368e-02 3.5149485989277515e-02 -4.4733888174538494e-03 9.4628382174754361e-02 0 1 0 0 0 0 V -130 0 4.3587815190089977e+01 1.9499557712227041e+01 -2.0295725607435622e+02 2.1421615704265062e+02 0 2 0 P 376 -211 1.2645607786858875e-02 -5.9626725518012832e-02 -2.6911317671398299e-01 3.0921989679415995e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 4.2860738668408754e-01 2.5702680611061518e-01 -1.7854861786759948e+00 1.8593568108683693e+00 1.3957000000000000e-01 1 0 0 0 0 V -131 0 4.8572822087881093e+01 2.8544296168172600e+01 1.3950494258086931e+02 1.5359085292802723e+02 0 2 0 P 378 22 1.0371190939819742e-01 1.6694820163323085e-01 5.7866817046209762e-01 6.1113395723486119e-01 0 1 0 0 0 0 P 379 22 4.1283400643037049e-01 2.9035716924904637e-01 1.2588679648087078e+00 1.3562771676251462e+00 0 1 0 0 0 0 V -132 0 4.8572620458929656e+01 2.8544034083083869e+01 1.3950403289307476e+02 1.5358990337390662e+02 0 2 0 P 380 22 5.8013958732285417e-02 2.7385983767221966e-02 2.0152939904897688e-01 2.1149399564936031e-01 0 1 0 0 0 0 P 381 22 2.0790203171242877e-01 -2.4871351459758224e-02 2.0822295606861682e-01 2.9529415562713685e-01 0 1 0 0 0 0 V -133 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 1 0 P 382 130 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testCrossSection.output0000644000175000017500000052223711374257600022404 0ustar sylvestresylvestre________________________________________________________________________________ GenEvent: #1 ID=20 SignalProcessGenVertex Barcode: 0 Momenutm units: GEV Position units: MM Cross Section: 0.003326 +/- 0.0001 Entries this event: 357 vertices, 1046 particles. Beam Particle barcodes: 1 2 RndmState(0)= Wgts(3)=(0,0.3456) (second weight name,0.98596) (weightName,0.98563) EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ GenVertex: -1 ID: 0 (X,cT):0 I: 1 1 2212 +0.00e+00,+0.00e+00,+7.00e+03,+7.00e+03 3 -1 O: 3 3 -1 +7.25e-02,+4.09e-01,+2.33e+02,+2.33e+02 3 -3 11 2214 -1.17e-01,-8.59e-03,+6.34e+02,+6.34e+02 2 -25 91 1 +4.43e-02,-4.01e-01,+6.45e+02,+6.45e+02 2 -26 GenVertex: -2 ID: 0 (X,cT):0 I: 1 2 2212 +0.00e+00,+0.00e+00,-7.00e+03,+7.00e+03 3 -2 O: 2 4 2 +7.85e-02,+3.22e-01,-1.50e+01,+1.50e+01 3 -4 95 2103 -7.85e-02,-3.22e-01,-3.02e+03,+3.02e+03 2 -28 GenVertex: -3 ID: 0 (X,cT):0 I: 1 3 -1 +7.25e-02,+4.09e-01,+2.33e+02,+2.33e+02 3 -3 O: 1 5 -1 +4.59e-02,+2.59e-01,+1.48e+02,+1.48e+02 3 -5 GenVertex: -4 ID: 0 (X,cT):0 I: 1 4 2 +7.85e-02,+3.22e-01,-1.50e+01,+1.50e+01 3 -4 O: 5 6 2 -2.78e+00,-2.29e+01,-1.44e+00,+2.31e+01 3 -5 12 -5 +3.79e+00,+3.68e+00,+1.65e+01,+1.80e+01 2 -26 92 5 -8.13e-01,+1.56e+01,+4.82e+01,+5.09e+01 2 -9 93 -1 -5.37e-01,+1.09e+00,+2.60e+00,+2.89e+00 2 -9 94 1 +4.44e-01,+2.98e+00,+4.72e+00,+5.61e+00 2 -28 GenVertex: -5 ID: 0 (X,cT):0 I: 2 5 -1 +4.59e-02,+2.59e-01,+1.48e+02,+1.48e+02 3 -5 6 2 -2.78e+00,-2.29e+01,-1.44e+00,+2.31e+01 3 -5 O: 2 7 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 3 -6 8 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 3 -7 GenVertex: -6 ID: 0 (X,cT):0 I: 1 7 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 3 -6 O: 1 9 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 2 -8 GenVertex: -7 ID: 0 (X,cT):0 I: 1 8 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 3 -7 O: 1 10 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 1 GenVertex: -8 ID: 0 (X,cT):0 I: 1 9 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 2 -8 O: 9 96 2 +2.72e-01,-1.98e+00,+7.89e+00,+8.14e+00 2 -30 97 21 -1.90e+00,-3.77e+00,+9.26e+00,+1.02e+01 2 -30 98 -2 -3.96e+00,-1.68e+01,+3.58e+01,+3.97e+01 2 -30 99 -1 +5.96e+00,+2.37e+01,+3.17e+01,+4.01e+01 2 -32 100 21 +2.07e+00,+3.84e+00,+6.69e+00,+7.99e+00 2 -32 101 21 +4.61e-01,+5.32e-01,+2.00e+00,+2.12e+00 2 -32 102 21 +4.80e-01,-9.35e-02,+4.55e-01,+6.68e-01 2 -32 103 21 -1.08e+00,-2.89e+00,+6.76e+00,+7.43e+00 2 -32 104 2 -5.26e+00,-2.37e+01,+4.67e+01,+5.26e+01 2 -32 GenVertex: -9 ID: 0 (X,cT):0 I: 2 92 5 -8.13e-01,+1.56e+01,+4.82e+01,+5.09e+01 2 -9 93 -1 -5.37e-01,+1.09e+00,+2.60e+00,+2.89e+00 2 -9 O: 1 155 91 -1.35e+00,+1.67e+01,+5.08e+01,+5.38e+01 2 -10 GenVertex: -10 ID: 0 (X,cT):0 I: 1 155 91 -1.35e+00,+1.67e+01,+5.08e+01,+5.38e+01 2 -10 O: 2 156 -513 -1.28e+00,+1.58e+01,+4.81e+01,+5.09e+01 2 -42 164 21 -7.23e-02,+8.95e-01,+2.72e+00,+2.88e+00 2 -43 GenVertex: -11 ID: 0 (X,cT):0 I: 1 107 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -11 O: 1 157 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -43 GenVertex: -12 ID: 0 (X,cT):0 I: 1 108 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -12 O: 1 158 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -43 GenVertex: -13 ID: 0 (X,cT):0 I: 1 109 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -13 O: 1 159 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -43 GenVertex: -14 ID: 0 (X,cT):0 I: 1 110 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -14 O: 1 160 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -43 GenVertex: -15 ID: 0 (X,cT):0 I: 1 111 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -15 O: 1 161 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -43 GenVertex: -16 ID: 0 (X,cT):0 I: 1 112 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -16 O: 1 162 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -43 GenVertex: -17 ID: 0 (X,cT):0 I: 1 113 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -17 O: 1 163 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -43 GenVertex: -18 ID: 0 (X,cT):0 I: 1 114 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -18 O: 1 165 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -43 GenVertex: -19 ID: 0 (X,cT):0 I: 1 115 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -19 O: 1 166 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -43 GenVertex: -20 ID: 0 (X,cT):0 I: 1 116 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -20 O: 1 167 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -43 GenVertex: -21 ID: 0 (X,cT):0 I: 1 117 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -21 O: 1 168 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -43 GenVertex: -22 ID: 0 (X,cT):0 I: 1 118 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -22 O: 1 169 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -43 GenVertex: -23 ID: 0 (X,cT):0 I: 1 119 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -23 O: 1 170 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -43 GenVertex: -24 ID: 0 (X,cT):0 I: 1 120 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -24 O: 1 171 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -43 GenVertex: -25 ID: 0 (X,cT):0 I: 1 11 2214 -1.17e-01,-8.59e-03,+6.34e+02,+6.34e+02 2 -25 O: 2 172 2112 -1.34e-01,-3.50e-02,+6.13e+02,+6.13e+02 1 173 211 +1.72e-02,+2.65e-02,+2.08e+01,+2.08e+01 1 GenVertex: -26 ID: 0 (X,cT):0 I:80 12 -5 +3.79e+00,+3.68e+00,+1.65e+01,+1.80e+01 2 -26 13 21 -1.19e+00,-2.65e+00,-1.23e+01,+1.26e+01 2 -26 14 21 +1.78e+00,-1.36e+00,-1.46e+01,+1.47e+01 2 -26 15 21 +2.86e+00,-1.59e+00,-2.14e+01,+2.16e+01 2 -26 16 21 +1.18e+00,+2.21e-01,-5.80e+00,+5.93e+00 2 -26 17 21 +5.15e-01,-4.90e-02,-1.50e+00,+1.59e+00 2 -26 18 21 +1.72e+00,-1.62e-01,-8.88e+00,+9.04e+00 2 -26 19 21 +7.40e+00,-8.43e-01,-5.45e+01,+5.50e+01 2 -26 20 21 +7.08e-01,+1.28e-01,-4.16e+01,+4.16e+01 2 -26 21 21 +2.32e+00,-1.84e+00,-1.64e+02,+1.64e+02 2 -26 22 21 +4.28e+00,-8.42e+00,-4.59e+02,+4.59e+02 2 -26 23 21 -4.87e-01,-1.64e+00,-9.91e+01,+9.91e+01 2 -26 24 21 -1.34e+00,-2.58e+00,-1.14e+02,+1.14e+02 2 -26 25 21 -5.52e-01,-6.40e-01,-3.64e+01,+3.64e+01 2 -26 26 21 -4.09e+00,-1.53e+00,-1.81e+02,+1.81e+02 2 -26 27 21 -7.08e-01,-1.28e-01,-7.24e+01,+7.24e+01 2 -26 28 21 -4.19e-01,+1.01e+00,-8.68e+01,+8.68e+01 2 -26 29 21 -4.28e+00,+8.42e+00,-5.32e+02,+5.32e+02 2 -26 30 21 +1.19e+00,+2.65e+00,-8.18e+01,+8.18e+01 2 -26 31 21 +3.56e+00,+3.80e+00,-1.01e+02,+1.01e+02 2 -26 32 21 +3.23e+00,+6.31e+00,-7.59e+01,+7.63e+01 2 -26 33 21 +3.93e-01,+1.09e+00,-1.13e+01,+1.13e+01 2 -26 34 21 -4.82e-01,+1.27e+00,-6.63e+00,+6.77e+00 2 -26 35 21 +4.96e-01,+2.22e+00,-6.61e+00,+6.99e+00 2 -26 36 21 +2.55e+00,+2.31e-01,-2.49e+00,+3.57e+00 2 -26 37 21 +4.09e+00,+1.53e+00,-2.39e+00,+4.98e+00 2 -26 38 21 +5.57e+00,+1.82e+00,-2.31e+00,+6.30e+00 2 -26 39 21 +4.78e+00,+1.45e+00,+3.06e+00,+5.86e+00 2 -26 40 21 +1.10e+00,+2.56e-01,+1.01e+00,+1.51e+00 2 -26 41 21 +3.14e+00,+1.02e+00,+1.26e+01,+1.30e+01 2 -26 42 21 +7.17e-01,+4.25e-01,+2.95e+00,+3.07e+00 2 -26 43 21 +3.20e+00,+2.32e+00,+9.40e+00,+1.02e+01 2 -26 44 21 +6.97e-01,+3.43e-01,+1.27e+00,+1.49e+00 2 -26 45 21 +2.10e+00,+3.38e+00,+2.30e+00,+4.60e+00 2 -26 46 21 +3.13e+00,+3.61e+00,-5.41e-01,+4.81e+00 2 -26 47 21 +9.15e-01,+1.42e+00,+1.42e-01,+1.70e+00 2 -26 48 21 +5.60e-01,+2.29e+00,+1.94e-01,+2.36e+00 2 -26 49 21 +6.45e-02,+5.36e+00,-7.89e-01,+5.42e+00 2 -26 50 21 -2.09e+00,+2.72e+00,+2.39e-01,+3.44e+00 2 -26 51 21 -2.32e+00,+1.84e+00,+1.28e+00,+3.22e+00 2 -26 52 21 -1.15e+00,+7.00e-01,+1.19e+00,+1.80e+00 2 -26 53 21 -1.67e+00,+1.02e+00,+1.44e+00,+2.43e+00 2 -26 54 21 -2.86e+00,+1.59e+00,-4.53e-01,+3.30e+00 2 -26 55 21 -1.72e+00,+1.62e-01,-1.35e-01,+1.73e+00 2 -26 56 21 -4.78e+00,-1.45e+00,-3.97e-01,+5.02e+00 2 -26 57 21 -1.82e+00,-1.01e+00,-5.53e-01,+2.16e+00 2 -26 58 21 -2.10e+00,-3.38e+00,+4.98e-01,+4.01e+00 2 -26 59 21 -3.23e+00,-6.31e+00,-3.25e+00,+7.80e+00 2 -26 60 21 -4.96e-01,-2.22e+00,-6.25e-01,+2.36e+00 2 -26 61 21 -6.45e-02,-5.36e+00,-3.21e+00,+6.24e+00 2 -26 62 21 +6.17e-01,-2.22e+00,-1.09e+00,+2.55e+00 2 -26 63 21 +4.82e-01,-1.27e+00,-3.87e-01,+1.41e+00 2 -26 64 21 +7.68e-01,-1.81e+00,-1.82e+00,+2.68e+00 2 -26 65 21 +1.74e+00,-1.13e+00,-9.48e-01,+2.28e+00 2 -26 66 21 +1.67e+00,-1.02e+00,+3.06e+00,+3.64e+00 2 -26 67 21 +2.25e+00,-5.09e+00,+1.11e+01,+1.24e+01 2 -26 68 21 +2.09e+00,-2.72e+00,+1.65e+01,+1.68e+01 2 -26 69 21 -5.60e-01,-2.29e+00,+2.24e+01,+2.25e+01 2 -26 70 21 -3.56e+00,-3.80e+00,+2.58e+01,+2.63e+01 2 -26 71 21 -7.40e+00,+8.43e-01,+6.26e+01,+6.31e+01 2 -26 72 21 -1.07e+00,+2.35e-01,+2.17e+01,+2.17e+01 2 -26 73 21 -3.14e+00,-1.02e+00,+5.20e+01,+5.21e+01 2 -26 74 21 -7.60e-01,-1.41e-01,+1.74e+01,+1.74e+01 2 -26 75 21 -5.57e+00,-1.82e+00,+1.33e+02,+1.33e+02 2 -26 76 21 -3.13e+00,-3.61e+00,+1.47e+02,+1.47e+02 2 -26 77 21 -3.93e-01,-1.09e+00,+7.76e+01,+7.76e+01 2 -26 78 21 -4.17e-01,-6.93e-01,+6.82e+01,+6.83e+01 2 -26 79 21 -3.20e+00,-2.32e+00,+2.74e+02,+2.74e+02 2 -26 80 21 -1.94e+00,-1.94e+00,+3.76e+02,+3.76e+02 2 -26 81 21 -6.97e-01,-3.43e-01,+2.16e+02,+2.16e+02 2 -26 82 21 -1.04e+00,-6.03e-01,+2.80e+02,+2.80e+02 2 -26 83 21 -6.19e-01,+7.60e-01,+8.91e+01,+8.91e+01 2 -26 84 21 -2.25e+00,+5.09e+00,+5.45e+02,+5.45e+02 2 -26 85 21 +4.17e-01,+6.93e-01,+9.31e+01,+9.31e+01 2 -26 86 21 +1.94e+00,+1.94e+00,+5.95e+02,+5.95e+02 2 -26 87 21 +1.82e+00,+1.01e+00,+5.01e+02,+5.01e+02 2 -26 88 21 +9.18e-01,-2.42e+00,+9.16e+02,+9.16e+02 2 -26 89 21 +6.97e-01,-6.00e-01,+2.30e+02,+2.30e+02 2 -26 90 21 +7.60e-01,+1.41e-01,+1.35e+02,+1.35e+02 2 -26 91 1 +4.43e-02,-4.01e-01,+6.45e+02,+6.45e+02 2 -26 O: 1 174 92 +1.07e+01,-6.50e+00,+3.40e+03,+7.89e+03 2 -27 GenVertex: -27 ID: 0 (X,cT):0 I: 1 174 92 +1.07e+01,-6.50e+00,+3.40e+03,+7.89e+03 2 -27 O:132 175 -5114 +2.97e+00,+3.13e+00,+1.50e+01,+1.67e+01 2 -45 176 1114 +6.25e-01,+7.46e-01,+7.57e-01,+1.75e+00 2 -46 177 223 -6.85e-02,-3.39e-01,-1.74e+00,+1.93e+00 2 -47 178 113 -6.77e-02,-1.28e+00,-3.82e+00,+4.10e+00 2 -48 179 -313 +2.01e-01,-6.42e-01,-7.05e+00,+7.13e+00 2 -49 180 323 +1.18e+00,-1.70e+00,-1.21e+01,+1.24e+01 2 -50 181 -2214 +7.61e-01,-3.78e-01,-7.05e+00,+7.19e+00 2 -51 182 111 +4.48e-01,-2.60e-01,-6.04e+00,+6.07e+00 2 -52 183 3122 +3.99e+00,-6.60e-01,-2.59e+01,+2.62e+01 2 -53 184 323 +2.96e+00,-9.29e-01,-1.97e+01,+2.00e+01 2 -54 185 -213 +1.15e+00,+1.85e-01,-7.15e+00,+7.28e+00 2 -55 186 211 +1.50e+00,-3.95e-01,-9.24e+00,+9.37e+00 1 187 -2224 +1.73e+00,-1.28e-01,-4.01e+01,+4.02e+01 2 -56 188 213 +6.91e-01,-5.69e-01,-1.92e+01,+1.93e+01 2 -57 189 2114 +7.32e-01,-1.04e-02,-4.16e+01,+4.16e+01 2 -58 190 223 +1.05e+00,-1.58e+00,-6.13e+01,+6.14e+01 2 -59 191 -2112 +1.18e+00,-1.48e+00,-1.09e+02,+1.09e+02 1 192 113 +1.89e-01,-1.12e+00,-6.39e+01,+6.40e+01 2 -60 193 2112 +1.44e+00,-1.65e+00,-1.34e+02,+1.34e+02 1 194 211 +8.92e-01,-2.51e+00,-1.31e+02,+1.31e+02 1 195 -213 +9.39e-01,-7.81e-01,-7.57e+01,+7.57e+01 2 -61 196 211 -8.19e-01,-2.56e+00,-1.03e+02,+1.03e+02 1 197 -213 -1.57e-01,-1.15e+00,-7.89e+01,+7.90e+01 2 -62 198 211 -1.87e+00,-3.14e-01,-8.13e+01,+8.13e+01 1 199 -213 -7.59e-01,-9.29e-01,-8.85e+01,+8.85e+01 2 -63 200 211 +7.06e-02,-3.57e-01,-1.38e+01,+1.38e+01 1 201 -321 +3.60e-01,+1.93e-01,-1.53e+01,+1.53e+01 1 202 331 -2.38e+00,-1.40e-01,-1.58e+02,+1.58e+02 2 -64 203 313 -9.05e-01,+1.29e+00,-8.10e+01,+8.10e+01 2 -65 204 223 -6.04e-01,+2.55e-02,-6.38e+01,+6.38e+01 2 -66 205 111 -1.63e+00,+1.91e+00,-1.16e+02,+1.16e+02 2 -67 206 213 -6.82e-01,+9.06e-01,-1.09e+02,+1.09e+02 2 -68 207 111 -7.18e-01,+3.10e+00,-1.77e+02,+1.77e+02 2 -69 208 111 -4.76e-01,+2.92e-01,-2.30e+01,+2.30e+01 2 -70 209 -211 +2.84e-01,+1.11e+00,-5.18e+01,+5.18e+01 1 210 -2112 +1.87e+00,+2.35e+00,-5.26e+01,+5.27e+01 1 211 2212 +1.33e+00,+1.80e+00,-4.90e+01,+4.91e+01 1 212 113 +1.97e-01,+1.12e+00,-2.41e+01,+2.41e+01 2 -71 213 -213 +1.65e+00,+3.01e+00,-4.51e+01,+4.53e+01 2 -72 214 -1114 +8.75e-02,+8.50e-01,-1.67e+01,+1.68e+01 2 -73 215 1114 +1.62e+00,+3.63e+00,-4.43e+01,+4.45e+01 2 -74 216 213 +9.92e-01,+1.25e+00,-8.87e+00,+9.05e+00 2 -75 217 -211 +2.42e-01,+1.38e+00,-4.14e+00,+4.37e+00 1 218 -313 -1.59e-02,-2.78e-01,-4.06e+00,+4.17e+00 2 -76 219 313 +2.44e+00,+2.14e+00,-4.58e+00,+5.69e+00 2 -77 220 223 +1.56e+00,+2.32e-01,-1.40e-01,+1.77e+00 2 -78 221 213 +2.22e+00,+8.42e-01,-1.50e+00,+3.04e+00 2 -79 222 -213 +2.08e+00,+7.28e-01,-8.57e-01,+2.46e+00 2 -80 223 111 +1.84e-01,+1.52e-01,-5.80e-01,+6.42e-01 2 -81 224 213 +3.55e+00,+5.20e-01,-9.76e-01,+3.81e+00 2 -82 225 -3224 +1.87e+00,+5.94e-01,+1.41e+00,+2.76e+00 2 -83 226 211 +2.94e-01,+8.36e-02,+4.76e-01,+5.83e-01 1 227 3114 +1.60e+00,+2.09e-01,+1.82e+00,+2.80e+00 2 -84 228 221 -9.46e-02,+5.18e-02,+7.92e-01,+9.69e-01 2 -85 229 211 +2.62e-01,-7.29e-02,+2.71e-01,+4.08e-01 1 230 223 +7.63e-01,+6.36e-01,+1.60e+00,+2.04e+00 2 -86 231 -213 +1.93e+00,+1.18e+00,+4.85e+00,+5.41e+00 2 -87 232 211 +1.32e+00,+7.37e-01,+7.01e-01,+1.67e+00 1 233 221 +2.30e+00,+1.13e+00,+4.74e+00,+5.42e+00 2 -88 234 -321 +9.63e-01,+2.19e-01,+6.13e+00,+6.23e+00 1 235 311 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -89 236 211 +6.26e-01,+1.56e+00,+1.81e+00,+2.47e+00 1 237 -211 +3.28e-01,+1.61e-01,+1.16e+00,+1.22e+00 1 238 211 +5.24e-01,+4.80e-01,+2.10e-02,+7.24e-01 1 239 -213 +4.26e-01,+3.32e-01,+2.61e-01,+9.44e-01 2 -90 240 213 +1.97e+00,+3.54e+00,+6.95e-01,+4.18e+00 2 -91 241 -211 +1.12e+00,+2.16e+00,+4.43e-01,+2.48e+00 1 242 -311 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 2 -92 243 221 +5.60e-01,+2.26e+00,-9.49e-01,+2.57e+00 2 -93 244 331 -1.78e-01,+3.39e+00,-1.29e-01,+3.53e+00 2 -94 245 323 -1.46e+00,+1.76e+00,+7.60e-02,+2.46e+00 2 -95 246 113 -7.13e-02,+1.10e+00,+2.52e-01,+1.37e+00 2 -96 247 -321 -1.36e+00,+1.68e+00,+1.30e+00,+2.57e+00 1 248 313 -3.34e+00,+2.53e+00,+4.36e-01,+4.30e+00 2 -97 249 211 -2.27e-01,-5.21e-02,+5.20e-01,+5.86e-01 1 250 113 -1.73e+00,+2.43e-01,+3.22e-01,+1.90e+00 2 -98 251 111 -1.23e+00,+5.03e-01,+4.32e-01,+1.40e+00 2 -99 252 -213 -1.37e+00,+4.96e-01,-6.17e-01,+1.79e+00 2 -100 253 -313 -4.14e+00,-9.70e-01,-1.83e-01,+4.34e+00 2 -101 254 323 -1.82e+00,-2.06e+00,+3.82e-01,+2.98e+00 2 -102 255 223 -1.77e+00,-1.17e+00,-1.29e+00,+2.61e+00 2 -103 256 221 -1.62e+00,-2.23e+00,-7.74e-01,+2.92e+00 2 -104 257 -213 -9.37e-01,-1.60e+00,-2.97e-02,+2.02e+00 2 -105 258 -311 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -106 259 313 +5.28e-01,-3.04e+00,-2.11e+00,+3.83e+00 2 -107 260 -2112 +4.85e-02,-1.10e+00,-1.11e+00,+1.82e+00 1 261 -213 -3.88e-01,-3.68e+00,-1.68e+00,+4.11e+00 2 -108 262 2212 +1.40e+00,-3.56e+00,-1.39e+00,+4.17e+00 1 263 221 +3.86e-01,-2.43e-01,-5.22e-01,+8.83e-01 2 -109 264 213 +6.60e-01,+7.54e-03,+3.09e-01,+1.06e+00 2 -110 265 -211 +5.44e-02,-4.37e-01,-2.76e-01,+5.39e-01 1 266 113 +1.88e+00,-2.26e+00,+3.80e+00,+4.88e+00 2 -111 267 211 +3.05e-01,-1.72e+00,+5.15e+00,+5.44e+00 1 268 -213 +1.75e+00,-1.09e+00,+4.84e+00,+5.30e+00 2 -112 269 211 -5.10e-02,-7.65e-01,+1.28e+00,+1.50e+00 1 270 -213 +2.75e-01,-7.46e-01,+3.58e+00,+3.71e+00 2 -113 271 211 +8.48e-01,-1.43e+00,+6.38e+00,+6.60e+00 1 272 -213 +5.49e-01,-8.59e-01,+4.94e+00,+5.10e+00 2 -114 273 213 -1.23e-01,-9.83e-01,+1.02e+01,+1.03e+01 2 -115 274 -2212 -9.17e-01,-2.39e+00,+1.40e+01,+1.43e+01 1 275 -213 -8.17e-01,-4.40e-01,+6.33e+00,+6.43e+00 2 -116 276 2214 -1.47e+00,-8.16e-01,+1.57e+01,+1.58e+01 2 -117 277 -2114 -1.63e+00,-2.92e-01,+1.75e+01,+1.77e+01 2 -118 278 2114 -2.08e+00,-5.72e-01,+1.79e+01,+1.80e+01 2 -119 279 213 -1.31e+00,-2.14e-01,+1.54e+01,+1.55e+01 2 -120 280 -213 -4.14e+00,+3.06e-01,+4.39e+01,+4.41e+01 2 -121 281 331 -1.14e+00,-1.65e-01,+2.04e+01,+2.04e+01 2 -122 282 213 -3.10e+00,-7.17e-01,+6.54e+01,+6.55e+01 2 -123 283 -211 -2.68e-01,-1.16e-01,+5.23e+00,+5.24e+00 1 284 223 -3.06e+00,-1.62e+00,+8.97e+01,+8.98e+01 2 -124 285 213 -2.34e+00,-1.51e+00,+7.21e+01,+7.21e+01 2 -125 286 111 +2.41e-01,-6.95e-02,+9.09e+00,+9.09e+00 2 -126 287 -213 -2.43e+00,-2.24e+00,+1.15e+02,+1.15e+02 2 -127 288 -311 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -128 289 323 -2.24e+00,-1.25e+00,+1.78e+02,+1.78e+02 2 -129 290 -213 -2.82e-01,-1.33e+00,+1.30e+02,+1.30e+02 2 -130 291 211 -1.00e+00,-1.07e+00,+2.28e+02,+2.28e+02 1 292 -211 -2.29e-01,-2.35e-01,+1.43e+01,+1.43e+01 1 293 211 -7.18e-01,-4.35e-01,+7.77e+01,+7.78e+01 1 294 -323 -1.36e+00,-9.45e-01,+2.00e+02,+2.00e+02 2 -131 295 -3224 -1.00e+00,+4.60e-01,+2.91e+02,+2.91e+02 2 -132 296 111 -5.26e-01,+2.28e-01,+5.25e+01,+5.25e+01 2 -133 297 2214 -1.35e+00,+1.56e+00,+2.21e+02,+2.21e+02 2 -134 298 111 +2.16e-01,+1.76e-01,+1.84e+02,+1.84e+02 2 -135 299 223 -1.42e+00,+2.20e+00,+2.31e+02,+2.31e+02 2 -136 300 -2112 +2.46e+00,+2.14e+00,+7.52e+02,+7.52e+02 1 301 311 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 2 -137 302 3224 +1.84e+00,+1.04e+00,+5.97e+02,+5.97e+02 2 -138 303 111 +1.87e-01,-8.63e-01,+4.77e+02,+4.77e+02 2 -139 304 -213 +1.83e+00,-9.66e-01,+5.25e+02,+5.25e+02 2 -140 305 223 +2.24e-01,-1.03e+00,+5.52e+02,+5.52e+02 2 -141 306 111 -2.24e-01,+1.74e-01,+1.69e+02,+1.69e+02 2 -142 GenVertex: -28 ID: 0 (X,cT):0 I: 2 94 1 +4.44e-01,+2.98e+00,+4.72e+00,+5.61e+00 2 -28 95 2103 -7.85e-02,-3.22e-01,-3.02e+03,+3.02e+03 2 -28 O: 1 307 92 +3.66e-01,+2.65e+00,-3.02e+03,+3.03e+03 2 -29 GenVertex: -29 ID: 0 (X,cT):0 I: 1 307 92 +3.66e-01,+2.65e+00,-3.02e+03,+3.03e+03 2 -29 O: 8 308 3112 +5.26e-01,+2.21e+00,+3.28e+00,+4.17e+00 2 -143 309 -3212 -5.78e-01,+7.66e-01,+9.85e-01,+1.82e+00 2 -144 310 113 +4.47e-01,+1.09e-01,-1.69e+01,+1.69e+01 2 -145 311 111 -3.27e-01,-4.99e-01,-4.05e+00,+4.10e+00 2 -146 312 2212 +5.81e-01,+2.30e-01,-8.68e+01,+8.68e+01 1 313 -2112 +5.12e-02,+5.07e-01,-1.37e+02,+1.37e+02 1 314 331 -2.68e-01,-4.02e-01,-1.57e+03,+1.57e+03 2 -147 315 2112 -6.74e-02,-2.69e-01,-1.20e+03,+1.20e+03 1 GenVertex: -30 ID: 0 (X,cT):0 I: 3 96 2 +2.72e-01,-1.98e+00,+7.89e+00,+8.14e+00 2 -30 97 21 -1.90e+00,-3.77e+00,+9.26e+00,+1.02e+01 2 -30 98 -2 -3.96e+00,-1.68e+01,+3.58e+01,+3.97e+01 2 -30 O: 1 316 92 -5.59e+00,-2.26e+01,+5.29e+01,+5.81e+01 2 -31 GenVertex: -31 ID: 0 (X,cT):0 I: 1 316 92 -5.59e+00,-2.26e+01,+5.29e+01,+5.81e+01 2 -31 O: 4 317 323 -3.37e-01,-2.39e+00,+7.93e+00,+8.34e+00 2 -148 318 -313 -1.44e+00,-3.44e+00,+8.45e+00,+9.29e+00 2 -149 319 313 -1.28e+00,-6.78e+00,+1.54e+01,+1.69e+01 2 -150 320 -323 -2.53e+00,-9.96e+00,+2.12e+01,+2.36e+01 2 -151 GenVertex: -32 ID: 0 (X,cT):0 I: 6 99 -1 +5.96e+00,+2.37e+01,+3.17e+01,+4.01e+01 2 -32 100 21 +2.07e+00,+3.84e+00,+6.69e+00,+7.99e+00 2 -32 101 21 +4.61e-01,+5.32e-01,+2.00e+00,+2.12e+00 2 -32 102 21 +4.80e-01,-9.35e-02,+4.55e-01,+6.68e-01 2 -32 103 21 -1.08e+00,-2.89e+00,+6.76e+00,+7.43e+00 2 -32 104 2 -5.26e+00,-2.37e+01,+4.67e+01,+5.26e+01 2 -32 O: 1 321 92 +2.63e+00,+1.44e+00,+9.43e+01,+1.11e+02 2 -33 GenVertex: -33 ID: 0 (X,cT):0 I: 1 321 92 +2.63e+00,+1.44e+00,+9.43e+01,+1.11e+02 2 -33 O:14 322 -311 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 2 -152 323 323 +4.15e+00,+1.53e+01,+1.94e+01,+2.50e+01 2 -153 324 111 +2.37e-01,+1.23e+00,+3.40e+00,+3.63e+00 2 -154 325 -321 +1.02e+00,+2.00e+00,+2.51e+00,+3.40e+00 1 326 321 +1.31e-01,+2.90e-01,+7.60e-01,+9.60e-01 1 327 223 +6.45e-01,+5.98e-01,+2.79e+00,+3.02e+00 2 -155 328 -213 -5.74e-01,-4.18e-01,+1.17e+00,+1.54e+00 2 -156 329 -311 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 2 -157 330 313 -1.54e-01,-5.69e-01,+2.78e+00,+2.98e+00 2 -158 331 211 -5.09e-01,-8.23e-01,+8.70e-01,+1.31e+00 1 332 -211 -2.07e-01,-4.09e+00,+8.09e+00,+9.07e+00 1 333 -2112 -7.35e-01,-2.39e+00,+5.25e+00,+5.89e+00 1 334 223 -4.42e-01,-3.12e+00,+6.81e+00,+7.55e+00 2 -159 335 2212 -3.11e+00,-1.27e+01,+2.51e+01,+2.83e+01 1 GenVertex: -34 ID: 0 (X,cT):0 I: 2 105 1 +1.03e+00,-8.55e-02,+5.10e+01,+5.10e+01 2 -34 106 -1 -1.03e+00,+8.55e-02,-1.56e-01,+1.05e+00 2 -34 O: 1 336 92 +0.00e+00,+0.00e+00,+5.08e+01,+5.21e+01 2 -35 GenVertex: -35 ID: 0 (X,cT):0 I: 1 336 92 +0.00e+00,+0.00e+00,+5.08e+01,+5.21e+01 2 -35 O: 5 337 -211 +9.05e-01,+1.23e-01,+3.72e+01,+3.72e+01 1 338 321 +1.30e-01,+2.37e-01,+9.06e+00,+9.07e+00 1 339 -313 +2.23e-01,-3.92e-01,+3.24e+00,+3.39e+00 2 -160 340 -211 -5.56e-01,-3.09e-01,+6.93e-01,+9.51e-01 1 341 213 -7.02e-01,+3.41e-01,+6.17e-01,+1.39e+00 2 -161 GenVertex: -36 ID: 0 (X,cT):0 I:12 121 21 +9.48e-01,+2.64e+00,-2.58e+02,+2.58e+02 2 -36 122 21 +5.52e-01,+6.40e-01,-1.87e+02,+1.87e+02 2 -36 123 21 +2.87e-01,+6.69e-01,-1.77e+02,+1.77e+02 2 -36 124 21 -6.17e-01,+2.22e+00,-6.64e+02,+6.64e+02 2 -36 125 21 +4.19e-01,-1.01e+00,-2.68e+02,+2.68e+02 2 -36 126 21 -9.82e-01,-9.83e-01,-1.20e+01,+1.21e+01 2 -36 127 21 -7.17e-01,-4.25e-01,-1.14e+01,+1.15e+01 2 -36 128 21 -1.10e+00,-2.56e-01,-8.42e+00,+8.50e+00 2 -36 129 21 -4.79e-01,-1.12e+00,-2.60e+00,+2.87e+00 2 -36 130 21 +1.00e-01,-3.07e-01,-8.77e-01,+9.34e-01 2 -36 131 21 -2.87e-01,-6.69e-01,-8.89e-01,+1.15e+00 2 -36 132 21 -9.48e-01,-2.64e+00,-5.08e+00,+5.81e+00 2 -36 O: 1 342 92 -2.82e+00,-1.24e+00,-1.59e+03,+1.60e+03 2 -37 GenVertex: -37 ID: 0 (X,cT):0 I: 1 342 92 -2.82e+00,-1.24e+00,-1.59e+03,+1.60e+03 2 -37 O:20 343 323 -3.56e-01,+1.54e-01,-4.40e+01,+4.41e+01 2 -162 344 3312 +1.93e-01,+1.13e+00,-7.54e+01,+7.54e+01 2 -163 345 -3112 +3.25e-01,+3.05e-02,-5.56e+01,+5.56e+01 2 -164 346 313 +1.81e-01,+1.27e-01,-1.52e+02,+1.52e+02 2 -165 347 3122 +1.78e-01,+1.80e+00,-2.11e+02,+2.11e+02 2 -166 348 -2212 +1.50e-01,+8.62e-01,-2.57e+02,+2.57e+02 1 349 211 +4.61e-01,+8.56e-01,-2.11e+02,+2.11e+02 1 350 113 +3.21e-01,+1.00e-01,-2.82e+02,+2.82e+02 2 -167 351 313 -6.62e-02,+3.82e-01,-1.53e+02,+1.53e+02 2 -168 352 -313 -1.95e-01,-7.59e-01,-9.20e+01,+9.20e+01 2 -169 353 -213 -9.56e-01,-5.98e-01,-1.82e+01,+1.82e+01 2 -170 354 211 -1.17e+00,-2.57e-01,-9.07e+00,+9.15e+00 1 355 113 +8.60e-04,-9.71e-01,-6.38e+00,+6.50e+00 2 -171 356 -213 -7.28e-01,-1.83e+00,-5.39e+00,+5.81e+00 2 -172 357 321 -3.12e-01,-3.34e-01,-1.55e+00,+1.69e+00 1 358 -323 -9.54e-01,-6.81e-01,-3.54e+00,+3.85e+00 2 -173 359 213 +2.75e-01,-3.52e-01,-5.09e+00,+5.16e+00 2 -174 360 223 -2.27e-01,+3.89e-02,-4.86e+00,+4.93e+00 2 -175 361 111 +9.80e-02,-6.51e-01,-6.55e+00,+6.59e+00 2 -176 362 -211 -3.97e-02,-2.85e-01,-2.40e-01,+4.00e-01 1 GenVertex: -38 ID: 0 (X,cT):0 I:15 133 21 +1.69e+00,-2.11e+00,+5.72e+01,+5.73e+01 2 -38 134 21 +4.80e-01,-8.43e-01,+2.89e+01,+2.89e+01 2 -38 135 21 +1.07e+00,-2.35e-01,+5.27e+01,+5.27e+01 2 -38 136 21 +6.19e-01,-7.60e-01,+6.51e+01,+6.51e+01 2 -38 137 21 +1.52e+00,-3.02e-01,+9.95e+01,+9.96e+01 2 -38 138 21 +4.79e-01,+1.12e+00,+4.35e+01,+4.36e+01 2 -38 139 21 +4.87e-01,+1.64e+00,+1.81e+01,+1.82e+01 2 -38 140 21 +1.04e+00,+6.03e-01,+1.09e+01,+1.09e+01 2 -38 141 21 +5.59e-02,+3.64e-01,-2.57e-01,+4.49e-01 2 -38 142 21 -1.69e+00,+2.11e+00,-2.31e+00,+3.56e+00 2 -38 143 21 -5.15e-01,+4.90e-02,-6.10e-01,+8.00e-01 2 -38 144 21 -1.78e+00,+1.36e+00,-5.33e+00,+5.78e+00 2 -38 145 21 -4.80e-01,+8.43e-01,-2.69e+00,+2.86e+00 2 -38 146 21 -7.68e-01,+1.81e+00,-5.69e+00,+6.02e+00 2 -38 147 21 +1.15e+00,-7.00e-01,+1.68e+01,+1.69e+01 2 -38 O: 1 363 92 +3.35e+00,+4.94e+00,+3.76e+02,+4.13e+02 2 -39 GenVertex: -39 ID: 0 (X,cT):0 I: 1 363 92 +3.35e+00,+4.94e+00,+3.76e+02,+4.13e+02 2 -39 O:26 364 331 +1.50e-01,-7.24e-01,+1.85e+00,+2.21e+00 2 -177 365 -213 +5.38e-01,-3.87e-01,+1.13e+01,+1.13e+01 2 -178 366 213 +1.14e+00,-8.39e-01,+3.72e+01,+3.72e+01 2 -179 367 -211 -1.89e-02,+1.17e-01,+2.41e+00,+2.42e+00 1 368 113 +5.80e-01,-5.07e-01,+4.90e+01,+4.90e+01 2 -180 369 213 +1.41e+00,-1.69e+00,+6.99e+01,+7.00e+01 2 -181 370 113 +7.98e-01,-3.28e-01,+4.63e+01,+4.63e+01 2 -182 371 311 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 2 -183 372 333 +7.88e-01,-1.35e-01,+8.26e+01,+8.26e+01 2 -184 373 -311 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -185 374 -213 +1.71e-01,+1.06e+00,+2.95e+01,+2.95e+01 2 -186 375 113 +3.21e-01,-4.01e-01,+6.30e+00,+6.35e+00 2 -187 376 223 +7.41e-01,+1.31e+00,+1.59e+01,+1.59e+01 2 -188 377 213 +5.16e-01,+3.01e-01,+1.29e+00,+1.54e+00 2 -189 378 -211 -5.64e-01,+3.80e-01,+8.43e-01,+1.09e+00 1 379 213 -2.56e-01,+6.07e-01,-6.71e-01,+1.20e+00 2 -190 380 113 +1.27e-01,+4.85e-01,-4.72e-01,+9.84e-01 2 -191 381 223 -1.71e+00,+1.18e+00,-2.61e+00,+3.43e+00 2 -192 382 313 -1.23e+00,+1.01e+00,-3.51e+00,+3.96e+00 2 -193 383 -313 -6.29e-01,+4.19e-01,-1.97e+00,+2.30e+00 2 -194 384 221 -7.02e-02,-6.45e-03,-9.32e-01,+1.08e+00 2 -195 385 111 -2.89e-01,+1.47e+00,-2.61e+00,+3.01e+00 2 -196 386 111 -5.37e-01,+3.07e-01,-1.09e+00,+1.26e+00 2 -197 387 223 +2.28e-01,+3.89e-01,-1.03e-01,+9.08e-01 2 -198 388 -211 -3.32e-01,+2.86e-01,+1.14e-01,+4.74e-01 1 389 213 +9.33e-02,+2.48e-01,-1.45e+00,+1.54e+00 2 -199 GenVertex: -40 ID: 0 (X,cT):0 I: 7 148 21 -5.25e-01,+6.81e-01,-4.06e+01,+4.06e+01 2 -40 149 21 -2.86e-01,+7.12e-01,-1.53e+01,+1.54e+01 2 -40 150 21 +5.25e-01,-6.81e-01,-7.52e+00,+7.57e+00 2 -40 151 21 +5.12e-01,-1.79e-01,-8.96e+00,+8.98e+00 2 -40 152 21 -1.38e-01,-4.86e-01,-9.49e+00,+9.50e+00 2 -40 153 21 -5.59e-02,-3.64e-01,-5.56e+00,+5.57e+00 2 -40 154 21 +2.86e-01,-7.12e-01,-1.16e+01,+1.16e+01 2 -40 O: 1 390 92 +3.19e-01,-1.03e+00,-9.90e+01,+9.91e+01 2 -41 GenVertex: -41 ID: 0 (X,cT):0 I: 1 390 92 +3.19e-01,-1.03e+00,-9.90e+01,+9.91e+01 2 -41 O: 5 391 211 -1.74e-01,+3.56e-01,-3.27e+01,+3.27e+01 1 392 -2112 +2.75e-01,-7.82e-02,-1.39e+01,+1.40e+01 1 393 -211 -7.58e-02,+3.06e-01,-5.07e+00,+5.08e+00 1 394 2212 +7.14e-01,-1.67e+00,-2.27e+01,+2.28e+01 1 395 -211 -4.20e-01,+5.38e-02,-2.46e+01,+2.46e+01 1 GenVertex: -42 ID: 0 (X,cT):0 I: 1 156 -513 -1.28e+00,+1.58e+01,+4.81e+01,+5.09e+01 2 -42 O: 2 396 -511 -1.22e+00,+1.57e+01,+4.76e+01,+5.04e+01 2 -200 397 22 -5.75e-02,+1.72e-01,+5.26e-01,+5.56e-01 1 GenVertex: -43 ID: 0 (X,cT):0 I:15 157 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -43 158 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -43 159 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -43 160 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -43 161 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -43 162 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -43 163 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -43 164 21 -7.23e-02,+8.95e-01,+2.72e+00,+2.88e+00 2 -43 165 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -43 166 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -43 167 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -43 168 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -43 169 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -43 170 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -43 171 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -43 O: 1 398 92 -7.74e+00,+8.01e+00,+5.91e+01,+6.76e+01 2 -44 GenVertex: -44 ID: 0 (X,cT):0 I: 1 398 92 -7.74e+00,+8.01e+00,+5.91e+01,+6.76e+01 2 -44 O:18 399 333 +8.18e-01,+5.20e-01,+9.12e-01,+1.68e+00 2 -201 400 -311 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 2 -202 401 223 +4.99e-01,+1.27e+00,+5.22e-01,+1.67e+00 2 -203 402 -213 +2.13e-01,+8.72e-01,+8.27e-01,+1.37e+00 2 -204 403 223 +7.28e-01,+1.30e+00,+1.53e+00,+2.27e+00 2 -205 404 2224 +5.22e-01,+1.37e+00,+2.42e+00,+3.06e+00 2 -206 405 223 -2.53e-01,+1.28e+00,+2.00e+00,+2.51e+00 2 -207 406 -2212 +3.42e-01,+1.60e+00,+1.20e+00,+2.24e+00 1 407 -211 -5.48e-01,+6.70e-01,+2.61e+00,+2.76e+00 1 408 2114 -2.21e+00,+9.88e-01,+8.99e+00,+9.40e+00 2 -208 409 213 -1.20e+00,+5.02e-01,+4.41e+00,+4.67e+00 2 -209 410 -2114 -3.70e+00,+9.29e-01,+1.30e+01,+1.36e+01 2 -210 411 -211 -9.14e-01,-1.46e+00,+8.48e+00,+8.66e+00 1 412 221 -6.28e-01,-4.17e-01,+1.39e+00,+1.67e+00 2 -211 413 223 -7.07e-01,-1.43e+00,+4.89e+00,+5.20e+00 2 -212 414 211 -9.64e-01,+7.37e-02,+4.24e+00,+4.36e+00 1 415 -211 -7.96e-02,-2.43e-01,+1.21e-01,+3.16e-01 1 416 321 -7.83e-02,-3.98e-01,+7.59e-01,+9.92e-01 1 GenVertex: -45 ID: 0 (X,cT):0 I: 1 175 -5114 +2.97e+00,+3.13e+00,+1.50e+01,+1.67e+01 2 -45 O: 2 417 -5122 +2.88e+00,+2.97e+00,+1.43e+01,+1.60e+01 2 -213 418 211 +9.11e-02,+1.55e-01,+6.68e-01,+7.06e-01 1 GenVertex: -46 ID: 0 (X,cT):0 I: 1 176 1114 +6.25e-01,+7.46e-01,+7.57e-01,+1.75e+00 2 -46 O: 2 419 2112 +7.00e-01,+6.74e-01,+7.98e-01,+1.57e+00 1 420 -211 -7.48e-02,+7.23e-02,-4.13e-02,+1.79e-01 1 GenVertex: -47 ID: 0 (X,cT):0 I: 1 177 223 -6.85e-02,-3.39e-01,-1.74e+00,+1.93e+00 2 -47 O: 3 421 211 +3.05e-03,-7.66e-03,-1.12e+00,+1.13e+00 1 422 -211 -6.63e-02,-3.31e-02,-3.45e-01,+3.79e-01 1 423 111 -5.20e-03,-2.98e-01,-2.69e-01,+4.24e-01 2 -214 GenVertex: -48 ID: 0 (X,cT):0 I: 1 178 113 -6.77e-02,-1.28e+00,-3.82e+00,+4.10e+00 2 -48 O: 2 424 -211 -2.54e-01,-1.83e-01,-1.33e+00,+1.37e+00 1 425 211 +1.86e-01,-1.09e+00,-2.49e+00,+2.73e+00 1 GenVertex: -49 ID: 0 (X,cT):0 I: 1 179 -313 +2.01e-01,-6.42e-01,-7.05e+00,+7.13e+00 2 -49 O: 2 426 -311 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 2 -215 427 111 -6.92e-02,-4.91e-01,-2.96e+00,+3.00e+00 2 -216 GenVertex: -50 ID: 0 (X,cT):0 I: 1 180 323 +1.18e+00,-1.70e+00,-1.21e+01,+1.24e+01 2 -50 O: 2 428 311 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -217 429 211 +8.89e-01,-6.87e-01,-5.63e+00,+5.74e+00 1 GenVertex: -51 ID: 0 (X,cT):0 I: 1 181 -2214 +7.61e-01,-3.78e-01,-7.05e+00,+7.19e+00 2 -51 O: 2 430 -2112 +4.96e-01,-1.97e-01,-4.83e+00,+4.95e+00 1 431 -211 +2.65e-01,-1.80e-01,-2.22e+00,+2.25e+00 1 Vertex: -52 ID: 0 (X,cT)=+1.34e-04,-7.77e-05,-1.81e-03,+1.81e-03 I: 1 182 111 +4.48e-01,-2.60e-01,-6.04e+00,+6.07e+00 2 -52 O: 2 432 22 +2.92e-01,-9.68e-02,-3.73e+00,+3.75e+00 1 433 22 +1.56e-01,-1.63e-01,-2.31e+00,+2.32e+00 1 Vertex: -53 ID: 0 (X,cT)=+1.42e+02,-2.35e+01,-9.23e+02,+9.35e+02 I: 1 183 3122 +3.99e+00,-6.60e-01,-2.59e+01,+2.62e+01 2 -53 O: 2 434 2112 +3.42e+00,-4.75e-01,-2.17e+01,+2.20e+01 1 435 111 +5.77e-01,-1.85e-01,-4.18e+00,+4.23e+00 2 -218 GenVertex: -54 ID: 0 (X,cT):0 I: 1 184 323 +2.96e+00,-9.29e-01,-1.97e+01,+2.00e+01 2 -54 O: 2 436 321 +2.46e+00,-7.37e-01,-1.43e+01,+1.46e+01 1 437 111 +4.99e-01,-1.92e-01,-5.37e+00,+5.40e+00 2 -219 GenVertex: -55 ID: 0 (X,cT):0 I: 1 185 -213 +1.15e+00,+1.85e-01,-7.15e+00,+7.28e+00 2 -55 O: 2 438 -211 +7.38e-01,+3.77e-01,-5.50e+00,+5.57e+00 1 439 111 +4.16e-01,-1.92e-01,-1.65e+00,+1.72e+00 2 -220 GenVertex: -56 ID: 0 (X,cT):0 I: 1 187 -2224 +1.73e+00,-1.28e-01,-4.01e+01,+4.02e+01 2 -56 O: 2 440 -2212 +1.17e+00,+9.29e-02,-2.62e+01,+2.62e+01 1 441 -211 +5.63e-01,-2.21e-01,-1.40e+01,+1.40e+01 1 GenVertex: -57 ID: 0 (X,cT):0 I: 1 188 213 +6.91e-01,-5.69e-01,-1.92e+01,+1.93e+01 2 -57 O: 2 442 211 -5.25e-02,+1.22e-01,-2.97e+00,+2.97e+00 1 443 111 +7.44e-01,-6.91e-01,-1.63e+01,+1.63e+01 2 -221 GenVertex: -58 ID: 0 (X,cT):0 I: 1 189 2114 +7.32e-01,-1.04e-02,-4.16e+01,+4.16e+01 2 -58 O: 2 444 2212 +8.34e-01,+9.03e-02,-3.59e+01,+3.59e+01 1 445 -211 -1.02e-01,-1.01e-01,-5.71e+00,+5.71e+00 1 GenVertex: -59 ID: 0 (X,cT):0 I: 1 190 223 +1.05e+00,-1.58e+00,-6.13e+01,+6.14e+01 2 -59 O: 3 446 211 +6.31e-01,-6.22e-01,-2.45e+01,+2.45e+01 1 447 -211 +2.72e-02,-6.12e-02,-5.55e+00,+5.56e+00 1 448 111 +3.87e-01,-9.01e-01,-3.13e+01,+3.13e+01 2 -222 GenVertex: -60 ID: 0 (X,cT):0 I: 1 192 113 +1.89e-01,-1.12e+00,-6.39e+01,+6.40e+01 2 -60 O: 2 449 -211 +9.17e-02,-8.32e-01,-2.20e+01,+2.20e+01 1 450 211 +9.71e-02,-2.93e-01,-4.20e+01,+4.20e+01 1 GenVertex: -61 ID: 0 (X,cT):0 I: 1 195 -213 +9.39e-01,-7.81e-01,-7.57e+01,+7.57e+01 2 -61 O: 2 451 -211 +4.33e-01,-7.16e-01,-5.20e+01,+5.20e+01 1 452 111 +5.06e-01,-6.51e-02,-2.37e+01,+2.37e+01 2 -223 GenVertex: -62 ID: 0 (X,cT):0 I: 1 197 -213 -1.57e-01,-1.15e+00,-7.89e+01,+7.90e+01 2 -62 O: 2 453 -211 -1.21e-01,-1.55e-01,-5.31e+00,+5.32e+00 1 454 111 -3.59e-02,-9.94e-01,-7.36e+01,+7.36e+01 2 -224 GenVertex: -63 ID: 0 (X,cT):0 I: 1 199 -213 -7.59e-01,-9.29e-01,-8.85e+01,+8.85e+01 2 -63 O: 2 455 -211 -6.33e-01,-8.15e-01,-8.24e+01,+8.24e+01 1 456 111 -1.26e-01,-1.13e-01,-6.14e+00,+6.15e+00 2 -225 GenVertex: -64 ID: 0 (X,cT):0 I: 1 202 331 -2.38e+00,-1.40e-01,-1.58e+02,+1.58e+02 2 -64 O: 2 457 22 -1.02e+00,-2.60e-01,-6.72e+01,+6.72e+01 1 458 113 -1.36e+00,+1.20e-01,-9.07e+01,+9.07e+01 2 -226 GenVertex: -65 ID: 0 (X,cT):0 I: 1 203 313 -9.05e-01,+1.29e+00,-8.10e+01,+8.10e+01 2 -65 O: 2 459 311 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -227 460 111 -6.21e-01,+9.95e-01,-5.43e+01,+5.43e+01 2 -228 GenVertex: -66 ID: 0 (X,cT):0 I: 1 204 223 -6.04e-01,+2.55e-02,-6.38e+01,+6.38e+01 2 -66 O: 3 461 -211 -2.08e-01,-2.54e-03,-7.18e+00,+7.19e+00 1 462 211 -2.25e-01,+1.98e-01,-3.50e+01,+3.50e+01 1 463 111 -1.72e-01,-1.70e-01,-2.16e+01,+2.16e+01 2 -229 Vertex: -67 ID: 0 (X,cT)=-4.16e-04,+4.87e-04,-2.96e-02,+2.96e-02 I: 1 205 111 -1.63e+00,+1.91e+00,-1.16e+02,+1.16e+02 2 -67 O: 2 464 22 -4.85e-01,+4.78e-01,-3.07e+01,+3.07e+01 1 465 22 -1.15e+00,+1.43e+00,-8.52e+01,+8.53e+01 1 GenVertex: -68 ID: 0 (X,cT):0 I: 1 206 213 -6.82e-01,+9.06e-01,-1.09e+02,+1.09e+02 2 -68 O: 2 466 211 -5.66e-02,+2.04e-01,-9.14e+00,+9.14e+00 1 467 111 -6.25e-01,+7.02e-01,-9.98e+01,+9.98e+01 2 -230 Vertex: -69 ID: 0 (X,cT)=-5.45e-05,+2.36e-04,-1.35e-02,+1.35e-02 I: 1 207 111 -7.18e-01,+3.10e+00,-1.77e+02,+1.77e+02 2 -69 O: 2 468 22 -6.34e-01,+2.67e+00,-1.50e+02,+1.50e+02 1 469 22 -8.44e-02,+4.33e-01,-2.71e+01,+2.71e+01 1 Vertex: -70 ID: 0 (X,cT)=-5.73e-05,+3.51e-05,-2.76e-03,+2.76e-03 I: 1 208 111 -4.76e-01,+2.92e-01,-2.30e+01,+2.30e+01 2 -70 O: 2 470 22 -4.46e-01,+2.34e-01,-2.12e+01,+2.12e+01 1 471 22 -3.01e-02,+5.80e-02,-1.78e+00,+1.78e+00 1 GenVertex: -71 ID: 0 (X,cT):0 I: 1 212 113 +1.97e-01,+1.12e+00,-2.41e+01,+2.41e+01 2 -71 O: 2 472 -211 -7.59e-02,+7.61e-01,-1.19e+01,+1.20e+01 1 473 211 +2.73e-01,+3.54e-01,-1.21e+01,+1.21e+01 1 GenVertex: -72 ID: 0 (X,cT):0 I: 1 213 -213 +1.65e+00,+3.01e+00,-4.51e+01,+4.53e+01 2 -72 O: 2 474 -211 +1.02e-01,+4.79e-01,-4.04e+00,+4.07e+00 1 475 111 +1.55e+00,+2.53e+00,-4.11e+01,+4.12e+01 2 -231 GenVertex: -73 ID: 0 (X,cT):0 I: 1 214 -1114 +8.75e-02,+8.50e-01,-1.67e+01,+1.68e+01 2 -73 O: 2 476 -2112 -1.13e-01,+7.65e-01,-1.49e+01,+1.50e+01 1 477 211 +2.00e-01,+8.54e-02,-1.81e+00,+1.83e+00 1 GenVertex: -74 ID: 0 (X,cT):0 I: 1 215 1114 +1.62e+00,+3.63e+00,-4.43e+01,+4.45e+01 2 -74 O: 2 478 2112 +9.24e-01,+1.98e+00,-2.55e+01,+2.56e+01 1 479 -211 +6.97e-01,+1.65e+00,-1.88e+01,+1.89e+01 1 GenVertex: -75 ID: 0 (X,cT):0 I: 1 216 213 +9.92e-01,+1.25e+00,-8.87e+00,+9.05e+00 2 -75 O: 2 480 211 +4.61e-01,+1.11e+00,-6.98e+00,+7.09e+00 1 481 111 +5.31e-01,+1.46e-01,-1.88e+00,+1.97e+00 2 -232 GenVertex: -76 ID: 0 (X,cT):0 I: 1 218 -313 -1.59e-02,-2.78e-01,-4.06e+00,+4.17e+00 2 -76 O: 2 482 -321 -2.46e-01,-3.39e-01,-2.72e+00,+2.80e+00 1 483 211 +2.30e-01,+6.05e-02,-1.34e+00,+1.37e+00 1 GenVertex: -77 ID: 0 (X,cT):0 I: 1 219 313 +2.44e+00,+2.14e+00,-4.58e+00,+5.69e+00 2 -77 O: 2 484 321 +2.39e+00,+2.02e+00,-4.21e+00,+5.27e+00 1 485 -211 +4.17e-02,+1.22e-01,-3.73e-01,+4.18e-01 1 GenVertex: -78 ID: 0 (X,cT):0 I: 1 220 223 +1.56e+00,+2.32e-01,-1.40e-01,+1.77e+00 2 -78 O: 3 486 -211 +4.53e-01,+2.27e-01,+1.28e-01,+5.41e-01 1 487 211 +9.31e-01,-9.95e-02,-1.71e-01,+9.62e-01 1 488 111 +1.78e-01,+1.05e-01,-9.65e-02,+2.65e-01 2 -233 GenVertex: -79 ID: 0 (X,cT):0 I: 1 221 213 +2.22e+00,+8.42e-01,-1.50e+00,+3.04e+00 2 -79 O: 2 489 211 -1.88e-02,+2.55e-01,-3.28e-01,+4.39e-01 1 490 111 +2.24e+00,+5.88e-01,-1.17e+00,+2.60e+00 2 -234 GenVertex: -80 ID: 0 (X,cT):0 I: 1 222 -213 +2.08e+00,+7.28e-01,-8.57e-01,+2.46e+00 2 -80 O: 2 491 -211 +1.11e+00,+7.20e-01,-4.49e-01,+1.41e+00 1 492 111 +9.62e-01,+7.53e-03,-4.08e-01,+1.05e+00 2 -235 Vertex: -81 ID: 0 (X,cT)=+4.71e-05,+3.90e-05,-1.48e-04,+1.64e-04 I: 1 223 111 +1.84e-01,+1.52e-01,-5.80e-01,+6.42e-01 2 -81 O: 2 493 22 +6.13e-02,+7.01e-02,-8.86e-02,+1.29e-01 1 494 22 +1.23e-01,+8.23e-02,-4.91e-01,+5.13e-01 1 GenVertex: -82 ID: 0 (X,cT):0 I: 1 224 213 +3.55e+00,+5.20e-01,-9.76e-01,+3.81e+00 2 -82 O: 2 495 211 +1.43e+00,-1.15e-01,-1.61e-01,+1.45e+00 1 496 111 +2.12e+00,+6.35e-01,-8.15e-01,+2.36e+00 2 -236 GenVertex: -83 ID: 0 (X,cT):0 I: 1 225 -3224 +1.87e+00,+5.94e-01,+1.41e+00,+2.76e+00 2 -83 O: 2 497 -3122 +1.69e+00,+5.99e-01,+1.41e+00,+2.54e+00 2 -237 498 -211 +1.75e-01,-5.00e-03,-1.57e-03,+2.24e-01 1 GenVertex: -84 ID: 0 (X,cT):0 I: 1 227 3114 +1.60e+00,+2.09e-01,+1.82e+00,+2.80e+00 2 -84 O: 2 499 3122 +1.56e+00,+1.41e-01,+1.49e+00,+2.44e+00 2 -238 500 -211 +4.02e-02,+6.85e-02,+3.26e-01,+3.63e-01 1 GenVertex: -85 ID: 0 (X,cT):0 I: 1 228 221 -9.46e-02,+5.18e-02,+7.92e-01,+9.69e-01 2 -85 O: 3 501 111 -1.36e-01,-2.12e-02,+3.53e-01,+4.02e-01 2 -239 502 111 -7.31e-02,-1.45e-03,+1.22e-01,+1.96e-01 2 -240 503 111 +1.14e-01,+7.44e-02,+3.18e-01,+3.71e-01 2 -241 GenVertex: -86 ID: 0 (X,cT):0 I: 1 230 223 +7.63e-01,+6.36e-01,+1.60e+00,+2.04e+00 2 -86 O: 2 504 22 -1.11e-01,+2.55e-01,+2.06e-01,+3.46e-01 1 505 111 +8.74e-01,+3.81e-01,+1.39e+00,+1.69e+00 2 -242 GenVertex: -87 ID: 0 (X,cT):0 I: 1 231 -213 +1.93e+00,+1.18e+00,+4.85e+00,+5.41e+00 2 -87 O: 2 506 -211 +1.33e+00,+9.17e-01,+2.61e+00,+3.07e+00 1 507 111 +5.98e-01,+2.64e-01,+2.24e+00,+2.34e+00 2 -243 GenVertex: -88 ID: 0 (X,cT):0 I: 1 233 221 +2.30e+00,+1.13e+00,+4.74e+00,+5.42e+00 2 -88 O: 2 508 22 +2.18e-01,-5.08e-02,+3.35e-01,+4.03e-01 1 509 22 +2.08e+00,+1.18e+00,+4.41e+00,+5.01e+00 1 GenVertex: -89 ID: 0 (X,cT):0 I: 1 235 311 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -89 O: 1 510 310 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -244 GenVertex: -90 ID: 0 (X,cT):0 I: 1 239 -213 +4.26e-01,+3.32e-01,+2.61e-01,+9.44e-01 2 -90 O: 2 511 -211 +3.12e-01,-7.56e-02,-1.09e-01,+3.66e-01 1 512 111 +1.15e-01,+4.08e-01,+3.69e-01,+5.78e-01 2 -245 GenVertex: -91 ID: 0 (X,cT):0 I: 1 240 213 +1.97e+00,+3.54e+00,+6.95e-01,+4.18e+00 2 -91 O: 2 513 211 +4.83e-01,+5.52e-01,+3.39e-01,+8.20e-01 1 514 111 +1.49e+00,+2.99e+00,+3.56e-01,+3.36e+00 2 -246 GenVertex: -92 ID: 0 (X,cT):0 I: 1 242 -311 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 2 -92 O: 1 515 130 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 1 GenVertex: -93 ID: 0 (X,cT):0 I: 1 243 221 +5.60e-01,+2.26e+00,-9.49e-01,+2.57e+00 2 -93 O: 2 516 22 +6.34e-02,+5.85e-01,-7.24e-03,+5.89e-01 1 517 22 +4.97e-01,+1.67e+00,-9.42e-01,+1.98e+00 1 GenVertex: -94 ID: 0 (X,cT):0 I: 1 244 331 -1.78e-01,+3.39e+00,-1.29e-01,+3.53e+00 2 -94 O: 3 518 211 +6.75e-02,+6.97e-01,-7.57e-02,+7.18e-01 1 519 -211 +9.73e-03,+9.04e-01,+8.27e-02,+9.19e-01 1 520 221 -2.55e-01,+1.79e+00,-1.36e-01,+1.90e+00 2 -247 GenVertex: -95 ID: 0 (X,cT):0 I: 1 245 323 -1.46e+00,+1.76e+00,+7.60e-02,+2.46e+00 2 -95 O: 2 521 311 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 2 -248 522 211 -9.96e-01,+1.16e+00,+1.91e-01,+1.55e+00 1 GenVertex: -96 ID: 0 (X,cT):0 I: 1 246 113 -7.13e-02,+1.10e+00,+2.52e-01,+1.37e+00 2 -96 O: 2 523 -211 +1.46e-01,+1.69e-01,+2.96e-01,+3.96e-01 1 524 211 -2.17e-01,+9.35e-01,-4.44e-02,+9.71e-01 1 GenVertex: -97 ID: 0 (X,cT):0 I: 1 248 313 -3.34e+00,+2.53e+00,+4.36e-01,+4.30e+00 2 -97 O: 2 525 321 -2.79e+00,+1.93e+00,+1.41e-01,+3.43e+00 1 526 -211 -5.51e-01,+5.98e-01,+2.94e-01,+8.76e-01 1 GenVertex: -98 ID: 0 (X,cT):0 I: 1 250 113 -1.73e+00,+2.43e-01,+3.22e-01,+1.90e+00 2 -98 O: 2 527 -211 -1.68e+00,+2.03e-01,+3.54e-01,+1.74e+00 1 528 211 -5.17e-02,+4.04e-02,-3.26e-02,+1.58e-01 1 Vertex: -99 ID: 0 (X,cT)=-8.46e-04,+3.47e-04,+2.97e-04,+9.66e-04 I: 1 251 111 -1.23e+00,+5.03e-01,+4.32e-01,+1.40e+00 2 -99 O: 2 529 22 -1.05e-01,+1.98e-02,+6.74e-02,+1.27e-01 1 530 22 -1.12e+00,+4.83e-01,+3.64e-01,+1.28e+00 1 GenVertex: -100 ID: 0 (X,cT):0 I: 1 252 -213 -1.37e+00,+4.96e-01,-6.17e-01,+1.79e+00 2 -100 O: 2 531 -211 -5.34e-02,-1.48e-01,-4.71e-02,+2.16e-01 1 532 111 -1.31e+00,+6.44e-01,-5.69e-01,+1.58e+00 2 -249 GenVertex: -101 ID: 0 (X,cT):0 I: 1 253 -313 -4.14e+00,-9.70e-01,-1.83e-01,+4.34e+00 2 -101 O: 2 533 -311 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 2 -250 534 111 -1.17e+00,-3.29e-01,+1.98e-01,+1.24e+00 2 -251 GenVertex: -102 ID: 0 (X,cT):0 I: 1 254 323 -1.82e+00,-2.06e+00,+3.82e-01,+2.98e+00 2 -102 O: 2 535 311 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 2 -252 536 211 -8.94e-01,-1.48e+00,+3.81e-01,+1.78e+00 1 GenVertex: -103 ID: 0 (X,cT):0 I: 1 255 223 -1.77e+00,-1.17e+00,-1.29e+00,+2.61e+00 2 -103 O: 3 537 211 -5.39e-01,-5.28e-01,-4.68e-01,+8.99e-01 1 538 -211 -1.14e+00,-5.86e-01,-6.03e-01,+1.43e+00 1 539 111 -8.87e-02,-5.53e-02,-2.23e-01,+2.81e-01 2 -253 GenVertex: -104 ID: 0 (X,cT):0 I: 1 256 221 -1.62e+00,-2.23e+00,-7.74e-01,+2.92e+00 2 -104 O: 3 540 -211 -9.36e-01,-1.13e+00,-4.27e-01,+1.54e+00 1 541 211 -4.22e-01,-7.92e-01,-2.63e-01,+9.46e-01 1 542 111 -2.65e-01,-3.05e-01,-8.44e-02,+4.34e-01 2 -254 GenVertex: -105 ID: 0 (X,cT):0 I: 1 257 -213 -9.37e-01,-1.60e+00,-2.97e-02,+2.02e+00 2 -105 O: 2 543 -211 -4.16e-01,-1.55e-01,-1.17e-01,+4.80e-01 1 544 111 -5.21e-01,-1.44e+00,+8.75e-02,+1.54e+00 2 -255 GenVertex: -106 ID: 0 (X,cT):0 I: 1 258 -311 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -106 O: 1 545 310 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -256 GenVertex: -107 ID: 0 (X,cT):0 I: 1 259 313 +5.28e-01,-3.04e+00,-2.11e+00,+3.83e+00 2 -107 O: 2 546 311 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -257 547 111 -3.27e-02,-9.96e-01,-4.58e-01,+1.10e+00 2 -258 GenVertex: -108 ID: 0 (X,cT):0 I: 1 261 -213 -3.88e-01,-3.68e+00,-1.68e+00,+4.11e+00 2 -108 O: 2 548 -211 -3.82e-01,-1.96e+00,-6.74e-01,+2.11e+00 1 549 111 -6.33e-03,-1.72e+00,-1.00e+00,+2.00e+00 2 -259 GenVertex: -109 ID: 0 (X,cT):0 I: 1 263 221 +3.86e-01,-2.43e-01,-5.22e-01,+8.83e-01 2 -109 O: 2 550 22 +4.52e-01,+7.24e-03,-3.51e-01,+5.73e-01 1 551 22 -6.69e-02,-2.50e-01,-1.71e-01,+3.10e-01 1 GenVertex: -110 ID: 0 (X,cT):0 I: 1 264 213 +6.60e-01,+7.54e-03,+3.09e-01,+1.06e+00 2 -110 O: 2 552 211 +1.37e-01,+4.30e-02,-2.26e-01,+3.02e-01 1 553 111 +5.23e-01,-3.55e-02,+5.35e-01,+7.61e-01 2 -260 GenVertex: -111 ID: 0 (X,cT):0 I: 1 266 113 +1.88e+00,-2.26e+00,+3.80e+00,+4.88e+00 2 -111 O: 2 554 -211 +4.34e-01,-1.10e+00,+1.41e+00,+1.84e+00 1 555 211 +1.45e+00,-1.16e+00,+2.39e+00,+3.03e+00 1 GenVertex: -112 ID: 0 (X,cT):0 I: 1 268 -213 +1.75e+00,-1.09e+00,+4.84e+00,+5.30e+00 2 -112 O: 2 556 -211 +4.68e-01,-5.62e-01,+1.63e+00,+1.79e+00 1 557 111 +1.28e+00,-5.31e-01,+3.22e+00,+3.51e+00 2 -261 GenVertex: -113 ID: 0 (X,cT):0 I: 1 270 -213 +2.75e-01,-7.46e-01,+3.58e+00,+3.71e+00 2 -113 O: 2 558 -211 +2.35e-01,-2.89e-01,+9.58e-01,+1.04e+00 1 559 111 +3.99e-02,-4.57e-01,+2.63e+00,+2.67e+00 2 -262 GenVertex: -114 ID: 0 (X,cT):0 I: 1 272 -213 +5.49e-01,-8.59e-01,+4.94e+00,+5.10e+00 2 -114 O: 2 560 -211 +3.07e-01,-5.30e-01,+1.35e+00,+1.49e+00 1 561 111 +2.42e-01,-3.29e-01,+3.59e+00,+3.62e+00 2 -263 GenVertex: -115 ID: 0 (X,cT):0 I: 1 273 213 -1.23e-01,-9.83e-01,+1.02e+01,+1.03e+01 2 -115 O: 2 562 211 +2.69e-01,-3.93e-01,+2.88e+00,+2.93e+00 1 563 111 -3.91e-01,-5.91e-01,+7.32e+00,+7.35e+00 2 -264 GenVertex: -116 ID: 0 (X,cT):0 I: 1 275 -213 -8.17e-01,-4.40e-01,+6.33e+00,+6.43e+00 2 -116 O: 2 564 -211 -5.70e-01,-4.26e-04,+3.07e+00,+3.12e+00 1 565 111 -2.47e-01,-4.39e-01,+3.26e+00,+3.31e+00 2 -265 GenVertex: -117 ID: 0 (X,cT):0 I: 1 276 2214 -1.47e+00,-8.16e-01,+1.57e+01,+1.58e+01 2 -117 O: 2 566 2112 -1.44e+00,-6.33e-01,+1.36e+01,+1.38e+01 1 567 211 -3.42e-02,-1.83e-01,+2.04e+00,+2.06e+00 1 GenVertex: -118 ID: 0 (X,cT):0 I: 1 277 -2114 -1.63e+00,-2.92e-01,+1.75e+01,+1.77e+01 2 -118 O: 2 568 -2112 -1.32e+00,-2.89e-01,+1.63e+01,+1.64e+01 1 569 111 -3.11e-01,-2.39e-03,+1.19e+00,+1.24e+00 2 -266 GenVertex: -119 ID: 0 (X,cT):0 I: 1 278 2114 -2.08e+00,-5.72e-01,+1.79e+01,+1.80e+01 2 -119 O: 2 570 2212 -1.67e+00,-5.85e-01,+1.41e+01,+1.43e+01 1 571 -211 -4.05e-01,+1.24e-02,+3.72e+00,+3.74e+00 1 GenVertex: -120 ID: 0 (X,cT):0 I: 1 279 213 -1.31e+00,-2.14e-01,+1.54e+01,+1.55e+01 2 -120 O: 2 572 211 -8.83e-01,-4.65e-01,+1.09e+01,+1.09e+01 1 573 111 -4.27e-01,+2.51e-01,+4.52e+00,+4.55e+00 2 -267 GenVertex: -121 ID: 0 (X,cT):0 I: 1 280 -213 -4.14e+00,+3.06e-01,+4.39e+01,+4.41e+01 2 -121 O: 2 574 -211 -1.53e+00,+3.79e-01,+1.36e+01,+1.37e+01 1 575 111 -2.62e+00,-7.39e-02,+3.03e+01,+3.04e+01 2 -268 GenVertex: -122 ID: 0 (X,cT):0 I: 1 281 331 -1.14e+00,-1.65e-01,+2.04e+01,+2.04e+01 2 -122 O: 3 576 211 -2.91e-01,-2.10e-01,+4.42e+00,+4.44e+00 1 577 -211 -1.83e-01,-5.78e-02,+3.40e+00,+3.41e+00 1 578 221 -6.68e-01,+1.03e-01,+1.25e+01,+1.26e+01 2 -269 GenVertex: -123 ID: 0 (X,cT):0 I: 1 282 213 -3.10e+00,-7.17e-01,+6.54e+01,+6.55e+01 2 -123 O: 2 579 211 -3.29e-01,-2.20e-01,+1.21e+01,+1.21e+01 1 580 111 -2.77e+00,-4.97e-01,+5.33e+01,+5.34e+01 2 -270 GenVertex: -124 ID: 0 (X,cT):0 I: 1 284 223 -3.06e+00,-1.62e+00,+8.97e+01,+8.98e+01 2 -124 O: 3 581 -211 -7.82e-01,-6.51e-01,+3.10e+01,+3.10e+01 1 582 211 -1.37e+00,-6.38e-01,+3.60e+01,+3.61e+01 1 583 111 -9.11e-01,-3.32e-01,+2.27e+01,+2.27e+01 2 -271 GenVertex: -125 ID: 0 (X,cT):0 I: 1 285 213 -2.34e+00,-1.51e+00,+7.21e+01,+7.21e+01 2 -125 O: 2 584 211 -6.69e-02,-1.47e-01,+9.52e+00,+9.52e+00 1 585 111 -2.27e+00,-1.36e+00,+6.26e+01,+6.26e+01 2 -272 Vertex: -126 ID: 0 (X,cT)=+7.10e-05,-2.05e-05,+2.68e-03,+2.68e-03 I: 1 286 111 +2.41e-01,-6.95e-02,+9.09e+00,+9.09e+00 2 -126 O: 2 586 22 +2.37e-01,-3.61e-02,+6.79e+00,+6.80e+00 1 587 22 +4.40e-03,-3.34e-02,+2.29e+00,+2.29e+00 1 GenVertex: -127 ID: 0 (X,cT):0 I: 1 287 -213 -2.43e+00,-2.24e+00,+1.15e+02,+1.15e+02 2 -127 O: 2 588 -211 -1.12e+00,-6.92e-01,+3.67e+01,+3.67e+01 1 589 111 -1.31e+00,-1.55e+00,+7.85e+01,+7.85e+01 2 -273 GenVertex: -128 ID: 0 (X,cT):0 I: 1 288 -311 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -128 O: 1 590 310 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -274 GenVertex: -129 ID: 0 (X,cT):0 I: 1 289 323 -2.24e+00,-1.25e+00,+1.78e+02,+1.78e+02 2 -129 O: 2 591 311 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -275 592 211 -7.07e-01,-5.18e-01,+7.14e+01,+7.14e+01 1 GenVertex: -130 ID: 0 (X,cT):0 I: 1 290 -213 -2.82e-01,-1.33e+00,+1.30e+02,+1.30e+02 2 -130 O: 2 593 -211 -6.60e-02,-9.00e-01,+5.65e+01,+5.65e+01 1 594 111 -2.16e-01,-4.31e-01,+7.35e+01,+7.35e+01 2 -276 GenVertex: -131 ID: 0 (X,cT):0 I: 1 294 -323 -1.36e+00,-9.45e-01,+2.00e+02,+2.00e+02 2 -131 O: 2 595 -311 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -277 596 -211 -3.95e-01,+5.07e-02,+4.07e+01,+4.07e+01 1 GenVertex: -132 ID: 0 (X,cT):0 I: 1 295 -3224 -1.00e+00,+4.60e-01,+2.91e+02,+2.91e+02 2 -132 O: 2 597 -3122 -9.54e-01,+3.16e-01,+2.74e+02,+2.74e+02 2 -278 598 -211 -5.06e-02,+1.44e-01,+1.69e+01,+1.69e+01 1 Vertex: -133 ID: 0 (X,cT)=-6.43e-05,+2.79e-05,+6.42e-03,+6.42e-03 I: 1 296 111 -5.26e-01,+2.28e-01,+5.25e+01,+5.25e+01 2 -133 O: 2 599 22 -2.29e-02,+4.72e-02,+6.05e+00,+6.05e+00 1 600 22 -5.03e-01,+1.81e-01,+4.65e+01,+4.65e+01 1 GenVertex: -134 ID: 0 (X,cT):0 I: 1 297 2214 -1.35e+00,+1.56e+00,+2.21e+02,+2.21e+02 2 -134 O: 2 601 2112 -1.13e+00,+1.34e+00,+1.99e+02,+1.99e+02 1 602 211 -2.29e-01,+2.20e-01,+2.28e+01,+2.28e+01 1 Vertex: -135 ID: 0 (X,cT)=+5.70e-07,+4.65e-07,+4.84e-04,+4.84e-04 I: 1 298 111 +2.16e-01,+1.76e-01,+1.84e+02,+1.84e+02 2 -135 O: 2 603 22 +8.67e-02,+1.17e-01,+1.27e+02,+1.27e+02 1 604 22 +1.29e-01,+5.95e-02,+5.70e+01,+5.70e+01 1 GenVertex: -136 ID: 0 (X,cT):0 I: 1 299 223 -1.42e+00,+2.20e+00,+2.31e+02,+2.31e+02 2 -136 O: 3 605 211 -3.15e-01,+7.60e-01,+5.46e+01,+5.46e+01 1 606 -211 -8.89e-01,+9.70e-01,+1.22e+02,+1.22e+02 1 607 111 -2.17e-01,+4.70e-01,+5.44e+01,+5.44e+01 2 -279 GenVertex: -137 ID: 0 (X,cT):0 I: 1 301 311 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 2 -137 O: 1 608 130 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 1 GenVertex: -138 ID: 0 (X,cT):0 I: 1 302 3224 +1.84e+00,+1.04e+00,+5.97e+02,+5.97e+02 2 -138 O: 2 609 3122 +1.36e+00,+6.24e-01,+4.24e+02,+4.24e+02 2 -280 610 211 +4.86e-01,+4.18e-01,+1.73e+02,+1.73e+02 1 Vertex: -139 ID: 0 (X,cT)=+5.46e-05,-2.52e-04,+1.40e-01,+1.40e-01 I: 1 303 111 +1.87e-01,-8.63e-01,+4.77e+02,+4.77e+02 2 -139 O: 2 611 22 +1.51e-01,-5.29e-01,+2.66e+02,+2.66e+02 1 612 22 +3.59e-02,-3.34e-01,+2.11e+02,+2.11e+02 1 GenVertex: -140 ID: 0 (X,cT):0 I: 1 304 -213 +1.83e+00,-9.66e-01,+5.25e+02,+5.25e+02 2 -140 O: 2 613 -211 +3.59e-01,-1.16e-02,+1.52e+02,+1.52e+02 1 614 111 +1.47e+00,-9.55e-01,+3.73e+02,+3.73e+02 2 -281 GenVertex: -141 ID: 0 (X,cT):0 I: 1 305 223 +2.24e-01,-1.03e+00,+5.52e+02,+5.52e+02 2 -141 O: 3 615 -211 +2.02e-02,-4.58e-01,+1.67e+02,+1.67e+02 1 616 211 -5.79e-03,-7.26e-02,+2.90e+01,+2.90e+01 1 617 111 +2.09e-01,-5.03e-01,+3.56e+02,+3.56e+02 2 -282 Vertex: -142 ID: 0 (X,cT)=-3.45e-05,+2.69e-05,+2.61e-02,+2.61e-02 I: 1 306 111 -2.24e-01,+1.74e-01,+1.69e+02,+1.69e+02 2 -142 O: 2 618 22 -7.06e-02,+1.39e-01,+7.75e+01,+7.75e+01 1 619 22 -1.53e-01,+3.54e-02,+9.18e+01,+9.18e+01 1 Vertex: -143 ID: 0 (X,cT)=+2.38e+01,+9.98e+01,+1.48e+02,+1.88e+02 I: 1 308 3112 +5.26e-01,+2.21e+00,+3.28e+00,+4.17e+00 2 -143 O: 2 620 2112 +2.80e-01,+1.88e+00,+2.56e+00,+3.32e+00 1 621 -211 +2.46e-01,+3.28e-01,+7.24e-01,+8.44e-01 1 GenVertex: -144 ID: 0 (X,cT):0 I: 1 309 -3212 -5.78e-01,+7.66e-01,+9.85e-01,+1.82e+00 2 -144 O: 2 622 -3122 -5.18e-01,+6.36e-01,+8.61e-01,+1.63e+00 2 -283 623 22 -5.94e-02,+1.30e-01,+1.25e-01,+1.90e-01 1 GenVertex: -145 ID: 0 (X,cT):0 I: 1 310 113 +4.47e-01,+1.09e-01,-1.69e+01,+1.69e+01 2 -145 O: 2 624 -211 +4.04e-01,+2.64e-01,-1.44e+01,+1.44e+01 1 625 211 +4.26e-02,-1.55e-01,-2.46e+00,+2.47e+00 1 Vertex: -146 ID: 0 (X,cT)=-2.92e-05,-4.45e-05,-3.61e-04,+3.65e-04 I: 1 311 111 -3.27e-01,-4.99e-01,-4.05e+00,+4.10e+00 2 -146 O: 2 626 22 -8.84e-02,-6.44e-02,-5.28e-01,+5.39e-01 1 627 22 -2.39e-01,-4.35e-01,-3.52e+00,+3.56e+00 1 GenVertex: -147 ID: 0 (X,cT):0 I: 1 314 331 -2.68e-01,-4.02e-01,-1.57e+03,+1.57e+03 2 -147 O: 3 628 -211 +3.38e-02,-4.15e-02,-1.10e+02,+1.10e+02 1 629 211 -5.30e-03,+3.03e-02,-2.10e+02,+2.10e+02 1 630 221 -2.96e-01,-3.90e-01,-1.25e+03,+1.25e+03 2 -284 GenVertex: -148 ID: 0 (X,cT):0 I: 1 317 323 -3.37e-01,-2.39e+00,+7.93e+00,+8.34e+00 2 -148 O: 2 631 321 -3.08e-01,-2.31e+00,+6.87e+00,+7.27e+00 1 632 111 -2.89e-02,-8.45e-02,+1.06e+00,+1.07e+00 2 -285 GenVertex: -149 ID: 0 (X,cT):0 I: 1 318 -313 -1.44e+00,-3.44e+00,+8.45e+00,+9.29e+00 2 -149 O: 2 633 -311 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 2 -286 634 111 +4.95e-02,-2.69e-01,+7.54e-01,+8.14e-01 2 -287 GenVertex: -150 ID: 0 (X,cT):0 I: 1 319 313 -1.28e+00,-6.78e+00,+1.54e+01,+1.69e+01 2 -150 O: 2 635 321 -4.35e-01,-3.89e+00,+8.91e+00,+9.74e+00 1 636 -211 -8.42e-01,-2.89e+00,+6.45e+00,+7.12e+00 1 GenVertex: -151 ID: 0 (X,cT):0 I: 1 320 -323 -2.53e+00,-9.96e+00,+2.12e+01,+2.36e+01 2 -151 O: 2 637 -311 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -288 638 -211 -1.55e+00,-5.05e+00,+1.10e+01,+1.22e+01 1 GenVertex: -152 ID: 0 (X,cT):0 I: 1 322 -311 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 2 -152 O: 1 639 130 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 1 GenVertex: -153 ID: 0 (X,cT):0 I: 1 323 323 +4.15e+00,+1.53e+01,+1.94e+01,+2.50e+01 2 -153 O: 2 640 321 +2.14e+00,+7.62e+00,+1.01e+01,+1.29e+01 1 641 111 +2.01e+00,+7.64e+00,+9.24e+00,+1.22e+01 2 -289 Vertex: -154 ID: 0 (X,cT)=+3.19e-05,+1.66e-04,+4.58e-04,+4.89e-04 I: 1 324 111 +2.37e-01,+1.23e+00,+3.40e+00,+3.63e+00 2 -154 O: 2 642 22 +2.38e-01,+9.34e-01,+2.63e+00,+2.80e+00 1 643 22 -7.49e-04,+2.95e-01,+7.76e-01,+8.30e-01 1 GenVertex: -155 ID: 0 (X,cT):0 I: 1 327 223 +6.45e-01,+5.98e-01,+2.79e+00,+3.02e+00 2 -155 O: 3 644 -211 +3.28e-01,+6.54e-01,+1.90e+00,+2.04e+00 1 645 211 +1.35e-01,-2.37e-02,+3.56e-01,+4.06e-01 1 646 111 +1.82e-01,-3.30e-02,+5.33e-01,+5.80e-01 2 -290 GenVertex: -156 ID: 0 (X,cT):0 I: 1 328 -213 -5.74e-01,-4.18e-01,+1.17e+00,+1.54e+00 2 -156 O: 2 647 -211 -1.27e-01,-3.99e-01,+8.97e-01,+1.00e+00 1 648 111 -4.47e-01,-1.94e-02,+2.68e-01,+5.39e-01 2 -291 GenVertex: -157 ID: 0 (X,cT):0 I: 1 329 -311 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 2 -157 O: 1 649 130 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 1 GenVertex: -158 ID: 0 (X,cT):0 I: 1 330 313 -1.54e-01,-5.69e-01,+2.78e+00,+2.98e+00 2 -158 O: 2 650 311 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -292 651 111 +7.53e-02,-4.99e-01,+1.22e+00,+1.33e+00 2 -293 GenVertex: -159 ID: 0 (X,cT):0 I: 1 334 223 -4.42e-01,-3.12e+00,+6.81e+00,+7.55e+00 2 -159 O: 3 652 211 -2.73e-01,-1.94e+00,+4.28e+00,+4.71e+00 1 653 -211 -2.18e-01,-1.07e+00,+2.09e+00,+2.37e+00 1 654 111 +4.98e-02,-1.22e-01,+4.33e-01,+4.72e-01 2 -294 GenVertex: -160 ID: 0 (X,cT):0 I: 1 339 -313 +2.23e-01,-3.92e-01,+3.24e+00,+3.39e+00 2 -160 O: 2 655 -311 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 2 -295 656 111 +3.27e-01,-3.10e-01,+1.21e+00,+1.29e+00 2 -296 GenVertex: -161 ID: 0 (X,cT):0 I: 1 341 213 -7.02e-01,+3.41e-01,+6.17e-01,+1.39e+00 2 -161 O: 2 657 211 -2.11e-01,-3.05e-01,+3.43e-01,+5.24e-01 1 658 111 -4.91e-01,+6.46e-01,+2.74e-01,+8.67e-01 2 -297 GenVertex: -162 ID: 0 (X,cT):0 I: 1 343 323 -3.56e-01,+1.54e-01,-4.40e+01,+4.41e+01 2 -162 O: 2 659 311 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -298 660 211 -2.95e-01,+1.24e-02,-9.58e+00,+9.58e+00 1 Vertex: -163 ID: 0 (X,cT)=+1.97e+01,+1.15e+02,-7.73e+03,+7.73e+03 I: 1 344 3312 +1.93e-01,+1.13e+00,-7.54e+01,+7.54e+01 2 -163 O: 2 661 3122 +2.03e-01,+9.00e-01,-5.74e+01,+5.74e+01 2 -299 662 -211 -1.00e-02,+2.26e-01,-1.81e+01,+1.81e+01 1 Vertex: -164 ID: 0 (X,cT)=+2.12e+01,+1.99e+00,-3.63e+03,+3.63e+03 I: 1 345 -3112 +3.25e-01,+3.05e-02,-5.56e+01,+5.56e+01 2 -164 O: 2 663 -2112 +8.60e-02,-5.87e-02,-4.45e+01,+4.46e+01 1 664 211 +2.39e-01,+8.91e-02,-1.10e+01,+1.10e+01 1 GenVertex: -165 ID: 0 (X,cT):0 I: 1 346 313 +1.81e-01,+1.27e-01,-1.52e+02,+1.52e+02 2 -165 O: 2 665 321 +3.22e-01,+1.11e-01,-8.01e+01,+8.01e+01 1 666 -211 -1.41e-01,+1.62e-02,-7.22e+01,+7.22e+01 1 Vertex: -166 ID: 0 (X,cT)=+1.17e+01,+1.18e+02,-1.39e+04,+1.39e+04 I: 1 347 3122 +1.78e-01,+1.80e+00,-2.11e+02,+2.11e+02 2 -166 O: 2 667 2212 +2.05e-01,+1.67e+00,-1.87e+02,+1.87e+02 1 668 -211 -2.70e-02,+1.27e-01,-2.39e+01,+2.39e+01 1 GenVertex: -167 ID: 0 (X,cT):0 I: 1 350 113 +3.21e-01,+1.00e-01,-2.82e+02,+2.82e+02 2 -167 O: 2 669 211 -5.22e-02,-7.11e-02,-2.05e+02,+2.05e+02 1 670 -211 +3.73e-01,+1.71e-01,-7.73e+01,+7.73e+01 1 GenVertex: -168 ID: 0 (X,cT):0 I: 1 351 313 -6.62e-02,+3.82e-01,-1.53e+02,+1.53e+02 2 -168 O: 2 671 321 -2.98e-01,+2.98e-01,-8.18e+01,+8.18e+01 1 672 -211 +2.32e-01,+8.43e-02,-7.08e+01,+7.08e+01 1 GenVertex: -169 ID: 0 (X,cT):0 I: 1 352 -313 -1.95e-01,-7.59e-01,-9.20e+01,+9.20e+01 2 -169 O: 2 673 -311 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 2 -300 674 111 -2.02e-01,-4.65e-01,-2.52e+01,+2.52e+01 2 -301 GenVertex: -170 ID: 0 (X,cT):0 I: 1 353 -213 -9.56e-01,-5.98e-01,-1.82e+01,+1.82e+01 2 -170 O: 2 675 -211 -1.88e-01,-5.45e-01,-9.62e+00,+9.64e+00 1 676 111 -7.69e-01,-5.33e-02,-8.53e+00,+8.56e+00 2 -302 GenVertex: -171 ID: 0 (X,cT):0 I: 1 355 113 +8.60e-04,-9.71e-01,-6.38e+00,+6.50e+00 2 -171 O: 2 677 211 +2.13e-01,-2.96e-01,-3.74e+00,+3.76e+00 1 678 -211 -2.12e-01,-6.75e-01,-2.65e+00,+2.74e+00 1 GenVertex: -172 ID: 0 (X,cT):0 I: 1 356 -213 -7.28e-01,-1.83e+00,-5.39e+00,+5.81e+00 2 -172 O: 2 679 -211 -2.05e-01,-1.53e+00,-3.82e+00,+4.12e+00 1 680 111 -5.23e-01,-3.01e-01,-1.57e+00,+1.69e+00 2 -303 GenVertex: -173 ID: 0 (X,cT):0 I: 1 358 -323 -9.54e-01,-6.81e-01,-3.54e+00,+3.85e+00 2 -173 O: 2 681 -311 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 2 -304 682 -211 +2.39e-02,-1.47e-01,-1.09e+00,+1.11e+00 1 GenVertex: -174 ID: 0 (X,cT):0 I: 1 359 213 +2.75e-01,-3.52e-01,-5.09e+00,+5.16e+00 2 -174 O: 2 683 211 +8.02e-02,+1.64e-03,-3.76e+00,+3.77e+00 1 684 111 +1.95e-01,-3.54e-01,-1.32e+00,+1.39e+00 2 -305 GenVertex: -175 ID: 0 (X,cT):0 I: 1 360 223 -2.27e-01,+3.89e-02,-4.86e+00,+4.93e+00 2 -175 O: 2 685 -211 -3.85e-01,+2.53e-01,-3.64e+00,+3.67e+00 1 686 211 +1.59e-01,-2.14e-01,-1.22e+00,+1.25e+00 1 Vertex: -176 ID: 0 (X,cT)=+6.67e-06,-4.43e-05,-4.46e-04,+4.49e-04 I: 1 361 111 +9.80e-02,-6.51e-01,-6.55e+00,+6.59e+00 2 -176 O: 2 687 22 +6.05e-02,-2.93e-01,-2.35e+00,+2.37e+00 1 688 22 +3.75e-02,-3.58e-01,-4.21e+00,+4.22e+00 1 GenVertex: -177 ID: 0 (X,cT):0 I: 1 364 331 +1.50e-01,-7.24e-01,+1.85e+00,+2.21e+00 2 -177 O: 2 689 22 +1.37e-01,+6.06e-03,+2.18e-01,+2.58e-01 1 690 223 +1.24e-02,-7.30e-01,+1.63e+00,+1.95e+00 2 -306 GenVertex: -178 ID: 0 (X,cT):0 I: 1 365 -213 +5.38e-01,-3.87e-01,+1.13e+01,+1.13e+01 2 -178 O: 2 691 -211 +7.17e-01,-3.22e-01,+8.82e+00,+8.86e+00 1 692 111 -1.79e-01,-6.51e-02,+2.43e+00,+2.44e+00 2 -307 GenVertex: -179 ID: 0 (X,cT):0 I: 1 366 213 +1.14e+00,-8.39e-01,+3.72e+01,+3.72e+01 2 -179 O: 2 693 211 +8.78e-01,-2.74e-01,+1.90e+01,+1.90e+01 1 694 111 +2.62e-01,-5.65e-01,+1.82e+01,+1.82e+01 2 -308 GenVertex: -180 ID: 0 (X,cT):0 I: 1 368 113 +5.80e-01,-5.07e-01,+4.90e+01,+4.90e+01 2 -180 O: 2 695 -211 +3.12e-01,+7.97e-02,+2.48e+01,+2.48e+01 1 696 211 +2.69e-01,-5.87e-01,+2.42e+01,+2.43e+01 1 GenVertex: -181 ID: 0 (X,cT):0 I: 1 369 213 +1.41e+00,-1.69e+00,+6.99e+01,+7.00e+01 2 -181 O: 2 697 211 +1.19e-02,-3.00e-01,+1.13e+01,+1.13e+01 1 698 111 +1.39e+00,-1.39e+00,+5.86e+01,+5.87e+01 2 -309 GenVertex: -182 ID: 0 (X,cT):0 I: 1 370 113 +7.98e-01,-3.28e-01,+4.63e+01,+4.63e+01 2 -182 O: 2 699 211 -1.01e-02,-1.59e-01,+1.93e+01,+1.93e+01 1 700 -211 +8.09e-01,-1.70e-01,+2.69e+01,+2.69e+01 1 GenVertex: -183 ID: 0 (X,cT):0 I: 1 371 311 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 2 -183 O: 1 701 130 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 1 GenVertex: -184 ID: 0 (X,cT):0 I: 1 372 333 +7.88e-01,-1.35e-01,+8.26e+01,+8.26e+01 2 -184 O: 2 702 130 +4.97e-01,-2.77e-02,+4.86e+01,+4.86e+01 1 703 310 +2.91e-01,-1.08e-01,+3.39e+01,+3.39e+01 2 -310 GenVertex: -185 ID: 0 (X,cT):0 I: 1 373 -311 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -185 O: 1 704 310 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -311 GenVertex: -186 ID: 0 (X,cT):0 I: 1 374 -213 +1.71e-01,+1.06e+00,+2.95e+01,+2.95e+01 2 -186 O: 2 705 -211 +7.18e-02,+9.17e-04,+8.15e+00,+8.16e+00 1 706 111 +9.93e-02,+1.06e+00,+2.13e+01,+2.14e+01 2 -312 GenVertex: -187 ID: 0 (X,cT):0 I: 1 375 113 +3.21e-01,-4.01e-01,+6.30e+00,+6.35e+00 2 -187 O: 2 707 211 -1.07e-01,-3.52e-02,+1.26e+00,+1.27e+00 1 708 -211 +4.29e-01,-3.66e-01,+5.04e+00,+5.08e+00 1 GenVertex: -188 ID: 0 (X,cT):0 I: 1 376 223 +7.41e-01,+1.31e+00,+1.59e+01,+1.59e+01 2 -188 O: 3 709 211 +1.16e-01,+9.89e-02,+1.20e+00,+1.22e+00 1 710 -211 +4.34e-01,+4.24e-01,+7.57e+00,+7.59e+00 1 711 111 +1.92e-01,+7.83e-01,+7.09e+00,+7.14e+00 2 -313 GenVertex: -189 ID: 0 (X,cT):0 I: 1 377 213 +5.16e-01,+3.01e-01,+1.29e+00,+1.54e+00 2 -189 O: 2 712 211 +3.77e-02,+2.94e-01,+3.27e-01,+4.63e-01 1 713 111 +4.78e-01,+7.25e-03,+9.61e-01,+1.08e+00 2 -314 GenVertex: -190 ID: 0 (X,cT):0 I: 1 379 213 -2.56e-01,+6.07e-01,-6.71e-01,+1.20e+00 2 -190 O: 2 714 211 +6.14e-02,-1.12e-01,-7.76e-02,+2.05e-01 1 715 111 -3.17e-01,+7.19e-01,-5.93e-01,+9.94e-01 2 -315 GenVertex: -191 ID: 0 (X,cT):0 I: 1 380 113 +1.27e-01,+4.85e-01,-4.72e-01,+9.84e-01 2 -191 O: 2 716 211 +1.78e-01,+4.85e-01,-5.12e-02,+5.38e-01 1 717 -211 -5.14e-02,-2.75e-04,-4.21e-01,+4.47e-01 1 GenVertex: -192 ID: 0 (X,cT):0 I: 1 381 223 -1.71e+00,+1.18e+00,-2.61e+00,+3.43e+00 2 -192 O: 3 718 211 -8.74e-01,+3.77e-01,-1.31e+00,+1.63e+00 1 719 -211 -1.01e-01,+9.06e-02,-3.45e-01,+3.96e-01 1 720 111 -7.32e-01,+7.13e-01,-9.57e-01,+1.41e+00 2 -316 GenVertex: -193 ID: 0 (X,cT):0 I: 1 382 313 -1.23e+00,+1.01e+00,-3.51e+00,+3.96e+00 2 -193 O: 2 721 311 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -317 722 111 -4.37e-03,+2.86e-01,-5.78e-01,+6.59e-01 2 -318 GenVertex: -194 ID: 0 (X,cT):0 I: 1 383 -313 -6.29e-01,+4.19e-01,-1.97e+00,+2.30e+00 2 -194 O: 2 723 -321 -7.31e-01,+3.68e-01,-1.85e+00,+2.08e+00 1 724 211 +1.02e-01,+5.06e-02,-1.20e-01,+2.16e-01 1 GenVertex: -195 ID: 0 (X,cT):0 I: 1 384 221 -7.02e-02,-6.45e-03,-9.32e-01,+1.08e+00 2 -195 O: 3 725 211 -1.92e-02,-5.58e-02,-2.81e-01,+3.20e-01 1 726 -211 -1.17e-01,-1.25e-02,-1.46e-01,+2.34e-01 1 727 111 +6.57e-02,+6.19e-02,-5.04e-01,+5.30e-01 2 -319 Vertex: -196 ID: 0 (X,cT)=-2.61e-04,+1.33e-03,-2.36e-03,+2.73e-03 I: 1 385 111 -2.89e-01,+1.47e+00,-2.61e+00,+3.01e+00 2 -196 O: 2 728 22 -2.51e-01,+1.42e+00,-2.50e+00,+2.88e+00 1 729 22 -3.76e-02,+5.27e-02,-1.13e-01,+1.30e-01 1 Vertex: -197 ID: 0 (X,cT)=-2.11e-04,+1.20e-04,-4.28e-04,+4.95e-04 I: 1 386 111 -5.37e-01,+3.07e-01,-1.09e+00,+1.26e+00 2 -197 O: 2 730 22 -1.40e-02,+2.11e-02,-1.15e-01,+1.18e-01 1 731 22 -5.23e-01,+2.85e-01,-9.77e-01,+1.14e+00 1 GenVertex: -198 ID: 0 (X,cT):0 I: 1 387 223 +2.28e-01,+3.89e-01,-1.03e-01,+9.08e-01 2 -198 O: 2 732 22 +3.58e-01,+2.48e-01,-3.57e-01,+5.63e-01 1 733 111 -1.29e-01,+1.41e-01,+2.54e-01,+3.45e-01 2 -320 GenVertex: -199 ID: 0 (X,cT):0 I: 1 389 213 +9.33e-02,+2.48e-01,-1.45e+00,+1.54e+00 2 -199 O: 2 734 211 -4.31e-02,-3.71e-02,-2.76e-01,+3.14e-01 1 735 111 +1.36e-01,+2.85e-01,-1.18e+00,+1.23e+00 2 -321 Vertex: -200 ID: 0 (X,cT)=-4.99e-02,+6.40e-01,+1.95e+00,+2.06e+00 I: 1 396 -511 -1.22e+00,+1.57e+01,+4.76e+01,+5.04e+01 2 -200 O: 3 736 -12 +5.28e-01,+2.03e+00,+8.27e+00,+8.54e+00 1 737 11 -5.64e-01,+8.72e+00,+2.09e+01,+2.26e+01 1 738 413 -1.19e+00,+4.90e+00,+1.85e+01,+1.92e+01 2 -322 GenVertex: -201 ID: 0 (X,cT):0 I: 1 399 333 +8.18e-01,+5.20e-01,+9.12e-01,+1.68e+00 2 -201 O: 2 739 130 +3.84e-01,+2.42e-01,+5.77e-01,+8.87e-01 1 740 310 +4.35e-01,+2.78e-01,+3.35e-01,+7.91e-01 2 -323 GenVertex: -202 ID: 0 (X,cT):0 I: 1 400 -311 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 2 -202 O: 1 741 130 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 1 GenVertex: -203 ID: 0 (X,cT):0 I: 1 401 223 +4.99e-01,+1.27e+00,+5.22e-01,+1.67e+00 2 -203 O: 3 742 211 +1.64e-01,+1.38e-01,+3.42e-01,+4.27e-01 1 743 -211 +1.31e-01,+5.50e-01,-2.72e-02,+5.83e-01 1 744 111 +2.04e-01,+5.81e-01,+2.07e-01,+6.64e-01 2 -324 GenVertex: -204 ID: 0 (X,cT):0 I: 1 402 -213 +2.13e-01,+8.72e-01,+8.27e-01,+1.37e+00 2 -204 O: 2 745 -211 +1.89e-01,+8.94e-01,+6.02e-01,+1.10e+00 1 746 111 +2.40e-02,-2.14e-02,+2.24e-01,+2.64e-01 2 -325 GenVertex: -205 ID: 0 (X,cT):0 I: 1 403 223 +7.28e-01,+1.30e+00,+1.53e+00,+2.27e+00 2 -205 O: 3 747 -211 +1.20e-01,+9.60e-02,+2.45e-01,+3.21e-01 1 748 211 +4.63e-01,+5.53e-01,+4.00e-01,+8.36e-01 1 749 111 +1.45e-01,+6.48e-01,+8.85e-01,+1.11e+00 2 -326 GenVertex: -206 ID: 0 (X,cT):0 I: 1 404 2224 +5.22e-01,+1.37e+00,+2.42e+00,+3.06e+00 2 -206 O: 2 750 2212 +3.05e-01,+9.75e-01,+1.63e+00,+2.14e+00 1 751 211 +2.17e-01,+3.96e-01,+7.96e-01,+9.26e-01 1 GenVertex: -207 ID: 0 (X,cT):0 I: 1 405 223 -2.53e-01,+1.28e+00,+2.00e+00,+2.51e+00 2 -207 O: 3 752 211 +1.09e-01,+5.34e-01,+9.91e-01,+1.14e+00 1 753 -211 -3.42e-01,+6.52e-01,+7.31e-01,+1.05e+00 1 754 111 -1.99e-02,+8.89e-02,+2.74e-01,+3.19e-01 2 -327 GenVertex: -208 ID: 0 (X,cT):0 I: 1 408 2114 -2.21e+00,+9.88e-01,+8.99e+00,+9.40e+00 2 -208 O: 2 755 2212 -2.06e+00,+6.62e-01,+7.47e+00,+7.84e+00 1 756 -211 -1.45e-01,+3.26e-01,+1.51e+00,+1.56e+00 1 GenVertex: -209 ID: 0 (X,cT):0 I: 1 409 213 -1.20e+00,+5.02e-01,+4.41e+00,+4.67e+00 2 -209 O: 2 757 211 -8.56e-01,-4.23e-02,+2.24e+00,+2.40e+00 1 758 111 -3.47e-01,+5.44e-01,+2.17e+00,+2.27e+00 2 -328 GenVertex: -210 ID: 0 (X,cT):0 I: 1 410 -2114 -3.70e+00,+9.29e-01,+1.30e+01,+1.36e+01 2 -210 O: 2 759 -2112 -3.12e+00,+9.02e-01,+1.03e+01,+1.08e+01 1 760 111 -5.80e-01,+2.69e-02,+2.75e+00,+2.81e+00 2 -329 GenVertex: -211 ID: 0 (X,cT):0 I: 1 412 221 -6.28e-01,-4.17e-01,+1.39e+00,+1.67e+00 2 -211 O: 3 761 -211 -2.04e-01,-1.98e-01,+7.75e-01,+8.37e-01 1 762 211 -2.25e-01,-8.97e-02,+2.19e-01,+3.55e-01 1 763 111 -2.00e-01,-1.30e-01,+3.93e-01,+4.79e-01 2 -330 GenVertex: -212 ID: 0 (X,cT):0 I: 1 413 223 -7.07e-01,-1.43e+00,+4.89e+00,+5.20e+00 2 -212 O: 3 764 -211 -5.16e-01,-5.07e-01,+1.99e+00,+2.12e+00 1 765 211 -1.38e-01,-7.41e-01,+1.79e+00,+1.95e+00 1 766 111 -5.33e-02,-1.82e-01,+1.11e+00,+1.13e+00 2 -331 Vertex: -213 ID: 0 (X,cT)=+1.55e-01,+1.60e-01,+7.74e-01,+8.62e-01 I: 1 417 -5122 +2.88e+00,+2.97e+00,+1.43e+01,+1.60e+01 2 -213 O: 3 767 14 +1.35e+00,+1.17e+00,+6.20e+00,+6.45e+00 1 768 -13 -5.12e-01,+3.42e-01,-6.17e-02,+6.27e-01 1 769 -4122 +2.04e+00,+1.46e+00,+8.21e+00,+8.88e+00 2 -332 Vertex: -214 ID: 0 (X,cT)=-1.10e-06,-6.32e-05,-5.72e-05,+8.99e-05 I: 1 423 111 -5.20e-03,-2.98e-01,-2.69e-01,+4.24e-01 2 -214 O: 2 770 22 +2.42e-02,-1.62e-01,-2.24e-01,+2.77e-01 1 771 22 -2.94e-02,-1.36e-01,-4.56e-02,+1.47e-01 1 GenVertex: -215 ID: 0 (X,cT):0 I: 1 426 -311 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 2 -215 O: 1 772 130 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 1 Vertex: -216 ID: 0 (X,cT)=-6.62e-06,-4.69e-05,-2.83e-04,+2.87e-04 I: 1 427 111 -6.92e-02,-4.91e-01,-2.96e+00,+3.00e+00 2 -216 O: 2 773 22 -1.08e-01,-3.76e-01,-2.17e+00,+2.20e+00 1 774 22 +3.90e-02,-1.15e-01,-7.92e-01,+8.01e-01 1 GenVertex: -217 ID: 0 (X,cT):0 I: 1 428 311 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -217 O: 1 775 310 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -333 Vertex: -218 ID: 0 (X,cT)=+1.42e+02,-2.35e+01,-9.23e+02,+9.35e+02 I: 1 435 111 +5.77e-01,-1.85e-01,-4.18e+00,+4.23e+00 2 -218 O: 2 776 22 +3.63e-01,-1.28e-01,-3.06e+00,+3.09e+00 1 777 22 +2.14e-01,-5.71e-02,-1.12e+00,+1.14e+00 1 Vertex: -219 ID: 0 (X,cT)=+2.98e-05,-1.15e-05,-3.21e-04,+3.23e-04 I: 1 437 111 +4.99e-01,-1.92e-01,-5.37e+00,+5.40e+00 2 -219 O: 2 778 22 +4.09e-02,-1.84e-02,-9.73e-01,+9.74e-01 1 779 22 +4.58e-01,-1.73e-01,-4.40e+00,+4.43e+00 1 Vertex: -220 ID: 0 (X,cT)=+2.76e-05,-1.27e-05,-1.10e-04,+1.14e-04 I: 1 439 111 +4.16e-01,-1.92e-01,-1.65e+00,+1.72e+00 2 -220 O: 2 780 22 +1.92e-01,-3.75e-02,-8.67e-01,+8.89e-01 1 781 22 +2.24e-01,-1.54e-01,-7.82e-01,+8.28e-01 1 Vertex: -221 ID: 0 (X,cT)=+1.42e-04,-1.32e-04,-3.11e-03,+3.12e-03 I: 1 443 111 +7.44e-01,-6.91e-01,-1.63e+01,+1.63e+01 2 -221 O: 2 782 22 +1.88e-03,-1.06e-02,-5.89e-02,+5.99e-02 1 783 22 +7.42e-01,-6.81e-01,-1.62e+01,+1.62e+01 1 Vertex: -222 ID: 0 (X,cT)=+5.32e-05,-1.24e-04,-4.30e-03,+4.31e-03 I: 1 448 111 +3.87e-01,-9.01e-01,-3.13e+01,+3.13e+01 2 -222 O: 2 784 22 +1.86e-01,-5.99e-01,-1.97e+01,+1.97e+01 1 785 22 +2.00e-01,-3.02e-01,-1.15e+01,+1.15e+01 1 Vertex: -223 ID: 0 (X,cT)=+4.57e-05,-5.88e-06,-2.14e-03,+2.14e-03 I: 1 452 111 +5.06e-01,-6.51e-02,-2.37e+01,+2.37e+01 2 -223 O: 2 786 22 +5.08e-01,-7.15e-02,-2.25e+01,+2.25e+01 1 787 22 -2.51e-03,+6.42e-03,-1.18e+00,+1.18e+00 1 Vertex: -224 ID: 0 (X,cT)=-4.53e-06,-1.25e-04,-9.29e-03,+9.29e-03 I: 1 454 111 -3.59e-02,-9.94e-01,-7.36e+01,+7.36e+01 2 -224 O: 2 788 22 -8.31e-02,-7.05e-01,-5.36e+01,+5.36e+01 1 789 22 +4.73e-02,-2.89e-01,-2.00e+01,+2.00e+01 1 Vertex: -225 ID: 0 (X,cT)=-2.28e-05,-2.04e-05,-1.11e-03,+1.11e-03 I: 1 456 111 -1.26e-01,-1.13e-01,-6.14e+00,+6.15e+00 2 -225 O: 2 790 22 -6.38e-02,-1.21e-01,-5.16e+00,+5.16e+00 1 791 22 -6.25e-02,+7.72e-03,-9.84e-01,+9.86e-01 1 GenVertex: -226 ID: 0 (X,cT):0 I: 1 458 113 -1.36e+00,+1.20e-01,-9.07e+01,+9.07e+01 2 -226 O: 2 792 211 -1.02e+00,+3.17e-01,-5.84e+01,+5.84e+01 1 793 -211 -3.36e-01,-1.97e-01,-3.24e+01,+3.24e+01 1 GenVertex: -227 ID: 0 (X,cT):0 I: 1 459 311 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -227 O: 1 794 310 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -334 Vertex: -228 ID: 0 (X,cT)=-5.20e-05,+8.34e-05,-4.55e-03,+4.55e-03 I: 1 460 111 -6.21e-01,+9.95e-01,-5.43e+01,+5.43e+01 2 -228 O: 2 795 22 -1.78e-01,+2.11e-01,-1.48e+01,+1.48e+01 1 796 22 -4.42e-01,+7.83e-01,-3.95e+01,+3.95e+01 1 Vertex: -229 ID: 0 (X,cT)=-3.50e-06,-3.46e-06,-4.40e-04,+4.40e-04 I: 1 463 111 -1.72e-01,-1.70e-01,-2.16e+01,+2.16e+01 2 -229 O: 2 797 22 +6.92e-03,-4.60e-02,-7.00e+00,+7.00e+00 1 798 22 -1.78e-01,-1.24e-01,-1.46e+01,+1.46e+01 1 Vertex: -230 ID: 0 (X,cT)=-2.12e-05,+2.38e-05,-3.38e-03,+3.38e-03 I: 1 467 111 -6.25e-01,+7.02e-01,-9.98e+01,+9.98e+01 2 -230 O: 2 799 22 -2.25e-01,+3.36e-01,-3.87e+01,+3.87e+01 1 800 22 -4.00e-01,+3.66e-01,-6.11e+01,+6.11e+01 1 Vertex: -231 ID: 0 (X,cT)=+3.14e-04,+5.13e-04,-8.33e-03,+8.35e-03 I: 1 475 111 +1.55e+00,+2.53e+00,-4.11e+01,+4.12e+01 2 -231 O: 2 801 22 +1.02e+00,+1.78e+00,-2.84e+01,+2.85e+01 1 802 22 +5.31e-01,+7.49e-01,-1.27e+01,+1.27e+01 1 Vertex: -232 ID: 0 (X,cT)=+3.24e-04,+8.92e-05,-1.15e-03,+1.20e-03 I: 1 481 111 +5.31e-01,+1.46e-01,-1.88e+00,+1.97e+00 2 -232 O: 2 803 22 +1.13e-01,+3.51e-02,-6.30e-01,+6.41e-01 1 804 22 +4.18e-01,+1.11e-01,-1.25e+00,+1.33e+00 1 Vertex: -233 ID: 0 (X,cT)=+3.23e-05,+1.90e-05,-1.75e-05,+4.80e-05 I: 1 488 111 +1.78e-01,+1.05e-01,-9.65e-02,+2.65e-01 2 -233 O: 2 805 22 +4.44e-02,-2.61e-02,+5.82e-03,+5.18e-02 1 806 22 +1.34e-01,+1.31e-01,-1.02e-01,+2.13e-01 1 Vertex: -234 ID: 0 (X,cT)=+1.17e-03,+3.08e-04,-6.14e-04,+1.36e-03 I: 1 490 111 +2.24e+00,+5.88e-01,-1.17e+00,+2.60e+00 2 -234 O: 2 807 22 +1.15e+00,+3.70e-01,-5.93e-01,+1.35e+00 1 808 22 +1.09e+00,+2.18e-01,-5.80e-01,+1.25e+00 1 Vertex: -235 ID: 0 (X,cT)=+1.17e-04,+9.13e-07,-4.95e-05,+1.28e-04 I: 1 492 111 +9.62e-01,+7.53e-03,-4.08e-01,+1.05e+00 2 -235 O: 2 809 22 +3.28e-01,+4.79e-02,-1.89e-01,+3.81e-01 1 810 22 +6.35e-01,-4.04e-02,-2.19e-01,+6.73e-01 1 Vertex: -236 ID: 0 (X,cT)=+1.55e-04,+4.64e-05,-5.95e-05,+1.72e-04 I: 1 496 111 +2.12e+00,+6.35e-01,-8.15e-01,+2.36e+00 2 -236 O: 2 811 22 +6.62e-01,+1.37e-01,-2.71e-01,+7.28e-01 1 812 22 +1.46e+00,+4.98e-01,-5.44e-01,+1.63e+00 1 Vertex: -237 ID: 0 (X,cT)=+4.21e+01,+1.49e+01,+3.51e+01,+6.32e+01 I: 1 497 -3122 +1.69e+00,+5.99e-01,+1.41e+00,+2.54e+00 2 -237 O: 2 813 -2112 +1.40e+00,+3.97e-01,+1.12e+00,+2.06e+00 1 814 111 +2.90e-01,+2.01e-01,+2.89e-01,+4.76e-01 2 -335 Vertex: -238 ID: 0 (X,cT)=+9.34e+01,+8.41e+00,+8.92e+01,+1.46e+02 I: 1 499 3122 +1.56e+00,+1.41e-01,+1.49e+00,+2.44e+00 2 -238 O: 2 815 2212 +1.33e+00,+2.18e-01,+1.29e+00,+2.09e+00 1 816 -211 +2.37e-01,-7.75e-02,+1.98e-01,+3.48e-01 1 Vertex: -239 ID: 0 (X,cT)=-3.26e-05,-5.08e-06,+8.47e-05,+9.65e-05 I: 1 501 111 -1.36e-01,-2.12e-02,+3.53e-01,+4.02e-01 2 -239 O: 2 817 22 +2.73e-02,-8.34e-03,+6.34e-02,+6.95e-02 1 818 22 -1.63e-01,-1.28e-02,+2.90e-01,+3.33e-01 1 Vertex: -240 ID: 0 (X,cT)=-2.55e-05,-5.04e-07,+4.23e-05,+6.82e-05 I: 1 502 111 -7.31e-02,-1.45e-03,+1.22e-01,+1.96e-01 2 -240 O: 2 819 22 -6.59e-02,-6.30e-02,+6.59e-02,+1.12e-01 1 820 22 -7.22e-03,+6.16e-02,+5.57e-02,+8.34e-02 1 Vertex: -241 ID: 0 (X,cT)=+9.20e-06,+5.99e-06,+2.56e-05,+2.99e-05 I: 1 503 111 +1.14e-01,+7.44e-02,+3.18e-01,+3.71e-01 2 -241 O: 2 821 22 +5.03e-02,+2.40e-02,+1.51e-02,+5.77e-02 1 822 22 +6.39e-02,+5.04e-02,+3.03e-01,+3.13e-01 1 Vertex: -242 ID: 0 (X,cT)=+3.52e-05,+1.53e-05,+5.60e-05,+6.81e-05 I: 1 505 111 +8.74e-01,+3.81e-01,+1.39e+00,+1.69e+00 2 -242 O: 2 823 22 +1.96e-01,+6.81e-02,+4.03e-01,+4.53e-01 1 824 22 +6.78e-01,+3.13e-01,+9.86e-01,+1.24e+00 1 Vertex: -243 ID: 0 (X,cT)=+1.35e-05,+5.93e-06,+5.04e-05,+5.25e-05 I: 1 507 111 +5.98e-01,+2.64e-01,+2.24e+00,+2.34e+00 2 -243 O: 2 825 22 +2.17e-01,+1.45e-01,+7.20e-01,+7.66e-01 1 826 22 +3.81e-01,+1.19e-01,+1.52e+00,+1.57e+00 1 Vertex: -244 ID: 0 (X,cT)=+5.59e+01,+3.39e+01,+1.24e+02,+1.41e+02 I: 1 510 310 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -244 O: 2 827 -211 +1.27e+00,+6.38e-01,+2.33e+00,+2.73e+00 1 828 211 +5.90e-01,+4.88e-01,+1.80e+00,+1.96e+00 1 Vertex: -245 ID: 0 (X,cT)=+8.25e-05,+2.93e-04,+2.65e-04,+4.15e-04 I: 1 512 111 +1.15e-01,+4.08e-01,+3.69e-01,+5.78e-01 2 -245 O: 2 829 22 +8.41e-02,+8.42e-02,+1.12e-01,+1.64e-01 1 830 22 +3.08e-02,+3.24e-01,+2.57e-01,+4.14e-01 1 Vertex: -246 ID: 0 (X,cT)=+1.28e-04,+2.57e-04,+3.06e-05,+2.89e-04 I: 1 514 111 +1.49e+00,+2.99e+00,+3.56e-01,+3.36e+00 2 -246 O: 2 831 22 +3.67e-01,+8.38e-01,+1.39e-01,+9.26e-01 1 832 22 +1.12e+00,+2.15e+00,+2.18e-01,+2.44e+00 1 GenVertex: -247 ID: 0 (X,cT):0 I: 1 520 221 -2.55e-01,+1.79e+00,-1.36e-01,+1.90e+00 2 -247 O: 3 833 111 -1.60e-01,+7.21e-01,-2.08e-02,+7.51e-01 2 -336 834 111 -5.09e-02,+4.26e-01,-1.73e-01,+4.82e-01 2 -337 835 111 -4.38e-02,+6.46e-01,+5.75e-02,+6.64e-01 2 -338 GenVertex: -248 ID: 0 (X,cT):0 I: 1 521 311 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 2 -248 O: 1 836 130 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 1 Vertex: -249 ID: 0 (X,cT)=-1.53e-04,+7.50e-05,-6.64e-05,+1.84e-04 I: 1 532 111 -1.31e+00,+6.44e-01,-5.69e-01,+1.58e+00 2 -249 O: 2 837 22 -1.01e+00,+5.58e-01,-4.57e-01,+1.24e+00 1 838 22 -2.99e-01,+8.56e-02,-1.13e-01,+3.31e-01 1 GenVertex: -250 ID: 0 (X,cT):0 I: 1 533 -311 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 2 -250 O: 1 839 130 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 1 Vertex: -251 ID: 0 (X,cT)=-1.03e-03,-2.90e-04,+1.75e-04,+1.09e-03 I: 1 534 111 -1.17e+00,-3.29e-01,+1.98e-01,+1.24e+00 2 -251 O: 2 840 22 -9.20e-01,-2.55e-01,+2.11e-01,+9.78e-01 1 841 22 -2.48e-01,-7.37e-02,-1.32e-02,+2.59e-01 1 GenVertex: -252 ID: 0 (X,cT):0 I: 1 535 311 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 2 -252 O: 1 842 130 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 1 Vertex: -253 ID: 0 (X,cT)=-2.44e-05,-1.52e-05,-6.14e-05,+7.73e-05 I: 1 539 111 -8.87e-02,-5.53e-02,-2.23e-01,+2.81e-01 2 -253 O: 2 843 22 +2.35e-04,-6.35e-02,-3.44e-02,+7.22e-02 1 844 22 -8.89e-02,+8.20e-03,-1.88e-01,+2.08e-01 1 Vertex: -254 ID: 0 (X,cT)=-1.47e-05,-1.70e-05,-4.70e-06,+2.42e-05 I: 1 542 111 -2.65e-01,-3.05e-01,-8.44e-02,+4.34e-01 2 -254 O: 3 845 22 -1.18e-01,-5.74e-02,-1.47e-02,+1.32e-01 1 846 11 -1.17e-02,-6.20e-02,-2.70e-02,+6.86e-02 1 847 -11 -1.35e-01,-1.86e-01,-4.27e-02,+2.33e-01 1 Vertex: -255 ID: 0 (X,cT)=-2.46e-04,-6.82e-04,+4.14e-05,+7.29e-04 I: 1 544 111 -5.21e-01,-1.44e+00,+8.75e-02,+1.54e+00 2 -255 O: 2 848 22 -2.63e-01,-6.95e-01,+1.09e-01,+7.51e-01 1 849 22 -2.58e-01,-7.48e-01,-2.15e-02,+7.91e-01 1 Vertex: -256 ID: 0 (X,cT)=-2.25e+02,-6.91e+02,-2.38e+02,+7.67e+02 I: 1 545 310 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -256 O: 2 850 211 -1.53e-01,-7.37e-01,-2.99e-01,+8.22e-01 1 851 -211 -1.61e+00,-4.67e+00,-1.57e+00,+5.19e+00 1 GenVertex: -257 ID: 0 (X,cT):0 I: 1 546 311 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -257 O: 1 852 310 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -339 Vertex: -258 ID: 0 (X,cT)=-1.66e-05,-5.07e-04,-2.33e-04,+5.63e-04 I: 1 547 111 -3.27e-02,-9.96e-01,-4.58e-01,+1.10e+00 2 -258 O: 2 853 22 +3.89e-02,-6.86e-01,-3.27e-01,+7.61e-01 1 854 22 -7.15e-02,-3.11e-01,-1.30e-01,+3.44e-01 1 Vertex: -259 ID: 0 (X,cT)=-2.02e-06,-5.48e-04,-3.20e-04,+6.36e-04 I: 1 549 111 -6.33e-03,-1.72e+00,-1.00e+00,+2.00e+00 2 -259 O: 2 855 22 +2.12e-02,-4.34e-02,-3.30e-02,+5.85e-02 1 856 22 -2.75e-02,-1.68e+00,-9.70e-01,+1.94e+00 1 Vertex: -260 ID: 0 (X,cT)=+2.28e-05,-1.55e-06,+2.33e-05,+3.32e-05 I: 1 553 111 +5.23e-01,-3.55e-02,+5.35e-01,+7.61e-01 2 -260 O: 2 857 22 +3.37e-01,+2.78e-02,+2.79e-01,+4.38e-01 1 858 22 +1.86e-01,-6.32e-02,+2.56e-01,+3.23e-01 1 Vertex: -261 ID: 0 (X,cT)=+6.70e-04,-2.78e-04,+1.68e-03,+1.83e-03 I: 1 557 111 +1.28e+00,-5.31e-01,+3.22e+00,+3.51e+00 2 -261 O: 2 859 22 +6.09e-01,-2.77e-01,+1.71e+00,+1.84e+00 1 860 22 +6.74e-01,-2.54e-01,+1.51e+00,+1.67e+00 1 Vertex: -262 ID: 0 (X,cT)=+3.11e-06,-3.57e-05,+2.05e-04,+2.08e-04 I: 1 559 111 +3.99e-02,-4.57e-01,+2.63e+00,+2.67e+00 2 -262 O: 2 861 22 -4.44e-02,-2.15e-01,+1.34e+00,+1.36e+00 1 862 22 +8.43e-02,-2.43e-01,+1.28e+00,+1.31e+00 1 Vertex: -263 ID: 0 (X,cT)=+9.93e-06,-1.35e-05,+1.47e-04,+1.48e-04 I: 1 561 111 +2.42e-01,-3.29e-01,+3.59e+00,+3.62e+00 2 -263 O: 2 863 22 +9.11e-02,-1.47e-01,+9.93e-01,+1.01e+00 1 864 22 +1.51e-01,-1.82e-01,+2.60e+00,+2.61e+00 1 Vertex: -264 ID: 0 (X,cT)=-3.41e-04,-5.14e-04,+6.37e-03,+6.40e-03 I: 1 563 111 -3.91e-01,-5.91e-01,+7.32e+00,+7.35e+00 2 -264 O: 2 865 22 -1.05e-01,-7.79e-02,+1.63e+00,+1.63e+00 1 866 22 -2.87e-01,-5.13e-01,+5.69e+00,+5.72e+00 1 Vertex: -265 ID: 0 (X,cT)=-2.08e-04,-3.70e-04,+2.75e-03,+2.78e-03 I: 1 565 111 -2.47e-01,-4.39e-01,+3.26e+00,+3.31e+00 2 -265 O: 2 867 22 -1.85e-01,-2.10e-01,+1.55e+00,+1.58e+00 1 868 22 -6.23e-02,-2.29e-01,+1.71e+00,+1.73e+00 1 Vertex: -266 ID: 0 (X,cT)=-3.19e-05,-2.46e-07,+1.22e-04,+1.27e-04 I: 1 569 111 -3.11e-01,-2.39e-03,+1.19e+00,+1.24e+00 2 -266 O: 2 869 22 -9.35e-02,-5.85e-02,+4.89e-01,+5.01e-01 1 870 22 -2.17e-01,+5.61e-02,+7.03e-01,+7.38e-01 1 Vertex: -267 ID: 0 (X,cT)=-1.62e-05,+9.51e-06,+1.72e-04,+1.73e-04 I: 1 573 111 -4.27e-01,+2.51e-01,+4.52e+00,+4.55e+00 2 -267 O: 2 871 22 -2.75e-01,+1.46e-01,+2.23e+00,+2.26e+00 1 872 22 -1.52e-01,+1.05e-01,+2.29e+00,+2.30e+00 1 Vertex: -268 ID: 0 (X,cT)=-6.04e-05,-1.70e-06,+6.99e-04,+7.01e-04 I: 1 575 111 -2.62e+00,-7.39e-02,+3.03e+01,+3.04e+01 2 -268 O: 2 873 22 -2.76e-01,+2.50e-02,+2.92e+00,+2.93e+00 1 874 22 -2.34e+00,-9.88e-02,+2.74e+01,+2.75e+01 1 GenVertex: -269 ID: 0 (X,cT):0 I: 1 578 221 -6.68e-01,+1.03e-01,+1.25e+01,+1.26e+01 2 -269 O: 2 875 22 -7.28e-01,+1.63e-01,+9.62e+00,+9.65e+00 1 876 22 +6.01e-02,-6.06e-02,+2.91e+00,+2.91e+00 1 Vertex: -270 ID: 0 (X,cT)=-1.20e-03,-2.16e-04,+2.32e-02,+2.32e-02 I: 1 580 111 -2.77e+00,-4.97e-01,+5.33e+01,+5.34e+01 2 -270 O: 2 877 22 -1.75e+00,-2.49e-01,+3.37e+01,+3.37e+01 1 878 22 -1.02e+00,-2.48e-01,+1.97e+01,+1.97e+01 1 Vertex: -271 ID: 0 (X,cT)=-4.32e-05,-1.57e-05,+1.07e-03,+1.08e-03 I: 1 583 111 -9.11e-01,-3.32e-01,+2.27e+01,+2.27e+01 2 -271 O: 2 879 22 -8.44e-01,-3.43e-01,+2.11e+01,+2.12e+01 1 880 22 -6.72e-02,+1.10e-02,+1.52e+00,+1.53e+00 1 Vertex: -272 ID: 0 (X,cT)=-2.73e-04,-1.63e-04,+7.51e-03,+7.52e-03 I: 1 585 111 -2.27e+00,-1.36e+00,+6.26e+01,+6.26e+01 2 -272 O: 2 881 22 -9.40e-01,-5.68e-01,+2.44e+01,+2.44e+01 1 882 22 -1.33e+00,-7.93e-01,+3.82e+01,+3.82e+01 1 Vertex: -273 ID: 0 (X,cT)=-7.46e-04,-8.82e-04,+4.48e-02,+4.48e-02 I: 1 589 111 -1.31e+00,-1.55e+00,+7.85e+01,+7.85e+01 2 -273 O: 2 883 22 -6.20e-01,-6.50e-01,+3.63e+01,+3.63e+01 1 884 22 -6.88e-01,-8.96e-01,+4.21e+01,+4.22e+01 1 Vertex: -274 ID: 0 (X,cT)=-2.30e+01,-2.72e+01,+2.15e+03,+2.15e+03 I: 1 590 310 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -274 O: 2 885 -211 -4.70e-01,-4.75e-01,+3.69e+01,+3.69e+01 1 886 211 +2.26e-02,-5.30e-02,+4.72e+00,+4.72e+00 1 GenVertex: -275 ID: 0 (X,cT):0 I: 1 591 311 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -275 O: 1 887 310 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -340 Vertex: -276 ID: 0 (X,cT)=-2.07e-05,-4.13e-05,+7.05e-03,+7.05e-03 I: 1 594 111 -2.16e-01,-4.31e-01,+7.35e+01,+7.35e+01 2 -276 O: 2 888 22 -1.64e-01,-3.52e-01,+6.54e+01,+6.54e+01 1 889 22 -5.25e-02,-7.90e-02,+8.14e+00,+8.14e+00 1 GenVertex: -277 ID: 0 (X,cT):0 I: 1 595 -311 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -277 O: 1 890 310 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -341 Vertex: -278 ID: 0 (X,cT)=-7.61e+01,+2.52e+01,+2.19e+04,+2.19e+04 I: 1 597 -3122 -9.54e-01,+3.16e-01,+2.74e+02,+2.74e+02 2 -278 O: 2 891 -2112 -7.73e-01,+2.86e-01,+2.47e+02,+2.47e+02 1 892 111 -1.81e-01,+3.09e-02,+2.74e+01,+2.74e+01 2 -342 Vertex: -279 ID: 0 (X,cT)=-4.92e-06,+1.06e-05,+1.23e-03,+1.23e-03 I: 1 607 111 -2.17e-01,+4.70e-01,+5.44e+01,+5.44e+01 2 -279 O: 2 893 22 -2.06e-01,+4.59e-01,+5.39e+01,+5.39e+01 1 894 22 -1.18e-02,+1.13e-02,+4.59e-01,+4.59e-01 1 Vertex: -280 ID: 0 (X,cT)=+9.68e+01,+4.45e+01,+3.03e+04,+3.03e+04 I: 1 609 3122 +1.36e+00,+6.24e-01,+4.24e+02,+4.24e+02 2 -280 O: 2 895 2112 +1.10e+00,+5.12e-01,+3.28e+02,+3.28e+02 1 896 111 +2.53e-01,+1.12e-01,+9.64e+01,+9.64e+01 2 -343 Vertex: -281 ID: 0 (X,cT)=+2.08e-05,-1.35e-05,+5.27e-03,+5.27e-03 I: 1 614 111 +1.47e+00,-9.55e-01,+3.73e+02,+3.73e+02 2 -281 O: 2 897 22 +3.51e-01,-1.63e-01,+8.47e+01,+8.47e+01 1 898 22 +1.12e+00,-7.92e-01,+2.89e+02,+2.89e+02 1 Vertex: -282 ID: 0 (X,cT)=+1.02e-05,-2.46e-05,+1.74e-02,+1.74e-02 I: 1 617 111 +2.09e-01,-5.03e-01,+3.56e+02,+3.56e+02 2 -282 O: 2 899 22 +1.31e-01,-3.48e-01,+2.78e+02,+2.78e+02 1 900 22 +7.86e-02,-1.54e-01,+7.75e+01,+7.75e+01 1 Vertex: -283 ID: 0 (X,cT)=-2.86e+01,+3.51e+01,+4.74e+01,+8.99e+01 I: 1 622 -3122 -5.18e-01,+6.36e-01,+8.61e-01,+1.63e+00 2 -283 O: 2 901 -2212 -5.28e-01,+5.39e-01,+8.17e-01,+1.45e+00 1 902 211 +9.39e-03,+9.67e-02,+4.39e-02,+1.76e-01 1 GenVertex: -284 ID: 0 (X,cT):0 I: 1 630 221 -2.96e-01,-3.90e-01,-1.25e+03,+1.25e+03 2 -284 O: 3 903 211 -1.77e-01,-1.37e-01,-3.83e+02,+3.83e+02 1 904 -211 -7.48e-02,+3.86e-03,-2.14e+02,+2.14e+02 1 905 111 -4.44e-02,-2.57e-01,-6.57e+02,+6.57e+02 2 -344 Vertex: -285 ID: 0 (X,cT)=-5.10e-06,-1.49e-05,+1.87e-04,+1.89e-04 I: 1 632 111 -2.89e-02,-8.45e-02,+1.06e+00,+1.07e+00 2 -285 O: 2 906 22 -6.45e-02,-5.69e-02,+3.34e-01,+3.45e-01 1 907 22 +3.56e-02,-2.76e-02,+7.24e-01,+7.26e-01 1 GenVertex: -286 ID: 0 (X,cT):0 I: 1 633 -311 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 2 -286 O: 1 908 130 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 1 Vertex: -287 ID: 0 (X,cT)=+1.14e-05,-6.20e-05,+1.74e-04,+1.88e-04 I: 1 634 111 +4.95e-02,-2.69e-01,+7.54e-01,+8.14e-01 2 -287 O: 2 909 22 -1.10e-02,+1.82e-03,+1.30e-01,+1.30e-01 1 910 22 +6.05e-02,-2.71e-01,+6.25e-01,+6.83e-01 1 GenVertex: -288 ID: 0 (X,cT):0 I: 1 637 -311 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -288 O: 1 911 310 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -345 Vertex: -289 ID: 0 (X,cT)=+1.75e-03,+6.65e-03,+8.04e-03,+1.06e-02 I: 1 641 111 +2.01e+00,+7.64e+00,+9.24e+00,+1.22e+01 2 -289 O: 2 912 22 +4.74e-01,+2.03e+00,+2.41e+00,+3.19e+00 1 913 22 +1.53e+00,+5.61e+00,+6.83e+00,+8.97e+00 1 Vertex: -290 ID: 0 (X,cT)=+1.51e-05,-2.74e-06,+4.43e-05,+4.82e-05 I: 1 646 111 +1.82e-01,-3.30e-02,+5.33e-01,+5.80e-01 2 -290 O: 2 914 22 +2.43e-02,-6.36e-02,+1.47e-01,+1.62e-01 1 915 22 +1.58e-01,+3.06e-02,+3.87e-01,+4.19e-01 1 Vertex: -291 ID: 0 (X,cT)=-1.17e-05,-5.06e-07,+6.99e-06,+1.40e-05 I: 1 648 111 -4.47e-01,-1.94e-02,+2.68e-01,+5.39e-01 2 -291 O: 2 916 22 -4.07e-01,-2.08e-02,+2.83e-01,+4.96e-01 1 917 22 -4.02e-02,+1.42e-03,-1.48e-02,+4.29e-02 1 GenVertex: -292 ID: 0 (X,cT):0 I: 1 650 311 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -292 O: 1 918 310 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -346 Vertex: -293 ID: 0 (X,cT)=+4.76e-06,-3.16e-05,+7.75e-05,+8.42e-05 I: 1 651 111 +7.53e-02,-4.99e-01,+1.22e+00,+1.33e+00 2 -293 O: 2 919 22 +3.74e-02,-5.48e-02,+2.66e-01,+2.75e-01 1 920 22 +3.79e-02,-4.44e-01,+9.57e-01,+1.06e+00 1 Vertex: -294 ID: 0 (X,cT)=+2.51e-05,-6.15e-05,+2.18e-04,+2.38e-04 I: 1 654 111 +4.98e-02,-1.22e-01,+4.33e-01,+4.72e-01 2 -294 O: 2 921 22 -4.60e-02,-2.63e-02,+1.10e-01,+1.22e-01 1 922 22 +9.58e-02,-9.56e-02,+3.23e-01,+3.50e-01 1 GenVertex: -295 ID: 0 (X,cT):0 I: 1 655 -311 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 2 -295 O: 1 923 130 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 1 Vertex: -296 ID: 0 (X,cT)=+2.74e-05,-2.60e-05,+1.01e-04,+1.08e-04 I: 1 656 111 +3.27e-01,-3.10e-01,+1.21e+00,+1.29e+00 2 -296 O: 2 924 22 +2.86e-01,-2.03e-01,+8.18e-01,+8.90e-01 1 925 22 +4.12e-02,-1.07e-01,+3.87e-01,+4.04e-01 1 Vertex: -297 ID: 0 (X,cT)=-1.90e-04,+2.51e-04,+1.06e-04,+3.36e-04 I: 1 658 111 -4.91e-01,+6.46e-01,+2.74e-01,+8.67e-01 2 -297 O: 2 926 22 -3.20e-03,+1.46e-02,+2.86e-02,+3.22e-02 1 927 22 -4.87e-01,+6.32e-01,+2.45e-01,+8.35e-01 1 GenVertex: -298 ID: 0 (X,cT):0 I: 1 659 311 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -298 O: 1 928 310 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -347 Vertex: -299 ID: 0 (X,cT)=+5.14e+01,+2.56e+02,-1.67e+04,+1.67e+04 I: 1 661 3122 +2.03e-01,+9.00e-01,-5.74e+01,+5.74e+01 2 -299 O: 2 929 2212 +1.03e-01,+8.32e-01,-5.15e+01,+5.15e+01 1 930 -211 +9.93e-02,+6.80e-02,-5.86e+00,+5.86e+00 1 GenVertex: -300 ID: 0 (X,cT):0 I: 1 673 -311 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 2 -300 O: 1 931 130 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 1 Vertex: -301 ID: 0 (X,cT)=-8.00e-06,-1.84e-05,-9.97e-04,+9.97e-04 I: 1 674 111 -2.02e-01,-4.65e-01,-2.52e+01,+2.52e+01 2 -301 O: 2 932 22 -1.34e-01,-1.77e-01,-8.88e+00,+8.88e+00 1 933 22 -6.80e-02,-2.88e-01,-1.63e+01,+1.63e+01 1 Vertex: -302 ID: 0 (X,cT)=-5.52e-04,-3.83e-05,-6.12e-03,+6.15e-03 I: 1 676 111 -7.69e-01,-5.33e-02,-8.53e+00,+8.56e+00 2 -302 O: 2 934 22 -4.81e-01,+5.70e-03,-4.71e+00,+4.73e+00 1 935 22 -2.87e-01,-5.90e-02,-3.82e+00,+3.83e+00 1 Vertex: -303 ID: 0 (X,cT)=-1.36e-05,-7.83e-06,-4.08e-05,+4.38e-05 I: 1 680 111 -5.23e-01,-3.01e-01,-1.57e+00,+1.69e+00 2 -303 O: 2 936 22 -4.68e-01,-3.04e-01,-1.48e+00,+1.58e+00 1 937 22 -5.49e-02,+2.93e-03,-8.81e-02,+1.04e-01 1 GenVertex: -304 ID: 0 (X,cT):0 I: 1 681 -311 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 2 -304 O: 1 938 130 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 1 Vertex: -305 ID: 0 (X,cT)=+8.43e-05,-1.53e-04,-5.72e-04,+6.01e-04 I: 1 684 111 +1.95e-01,-3.54e-01,-1.32e+00,+1.39e+00 2 -305 O: 2 939 22 +1.67e-03,-6.89e-02,-3.75e-01,+3.82e-01 1 940 22 +1.93e-01,-2.85e-01,-9.50e-01,+1.01e+00 1 GenVertex: -306 ID: 0 (X,cT):0 I: 1 690 223 +1.24e-02,-7.30e-01,+1.63e+00,+1.95e+00 2 -306 O: 3 941 211 +1.19e-01,-3.99e-01,+4.41e-01,+6.22e-01 1 942 -211 +9.37e-02,-3.00e-01,+7.86e-01,+8.58e-01 1 943 111 -2.01e-01,-3.13e-02,+4.05e-01,+4.73e-01 2 -348 Vertex: -307 ID: 0 (X,cT)=-4.54e-06,-1.65e-06,+6.17e-05,+6.19e-05 I: 1 692 111 -1.79e-01,-6.51e-02,+2.43e+00,+2.44e+00 2 -307 O: 2 944 22 -1.38e-01,-1.55e-02,+9.88e-01,+9.98e-01 1 945 22 -4.07e-02,-4.96e-02,+1.45e+00,+1.45e+00 1 Vertex: -308 ID: 0 (X,cT)=+8.43e-05,-1.82e-04,+5.87e-03,+5.88e-03 I: 1 694 111 +2.62e-01,-5.65e-01,+1.82e+01,+1.82e+01 2 -308 O: 2 946 22 +1.29e-01,-2.85e-01,+1.11e+01,+1.11e+01 1 947 22 +1.32e-01,-2.81e-01,+7.15e+00,+7.16e+00 1 Vertex: -309 ID: 0 (X,cT)=+3.57e-04,-3.55e-04,+1.50e-02,+1.50e-02 I: 1 698 111 +1.39e+00,-1.39e+00,+5.86e+01,+5.87e+01 2 -309 O: 2 948 22 +1.25e+00,-1.21e+00,+5.27e+01,+5.28e+01 1 949 22 +1.46e-01,-1.80e-01,+5.91e+00,+5.92e+00 1 Vertex: -310 ID: 0 (X,cT)=+1.89e+01,-7.00e+00,+2.21e+03,+2.21e+03 I: 1 703 310 +2.91e-01,-1.08e-01,+3.39e+01,+3.39e+01 2 -310 O: 2 950 211 +8.06e-02,-7.39e-02,+2.67e+01,+2.67e+01 1 951 -211 +2.10e-01,-3.36e-02,+7.23e+00,+7.23e+00 1 Vertex: -311 ID: 0 (X,cT)=+2.65e+01,-5.53e+00,+6.50e+02,+6.51e+02 I: 1 704 310 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -311 O: 2 952 -211 -4.39e-02,-7.12e-02,+2.81e+00,+2.81e+00 1 953 211 +4.97e-01,-2.34e-02,+8.31e+00,+8.33e+00 1 Vertex: -312 ID: 0 (X,cT)=+3.13e-05,+3.33e-04,+6.72e-03,+6.73e-03 I: 1 706 111 +9.93e-02,+1.06e+00,+2.13e+01,+2.14e+01 2 -312 O: 2 954 22 +2.26e-03,+3.05e-01,+7.28e+00,+7.28e+00 1 955 22 +9.70e-02,+7.53e-01,+1.41e+01,+1.41e+01 1 Vertex: -313 ID: 0 (X,cT)=+8.62e-05,+3.52e-04,+3.19e-03,+3.21e-03 I: 1 711 111 +1.92e-01,+7.83e-01,+7.09e+00,+7.14e+00 2 -313 O: 2 956 22 +1.26e-01,+3.38e-01,+2.71e+00,+2.73e+00 1 957 22 +6.53e-02,+4.45e-01,+4.38e+00,+4.40e+00 1 Vertex: -314 ID: 0 (X,cT)=+3.70e-04,+5.62e-06,+7.44e-04,+8.38e-04 I: 1 713 111 +4.78e-01,+7.25e-03,+9.61e-01,+1.08e+00 2 -314 O: 2 958 22 +1.25e-01,+6.19e-02,+2.81e-01,+3.14e-01 1 959 22 +3.53e-01,-5.46e-02,+6.80e-01,+7.68e-01 1 Vertex: -315 ID: 0 (X,cT)=-2.97e-05,+6.74e-05,-5.56e-05,+9.31e-05 I: 1 715 111 -3.17e-01,+7.19e-01,-5.93e-01,+9.94e-01 2 -315 O: 2 960 22 -2.87e-01,+5.18e-01,-4.70e-01,+7.56e-01 1 961 22 -2.97e-02,+2.01e-01,-1.23e-01,+2.38e-01 1 Vertex: -316 ID: 0 (X,cT)=-4.82e-04,+4.70e-04,-6.31e-04,+9.27e-04 I: 1 720 111 -7.32e-01,+7.13e-01,-9.57e-01,+1.41e+00 2 -316 O: 2 962 22 -2.26e-01,+3.09e-01,-3.39e-01,+5.11e-01 1 963 22 -5.06e-01,+4.04e-01,-6.19e-01,+8.96e-01 1 GenVertex: -317 ID: 0 (X,cT):0 I: 1 721 311 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -317 O: 1 964 310 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -349 Vertex: -318 ID: 0 (X,cT)=-8.68e-08,+5.68e-06,-1.15e-05,+1.31e-05 I: 1 722 111 -4.37e-03,+2.86e-01,-5.78e-01,+6.59e-01 2 -318 O: 2 965 22 -1.71e-02,+2.19e-01,-5.34e-01,+5.77e-01 1 966 22 +1.28e-02,+6.74e-02,-4.36e-02,+8.13e-02 1 Vertex: -319 ID: 0 (X,cT)=+3.19e-06,+3.01e-06,-2.45e-05,+2.58e-05 I: 1 727 111 +6.57e-02,+6.19e-02,-5.04e-01,+5.30e-01 2 -319 O: 2 967 22 +9.31e-02,+8.33e-02,-3.51e-01,+3.72e-01 1 968 22 -2.75e-02,-2.14e-02,-1.54e-01,+1.58e-01 1 Vertex: -320 ID: 0 (X,cT)=-1.07e-05,+1.17e-05,+2.11e-05,+2.87e-05 I: 1 733 111 -1.29e-01,+1.41e-01,+2.54e-01,+3.45e-01 2 -320 O: 2 969 22 -1.41e-01,+1.50e-01,+2.58e-01,+3.30e-01 1 970 22 +1.15e-02,-8.81e-03,-4.52e-03,+1.52e-02 1 Vertex: -321 ID: 0 (X,cT)=+1.22e-05,+2.56e-05,-1.06e-04,+1.10e-04 I: 1 735 111 +1.36e-01,+2.85e-01,-1.18e+00,+1.23e+00 2 -321 O: 2 971 22 +1.17e-01,+2.84e-01,-9.55e-01,+1.00e+00 1 972 22 +1.94e-02,+8.60e-04,-2.23e-01,+2.24e-01 1 Vertex: -322 ID: 0 (X,cT)=-4.99e-02,+6.40e-01,+1.95e+00,+2.06e+00 I: 1 738 413 -1.19e+00,+4.90e+00,+1.85e+01,+1.92e+01 2 -322 O: 2 973 421 -1.10e+00,+4.52e+00,+1.72e+01,+1.79e+01 2 -350 974 211 -8.14e-02,+3.81e-01,+1.28e+00,+1.35e+00 1 Vertex: -323 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 740 310 +4.35e-01,+2.78e-01,+3.35e-01,+7.91e-01 2 -323 O: 2 975 111 +4.56e-01,+9.41e-02,+1.97e-01,+5.24e-01 2 -351 976 111 -2.19e-02,+1.84e-01,+1.38e-01,+2.68e-01 2 -352 Vertex: -324 ID: 0 (X,cT)=+5.52e-05,+1.58e-04,+5.62e-05,+1.80e-04 I: 1 744 111 +2.04e-01,+5.81e-01,+2.07e-01,+6.64e-01 2 -324 O: 2 977 22 +9.55e-02,+2.12e-01,+1.34e-02,+2.33e-01 1 978 22 +1.08e-01,+3.70e-01,+1.94e-01,+4.31e-01 1 Vertex: -325 ID: 0 (X,cT)=+6.96e-07,-6.21e-07,+6.50e-06,+7.64e-06 I: 1 746 111 +2.40e-02,-2.14e-02,+2.24e-01,+2.64e-01 2 -325 O: 2 979 22 +4.29e-02,-2.22e-02,+2.37e-01,+2.41e-01 1 980 22 -1.89e-02,+7.41e-04,-1.21e-02,+2.25e-02 1 Vertex: -326 ID: 0 (X,cT)=+3.99e-05,+1.79e-04,+2.44e-04,+3.08e-04 I: 1 749 111 +1.45e-01,+6.48e-01,+8.85e-01,+1.11e+00 2 -326 O: 2 981 22 +4.42e-02,+1.93e-01,+3.73e-01,+4.22e-01 1 982 22 +1.00e-01,+4.55e-01,+5.12e-01,+6.92e-01 1 Vertex: -327 ID: 0 (X,cT)=-5.22e-07,+2.33e-06,+7.17e-06,+8.34e-06 I: 1 754 111 -1.99e-02,+8.89e-02,+2.74e-01,+3.19e-01 2 -327 O: 2 983 22 -5.57e-02,+7.22e-02,+2.62e-01,+2.78e-01 1 984 22 +3.58e-02,+1.67e-02,+1.19e-02,+4.12e-02 1 Vertex: -328 ID: 0 (X,cT)=-2.27e-04,+3.56e-04,+1.42e-03,+1.48e-03 I: 1 758 111 -3.47e-01,+5.44e-01,+2.17e+00,+2.27e+00 2 -328 O: 2 985 22 -1.23e-01,+3.17e-01,+1.08e+00,+1.13e+00 1 986 22 -2.24e-01,+2.27e-01,+1.09e+00,+1.13e+00 1 Vertex: -329 ID: 0 (X,cT)=-1.02e-04,+4.72e-06,+4.83e-04,+4.94e-04 I: 1 760 111 -5.80e-01,+2.69e-02,+2.75e+00,+2.81e+00 2 -329 O: 2 987 22 -2.56e-01,-5.48e-02,+1.24e+00,+1.27e+00 1 988 22 -3.24e-01,+8.17e-02,+1.51e+00,+1.54e+00 1 Vertex: -330 ID: 0 (X,cT)=-5.95e-05,-3.86e-05,+1.17e-04,+1.42e-04 I: 1 763 111 -2.00e-01,-1.30e-01,+3.93e-01,+4.79e-01 2 -330 O: 2 989 22 -8.60e-02,-5.17e-02,+5.61e-02,+1.15e-01 1 990 22 -1.14e-01,-7.79e-02,+3.37e-01,+3.64e-01 1 Vertex: -331 ID: 0 (X,cT)=-6.82e-06,-2.33e-05,+1.42e-04,+1.45e-04 I: 1 766 111 -5.33e-02,-1.82e-01,+1.11e+00,+1.13e+00 2 -331 O: 2 991 22 -8.38e-02,-1.76e-01,+8.37e-01,+8.60e-01 1 992 22 +3.05e-02,-5.70e-03,+2.69e-01,+2.71e-01 1 Vertex: -332 ID: 0 (X,cT)=+2.15e-01,+2.03e-01,+1.01e+00,+1.12e+00 I: 1 769 -4122 +2.04e+00,+1.46e+00,+8.21e+00,+8.88e+00 2 -332 O: 2 993 -2224 +1.91e+00,+6.26e-01,+6.45e+00,+6.87e+00 2 -353 994 321 +1.24e-01,+8.31e-01,+1.76e+00,+2.01e+00 1 Vertex: -333 ID: 0 (X,cT)=+2.18e+01,-7.52e+01,-4.84e+02,+4.92e+02 I: 1 775 310 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -333 O: 2 995 -211 +2.40e-01,-5.99e-01,-4.92e+00,+4.96e+00 1 996 211 +5.32e-02,-4.11e-01,-1.59e+00,+1.65e+00 1 Vertex: -334 ID: 0 (X,cT)=-3.23e+00,+3.36e+00,-3.03e+02,+3.03e+02 I: 1 794 310 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -334 O: 2 997 -211 -2.88e-01,+2.94e-01,-1.34e+01,+1.34e+01 1 998 211 +3.84e-03,+2.11e-03,-1.33e+01,+1.33e+01 1 Vertex: -335 ID: 0 (X,cT)=+4.21e+01,+1.49e+01,+3.51e+01,+6.32e+01 I: 1 814 111 +2.90e-01,+2.01e-01,+2.89e-01,+4.76e-01 2 -335 O: 2 999 22 +7.26e-02,+2.98e-02,+1.42e-01,+1.62e-01 1 1000 22 +2.17e-01,+1.72e-01,+1.47e-01,+3.14e-01 1 Vertex: -336 ID: 0 (X,cT)=-1.19e-05,+5.36e-05,-1.55e-06,+5.58e-05 I: 1 833 111 -1.60e-01,+7.21e-01,-2.08e-02,+7.51e-01 2 -336 O: 2 1001 22 +2.45e-02,+9.74e-02,-2.67e-03,+1.00e-01 1 1002 22 -1.85e-01,+6.23e-01,-1.81e-02,+6.50e-01 1 Vertex: -337 ID: 0 (X,cT)=-5.00e-05,+4.19e-04,-1.70e-04,+4.74e-04 I: 1 834 111 -5.09e-02,+4.26e-01,-1.73e-01,+4.82e-01 2 -337 O: 2 1003 22 -3.86e-02,+4.28e-01,-1.49e-01,+4.55e-01 1 1004 22 -1.22e-02,-1.85e-03,-2.43e-02,+2.73e-02 1 Vertex: -338 ID: 0 (X,cT)=-1.52e-06,+2.24e-05,+2.00e-06,+2.30e-05 I: 1 835 111 -4.38e-02,+6.46e-01,+5.75e-02,+6.64e-01 2 -338 O: 2 1005 22 -9.85e-03,+5.21e-01,+9.37e-02,+5.29e-01 1 1006 22 -3.40e-02,+1.26e-01,-3.61e-02,+1.35e-01 1 Vertex: -339 ID: 0 (X,cT)=+2.19e+01,-7.96e+01,-6.45e+01,+1.07e+02 I: 1 852 310 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -339 O: 2 1007 211 +5.39e-01,-1.46e+00,-1.33e+00,+2.06e+00 1 1008 -211 +2.16e-02,-5.75e-01,-3.19e-01,+6.72e-01 1 Vertex: -340 ID: 0 (X,cT)=-3.68e+02,-1.77e+02,+2.56e+04,+2.56e+04 I: 1 887 310 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -340 O: 2 1009 -211 -1.33e+00,-6.43e-01,+8.34e+01,+8.34e+01 1 1010 211 -2.01e-01,-9.34e-02,+2.35e+01,+2.35e+01 1 Vertex: -341 ID: 0 (X,cT)=-4.08e+01,-4.22e+01,+6.77e+03,+6.77e+03 I: 1 890 310 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -341 O: 2 1011 211 -3.82e-01,-1.85e-01,+6.13e+01,+6.13e+01 1 1012 -211 -5.79e-01,-8.10e-01,+9.82e+01,+9.82e+01 1 Vertex: -342 ID: 0 (X,cT)=-7.61e+01,+2.52e+01,+2.19e+04,+2.19e+04 I: 1 892 111 -1.81e-01,+3.09e-02,+2.74e+01,+2.74e+01 2 -342 O: 2 1013 22 -6.12e-02,+7.07e-02,+8.23e+00,+8.23e+00 1 1014 22 -1.20e-01,-3.99e-02,+1.92e+01,+1.92e+01 1 Vertex: -343 ID: 0 (X,cT)=+9.68e+01,+4.45e+01,+3.03e+04,+3.03e+04 I: 1 896 111 +2.53e-01,+1.12e-01,+9.64e+01,+9.64e+01 2 -343 O: 2 1015 22 +1.70e-01,+1.40e-01,+6.76e+01,+6.76e+01 1 1016 22 +8.25e-02,-2.80e-02,+2.88e+01,+2.88e+01 1 Vertex: -344 ID: 0 (X,cT)=-8.33e-05,-4.82e-04,-1.23e+00,+1.23e+00 I: 1 905 111 -4.44e-02,-2.57e-01,-6.57e+02,+6.57e+02 2 -344 O: 2 1017 22 -2.75e-02,-1.03e-02,-1.73e+02,+1.73e+02 1 1018 22 -1.69e-02,-2.47e-01,-4.85e+02,+4.85e+02 1 Vertex: -345 ID: 0 (X,cT)=-2.19e+02,-1.10e+03,+2.27e+03,+2.53e+03 I: 1 911 310 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -345 O: 2 1019 -211 -7.67e-01,-2.80e+00,+5.86e+00,+6.54e+00 1 1020 211 -2.16e-01,-2.11e+00,+4.30e+00,+4.80e+00 1 Vertex: -346 ID: 0 (X,cT)=-8.52e+00,-2.62e+00,+5.79e+01,+6.14e+01 I: 1 918 310 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -346 O: 2 1021 211 -2.53e-01,-7.58e-02,+4.77e-01,+5.63e-01 1 1022 -211 +2.41e-02,+5.25e-03,+1.08e+00,+1.09e+00 1 Vertex: -347 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 928 310 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -347 O: 2 1023 111 -1.28e-01,+2.53e-01,-2.58e+01,+2.58e+01 2 -354 1024 111 +6.71e-02,-1.12e-01,-8.69e+00,+8.69e+00 2 -355 Vertex: -348 ID: 0 (X,cT)=-1.70e-05,-2.65e-06,+3.42e-05,+4.00e-05 I: 1 943 111 -2.01e-01,-3.13e-02,+4.05e-01,+4.73e-01 2 -348 O: 2 1025 22 -1.85e-01,+1.30e-02,+3.71e-01,+4.15e-01 1 1026 22 -1.61e-02,-4.43e-02,+3.37e-02,+5.79e-02 1 Vertex: -349 ID: 0 (X,cT)=-2.14e+01,+1.26e+01,-5.10e+01,+5.73e+01 I: 1 964 310 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -349 O: 2 1027 211 -4.71e-01,+2.27e-01,-6.97e-01,+8.83e-01 1 1028 -211 -7.59e-01,+4.99e-01,-2.24e+00,+2.42e+00 1 Vertex: -350 ID: 0 (X,cT)=-7.49e-02,+7.42e-01,+2.34e+00,+2.47e+00 I: 1 973 421 -1.10e+00,+4.52e+00,+1.72e+01,+1.79e+01 2 -350 O: 4 1029 -321 -6.95e-01,+2.72e+00,+9.26e+00,+9.69e+00 1 1030 211 -2.07e-01,+4.47e-01,+1.75e+00,+1.82e+00 1 1031 111 +3.28e-01,+6.48e-01,+2.52e+00,+2.63e+00 2 -356 1032 111 -5.30e-01,+6.97e-01,+3.65e+00,+3.76e+00 2 -357 Vertex: -351 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 975 111 +4.56e-01,+9.41e-02,+1.97e-01,+5.24e-01 2 -351 O: 2 1033 22 +2.23e-01,+7.37e-02,+3.18e-02,+2.37e-01 1 1034 22 +2.34e-01,+2.04e-02,+1.65e-01,+2.87e-01 1 Vertex: -352 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 976 111 -2.19e-02,+1.84e-01,+1.38e-01,+2.68e-01 2 -352 O: 2 1035 22 -4.04e-03,+1.10e-01,+1.55e-01,+1.90e-01 1 1036 22 -1.79e-02,+7.42e-02,-1.63e-02,+7.80e-02 1 Vertex: -353 ID: 0 (X,cT)=+2.15e-01,+2.03e-01,+1.01e+00,+1.12e+00 I: 1 993 -2224 +1.91e+00,+6.26e-01,+6.45e+00,+6.87e+00 2 -353 O: 2 1037 -2212 +1.52e+00,+2.54e-01,+5.07e+00,+5.38e+00 1 1038 -211 +3.88e-01,+3.72e-01,+1.38e+00,+1.49e+00 1 Vertex: -354 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 1023 111 -1.28e-01,+2.53e-01,-2.58e+01,+2.58e+01 2 -354 O: 2 1039 22 -9.73e-02,+8.94e-02,-7.58e+00,+7.58e+00 1 1040 22 -3.08e-02,+1.64e-01,-1.82e+01,+1.82e+01 1 Vertex: -355 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 1024 111 +6.71e-02,-1.12e-01,-8.69e+00,+8.69e+00 2 -355 O: 2 1041 22 +3.77e-02,-1.24e-01,-4.39e+00,+4.39e+00 1 1042 22 +2.94e-02,+1.21e-02,-4.30e+00,+4.30e+00 1 Vertex: -356 ID: 0 (X,cT)=-7.48e-02,+7.43e-01,+2.34e+00,+2.47e+00 I: 1 1031 111 +3.28e-01,+6.48e-01,+2.52e+00,+2.63e+00 2 -356 O: 2 1043 22 +3.41e-02,+8.93e-03,+1.27e-01,+1.32e-01 1 1044 22 +2.94e-01,+6.39e-01,+2.39e+00,+2.50e+00 1 Vertex: -357 ID: 0 (X,cT)=-7.50e-02,+7.42e-01,+2.34e+00,+2.47e+00 I: 1 1032 111 -5.30e-01,+6.97e-01,+3.65e+00,+3.76e+00 2 -357 O: 2 1045 22 -3.24e-01,+3.17e-01,+1.93e+00,+1.99e+00 1 1046 22 -2.06e-01,+3.80e-01,+1.72e+00,+1.77e+00 1 ________________________________________________________________________________ ________________________________________________________________________________ GenEvent: #39 ID=20 SignalProcessGenVertex Barcode: 0 Momenutm units: GEV Position units: MM Cross Section: 32.6858 +/- 0.409126 Entries this event: 133 vertices, 382 particles. Beam Particle barcodes: 1 2 RndmState(0)= Wgts(3)=(0,0.3456) (second weight name,0.99256) (weightName,0.99223) EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ GenVertex: -1 ID: 0 (X,cT):0 I: 1 1 2212 +0.00e+00,+0.00e+00,+7.00e+03,+7.00e+03 3 -1 O: 2 3 1 +1.51e+00,-1.30e+00,+2.72e+03,+2.72e+03 3 -3 13 2203 -1.51e+00,+1.30e+00,+4.24e+03,+4.24e+03 2 -9 GenVertex: -2 ID: 0 (X,cT):0 I: 1 2 2212 +0.00e+00,+0.00e+00,-7.00e+03,+7.00e+03 3 -2 O: 3 4 21 +2.59e+00,-2.17e+00,-4.34e+01,+4.35e+01 3 -4 16 2 -9.07e-01,+1.46e+00,-7.69e+02,+7.69e+02 2 -11 31 2101 -1.68e+00,+7.10e-01,-6.09e+03,+6.09e+03 2 -13 GenVertex: -3 ID: 0 (X,cT):0 I: 1 3 1 +1.51e+00,-1.30e+00,+2.72e+03,+2.72e+03 3 -3 O: 6 5 -3 +1.91e+00,-4.08e-01,+1.51e+02,+1.51e+02 3 -5 11 3 -2.38e+00,-1.57e+00,+3.32e+00,+4.40e+00 2 -9 12 21 -1.79e-01,+2.74e-01,+1.82e-01,+3.74e-01 2 -9 17 1 +1.15e+00,+3.44e-01,+1.06e+03,+1.06e+03 2 -13 18 21 +1.20e+00,-9.86e-01,+1.50e+03,+1.50e+03 2 -13 19 21 -2.41e-01,+9.77e-01,+8.69e+00,+8.75e+00 2 -13 GenVertex: -4 ID: 0 (X,cT):0 I: 1 4 21 +2.59e+00,-2.17e+00,-4.34e+01,+4.35e+01 3 -4 O: 8 6 4 -5.91e-01,-1.69e+00,-1.59e+01,+1.60e+01 3 -5 14 -4 +1.29e+00,-8.18e-02,-1.51e+01,+1.53e+01 2 -11 15 21 +4.88e-01,-5.08e-01,-1.92e+00,+2.05e+00 2 -11 26 21 +7.32e-01,+2.49e-01,-7.83e-01,+1.10e+00 2 -13 27 21 +3.85e-01,+1.64e-01,-4.19e+00,+4.21e+00 2 -13 28 21 -4.96e-01,-4.44e-02,-1.40e-01,+5.17e-01 2 -13 29 21 +6.49e-03,+1.49e-01,+1.79e-01,+2.33e-01 2 -13 30 21 +8.07e-01,-3.38e-01,-4.12e+00,+4.21e+00 2 -13 GenVertex: -5 ID: 0 (X,cT):0 I: 2 5 -3 +1.91e+00,-4.08e-01,+1.51e+02,+1.51e+02 3 -5 6 4 -5.91e-01,-1.69e+00,-1.59e+01,+1.60e+01 3 -5 O: 2 7 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 3 -6 8 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 3 -7 GenVertex: -6 ID: 0 (X,cT):0 I: 1 7 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 3 -6 O: 1 9 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -8 GenVertex: -7 ID: 0 (X,cT):0 I: 1 8 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 3 -7 O: 1 10 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 1 GenVertex: -8 ID: 0 (X,cT):0 I: 1 9 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -8 O:13 32 -3 -1.82e+00,-2.61e+00,+7.50e+00,+8.16e+00 2 -15 33 21 -7.71e+00,-1.21e+01,+4.11e+01,+4.35e+01 2 -15 34 21 -8.67e-01,-2.38e-01,+4.15e+00,+4.25e+00 2 -15 35 21 -2.74e+00,-4.91e+00,+4.57e+01,+4.60e+01 2 -15 36 21 -8.18e-03,-2.41e-02,+6.87e+00,+6.87e+00 2 -15 37 21 +6.44e+00,+4.00e+00,+1.60e+01,+1.77e+01 2 -15 38 21 +4.38e+00,+1.45e+00,+9.46e+00,+1.05e+01 2 -15 39 21 +1.58e+00,+6.33e-01,+4.94e+00,+5.22e+00 2 -15 40 21 +2.17e-01,-2.86e-01,+9.31e-01,+9.98e-01 2 -15 41 21 +4.47e-01,+3.78e-01,+7.65e-01,+9.64e-01 2 -15 42 21 +7.09e-01,+9.44e-01,+5.31e-01,+1.30e+00 2 -15 43 21 +1.16e+00,+6.43e+00,+1.42e+00,+6.68e+00 2 -15 44 4 +1.18e+00,+8.24e+00,+1.21e+00,+8.54e+00 2 -15 GenVertex: -9 ID: 0 (X,cT):0 I: 3 11 3 -2.38e+00,-1.57e+00,+3.32e+00,+4.40e+00 2 -9 12 21 -1.79e-01,+2.74e-01,+1.82e-01,+3.74e-01 2 -9 13 2203 -1.51e+00,+1.30e+00,+4.24e+03,+4.24e+03 2 -9 O: 1 45 92 -4.06e+00,+4.87e-03,+4.25e+03,+4.25e+03 2 -10 GenVertex: -10 ID: 0 (X,cT):0 I: 1 45 92 -4.06e+00,+4.87e-03,+4.25e+03,+4.25e+03 2 -10 O:14 46 3122 -7.38e-01,-1.93e-01,+2.36e+00,+2.72e+00 2 -17 47 113 -5.86e-01,-3.69e-01,+1.55e+00,+1.88e+00 2 -18 48 -2112 -8.35e-01,-4.59e-01,+3.22e+00,+3.48e+00 1 49 -211 -4.70e-01,-1.28e-01,+9.73e-01,+1.10e+00 1 50 321 +2.12e-01,-1.53e-02,+2.18e+00,+2.24e+00 1 51 -321 -2.71e-01,-6.99e-02,+6.38e+00,+6.41e+00 1 52 213 +2.12e-01,+2.10e-02,+6.75e+00,+6.80e+00 2 -19 53 111 -3.32e-01,+3.42e-01,+4.34e+00,+4.37e+00 2 -20 54 -211 +3.11e-01,-7.70e-01,+4.31e+01,+4.31e+01 1 55 211 -1.67e-01,+2.90e-01,+2.39e+01,+2.39e+01 1 56 311 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -21 57 -311 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -22 58 2112 -4.91e-01,+1.56e+00,+3.63e+03,+3.63e+03 1 59 211 -4.27e-01,-1.84e-01,+4.24e+02,+4.24e+02 1 GenVertex: -11 ID: 0 (X,cT):0 I: 3 14 -4 +1.29e+00,-8.18e-02,-1.51e+01,+1.53e+01 2 -11 15 21 +4.88e-01,-5.08e-01,-1.92e+00,+2.05e+00 2 -11 16 2 -9.07e-01,+1.46e+00,-7.69e+02,+7.69e+02 2 -11 O: 1 60 92 +8.69e-01,+8.70e-01,-7.86e+02,+7.87e+02 2 -12 GenVertex: -12 ID: 0 (X,cT):0 I: 1 60 92 +8.69e-01,+8.70e-01,-7.86e+02,+7.87e+02 2 -12 O: 9 61 -411 +1.17e+00,-7.45e-01,-1.69e+01,+1.70e+01 2 -23 62 213 +3.75e-01,+1.10e-01,-1.55e+01,+1.55e+01 2 -24 63 -213 -2.12e-01,+3.90e-01,-2.59e+01,+2.59e+01 2 -25 64 211 -1.05e-01,-5.69e-02,-2.48e+00,+2.49e+00 1 65 -2224 +6.40e-01,-4.38e-02,-3.37e+01,+3.37e+01 2 -26 66 111 -4.90e-02,-9.36e-02,-1.74e+00,+1.75e+00 2 -27 67 2212 -1.80e-01,+2.19e-01,-1.61e+02,+1.61e+02 1 68 213 -7.62e-01,+8.59e-01,-1.24e+02,+1.24e+02 2 -28 69 331 -6.07e-03,+2.31e-01,-4.06e+02,+4.06e+02 2 -29 GenVertex: -13 ID: 0 (X,cT):0 I:15 17 1 +1.15e+00,+3.44e-01,+1.06e+03,+1.06e+03 2 -13 18 21 +1.20e+00,-9.86e-01,+1.50e+03,+1.50e+03 2 -13 19 21 -2.41e-01,+9.77e-01,+8.69e+00,+8.75e+00 2 -13 20 21 +2.75e+00,-3.24e+00,+2.54e+01,+2.58e+01 2 -13 21 21 -2.06e-01,+2.42e+00,+4.94e+00,+5.51e+00 2 -13 22 21 -2.75e+00,+3.24e+00,+6.70e-01,+4.31e+00 2 -13 23 21 +2.06e-01,-2.42e+00,-1.42e-01,+2.44e+00 2 -13 24 21 +1.26e+00,-2.67e-01,-5.83e+01,+5.83e+01 2 -13 25 21 -1.26e+00,+2.67e-01,-3.61e+01,+3.61e+01 2 -13 26 21 +7.32e-01,+2.49e-01,-7.83e-01,+1.10e+00 2 -13 27 21 +3.85e-01,+1.64e-01,-4.19e+00,+4.21e+00 2 -13 28 21 -4.96e-01,-4.44e-02,-1.40e-01,+5.17e-01 2 -13 29 21 +6.49e-03,+1.49e-01,+1.79e-01,+2.33e-01 2 -13 30 21 +8.07e-01,-3.38e-01,-4.12e+00,+4.21e+00 2 -13 31 2101 -1.68e+00,+7.10e-01,-6.09e+03,+6.09e+03 2 -13 O: 1 70 92 +1.87e+00,+1.22e+00,-3.60e+03,+8.80e+03 2 -14 GenVertex: -14 ID: 0 (X,cT):0 I: 1 70 92 +1.87e+00,+1.22e+00,-3.60e+03,+8.80e+03 2 -14 O:50 71 -213 +8.77e-01,-1.31e-01,+7.75e+02,+7.75e+02 2 -30 72 223 +4.83e-01,-1.99e-02,+9.91e+02,+9.91e+02 2 -31 73 211 +1.39e-01,-4.36e-01,+6.87e+01,+6.87e+01 1 74 111 +4.25e-01,+1.23e-01,+3.50e+02,+3.50e+02 2 -32 75 113 +2.52e-01,+7.95e-02,+2.26e+02,+2.26e+02 2 -33 76 -211 -1.92e-02,-5.31e-01,+1.38e+02,+1.38e+02 1 77 213 -1.40e-01,+5.44e-01,+1.17e+01,+1.17e+01 2 -34 78 223 +8.16e-01,-8.58e-02,+9.26e+00,+9.33e+00 2 -35 79 -211 -1.42e-01,-3.84e-01,+1.50e+00,+1.56e+00 1 80 111 +9.55e-01,-3.95e-01,+7.31e+00,+7.39e+00 2 -36 81 211 +7.25e-02,+1.32e-01,+3.67e+00,+3.67e+00 1 82 -213 +4.41e-01,-2.10e-01,+3.06e+00,+3.21e+00 2 -37 83 111 -2.30e-02,-2.81e-01,+6.30e-01,+7.04e-01 2 -38 84 213 +2.26e-01,+6.47e-01,+8.08e-01,+1.29e+00 2 -39 85 111 -3.91e-01,+2.29e-01,+1.10e+00,+1.20e+00 2 -40 86 2112 +3.73e-01,-2.80e-01,+4.17e+00,+4.30e+00 1 87 -2212 -4.45e-01,-2.18e-01,+1.75e+00,+2.05e+00 1 88 321 -5.04e-02,+1.88e+00,+2.73e+00,+3.35e+00 1 89 -323 -8.11e-01,+1.05e+00,-8.45e-02,+1.62e+00 2 -41 90 211 -8.98e-01,+2.30e-01,+4.09e-01,+1.02e+00 1 91 331 +3.86e-01,-6.23e-01,+1.45e-02,+1.21e+00 2 -42 92 113 -4.23e-01,-1.78e-01,-1.49e+00,+1.88e+00 2 -43 93 -213 -5.92e-02,-3.61e-01,+5.07e-03,+8.56e-01 2 -44 94 223 +4.45e-01,-3.66e-01,-9.36e+00,+9.41e+00 2 -45 95 213 +2.54e-01,-5.25e-01,-1.60e+01,+1.60e+01 2 -46 96 -211 -4.00e-01,+6.08e-01,-5.23e+00,+5.28e+00 1 97 221 -5.41e-02,-1.87e-01,-6.73e+00,+6.76e+00 2 -47 98 213 +3.23e-01,-3.93e-01,-3.04e+01,+3.04e+01 2 -48 99 -211 +4.09e-01,+2.45e-01,-2.41e+00,+2.47e+00 1 100 211 -3.86e-01,+4.88e-01,-1.26e+01,+1.26e+01 1 101 313 -2.75e-02,-4.07e-01,-4.39e+00,+4.50e+00 2 -49 102 3224 -9.27e-02,+6.56e-02,-4.02e+00,+4.25e+00 2 -50 103 -3224 +3.39e-01,+3.12e-01,-4.38e+00,+4.61e+00 2 -51 104 -313 +2.92e-01,+4.76e-02,-2.86e+00,+3.01e+00 2 -52 105 -211 +3.31e-01,+4.87e-01,-6.87e-01,+9.15e-01 1 106 213 -6.60e-01,-2.78e-01,-8.64e+00,+8.71e+00 2 -53 107 -211 +6.75e-01,+2.83e-01,-2.31e+01,+2.31e+01 1 108 113 -3.81e-01,-3.07e-01,-1.20e+01,+1.20e+01 2 -54 109 331 +1.49e-01,-1.13e-01,-9.98e+00,+1.00e+01 2 -55 110 221 +1.90e-01,+1.12e-01,-1.13e+01,+1.13e+01 2 -56 111 3122 -1.65e-02,+1.79e-01,-9.78e+01,+9.79e+01 2 -57 112 -3212 +2.15e-01,-4.95e-01,-8.80e+01,+8.80e+01 2 -58 113 213 -3.03e-01,-1.82e-01,-9.37e+01,+9.37e+01 2 -59 114 -213 -1.44e-01,+8.04e-01,-1.58e+02,+1.58e+02 2 -60 115 111 +1.71e-01,-3.66e-01,-8.10e+01,+8.10e+01 2 -61 116 111 +1.58e-02,-4.83e-02,-1.03e+01,+1.03e+01 2 -62 117 213 +1.97e-01,-1.52e-01,-6.47e+01,+6.47e+01 2 -63 118 -211 -7.18e-01,-2.97e-01,-8.00e+02,+8.00e+02 1 119 211 -7.07e-02,+7.15e-01,-1.93e+02,+1.93e+02 1 120 2112 -9.26e-01,+2.08e-01,-4.44e+03,+4.44e+03 1 GenVertex: -15 ID: 0 (X,cT):0 I:13 32 -3 -1.82e+00,-2.61e+00,+7.50e+00,+8.16e+00 2 -15 33 21 -7.71e+00,-1.21e+01,+4.11e+01,+4.35e+01 2 -15 34 21 -8.67e-01,-2.38e-01,+4.15e+00,+4.25e+00 2 -15 35 21 -2.74e+00,-4.91e+00,+4.57e+01,+4.60e+01 2 -15 36 21 -8.18e-03,-2.41e-02,+6.87e+00,+6.87e+00 2 -15 37 21 +6.44e+00,+4.00e+00,+1.60e+01,+1.77e+01 2 -15 38 21 +4.38e+00,+1.45e+00,+9.46e+00,+1.05e+01 2 -15 39 21 +1.58e+00,+6.33e-01,+4.94e+00,+5.22e+00 2 -15 40 21 +2.17e-01,-2.86e-01,+9.31e-01,+9.98e-01 2 -15 41 21 +4.47e-01,+3.78e-01,+7.65e-01,+9.64e-01 2 -15 42 21 +7.09e-01,+9.44e-01,+5.31e-01,+1.30e+00 2 -15 43 21 +1.16e+00,+6.43e+00,+1.42e+00,+6.68e+00 2 -15 44 4 +1.18e+00,+8.24e+00,+1.21e+00,+8.54e+00 2 -15 O: 1 121 92 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -16 GenVertex: -16 ID: 0 (X,cT):0 I: 1 121 92 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -16 O:23 122 321 -1.96e+00,-3.06e+00,+9.03e+00,+9.75e+00 1 123 111 -2.12e+00,-3.08e+00,+9.76e+00,+1.05e+01 2 -64 124 -213 -5.88e+00,-8.86e+00,+3.20e+01,+3.37e+01 2 -65 125 213 -1.14e+00,-2.50e+00,+2.11e+01,+2.13e+01 2 -66 126 -211 -5.99e-01,+2.19e-01,+6.14e+00,+6.17e+00 1 127 213 -4.56e-01,-3.25e-01,+6.76e+00,+6.83e+00 2 -67 128 113 -5.74e-01,-1.35e+00,+1.43e+01,+1.44e+01 2 -68 129 -323 +1.34e-01,+5.60e-03,+2.79e+00,+2.97e+00 2 -69 130 313 +1.23e+00,+3.78e-01,+4.82e+00,+5.07e+00 2 -70 131 211 +1.61e-01,-7.11e-02,+1.18e+00,+1.20e+00 1 132 223 +1.28e+00,+8.15e-01,+4.23e+00,+4.56e+00 2 -71 133 113 +1.26e+00,+4.72e-01,+3.35e+00,+3.70e+00 2 -72 134 -213 +1.57e+00,+6.28e-01,+3.98e+00,+4.38e+00 2 -73 135 -313 +3.00e+00,+1.43e+00,+7.23e+00,+8.00e+00 2 -74 136 311 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -75 137 213 +1.67e+00,+8.56e-01,+3.07e+00,+3.73e+00 2 -76 138 -2212 +5.65e-01,+1.00e+00,+2.00e+00,+2.49e+00 1 139 -213 +9.60e-01,+4.56e-01,+6.33e-01,+1.45e+00 2 -77 140 2224 -7.85e-02,+1.45e+00,+2.17e+00,+2.84e+00 2 -78 141 -213 +4.31e-01,+9.71e-01,+9.32e-01,+1.63e+00 2 -79 142 223 +8.48e-01,+6.97e-01,+5.16e-01,+1.44e+00 2 -80 143 213 -6.94e-02,+8.64e-01,-4.70e-02,+1.03e+00 2 -81 144 423 +1.98e+00,+1.05e+01,+2.27e+00,+1.11e+01 2 -82 Vertex: -17 ID: 0 (X,cT)=-1.98e+00,-5.19e-01,+6.36e+00,+7.32e+00 I: 1 46 3122 -7.38e-01,-1.93e-01,+2.36e+00,+2.72e+00 2 -17 O: 2 145 2212 -5.64e-01,-8.23e-02,+1.83e+00,+2.14e+00 1 146 -211 -1.74e-01,-1.11e-01,+5.31e-01,+5.86e-01 1 GenVertex: -18 ID: 0 (X,cT):0 I: 1 47 113 -5.86e-01,-3.69e-01,+1.55e+00,+1.88e+00 2 -18 O: 2 147 211 -1.24e-01,+1.52e-01,+9.85e-02,+2.60e-01 1 148 -211 -4.62e-01,-5.21e-01,+1.46e+00,+1.62e+00 1 GenVertex: -19 ID: 0 (X,cT):0 I: 1 52 213 +2.12e-01,+2.10e-02,+6.75e+00,+6.80e+00 2 -19 O: 2 149 211 -1.64e-01,-1.62e-01,+1.04e+00,+1.07e+00 1 150 111 +3.76e-01,+1.83e-01,+5.71e+00,+5.73e+00 2 -83 Vertex: -20 ID: 0 (X,cT)=-2.13e-05,+2.20e-05,+2.79e-04,+2.81e-04 I: 1 53 111 -3.32e-01,+3.42e-01,+4.34e+00,+4.37e+00 2 -20 O: 2 151 22 -2.03e-01,+2.63e-01,+2.49e+00,+2.52e+00 1 152 22 -1.29e-01,+7.96e-02,+1.85e+00,+1.85e+00 1 GenVertex: -21 ID: 0 (X,cT):0 I: 1 56 311 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -21 O: 1 153 310 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -84 GenVertex: -22 ID: 0 (X,cT):0 I: 1 57 -311 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -22 O: 1 154 310 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -85 Vertex: -23 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 61 -411 +1.17e+00,-7.45e-01,-1.69e+01,+1.70e+01 2 -23 O: 3 155 333 +2.30e-01,-1.89e-01,-8.25e+00,+8.32e+00 2 -86 156 -211 +6.77e-01,-6.36e-01,-5.99e+00,+6.06e+00 1 157 111 +2.62e-01,+8.01e-02,-2.63e+00,+2.65e+00 2 -87 GenVertex: -24 ID: 0 (X,cT):0 I: 1 62 213 +3.75e-01,+1.10e-01,-1.55e+01,+1.55e+01 2 -24 O: 2 158 211 +2.66e-01,+3.53e-01,-5.37e+00,+5.39e+00 1 159 111 +1.09e-01,-2.42e-01,-1.01e+01,+1.01e+01 2 -88 GenVertex: -25 ID: 0 (X,cT):0 I: 1 63 -213 -2.12e-01,+3.90e-01,-2.59e+01,+2.59e+01 2 -25 O: 2 160 -211 -2.44e-01,+2.07e-01,-5.57e+00,+5.58e+00 1 161 111 +3.25e-02,+1.83e-01,-2.04e+01,+2.04e+01 2 -89 GenVertex: -26 ID: 0 (X,cT):0 I: 1 65 -2224 +6.40e-01,-4.38e-02,-3.37e+01,+3.37e+01 2 -26 O: 2 162 -2212 +6.79e-01,-2.69e-01,-2.54e+01,+2.55e+01 1 163 -211 -3.93e-02,+2.26e-01,-8.26e+00,+8.26e+00 1 Vertex: -27 ID: 0 (X,cT)=-1.75e-05,-3.35e-05,-6.23e-04,+6.26e-04 I: 1 66 111 -4.90e-02,-9.36e-02,-1.74e+00,+1.75e+00 2 -27 O: 2 164 22 -1.39e-02,+3.36e-02,-2.56e-01,+2.59e-01 1 165 22 -3.51e-02,-1.27e-01,-1.48e+00,+1.49e+00 1 GenVertex: -28 ID: 0 (X,cT):0 I: 1 68 213 -7.62e-01,+8.59e-01,-1.24e+02,+1.24e+02 2 -28 O: 2 166 211 +1.17e-01,+5.92e-02,-2.47e+01,+2.47e+01 1 167 111 -8.79e-01,+8.00e-01,-9.90e+01,+9.90e+01 2 -90 GenVertex: -29 ID: 0 (X,cT):0 I: 1 69 331 -6.07e-03,+2.31e-01,-4.06e+02,+4.06e+02 2 -29 O: 3 168 211 -6.75e-02,+2.14e-02,-4.20e+01,+4.20e+01 1 169 -211 +4.45e-02,-6.99e-02,-1.28e+02,+1.28e+02 1 170 221 +1.70e-02,+2.79e-01,-2.36e+02,+2.36e+02 2 -91 GenVertex: -30 ID: 0 (X,cT):0 I: 1 71 -213 +8.77e-01,-1.31e-01,+7.75e+02,+7.75e+02 2 -30 O: 2 171 -211 +8.64e-01,-7.07e-02,+7.47e+02,+7.47e+02 1 172 111 +1.31e-02,-5.99e-02,+2.75e+01,+2.75e+01 2 -92 GenVertex: -31 ID: 0 (X,cT):0 I: 1 72 223 +4.83e-01,-1.99e-02,+9.91e+02,+9.91e+02 2 -31 O: 2 173 22 +1.69e-01,+3.61e-01,+3.72e+02,+3.72e+02 1 174 111 +3.14e-01,-3.81e-01,+6.19e+02,+6.19e+02 2 -93 Vertex: -32 ID: 0 (X,cT)=+5.64e-07,+1.63e-07,+4.65e-04,+4.65e-04 I: 1 74 111 +4.25e-01,+1.23e-01,+3.50e+02,+3.50e+02 2 -32 O: 2 175 22 +3.82e-02,+2.40e-02,+1.50e+01,+1.50e+01 1 176 22 +3.87e-01,+9.85e-02,+3.35e+02,+3.35e+02 1 GenVertex: -33 ID: 0 (X,cT):0 I: 1 75 113 +2.52e-01,+7.95e-02,+2.26e+02,+2.26e+02 2 -33 O: 2 177 211 +1.75e-01,-7.23e-02,+1.95e+01,+1.95e+01 1 178 -211 +7.67e-02,+1.52e-01,+2.07e+02,+2.07e+02 1 GenVertex: -34 ID: 0 (X,cT):0 I: 1 77 213 -1.40e-01,+5.44e-01,+1.17e+01,+1.17e+01 2 -34 O: 2 179 211 +1.63e-01,+5.62e-01,+8.28e+00,+8.30e+00 1 180 111 -3.03e-01,-1.88e-02,+3.39e+00,+3.41e+00 2 -94 GenVertex: -35 ID: 0 (X,cT):0 I: 1 78 223 +8.16e-01,-8.58e-02,+9.26e+00,+9.33e+00 2 -35 O: 3 181 -211 +1.94e-01,+5.53e-02,+3.19e+00,+3.20e+00 1 182 211 +5.31e-01,-7.80e-02,+5.61e+00,+5.64e+00 1 183 111 +9.15e-02,-6.31e-02,+4.61e-01,+4.93e-01 2 -95 Vertex: -36 ID: 0 (X,cT)=+5.64e-04,-2.33e-04,+4.32e-03,+4.36e-03 I: 1 80 111 +9.55e-01,-3.95e-01,+7.31e+00,+7.39e+00 2 -36 O: 2 184 22 +6.02e-01,-2.54e-01,+4.15e+00,+4.20e+00 1 185 22 +3.53e-01,-1.41e-01,+3.17e+00,+3.19e+00 1 GenVertex: -37 ID: 0 (X,cT):0 I: 1 82 -213 +4.41e-01,-2.10e-01,+3.06e+00,+3.21e+00 2 -37 O: 2 186 -211 +1.14e-01,+2.65e-01,+6.48e-01,+7.23e-01 1 187 111 +3.27e-01,-4.75e-01,+2.41e+00,+2.49e+00 2 -96 Vertex: -38 ID: 0 (X,cT)=-9.22e-06,-1.12e-04,+2.52e-04,+2.82e-04 I: 1 83 111 -2.30e-02,-2.81e-01,+6.30e-01,+7.04e-01 2 -38 O: 2 188 22 +4.43e-02,-1.42e-01,+3.96e-01,+4.23e-01 1 189 22 -6.73e-02,-1.38e-01,+2.35e-01,+2.81e-01 1 GenVertex: -39 ID: 0 (X,cT):0 I: 1 84 213 +2.26e-01,+6.47e-01,+8.08e-01,+1.29e+00 2 -39 O: 2 190 211 +4.03e-01,+6.37e-01,+5.44e-01,+9.40e-01 1 191 111 -1.77e-01,+1.02e-02,+2.64e-01,+3.45e-01 2 -97 Vertex: -40 ID: 0 (X,cT)=-1.15e-04,+6.72e-05,+3.24e-04,+3.52e-04 I: 1 85 111 -3.91e-01,+2.29e-01,+1.10e+00,+1.20e+00 2 -40 O: 2 192 22 -3.95e-01,+2.08e-01,+1.01e+00,+1.10e+00 1 193 22 +4.48e-03,+2.07e-02,+9.60e-02,+9.84e-02 1 GenVertex: -41 ID: 0 (X,cT):0 I: 1 89 -323 -8.11e-01,+1.05e+00,-8.45e-02,+1.62e+00 2 -41 O: 2 194 -311 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -98 195 -211 -1.38e-01,+1.03e-02,-1.96e-01,+2.78e-01 1 GenVertex: -42 ID: 0 (X,cT):0 I: 1 91 331 +3.86e-01,-6.23e-01,+1.45e-02,+1.21e+00 2 -42 O: 2 196 22 +1.19e-01,+6.24e-02,+9.24e-03,+1.35e-01 1 197 223 +2.67e-01,-6.85e-01,+5.28e-03,+1.07e+00 2 -99 GenVertex: -43 ID: 0 (X,cT):0 I: 1 92 113 -4.23e-01,-1.78e-01,-1.49e+00,+1.88e+00 2 -43 O: 2 198 -211 +1.17e-01,-4.45e-01,-9.01e-01,+1.02e+00 1 199 211 -5.40e-01,+2.67e-01,-5.91e-01,+8.55e-01 1 GenVertex: -44 ID: 0 (X,cT):0 I: 1 93 -213 -5.92e-02,-3.61e-01,+5.07e-03,+8.56e-01 2 -44 O: 2 200 -211 -2.83e-01,-1.27e-01,+2.55e-01,+4.25e-01 1 201 111 +2.24e-01,-2.34e-01,-2.50e-01,+4.31e-01 2 -100 GenVertex: -45 ID: 0 (X,cT):0 I: 1 94 223 +4.45e-01,-3.66e-01,-9.36e+00,+9.41e+00 2 -45 O: 3 202 -211 +1.94e-01,-3.87e-03,-1.49e+00,+1.51e+00 1 203 211 +9.07e-02,-4.32e-01,-4.41e+00,+4.44e+00 1 204 111 +1.61e-01,+6.96e-02,-3.46e+00,+3.46e+00 2 -101 GenVertex: -46 ID: 0 (X,cT):0 I: 1 95 213 +2.54e-01,-5.25e-01,-1.60e+01,+1.60e+01 2 -46 O: 2 205 211 +3.16e-01,+8.20e-02,-4.10e+00,+4.12e+00 1 206 111 -6.15e-02,-6.07e-01,-1.19e+01,+1.19e+01 2 -102 GenVertex: -47 ID: 0 (X,cT):0 I: 1 97 221 -5.41e-02,-1.87e-01,-6.73e+00,+6.76e+00 2 -47 O: 2 207 22 +1.31e-01,-6.72e-02,-5.05e-01,+5.27e-01 1 208 22 -1.86e-01,-1.20e-01,-6.23e+00,+6.23e+00 1 GenVertex: -48 ID: 0 (X,cT):0 I: 1 98 213 +3.23e-01,-3.93e-01,-3.04e+01,+3.04e+01 2 -48 O: 2 209 211 +1.15e-01,+1.76e-01,-4.43e+00,+4.44e+00 1 210 111 +2.07e-01,-5.69e-01,-2.59e+01,+2.60e+01 2 -103 GenVertex: -49 ID: 0 (X,cT):0 I: 1 101 313 -2.75e-02,-4.07e-01,-4.39e+00,+4.50e+00 2 -49 O: 2 211 321 -1.80e-01,-1.03e-01,-3.42e+00,+3.46e+00 1 212 -211 +1.53e-01,-3.04e-01,-9.74e-01,+1.04e+00 1 GenVertex: -50 ID: 0 (X,cT):0 I: 1 102 3224 -9.27e-02,+6.56e-02,-4.02e+00,+4.25e+00 2 -50 O: 2 213 3122 +4.16e-02,-9.07e-03,-2.83e+00,+3.04e+00 2 -104 214 211 -1.34e-01,+7.47e-02,-1.19e+00,+1.21e+00 1 GenVertex: -51 ID: 0 (X,cT):0 I: 1 103 -3224 +3.39e-01,+3.12e-01,-4.38e+00,+4.61e+00 2 -51 O: 2 215 -3122 +1.46e-01,+2.95e-01,-3.91e+00,+4.08e+00 2 -105 216 -211 +1.93e-01,+1.78e-02,-4.70e-01,+5.27e-01 1 GenVertex: -52 ID: 0 (X,cT):0 I: 1 104 -313 +2.92e-01,+4.76e-02,-2.86e+00,+3.01e+00 2 -52 O: 2 217 -311 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -106 218 111 -1.49e-01,-1.50e-01,-8.06e-01,+8.44e-01 2 -107 GenVertex: -53 ID: 0 (X,cT):0 I: 1 106 213 -6.60e-01,-2.78e-01,-8.64e+00,+8.71e+00 2 -53 O: 2 219 211 -2.54e-01,-3.82e-01,-2.41e+00,+2.46e+00 1 220 111 -4.06e-01,+1.04e-01,-6.24e+00,+6.25e+00 2 -108 GenVertex: -54 ID: 0 (X,cT):0 I: 1 108 113 -3.81e-01,-3.07e-01,-1.20e+01,+1.20e+01 2 -54 O: 2 221 211 -6.88e-01,-3.06e-01,-8.19e+00,+8.22e+00 1 222 -211 +3.07e-01,-5.94e-04,-3.77e+00,+3.78e+00 1 GenVertex: -55 ID: 0 (X,cT):0 I: 1 109 331 +1.49e-01,-1.13e-01,-9.98e+00,+1.00e+01 2 -55 O: 2 223 22 +1.48e-01,+1.44e-01,-3.92e+00,+3.93e+00 1 224 113 +1.27e-03,-2.57e-01,-6.05e+00,+6.10e+00 2 -109 GenVertex: -56 ID: 0 (X,cT):0 I: 1 110 221 +1.90e-01,+1.12e-01,-1.13e+01,+1.13e+01 2 -56 O: 2 225 22 +2.75e-01,+2.47e-01,-5.10e+00,+5.11e+00 1 226 22 -8.49e-02,-1.34e-01,-6.21e+00,+6.22e+00 1 Vertex: -57 ID: 0 (X,cT)=-5.14e-01,+5.58e+00,-3.04e+03,+3.04e+03 I: 1 111 3122 -1.65e-02,+1.79e-01,-9.78e+01,+9.79e+01 2 -57 O: 2 227 2212 -5.58e-02,+1.85e-01,-7.59e+01,+7.59e+01 1 228 -211 +3.93e-02,-6.05e-03,-2.20e+01,+2.20e+01 1 GenVertex: -58 ID: 0 (X,cT):0 I: 1 112 -3212 +2.15e-01,-4.95e-01,-8.80e+01,+8.80e+01 2 -58 O: 2 229 -3122 +1.58e-01,-4.67e-01,-7.80e+01,+7.81e+01 2 -110 230 22 +5.70e-02,-2.82e-02,-9.98e+00,+9.98e+00 1 GenVertex: -59 ID: 0 (X,cT):0 I: 1 113 213 -3.03e-01,-1.82e-01,-9.37e+01,+9.37e+01 2 -59 O: 2 231 211 -2.21e-01,+1.21e-01,-3.18e+01,+3.18e+01 1 232 111 -8.21e-02,-3.03e-01,-6.19e+01,+6.19e+01 2 -111 GenVertex: -60 ID: 0 (X,cT):0 I: 1 114 -213 -1.44e-01,+8.04e-01,-1.58e+02,+1.58e+02 2 -60 O: 2 233 -211 -7.46e-02,+5.52e-02,-7.28e+01,+7.28e+01 1 234 111 -6.96e-02,+7.48e-01,-8.49e+01,+8.49e+01 2 -112 Vertex: -61 ID: 0 (X,cT)=+3.71e-05,-7.92e-05,-1.75e-02,+1.75e-02 I: 1 115 111 +1.71e-01,-3.66e-01,-8.10e+01,+8.10e+01 2 -61 O: 2 235 22 +1.31e-02,-1.04e-02,-7.90e-01,+7.90e-01 1 236 22 +1.58e-01,-3.55e-01,-8.02e+01,+8.02e+01 1 Vertex: -62 ID: 0 (X,cT)=+1.56e-06,-4.79e-06,-1.02e-03,+1.02e-03 I: 1 116 111 +1.58e-02,-4.83e-02,-1.03e+01,+1.03e+01 2 -62 O: 2 237 22 +6.98e-02,-1.50e-02,-7.25e+00,+7.25e+00 1 238 22 -5.40e-02,-3.33e-02,-3.06e+00,+3.06e+00 1 GenVertex: -63 ID: 0 (X,cT):0 I: 1 117 213 +1.97e-01,-1.52e-01,-6.47e+01,+6.47e+01 2 -63 O: 2 239 211 -1.04e-01,-4.66e-02,-3.17e+01,+3.17e+01 1 240 111 +3.00e-01,-1.06e-01,-3.30e+01,+3.30e+01 2 -113 Vertex: -64 ID: 0 (X,cT)=-5.12e-04,-7.43e-04,+2.35e-03,+2.52e-03 I: 1 123 111 -2.12e+00,-3.08e+00,+9.76e+00,+1.05e+01 2 -64 O: 2 241 22 -5.87e-01,-9.54e-01,+2.86e+00,+3.07e+00 1 242 22 -1.53e+00,-2.13e+00,+6.90e+00,+7.38e+00 1 GenVertex: -65 ID: 0 (X,cT):0 I: 1 124 -213 -5.88e+00,-8.86e+00,+3.20e+01,+3.37e+01 2 -65 O: 2 243 -211 -4.18e+00,-5.79e+00,+2.07e+01,+2.19e+01 1 244 111 -1.70e+00,-3.07e+00,+1.13e+01,+1.18e+01 2 -114 GenVertex: -66 ID: 0 (X,cT):0 I: 1 125 213 -1.14e+00,-2.50e+00,+2.11e+01,+2.13e+01 2 -66 O: 2 245 211 -7.92e-01,-2.38e+00,+1.85e+01,+1.87e+01 1 246 111 -3.49e-01,-1.15e-01,+2.59e+00,+2.62e+00 2 -115 GenVertex: -67 ID: 0 (X,cT):0 I: 1 127 213 -4.56e-01,-3.25e-01,+6.76e+00,+6.83e+00 2 -67 O: 2 247 211 -4.55e-01,-3.35e-01,+2.33e+00,+2.40e+00 1 248 111 -4.99e-04,+9.32e-03,+4.43e+00,+4.43e+00 2 -116 GenVertex: -68 ID: 0 (X,cT):0 I: 1 128 113 -5.74e-01,-1.35e+00,+1.43e+01,+1.44e+01 2 -68 O: 2 249 211 +1.26e-01,-4.94e-02,+1.68e+00,+1.69e+00 1 250 -211 -7.01e-01,-1.30e+00,+1.26e+01,+1.27e+01 1 GenVertex: -69 ID: 0 (X,cT):0 I: 1 129 -323 +1.34e-01,+5.60e-03,+2.79e+00,+2.97e+00 2 -69 O: 2 251 -321 -1.27e-01,-3.08e-01,+1.69e+00,+1.79e+00 1 252 111 +2.61e-01,+3.14e-01,+1.11e+00,+1.19e+00 2 -117 GenVertex: -70 ID: 0 (X,cT):0 I: 1 130 313 +1.23e+00,+3.78e-01,+4.82e+00,+5.07e+00 2 -70 O: 2 253 321 +7.11e-01,+3.97e-01,+2.18e+00,+2.38e+00 1 254 -211 +5.21e-01,-1.88e-02,+2.64e+00,+2.70e+00 1 GenVertex: -71 ID: 0 (X,cT):0 I: 1 132 223 +1.28e+00,+8.15e-01,+4.23e+00,+4.56e+00 2 -71 O: 3 255 -211 +8.57e-01,+4.62e-01,+2.16e+00,+2.37e+00 1 256 211 +1.83e-01,+2.81e-01,+7.00e-01,+7.88e-01 1 257 111 +2.39e-01,+7.23e-02,+1.37e+00,+1.39e+00 2 -118 GenVertex: -72 ID: 0 (X,cT):0 I: 1 133 113 +1.26e+00,+4.72e-01,+3.35e+00,+3.70e+00 2 -72 O: 2 258 -211 +1.28e+00,+4.76e-01,+2.71e+00,+3.04e+00 1 259 211 -1.96e-02,-4.19e-03,+6.44e-01,+6.60e-01 1 GenVertex: -73 ID: 0 (X,cT):0 I: 1 134 -213 +1.57e+00,+6.28e-01,+3.98e+00,+4.38e+00 2 -73 O: 2 260 -211 +1.44e+00,+5.73e-01,+3.84e+00,+4.15e+00 1 261 111 +1.30e-01,+5.50e-02,+1.39e-01,+2.40e-01 2 -119 GenVertex: -74 ID: 0 (X,cT):0 I: 1 135 -313 +3.00e+00,+1.43e+00,+7.23e+00,+8.00e+00 2 -74 O: 2 262 -321 +2.35e+00,+8.76e-01,+5.04e+00,+5.65e+00 1 263 211 +6.48e-01,+5.54e-01,+2.19e+00,+2.35e+00 1 GenVertex: -75 ID: 0 (X,cT):0 I: 1 136 311 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -75 O: 1 264 310 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -120 GenVertex: -76 ID: 0 (X,cT):0 I: 1 137 213 +1.67e+00,+8.56e-01,+3.07e+00,+3.73e+00 2 -76 O: 2 265 211 +1.95e-01,+2.18e-01,+1.27e+00,+1.31e+00 1 266 111 +1.48e+00,+6.38e-01,+1.80e+00,+2.42e+00 2 -121 GenVertex: -77 ID: 0 (X,cT):0 I: 1 139 -213 +9.60e-01,+4.56e-01,+6.33e-01,+1.45e+00 2 -77 O: 2 267 -211 +1.25e-01,+3.81e-01,+3.55e-01,+5.53e-01 1 268 111 +8.35e-01,+7.46e-02,+2.78e-01,+8.93e-01 2 -122 GenVertex: -78 ID: 0 (X,cT):0 I: 1 140 2224 -7.85e-02,+1.45e+00,+2.17e+00,+2.84e+00 2 -78 O: 2 269 2212 -9.22e-02,+1.14e+00,+1.63e+00,+2.20e+00 1 270 211 +1.37e-02,+3.16e-01,+5.41e-01,+6.42e-01 1 GenVertex: -79 ID: 0 (X,cT):0 I: 1 141 -213 +4.31e-01,+9.71e-01,+9.32e-01,+1.63e+00 2 -79 O: 2 271 -211 -2.06e-01,+4.24e-01,+3.24e-01,+5.89e-01 1 272 111 +6.37e-01,+5.47e-01,+6.08e-01,+1.05e+00 2 -123 GenVertex: -80 ID: 0 (X,cT):0 I: 1 142 223 +8.48e-01,+6.97e-01,+5.16e-01,+1.44e+00 2 -80 O: 3 273 -211 +1.53e-01,+4.52e-01,+2.80e-01,+5.70e-01 1 274 211 +4.07e-01,+2.65e-01,+6.34e-02,+5.10e-01 1 275 111 +2.87e-01,-1.98e-02,+1.73e-01,+3.62e-01 2 -124 GenVertex: -81 ID: 0 (X,cT):0 I: 1 143 213 -6.94e-02,+8.64e-01,-4.70e-02,+1.03e+00 2 -81 O: 2 276 211 +2.02e-01,+4.34e-01,-1.49e-02,+4.99e-01 1 277 111 -2.71e-01,+4.30e-01,-3.21e-02,+5.27e-01 2 -125 GenVertex: -82 ID: 0 (X,cT):0 I: 1 144 423 +1.98e+00,+1.05e+01,+2.27e+00,+1.11e+01 2 -82 O: 2 278 421 +1.91e+00,+9.98e+00,+2.04e+00,+1.05e+01 2 -126 279 22 +6.54e-02,+4.86e-01,+2.36e-01,+5.44e-01 1 Vertex: -83 ID: 0 (X,cT)=+9.32e-05,+4.53e-05,+1.42e-03,+1.42e-03 I: 1 150 111 +3.76e-01,+1.83e-01,+5.71e+00,+5.73e+00 2 -83 O: 2 280 22 +6.01e-02,+8.11e-02,+9.60e-01,+9.65e-01 1 281 22 +3.16e-01,+1.02e-01,+4.75e+00,+4.77e+00 1 Vertex: -84 ID: 0 (X,cT)=+2.32e+01,+9.03e+00,+1.95e+03,+1.95e+03 I: 1 153 310 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -84 O: 2 282 -211 +3.29e-01,+2.54e-01,+1.83e+01,+1.83e+01 1 283 211 +1.92e-01,-5.16e-02,+2.54e+01,+2.54e+01 1 Vertex: -85 ID: 0 (X,cT)=-1.83e+02,-4.04e+01,+1.00e+04,+1.00e+04 I: 1 154 310 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -85 O: 2 284 211 -8.63e-01,-6.91e-02,+4.60e+01,+4.60e+01 1 285 -211 -1.39e-01,-1.53e-01,+8.90e+00,+8.90e+00 1 Vertex: -86 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 155 333 +2.30e-01,-1.89e-01,-8.25e+00,+8.32e+00 2 -86 O: 2 286 321 +9.39e-02,-9.01e-02,-3.01e+00,+3.05e+00 1 287 -321 +1.36e-01,-9.88e-02,-5.24e+00,+5.26e+00 1 Vertex: -87 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 157 111 +2.62e-01,+8.01e-02,-2.63e+00,+2.65e+00 2 -87 O: 2 288 22 +6.93e-02,+2.16e-02,-2.87e-01,+2.96e-01 1 289 22 +1.92e-01,+5.85e-02,-2.34e+00,+2.35e+00 1 Vertex: -88 ID: 0 (X,cT)=+4.79e-05,-1.06e-04,-4.42e-03,+4.42e-03 I: 1 159 111 +1.09e-01,-2.42e-01,-1.01e+01,+1.01e+01 2 -88 O: 2 290 22 +1.16e-01,-2.57e-01,-9.47e+00,+9.47e+00 1 291 22 -7.10e-03,+1.44e-02,-6.10e-01,+6.10e-01 1 Vertex: -89 ID: 0 (X,cT)=+2.80e-06,+1.58e-05,-1.75e-03,+1.75e-03 I: 1 161 111 +3.25e-02,+1.83e-01,-2.04e+01,+2.04e+01 2 -89 O: 2 292 22 -2.46e-02,+1.26e-01,-1.62e+01,+1.62e+01 1 293 22 +5.70e-02,+5.71e-02,-4.13e+00,+4.13e+00 1 Vertex: -90 ID: 0 (X,cT)=-1.67e-04,+1.52e-04,-1.88e-02,+1.88e-02 I: 1 167 111 -8.79e-01,+8.00e-01,-9.90e+01,+9.90e+01 2 -90 O: 2 294 22 -7.40e-01,+6.03e-01,-8.01e+01,+8.02e+01 1 295 22 -1.40e-01,+1.97e-01,-1.88e+01,+1.88e+01 1 GenVertex: -91 ID: 0 (X,cT):0 I: 1 170 221 +1.70e-02,+2.79e-01,-2.36e+02,+2.36e+02 2 -91 O: 3 296 211 +2.05e-02,+9.13e-02,-1.04e+02,+1.04e+02 1 297 -211 -1.93e-02,+2.51e-05,-2.38e+01,+2.38e+01 1 298 111 +1.58e-02,+1.88e-01,-1.07e+02,+1.07e+02 2 -127 Vertex: -92 ID: 0 (X,cT)=+1.90e-06,-8.69e-06,+3.99e-03,+3.99e-03 I: 1 172 111 +1.31e-02,-5.99e-02,+2.75e+01,+2.75e+01 2 -92 O: 2 299 22 -5.99e-02,-4.15e-02,+1.39e+01,+1.39e+01 1 300 22 +7.30e-02,-1.84e-02,+1.36e+01,+1.36e+01 1 Vertex: -93 ID: 0 (X,cT)=+6.44e-05,-7.82e-05,+1.27e-01,+1.27e-01 I: 1 174 111 +3.14e-01,-3.81e-01,+6.19e+02,+6.19e+02 2 -93 O: 2 301 22 +1.59e-01,-1.24e-01,+1.91e+02,+1.91e+02 1 302 22 +1.55e-01,-2.57e-01,+4.28e+02,+4.28e+02 1 Vertex: -94 ID: 0 (X,cT)=-1.20e-04,-7.40e-06,+1.34e-03,+1.34e-03 I: 1 180 111 -3.03e-01,-1.88e-02,+3.39e+00,+3.41e+00 2 -94 O: 2 303 22 -2.55e-01,-5.43e-02,+2.33e+00,+2.34e+00 1 304 22 -4.81e-02,+3.55e-02,+1.06e+00,+1.07e+00 1 Vertex: -95 ID: 0 (X,cT)=+8.39e-06,-5.78e-06,+4.22e-05,+4.52e-05 I: 1 183 111 +9.15e-02,-6.31e-02,+4.61e-01,+4.93e-01 2 -95 O: 2 305 22 -7.44e-03,+1.71e-02,+2.17e-01,+2.18e-01 1 306 22 +9.90e-02,-8.02e-02,+2.44e-01,+2.75e-01 1 Vertex: -96 ID: 0 (X,cT)=+1.97e-04,-2.86e-04,+1.45e-03,+1.50e-03 I: 1 187 111 +3.27e-01,-4.75e-01,+2.41e+00,+2.49e+00 2 -96 O: 2 307 22 +1.09e-01,-8.71e-02,+4.20e-01,+4.42e-01 1 308 22 +2.18e-01,-3.88e-01,+1.99e+00,+2.04e+00 1 Vertex: -97 ID: 0 (X,cT)=-2.20e-05,+1.26e-06,+3.28e-05,+4.30e-05 I: 1 191 111 -1.77e-01,+1.02e-02,+2.64e-01,+3.45e-01 2 -97 O: 2 309 22 -1.93e-01,-1.44e-02,+2.33e-01,+3.02e-01 1 310 22 +1.59e-02,+2.46e-02,+3.11e-02,+4.27e-02 1 GenVertex: -98 ID: 0 (X,cT):0 I: 1 194 -311 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -98 O: 1 311 310 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -128 GenVertex: -99 ID: 0 (X,cT):0 I: 1 197 223 +2.67e-01,-6.85e-01,+5.28e-03,+1.07e+00 2 -99 O: 3 312 -211 +3.37e-02,-3.82e-01,+1.85e-01,+4.48e-01 1 313 211 -5.34e-02,-2.21e-01,-1.09e-01,+2.88e-01 1 314 111 +2.87e-01,-8.20e-02,-7.13e-02,+3.35e-01 2 -129 Vertex: -100 ID: 0 (X,cT)=+8.32e-05,-8.72e-05,-9.31e-05,+1.60e-04 I: 1 201 111 +2.24e-01,-2.34e-01,-2.50e-01,+4.31e-01 2 -100 O: 2 315 22 -5.17e-03,-2.48e-02,+8.81e-03,+2.68e-02 1 316 22 +2.29e-01,-2.09e-01,-2.59e-01,+4.04e-01 1 Vertex: -101 ID: 0 (X,cT)=+4.90e-05,+2.12e-05,-1.05e-03,+1.06e-03 I: 1 204 111 +1.61e-01,+6.96e-02,-3.46e+00,+3.46e+00 2 -101 O: 2 317 22 +1.65e-02,+6.11e-02,-1.68e+00,+1.68e+00 1 318 22 +1.44e-01,+8.51e-03,-1.77e+00,+1.78e+00 1 Vertex: -102 ID: 0 (X,cT)=-1.02e-05,-1.01e-04,-1.98e-03,+1.98e-03 I: 1 206 111 -6.15e-02,-6.07e-01,-1.19e+01,+1.19e+01 2 -102 O: 2 319 22 -5.19e-02,-6.12e-01,-1.16e+01,+1.16e+01 1 320 22 -9.62e-03,+4.67e-03,-2.57e-01,+2.57e-01 1 Vertex: -103 ID: 0 (X,cT)=+8.87e-05,-2.44e-04,-1.11e-02,+1.11e-02 I: 1 210 111 +2.07e-01,-5.69e-01,-2.59e+01,+2.60e+01 2 -103 O: 2 321 22 +4.73e-02,-9.80e-02,-2.88e+00,+2.88e+00 1 322 22 +1.60e-01,-4.71e-01,-2.31e+01,+2.31e+01 1 Vertex: -104 ID: 0 (X,cT)=+2.15e+00,-4.70e-01,-1.47e+02,+1.58e+02 I: 1 213 3122 +4.16e-02,-9.07e-03,-2.83e+00,+3.04e+00 2 -104 O: 2 323 2212 -3.48e-02,-5.22e-02,-2.54e+00,+2.71e+00 1 324 -211 +7.64e-02,+4.31e-02,-2.87e-01,+3.31e-01 1 Vertex: -105 ID: 0 (X,cT)=+1.33e+01,+2.67e+01,-3.54e+02,+3.70e+02 I: 1 215 -3122 +1.46e-01,+2.95e-01,-3.91e+00,+4.08e+00 2 -105 O: 2 325 -2212 +1.60e-01,+3.21e-01,-3.16e+00,+3.31e+00 1 326 211 -1.31e-02,-2.60e-02,-7.56e-01,+7.70e-01 1 GenVertex: -106 ID: 0 (X,cT):0 I: 1 217 -311 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -106 O: 1 327 310 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -130 Vertex: -107 ID: 0 (X,cT)=-1.53e-06,-1.54e-06,-8.31e-06,+8.70e-06 I: 1 218 111 -1.49e-01,-1.50e-01,-8.06e-01,+8.44e-01 2 -107 O: 2 328 22 -3.73e-02,-1.22e-01,-3.18e-01,+3.43e-01 1 329 22 -1.12e-01,-2.75e-02,-4.88e-01,+5.01e-01 1 Vertex: -108 ID: 0 (X,cT)=-7.89e-05,+2.02e-05,-1.21e-03,+1.21e-03 I: 1 220 111 -4.06e-01,+1.04e-01,-6.24e+00,+6.25e+00 2 -108 O: 2 330 22 -1.51e-01,+1.07e-01,-2.51e+00,+2.51e+00 1 331 22 -2.55e-01,-2.79e-03,-3.73e+00,+3.74e+00 1 GenVertex: -109 ID: 0 (X,cT):0 I: 1 224 113 +1.27e-03,-2.57e-01,-6.05e+00,+6.10e+00 2 -109 O: 2 332 211 +3.73e-02,-3.32e-01,-1.66e+00,+1.70e+00 1 333 -211 -3.60e-02,+7.53e-02,-4.40e+00,+4.40e+00 1 Vertex: -110 ID: 0 (X,cT)=+2.64e+00,-7.80e+00,-1.30e+03,+1.30e+03 I: 1 229 -3122 +1.58e-01,-4.67e-01,-7.80e+01,+7.81e+01 2 -110 O: 2 334 -2212 +1.72e-01,-3.82e-01,-7.19e+01,+7.19e+01 1 335 211 -1.40e-02,-8.47e-02,-6.14e+00,+6.14e+00 1 Vertex: -111 ID: 0 (X,cT)=-7.14e-06,-2.63e-05,-5.39e-03,+5.39e-03 I: 1 232 111 -8.21e-02,-3.03e-01,-6.19e+01,+6.19e+01 2 -111 O: 2 336 22 -3.58e-02,-2.90e-01,-5.10e+01,+5.10e+01 1 337 22 -4.64e-02,-1.30e-02,-1.10e+01,+1.10e+01 1 Vertex: -112 ID: 0 (X,cT)=-1.76e-05,+1.89e-04,-2.14e-02,+2.14e-02 I: 1 234 111 -6.96e-02,+7.48e-01,-8.49e+01,+8.49e+01 2 -112 O: 2 338 22 -8.03e-02,+5.78e-01,-5.95e+01,+5.95e+01 1 339 22 +1.07e-02,+1.71e-01,-2.54e+01,+2.54e+01 1 Vertex: -113 ID: 0 (X,cT)=+6.72e-05,-2.36e-05,-7.37e-03,+7.37e-03 I: 1 240 111 +3.00e-01,-1.06e-01,-3.30e+01,+3.30e+01 2 -113 O: 2 340 22 -1.23e-02,-7.41e-03,-2.72e+00,+2.72e+00 1 341 22 +3.13e-01,-9.83e-02,-3.03e+01,+3.03e+01 1 Vertex: -114 ID: 0 (X,cT)=-8.10e-04,-1.47e-03,+5.39e-03,+5.64e-03 I: 1 244 111 -1.70e+00,-3.07e+00,+1.13e+01,+1.18e+01 2 -114 O: 2 342 22 -4.86e-01,-9.81e-01,+3.39e+00,+3.56e+00 1 343 22 -1.21e+00,-2.09e+00,+7.89e+00,+8.26e+00 1 Vertex: -115 ID: 0 (X,cT)=-9.85e-05,-3.24e-05,+7.32e-04,+7.40e-04 I: 1 246 111 -3.49e-01,-1.15e-01,+2.59e+00,+2.62e+00 2 -115 O: 2 344 22 -1.06e-01,+2.78e-02,+7.57e-01,+7.64e-01 1 345 22 -2.43e-01,-1.42e-01,+1.83e+00,+1.85e+00 1 Vertex: -116 ID: 0 (X,cT)=-2.13e-08,+3.98e-07,+1.89e-04,+1.89e-04 I: 1 248 111 -4.99e-04,+9.32e-03,+4.43e+00,+4.43e+00 2 -116 O: 2 346 22 +1.37e-02,+1.69e-02,+1.15e-01,+1.17e-01 1 347 22 -1.42e-02,-7.55e-03,+4.31e+00,+4.31e+00 1 Vertex: -117 ID: 0 (X,cT)=+3.97e-05,+4.77e-05,+1.68e-04,+1.80e-04 I: 1 252 111 +2.61e-01,+3.14e-01,+1.11e+00,+1.19e+00 2 -117 O: 2 348 22 +2.22e-01,+1.71e-01,+7.72e-01,+8.21e-01 1 349 22 +3.89e-02,+1.43e-01,+3.34e-01,+3.65e-01 1 Vertex: -118 ID: 0 (X,cT)=+4.98e-05,+1.51e-05,+2.85e-04,+2.91e-04 I: 1 257 111 +2.39e-01,+7.23e-02,+1.37e+00,+1.39e+00 2 -118 O: 2 350 22 +1.57e-01,+1.05e-01,+1.06e+00,+1.08e+00 1 351 22 +8.17e-02,-3.26e-02,+3.03e-01,+3.16e-01 1 Vertex: -119 ID: 0 (X,cT)=+3.38e-05,+1.44e-05,+3.63e-05,+6.25e-05 I: 1 261 111 +1.30e-01,+5.50e-02,+1.39e-01,+2.40e-01 2 -119 O: 2 352 22 +1.55e-01,+6.37e-02,+1.29e-01,+2.11e-01 1 353 22 -2.51e-02,-8.63e-03,+1.05e-02,+2.86e-02 1 Vertex: -120 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 264 310 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -120 O: 2 354 111 +5.17e-01,+4.57e-01,+1.84e+00,+1.97e+00 2 -131 355 111 +2.66e-01,+2.51e-03,+4.10e-01,+5.07e-01 2 -132 Vertex: -121 ID: 0 (X,cT)=+6.66e-04,+2.88e-04,+8.13e-04,+1.09e-03 I: 1 266 111 +1.48e+00,+6.38e-01,+1.80e+00,+2.42e+00 2 -121 O: 2 356 22 +1.02e+00,+3.71e-01,+1.21e+00,+1.62e+00 1 357 22 +4.60e-01,+2.68e-01,+5.92e-01,+7.96e-01 1 Vertex: -122 ID: 0 (X,cT)=+1.74e-04,+1.56e-05,+5.81e-05,+1.87e-04 I: 1 268 111 +8.35e-01,+7.46e-02,+2.78e-01,+8.93e-01 2 -122 O: 3 358 22 +2.87e-01,+6.23e-02,+1.53e-01,+3.32e-01 1 359 11 +3.90e-01,+1.23e-02,+8.47e-02,+3.99e-01 1 360 -11 +1.57e-01,-6.48e-06,+4.03e-02,+1.62e-01 1 Vertex: -123 ID: 0 (X,cT)=+8.20e-05,+7.04e-05,+7.82e-05,+1.34e-04 I: 1 272 111 +6.37e-01,+5.47e-01,+6.08e-01,+1.05e+00 2 -123 O: 2 361 22 +3.44e-01,+2.73e-01,+3.98e-01,+5.93e-01 1 362 22 +2.93e-01,+2.74e-01,+2.10e-01,+4.53e-01 1 Vertex: -124 ID: 0 (X,cT)=+1.15e-05,-7.95e-07,+6.93e-06,+1.45e-05 I: 1 275 111 +2.87e-01,-1.98e-02,+1.73e-01,+3.62e-01 2 -124 O: 2 363 22 -5.53e-03,-1.09e-02,+3.72e-02,+3.91e-02 1 364 22 +2.93e-01,-8.93e-03,+1.36e-01,+3.23e-01 1 Vertex: -125 ID: 0 (X,cT)=-6.01e-05,+9.54e-05,-7.13e-06,+1.17e-04 I: 1 277 111 -2.71e-01,+4.30e-01,-3.21e-02,+5.27e-01 2 -125 O: 2 365 22 +1.48e-02,+3.65e-02,+1.11e-03,+3.94e-02 1 366 22 -2.86e-01,+3.94e-01,-3.32e-02,+4.88e-01 1 Vertex: -126 ID: 0 (X,cT)=+6.17e-01,+3.22e+00,+6.57e-01,+3.40e+00 I: 1 278 421 +1.91e+00,+9.98e+00,+2.04e+00,+1.05e+01 2 -126 O: 3 367 -321 +9.10e-03,+1.67e+00,+5.35e-01,+1.82e+00 1 368 311 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 2 -133 369 211 +9.10e-01,+4.80e+00,+6.66e-01,+4.93e+00 1 Vertex: -127 ID: 0 (X,cT)=+1.80e-06,+2.14e-05,-1.23e-02,+1.23e-02 I: 1 298 111 +1.58e-02,+1.88e-01,-1.07e+02,+1.07e+02 2 -127 O: 2 370 22 -2.36e-02,+1.29e-01,-9.13e+01,+9.13e+01 1 371 22 +3.93e-02,+5.92e-02,-1.61e+01,+1.61e+01 1 Vertex: -128 ID: 0 (X,cT)=-7.41e+01,+1.15e+02,+1.23e+01,+1.48e+02 I: 1 311 310 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -128 O: 2 372 -211 -6.06e-01,+7.38e-01,-4.48e-02,+9.66e-01 1 373 211 -6.76e-02,+3.05e-01,+1.56e-01,+3.76e-01 1 Vertex: -129 ID: 0 (X,cT)=+2.84e-05,-8.14e-06,-7.07e-06,+3.32e-05 I: 1 314 111 +2.87e-01,-8.20e-02,-7.13e-02,+3.35e-01 2 -129 O: 2 374 22 +1.99e-01,-1.17e-01,-6.68e-02,+2.40e-01 1 375 22 +8.77e-02,+3.51e-02,-4.47e-03,+9.46e-02 1 Vertex: -130 ID: 0 (X,cT)=+4.36e+01,+1.95e+01,-2.03e+02,+2.14e+02 I: 1 327 310 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -130 O: 2 376 -211 +1.26e-02,-5.96e-02,-2.69e-01,+3.09e-01 1 377 211 +4.29e-01,+2.57e-01,-1.79e+00,+1.86e+00 1 Vertex: -131 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 354 111 +5.17e-01,+4.57e-01,+1.84e+00,+1.97e+00 2 -131 O: 2 378 22 +1.04e-01,+1.67e-01,+5.79e-01,+6.11e-01 1 379 22 +4.13e-01,+2.90e-01,+1.26e+00,+1.36e+00 1 Vertex: -132 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 355 111 +2.66e-01,+2.51e-03,+4.10e-01,+5.07e-01 2 -132 O: 2 380 22 +5.80e-02,+2.74e-02,+2.02e-01,+2.11e-01 1 381 22 +2.08e-01,-2.49e-02,+2.08e-01,+2.95e-01 1 Vertex: -133 ID: 0 (X,cT)=+6.17e-01,+3.22e+00,+6.57e-01,+3.40e+00 I: 1 368 311 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 2 -133 O: 1 382 130 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 1 ________________________________________________________________________________ hepmc-2.06.09.orig/test/CMakeLists.txt0000644000175000017500000000414711663022435020334 0ustar sylvestresylvestre macro( hepmc_test testname ) message( STATUS "building ${testname} for ${testname}.sh" ) find_file( ${testname}_source ${testname}.cc ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) ADD_EXECUTABLE(${testname} ${${testname}_source} ${ARGN} ) if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" ) message( STATUS "skipping ${testname}.sh on ${CMAKE_SYSTEM_NAME}") else() # automake/autoconf variables for ${testname}.sh.in set(srcdir ${CMAKE_CURRENT_SOURCE_DIR} ) set(builddir ${CMAKE_CURRENT_BINARY_DIR} ) configure_file( ${testname}.sh.in ${CMAKE_CURRENT_BINARY_DIR}/${testname}.sh @ONLY ) add_test( ${testname}.sh ${CMAKE_CURRENT_BINARY_DIR}/${testname}.sh ) endif() endmacro( hepmc_test ) macro( hepmc_simple_test testname ) message( STATUS "building simple test ${testname} " ) # include test in search path include_directories ("${CMAKE_CURRENT_SOURCE_DIR}") find_file( ${testname}_source ${testname}.cc ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) #message(STATUS "building simple test ${testname} from ${${testname}_source}") ADD_EXECUTABLE(${testname} ${${testname}_source} ${ARGN} ) add_test( ${testname} ${testname} ) endmacro( hepmc_simple_test ) link_libraries( HepMC ) set( HepMC_tests testHepMCIteration testMass testFlow testPrintBug testPolarization ) set( HepMC_simple_tests testSimpleVector testUnits testMultipleCopies testWeights ) # automake/autoconf variables for *.cc.in set(srcdir ${CMAKE_CURRENT_SOURCE_DIR} ) FILE( GLOB process_source *.cc.in ) foreach( sfile ${process_source} ) get_filename_component(basename ${sfile} NAME_WE ) configure_file( ${sfile} ${CMAKE_CURRENT_BINARY_DIR}/${basename}.cc @ONLY ) endforeach( sfile ${process_source} ) hepmc_test( testHepMC testHepMCMethods.cc ) hepmc_test( testStreamIO testHepMCMethods.cc ) foreach ( test ${HepMC_tests} ) hepmc_test( ${test} ) endforeach ( test ${HepMC_tests} ) foreach ( test ${HepMC_simple_tests} ) hepmc_simple_test( ${test} ) endforeach ( test ${HepMC_simple_tests} ) hepmc-2.06.09.orig/test/testHepMC.sh.in0000755000175000017500000001265611715257770020412 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ # cleanup any old output files first rm -f testHepMC.cout rm -f testHepMC.out rm -f testHepMCParticle.out rm -f testIOAscii.dat rm -f testCrossSection.cout rm -f testCrossSection.out rm -f testCrossSection2.out rm -f testWithWeight.cout rm -f testWithWeight.out rm -f testWithWeight2.out ./testHepMC@EXEEXT@ OS=`uname` case "$OS" in CYGWIN*) cmd1=`sed 's/e-0/e-/g' testHepMC.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd3=`sed 's/e-0/e-/g' testCrossSection.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.dat` cmd5=`sed 's/e-0/e-/g' testCrossSection.cout | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.output` cmd6=`sed 's/e-0/e-/g' testWithWeight.out | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.dat` cmd8=`sed 's/e-0/e-/g' testWithWeight.cout | \ sed 's/e+0/e+/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.output` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`sed 's/e-0/e-/g' testHepMCVarious.cout | \ sed 's/e+0/e+/g' | \ @DIFF_Q@ - @srcdir@/testHepMCVarious.output` fi fi cmd=`sed 's/e-0/e-/g' testHepMC.cout | \ sed 's/e+0/e+/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.output` #don't compare these on Windows (hopelessly different default output) cmd2= cmd4=`@DIFF_Q@ testCrossSection2.out testCrossSection.out` cmd7=`@DIFF_Q@ testWithWeight2.out testWithWeight.out` cmd10=`@DIFF_Q@ testDefineUnits.out testHepMC.out` ;; Darwin*) # MacOSX fix cmd1=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testHepMC.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd3=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testCrossSection.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.dat` cmd5=`sed 's/e-00/e+00/g' testCrossSection.cout | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.output` cmd6=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testWithWeight.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.dat` cmd8=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testWithWeight.cout | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.output` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`@DIFF_Q@ testHepMCVarious.cout @srcdir@/testHepMCVarious.output` fi fi cmd=`@DIFF_Q@ testHepMC.cout @srcdir@/testHepMC.output` cmd2=`sed 's/e-00/e+00/g' @srcdir@/testHepMCParticle.output | \ @DIFF_Q@ - testHepMCParticle.out` cmd4=`@DIFF_Q@ testCrossSection2.out testCrossSection.out` cmd7=`@DIFF_Q@ testWithWeight2.out testWithWeight.out` cmd10=`@DIFF_Q@ testDefineUnits.out testHepMC.out` ;; *) cmd1=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testHepMC.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testHepMC.dat` cmd3=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testCrossSection.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.dat` cmd5=`sed 's/e-00/e+00/g' testCrossSection.cout | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testCrossSection.output` cmd6=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testWithWeight.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.dat` cmd8=`sed 's/e-00/e+00/g' testWithWeight.cout | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testWithWeight.output` if [ "@HEPMC_DEFAULT_MOM_UNIT@" = "GEV" ];then if [ "@HEPMC_DEFAULT_LEN_UNIT@" = "MM" ];then cmd9=`@DIFF_Q@ testHepMCVarious.cout @srcdir@/testHepMCVarious.output` fi fi cmd=`@DIFF_Q@ testHepMC.cout @srcdir@/testHepMC.output` cmd2=`@DIFF_Q@ testHepMCParticle.out @srcdir@/testHepMCParticle.output` cmd4=`@DIFF_Q@ testCrossSection2.out testCrossSection.out` cmd7=`@DIFF_Q@ testWithWeight2.out testWithWeight.out` cmd10=`@DIFF_Q@ testDefineUnits.out testHepMC.out` esac if [ -n "$cmd" ]; then echo "testHepMC.cout and @srcdir@/testHepMC.output differ" exit 1; fi if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi if [ -n "$cmd2" ] then echo $cmd2 exit 1; fi if [ -n "$cmd3" ] then echo $cmd3 exit 1; fi if [ -n "$cmd4" ] then echo $cmd4 exit 1; fi if [ -n "$cmd5" ] then echo $cmd5 exit 1; fi if [ -n "$cmd6" ] then echo $cmd6 exit 1; fi if [ -n "$cmd7" ] then echo $cmd7 exit 1; fi if [ -n "$cmd8" ] then echo $cmd8 exit 1; fi if [ -n "$cmd9" ] then echo $cmd9 exit 1; fi if [ -n "$cmd10" ] then echo $cmd10 exit 1; fi exit 0; hepmc-2.06.09.orig/test/Makefile.in0000644000175000017500000006346711763470444017663 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Applicable to each test program: srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ check_PROGRAMS = testSimpleVector$(EXEEXT) testUnits$(EXEEXT) \ testPrintBug$(EXEEXT) testHepMC$(EXEEXT) \ testHepMCIteration$(EXEEXT) testMass$(EXEEXT) \ testMultipleCopies$(EXEEXT) testStreamIO$(EXEEXT) \ testFlow$(EXEEXT) testPolarization$(EXEEXT) \ testWeights$(EXEEXT) subdir = test DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/testFlow.sh.in $(srcdir)/testHepMC.cc.in \ $(srcdir)/testHepMC.sh.in $(srcdir)/testHepMCIteration.cc.in \ $(srcdir)/testHepMCIteration.sh.in $(srcdir)/testMass.cc.in \ $(srcdir)/testMass.sh.in $(srcdir)/testMultipleCopies.cc.in \ $(srcdir)/testPolarization.sh.in $(srcdir)/testPrintBug.sh.in \ $(srcdir)/testStreamIO.cc.in $(srcdir)/testStreamIO.sh.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = testHepMC.cc testMass.cc testHepMCIteration.cc \ testMultipleCopies.cc testStreamIO.cc testHepMC.sh testFlow.sh \ testMass.sh testHepMCIteration.sh testPolarization.sh \ testPrintBug.sh testStreamIO.sh am_testFlow_OBJECTS = testFlow.$(OBJEXT) testFlow_OBJECTS = $(am_testFlow_OBJECTS) testFlow_LDADD = $(LDADD) testFlow_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testHepMC_OBJECTS = testHepMC.$(OBJEXT) testHepMCMethods.$(OBJEXT) testHepMC_OBJECTS = $(am_testHepMC_OBJECTS) testHepMC_LDADD = $(LDADD) testHepMC_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testHepMCIteration_OBJECTS = testHepMCIteration.$(OBJEXT) testHepMCIteration_OBJECTS = $(am_testHepMCIteration_OBJECTS) testHepMCIteration_LDADD = $(LDADD) testHepMCIteration_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testMass_OBJECTS = testMass.$(OBJEXT) testMass_OBJECTS = $(am_testMass_OBJECTS) testMass_LDADD = $(LDADD) testMass_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testMultipleCopies_OBJECTS = testMultipleCopies.$(OBJEXT) testMultipleCopies_OBJECTS = $(am_testMultipleCopies_OBJECTS) testMultipleCopies_LDADD = $(LDADD) testMultipleCopies_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testPolarization_OBJECTS = testPolarization.$(OBJEXT) testPolarization_OBJECTS = $(am_testPolarization_OBJECTS) testPolarization_LDADD = $(LDADD) testPolarization_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testPrintBug_OBJECTS = testPrintBug.$(OBJEXT) testPrintBug_OBJECTS = $(am_testPrintBug_OBJECTS) testPrintBug_LDADD = $(LDADD) testPrintBug_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testSimpleVector_OBJECTS = testSimpleVector.$(OBJEXT) testSimpleVector_OBJECTS = $(am_testSimpleVector_OBJECTS) testSimpleVector_LDADD = $(LDADD) testSimpleVector_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testStreamIO_OBJECTS = testStreamIO.$(OBJEXT) \ testHepMCMethods.$(OBJEXT) testStreamIO_OBJECTS = $(am_testStreamIO_OBJECTS) testStreamIO_LDADD = $(LDADD) testStreamIO_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testUnits_OBJECTS = testUnits.$(OBJEXT) testUnits_OBJECTS = $(am_testUnits_OBJECTS) testUnits_LDADD = $(LDADD) testUnits_DEPENDENCIES = $(top_builddir)/src/libHepMC.la am_testWeights_OBJECTS = testWeights.$(OBJEXT) testWeights_OBJECTS = $(am_testWeights_OBJECTS) testWeights_LDADD = $(LDADD) testWeights_DEPENDENCIES = $(top_builddir)/src/libHepMC.la DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/HepMC depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(testFlow_SOURCES) $(testHepMC_SOURCES) \ $(testHepMCIteration_SOURCES) $(testMass_SOURCES) \ $(testMultipleCopies_SOURCES) $(testPolarization_SOURCES) \ $(testPrintBug_SOURCES) $(testSimpleVector_SOURCES) \ $(testStreamIO_SOURCES) $(testUnits_SOURCES) \ $(testWeights_SOURCES) DIST_SOURCES = $(testFlow_SOURCES) $(testHepMC_SOURCES) \ $(testHepMCIteration_SOURCES) $(testMass_SOURCES) \ $(testMultipleCopies_SOURCES) $(testPolarization_SOURCES) \ $(testPrintBug_SOURCES) $(testSimpleVector_SOURCES) \ $(testStreamIO_SOURCES) $(testUnits_SOURCES) \ $(testWeights_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INCLUDES = -I$(top_builddir) -I$(top_srcdir) LDADD = $(top_builddir)/src/libHepMC.la check_SCRIPTS = testHepMC.sh testHepMCIteration.sh testPrintBug.sh \ testMass.sh testStreamIO.sh testFlow.sh testPolarization.sh # Identify test(s) to run when 'make check' is requested: TESTS = testSimpleVector testUnits \ testHepMC.sh testHepMCIteration.sh testMass.sh testFlow.sh testStreamIO.sh \ testPrintBug.sh testMultipleCopies testPolarization.sh testWeights # Identify the test(s) for which failure is the intended outcome: XFAIL_TESTS = # Identify the dependencies on a per-test basis: testSimpleVector_SOURCES = testSimpleVector.cc testUnits_SOURCES = testUnits.cc testFlow_SOURCES = testFlow.cc testPolarization_SOURCES = testPolarization.cc testWeights_SOURCES = testWeights.cc testHepMC_SOURCES = testHepMC.cc testHepMCMethods.cc testMass_SOURCES = testMass.cc testStreamIO_SOURCES = testStreamIO.cc testHepMCMethods.cc testHepMCIteration_SOURCES = testHepMCIteration.cc testMultipleCopies_SOURCES = testMultipleCopies.cc testPrintBug_SOURCES = testPrintBug.cc # Identify input data file(s) and prototype output file(s): EXTRA_DIST = testIOGenEvent.input \ testHepMCVarious.input \ testCrossSection.output \ testFlow.output \ testHepMC.output \ testHepMCParticle.output \ testPrintBug.output \ testStreamIO.output \ testCrossSection.dat \ testHepMC.dat \ testHepMCIteration.dat \ testMass1.dat \ testStreamIOVarious.dat # Identify generated file(s) to be removed when 'make clean' is requested: CLEANFILES = testHepMC.cout testStreamIO.cout \ testHepMCIteration.cout \ testHepMCIteration.out testHepMCIteration2.out testHepMCIteration3.out \ testHepMC.out testHepMCParticle.out \ testPrintBug.out testMass.out testNaN.out \ testAscii.out testHepMCprecision.out \ testMass.cout testMass1.out testMass2.out \ testHepMCVarious.cout testHepMCVarious.out testIOAscii.out \ testMultipleCopies.out \ testMultipleCopies1.out testMultipleCopies2.out \ testMultipleOriginals.out testUnits.out \ testCrossSection.out testCrossSection2.out testCrossSection.cout \ testStreamIO.out testStreamIOParticle.out testStreamIOVarious.out \ testStreamIO2.out testStreamIO3.out testStreamIO4.out \ testStreamIOprecision.out testStreamIO.cout testStreamIOVarious.cout \ testFlow.out testFlow.out1 testFlow.out2 testFlow.out3 testFlow.out4 testFlow.out5 \ testPolarization.cout testPolarization1.dat testPolarization2.dat \ testPolarization4.out testPolarization5.out \ testWithWeight.cout testWithWeight.out testWithWeight2.out all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign test/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh testHepMC.cc: $(top_builddir)/config.status $(srcdir)/testHepMC.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testMass.cc: $(top_builddir)/config.status $(srcdir)/testMass.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testHepMCIteration.cc: $(top_builddir)/config.status $(srcdir)/testHepMCIteration.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testMultipleCopies.cc: $(top_builddir)/config.status $(srcdir)/testMultipleCopies.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testStreamIO.cc: $(top_builddir)/config.status $(srcdir)/testStreamIO.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testHepMC.sh: $(top_builddir)/config.status $(srcdir)/testHepMC.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testFlow.sh: $(top_builddir)/config.status $(srcdir)/testFlow.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testMass.sh: $(top_builddir)/config.status $(srcdir)/testMass.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testHepMCIteration.sh: $(top_builddir)/config.status $(srcdir)/testHepMCIteration.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testPolarization.sh: $(top_builddir)/config.status $(srcdir)/testPolarization.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testPrintBug.sh: $(top_builddir)/config.status $(srcdir)/testPrintBug.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ testStreamIO.sh: $(top_builddir)/config.status $(srcdir)/testStreamIO.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done testFlow$(EXEEXT): $(testFlow_OBJECTS) $(testFlow_DEPENDENCIES) @rm -f testFlow$(EXEEXT) $(CXXLINK) $(testFlow_LDFLAGS) $(testFlow_OBJECTS) $(testFlow_LDADD) $(LIBS) testHepMC$(EXEEXT): $(testHepMC_OBJECTS) $(testHepMC_DEPENDENCIES) @rm -f testHepMC$(EXEEXT) $(CXXLINK) $(testHepMC_LDFLAGS) $(testHepMC_OBJECTS) $(testHepMC_LDADD) $(LIBS) testHepMCIteration$(EXEEXT): $(testHepMCIteration_OBJECTS) $(testHepMCIteration_DEPENDENCIES) @rm -f testHepMCIteration$(EXEEXT) $(CXXLINK) $(testHepMCIteration_LDFLAGS) $(testHepMCIteration_OBJECTS) $(testHepMCIteration_LDADD) $(LIBS) testMass$(EXEEXT): $(testMass_OBJECTS) $(testMass_DEPENDENCIES) @rm -f testMass$(EXEEXT) $(CXXLINK) $(testMass_LDFLAGS) $(testMass_OBJECTS) $(testMass_LDADD) $(LIBS) testMultipleCopies$(EXEEXT): $(testMultipleCopies_OBJECTS) $(testMultipleCopies_DEPENDENCIES) @rm -f testMultipleCopies$(EXEEXT) $(CXXLINK) $(testMultipleCopies_LDFLAGS) $(testMultipleCopies_OBJECTS) $(testMultipleCopies_LDADD) $(LIBS) testPolarization$(EXEEXT): $(testPolarization_OBJECTS) $(testPolarization_DEPENDENCIES) @rm -f testPolarization$(EXEEXT) $(CXXLINK) $(testPolarization_LDFLAGS) $(testPolarization_OBJECTS) $(testPolarization_LDADD) $(LIBS) testPrintBug$(EXEEXT): $(testPrintBug_OBJECTS) $(testPrintBug_DEPENDENCIES) @rm -f testPrintBug$(EXEEXT) $(CXXLINK) $(testPrintBug_LDFLAGS) $(testPrintBug_OBJECTS) $(testPrintBug_LDADD) $(LIBS) testSimpleVector$(EXEEXT): $(testSimpleVector_OBJECTS) $(testSimpleVector_DEPENDENCIES) @rm -f testSimpleVector$(EXEEXT) $(CXXLINK) $(testSimpleVector_LDFLAGS) $(testSimpleVector_OBJECTS) $(testSimpleVector_LDADD) $(LIBS) testStreamIO$(EXEEXT): $(testStreamIO_OBJECTS) $(testStreamIO_DEPENDENCIES) @rm -f testStreamIO$(EXEEXT) $(CXXLINK) $(testStreamIO_LDFLAGS) $(testStreamIO_OBJECTS) $(testStreamIO_LDADD) $(LIBS) testUnits$(EXEEXT): $(testUnits_OBJECTS) $(testUnits_DEPENDENCIES) @rm -f testUnits$(EXEEXT) $(CXXLINK) $(testUnits_LDFLAGS) $(testUnits_OBJECTS) $(testUnits_LDADD) $(LIBS) testWeights$(EXEEXT): $(testWeights_OBJECTS) $(testWeights_DEPENDENCIES) @rm -f testWeights$(EXEEXT) $(CXXLINK) $(testWeights_LDFLAGS) $(testWeights_OBJECTS) $(testWeights_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testFlow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testHepMC.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testHepMCIteration.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testHepMCMethods.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testMass.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testMultipleCopies.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testPolarization.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testPrintBug.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testSimpleVector.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testStreamIO.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testUnits.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testWeights.Po@am__quote@ .cc.o: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ ;; \ *) \ echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *) \ failed=`expr $$failed + 1`; \ echo "FAIL: $$tst"; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ echo "SKIP: $$tst"; \ fi; \ done; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="All $$all tests passed"; \ else \ banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all tests failed"; \ else \ banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ test -z "$$skipped" || echo "$$skipped"; \ test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool ctags \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-exec install-exec-am install-info \ install-info-am install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/test/testHepMCVarious.input0000644000175000017500000471753011510652322022070 0ustar sylvestresylvestre HepMC::Version 2.01.04 HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 3 3.4560000000000002e-01 9.8563000000000001e-01 9.8595999999999995e-01 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING HepMC::IO_ExtendedAscii-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 HepMC::IO_ExtendedAscii-END_EVENT_LISTING HepMC::IO_Ascii-START_EVENT_LISTING E 1 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 258 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -1 0 P 3 -1 -1.4221403910208932e+00 1.1510218626680770e+00 2.7391537970226784e+02 2.7392148979599568e+02 3 0 0 -3 0 P 14 2112 7.9951212024063767e-01 -7.7892736865915102e-01 4.6429969632409717e+02 4.6430198873783621e+02 1 0 0 0 0 P 110 2 6.2262827078025551e-01 -3.7209449400892602e-01 1.6243703733758804e+02 1.6243899199172907e+02 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -2 0 P 4 2 2.9923024991714953e+00 -7.2119383646849933e-01 -3.6033180598151871e+03 3.6033193744358937e+03 3 0 0 -4 0 P 21 2101 -2.9923024991714953e+00 7.2119383646849933e-01 -1.8152375603709893e+03 1.8152402623894354e+03 2 0 0 -11 0 V -3 0 0 0 0 0 0 3 0 P 5 -1 -5.0799288861804737e+00 -2.3310134609848063e+00 2.6124955578648348e+02 2.6130933718464598e+02 3 0 0 -5 0 P 108 21 6.6806859637683935e-01 1.9569601752114720e+00 1.7816831543630873e+00 2.7295427528012519e+00 2 0 0 -13 0 P 109 21 3.1664298860279576e+00 1.6887104390800713e+00 7.0336109728037552e+00 7.8961829061220730e+00 2 0 0 -13 0 V -4 0 0 0 0 0 0 11 0 P 6 2 8.9154538447857345e-01 1.0234558864853245e+00 -6.8727416891716393e+00 7.0054902362535785e+00 3 0 0 -5 0 P 15 -2 -2.9117870485610418e+00 -2.8430417291726806e-01 -2.3873902878548115e+01 2.4054759847756827e+01 2 0 0 -9 0 P 16 21 -4.5168349018626819e-01 -5.8188236182207898e-01 -2.3549853918806662e+00 2.4675010140378513e+00 2 0 0 -9 0 P 17 21 1.3361064706818437e-01 5.6062971936987716e-01 -6.6354406969191293e-01 8.7889033427045515e-01 2 0 0 -9 0 P 18 21 3.4853813800100564e-01 3.2654984823776517e-01 1.5743835764396941e+00 1.6452347196641450e+00 2 0 0 -9 0 P 19 2 3.8684578727925030e+00 -5.3367328577347839e-01 -2.8046052714443090e+03 2.8046080095597486e+03 2 0 0 -9 0 P 20 3 2.0280234355948692e+00 -1.3500894269493069e+00 -5.2260786435830971e+02 5.2261378235717200e+02 2 0 0 -11 0 P 22 -3 -4.1470342387186032e-01 -6.4497338778096824e-01 -2.2075314546382924e+02 2.2075504343451649e+02 2 0 0 -13 0 P 23 21 1.5396669730665143e-02 4.4227214617257865e-01 -1.6656899580654343e+01 1.6662777239965784e+01 2 0 0 -13 0 P 24 21 3.8670738014295408e-01 -6.5339056557188135e-02 -3.3094156701471751e+00 3.3325731601848574e+00 2 0 0 -13 0 P 25 21 -1.0785130532704446e+00 2.2252496443311437e-01 6.5585694625575608e-01 1.2817394820409573e+00 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -4.8202891827323624e+00 -2.5587437730119476e+00 2.5454803926087314e+02 2.6690270499359252e+02 3 0 0 -6 0 P 8 22 6.3190568103046052e-01 1.2511861985124657e+00 -1.7122516356100745e-01 1.4121224273069288e+00 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -4.8202891827323624e+00 -2.5587437730119476e+00 2.5454803926087314e+02 2.6690270499359252e+02 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 6.3190568103046052e-01 1.2511861985124657e+00 -1.7122516356100745e-01 1.4121224273069028e+00 1 0 0 0 0 V -8 0 0 0 0 0 0 3 0 P 11 12 -3.1482668109141340e+01 2.3992429945124666e+01 9.3808327139613652e+01 1.0181747063581395e+02 1 0 0 0 0 P 12 -11 2.6662139146695090e+01 -2.6551414506163663e+01 1.6073902791950803e+02 1.6508447041719077e+02 1 0 0 0 0 P 13 22 2.3977971390581616e-04 2.4078802705085317e-04 6.8420175040426049e-04 7.6394058697522511e-04 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 113 92 9.8713611911438326e-01 -5.1268025290518304e-01 -2.8299233202079899e+03 2.8336543954754779e+03 2 0 0 -10 0 V -10 0 0 0 0 0 0 19 0 P 114 223 -2.7114001291755283e+00 -6.7007605629227818e-01 -2.0274893131572810e+01 2.0481544453069873e+01 2 0 0 -17 0 P 115 -2212 -2.2822451769197945e-02 5.5336396314251601e-01 -2.5235246202821924e+00 2.7486832560482362e+00 1 0 0 0 0 P 116 113 -7.6647932305791822e-01 -2.3318579739459548e-02 -1.6785015637627680e+00 2.0918082652443193e+00 2 0 0 -18 0 P 117 2112 4.2876407709936964e-01 -1.9456787248899243e-01 -9.8523397252217848e-01 1.4405460965646326e+00 1 0 0 0 0 P 118 211 -5.2448166589865997e-01 2.0859227481917400e-01 -4.2289320904761568e-01 7.1896467655696528e-01 1 0 0 0 0 P 119 -213 9.6239792339966590e-01 2.5788215224489214e-01 -4.7515939794649115e-01 1.2898501382463603e+00 2 0 0 -19 0 P 120 213 -4.8038065151633225e-01 -1.8223214992339704e-01 -3.0288568911759861e-01 9.5906567846649404e-01 2 0 0 -20 0 P 121 -211 3.1536695085298933e-01 -1.1243714543520097e-01 -8.7166437759012427e-01 9.4412763831142410e-01 1 0 0 0 0 P 122 -2214 -8.6053752736042655e-02 5.6973991384588207e-01 -2.7125893857089469e+00 3.0723401779268000e+00 2 0 0 -21 0 P 123 111 -2.1369420924390198e-01 -2.8515614406097767e-01 -3.8708902277524304e+00 3.8896002361771531e+00 2 0 0 -22 0 P 124 2224 4.7072418470400884e-01 -1.2307802237235101e-01 -7.5295987198691989e+00 7.6306902373960259e+00 2 0 0 -23 0 P 125 221 -2.1217124722303105e-01 -3.4382688073305967e-01 -3.9732780555050131e+00 4.0311131925214525e+00 2 0 0 -24 0 P 126 -213 1.7508880583947969e-01 1.0828789156835196e-01 -3.4664128143019106e+01 3.4673762724665636e+01 2 0 0 -25 0 P 127 -2112 3.6248540262698142e-01 5.1112997685056560e-01 -2.0170915788016266e+01 2.0202506899701749e+01 1 0 0 0 0 P 128 311 -1.9728899388726165e-01 -1.1236567577654022e-01 -5.1551286531483889e+01 5.1554188651090747e+01 2 0 0 -26 0 P 129 3214 3.3751529879291886e-01 -1.7864690712612299e-03 -2.4754777257927626e+02 2.4755183655446075e+02 2 0 0 -27 0 P 130 -2112 -8.0631095748395956e-02 -6.2809418206344581e-01 -3.0733734666909680e+02 3.0733943523905396e+02 1 0 0 0 0 P 131 213 1.7026536167311832e+00 3.1186073956629184e-01 -7.7175871066435047e+02 7.7176104676907880e+02 2 0 0 -28 0 P 132 2112 1.5275433793240565e+00 -3.5659798698589290e-01 -1.3512720474820703e+03 1.3512732845908970e+03 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 133 92 -9.6427906357662607e-01 -6.2889559048080756e-01 -2.3378454247292989e+03 2.3378540447466075e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 4 0 P 134 -311 1.2889206342757902e+00 -8.4778519723955947e-01 -3.0032646868717376e+02 3.0033084344715405e+02 2 0 0 -29 0 P 135 -213 2.3225980860459833e-01 -1.0380307223137890e-01 -1.9567344331135686e+02 1.9567493636968206e+02 2 0 0 -30 0 P 136 221 -1.5793711419536141e+00 6.8164761926459483e-01 -9.3440250608298629e+02 9.3440424984711444e+02 2 0 0 -31 0 P 137 2212 -9.0608836450340069e-01 -3.5895494027446406e-01 -9.0744300664778200e+02 9.0744401508265673e+02 1 0 0 0 0 V -13 0 0 0 0 0 82 1 0 P 26 21 2.0350966064186202e-01 1.2697850280497742e+00 -3.3595146387401305e+00 3.5972362734943002e+00 2 0 0 -13 0 P 27 21 6.5277544808364485e-01 -6.2126041561828348e-02 -1.8982573485812573e+00 2.0083217849995281e+00 2 0 0 -13 0 P 28 21 1.3039124474204202e+01 -5.1810386739467251e-01 -1.1709876053249934e+01 1.7533065785927931e+01 2 0 0 -13 0 P 29 21 4.8644826009004198e+00 -2.4933253546041709e+00 -2.8477662555000594e+00 6.1635732286020382e+00 2 0 0 -13 0 P 30 21 -9.5184530427573161e-02 -1.1556588366534259e+00 -8.2119894034029783e-01 1.4209064505391955e+00 2 0 0 -13 0 P 31 21 5.7486379282948441e-01 -2.9534785998417852e+00 -6.1937019420569142e+00 6.8858875947164053e+00 2 0 0 -13 0 P 32 21 1.5201221821921060e-01 -4.6728355911534636e-01 -1.3328502232446815e+00 1.4205461473358856e+00 2 0 0 -13 0 P 33 21 7.3707925916915795e-01 -3.2855372995774434e+00 -3.6483381886796558e+01 3.6638438764213838e+01 2 0 0 -13 0 P 34 21 2.2342396139048857e+00 -1.4891279932857771e+00 -4.2627112900507335e+01 4.2711591905071018e+01 2 0 0 -13 0 P 35 21 6.3838100578568935e-01 -2.2264083640990492e-01 -1.0504606717528652e+01 1.0526341317881220e+01 2 0 0 -13 0 P 36 21 2.1649239127925450e+00 1.4509962267722991e+00 -1.9084265138851531e+01 1.9261398222566093e+01 2 0 0 -13 0 P 37 21 4.2838390539459076e-01 1.1912513640293771e+00 -1.1944757698730335e+01 1.2011653885459761e+01 2 0 0 -13 0 P 38 21 2.7147091913615857e+00 1.7156866523641445e+00 -6.8215266829334084e+01 6.8290818235543284e+01 2 0 0 -13 0 P 39 21 6.9527936567135162e+00 2.9750964011968009e+00 -2.0423986318714341e+02 2.0437982839050508e+02 2 0 0 -13 0 P 40 21 4.6746952577299083e+00 1.7424316870150494e+00 -3.7270332474972020e+02 3.7273671287308412e+02 2 0 0 -13 0 P 41 21 3.0900394902668077e-01 -1.0847501542455869e-01 -4.8731631985691230e+01 4.8732732390646127e+01 2 0 0 -13 0 P 42 21 1.6726910697677460e+00 -1.2169627141817063e+00 -1.6427489698366705e+02 1.6428792004483168e+02 2 0 0 -13 0 P 43 21 -2.1755285815661516e+00 5.4307985908134846e+00 -1.5787651783500493e+02 1.5798487706628703e+02 2 0 0 -13 0 P 44 21 -6.9527936567135162e+00 -2.9750964011968009e+00 -2.2153359073268331e+02 2.2166263636694677e+02 2 0 0 -13 0 P 45 21 -2.1649239127925450e+00 -1.4509962267722991e+00 -3.4840434645112950e+01 3.4937775714241958e+01 2 0 0 -13 0 P 46 21 -8.0156788825559844e-01 -4.7512431922149206e-01 -1.2779490902884447e+01 1.2813416481762566e+01 2 0 0 -13 0 P 47 21 -4.6746952577299083e+00 -1.7424316870150494e+00 -5.8598944731713296e+01 5.8810927280624867e+01 2 0 0 -13 0 P 48 21 -4.9571824485343443e+00 -4.2113439065434104e+00 -2.2014102002330510e+01 2.2954950714306694e+01 2 0 0 -13 0 P 49 21 -2.7553647676288104e+00 -1.9683765117772283e+00 -9.5422826876061233e+00 1.0125299994814672e+01 2 0 0 -13 0 P 50 21 -2.7246306003584002e+00 -3.3410237572721853e+00 -9.0584028652103790e+00 1.0031984555586105e+01 2 0 0 -13 0 P 51 21 -2.7147091913615857e+00 -1.7156866523641445e+00 -2.2367390686986113e+00 3.9135953219777706e+00 2 0 0 -13 0 P 52 21 -1.3039124474204202e+01 5.1810386739467251e-01 -1.1953393518072080e+01 1.7696632879423362e+01 2 0 0 -13 0 P 53 21 -6.5277544808364485e-01 6.2126041561828348e-02 -7.7226737485287500e-01 1.0131003548134292e+00 2 0 0 -13 0 P 54 21 -3.0900394902668077e-01 1.0847501542455869e-01 -3.7987017098863529e-01 5.0154921622147586e-01 2 0 0 -13 0 P 55 21 -2.2342396139048857e+00 1.4891279932857771e+00 -3.2957879274317179e+00 4.2510642073878202e+00 2 0 0 -13 0 P 56 21 -1.6726910697677460e+00 1.2169627141817063e+00 -2.7531778213440865e+00 3.4436727165237762e+00 2 0 0 -13 0 P 57 21 -3.1173917908684192e+00 2.0876149036324834e+00 -8.1142032333390124e-01 3.8385766248391557e+00 2 0 0 -13 0 P 58 21 -4.8644826009004198e+00 2.4933253546041709e+00 7.8088600448797472e+00 9.5319545476724894e+00 2 0 0 -13 0 P 59 21 -7.6901891194783767e-01 6.6295636099229494e-01 1.8809207306915094e+00 2.1374667292518645e+00 2 0 0 -13 0 P 60 21 -2.4301729337268165e+00 1.1280415147837342e+00 7.5988061485363056e+00 8.0572993633057433e+00 2 0 0 -13 0 P 61 21 -6.3838100578568935e-01 2.2264083640990492e-01 2.7427666016573808e+00 2.8248659935919842e+00 2 0 0 -13 0 P 62 21 -1.6454647372457343e+00 3.2745730023135217e-01 5.9445419261806114e+00 6.1767597652096748e+00 2 0 0 -13 0 P 63 21 -2.3874328682535366e+00 -1.9617254632528349e+00 3.3603918090317317e+00 4.5651325943283849e+00 2 0 0 -13 0 P 64 21 -2.0350966064186202e-01 -1.2697850280497742e+00 1.4479197727352508e-01 1.2941154956636245e+00 2 0 0 -13 0 P 65 21 2.5928637454896482e+00 -1.0523092361940408e+01 2.3921794259854025e+01 2.6262342924259215e+01 2 0 0 -13 0 P 66 21 -1.0527314087565481e-01 -3.0640025334387468e+00 1.7593320163442453e+01 1.7858446414302104e+01 2 0 0 -13 0 P 67 21 2.1755285815661516e+00 -5.4307985908134846e+00 4.7886994487211545e+01 4.8243038243475318e+01 2 0 0 -13 0 P 68 21 8.6150731062793240e-01 -1.5567561364625317e+00 2.5611607764106946e+01 2.5673335131555120e+01 2 0 0 -13 0 P 69 21 2.0523030484842066e+00 -1.1016691558487282e+00 1.7908290546833189e+01 1.8059138767991151e+01 2 0 0 -13 0 P 70 21 2.3874328682535366e+00 1.9617254632528349e+00 1.0971438048317234e+01 1.1398274226463185e+01 2 0 0 -13 0 P 71 21 8.0156788825559844e-01 4.7512431922149206e-01 3.2982699629766250e+00 3.4273661821976438e+00 2 0 0 -13 0 P 72 21 7.5607015917666121e-01 5.6840997639476143e-01 1.6722900768815856e+00 1.9212719974275205e+00 2 0 0 -13 0 P 73 21 7.8883031030270412e-01 3.8871591814031825e-01 1.3357863449067267e+00 1.5992743612986495e+00 2 0 0 -13 0 P 74 21 4.9571824485343443e+00 4.2113439065434104e+00 1.0228406789151180e+01 1.2121443015235077e+01 2 0 0 -13 0 P 75 21 2.7246306003584002e+00 3.3410237572721853e+00 5.8264505184621749e+00 7.2480050565072505e+00 2 0 0 -13 0 P 76 21 1.5416351818443392e+00 2.8345662474227482e+00 5.4430566646215635e+00 6.3275801614210883e+00 2 0 0 -13 0 P 77 21 2.7553647676288104e+00 1.9683765117772283e+00 7.8795218102559994e-01 3.4766952317379585e+00 2 0 0 -13 0 P 78 21 1.0527314087565481e-01 3.0640025334387468e+00 -5.4318827558396277e-01 3.1135586491731231e+00 2 0 0 -13 0 P 79 21 -5.7486379282948441e-01 2.9534785998417852e+00 2.3604531499534023e+00 3.8242964442044278e+00 2 0 0 -13 0 P 80 21 -1.5201221821921060e-01 4.6728355911534636e-01 6.4376970093539387e-01 8.0987719251123302e-01 2 0 0 -13 0 P 81 21 9.5184530427573161e-02 1.1556588366534259e+00 2.1761948654639456e+00 2.4658531047163996e+00 2 0 0 -13 0 P 82 21 -8.6150731062793240e-01 1.5567561364625317e+00 4.8887676220753216e+00 5.2024737747855214e+00 2 0 0 -13 0 P 83 21 -9.8935295569215087e-01 1.4762447355768018e+00 8.7722331186815001e+00 8.9504296924084930e+00 2 0 0 -13 0 P 84 21 -7.3707925916915795e-01 3.2855372995774434e+00 1.5881070026461785e+01 1.6234113045269670e+01 2 0 0 -13 0 P 85 21 -2.5928637454896482e+00 1.0523092361940408e+01 1.2213990627346465e+02 1.2261979905280930e+02 2 0 0 -13 0 P 86 21 -9.1737566933238157e-01 1.6463621215239150e+00 4.8457997871314916e+01 4.8494635208961341e+01 2 0 0 -13 0 P 87 21 -3.5075680165140208e+00 1.3016152382356951e+00 8.3942199459381669e+01 8.4025532344029187e+01 2 0 0 -13 0 P 88 21 -2.2697791372812297e+00 -5.9688807813081823e-01 3.5662889706207316e+01 3.5740031825768703e+01 2 0 0 -13 0 P 89 21 -6.5882155047427104e-01 -2.2944326289327219e-01 4.6733054438952575e+00 4.7250898211777397e+00 2 0 0 -13 0 P 90 21 -7.5607015917666121e-01 -5.6840997639476143e-01 1.8314372247804172e+01 1.8338783024453999e+01 2 0 0 -13 0 P 91 21 -1.5416351818443392e+00 -2.8345662474227482e+00 5.9086067348253245e+01 5.9174105481428668e+01 2 0 0 -13 0 P 92 21 -4.2838390539459076e-01 -1.1912513640293771e+00 8.0789286948884723e+01 8.0799204688486498e+01 2 0 0 -13 0 P 93 21 -4.6881299462625253e-01 -7.7889023805439261e-01 7.1636223504739093e+01 7.1641991692357351e+01 2 0 0 -13 0 P 94 21 2.2697791372812297e+00 5.9688807813081823e-01 8.2877671501442549e+01 8.2910895582009445e+01 2 0 0 -13 0 P 95 21 1.6454647372457343e+00 -3.2745730023135217e-01 1.0769823716823872e+02 1.0771130428897048e+02 2 0 0 -13 0 P 96 21 3.1173917908684192e+00 -2.0876149036324834e+00 3.4783326628715849e+02 3.4785349991563538e+02 2 0 0 -13 0 P 97 21 2.4301729337268165e+00 -1.1280415147837342e+00 2.4527393398082660e+02 2.4528856660793991e+02 2 0 0 -13 0 P 98 21 7.6901891194783767e-01 -6.6295636099229494e-01 2.4093896738642047e+02 2.4094110671792413e+02 2 0 0 -13 0 P 99 21 9.8935295569215087e-01 -1.4762447355768018e+00 4.2002437020121289e+02 4.2002812963028532e+02 2 0 0 -13 0 P 100 21 9.1737566933238157e-01 -1.6463621215239150e+00 8.8779441738839444e+02 8.8779641789790560e+02 2 0 0 -13 0 P 101 21 3.5075680165140208e+00 -1.3016152382356951e+00 1.2662323278526480e+03 1.2662378549604157e+03 2 0 0 -13 0 P 102 21 1.9219791177889665e+00 1.9240066203380670e+00 5.9392331455139833e+02 5.9392954074782608e+02 2 0 0 -13 0 P 103 21 6.5882155047427104e-01 2.2944326289327219e-01 6.4415664052447511e+01 6.4419441672247018e+01 2 0 0 -13 0 P 104 21 4.6881299462625253e-01 7.7889023805439261e-01 9.7693273104759157e+01 9.7697502862396263e+01 2 0 0 -13 0 P 105 21 -2.0523030484842066e+00 1.1016691558487282e+00 3.4684370606238878e+02 3.4685152739727772e+02 2 0 0 -13 0 P 106 21 -7.8883031030270412e-01 -3.8871591814031825e-01 2.2953155543089443e+02 2.2953324005870965e+02 2 0 0 -13 0 P 107 21 -1.9219791177889665e+00 -1.9240066203380670e+00 3.7522243232472266e+02 3.7523228742325119e+02 2 0 0 -13 0 P 138 92 3.3660143259163640e+00 3.2280607865501594e+00 4.4429214549603557e+03 8.0884787807667662e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 172 0 P 139 313 -8.6458250440397455e-02 -2.6728207203775362e-02 -1.1629050840159658e+02 1.1629288938813896e+02 2 0 0 -32 0 P 140 211 -1.0262360665976952e-01 -4.6772032617917531e-01 -9.5278065980333665e+01 9.5279371485363441e+01 1 0 0 0 0 P 141 -213 1.5286984186724317e-01 1.8291219688183846e-01 -8.1263920331242367e+00 8.1699126183081159e+00 2 0 0 -33 0 P 142 111 -3.7083894693622894e-02 1.1147312010174858e-01 -1.4734858771202206e+00 1.4843118615114586e+00 2 0 0 -34 0 P 143 113 -8.4349362963301224e-03 -3.9394720192728527e-01 -4.2963027782092729e+00 4.4489058524693066e+00 2 0 0 -35 0 P 144 211 -4.0291476524173847e-01 4.2767383064424719e-01 -8.3814517551475092e+00 8.4031814524162822e+00 1 0 0 0 0 P 145 -213 -1.7217139914159160e-01 2.3690208700315463e-01 -9.6006616142194645e-01 1.3323699611321085e+00 2 0 0 -36 0 P 146 113 -2.5873411779145949e-01 1.8802963917265553e-01 -1.6802217717302612e+00 1.8551159539581010e+00 2 0 0 -37 0 P 147 111 3.4647539040062092e-01 -1.3513241760242628e-01 -2.2257125869746828e+00 2.2606021513432824e+00 2 0 0 -38 0 P 148 113 -1.1189644891801037e-01 -1.4641423409931398e-01 -1.2659039909461776e+00 1.4961949103133931e+00 2 0 0 -39 0 P 149 221 -5.4432542809620765e-01 5.7789489046409226e-01 -2.5893617279641012e+00 2.7631048363827704e+00 2 0 0 -40 0 P 150 213 7.2238063620118109e-01 -9.3048870360623606e-02 -3.4704633329065954e-01 1.0748718089971059e+00 2 0 0 -41 0 P 151 -2214 1.5918362096492000e+00 -1.6229638522809542e-01 -2.2108540750699275e+00 2.9847400159834860e+00 2 0 0 -42 0 P 152 -211 2.0690604124859145e-02 1.1263691155491730e-01 7.3587633987156287e-02 1.9496179040906830e-01 1 0 0 0 0 P 153 2224 2.2506191731033525e+00 5.3237313477059189e-01 -2.6587114308983502e+00 3.7280440751520647e+00 2 0 0 -43 0 P 154 -321 2.5328845729674656e+00 1.3333242899587179e-02 -2.5991480298649861e+00 3.6626347724682895e+00 1 0 0 0 0 P 155 321 1.2096320134938434e+00 -2.4791670383751760e-01 -1.3520086341154978e+00 1.8963756502427689e+00 1 0 0 0 0 P 156 -2224 4.4666215927472530e+00 -7.4762629650976553e-01 -2.7582129799388917e+00 5.4443847664139930e+00 2 0 0 -44 0 P 157 3224 2.1779547489658642e+00 -3.9451110719330940e-01 -3.2020481872908082e+00 4.1283558341389712e+00 2 0 0 -45 0 P 158 321 1.8112832192084030e+00 -1.2124626465915787e+00 -2.2810407729541704e+00 3.1933682120051823e+00 1 0 0 0 0 P 159 221 1.2600130762986108e+00 -8.0262998865643054e-01 -4.9228775360591420e-01 1.6655019021257431e+00 2 0 0 -46 0 P 160 -213 8.5171128272140018e-01 -1.4137020892317504e+00 -3.0877479916287291e+00 3.6308720593902488e+00 2 0 0 -47 0 P 161 111 1.8478036375929377e-01 -3.9753686261354959e-01 -1.2939063174540892e+00 1.3728046105383112e+00 2 0 0 -48 0 P 162 111 -2.9068009230831210e-01 1.2555316743292205e-01 -2.3057598180992606e-01 4.1429868175558976e-01 2 0 0 -49 0 P 163 223 4.8574152605526238e-01 -1.2305071076949254e+00 -3.7126461382530831e+00 4.0183335430074409e+00 2 0 0 -50 0 P 164 213 -3.5000074551346161e-01 -7.0579379504670514e-01 -3.5712845004007421e+00 3.7452430980785918e+00 2 0 0 -51 0 P 165 -211 1.2469731587310657e+00 -1.5936062218155405e+00 -1.8124300903975183e+01 1.8237441868078449e+01 1 0 0 0 0 P 166 223 -1.0577627092481059e-01 -1.2143030544604311e-01 -3.8692990712715818e+00 3.9514787188296112e+00 2 0 0 -52 0 P 167 213 8.6581244784671740e-01 -9.6044261858934676e-01 -1.0822088807950625e+01 1.0939539990760208e+01 2 0 0 -53 0 P 168 -213 1.1298794358204796e+00 -1.7534702451088580e+00 -2.6149604807775336e+01 2.6250310310309239e+01 2 0 0 -54 0 P 169 -2114 6.6031277041612679e-01 -1.0592910378357473e-01 -1.8054366227628531e+01 1.8100372919298024e+01 2 0 0 -55 0 P 170 211 1.9563466575872801e+00 9.8222549184576857e-01 -2.7776541468163451e+01 2.7863018409335851e+01 1 0 0 0 0 P 171 2112 1.0681561181506660e+00 -3.7843740144704308e-01 -2.4442381712946467e+01 2.4486669596860992e+01 1 0 0 0 0 P 172 -213 1.8469464969322036e+00 2.0200134493970907e+00 -3.2944462374097718e+01 3.3069017740417614e+01 2 0 0 -56 0 P 173 223 1.8571828098863239e+00 5.8038524275475067e-01 -5.5372620727927071e+01 5.5412399078646644e+01 2 0 0 -57 0 P 174 211 4.4447986574250631e-01 5.1626166339198809e-01 -2.8836859796558201e+01 2.8845243128935376e+01 1 0 0 0 0 P 175 -321 1.5612995962116072e+00 9.9586877807095953e-01 -2.8582587873108324e+01 2.8646769129104705e+01 1 0 0 0 0 P 176 313 3.7225517318265036e+00 1.0237926715118149e+00 -1.2877706485944555e+02 1.2883816013865803e+02 2 0 0 -58 0 P 177 111 2.4560755200114331e-01 6.4350191807092816e-01 -3.9721343322533187e+01 3.9727544005829394e+01 2 0 0 -59 0 P 178 -2114 2.8083137371214035e+00 5.1209505815456291e-01 -1.5834935456580001e+02 1.5837961024625733e+02 2 0 0 -60 0 P 179 2114 1.2310750735723537e+00 2.8899019917946739e-01 -1.4057912581526455e+02 1.4059029602554162e+02 2 0 0 -61 0 P 180 211 6.9850869046188879e-01 -1.4271746756676962e-01 -9.2059337255929861e+01 9.2062203636737536e+01 1 0 0 0 0 P 181 -211 9.0703686704609865e-01 7.9634409500678405e-01 -4.6559772417709816e+01 4.6575624173699104e+01 1 0 0 0 0 P 182 111 -1.5318652427413004e-01 -3.8997464511516222e-01 -1.8124405106100109e+01 1.8129749760696626e+01 2 0 0 -62 0 P 183 213 4.9190331845888646e-01 1.1018830624906324e+00 -8.9720263656592067e+01 8.9729953866587536e+01 2 0 0 -63 0 P 184 -323 2.7042205807770658e-01 1.9027196230679919e-02 -3.4117086146357337e+01 3.4129675990959562e+01 2 0 0 -64 0 P 185 323 -9.3809820262830168e-01 8.8804828128994817e-01 -4.4275312244151962e+01 4.4302485599048914e+01 2 0 0 -65 0 P 186 331 -5.4578313514071497e-01 8.6294210105749924e-01 -3.0656225779993900e+01 3.0688132282108047e+01 2 0 0 -66 0 P 187 -213 -1.3024610279208693e+00 1.3386371950359037e+00 -6.9483237747394767e+01 6.9514482450902563e+01 2 0 0 -67 0 P 188 211 -2.1115042984633141e+00 -1.2009431137226931e+00 -6.8032346762554354e+01 6.8075843003007833e+01 1 0 0 0 0 P 189 113 -1.0312394488534895e+00 -5.9561619162881892e-03 -3.1145572392265873e+01 3.1171877255571257e+01 2 0 0 -68 0 P 190 221 -2.1870520779673912e+00 -8.9001770795194468e-01 -6.1800914740108325e+01 6.1848428375576731e+01 2 0 0 -69 0 P 191 -211 -9.6742712156966726e-01 -7.9308470037160639e-01 -3.0222436678050354e+01 3.0248637277093575e+01 1 0 0 0 0 P 192 211 -2.6805309575448213e+00 -5.9519209451154886e-01 -3.1043177097097619e+01 3.1164688734373573e+01 1 0 0 0 0 P 193 -2212 -1.6196312513737525e+00 -1.1169667473354492e+00 -2.8599884095464279e+01 2.8682826586164246e+01 1 0 0 0 0 P 194 2112 -1.7345978510746289e+00 -5.7476832908853215e-01 -2.1418603456529546e+01 2.1516936448993750e+01 1 0 0 0 0 P 195 213 -1.4518147651206168e+00 -7.2330839175497530e-01 -1.6644320192828342e+01 1.6747260616949671e+01 2 0 0 -70 0 P 196 113 -3.1322115136188642e+00 -3.2539408346172580e+00 -1.6165254643600470e+01 1.6801439953537482e+01 2 0 0 -71 0 P 197 -2212 -1.0239073894788264e+00 -4.2431958348089382e-01 -4.7250705663701043e+00 4.9431847933525450e+00 1 0 0 0 0 P 198 2112 -2.0151804214801965e+00 -2.3366463105492397e+00 -9.4632573375005347e+00 9.9978447343604078e+00 1 0 0 0 0 P 199 211 -9.1263810662382960e-01 -4.6188546050838880e-01 -2.7960052517061063e+00 2.9804985564094975e+00 1 0 0 0 0 P 200 113 -2.1955863058696963e+00 -2.0568656313272755e+00 -7.9805882102828249e+00 8.5670308249738305e+00 2 0 0 -72 0 P 201 -211 -1.9389694814380847e+00 -9.2881999869035903e-01 -2.0076620016343507e+00 2.9449101408399350e+00 1 0 0 0 0 P 202 213 -7.3227556886456824e-01 -3.8366063610515627e-01 -1.2616829043612876e+00 1.7300278773884452e+00 2 0 0 -73 0 P 203 -213 -2.3742067286251043e+00 -2.7517999723894798e-01 -2.4360936519213849e+00 3.5084131608468891e+00 2 0 0 -74 0 P 204 223 -2.8267292288026193e+00 1.3159002388888899e-01 -4.6485956153947372e+00 5.4979862602283136e+00 2 0 0 -75 0 P 205 111 -1.2599441126026281e+00 -7.2081422498429182e-01 -9.3343207795606697e-01 1.7310538288508275e+00 2 0 0 -76 0 P 206 -313 -5.9913960915118638e+00 -2.3471816017155656e-01 -4.7429680748922056e+00 7.6955436763743217e+00 2 0 0 -77 0 P 207 -3122 -3.6189256000268109e+00 2.1096128147839641e+00 -4.0507469203712994e+00 5.9329909153923115e+00 2 0 0 -78 0 P 208 2212 -2.5853622663039495e+00 6.5770530381212144e-01 -2.0170318546889003e+00 3.4735345702066409e+00 1 0 0 0 0 P 209 -2212 -1.6749437480753951e-01 5.2872845008431354e-02 -6.0008055487800060e-01 1.1275181455631405e+00 1 0 0 0 0 P 210 2112 -1.5667247914730646e+00 9.4802603527313989e-01 -1.5972336866720349e+00 2.6052499247695931e+00 1 0 0 0 0 P 211 113 -2.8065399011492115e-01 1.5241577268544876e-01 7.1186233343886562e-01 1.0526036387911042e+00 2 0 0 -79 0 P 212 213 -1.3059020527626093e+00 1.2185337023999070e+00 -8.6495572583492358e-02 1.9618832430113062e+00 2 0 0 -80 0 P 213 111 1.8513735826213674e-02 -6.2294930740185162e-02 3.6113910269727278e-01 3.9097885966783252e-01 2 0 0 -81 0 P 214 111 -1.2454803240896020e+00 1.1841748634972864e+00 9.8122666773816303e-01 1.9835616246826555e+00 2 0 0 -82 0 P 215 111 -5.6608168501455802e-01 -1.6093270528414916e-01 7.1568468817773301e-01 9.3636103241808122e-01 2 0 0 -83 0 P 216 -213 -8.7447329821486419e-01 3.0970015436297060e-01 5.9037510042610142e-01 1.3544286010408377e+00 2 0 0 -84 0 P 217 211 -2.4028827090351885e-02 3.4163968385318016e-01 3.6860912337819218e-01 5.2215661333768260e-01 1 0 0 0 0 P 218 113 -2.2164948180331572e+00 1.2185398672762902e+00 3.9471969325687741e+00 4.7431261979697323e+00 2 0 0 -85 0 P 219 -213 -2.0871097327924693e+00 6.8175008219537814e-01 5.8285804113604520e+00 6.2749502445072247e+00 2 0 0 -86 0 P 220 111 -3.9838991070185514e-01 -2.1136581073607266e-01 5.3677933819072043e-01 7.1396196341655171e-01 2 0 0 -87 0 P 221 113 -2.5896721180322495e+00 1.1423444424028475e+00 7.5118429513325031e+00 8.0615199317614543e+00 2 0 0 -88 0 P 222 213 -9.5883983213934920e-01 -4.3871268479683656e-01 2.6564033781971599e+00 2.9693611780199021e+00 2 0 0 -89 0 P 223 111 -5.7254984108128271e-01 -5.1633849287441458e-01 1.0021875202425585e+00 1.2716202994117201e+00 2 0 0 -90 0 P 224 -2214 -2.9263762479847849e-01 -1.6197359121504856e-01 1.0729100401391110e+00 1.6668401014373686e+00 2 0 0 -91 0 P 225 -211 -9.6922320376789628e-01 -2.4255198092437182e+00 4.2652996792039568e+00 5.0034788999328415e+00 1 0 0 0 0 P 226 2224 7.5844147941590404e-02 -6.7615621671770609e-01 1.8652492184855125e+00 2.3601930945768528e+00 2 0 0 -92 0 P 227 111 9.3919333827516105e-01 -4.0345946606881906e+00 7.9774179144744304e+00 8.9898528567097067e+00 2 0 0 -93 0 P 228 223 7.7561739768101112e-01 -2.3225808345502679e+00 5.9114121270950921e+00 6.4470036822812986e+00 2 0 0 -94 0 P 229 -213 -1.5644393270301368e-01 -2.4523270637774717e+00 7.8384688727386704e+00 8.2688015938785746e+00 2 0 0 -95 0 P 230 113 4.3127572878668069e-01 -1.2925307973311557e+00 8.8689836630054675e+00 9.0074220098269109e+00 2 0 0 -96 0 P 231 211 1.4507096988062229e-01 -1.0842065657493365e+00 3.4460929389281745e+00 3.6182296488955337e+00 1 0 0 0 0 P 232 -211 2.3753122216016687e-01 -5.4618002536117871e-01 4.5859036889228282e+00 4.6265241953955503e+00 1 0 0 0 0 P 233 213 4.8962580640222642e-01 -8.6535048919657398e-01 1.2595745536616331e+01 1.2659288266335645e+01 2 0 0 -97 0 P 234 221 3.4442609762989673e-01 -1.4682533469385179e+00 8.2772170603865565e+00 8.4312763562095974e+00 2 0 0 -98 0 P 235 331 1.0904069433801873e+00 -2.2977645093615595e+00 2.4937029787772087e+01 2.5084672321656193e+01 2 0 0 -99 0 P 236 113 9.4910905796397915e-01 -1.9067022716499868e+00 1.7000693079191390e+01 1.7156778259501593e+01 2 0 0 -100 0 P 237 221 5.7451014673990419e-01 -7.4079782242908765e-01 5.9096442043923973e+00 6.0085305564198839e+00 2 0 0 -101 0 P 238 331 1.1052547802450339e+00 6.2562598491740218e-01 9.5252403029026613e+00 9.6571507084840569e+00 2 0 0 -102 0 P 239 331 1.5068901255762237e+00 -6.7100541939097466e-02 1.0839721670844447e+01 1.0986002563655262e+01 2 0 0 -103 0 P 240 -321 8.8666956133355207e-02 -5.5681827828218178e-01 5.2668409057661814e+00 5.3198836933518594e+00 1 0 0 0 0 P 241 323 4.2960648908995896e-01 9.9038722096097737e-02 2.1177479143357338e+00 2.3234115770669588e+00 2 0 0 -104 0 P 242 -211 1.4709643755454853e+00 4.5538916946417529e-01 4.1476751862642063e+00 4.4264889839963466e+00 1 0 0 0 0 P 243 213 4.1377071709381550e+00 5.5946781571058164e+00 1.5196108888375694e+01 1.6736026433774910e+01 2 0 0 -105 0 P 244 -323 4.7066948134873057e+00 3.3353627609046863e+00 7.8526852077527938e+00 9.7792866934909473e+00 2 0 0 -106 0 P 245 -3222 2.0658704347803991e+00 2.2631915036873225e+00 3.0755830510395468e+00 4.5015184700725115e+00 2 0 0 -107 0 P 246 211 7.0856195037529024e-01 9.1436004820608163e-01 1.2808484547270407e+00 1.7315215517433535e+00 1 0 0 0 0 P 247 2214 6.0455339898790339e-01 1.5588847882426693e+00 1.0728983080190957e+00 2.3388756494257614e+00 2 0 0 -108 0 P 248 111 2.9179655513536563e-02 5.9823903526451749e-01 -3.6138744127912392e-01 7.1243377146537734e-01 2 0 0 -109 0 P 249 223 1.2145386026632192e+00 2.1048774292157315e+00 1.3725716012255009e+00 2.8959883652118075e+00 2 0 0 -110 0 P 250 -323 -1.3711328200405654e-01 6.7130370616046298e-01 4.6060985832616053e-01 1.1961464978847105e+00 2 0 0 -111 0 P 251 323 3.1771789416814433e-01 2.6387353476027937e+00 9.5838479396598164e-01 2.9906306525256947e+00 2 0 0 -112 0 P 252 111 -7.3643513080090106e-01 7.4757308201204187e-01 9.7768085461269083e-01 1.4405837944052142e+00 2 0 0 -113 0 P 253 -2212 -5.4819162965982160e-01 1.2687962779024808e+00 5.3729913070941659e+00 5.6266992310463646e+00 1 0 0 0 0 P 254 2112 -7.8989578392726101e-01 2.0041553147643452e+00 7.6609765451792500e+00 8.0133593009330877e+00 1 0 0 0 0 P 255 213 1.9852265167723052e-02 7.2243092199878334e-01 3.7137040197553013e+00 3.8360479016489233e+00 2 0 0 -114 0 P 256 113 -6.5038419558314542e-01 1.6331384341997779e+00 8.0981126078556240e+00 8.3371490083419051e+00 2 0 0 -115 0 P 257 -211 2.0952301966083978e-01 5.6185519693507335e-01 3.2564220260147434e+00 3.3141130569889605e+00 1 0 0 0 0 P 258 111 -7.9471605748990737e-01 1.8219886489093593e+00 1.4938053087263649e+01 1.5070330649560875e+01 2 0 0 -116 0 P 259 213 -1.4785935916277890e-01 1.0823162024683843e+00 1.0100792119540120e+01 1.0184074173031185e+01 2 0 0 -117 0 P 260 -211 -3.3016507635965109e-01 8.1980070489155632e-01 9.6973072404626048e+00 9.7384973006217308e+00 1 0 0 0 0 P 261 213 -6.8287060587783655e-01 2.8216517660287885e+00 3.3295433715242297e+01 3.3429240276910214e+01 2 0 0 -118 0 P 262 -211 -5.0133409960976427e-01 5.0819350515765838e-01 7.7112523494019989e+00 7.7454818506774519e+00 1 0 0 0 0 P 263 213 -6.1534284389602178e-01 1.4014602304025630e+00 2.5048861603694608e+01 2.5105627499487035e+01 2 0 0 -119 0 P 264 -213 -8.7850171255637388e-01 3.1659976167696975e+00 4.3216065971977635e+01 4.3344910460908793e+01 2 0 0 -120 0 P 265 111 -2.7703148198687601e-02 -2.1313112002194740e-01 5.7840357377160068e+00 5.7896011394842981e+00 2 0 0 -121 0 P 266 211 -4.0867371432589983e-01 1.2152506516609649e+00 1.3196245909077160e+01 1.3259118908467448e+01 1 0 0 0 0 P 267 223 -1.3340594868137647e+00 1.1046902094200263e-01 2.2132289576565547e+01 2.2186509355341400e+01 2 0 0 -122 0 P 268 -321 -1.1348307922960887e+00 8.9846755274809154e-01 3.8757593401763934e+01 3.8787752862558818e+01 1 0 0 0 0 P 269 333 -1.9058686269840910e+00 5.2705167322184487e-01 3.4693954709169461e+01 3.4765256468211511e+01 2 0 0 -123 0 P 270 311 -1.7244824127432363e+00 -3.9212022161552618e-01 4.6946279297054723e+01 4.6982213795499561e+01 2 0 0 -124 0 P 271 211 -1.0410453271368658e+00 -1.3096092067284957e+00 2.0718783678019197e+01 2.0786686328728688e+01 1 0 0 0 0 P 272 223 -4.8107430045210509e-01 -9.9625936732274878e-01 3.1603459876252415e+01 3.1632436713138716e+01 2 0 0 -125 0 P 273 -2214 -6.7223836845056484e-01 -5.2884270012629941e-01 7.5598216556348532e+01 7.5614086054776507e+01 2 0 0 -126 0 P 274 2112 -3.3912481482832363e-01 -1.1060746633544731e+00 2.8434374428021954e+01 2.8473405972921398e+01 1 0 0 0 0 P 275 -2112 1.1911753378849299e+00 -3.9285491775581260e-01 6.6583483751579521e+01 6.6601924401279462e+01 1 0 0 0 0 P 276 111 6.5531120148361169e-02 4.7575418538027027e-02 4.8819191907438736e+01 4.8819445673254918e+01 2 0 0 -127 0 P 277 2112 3.2470414334847805e-02 -4.5395177680516458e-01 5.6744924733685551e+01 5.6754527584678300e+01 1 0 0 0 0 P 278 -2114 3.5147732051311236e+00 -1.0653591794292385e+00 3.0076979503181508e+02 3.0079515762351491e+02 2 0 0 -128 0 P 279 223 4.2188245471656338e-01 -4.6036605180864476e-01 6.7195590642386293e+01 6.7203143597201418e+01 2 0 0 -129 0 P 280 2214 2.4826507607967483e+00 -1.9868507806297022e+00 3.5970341976899709e+02 3.5971957295357805e+02 2 0 0 -130 0 P 281 223 9.6639111799113309e-01 -6.5202840325088651e-01 2.6197499296865038e+02 2.6197874629196588e+02 2 0 0 -131 0 P 282 -213 1.4517766990878931e+00 -1.1027653158701467e+00 3.5793226392700927e+02 3.5793785636203410e+02 2 0 0 -132 0 P 283 113 2.0559781684965261e-01 -4.6267809829803608e-01 1.8459103349964764e+02 1.8459252627399187e+02 2 0 0 -133 0 P 284 -311 3.1865086807574067e-01 -5.5487539481077219e-01 2.4466956603456691e+02 2.4467090886341941e+02 2 0 0 -134 0 P 285 313 1.8125039797322215e+00 -3.2396099942357115e-01 8.0754843847266329e+02 8.0755104971624587e+02 2 0 0 -135 0 P 286 -313 7.6628161476843215e-01 -9.0264530739853466e-01 3.7716122032030961e+02 3.7716391125996518e+02 2 0 0 -136 0 P 287 311 1.6380306417008008e+00 -1.4172523212967988e-01 3.2704278346785134e+02 3.2704729493492738e+02 2 0 0 -137 0 P 288 213 7.7795553432290854e-01 1.1218956468666517e-01 4.4583357082830787e+02 4.4583474944782984e+02 2 0 0 -138 0 P 289 -211 7.1338260907551931e-01 7.4376210896650718e-01 1.6913516046839726e+02 1.6913835781181351e+02 1 0 0 0 0 P 290 211 1.0008309002088114e+00 1.5159740827199570e+00 3.4586099009633818e+02 3.4586578869572304e+02 1 0 0 0 0 P 291 -211 -1.4291449730596018e-01 -2.7710443699978121e-01 2.3482432879045728e+01 2.3484917396625711e+01 1 0 0 0 0 P 292 111 -2.7148170708573210e-01 5.5866299346449155e-01 7.9047475327229890e+01 7.9050030878342909e+01 2 0 0 -139 0 P 293 213 -1.5251228600398872e+00 -1.3537775464818530e-01 2.9140496124428807e+02 2.9141024059407954e+02 2 0 0 -140 0 P 294 -213 -4.9982807433505505e-01 -3.1234274394603839e-01 1.3919081262877782e+02 1.3919486234990666e+02 2 0 0 -141 0 P 295 -313 -6.7565587302759100e-01 -3.1075479641138409e-01 2.1036602600455680e+02 2.1036942080325039e+02 2 0 0 -142 0 P 296 311 -4.9871228495176489e-01 -7.5174835164291953e-01 1.2689625628638298e+02 1.2690043882688370e+02 2 0 0 -143 0 P 297 111 -7.6555690783014108e-01 1.3412096124136335e-02 5.0867788113490533e+01 5.0873729413350638e+01 2 0 0 -144 0 P 298 -1114 -2.3989338165417701e-01 1.5971260638358453e-01 1.1920509234076086e+01 1.1999004823300890e+01 2 0 0 -145 0 P 299 -211 2.6427123975556938e-01 1.4125731954195242e-01 1.1559626919648089e+00 1.2022988183478560e+00 1 0 0 0 0 P 300 2114 2.7412898036199668e-01 3.1220103074346817e-01 1.6376978277139848e+01 1.6422568265488334e+01 2 0 0 -146 0 P 301 -313 4.7863366193791601e-01 1.7151733967799046e-01 1.1471722923102272e+00 1.4614470845821850e+00 2 0 0 -147 0 P 302 311 3.5449487156875237e-01 3.4868286711363355e-01 1.3485744103664414e+00 1.5210439589250291e+00 2 0 0 -148 0 P 303 113 6.4481878354490141e-01 4.1487289544268102e-01 1.0275332608992802e+00 1.3870878038553298e+00 2 0 0 -149 0 P 304 221 6.5807891907336291e-01 1.2163197878146004e+00 3.4758356092690224e+00 3.7806925787639329e+00 2 0 0 -150 0 P 305 223 4.3589299051890427e-02 -1.9698664696504845e-01 2.8796082005999248e+00 2.9931864459371456e+00 2 0 0 -151 0 P 306 113 1.1385315347037392e+00 7.3545871769851634e-01 3.8713136770423904e+00 4.1613962876104358e+00 2 0 0 -152 0 P 307 211 1.7128174553781481e-01 -3.4337879065824878e-01 2.0298958803554323e+00 2.0705563262592879e+00 1 0 0 0 0 P 308 -2212 3.2329186676553112e-01 3.4400171074514890e-01 3.5580189662426235e+01 3.5595689371260043e+01 1 0 0 0 0 P 309 -211 -1.6469931596059559e-01 -7.0929480570152936e-01 1.9400706078899834e+01 1.9414868043096096e+01 1 0 0 0 0 P 310 2224 6.2973464850393379e-01 3.6713142294376311e-01 1.0047112818768339e+02 1.0048173019806920e+02 2 0 0 -153 0 V -15 0 0 0 0 0 2 1 0 P 111 2 1.5697925032022784e+00 1.3042181395192785e+00 3.1869951533928838e+00 3.7844645019224230e+00 2 0 0 -15 0 P 112 -2 -1.5697925032022784e+00 -1.3042181395192785e+00 2.9811219176452064e+00 3.6127996548972705e+00 2 0 0 -15 0 P 311 92 0 0 6.1681170710380897e+00 7.3972641568196931e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 4 0 P 312 223 8.0560257221793297e-01 4.4431650838945014e-01 1.8382278590945076e+00 2.1957906195591539e+00 2 0 0 -154 0 P 313 111 -1.7611323127243686e-01 5.6926970695682888e-01 1.1356315308009262e+00 1.2895590113047124e+00 2 0 0 -155 0 P 314 223 -4.9288244654333319e-01 -1.3724991139995704e+00 3.0703481326263287e+00 3.4864111898567653e+00 2 0 0 -156 0 P 315 111 -1.3660689440216289e-01 3.5891289865329146e-01 1.2390954851632832e-01 4.2550333609906266e-01 2 0 0 -157 0 V -17 0 0 0 0 0 0 2 0 P 316 22 -1.3858897399363583e+00 -6.1695563740168335e-01 -8.8468470018067258e+00 8.9759693907209392e+00 1 0 0 0 0 P 317 111 -1.3255103892391700e+00 -5.3120418890594712e-02 -1.1428046129766084e+01 1.1505575062348933e+01 2 0 0 -158 0 V -18 0 0 0 0 0 0 2 0 P 318 -211 -2.8370787412352783e-01 -4.0198019506998689e-01 -3.4386896839253328e-01 6.1628231143814383e-01 1 0 0 0 0 P 319 211 -4.8277144893439045e-01 3.7866161533052733e-01 -1.3346325953702347e+00 1.4755259538061753e+00 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 320 -211 3.0057518624306956e-01 -1.8175003365912976e-01 -5.8078576321517861e-02 3.8240217474235827e-01 1 0 0 0 0 P 321 111 6.6182273715659634e-01 4.3963218590402192e-01 -4.1708082162497334e-01 9.0744796350400203e-01 2 0 0 -159 0 V -20 0 0 0 0 0 0 2 0 P 322 211 1.1096829509701452e-01 2.6271945432621482e-02 -2.5983888011742501e-01 3.1622809197512847e-01 1 0 0 0 0 P 323 111 -5.9134894661334680e-01 -2.0850409535601852e-01 -4.3046809000173610e-02 6.4283758649136558e-01 2 0 0 -160 0 V -21 0 0 0 0 0 0 2 0 P 324 -2212 -1.1664606878750057e-01 7.4993935690093594e-01 -2.3947075735743955e+00 2.6816021890331041e+00 1 0 0 0 0 P 325 111 3.0592316051457923e-02 -1.8019944305505387e-01 -3.1788181213455147e-01 3.9073798889369610e-01 2 0 0 -161 0 V -22 0 -8.2657939431601607e-06 -1.1029975668380898e-05 -1.4972788037824163e-04 1.5045159242856225e-04 0 2 0 P 326 22 -1.0076915203629748e-01 -6.3237918121332379e-02 -1.7725950820654059e+00 1.7765828945627329e+00 1 0 0 0 0 P 327 22 -1.1292505720760450e-01 -2.2191822593964527e-01 -2.0982951456870245e+00 2.1130173416144205e+00 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 328 2212 3.4483383572031939e-01 -1.8167367511399590e-01 -6.7783659292374798e+00 6.8540871720481125e+00 1 0 0 0 0 P 329 211 1.2589034898368945e-01 5.8595652741644903e-02 -7.5123279063171877e-01 7.7660306534791268e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 3 0 P 330 111 -1.1272739739865062e-01 -2.1685727702231542e-02 -1.1538719700078723e+00 1.1673979015229112e+00 2 0 0 -162 0 P 331 111 -4.4945571991878375e-02 5.7204111168850441e-03 -8.7131455113777889e-01 8.8287115422888995e-01 2 0 0 -163 0 P 332 111 -5.4498277832502044e-02 -3.2786156414771317e-01 -1.9480915343593619e+00 1.9808441367696517e+00 2 0 0 -164 0 V -25 0 0 0 0 0 0 2 0 P 333 -211 3.0667388398723527e-01 2.5721173335345737e-01 -1.0649560848420171e+01 1.0657993844809550e+01 1 0 0 0 0 P 334 111 -1.3158507814775555e-01 -1.4892384178510540e-01 -2.4014567294598937e+01 2.4015768879856086e+01 2 0 0 -165 0 V -26 0 0 0 0 0 0 1 0 P 335 310 -1.9728899388726165e-01 -1.1236567577654022e-01 -5.1551286531483889e+01 5.1554188651090747e+01 2 0 0 -166 0 V -27 0 0 0 0 0 0 2 0 P 336 3122 2.7660489680953065e-01 -2.1473626319240557e-02 -1.6845998947323770e+02 1.6846391235683481e+02 2 0 0 -167 0 P 337 111 6.0910401983388193e-02 1.9687157247979328e-02 -7.9087783106038557e+01 7.9087924197625952e+01 2 0 0 -168 0 V -28 0 0 0 0 0 0 2 0 P 338 211 1.2394221263686946e+00 -1.1057245195541077e-01 -5.3735126173745482e+02 5.3735272062593492e+02 1 0 0 0 0 P 339 111 4.6323149036248856e-01 4.2243319152170261e-01 -2.3440744892689563e+02 2.3440832614314394e+02 2 0 0 -169 0 V -29 0 0 0 0 0 0 1 0 P 340 130 1.2889206342757902e+00 -8.4778519723955947e-01 -3.0032646868717376e+02 3.0033084344715411e+02 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 341 -211 1.0987439104186890e-01 -3.7539177412139657e-01 -8.5628426883232791e+01 8.5629433967812318e+01 1 0 0 0 0 P 342 111 1.2238541756272946e-01 2.7158870189001771e-01 -1.1004501642812407e+02 1.1004550240186975e+02 2 0 0 -170 0 V -31 0 0 0 0 0 0 3 0 P 343 111 -5.6450038184394513e-01 1.3419523498441369e-01 -3.1501575451710994e+02 3.1501631780373958e+02 2 0 0 -171 0 P 344 111 -4.8524219573545196e-01 1.2655621118111576e-01 -2.7019843873359349e+02 2.7019893780349133e+02 2 0 0 -172 0 P 345 111 -5.2962856437421701e-01 4.2089617309906541e-01 -3.4918831283228292e+02 3.4918899423988353e+02 2 0 0 -173 0 V -32 0 0 0 0 0 0 2 0 P 346 321 4.1727885684839670e-02 -1.4226834987035189e-01 -8.8084962593431683e+01 8.8086470343328415e+01 1 0 0 0 0 P 347 -211 -1.2818613612523713e-01 1.1554014266657653e-01 -2.8205545808164899e+01 2.8206419044810538e+01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 348 -211 6.7577327523398345e-02 2.5911422159614084e-01 -7.7292308759880903e+00 7.7351274452497680e+00 1 0 0 0 0 P 349 111 8.5292514343844827e-02 -7.6202024714302402e-02 -3.9716115713614647e-01 4.3478517305834724e-01 2 0 0 -174 0 V -34 0 -3.9478161081191336e-06 1.1867021595109293e-05 -1.5686192965545182e-04 1.5801442444919107e-04 0 2 0 P 350 22 -1.4513120710267547e-02 -3.1244768956859823e-02 -2.8109925134954922e-01 2.8320249887526655e-01 1 0 0 0 0 P 351 22 -2.2570773983355344e-02 1.4271788905860841e-01 -1.1923866257706714e+00 1.2011093626361919e+00 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 352 -211 1.3818021414552201e-01 1.5058624509318608e-01 -3.1878533997976217e+00 3.1974457106093017e+00 1 0 0 0 0 P 353 211 -1.4661515044185211e-01 -5.4453344702047135e-01 -1.1084493784116514e+00 1.2514601418600033e+00 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 354 -211 -6.9769270534550190e-02 4.8937007230822858e-02 -1.0508692659523773e+00 1.0635170806390093e+00 1 0 0 0 0 P 355 111 -1.0240212860704140e-01 1.8796507977233179e-01 9.0803104530430695e-02 2.6885288049309869e-01 2 0 0 -175 0 V -37 0 0 0 0 0 0 2 0 P 356 211 -4.5615612194866223e-01 2.1693964408822330e-01 -9.4440512880586969e-01 1.0800565026808546e+00 1 0 0 0 0 P 357 -211 1.9742200415720274e-01 -2.8910004915567767e-02 -7.3581664292439153e-01 7.7505945127724640e-01 1 0 0 0 0 V -38 0 5.3873773781241210e-06 -2.1011862597246919e-06 -3.4607807577354655e-05 3.5150308589027264e-05 0 2 0 P 358 22 8.0918005219743308e-02 2.0580493496324959e-02 -3.5182292800051013e-01 3.6159459750962392e-01 1 0 0 0 0 P 359 22 2.6555738518087757e-01 -1.5571291109875124e-01 -1.8738896589741725e+00 1.8990075538336584e+00 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 360 -211 -3.8467938945995130e-02 2.7382172263684024e-01 -7.5535198250651936e-01 8.1639115654880079e-01 1 0 0 0 0 P 361 211 -7.3428509972015249e-02 -4.2023595673615427e-01 -5.1055200843965820e-01 6.7980375376459201e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 362 22 -3.0690761774016045e-01 -1.0006581316829610e-02 -1.1499136565925463e+00 1.1902074756590257e+00 1 0 0 0 0 P 363 22 -2.3741781035604714e-01 5.8790147178092189e-01 -1.4394480713715549e+00 1.5728973607237446e+00 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 364 211 3.9091542002179869e-01 -3.7669034127406475e-01 -1.8321859386204320e-01 5.8971121479650956e-01 1 0 0 0 0 P 365 111 3.3146521617938240e-01 2.8364147091344116e-01 -1.6382773942861631e-01 4.8516059420059643e-01 2 0 0 -176 0 V -42 0 0 0 0 0 0 2 0 P 366 -2212 1.1231777486174843e+00 6.9527289352941612e-02 -1.6218820715164806e+00 2.1856839537684305e+00 1 0 0 0 0 P 367 111 4.6865846103171582e-01 -2.3182367458103703e-01 -5.8897200355344670e-01 7.9905606221505643e-01 2 0 0 -177 0 V -43 0 0 0 0 0 0 2 0 P 368 2212 1.3809634102076220e+00 2.9766770780858043e-01 -1.6075995234484981e+00 2.3367483444513484e+00 1 0 0 0 0 P 369 211 8.6965576289573054e-01 2.3470542696201149e-01 -1.0511119074498523e+00 1.3912957307007170e+00 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 370 -2212 3.8786134267980246e+00 -6.8761848648807899e-01 -2.1491944601414890e+00 4.5843046057064027e+00 1 0 0 0 0 P 371 -211 5.8800816594922833e-01 -6.0007810021686495e-02 -6.0901851979740274e-01 8.6008016070758975e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 372 3122 1.7179936906407915e+00 -5.0963730908492588e-01 -2.6293835773326570e+00 3.3718885460583619e+00 2 0 0 -178 0 P 373 211 4.5996105832507267e-01 1.1512620189161654e-01 -5.7266460995815083e-01 7.5646728808060903e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 3 0 P 374 111 3.4387293631885368e-01 -3.4481029699169208e-01 -2.4331406418526660e-01 5.6086011756444343e-01 2 0 0 -179 0 P 375 111 6.8451154829317451e-01 -2.6680607628189823e-01 -1.6687922004569211e-01 7.6538213760886764e-01 2 0 0 -180 0 P 376 111 2.3162859168658281e-01 -1.9101361538284034e-01 -8.2094469374955542e-02 3.3925964695243210e-01 2 0 0 -181 0 V -47 0 0 0 0 0 0 2 0 P 377 -211 6.5050218565328621e-01 -1.4976841315021852e+00 -2.4955986216413391e+00 2.9855825422405102e+00 1 0 0 0 0 P 378 111 2.0120909706811393e-01 8.3982042270434626e-02 -5.9214936998739021e-01 6.4528951714973792e-01 2 0 0 -182 0 V -48 0 1.5648180326476800e-04 -3.3665528014124700e-04 -1.0957484317686737e-03 1.1625636870542086e-03 0 2 0 P 379 22 5.6782984415220505e-02 -2.9709269020648545e-02 -2.6544449343225140e-01 2.7307091950324014e-01 1 0 0 0 0 P 380 22 1.2799737934407326e-01 -3.6782759359290101e-01 -1.0284618240218377e+00 1.0997336910350710e+00 1 0 0 0 0 V -49 0 -1.2364780766866242e-04 5.3407076403674971e-05 -9.8081070586723097e-05 1.7623196453632985e-04 0 2 0 P 381 22 -2.5265933888883385e-01 7.6429847525327707e-02 -1.2560892339207444e-01 2.9232835092786230e-01 1 0 0 0 0 P 382 22 -3.8020753419478227e-02 4.9123319907594339e-02 -1.0496705841785159e-01 1.2197033082772743e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 383 211 1.0883610843061388e-01 -5.3182156966211747e-01 -1.4237656165956583e+00 1.5301201901668424e+00 1 0 0 0 0 P 384 -211 2.5390305861119511e-01 -4.1438051438946977e-01 -1.9306516922219012e+00 1.9957639428191634e+00 1 0 0 0 0 P 385 111 1.2300235901345337e-01 -2.8430502364333826e-01 -3.5822882943552353e-01 4.9244941002143461e-01 2 0 0 -183 0 V -51 0 0 0 0 0 0 2 0 P 386 211 -3.0990351250662518e-01 -5.8527006483287680e-01 -1.2929042673239235e+00 1.4593363098401393e+00 1 0 0 0 0 P 387 111 -4.0097233006836451e-02 -1.2052373021382830e-01 -2.2783802330768186e+00 2.2859067882384529e+00 2 0 0 -184 0 V -52 0 0 0 0 0 0 3 0 P 388 -211 -7.3303400412597336e-02 1.7693224704408117e-01 -2.0285456711131569e+00 2.0423407485647553e+00 1 0 0 0 0 P 389 211 8.8459627598427876e-02 -3.6275396519128623e-02 -4.1394036974280268e-01 4.4717717373573612e-01 1 0 0 0 0 P 390 111 -1.2093249811064113e-01 -2.6208715597099563e-01 -1.4268130304156221e+00 1.4619607965291190e+00 2 0 0 -185 0 V -53 0 0 0 0 0 0 2 0 P 391 211 4.6632805055535481e-01 -9.2799721716161498e-01 -9.3302626555544119e+00 9.3889254812426604e+00 1 0 0 0 0 P 392 111 3.9948439729136265e-01 -3.2445401427731738e-02 -1.4918261523962113e+00 1.5506145095175441e+00 2 0 0 -186 0 V -54 0 0 0 0 0 0 2 0 P 393 -211 1.1111296906329400e+00 -1.7375158775781228e+00 -2.1612402052147548e+01 2.1711033436085295e+01 1 0 0 0 0 P 394 111 1.8749745187539753e-02 -1.5954367530735085e-02 -4.5372027556277885e+00 4.5392768742239440e+00 2 0 0 -187 0 V -55 0 0 0 0 0 0 2 0 P 395 -2212 5.3822739200970038e-01 -2.4478036381451705e-02 -1.5752792350679760e+01 1.5789905171859312e+01 1 0 0 0 0 P 396 211 1.2208537840642637e-01 -8.1451067402123017e-02 -2.3015738769487699e+00 2.3104677474387252e+00 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 397 -211 3.0349049526255789e-01 6.6269155706217964e-01 -1.2197393710616888e+01 1.2219949251008067e+01 1 0 0 0 0 P 398 111 1.5434560016696457e+00 1.3573218923349111e+00 -2.0747068663480828e+01 2.0849068489409539e+01 2 0 0 -188 0 V -57 0 0 0 0 0 0 3 0 P 399 211 4.7184996658599110e-01 1.6852789823429487e-01 -1.0629550966137284e+01 1.0642268440988534e+01 1 0 0 0 0 P 400 -211 4.2426821849970223e-02 5.9240190977691239e-02 -5.5954916484707722e+00 5.5977063167377334e+00 1 0 0 0 0 P 401 111 1.3429060214503628e+00 3.5261715354276468e-01 -3.9147578113319028e+01 3.9172424320920392e+01 2 0 0 -189 0 V -58 0 0 0 0 0 0 2 0 P 402 311 2.4818659030214052e+00 8.4359686098204834e-01 -9.5341267997563477e+01 9.5378594940565989e+01 2 0 0 -190 0 P 403 111 1.2406858288050986e+00 1.8019581052976649e-01 -3.3435796861882068e+01 3.3459565198092058e+01 2 0 0 -191 0 V -59 0 7.4992897904602168e-05 1.9648448612477577e-04 -1.2128367471398093e-02 1.2130260765010534e-02 0 2 0 P 404 22 1.7706545332887860e-01 5.7444706928288136e-01 -3.2673419181503647e+01 3.2678948309583333e+01 1 0 0 0 0 P 405 22 6.8542098672264712e-02 6.9054848788046810e-02 -7.0479241410295419e+00 7.0485956962460605e+00 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 406 -2212 1.8376602114136100e+00 3.9682100749992283e-01 -1.0259967841209421e+02 1.0262119090530307e+02 1 0 0 0 0 P 407 211 9.7065352570779351e-01 1.1527405065464012e-01 -5.5749676153705813e+01 5.5758419340954219e+01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 408 2112 8.2552318034068362e-01 3.5883941203932285e-01 -8.8766928098994939e+01 8.8776464055299869e+01 1 0 0 0 0 P 409 22 4.0555189323167012e-01 -6.9849212859855417e-02 -5.1812197716269608e+01 5.1813831970241800e+01 1 0 0 0 0 V -62 0 -5.6406138577693503e-08 -1.4359594604280415e-07 -6.6737443838301642e-06 6.6757123854494287e-06 0 2 0 P 410 22 -1.6286205514669624e-02 -1.6789232572256113e-01 -9.1450581785949616e+00 9.1466136992557594e+00 1 0 0 0 0 P 411 22 -1.3690031875946040e-01 -2.2208231939260112e-01 -8.9793469275051496e+00 8.9831360614408666e+00 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 412 211 4.3194925285785707e-01 7.5349489191456864e-01 -4.8692948880384456e+01 4.8700894089963271e+01 1 0 0 0 0 P 413 111 5.9954065601029338e-02 3.4838817057606380e-01 -4.1027314776207604e+01 4.1029059776624202e+01 2 0 0 -192 0 V -64 0 0 0 0 0 0 2 0 P 414 -311 1.0704265611564484e-01 2.6747463614617123e-01 -1.7807434534755959e+01 1.7816716895930323e+01 2 0 0 -193 0 P 415 -211 1.6337940196206174e-01 -2.4844743991549134e-01 -1.6309651611601378e+01 1.6312959095029250e+01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 416 311 -6.8339964509218487e-01 5.1552886739707993e-01 -3.6069702285399487e+01 3.6083291195154089e+01 2 0 0 -194 0 P 417 211 -2.5469855753611675e-01 3.7251941389286825e-01 -8.2056099587524702e+00 8.2191944038948108e+00 1 0 0 0 0 V -66 0 0 0 0 0 0 3 0 P 418 -211 -6.6667194912293004e-02 4.1053116542843782e-01 -1.0220462152198525e+01 1.0229873251516267e+01 1 0 0 0 0 P 419 211 -1.0042615290003744e-01 4.8957671136176335e-02 -4.3539891826947485e+00 4.3576580698435095e+00 1 0 0 0 0 P 420 221 -3.7868978732838460e-01 4.0345326449288504e-01 -1.6081774445100628e+01 1.6100600960748277e+01 2 0 0 -195 0 V -67 0 0 0 0 0 0 2 0 P 421 -211 -4.5491821851336928e-01 5.5740688299783758e-01 -1.4054038934068229e+01 1.4073135512882493e+01 1 0 0 0 0 P 422 111 -8.4754280940749993e-01 7.8123031203806603e-01 -5.5429198813326536e+01 5.5441346938020054e+01 2 0 0 -196 0 V -68 0 0 0 0 0 0 2 0 P 423 211 -5.0822699817146078e-01 2.1871436701034566e-01 -2.2084111237892312e+01 2.2091482060027314e+01 1 0 0 0 0 P 424 -211 -5.2301245068202862e-01 -2.2467052892663383e-01 -9.0614611543735624e+00 9.0803951955439501e+00 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 425 22 -7.3896130695332102e-02 -7.1029611115872179e-02 -9.8874829217766003e-01 9.9404679420601316e-01 1 0 0 0 0 P 426 22 -2.1131559472720594e+00 -8.1898809683607254e-01 -6.0812166447930665e+01 6.0854381581370717e+01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 427 211 -1.1400362126834707e+00 -7.5069527169178896e-01 -9.9368944819939813e+00 1.0031180273943466e+01 1 0 0 0 0 P 428 111 -3.1177855243714614e-01 2.7386879936813605e-02 -6.7074257108343609e+00 6.7160803430062019e+00 2 0 0 -197 0 V -71 0 0 0 0 0 0 2 0 P 429 -211 -2.9459374159754592e+00 -2.8038684397489866e+00 -1.4573643082860357e+01 1.5131119521627213e+01 1 0 0 0 0 P 430 211 -1.8627409764340494e-01 -4.5007239486827122e-01 -1.5916115607401125e+00 1.6703204319102676e+00 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 431 211 -4.0294144754513739e-01 -3.9253842866592048e-01 -8.6321440131939475e-01 1.0397437740493962e+00 1 0 0 0 0 P 432 -211 -1.7926448583245587e+00 -1.6643272026613549e+00 -7.1173738089634293e+00 7.5272870509244330e+00 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 433 211 -4.1785020003949669e-01 -5.3540198718837383e-02 -7.2956857574681525e-02 4.4974195992710347e-01 1 0 0 0 0 P 434 111 -3.1442536882507155e-01 -3.3012043738631891e-01 -1.1887260467866061e+00 1.2802859174613417e+00 2 0 0 -198 0 V -74 0 0 0 0 0 0 2 0 P 435 -211 -1.3128178686495777e+00 2.2367801298747514e-01 -1.4067767805533196e+00 1.9421697415374404e+00 1 0 0 0 0 P 436 111 -1.0613888599755268e+00 -4.9885801022642312e-01 -1.0293168713680656e+00 1.5662434193094499e+00 2 0 0 -199 0 V -75 0 0 0 0 0 0 3 0 P 437 211 -8.7240680410128857e-01 2.7980087512027552e-01 -1.6866912441851214e+00 1.9245231356549208e+00 1 0 0 0 0 P 438 -211 -3.4126239295049182e-01 -3.1457535020789129e-02 -4.4577142341818865e-01 5.7934578982517693e-01 1 0 0 0 0 P 439 111 -1.6130600317508390e+00 -1.1675331621059735e-01 -2.5161329477914274e+00 2.9941173347482173e+00 2 0 0 -200 0 V -76 0 -4.5008315126440140e-05 -2.5749264162755577e-05 -3.3344498929393918e-05 6.1837517593386551e-05 0 2 0 P 440 22 -4.2139926226963886e-01 -2.8391545516944366e-01 -2.6468169110857215e-01 5.7292383571776961e-01 1 0 0 0 0 P 441 22 -8.3854485033298931e-01 -4.3689876981484815e-01 -6.6875038684749477e-01 1.1581299931330580e+00 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 442 -321 -2.1683154978543420e+00 -2.1854980073718605e-01 -1.7539377085644450e+00 2.8406503760867654e+00 1 0 0 0 0 P 443 211 -3.8230805936575214e+00 -1.6168359434370502e-02 -2.9890303663277602e+00 4.8548933002875572e+00 1 0 0 0 0 V -78 0 -1.0156831312538596e+02 5.9208129325376873e+01 -1.1368775627686763e+02 1.6651458075296497e+02 0 2 0 P 444 -2212 -3.1453660058797914e+00 1.8275481925700063e+00 -3.3783256208662253e+00 5.0523949074286794e+00 1 0 0 0 0 P 445 211 -4.7355959414701926e-01 2.8206462221395789e-01 -6.7242129950507379e-01 8.8059600796363169e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 446 -211 -3.9033321084511235e-01 8.5093966710394889e-02 1.3328079525359385e-01 4.4367167358599213e-01 1 0 0 0 0 P 447 211 1.0967922073019121e-01 6.7321805975053869e-02 5.7858153818527180e-01 6.0893196520511217e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 448 211 -8.7867070654726953e-01 6.3824938016959443e-01 -3.9838939392534201e-01 1.1651688186367462e+00 1 0 0 0 0 P 449 111 -4.2723134621533970e-01 5.8028432223031268e-01 3.1189382134184968e-01 7.9671442437455997e-01 2 0 0 -201 0 V -81 0 6.7337968892684204e-06 -2.2657847922919216e-05 1.3135314175180332e-04 1.4220642736368811e-04 0 2 0 P 450 22 3.0326177076402516e-02 1.7237938250692513e-02 2.5727513013004782e-01 2.5962918964291570e-01 1 0 0 0 0 P 451 22 -1.1812441250188842e-02 -7.9532868990877678e-02 1.0386397256722496e-01 1.3134967002491685e-01 1 0 0 0 0 V -82 0 -7.8395047179927375e-04 7.4536259222731185e-04 6.1761963977844596e-04 1.2485256020801107e-03 0 2 0 P 452 22 -1.0836826292501700e+00 1.0610777780214997e+00 8.2033353361722416e-01 1.7242973056658548e+00 1 0 0 0 0 P 453 22 -1.6179769483943199e-01 1.2309708547578650e-01 1.6089313412093878e-01 2.5926431901680075e-01 1 0 0 0 0 V -83 0 -1.5916081712855892e-04 -4.5248206316860451e-05 2.0122353856729433e-04 2.6326940261840509e-04 0 2 0 P 454 22 -4.3376247428462439e-01 -7.9519933012538596e-02 5.8960730614864287e-01 7.3628125013998380e-01 1 0 0 0 0 P 455 22 -1.3231921072993363e-01 -8.1412772271610576e-02 1.2607738202909022e-01 2.0007978227809739e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 456 -211 -8.5921933395184030e-02 3.7985737486839422e-01 2.3951940754401280e-01 4.7804135320127811e-01 1 0 0 0 0 P 457 111 -7.8855136481968013e-01 -7.0157220505423598e-02 3.5085569288208857e-01 8.7638724783955946e-01 2 0 0 -202 0 V -85 0 0 0 0 0 0 2 0 P 458 -211 -1.7640869092334013e+00 6.8071105835006596e-01 2.6089862839929228e+00 3.2251603655092751e+00 1 0 0 0 0 P 459 211 -4.5240790879975595e-01 5.3782880892622409e-01 1.3382106485758516e+00 1.5179658324604577e+00 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 460 -211 -1.9958846715506473e+00 7.6421271078239772e-01 5.3633389088956704e+00 5.7751589351312589e+00 1 0 0 0 0 P 461 111 -9.1225061241821739e-02 -8.2462628587019707e-02 4.6524150246478096e-01 4.9979130937596511e-01 2 0 0 -203 0 V -87 0 -2.2240164947657685e-04 -1.1799521947692140e-04 2.9965771474544924e-04 3.9857012956888898e-04 0 2 0 P 462 22 -2.2134847241181499e-01 -4.8625350781584531e-02 2.1618899168832184e-01 3.1320480696325453e-01 1 0 0 0 0 P 463 22 -1.7704143829004015e-01 -1.6274045995448813e-01 3.2059034650239859e-01 4.0075715645329718e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 464 211 -5.2067470723979459e-01 1.3712531386391810e-01 2.2394641106176807e+00 2.3075061841967321e+00 1 0 0 0 0 P 465 -211 -2.0689974107924551e+00 1.0052191285389294e+00 5.2723788407148229e+00 5.7540137475647226e+00 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 466 211 -2.4774159582104280e-01 -1.7595711887443552e-01 1.8793905174320563e-01 3.8358529436447963e-01 1 0 0 0 0 P 467 111 -7.1109823631830649e-01 -2.6275556592240101e-01 2.4684643264539541e+00 2.5857758836554225e+00 2 0 0 -204 0 V -90 0 -3.8916699154968658e-04 -3.5095966058386915e-04 6.8119537241486674e-04 8.6433112160329045e-04 0 2 0 P 468 22 -2.9403046856309240e-01 -3.2108093022435247e-01 6.4688341859377496e-01 7.7974677777387202e-01 1 0 0 0 0 P 469 22 -2.7851937251819031e-01 -1.9525756265006211e-01 3.5530410164878351e-01 4.9187352163784798e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 470 -2112 -1.9946156841798374e-01 -2.8433147499558503e-01 6.4559205184739699e-01 1.1917257181320957e+00 1 0 0 0 0 P 471 -211 -9.3176056380494754e-02 1.2235788378053646e-01 4.2731798829171397e-01 4.7511438330527295e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 472 2212 1.4586148504328794e-01 -7.8159750038988129e-01 1.4312563799027713e+00 1.8870653521664611e+00 1 0 0 0 0 P 473 211 -7.0017337101697552e-02 1.0544128367217517e-01 4.3399283858274107e-01 4.7312774241039174e-01 1 0 0 0 0 V -93 0 6.0306782618782045e-05 -2.5906638520655314e-04 5.1224001323403612e-04 5.7724973113639400e-04 0 2 0 P 474 22 8.5561307282517640e-01 -3.8113265708089870e+00 7.5052944651097180e+00 8.4609531949863968e+00 1 0 0 0 0 P 475 22 8.3580265449984634e-02 -2.2326808987920368e-01 4.7212344936471218e-01 5.2889966172331027e-01 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 476 211 4.3264100274787132e-01 -7.1513541973083405e-01 2.6483553540175220e+00 2.7806227309481510e+00 1 0 0 0 0 P 477 -211 2.2664014393013029e-01 -1.0326492890729888e+00 1.9687475615646477e+00 2.2390125178592384e+00 1 0 0 0 0 P 478 111 1.1633625100300943e-01 -5.7479612574644490e-01 1.2943092115129222e+00 1.4273684334739087e+00 2 0 0 -205 0 V -95 0 0 0 0 0 0 2 0 P 479 -211 -3.2735921983195587e-01 -2.3273580178941069e+00 7.3748386053675858e+00 7.7415427172098648e+00 1 0 0 0 0 P 480 111 1.7091528712894219e-01 -1.2496904588336477e-01 4.6363026737108420e-01 5.2725887666871030e-01 2 0 0 -206 0 V -96 0 0 0 0 0 0 2 0 P 481 211 3.6435261291318571e-01 -6.4975306355905782e-01 2.7402179596041241e+00 2.8430979795248064e+00 1 0 0 0 0 P 482 -211 6.6923115873495004e-02 -6.4277773377209801e-01 6.1287657034013430e+00 6.1643240303021036e+00 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 483 211 -7.7490797336635470e-02 -3.2280590054982870e-02 4.0488357310085350e+00 4.0521102430409739e+00 1 0 0 0 0 P 484 111 5.6711660373886197e-01 -8.3306989914159113e-01 8.5469098056077968e+00 8.6071780232946722e+00 2 0 0 -207 0 V -98 0 0 0 0 0 0 3 0 P 485 111 3.3411419906854800e-01 -7.9524901726587338e-01 4.8024356039435325e+00 4.8811536165035863e+00 2 0 0 -208 0 P 486 111 -1.0192602434548843e-02 -3.7000362361794925e-01 1.7837106690739677e+00 1.8267046619536238e+00 2 0 0 -209 0 P 487 111 2.0504500995897540e-02 -3.0300070605469526e-01 1.6910707873690565e+00 1.7234180777523878e+00 2 0 0 -210 0 V -99 0 0 0 0 0 0 2 0 P 488 22 2.4945317918638116e-01 -3.9062863961164168e-01 6.5656021999546059e+00 6.5819411931997545e+00 1 0 0 0 0 P 489 113 8.4095376419380630e-01 -1.9071358697499179e+00 1.8371427587817482e+01 1.8502731128456443e+01 2 0 0 -211 0 V -100 0 0 0 0 0 0 2 0 P 490 -211 6.1956691808817499e-01 -1.7987668051922854e+00 1.3090748730421117e+01 1.3229006285181553e+01 1 0 0 0 0 P 491 211 3.2954213987580416e-01 -1.0793546645770138e-01 3.9099443487702739e+00 3.9277719743200428e+00 1 0 0 0 0 V -101 0 0 0 0 0 0 3 0 P 492 111 5.7069929638821681e-02 -4.6264463492203416e-02 7.7833308735768736e-01 7.9335954820431254e-01 2 0 0 -212 0 P 493 111 9.3231326916960150e-02 -1.4252221621218575e-01 9.8862038744325376e-01 1.0122225710293065e+00 2 0 0 -213 0 P 494 111 4.2420889018412233e-01 -5.5201114272469842e-01 4.1426907295914557e+00 4.2029484371862642e+00 2 0 0 -214 0 V -102 0 0 0 0 0 0 2 0 P 495 22 1.0332357895531194e-01 1.5600648694165692e-01 5.8033098953295537e-01 6.0975228031415452e-01 1 0 0 0 0 P 496 223 1.0019312012897219e+00 4.6961949797574526e-01 8.9449093133697062e+00 9.0473984281699025e+00 2 0 0 -215 0 V -103 0 0 0 0 0 0 2 0 P 497 22 2.4906633416729027e-02 4.4414155028907581e-02 7.8014262506757792e-01 7.8180270721098077e-01 1 0 0 0 0 P 498 113 1.4819834921594945e+00 -1.1151469696800505e-01 1.0059579045776870e+01 1.0204199856444282e+01 2 0 0 -216 0 V -104 0 0 0 0 0 0 2 0 P 499 311 5.2482512314272056e-01 -4.7832544214417169e-02 1.4903979172423241e+00 1.6573143162321544e+00 2 0 0 -217 0 P 500 211 -9.5218634052761569e-02 1.4687126631051489e-01 6.2734999709340966e-01 6.6609726083480403e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 501 211 3.3162306271459374e+00 4.6154153302513574e+00 1.3049238670355871e+01 1.4233817263965104e+01 1 0 0 0 0 P 502 111 8.2147654379221768e-01 9.7926282685445865e-01 2.1468702180198229e+00 2.5022091698098055e+00 2 0 0 -218 0 V -106 0 0 0 0 0 0 2 0 P 503 -311 3.2371750674381259e+00 2.3409283617548118e+00 5.0353659835270168e+00 6.4468468284171374e+00 2 0 0 -219 0 P 504 -211 1.4695197460491800e+00 9.9443439914987442e-01 2.8173192242257765e+00 3.3324398650738094e+00 1 0 0 0 0 V -107 0 7.1335599716129835e+01 7.8149200680703117e+01 1.0620151086386613e+02 1.5543981572590374e+02 0 2 0 P 505 -2212 1.7529045540197865e+00 1.6712774876539851e+00 2.3153304985395544e+00 3.4795040920524500e+00 1 0 0 0 0 P 506 111 3.1296588076061255e-01 5.9191401603333715e-01 7.6025255249999213e-01 1.0220143780200615e+00 2 0 0 -220 0 V -108 0 0 0 0 0 0 2 0 P 507 2212 4.5811093566341965e-01 1.1167198185399771e+00 1.0475247390430900e+00 1.8532640001634055e+00 1 0 0 0 0 P 508 111 1.4644246332448371e-01 4.4216496970269220e-01 2.5373568976005820e-02 4.8561164926235612e-01 2 0 0 -221 0 V -109 0 5.1375358377442843e-06 1.0532936147183876e-04 -6.3627924943147592e-05 1.2543513514834796e-04 0 2 0 P 509 22 2.1134015144162574e-03 4.8221597802877242e-01 -2.2742964399716972e-01 5.3316128788658856e-01 1 0 0 0 0 P 510 22 2.7066253999120306e-02 1.1602305723574509e-01 -1.3395779728195420e-01 1.7927248357878844e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 3 0 P 511 211 3.6583801979614422e-01 4.2025018090805177e-01 9.0517835425368065e-02 5.8148167186224220e-01 1 0 0 0 0 P 512 -211 4.1403113759370697e-01 1.1086732565207793e+00 7.5281162375798483e-01 1.4095330072001373e+00 1 0 0 0 0 P 513 111 4.3466944527336787e-01 5.7595399178690021e-01 5.2924214204214792e-01 9.0497368614942786e-01 2 0 0 -222 0 V -111 0 0 0 0 0 0 2 0 P 514 -321 -9.6072206080423980e-02 1.2759824993078764e-01 9.9159846550863948e-02 5.2819013369671164e-01 1 0 0 0 0 P 515 111 -4.1041075923632556e-02 5.4370545622967525e-01 3.6145001177529656e-01 6.6795636418799897e-01 2 0 0 -223 0 V -112 0 0 0 0 0 0 2 0 P 516 311 -8.9194348715380331e-02 9.8455421872459370e-01 2.1845309080941969e-01 1.1281399838829154e+00 2 0 0 -224 0 P 517 211 4.0691224288352468e-01 1.6541811288782000e+00 7.3993170315656198e-01 1.8624906686427793e+00 1 0 0 0 0 V -113 0 -8.0474930003756706e-05 8.1692044460432653e-05 1.0683737786300766e-04 1.5742171329228503e-04 0 2 0 P 518 22 -3.2819219707531860e-01 4.0751739144544413e-01 4.2685300543822929e-01 6.7526589637214263e-01 1 0 0 0 0 P 519 22 -4.0824293372558240e-01 3.4005569056659779e-01 5.5082784917446148e-01 7.6531789803307182e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 520 211 9.3663331501539882e-02 3.6133530383635998e-01 2.9557572318803529e+00 2.9825017385040176e+00 1 0 0 0 0 P 521 111 -7.3811066333816830e-02 3.6109561816242330e-01 7.5794678787494796e-01 8.5354616314490517e-01 2 0 0 -225 0 V -115 0 0 0 0 0 0 2 0 P 522 211 -7.3393913871523353e-01 1.2780461949311306e+00 7.2999658953237523e+00 7.4485603034080290e+00 1 0 0 0 0 P 523 -211 8.3554943132088041e-02 3.5509223926864719e-01 7.9814671253187175e-01 8.8858870493387598e-01 1 0 0 0 0 V -116 0 -2.5746289995494090e-05 5.9026677114693335e-05 4.8394573524476693e-04 4.8823111043846577e-04 0 2 0 P 524 22 -1.8669331800377653e-01 3.1692073717140146e-01 2.5560924029801839e+00 2.5824216389291537e+00 1 0 0 0 0 P 525 22 -6.0802273948613084e-01 1.5050679117379580e+00 1.2381960684283465e+01 1.2487909010631721e+01 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 526 211 -1.7073882013668817e-01 3.2742880280082814e-01 5.9426596079770304e+00 5.9557572454547678e+00 1 0 0 0 0 P 527 111 2.2879460973909277e-02 7.5488739966755614e-01 4.1581325115630889e+00 4.2283169275764161e+00 2 0 0 -226 0 V -118 0 0 0 0 0 0 2 0 P 528 211 -4.3731470763077790e-02 1.2604608629033636e+00 1.6518523186890892e+01 1.6567189323756708e+01 1 0 0 0 0 P 529 111 -6.3913913511475884e-01 1.5611909031254254e+00 1.6776910528351404e+01 1.6862050953153506e+01 2 0 0 -227 0 V -119 0 0 0 0 0 0 2 0 P 530 211 -5.9815189532824220e-01 1.2545484891445016e+00 2.3786846959190580e+01 2.3827825029707466e+01 1 0 0 0 0 P 531 111 -1.7190948567779557e-02 1.4691174125806133e-01 1.2620146445040268e+00 1.2778024697795667e+00 2 0 0 -228 0 V -120 0 0 0 0 0 0 2 0 P 532 -211 -5.9962999905078818e-01 2.7649368600696107e+00 3.6805036639652862e+01 3.6913881315936187e+01 1 0 0 0 0 P 533 111 -2.7887171350558565e-01 4.0106075670008701e-01 6.4110293323247722e+00 6.4310291449725998e+00 2 0 0 -229 0 V -121 0 -5.0157599184704946e-06 -3.8588196601982270e-05 1.0472215797340766e-03 1.0482292168054802e-03 0 2 0 P 534 22 2.4683491753739874e-02 -8.0731002211826206e-03 2.1774492248962579e-01 2.1928816881526325e-01 1 0 0 0 0 P 535 22 -5.2386639952427476e-02 -2.0505801980076480e-01 5.5662908152263810e+00 5.5703129706690362e+00 1 0 0 0 0 V -122 0 0 0 0 0 0 3 0 P 536 -211 -5.1758706768007023e-01 -1.7083232674058602e-01 1.0489562964760037e+01 1.0504641404305747e+01 1 0 0 0 0 P 537 211 -7.9373712864481319e-02 7.0095548013431666e-02 1.8788068503061299e+00 1.8869574817155890e+00 1 0 0 0 0 P 538 111 -7.3709870626921314e-01 2.1120579966915698e-01 9.7639197614993805e+00 9.7949104693200617e+00 2 0 0 -230 0 V -123 0 0 0 0 0 0 2 0 P 539 -321 -8.5795433684424061e-01 2.4919056416375207e-01 1.7934370895434306e+01 1.7963392829762956e+01 1 0 0 0 0 P 540 321 -1.0479142901398506e+00 2.7786110905809280e-01 1.6759583813735155e+01 1.6801863638448555e+01 1 0 0 0 0 V -124 0 0 0 0 0 0 1 0 P 541 130 -1.7244824127432363e+00 -3.9212022161552618e-01 4.6946279297054723e+01 4.6982213795499561e+01 1 0 0 0 0 V -125 0 0 0 0 0 0 3 0 P 542 -211 -5.9165457996848719e-02 3.7213531856083226e-02 5.0445981838376595e+00 5.0470125836628732e+00 1 0 0 0 0 P 543 211 -1.3381854084617595e-01 -5.9891788157947912e-01 1.1843191848384286e+01 1.1859902317189880e+01 1 0 0 0 0 P 544 111 -2.8809030160908039e-01 -4.3455501759935283e-01 1.4715669844030469e+01 1.4725521812285963e+01 2 0 0 -231 0 V -126 0 0 0 0 0 0 2 0 P 545 -2112 -3.7963353294098168e-01 -6.3483853460677531e-01 5.4539475563579821e+01 5.4552583148001112e+01 1 0 0 0 0 P 546 -211 -2.9260483550958311e-01 1.0599583448047589e-01 2.1058740992768712e+01 2.1061502906775388e+01 1 0 0 0 0 V -127 0 6.6328164470284886e-06 4.8154070591021530e-06 4.9412971772984059e-03 4.9413228625312458e-03 0 2 0 P 547 22 -3.5217830354860646e-02 -1.5450607726689007e-02 1.2743645501733083e+01 1.2743703531183384e+01 1 0 0 0 0 P 548 22 1.0074895050322182e-01 6.3026026264716026e-02 3.6075546405705651e+01 3.6075742142071533e+01 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 549 -2112 2.6626820410570526e+00 -9.4944055253522119e-01 2.0890304932083723e+02 2.0892428800966061e+02 1 0 0 0 0 P 550 111 8.5209116407407082e-01 -1.1591862689401730e-01 9.1866745710977852e+01 9.1870869613854325e+01 2 0 0 -232 0 V -129 0 0 0 0 0 0 3 0 P 551 -211 4.0603688739493729e-02 -1.7061650551776167e-01 7.6014080290035739e+00 7.6047118590906750e+00 1 0 0 0 0 P 552 211 2.6311187798959595e-01 7.3185682547040345e-02 2.5162104593812185e+01 2.5163973680230104e+01 1 0 0 0 0 P 553 111 1.1816688798747371e-01 -3.6293522883792340e-01 3.4432078019570525e+01 3.4434458057880626e+01 2 0 0 -233 0 V -130 0 0 0 0 0 0 2 0 P 554 2112 1.7675673200478197e+00 -1.5309536122704215e+00 2.8729342881067316e+02 2.8730448159186807e+02 1 0 0 0 0 P 555 211 7.1508344074892871e-01 -4.5589716835928090e-01 7.2409990958323959e+01 7.2415091361710012e+01 1 0 0 0 0 V -131 0 0 0 0 0 0 3 0 P 556 211 2.2439546791702109e-01 -1.9696073443006980e-02 5.5536519517846827e+01 5.5537151720289117e+01 1 0 0 0 0 P 557 -211 -3.7254464785821319e-02 -1.3183150102421531e-01 2.9812054854766831e+01 2.9812696320331970e+01 1 0 0 0 0 P 558 111 7.7925011485993334e-01 -5.0050082878366420e-01 1.7662641859603670e+02 1.7662889825134476e+02 2 0 0 -234 0 V -132 0 0 0 0 0 0 2 0 P 559 -211 5.7420658799858970e-01 -5.2176680747758952e-01 8.8745934585503349e+01 8.8749435711143690e+01 1 0 0 0 0 P 560 111 8.7757011108930327e-01 -5.8099850839255707e-01 2.6918632934150588e+02 2.6918842065089035e+02 2 0 0 -235 0 V -133 0 0 0 0 0 0 2 0 P 561 211 1.4702191181921057e-01 3.2086876987868253e-02 3.5343072584490557e+01 3.5343668520793052e+01 1 0 0 0 0 P 562 -211 5.8575905030442056e-02 -4.9476497528590435e-01 1.4924796091515708e+02 1.4924885775319882e+02 1 0 0 0 0 V -134 0 0 0 0 0 0 1 0 P 563 310 3.1865086807574067e-01 -5.5487539481077219e-01 2.4466956603456691e+02 2.4467090886341941e+02 2 0 0 -236 0 V -135 0 0 0 0 0 0 2 0 P 564 321 8.3084442751023035e-01 8.3461209683641513e-02 3.4093246441167344e+02 3.4093384431442593e+02 1 0 0 0 0 P 565 -211 9.8165955222199097e-01 -4.0742220910721266e-01 4.6661597406098980e+02 4.6661720540181989e+02 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 566 -321 3.7972478919659475e-01 -7.4349326116669168e-01 2.3330469933231484e+02 2.3330671517263869e+02 1 0 0 0 0 P 567 211 3.8655682557183740e-01 -1.5915204623184290e-01 1.4385652098799477e+02 1.4385719608732646e+02 1 0 0 0 0 V -137 0 0 0 0 0 0 1 0 P 568 130 1.6380306417008008e+00 -1.4172523212967988e-01 3.2704278346785134e+02 3.2704729493492738e+02 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 569 211 7.5386992013918197e-01 2.3480098916759773e-01 3.0328383260799040e+02 3.0328489255572464e+02 1 0 0 0 0 P 570 111 2.4085614183726616e-02 -1.2261142448093255e-01 1.4254973822031749e+02 1.4254985689210520e+02 2 0 0 -237 0 V -139 0 -1.7721686556587544e-04 3.6468204680237032e-04 5.1600330492852509e-02 5.1601998696441269e-02 0 2 0 P 571 22 -1.6228899273435982e-01 1.8598818410456283e-01 3.2180724883893291e+01 3.2181671544135462e+01 1 0 0 0 0 P 572 22 -1.0919271435137227e-01 3.7267480935992875e-01 4.6866750443336599e+01 4.6868359334207447e+01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 573 211 -7.3270599967859806e-01 -4.6348354767781064e-01 1.3285558233156209e+02 1.3285848452968409e+02 1 0 0 0 0 P 574 111 -7.9241686036128911e-01 3.2810579302962534e-01 1.5854937891272601e+02 1.5855175606439551e+02 2 0 0 -238 0 V -141 0 0 0 0 0 0 2 0 P 575 -211 -2.6451416739490663e-01 4.2183455290681814e-02 1.1183276361656556e+02 1.1183317148812414e+02 1 0 0 0 0 P 576 111 -2.3531390694014848e-01 -3.5452619923672024e-01 2.7358049012212273e+01 2.7361690861782531e+01 2 0 0 -239 0 V -142 0 0 0 0 0 0 2 0 P 577 -311 -2.1260416101622295e-01 -1.2104737182693050e-01 1.5437457045784552e+02 1.5437556650088354e+02 2 0 0 -240 0 P 578 111 -4.6305171201136808e-01 -1.8970742458445361e-01 5.5991455546711308e+01 5.5993854302366856e+01 2 0 0 -241 0 V -143 0 0 0 0 0 0 1 0 P 579 310 -4.9871228495176489e-01 -7.5174835164291953e-01 1.2689625628638298e+02 1.2690043882688370e+02 2 0 0 -242 0 V -144 0 -1.9977884541291021e-05 3.5000050954297345e-07 1.3274399164949437e-03 1.3275949599690685e-03 0 2 0 P 580 22 -6.2590518556441310e-01 -3.8452311759602079e-02 4.2259474569965363e+01 4.2264126949591009e+01 1 0 0 0 0 P 581 22 -1.3965172226572800e-01 5.1864407883738410e-02 8.6083135435251741e+00 8.6096024637596269e+00 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 582 -2112 -2.1106434929637469e-01 6.9239095715808538e-02 1.1567378666509168e+01 1.1607600234813003e+01 1 0 0 0 0 P 583 211 -2.8829032357802299e-02 9.0473510667775994e-02 3.5313056756691868e-01 3.9140458848788873e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 584 2112 8.8440335776350798e-02 2.0193564114694096e-01 1.2459750216819856e+01 1.2497070334546418e+01 1 0 0 0 0 P 585 111 1.8568864458564585e-01 1.1026538959652721e-01 3.9172280603199909e+00 3.9254979309419138e+00 2 0 0 -243 0 V -147 0 0 0 0 0 0 2 0 P 586 -321 2.7037679249353758e-01 2.7099818893913880e-01 6.9085121163553098e-01 9.3137531905546422e-01 1 0 0 0 0 P 587 211 2.0825686944437849e-01 -9.9480849261148349e-02 4.5632108067469634e-01 5.3007176552672086e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 1 0 P 588 310 3.5449487156875237e-01 3.4868286711363355e-01 1.3485744103664414e+00 1.5210439589250291e+00 2 0 0 -244 0 V -149 0 0 0 0 0 0 2 0 P 589 211 5.2292799236916876e-01 8.0220043182134493e-02 6.5002038371948301e-01 8.4964417533589720e-01 1 0 0 0 0 P 590 -211 1.2189079117573262e-01 3.3465285226054653e-01 3.7751287717979715e-01 5.3744362851943261e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 3 0 P 591 111 3.8161042283457075e-01 3.9313467286154724e-01 1.3370126677817902e+00 1.4512077246317687e+00 2 0 0 -245 0 P 592 111 1.6457624324822243e-01 4.0594887231049659e-01 1.2637068698881968e+00 1.3442672651576717e+00 2 0 0 -246 0 P 593 111 1.1189225299056972e-01 4.1723624264255654e-01 8.7511607159903537e-01 9.8521758897449252e-01 2 0 0 -247 0 V -151 0 0 0 0 0 0 2 0 P 594 211 -1.0035032418546279e-01 -2.0637581039206379e-01 2.8796574521790458e-01 3.9378321193013255e-01 1 0 0 0 0 P 595 -211 1.4393962323735321e-01 9.3891634270153457e-03 2.5916424553820203e+00 2.5994032340070130e+00 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 596 -211 1.0540169108163648e+00 4.0097700342132225e-01 2.6173442417723680e+00 2.8533672862774937e+00 1 0 0 0 0 P 597 211 8.4514623887374393e-02 3.3448171427719403e-01 1.2539694352700224e+00 1.3080290013329421e+00 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 598 2212 6.5816341038749770e-01 4.4280431594953112e-01 9.5678827142181746e+01 9.5686715737522263e+01 1 0 0 0 0 P 599 211 -2.8428761883563927e-02 -7.5672893005768016e-02 4.7923010455016462e+00 4.7950144605469402e+00 1 0 0 0 0 V -154 0 0 0 0 0 0 3 0 P 600 -211 6.5649721987824561e-01 1.8223610580214269e-01 1.3102302944717150e+00 1.4833683990894617e+00 1 0 0 0 0 P 601 211 1.8370954434857381e-01 2.2773004421390300e-01 2.9245109411220260e-01 4.3659775202106937e-01 1 0 0 0 0 P 602 111 -3.4604192008886397e-02 3.4350358373404423e-02 2.3554647051059002e-01 2.7582446844862302e-01 2 0 0 -248 0 V -155 0 -5.5716529317326420e-06 1.8009852007121769e-05 3.5927707999218846e-05 4.0797475544943080e-05 0 2 0 P 603 22 -6.5530631488677493e-02 3.9952859112717909e-01 8.2006107792972505e-01 9.1455865330039710e-01 1 0 0 0 0 P 604 22 -1.1058259978375935e-01 1.6974111582964982e-01 3.1557045287120111e-01 3.7500035800431530e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 605 211 -3.5011541685761055e-01 -8.9341381340842707e-01 1.5616709511161966e+00 1.8382233247270399e+00 1 0 0 0 0 P 606 -211 -2.4230730439271450e-01 -2.4229381710466791e-01 7.6103745267095013e-01 8.4621327857526707e-01 1 0 0 0 0 P 607 111 9.9540274706991866e-02 -2.3679148348647550e-01 7.4763972883918206e-01 8.0197458655445863e-01 2 0 0 -249 0 V -157 0 -5.6757001979622614e-05 1.4912000004484708e-04 5.1481548725728454e-05 1.7678678513994637e-04 0 2 0 P 608 22 -6.9685269580410353e-02 3.1849893899444737e-01 7.9475029734191724e-02 3.3557993278551940e-01 1 0 0 0 0 P 609 22 -6.6921624821752540e-02 4.0413959658844104e-02 4.4434518782136598e-02 8.9923403313543010e-02 1 0 0 0 0 V -158 0 -2.1029966855693518e-04 -8.4278528308705216e-06 -1.8131237090662504e-03 1.8254241096954033e-03 0 2 0 P 610 22 -1.2273132813497996e+00 -1.7560888609513145e-02 -1.0670152282924063e+01 1.0740519355048711e+01 1 0 0 0 0 P 611 22 -9.8197107889370500e-02 -3.5559530281081567e-02 -7.5789384684202077e-01 7.6505570730022288e-01 1 0 0 0 0 V -159 0 1.6972944047120685e-04 1.1274699513529626e-04 -1.0696352740889265e-04 2.3272188526491649e-04 0 2 0 P 612 22 3.7634155522181495e-01 1.7202383219088110e-01 -2.3490758988761568e-01 4.7582217352201972e-01 1 0 0 0 0 P 613 22 2.8548118193478145e-01 2.6760835371314085e-01 -1.8217323173735767e-01 4.3162578998198231e-01 1 0 0 0 0 V -160 0 -2.1144376728188418e-04 -7.4553090300174255e-05 -1.5391892581507802e-05 2.2985413572910654e-04 0 2 0 P 614 22 -5.4271606424264918e-01 -2.2499884379717716e-01 -2.3781231341297848e-02 5.8798873548836472e-01 1 0 0 0 0 P 615 22 -4.8632882370697669e-02 1.6494748441158641e-02 -1.9265577658875762e-02 5.4848851003000902e-02 1 0 0 0 0 V -161 0 4.6196280978078249e-07 -2.7211225490290270e-06 -4.8002111008815201e-06 5.9003842315764029e-06 0 2 0 P 616 22 -2.1402079083340915e-02 -1.5761199139248414e-01 -2.8164968722465983e-01 3.2345963447321019e-01 1 0 0 0 0 P 617 22 5.1994395134798838e-02 -2.2587451662569740e-02 -3.6232124909891660e-02 6.7278354420485839e-02 1 0 0 0 0 V -162 0 -6.3859171467440001e-06 -1.2284791769259764e-06 -6.5365926726422891e-05 6.6132159957924832e-05 0 2 0 P 618 22 -9.3631225358064646e-02 3.5287494229782182e-02 -9.3791217966718099e-01 9.4323447264140625e-01 1 0 0 0 0 P 619 22 -1.9096172040585967e-02 -5.6973221932013721e-02 -2.1595979034069140e-01 2.2416342888150495e-01 1 0 0 0 0 V -163 0 -3.6708784036477894e-05 4.6720806296011821e-06 -7.1163623618667132e-04 7.2107496014247154e-04 0 2 0 P 620 22 1.5199393614177322e-02 2.6821733214883965e-02 -6.8983949432755698e-01 6.9052802613144426e-01 1 0 0 0 0 P 621 22 -6.0144965606055700e-02 -2.1101322097998920e-02 -1.8147505681022183e-01 1.9234312809744558e-01 1 0 0 0 0 V -164 0 -8.7176397319130867e-06 -5.2445308583250231e-05 -3.1162012519974361e-04 3.1685928870089209e-04 0 2 0 P 622 22 -7.4051365188027060e-02 -1.4825179452758794e-01 -1.1921112226251573e+00 1.2035744124796390e+00 1 0 0 0 0 P 623 22 1.9553087355525019e-02 -1.7960976962012523e-01 -7.5598031173420444e-01 7.7726972429001251e-01 1 0 0 0 0 V -165 0 -9.1887465028559066e-06 -1.0399533515936851e-05 -1.6769665250193696e-03 1.6770504331834635e-03 0 2 0 P 624 22 -1.3445094835791693e-01 -1.4619387324435984e-01 -1.6429211147143562e+01 1.6430411699757094e+01 1 0 0 0 0 P 625 22 2.8658702101613878e-03 -2.7299685407455665e-03 -7.5853561474553750e+00 7.5853571800989927e+00 1 0 0 0 0 V -166 0 -2.3556303591907920e+01 -1.3416460390155493e+01 -6.1552230165611672e+03 6.1555695296087133e+03 0 2 0 P 626 111 3.0842588679892983e-02 5.8626407534376488e-03 -3.5549262854207583e+01 3.5549532974622551e+01 2 0 0 -250 0 P 627 111 -2.2813158256715463e-01 -1.1822831652997785e-01 -1.6002023677276302e+01 1.6004655676468190e+01 2 0 0 -251 0 V -167 0 1.0209915492701025e+01 -7.9262483264082406e-01 -6.2181193328888248e+03 6.2182641326030607e+03 0 2 0 P 628 2212 2.2448579587005246e-01 -1.1630614894183093e-01 -1.4532921437317623e+02 1.4533246306971591e+02 1 0 0 0 0 P 629 -211 5.2119100939478184e-02 9.4832522622590371e-02 -2.3130775100061459e+01 2.3131449287118887e+01 1 0 0 0 0 V -168 0 3.5786741483071062e-05 1.1566812630167021e-05 -4.6466514032478222e-02 4.6466596928141334e-02 0 2 0 P 630 22 6.6681696552200437e-02 1.2259358067023583e-02 -1.6371699174993136e+01 1.6371839561179012e+01 1 0 0 0 0 P 631 22 -5.7712945688122418e-03 7.4277991809557457e-03 -6.2716083931045418e+01 6.2716084636446929e+01 1 0 0 0 0 V -169 0 1.0426130863208057e-04 9.5078677235897977e-05 -5.2758993908426206e-02 5.2759191346890354e-02 0 2 0 P 632 22 8.7737487777021395e-02 1.5488116298259177e-01 -5.6906306113813535e+01 5.6906584518493631e+01 1 0 0 0 0 P 633 22 3.7549400258546722e-01 2.6755202853911086e-01 -1.7750114281308211e+02 1.7750174162465029e+02 1 0 0 0 0 V -170 0 4.8204505763780982e-05 1.0697188771631935e-04 -4.3343935366858051e-02 4.3344126779566290e-02 0 2 0 P 634 22 1.2008538163596126e-01 2.0584407631048540e-01 -9.9213018956230044e+01 9.9213305169679202e+01 1 0 0 0 0 P 635 22 2.3000359267681893e-03 6.5744625579532312e-02 -1.0831997471894031e+01 1.0832197232190545e+01 1 0 0 0 0 V -171 0 -3.2150215499455889e-04 7.6428747659230636e-05 -1.7941217967587830e-01 1.7941250048676022e-01 0 2 0 P 636 22 -1.8173359332474895e-01 1.0504970368329648e-01 -9.9515534817701550e+01 9.9515756202685608e+01 1 0 0 0 0 P 637 22 -3.8276678851919621e-01 2.9145531301117206e-02 -2.1550021969940838e+02 2.1550056160105402e+02 1 0 0 0 0 V -172 0 -2.2211411050469687e-04 5.7929670012999611e-05 -1.2368027019601842e-01 1.2368049863960270e-01 0 2 0 P 638 22 -2.5183351067242926e-01 8.8344197815170139e-02 -1.7590097629945379e+02 1.7590117875646936e+02 1 0 0 0 0 P 639 22 -2.3340868506302273e-01 3.8212013365945624e-02 -9.4297462434139675e+01 9.4297759047021970e+01 1 0 0 0 0 V -173 0 -1.5462912712494692e-04 1.2288387038459243e-04 -1.0194820983510636e-01 1.0194840877728883e-01 0 2 0 P 640 22 -3.3928254946959358e-01 2.3294036621235314e-01 -1.8040736871073349e+02 1.8040783813070078e+02 1 0 0 0 0 P 641 22 -1.9034601490462347e-01 1.8795580688671229e-01 -1.6878094412154940e+02 1.6878115610918275e+02 1 0 0 0 0 V -174 0 1.5401276916593514e-05 -1.3759806394015258e-05 -7.1715425540271030e-05 7.8509197448508312e-05 0 2 0 P 642 22 -9.5814195932756880e-03 -7.8028231270919415e-02 -1.3833351893913973e-01 1.5911119048883970e-01 1 0 0 0 0 P 643 22 9.4873933937120514e-02 1.8262065566170098e-03 -2.5882763819700672e-01 2.7567398256950759e-01 1 0 0 0 0 V -175 0 -2.0965113252988107e-05 3.8482688188601851e-05 1.8590408188765859e-05 5.5043104714742399e-05 0 2 0 P 644 22 2.6984753773511470e-02 6.5432258244418229e-02 4.8197512272619682e-02 8.5630354106768863e-02 1 0 0 0 0 P 645 22 -1.2938688238055288e-01 1.2253282152791357e-01 4.2605592257811006e-02 1.8322252638633016e-01 1 0 0 0 0 V -176 0 1.0285409743612106e-04 8.8014325673519702e-05 -5.0835965439013894e-05 1.5054597765416577e-04 0 2 0 P 646 22 2.9932661513435299e-01 2.7454677579620285e-01 -1.0829508054129178e-01 4.2035720416964950e-01 1 0 0 0 0 P 647 22 3.2138601045029427e-02 9.0946951172383231e-03 -5.5532658887324532e-02 6.4803390030946886e-02 1 0 0 0 0 V -177 0 6.3419519547283583e-05 -3.1370704434204673e-05 -7.9700516683156234e-05 1.0812938583347969e-04 0 2 0 P 648 22 3.0967014087180444e-01 -8.0842768939070192e-02 -3.6935035147429041e-01 4.8872367609057044e-01 1 0 0 0 0 P 649 22 1.5898832015991138e-01 -1.5098090564196684e-01 -2.1962165207915635e-01 3.1033238612448577e-01 1 0 0 0 0 V -178 0 4.5698737717912728e+01 -1.3556383731798242e+01 -6.9941764696175397e+01 8.9692442480903992e+01 0 2 0 P 650 2112 1.2762968464268005e+00 -3.5772134143341161e-01 -2.0219113921975294e+00 2.5938033196667143e+00 1 0 0 0 0 P 651 111 4.4169684421399102e-01 -1.5191596765151427e-01 -6.0747218513512746e-01 7.7808522639164734e-01 2 0 0 -252 0 V -179 0 4.5997771344297361e-05 -4.6123156326197706e-05 -3.2546628440884262e-05 7.5022814298894713e-05 0 2 0 P 652 22 1.1511064359970761e-02 -3.8203024689809614e-02 1.1883480188794220e-02 4.1631632198930853e-02 1 0 0 0 0 P 653 22 3.3236187195888289e-01 -3.0660727230188245e-01 -2.5519754437406084e-01 5.1922848536551258e-01 1 0 0 0 0 V -180 0 1.8057971937837162e-04 -7.0385615120103614e-05 -4.4024096892264364e-05 2.0191403924632034e-04 0 3 0 P 654 22 3.9407673340486893e-01 -2.2341609962631431e-01 -1.0582154795059659e-01 4.6519826460762703e-01 1 0 0 0 0 P 655 11 5.5075039942849381e-02 -3.9025561183405220e-03 -9.4633096915689632e-03 5.6020570322710878e-02 1 0 0 0 0 P 656 -11 2.3535977494545623e-01 -3.9487420537243419e-02 -5.1594362403526578e-02 2.4416330267852981e-01 1 0 0 0 0 V -181 0 2.0498605421569915e-05 -1.6904272064903158e-05 -7.2651744879898052e-06 3.0023709887028830e-05 0 2 0 P 657 22 1.6603892420300490e-01 -6.9521403085086045e-02 -8.9432409947510699e-02 2.0099827309315327e-01 1 0 0 0 0 P 658 22 6.5589667483577932e-02 -1.2149221229775430e-01 7.3379405725551607e-03 1.3826137385927884e-01 1 0 0 0 0 V -182 0 4.4821507279609603e-06 1.8707910198048836e-06 -1.3190769047843446e-05 1.4374523424550579e-05 0 2 0 P 659 22 1.0868902684117659e-01 4.0823315789285289e-02 -4.7908985340352939e-01 4.9295733618836546e-01 1 0 0 0 0 P 660 22 9.2520070226937326e-02 4.3158726481149330e-02 -1.1305951658386082e-01 1.5233218096137272e-01 1 0 0 0 0 V -183 0 2.0203102441503644e-05 -4.6697019174016375e-05 -5.8838983224656980e-05 8.0884675364908292e-05 0 2 0 P 661 22 1.3083307021617085e-01 -1.7347436718988990e-01 -1.7872505940379951e-01 2.8134195419989166e-01 1 0 0 0 0 P 662 22 -7.8307112027174840e-03 -1.1083065645344835e-01 -1.7950377003172405e-01 2.1110745582154306e-01 1 0 0 0 0 V -184 0 -1.1041858304191617e-05 -3.3189470981372003e-05 -6.2741365950154263e-04 6.2948630016478426e-04 0 2 0 P 663 22 -3.7223838682792533e-02 1.9998585086784395e-02 -3.8347533750163215e-01 3.8579643860946483e-01 1 0 0 0 0 P 664 22 -2.8733943240439150e-03 -1.4052231530061271e-01 -1.8949048955751864e+00 1.9001103496289877e+00 1 0 0 0 0 V -185 0 -1.3947050824405040e-05 -3.0226307583648640e-05 -1.6455323559035141e-04 1.6860680008300543e-04 0 2 0 P 665 22 3.0229673168350830e-03 -1.1223801825989337e-01 -3.4510844235011617e-01 3.6291369229560666e-01 1 0 0 0 0 P 666 22 -1.2395546542747622e-01 -1.4984913771110225e-01 -1.0817045880655061e+00 1.0990471042335126e+00 1 0 0 0 0 V -186 0 1.1930991214537883e-04 -9.6901356351118731e-06 -4.4554843289349875e-04 4.6310614921702710e-04 0 2 0 P 667 22 -1.3530467071068992e-03 1.7660194861720220e-02 -4.2436329967148953e-02 4.5984294264741016e-02 1 0 0 0 0 P 668 22 4.0083744399846954e-01 -5.0105596289451958e-02 -1.4493898224290622e+00 1.5046302152528035e+00 1 0 0 0 0 V -187 0 1.3710449053845509e-05 -1.1666374184212181e-05 -3.3177564071293253e-03 3.3192730729325022e-03 0 2 0 P 669 22 -5.4075638648149946e-03 -6.8874232900005022e-02 -3.2817234073251362e+00 3.2824505211640616e+00 1 0 0 0 0 P 670 22 2.4157309052354747e-02 5.2919865369269938e-02 -1.2554793483026521e+00 1.2568263530598827e+00 1 0 0 0 0 V -188 0 8.7334643290194584e-04 7.6802463542082475e-04 -1.1739484890286436e-02 1.1797200292627093e-02 0 2 0 P 671 22 1.2418571432422965e+00 1.1149743369762841e+00 -1.7323233224647538e+01 1.7403441794423028e+01 1 0 0 0 0 P 672 22 3.0159885842734924e-01 2.4234755535862690e-01 -3.4238354388332892e+00 3.4456266949865206e+00 1 0 0 0 0 V -189 0 2.6889622087743437e-04 7.0606147034624881e-05 -7.8386987942809967e-03 7.8436738641819593e-03 0 2 0 P 673 22 2.6641094905481288e-01 5.9482203634312197e-02 -9.2856281550727839e+00 9.2896395603169584e+00 1 0 0 0 0 P 674 22 1.0764950723955498e+00 2.9313494990845251e-01 -2.9861949958246246e+01 2.9882784760603425e+01 1 0 0 0 0 V -190 0 0 0 0 0 0 1 0 P 675 310 2.4818659030214052e+00 8.4359686098204834e-01 -9.5341267997563477e+01 9.5378594940565989e+01 2 0 0 -253 0 V -191 0 3.6075361527087402e-04 5.2395448223895719e-05 -9.7221103984104201e-03 9.7290215059750024e-03 0 2 0 P 676 22 1.6329296600498747e-01 6.9979730498661061e-02 -4.9610249635807699e+00 4.9642049156636299e+00 1 0 0 0 0 P 677 22 1.0773928628001110e+00 1.1021608003110542e-01 -2.8474771898301299e+01 2.8495360282428422e+01 1 0 0 0 0 V -192 0 1.0791249507861972e-06 6.2707068095968037e-06 -7.3845866155913755e-04 7.3849007016287167e-04 0 2 0 P 678 22 2.7116656542003324e-02 4.6619243797545076e-02 -1.2785111932285867e+01 1.2785225683891268e+01 1 0 0 0 0 P 679 22 3.2837409059026018e-02 3.0176892677851874e-01 -2.8242202843921739e+01 2.8243834092732964e+01 1 0 0 0 0 V -193 0 0 0 0 0 0 1 0 P 680 130 1.0704265611564484e-01 2.6747463614617123e-01 -1.7807434534755959e+01 1.7816716895930323e+01 1 0 0 0 0 V -194 0 0 0 0 0 0 1 0 P 681 310 -6.8339964509218487e-01 5.1552886739707993e-01 -3.6069702285399487e+01 3.6083291195154089e+01 2 0 0 -254 0 V -195 0 0 0 0 0 0 3 0 P 682 111 6.3554709809058880e-03 3.7576578256312110e-02 -1.6879560820374548e+00 1.6937732216953003e+00 2 0 0 -255 0 P 683 111 -2.1149010980454089e-01 1.2441650967338756e-01 -7.6153827250599866e+00 7.6205302429664634e+00 2 0 0 -256 0 P 684 111 -1.7355514850474960e-01 2.4146017656318536e-01 -6.7784356380031854e+00 6.7862974960865134e+00 2 0 0 -257 0 V -196 0 -3.7791985483042614e-05 3.4835107187205381e-05 -2.4715913504762522e-03 2.4721330360961027e-03 0 2 0 P 685 22 -3.0747000977755051e-01 2.2450077469092433e-01 -1.6103444494501041e+01 1.6107944095762978e+01 1 0 0 0 0 P 686 22 -5.4007279962994947e-01 5.5672953734714170e-01 -3.9325754318825496e+01 3.9333402842257087e+01 1 0 0 0 0 V -197 0 -3.1325939632240399e-05 2.7516958460091431e-06 -6.7392837404264155e-04 6.7479794792075175e-04 0 2 0 P 687 22 -2.6655461094630861e-01 7.1088800812943664e-02 -5.7260318907233945e+00 5.7326735640361646e+00 1 0 0 0 0 P 688 22 -4.5223941490837527e-02 -4.3701920876130063e-02 -9.8139382011096621e-01 9.8340677897003836e-01 1 0 0 0 0 V -198 0 -1.3440327260466266e-05 -1.4111223691714404e-05 -5.0812907214051624e-05 5.4726696455653969e-05 0 2 0 P 689 22 -1.0933820777628772e-01 -1.9579107808744109e-01 -6.7020665439642291e-01 7.0672904959087357e-01 1 0 0 0 0 P 690 22 -2.0508716104878386e-01 -1.3432935929887782e-01 -5.1851939239018319e-01 5.7355686787046811e-01 1 0 0 0 0 V -199 0 -4.3793716994123248e-04 -2.0583263442779259e-04 -4.2470402188891275e-04 6.4624402644217975e-04 0 2 0 P 691 22 -8.9752454829585648e-01 -4.0250236576975268e-01 -9.2067379502902158e-01 1.3472931032618956e+00 1 0 0 0 0 P 692 22 -1.6386431167967042e-01 -9.6355644456670428e-02 -1.0864307633904398e-01 2.1895031604755391e-01 1 0 0 0 0 V -200 0 -6.9005956933333669e-04 -4.9946524938117374e-05 -1.0763899570766660e-03 1.2808694517756020e-03 0 2 0 P 693 22 -8.5305784809732860e-02 -2.7658393909772285e-02 -1.8425301167266087e-01 2.0491763219917963e-01 1 0 0 0 0 P 694 22 -1.5277542469411063e+00 -8.9094922300825066e-02 -2.3318799361187663e+00 2.7891997025490372e+00 1 0 0 0 0 V -201 0 -3.7344632512870178e-04 5.0723115142745794e-04 2.7262887529735187e-04 6.9641442884610524e-04 0 2 0 P 695 22 -3.3722199426053995e-01 3.7012594779948238e-01 2.5110763415762921e-01 5.6014902890191876e-01 1 0 0 0 0 P 696 22 -9.0009351954799768e-02 2.1015837443083032e-01 6.0786187184220464e-02 2.3656539547264133e-01 1 0 0 0 0 V -202 0 -1.2245481210789705e-04 -1.0894774441191276e-05 5.4484678951366546e-05 1.3609492108670801e-04 0 2 0 P 697 22 -6.2364443611965407e-02 3.0198587297070988e-02 4.0932611920266086e-02 8.0478302792640607e-02 1 0 0 0 0 P 698 22 -7.2618692120771466e-01 -1.0035580780249459e-01 3.0992308096182247e-01 7.9590894504691900e-01 1 0 0 0 0 V -203 0 -7.3514058083588884e-05 -6.6452818832336523e-05 3.7491661139507577e-04 4.0275870300313451e-04 0 2 0 P 699 22 -5.9592681858139512e-02 -3.4692181673933044e-02 6.2720509782091052e-02 9.3213183336199754e-02 1 0 0 0 0 P 700 22 -3.1632379383682227e-02 -4.7770446913086656e-02 4.0252099268268987e-01 4.0657812603976534e-01 1 0 0 0 0 V -204 0 -1.9574633573899992e-04 -7.2329583449162510e-05 6.7950224332930290e-04 7.1179497911348297e-04 0 2 0 P 701 22 -2.9868928518983828e-01 -4.0232948883506717e-02 9.5845914495654083e-01 1.0047277799552987e+00 1 0 0 0 0 P 702 22 -4.1240895112846809e-01 -2.2252261703889428e-01 1.5100051814974131e+00 1.5810481037001238e+00 1 0 0 0 0 V -205 0 2.4183460453793714e-05 -1.1948605233654473e-04 2.6905522020641677e-04 2.9671497720015760e-04 0 2 0 P 703 22 9.6605716538289685e-02 -2.0754049137140287e-01 4.0907804974754347e-01 4.6877560816643749e-01 1 0 0 0 0 P 704 22 1.9730534464719746e-02 -3.6725563437504199e-01 8.8523116176537886e-01 9.5859282530747125e-01 1 0 0 0 0 V -206 0 4.2037483529183717e-05 -3.0736771977666828e-05 1.1403222061429432e-04 1.2968200045707640e-04 0 2 0 P 705 22 1.1211428697288379e-01 -1.2053564878016564e-01 4.2750840977204663e-01 4.5810686132835626e-01 1 0 0 0 0 P 706 22 5.8801000156058401e-02 -4.4333971031991371e-03 3.6121857599037591e-02 6.9152015340354256e-02 1 0 0 0 0 V -207 0 1.5599164937093644e-04 -2.2914502370700285e-04 2.3509213957264158e-03 2.3674988308070351e-03 0 2 0 P 707 22 1.1332350268471862e-01 -1.1475455491098487e-01 1.7363169892926267e+00 1.7437911318273651e+00 1 0 0 0 0 P 708 22 4.5379310105414339e-01 -7.1831534423060617e-01 6.8105928163151699e+00 6.8633868914673073e+00 1 0 0 0 0 V -208 0 5.1282863840389080e-05 -1.2206199911690046e-04 7.3712117553179676e-04 7.4920352680916665e-04 0 2 0 P 709 22 1.4642378330523126e-01 -4.0976978583760976e-01 2.0654153428690272e+00 2.1107562010477667e+00 1 0 0 0 0 P 710 22 1.8769041576331677e-01 -3.8547923142826362e-01 2.7370202610745054e+00 2.7703974154558195e+00 1 0 0 0 0 V -209 0 -1.2265189895363895e-06 -4.4524102012105708e-05 2.1464145408460806e-04 2.1981510321313161e-04 0 2 0 P 711 22 -6.0240342616575057e-03 -2.7764569961970931e-01 1.0098043092438616e+00 1.0472956442540835e+00 1 0 0 0 0 P 712 22 -4.1685681728913385e-03 -9.2357923998239944e-02 7.7390635983010625e-01 7.7940901769954041e-01 1 0 0 0 0 V -210 0 7.8524125542846869e-06 -1.1603728121240558e-04 6.4761319885705464e-04 6.6000093114832001e-04 0 2 0 P 713 22 5.0685145734293668e-02 -5.6561140865886199e-02 2.5600636348120043e-01 2.6703446368779016e-01 1 0 0 0 0 P 714 22 -3.0180644738396125e-02 -2.4643956518880905e-01 1.4350644238878560e+00 1.4563836140645976e+00 1 0 0 0 0 V -211 0 0 0 0 0 0 2 0 P 715 211 2.2819263877195303e-01 -1.2013107685152362e+00 1.1732570566183654e+01 1.1796944999376720e+01 1 0 0 0 0 P 716 -211 6.1276112542185324e-01 -7.0582510123468178e-01 6.6388570216338296e+00 6.7057861290797227e+00 1 0 0 0 0 V -212 0 1.7838482623809421e-05 -1.4460992563483656e-05 2.4328541041202363e-04 2.4798226674961290e-04 0 2 0 P 717 22 1.3683628412259266e-02 -8.7988502498512602e-02 3.6715756233210245e-01 3.7780139469846741e-01 1 0 0 0 0 P 718 22 4.3386301226562417e-02 4.1724039006309194e-02 4.1117552502558496e-01 4.1555815350584491e-01 1 0 0 0 0 V -213 0 2.1235806628923309e-05 -3.2463060688853036e-05 2.2518344500079224e-04 2.3055944278209788e-04 0 2 0 P 719 22 2.8386824592129590e-02 -6.5972348319248086e-02 7.4917667170485669e-01 7.5261135254522105e-01 1 0 0 0 0 P 720 22 6.4844502324830564e-02 -7.6549867892937662e-02 2.3944371573839707e-01 2.5961121848408525e-01 1 0 0 0 0 V -214 0 6.1011172857340830e-05 -7.9392129743761268e-05 5.9581594362132461e-04 6.0448241313463028e-04 0 2 0 P 721 22 8.3542728585246320e-02 -8.6242476476969490e-02 1.0537645148061670e+00 1.0605832380879048e+00 1 0 0 0 0 P 722 22 3.4066616159887603e-01 -4.6576866624772895e-01 3.0889262147852885e+00 3.1423651990983594e+00 1 0 0 0 0 V -215 0 0 0 0 0 0 3 0 P 723 211 4.0839911065151713e-01 3.5962300351329679e-01 5.1096352894767918e+00 5.1404251881146417e+00 1 0 0 0 0 P 724 -211 4.9172751037101914e-01 1.0414272996518113e-01 3.4034504221599939e+00 3.4431956397598618e+00 1 0 0 0 0 P 725 111 1.0180458026718550e-01 5.8537644972672517e-03 4.3182360173291945e-01 4.6377760029539838e-01 2 0 0 -258 0 V -216 0 0 0 0 0 0 2 0 P 726 211 1.3231828164054067e+00 -2.3233267031911264e-01 9.4772253231821892e+00 9.5729865165785082e+00 1 0 0 0 0 P 727 -211 1.5880067575408788e-01 1.2081797335110758e-01 5.8235372259468099e-01 6.3121333986577510e-01 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 728 130 5.2482512314272056e-01 -4.7832544214417169e-02 1.4903979172423241e+00 1.6573143162321544e+00 1 0 0 0 0 V -218 0 1.3991069369725554e-04 1.6678424046614966e-04 3.6564659545179487e-04 4.2616654531315949e-04 0 2 0 P 729 22 5.0227605788554219e-01 5.7576949594196969e-01 1.4064151788053489e+00 1.6005609660229729e+00 1 0 0 0 0 P 730 22 3.1920048590667549e-01 4.0349333091248907e-01 7.4045503921447398e-01 9.0164820378683252e-01 1 0 0 0 0 V -219 0 0 0 0 0 0 1 0 P 731 130 3.2371750674381259e+00 2.3409283617548118e+00 5.0353659835270168e+00 6.4468468284171374e+00 1 0 0 0 0 V -220 0 7.1335706145639833e+01 7.8149401971395051e+01 1.0620176940101544e+02 1.5544016327973040e+02 0 2 0 P 732 22 4.2594277641554164e-02 2.1431530215710426e-01 2.5174085126258827e-01 3.3334483259968084e-01 1 0 0 0 0 P 733 22 2.7037160311905839e-01 3.7759871387623289e-01 5.0851170123740386e-01 6.8866954542038039e-01 1 0 0 0 0 V -221 0 1.8662821273001112e-05 5.6350088733884587e-05 3.2336412001490208e-06 6.1886991057978410e-05 0 2 0 P 734 22 -1.0452759311989706e-02 1.3150959032668796e-01 -2.4031578868727921e-02 1.3409529935106437e-01 1 0 0 0 0 P 735 22 1.5689522263647343e-01 3.1065537937600424e-01 4.9405147844733738e-02 3.5151634991129166e-01 1 0 0 0 0 V -222 0 1.6203995030957650e-04 2.1470926292290209e-04 1.9729560320097769e-04 3.3736415736078032e-04 0 2 0 P 736 22 1.5947638965055264e-01 3.1854881454449369e-01 2.8118962801131037e-01 4.5384322513927239e-01 1 0 0 0 0 P 737 22 2.7519305562281521e-01 2.5740517724240652e-01 2.4805251403083758e-01 4.5113046101015558e-01 1 0 0 0 0 V -223 0 -8.0899007442886404e-06 1.0717368090473127e-04 7.1248003456954618e-05 1.3166566826493042e-04 0 2 0 P 738 22 -4.1312525022179178e-02 5.0648672790241593e-02 6.7336991952037351e-02 9.3841799131676285e-02 1 0 0 0 0 P 739 22 2.7144909854662387e-04 4.9305678343943365e-01 2.9411301982325927e-01 5.7411456505632263e-01 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 740 130 -8.9194348715380331e-02 9.8455421872459370e-01 2.1845309080941969e-01 1.1281399838829154e+00 1 0 0 0 0 V -225 0 -1.8131657971486007e-06 8.8702989520742314e-06 1.8618931551783693e-05 2.0967326258402975e-05 0 2 0 P 741 22 -8.2688765082448906e-02 1.1547635103319900e-01 3.4345631592514858e-01 3.7166444606348681e-01 1 0 0 0 0 P 742 22 8.8776987486320815e-03 2.4561926712922430e-01 4.1449047194979938e-01 4.8188171708141836e-01 1 0 0 0 0 V -226 0 5.4847667808577248e-06 1.8096498591930064e-04 9.9680613524213372e-04 1.0136310575566397e-03 0 2 0 P 743 22 1.7491949032887224e-02 6.0824195917264978e-01 3.0138614691303087e+00 3.0746748127708492e+00 1 0 0 0 0 P 744 22 5.3875119410220496e-03 1.4664544049490638e-01 1.1442710424327800e+00 1.1536421148055669e+00 1 0 0 0 0 V -227 0 -3.9557239115917199e-05 9.6624347450479116e-05 1.0383470905395047e-03 1.0436165537241098e-03 0 2 0 P 745 22 -9.2465822996315339e-02 1.7076610153122404e-01 2.3377513782791670e+00 2.3458031666149455e+00 1 0 0 0 0 P 746 22 -5.4667331211844350e-01 1.3904248015942013e+00 1.4439159150072237e+01 1.4516247786538560e+01 1 0 0 0 0 V -228 0 -1.0171236214618871e-06 8.6922139121361843e-06 7.4668649056499923e-05 7.5602755162160803e-05 0 2 0 P 747 22 5.4556614548170110e-02 2.8867218876497448e-02 4.2721723499616182e-01 4.3165299303304622e-01 1 0 0 0 0 P 748 22 -7.1747563115949667e-02 1.1804452238156389e-01 8.3479740950786496e-01 8.4614947674652075e-01 1 0 0 0 0 V -229 0 -3.2002413942854375e-05 4.6024432491944058e-05 7.3570894628841314e-04 7.3800405996304723e-04 0 2 0 P 749 22 -9.4255113313073374e-02 4.6514851128216267e-02 1.5785869802872254e+00 1.5820823341702168e+00 1 0 0 0 0 P 750 22 -1.8461660019251228e-01 3.5454590557187071e-01 4.8324423520375470e+00 4.8489468108023832e+00 1 0 0 0 0 V -230 0 -4.3311461166626516e-06 1.2410321321600544e-06 5.7372184754559076e-05 5.7554284224668776e-05 0 2 0 P 751 22 -4.7176024337145944e-01 1.2903645357429647e-01 5.3733266872040728e+00 5.3955396227806931e+00 1 0 0 0 0 P 752 22 -2.6533846289775370e-01 8.2169346094860526e-02 4.3905930742953077e+00 4.3993708465393686e+00 1 0 0 0 0 V -231 0 -5.2437667020373493e-06 -7.9096905337090929e-06 2.6785191690003744e-04 2.6803124061485585e-04 0 2 0 P 753 22 -1.9473595911436073e-01 -3.3472194511027792e-01 1.2197160189531591e+01 1.2203306009578096e+01 1 0 0 0 0 P 754 22 -9.3354342494719633e-02 -9.9833072489074901e-02 2.5185096544988781e+00 2.5222158027078665e+00 1 0 0 0 0 V -232 0 6.0469302882566243e-05 -8.2262542494528161e-06 6.5193940571714650e-03 6.5196867131015000e-03 0 2 0 P 755 22 6.0602143321655599e-01 -9.2327015022225831e-02 5.8629644204129811e+01 5.8632848862715804e+01 1 0 0 0 0 P 756 22 2.4606973085751480e-01 -2.3591611871791464e-02 3.3237101506848042e+01 3.3238020751138535e+01 1 0 0 0 0 V -233 0 1.1537666442066055e-04 -3.5436539640874371e-04 3.3619048268336497e-02 3.3621372107832406e-02 0 2 0 P 757 22 8.6061004527217849e-02 -2.6487050398755779e-01 2.9418793463269164e+01 2.9420111687668211e+01 1 0 0 0 0 P 758 22 3.2105883460255856e-02 -9.8064724850365603e-02 5.0132845563013611e+00 5.0143463702124214e+00 1 0 0 0 0 V -234 0 7.8286756369666825e-04 -5.0282426269319112e-04 1.7744635691917926e-01 1.7744884808558761e-01 0 2 0 P 759 22 4.3443655474220944e-01 -3.0654097397688851e-01 1.1285504058773739e+02 1.1285629308349925e+02 1 0 0 0 0 P 760 22 3.4481356011772396e-01 -1.9395985480677569e-01 6.3771378008299308e+01 6.3772605167845541e+01 1 0 0 0 0 V -235 0 7.1725371163522885e-05 -4.7486044856498838e-05 2.2001079047917860e-02 2.2001249974365707e-02 0 2 0 P 761 22 1.8881440446573644e-01 -1.7056700732901389e-01 5.4454523635302792e+01 5.4455118109605401e+01 1 0 0 0 0 P 762 22 6.8875570662356678e-01 -4.1043150106354315e-01 2.1473180570620309e+02 2.1473330254128501e+02 1 0 0 0 0 V -236 0 1.1475536927923592e+02 -1.9982663540190637e+02 8.8112568376915326e+04 8.8113051968319865e+04 0 2 0 P 763 -211 2.3846333906313949e-01 -1.2920476794887265e-01 1.4287105833224882e+02 1.4287138393463502e+02 1 0 0 0 0 P 764 211 8.0187529012601150e-02 -4.2567062686189949e-01 1.0179850770231810e+02 1.0179952492878442e+02 1 0 0 0 0 V -237 0 3.8999848402204098e-06 -1.9853456634564445e-05 2.3081903321869487e-02 2.3081922537413230e-02 0 2 0 P 765 22 3.1507629919568250e-02 -1.3867615711558412e-01 1.3914586843944574e+02 1.3914594111067279e+02 1 0 0 0 0 P 766 22 -7.4220157358416338e-03 1.6064732634651580e-02 3.4038697808717768e+00 3.4039157814323611e+00 1 0 0 0 0 V -238 0 -6.7547192375065580e-05 2.7968391675867270e-05 1.3515065029638850e-02 1.3515267662784552e-02 0 2 0 P 767 22 -7.1982443399898344e-01 3.2294729206421013e-01 1.4964729986488274e+02 1.4964937954772603e+02 1 0 0 0 0 P 768 22 -7.2592426362305673e-02 5.1585009654152077e-03 8.9020790478432659e+00 8.9023765166694364e+00 1 0 0 0 0 V -239 0 -2.3362185886775710e-05 -3.5197694330947360e-05 2.7161328237407935e-03 2.7164943899896320e-03 0 2 0 P 769 22 -4.0271295264548181e-02 -1.0531583754955903e-01 4.3312375652451918e+00 4.3327049345013258e+00 1 0 0 0 0 P 770 22 -1.9504261167560030e-01 -2.4921036168716121e-01 2.3026811446967081e+01 2.3028985927281202e+01 1 0 0 0 0 V -240 0 0 0 0 0 0 1 0 P 771 130 -2.1260416101622295e-01 -1.2104737182693050e-01 1.5437457045784552e+02 1.5437556650088354e+02 1 0 0 0 0 V -241 0 -6.4205292672790841e-05 -2.6304234282470835e-05 7.7635989616293664e-03 7.7639315655371379e-03 0 2 0 P 772 22 -2.2128739119982938e-01 -2.2306569149795712e-02 2.6459936958424120e+01 2.6460871670001914e+01 1 0 0 0 0 P 773 22 -2.4176432081153867e-01 -1.6740085543465791e-01 2.9531518588287192e+01 2.9532982632364948e+01 1 0 0 0 0 V -242 0 -2.9068652654757788e+01 -4.3817472272230638e+01 7.3964554483247994e+03 7.3966992378216664e+03 0 2 0 P 774 -211 -2.6240200831458399e-01 -1.0822124517810787e-01 4.9982246928372049e+01 4.9983247738072528e+01 1 0 0 0 0 P 775 211 -2.3631027663718093e-01 -6.4352710646481170e-01 7.6914009358010929e+01 7.6917191088811165e+01 1 0 0 0 0 V -243 0 4.2744301962094770e-05 2.5382365838251828e-05 9.0172007792043471e-04 9.0362374762430772e-04 0 2 0 P 776 22 2.0206176206786792e-02 -3.0759204499496016e-02 6.5404528235364845e-01 6.5507988031033682e-01 1 0 0 0 0 P 777 22 1.6548246837885905e-01 1.4102459409602322e-01 3.2631827779663429e+00 3.2704180506315774e+00 1 0 0 0 0 V -244 0 1.1326427392595388e+01 1.1140728665347153e+01 4.3088155478619456e+01 4.8598711415685202e+01 0 2 0 P 778 -211 2.1620125203128515e-01 4.1486119245492276e-01 8.3566219858905100e-01 9.6781397253589097e-01 1 0 0 0 0 P 779 211 1.3829361953746722e-01 -6.6178325341289201e-02 5.1291221177739044e-01 5.5322998638913801e-01 1 0 0 0 0 V -245 0 5.5560580388043604e-05 5.7238453899148698e-05 1.9466239746896441e-04 2.1128863002546066e-04 0 2 0 P 780 22 2.4006383788629909e-01 1.5857535476889045e-01 6.1514299916077531e-01 6.7910065440794010e-01 1 0 0 0 0 P 781 22 1.4154658494827163e-01 2.3455931809265679e-01 7.2186966862101487e-01 7.7210707022382863e-01 1 0 0 0 0 V -246 0 4.7170460551163638e-07 1.1635212281659898e-06 3.6220072762500309e-06 3.8529076098609674e-06 0 2 0 P 782 22 1.2272228898739163e-01 3.2378646068682188e-01 1.1298942576735578e+00 1.1817611712448854e+00 1 0 0 0 0 P 783 22 4.1853954260830807e-02 8.2162411623674700e-02 1.3381261221463916e-01 1.6250609391278614e-01 1 0 0 0 0 V -247 0 1.0409831841134347e-04 3.8817335497764977e-04 8.1415923831543711e-04 9.1659155607642072e-04 0 2 0 P 784 22 6.5292659833318858e-03 5.6451798019208535e-02 4.0221849707068713e-02 6.9622079886632493e-02 1 0 0 0 0 P 785 22 1.0536298700723784e-01 3.6078444462334802e-01 8.3489422189196660e-01 9.1559550908786003e-01 1 0 0 0 0 V -248 0 -4.8948383235562968e-07 4.8589330029972814e-07 3.3318561246498033e-06 3.9015971775620507e-06 0 2 0 P 786 22 -7.9726534590996823e-02 4.9599735739373124e-02 1.7688445592298932e-01 2.0026124150837823e-01 1 0 0 0 0 P 787 22 4.5122342582110425e-02 -1.5249377365968701e-02 5.8662014587600717e-02 7.5563226940244740e-02 1 0 0 0 0 V -249 0 1.6005326353629871e-05 -3.8074286836331070e-05 1.2021483655971793e-04 1.2895147238547742e-04 0 2 0 P 788 22 1.0867350616276265e-01 -1.3905087124770737e-01 5.9390637658169299e-01 6.1957232013773023e-01 1 0 0 0 0 P 789 22 -9.1332314557707895e-03 -9.7740612238768107e-02 1.5373335225748916e-01 1.8240226641672835e-01 1 0 0 0 0 V -250 0 -2.3556298519312328e+01 -1.3416459425943119e+01 -6.1552288632504924e+03 6.1555753763424646e+03 0 2 0 P 790 22 -2.3213653733425543e-02 -9.9755034120093834e-03 -2.9430548614542598e+01 2.9430559460148622e+01 1 0 0 0 0 P 791 22 5.4056242413318530e-02 1.5838144165447033e-02 -6.1187142396649827e+00 6.1189735144739341e+00 1 0 0 0 0 V -251 0 -2.3556307420695578e+01 -1.3416462374409992e+01 -6.1552232851270101e+03 6.1555697982187294e+03 0 2 0 P 792 22 -5.7116369314341643e-02 2.8352248717224603e-02 -2.9548210046346037e+00 2.9555089746236312e+00 1 0 0 0 0 P 793 22 -1.7101521325281299e-01 -1.4658056524720245e-01 -1.3047202672641697e+01 1.3049146701844561e+01 1 0 0 0 0 V -252 0 4.5698786253224441e+01 -1.3556400424896554e+01 -6.9941831447505521e+01 8.9692527979837251e+01 0 2 0 P 794 22 4.0930070299454407e-01 -1.5666810164849121e-01 -4.9589725382548561e-01 6.6180514193955009e-01 1 0 0 0 0 P 795 22 3.2396141219446915e-02 4.7521339969769285e-03 -1.1157493130964191e-01 1.1628008445209730e-01 1 0 0 0 0 V -253 0 3.2089322298709840e+02 1.0907298226418077e+02 -1.2327163499917337e+04 1.2331989692593479e+04 0 2 0 P 796 -211 5.3669786914359341e-01 2.3172426959419054e-01 -1.6834484085283336e+01 1.6845209257899416e+01 1 0 0 0 0 P 797 211 1.9451680338778117e+00 6.1187259138785777e-01 -7.8506783912280142e+01 7.8533385682666577e+01 1 0 0 0 0 V -254 0 -1.3737028042026699e+02 1.0362654646905284e+02 -7.2503770717535244e+03 7.2531085808448788e+03 0 2 0 P 798 211 -6.6213492676284158e-01 4.0215600491309411e-01 -3.1817096474859657e+01 3.1826832390122547e+01 1 0 0 0 0 P 799 -211 -2.1264718329343259e-02 1.1337286248398579e-01 -4.2526058105398290e+00 4.2564588050315431e+00 1 0 0 0 0 V -255 0 3.6595714785966773e-06 2.1637133496982003e-05 -9.7194935725559495e-04 9.7529894982596786e-04 0 2 0 P 800 22 -5.9470864189116096e-02 2.6736378549356159e-02 -1.1230940280261077e+00 1.1249852503091948e+00 1 0 0 0 0 P 801 22 6.5826335170021982e-02 1.0840199706955950e-02 -5.6486205401134704e-01 5.6878797138610493e-01 1 0 0 0 0 V -256 0 -6.8422734566243745e-05 4.0252084718800003e-05 -2.4637809838895346e-03 2.4654463442778537e-03 0 2 0 P 802 22 -2.0891482218267035e-01 1.4110641636296994e-01 -7.4548860259442193e+00 7.4591475440216879e+00 1 0 0 0 0 P 803 22 -2.5752876218705389e-03 -1.6689906689582371e-02 -1.6049669911576778e-01 1.6138269894477408e-01 1 0 0 0 0 V -257 0 -1.2601714585453721e-04 1.7532249864193761e-04 -4.9217733949071755e-03 4.9274818335522394e-03 0 2 0 P 804 22 -9.3833273508074660e-02 2.2621323689805828e-01 -5.2475274304246851e+00 5.2532391193267252e+00 1 0 0 0 0 P 805 22 -7.9721874996674935e-02 1.5246939665127048e-02 -1.5309082075784999e+00 1.5330583767597865e+00 1 0 0 0 0 V -258 0 5.8362199776217426e-06 3.3558271360268071e-07 2.4755443464605853e-05 2.6587291936313057e-05 0 2 0 P 806 22 1.3364918421663818e-01 1.0779583078241388e-02 3.7762962267932421e-01 4.0072738336435465e-01 1 0 0 0 0 P 807 22 -3.1844603949452689e-02 -4.9258185809741362e-03 5.4193979053595236e-02 6.3050216931043901e-02 1 0 0 0 0 E 2 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 306 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -1 0 P 3 2 3.1564508916247891e-01 -8.3581952973138751e-01 2.1599035257864975e+03 2.1599037105693046e+03 3 0 0 -3 0 P 87 2101 -3.1564508916247891e-01 8.3581952973138751e-01 2.1991196891509016e+03 2.1991199469470771e+03 2 0 0 -13 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -2 0 P 4 21 1.0485570318721020e+00 -4.0602676647099523e-01 -2.6283896264111208e+03 2.6283898669252194e+03 3 0 0 -4 0 P 16 1 -7.7683827458000398e-01 2.5423061695185373e-01 -1.0163523559378891e+01 1.0201677413714762e+01 2 0 0 -11 0 P 95 2203 -2.7171875729209799e-01 1.5179614951914150e-01 -6.7511740163706804e+02 6.7511791400933009e+02 2 0 0 -15 0 V -3 0 0 0 0 0 0 3 0 P 5 2 1.1351433714083008e+00 6.2334370232618885e-01 1.5054710073034357e+03 1.5054715643076977e+03 3 0 0 -5 0 P 85 21 -6.2859554271951848e-02 -9.8434930980659352e-01 1.6902747918111271e+02 1.6903035707590743e+02 2 0 0 -13 0 P 86 21 -7.9826179328966473e-01 -4.9184531800099446e-01 4.3922827640778718e+02 4.3922927717749297e+02 2 0 0 -13 0 V -4 0 0 0 0 0 0 16 0 P 6 -1 -3.9153510615501634e+00 1.2028448393528433e+00 2.1863609591490727e+00 4.6429499121174000e+00 3 0 0 -5 0 P 14 -2 -2.6175345707137820e-02 1.4799141542815424e+00 4.7603304819027397e+00 4.9960461716939841e+00 2 0 0 -11 0 P 15 21 -3.3014204858802826e-01 -6.6173486872478360e-01 -2.4920757233973277e+03 2.4920758331224838e+03 2 0 0 -11 0 P 17 2 5.5375425333838957e-01 -1.7158053715528803e+00 3.0886169522163374e+00 3.5915298305399346e+00 2 0 0 -13 0 P 18 21 1.3726171967042677e+00 -1.0487868079664044e+00 5.6382820804011544e+00 5.8969701165450559e+00 2 0 0 -13 0 P 19 21 1.3406491389301670e-01 -5.2582702137319426e-01 9.8015115038302003e+00 9.8165215436660205e+00 2 0 0 -13 0 P 20 21 -4.8509911729354183e-01 -2.0425121135375561e+00 5.6771047945201296e+00 6.0528254340853138e+00 2 0 0 -13 0 P 21 21 -3.3068411322502413e-02 1.6789622470597114e+00 6.4607220922419195e+00 6.6753979431987425e+00 2 0 0 -13 0 P 22 21 -8.6091820198030400e-01 5.3778950104120271e-01 5.6078087914236763e+00 5.6989400013598859e+00 2 0 0 -13 0 P 88 1 4.5314466228188728e+00 9.1667134983359311e-01 -1.3638020061622930e+01 1.4404123925469809e+01 2 0 0 -15 0 P 89 21 6.8996520985842413e-01 -1.1023608522319204e-02 7.7078438419935197e-02 6.9434472449143614e-01 2 0 0 -15 0 P 90 21 3.8161683430029963e-01 -3.0964881570981106e-01 -1.5715986414356771e+00 1.6466438859250463e+00 2 0 0 -15 0 P 91 21 -2.4780275052988057e-03 7.9068318981913444e-01 -4.6443582297488399e+00 4.7111834408690410e+00 2 0 0 -15 0 P 92 21 3.3831940005505579e-01 3.5026058914303315e-01 -8.8535044407174777e+00 8.8668869045773064e+00 2 0 0 -15 0 P 93 21 -1.4312453788937820e+00 -6.5137745978608985e-01 -1.0310507231270073e+02 1.0311706305232403e+02 2 0 0 -15 0 P 94 21 1.7287325907739978e-01 -3.7940517406762642e-01 -1.6224025257554775e+00 1.6751189227607335e+00 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 1.6114126440303389e+00 -9.5808125124733068e-01 2.3946441701668553e+02 2.3947175530223686e+02 3 0 0 -6 0 P 8 24 -4.3916203341722051e+00 2.7842697929263647e+00 1.2681929512459012e+03 1.2706427589175803e+03 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 1.6114126440303389e+00 -9.5808125124733068e-01 2.3946441701668553e+02 2.3947175530223686e+02 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -4.3916203341722051e+00 2.7842697929263647e+00 1.2681929512459012e+03 1.2706427589175803e+03 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 12 -1.2212913928490286e+01 -3.4791389170413495e+01 4.3251392047097784e+02 4.3408281171708148e+02 1 0 0 0 0 P 12 -11 7.6763292388928965e+00 3.6880087269723475e+01 8.2020562934461793e+02 8.2107024137796350e+02 1 0 0 0 0 P 13 22 1.4496435542527097e-01 6.9557169361632731e-01 1.5473401430257159e+01 1.5489705822487025e+01 1 0 0 0 0 V -9 0 0 0 0 0 2 1 0 P 116 1 -3.4933843168561007e-01 -3.5075788562810800e-01 -1.3740541647468454e+00 1.4605113083578003e+00 2 0 0 -9 0 P 117 -1 3.4933843168561007e-01 3.5075788562810800e-01 -9.5423591836400767e-01 1.0750044753762023e+00 2 0 0 -9 0 P 124 91 0 0 -2.3282900831108533e+00 2.5355157837340023e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 125 -211 -9.7506281867387828e-02 -1.6567436134807093e-01 -4.7344885095838174e-02 2.4223292933957546e-01 1 0 0 0 0 P 126 211 9.7506281867387828e-02 1.6567436134807093e-01 -2.2809451980150151e+00 2.2932828543944268e+00 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 127 92 -1.1331556688751701e+00 1.0724099025086125e+00 -2.4974789164748040e+03 2.5072735567078926e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 23 0 P 128 -211 -5.3144075686221970e-01 1.0222566269073003e+00 3.5501630110011577e+00 3.7350468643500294e+00 1 0 0 0 0 P 129 223 5.1052793807063979e-01 3.7377926589243380e-03 -7.3832325904346652e-01 1.1912143102111321e+00 2 0 0 -25 0 P 130 223 -6.7980293948721904e-02 2.8117711162848102e-01 -5.7792284098610081e-01 1.0180190773083682e+00 2 0 0 -26 0 P 131 113 6.2080858143120743e-01 6.0199952370884810e-02 -1.1195401288222389e+00 1.5300675941135422e+00 2 0 0 -27 0 P 132 -311 -2.2825215977304525e-01 -4.6001086979558325e-01 -1.4008672310623200e+00 1.5728361252003846e+00 2 0 0 -28 0 P 133 323 -1.7896231159442544e-01 3.2919128611090098e-01 -8.3945564491432390e-01 1.2287486458585728e+00 2 0 0 -29 0 P 134 223 1.7234825591206271e-01 3.1530308772422583e-01 -8.2608994470471619e-01 1.1912034808242860e+00 2 0 0 -30 0 P 135 111 -9.4558018500305402e-02 1.6356809536857243e-02 -3.0890237981151442e-01 3.5049828064363775e-01 2 0 0 -31 0 P 136 -323 -3.1366278722632779e-01 -1.3501190604184621e-01 -5.8152778902626965e+00 5.8877055606123605e+00 2 0 0 -32 0 P 137 323 -7.6063884483943855e-02 -1.5334571494036736e-01 -5.8493718718124459e+00 5.9184579784246187e+00 2 0 0 -33 0 P 138 -213 3.0011328528370179e-01 5.0689559442465115e-02 -1.6495988444568273e+01 1.6520533152347088e+01 2 0 0 -34 0 P 139 331 -1.0679798443554327e-01 -6.8438790676717279e-02 -1.6105347217778011e+01 1.6134297691030934e+01 2 0 0 -35 0 P 140 211 -4.7016220535410669e-01 -9.1586511170435606e-02 -1.1612493094471530e+02 1.1612600271811722e+02 1 0 0 0 0 P 141 -211 1.5433852535823833e-01 2.2070416586911615e-01 -2.9729239339432633e+02 2.9729254814176056e+02 1 0 0 0 0 P 142 221 1.3049985304850631e-01 -5.9322707704690691e-01 -2.6932974224066510e+02 2.6933098356019531e+02 2 0 0 -36 0 P 143 223 -4.1101307696033801e-01 2.6693361678289890e-01 -4.3127998422108061e+02 4.3128096514701468e+02 2 0 0 -37 0 P 144 211 4.1054634892557790e-01 1.2326427497805471e-01 -8.0977723096288685e+01 8.0978977889512834e+01 1 0 0 0 0 P 145 223 -7.6614295950571876e-01 2.6422061138178343e-01 -8.0515928541486471e+02 8.0516008227539385e+02 2 0 0 -38 0 P 146 -211 7.4425249040835961e-01 -2.6712562086228903e-01 -1.6068261020479275e+02 1.6068461646927210e+02 1 0 0 0 0 P 147 213 -2.1861473561276429e-01 -7.7242963722716518e-01 -2.3746600607738023e+02 2.3746900969113449e+02 2 0 0 -39 0 P 148 113 -5.0840765889616024e-01 7.9395450516305710e-01 -2.8411530488314543e+01 2.8435907720498498e+01 2 0 0 -40 0 P 149 -211 -6.4896229801351429e-02 8.1995280638267859e-02 -1.8376618361533755e+01 1.8377445876319399e+01 1 0 0 0 0 P 150 111 -1.3963588435849167e-01 -2.1639865092329461e-01 -5.8511681880765636e+00 5.8583884577485277e+00 2 0 0 -41 0 V -13 0 0 0 0 0 62 1 0 P 23 21 -4.2558990380049305e-01 -3.6652561067324091e-02 3.4102375408661295e-01 5.4659617388071202e-01 2 0 0 -13 0 P 24 21 -2.2177511285183216e+00 1.6430846541122073e-02 7.6276247703710898e-01 2.3453137609151860e+00 2 0 0 -13 0 P 25 21 -1.0522102416632771e+01 4.5971570978514249e+00 -1.7833639653700410e+00 1.1620192755777131e+01 2 0 0 -13 0 P 26 21 -1.4839306651887794e+00 1.0123762884171605e+00 6.7643404413229757e-01 1.9195100897098962e+00 2 0 0 -13 0 P 27 21 -1.0121679005386577e+01 2.3799685503980445e+01 5.3161447748330994e+00 2.6403310611426090e+01 2 0 0 -13 0 P 28 21 -1.0073197382025285e+00 1.8959424739631661e+00 -3.2066411552797663e-01 2.1707409782231784e+00 2 0 0 -13 0 P 29 21 -3.3221859710811588e+00 4.2035329620073920e+00 -5.1356472612804911e+00 7.4216899545473405e+00 2 0 0 -13 0 P 30 21 -3.2674029175344996e+00 2.0663679166525566e+00 -4.3304222893539146e+00 5.8050284578645419e+00 2 0 0 -13 0 P 31 21 -1.4547013008931733e+00 6.0476590285027787e-01 -2.3484674699782859e+00 2.8279315991757676e+00 2 0 0 -13 0 P 32 21 -4.5828849719107820e+00 3.0729386185003844e+00 -6.3600643466217814e+00 8.4199884151943039e+00 2 0 0 -13 0 P 33 21 -2.6425191693100478e+00 3.5134708349685853e+00 -6.5655360655233128e+00 7.9014966111511598e+00 2 0 0 -13 0 P 34 21 -3.5148923790076730e-01 3.5265935643821222e-01 -8.7207698514434173e-01 1.0042069378678484e+00 2 0 0 -13 0 P 35 21 -1.8964373176552702e+00 9.7063749425126700e-01 -7.4800308386410848e+00 7.7774978619131447e+00 2 0 0 -13 0 P 36 21 -9.3960035170327783e-01 2.1846731909457021e-01 -4.2727250179917888e+00 4.3802689266535024e+00 2 0 0 -13 0 P 37 21 -1.0304986824760289e+00 3.9540769749557403e-01 -5.5343952375009513e+00 5.6433859895187739e+00 2 0 0 -13 0 P 38 21 -6.8107916700425120e-01 -6.9383455670473471e-01 -4.0216319744152731e+00 4.1374870345952930e+00 2 0 0 -13 0 P 39 21 -1.9988776016792793e+00 -2.9567431434453448e+00 -3.4298704089848997e+01 3.4483893978578323e+01 2 0 0 -13 0 P 40 21 -1.3905376285482849e+00 -1.0023346343082498e+00 -3.1587066882634204e+01 3.1633543333991991e+01 2 0 0 -13 0 P 41 21 -1.2623100866544219e+00 -1.0388992725735120e+00 -3.8358158850104552e+01 3.8392982286132415e+01 2 0 0 -13 0 P 42 21 -4.3197608796821738e+00 -3.1601148819602516e+00 -1.5115528602386883e+02 1.5125001538208983e+02 2 0 0 -13 0 P 43 21 -1.1939504963919689e-01 -4.5808754649506298e+00 -2.3725761707720332e+02 2.3730186585097914e+02 2 0 0 -13 0 P 44 21 -8.4225249075781036e-02 -3.5405091179820825e+00 -2.1989737580768494e+02 2.1992589248611296e+02 2 0 0 -13 0 P 45 21 -7.0004805125896468e+00 -3.4047369808490224e-01 -1.4343064561697458e+03 1.4343235802495758e+03 2 0 0 -13 0 P 46 21 4.3197608796821738e+00 3.1601148819602516e+00 -5.5092203982485694e+02 5.5094803804433866e+02 2 0 0 -13 0 P 47 21 -1.5281776336328485e+00 1.7688384032189193e+00 -1.5107767268891206e+02 1.5109575540456021e+02 2 0 0 -13 0 P 48 21 1.1939504963919689e-01 4.5808754649506298e+00 -2.4465858928664815e+02 2.4470149976437833e+02 2 0 0 -13 0 P 49 21 8.4225249075781036e-02 3.5405091179820825e+00 -9.2960303028627592e+01 9.3027739077553449e+01 2 0 0 -13 0 P 50 21 1.9988776016792793e+00 2.9567431434453448e+00 -6.8710027656851139e+01 6.8802657959471702e+01 2 0 0 -13 0 P 51 21 5.3193535976324311e+00 -3.6964345011348057e+00 -1.2426644230800144e+02 1.2443515513955722e+02 2 0 0 -13 0 P 52 21 1.8163020077403840e+00 -1.0225145555807500e+00 -1.2009557448662246e+01 1.2189091808351231e+01 2 0 0 -13 0 P 53 21 1.2623100866544219e+00 1.0388992725735120e+00 -4.6708411395957770e+00 4.9486862301790406e+00 2 0 0 -13 0 P 54 21 3.6885896684190472e-01 3.0307860623893193e-02 -1.0476441642012073e+00 1.1110957648286313e+00 2 0 0 -13 0 P 55 21 7.0004805125896468e+00 3.4047369808490224e-01 -2.0047888604407483e+01 2.1237713795061993e+01 2 0 0 -13 0 P 56 21 1.8964373176552702e+00 -9.7063749425126700e-01 -6.5830230591503813e+00 6.9191621055115871e+00 2 0 0 -13 0 P 57 21 4.4799405944219500e-01 -1.4037001611678230e+00 -2.2745191526793382e+00 2.7100756807999300e+00 2 0 0 -13 0 P 58 21 3.3221859710811588e+00 -4.2035329620073920e+00 -9.4544576684332196e+00 1.0867077748563633e+01 2 0 0 -13 0 P 59 21 1.4547013008931733e+00 -6.0476590285027787e-01 -2.8574768493228833e+00 3.2629850775764870e+00 2 0 0 -13 0 P 60 21 1.0304986824760289e+00 -3.9540769749557403e-01 -1.5894105917946559e+00 1.9350712677140915e+00 2 0 0 -13 0 P 61 21 1.0522102416632771e+01 -4.5971570978514249e+00 -1.1325976080582238e+01 1.6128429149373350e+01 2 0 0 -13 0 P 62 21 1.0121679005386577e+01 -2.3799685503980445e+01 -1.6841651210241888e+01 3.0862835765105942e+01 2 0 0 -13 0 P 63 21 9.2108886106139620e-01 -9.3406477610320460e-01 -3.5246329532351389e-01 1.3583490238073646e+00 2 0 0 -13 0 P 64 21 6.0854916893600319e-01 -5.3149012741370405e-01 -3.1384326728517675e-01 8.6678223503436569e-01 2 0 0 -13 0 P 65 21 1.0073197382025285e+00 -1.8959424739631661e+00 2.8677094266573294e-01 2.1659936502924872e+00 2 0 0 -13 0 P 66 21 1.4839306651887794e+00 -1.0123762884171605e+00 6.2084627242776869e-01 1.9006330688547892e+00 2 0 0 -13 0 P 67 21 1.5281776336328485e+00 -1.7688384032189193e+00 8.3122059387097635e-01 2.4809360838830505e+00 2 0 0 -13 0 P 68 21 -7.8779233712078711e-01 -3.8776249637271092e+00 3.0825144027339610e+00 5.0158236780022687e+00 2 0 0 -13 0 P 69 21 1.3905376285482849e+00 1.0023346343082498e+00 4.9542147021185201e+00 5.2423766490237842e+00 2 0 0 -13 0 P 70 21 1.6956243401785520e+00 4.9359751230365112e-01 2.7167406894664707e+00 3.2402870831086954e+00 2 0 0 -13 0 P 71 21 4.5828849719107820e+00 -3.0729386185003844e+00 8.6102203541626654e+00 1.0226518516390307e+01 2 0 0 -13 0 P 72 21 3.5148923790076730e-01 -3.5265935643821222e-01 6.1861717716259423e-01 7.9410359394986541e-01 2 0 0 -13 0 P 73 21 2.4406500816413526e+00 -4.2899981569938932e+00 1.6290135335060231e+01 1.7021438430479513e+01 2 0 0 -13 0 P 74 21 2.6425191693100478e+00 -3.5134708349685853e+00 1.6581804923497256e+01 1.7154697298094877e+01 2 0 0 -13 0 P 75 21 3.2674029175344996e+00 -2.0663679166525566e+00 1.2975501422852753e+01 1.3539181488071494e+01 2 0 0 -13 0 P 76 21 2.2177511285183216e+00 -1.6430846541122073e-02 3.6002281440105754e+01 3.6070527566606863e+01 2 0 0 -13 0 P 77 21 7.8779233712078711e-01 3.8776249637271092e+00 1.4127172616641948e+02 1.4132712834472213e+02 2 0 0 -13 0 P 78 21 -4.3757872082178884e-01 8.2210068814098125e-01 3.7618032027634726e+01 3.7629558306077818e+01 2 0 0 -13 0 P 79 21 -6.0854916893600319e-01 5.3149012741370405e-01 9.1489662015537085e+00 9.1845738280947486e+00 2 0 0 -13 0 P 80 21 -1.2036559975856105e+00 3.1730492796060461e-01 2.3909651245576246e+01 2.3942031928449968e+01 2 0 0 -13 0 P 81 21 -3.6885896684190472e-01 -3.0307860623893193e-02 1.3026901125781635e+01 1.3032157474674946e+01 2 0 0 -13 0 P 82 21 -3.5113013765072396e+00 -1.5102986058820400e+00 2.0131931995251125e+02 2.0135560291528316e+02 2 0 0 -13 0 P 83 21 -1.8163020077403840e+00 1.0225145555807500e+00 2.1028935912892720e+02 2.1029968866323748e+02 2 0 0 -13 0 P 84 21 -5.3193535976324311e+00 3.6964345011348057e+00 6.1224868067244734e+02 6.1228294614162678e+02 2 0 0 -13 0 P 151 92 -2.1888639784839388e+00 -1.0773633034824538e+01 6.8529984298748263e+02 7.8040625915464398e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 136 0 P 152 211 1.0520443983331029e+00 -1.0438991469906358e+00 5.2107490499631952e+00 5.4192165754603474e+00 1 0 0 0 0 P 153 -213 2.5010437978830075e-01 -8.5654961689099696e-01 2.5273938183632523e+00 2.7975481441152428e+00 2 0 0 -42 0 P 154 211 -4.4041632021085249e-02 -5.2048659303822284e-02 5.2429059175826276e-01 5.4681728007867070e-01 1 0 0 0 0 P 155 -211 1.0215465329895816e-01 -2.4353654059048049e-01 6.4442083876022027e-01 7.1028418405722282e-01 1 0 0 0 0 P 156 323 1.8890511461982035e-02 -1.3948061080517167e+00 5.8898112361090780e+00 6.1169270784868326e+00 2 0 0 -43 0 P 157 -323 4.9571586735733741e-01 -5.8498094614865681e-01 3.6939728986324933e+00 3.8723128915395684e+00 2 0 0 -44 0 P 158 221 8.0871204737868602e-03 1.6958829837682970e-01 3.1580730564262409e+00 3.2096654848580850e+00 2 0 0 -45 0 P 159 111 -6.3961048909656926e-01 -3.6836999899913409e-01 2.5556586171708422e+00 2.6635331050776441e+00 2 0 0 -46 0 P 160 211 5.7761554913362412e-01 5.8689437264464228e-01 3.9888229635776344e+00 4.0753249130476883e+00 1 0 0 0 0 P 161 111 -9.3311519197163306e-01 -4.2201048184719470e-01 2.0571954096360519e+00 2.3019707561358813e+00 2 0 0 -47 0 P 162 311 -4.9462975411311262e-02 5.4657580232646674e-01 2.3302515224276483e+00 2.4451869622386209e+00 2 0 0 -48 0 P 163 -321 -7.4235535614072534e-01 9.3121815871022612e-02 2.9901130814827730e+00 3.1215669698784847e+00 1 0 0 0 0 P 164 213 -1.0057615599774634e+00 8.4237484217752942e-02 1.5347995183397110e+00 2.0575214652798022e+00 2 0 0 -49 0 P 165 -213 -4.8060380612791169e+00 2.5739284192737246e+00 -8.7028196095455435e-01 5.5931858646769168e+00 2 0 0 -50 0 P 166 113 -2.2394375114852103e+00 7.6419468414451186e-01 4.8508994117964521e-01 2.5311694525077542e+00 2 0 0 -51 0 P 167 111 -3.6655917250068826e+00 1.6519210063041272e+00 -7.2840524128689721e-01 4.0883003193799246e+00 2 0 0 -52 0 P 168 213 -1.9831238614205671e+00 1.6199953838093737e+00 6.8355911593227392e-01 2.7746012128085407e+00 2 0 0 -53 0 P 169 311 -2.4553592648254549e-01 9.4030805112059901e-01 2.8285561708192503e-01 1.1278962058676578e+00 2 0 0 -54 0 P 170 -323 -3.0555920116619668e+00 5.6226729529716053e+00 6.5875326058966788e-01 6.4873843239488629e+00 2 0 0 -55 0 P 171 211 -5.9340879917975842e-01 1.7857517586856975e+00 4.5253712290722053e-01 1.9404414392354565e+00 1 0 0 0 0 P 172 221 -2.1206144849268913e+00 4.1019546421738431e+00 1.0622350412719868e+00 4.7698094789560930e+00 2 0 0 -56 0 P 173 -211 -7.9953461497977274e-01 7.2074972638350887e-01 -1.5802023203436190e-02 1.0855713967630494e+00 1 0 0 0 0 P 174 211 -2.3095703597071238e-01 1.1054292829752299e+00 2.3366584258262518e-01 1.1616344360483446e+00 1 0 0 0 0 P 175 331 -2.9414582953071031e+00 7.2370032376802893e+00 1.9100462158944616e+00 8.0988683205864067e+00 2 0 0 -57 0 P 176 -213 -1.5771493835268173e+00 2.8542180726349851e+00 -3.0048375305201441e-01 3.3822619468915809e+00 2 0 0 -58 0 P 177 2114 -2.4105961059110954e+00 2.9835577864615277e+00 -3.4145941756696141e+00 5.2693555372954588e+00 2 0 0 -59 0 P 178 -2114 -3.1431765646085714e+00 2.2388675847489132e+00 -4.9511651549663318e+00 6.4237960995367152e+00 2 0 0 -60 0 P 179 223 -8.9183099928949994e-01 1.3184926647996849e+00 -2.0906411877278330e+00 2.7415670112549195e+00 2 0 0 -61 0 P 180 213 -3.5622014532232176e+00 3.4527410449562361e+00 -5.1400841381240303e+00 7.1747893179186581e+00 2 0 0 -62 0 P 181 -211 -3.4824901168865546e-01 2.6640719722011325e-01 -4.3892860195121586e-01 6.3591530205181468e-01 1 0 0 0 0 P 182 211 -4.9251195094842548e-01 5.5239360845997731e-01 -1.1107527596631901e+00 1.3419978384833007e+00 1 0 0 0 0 P 183 113 -4.9890837451704186e+00 3.3172360890687456e+00 -8.8514320628893586e+00 1.0720661336100617e+01 2 0 0 -63 0 P 184 -211 -5.8536912942963215e-01 7.3654463033297901e-01 -5.0357372036698846e+00 5.1247716026654828e+00 1 0 0 0 0 P 185 2212 -1.3246420740435501e+00 3.6241704940073499e-01 -3.9532928988474474e+00 4.2889273809427451e+00 1 0 0 0 0 P 186 -2112 -1.2931686864860117e+00 -2.1405793837505718e-01 -6.6950678882867853e+00 6.8865689473320613e+00 1 0 0 0 0 P 187 1114 -1.0687746964811395e+00 -7.7489621056862412e-01 -1.2785059963860034e+01 1.2914857988392816e+01 2 0 0 -64 0 P 188 -1114 -1.3444229932098453e+00 -3.1539782253039633e-01 -2.0773954382685748e+01 2.0857296024957844e+01 2 0 0 -65 0 P 189 113 -8.8056401584945843e-01 -1.0200200590354376e+00 -2.0057037325999989e+01 2.0113909656857661e+01 2 0 0 -66 0 P 190 223 -8.6456328472097921e-01 -1.1757586303143390e+00 -2.6289245041728375e+01 2.6341859407365000e+01 2 0 0 -67 0 P 191 223 -1.8081575818231221e+00 -7.8841834511491637e-01 -5.4333389086391925e+01 5.4374765591376651e+01 2 0 0 -68 0 P 192 331 -1.3632645966078540e+00 -1.6376479419915919e+00 -4.4063965744501772e+01 4.4125854818402914e+01 2 0 0 -69 0 P 193 113 -2.6577389524392708e-01 -7.2666263359403604e-01 -3.5628501472707420e+01 3.5644139379426058e+01 2 0 0 -70 0 P 194 -213 -2.8468785291863774e-01 -1.3218491929323617e+00 -4.1906645660515700e+01 4.1936580319121241e+01 2 0 0 -71 0 P 195 223 -2.0394372661947573e+00 -1.7303470807293666e+00 -1.1031978665215739e+02 1.1035492498392902e+02 2 0 0 -72 0 P 196 213 1.9354095196793032e-02 -2.4196459252945646e+00 -1.2533564266359362e+02 1.2536142343932552e+02 2 0 0 -73 0 P 197 -211 -5.7930508266581993e-01 -4.3704582556950061e-01 -7.2735645920928761e+01 7.2739399713993180e+01 1 0 0 0 0 P 198 213 2.1648749816966145e-01 -1.6157190620109430e+00 -1.0909623951236736e+02 1.0911112839172367e+02 2 0 0 -74 0 P 199 -211 -3.3348108274860888e-01 -3.7617706628683195e-01 -6.3874707957206944e+01 6.3876838644544129e+01 1 0 0 0 0 P 200 211 -2.9881419447460200e-01 -3.0149728738835718e-01 -1.7960536121131106e+01 1.7966093845922025e+01 1 0 0 0 0 P 201 113 -6.4958710608427350e-01 -6.7962441637776067e-02 -1.3102985774352032e+02 1.3103498004452874e+02 2 0 0 -75 0 P 202 311 2.7162778169678620e-01 -2.8627754461386645e-01 -4.3900057562294734e+01 4.3904651984567984e+01 2 0 0 -76 0 P 203 -311 -2.1818283436060484e+00 -1.0409004061438667e+00 -4.5134283621901437e+02 4.5134958439133339e+02 2 0 0 -77 0 P 204 1114 3.8432013613266015e-02 2.1822793353422223e-01 -8.1248768777556108e+01 8.1256669041818043e+01 2 0 0 -78 0 P 205 -2114 -2.3642768750173597e+00 -3.8111790157011616e-01 -6.0164922899971702e+02 6.0165522597241659e+02 2 0 0 -79 0 P 206 331 1.4407060213218142e-01 1.0838702395334734e+00 -2.0994248983331755e+02 2.0994752158052736e+02 2 0 0 -80 0 P 207 111 5.4695158996353888e-01 -3.6620644037301764e-01 -1.0220912850850839e+02 1.0221133710732833e+02 2 0 0 -81 0 P 208 213 5.3358223057991749e-01 1.5609214771556559e+00 -1.5310714213768514e+02 1.5311733601456123e+02 2 0 0 -82 0 P 209 -211 2.6116038590878671e-01 4.6560802414091235e-01 -6.3852115573982786e+01 6.3854499752464328e+01 1 0 0 0 0 P 210 113 -3.5788704089531947e-01 9.4471630669149498e-01 -5.5858854614237217e+01 5.5873710411365010e+01 2 0 0 -83 0 P 211 223 -1.7986673502806977e-01 1.2661180158498846e+00 -1.1597020414698636e+02 1.1597987922324356e+02 2 0 0 -84 0 P 212 111 1.0317261898715153e+00 1.6188433537474891e+00 -1.2204347718981047e+02 1.2205864843146114e+02 2 0 0 -85 0 P 213 323 2.6494897554143709e-01 8.4610790552058157e-01 -3.6358260025368416e+01 3.6380004468514620e+01 2 0 0 -86 0 P 214 -313 -2.2839989785979437e-01 1.7314109462960801e+00 -8.9035273545642156e+01 8.9057313941967465e+01 2 0 0 -87 0 P 215 1114 5.8494085287990982e-01 1.0880145851068885e+00 -5.1226937632988033e+01 5.1259001407392326e+01 2 0 0 -88 0 P 216 213 -5.6068000742978399e-03 1.5687935941536062e+00 -7.7714457243134177e+01 7.7738533115494732e+01 2 0 0 -89 0 P 217 -2214 -6.8259607555323357e-02 1.5344815507982337e+00 -7.0413351030994789e+01 7.0440855829837190e+01 2 0 0 -90 0 P 218 2224 1.0417545077554458e+00 1.6140358336649507e+00 -5.6923081197978171e+01 5.6968640723017941e+01 2 0 0 -91 0 P 219 -213 2.4217035191570044e+00 -1.1119073096292569e+00 -4.2914679493479404e+01 4.3003681831578923e+01 2 0 0 -92 0 P 220 -2112 7.4474377545181525e-01 -2.0894630534078820e-01 -1.4820470534214998e+01 1.4870354417095266e+01 1 0 0 0 0 P 221 -211 2.3974461340917306e+00 -1.8008303870125206e+00 -4.9545078574149244e+01 4.9635924779862627e+01 1 0 0 0 0 P 222 213 8.7783027604542962e-01 1.9718254681593650e-01 -1.0794757596074913e+01 1.0855122624616902e+01 2 0 0 -93 0 P 223 113 1.9464318004338096e-01 -1.1097161836602148e-01 -4.8964574137062931e+00 4.9569194358122717e+00 2 0 0 -94 0 P 224 113 1.4406831413002366e+00 -1.9734590809408911e-01 -5.7929288005320840e+00 6.0075810404550136e+00 2 0 0 -95 0 P 225 -211 2.6813015732299211e-01 2.0363279251256816e-04 -2.5768074895760722e+00 2.5944769118201272e+00 1 0 0 0 0 P 226 111 2.5288455079230090e+00 4.1142327462956324e-01 -6.9689882310575424e+00 7.4262605178425973e+00 2 0 0 -96 0 P 227 111 6.5808360076030992e-01 5.5900780498112812e-01 -2.9036056097314185e+00 3.0322778383392306e+00 2 0 0 -97 0 P 228 213 3.3339375302075522e+00 -5.2844361029254661e-01 -1.0061761418835957e+01 1.0639483223032553e+01 2 0 0 -98 0 P 229 -211 1.9454641068538243e+00 -3.1356635358532198e-01 -3.7626436557583296e+00 4.2497201689376851e+00 1 0 0 0 0 P 230 2214 1.4636432232259406e+00 -2.3078140576786916e+00 -7.0586657555375050e+00 7.6720540223349474e+00 2 0 0 -99 0 P 231 213 1.3956115240980960e+00 -5.4339191824799049e-01 -3.2865984545712958e+00 3.6787429265368097e+00 2 0 0 -100 0 P 232 -2214 2.8648664037012854e+00 -2.8290045973525815e+00 -6.2500526136635335e+00 7.5471653610172726e+00 2 0 0 -101 0 P 233 -213 1.4653566738433033e+00 -7.0377729576686932e-01 -2.6025197943465090e+00 3.1466783577705235e+00 2 0 0 -102 0 P 234 331 2.8904642273046033e+00 -1.6578197026898058e+00 -3.5993082650744377e+00 4.9975299637173993e+00 2 0 0 -103 0 P 235 211 4.2155648542712770e-01 -3.7125706203664260e-02 -7.7396631742451072e-01 8.9307997059303224e-01 1 0 0 0 0 P 236 -211 2.3979234619310086e+00 -2.0952205254145468e+00 -3.6571152047682096e+00 4.8511810299394540e+00 1 0 0 0 0 P 237 323 1.5393467542895345e+00 -3.2004917135439170e-01 -1.9795587740818890e+00 2.6741895952769639e+00 2 0 0 -104 0 P 238 -321 2.7461161953106608e+00 -2.5605978991759457e+00 -3.1108323892437437e+00 4.9008912325596148e+00 1 0 0 0 0 P 239 113 6.7536829019627398e-01 -1.1646925528770369e+00 -1.3218112959587216e+00 2.0439782343164317e+00 2 0 0 -105 0 P 240 221 1.5077989915290158e+00 -2.7370621821846779e+00 -2.0215340624493892e+00 3.7618172013196762e+00 2 0 0 -106 0 P 241 213 1.6442057442953033e+00 -4.0797727284941798e+00 -3.1067005257498854e+00 5.4578523064811515e+00 2 0 0 -107 0 P 242 221 2.2616540050608922e+00 -3.0623258739596992e+00 -2.3292131524875690e+00 4.4964268046029714e+00 2 0 0 -108 0 P 243 -211 6.3539171198211974e-01 -2.6721591969501697e+00 -1.8587129981947472e+00 3.3194052473386026e+00 1 0 0 0 0 P 244 211 1.3484550959391051e+00 -2.4089722122567490e+00 -2.0156045900983375e+00 3.4210553801005328e+00 1 0 0 0 0 P 245 311 1.9689396359732416e+00 -2.9250125098724342e+00 -1.8651629399316361e+00 4.0198171220107888e+00 2 0 0 -109 0 P 246 -323 3.4905847976717097e-01 -1.4502677293797532e+00 -2.7091929486861266e-01 1.7577665557781506e+00 2 0 0 -110 0 P 247 113 1.1787752697746843e+00 -1.9869747474125705e+00 -5.6981630929774441e-01 2.5063265312538539e+00 2 0 0 -111 0 P 248 211 9.0362421674847426e-01 -1.8511986936421003e+00 -6.6188340853591965e-01 2.1681888201518889e+00 1 0 0 0 0 P 249 3112 8.2901240423524569e-01 -1.1827507069815140e+00 -2.1967977335192077e-01 1.8889898246579109e+00 2 0 0 -112 0 P 250 323 1.2537014617667548e+00 -1.7520063505393280e+00 -2.5467397598109301e-02 2.3319859883054290e+00 2 0 0 -113 0 P 251 -3122 1.0861896032885885e+00 -1.5778114230696205e+00 9.7351220706834452e-01 2.4211081390083100e+00 2 0 0 -114 0 P 252 -313 -3.0137902739070055e-01 -9.4214992434425815e-01 1.4529354700302928e+00 1.9637863209949860e+00 2 0 0 -115 0 P 253 223 3.9407134967809543e-01 -1.0584905713203911e+00 9.8162621912783177e-01 1.6853875475054940e+00 2 0 0 -116 0 P 254 223 4.3655943968484351e-01 -3.0535021491348857e-01 1.4790635775847321e+00 1.7542565085284902e+00 2 0 0 -117 0 P 255 -211 1.8398237774568255e-01 1.6557426218611634e-01 7.6943188761747583e-01 8.2022531428993573e-01 1 0 0 0 0 P 256 221 1.0402651578794067e-01 -1.5704209078092823e-01 1.4148421233161252e+00 1.5287130112200609e+00 2 0 0 -118 0 P 257 223 6.8651957458626922e-01 -6.6748734642579327e-02 7.3831922878286926e-01 1.2747000951250691e+00 2 0 0 -119 0 P 258 211 6.5236917786138227e-01 -1.4277978045704556e-01 1.6567098771809212e+00 1.7916860807573745e+00 1 0 0 0 0 P 259 313 1.6520145498562795e+00 -9.2720329442859950e-01 2.8084040891010074e+00 3.5099186682443619e+00 2 0 0 -120 0 P 260 -311 1.1625962621355042e+00 -3.1873747786317252e-01 4.6261690148754990e+00 4.8064892418084293e+00 2 0 0 -121 0 P 261 -211 1.4036275256518120e+00 -1.4896894309844029e+00 3.1698076684137377e+00 3.7757787635385363e+00 1 0 0 0 0 P 262 113 2.1160465244134010e+00 -2.3939860260489896e+00 1.1375522016034855e+01 1.1835655066799067e+01 2 0 0 -122 0 P 263 213 1.5869270015302843e+00 -1.0936453126887016e+00 5.8111558754106420e+00 6.2262958010412790e+00 2 0 0 -123 0 P 264 -211 1.5071468059430895e+00 -9.5099336184728200e-01 5.3467885740195680e+00 5.6376863791016483e+00 1 0 0 0 0 P 265 211 4.4537704856103574e-02 -4.3252315334750646e-01 6.4489603923117667e-01 7.9020919486651087e-01 1 0 0 0 0 P 266 -211 1.7833728663588728e+00 -2.8617295135373615e+00 1.1648818444759593e+01 1.2127834329878816e+01 1 0 0 0 0 P 267 213 8.6850471083792780e-01 -4.7712672397129452e-01 8.8059660184140878e+00 8.9148884867425426e+00 2 0 0 -124 0 P 268 -213 1.0212129565171406e+00 -3.6634775229162647e-01 9.1409671982338612e+00 9.2338097392566549e+00 2 0 0 -125 0 P 269 223 7.5492060011653306e-01 -6.0244840906949715e-01 5.3817923025099192e+00 5.5242445987559190e+00 2 0 0 -126 0 P 270 221 9.3374019964427302e-01 -3.1898597686091351e-01 6.3301824624807681e+00 6.4299715648410700e+00 2 0 0 -127 0 P 271 113 -2.2628447168300262e-02 -7.5771693581755650e-01 8.9471971358606890e+00 9.0095515603004408e+00 2 0 0 -128 0 P 272 2212 1.1957200490941451e+00 2.7842218550546689e+00 7.5345926024839926e+01 7.5412668411265756e+01 1 0 0 0 0 P 273 213 -1.4987770389893237e-01 -1.6927405039981111e-01 3.0130330630342243e+01 3.0138628440883561e+01 2 0 0 -129 0 P 274 -2214 3.0011490187134304e-01 2.8895787119429066e+00 7.8069935968726668e+01 7.8135738977304797e+01 2 0 0 -130 0 P 275 -213 -1.4015806028406650e+00 1.5106579248434082e-01 5.9432860546431542e+01 5.9455908159187537e+01 2 0 0 -131 0 P 276 213 -1.5911853237716771e+00 -4.8381603838062326e-01 5.4575356398840391e+01 5.4606678254351777e+01 2 0 0 -132 0 P 277 -211 -1.3995652915932502e-01 -1.2791013189661163e-01 3.0890003824106692e+01 3.0890901004504904e+01 1 0 0 0 0 P 278 2214 -1.1754489059441704e+00 1.4707596104494372e-01 1.1179740188824846e+02 1.1181069540111811e+02 2 0 0 -133 0 P 279 -2214 -3.6478208742332794e+00 1.6393467582872070e+00 3.1422837893598683e+02 3.1425627656388701e+02 2 0 0 -134 0 P 280 323 -1.0419686123345917e+00 -1.7457288489804909e-01 1.1150122752340833e+02 1.1150910392822023e+02 2 0 0 -135 0 P 281 333 -1.2157105304038520e+00 1.1249908325600706e+00 2.0392137396473802e+02 2.0393064325489976e+02 2 0 0 -136 0 P 282 3122 -1.8807907362174541e+00 -1.6646518633031013e-01 2.5761761150915157e+02 2.5762694654479418e+02 2 0 0 -137 0 P 283 -213 -1.9207549484052744e-01 4.3026090277201939e-01 2.6178425114972595e+02 2.6178569480067961e+02 2 0 0 -138 0 P 284 -1114 -8.9354742228842399e-01 7.6917981350107056e-01 4.0808479114679409e+02 4.0808852317343786e+02 2 0 0 -139 0 P 285 -213 -1.0355968572055166e-01 -6.0837365892383888e-01 3.2110679399890830e+02 3.2110838047498447e+02 2 0 0 -140 0 P 286 211 -6.3820460601982842e-01 1.7118645120261225e-01 5.2030405657628444e+02 5.2030449486761358e+02 1 0 0 0 0 P 287 2112 2.0121702327982427e-01 9.3449116451073608e-02 1.2263369913839651e+03 1.2263373713825606e+03 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 288 92 4.4087791624188730e+00 8.5795622022905582e-01 -8.0847527941062924e+02 8.1023327886574748e+02 2 0 0 -16 0 V -16 0 0 0 0 0 0 13 0 P 289 -213 1.0686058998222101e+00 1.1217509584804393e-01 -2.7830013157146793e+00 3.0669542201163624e+00 2 0 0 -141 0 P 290 211 3.0118183926896208e-01 3.2150087774301273e-01 -1.1258547904237250e+00 1.2170053856557137e+00 1 0 0 0 0 P 291 223 2.2770437959560388e+00 4.1527342373573506e-01 -5.9155482740362126e+00 6.3947143980660481e+00 2 0 0 -142 0 P 292 3112 1.2682283101393961e+00 -1.0269868968936931e-01 -5.5967786041419600e+00 5.8631683725511561e+00 2 0 0 -143 0 P 293 113 6.9611062476938101e-01 4.4489200454678512e-01 -1.1973972162742144e+00 1.6658895886409693e+00 2 0 0 -144 0 P 294 -3212 3.9701568390520009e-01 6.6206509235101074e-02 -9.8860357762167421e+00 9.9658358217597165e+00 2 0 0 -145 0 P 295 211 -3.2286495889437028e-01 6.7494378401957211e-02 -1.5610549751669467e+00 1.6016147143402519e+00 1 0 0 0 0 P 296 223 -5.6824655056656714e-01 1.5579160565453670e-01 -5.4945074641198744e+01 5.4953910893709093e+01 2 0 0 -146 0 P 297 113 -2.5427810099584569e-01 -4.0483983865906042e-01 -3.4702926725489775e+01 3.4713854101574036e+01 2 0 0 -147 0 P 298 311 -1.5383926908124421e-01 -1.1118497467405460e-01 -4.6423180776798752e+01 4.6426236305386006e+01 2 0 0 -148 0 P 299 -321 -1.9772031636424187e-02 8.8104835715730551e-02 -5.5453606834260087e+00 5.5680175524686071e+00 1 0 0 0 0 P 300 223 -1.2931128772374442e-01 -8.3573730733899967e-02 -2.5469627095033877e+02 2.5469752095148556e+02 2 0 0 -149 0 P 301 2224 -1.5109479254411956e-01 -1.1118527689546225e-01 -3.8409679468140263e+02 3.8409855655999388e+02 2 0 0 -150 0 V -17 0 0 0 0 0 12 1 0 P 96 1 2.2061781171336805e+00 -4.4204499382840270e+00 6.0226102010938462e+02 6.0228128307522388e+02 2 0 0 -17 0 P 97 21 -6.8127287449091412e-02 -4.6536283126181044e-01 6.8309266667804806e+01 6.8310885783931127e+01 2 0 0 -17 0 P 98 21 3.5113013765072396e+00 1.5102986058820400e+00 4.3942059873949637e+02 4.3943722286102832e+02 2 0 0 -17 0 P 99 21 1.2036559975856105e+00 -3.1730492796060461e-01 6.9377515103261246e+01 6.9388681152483898e+01 2 0 0 -17 0 P 100 21 4.3757872082178884e-01 -8.2210068814098125e-01 2.8370610001157598e+01 2.8385891504691930e+01 2 0 0 -17 0 P 101 21 -9.2108886106139620e-01 9.3406477610320460e-01 5.3611732788527799e+00 5.5193351612140003e+00 2 0 0 -17 0 P 102 21 -8.1522017701846017e-01 -8.8077436468785497e-01 2.5329410223798585e+00 2.8028802402821329e+00 2 0 0 -17 0 P 103 21 -1.6956243401785520e+00 -4.9359751230365112e-01 2.6250066724640142e+00 3.1637699723018580e+00 2 0 0 -17 0 P 104 21 1.2191659968623254e-01 8.1011037581439793e-01 2.3722783761375736e+00 2.5097504202950383e+00 2 0 0 -17 0 P 105 21 -4.4799405944219500e-01 1.4037001611678230e+00 2.7264682234482915e+00 3.0991453327056724e+00 2 0 0 -17 0 P 106 21 -2.4406500816413526e+00 4.2899981569938932e+00 6.0504170464064211e-01 4.9726182713316529e+00 2 0 0 -17 0 P 107 -1 -2.2061781171336805e+00 4.4204499382840270e+00 1.0020189171469194e+00 5.0409960773358131e+00 2 0 0 -17 0 P 302 92 -1.1142521121901772e+00 5.9690317516064564e+00 1.2249639388161743e+03 1.2349124598528254e+03 2 0 0 -18 0 V -18 0 0 0 0 0 0 18 0 P 303 111 3.7233003015652411e-01 -2.0563914581909881e-01 6.1700398446961174e+01 6.1702012165113530e+01 2 0 0 -151 0 P 304 -211 1.1985365743797738e+00 -3.5746984884662503e+00 4.3573691803759476e+02 4.3575325148516112e+02 1 0 0 0 0 P 305 111 9.9264225557400443e-01 -8.3959691695391081e-01 1.4696968923682294e+02 1.4697550148102650e+02 2 0 0 -152 0 P 306 113 1.3787891920422402e+00 7.5411902978737322e-01 2.3023465306645039e+02 2.3024114946686325e+02 2 0 0 -153 0 P 307 3122 1.2107265645595489e+00 -4.8927217460589256e-01 1.3291281117501691e+02 1.3292390816697753e+02 2 0 0 -154 0 P 308 -3114 1.9404235888672721e+00 5.3921277930935607e-01 1.2858301379810169e+02 1.2860666738857296e+02 2 0 0 -155 0 P 309 113 -4.6664411472924350e-01 -3.4667383292036280e-02 5.5077553394795586e+01 5.5084497205453040e+01 2 0 0 -156 0 P 310 223 2.5066664106057446e-01 -4.3787769869363735e-01 9.4013787617154314e+00 9.4479473647451488e+00 2 0 0 -157 0 P 311 -213 1.8148700867714673e-01 1.2808301366487387e-01 7.1472660657448035e+00 7.1943756906703840e+00 2 0 0 -158 0 P 312 213 -6.3586919571426104e-01 -4.3057277787054360e-01 3.4062658427362682e+00 3.5844337510633024e+00 2 0 0 -159 0 P 313 111 -5.4724866005940398e-01 1.3065780585676104e-01 2.7833729019187632e+00 2.8428747544877515e+00 2 0 0 -160 0 P 314 -213 -7.1311536921652663e-01 5.7659925917347710e-01 2.4853147950084522e+00 2.7678835387635736e+00 2 0 0 -161 0 P 315 213 -1.1986309033786851e+00 -5.6047318130754575e-01 2.8214074268819855e+00 3.2866736847654821e+00 2 0 0 -162 0 P 316 -213 -2.3429456999562809e-01 8.1054341086860759e-01 1.8916245124547173e+00 2.2252371034580998e+00 2 0 0 -163 0 P 317 223 -3.4784687845172862e-01 1.7777094829870443e+00 1.5191642797210239e+00 2.4903978644885019e+00 2 0 0 -164 0 P 318 223 -1.0621313516191107e+00 1.2081185239518120e+00 5.9345874509067920e-01 1.8892627077548971e+00 2 0 0 -165 0 P 319 321 -2.6307204311933092e+00 4.9844095560280994e+00 5.4257650588492146e-01 5.6835779957752353e+00 1 0 0 0 0 P 320 -311 -8.0335249314936497e-01 1.6323766569879674e+00 1.1570718232742099e+00 2.2128080376850625e+00 2 0 0 -166 0 V -19 0 0 0 0 0 5 1 0 P 108 2 1.6576220906814521e+00 -2.3767265655758762e-01 6.1357298342656588e+00 6.3601399266280279e+00 2 0 0 -19 0 P 109 21 9.3960035170327783e-01 -2.1846731909457021e-01 2.3530842535787109e+00 2.5431441750072628e+00 2 0 0 -19 0 P 110 21 8.1522017701846017e-01 8.8077436468785497e-01 -9.5719596952820826e-02 1.2039558379567394e+00 2 0 0 -19 0 P 111 21 6.8107916700425120e-01 6.9383455670473471e-01 -7.0278349356287839e-01 1.1996582274253382e+00 2 0 0 -19 0 P 112 -2 -1.6576220906814521e+00 2.3767265655758762e-01 -1.7292340648151077e+00 2.4071663295475179e+00 2 0 0 -19 0 P 321 92 2.4358996957259893e+00 1.3561416022980195e+00 5.9610769325135626e+00 1.3714064496564886e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 7 0 P 322 113 7.2356170928335739e-01 2.0357616549316022e-02 2.9664067813067212e+00 3.1280313035220808e+00 2 0 0 -167 0 P 323 213 5.9390456841307626e-01 -9.3798420274161728e-02 2.5614541777311128e+00 2.7385000707570994e+00 2 0 0 -168 0 P 324 221 8.6555097453534868e-01 5.1719606144414393e-03 2.4743288193714621e+00 2.6779114711968846e+00 2 0 0 -169 0 P 325 -211 1.1370244611001126e+00 3.0314323866130581e-02 2.8179564883701318e-02 1.1463060045853799e+00 1 0 0 0 0 P 326 213 -3.7604486702778966e-02 8.3462434703043109e-01 -5.0316114654595645e-01 1.2929056562031813e+00 2 0 0 -170 0 P 327 2112 -2.0378425005482331e-01 7.7464794003833368e-02 -4.4493416917765527e-01 1.0622085551727936e+00 1 0 0 0 0 P 328 -2212 -6.4275328084830308e-01 4.8200698050802882e-01 -1.1211970950558230e+00 1.6682014351274672e+00 1 0 0 0 0 V -21 0 0 0 0 0 3 1 0 P 113 2 -9.7045622143671695e-01 4.1909262487017634e-01 -2.3278009315956734e+01 2.3301998661482116e+01 2 0 0 -21 0 P 114 21 -6.5085955550268204e-01 -4.6512409631285764e-02 -3.5124618912129854e+01 3.5130679402590395e+01 2 0 0 -21 0 P 115 -2 9.7045622143671695e-01 -4.1909262487017634e-01 -3.7452170258484109e+01 3.7467085301320509e+01 2 0 0 -21 0 P 329 92 -6.5085955550268215e-01 -4.6512409631285778e-02 -9.5854798486570701e+01 9.5899763365393028e+01 2 0 0 -22 0 V -22 0 0 0 0 0 0 3 0 P 330 213 -5.2454760064057604e-01 3.3925284500828307e-01 -2.1166407903829871e+01 2.1187804205979749e+01 2 0 0 -171 0 P 331 113 -6.3538802420093210e-01 5.4903969117010260e-02 -4.0802285870031781e+01 4.0811295877020221e+01 2 0 0 -172 0 P 332 -213 5.0907606933882599e-01 -4.4066922375657908e-01 -3.3886104712709056e+01 3.3900663282393062e+01 2 0 0 -173 0 V -23 0 0 0 0 0 6 1 0 P 118 21 -9.9804945936276412e-01 -5.8064296534176496e-01 -2.4043505489442207e-01 1.1794312155260549e+00 2 0 0 -23 0 P 119 21 9.9804945936276412e-01 5.8064296534176496e-01 -8.7245990461720275e+00 8.8006748316820023e+00 2 0 0 -23 0 P 120 21 6.8127287449091412e-02 4.6536283126181044e-01 -3.0753166644530756e+00 3.1110732036835729e+00 2 0 0 -23 0 P 121 21 4.2558990380049305e-01 3.6652561067324091e-02 -1.8242915926645393e+00 1.8736355012424983e+00 2 0 0 -23 0 P 122 21 6.5085955550268204e-01 4.6512409631285764e-02 -5.1523791025185695e+00 5.1935336699889527e+00 2 0 0 -23 0 P 123 21 -1.2191659968623254e-01 -8.1011037581439793e-01 -7.2792108118722898e-01 1.0959067381479057e+00 2 0 0 -23 0 P 333 92 1.0226601470660339e+00 -2.6158257385397765e-01 -1.9744942541889866e+01 2.1254255160270986e+01 2 0 0 -24 0 V -24 0 0 0 0 0 0 6 0 P 334 113 -1.2966902418277207e-02 5.0856167052392587e-01 -4.6204792156455321e+00 4.7137923365413643e+00 2 0 0 -174 0 P 335 2112 -5.2965861143025328e-01 -1.0549655249930145e-01 -1.1189033543909628e+00 1.5576919684645005e+00 1 0 0 0 0 P 336 -2212 1.0290163157711132e+00 9.9567399613893215e-02 -4.1172656450887377e+00 4.3475297848682999e+00 1 0 0 0 0 P 337 213 -6.3402370652111198e-02 2.3964389544565287e-01 -3.3340114469188729e+00 3.4770329544589580e+00 2 0 0 -175 0 P 338 1114 6.0090237654818413e-02 -1.6420057915169201e-01 -3.2538272423831671e+00 3.4517338670524369e+00 2 0 0 -176 0 P 339 -1114 5.3958147814074398e-01 -8.3965840778645606e-01 -3.3004556374625897e+00 3.7064742488854261e+00 2 0 0 -177 0 V -25 0 0 0 0 0 0 3 0 P 340 -211 -4.0095871996602694e-02 -3.6448960844204105e-02 -8.5231961137155310e-02 1.7228023043017973e-01 1 0 0 0 0 P 341 211 2.8237206829562123e-01 2.4991457378219353e-01 -2.4624032768033771e-01 4.7149269667557153e-01 1 0 0 0 0 P 342 111 2.6825174177162125e-01 -2.0972782027906509e-01 -4.0685097022597355e-01 5.4744138310538093e-01 2 0 0 -178 0 V -26 0 0 0 0 0 0 3 0 P 343 211 1.2562501930652095e-01 3.8397093611738486e-01 -2.3042664245947389e-01 4.8558371854271515e-01 1 0 0 0 0 P 344 -211 -1.1711138206447884e-01 1.5966920214822409e-02 -2.6114353283261221e-01 3.1881930303934930e-01 1 0 0 0 0 P 345 111 -7.6493931190764003e-02 -1.1876074470372623e-01 -8.6352665694014619e-02 2.1361605572630354e-01 2 0 0 -179 0 V -27 0 0 0 0 0 0 2 0 P 346 -211 7.5378781664111855e-02 3.6141253104381493e-01 -3.2870842448281085e-01 5.1364383725168372e-01 1 0 0 0 0 P 347 211 5.4542979976709560e-01 -3.0121257867293016e-01 -7.9083170433942807e-01 1.0164237568618586e+00 1 0 0 0 0 V -28 0 0 0 0 0 0 1 0 P 348 130 -2.2825215977304525e-01 -4.6001086979558325e-01 -1.4008672310623200e+00 1.5728361252003848e+00 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 349 311 -2.4502658043940842e-01 4.0045520849499322e-01 -8.0278871714574462e-01 1.0547736972493715e+00 2 0 0 -180 0 P 350 211 6.6064268844982996e-02 -7.1263922384092196e-02 -3.6666927768579390e-02 1.7397494860920157e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 3 0 P 351 211 -3.3977651747801006e-02 3.0677083655410182e-02 -3.2553366578736170e-01 3.5713795197493864e-01 1 0 0 0 0 P 352 -211 1.1899554543974369e-01 -5.4692084857974485e-02 1.9768957141242958e-02 1.9241039615121189e-01 1 0 0 0 0 P 353 111 8.7330362220120028e-02 3.3931808892679016e-01 -5.2032523605859748e-01 6.4165513269813534e-01 2 0 0 -181 0 V -31 0 -1.0580409607244744e-05 1.8302175480451494e-06 -3.4564109515978869e-05 3.9218412511813922e-05 0 2 0 P 354 22 3.3402181446374572e-02 1.4073364751917007e-02 -5.0762432705776413e-02 6.2374593345572278e-02 1 0 0 0 0 P 355 22 -1.2796019994667998e-01 2.2834447849402356e-03 -2.5813994710573801e-01 2.8812368729806548e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 356 -321 -7.1420040165353429e-02 -2.4661119265386863e-01 -2.6170848642721491e+00 2.6755732188227923e+00 1 0 0 0 0 P 357 111 -2.4224274706097437e-01 1.1159928661202242e-01 -3.1981930259905473e+00 3.2121323417895677e+00 2 0 0 -182 0 V -33 0 0 0 0 0 0 2 0 P 358 321 -1.7150470518011149e-01 1.3115246403428368e-01 -2.7979872154878733e+00 2.8493838370347304e+00 1 0 0 0 0 P 359 111 9.5440820696167647e-02 -2.8449817897465107e-01 -3.0513846563245721e+00 3.0690741413898879e+00 2 0 0 -183 0 V -34 0 0 0 0 0 0 2 0 P 360 -211 2.5283601840832459e-01 -1.3556238981400012e-01 -1.5205901721537961e+01 1.5209248178779507e+01 1 0 0 0 0 P 361 111 4.7277266875377200e-02 1.8625194925646524e-01 -1.2900867230303128e+00 1.3112849735675802e+00 2 0 0 -184 0 V -35 0 0 0 0 0 0 3 0 P 362 111 -9.8760483284141901e-02 1.9607752911280033e-02 -1.3675135648493497e+00 1.3778428965160447e+00 2 0 0 -185 0 P 363 111 5.2446825063892720e-02 -1.1847008830458998e-01 -4.2697145861460299e+00 4.2738118909037563e+00 2 0 0 -186 0 P 364 221 -6.0484326215294093e-02 3.0423544716592671e-02 -1.0468119066782632e+01 1.0482642903611136e+01 2 0 0 -187 0 V -36 0 0 0 0 0 0 3 0 P 365 111 -9.5938763084326723e-02 -1.2790192577362786e-01 -4.9936873208078168e+01 4.9937311587118444e+01 2 0 0 -188 0 P 366 111 5.7073921540303829e-02 -2.3810829107469716e-01 -1.0508870991169579e+02 1.0508908184723923e+02 2 0 0 -189 0 P 367 111 1.6936469459252920e-01 -2.2721686019858195e-01 -1.1430415912089116e+02 1.1430459012583763e+02 2 0 0 -190 0 V -37 0 0 0 0 0 0 3 0 P 368 211 -3.0095542616326393e-01 -1.0429765205387454e-02 -1.0708790106920719e+02 1.0708841542455349e+02 1 0 0 0 0 P 369 -211 1.0973799420558733e-01 2.6342484556989409e-02 -8.0017053904793940e+01 8.0017255212494405e+01 1 0 0 0 0 P 370 111 -2.1979564500266144e-01 2.5102089743129696e-01 -2.4417502924707946e+02 2.4417529450996679e+02 2 0 0 -191 0 V -38 0 0 0 0 0 0 3 0 P 371 211 -1.5576809358930013e-01 -7.3534569533479407e-02 -3.1937561244431612e+02 3.1937568939260046e+02 1 0 0 0 0 P 372 -211 -3.0998606706290122e-02 6.3198273483141817e-02 -5.5164891209864805e+01 5.5165112679269569e+01 1 0 0 0 0 P 373 111 -5.7937625921012859e-01 2.7455690743212108e-01 -4.3061878176068382e+02 4.3061928020352383e+02 2 0 0 -192 0 V -39 0 0 0 0 0 0 2 0 P 374 211 2.4088007564756525e-01 -5.2848903160756910e-01 -8.7401198474890791e+01 8.7403239633891872e+01 1 0 0 0 0 P 375 111 -4.5949481126032954e-01 -2.4394060561959618e-01 -1.5006480760248945e+02 1.5006577005724264e+02 2 0 0 -193 0 V -40 0 0 0 0 0 0 2 0 P 376 -211 -2.8656491442920357e-01 4.2944508420509769e-01 -2.2859350537481490e+01 2.2865605815523125e+01 1 0 0 0 0 P 377 211 -2.2184274446695673e-01 3.6450942095795946e-01 -5.5521799508330547e+00 5.5703019049753744e+00 1 0 0 0 0 V -41 0 -4.4685019166822185e-05 -6.9249948955501676e-05 -1.8724381904672012e-03 1.8747487561943678e-03 0 2 0 P 378 22 2.5442604844583584e-02 -4.3943181021970562e-02 -1.2506497062972342e+00 1.2516800777998209e+00 1 0 0 0 0 P 379 22 -1.6507848920307527e-01 -1.7245546990132404e-01 -4.6005184817793294e+00 4.6067083799487065e+00 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 380 -211 1.1842445305739507e-02 -7.6072837499219570e-01 2.3069557611920555e+00 2.4331815741999820e+00 1 0 0 0 0 P 381 111 2.3826193448256125e-01 -9.5821241898801340e-02 2.2043805717119716e-01 3.6436656991526117e-01 2 0 0 -194 0 V -43 0 0 0 0 0 0 2 0 P 382 321 6.9082939363158860e-02 -4.2211725458482807e-01 1.9597442660854250e+00 2.0657187556838390e+00 1 0 0 0 0 P 383 111 -5.0192427901176818e-02 -9.7268885346688849e-01 3.9300669700236535e+00 4.0512083228029940e+00 2 0 0 -195 0 V -44 0 0 0 0 0 0 2 0 P 384 -311 4.7191817164383204e-01 -6.7596381966119112e-01 3.3982408254051157e+00 3.5320461467212807e+00 2 0 0 -196 0 P 385 -211 2.3797695713505391e-02 9.0982873512534382e-02 2.9573207322737749e-01 3.4026674481828723e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 386 22 -1.3525968932789708e-02 3.0617793166309659e-01 2.9062926066757218e+00 2.9224073284350736e+00 1 0 0 0 0 P 387 22 2.1613089406576570e-02 -1.3658963328626686e-01 2.5178044975051933e-01 2.8725815642301145e-01 1 0 0 0 0 V -46 0 -2.9875762315146199e-04 -1.7206307153707688e-04 1.1937304141634165e-03 1.2441178392527685e-03 0 2 0 P 388 22 -4.7500623990232538e-01 -2.0880342989198156e-01 1.8640371620319802e+00 1.9349068044009354e+00 1 0 0 0 0 P 389 22 -1.6460424919424391e-01 -1.5956656910715253e-01 6.9162145513886197e-01 7.2862630067670853e-01 1 0 0 0 0 V -47 0 -2.0154919135623552e-04 -9.1152595190780177e-05 4.4434607306930514e-04 4.9721657992145675e-04 0 2 0 P 390 22 -5.4254772198306278e-01 -2.2282727850452388e-01 1.0332942740935025e+00 1.1881528031146338e+00 1 0 0 0 0 P 391 22 -3.9056746998857034e-01 -1.9918320334267081e-01 1.0239011355425491e+00 1.1138179530212475e+00 1 0 0 0 0 V -48 0 0 0 0 0 0 1 0 P 392 310 -4.9462975411311262e-02 5.4657580232646674e-01 2.3302515224276483e+00 2.4451869622386209e+00 2 0 0 -197 0 V -49 0 0 0 0 0 0 2 0 P 393 211 -8.0968494028712090e-02 -2.3327370761182556e-01 7.3260635714402389e-01 7.8559810279562292e-01 1 0 0 0 0 P 394 111 -9.2479306594875121e-01 3.1751119182957849e-01 8.0219316119568695e-01 1.2719233624841790e+00 2 0 0 -198 0 V -50 0 0 0 0 0 0 2 0 P 395 -211 -2.4423996253863338e+00 1.7769266042189911e+00 -5.7421536533989948e-01 3.0776593634710410e+00 1 0 0 0 0 P 396 111 -2.3636384358927836e+00 7.9700181505473344e-01 -2.9606659561465493e-01 2.5155265012058758e+00 2 0 0 -199 0 V -51 0 0 0 0 0 0 2 0 P 397 -211 -1.0895420852316491e+00 3.7728339842884942e-03 1.9995810394235392e-01 1.1165031204611227e+00 1 0 0 0 0 P 398 211 -1.1498954262535612e+00 7.6042185016022334e-01 2.8513183723729130e-01 1.4146663320466313e+00 1 0 0 0 0 V -52 0 -1.0531525634836884e-03 4.7460955092004398e-04 -2.0927640191975008e-04 1.1745999785718268e-03 0 2 0 P 399 22 -2.4015333688899659e-01 8.2731083075735720e-02 -2.2616736388532697e-02 2.5500896864752137e-01 1 0 0 0 0 P 400 22 -3.4254383881178860e+00 1.5691899232283915e+00 -7.0578850489836453e-01 3.8332913507324031e+00 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 401 211 -6.9350859952065147e-01 7.0693860573821943e-01 -1.0115606658659004e-01 1.0052008279938212e+00 1 0 0 0 0 P 402 111 -1.2896152618999157e+00 9.1305677807115448e-01 7.8471518251886396e-01 1.7694003848147202e+00 2 0 0 -200 0 V -54 0 0 0 0 0 0 1 0 P 403 130 -2.4553592648254549e-01 9.4030805112059901e-01 2.8285561708192503e-01 1.1278962058676576e+00 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 404 -311 -1.5098184827549155e+00 2.9092034397151592e+00 1.3618773778380941e-01 3.3180173346957580e+00 2 0 0 -201 0 P 405 -211 -1.5457735289070518e+00 2.7134695132564466e+00 5.2256552280585844e-01 3.1693669892531058e+00 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 406 111 -1.0740587367642567e+00 1.8515347640837057e+00 5.2637890587266833e-01 2.2084106288409866e+00 2 0 0 -202 0 P 407 111 -3.0870759961258887e-01 8.1347953336746215e-01 1.2614629027631566e-01 8.8948401909016162e-01 2 0 0 -203 0 P 408 111 -7.3784814855004588e-01 1.4369403447226756e+00 4.0970984512300285e-01 1.6719148310249441e+00 2 0 0 -204 0 V -57 0 0 0 0 0 0 3 0 P 409 211 -7.8559753596574133e-01 1.9260062884993956e+00 6.8423704493486392e-01 2.1941567470023320e+00 1 0 0 0 0 P 410 -211 -6.8797048567540353e-01 1.7222267374400586e+00 3.6028873151877749e-01 1.8943748518372199e+00 1 0 0 0 0 P 411 221 -1.4678902736659585e+00 3.5887702117408358e+00 8.6552043944082024e-01 4.0103367217468557e+00 2 0 0 -205 0 V -58 0 0 0 0 0 0 2 0 P 412 -211 -8.9362028729247822e-01 9.1146492608543284e-01 -2.9874163834664252e-01 1.3183519563176789e+00 1 0 0 0 0 P 413 111 -6.8352909623433911e-01 1.9427531465495520e+00 -1.7421147053718962e-03 2.0639099905739018e+00 2 0 0 -206 0 V -59 0 0 0 0 0 0 2 0 P 414 2212 -2.2404966273468219e+00 2.7567416698667260e+00 -3.2822367592946775e+00 4.9267513138474213e+00 1 0 0 0 0 P 415 -211 -1.7009947856427349e-01 2.2681611659480186e-01 -1.3235741637493659e-01 3.4260422344803754e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 416 -2112 -2.1411118900503858e+00 1.4123437408897657e+00 -2.8333753255006640e+00 3.9357188019727256e+00 1 0 0 0 0 P 417 111 -1.0020646745581854e+00 8.2652384385914746e-01 -2.1177898294656674e+00 2.4880772975639891e+00 2 0 0 -207 0 V -61 0 0 0 0 0 0 3 0 P 418 -211 -3.7559852107293540e-01 3.4671680205712990e-01 -8.9305254760764408e-01 1.0384167889385276e+00 1 0 0 0 0 P 419 211 -1.5484588761034401e-01 4.3676285544493554e-01 -7.9404391172880573e-01 9.2990567234522903e-01 1 0 0 0 0 P 420 111 -3.6138659060622041e-01 5.3501300729761936e-01 -4.0354472839138322e-01 7.7324454997116254e-01 2 0 0 -208 0 V -62 0 0 0 0 0 0 2 0 P 421 211 -2.0472747272246342e-01 3.4391020663235566e-01 -5.2011985036600128e-01 6.7096349524991905e-01 1 0 0 0 0 P 422 111 -3.3574739805007545e+00 3.1088308383238803e+00 -4.6199642877580294e+00 6.5038258226687384e+00 2 0 0 -209 0 V -63 0 0 0 0 0 0 2 0 P 423 -211 -3.3246252466950224e+00 2.5040985542761067e+00 -5.6445677089326498e+00 7.0145753261416193e+00 1 0 0 0 0 P 424 211 -1.6644584984753961e+00 8.1313753479263873e-01 -3.2068643539567092e+00 3.7060860099589976e+00 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 425 2112 -6.4295416874200206e-01 -6.7885753158377760e-01 -1.0577386208387852e+01 1.0660118592097570e+01 1 0 0 0 0 P 426 -211 -4.2582052773913748e-01 -9.6038678984846498e-02 -2.2076737554721824e+00 2.2547393962952440e+00 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 427 -2112 -1.2616273298666039e+00 -1.0557420819668918e-01 -1.8722467718065381e+01 1.8788731694071398e+01 1 0 0 0 0 P 428 211 -8.2795663343241288e-02 -2.0982361433370716e-01 -2.0514866646203656e+00 2.0685643308864483e+00 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 429 -211 -6.8287263458363623e-01 -8.3378192035991106e-01 -1.1449661770883136e+01 1.1501119153295692e+01 1 0 0 0 0 P 430 211 -1.9769138126582217e-01 -1.8623813867552652e-01 -8.6073755551168531e+00 8.6127905035619712e+00 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 431 211 -3.3056900892849722e-01 -5.4983137984766861e-01 -1.3138991004599434e+01 1.3155385012221194e+01 1 0 0 0 0 P 432 -211 -4.9128878369963463e-01 -5.6479079927309617e-01 -8.6112936209801916e+00 8.6448950790374983e+00 1 0 0 0 0 P 433 111 -4.2705492092847380e-02 -6.1136451193574290e-02 -4.5389604161487505e+00 4.5415793161063114e+00 2 0 0 -210 0 V -68 0 0 0 0 0 0 3 0 P 434 -211 -7.9534836422304644e-01 -4.6563379617201067e-01 -2.7855436845692246e+01 2.7871028605020285e+01 1 0 0 0 0 P 435 211 -8.2081421782719821e-01 -2.0896527108421645e-01 -1.6439659569315058e+01 1.6462056038192152e+01 1 0 0 0 0 P 436 111 -1.9199499977287740e-01 -1.1381927785868921e-01 -1.0038292671384619e+01 1.0041680948164217e+01 2 0 0 -211 0 V -69 0 0 0 0 0 0 3 0 P 437 -211 -1.1035073161105688e-01 -1.4141076374942488e-01 -4.2874677461262021e+00 4.2934873642580786e+00 1 0 0 0 0 P 438 211 -4.4396030657402025e-02 -1.9672234248972872e-01 -3.7223108439462043e+00 3.7303818157706434e+00 1 0 0 0 0 P 439 221 -1.2085178343393952e+00 -1.2995148357524382e+00 -3.6054187154429364e+01 3.6101985638374195e+01 2 0 0 -212 0 V -70 0 0 0 0 0 0 2 0 P 440 -211 6.6563844121262122e-02 -6.5940189442217301e-01 -2.0462073996687245e+01 2.0473279992090081e+01 1 0 0 0 0 P 441 211 -3.3233773936518923e-01 -6.7260739171863010e-02 -1.5166427476020173e+01 1.5170859387335971e+01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 442 -211 2.6590109196171779e-01 -4.5803752383848345e-01 -1.5836333630849360e+01 1.5845802107069904e+01 1 0 0 0 0 P 443 111 -5.5058894488035548e-01 -8.6381166909387808e-01 -2.6070312029666340e+01 2.6090778212051337e+01 2 0 0 -213 0 V -72 0 0 0 0 0 0 3 0 P 444 -211 -7.2402636230187900e-01 -8.7528247690814132e-01 -5.2794114773737043e+01 5.2806518235111000e+01 1 0 0 0 0 P 445 211 -2.8255227411054118e-01 -9.9419312156861853e-02 -1.2071340158093937e+01 1.2075862411627012e+01 1 0 0 0 0 P 446 111 -1.0328586297823370e+00 -7.5564529166436334e-01 -4.5454331720326401e+01 4.5472544337190996e+01 2 0 0 -214 0 V -73 0 0 0 0 0 0 2 0 P 447 211 3.2359742967011260e-02 -2.2700506107370551e+00 -1.0423263724252065e+02 1.0425745212330904e+02 1 0 0 0 0 P 448 111 -1.3005647770218225e-02 -1.4959531455750949e-01 -2.1103005421072954e+01 2.1103971316016469e+01 2 0 0 -215 0 V -74 0 0 0 0 0 0 2 0 P 449 211 -2.5665538594068016e-01 -7.5418414898311359e-01 -4.6764654909455523e+01 4.6771648402670955e+01 1 0 0 0 0 P 450 111 4.7314288411034156e-01 -8.6153491302782914e-01 -6.2331584602911825e+01 6.2339479989052720e+01 2 0 0 -216 0 V -75 0 0 0 0 0 0 2 0 P 451 -211 -3.7571407795409117e-01 1.0506753680468835e-01 -1.8789224218656564e+01 1.8793792240511586e+01 1 0 0 0 0 P 452 211 -2.7387302813018233e-01 -1.7302997844246443e-01 -1.1224063352486377e+02 1.1224118780401716e+02 1 0 0 0 0 V -76 0 0 0 0 0 0 1 0 P 453 130 2.7162778169678620e-01 -2.8627754461386645e-01 -4.3900057562294734e+01 4.3904651984567998e+01 1 0 0 0 0 V -77 0 0 0 0 0 0 1 0 P 454 130 -2.1818283436060484e+00 -1.0409004061438667e+00 -4.5134283621901437e+02 4.5134958439133339e+02 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 455 2112 -5.3100396599866061e-02 1.9032478474236869e-01 -6.6532572827070382e+01 6.6539500163062016e+01 1 0 0 0 0 P 456 -211 9.1532410213132076e-02 2.7903148791853516e-02 -1.4716195950485725e+01 1.4717168878756008e+01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 457 -2212 -1.4636261891386597e+00 -1.4369785849828279e-01 -3.9046613255016888e+02 3.9047002941323808e+02 1 0 0 0 0 P 458 211 -9.0065068587869967e-01 -2.3742004307183337e-01 -2.1118309644954815e+02 2.1118519655917856e+02 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 459 -211 8.6007831959503418e-03 2.5733513452316331e-01 -6.1940629990653214e+01 6.1941322384728274e+01 1 0 0 0 0 P 460 211 1.6043636453193735e-01 2.9223827036428196e-01 -5.5205258265426963e+01 5.5206441317758582e+01 1 0 0 0 0 P 461 221 -2.4966545595706300e-02 5.3429683464602806e-01 -9.2796601577237354e+01 9.2799757878040509e+01 2 0 0 -217 0 V -81 0 1.0882417346732437e-04 -7.2862231179657579e-05 -2.0336029979354187e-02 2.0336469413017991e-02 0 2 0 P 462 22 4.1418889420666277e-01 -3.3272165454692970e-01 -7.6579996800340922e+01 7.6581839662414183e+01 1 0 0 0 0 P 463 22 1.3276269575687608e-01 -3.3484785826087979e-02 -2.5629131708167463e+01 2.5629497444914154e+01 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 464 211 5.6078919612244604e-01 1.4181927701898691e+00 -1.2286445571409003e+02 1.2287399933655776e+02 1 0 0 0 0 P 465 111 -2.7206965542528532e-02 1.4272870696578663e-01 -3.0242686423595117e+01 3.0243336678003480e+01 2 0 0 -218 0 V -83 0 0 0 0 0 0 2 0 P 466 211 -4.9067373254929286e-01 9.1863196448590434e-01 -5.1230445716531428e+01 5.1241220648003328e+01 1 0 0 0 0 P 467 -211 1.3278669165397342e-01 2.6084342205590735e-02 -4.6284088977057918e+00 4.6324897633616899e+00 1 0 0 0 0 V -84 0 0 0 0 0 0 3 0 P 468 -211 1.0301013419542456e-02 1.6589041559390102e-01 -6.8057532039242492e+00 6.8092130381189113e+00 1 0 0 0 0 P 469 211 -3.6883796896427850e-03 3.6762216235245476e-01 -4.1221703515871063e+01 4.1223579177379470e+01 1 0 0 0 0 P 470 111 -1.8647936875796944e-01 7.3260543790352883e-01 -6.7942747427191037e+01 6.7947087007745168e+01 2 0 0 -219 0 V -85 0 4.7323935468982165e-05 7.4254234465713593e-05 -5.5979752143929208e-03 5.5986710994716448e-03 0 2 0 P 471 22 1.0049338439548758e+00 1.5475946301134091e+00 -1.1837988468873996e+02 1.1839426523311529e+02 1 0 0 0 0 P 472 22 2.6792345916639471e-02 7.1248723634080177e-02 -3.6635925010705148e+00 3.6643831983458437e+00 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 473 311 -6.3223538503737436e-02 5.2421010596387940e-01 -2.6637693007269625e+01 2.6647573203379267e+01 2 0 0 -220 0 P 474 211 3.2817251404517450e-01 3.2189779955670211e-01 -9.7205670180987855e+00 9.7324312651353519e+00 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 475 -321 -3.2066011893004737e-01 1.3133771056230756e+00 -5.4108128354696298e+01 5.4127266486880124e+01 1 0 0 0 0 P 476 211 9.2260221070253029e-02 4.1803384067300420e-01 -3.4927145190945851e+01 3.4930047455087312e+01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 477 2112 3.7414162258522204e-01 6.0437400539232133e-01 -2.6682763540031818e+01 2.6708760956103824e+01 1 0 0 0 0 P 478 -211 2.1079923029468778e-01 4.8364057971456725e-01 -2.4544174092956219e+01 2.4550240451288509e+01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 479 211 -1.2556851216650586e-01 1.5151364261730891e+00 -4.9703472843286967e+01 4.9726915230179209e+01 1 0 0 0 0 P 480 111 1.1996171209220802e-01 5.3657167980517007e-02 -2.8010984399847203e+01 2.8011617885315498e+01 2 0 0 -221 0 V -90 0 0 0 0 0 0 2 0 P 481 -2112 -2.1641153879756714e-01 1.1541291768894069e+00 -5.9455604101998063e+01 5.9474620629555098e+01 1 0 0 0 0 P 482 -211 1.4815193124224377e-01 3.8035237390882670e-01 -1.0957746928996727e+01 1.0966235200282096e+01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 483 2212 1.0111523308641404e+00 1.1967836398141107e+00 -4.7871809618355826e+01 4.7906630301511960e+01 1 0 0 0 0 P 484 211 3.0602176891305396e-02 4.1725219385083989e-01 -9.0512715796223393e+00 9.0620104215059758e+00 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 485 -211 6.3860838331157510e-01 -5.6769651789423614e-01 -1.0796526077493930e+01 1.0831184382632008e+01 1 0 0 0 0 P 486 111 1.7830951358454292e+00 -5.4421079173502085e-01 -3.2118153415985475e+01 3.2172497448946920e+01 2 0 0 -222 0 V -93 0 0 0 0 0 0 2 0 P 487 211 5.9259634605067901e-01 6.8629489461620952e-02 -3.5591793603460036e+00 3.6115257080892231e+00 1 0 0 0 0 P 488 111 2.8523392999475061e-01 1.2855305735431555e-01 -7.2355782357289087e+00 7.2435969165276761e+00 2 0 0 -223 0 V -94 0 0 0 0 0 0 2 0 P 489 211 2.2137940396925562e-01 -2.9011480911546178e-02 -4.6693017839119291e+00 4.6767199446481280e+00 1 0 0 0 0 P 490 -211 -2.6736223925874669e-02 -8.1960137454475293e-02 -2.2715562979436413e-01 2.8019949116414400e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 491 -211 5.9325205390527092e-01 -2.1157668697345897e-01 -3.5017511594596678e+00 3.5606816287911243e+00 1 0 0 0 0 P 492 211 8.4743108739496564e-01 1.4230778879369854e-02 -2.2911776410724167e+00 2.4468994116638902e+00 1 0 0 0 0 V -96 0 2.0060431372047266e-03 3.2636744078320273e-04 -5.5282503301894541e-03 5.8909881605017827e-03 0 2 0 P 493 22 8.0769347448192175e-01 1.1455383439574714e-01 -2.0464276953359146e+00 2.2030337359952772e+00 1 0 0 0 0 P 494 22 1.7211520334410875e+00 2.9686944023381606e-01 -4.9225605357216278e+00 5.2232267818473206e+00 1 0 0 0 0 V -97 0 1.0301673074217148e-05 8.7507356910247367e-06 -4.5453185117145469e-05 4.7467426516440579e-05 0 2 0 P 495 22 3.6595637246398743e-01 3.7229226920721542e-01 -1.9032376793922146e+00 1.9735347132788723e+00 1 0 0 0 0 P 496 22 2.9212722829632248e-01 1.8671553577391273e-01 -1.0003679303392039e+00 1.0587431250603583e+00 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 497 211 4.4803426002170665e-01 -2.6568292541790767e-01 -1.2169285071574683e+00 1.3310585604864724e+00 1 0 0 0 0 P 498 111 2.8859032701858456e+00 -2.6276068487463894e-01 -8.8448329116784876e+00 9.3084246625460807e+00 2 0 0 -224 0 V -99 0 0 0 0 0 0 2 0 P 499 2212 1.2224639154097592e+00 -2.2269715459240955e+00 -6.1780625699284171e+00 6.7455635792485884e+00 1 0 0 0 0 P 500 111 2.4117930781618135e-01 -8.0842511754596100e-02 -8.8060318560908724e-01 9.2649044308635853e-01 2 0 0 -225 0 V -100 0 0 0 0 0 0 2 0 P 501 211 6.5726262117825496e-01 -4.0259225567797108e-01 -1.0142842263108784e+00 1.2815330484123475e+00 1 0 0 0 0 P 502 111 7.3834890291984112e-01 -1.4079966257001941e-01 -2.2723142282604174e+00 2.3972098781244626e+00 2 0 0 -226 0 V -101 0 0 0 0 0 0 2 0 P 503 -2112 2.7039868746319518e+00 -2.3591928695238495e+00 -5.6031688342734070e+00 6.7197938051748922e+00 1 0 0 0 0 P 504 -211 1.6087952906933362e-01 -4.6981172782873176e-01 -6.4688377939012742e-01 8.2737155584238209e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 505 -211 1.4348741547379213e+00 -6.5392999181256051e-01 -2.1436239826545345e+00 2.6647873907759561e+00 1 0 0 0 0 P 506 111 3.0482519105381880e-02 -4.9847303954308801e-02 -4.5889581169197469e-01 4.8189096699456768e-01 2 0 0 -227 0 V -103 0 0 0 0 0 0 3 0 P 507 211 1.9284323491400018e-01 -1.5766313397687934e-01 -4.1141320158776068e-01 5.0078616635066819e-01 1 0 0 0 0 P 508 -211 8.6503982394204060e-01 -4.6932525661311525e-01 -1.1163502936767322e+00 1.4947500983752333e+00 1 0 0 0 0 P 509 221 1.8325811684485624e+00 -1.0308313120998112e+00 -2.0715447698099450e+00 3.0019936989914977e+00 2 0 0 -228 0 V -104 0 0 0 0 0 0 2 0 P 510 321 1.2151138770255046e+00 -6.8673912713576632e-02 -1.1806555027430561e+00 1.7660142175488858e+00 1 0 0 0 0 P 511 111 3.2423287726402983e-01 -2.5137525864081506e-01 -7.9890327133883288e-01 9.0817537772807788e-01 2 0 0 -229 0 V -105 0 0 0 0 0 0 2 0 P 512 -211 5.6184348283302521e-01 -7.2117854789785962e-01 -1.2576720589991743e+00 1.5610846838135437e+00 1 0 0 0 0 P 513 211 1.1352480736324876e-01 -4.4351400497917715e-01 -6.4139236959547430e-02 4.8289355050288807e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 3 0 P 514 111 3.5187780872434593e-01 -5.8175808974162491e-01 -4.0017286434822363e-01 8.0038639981769655e-01 2 0 0 -230 0 P 515 111 1.7986296791692397e-01 -5.5081511124616578e-01 -3.6940745218779075e-01 7.0030667577632399e-01 2 0 0 -231 0 P 516 111 9.7605821488774580e-01 -1.6044889811968872e+00 -1.2519537459133747e+00 2.2611241257256554e+00 2 0 0 -232 0 V -107 0 0 0 0 0 0 2 0 P 517 211 6.9107582621544850e-01 -2.2247232819337182e+00 -1.1791777860748986e+00 2.6147503733300810e+00 1 0 0 0 0 P 518 111 9.5312991807985492e-01 -1.8550494465604619e+00 -1.9275227396749866e+00 2.8431019331510701e+00 2 0 0 -233 0 V -108 0 0 0 0 0 0 3 0 P 519 111 4.7508871322107704e-01 -5.3514783491907703e-01 -5.1874477319096779e-01 8.9409632074043521e-01 2 0 0 -234 0 P 520 111 1.3034270563704311e+00 -1.7746421537414794e+00 -1.3649512801417218e+00 2.5941450350115756e+00 2 0 0 -235 0 P 521 111 4.8313823546938373e-01 -7.5253588529914273e-01 -4.4551709915487914e-01 1.0081854488509605e+00 2 0 0 -236 0 V -109 0 0 0 0 0 0 1 0 P 522 130 1.9689396359732416e+00 -2.9250125098724342e+00 -1.8651629399316361e+00 4.0198171220107888e+00 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 523 -311 9.8650468822015294e-02 -1.2307530988115232e+00 -3.7309446347831554e-01 1.3825194439179300e+00 2 0 0 -237 0 P 524 -211 2.5040801094515569e-01 -2.1951463056823009e-01 1.0217516860970288e-01 3.7524711186022064e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 525 211 9.0538548005837927e-01 -8.0671559298564421e-01 -2.5920882984302884e-01 1.2478709539993764e+00 1 0 0 0 0 P 526 -211 2.7338978971630495e-01 -1.1802591544269263e+00 -3.1060747945471562e-01 1.2584555772544774e+00 1 0 0 0 0 V -112 0 2.7144207824562674e+01 -3.8726599060445878e+01 -7.1929363086167468e+00 6.1850862685582186e+01 0 2 0 P 527 2112 5.6964597811336837e-01 -1.0866393603619822e+00 -2.8744628369347713e-01 1.5718456637907632e+00 1 0 0 0 0 P 528 -211 2.5936642612187732e-01 -9.6111346619531884e-02 6.7766510341556369e-02 3.1714416086714781e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 529 321 9.3457368411270181e-01 -1.1853761942511207e+00 2.5960050806957780e-01 1.6092166034201989e+00 1 0 0 0 0 P 530 111 3.1912777765405320e-01 -5.6663015628820723e-01 -2.8506790566768714e-01 7.2276938488523046e-01 2 0 0 -238 0 V -114 0 1.8468635868168480e+01 -2.6827751391731343e+01 1.6552766120322872e+01 4.1166445049210566e+01 0 2 0 P 531 -2112 1.0034800035430811e+00 -1.2942603011818756e+00 8.8048915213070089e-01 2.0832990127790256e+00 1 0 0 0 0 P 532 111 8.2709599745507456e-02 -2.8355112188774484e-01 9.3023054937643720e-02 3.3780912622928450e-01 2 0 0 -239 0 V -115 0 0 0 0 0 0 2 0 P 533 -311 -2.8124579874435557e-01 -6.0355450546260614e-01 1.3483890520791870e+00 1.5840472546747366e+00 2 0 0 -240 0 P 534 111 -2.0133228646345036e-02 -3.3859541888165218e-01 1.0454641795110585e-01 3.7973906632024945e-01 2 0 0 -241 0 V -116 0 0 0 0 0 0 3 0 P 535 211 2.0796352172022520e-01 -8.5468430304172260e-01 7.5718755043832098e-01 1.1689939502285625e+00 1 0 0 0 0 P 536 -211 5.7802563222805171e-02 -9.7506815499186342e-02 2.4172732741187081e-01 3.0126500145487284e-01 1 0 0 0 0 P 537 111 1.2830526473506504e-01 -1.0629945277948220e-01 -1.7288658722360184e-02 2.1512859582205879e-01 2 0 0 -242 0 V -117 0 0 0 0 0 0 3 0 P 538 -211 -2.0272324172213415e-02 -2.7200343964632417e-01 2.6880727381986652e-01 4.0759535530381541e-01 1 0 0 0 0 P 539 211 3.7358725433655210e-01 -5.7744702945934680e-02 6.5816695183047247e-01 7.7172884402674324e-01 1 0 0 0 0 P 540 111 8.3244509520504842e-02 2.4397927678770272e-02 5.5208935193439324e-01 5.7493230919793181e-01 2 0 0 -243 0 V -118 0 0 0 0 0 0 3 0 P 541 211 -1.7824716449998088e-02 -7.9027268511622464e-02 5.6190048541174853e-01 5.8461523251698588e-01 1 0 0 0 0 P 542 -211 6.1157833078706501e-02 9.0489972643676267e-02 4.3651245026758140e-01 4.7111741618681846e-01 1 0 0 0 0 P 543 111 6.0693399159232261e-02 -1.6850479491298204e-01 4.1642918763679532e-01 4.7298036251625641e-01 2 0 0 -244 0 V -119 0 0 0 0 0 0 3 0 P 544 -211 7.0346220260087350e-03 -1.7231763449856705e-02 -2.4878384906292218e-02 1.4298649766389221e-01 1 0 0 0 0 P 545 211 5.6071215576324962e-01 9.2752262998357704e-02 4.2556634631958623e-01 7.2359353502625301e-01 1 0 0 0 0 P 546 111 1.1877279679701097e-01 -1.4226923419108034e-01 3.3763126736957538e-01 4.0812006243492394e-01 2 0 0 -245 0 V -120 0 0 0 0 0 0 2 0 P 547 321 1.2219457694523721e+00 -9.6849409183542301e-01 2.0085277979533953e+00 2.5901654666360963e+00 1 0 0 0 0 P 548 -211 4.3006878040390750e-01 4.1290797406823503e-02 7.9987629114761183e-01 9.1975320160826557e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 1 0 P 549 130 1.1625962621355042e+00 -3.1873747786317252e-01 4.6261690148754990e+00 4.8064892418084293e+00 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 550 211 2.1594424809521398e-01 -3.1371507279112737e-01 9.0395375165195568e-01 9.9078818887156461e-01 1 0 0 0 0 P 551 -211 1.9001022763181872e+00 -2.0802709532578620e+00 1.0471568264382899e+01 1.0844866877927503e+01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 552 211 1.0785004843538393e+00 -1.2341599745578260e+00 4.8535596414043809e+00 5.1247278088813131e+00 1 0 0 0 0 P 553 111 5.0842651717644471e-01 1.4051466186912470e-01 9.5759623400626093e-01 1.1015679921599655e+00 2 0 0 -246 0 V -124 0 0 0 0 0 0 2 0 P 554 211 3.7969182022962944e-01 1.0062904220252890e-01 1.2033980540651914e+00 1.2735535889438563e+00 1 0 0 0 0 P 555 111 4.8881289060829841e-01 -5.7775576617382340e-01 7.6025679643488964e+00 7.6413348977986866e+00 2 0 0 -247 0 V -125 0 0 0 0 0 0 2 0 P 556 -211 3.9685606803015600e-01 -4.1004208673044434e-01 2.8226552860259289e+00 2.8831392439930354e+00 1 0 0 0 0 P 557 111 6.2435688848698456e-01 4.3694334438817865e-02 6.3183119122079319e+00 6.3506704952636186e+00 2 0 0 -248 0 V -126 0 0 0 0 0 0 3 0 P 558 -211 2.8206464551565380e-01 -5.8858078189121643e-01 2.6740009882656479e+00 2.7560386193243391e+00 1 0 0 0 0 P 559 211 3.6507341139214755e-01 3.3987336505286111e-02 1.7082633886648368e+00 1.7527342424625860e+00 1 0 0 0 0 P 560 111 1.0778254320873173e-01 -4.7854963683566863e-02 9.9952792557943471e-01 1.0154717369689938e+00 2 0 0 -249 0 V -127 0 0 0 0 0 0 2 0 P 561 22 6.8891284959618482e-01 -4.7308282538680985e-01 4.9120226431066802e+00 4.9826072211651837e+00 1 0 0 0 0 P 562 22 2.4482735004808823e-01 1.5409684852589633e-01 1.4181598193740883e+00 1.4473643436758861e+00 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 563 211 1.8982020867565869e-01 -1.4764789919960464e-01 4.9736553570586741e+00 4.9814213844502433e+00 1 0 0 0 0 P 564 -211 -2.1244865584395897e-01 -6.1006903661795187e-01 3.9735417788020144e+00 4.0281301758501966e+00 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 565 211 -2.1133912113889716e-01 6.2474342026270356e-02 2.4662458317392790e+01 2.4663837846320110e+01 1 0 0 0 0 P 566 111 6.1461417239964795e-02 -2.3174839242608147e-01 5.4678723129494546e+00 5.4747905945634523e+00 2 0 0 -250 0 V -130 0 0 0 0 0 0 2 0 P 567 -2112 2.3901854820815996e-01 1.6731071724615698e+00 4.1069402929746829e+01 4.1114900781440873e+01 1 0 0 0 0 P 568 -211 6.1096353663183091e-02 1.2164715394813370e+00 3.7000533038979839e+01 3.7020838195863931e+01 1 0 0 0 0 V -131 0 0 0 0 0 0 2 0 P 569 -211 -1.2972820814937853e+00 -1.3787157197318824e-02 5.5830161073392070e+01 5.5845407117778912e+01 1 0 0 0 0 P 570 111 -1.0429852134687956e-01 1.6485294968165964e-01 3.6026994730394675e+00 3.6105010414086220e+00 2 0 0 -251 0 V -132 0 0 0 0 0 0 2 0 P 571 211 -3.9347136895971163e-01 1.5210711577093611e-01 1.9075727496692494e+01 1.9080901855149019e+01 1 0 0 0 0 P 572 111 -1.1977139548119655e+00 -6.3592315415155942e-01 3.5499628902147897e+01 3.5525776399202755e+01 2 0 0 -252 0 V -133 0 0 0 0 0 0 2 0 P 573 2212 -1.2231219573079828e+00 1.3742907035272256e-01 9.4241717442914577e+01 9.4254424677332139e+01 1 0 0 0 0 P 574 111 4.7673051363812405e-02 9.6468906922211658e-03 1.7555684445333878e+01 1.7556270723785968e+01 2 0 0 -253 0 V -134 0 0 0 0 0 0 2 0 P 575 -2112 -2.3887365337543600e+00 1.2700440959698724e+00 2.0874598325526048e+02 2.0876562789698832e+02 1 0 0 0 0 P 576 -211 -1.2590843404789192e+00 3.6930266231733444e-01 1.0548239568072637e+02 1.0549064866689869e+02 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 577 311 -3.8383409842285338e-01 5.9745474691944864e-03 5.3947223891583342e+01 5.3950885121078876e+01 2 0 0 -254 0 P 578 211 -6.5813451391173827e-01 -1.8054743236724358e-01 5.7554003631824990e+01 5.7558218807141351e+01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 579 321 -4.8598815287259606e-01 4.5884249245804881e-01 9.7372649385635114e+01 9.7376194268699180e+01 1 0 0 0 0 P 580 -321 -7.2972237753125591e-01 6.6614834010202173e-01 1.0654872457910291e+02 1.0655444898620057e+02 1 0 0 0 0 V -137 0 -2.1488742896441056e+02 -1.9019274826152731e+01 2.9433782890960298e+04 2.9434849453959527e+04 0 2 0 P 581 2212 -1.7520277563216105e+00 -1.1618494087976809e-01 2.2851123088396207e+02 2.2851990305200056e+02 1 0 0 0 0 P 582 -211 -1.2876297989584359e-01 -5.0280245450542035e-02 2.9106380625189516e+01 2.9107043492793661e+01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 583 -211 -5.6436981535937937e-02 -1.7455443567429693e-01 5.8596185657851308e+01 5.8596639048824102e+01 1 0 0 0 0 P 584 111 -1.3563851330458951e-01 6.0481533844631630e-01 2.0318806549187462e+02 2.0318905575185551e+02 2 0 0 -255 0 V -139 0 0 0 0 0 0 2 0 P 585 -2112 -4.7681236557088064e-01 2.9009088501167535e-01 2.6586521083620943e+02 2.6586745687940169e+02 1 0 0 0 0 P 586 211 -4.1673505671754335e-01 4.7908892848939527e-01 1.4221958031058466e+02 1.4222106629403621e+02 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 587 -211 2.2100188175922070e-01 -1.4476033454864196e-02 1.4465768451132490e+02 1.4465792138472816e+02 1 0 0 0 0 P 588 111 -3.2456156747977238e-01 -5.9389762546897462e-01 1.7644910948758340e+02 1.7645045909025632e+02 2 0 0 -256 0 V -141 0 0 0 0 0 0 2 0 P 589 -211 3.4099991898792542e-01 -1.6217711717520286e-01 -1.5623098628016883e+00 1.6133425719271346e+00 1 0 0 0 0 P 590 111 7.2760598083428474e-01 2.7435221302324680e-01 -1.2206914529129913e+00 1.4536116481892281e+00 2 0 0 -257 0 V -142 0 0 0 0 0 0 3 0 P 591 211 4.0279980055965309e-01 8.7782087123909877e-02 -6.6311819242756032e-01 7.9319537074993129e-01 1 0 0 0 0 P 592 -211 1.5421346979760031e+00 2.6285809952691930e-01 -4.0036365978126573e+00 4.3006812947989239e+00 1 0 0 0 0 P 593 111 3.3210929742038237e-01 6.4633237084905898e-02 -1.2487934837959944e+00 1.3008377325171923e+00 2 0 0 -258 0 V -143 0 4.1227949584103868e+01 -3.3385600739361068e+00 -1.8194177206121034e+02 1.9060165124375928e+02 0 2 0 P 594 2112 9.3770782241514250e-01 -2.4845545104784199e-02 -3.6952362476017653e+00 3.9265093877157708e+00 1 0 0 0 0 P 595 -211 3.3052048772425358e-01 -7.7853144584585116e-02 -1.9015423565401948e+00 1.9366589848353850e+00 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 596 -211 7.9856772023181855e-01 4.9925576672831889e-01 -1.1161727812451014e+00 1.4670678876248879e+00 1 0 0 0 0 P 597 211 -1.0245709546243754e-01 -5.4363762181533763e-02 -8.1224435029112821e-02 1.9882170101608115e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 598 -3122 3.6623680165845779e-01 1.2087015765356601e-01 -9.6366008777548942e+00 9.7086331339404630e+00 2 0 0 -259 0 P 599 22 3.0778882246742231e-02 -5.4663648418464938e-02 -2.4943489846184774e-01 2.5720268781925404e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 3 0 P 600 -211 -4.1283374322204741e-01 7.9954854351494131e-02 -1.9194767579096176e+01 1.9199880381885162e+01 1 0 0 0 0 P 601 211 -2.8012635919650630e-01 7.7821910024461816e-02 -2.5913511195713443e+01 2.5915517924634702e+01 1 0 0 0 0 P 602 111 1.2471355185198663e-01 -1.9851587214192610e-03 -9.8367958663891226e+00 9.8385125871892249e+00 2 0 0 -260 0 V -147 0 0 0 0 0 0 2 0 P 603 211 -2.4200877646059363e-01 -4.4818163315623510e-01 -1.3374364067776613e+01 1.3384787223804372e+01 1 0 0 0 0 P 604 -211 -1.2269324535252082e-02 4.3341794497174693e-02 -2.1328562657713160e+01 2.1329066877769666e+01 1 0 0 0 0 V -148 0 0 0 0 0 0 1 0 P 605 130 -1.5383926908124421e-01 -1.1118497467405460e-01 -4.6423180776798752e+01 4.6426236305386006e+01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 606 22 1.9615722898659793e-01 2.4607494673195068e-01 -9.5162895620395062e+01 9.5163415940140027e+01 1 0 0 0 0 P 607 111 -3.2546851671034238e-01 -3.2964867746585064e-01 -1.5953337532994371e+02 1.5953410501134550e+02 2 0 0 -261 0 V -150 0 0 0 0 0 0 2 0 P 608 2212 -2.4544770417878589e-01 -5.1447118081482647e-02 -3.4265861850766311e+02 3.4265999486306328e+02 1 0 0 0 0 P 609 211 9.4352911634666317e-02 -5.9738158813979592e-02 -4.1438176173739556e+01 4.1438561696930662e+01 1 0 0 0 0 V -151 0 5.2668372016669577e-05 -2.9088921537264511e-05 8.7279007218815149e-03 8.7281289922360242e-03 0 2 0 P 610 22 1.4188175963078895e-01 -7.3852186724918223e-02 3.2946490621046898e+01 3.2946878893484445e+01 1 0 0 0 0 P 611 22 2.3044827052573516e-01 -1.3178695909418059e-01 2.8753907825914279e+01 2.8755133271629084e+01 1 0 0 0 0 V -152 0 9.0707037071951639e-05 -7.6721848424230135e-05 1.3429999554420369e-02 1.3430530673710809e-02 0 2 0 P 612 22 4.3186035271515355e-01 -3.8982689723791780e-01 7.3062513009317712e+01 7.3064829265596558e+01 1 0 0 0 0 P 613 22 5.6078190285885088e-01 -4.4977001971599301e-01 7.3907176227505246e+01 7.3910672215429912e+01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 614 -211 7.3740913440852607e-01 6.9074549523912787e-01 1.6533350452255485e+02 1.6533665080394385e+02 1 0 0 0 0 P 615 211 6.4138005763371408e-01 6.3373534548245278e-02 6.4901148543895530e+01 6.4904498662919380e+01 1 0 0 0 0 V -154 0 3.5694369719884715e+00 -1.4424612794704852e+00 3.9185057646077081e+02 3.9188329236421384e+02 0 2 0 P 616 2212 1.1171137995204345e+00 -4.9861075228288415e-01 1.2309366280093919e+02 1.2310331729188938e+02 1 0 0 0 0 P 617 -211 9.3612765039114268e-02 9.3385776769915850e-03 9.8191483740777166e+00 9.8205908750881363e+00 1 0 0 0 0 V -155 0 0 0 0 0 0 2 0 P 618 -3122 1.4836702550469067e+00 6.0559226537517996e-01 1.1037187106385852e+02 1.1038914205399462e+02 2 0 0 -262 0 P 619 211 4.5675333382036537e-01 -6.6379486065823959e-02 1.8211142734243168e+01 1.8217525334578351e+01 1 0 0 0 0 V -156 0 0 0 0 0 0 2 0 P 620 -211 -3.8061592886191370e-01 1.3334847056481808e-01 4.9688950120346547e+01 4.9690782788632866e+01 1 0 0 0 0 P 621 211 -8.6028185867329798e-02 -1.6801585385685436e-01 5.3886032744490340e+00 5.3937144168201678e+00 1 0 0 0 0 V -157 0 0 0 0 0 0 3 0 P 622 -211 -1.4147839060121908e-02 7.7300023717645480e-02 2.6849091670417340e+00 2.6896825974790328e+00 1 0 0 0 0 P 623 211 2.6481524949532698e-02 -3.8793994832790346e-01 4.8450909483433975e+00 4.8626725940876829e+00 1 0 0 0 0 P 624 111 2.3833295517116368e-01 -1.2723777408337944e-01 1.8713786463303004e+00 1.8955921731784346e+00 2 0 0 -263 0 V -158 0 0 0 0 0 0 2 0 P 625 -211 -9.9498893440446282e-02 3.3256835931515355e-01 2.0775303185582481e+00 2.1109509119925507e+00 1 0 0 0 0 P 626 111 2.8098590211759306e-01 -2.0448534565027968e-01 5.0697357471865550e+00 5.0834247786778324e+00 2 0 0 -264 0 V -159 0 0 0 0 0 0 2 0 P 627 211 6.4849853023247167e-02 -2.2658939252293075e-01 1.7253676739427515e+00 1.7469750002297308e+00 1 0 0 0 0 P 628 111 -7.0071904873750823e-01 -2.0398338534761287e-01 1.6808981687935169e+00 1.8374587508335718e+00 2 0 0 -265 0 V -160 0 -2.5102070909472268e-04 5.9932198045701124e-05 1.2767216998554947e-03 1.3040149548498435e-03 0 2 0 P 629 22 -4.7448174933588655e-01 8.2693224815413399e-02 2.5150954846475782e+00 2.5607960474777860e+00 1 0 0 0 0 P 630 22 -7.2766910723517403e-02 4.7964581041347633e-02 2.6827741727118526e-01 2.8207870700996557e-01 1 0 0 0 0 V -161 0 0 0 0 0 0 2 0 P 631 -211 -1.7627204915219544e-01 5.5024289399089488e-01 1.7426899004621530e+00 1.8412731877080537e+00 1 0 0 0 0 P 632 111 -5.3684332006433122e-01 2.6356365182582241e-02 7.4262489454629910e-01 9.2661035105551970e-01 2 0 0 -266 0 V -162 0 0 0 0 0 0 2 0 P 633 211 -1.0962096734401454e+00 -4.6396608936336008e-02 2.2014354373351579e+00 2.4636611096332994e+00 1 0 0 0 0 P 634 111 -1.0242122993853950e-01 -5.1407657237120963e-01 6.1997198954682742e-01 8.2301257513218240e-01 2 0 0 -267 0 V -163 0 0 0 0 0 0 2 0 P 635 -211 -2.1994685308759823e-01 4.1337865627531617e-01 2.8707725794386718e-01 5.6670245153492427e-01 1 0 0 0 0 P 636 111 -1.4347716908029823e-02 3.9716475459329137e-01 1.6045472545108501e+00 1.6585346519231756e+00 2 0 0 -268 0 V -164 0 0 0 0 0 0 3 0 P 637 211 -3.4785890827804429e-02 4.7966523855394144e-01 6.5444796947489814e-01 8.2405747914056982e-01 1 0 0 0 0 P 638 -211 -1.0296911472673728e-01 1.0322980992411664e-01 9.3124762448905440e-02 2.2228593865951643e-01 1 0 0 0 0 P 639 111 -2.1009187289718695e-01 1.1948144345089864e+00 7.7159154779722050e-01 1.4440544466884160e+00 2 0 0 -269 0 V -165 0 0 0 0 0 0 3 0 P 640 211 -4.2068448872465997e-01 7.8944236976203241e-01 2.7901978239978381e-01 9.4737876168903257e-01 1 0 0 0 0 P 641 -211 -4.5069059069827228e-01 3.6986350801145290e-01 7.5692965904866030e-02 6.0426007073938859e-01 1 0 0 0 0 P 642 111 -1.9075627219617836e-01 4.8812646178326702e-02 2.3874599678602942e-01 3.3762387532647592e-01 2 0 0 -270 0 V -166 0 0 0 0 0 0 1 0 P 643 310 -8.0335249314936497e-01 1.6323766569879674e+00 1.1570718232742099e+00 2.2128080376850625e+00 2 0 0 -271 0 V -167 0 0 0 0 0 0 2 0 P 644 -211 4.3845899927792698e-01 -2.0728329437185319e-01 9.6643610883180364e-01 1.0902711568813546e+00 1 0 0 0 0 P 645 211 2.8510271000543042e-01 2.2764091092116923e-01 1.9999706724749176e+00 2.0377601466407262e+00 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 646 211 4.1260040689946015e-02 2.1127979456094340e-01 1.2587222701651288e+00 1.2846023045507531e+00 1 0 0 0 0 P 647 111 5.5264452772313033e-01 -3.0507821483510517e-01 1.3027319075659840e+00 1.4538977662063464e+00 2 0 0 -272 0 V -169 0 0 0 0 0 0 3 0 P 648 111 4.3540161620463019e-01 1.4015042967169009e-01 1.3446937347106787e+00 1.4267577057443623e+00 2 0 0 -273 0 P 649 111 1.4075090851628871e-01 -8.8631509368547468e-02 4.8830186172190215e-01 5.3322103415205147e-01 2 0 0 -274 0 P 650 111 2.8939844981442980e-01 -4.6346959688701186e-02 6.4133322293888162e-01 7.1793273130047108e-01 2 0 0 -275 0 V -170 0 0 0 0 0 0 2 0 P 651 211 3.0860629146802437e-01 1.3454738837029426e-01 -3.0672689236485140e-01 4.7634232884629635e-01 1 0 0 0 0 P 652 111 -3.4621077817080337e-01 7.0007695866013675e-01 -1.9643425418110497e-01 8.1656332735688475e-01 2 0 0 -276 0 V -171 0 0 0 0 0 0 2 0 P 653 211 -6.6922260469438533e-01 2.3608404319786103e-01 -1.5136393667239499e+01 1.5153662514541974e+01 1 0 0 0 0 P 654 111 1.4467500405380923e-01 1.0316880181042207e-01 -6.0300142365903726e+00 6.0341416914377755e+00 2 0 0 -277 0 V -172 0 0 0 0 0 0 2 0 P 655 -211 -6.4466319687432927e-01 -4.9364008400073593e-03 -2.6528619314767873e+01 2.6536818527062216e+01 1 0 0 0 0 P 656 211 9.2751726733972025e-03 5.9840369957017615e-02 -1.4273666555263908e+01 1.4274477349958007e+01 1 0 0 0 0 V -173 0 0 0 0 0 0 2 0 P 657 -211 4.4043547119013504e-01 -4.8898954245078435e-01 -3.2213224616542803e+01 3.2220248511730134e+01 1 0 0 0 0 P 658 111 6.8640598148690959e-02 4.8320318694205298e-02 -1.6728800961662511e+00 1.6804147706629233e+00 2 0 0 -278 0 V -174 0 0 0 0 0 0 2 0 P 659 -211 1.0701884991843977e-01 -1.1964309003985671e-01 -5.2713261056148919e-01 5.6843300154857423e-01 1 0 0 0 0 P 660 211 -1.1998575233671697e-01 6.2820476056378249e-01 -4.0933466050840428e+00 4.1453593349927900e+00 1 0 0 0 0 V -175 0 0 0 0 0 0 2 0 P 661 211 -3.4893186735153109e-01 -1.5132819885113238e-01 -2.1948097316882600e+00 2.2318878141686347e+00 1 0 0 0 0 P 662 111 2.8552949669941990e-01 3.9097209429678526e-01 -1.1392017152306129e+00 1.2451451402903233e+00 2 0 0 -279 0 V -176 0 0 0 0 0 0 2 0 P 663 2112 6.1835195876930669e-02 -1.9586718259156859e-02 -2.8314410978352633e+00 2.9839667736742417e+00 1 0 0 0 0 P 664 -211 -1.7449582221122492e-03 -1.4461386089253514e-01 -4.2238614454790385e-01 4.6776709337819516e-01 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 665 -2112 1.1631520432503864e-01 -5.4826166729506132e-01 -2.6426284540143201e+00 2.8601393346213837e+00 1 0 0 0 0 P 666 211 4.2326627381570531e-01 -2.9139674049139475e-01 -6.5782718344826963e-01 8.4633491426404250e-01 1 0 0 0 0 V -178 0 1.3425524666748739e-04 -1.0496506027749164e-04 -2.0362170625194865e-04 2.7398471838209221e-04 0 2 0 P 667 22 2.1605259216410818e-02 -8.5604141781056173e-02 -7.5878760525045441e-02 1.1641495872394002e-01 1 0 0 0 0 P 668 22 2.4664648255521046e-01 -1.2412367849800893e-01 -3.3097220970092811e-01 4.3102642438144079e-01 1 0 0 0 0 V -179 0 -2.6357448404613867e-05 -4.0921288163575687e-05 -2.9754464114999914e-05 7.3605501502621004e-05 0 2 0 P 669 22 -8.0137259629238358e-02 -6.8285989140453668e-02 -1.1463140609674261e-01 1.5564483916111849e-01 1 0 0 0 0 P 670 22 3.6433284384743483e-03 -5.0474755563272564e-02 2.8278740402727993e-02 5.7971216565185127e-02 1 0 0 0 0 V -180 0 0 0 0 0 0 1 0 P 671 310 -2.4502658043940842e-01 4.0045520849499322e-01 -8.0278871714574462e-01 1.0547736972493715e+00 2 0 0 -280 0 V -181 0 3.4038070775972744e-05 1.3225335190235769e-04 -2.0280308888272148e-04 2.5009289169664566e-04 0 2 0 P 672 22 -3.5975072473432346e-02 5.7430644506166854e-02 -9.7205453358376381e-02 1.1849634986137721e-01 1 0 0 0 0 P 673 22 1.2330543469355239e-01 2.8188744442062336e-01 -4.2311978270022110e-01 5.2315878283675810e-01 1 0 0 0 0 V -182 0 -1.0881105371401328e-04 5.0128377907346758e-05 -1.4365703715011379e-03 1.4428316596451420e-03 0 2 0 P 674 22 -2.4169575876634902e-01 1.1181071710019878e-01 -2.5369070948607351e+00 2.5508461506368505e+00 1 0 0 0 0 P 675 22 -5.4698829462533312e-04 -2.1143048817636175e-04 -6.6128593112981215e-01 6.6128619115271758e-01 1 0 0 0 0 V -183 0 7.0399386131185401e-06 -2.0985252441421831e-05 -2.2507728358626088e-04 2.2638210146239739e-04 0 2 0 P 676 22 6.9657162518587154e-02 -1.1939528323774647e-01 -1.9711743861128106e+00 1.9760151351689537e+00 1 0 0 0 0 P 677 22 2.5783658177580496e-02 -1.6510289573690462e-01 -1.0802102702117615e+00 1.0930590062209342e+00 1 0 0 0 0 V -184 0 1.5845346719182131e-05 6.2423801292736260e-05 -4.3238268147170045e-04 4.3948744136589036e-04 0 2 0 P 678 22 -4.0281067255798303e-02 1.1474971510930113e-01 -6.9348981301735479e-01 7.0407256888461278e-01 1 0 0 0 0 P 679 22 8.7558334131175503e-02 7.1502234147164112e-02 -5.9659691001295800e-01 6.0721240468296767e-01 1 0 0 0 0 V -185 0 -8.8119915257092268e-06 1.7495191066986620e-06 -1.2201760809609012e-04 1.2293925185568244e-04 0 3 0 P 680 22 3.2278505293783066e-02 -8.5446160457354238e-03 -2.1887798835075548e-01 2.2141022142584846e-01 1 0 0 0 0 P 681 -11 -1.9693872371619296e-02 4.9598911494769769e-03 -1.6869805500424429e-01 1.6991687082635237e-01 1 0 0 0 0 P 682 11 -1.1134511620630566e-01 2.3192477807538484e-02 -9.7993752149434987e-01 9.8651580426384367e-01 1 0 0 0 0 V -186 0 8.1149960632298865e-06 -1.8330648214282749e-05 -6.6064470090381779e-04 6.6127866896457824e-04 0 2 0 P 683 22 -3.4088554612219282e-02 -8.2554812259295077e-02 -2.5302034658436674e+00 2.5317793950401808e+00 1 0 0 0 0 P 684 22 8.6535379676112009e-02 -3.5915276045294903e-02 -1.7395111203023625e+00 1.7420324958635756e+00 1 0 0 0 0 V -187 0 0 0 0 0 0 3 0 P 685 22 4.8589857326733973e-02 1.3323578335660716e-01 -2.2343916359592524e+00 2.2388878335116171e+00 1 0 0 0 0 P 686 -211 -3.3027917125022947e-02 -1.7772560552591218e-01 -4.2042220790300640e+00 4.2104204432423424e+00 1 0 0 0 0 P 687 211 -7.6046266417005112e-02 7.4913366885897684e-02 -4.0295053517933166e+00 4.0333346268571777e+00 1 0 0 0 0 V -188 0 -6.6817877624448723e-06 -8.9079064077174368e-06 -3.4779225577800717e-03 3.4779530892942632e-03 0 2 0 P 688 22 -4.4867492214128044e-02 2.3675700506575817e-03 -4.5304033246336841e+00 4.5306261135849057e+00 1 0 0 0 0 P 689 22 -5.1071270870198679e-02 -1.3026949582428546e-01 -4.5406469883444487e+01 4.5406685473533535e+01 1 0 0 0 0 V -189 0 4.6891217694486710e-06 -1.9562678383263579e-05 -8.6339565264010737e-03 8.6339870841585665e-03 0 2 0 P 690 22 -8.5761328176232488e-03 -1.1575590548338085e-02 -9.9060856278476084e-01 9.9071331323099598e-01 1 0 0 0 0 P 691 22 6.5650054357927076e-02 -2.2653270052635907e-01 -1.0409810134891103e+02 1.0409836853400823e+02 1 0 0 0 0 V -190 0 1.9780422812456962e-06 -2.6537086585016806e-06 -1.3349798799999252e-03 1.3349849137881632e-03 0 2 0 P 692 22 6.5613673069342543e-02 -8.6604704842754288e-03 -1.6694994265740522e+01 1.6695125446996546e+01 1 0 0 0 0 P 693 22 1.0375102152318666e-01 -2.1855638971430655e-01 -9.7609164855150638e+01 9.7609464678841093e+01 1 0 0 0 0 V -191 0 -2.7478009408291441e-05 3.1381670829790178e-05 -3.0525826618811508e-02 3.0525859780961347e-02 0 2 0 P 694 22 -1.7272697536612652e-01 1.1661950526645287e-01 -1.1708858139308745e+02 1.1708876687096287e+02 1 0 0 0 0 P 695 22 -4.7068669636534922e-02 1.3440139216484406e-01 -1.2708644785399200e+02 1.2708652763900392e+02 1 0 0 0 0 V -192 0 -1.8904179884929534e-04 8.9583808177137462e-05 -1.4050446118263848e-01 1.4050462381707440e-01 0 2 0 P 696 22 -5.3306811260503917e-01 2.2315226046021971e-01 -3.5912002580609197e+02 3.5912049077365697e+02 1 0 0 0 0 P 697 22 -4.6308146605089452e-02 5.1404646971901363e-02 -7.1498755954591829e+01 7.1498789429866946e+01 1 0 0 0 0 V -193 0 -1.4393598120128932e-05 -7.6413986761649216e-06 -4.7007550023909989e-03 4.7007851511251886e-03 0 2 0 P 698 22 -3.0986037201237726e-01 -1.2383221976554022e-01 -7.9250184936042331e+01 7.9250887441502542e+01 1 0 0 0 0 P 699 22 -1.4963443924795228e-01 -1.2010838585405596e-01 -7.0814622666447136e+01 7.0814882615740103e+01 1 0 0 0 0 V -194 0 1.0364418881804313e-05 -4.1682339689328930e-06 9.5890783686247466e-06 1.5849983612906528e-05 0 2 0 P 700 22 1.0164798686741998e-01 -1.0755441289657182e-01 8.0568521209057428e-02 1.6849792751704626e-01 1 0 0 0 0 P 701 22 1.3661394761514128e-01 1.1733170997770475e-02 1.3986953596213972e-01 1.9586864239821491e-01 1 0 0 0 0 V -195 0 -1.6318083386012513e-05 -3.1623132179954674e-04 1.2777058853523978e-03 1.3170902064304640e-03 0 2 0 P 702 22 -7.9280882355259541e-02 -8.2723802648046330e-01 3.4541407391748251e+00 3.5527026974951803e+00 1 0 0 0 0 P 703 22 2.9088454454082716e-02 -1.4545082698642509e-01 4.7592623084882824e-01 4.9850562530781378e-01 1 0 0 0 0 V -196 0 0 0 0 0 0 1 0 P 704 310 4.7191817164383204e-01 -6.7596381966119112e-01 3.3982408254051157e+00 3.5320461467212807e+00 2 0 0 -281 0 V -197 0 -2.1473123305593131e+00 2.3728232079879604e+01 1.0116208711272211e+02 1.0615172400925057e+02 0 2 0 P 705 -211 -7.5547078529649786e-02 4.6132424694602098e-01 1.0934587920714980e+00 1.1973551422836659e+00 1 0 0 0 0 P 706 211 2.6084103118338520e-02 8.5251555380445737e-02 1.2367927303561503e+00 1.2478318199549547e+00 1 0 0 0 0 V -198 0 -2.4027387094717280e-04 8.2493744751078053e-05 2.0842074101204213e-04 3.3046306368948660e-04 0 2 0 P 707 22 -6.0505591679278969e-01 2.5727955123696838e-01 5.9072736068757992e-01 8.8388022072878936e-01 1 0 0 0 0 P 708 22 -3.1973714915596146e-01 6.0231640592610089e-02 2.1146580050810701e-01 3.8804314175538968e-01 1 0 0 0 0 V -199 0 -2.5485878177643363e-04 8.5936541128268251e-05 -3.1923313962588511e-05 2.7123607819548292e-04 0 2 0 P 709 22 -8.1645387098741112e-02 5.4707076294615367e-02 -1.5505282905830876e-02 9.9494960823139175e-02 1 0 0 0 0 P 710 22 -2.2819930487940425e+00 7.4229473876011809e-01 -2.8056131270882406e-01 2.4160315403827366e+00 1 0 0 0 0 V -200 0 -2.4559255386784996e-04 1.7388127496450822e-04 1.4944007831433403e-04 3.3696217171096733e-04 0 2 0 P 711 22 -1.2668365034506728e+00 9.1104942018120483e-01 7.8453196440351991e-01 1.7465326151144389e+00 1 0 0 0 0 P 712 22 -2.2778758449242917e-02 2.0073578899497809e-03 1.8321811534405022e-04 2.2867769700280947e-02 1 0 0 0 0 V -201 0 0 0 0 0 0 1 0 P 713 310 -1.5098184827549155e+00 2.9092034397151592e+00 1.3618773778380941e-01 3.3180173346957580e+00 2 0 0 -282 0 V -202 0 -1.3542602308228675e-04 2.3345649647975636e-04 6.6370114982256440e-05 2.7845429543042825e-04 0 2 0 P 714 22 -3.6502074185881422e-01 6.4055384712520946e-01 1.1582189603821480e-01 7.4630026440833630e-01 1 0 0 0 0 P 715 22 -7.0903799490544239e-01 1.2109809169584962e+00 4.1055700983445353e-01 1.4621103644326507e+00 1 0 0 0 0 V -203 0 -1.1678933891817813e-04 3.0775315231850765e-04 4.7723288532060891e-05 3.3650694280992977e-04 0 2 0 P 716 22 -2.2719517385056015e-01 7.0723003502146520e-01 7.6882767911012437e-02 7.4679510540650174e-01 1 0 0 0 0 P 717 22 -8.1512425762028731e-02 1.0624949834599695e-01 4.9263522365303222e-02 1.4268891368366010e-01 1 0 0 0 0 V -204 0 -2.1076783403858561e-04 4.1046495094554652e-04 1.1703445595215530e-04 4.7758589396015020e-04 0 2 0 P 718 22 -6.5462671242583359e-01 1.3485814647665917e+00 3.6810805283262488e-01 1.5436034588888716e+00 1 0 0 0 0 P 719 22 -8.3221436124212261e-02 8.8358879956083977e-02 4.1601792290377949e-02 1.2831137213607280e-01 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 720 211 -5.2478542941994910e-01 1.2496983343208399e+00 4.1305453273316539e-01 1.4238116117124400e+00 1 0 0 0 0 P 721 -211 -3.4254960382908239e-01 1.1218665657918931e+00 2.5243108594357122e-01 1.2079429045181764e+00 1 0 0 0 0 P 722 111 -6.0055524041692687e-01 1.2172053116281025e+00 2.0003482076408358e-01 1.3785822055162391e+00 2 0 0 -283 0 V -206 0 -1.9447473891990056e-04 5.5274371353390055e-04 -4.9565893297330351e-07 5.8721473421144128e-04 0 2 0 P 723 22 -2.5982203170150930e-01 6.1749692625993691e-01 4.8272029711426814e-02 6.7166965909621901e-01 1 0 0 0 0 P 724 22 -4.2370706453282975e-01 1.3252562202896150e+00 -5.0014144416798710e-02 1.3922403314776832e+00 1 0 0 0 0 V -207 0 -1.2631893660266388e-05 1.0419049357175134e-05 -2.6696576178976610e-05 3.1364370623291876e-05 0 2 0 P 725 22 -4.6823494198975957e-01 4.7188672457110969e-01 -1.1041573916247889e+00 1.2888307054094659e+00 1 0 0 0 0 P 726 22 -5.3382973256842581e-01 3.5463711928803771e-01 -1.0136324378408783e+00 1.1992465921545232e+00 1 0 0 0 0 V -208 0 -6.7313903517734341e-05 9.9654538630092044e-05 -7.5166515908795629e-05 1.4402888868969793e-04 0 2 0 P 727 22 -1.3101650110582172e-01 1.2996907453032164e-01 -1.7465549618897380e-01 2.5409019313089742e-01 1 0 0 0 0 P 728 22 -2.3037008950039869e-01 4.0504393276729772e-01 -2.2888923220240939e-01 5.1915435684026523e-01 1 0 0 0 0 V -209 0 -9.2704423794204099e-04 8.5839048407899651e-04 -1.2756349855093461e-03 1.7957947815829258e-03 0 2 0 P 729 22 -2.0944430504795655e+00 2.0257244524624145e+00 -2.9207764612683071e+00 4.1256740522859188e+00 1 0 0 0 0 P 730 22 -1.2630309300211888e+00 1.0831063858614658e+00 -1.6991878264897222e+00 2.3781517703828201e+00 1 0 0 0 0 V -210 0 -5.9445433090224911e-06 -8.5101064071572128e-06 -6.3181678630637168e-04 6.3218133342798953e-04 0 2 0 P 731 22 -8.0010526936592108e-02 -2.3758503506559683e-02 -3.7098840420504295e+00 3.7108227869799952e+00 1 0 0 0 0 P 732 22 3.7305034843744735e-02 -3.7377947687014607e-02 -8.2907637409832069e-01 8.3075652912631692e-01 1 0 0 0 0 V -211 0 -3.1325547102733094e-05 -1.8570541701498602e-05 -1.6378291636785713e-03 1.6383819886166264e-03 0 2 0 P 733 22 -3.7451544068004897e-02 2.6063186411597508e-02 -1.0799719194094148e+00 1.0809353609498851e+00 1 0 0 0 0 P 734 22 -1.5454345570487252e-01 -1.3988246427028672e-01 -8.9583207519752044e+00 8.9607455872143298e+00 1 0 0 0 0 V -212 0 0 0 0 0 0 3 0 P 735 111 -5.7703969087560014e-01 -3.7810774183938528e-01 -1.3502792096078071e+01 1.3521078147085502e+01 2 0 0 -284 0 P 736 111 -3.4673042267504489e-01 -5.4396718127840726e-01 -1.2053089800896329e+01 1.2071094218387474e+01 2 0 0 -285 0 P 737 111 -2.8474772078875010e-01 -3.7743991263464560e-01 -1.0498305257454964e+01 1.0509813272901216e+01 2 0 0 -286 0 V -213 0 -3.2676314636504182e-04 -5.1265435218880078e-04 -1.5472190759993076e-02 1.5484337015765893e-02 0 2 0 P 738 22 -4.3635857813584866e-01 -7.4220650852037773e-01 -2.0760065080312124e+01 2.0777910901936160e+01 1 0 0 0 0 P 739 22 -1.1423036674450679e-01 -1.2160516057350039e-01 -5.3102469493542177e+00 5.3128673101151769e+00 1 0 0 0 0 V -214 0 -1.8128268248540237e-04 -1.3262744922724627e-04 -7.9779390395165566e-03 7.9811356357835494e-03 0 2 0 P 740 22 -5.0199309143975779e-01 -4.4700107060362310e-01 -2.4462846770485481e+01 2.4472079583419674e+01 1 0 0 0 0 P 741 22 -5.3086553834257921e-01 -3.0864422106074030e-01 -2.0991484949840917e+01 2.1000464753771329e+01 1 0 0 0 0 V -215 0 -9.0939015618402477e-06 -1.0460110013233829e-04 -1.4755793586665655e-02 1.4756468966599868e-02 0 2 0 P 742 22 3.3653754812228466e-02 -1.4755171573109777e-01 -1.7672201570332387e+01 1.7672849584220614e+01 1 0 0 0 0 P 743 22 -4.6659402582446691e-02 -2.0435988264117214e-03 -3.4308038507405652e+00 3.4311217317958582e+00 1 0 0 0 0 V -216 0 4.2719192771160285e-04 -7.7786388139227660e-04 -5.6278030755772625e-02 5.6285159353367184e-02 0 2 0 P 744 22 2.9494571685593229e-01 -6.0196968709240006e-01 -3.8818431327087154e+01 3.8824218873994759e+01 1 0 0 0 0 P 745 22 1.7819716725440926e-01 -2.5956522593542897e-01 -2.3513153275824671e+01 2.3515261115057957e+01 1 0 0 0 0 V -217 0 0 0 0 0 0 3 0 P 746 111 9.0787559229631887e-02 1.2427107709724174e-01 -3.0873960200556922e+01 3.0874638844000859e+01 2 0 0 -287 0 P 747 111 -5.0437655040873934e-02 3.2693877514124871e-02 -1.7163568723570236e+01 1.7164204723079695e+01 2 0 0 -288 0 P 748 111 -6.5316449784464256e-02 3.7733188003466150e-01 -4.4759072653110202e+01 4.4760914310959961e+01 2 0 0 -289 0 V -218 0 -1.5822259163638782e-06 8.3004133194261888e-06 -1.7587688037124297e-03 1.7588066193731115e-03 0 2 0 P 749 22 2.0974667560251483e-02 1.3905795106770566e-01 -2.5892194880772948e+01 2.5892576789388098e+01 1 0 0 0 0 P 750 22 -4.8181633102780015e-02 3.6707558980809902e-03 -4.3504915428221684e+00 4.3507598886153813e+00 1 0 0 0 0 V -219 0 -6.0885520037662093e-05 2.3919569959006127e-04 -2.2183309271392341e-02 2.2184726144586105e-02 0 2 0 P 751 22 -2.3346231930607673e-02 3.3368085828149791e-01 -3.2398035133019995e+01 3.2399761857799611e+01 1 0 0 0 0 P 752 22 -1.6313313682736177e-01 3.9892457962203093e-01 -3.5544712294171042e+01 3.5547325149945557e+01 1 0 0 0 0 V -220 0 0 0 0 0 0 1 0 P 753 310 -6.3223538503737436e-02 5.2421010596387940e-01 -2.6637693007269625e+01 2.6647573203379267e+01 2 0 0 -290 0 V -221 0 2.0048090902195636e-06 8.9672259795770156e-07 -4.6812166291564333e-04 4.6813224977209299e-04 0 2 0 P 754 22 7.0844262235664604e-02 9.0886718416084797e-02 -2.2369862340242737e+01 2.2370159150674066e+01 1 0 0 0 0 P 755 22 4.9117449856543399e-02 -3.7229550435567797e-02 -5.6411220596044656e+00 5.6414587346414393e+00 1 0 0 0 0 V -222 0 1.2858031834614254e-05 -3.9243445535797339e-06 -2.3160639653473059e-04 2.3199827540411474e-04 0 2 0 P 756 22 6.7348023089347203e-02 -2.7954517145810454e-03 -1.5224055529912714e+00 1.5238970564126009e+00 1 0 0 0 0 P 757 22 1.7157471127560822e+00 -5.4141534002043978e-01 -3.0595747862994205e+01 3.0648600392534313e+01 1 0 0 0 0 V -223 0 3.4531293679091908e-05 1.5563027080714810e-05 -8.7596127501591030e-04 8.7693204108706558e-04 0 2 0 P 758 22 6.6856071047275326e-02 1.0072858773499746e-02 -2.9838447350427386e+00 2.9846106277975397e+00 1 0 0 0 0 P 759 22 2.1837785894747527e-01 1.1848019858081581e-01 -4.2517335006861705e+00 4.2589862887301377e+00 1 0 0 0 0 V -224 0 2.8625886738894269e-04 -2.6063789740850597e-05 -8.7733773952114436e-04 9.2332238873139600e-04 0 2 0 P 760 22 1.5199392677691252e+00 -7.7245472134219270e-02 -4.7337411078391698e+00 4.9723723831505415e+00 1 0 0 0 0 P 761 22 1.3659640024167206e+00 -1.8551521274041968e-01 -4.1110918038393178e+00 4.3360522793955392e+00 1 0 0 0 0 V -225 0 1.4780518623598162e-04 -4.9543812916071910e-05 -5.3967199353665782e-04 5.6779370388859154e-04 0 2 0 P 762 22 2.0962699800839948e-01 -1.5958816195499440e-02 -5.6770325640310582e-01 6.0538016934738270e-01 1 0 0 0 0 P 763 22 3.1552309807781877e-02 -6.4883695559096663e-02 -3.1289992920598142e-01 3.2111027373897583e-01 1 0 0 0 0 V -226 0 4.5914316244744172e-05 -8.7556441254643311e-06 -1.4130413639296404e-04 1.4907078755581297e-04 0 2 0 P 764 22 4.5871076358549678e-01 -2.2297390960807857e-02 -1.4180873432760761e+00 1.4905986889275895e+00 1 0 0 0 0 P 765 22 2.7963813933434434e-01 -1.1850227160921155e-01 -8.5422688498434129e-01 9.0661118919687322e-01 1 0 0 0 0 V -227 0 3.9454801306777613e-06 -6.4519453474190326e-06 -5.9396807095325114e-05 6.2373166366505269e-05 0 2 0 P 766 22 8.2098896224541723e-02 -3.1702415371112826e-02 -2.2310459683117745e-01 2.3983522057623824e-01 1 0 0 0 0 P 767 22 -5.1616377119159840e-02 -1.8144888583195972e-02 -2.3579121486079727e-01 2.4205574641832933e-01 1 0 0 0 0 V -228 0 0 0 0 0 0 3 0 P 768 111 3.7002950171216781e-01 -1.9238783528284842e-01 -3.8963210453036928e-01 5.8648758604333662e-01 2 0 0 -291 0 P 769 111 1.7265984339244744e-01 -1.2929032633439427e-01 -2.1692978391523851e-01 3.3437335652451544e-01 2 0 0 -292 0 P 770 111 1.2898918233439474e+00 -7.0915315048256855e-01 -1.4649828813643373e+00 2.0811327564236457e+00 2 0 0 -293 0 V -229 0 1.8105475636886199e-06 -1.4037036155747547e-06 -4.4611526867693772e-06 5.0713386360525643e-06 0 2 0 P 771 22 3.2129596193369037e-01 -2.1560522311609429e-01 -6.6335525812086094e-01 7.6795631768117523e-01 1 0 0 0 0 P 772 22 2.9369153303394503e-03 -3.5770035524720765e-02 -1.3554801321797202e-01 1.4021906004690263e-01 1 0 0 0 0 V -230 0 1.9961067893415393e-04 -3.3001548943864295e-04 -2.2700714612597082e-04 4.5403736386920285e-04 0 2 0 P 773 22 2.5601040187585711e-01 -2.9508423641769105e-01 -2.3574531421529707e-01 4.5628049007745097e-01 1 0 0 0 0 P 774 22 9.5867406848488823e-02 -2.8667385332393386e-01 -1.6442755013292656e-01 3.4410590974024569e-01 1 0 0 0 0 V -231 0 2.2368252607166250e-05 -6.8500879813622318e-05 -4.5940525174269053e-05 8.7092061293489570e-05 0 2 0 P 775 22 1.4761898455890435e-01 -2.4077394215186579e-01 -1.9391326467091363e-01 3.4258693792508182e-01 1 0 0 0 0 P 776 22 3.2243983358019597e-02 -3.1004116909430002e-01 -1.7549418751687709e-01 3.5771973785124217e-01 1 0 0 0 0 V -232 0 9.8304170585273405e-05 -1.6159687619442888e-04 -1.2609112112979315e-04 2.2773019926416549e-04 0 2 0 P 777 22 3.4490325099256341e-01 -4.4998711939998187e-01 -3.9099285410802587e-01 6.8871044142997628e-01 1 0 0 0 0 P 778 22 6.3115496389518233e-01 -1.1545018617969054e+00 -8.6096089180534885e-01 1.5724136842956791e+00 1 0 0 0 0 V -233 0 1.1122709927774908e-05 -2.1647811598798974e-05 -2.2493550885262049e-05 3.3178056314969242e-05 0 2 0 P 779 22 8.5633839927659017e-01 -1.6084541644771919e+00 -1.6316025702019512e+00 2.4459286989585833e+00 1 0 0 0 0 P 780 22 9.6791518803264767e-02 -2.4659528208327003e-01 -2.9592016947303534e-01 3.9717323419248718e-01 1 0 0 0 0 V -234 0 3.1240077147080688e-05 -3.5189342922119918e-05 -3.4110738232986830e-05 5.8792468142375189e-05 0 2 0 P 781 22 1.1138017837425890e-01 -2.0490957335919460e-01 -2.1023007843101232e-01 3.1399070570008669e-01 1 0 0 0 0 P 782 22 3.6370853484681809e-01 -3.3023826155988245e-01 -3.0851469475995547e-01 5.8010561504034841e-01 1 0 0 0 0 V -235 0 4.0778003996139601e-04 -5.5520072629535377e-04 -4.2702802956344759e-04 8.1158401682129985e-04 0 2 0 P 783 22 1.1990296316225013e-01 -1.0659998138624037e-01 -1.1083180358523703e-01 1.9499734688603140e-01 1 0 0 0 0 P 784 22 1.1835240932081812e+00 -1.6680421723552390e+00 -1.2541194765564847e+00 2.3991476881255442e+00 1 0 0 0 0 V -236 0 2.5019023503185277e-04 -3.8969619084272826e-04 -2.3070835542539443e-04 5.2208278270226042e-04 0 2 0 P 785 22 1.1114454312382184e-01 -1.7696105258294867e-01 -4.2833064889533874e-02 2.1331431045595425e-01 1 0 0 0 0 P 786 22 3.7199369234556190e-01 -5.7557483271619414e-01 -4.0268403426534527e-01 7.9487113839500623e-01 1 0 0 0 0 V -237 0 0 0 0 0 0 1 0 P 787 130 9.8650468822015294e-02 -1.2307530988115232e+00 -3.7309446347831554e-01 1.3825194439179300e+00 1 0 0 0 0 V -238 0 1.1045081382303614e-04 -1.9611192218607477e-04 -9.8662618488687496e-05 2.5015204678762945e-04 0 2 0 P 788 22 1.7345781340477220e-01 -2.1484988282423548e-01 -1.7309149725615489e-01 3.2589684196556729e-01 1 0 0 0 0 P 789 22 1.4566996424928100e-01 -3.5178027346397178e-01 -1.1197640841153227e-01 3.9687254291966306e-01 1 0 0 0 0 V -239 0 1.8468638409301406e+01 -2.6827760103429792e+01 1.6552768978321804e+01 4.1166455427907792e+01 0 2 0 P 790 22 1.4399808248346276e-02 -2.3582254898037949e-01 4.1623740692332933e-02 2.3990032278931012e-01 1 0 0 0 0 P 791 22 6.8309791497161182e-02 -4.7728572907365353e-02 5.1399314245310773e-02 9.7908803439974323e-02 1 0 0 0 0 V -240 0 0 0 0 0 0 1 0 P 792 310 -2.8124579874435557e-01 -6.0355450546260614e-01 1.3483890520791870e+00 1.5840472546747366e+00 2 0 0 -294 0 V -241 0 -3.1945784448189416e-06 -5.3725591939280522e-05 1.6588582940981278e-05 6.0253934290989416e-05 0 2 0 P 793 22 -4.2431717602095485e-02 -1.7065507290756593e-01 -8.5242264557243777e-03 1.7605756730234320e-01 1 0 0 0 0 P 794 22 2.2298488955750449e-02 -1.6794034597408625e-01 1.1307064440683022e-01 2.0368149901790630e-01 1 0 0 0 0 V -242 0 5.0694905043825419e-05 -4.2000152339763787e-05 -6.8309504997703032e-06 8.4999814777126956e-05 0 2 0 P 795 22 1.5584634534368713e-01 -1.0263287982919059e-01 -1.3593980128020414e-02 1.8709994033868069e-01 1 0 0 0 0 P 796 22 -2.7541080608622072e-02 -3.6665729502916179e-03 -3.6946785943397691e-03 2.8028655483378091e-02 1 0 0 0 0 V -243 0 1.3546002605985201e-05 3.9701644447295714e-06 8.9839003714687485e-05 9.3556134855259362e-05 0 2 0 P 797 22 -1.7010038789049005e-02 -2.4498372959110774e-02 3.5160944822578033e-02 4.6106439225611605e-02 1 0 0 0 0 P 798 22 1.0025454830955384e-01 4.8896300637881043e-02 5.1692840711181520e-01 5.2882586997232006e-01 1 0 0 0 0 V -244 0 2.0130756880670801e-06 -5.5889587774135198e-06 1.3812102881794847e-05 1.5687789478006126e-05 0 2 0 P 799 22 1.0070312423016907e-01 -1.0973874231318186e-01 2.3622708971257497e-01 2.7926143433755540e-01 1 0 0 0 0 P 800 22 -4.0009725070936815e-02 -5.8766052599800174e-02 1.8020209792422032e-01 1.9371892817870104e-01 1 0 0 0 0 V -245 0 6.1005719298474498e-05 -7.3074283000199581e-05 1.7341882046221938e-04 2.0962424595871292e-04 0 2 0 P 801 22 7.9782100815240647e-02 -1.5996345991470945e-01 2.2331025895294873e-01 2.8604363980345920e-01 1 0 0 0 0 P 802 22 3.8990695981770317e-02 1.7694225723629116e-02 1.1432100841662664e-01 1.2207642263146475e-01 1 0 0 0 0 V -246 0 1.7511595143831891e-04 4.8397079760704210e-05 3.2982224558826870e-04 3.7941004354449532e-04 0 2 0 P 803 22 1.5600434170310245e-02 9.4913813291519437e-03 1.9351439156746922e-03 1.8363132843061666e-02 1 0 0 0 0 P 804 22 4.9282608300613445e-01 1.3102328053997278e-01 9.5566109009058631e-01 1.0832048593169039e+00 1 0 0 0 0 V -247 0 1.7511343964231001e-04 -2.0697653730443341e-04 2.7235612070189725e-03 2.7374491612673340e-03 0 2 0 P 805 22 1.7218919523142209e-01 -2.1083677319926525e-01 3.4101076510163324e+00 3.4209553425041448e+00 1 0 0 0 0 P 806 22 3.1662369537687629e-01 -3.6691899297455821e-01 4.1924603133325640e+00 4.2203795552945413e+00 1 0 0 0 0 V -248 0 2.0614380437322048e-04 1.4426550738634973e-05 2.0861159359601305e-03 2.0967997636526397e-03 0 2 0 P 807 22 1.3990309305970045e-01 6.4886624589748990e-03 9.2863623928834471e-01 9.3913803197814194e-01 1 0 0 0 0 P 808 22 4.8445379542728417e-01 3.7205671979842966e-02 5.3896756729195872e+00 5.4115324632854769e+00 1 0 0 0 0 V -249 0 4.7491247671490978e-05 -2.1085900044176764e-05 4.4041295422336043e-04 4.4743813170560544e-04 0 2 0 P 809 22 1.1201791916508728e-01 -8.5668643033197753e-02 7.6864017996045475e-01 7.8146967750698138e-01 1 0 0 0 0 P 810 22 -4.2353759563555516e-03 3.7813679349630890e-02 2.3088774561897993e-01 2.3400205946201227e-01 1 0 0 0 0 V -250 0 1.2861543712831895e-05 -4.8496149510012082e-05 1.1442183068218316e-03 1.1456660407887969e-03 0 2 0 P 811 22 2.4908681372536362e-03 -2.1235277486618756e-01 4.0601686194926092e+00 4.0657187709100064e+00 1 0 0 0 0 P 812 22 5.8970549102711156e-02 -1.9395617559893909e-02 1.4077036934568454e+00 1.4090718236534467e+00 1 0 0 0 0 V -251 0 -1.3818947945306597e-05 2.1842057786270420e-05 4.7733674301035921e-04 4.7837040548028573e-04 0 2 0 P 813 22 3.2079345679078386e-02 3.8583815289098426e-02 9.2419945482044652e-01 9.2556060175002675e-01 1 0 0 0 0 P 814 22 -1.3637786702595794e-01 1.2626913439256121e-01 2.6785000182190211e+00 2.6849404396585959e+00 1 0 0 0 0 V -252 0 -5.4492728935536579e-04 -2.8932774744578081e-04 1.6151366086242076e-02 1.6163262486577307e-02 0 2 0 P 815 22 -6.6021462350147531e-01 -3.8595678428474406e-01 1.8438051258210113e+01 1.8453904199079506e+01 1 0 0 0 0 P 816 22 -5.3749933131049032e-01 -2.4996636986681534e-01 1.7061577643937785e+01 1.7071872200123256e+01 1 0 0 0 0 V -253 0 1.1144751722804713e-06 2.2551986622666825e-07 4.1040742908197232e-04 4.1042113478698188e-04 0 2 0 P 817 22 4.5629404863430714e-02 -1.1642512105985747e-02 1.9394121213709126e+00 1.9399837543641321e+00 1 0 0 0 0 P 818 22 2.0436465003816941e-03 2.1289402798206913e-02 1.5616272323962965e+01 1.5616286969421836e+01 1 0 0 0 0 V -254 0 0 0 0 0 0 1 0 P 819 310 -3.8383409842285338e-01 5.9745474691944864e-03 5.3947223891583342e+01 5.3950885121078876e+01 2 0 0 -295 0 V -255 0 -1.0639756118574791e-05 4.7442924144940014e-05 1.5938478020500382e-02 1.5938555698472762e-02 0 2 0 P 820 22 -5.8553590312220719e-03 4.0547169124994571e-02 5.9820049497976138e+00 5.9821452320682242e+00 1 0 0 0 0 P 821 22 -1.2978315427336745e-01 5.6426816932132173e-01 1.9720606054207701e+02 1.9720691051978727e+02 1 0 0 0 0 V -256 0 -1.1942493775670617e-06 -2.1852922237907361e-06 6.4925813864557982e-04 6.4926310461294512e-04 0 2 0 P 822 22 -1.1042847752277536e-01 -1.6588006793615703e-01 6.8288623595263090e+01 6.8288914350581905e+01 1 0 0 0 0 P 823 22 -2.1413308995699704e-01 -4.2801755753281762e-01 1.0816048589232031e+02 1.0816154473967444e+02 1 0 0 0 0 V -257 0 2.8653650379485755e-04 1.0804188805309905e-04 -4.8071713309571552e-04 5.7244279255379618e-04 0 2 0 P 824 22 4.7703103867972019e-01 1.0992524762672437e-01 -7.5790457674784251e-01 9.0225357820569252e-01 1 0 0 0 0 P 825 22 2.5057494215456455e-01 1.6442696539652243e-01 -4.6278687616514869e-01 5.5135806998353554e-01 1 0 0 0 0 V -258 0 1.8587793851945280e-05 3.6174515325219057e-06 -6.9893604366849375e-05 7.2806464000479173e-05 0 2 0 P 826 22 2.2286710588623665e-01 4.9268069914418745e-03 -9.7359446667994010e-01 9.9878937011916313e-01 1 0 0 0 0 P 827 22 1.0924219153414572e-01 5.9706430093464019e-02 -2.7519901711605432e-01 3.0204836239802890e-01 1 0 0 0 0 V -259 0 5.7576334225938695e+00 1.9002078883087317e+00 -1.5149765136301579e+02 1.5263007531342379e+02 0 2 0 P 828 -2112 2.4269349090631004e-01 4.3215897296158726e-02 -8.4282783734131055e+00 8.4840695346602661e+00 1 0 0 0 0 P 829 111 1.2354331075214774e-01 7.7654260357407287e-02 -1.2083225043417880e+00 1.2245635992801958e+00 2 0 0 -296 0 V -260 0 4.8423601072331812e-06 -7.7079461344629559e-08 -3.8194171506663064e-04 3.8200837165843014e-04 0 2 0 P 830 22 1.5136237396146299e-01 -1.8088235516940606e-02 -7.9845222038862262e+00 7.9859772462027152e+00 1 0 0 0 0 P 831 22 -2.6648822109476368e-02 1.6103076795521344e-02 -1.8522736625028962e+00 1.8525353409865077e+00 1 0 0 0 0 V -261 0 -1.4016441188887692e-05 -1.4196461603709633e-05 -6.8703731948579179e-03 6.8704046189002749e-03 0 2 0 P 832 22 -3.2011013017572532e-01 -3.1740886771994209e-01 -1.4013516566754168e+02 1.4013589074735316e+02 1 0 0 0 0 P 833 22 -5.3583865346171133e-03 -1.2239809745908530e-02 -1.9398209662402031e+01 1.9398214263992354e+01 1 0 0 0 0 V -262 0 2.5603167340344248e+02 1.0450489290107588e+02 1.9046479329906953e+04 1.9049459722949701e+04 0 2 0 P 834 -2212 1.3926466526079706e+00 5.1269058462175687e-01 1.0188474725798451e+02 1.0189987434119270e+02 1 0 0 0 0 P 835 211 9.1023602438936133e-02 9.2901680753423158e-02 8.4871238058740062e+00 8.4892677128019152e+00 1 0 0 0 0 V -263 0 1.8394077158685279e-04 -9.8199656539660080e-05 1.4442938950257420e-03 1.4629814273818371e-03 0 2 0 P 836 22 2.1416491787321015e-01 -7.1084589581390301e-02 1.6688884845465850e+00 1.6840749403680915e+00 1 0 0 0 0 P 837 22 2.4168037297953526e-02 -5.6153184501989147e-02 2.0249016178371551e-01 2.1151723281034340e-01 1 0 0 0 0 V -264 0 1.8859229146093403e-05 -1.3724660068613739e-05 3.4027083724050614e-04 3.4118961850225797e-04 0 2 0 P 838 22 8.2580771768056643e-02 3.9487544711140701e-03 1.3880997221630018e+00 1.3905596050499538e+00 1 0 0 0 0 P 839 22 1.9840513034953641e-01 -2.0843410012139377e-01 3.6816360250235531e+00 3.6928651736278786e+00 1 0 0 0 0 V -265 0 -3.5214514189898612e-05 -1.0251149630895667e-05 8.4473245765761152e-05 9.2341170646298486e-05 0 2 0 P 840 22 -4.5833555473571297e-01 -1.4153351333293879e-01 9.3821525731023914e-01 1.0537319797657170e+00 1 0 0 0 0 P 841 22 -2.4238349400179526e-01 -6.2449872014674085e-02 7.4268291148327781e-01 7.8372677106785482e-01 1 0 0 0 0 V -266 0 -2.8573182375079734e-04 1.4028026445702631e-05 3.9525790403060275e-04 4.9318312367514078e-04 0 2 0 P 842 22 -4.8670088585876731e-01 6.7444217589618599e-03 7.1792170013443690e-01 8.6737235778210742e-01 1 0 0 0 0 P 843 22 -5.0142434205563934e-02 1.9611943423620378e-02 2.4703194411862188e-02 5.9237993273412434e-02 1 0 0 0 0 V -267 0 -8.6170275025045757e-06 -4.3250915510136134e-05 5.2160237559276391e-05 6.9242695084572025e-05 0 2 0 P 844 22 5.4231022688158151e-04 -2.6861432599347190e-01 2.4786507805192448e-01 3.6550109048673990e-01 1 0 0 0 0 P 845 22 -1.0296354016542107e-01 -2.4546224637773770e-01 3.7210691149490288e-01 4.5751148464544261e-01 1 0 0 0 0 V -268 0 -1.3559423048696604e-05 3.7534368444001442e-04 1.5163900406594260e-03 1.5674112564740576e-03 0 2 0 P 846 22 -6.9512889961407143e-02 1.8523523316628454e-01 8.5899620678622435e-01 8.8148659476481905e-01 1 0 0 0 0 P 847 22 5.5165173053377328e-02 2.1192952142700683e-01 7.4555104772462577e-01 7.7704805715835634e-01 1 0 0 0 0 V -269 0 -5.7187178484318609e-06 3.2522945975803378e-05 2.1002784616264002e-05 3.9307279355949866e-05 0 2 0 P 848 22 -1.6655797726448668e-01 6.6917956386937594e-01 3.8197532690296521e-01 7.8831973136124955e-01 1 0 0 0 0 P 849 22 -4.3533895632700277e-02 5.2563487063961045e-01 3.8961622089425535e-01 6.5573471532716643e-01 1 0 0 0 0 V -270 0 -5.6206394003341885e-05 1.4382661140616043e-05 7.0346581045973103e-05 9.9480978229743713e-05 0 2 0 P 850 22 -1.3308214918023575e-01 3.0659907402193201e-03 2.2689472110321066e-01 2.6306172886635065e-01 1 0 0 0 0 P 851 22 -5.7674123015942616e-02 4.5746655438107388e-02 1.1851275682818740e-02 7.4562146460125281e-02 1 0 0 0 0 V -271 0 -1.1581993380902514e+01 2.3534097171040013e+01 1.6681591596055529e+01 3.1902220089222034e+01 0 2 0 P 852 111 -3.7477557912726089e-01 4.3283607439480459e-01 2.3007234663969625e-01 6.3163018222372425e-01 2 0 0 -297 0 P 853 111 -4.2857691402210413e-01 1.1995405825931629e+00 9.2699947663451365e-01 1.5811778554613383e+00 2 0 0 -298 0 V -272 0 1.0296998203039187e-04 -5.6842865030906221e-05 2.4272796414930123e-04 2.7089352983749546e-04 0 2 0 P 854 22 3.4669330381668156e-01 -1.3248240772383829e-01 6.5885331005432801e-01 7.5619806891923225e-01 1 0 0 0 0 P 855 22 2.0595122390644877e-01 -1.7259580711126687e-01 6.4387859751165588e-01 6.9769969728711434e-01 1 0 0 0 0 V -273 0 3.6676439077489542e-05 1.1805695027833619e-05 1.1327146249227364e-04 1.2018419345618263e-04 0 2 0 P 856 22 3.6190906908006160e-01 1.0677278790435563e-01 1.2295064533120010e+00 1.2861044752488504e+00 1 0 0 0 0 P 857 22 7.3492547124568597e-02 3.3377641767334466e-02 1.1518728139867770e-01 1.4065323049551193e-01 1 0 0 0 0 V -274 0 5.7537881395215671e-05 -3.6231874647802080e-05 1.9961401955402903e-04 2.1797662937944319e-04 0 2 0 P 858 22 6.4021119248965128e-02 -1.1477165960550940e-01 3.3395150490363512e-01 3.5887998716269448e-01 1 0 0 0 0 P 859 22 7.6729789267323587e-02 2.6140150236961927e-02 1.5435035681826703e-01 1.7434104698935698e-01 1 0 0 0 0 V -275 0 1.4143044732445466e-04 -2.2649987396631322e-05 3.1342270375823419e-04 3.5085726064462957e-04 0 2 0 P 860 22 2.8685316037143427e-01 -4.8396331837284201e-02 5.1442350835622341e-01 5.9098095273867313e-01 1 0 0 0 0 P 861 22 2.5452894429955453e-03 2.0493721485830138e-03 1.2690971458265818e-01 1.2695177856179796e-01 1 0 0 0 0 V -276 0 -1.9609430742211879e-05 3.9652464627463171e-05 -1.1126065812029840e-05 4.6250270136116946e-05 0 2 0 P 862 22 -3.2898999259710410e-01 6.9728372043979336e-01 -1.7819363398421703e-01 7.9132292599917975e-01 1 0 0 0 0 P 863 22 -1.7220785573699261e-02 2.7932382203434310e-03 -1.8240620196887925e-02 2.5240401357704851e-02 1 0 0 0 0 V -277 0 7.4946606271707991e-06 5.3444972193909493e-06 -3.1237538630684658e-04 3.1258920260177308e-04 0 2 0 P 864 22 -2.5939392912113890e-02 1.1055292965454789e-02 -5.9037889096908880e-01 5.9105186448322145e-01 1 0 0 0 0 P 865 22 1.7061439696592312e-01 9.2113508844967287e-02 -5.4396353456212836e+00 5.4430898269545551e+00 1 0 0 0 0 V -278 0 3.0608365998778314e-06 2.1547102438792658e-06 -7.4597435973107975e-05 7.4933423829997312e-05 0 2 0 P 866 22 4.8273506823902829e-02 9.5798710810473378e-02 -1.1178139420491429e+00 1.1229495685441402e+00 1 0 0 0 0 P 867 22 2.0367091324788124e-02 -4.7478392116268080e-02 -5.5506615411710836e-01 5.5746520211878325e-01 1 0 0 0 0 V -279 0 7.3497839080402468e-05 1.0063970414168227e-04 -2.9324068201009852e-04 3.2051146452705272e-04 0 2 0 P 868 22 1.0239467217267258e-01 2.5046453098124133e-01 -5.7194082843864680e-01 6.3271910150088562e-01 1 0 0 0 0 P 869 22 1.8313482452674731e-01 1.4050756331554393e-01 -5.6726088679196596e-01 6.1242603878943769e-01 1 0 0 0 0 V -280 0 -1.5809400362047432e+01 2.5837836478030926e+01 -5.1796863069841450e+01 6.8055227482946052e+01 0 2 0 P 870 -211 -8.1637091209585885e-02 -7.4492674307197896e-03 -4.3773712239139478e-01 4.6670513117590162e-01 1 0 0 0 0 P 871 211 -1.6338948922982252e-01 4.0790447592571305e-01 -3.6505159475434984e-01 5.8806856607346980e-01 1 0 0 0 0 V -281 0 9.7759124212234610e+01 -1.4002773145830108e+02 7.0395476782909634e+02 7.3167290163445716e+02 0 2 0 P 872 211 4.0810021953445413e-01 -4.2654016644429393e-01 2.8125298200993463e+00 2.8772010838004451e+00 1 0 0 0 0 P 873 -211 6.3817952109377921e-02 -2.4942365321689722e-01 5.8571100530576925e-01 6.5484506292083533e-01 1 0 0 0 0 V -282 0 -5.3714327819125330e+01 1.0349979751754918e+02 4.8451074588229694e+00 1.1804403831392172e+02 0 2 0 P 874 111 -1.2847317695017593e+00 2.5951810659854240e+00 4.7745847840927308e-02 2.8993102198975556e+00 2 0 0 -299 0 P 875 111 -2.2508671325315618e-01 3.1402237372973529e-01 8.8441889942882115e-02 4.1870711479820233e-01 2 0 0 -300 0 V -283 0 -6.1795070696748610e-04 1.2524624417946631e-03 2.0582895725539617e-04 1.4185137206031864e-03 0 2 0 P 876 22 -4.5824644823641209e-02 1.6054686887279063e-01 5.7966219939721009e-02 1.7673504981233912e-01 1 0 0 0 0 P 877 22 -5.5473059559328564e-01 1.0566584427553118e+00 1.4206860082436257e-01 1.2018471557038997e+00 1 0 0 0 0 V -284 0 -4.7338734079736979e-05 -3.1018909318463585e-05 -1.1077315728494936e-03 1.1092317097026376e-03 0 2 0 P 878 22 -2.8286993319012221e-01 -2.6091458217827790e-01 -7.8416705460692491e+00 7.8511074869336896e+00 1 0 0 0 0 P 879 22 -2.9416975768547787e-01 -1.1719315966110738e-01 -5.6611215500088221e+00 5.6699706601518125e+00 1 0 0 0 0 V -285 0 -9.6203825882511234e-06 -1.5092913852140837e-05 -3.3442503937372516e-04 3.3492458995601059e-04 0 2 0 P 880 22 -1.5837994384267873e-01 -1.8321208992150420e-01 -5.5515493446030559e+00 5.5568292219635138e+00 1 0 0 0 0 P 881 22 -1.8835047883236619e-01 -3.6075509135690309e-01 -6.5015404562932728e+00 6.5142649964239583e+00 1 0 0 0 0 V -286 0 -4.5799783642441675e-05 -6.0708708357014615e-05 -1.6885828201605106e-03 1.6904338081723976e-03 0 2 0 P 882 22 -2.7959988872439190e-01 -2.8973793145834364e-01 -8.8827049741258044e+00 8.8918261242592749e+00 1 0 0 0 0 P 883 22 -5.1478320643582294e-03 -8.7701981176301971e-02 -1.6156002833291603e+00 1.6179871486419393e+00 1 0 0 0 0 V -287 0 2.6240129087857226e-07 3.5917796805956739e-07 -8.9234329900518111e-05 8.9236291368777044e-05 0 2 0 P 884 22 4.8994414984101710e-02 1.0476408181621308e-01 -2.8477584219978002e+01 2.8477819069786200e+01 1 0 0 0 0 P 885 22 4.1793144245530177e-02 1.9506995281028675e-02 -2.3963759805789202e+00 2.3968197742146580e+00 1 0 0 0 0 V -288 0 -3.9236826395317965e-06 2.5433458299596637e-06 -1.3352007855739634e-03 1.3352502617090453e-03 0 2 0 P 886 22 -5.8693005136177208e-02 7.2278789657185177e-02 -1.4778051571793698e+01 1.4778344878601269e+01 1 0 0 0 0 P 887 22 8.2553500953032773e-03 -3.9584912143060307e-02 -2.3855171517765390e+00 2.3858598444784263e+00 1 0 0 0 0 V -289 0 -2.1646700664991409e-05 1.2505257535310116e-04 -1.4833724903323395e-02 1.4834335252115048e-02 0 2 0 P 888 22 -3.0211336005094687e-02 3.2948973796556663e-01 -4.1362429595978668e+01 4.1363752952247211e+01 1 0 0 0 0 P 889 22 -3.5105113779369569e-02 4.7842142069094887e-02 -3.3966430571315356e+00 3.3971613587127543e+00 1 0 0 0 0 V -290 0 -2.0353664095648405e+00 1.6875987432595739e+01 -8.5755190010587251e+02 8.5786997498363803e+02 0 2 0 P 890 111 -9.2432441831670417e-02 1.2991647362334888e-01 -1.6438293415120480e+01 1.6439620800018929e+01 2 0 0 -301 0 P 891 111 2.9208903327932984e-02 3.9429363234053055e-01 -1.0199399592149145e+01 1.0207952403360336e+01 2 0 0 -302 0 V -291 0 7.8283678397293252e-06 -4.0701693662656088e-06 -8.2430817605570858e-06 1.2407768936633321e-05 0 2 0 P 892 22 2.6517695457568125e-01 -1.3445343009057775e-01 -3.5234686893402745e-01 4.6102587579090132e-01 1 0 0 0 0 P 893 22 1.0485254713648660e-01 -5.7934405192270666e-02 -3.7285235596341809e-02 1.2546171025243544e-01 1 0 0 0 0 V -292 0 2.0626214806308061e-05 -1.5445224500114047e-05 -2.5914771107208264e-05 3.9944763887597555e-05 0 2 0 P 894 22 8.8771999684374520e-02 -7.9276642275247999e-02 -2.0355509496016780e-01 2.3579637533822093e-01 1 0 0 0 0 P 895 22 8.3887843708072923e-02 -5.0013684059146267e-02 -1.3374688955070701e-02 9.8576981186294516e-02 1 0 0 0 0 V -293 0 1.0060468398799984e-04 -5.5310164241865670e-05 -1.1426085285617699e-04 1.6231725754667982e-04 0 2 0 P 896 22 7.2241225452817859e-01 -3.7910707954432871e-01 -9.0295475042453099e-01 1.2169342318167169e+00 1 0 0 0 0 P 897 22 5.6747956881576889e-01 -3.3004607093823990e-01 -5.6202813093980641e-01 8.6419852460692892e-01 1 0 0 0 0 V -294 0 -1.1008599380663210e+01 -2.3624494249144696e+01 5.2779010210583266e+01 6.2003207530948181e+01 0 2 0 P 898 111 -2.5224494777092465e-01 -5.9967469469488710e-01 9.2641020337843216e-01 1.1400406652646347e+00 2 0 0 -303 0 P 899 111 -2.9000850973430900e-02 -3.8798107677190620e-03 4.2197884870075492e-01 4.4400658941010218e-01 2 0 0 -304 0 V -295 0 -1.2875283207805534e-02 2.0040947643899264e-04 1.8095989614602543e+00 1.8097217732866071e+00 0 2 0 P 900 111 2.6103261286544759e-02 2.1452230433249373e-03 5.4266544317228318e+00 5.4283960710295220e+00 2 0 0 -305 0 P 901 111 -4.0993735970939815e-01 3.8293244258695491e-03 4.8520569459860511e+01 4.8522489050049352e+01 2 0 0 -306 0 V -296 0 5.7576491057203159e+00 1.9002177460790703e+00 -1.5149780475274210e+02 1.5263023076486550e+02 0 2 0 P 902 22 1.4193329064350904e-01 5.5545544251085641e-02 -7.4947141989846700e-01 7.6481224867523401e-01 1 0 0 0 0 P 903 22 -1.8389979891361298e-02 2.2108716106321646e-02 -4.5885108444332101e-01 4.5975135060496147e-01 1 0 0 0 0 V -297 0 -1.1582195425094504e+01 2.3534330516059768e+01 1.6681715629701170e+01 3.1902560605565444e+01 0 2 0 P 904 22 -1.2508929374930752e-01 2.2198710888883297e-01 1.4803831919546262e-01 2.9468788891595254e-01 1 0 0 0 0 P 905 22 -2.4968628537795337e-01 2.1084896550597165e-01 8.2034027444233618e-02 3.3694229330777170e-01 1 0 0 0 0 V -298 0 -1.1582007631562883e+01 2.3534137057102193e+01 1.6681622419821981e+01 3.1902272665149166e+01 0 2 0 P 906 22 -1.0250867820525052e-01 4.6658356693029301e-01 3.7654391115163027e-01 6.0827096845250606e-01 1 0 0 0 0 P 907 22 -3.2606823581685362e-01 7.3295701566286986e-01 5.5045556548288344e-01 9.7290688700883221e-01 1 0 0 0 0 V -299 0 -5.3714846500591094e+01 1.0350084526335199e+02 4.8451267351317915e+00 1.1804520884500863e+02 0 2 0 P 908 22 -7.9813961886278795e-01 1.7403142088270098e+00 2.2672744941151278e-03 1.9146084553185407e+00 1 0 0 0 0 P 909 22 -4.8659215063897127e-01 8.5486685715841393e-01 4.5478573346812178e-02 9.8470176457901426e-01 1 0 0 0 0 V -300 0 -5.3714350518437982e+01 1.0349982918575357e+02 4.8451163779194468e+00 1.1804408053926488e+02 0 2 0 P 910 22 8.7214984394195783e-03 1.5308966907009878e-03 -1.2750281060814255e-02 1.5523461174498267e-02 1 0 0 0 0 P 911 22 -2.3380821169257576e-01 3.1249147703903429e-01 1.0119217100369636e-01 4.0318365362370401e-01 1 0 0 0 0 V -301 0 -2.0353844259364271e+00 1.6876012755127718e+01 -8.5755510415843833e+02 8.5787317929492963e+02 0 2 0 P 912 22 -5.0936294274395923e-02 1.3372159183959825e-01 -1.5101828689246995e+01 1.5102506604188660e+01 1 0 0 0 0 P 913 22 -4.1496147557274488e-02 -3.8051182162493627e-03 -1.3364647258734856e+00 1.3371141958302686e+00 1 0 0 0 0 V -302 0 -2.0353659347161108e+00 1.6875993842621764e+01 -8.5755206591736794e+02 8.5787014093417645e+02 0 2 0 P 914 22 -2.6458722683072245e-02 2.1145174977200157e-01 -4.0715976740152477e+00 4.0771705293664180e+00 1 0 0 0 0 P 915 22 5.5667626011005229e-02 1.8284188256852901e-01 -6.1278019181338976e+00 6.1307818739939197e+00 1 0 0 0 0 V -303 0 -1.1008607493405217e+01 -2.3624513535977314e+01 5.2779040005935123e+01 6.2003244197116828e+01 0 2 0 P 916 22 -1.7932133090279753e-01 -3.0521205700656789e-01 4.1542521132725618e-01 5.4579176034933552e-01 1 0 0 0 0 P 917 22 -7.2923616868127109e-02 -2.9446263768831921e-01 5.1098499205117609e-01 5.9424890491529914e-01 1 0 0 0 0 V -304 0 -1.1008606042173026e+01 -2.3624495140339150e+01 5.2779107139333583e+01 6.2003309519481434e+01 0 2 0 P 918 22 -3.1335663804435733e-02 2.7939771342145765e-02 4.0628891940320311e-01 4.0845225018175441e-01 1 0 0 0 0 P 919 22 2.3348128310048352e-03 -3.1819582109864825e-02 1.5689929297551791e-02 3.5554339228347769e-02 1 0 0 0 0 V -305 0 -1.2872564898266207e-02 2.0063287305593802e-04 1.8101640757709321e+00 1.8102870689659916e+00 0 2 0 P 920 22 3.6613282802286831e-02 -9.8335226714439394e-03 4.1784485102191810e-01 4.1956113996796573e-01 1 0 0 0 0 P 921 22 -1.0510021515742070e-02 1.1978745714768877e-02 5.0088095807009143e+00 5.0088349310615561e+00 1 0 0 0 0 V -306 0 -1.2963643963177167e-02 2.0123487571236637e-04 1.8200574231422397e+00 1.8201806487304395e+00 0 2 0 P 922 22 -2.3735050177417261e-01 -5.9248654947571582e-02 3.0584664151553945e+01 3.0585642496556360e+01 1 0 0 0 0 P 923 22 -1.7258685793522552e-01 6.3077979373441131e-02 1.7935905308306566e+01 1.7936846553492991e+01 1 0 0 0 0 E 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 222 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -1 0 P 3 2 1.1704323272484478e+00 8.1361174969814221e-01 7.2954183724810684e+02 7.2954322981661278e+02 3 0 0 -3 0 P 29 2101 -1.1704323272484478e+00 -8.1361174969814221e-01 1.4916902351181495e+03 1.4916910286805378e+03 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -2 0 P 4 21 9.1802741860387727e-01 -9.4937632559807617e-01 -5.8782942051959185e+02 5.8783090401759932e+02 3 0 0 -4 0 P 17 2101 -1.1357719929402199e-01 4.8501315304379056e-01 -4.5249488430370557e+03 4.5249489075417387e+03 2 0 0 -9 0 P 83 2 -8.0445021930985527e-01 4.6436317255428561e-01 -2.9931433926654938e+02 2.9931596242746963e+02 2 0 0 -15 0 V -3 0 0 0 0 0 0 2 0 P 5 2 -1.0715606852744096e-01 -5.3456663999982823e-01 5.0986983685541668e+02 5.0987012834533152e+02 3 0 0 -5 0 P 30 21 1.2726614343998868e+00 1.3822261869034078e+00 1.8135889400218031e+02 1.8136862642158496e+02 2 0 0 -15 0 V -4 0 0 0 0 0 0 7 0 P 6 -1 -1.3217596331527364e+01 -6.2409611116597610e+00 7.7183235580693008e+00 1.6529578546578325e+01 3 0 0 -5 0 P 11 1 5.8275235859555270e+00 4.1045817156903803e+00 6.3710567516382097e+00 9.5659231827483620e+00 2 0 0 -9 0 P 12 21 7.9845516756960260e+00 3.7660034393679687e+00 1.2786180117250570e+01 1.5537768480639857e+01 2 0 0 -9 0 P 13 21 9.0744307411692238e-01 2.4205796124698081e-01 3.9914330386802197e+00 4.1004368903366659e+00 2 0 0 -9 0 P 14 21 -1.5827779710919703e+00 -1.6376251826535566e+00 -2.0766542515553471e+02 2.0767791362437563e+02 2 0 0 -9 0 P 15 21 5.1005792897960278e-01 -1.4081009653043615e+00 -2.2871269558386899e+02 2.2871759886081992e+02 2 0 0 -9 0 P 16 21 4.9375241768026495e-01 1.9062001967098396e-01 -1.4400518702535288e+02 1.4400615965176186e+02 2 0 0 -9 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -6.5485677906973372e+00 -5.0227210479790454e+00 1.2773245158537030e+01 1.5207473778220365e+01 3 0 0 -6 0 P 8 24 -6.7761846093574674e+00 -1.7528067036805439e+00 5.0481491525494891e+02 5.1119223311368944e+02 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -6.5485677906973372e+00 -5.0227210479790454e+00 1.2773245158537030e+01 1.5207473778220365e+01 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -6.7761846093574674e+00 -1.7528067036805439e+00 5.0481491525494891e+02 5.1119223311368944e+02 2 0 0 -8 0 V -8 0 0 0 0 0 0 8 0 P 18 -1 -6.5686228307056052e+00 1.0148832857090728e+01 1.2239518863107135e+01 1.7206403931489771e+01 2 0 0 -11 0 P 19 21 -2.0559179636137439e+00 1.9085654399969074e+00 3.6603990136482847e+00 4.6117178633322320e+00 2 0 0 -11 0 P 20 21 -1.1080071407886092e+00 -1.2302593452686978e+00 5.2538906053271175e+00 5.5085918684727462e+00 2 0 0 -11 0 P 21 21 1.6980726094143081e-01 2.9987565776286951e-01 6.0781412568556119e+00 6.0879028453382418e+00 2 0 0 -11 0 P 22 21 -3.9596970812057417e-02 -7.4949838636281496e-01 1.3149756129405672e+01 1.3171157960259226e+01 2 0 0 -11 0 P 23 21 -1.8981438892219701e-01 -5.5785032510999366e-01 2.7065388346039644e+01 2.7071802171436719e+01 2 0 0 -11 0 P 24 21 4.7279937148223355e-01 -7.5690198728182834e-01 4.7628403149722942e+01 4.7636763391907344e+01 2 0 0 -11 0 P 25 2 2.5431680530610525e+00 -1.0815570614507738e+01 3.8973941789084336e+02 3.8989789308145401e+02 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 89 92 1.4026973512042352e+01 5.7425501410621864e+00 -5.0821834808942431e+03 5.1345547082324210e+03 2 0 0 -10 0 V -10 0 0 0 0 0 0 19 0 P 90 313 6.4843604245823405e+00 3.7755281311252777e+00 7.8467562513205982e+00 1.0891965639935110e+01 2 0 0 -21 0 P 91 3122 2.9853488516621662e+00 2.1949271037207154e+00 4.7018983897002000e+00 6.0895486767274072e+00 2 0 0 -22 0 P 92 -2112 2.9385010226172690e+00 1.4777222691209064e+00 5.4877364859524915e+00 6.4665674734538312e+00 1 0 0 0 0 P 93 -213 1.7312645336007431e+00 1.5983142089993524e-01 2.0746041676167093e+00 2.8587516626710743e+00 2 0 0 -23 0 P 94 211 5.4865014045039617e-01 5.3032533653387837e-01 2.1770080448486460e+00 2.3110832419931624e+00 1 0 0 0 0 P 95 311 -7.9131985855261974e-02 3.0405386607759238e-01 -1.5990113514674982e+00 1.7038847835707795e+00 2 0 0 -24 0 P 96 -313 -2.1781600911194307e-01 -4.9874093120531915e-01 -1.6983947915338529e-01 1.0459856689527562e+00 2 0 0 -25 0 P 97 221 4.0409014635171209e-01 4.3971459781932559e-01 -9.7579286434525259e-01 1.2682708663850442e+00 2 0 0 -26 0 P 98 -213 -5.2113634826856020e-02 -6.3506553642791175e-02 -2.5525015397039015e+00 2.6493369398756657e+00 2 0 0 -27 0 P 99 213 -5.8465216990410318e-01 -7.2747914679793346e-01 -2.2709266996933245e+01 2.2741593428907553e+01 2 0 0 -28 0 P 100 313 3.0174890842526653e-01 1.8021169504097584e-01 -2.2689627926029335e+01 2.2710012357630042e+01 2 0 0 -29 0 P 101 -311 -3.1207108979161702e-01 -4.4717569186949419e-01 -2.2463512008646514e+01 2.2475640183451702e+01 2 0 0 -30 0 P 102 311 -3.0827245514081758e-01 -9.0834425973967292e-02 -2.3017419711853826e+01 2.3025042202351713e+01 2 0 0 -31 0 P 103 333 6.1223416940558861e-01 -6.9647856699879029e-01 -9.3302382310668179e+01 9.3312571582132293e+01 2 0 0 -32 0 P 104 333 -1.0102150210817433e+00 -4.8570549583368477e-01 -1.5172728398677717e+02 1.5173488534819958e+02 2 0 0 -33 0 P 105 -321 4.6261350660270734e-01 -3.0558040110177053e-02 -7.5949291331280463e+01 7.5952310298858066e+01 1 0 0 0 0 P 106 2212 -1.4883066254250268e-01 -7.5747211985574192e-01 -1.2332896777094531e+03 1.2332902762163733e+03 1 0 0 0 0 P 107 -2214 3.1605824160496304e-01 1.4757847356188206e-01 -1.0224646971285487e+03 1.0224654567842047e+03 2 0 0 -34 0 P 108 2214 -4.4793405005967200e-02 3.3060821944959212e-01 -2.4315611798888181e+03 2.4315615248767435e+03 2 0 0 -35 0 V -11 0 0 0 0 0 0 1 0 P 109 92 -6.7761846093574984e+00 -1.7528067036805677e+00 5.0481491525494977e+02 5.1119223311369029e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 11 0 P 110 213 -5.3524836030562764e+00 8.8904001186599420e+00 1.0975281784518415e+01 1.5123864944643898e+01 2 0 0 -36 0 P 111 223 -2.1346782520193894e+00 1.6898894454967928e+00 3.4100765771138892e+00 4.4349012111108772e+00 2 0 0 -37 0 P 112 221 -5.6744583469230669e-01 3.6485945089251520e-01 7.9427064736043251e-01 1.1771510344784122e+00 2 0 0 -38 0 P 113 -213 -2.2222375170427144e-01 -2.6583503682953580e-01 4.9717248576496296e+00 5.0321142869441378e+00 2 0 0 -39 0 P 114 213 -5.0319287445012506e-01 8.2034055214051893e-01 2.6951006875598313e+00 2.9711226421312618e+00 2 0 0 -40 0 P 115 -213 -7.6943831385429073e-01 -1.6055065073193064e-01 2.4556647486366434e+00 2.6888382527189791e+00 2 0 0 -41 0 P 116 -2114 -1.8902112090432779e-01 -4.4970111294541110e-01 2.3751426458726026e+01 2.3791248845808912e+01 2 0 0 -42 0 P 117 211 -3.7286637377801184e-02 -3.3924780555679357e-01 1.0931768644676040e+01 1.0937985411058303e+01 1 0 0 0 0 P 118 2114 1.3208541719526350e+00 -5.7200626284953628e+00 1.7825435903611813e+02 1.7835475350060224e+02 2 0 0 -43 0 P 119 113 3.1679150953764579e-01 -1.9909193335584799e-01 2.9505694407770072e+01 2.9518925190601763e+01 2 0 0 -44 0 P 120 331 1.3619400972110161e+00 -6.3838071029554531e+00 2.3706954740482044e+02 2.3716132779359123e+02 2 0 0 -45 0 V -13 0 0 0 0 0 3 1 0 P 26 2 -8.3403704558801672e-01 1.9413039471862088e+00 6.2168451490303987e+01 6.2204345824958679e+01 2 0 0 -13 0 P 27 21 1.5240992634851376e+00 -7.5611288752719119e-01 1.5511277367579703e+01 1.5604304240741751e+01 2 0 0 -13 0 P 28 -2 8.3403704558801672e-01 -1.9413039471862088e+00 3.5935664665615050e+00 4.1686926917643241e+00 2 0 0 -13 0 P 121 92 1.5240992634851376e+00 -7.5611288752719119e-01 8.1273295324445201e+01 8.1977342757464754e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 5 0 P 122 221 -7.9993062604067089e-01 1.8326756625733338e+00 5.0591146027457278e+01 5.0633608867674766e+01 2 0 0 -46 0 P 123 211 5.8673604834305937e-01 -6.8523841578523648e-01 1.6506681660694479e+01 1.6531903402491213e+01 1 0 0 0 0 P 124 1114 6.2020115577185464e-01 -2.0971456925278500e-01 4.0162886749753399e+00 4.2552069944249995e+00 2 0 0 -47 0 P 125 211 8.2325877209872389e-01 -4.2424390597938649e-01 6.4095635221368967e+00 6.4776324553656242e+00 1 0 0 0 0 P 126 -2212 2.9383391331217079e-01 -1.2695916590831167e+00 3.7496154391812069e+00 4.0789910375081533e+00 1 0 0 0 0 V -15 0 0 0 0 0 52 1 0 P 31 21 -3.6771854683024401e+00 -4.5455549568856819e+00 1.5310735535905769e+03 1.5310847168812415e+03 2 0 0 -15 0 P 32 21 5.6370686308403277e+00 -7.9068690829950172e-01 1.3806166172729486e+03 1.3806283517365327e+03 2 0 0 -15 0 P 33 21 3.3816546252824469e+00 -5.6507284458183038e-01 2.9397301445154181e+02 2.9399300692542124e+02 2 0 0 -15 0 P 34 21 5.1785722076676688e+00 -7.3565085724739232e-01 4.4249725488911878e+02 4.4252816789069999e+02 2 0 0 -15 0 P 35 21 1.6282046480391124e+00 8.0817623843936107e-02 6.9052892049874146e+01 6.9072132458146910e+01 2 0 0 -15 0 P 36 21 1.4613761368640050e+00 1.8729074353819137e+00 6.6332787464599107e+01 6.6375312393227802e+01 2 0 0 -15 0 P 37 21 4.7071062460718660e-01 3.6589066612640131e-01 1.4147441098666631e+01 1.4159997673443248e+01 2 0 0 -15 0 P 38 21 3.6291661993645121e+00 2.2203211890134784e+00 7.7487765629111820e+01 7.7604474714266033e+01 2 0 0 -15 0 P 39 21 8.4128176340188754e-01 7.4170781564113164e-01 1.4642486316441454e+01 1.4685376774750825e+01 2 0 0 -15 0 P 40 21 5.9096756449150978e-01 1.0689049408550071e+01 1.0760868785424000e+02 1.0813988497142007e+02 2 0 0 -15 0 P 41 21 -7.2579892084618469e-01 7.6510125016231401e+00 6.6847453510296944e+01 6.7287790996471315e+01 2 0 0 -15 0 P 42 21 -4.4888801553703201e+00 4.8856667576245636e+00 7.5139347255278494e+01 7.5431699507999710e+01 2 0 0 -15 0 P 43 21 -5.1785722076676688e+00 7.3565085724739232e-01 1.0516788216065500e+02 1.0529787381733409e+02 2 0 0 -15 0 P 44 21 -3.3816546252824469e+00 5.6507284458183038e-01 4.3159424834063792e+01 4.3295390601443707e+01 2 0 0 -15 0 P 45 21 -4.9721872324203877e+00 -2.5900506545869604e+00 4.2122891134149228e+01 4.2494340396892362e+01 2 0 0 -15 0 P 46 21 -1.6834856746364306e+00 -1.0319448415751866e+00 2.8824793754610823e+01 2.8892347934506997e+01 2 0 0 -15 0 P 47 21 -3.1057064686006602e-01 -2.9059417988803726e-01 2.1315612284616911e+01 2.1319855209925496e+01 2 0 0 -15 0 P 48 21 -1.4613761368640050e+00 -1.8729074353819137e+00 8.7314519122033317e+01 8.7346829661910604e+01 2 0 0 -15 0 P 49 21 5.6192117601838165e-01 -4.5027022371450496e+00 6.8542546017526107e+01 6.8692581094388444e+01 2 0 0 -15 0 P 50 21 7.2579892084618469e-01 -7.6510125016231401e+00 5.2329519591403553e+01 5.2890863077100406e+01 2 0 0 -15 0 P 51 21 1.1984416629942880e+00 -3.2506838668685987e+00 1.8691763752874273e+01 1.9010135197183235e+01 2 0 0 -15 0 P 52 21 -5.6370686308403277e+00 7.9068690829950172e-01 1.2058158569908802e+01 1.3334201012165121e+01 2 0 0 -15 0 P 53 21 -3.6291661993645121e+00 -2.2203211890134784e+00 5.5990418535608963e+00 7.0320653554214587e+00 2 0 0 -15 0 P 54 21 -5.9096756449150978e-01 -1.0689049408550071e+01 8.9691870570734551e+00 1.3966078060267300e+01 2 0 0 -15 0 P 55 21 2.6573993894737526e+00 -2.7516669700532668e+00 2.3667336140365802e+00 4.4983186446791708e+00 2 0 0 -15 0 P 56 21 3.1057064686006602e-01 2.9059417988803726e-01 5.5310753002352009e-01 6.9772992184985161e-01 2 0 0 -15 0 P 57 21 5.3177450259835544e+00 3.1409626225641749e+00 3.3397729034515584e+00 7.0212635190788353e+00 2 0 0 -15 0 P 58 21 4.9721872324203877e+00 2.5900506545869604e+00 2.2465576098423261e+00 6.0397044101438544e+00 2 0 0 -15 0 P 59 21 5.3110642386278517e-01 -1.0677186970273143e+00 -1.0747643578997981e+00 1.6053708837716558e+00 2 0 0 -15 0 P 60 21 4.4888801553703201e+00 -4.8856667576245636e+00 -1.1694113715120455e+01 1.3445150809790254e+01 2 0 0 -15 0 P 61 21 1.9692753564584113e+00 -4.8234948441289044e-01 -6.0545866266705675e+00 6.3850392069685729e+00 2 0 0 -15 0 P 62 21 1.4452166521894729e+00 -4.8797449645332396e+00 -4.6251686691273115e+01 4.6530840137250301e+01 2 0 0 -15 0 P 63 21 1.4620489060083572e-01 -1.8418966864131061e+00 -6.8684374072445323e+01 6.8709222095706011e+01 2 0 0 -15 0 P 64 21 4.0172141962060387e-01 -1.0771727306709731e+00 -9.3603829759028159e+01 9.3610889466705785e+01 2 0 0 -15 0 P 65 21 -5.3177450259835544e+00 -3.1409626225641749e+00 -3.4359887463130758e+02 3.4365437681813211e+02 2 0 0 -15 0 P 66 21 -7.7233569092838661e-01 -5.7315226000886017e-02 -2.0336945204007922e+01 2.0351686114065199e+01 2 0 0 -15 0 P 67 21 -1.9692753564584113e+00 4.8234948441289044e-01 -8.3172378634140927e+01 8.3197086932870249e+01 2 0 0 -15 0 P 68 21 -1.4452166521894729e+00 4.8797449645332396e+00 -8.1239702301217733e+02 8.1241296368358064e+02 2 0 0 -15 0 P 69 21 -1.5240992634851376e+00 7.5611288752719119e-01 -1.1842496437013315e+01 1.1964084048698158e+01 2 0 0 -15 0 P 70 21 -4.0172141962060387e-01 1.0771727306709731e+00 -7.6473295502542760e+00 7.7332613069050904e+00 2 0 0 -15 0 P 71 21 -1.1984416629942880e+00 3.2506838668685987e+00 -2.2856438081656297e+01 2.3117525166040341e+01 2 0 0 -15 0 P 72 21 -2.1148840671962699e+00 2.9949801623855010e+00 -1.2205270872285231e+01 1.2744068340079536e+01 2 0 0 -15 0 P 73 21 3.6771854683024401e+00 4.5455549568856819e+00 -1.2383825988907871e+01 1.3694630661610143e+01 2 0 0 -15 0 P 74 21 1.6834856746364306e+00 1.0319448415751866e+00 -4.1091281052566444e+00 4.5589437327268882e+00 2 0 0 -15 0 P 75 21 7.7233569092838661e-01 5.7315226000886017e-02 -1.6219863860496893e+00 1.7973945841533774e+00 2 0 0 -15 0 P 76 21 -1.4620489060083572e-01 1.8418966864131061e+00 8.6126343116408988e-02 1.8496964671085330e+00 2 0 0 -15 0 P 77 21 -5.6192117601838165e-01 4.5027022371450496e+00 -4.1804060873011173e-01 4.5568454872857336e+00 2 0 0 -15 0 P 78 21 -5.3110642386278517e-01 1.0677186970273143e+00 -7.4894641031626885e-01 1.4081967103269510e+00 2 0 0 -15 0 P 79 21 -2.6573993894737526e+00 2.7516669700532668e+00 -2.7904471485460702e-01 3.8355323727151474e+00 2 0 0 -15 0 P 80 21 -1.6282046480391124e+00 -8.0817623843936107e-02 -1.0021489337131528e+00 1.9136050662460002e+00 2 0 0 -15 0 P 81 21 -8.4128176340188754e-01 -7.4170781564113164e-01 -1.4892504652198422e+00 1.8643369967291978e+00 2 0 0 -15 0 P 82 21 -4.7071062460718660e-01 -3.6589066612640131e-01 1.7889381601143503e-01 6.2245278462196840e-01 2 0 0 -15 0 P 127 92 -4.3412044428398264e+00 4.7840706596722438e+00 4.4525481399271048e+03 8.2167593082415915e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 126 0 P 128 2112 -5.2316542290389090e-01 -9.9051471023854420e-01 1.2458548885006398e+03 1.2458557463904790e+03 1 0 0 0 0 P 129 111 -3.8043858367760902e-01 4.6112807472291906e-02 1.1746360275407315e+02 1.1746430543562613e+02 2 0 0 -48 0 P 130 111 4.4717182031802943e-01 7.0150043819568197e-01 1.8741462083127021e+02 1.8741651577817487e+02 2 0 0 -49 0 P 131 223 1.2433327271739004e-01 5.7508859428568349e-01 6.5751215172531531e+01 6.5758517731994857e+01 2 0 0 -50 0 P 132 113 -2.1933490272355519e-01 -7.5403982597797503e-01 3.1797170692743202e+02 3.1797370743630984e+02 2 0 0 -51 0 P 133 211 -7.0275014797990121e-01 -1.0214532569728141e+00 3.8964595659688445e+02 3.8964795417994009e+02 1 0 0 0 0 P 134 -2212 1.5347143676336272e-01 -3.8222532684709315e-01 2.0686021477219319e+02 2.0686275270302571e+02 1 0 0 0 0 P 135 213 -8.8838170188911894e-02 -2.3006834322600025e-01 2.9040575089057410e+02 2.9040694798991399e+02 2 0 0 -52 0 P 136 1114 -7.8062575419333946e-01 -1.3703067786177658e+00 4.3119062832508411e+02 4.3119516226206326e+02 2 0 0 -53 0 P 137 -2114 1.2405095225144613e+00 -9.4575502582856474e-01 5.8286440457983690e+02 5.8286775945049351e+02 2 0 0 -54 0 P 138 111 1.5241268980050479e-01 -5.1191140034803635e-02 7.1359755068866537e+00 7.1390626973095346e+00 2 0 0 -55 0 P 139 2112 1.3555542694280700e+00 -2.4929609363811361e-01 2.4044486564479993e+02 2.4045065165777876e+02 1 0 0 0 0 P 140 211 1.4745624160514095e+00 1.3032312712821861e-01 1.7904805607908659e+02 1.7905422972921062e+02 1 0 0 0 0 P 141 -2212 1.2646469853349900e+00 -4.4897709568934335e-01 2.5395664011817817e+02 2.5396191904129392e+02 1 0 0 0 0 P 142 2112 1.1091084293191464e+00 -1.7270325832432318e-01 2.1099626404878367e+02 2.1100134165983960e+02 1 0 0 0 0 P 143 211 1.9209768288467561e+00 -3.7250136109150461e-01 1.3766194932191840e+02 1.3767592629118684e+02 1 0 0 0 0 P 144 223 9.6040019346621563e-01 5.7096344024133283e-01 1.4323058082337764e+02 1.4323710415354083e+02 2 0 0 -56 0 P 145 111 8.1464232096002243e-01 -4.3692115316140090e-01 3.9434827517043338e+01 3.9445891840653537e+01 2 0 0 -57 0 P 146 111 8.9584250899133389e-01 2.3225200445562483e-01 1.2646073969541494e+02 1.2646419801155734e+02 2 0 0 -58 0 P 147 -211 1.9764010665059890e+00 1.2120883862126240e-01 1.1937343506405554e+02 1.1938993815031245e+02 1 0 0 0 0 P 148 -311 6.9143988497464892e-01 -2.0097660021271568e-01 8.6194913026738277e+01 8.6199357235563212e+01 2 0 0 -59 0 P 149 331 1.8785343331515953e+00 7.8246944742228886e-01 5.7176860721763866e+01 5.7221079770630375e+01 2 0 0 -60 0 P 150 323 1.5293539221195895e+00 8.4253867305337826e-01 5.0041485889740720e+01 5.0080230782332997e+01 2 0 0 -61 0 P 151 223 1.9214135292620136e+00 1.4147469077715404e+00 4.1184894530986078e+01 4.1261045883190150e+01 2 0 0 -62 0 P 152 -213 1.6532053615722466e+00 2.8164162403973863e+00 4.2852983605233604e+01 4.2982734161587544e+01 2 0 0 -63 0 P 153 -311 -4.1967148092914647e-01 5.1170449098340587e+00 5.1912837582457293e+01 5.2168483340544363e+01 2 0 0 -64 0 P 154 313 -1.4383370436852649e-01 1.2257898350935135e+00 1.3414243081157045e+01 1.3496261623249000e+01 2 0 0 -65 0 P 155 -313 1.7220047790497300e-01 1.0002443261012480e+01 9.9916989482923810e+01 1.0042051988552450e+02 2 0 0 -66 0 P 156 313 -2.0854725969949790e+00 2.0260742627450066e+00 3.1474964913400036e+01 3.1619501150468121e+01 2 0 0 -67 0 P 157 213 -1.3280635356445782e+00 1.8248674713156170e+00 2.1764479528190844e+01 2.1901864782278118e+01 2 0 0 -68 0 P 158 -321 -3.1374857666403440e+00 1.7826315433628530e+00 5.7046910234457940e+01 5.7163058004392703e+01 1 0 0 0 0 P 159 323 -1.6512922797026690e+00 5.4892897198610524e-01 3.4072819972374688e+01 3.4128430052514510e+01 2 0 0 -69 0 P 160 -323 -2.7657180497810270e+00 4.6480846186905268e-02 4.4256690263472159e+01 4.4351636912212101e+01 2 0 0 -70 0 P 161 313 -2.0023260018908093e+00 2.6262016540275807e-01 3.1476331672888996e+01 3.1553491904508039e+01 2 0 0 -71 0 P 162 223 -1.6607523577208576e+00 -1.3649682622965515e+00 2.0208881784449726e+01 2.0337970086620981e+01 2 0 0 -72 0 P 163 213 -1.6532815212141381e+00 -7.6495223927947420e-01 3.3065587974191182e+01 3.3131047621675236e+01 2 0 0 -73 0 P 164 221 -4.2531932155639474e-01 8.6056136037740871e-02 7.7053978773851437e+00 7.7369994271132283e+00 2 0 0 -74 0 P 165 111 -7.5466571846104347e-01 3.2536149577890090e-02 1.3835595788041468e+01 1.3856857845778766e+01 2 0 0 -75 0 P 166 -213 -1.2575551825091695e+00 -1.1610499427843293e+00 1.8423294034525821e+01 1.8517786682685525e+01 2 0 0 -76 0 P 167 111 -3.9658409068992874e-03 2.7325358129837057e-01 4.8050354861751758e+00 4.8146930194342819e+00 2 0 0 -77 0 P 168 -2112 -1.1473754008853843e+00 -2.8022991199120972e+00 4.9179699685402731e+01 4.9281791805892347e+01 1 0 0 0 0 P 169 2112 -3.2180064710175510e-01 -4.2224082300311155e-01 1.3425782855849898e+01 1.3469086088017200e+01 1 0 0 0 0 P 170 223 -3.6331326139914694e-01 -8.1580332633998121e-01 2.2082115058016225e+01 2.2114163756762146e+01 2 0 0 -78 0 P 171 211 -1.6638938214343557e-01 -1.5213364325973100e+00 2.9784374802053581e+01 2.9823993899237276e+01 1 0 0 0 0 P 172 -213 4.4235336179713626e-02 -4.8873920543581961e-01 4.7718432933684012e+00 4.8336225177734180e+00 2 0 0 -79 0 P 173 211 -2.0521390035509124e-01 -4.4988466628781998e-01 3.4603058765265335e+00 3.4982432022207828e+00 1 0 0 0 0 P 174 223 3.0775903553842932e-01 -9.8566548626154626e-01 2.4773753288861805e+01 2.4807052720850027e+01 2 0 0 -80 0 P 175 -213 1.0931823886581636e-01 -2.9748165649503795e+00 2.9329962545012698e+01 2.9488474256059327e+01 2 0 0 -81 0 P 176 -2114 5.0142359701078743e-01 -3.3766899761491236e+00 2.1505993339509889e+01 2.1807985074876743e+01 2 0 0 -82 0 P 177 221 -2.0362660322698103e-01 -5.2076618420820953e-01 1.2047250014436038e+01 1.2072638304239288e+01 2 0 0 -83 0 P 178 2114 5.3708989367866955e-01 -2.5246524285967733e+00 1.2358852188651557e+01 1.2698883291827912e+01 2 0 0 -84 0 P 179 211 -8.4081224621093398e-01 -9.1335129978659085e-02 3.4218250847129159e+00 3.5275592177335664e+00 1 0 0 0 0 P 180 -211 -2.2031278804372542e-01 -1.8114575540713659e-01 3.7063727461188900e-01 4.8806073752080331e-01 1 0 0 0 0 P 181 213 -1.3452307778146919e-01 -1.7652810170981623e-01 2.1231841241494687e+00 2.3198814092564430e+00 2 0 0 -85 0 P 182 -211 -7.7425536795393135e-01 1.8059636258949233e-04 1.6309018169397684e+00 1.8107434740509107e+00 1 0 0 0 0 P 183 213 -8.7343595864523271e-01 -5.1914990171308961e-01 1.7696788002294721e+00 2.1687081772437229e+00 2 0 0 -86 0 P 184 -2212 -3.1107671881873085e+00 -1.1797834752290535e+00 7.0382680713899539e+00 7.8413219284233939e+00 1 0 0 0 0 P 185 2212 -1.3305386112012327e+00 3.1026906379965624e-01 2.2372529014954470e+00 2.7842864482660934e+00 1 0 0 0 0 P 186 -213 -1.0868050687840674e+00 -1.5322634580354191e+00 2.0049883023099455e+00 2.8013620961882681e+00 2 0 0 -87 0 P 187 -2112 2.1763065455706526e-01 -3.6943737309396369e+00 3.4881003648539108e+00 5.1715951413324861e+00 1 0 0 0 0 P 188 2212 -2.0029706278463105e-01 -1.6055738689921297e+00 9.7546951550309258e-01 2.1094733301765980e+00 1 0 0 0 0 P 189 -211 4.1446014801913966e-01 -1.7510657482765565e-01 9.9351226136172499e-01 1.0995389603010932e+00 1 0 0 0 0 P 190 211 1.0782426959962471e-01 -3.2267917754915301e+00 3.2001906014189330e+00 4.5480227468433512e+00 1 0 0 0 0 P 191 113 2.8606987619444052e-01 -7.4271965742460222e-01 6.5321163764209367e-01 1.3027440678777920e+00 2 0 0 -88 0 P 192 -2212 5.2268400730036402e-01 -1.0020776618513685e+00 1.7596808529484231e+00 2.2922010184541763e+00 1 0 0 0 0 P 193 -213 3.8870142465985247e-01 1.5107078531349782e-01 -1.6853380930334408e-01 8.0944741237390028e-01 2 0 0 -89 0 P 194 3224 1.3380652038935394e+00 -1.0786146584442891e+00 1.7820038963025577e+00 2.8260213905267015e+00 2 0 0 -90 0 P 195 333 4.7061834197900287e+00 2.0613121806756536e+00 2.2732329140826351e+00 5.7087010398922793e+00 2 0 0 -91 0 P 196 311 2.3259789199831693e+00 1.0776281238376622e+00 1.7930943720070938e+00 3.1676999803193899e+00 2 0 0 -92 0 P 197 213 1.6580274682240530e+00 1.1022573807713145e+00 8.6718788101809374e-01 2.2865429181902668e+00 2 0 0 -93 0 P 198 -211 6.8479107795390048e-01 2.3066598797702304e-02 -2.3862473141211996e-01 7.3884533954466114e-01 1 0 0 0 0 P 199 211 1.1054969414817907e-01 -5.1752673543190242e-01 -1.3347675729948968e-01 5.6333913977482974e-01 1 0 0 0 0 P 200 -211 1.1277241392676780e-01 2.1698547232312457e-01 -2.6317027164356849e-01 3.8540717341418196e-01 1 0 0 0 0 P 201 111 9.1759241472600162e-01 -7.3746334904868949e-01 -2.5874185259451199e+00 2.8458359509214191e+00 2 0 0 -94 0 P 202 113 1.3994312783598655e+00 -1.1351106934793307e+00 -2.1964224601024132e+00 2.9820206301737429e+00 2 0 0 -95 0 P 203 213 1.4879754305104860e+00 -1.2098310749643899e+00 -5.7514823604929353e+00 6.1191975280916324e+00 2 0 0 -96 0 P 204 -213 5.3126789530888818e-01 -1.2114758784849975e+00 -6.2531671324219564e+00 6.4370104050825203e+00 2 0 0 -97 0 P 205 223 1.9512032819036333e+00 -1.6342787562468817e+00 -4.8721513079522625e+00 5.5527859596763864e+00 2 0 0 -98 0 P 206 -313 5.5895716003567453e-01 -1.2164028509751468e+00 -1.1907329633806484e+01 1.2016576969148849e+01 2 0 0 -99 0 P 207 311 7.1952409168827680e-01 -3.2300571594934713e-01 -4.5172793905966930e+00 4.6125411795089075e+00 2 0 0 -100 0 P 208 331 8.8024325378201296e-01 -1.9253934471315086e+00 -1.8834719196545574e+01 1.8977507184644477e+01 2 0 0 -101 0 P 209 113 1.3308532259702427e-01 -1.4103781075437853e+00 -1.9736387619296821e+01 1.9799966011026697e+01 2 0 0 -102 0 P 210 -313 -1.4873068595594577e-01 -1.0975803491358320e+00 -4.6715447719320878e+01 4.6737194873971390e+01 2 0 0 -103 0 P 211 321 -5.3656847178256983e-01 -8.6220778176765078e-01 -8.5076132983215018e+01 8.5083625641609430e+01 1 0 0 0 0 P 212 -211 -2.6863701434916248e-01 -1.3689785687355562e+00 -9.8110216752974665e+01 9.8120234300921368e+01 1 0 0 0 0 P 213 213 -2.6184103626602426e+00 -5.6206994268499144e-01 -1.1053161783907385e+02 1.1056656068383148e+02 2 0 0 -104 0 P 214 -213 -1.3168709426572840e+00 -9.3527035808174230e-01 -1.1149991800356845e+02 1.1151476844259933e+02 2 0 0 -105 0 P 215 213 -8.4847785157765376e-01 -4.6999791791926010e-01 -6.6041998105419140e+01 6.6052148640784353e+01 2 0 0 -106 0 P 216 -213 -6.3614780132812687e-01 6.0466864070678195e-01 -9.5448223829579490e+01 9.5455365286003442e+01 2 0 0 -107 0 P 217 -2112 -4.7400736844635238e-01 5.9170839200309167e-01 -1.3349033855042691e+02 1.3349579798592538e+02 1 0 0 0 0 P 218 2112 -9.2884601683326040e-01 5.5325631503995931e-01 -1.9690488111989870e+02 1.9691009077266574e+02 1 0 0 0 0 P 219 -313 -8.4168972565600941e-01 8.8635627431878161e-01 -4.1611197849482423e+01 4.1638838316080069e+01 2 0 0 -108 0 P 220 313 -6.7279319282340133e-01 2.4042816624755221e+00 -3.9559159657676611e+02 3.9560085393447577e+02 2 0 0 -109 0 P 221 -2112 -8.8606990527749419e-01 1.8383465101542337e-01 -1.5768512068958794e+01 1.5822379078689512e+01 1 0 0 0 0 P 222 2212 -2.6614704436164688e-01 6.8893635950537579e-01 -1.2656381652772295e+01 1.2712584894119768e+01 1 0 0 0 0 P 223 -2212 -3.1269057383832061e-01 1.3674271533947213e+00 -1.3765167271491231e+01 1.3868230349249391e+01 1 0 0 0 0 P 224 213 -5.8750830167982759e-01 3.0385204274268124e-01 -8.9238302872851225e+00 8.9799799567648577e+00 2 0 0 -110 0 P 225 1114 -1.3542428860231177e+00 2.3884169656989624e+00 -1.6813625990637753e+01 1.7082463259250243e+01 2 0 0 -111 0 P 226 -311 -2.3632075193857760e-01 4.5815560489077944e-01 -3.2324818532212225e+00 3.3109467552943461e+00 2 0 0 -112 0 P 227 323 -5.5453694347542504e-01 2.2045701747067916e+00 -9.1926955075690557e+00 9.5103860334278689e+00 2 0 0 -113 0 P 228 221 -3.1696669958568774e-01 1.3790271324468251e+00 -4.9700199486389316e+00 5.1964395034523099e+00 2 0 0 -114 0 P 229 223 2.0969349132403003e+00 1.2618765396288050e+00 -5.1143182751221854e+00 5.7238735087533135e+00 2 0 0 -115 0 P 230 -211 5.1889404878258527e-01 7.3167006257689093e-01 -1.9947391500748037e+00 2.1915875926082458e+00 1 0 0 0 0 P 231 213 3.5658929182843496e-01 6.9993133964829202e-01 -1.6574882830893414e+00 1.9756770203157559e+00 2 0 0 -116 0 P 232 223 -7.9360978118905703e-02 5.8013551336518354e-01 -1.4267352061606109e+00 1.7316600040244656e+00 2 0 0 -117 0 P 233 113 1.3771622064136644e+00 1.2294279227782667e+00 -2.6915304566618392e+00 3.3623148076489708e+00 2 0 0 -118 0 P 234 111 -4.0251492321278275e-02 6.7562409405455909e-02 -2.7333997195786502e-01 3.1483202262267856e-01 2 0 0 -119 0 P 235 -211 -1.6858108965307184e-01 1.2322870097588481e-01 -7.3131456595269217e-01 7.7324360702652795e-01 1 0 0 0 0 P 236 223 7.1857064624636180e-01 6.8655753476709813e-01 -1.6639478218971835e+00 2.0952452140885112e+00 2 0 0 -120 0 P 237 211 1.9321876594379825e-01 1.4279011431116198e+00 -4.2592800472858511e-01 1.5090161086364811e+00 1 0 0 0 0 P 238 223 -1.2290849975329284e-01 1.2699974907817282e+00 -1.8283813569658161e-01 1.5053194087754045e+00 2 0 0 -121 0 P 239 -2212 -8.4146485552514827e-01 1.8586110289227735e+00 -2.2503598801073416e-01 2.2568761261348165e+00 1 0 0 0 0 P 240 2212 -1.2719156088207451e+00 2.6553265707731226e+00 -2.0332824817212228e-01 3.0968082735003697e+00 1 0 0 0 0 P 241 -211 -9.4690196173706817e-02 2.9782818501561878e-02 -3.8382424813670118e-01 4.2030237673253290e-01 1 0 0 0 0 P 242 213 -2.3765027158195137e-01 -4.6598369496748310e-02 -3.4236046744807436e-01 8.3640750603616187e-01 2 0 0 -122 0 P 243 113 -1.7183429892726010e+00 1.3250864031824769e+00 -1.3211733158460330e+00 2.6166515302160396e+00 2 0 0 -123 0 P 244 -213 -3.8949210783800881e-01 -2.7418522871988309e-02 -3.3566512097177148e-01 1.0273714094288691e+00 2 0 0 -124 0 P 245 213 -8.5002558245984994e-01 9.5931247178410908e-02 -4.1558978693771904e-02 1.0835704091005451e+00 2 0 0 -125 0 P 246 -213 -4.3948907151517136e-01 -5.3184486913884776e-01 -4.4513077700649291e+00 4.5588902618911895e+00 2 0 0 -126 0 P 247 113 -2.5334523864175346e-01 3.5769214156612071e-02 -4.3251713444875289e-01 8.5846975128213021e-01 2 0 0 -127 0 P 248 113 -2.6397562921292256e-01 3.0006120184171758e-01 -6.2305095272960251e+00 6.3151565423551475e+00 2 0 0 -128 0 P 249 211 1.6711759289113212e-01 -4.5757367334954591e-01 -9.2985839888441699e+00 9.3123813248215672e+00 1 0 0 0 0 P 250 -213 -3.3449884966892407e-01 3.1847814386882722e-01 -1.0437944816133580e+02 1.0438180514932228e+02 2 0 0 -129 0 P 251 -311 -6.5718627282419140e-01 1.7741082195482410e-01 -7.6846952058343547e+01 7.6851578282317575e+01 2 0 0 -130 0 P 252 311 2.7383899289197322e-01 2.5861312316422225e-01 -8.5888917727060857e+01 8.5891185416759910e+01 2 0 0 -131 0 P 253 211 -1.9969280119249017e-01 -8.2232454190437690e-02 -1.2203924601046783e+01 1.2206633231333903e+01 1 0 0 0 0 V -17 0 0 0 0 0 3 1 0 P 84 21 2.4308739179399574e+00 -4.9785162227103479e+00 8.7421348503743790e+00 1.0349864420698522e+01 2 0 0 -17 0 P 85 21 2.1148840671962699e+00 -2.9949801623855010e+00 9.5651006731462775e+00 1.0243719621220931e+01 2 0 0 -17 0 P 86 21 -2.4308739179399574e+00 4.9785162227103479e+00 1.5278494899860416e+01 1.6251989976300489e+01 2 0 0 -17 0 P 254 92 2.1148840671962694e+00 -2.9949801623855015e+00 3.3585730423381072e+01 3.6845574018219942e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 8 0 P 255 211 2.8391269974158247e-02 -1.4535489462089330e+00 3.1113129499398671e+00 3.4370566856831681e+00 1 0 0 0 0 P 256 -213 1.0832950038517588e+00 -1.1786726029153283e+00 5.7674762150532226e+00 6.0356615252245911e+00 2 0 0 -132 0 P 257 221 2.1583417415860620e+00 -4.3860340904168709e+00 8.1819625910922706e+00 9.5467244361773140e+00 2 0 0 -133 0 P 258 -311 3.5412737503118719e-01 -1.0534476862846769e-01 1.9382811103130024e+00 2.0349724345848199e+00 2 0 0 -134 0 P 259 311 -7.7462308880751485e-01 2.3383737709654255e+00 6.9072176727568966e+00 7.3501948430091266e+00 2 0 0 -135 0 P 260 111 3.2092000527714254e-01 -5.2744620320580493e-01 1.3057179382986148e+00 1.4506233425179968e+00 2 0 0 -136 0 P 261 221 -2.3457958949382471e-01 5.9273779954080330e-01 2.9501250259557312e+00 3.0674590223965290e+00 2 0 0 -137 0 P 262 111 -8.2098865022269896e-01 1.7249548784836743e+00 3.4236369199714662e+00 3.9228817286263964e+00 2 0 0 -138 0 V -19 0 0 0 0 0 2 1 0 P 87 21 -1.5151331246653688e-01 -7.4998502057433947e-01 -2.5410676225718145e+00 2.6537630786155813e+00 2 0 0 -19 0 P 88 21 1.5151331246653688e-01 7.4998502057433947e-01 -2.6970271350197489e-01 8.1127884762934821e-01 2 0 0 -19 0 P 263 92 0 0 -2.8107703360737895e+00 3.4650419262449295e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 2 0 P 264 -321 7.6293477202256502e-02 -4.9783875641669750e-01 -2.1395575499935542e+00 2.2527786379909935e+00 1 0 0 0 0 P 265 323 -7.6293477202256502e-02 4.9783875641669750e-01 -6.7121278608023571e-01 1.2122632882539366e+00 2 0 0 -139 0 V -21 0 0 0 0 0 0 2 0 P 266 311 3.0623337865297260e+00 1.7986568155414071e+00 4.0580587817063698e+00 5.4155859392035532e+00 2 0 0 -140 0 P 267 111 3.4220266380526136e+00 1.9768713155838700e+00 3.7886974696142279e+00 5.4763797007312442e+00 2 0 0 -141 0 V -22 0 9.8669119948806827e+00 7.2544796751416474e+00 1.5540300288260283e+01 2.0126639755470325e+01 0 2 0 P 268 2212 2.2623384977183738e+00 1.7357036692132950e+00 3.6587911426027140e+00 4.7326468200856908e+00 1 0 0 0 0 P 269 -211 7.2301035394379209e-01 4.5922343450742042e-01 1.0431072470974856e+00 1.3569018566418183e+00 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 270 -211 1.7862928027930909e+00 2.2670726369320932e-01 1.9217040244232839e+00 2.6371697524251836e+00 1 0 0 0 0 P 271 111 -5.5028269192347913e-02 -6.6875842793274090e-02 1.5290014319342518e-01 2.2158191024581889e-01 2 0 0 -142 0 V -24 0 0 0 0 0 0 1 0 P 272 130 -7.9131985855261974e-02 3.0405386607759238e-01 -1.5990113514674982e+00 1.7038847835707798e+00 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 273 -311 1.3814668425302615e-01 -2.9359349190104789e-01 -1.5165014136526819e-01 6.1315156293763273e-01 2 0 0 -143 0 P 274 111 -3.5596269336496916e-01 -2.0514743930427126e-01 -1.8189337788117075e-02 4.3283410601512556e-01 2 0 0 -144 0 V -26 0 0 0 0 0 0 2 0 P 275 22 4.2039386871960222e-01 1.5346691492622114e-01 -3.1300547374110854e-01 5.4612775559011983e-01 1 0 0 0 0 P 276 22 -1.6303722367890121e-02 2.8624768289310443e-01 -6.6278739060414393e-01 7.2214311079492433e-01 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 277 -211 -6.8218086549737628e-02 2.1203752372658818e-01 -1.9995718729945671e+00 2.0167749202555085e+00 1 0 0 0 0 P 278 111 1.6104451722881604e-02 -2.7554407736937936e-01 -5.5292966670933452e-01 6.3256201962015779e-01 2 0 0 -145 0 V -28 0 0 0 0 0 0 2 0 P 279 211 -3.2171250164441573e-01 -8.1754769208972211e-01 -1.8221702987949961e+01 1.8243404910501770e+01 1 0 0 0 0 P 280 111 -2.6293966825968745e-01 9.0068545291788635e-02 -4.4875640089832860e+00 4.4981885184057857e+00 2 0 0 -146 0 V -29 0 0 0 0 0 0 2 0 P 281 311 4.8227764306808563e-01 1.6799080085382423e-01 -1.9089518075743705e+01 1.9102831947834868e+01 2 0 0 -147 0 P 282 111 -1.8052873464281910e-01 1.2220894187151601e-02 -3.6001098502856288e+00 3.6071804097951747e+00 2 0 0 -148 0 V -30 0 0 0 0 0 0 1 0 P 283 130 -3.1207108979161702e-01 -4.4717569186949419e-01 -2.2463512008646514e+01 2.2475640183451702e+01 1 0 0 0 0 V -31 0 0 0 0 0 0 1 0 P 284 130 -3.0827245514081758e-01 -9.0834425973967292e-02 -2.3017419711853826e+01 2.3025042202351717e+01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 285 130 4.2277240103438929e-01 -4.4352620377671181e-01 -5.3627932510746732e+01 5.3633741924301901e+01 1 0 0 0 0 P 286 310 1.8946176837119935e-01 -2.5295236322207848e-01 -3.9674449799921440e+01 3.9678829657830391e+01 2 0 0 -149 0 V -33 0 0 0 0 0 0 2 0 P 287 321 -4.2170446647751747e-01 -3.5028845469279885e-01 -7.6712346882761892e+01 7.6715893671909512e+01 1 0 0 0 0 P 288 -321 -5.8851055460422586e-01 -1.3541704114088596e-01 -7.5014937104015260e+01 7.5018991676290057e+01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 289 -2212 1.2705792896225135e-01 -2.6907073137259655e-02 -7.2759115944111022e+02 7.2759177600847022e+02 1 0 0 0 0 P 290 111 1.8900031264271169e-01 1.7448554669914174e-01 -2.9487353768743850e+02 2.9487368077573456e+02 2 0 0 -150 0 V -35 0 0 0 0 0 0 2 0 P 291 2112 -1.8116617835507798e-01 3.8134421461258028e-01 -1.6660027959987333e+03 1.6660031144364575e+03 1 0 0 0 0 P 292 211 1.3637277334911077e-01 -5.0735995162988157e-02 -7.6555838389008488e+02 7.6555841044028637e+02 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 293 211 -2.9046214119051830e+00 4.8055002133823219e+00 5.4190211395562899e+00 7.8048015825627211e+00 1 0 0 0 0 P 294 111 -2.4478621911510934e+00 4.0848999052776209e+00 5.5562606449621263e+00 7.3190633620811818e+00 2 0 0 -151 0 V -37 0 0 0 0 0 0 3 0 P 295 211 -6.0761375744800883e-01 1.5223285235606110e-01 8.4856270446702919e-01 1.0639115413834690e+00 1 0 0 0 0 P 296 -211 -8.7451906709251270e-01 7.9394975819860070e-01 1.4863108605927506e+00 1.9036122442524734e+00 1 0 0 0 0 P 297 111 -6.5254542747886801e-01 7.4370683494213108e-01 1.0752030120541096e+00 1.4673774254749357e+00 2 0 0 -152 0 V -38 0 0 0 0 0 0 3 0 P 298 -211 -9.6148069252058446e-02 2.0915305685955332e-01 1.8014299599793407e-01 3.2391470531870864e-01 1 0 0 0 0 P 299 211 -3.1330705525204910e-01 9.4266146693399375e-02 2.7002099637049642e-01 4.4658542370306681e-01 1 0 0 0 0 P 300 111 -1.5799071018819916e-01 6.1440247339562472e-02 3.4410665499200199e-01 4.0665090545663712e-01 2 0 0 -153 0 V -39 0 0 0 0 0 0 2 0 P 301 -211 1.1916594608641826e-01 -3.5365042300788802e-01 3.2758556428507846e+00 3.2999968366799468e+00 1 0 0 0 0 P 302 22 -3.4138969779068967e-01 8.7815386178352217e-02 1.6958692147988448e+00 1.7321174502641909e+00 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 303 211 -6.3480618391744159e-01 5.9217711685917940e-01 2.3874372240373649e+00 2.5442069319319751e+00 1 0 0 0 0 P 304 111 1.3161330946731647e-01 2.2816343528133945e-01 3.0766346352246604e-01 4.2691571019928676e-01 2 0 0 -154 0 V -41 0 0 0 0 0 0 2 0 P 305 -211 -1.8978657307597913e-01 2.6696317063195180e-01 6.7159038251505798e-01 7.6013268879881124e-01 1 0 0 0 0 P 306 111 -5.7965174077831161e-01 -4.2751382136388238e-01 1.7840743661215852e+00 1.9287055639201678e+00 2 0 0 -155 0 V -42 0 0 0 0 0 0 2 0 P 307 -2112 2.3770417141587792e-02 -3.7747014583083804e-01 2.1628041899759804e+01 2.1651744431947979e+01 1 0 0 0 0 P 308 111 -2.1279153804591558e-01 -7.2230967114573053e-02 2.1233845589662232e+00 2.1395044138609380e+00 2 0 0 -156 0 V -43 0 0 0 0 0 0 2 0 P 309 2112 1.1655784977084065e+00 -5.1719381359748482e+00 1.6404849514868053e+02 1.6413683032655479e+02 1 0 0 0 0 P 310 111 1.5527567424422856e-01 -5.4812449252051476e-01 1.4205863887437605e+01 1.4217923174047494e+01 2 0 0 -157 0 V -44 0 0 0 0 0 0 2 0 P 311 211 -2.1827974885942256e-01 -3.3651446745819623e-02 1.4103143333201251e+01 1.4105563091573094e+01 1 0 0 0 0 P 312 -211 5.3507125839706837e-01 -1.6544048661002836e-01 1.5402551074568821e+01 1.5413362099028671e+01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 313 22 2.5104548013175021e-01 -1.3634832021787791e+00 5.1452135836409063e+01 5.1470811071946471e+01 1 0 0 0 0 P 314 113 1.1108946170792657e+00 -5.0203239007766731e+00 1.8561741156841137e+02 1.8569051672164477e+02 2 0 0 -158 0 V -46 0 0 0 0 0 0 2 0 P 315 22 -3.7112806852160668e-01 1.0096705506398014e+00 2.0553718157071927e+01 2.0581848817451313e+01 1 0 0 0 0 P 316 22 -4.2880255751906421e-01 8.2300511193353265e-01 3.0037427870385351e+01 3.0051760050223454e+01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 317 2112 6.6325746218642301e-01 -3.4174526897673418e-01 3.6008649414052951e+00 3.7954868463947697e+00 1 0 0 0 0 P 318 -211 -4.3056306414568445e-02 1.3203069972394918e-01 4.1542373357004458e-01 4.5972014803022959e-01 1 0 0 0 0 V -48 0 -9.9344323304238663e-05 1.2041485407998327e-05 3.0673392839592022e-02 3.0673576331557279e-02 0 2 0 P 319 22 -1.4645463983196377e-01 -2.9849711017792758e-02 3.2065219301659937e+01 3.2065567651771289e+01 1 0 0 0 0 P 320 22 -2.3398394384564525e-01 7.5962518490084660e-02 8.5398383452413213e+01 8.5398737783854841e+01 1 0 0 0 0 V -49 0 6.4354316830719254e-05 1.0095578344902503e-04 2.6971600936541388e-02 2.6971873646063634e-02 0 2 0 P 321 22 2.6957585366662734e-01 4.3192279290475855e-01 1.2875546888587036e+02 1.2875647555156300e+02 1 0 0 0 0 P 322 22 1.7759596665140209e-01 2.6957764529092343e-01 5.8659151945399863e+01 5.8660040226611855e+01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 323 -211 -1.2699107055555754e-02 2.4360616817177363e-01 1.1927169358604321e+01 1.1930480037543383e+01 1 0 0 0 0 P 324 211 -8.2894059203390644e-02 -5.3655854509028843e-02 9.2391687660437984e+00 9.2407504916058407e+00 1 0 0 0 0 P 325 111 2.1992643897633643e-01 3.8513828062293864e-01 4.4584877047883410e+01 4.4587287202845644e+01 2 0 0 -159 0 V -51 0 0 0 0 0 0 2 0 P 326 211 -4.5142725497731745e-01 -6.0853398355620703e-01 2.6405699160245933e+02 2.6405811556190025e+02 1 0 0 0 0 P 327 -211 2.3209235225376226e-01 -1.4550584242176792e-01 5.3914715324972676e+01 5.3915591874409550e+01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 328 211 2.5526492666948991e-01 7.5813834737305727e-02 1.6594663708597199e+02 1.6594690942541990e+02 1 0 0 0 0 P 329 111 -3.4410309685840179e-01 -3.0588217796330597e-01 1.2445911380460211e+02 1.2446003856449411e+02 2 0 0 -160 0 V -53 0 0 0 0 0 0 2 0 P 330 2112 -4.8404874374981044e-01 -8.5525371045234777e-01 2.7989989218594201e+02 2.7990319433615338e+02 1 0 0 0 0 P 331 -211 -2.9657701044352908e-01 -5.1505306816541807e-01 1.5129073613914210e+02 1.5129196792590994e+02 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 332 -2112 1.2307423218153850e+00 -7.7895597174324960e-01 5.4400223010727734e+02 5.4400499138569000e+02 1 0 0 0 0 P 333 111 9.7672006990761895e-03 -1.6679905408531515e-01 3.8862174472559573e+01 3.8862768064803547e+01 2 0 0 -161 0 V -55 0 1.2803039546550990e-05 -4.3001812457774098e-06 5.9943943471816143e-04 5.9969876628119341e-04 0 2 0 P 334 22 1.7959822716852879e-02 -3.5464534216201486e-02 4.5989433653526268e-01 4.6160923863848546e-01 1 0 0 0 0 P 335 22 1.3445286708365192e-01 -1.5726605818602152e-02 6.6760811703513907e+00 6.6774534586710494e+00 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 336 22 -9.0951811756537881e-02 -1.5060963957491394e-02 2.8126323921142312e+01 2.8126475008107917e+01 1 0 0 0 0 P 337 111 1.0513520052227536e+00 5.8602440419882429e-01 1.1510425690223533e+02 1.1511062914543292e+02 2 0 0 -162 0 V -57 0 7.0961007011853297e-05 -3.8058868555436490e-05 3.4350475048367420e-03 3.4360112843079089e-03 0 2 0 P 338 22 3.7074314883523546e-01 -2.7423641197269716e-01 1.8972958004415638e+01 1.8978561366167334e+01 1 0 0 0 0 P 339 22 4.4389917212478691e-01 -1.6268474118870377e-01 2.0461869512627700e+01 2.0467330474486204e+01 1 0 0 0 0 V -58 0 6.7406584330207320e-05 1.7475520716051672e-05 9.5153851588681924e-03 9.5156453756767862e-03 0 2 0 P 340 22 8.9170839253658263e-01 2.3383423750736571e-01 1.2635832054962434e+02 1.2636168325259665e+02 1 0 0 0 0 P 341 22 4.1341164547512082e-03 -1.5822330517408821e-03 1.0241914579061162e-01 1.0251475896069805e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 1 0 P 342 310 6.9143988497464892e-01 -2.0097660021271568e-01 8.6194913026738277e+01 8.6199357235563212e+01 2 0 0 -163 0 V -60 0 0 0 0 0 0 3 0 P 343 211 6.6217901093023668e-01 3.2032566933260476e-01 2.2705420458215411e+01 2.2717761499456692e+01 1 0 0 0 0 P 344 -211 3.5069934124424668e-01 1.5975013529292945e-01 8.3416024454407243e+00 8.3516657785353168e+00 1 0 0 0 0 P 345 221 8.6565598097711172e-01 3.0239364279675462e-01 2.6129837818107728e+01 2.6151652492638359e+01 2 0 0 -164 0 V -61 0 0 0 0 0 0 2 0 P 346 321 1.4395472781296519e+00 7.4075545956669375e-01 4.7988890560769860e+01 4.8018728359155816e+01 1 0 0 0 0 P 347 111 8.9806643989937734e-02 1.0178321348668455e-01 2.0525953289708641e+00 2.0615024231771888e+00 2 0 0 -165 0 V -62 0 0 0 0 0 0 3 0 P 348 -211 9.9022584930924806e-01 6.1770087827864562e-01 2.1025318710595396e+01 2.1058148263194447e+01 1 0 0 0 0 P 349 211 7.7866088387693280e-02 2.5495313658862812e-01 5.0100828871463330e+00 5.0191109322821026e+00 1 0 0 0 0 P 350 111 8.5332159156507226e-01 5.4209289290426677e-01 1.5149492933244348e+01 1.5183786687713605e+01 2 0 0 -166 0 V -63 0 0 0 0 0 0 2 0 P 351 -211 1.1704863189279662e+00 1.6237979356540997e+00 2.2833590920832112e+01 2.2921586159850253e+01 1 0 0 0 0 P 352 111 4.8271904264428045e-01 1.1926183047432866e+00 2.0019392684401492e+01 2.0061148001737291e+01 2 0 0 -167 0 V -64 0 0 0 0 0 0 1 0 P 353 130 -4.1967148092914647e-01 5.1170449098340587e+00 5.1912837582457293e+01 5.2168483340544356e+01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 354 321 6.9665241958789897e-02 7.1208858726601665e-01 9.5808389773646603e+00 9.6201891806887865e+00 1 0 0 0 0 P 355 -211 -2.1349894632731639e-01 5.1370124782749682e-01 3.8334041037923843e+00 3.8760724425602127e+00 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 356 -321 2.5644638430003303e-01 9.4467763024047020e+00 9.3740241037637233e+01 9.4216685242105726e+01 1 0 0 0 0 P 357 211 -8.4245906395060022e-02 5.5566695860777848e-01 6.1767484452865675e+00 6.2038346434187597e+00 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 358 321 -1.9596598104533551e+00 1.9652790088787653e+00 2.9008580642333666e+01 2.9145222249936971e+01 1 0 0 0 0 P 359 -211 -1.2581278654162403e-01 6.0795253866241419e-02 2.4663842710663713e+00 2.4742789005311474e+00 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 360 211 -1.0586821546912912e+00 1.3613885867147333e+00 1.9236102076276563e+01 1.9313759076433836e+01 1 0 0 0 0 P 361 111 -2.6938138095328701e-01 4.6347888460088382e-01 2.5283774519142805e+00 2.5881057058442822e+00 2 0 0 -168 0 V -69 0 0 0 0 0 0 2 0 P 362 321 -1.2414584429650393e+00 2.6312343669690236e-01 2.0125612067384097e+01 2.0171622519157570e+01 1 0 0 0 0 P 363 111 -4.0983383673762974e-01 2.8580553528920288e-01 1.3947207904990591e+01 1.3956807533356942e+01 2 0 0 -169 0 V -70 0 0 0 0 0 0 2 0 P 364 -321 -1.0892251914354356e+00 1.8782383489284449e-01 1.9336038750264933e+01 1.9373892867009420e+01 1 0 0 0 0 P 365 111 -1.6764928583455911e+00 -1.4134298870593923e-01 2.4920651513207222e+01 2.4977744045202670e+01 2 0 0 -170 0 V -71 0 0 0 0 0 0 2 0 P 366 321 -1.6396131010827215e+00 4.5457769838738876e-01 2.5102968169272756e+01 2.5165405299192670e+01 1 0 0 0 0 P 367 -211 -3.6271290080808805e-01 -1.9195753298463067e-01 6.3733635036162415e+00 6.3880866053153706e+00 1 0 0 0 0 V -72 0 0 0 0 0 0 3 0 P 368 211 -1.0532917373698201e+00 -7.9755911054799566e-01 1.0163863701073391e+01 1.0250323367471239e+01 1 0 0 0 0 P 369 -211 -1.5142305355020175e-01 -3.3548778947336523e-02 2.6124673882154736e+00 2.6207861608885037e+00 1 0 0 0 0 P 370 111 -4.5603756680083579e-01 -5.3386037280121934e-01 7.4325506951608640e+00 7.4668605582612377e+00 2 0 0 -171 0 V -73 0 0 0 0 0 0 2 0 P 371 211 -7.3182755425833745e-01 1.2924406639675451e-01 9.4555482228540733e+00 9.4857338976744092e+00 1 0 0 0 0 P 372 111 -9.2145396695580062e-01 -8.9419630567622876e-01 2.3610039751337109e+01 2.3645313724000832e+01 2 0 0 -172 0 V -74 0 0 0 0 0 0 3 0 P 373 -211 -6.1523131786021534e-02 5.7311263947901932e-02 1.0055013690318289e+00 1.0186179189200180e+00 1 0 0 0 0 P 374 211 -1.6240155320755878e-01 5.4867626365447705e-04 4.4784042281227929e+00 4.4835208018808137e+00 1 0 0 0 0 P 375 111 -2.0139463656281439e-01 2.8196195826184461e-02 2.2214922802305219e+00 2.2348607063123955e+00 2 0 0 -173 0 V -75 0 -5.6790533254732893e-04 2.4484288067995935e-05 1.0411641121079644e-02 1.0427641365525044e-02 0 2 0 P 376 22 -3.6333094792267574e-02 -1.1147807753449648e-03 3.0371816156113496e-01 3.0588569462372167e-01 1 0 0 0 0 P 377 22 -7.1833262366877593e-01 3.3650930353235055e-02 1.3531877626480334e+01 1.3550972151155044e+01 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 378 -211 -1.0686254152761050e-01 5.5715832617782242e-02 2.2058544010860763e+00 2.2135485719714501e+00 1 0 0 0 0 P 379 111 -1.1506926409815590e+00 -1.2167657754021115e+00 1.6217439633439746e+01 1.6304238110714074e+01 2 0 0 -174 0 V -77 0 -6.0697847028520998e-07 4.1821909821924239e-05 7.3541858020348069e-04 7.3689668154489942e-04 0 2 0 P 380 22 4.0589079040356753e-02 8.3783629330459547e-02 8.9813705540730582e-01 9.0294924562615064e-01 1 0 0 0 0 P 381 22 -4.4554919947256043e-02 1.8946995196791103e-01 3.9068984307678698e+00 3.9117437738081313e+00 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 382 22 -3.5573810935660083e-01 -4.4722508896718788e-01 1.8795334328506652e+01 1.8804019581009559e+01 1 0 0 0 0 P 383 111 -7.5751520425461037e-03 -3.6857823737279338e-01 3.2867807295095717e+00 3.3101441757525873e+00 2 0 0 -175 0 V -79 0 0 0 0 0 0 2 0 P 384 -211 4.3470706358751533e-02 -5.8455683713283568e-01 3.5837043846103773e+00 3.6340078837731924e+00 1 0 0 0 0 P 385 111 7.6462982096209622e-04 9.5817631697016042e-02 1.1881389087580241e+00 1.1996146340002261e+00 2 0 0 -176 0 V -80 0 0 0 0 0 0 3 0 P 386 211 5.5451040176107476e-02 -2.3085206187607971e-01 3.1680148786887088e+00 3.1799631363935785e+00 1 0 0 0 0 P 387 -211 -9.8273385316510378e-02 -4.0126666843095365e-01 8.4560419499170081e+00 8.4672780656543623e+00 1 0 0 0 0 P 388 111 3.5058138067883221e-01 -3.5354675595451285e-01 1.3149696460256086e+01 1.3159811518802087e+01 2 0 0 -177 0 V -81 0 0 0 0 0 0 2 0 P 389 -211 2.0483385037801277e-01 -3.8332789859825772e-01 4.5017510694222294e+00 4.5248358710619137e+00 1 0 0 0 0 P 390 111 -9.5515611512196424e-02 -2.5914886663521219e+00 2.4828211475590468e+01 2.4963638384997413e+01 2 0 0 -178 0 V -82 0 0 0 0 0 0 2 0 P 391 -2212 5.2327572376146192e-01 -2.3978597206423640e+00 1.5524012327571649e+01 1.5744804160816154e+01 1 0 0 0 0 P 392 211 -2.1852126750674501e-02 -9.7883025550675939e-01 5.9819810119382399e+00 6.0631809140605890e+00 1 0 0 0 0 V -83 0 0 0 0 0 0 3 0 P 393 111 -9.1943947340116502e-02 -1.1924299340856412e-01 3.3472525047133534e+00 3.3533552617698197e+00 2 0 0 -179 0 P 394 111 -1.5345774271691640e-01 -2.9470622403101360e-01 7.1887789119840546e+00 7.1977192834306232e+00 2 0 0 -180 0 P 395 111 4.1775086830051836e-02 -1.0681696676863191e-01 1.5112185977386310e+00 1.5215637590388460e+00 2 0 0 -181 0 V -84 0 0 0 0 0 0 2 0 P 396 2112 7.0139844484745395e-01 -2.2620929509719812e+00 1.1428662868783924e+01 1.1709233580832349e+01 1 0 0 0 0 P 397 111 -1.6430855116878434e-01 -2.6255947762479237e-01 9.3018931986763376e-01 9.8964971099556232e-01 2 0 0 -182 0 V -85 0 0 0 0 0 0 2 0 P 398 211 -4.0645694756389905e-01 -2.6348186852485217e-01 7.0327181502484104e-01 8.6527508687852783e-01 1 0 0 0 0 P 399 111 2.7193386978242989e-01 8.6953766815035943e-02 1.4199123091246275e+00 1.4546063223779151e+00 2 0 0 -183 0 V -86 0 0 0 0 0 0 2 0 P 400 211 6.7089498024477043e-02 -1.4638828158574002e-01 1.7686382225286684e-01 2.7693162739690080e-01 1 0 0 0 0 P 401 111 -9.4052545666970977e-01 -3.7276162012734959e-01 1.5928149779766052e+00 1.8917765498468222e+00 2 0 0 -184 0 V -87 0 0 0 0 0 0 2 0 P 402 -211 -5.0656401037088761e-01 -8.9878439292725298e-01 7.8838368407255421e-01 1.3059284435927032e+00 1 0 0 0 0 P 403 111 -5.8024105841317974e-01 -6.3347906510816598e-01 1.2166046182373911e+00 1.4954336525955645e+00 2 0 0 -185 0 V -88 0 0 0 0 0 0 2 0 P 404 -211 2.2895701966280685e-01 -7.1827806304631825e-01 7.8768895151957530e-01 1.0992171586872421e+00 1 0 0 0 0 P 405 211 5.7112856531633685e-02 -2.4441594378283932e-02 -1.3447731387748169e-01 2.0352690919054969e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 406 -211 5.4374858630584921e-01 7.3137187612622626e-02 -7.7104433408247630e-02 5.7134617516239694e-01 1 0 0 0 0 P 407 111 -1.5504716164599674e-01 7.7933597700875198e-02 -9.1429375895096449e-02 2.3810123721150325e-01 2 0 0 -186 0 V -90 0 0 0 0 0 0 2 0 P 408 3122 1.1511704376750438e+00 -7.4732054801724956e-01 1.2929009347614060e+00 2.1908938969225944e+00 2 0 0 -187 0 P 409 211 1.8689476621849552e-01 -3.3129411042703943e-01 4.8910296154115185e-01 6.3512749360410703e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 410 -321 1.8957493262797385e+00 9.0109994132800919e-01 9.3518925408408415e-01 2.3503332770706731e+00 1 0 0 0 0 P 411 321 2.8104340935102905e+00 1.1602122393476444e+00 1.3380436599985508e+00 3.3583677628216062e+00 1 0 0 0 0 V -92 0 0 0 0 0 0 1 0 P 412 310 2.3259789199831693e+00 1.0776281238376622e+00 1.7930943720070938e+00 3.1676999803193899e+00 2 0 0 -188 0 V -93 0 0 0 0 0 0 2 0 P 413 211 3.0638134801627775e-01 -2.2088266579458549e-02 4.3060335105289040e-02 3.4013438416622410e-01 1 0 0 0 0 P 414 111 1.3516461202077752e+00 1.1243456473507731e+00 8.2412754591280468e-01 1.9464085340240427e+00 2 0 0 -189 0 V -94 0 1.0745240550780371e-04 -8.6358833788730647e-05 -3.0299329005599777e-04 3.3325462776237719e-04 0 2 0 P 415 22 1.5548218548953593e-01 -1.7490536066011961e-01 -6.0654549322799378e-01 6.5012616509985122e-01 1 0 0 0 0 P 416 22 7.6211022923646576e-01 -5.6255798838856996e-01 -1.9808730327171262e+00 2.1957097858215677e+00 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 417 211 8.1881230959764695e-01 -6.3946541787753974e-01 -6.0215190977308508e-01 1.2088988073256186e+00 1 0 0 0 0 P 418 -211 5.8061896876221852e-01 -4.9564527560179095e-01 -1.5942705503293280e+00 1.7731218228481245e+00 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 419 211 9.3461736912158211e-01 -1.1444836285290680e+00 -3.6322237964619881e+00 3.9237586438413294e+00 1 0 0 0 0 P 420 111 5.5335806138890387e-01 -6.5347446435321851e-02 -2.1192585640309471e+00 2.1954388842503030e+00 2 0 0 -190 0 V -97 0 0 0 0 0 0 2 0 P 421 -211 -1.5449825647323254e-01 -4.3644386269411450e-01 -2.0313500569531513e+00 2.0881129747502167e+00 1 0 0 0 0 P 422 111 6.8576615178212075e-01 -7.7503201579088310e-01 -4.2218170754688051e+00 4.3488974303323031e+00 2 0 0 -191 0 V -98 0 0 0 0 0 0 3 0 P 423 211 3.9114799949768836e-01 -5.3596463020120011e-01 -8.5869056381399100e-01 1.0941133906597353e+00 1 0 0 0 0 P 424 -211 1.1743828510438303e+00 -7.5750062226373582e-01 -2.7542760764553660e+00 3.0916821899720137e+00 1 0 0 0 0 P 425 111 3.8567243136211482e-01 -3.4081350378194575e-01 -1.2591846676829057e+00 1.3669903790446374e+00 2 0 0 -192 0 V -99 0 0 0 0 0 0 2 0 P 426 -321 1.7233709840724457e-01 -8.5049220216811039e-01 -5.8772542221362327e+00 5.9614423768962457e+00 1 0 0 0 0 P 427 211 3.8662006162842993e-01 -3.6591064880703628e-01 -6.0300754116702509e+00 6.0551345922526032e+00 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 428 130 7.1952409168827680e-01 -3.2300571594934713e-01 -4.5172793905966930e+00 4.6125411795089075e+00 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 429 22 3.9700737198680593e-02 -9.1427097064582699e-02 -4.4110105045143616e-01 4.5222251085183240e-01 1 0 0 0 0 P 430 113 8.4054251658333246e-01 -1.8339663500669259e+00 -1.8393618146094138e+01 1.8525284673792644e+01 2 0 0 -193 0 V -102 0 0 0 0 0 0 2 0 P 431 -211 3.5784664251239390e-01 -6.3598907228644186e-01 -1.1125229293039554e+01 1.1150010893592460e+01 1 0 0 0 0 P 432 211 -2.2476131991536963e-01 -7.7438903525734348e-01 -8.6111583262572680e+00 8.6499551174342386e+00 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 433 -321 1.8234173456144583e-02 -6.4143642516602328e-01 -1.9136911402644444e+01 1.9154028092421559e+01 1 0 0 0 0 P 434 211 -1.6696485941209038e-01 -4.5614392396980874e-01 -2.7578536316676438e+01 2.7583166781549835e+01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 435 211 -1.8684433415934643e+00 -6.6168863945962997e-01 -7.2773497003376789e+01 7.2800619903004431e+01 1 0 0 0 0 P 436 111 -7.4996702106677859e-01 9.9618696774638513e-02 -3.7758120835697056e+01 3.7765940780827044e+01 2 0 0 -194 0 V -105 0 0 0 0 0 0 2 0 P 437 -211 -1.0489609372734354e+00 -5.5468887433209457e-01 -9.5604358388792846e+01 9.5611823649132845e+01 1 0 0 0 0 P 438 111 -2.6791000538384846e-01 -3.8058148374964779e-01 -1.5895559614775598e+01 1.5902944793466485e+01 2 0 0 -195 0 V -106 0 0 0 0 0 0 2 0 P 439 211 -3.7504874395961008e-01 4.9850195273630556e-02 -1.6248524683848782e+01 1.6253528256623472e+01 1 0 0 0 0 P 440 111 -4.7342910761804369e-01 -5.1984811319289059e-01 -4.9793473421570354e+01 4.9798620384160877e+01 2 0 0 -196 0 V -107 0 0 0 0 0 0 2 0 P 441 -211 -7.2508765966409440e-03 4.0195741288894743e-01 -2.2500325801240489e+01 2.2504349874721026e+01 1 0 0 0 0 P 442 111 -6.2889692473148595e-01 2.0271122781783449e-01 -7.2947898028338997e+01 7.2951015411282413e+01 2 0 0 -197 0 V -108 0 0 0 0 0 0 2 0 P 443 -321 -3.0170491599421062e-01 1.5894971169406974e-01 -1.6912513636325112e+01 1.6923151282372487e+01 1 0 0 0 0 P 444 211 -5.3998480966179885e-01 7.2740656262471182e-01 -2.4698684213157311e+01 2.4715687033707582e+01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 445 321 -4.0281532237254752e-01 2.2012946310149655e+00 -3.0962409221781314e+02 3.0963257270658931e+02 1 0 0 0 0 P 446 -211 -2.6997787045085386e-01 2.0298703146055652e-01 -8.5967504358952951e+01 8.5968281227886422e+01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 447 211 -3.8648071533029799e-01 4.5259523909131921e-01 -3.8528936402718585e+00 3.9010868975091646e+00 1 0 0 0 0 P 448 111 -2.0102758634952952e-01 -1.4874319634863797e-01 -5.0709366470132640e+00 5.0788930592556927e+00 2 0 0 -198 0 V -111 0 0 0 0 0 0 2 0 P 449 2112 -7.0924840524928123e-01 1.3885715890540256e+00 -1.0027042215808324e+01 1.0190953426484638e+01 1 0 0 0 0 P 450 -211 -6.4499448077383648e-01 9.9984537664493711e-01 -6.7865837748294284e+00 6.8915098327656050e+00 1 0 0 0 0 V -112 0 0 0 0 0 0 1 0 P 451 130 -2.3632075193857760e-01 4.5815560489077944e-01 -3.2324818532212225e+00 3.3109467552943461e+00 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 452 311 -5.4202281255151274e-01 2.1726238359480559e+00 -8.6481993756898685e+00 8.9472404087762456e+00 2 0 0 -199 0 P 453 211 -1.2514130923912322e-02 3.1946338758735641e-02 -5.4449613187918711e-01 5.6314562465162221e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 454 22 1.1932196130638308e-01 8.1854340655322239e-02 -3.7529811033314786e-01 4.0222696969963517e-01 1 0 0 0 0 P 455 22 -4.3628866089207080e-01 1.2971727917915028e+00 -4.5947218383057837e+00 4.7942125337526749e+00 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 456 22 2.0067439678187200e+00 1.3134320609930377e+00 -4.7217596381157829e+00 5.2959549857755137e+00 1 0 0 0 0 P 457 111 9.0190945421580140e-02 -5.1555521364232873e-02 -3.9255863700640203e-01 4.2791852297779825e-01 2 0 0 -200 0 V -116 0 0 0 0 0 0 2 0 P 458 211 4.5126468605549175e-01 2.0924117263882538e-01 -5.5806669778829332e-01 7.6048662663347510e-01 1 0 0 0 0 P 459 111 -9.4675394227056772e-02 4.9069016700946677e-01 -1.0994215853010483e+00 1.2151903936822810e+00 2 0 0 -201 0 V -117 0 0 0 0 0 0 3 0 P 460 -211 5.6375160567856866e-02 -3.2872431769631914e-02 -3.6059731313848054e-01 3.9213385806659457e-01 1 0 0 0 0 P 461 211 -2.5884282769304529e-01 3.9017772271037870e-01 -8.4584855099659406e-01 9.7682026026829849e-01 1 0 0 0 0 P 462 111 1.2310668900628273e-01 2.2283022242443684e-01 -2.2028934202553638e-01 3.6270588568957268e-01 2 0 0 -202 0 V -118 0 0 0 0 0 0 2 0 P 463 -211 5.4768579435851431e-04 2.4356402846323821e-01 -1.9221494859276578e-01 3.4022067439162196e-01 1 0 0 0 0 P 464 211 1.3766145206193059e+00 9.8586389431502852e-01 -2.4993155080690732e+00 3.0220941332573483e+00 1 0 0 0 0 V -119 0 -1.1937157821908289e-05 2.0036602306915307e-05 -8.1062892233989102e-05 9.3367955439773944e-05 0 2 0 P 465 22 -4.9474751153526654e-02 2.9431738350285779e-03 -2.3274640425083407e-01 2.3796491751016413e-01 1 0 0 0 0 P 466 22 9.2232588322483742e-03 6.4619235570427327e-02 -4.0593567707030973e-02 7.6867105112514336e-02 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 467 -211 2.9839594635009770e-01 3.4684642554131900e-01 -1.1305278444584148e+00 1.2275648967385593e+00 1 0 0 0 0 P 468 211 6.5492722020448008e-02 1.5541153244584759e-02 -2.8192594748837670e-02 1.5749740118646888e-01 1 0 0 0 0 P 469 111 3.5468197787581618e-01 3.2416995598119436e-01 -5.0522738268993117e-01 7.1018291616348295e-01 2 0 0 -203 0 V -121 0 0 0 0 0 0 3 0 P 470 -211 4.4542248328503883e-02 2.6345201411254138e-01 -2.8402747049091159e-01 4.1417673102140645e-01 1 0 0 0 0 P 471 211 -1.4973682990161505e-01 3.2677797474303066e-01 9.8060051448326149e-02 3.9786998076782615e-01 1 0 0 0 0 P 472 111 -1.7713918180181667e-02 6.7976750192615609e-01 3.1292833460038641e-03 6.9327269698617178e-01 2 0 0 -204 0 V -122 0 0 0 0 0 0 2 0 P 473 211 8.4215108407071887e-02 -1.4416239091939118e-01 1.2034580542673930e-01 2.4867222849248932e-01 1 0 0 0 0 P 474 111 -3.2186537998902326e-01 9.7564021422642866e-02 -4.6270627287481370e-01 5.8773527754367250e-01 2 0 0 -205 0 V -123 0 0 0 0 0 0 2 0 P 475 -211 -6.6288433069510433e-01 3.4870889548021233e-01 -7.3197673467743640e-01 1.0565430680654566e+00 1 0 0 0 0 P 476 211 -1.0554586585774965e+00 9.7637750770226461e-01 -5.8919658116859674e-01 1.5601084621505830e+00 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 477 -211 -4.1792807964229839e-01 2.2097145863086262e-01 1.0411247360863655e-01 5.0379703983237079e-01 1 0 0 0 0 P 478 111 2.8435971804289580e-02 -2.4838998150285094e-01 -4.3977759458040805e-01 5.2357436959649839e-01 2 0 0 -206 0 V -125 0 0 0 0 0 0 2 0 P 479 211 -2.3317887496131016e-03 -8.8800757103705118e-03 1.4225606923550035e-01 1.9950154665498263e-01 1 0 0 0 0 P 480 111 -8.4769379371023679e-01 1.0481132288878141e-01 -1.8381504792927228e-01 8.8406886244556226e-01 2 0 0 -207 0 V -126 0 0 0 0 0 0 2 0 P 481 -211 -2.4841824995074743e-01 -6.2507304461244373e-01 -3.7797191115148197e+00 3.8416382293053104e+00 1 0 0 0 0 P 482 111 -1.9107082156442395e-01 9.3228175473595951e-02 -6.7158865855010985e-01 7.1725203258587955e-01 2 0 0 -208 0 V -127 0 0 0 0 0 0 2 0 P 483 -211 3.3339414513076288e-02 -2.6235508857640732e-01 -1.2293331084643182e-01 3.2331732535958335e-01 1 0 0 0 0 P 484 211 -2.8668465315482977e-01 2.9812430273301938e-01 -3.0958382360232106e-01 5.3515242592254697e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 485 211 1.9200784492908282e-01 2.1707435247544291e-02 -4.3169595314477576e+00 4.3235353134115808e+00 1 0 0 0 0 P 486 -211 -4.5598347414200535e-01 2.7835376659417327e-01 -1.9135499958482669e+00 1.9916212289435655e+00 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 487 -211 -3.2833813936654399e-01 7.4354075908762566e-03 -4.6984259644012212e+01 4.6985614769841028e+01 1 0 0 0 0 P 488 111 -6.1607103023800141e-03 3.1104273627795093e-01 -5.7395188517323582e+01 5.7396190379481247e+01 2 0 0 -209 0 V -130 0 0 0 0 0 0 1 0 P 489 310 -6.5718627282419140e-01 1.7741082195482410e-01 -7.6846952058343547e+01 7.6851578282317575e+01 2 0 0 -210 0 V -131 0 0 0 0 0 0 1 0 P 490 310 2.7383899289197322e-01 2.5861312316422225e-01 -8.5888917727060857e+01 8.5891185416759910e+01 2 0 0 -211 0 V -132 0 0 0 0 0 0 2 0 P 491 -211 4.3649940178097013e-01 -7.9126723760571782e-01 4.0994216147519191e+00 4.2001634408030553e+00 1 0 0 0 0 P 492 111 6.4679560207078868e-01 -3.8740536530961039e-01 1.6680546003013035e+00 1.8354980844215361e+00 2 0 0 -212 0 V -133 0 0 0 0 0 0 2 0 P 493 22 5.6864378614401079e-01 -1.2021635621597491e+00 1.7768467242203034e+00 2.2194002043518952e+00 1 0 0 0 0 P 494 22 1.5896979554420512e+00 -3.1838705282571214e+00 6.4051158668719674e+00 7.3273242318254166e+00 1 0 0 0 0 V -134 0 0 0 0 0 0 1 0 P 495 130 3.5412737503118719e-01 -1.0534476862846769e-01 1.9382811103130024e+00 2.0349724345848199e+00 1 0 0 0 0 V -135 0 0 0 0 0 0 1 0 P 496 130 -7.7462308880751485e-01 2.3383737709654255e+00 6.9072176727568966e+00 7.3501948430091266e+00 1 0 0 0 0 V -136 0 9.5292031550715133e-05 -1.5661666275303509e-04 3.8771193109396484e-04 4.3073925916227202e-04 0 2 0 P 497 22 5.3011075681773628e-02 -5.1263053189598708e-02 2.6667221800995677e-01 2.7668058592103689e-01 1 0 0 0 0 P 498 22 2.6790892959536894e-01 -4.7618315001620626e-01 1.0390457202886580e+00 1.1739427565969600e+00 1 0 0 0 0 V -137 0 0 0 0 0 0 3 0 P 499 111 -6.7942735768543441e-02 2.2211019222257272e-01 6.3973487129294393e-01 6.9385117913069938e-01 2 0 0 -213 0 P 500 111 -1.9604521411138837e-01 1.4236208457933971e-01 1.1811039930333942e+00 1.2132299583595780e+00 2 0 0 -214 0 P 501 111 2.9408360386107099e-02 2.2826552273889086e-01 1.1292861616293932e+00 1.1603778849062516e+00 2 0 0 -215 0 V -138 0 -3.1336668254231703e-04 6.5840543308240428e-04 1.3067826742182555e-03 1.4973415685735330e-03 0 2 0 P 502 22 -7.4353431505148962e-02 2.6313286211965464e-01 4.6781743636932915e-01 5.4186759422855635e-01 1 0 0 0 0 P 503 22 -7.4663521871754990e-01 1.4618220163640196e+00 2.9558194836021374e+00 3.3810141343978399e+00 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 504 311 -2.6620835943512777e-01 1.4142633786532155e-01 -4.0267865400476671e-01 7.0759722085818633e-01 2 0 0 -216 0 P 505 211 1.8991488223287128e-01 3.5641241855137601e-01 -2.6853413207546900e-01 5.0466606739575037e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 1 0 P 506 130 3.0623337865297260e+00 1.7986568155414071e+00 4.0580587817063698e+00 5.4155859392035532e+00 1 0 0 0 0 V -141 0 4.1228351598574209e-04 2.3817215435356480e-04 4.5645977632358283e-04 6.5979062020842503e-04 0 2 0 P 507 22 5.3985301304025968e-01 3.4316142512790310e-01 5.5646008170858430e-01 8.4784955146513374e-01 1 0 0 0 0 P 508 22 2.8821736250123537e+00 1.6337098904559668e+00 3.2322373879056436e+00 4.6285301492662603e+00 1 0 0 0 0 V -142 0 -1.2390273054380195e-05 -1.5057895970780310e-05 3.4427296224752241e-05 4.9891817644865368e-05 0 2 0 P 509 22 -1.1053321583879418e-02 2.4170356990269298e-02 -1.1193448550866085e-02 2.8838782317141046e-02 1 0 0 0 0 P 510 22 -4.3974947608468491e-02 -9.1046199783543391e-02 1.6409359174429128e-01 1.9274312792870402e-01 1 0 0 0 0 V -143 0 0 0 0 0 0 1 0 P 511 130 1.3814668425302615e-01 -2.9359349190104789e-01 -1.5165014136526819e-01 6.1315156293763273e-01 1 0 0 0 0 V -144 0 -6.9568718278162977e-05 -4.0093652162060809e-05 -3.5548919587211769e-06 8.4592331004960548e-05 0 2 0 P 512 22 -3.5995616869500197e-01 -2.0625407513767552e-01 -3.4226771312614396e-02 4.1626993497845621e-01 1 0 0 0 0 P 513 22 3.9934753300328090e-03 1.1066358334042641e-03 1.6037433524497317e-02 1.6564171036668608e-02 1 0 0 0 0 V -145 0 3.0573071364570492e-06 -5.2309938186404788e-05 -1.0496947335297335e-04 1.2008706723549037e-04 0 2 0 P 514 22 1.3610021528460230e-02 -1.3835128436423011e-01 -4.1640368726871080e-01 4.3899697190551951e-01 1 0 0 0 0 P 515 22 2.4944301944213724e-03 -1.3719279300514925e-01 -1.3652597944062370e-01 1.9356504771463820e-01 1 0 0 0 0 V -146 0 -1.1003675715236046e-05 3.7692489349118137e-06 -1.8779859057800195e-04 1.8824321217919445e-04 0 2 0 P 516 22 -2.5764364410873958e-01 4.5854198422510525e-02 -3.5934091259582948e+00 3.6029254781889333e+00 1 0 0 0 0 P 517 22 -5.2960241509478739e-03 4.4214346869278109e-02 -8.9415488302499113e-01 8.9526304021685144e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 518 130 4.8227764306808563e-01 1.6799080085382423e-01 -1.9089518075743705e+01 1.9102831947834868e+01 1 0 0 0 0 V -148 0 -2.7097967052123497e-05 1.8343971040739484e-06 -5.4038853316111524e-04 5.4144984779896964e-04 0 2 0 P 519 22 -7.4898750022151808e-02 -2.6216913538606980e-02 -6.3478452475105862e-01 6.3972536464782992e-01 1 0 0 0 0 P 520 22 -1.0562998462066729e-01 3.8437807725758583e-02 -2.9653253255345704e+00 2.9674550451473447e+00 1 0 0 0 0 V -149 0 1.5476253162188915e+01 -2.0662505395436522e+01 -3.2408217998427449e+03 3.2411795701221849e+03 0 2 0 P 521 211 2.3226749053011436e-01 -2.2642539334331174e-01 -3.5478345483703180e+01 3.5480102799904763e+01 1 0 0 0 0 P 522 -211 -4.2805722158915024e-02 -2.6526969878766748e-02 -4.1961043162182641e+00 4.1987268579256307e+00 1 0 0 0 0 V -150 0 9.2284253549246465e-07 8.5197046539824457e-07 -1.4397957303040592e-03 1.4397964289693897e-03 0 2 0 P 523 22 4.2081269636854379e-02 1.2056401341208531e-01 -1.0275966051327256e+02 1.0275973985621806e+02 1 0 0 0 0 P 524 22 1.4691904300585731e-01 5.3921533287056414e-02 -1.9211387717416594e+02 1.9211394091951644e+02 1 0 0 0 0 V -151 0 -6.4609648265863851e-04 1.0781813904202626e-03 1.4665369939622815e-03 1.9318167140661860e-03 0 2 0 P 525 22 -2.0935073997422546e+00 3.5806941469771636e+00 4.8477009833772797e+00 6.3799959742314192e+00 1 0 0 0 0 P 526 22 -3.5435479140883852e-01 5.0420575830045777e-01 7.0855966158484662e-01 9.3906738784976074e-01 1 0 0 0 0 V -152 0 -2.8188773308533623e-04 3.2126779984018304e-04 4.6446810737061451e-04 6.3388030722370142e-04 0 2 0 P 527 22 -4.8597086129312500e-01 5.2077297983886273e-01 8.5273013983125157e-01 1.1110899450237390e+00 1 0 0 0 0 P 528 22 -1.6657456618574307e-01 2.2293385510326844e-01 2.2247287222285814e-01 3.5628748045119640e-01 1 0 0 0 0 V -153 0 -8.3728865500357075e-05 3.2560915763179751e-05 1.8236299969335253e-04 2.1550899371246938e-04 0 2 0 P 529 22 -9.8999382063783475e-02 2.6099954040613244e-02 3.1633022220931806e-01 3.3248593163159490e-01 1 0 0 0 0 P 530 22 -5.8991328124415668e-02 3.5340293298949228e-02 2.7776432782683911e-02 7.4164973825042113e-02 1 0 0 0 0 V -154 0 1.2956295145731744e-05 2.2460895641433575e-05 3.0287048134330438e-05 4.2026493871162865e-05 0 2 0 P 531 22 2.9511188860004721e-02 -1.2563333387411609e-02 5.2761082611401798e-02 6.1745278783574040e-02 1 0 0 0 0 P 532 22 1.0210212060731176e-01 2.4072676866875106e-01 2.5490238091106421e-01 3.6517043141571259e-01 1 0 0 0 0 V -155 0 -8.3760146138260833e-05 -6.1776093530719112e-05 2.5780019124452237e-04 2.7869951649712115e-04 0 2 0 P 533 22 -1.8451037146853469e-01 -2.0008702732533962e-01 5.6422502899681815e-01 6.2644136120614524e-01 1 0 0 0 0 P 534 22 -3.9514136930977689e-01 -2.2742679403854277e-01 1.2198493371247672e+00 1.3022642027140225e+00 1 0 0 0 0 V -156 0 -8.7641369671399730e-05 -2.9749401450564509e-05 8.7454761028488582e-04 8.8118681302222447e-04 0 2 0 P 535 22 -1.0275945127038592e-01 1.3149977629196456e-02 5.2900789631817324e-01 5.3905638026464175e-01 1 0 0 0 0 P 536 22 -1.1003208677552966e-01 -8.5380944743769505e-02 1.5943766626480502e+00 1.6004480335962954e+00 1 0 0 0 0 V -157 0 4.9913107357918801e-05 -1.7619370692700828e-04 4.5664513310075677e-03 4.5703277686411428e-03 0 2 0 P 537 22 7.2034512837753528e-02 -1.5202194310419279e-01 2.9586473526151726e+00 2.9634260239394732e+00 1 0 0 0 0 P 538 22 8.3241161406475028e-02 -3.9610254941632200e-01 1.1247216534822432e+01 1.1254497150108019e+01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 539 211 7.9655254947817011e-01 -3.1295196324073902e+00 1.0277518415985375e+02 1.0282600034996234e+02 1 0 0 0 0 P 540 -211 3.1434206760109562e-01 -1.8908042683692827e+00 8.2842227408557633e+01 8.2864516371682427e+01 1 0 0 0 0 V -159 0 3.6214186612224306e-05 6.3418794170040773e-05 7.3415686854678428e-03 7.3419655536296367e-03 0 2 0 P 541 22 9.0791251727033118e-02 2.5014562143832414e-01 2.1332896102971848e+01 2.1334555819690884e+01 1 0 0 0 0 P 542 22 1.2913518724930331e-01 1.3499265918461453e-01 2.3251980944911566e+01 2.3252731383154753e+01 1 0 0 0 0 V -160 0 -1.2157021595247700e-04 -1.0806692171769436e-04 4.3970895585126304e-02 4.3971222299011771e-02 0 2 0 P 543 22 -2.1171760959838504e-01 -1.8970212698787461e-01 9.2743666432857921e+01 9.2744102101710027e+01 1 0 0 0 0 P 544 22 -1.3238548726001675e-01 -1.1618005097543138e-01 3.1715447371744194e+01 3.1715936462784089e+01 1 0 0 0 0 V -161 0 3.5080713326925313e-06 -5.9908974739535109e-05 1.3958070934917549e-02 1.3958284134584326e-02 0 2 0 P 545 22 -3.8810252789273463e-02 -7.5220786712183227e-02 2.7233577401465510e+01 2.7233708937346162e+01 1 0 0 0 0 P 546 22 4.8577453488349652e-02 -9.1578267373131933e-02 1.1628597071094061e+01 1.1629059127457383e+01 1 0 0 0 0 V -162 0 1.5178404582213249e-04 8.4604542130450658e-05 1.6617640635278725e-02 1.6618560598191893e-02 0 2 0 P 547 22 8.4319396432758853e-01 5.2853165173125682e-01 9.4035105336540909e+01 9.4040370891562858e+01 1 0 0 0 0 P 548 22 2.0815804089516504e-01 5.7492752467567472e-02 2.1069151565694426e+01 2.1070258253870062e+01 1 0 0 0 0 V -163 0 4.6637326669094410e+00 -1.3555786353441361e+00 5.8138102869052170e+02 5.8141100469035314e+02 0 2 0 P 549 211 3.4271429266718384e-01 -1.3776079110878162e-01 6.3666168228867846e+01 6.3667392657885458e+01 1 0 0 0 0 P 550 -211 3.4872559230746503e-01 -6.3215809103934081e-02 2.2528744797870424e+01 2.2531964577677744e+01 1 0 0 0 0 V -164 0 0 0 0 0 0 3 0 P 551 111 2.9825024814632706e-01 4.5609154453568335e-02 9.4375932474661610e+00 9.4433796551080267e+00 2 0 0 -217 0 P 552 111 1.0605804374348120e-01 -2.5837892049880382e-02 4.2219247841410175e+00 4.2254922066727865e+00 2 0 0 -218 0 P 553 111 4.6134768908730345e-01 2.8262238039306664e-01 1.2470319786500550e+01 1.2482780630857548e+01 2 0 0 -219 0 V -165 0 1.7375701767379798e-05 1.9692916736409119e-05 3.9713413953326921e-04 3.9885747542098358e-04 0 2 0 P 554 22 2.6093223961751932e-03 3.5507820288978045e-02 1.3458450636142134e+00 1.3463159172793682e+00 1 0 0 0 0 P 555 22 8.7197321593762533e-02 6.6275393197706506e-02 7.0675026535665075e-01 7.1518650589782007e-01 1 0 0 0 0 V -166 0 1.3711346201430178e-04 8.7104596923566835e-05 2.4342515698314309e-03 2.4397619605765236e-03 0 2 0 P 556 22 3.0775516862917657e-01 2.4679548346019944e-01 5.1678711691671229e+00 5.1829059103540631e+00 1 0 0 0 0 P 557 22 5.4556642293589563e-01 2.9529740944406735e-01 9.9816217640772251e+00 1.0000880777359539e+01 1 0 0 0 0 V -167 0 9.3728326180861056e-05 2.3156765654802944e-04 3.8871144531355253e-03 3.8952219766788198e-03 0 2 0 P 558 22 4.4793789389014799e-01 1.1039710779181926e+00 1.9000506040394153e+01 1.9037821048867890e+01 1 0 0 0 0 P 559 22 3.4781148754132470e-02 8.8647226825094030e-02 1.0188866440073383e+00 1.0233269528694009e+00 1 0 0 0 0 V -168 0 -4.2242919709208015e-05 7.2680232166838342e-05 3.9648636931706861e-04 4.0585262850769077e-04 0 2 0 P 560 22 -1.5080211649718875e-01 3.5818519049893216e-01 1.9519257200913069e+00 1.9902391629617664e+00 1 0 0 0 0 P 561 22 -1.1857926445609825e-01 1.0529369410195170e-01 5.7645173182297371e-01 5.9786654288251484e-01 1 0 0 0 0 V -169 0 -1.2265595670325379e-05 8.5536498501525573e-06 4.1741505351130338e-04 4.1770235326445284e-04 0 2 0 P 562 22 -1.3706959900935115e-01 1.7659070996460757e-01 5.8357876145983436e+00 5.8400675883518511e+00 1 0 0 0 0 P 563 22 -2.7276423772827857e-01 1.0921482532459531e-01 8.1114202903922479e+00 8.1167399450050901e+00 1 0 0 0 0 V -170 0 -6.4736364016958000e-05 -5.4578408267971784e-06 9.6229003295054841e-04 9.6449461313441801e-04 0 2 0 P 564 22 -1.6419837625429345e+00 -1.1982950412197201e-01 2.4187558609832298e+01 2.4243524110380189e+01 1 0 0 0 0 P 565 22 -3.4509095802656431e-02 -2.1513484583967218e-02 7.3309290337492294e-01 7.3421993482248615e-01 1 0 0 0 0 V -171 0 -1.1864937627838293e-04 -1.3889689109816900e-04 1.9337606555633472e-03 1.9426872093242877e-03 0 2 0 P 566 22 -1.6312064978655344e-01 -2.0203636068223246e-01 3.4594500830651431e+00 3.4691817356033594e+00 1 0 0 0 0 P 567 22 -2.9291691701428235e-01 -3.3182401211898688e-01 3.9731006120957209e+00 3.9976788226578792e+00 1 0 0 0 0 V -172 0 -3.2021536291654924e-04 -3.1074302657431159e-04 8.2047478426138364e-03 8.2170059351101311e-03 0 2 0 P 568 22 -4.0203697858193604e-01 -4.0086593569779549e-01 1.1673169470001753e+01 1.1686967643744511e+01 1 0 0 0 0 P 569 22 -5.1941698837386463e-01 -4.9333036997843327e-01 1.1936870281335356e+01 1.1958346080256318e+01 1 0 0 0 0 V -173 0 -1.8589092577612752e-05 2.6025603436860295e-06 2.0504779254524620e-04 2.0628172267513536e-04 0 2 0 P 570 22 -2.1468011819497154e-01 1.4078608160351074e-02 1.7818333553807240e+00 1.7947746005287877e+00 1 0 0 0 0 P 571 22 1.3285481632157137e-02 1.4117587665833386e-02 4.3965892484979796e-01 4.4008610578360824e-01 1 0 0 0 0 V -174 0 -6.5328110395028685e-05 -6.9079271101061746e-05 9.2071040429556733e-04 9.2563820195720964e-04 0 2 0 P 572 22 -1.3201516014633222e-01 -1.8969950488160423e-01 1.9477691764468823e+00 1.9614328103142749e+00 1 0 0 0 0 P 573 22 -1.0186774808352268e+00 -1.0270662705205071e+00 1.4269670456992865e+01 1.4342805300399803e+01 1 0 0 0 0 V -175 0 -3.6033425252536125e-06 -1.7532501382797475e-04 1.5634533415708467e-03 1.5745668477963452e-03 0 2 0 P 574 22 4.0313512514734223e-02 -3.1272512858509222e-01 2.4670379696740543e+00 2.4871064571411732e+00 1 0 0 0 0 P 575 22 -4.7888664557280330e-02 -5.5853108787701160e-02 8.1974275983551725e-01 8.2303771861141384e-01 1 0 0 0 0 V -176 0 5.1883240426524882e-08 6.5016156657103889e-06 8.0620052963193642e-05 8.1398727552501097e-05 0 2 0 P 576 22 -6.6065972401129880e-02 4.9475267901188780e-02 5.1341746823244894e-01 5.2000962638149195e-01 1 0 0 0 0 P 577 22 6.6830602222091973e-02 4.6342363795827263e-02 6.7472144052557503e-01 6.7960500761873388e-01 1 0 0 0 0 V -177 0 1.0602166712337458e-04 -1.0691844615301195e-04 3.9766879181751865e-03 3.9797468808845599e-03 0 2 0 P 578 22 5.6927994272722458e-02 -5.1514921691679649e-02 3.6131489618812433e+00 3.6139645826200786e+00 1 0 0 0 0 P 579 22 2.9365338640610977e-01 -3.0203183426283320e-01 9.5365474983748424e+00 9.5458469361820057e+00 1 0 0 0 0 V -178 0 -2.3853372332902112e-07 -6.4717948277072822e-06 6.2004164901532301e-05 6.2342370189949001e-05 0 2 0 P 580 22 1.0889567124311290e-02 -8.9558518546932520e-01 9.0254910445647862e+00 9.0698224901385718e+00 1 0 0 0 0 P 581 22 -1.0640517863650771e-01 -1.6959034808827969e+00 1.5802720431025683e+01 1.5893815894858841e+01 1 0 0 0 0 V -179 0 -3.9057587494001639e-06 -5.0654162485251345e-06 1.4219055342897603e-04 1.4244979721237140e-04 0 2 0 P 582 22 3.5503572700885756e-02 -3.0235977878056111e-02 7.2237235063562344e-01 7.2387604670662065e-01 1 0 0 0 0 P 583 22 -1.2744752004100227e-01 -8.9007015530508007e-02 2.6248801540777298e+00 2.6294792150631991e+00 1 0 0 0 0 V -180 0 -6.4815922418187848e-05 -1.2447502103682121e-04 3.0363234072861133e-03 3.0400995505540322e-03 0 2 0 P 584 22 -4.7077671836974408e-02 -2.0895086789436190e-01 5.0838730122713791e+00 5.0883830022199250e+00 1 0 0 0 0 P 585 22 -1.0638007087994197e-01 -8.5755356136651681e-02 2.1049058997126759e+00 2.1093362812106973e+00 1 0 0 0 0 V -181 0 7.9045982254682003e-06 -2.0211692423385343e-05 2.8594975504362113e-04 2.8790724573630441e-04 0 2 0 P 586 22 2.1153332304290192e-03 -2.2869969585229862e-02 3.1758339022521613e-02 3.9193140228546572e-02 1 0 0 0 0 P 587 22 3.9659753599622816e-02 -8.3946997183402039e-02 1.4794602587161094e+00 1.4823706188102994e+00 1 0 0 0 0 V -182 0 -5.1998726280328764e-05 -8.3092196432874764e-05 2.9437700891778927e-04 3.1319443856943515e-04 0 2 0 P 588 22 -1.5425340619473926e-01 -1.7276987683242259e-01 7.8668736953297824e-01 8.2007350953806968e-01 1 0 0 0 0 P 589 22 -1.0055144974045098e-02 -8.9789600792369806e-02 1.4350195033465554e-01 1.6957620145749272e-01 1 0 0 0 0 V -183 0 2.4069328980178928e-04 7.6964256832419498e-05 1.2567885169534100e-03 1.2874967777266703e-03 0 2 0 P 590 22 1.6426708105476662e-01 1.3000916766403279e-03 5.5433848681146802e-01 5.7816651763747873e-01 1 0 0 0 0 P 591 22 1.0766678872766326e-01 8.5653675138395613e-02 8.6557382231315949e-01 8.7643980474043637e-01 1 0 0 0 0 V -184 0 -2.4385382087112084e-04 -9.6647405657713310e-05 4.1297555059878320e-04 4.9048852069140489e-04 0 2 0 P 592 22 -2.5258141332874157e-01 -4.6154391009288212e-02 4.5938482664928509e-01 5.2627180916725580e-01 1 0 0 0 0 P 593 22 -6.8794404334096815e-01 -3.2660722911806139e-01 1.1334301513273202e+00 1.3655047406795662e+00 1 0 0 0 0 V -185 0 -7.1493480502746154e-05 -7.8053116947747188e-05 1.4990200588592159e-04 1.8425748253213066e-04 0 2 0 P 594 22 -8.9283561741308470e-03 2.8928615533265348e-03 1.4295196506760198e-03 9.4935619432606165e-03 1 0 0 0 0 P 595 22 -5.7131270223904884e-01 -6.3637192666149245e-01 1.2151750985867151e+00 1.4859400906523041e+00 1 0 0 0 0 V -186 0 -3.4643003795999668e-05 1.7413114128149149e-05 -2.0428546918075669e-05 5.3200213257585289e-05 0 2 0 P 596 22 -1.5266059399937498e-01 5.7653259239427226e-02 -1.2030311839328613e-01 2.0273627094410027e-01 1 0 0 0 0 P 597 22 -2.3865676466217440e-03 2.0280338461447969e-02 2.8873742498189671e-02 3.5364966267403014e-02 1 0 0 0 0 V -187 0 1.5015947829540522e+02 -9.7481015788023200e+01 1.6864690361881696e+02 2.8578173465513419e+02 0 2 0 P 598 2212 9.8301252607263212e-01 -6.2693276563659328e-01 1.2203714063088977e+00 1.9310658407420502e+00 1 0 0 0 0 P 599 -211 1.6815791160241159e-01 -1.2038778238065620e-01 7.2529528452508291e-02 2.5982805618054400e-01 1 0 0 0 0 V -188 0 5.5499329914581061e+01 2.5712889423146706e+01 4.2784367160438556e+01 7.5583327418732537e+01 0 2 0 P 600 211 1.7011747132838417e+00 6.5029766836969671e-01 1.4125975392687948e+00 2.3090677892716100e+00 1 0 0 0 0 P 601 -211 6.2480420669932768e-01 4.2733045546796544e-01 3.8049683273829910e-01 8.5863219104778044e-01 1 0 0 0 0 V -189 0 2.5602696659034710e-05 2.1297202069875233e-05 1.5610511694523092e-05 3.6868605270374782e-05 0 2 0 P 602 22 1.1312879209698625e+00 9.9905577923525790e-01 6.8820574863636907e-01 1.6587802635104589e+00 1 0 0 0 0 P 603 22 2.2035819923791272e-01 1.2528986811551532e-01 1.3592179727643566e-01 2.8762827051358381e-01 1 0 0 0 0 V -190 0 3.9081413399969558e-05 -4.6152224878789689e-06 -1.4967455219579840e-04 1.5505485618913316e-04 0 2 0 P 604 22 4.5054328722331491e-02 -4.3151504604696826e-03 -3.7135446051741094e-01 3.7410245709737555e-01 1 0 0 0 0 P 605 22 5.0830373266657236e-01 -6.1032295974852172e-02 -1.7479041035135361e+00 1.8213364271529273e+00 1 0 0 0 0 V -191 0 4.7553386882259491e-04 -5.3743389342364163e-04 -2.9275533680712010e-03 3.0156752630386683e-03 0 2 0 P 606 22 1.4239690959865312e-01 -2.2583051872785925e-01 -1.2603239731078508e+00 1.2882906582920257e+00 1 0 0 0 0 P 607 22 5.4336924218346760e-01 -5.4920149706302390e-01 -2.9614931023609543e+00 3.0606067720402792e+00 1 0 0 0 0 V -192 0 1.3656373877750109e-04 -1.2067952624444311e-04 -4.4586792326005659e-04 4.8404112364446044e-04 0 2 0 P 608 22 1.1733196375393423e-01 -1.5915950179234992e-01 -6.1309606238676551e-01 6.4419354113752214e-01 1 0 0 0 0 P 609 22 2.6834046760818059e-01 -1.8165400198959583e-01 -6.4608860529614021e-01 7.2279683790711546e-01 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 610 211 2.3804457617923067e-01 -1.3920003742715799e+00 -1.0572309855370106e+01 1.0667124529369499e+01 1 0 0 0 0 P 611 -211 6.0249794040410176e-01 -4.4196597579534597e-01 -7.8213082907240308e+00 7.8581601444231444e+00 1 0 0 0 0 V -194 0 -6.9541044426446141e-05 9.2371904677298566e-06 -3.5011394964533107e-03 3.5018646045399610e-03 0 2 0 P 612 22 -1.9303459801023157e-01 6.1753192345280004e-02 -7.8809367811550857e+00 7.8835423739177592e+00 1 0 0 0 0 P 613 22 -5.5693242305654700e-01 3.7865504429358501e-02 -2.9877184054541971e+01 2.9882398406909278e+01 1 0 0 0 0 V -195 0 -2.5913448143869982e-05 -3.6811535013533907e-05 -1.5374892744491513e-03 1.5382036018023431e-03 0 2 0 P 614 22 -3.2999983796561189e-02 -1.5230014614653414e-01 -4.6139473125453172e+00 4.6165781848021350e+00 1 0 0 0 0 P 615 22 -2.3491002158728730e-01 -2.2828133760311362e-01 -1.1281612302230281e+01 1.1286366608664348e+01 1 0 0 0 0 V -196 0 -7.7929744231941235e-07 -8.5570637395754391e-07 -8.1963541863454471e-05 8.1972014124069583e-05 0 2 0 P 616 22 -2.1167471749260425e-01 -2.4242014910913440e-01 -1.8206753483635289e+01 1.8209597637745475e+01 1 0 0 0 0 P 617 22 -2.6175439012543950e-01 -2.7742796408375620e-01 -3.1586719937935065e+01 3.1589022746415417e+01 1 0 0 0 0 V -197 0 -7.5504843238620347e-06 2.4337341903251902e-06 -8.7580641415415750e-04 8.7584384119525176e-04 0 2 0 P 618 22 -2.5756603909971276e-01 6.4746076901372754e-02 -2.2635714482017875e+01 2.2637272415872143e+01 1 0 0 0 0 P 619 22 -3.7133088563177319e-01 1.3796515091646175e-01 -5.0312183546321123e+01 5.0313742995410301e+01 1 0 0 0 0 V -198 0 -3.6516535658500819e-05 -2.7019108830070969e-05 -9.2113247865740892e-04 9.2257775597800128e-04 0 2 0 P 620 22 -4.6742383254679228e-02 2.4009909709349971e-02 -9.2242598741676829e-01 9.2392154884404476e-01 1 0 0 0 0 P 621 22 -1.5428520309485030e-01 -1.7275310605798794e-01 -4.1485106595964956e+00 4.1549715104116487e+00 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 622 310 -5.4202281255151274e-01 2.1726238359480559e+00 -8.6481993756898685e+00 8.9472404087762456e+00 2 0 0 -220 0 V -200 0 5.1128834285848416e-05 -2.9226589166252007e-05 -2.2253969514523364e-04 2.4258505271130952e-04 0 2 0 P 623 22 1.1887508462392737e-01 -1.9995749894009793e-02 -2.2778422507283197e-01 2.5771451055421818e-01 1 0 0 0 0 P 624 22 -2.8684139202347237e-02 -3.1559771470223076e-02 -1.6477441193357009e-01 1.7020401242357996e-01 1 0 0 0 0 V -201 0 -3.4014855740594389e-05 1.7629454179114704e-04 -3.9499879485501371e-04 4.3659206572013530e-04 0 2 0 P 625 22 2.7316643205832162e-02 1.0922242578697071e-01 -3.1355347719720073e-01 3.3315389890151448e-01 1 0 0 0 0 P 626 22 -1.2199203743288893e-01 3.8146774122249605e-01 -7.8586810810384755e-01 8.8203649478076651e-01 1 0 0 0 0 V -202 0 3.3558614120711552e-05 6.0743031179990303e-05 -6.0050392741560461e-05 9.8872831000646047e-05 0 2 0 P 627 22 1.0912704759250721e-01 1.0772168262056689e-01 -1.8747602083854625e-01 2.4219812512139419e-01 1 0 0 0 0 P 628 22 1.3979641413775517e-02 1.1510853980386995e-01 -3.2813321186990124e-02 1.2050776056817850e-01 1 0 0 0 0 V -203 0 1.4299131655137982e-05 1.3069028505413219e-05 -2.0368423859961488e-05 2.8631279994178353e-05 0 2 0 P 629 22 8.1068539476611481e-02 1.7861666675017013e-02 -4.9341473929529055e-02 9.6569810390301228e-02 1 0 0 0 0 P 630 22 2.7361343839920471e-01 3.0630828930617732e-01 -4.5588590876040214e-01 6.1361310577318184e-01 1 0 0 0 0 V -204 0 -1.7470939744617705e-06 6.7044326081331008e-05 3.0863595634666357e-07 6.8376320768970614e-05 0 2 0 P 631 22 -3.8364831245797627e-02 6.6640406608947822e-01 1.0514693510210261e-02 6.6759029228765898e-01 1 0 0 0 0 P 632 22 2.0650913065615960e-02 1.3363435836677859e-02 -7.3854101642063978e-03 2.5682404698512889e-02 1 0 0 0 0 V -205 0 -7.7319385436372146e-05 2.3437097140913555e-05 -1.1115257148021013e-04 1.4118738231648945e-04 0 2 0 P 633 22 -2.9525698948052276e-01 9.3575868078096744e-02 -3.3102291402427758e-01 4.5333133857344915e-01 1 0 0 0 0 P 634 22 -2.6608390508500498e-02 3.9881533445461220e-03 -1.3168335885053611e-01 1.3440393897022346e-01 1 0 0 0 0 V -206 0 2.9025841022775834e-06 -2.5354252579700443e-05 -4.4890023922952736e-05 5.3443527515439218e-05 0 2 0 P 635 22 3.9916722220635921e-02 -7.0484000804260719e-02 -5.0601154493991905e-02 9.5508198173451422e-02 1 0 0 0 0 P 636 22 -1.1480750416346342e-02 -1.7790598069859020e-01 -3.8917644008641616e-01 4.2806617142304698e-01 1 0 0 0 0 V -207 0 -4.5581891871683619e-06 5.6358775094177731e-07 -9.8840379642610219e-07 4.7537839245866506e-06 0 2 0 P 637 22 -6.2025368233331923e-01 1.3462312732121015e-01 -1.5029180022818756e-01 6.5224661139297169e-01 1 0 0 0 0 P 638 22 -2.2744011137691761e-01 -2.9811804432428746e-02 -3.3523247701084731e-02 2.3182225105259063e-01 1 0 0 0 0 V -208 0 -2.6595186962158251e-05 1.2976448923810099e-05 -9.3478563548139525e-05 9.9834457974410043e-05 0 2 0 P 639 22 -1.3519181399703945e-01 6.6735924944735556e-02 -6.1572635255040709e-01 6.3391596562562413e-01 1 0 0 0 0 P 640 22 -5.5879007567384495e-02 2.6492250528860402e-02 -5.5862305999702828e-02 8.3336066960255223e-02 1 0 0 0 0 V -209 0 -8.0691159306851446e-07 4.0739456576211792e-05 -7.5174518404297697e-03 7.5175830613685895e-03 0 2 0 P 641 22 -5.2800248836732074e-02 2.6411349251225147e-01 -4.9056145503240181e+01 4.9056884893338633e+01 1 0 0 0 0 P 642 22 4.6639538534352057e-02 4.6929243765699465e-02 -8.3390430140833995e+00 8.3393054861426119e+00 1 0 0 0 0 V -210 0 -4.2926939868548793e+01 1.1588348693524646e+01 -5.0195882453744616e+03 5.0198904270337034e+03 0 2 0 P 643 211 -2.6432247891954253e-01 6.1087042209269020e-02 -1.4949070940669101e+01 1.4952183779423171e+01 1 0 0 0 0 P 644 -211 -3.9286379390464882e-01 1.1632377974555508e-01 -6.1897881117674451e+01 6.1899394502894410e+01 1 0 0 0 0 V -211 0 7.6144710803081077e+00 7.1910947616541954e+00 -2.3882598794455225e+03 2.3883229356868933e+03 0 2 0 P 645 -211 3.3796605551364506e-01 2.1497284956919879e-01 -4.6217506007127888e+01 4.6219452351629329e+01 1 0 0 0 0 P 646 211 -6.4127062621671810e-02 4.3640273595023447e-02 -3.9671411719932969e+01 3.9671733065130582e+01 1 0 0 0 0 V -212 0 3.7964201648542032e-05 -2.2739077633263604e-05 9.7907841370396473e-05 1.0773607485795076e-04 0 2 0 P 647 22 4.5090921528260769e-01 -2.1310906320362102e-01 9.9040681821074705e-01 1.1088914549245288e+00 1 0 0 0 0 P 648 22 1.9588638678818093e-01 -1.7429630210598940e-01 6.7764778209055632e-01 7.2660662949700738e-01 1 0 0 0 0 V -213 0 -4.9202418928832053e-06 1.6084661005302228e-05 4.6327988981731686e-05 5.0246955768976739e-05 0 2 0 P 649 22 2.6881427825512668e-02 6.0483897453350532e-02 2.8587241621548015e-01 2.9343474805476327e-01 1 0 0 0 0 P 650 22 -9.4824163594056113e-02 1.6162629476922216e-01 3.5386245507746378e-01 4.0041643107593611e-01 1 0 0 0 0 V -214 0 -1.2023182470641698e-05 8.7308702105107785e-06 7.2435478159520639e-05 7.4405719284319297e-05 0 2 0 P 651 22 -1.0043312453005759e-01 -5.6015671763648203e-03 4.6796893279155305e-01 4.7865761470571688e-01 1 0 0 0 0 P 652 22 -9.5612089581330773e-02 1.4796365175570453e-01 7.1313506024184115e-01 7.3457234365386115e-01 1 0 0 0 0 V -215 0 2.1568489611073342e-06 1.6741302442980963e-05 8.2823375819819685e-05 8.5103684894119827e-05 0 2 0 P 653 22 3.8145234241672279e-02 2.1676341608863689e-01 7.7096835330685443e-01 8.0176906852936791e-01 1 0 0 0 0 P 654 22 -8.7368738555651804e-03 1.1502106650253944e-02 3.5831780832253879e-01 3.5860881637688374e-01 1 0 0 0 0 V -216 0 0 0 0 0 0 1 0 P 655 130 -2.6620835943512777e-01 1.4142633786532155e-01 -4.0267865400476671e-01 7.0759722085818633e-01 1 0 0 0 0 V -217 0 7.9714019066899877e-05 1.2190061970889600e-05 2.5224069141597722e-03 2.5239534604307619e-03 0 2 0 P 656 22 5.7496167861669369e-02 -9.0301762403987903e-03 7.4068743375115109e-01 7.4297054310287136e-01 1 0 0 0 0 P 657 22 2.4075408028465767e-01 5.4639330693967127e-02 8.6969058137150093e+00 8.7004091120051541e+00 1 0 0 0 0 V -218 0 2.7293365428723354e-05 -6.6492177748529911e-06 1.0864855873152699e-03 1.0874036408957575e-03 0 2 0 P 658 22 -1.2919373062557854e-03 -5.2363958136461601e-02 7.6056220412595588e-01 7.6236377114777187e-01 1 0 0 0 0 P 659 22 1.0734998104973698e-01 2.6526066086581222e-02 3.4613625800150616e+00 3.4631284355250136e+00 1 0 0 0 0 V -219 0 3.7810932752676751e-06 2.3163041827703742e-06 1.0220370319499298e-04 1.0230582923987596e-04 0 2 0 P 660 22 4.5651937259259145e-01 2.7983288313526739e-01 1.1513491919599616e+01 1.1525936515646862e+01 1 0 0 0 0 P 661 22 4.8283164947119850e-03 2.7894972577992270e-03 9.5682786690093380e-01 9.5684411521068313e-01 1 0 0 0 0 V -220 0 -5.6560504058317875e+01 2.2671499509747932e+02 -9.0244636306587449e+02 9.3365152855672409e+02 0 2 0 P 662 111 -5.5486989528651742e-01 1.9564109870549846e+00 -7.7479893755920237e+00 8.0115531275559544e+00 2 0 0 -221 0 P 663 111 1.2847082735004626e-02 2.1621284889307130e-01 -9.0021000009784458e-01 9.3568728122029077e-01 2 0 0 -222 0 V -221 0 -5.6560551674905824e+01 2.2671516298839686e+02 -9.0244702796555760e+02 9.3365221607433375e+02 0 2 0 P 664 22 -5.1332455428418633e-01 1.7636215946540703e+00 -7.1339144946580575e+00 7.3665866752691889e+00 1 0 0 0 0 P 665 22 -4.1545341002331107e-02 1.9278939240091442e-01 -6.1407488093396634e-01 6.4496645228676719e-01 1 0 0 0 0 V -222 0 -5.6560500275218018e+01 2.2671505876600349e+02 -9.0244662815207289e+02 9.3365180408997105e+02 0 2 0 P 666 22 1.6137826704574278e-02 9.1263398590635571e-03 -3.0331185413454043e-01 3.0387793665961138e-01 1 0 0 0 0 P 667 22 -3.2907439695696542e-03 2.0708650903400774e-01 -5.9689814596330415e-01 6.3180934456067961e-01 1 0 0 0 0 HepMC::IO_Ascii-END_EVENT_LISTING HepMC::Version 2.04.01 HepMC::IO_GenEvent-START_EVENT_LISTING E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 3 3.4560000000000002e-01 9.9222999999999995e-01 9.9256000000000000e-01 U GEV MM C 1.2010000000000000e-01 1.0000000000000000e-02 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 1.5073383106491554e+00 -1.2993365623313919e+00 2.7209201338025518e+03 2.7209208615607290e+03 0 3 0 0 -3 0 P 13 2203 -1.5073383106491554e+00 1.2993365623313919e+00 4.2445390246486650e+03 4.2445395612551065e+03 7.7132999999999996e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 2.5858216316097202e+00 -2.1708479932488607e+00 -4.3397297718328176e+01 4.3528433279564204e+01 0 3 0 0 -4 0 P 16 2 -9.0692769071088786e-01 1.4604855287320972e+00 -7.6935046429856322e+02 7.6935245586936981e+02 3.3000000000000002e-01 2 0 0 -11 0 P 31 2101 -1.6788939408988324e+00 7.1036246451676344e-01 -6.0892474052497901e+03 6.0892477056910939e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 6 0 P 5 -3 1.9131593054692739e+00 -4.0833345117393832e-01 1.5134760262017681e+02 1.5136024489148531e+02 0 3 0 0 -5 0 P 11 3 -2.3763962284599889e+00 -1.5682078523784135e+00 3.3160241945312552e+00 4.3991534823891785e+00 5.0000000000000000e-01 2 0 0 -9 0 P 12 21 -1.7899416997370041e-01 2.7373785189054706e-01 1.8197775504657279e-01 3.7428228354280341e-01 0 2 0 0 -9 0 P 17 1 1.1548355662297878e+00 3.4375600693342656e-01 1.0589855551638902e+03 1.0589862920544110e+03 3.3000000000000002e-01 2 0 0 -13 0 P 18 21 1.2020137443834598e+00 -9.8631711370454744e-01 1.4970067852719885e+03 1.4970075927692765e+03 0 2 0 0 -13 0 P 19 21 -2.4138821327432236e-01 9.7656750468602660e-01 8.6876499652477523e+00 8.7456969007269940e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 8 0 P 6 4 -5.9089825329223244e-01 -1.6901151672419878e+00 -1.5889612462364616e+01 1.5990166798017459e+01 0 3 0 0 -5 0 P 14 -4 1.2883406923195979e+00 -8.1779995058646193e-02 -1.5140846367359584e+01 1.5269634521725274e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 4.8780533685027683e-01 -5.0842485147169025e-01 -1.9217346871295313e+00 2.0468302528471822e+00 0 2 0 0 -11 0 P 26 21 7.3199240075760574e-01 2.4932276178633131e-01 -7.8263490844843397e-01 1.1002236655488444e+00 0 2 0 0 -13 0 P 27 21 3.8517080731795145e-01 1.6355688468072610e-01 -4.1897803992779883e+00 4.2106255116681233e+00 0 2 0 0 -13 0 P 28 21 -4.9565627720230027e-01 -4.4399621171836968e-02 -1.3956559470714644e-01 5.1684139415898722e-01 0 2 0 0 -13 0 P 29 21 6.4928719605614766e-03 1.4868576029816710e-01 1.7868600341142118e-01 2.3254741563149370e-01 0 2 0 0 -13 0 P 30 21 8.0668235928323240e-01 -3.3823327368415140e-01 -4.1172703508799797e+00 4.2091630187533973e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 3 0 0 -6 0 P 8 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821259e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821045e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 13 0 P 32 -3 -1.8175462476630642e+00 -2.6075903952270956e+00 7.4978093125731151e+00 8.1590530406035970e+00 5.0000000000000000e-01 2 0 0 -15 0 P 33 21 -7.7086820243997201e+00 -1.2078882165221280e+01 4.1059302235880892e+01 4.3487808326150649e+01 0 2 0 0 -15 0 P 34 21 -8.6664999417158739e-01 -2.3788922262766904e-01 4.1521896803822882e+00 4.2483352782605541e+00 0 2 0 0 -15 0 P 35 21 -2.7355636784212805e+00 -4.9103226906665798e+00 4.5665344073097550e+01 4.6009979644415822e+01 0 2 0 0 -15 0 P 36 21 -8.1750908960544592e-03 -2.4124905925706416e-02 6.8686147210170772e+00 6.8686619533188251e+00 0 2 0 0 -15 0 P 37 21 6.4416385788967663e+00 3.9997054871194289e+00 1.5990357572048969e+01 1.7697002199435030e+01 0 2 0 0 -15 0 P 38 21 4.3820415185385482e+00 1.4472618519174791e+00 9.4571366554555141e+00 1.0523036085568249e+01 0 2 0 0 -15 0 P 39 21 1.5785379900501961e+00 6.3340244933387069e-01 4.9379047129305471e+00 5.2226318846761126e+00 0 2 0 0 -15 0 P 40 21 2.1695667705919841e-01 -2.8556071886963619e-01 9.3101540850151454e-01 9.9769976182675046e-01 0 2 0 0 -15 0 P 41 21 4.4744182629032359e-01 3.7836193256341005e-01 7.6527884936886914e-01 9.6385354552363345e-01 0 2 0 0 -15 0 P 42 21 7.0915200046107396e-01 9.4447177453203079e-01 5.3145921951374853e-01 1.2951341222637094e+00 0 2 0 0 -15 0 P 43 21 1.1637549392207085e+00 6.4262106092344524e+00 1.4233902665894258e+00 6.6840517804561888e+00 0 2 0 0 -15 0 P 44 4 1.1845655554320238e+00 8.2373132175066175e+00 1.2079282052863620e+00 8.5419912870215189e+00 1.5000000000000000e+00 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 45 92 -4.0627287090828448e+00 4.8665618435255187e-03 4.2480370265982428e+03 4.2493129970210384e+03 1.0404740032327815e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 14 0 P 46 3122 -7.3771937707635449e-01 -1.9294115521747696e-01 2.3626223120200218e+00 2.7217976082628574e+00 1.1156800000000000e+00 2 0 0 -17 0 P 47 113 -5.8649080238289153e-01 -3.6887303658376347e-01 1.5544771643782693e+00 1.8799923714648183e+00 7.9870725788248087e-01 2 0 0 -18 0 P 48 -2112 -8.3505206138920984e-01 -4.5948159379032477e-01 3.2157041824918604e+00 3.4830992599204103e+00 9.3957000000000002e-01 1 0 0 0 0 P 49 -211 -4.6959323148633048e-01 -1.2832517867366380e-01 9.7275164850053275e-01 1.0966816808444948e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 321 2.1227525312906162e-01 -1.5289242719376326e-02 2.1781765734125420e+00 2.2435214928761309e+00 4.9359999999999998e-01 1 0 0 0 0 P 51 -321 -2.7058491563472709e-01 -6.9924173239626061e-02 6.3841624885677168e+00 6.4093117592302722e+00 4.9359999999999998e-01 1 0 0 0 0 P 52 213 2.1203810470765724e-01 2.0958133779211251e-02 6.7514724368505332e+00 6.8027312640157040e+00 8.0583694606582701e-01 2 0 0 -19 0 P 53 111 -3.3213424623765248e-01 3.4211924550281853e-01 4.3402841912560630e+00 4.3684831688967929e+00 1.3497999999999999e-01 2 0 0 -20 0 P 54 -211 3.1101552012023875e-01 -7.6976657694286010e-01 4.3071461940135706e+01 4.3079688771881727e+01 1.3957000000000000e-01 1 0 0 0 0 P 55 211 -1.6705318266988844e-01 2.9031993215322216e-01 2.3857982790456216e+01 2.3860742131028751e+01 1.3957000000000000e-01 1 0 0 0 0 P 56 311 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -21 0 P 57 -311 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -22 0 P 58 2112 -4.9118388741375185e-01 1.5592546903498823e+00 3.6302423682361400e+03 3.6302428579180933e+03 9.3957000000000002e-01 1 0 0 0 0 P 59 211 -4.2689663996527044e-01 -1.8418355465330538e-01 4.2449709914417917e+02 4.2449737670088257e+02 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 60 92 8.6921833845898688e-01 8.7028068220176080e-01 -7.8641304535305233e+02 7.8666892064394222e+02 2.0024981314782629e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 9 0 P 61 -411 1.1688720643707666e+00 -7.4513028084903610e-01 -1.6866644499133198e+01 1.7026434159519269e+01 1.8693000000000000e+00 2 0 0 -23 0 P 62 213 3.7470388189717097e-01 1.1020281521248323e-01 -1.5451543037357895e+01 1.5475868794289363e+01 7.7445790275939808e-01 2 0 0 -24 0 P 63 -213 -2.1178538509080652e-01 3.9040080476128763e-01 -2.5920552948920815e+01 2.5932809177743518e+01 6.6201271419408125e-01 2 0 0 -25 0 P 64 211 -1.0539248551241585e-01 -5.6877312112187807e-02 -2.4813930335012659e+00 2.4881989020663533e+00 1.3957000000000000e-01 1 0 0 0 0 P 65 -2224 6.3960254240566017e-01 -4.3830975700149433e-02 -3.3696696807691140e+01 3.3728822474444563e+01 1.3247932655519623e+00 2 0 0 -26 0 P 66 111 -4.9002768594274757e-02 -9.3633614435907869e-02 -1.7412505148631521e+00 1.7496689632594586e+00 1.3497999999999999e-01 2 0 0 -27 0 P 67 2212 -1.7983236018661933e-01 2.1939525582136044e-01 -1.6103988517067441e+02 1.6104286833117743e+02 9.3827000000000005e-01 1 0 0 0 0 P 68 213 -7.6187580460114623e-01 8.5913101305733230e-01 -1.2365619630425306e+02 1.2366417060794262e+02 8.0848430729299015e-01 2 0 0 -28 0 P 69 331 -6.0713462293482384e-03 2.3062297644657839e-01 -4.0555888303665745e+02 4.0556007923349972e+02 9.5761898627699404e-01 2 0 0 -29 0 V -13 0 0 0 0 0 6 1 0 P 20 21 2.7497223922082998e+00 -3.2443890390539156e+00 2.5418671295121317e+01 2.5771998057588963e+01 0 2 0 0 -13 0 P 21 21 -2.0575204360516910e-01 2.4229652480183916e+00 4.9419044762411302e+00 5.5077685453225653e+00 0 2 0 0 -13 0 P 22 21 -2.7497223922082998e+00 3.2443890390539156e+00 6.7021782526682061e-01 4.3053716917648712e+00 0 2 0 0 -13 0 P 23 21 2.0575204360516910e-01 -2.4229652480183916e+00 -1.4189664353904355e-01 2.4358220694459964e+00 0 2 0 0 -13 0 P 24 21 1.2587821098669902e+00 -2.6667816242118747e-01 -5.8254265308406481e+01 5.8268474119927362e+01 0 2 0 0 -13 0 P 25 21 -1.2587821098669902e+00 2.6667816242118747e-01 -3.6098622829217867e+01 3.6121547860087098e+01 0 2 0 0 -13 0 P 70 92 1.8712493185571446e+00 1.2233013743409056e+00 -3.5970819712830998e+03 8.7966676707654060e+03 8.0275997909536509e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 50 0 P 71 -213 8.7695914611789827e-01 -1.3056393899451380e-01 7.7453546713867104e+02 7.7453638241747433e+02 7.9481340084842744e-01 2 0 0 -30 0 P 72 223 4.8295247219301213e-01 -1.9931783509541660e-02 9.9052523820924489e+02 9.9052566384292925e+02 7.8074427808345570e-01 2 0 0 -31 0 P 73 211 1.3850104916568237e-01 -4.3565090467300321e-01 6.8677299646723853e+01 6.8678962869296143e+01 1.3957000000000000e-01 1 0 0 0 0 P 74 111 4.2475962909123333e-01 1.2253088954042510e-01 3.4986130518811797e+02 3.4986161052921358e+02 1.3497999999999999e-01 2 0 0 -32 0 P 75 113 2.5170671641125530e-01 7.9527061042662023e-02 2.2599488119587267e+02 2.2599641994950557e+02 7.9108939580457083e-01 2 0 0 -33 0 P 76 -211 -1.9221335908804853e-02 -5.3067745014872614e-01 1.3807915012377745e+02 1.3808024176798583e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 213 -1.4049907214162011e-01 5.4367330912058265e-01 1.1669475275555600e+01 1.1707613671742026e+01 7.5910738610194239e-01 2 0 0 -34 0 P 78 223 8.1633397897400806e-01 -8.5768108564839712e-02 9.2590479009986204e+00 9.3278515479896740e+00 7.7787475513226845e-01 2 0 0 -35 0 P 79 -211 -1.4210113651499059e-01 -3.8388855788894088e-01 1.4955103913496963e+00 1.5567897332047844e+00 1.3957000000000000e-01 1 0 0 0 0 P 80 111 9.5463497763658234e-01 -3.9478491268212601e-01 7.3124203460701409e+00 7.3862638719334406e+00 1.3497999999999999e-01 2 0 0 -36 0 P 81 211 7.2490675961385420e-02 1.3169438131253494e-01 3.6667839444915624e+00 3.6725172005930387e+00 1.3957000000000000e-01 1 0 0 0 0 P 82 -213 4.4126493964800634e-01 -2.1003298064756973e-01 3.0615450194359637e+00 3.2079186412104401e+00 8.2392687944381182e-01 2 0 0 -37 0 P 83 111 -2.3027854891341855e-02 -2.8065908362951703e-01 6.3048404098198441e-01 7.0358334947440981e-01 1.3497999999999999e-01 2 0 0 -38 0 P 84 213 2.2642962321946897e-01 6.4703057792370411e-01 8.0785724570491790e-01 1.2852258827712018e+00 7.2749797062774335e-01 2 0 0 -39 0 P 85 111 -3.9094005207012528e-01 2.2862878685255186e-01 1.1012349532976333e+00 1.1983502281281138e+00 1.3497999999999999e-01 2 0 0 -40 0 P 86 2112 3.7269907250953721e-01 -2.8015513221139599e-01 4.1715239773705060e+00 4.3013713598608181e+00 9.3957000000000002e-01 1 0 0 0 0 P 87 -2212 -4.4502325970543771e-01 -2.1754495217768732e-01 1.7491568031425615e+00 2.0457936412983475e+00 9.3827000000000005e-01 1 0 0 0 0 P 88 321 -5.0379083550468627e-02 1.8803084736306059e+00 2.7277173368670735e+00 3.3499523635287178e+00 4.9359999999999998e-01 1 0 0 0 0 P 89 -323 -8.1116466091627526e-01 1.0534532017480058e+00 -8.4500355663205268e-02 1.6198712899609433e+00 9.2146130170505902e-01 2 0 0 -41 0 P 90 211 -8.9799083863894580e-01 2.3005438883367976e-01 4.0876039776347678e-01 1.0226814830536783e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 331 3.8608499147221492e-01 -6.2301749856969058e-01 1.4524261016864801e-02 1.2064351176701817e+00 9.5815568402303219e-01 2 0 0 -42 0 P 92 113 -4.2308470357622924e-01 -1.7764392720888758e-01 -1.4921992585509802e+00 1.8764952260107282e+00 1.0411616948133349e+00 2 0 0 -43 0 P 93 -213 -5.9228690859513926e-02 -3.6096116901355901e-01 5.0680556828157078e-03 8.5602583207208316e-01 7.7392088525231784e-01 2 0 0 -44 0 P 94 223 4.4519376696515300e-01 -3.6599579577299851e-01 -9.3581058961126686e+00 9.4083900348679848e+00 7.8198892107010165e-01 2 0 0 -45 0 P 95 213 2.5449089999962965e-01 -5.2538580551351322e-01 -1.5990871713898519e+01 1.6022635374114184e+01 8.2223494126538865e-01 2 0 0 -46 0 P 96 -211 -3.9985126704558338e-01 6.0759733471177846e-01 -5.2292352414804952e+00 5.2814237240112059e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 221 -5.4103870668604441e-02 -1.8671774238069413e-01 -6.7313154173464085e+00 6.7563377279741221e+00 5.4744999999999999e-01 2 0 0 -47 0 P 98 213 3.2263683737559473e-01 -3.9310173367445850e-01 -3.0380981895830683e+01 3.0395598885213076e+01 7.9356608680380858e-01 2 0 0 -48 0 P 99 -211 4.0901777019801971e-01 2.4457160340083145e-01 -2.4147552200210995e+00 2.4652856554661087e+00 1.3957000000000000e-01 1 0 0 0 0 P 100 211 -3.8554471983155963e-01 4.8755575017222624e-01 -1.2591851607058537e+01 1.2607956298290325e+01 1.3957000000000000e-01 1 0 0 0 0 P 101 313 -2.7509880964698280e-02 -4.0663952030180289e-01 -4.3936450704745784e+00 4.5023486881603016e+00 8.9493810481577130e-01 2 0 0 -49 0 P 102 3224 -9.2672852486645571e-02 6.5585209965268648e-02 -4.0204721714874072e+00 4.2506978129614730e+00 1.3752620615928364e+00 2 0 0 -50 0 P 103 -3224 3.3909533539442915e-01 3.1246322967426809e-01 -4.3825925655100573e+00 4.6089362027682723e+00 1.3500208922602861e+00 2 0 0 -51 0 P 104 -313 2.9239998644659210e-01 4.7617792020952156e-02 -2.8607764941309388e+00 3.0128119422957576e+00 8.9734522012261986e-01 2 0 0 -52 0 P 105 -211 3.3114193757278626e-01 4.8736178797093938e-01 -6.8654531220075832e-01 9.1542380665925804e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 213 -6.5980063614748952e-01 -2.7824199752659268e-01 -8.6444920386959794e+00 8.7073410305708592e+00 7.6012481010450028e-01 2 0 0 -53 0 P 107 -211 6.7548772052830464e-01 2.8279401240234431e-01 -2.3109875521773585e+01 2.3121896170747007e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 -3.8123255767312253e-01 -3.0685043734591605e-01 -1.1953401963161754e+01 1.2004205412817816e+01 9.8875358218105502e-01 2 0 0 -54 0 P 109 331 1.4931133481974440e-01 -1.1268304079557502e-01 -9.9766292699747137e+00 1.0024233320468472e+01 9.5766942641267616e-01 2 0 0 -55 0 P 110 221 1.9001747233615021e-01 1.1235252860039266e-01 -1.1311205093270679e+01 1.1326596659853676e+01 5.4744999999999999e-01 2 0 0 -56 0 P 111 3122 -1.6531213545598181e-02 1.7941481008998922e-01 -9.7845632368603006e+01 9.7852158782672305e+01 1.1156800000000000e+00 2 0 0 -57 0 P 112 -3212 2.1512032592093658e-01 -4.9536064251785050e-01 -8.8021694916783730e+01 8.8031429673989905e+01 1.1925500000000000e+00 2 0 0 -58 0 P 113 213 -3.0271802830700351e-01 -1.8199115940732644e-01 -9.3693985986604460e+01 9.3696228323527890e+01 5.4353749629009396e-01 2 0 0 -59 0 P 114 -213 -1.4424928218799363e-01 8.0356077501503209e-01 -1.5775355144448991e+02 1.5775717774879575e+02 6.9110067374553441e-01 2 0 0 -60 0 P 115 111 1.7128022450432756e-01 -3.6555194441179756e-01 -8.1007288706637596e+01 8.1008407022606633e+01 1.3497999999999999e-01 2 0 0 -61 0 P 116 111 1.5788168370261174e-02 -4.8321618446635503e-02 -1.0310912881680434e+01 1.0311921658889448e+01 1.3497999999999999e-01 2 0 0 -62 0 P 117 213 1.9689425293322910e-01 -1.5224892223532024e-01 -6.4658169287785782e+01 6.4660495121341583e+01 4.8869889289292329e-01 2 0 0 -63 0 P 118 -211 -7.1825664261600375e-01 -2.9746020738896345e-01 -7.9981103969115236e+02 7.9981142969252869e+02 1.3957000000000000e-01 1 0 0 0 0 P 119 211 -7.0721336506262444e-02 7.1538494473250414e-01 -1.9344004753605057e+02 1.9344143363731823e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2112 -9.2559101045397996e-01 2.0797149321907010e-01 -4.4406806478088056e+03 4.4406808485395886e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 121 92 2.9874720503971322e+00 1.9223572236693229e+00 1.4048773091264587e+02 1.6069923890952060e+02 7.7941147044214631e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 23 0 P 122 321 -1.9596084643502856e+00 -3.0602237549375295e+00 9.0339720928884173e+00 9.7499398715542842e+00 4.9359999999999998e-01 1 0 0 0 0 P 123 111 -2.1221753418868241e+00 -3.0794768752118356e+00 9.7608878684791733e+00 1.0453705447739610e+01 1.3497999999999999e-01 2 0 0 -64 0 P 124 -213 -5.8801121921525645e+00 -8.8594710964628405e+00 3.2017570968426774e+01 3.3747254672951620e+01 8.2849245105086544e-01 2 0 0 -65 0 P 125 213 -1.1405902431970816e+00 -2.4992193557709950e+00 2.1111220865463821e+01 2.1310746560358947e+01 9.5772075174289650e-01 2 0 0 -66 0 P 126 -211 -5.9892796811931859e-01 2.1874519221366373e-01 6.1395360304544235e+00 6.1741352936472156e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 213 -4.5559783483989907e-01 -3.2530999344707040e-01 6.7553426559176861e+00 6.8289650272447275e+00 8.2868146203666626e-01 2 0 0 -67 0 P 128 113 -5.7440792125096041e-01 -1.3510713832725041e+00 1.4285720978915283e+01 1.4384112737546413e+01 8.1580452090620947e-01 2 0 0 -68 0 P 129 -323 1.3411301224220290e-01 5.6031818823388205e-03 2.7919730682451793e+00 2.9745260344901774e+00 1.0171891762860905e+00 2 0 0 -69 0 P 130 313 1.2324498805479818e+00 3.7849258064035401e-01 4.8207774900212632e+00 5.0746247963754492e+00 9.2180902253684249e-01 2 0 0 -70 0 P 131 211 1.6120206802060957e-01 -7.1135203600750430e-02 1.1811311498599026e+00 1.2023297808816087e+00 1.3957000000000000e-01 1 0 0 0 0 P 132 223 1.2785603990255554e+00 8.1470418811002865e-01 4.2252255004056352e+00 4.5561557209133206e+00 7.7946444168590967e-01 2 0 0 -71 0 P 133 113 1.2567864011156424e+00 4.7197901755798238e-01 3.3548075691944046e+00 3.6963380307328726e+00 7.7839884382872360e-01 2 0 0 -72 0 P 134 -213 1.5702635608886917e+00 6.2797790528091013e-01 3.9810681837186714e+00 4.3848941954086769e+00 7.1993702595142928e-01 2 0 0 -73 0 P 135 -313 2.9950025276104766e+00 1.4295147405663253e+00 7.2274828460366631e+00 8.0017007909111246e+00 8.8156379441532173e-01 2 0 0 -74 0 P 136 311 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -75 0 P 137 213 1.6729071976051537e+00 8.5620849094171136e-01 3.0695739662043788e+00 3.7282048788027744e+00 9.7237637392591791e-01 2 0 0 -76 0 P 138 -2212 5.6456212520249682e-01 1.0007903273826917e+00 2.0028501160208223e+00 2.4924026265313830e+00 9.3827000000000005e-01 1 0 0 0 0 P 139 -213 9.5986336228977864e-01 4.5552201652155105e-01 6.3324037919285980e-01 1.4469243010152428e+00 7.5083858000640402e-01 2 0 0 -77 0 P 140 2224 -7.8524718047965902e-02 1.4537681742328321e+00 2.1735353569266671e+00 2.8439842589241842e+00 1.1155189292169956e+00 2 0 0 -78 0 P 141 -213 4.3109300650004678e-01 9.7089208546243078e-01 9.3226226300081128e-01 1.6345673268370955e+00 8.2111192725543636e-01 2 0 0 -79 0 P 142 223 8.4775152594623793e-01 6.9685656413280006e-01 5.1616019999694440e-01 1.4417240686217714e+00 7.7965070208605758e-01 2 0 0 -80 0 P 143 213 -6.9411667715650036e-02 8.6435598231357802e-01 -4.6980410204834594e-02 1.0258343082727188e+00 5.4607657458456793e-01 2 0 0 -81 0 P 144 423 1.9798114286895228e+00 1.0463034435943911e+01 2.2730832830925096e+00 1.1071968903622894e+01 2.0066999999999999e+00 2 0 0 -82 0 V -17 0 -1.9844667492655856e+00 -5.1901213251491485e-01 6.3554592233402145e+00 7.3216415613673087e+00 0 2 0 P 145 2212 -5.6405112594990248e-01 -8.2328990329775781e-02 1.8320933095166183e+00 2.1358483614268189e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -211 -1.7366825112645196e-01 -1.1061216488770119e-01 5.3052900250340351e-01 5.8594924683603844e-01 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 147 211 -1.2405291990440502e-01 1.5180733255592282e-01 9.8520447119075288e-02 2.6003972111024848e-01 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 -4.6243788247848655e-01 -5.2068036913968629e-01 1.4559567172591938e+00 1.6199526503545698e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 149 211 -1.6401757664718711e-01 -1.6181441769908414e-01 1.0378249140804121e+00 1.0722154673434461e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 111 3.7605568135484441e-01 1.8277255147829538e-01 5.7136475227701213e+00 5.7305157966722584e+00 1.3497999999999999e-01 2 0 0 -83 0 V -20 0 -2.1337750193070739e-05 2.1979230023625941e-05 2.7883875537992317e-04 2.8065038049059407e-04 0 2 0 P 151 22 -2.0299074029907288e-01 2.6252242577301055e-01 2.4946979827878186e+00 2.5166726624665596e+00 0 1 0 0 0 0 P 152 22 -1.2914350593857957e-01 7.9596819729807991e-02 1.8455862084682444e+00 1.8518105064302333e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 1 0 P 153 310 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -84 0 V -22 0 0 0 0 0 0 1 0 P 154 310 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -85 0 V -23 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 3 0 P 155 333 2.3005001914978035e-01 -1.8891038012288625e-01 -8.2469504198468382e+00 8.3158471983839330e+00 1.0259206872019917e+00 2 0 0 -86 0 P 156 -211 6.7707841467988750e-01 -6.3633879806255356e-01 -5.9907253670076601e+00 6.0639617786851350e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 111 2.6174363054109889e-01 8.0118897336403663e-02 -2.6289687122787009e+00 2.6466251824502018e+00 1.3497999999999999e-01 2 0 0 -87 0 V -24 0 0 0 0 0 0 2 0 P 158 211 2.6553185864339701e-01 3.5264117770652248e-01 -5.3710811805618999e+00 5.3909976628871830e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 111 1.0917202325377394e-01 -2.4243836249403924e-01 -1.0080461856795997e+01 1.0084871131402181e+01 1.3497999999999999e-01 2 0 0 -88 0 V -25 0 0 0 0 0 0 2 0 P 160 -211 -2.4426207882457773e-01 2.0745765263264787e-01 -5.5682657854634128e+00 5.5792263158300033e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 111 3.2476693733771218e-02 1.8294315212863976e-01 -2.0352287163457397e+01 2.0353582861913512e+01 1.3497999999999999e-01 2 0 0 -89 0 V -26 0 0 0 0 0 0 2 0 P 162 -2212 6.7891220695115995e-01 -2.6938319910007968e-01 -2.5439516053421304e+01 2.5467289151338523e+01 9.3827000000000005e-01 1 0 0 0 0 P 163 -211 -3.9309664545499771e-02 2.2555222339993028e-01 -8.2571807542698359e+00 8.2615333231060397e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 -1.7545294729911774e-05 -3.3525235594481608e-05 -6.2344953883797553e-04 6.2646373910703974e-04 0 2 0 P 164 22 -1.3943100255850547e-02 3.3588080481148697e-02 -2.5646016790007836e-01 2.5902584217504093e-01 0 1 0 0 0 0 P 165 22 -3.5059668338424207e-02 -1.2722169491705657e-01 -1.4847903469630739e+00 1.4906431210844178e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 166 211 1.1741752767951077e-01 5.9244901067751467e-02 -2.4668746433273466e+01 2.4669491831169758e+01 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -8.7929333228065698e-01 7.9988611198958082e-01 -9.8987449870979589e+01 9.8994678776772872e+01 1.3497999999999999e-01 2 0 0 -90 0 V -29 0 0 0 0 0 0 3 0 P 168 211 -6.7504817019198513e-02 2.1432555030263287e-02 -4.1979376582973444e+01 4.1979668344744397e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 -211 4.4469542840321237e-02 -6.9910430478048916e-02 -1.2780395423055235e+02 1.2780405729771864e+02 1.3957000000000000e-01 1 0 0 0 0 P 170 221 1.6963927949529032e-02 2.7910085189436401e-01 -2.3577555222313160e+02 2.3577635359103664e+02 5.4744999999999999e-01 2 0 0 -91 0 V -30 0 0 0 0 0 0 2 0 P 171 -211 8.6386022358688364e-01 -7.0654186651049333e-02 7.4701973770997915e+02 7.4702025357721789e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 111 1.3098922531014681e-02 -5.9909752343464469e-02 2.7515729428691831e+01 2.7516128840256126e+01 1.3497999999999999e-01 2 0 0 -92 0 V -31 0 0 0 0 0 0 2 0 P 173 22 1.6926641057211625e-01 3.6123228903412097e-01 3.7191796379176452e+02 3.7191817773657777e+02 0 1 0 0 0 0 P 174 111 3.1368606162089585e-01 -3.8116407254366264e-01 6.1860727441748043e+02 6.1860748610635142e+02 1.3497999999999999e-01 2 0 0 -93 0 V -32 0 5.6436604519175483e-07 1.6280330993721719e-07 4.6485077123992365e-04 4.6485117693795790e-04 0 2 0 P 175 22 3.8185582995770503e-02 2.3989543116426159e-02 1.5021587931467392e+01 1.5021655621792634e+01 0 1 0 0 0 0 P 176 22 3.8657404609546286e-01 9.8541346423998935e-02 3.3483971725665060e+02 3.3483995490742092e+02 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 177 211 1.7502709826283822e-01 -7.2253309396830834e-02 1.9461599680901642e+01 1.9463021269844411e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 7.6679618148417103e-02 1.5178037043949286e-01 2.0653328151497104e+02 2.0653339867966116e+02 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 179 211 1.6296883721185318e-01 5.6243079477968649e-01 8.2798181701248907e+00 8.3016718771611888e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -3.0346790935347329e-01 -1.8757485659103824e-02 3.3896571054307092e+00 3.4059417945808343e+00 1.3497999999999999e-01 2 0 0 -94 0 V -35 0 0 0 0 0 0 3 0 P 181 -211 1.9357415831584032e-01 5.5271447718090408e-02 3.1876873772349965e+00 3.1970856240619940e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 5.3124449692864362e-01 -7.7979213723395127e-02 5.6103361119600752e+00 5.6376992246264059e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 111 9.1515323729524131e-02 -6.3060342559535007e-02 4.6102441180354975e-01 4.9306669930127561e-01 1.3497999999999999e-01 2 0 0 -95 0 V -36 0 5.6399558106351325e-04 -2.3323778348715264e-04 4.3201567705729998e-03 4.3637833118717051e-03 0 2 0 P 184 22 6.0152711440246365e-01 -2.5407154692728640e-01 4.1453379317665098e+00 4.1964525243187989e+00 0 1 0 0 0 0 P 185 22 3.5310786323411864e-01 -1.4071336575483961e-01 3.1670824143036311e+00 3.1898113476146417e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 186 -211 1.1414130684189257e-01 2.6467084943073615e-01 6.4809866664659299e-01 7.2290425581473383e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 3.2712363280611384e-01 -4.7470383007830586e-01 2.4134463527893710e+00 2.4850143853957061e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -9.2152121994269624e-06 -1.1231324079235629e-04 2.5230505635093632e-04 2.8155770027142357e-04 0 2 0 P 188 22 4.4312363323561511e-02 -1.4226542374713172e-01 3.9594711711123376e-01 4.2305691802163847e-01 0 1 0 0 0 0 P 189 22 -6.7340218214903366e-02 -1.3839365988238528e-01 2.3453692387075067e-01 2.8052643145277134e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 190 211 4.0322473881604282e-01 6.3687839440575356e-01 5.4420540727985800e-01 9.4012955993668912e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 -1.7679511559657388e-01 1.0152183517950436e-02 2.6365183842505979e-01 3.4509632283451225e-01 1.3497999999999999e-01 2 0 0 -97 0 V -40 0 -1.1498802596763853e-04 6.7247069570746382e-05 3.2390857047193844e-04 3.5247329205758586e-04 0 2 0 P 192 22 -3.9541540899512673e-01 2.0790443889794896e-01 1.0051908558896452e+00 1.0999937536860889e+00 0 1 0 0 0 0 P 193 22 4.4753569250014945e-03 2.0724347954602883e-02 9.6044097407988055e-02 9.8356474442024944e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 194 -311 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -98 0 P 195 -211 -1.3776347211087997e-01 1.0257146128803515e-02 -1.9611982330692460e-01 2.7753694040378146e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 196 22 1.1928310723212228e-01 6.2424229046454179e-02 9.2406209769038995e-03 1.3494677883904066e-01 0 1 0 0 0 0 P 197 223 2.6680188424009266e-01 -6.8544172761614486e-01 5.2836400399609018e-03 1.0714883388311411e+00 7.7913139842235690e-01 2 0 0 -99 0 V -43 0 0 0 0 0 0 2 0 P 198 -211 1.1668201970610442e-01 -4.4466239966254167e-01 -9.0124037193265960e-01 1.0212998268371851e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -5.3976672328233366e-01 2.6701847245365407e-01 -5.9095888661832063e-01 8.5519539917354281e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 200 -211 -2.8285333140334207e-01 -1.2677482532142470e-01 2.5528442376328292e-01 4.2512090672818953e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 2.2362464054382813e-01 -2.3418634369213437e-01 -2.5021636808046721e-01 4.3090492534389380e-01 1.3497999999999999e-01 2 0 0 -100 0 V -45 0 0 0 0 0 0 3 0 P 202 -211 1.9376355805150766e-01 -3.8720878823476292e-03 -1.4890898146180365e+00 1.5081205423945816e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 211 9.0701539973870052e-02 -4.3171555039072046e-01 -4.4139722644893755e+00 4.4381568271506877e+00 1.3957000000000000e-01 1 0 0 0 0 P 204 111 1.6072866893977533e-01 6.9591842500069612e-02 -3.4550438170052566e+00 3.4621126653227159e+00 1.3497999999999999e-01 2 0 0 -101 0 V -46 0 0 0 0 0 0 2 0 P 205 211 3.1601308074546486e-01 8.1951041368575422e-02 -4.1020722236496665e+00 4.1174089611455589e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 -6.1522180745835209e-02 -6.0733684688208867e-01 -1.1888799490248854e+01 1.1905226412968625e+01 1.3497999999999999e-01 2 0 0 -102 0 V -47 0 0 0 0 0 0 2 0 P 207 22 1.3142818429080874e-01 -6.7188657540822996e-02 -5.0545426544338246e-01 5.2656594818030733e-01 0 1 0 0 0 0 P 208 22 -1.8553205495941319e-01 -1.1952908483987112e-01 -6.2258611519030262e+00 6.2297717797938148e+00 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 209 211 1.1527824663344002e-01 1.7618369235062545e-01 -4.4313150484662591e+00 4.4385090527406499e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 111 2.0735859074215474e-01 -5.6928542602508403e-01 -2.5949666847364426e+01 2.5957089832472430e+01 1.3497999999999999e-01 2 0 0 -103 0 V -49 0 0 0 0 0 0 2 0 P 211 321 -1.8049013031365618e-01 -1.0298015469208779e-01 -3.4192346740575754e+00 3.4609230438827532e+00 4.9359999999999998e-01 1 0 0 0 0 P 212 -211 1.5298024934895790e-01 -3.0365936560971507e-01 -9.7441039641700233e-01 1.0414256442775469e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 213 3122 4.1566977743454060e-02 -9.0669325462081497e-03 -2.8301295872369461e+00 3.0423979630972817e+00 1.1156800000000000e+00 2 0 0 -104 0 P 214 211 -1.3423983023009964e-01 7.4652142511476796e-02 -1.1903425842504611e+00 1.2082998498641908e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 215 -3122 1.4644010092526616e-01 2.9462648835286787e-01 -3.9129095753338130e+00 4.0821382482636706e+00 1.1156800000000000e+00 2 0 0 -105 0 P 216 -211 1.9265523446916299e-01 1.7836741321400194e-02 -4.6968299017624388e-01 5.2679795450460165e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 217 -311 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -106 0 P 218 111 -1.4885300802435425e-01 -1.4978228857165021e-01 -8.0617713874096109e-01 8.4423523463322847e-01 1.3497999999999999e-01 2 0 0 -107 0 V -53 0 0 0 0 0 0 2 0 P 219 211 -2.5375029447482039e-01 -3.8243313097061077e-01 -2.4079874229302018e+00 2.4553059942703834e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 111 -4.0605034167266918e-01 1.0419113344401808e-01 -6.2365046157657771e+00 6.2520350363004749e+00 1.3497999999999999e-01 2 0 0 -108 0 V -54 0 0 0 0 0 0 2 0 P 221 211 -6.8803944468509970e-01 -3.0625630690087424e-01 -8.1868653584578439e+00 8.2226173074864803e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 3.0680688701197723e-01 -5.9413044504183564e-04 -3.7665366047039095e+00 3.7815881053313332e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 223 22 1.4803887835073931e-01 1.4431039886464253e-01 -3.9233262621300380e+00 3.9287695223623227e+00 0 1 0 0 0 0 P 224 113 1.2724564690050806e-03 -2.5699343966021754e-01 -6.0533030078446757e+00 6.0954637981061488e+00 6.6794787376515263e-01 2 0 0 -109 0 V -56 0 0 0 0 0 0 2 0 P 225 22 2.7486911490570909e-01 2.4665741492151072e-01 -5.0974148933587955e+00 5.1107760179546959e+00 0 1 0 0 0 0 P 226 22 -8.4851642569558877e-02 -1.3430488632111803e-01 -6.2137901999118847e+00 6.2158206418989801e+00 0 1 0 0 0 0 V -57 0 -5.1384144154367772e-01 5.5767693277105579e+00 -3.0413460358706184e+03 3.0415488970824849e+03 0 2 0 P 227 2212 -5.5781591737588045e-02 1.8546033000560758e-01 -7.5892828715246239e+01 7.5898875539197462e+01 9.3827000000000005e-01 1 0 0 0 0 P 228 -211 3.9250378191989864e-02 -6.0455199156183590e-03 -2.1952803653356771e+01 2.1953283243474850e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 229 -3122 1.5817021808919415e-01 -4.6711831736620663e-01 -7.8043803566704312e+01 7.8053335831090763e+01 1.1156800000000000e+00 2 0 0 -110 0 P 230 22 5.6950107831742425e-02 -2.8242325151643891e-02 -9.9778913500794122e+00 9.9780938428991330e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 231 211 -2.2057048299308663e-01 1.2058414904337308e-01 -3.1752686671178758e+01 3.1753988450239152e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -8.2147545313916867e-02 -3.0257530845069952e-01 -6.1941299315425702e+01 6.1942239873288742e+01 1.3497999999999999e-01 2 0 0 -111 0 V -60 0 0 0 0 0 0 2 0 P 233 -211 -7.4626039256974197e-02 5.5212060759843820e-02 -7.2841457685032779e+01 7.2841650550236082e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -6.9623242931019416e-02 7.4834871425518823e-01 -8.4912093759457122e+01 8.4915527198559630e+01 1.3497999999999999e-01 2 0 0 -112 0 V -61 0 3.7095050924952572e-05 -7.9169489839899478e-05 -1.7544170721174722e-02 1.7544412920692747e-02 0 2 0 P 235 22 1.3051674595057553e-02 -1.0381379811796879e-02 -7.9006772465227870e-01 7.9024371480813493e-01 0 1 0 0 0 0 P 236 22 1.5822854990927002e-01 -3.5517056460000063e-01 -8.0217220981985307e+01 8.0218163307798491e+01 0 1 0 0 0 0 V -62 0 1.5640011215518141e-06 -4.7868165371285921e-06 -1.0214154633381629e-03 1.0215153944162522e-03 0 2 0 P 237 22 6.9792978338652722e-02 -1.5039179832264731e-02 -7.2497788692693597e+00 7.2501304050382371e+00 0 1 0 0 0 0 P 238 22 -5.4004809968391555e-02 -3.3282438614370767e-02 -3.0611340124110744e+00 3.0617912538512102e+00 0 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 239 211 -1.0358361896008007e-01 -4.6590364867594776e-02 -3.1691643432288359e+01 3.1692154288599902e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 3.0047787189330916e-01 -1.0565855736772548e-01 -3.2966525855497423e+01 3.2968340832741681e+01 1.3497999999999999e-01 2 0 0 -113 0 V -64 0 -5.1181826233904744e-04 -7.4269664342761776e-04 2.3540942018907534e-03 2.5211853382997506e-03 0 2 0 P 241 22 -5.8725538308890379e-01 -9.5414217075973340e-01 2.8620591107837323e+00 3.0735384364945171e+00 0 1 0 0 0 0 P 242 22 -1.5349199587979205e+00 -2.1253347044521020e+00 6.8988287576954406e+00 7.3801670112450930e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 243 -211 -4.1839656186445389e+00 -5.7883022373468282e+00 2.0736168567910838e+01 2.1932126612587918e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -1.6961465735080259e+00 -3.0711688591160131e+00 1.1281402400515939e+01 1.1815128060363703e+01 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 2 0 P 245 211 -7.9207809269603291e-01 -2.3846094897531902e+00 1.8521407113532455e+01 1.8691595741767490e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -3.4851215050104867e-01 -1.1460986601780454e-01 2.5898137519313642e+00 2.6191508185914563e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 247 211 -4.5509931606842358e-01 -3.3463298989938156e-01 2.3300753748670862e+00 2.4016297930524053e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 -4.9851877147551659e-04 9.3229964523111226e-03 4.4252672810506004e+00 4.4273352341923227e+00 1.3497999999999999e-01 2 0 0 -116 0 V -68 0 0 0 0 0 0 2 0 P 249 211 1.2633607542023662e-01 -4.9385416405376997e-02 1.6813651929675688e+00 1.6925922191505520e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -7.0074399667119702e-01 -1.3016859668671270e+00 1.2604355785947714e+01 1.2691520518395860e+01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 251 -321 -1.2669965574403158e-01 -3.0792559741866704e-01 1.6866098932232190e+00 1.7886209403419544e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 111 2.6081266798623448e-01 3.1352877930100587e-01 1.1053631750219604e+00 1.1859050941482230e+00 1.3497999999999999e-01 2 0 0 -117 0 V -70 0 0 0 0 0 0 2 0 P 253 321 7.1130158276548627e-01 3.9730596402338592e-01 2.1769947433776453e+00 2.3762889225401733e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 5.2114829778249550e-01 -1.8813383383031970e-02 2.6437827466436179e+00 2.6983358738352758e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 255 -211 8.5658487028361097e-01 4.6170671721684930e-01 2.1597437012294618e+00 2.3729482448258929e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 211 1.8317520616048497e-01 2.8065561972304365e-01 6.9972896405861429e-01 7.8830269635248829e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 2.3880032258145939e-01 7.2341851170135779e-02 1.3657528351175596e+00 1.3949047797349405e+00 1.3497999999999999e-01 2 0 0 -118 0 V -72 0 0 0 0 0 0 2 0 P 258 -211 1.2763369501819466e+00 4.7616414147585207e-01 2.7105047171436283e+00 3.0367884197923716e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 211 -1.9550549066303984e-02 -4.1851239178697201e-03 6.4430285205077642e-01 6.5954961094050124e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 260 -211 1.4406480739443299e+00 5.7294582521730630e-01 3.8418712804254009e+00 4.1452609702949896e+00 1.3957000000000000e-01 1 0 0 0 0 P 261 111 1.2961548694436184e-01 5.5032080063603842e-02 1.3919690329327078e-01 2.3963322511368726e-01 1.3497999999999999e-01 2 0 0 -119 0 V -74 0 0 0 0 0 0 2 0 P 262 -321 2.3467978243028602e+00 8.7581671916669590e-01 5.0381757927884312e+00 5.6481298880925079e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 211 6.4820470330761637e-01 5.5369802139962943e-01 2.1893070532482319e+00 2.3535709028186163e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 264 310 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -120 0 V -76 0 0 0 0 0 0 2 0 P 265 211 1.9538542758906119e-01 2.1777184809530614e-01 1.2671323496382063e+00 1.3079389204151113e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.4775217700160925e+00 6.3843664284640522e-01 1.8024416165661723e+00 2.4202659583876627e+00 1.3497999999999999e-01 2 0 0 -121 0 V -77 0 0 0 0 0 0 2 0 P 267 -211 1.2488741767569310e-01 3.8090232697473647e-01 3.5516549082212417e-01 5.5344896834251345e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 8.3497594461408564e-01 7.4619689546814610e-02 2.7807488837073568e-01 8.9347533267272949e-01 1.3497999999999999e-01 2 0 0 -122 0 V -78 0 0 0 0 0 0 2 0 P 269 2212 -9.2232292670682794e-02 1.1379748418494542e+00 1.6324744945112593e+00 2.2020029756163755e+00 9.3827000000000005e-01 1 0 0 0 0 P 270 211 1.3707574622716890e-02 3.1579333238337798e-01 5.4106086241540785e-01 6.4198128330780868e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 271 -211 -2.0630679887456405e-01 4.2374710124254417e-01 3.2449594031169304e-01 5.8898344734983732e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 6.3739980537461083e-01 5.4714498421988667e-01 6.0776632268911834e-01 1.0455838794872583e+00 1.3497999999999999e-01 2 0 0 -123 0 V -80 0 0 0 0 0 0 3 0 P 273 -211 1.5334866236891118e-01 4.5158223115453339e-01 2.8003428162375815e-01 5.7038698050479297e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 4.0722086739074048e-01 2.6508251451934939e-01 6.3393595605261185e-02 5.0950574796181791e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 2.8718199618658619e-01 -1.9808181541082735e-02 1.7273232276792508e-01 3.6183134015516061e-01 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 2 0 P 276 211 2.0154978183196928e-01 4.3429865194117984e-01 -1.4862327560746878e-02 4.9893717772377255e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -2.7096144954761930e-01 4.3005733037239829e-01 -3.2118082644087727e-02 5.2689713054894660e-01 1.3497999999999999e-01 2 0 0 -125 0 V -82 0 0 0 0 0 0 2 0 P 278 421 1.9143744857938487e+00 9.9772993986181735e+00 2.0368651444011325e+00 1.0527892136035650e+01 1.8645000000000000e+00 2 0 0 -126 0 P 279 22 6.5436942895674158e-02 4.8573503732573614e-01 2.3621813869137712e-01 5.4407676758724466e-01 0 1 0 0 0 0 V -83 0 9.3158625679084489e-05 4.5277443080327440e-05 1.4154168577331435e-03 1.4195955612927864e-03 0 2 0 P 280 22 6.0133077554468027e-02 8.1120094621999247e-02 9.5951376230901608e-01 9.6481247754579591e-01 0 1 0 0 0 0 P 281 22 3.1592260380037640e-01 1.0165245685629615e-01 4.7541337604611051e+00 4.7657033191264624e+00 0 1 0 0 0 0 V -84 0 2.3194919718120641e+01 9.0320585302742025e+00 1.9472780077286959e+03 1.9475633034498369e+03 0 2 0 P 282 -211 3.2899014348052175e-01 2.5432521102866373e-01 1.8344247268080039e+01 1.8349490550008031e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 211 1.9163934301953689e-01 -5.1593058824597436e-02 2.5364045821834221e+01 2.5365206242380879e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -1.8278419990207519e+02 -4.0449265532861070e+01 1.0015066615449587e+04 1.0017227546588516e+04 0 2 0 P 284 211 -8.6303227058914667e-01 -6.9112908356443833e-02 4.6000283128253848e+01 4.6008641894307154e+01 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 -1.3894645869463809e-01 -1.5262017196883429e-01 8.8998872716861932e+00 8.9033742069452231e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 2 0 P 286 321 9.3860133353128899e-02 -9.0077769540969452e-02 -3.0078943519050432e+00 3.0509003788096396e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -321 1.3618988579665145e-01 -9.8832610581916808e-02 -5.2390560679417950e+00 5.2649468195742948e+00 4.9359999999999998e-01 1 0 0 0 0 V -87 0 2.1932548233008348e-01 -1.3976113890248107e-01 -3.1645818630019038e+00 3.1945606003544724e+00 0 2 0 P 288 22 6.9273239458605015e-02 2.1583735867047225e-02 -2.8692066721167769e-01 2.9595288245303841e-01 0 1 0 0 0 0 P 289 22 1.9247039108249386e-01 5.8535161469356438e-02 -2.3420480450670231e+00 2.3506722999971634e+00 0 1 0 0 0 0 V -88 0 4.7888732563644145e-05 -1.0634653053609607e-04 -4.4218337957882582e-03 4.4237679412416622e-03 0 2 0 P 290 22 1.1627593184832767e-01 -2.5688553754755078e-01 -9.4705633195358434e+00 9.4747601479439059e+00 0 1 0 0 0 0 P 291 22 -7.1039085945537291e-03 1.4447175053511545e-02 -6.0989853726015519e-01 6.1011098345827497e-01 0 1 0 0 0 0 V -89 0 2.7989665861191741e-06 1.5766745659670319e-05 -1.7540385172393157e-03 1.7541501855240888e-03 0 2 0 P 292 22 -2.4564334390896319e-02 1.2586614939719518e-01 -1.6225936999026789e+01 1.6226443762897485e+01 0 1 0 0 0 0 P 293 22 5.7041028124667534e-02 5.7077002731444601e-02 -4.1263501644306082e+00 4.1271390990160279e+00 0 1 0 0 0 0 V -90 0 -1.6659800060248923e-04 1.5155286873553658e-04 -1.8754959952295668e-02 1.8756329599042085e-02 0 2 0 P 294 22 -7.3974616708617480e-01 6.0254421213368348e-01 -8.0148472874392638e+01 8.0154151408498777e+01 0 1 0 0 0 0 P 295 22 -1.3954716519448215e-01 1.9734189985589731e-01 -1.8838976996586958e+01 1.8840527368274092e+01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 296 211 2.0476936133392874e-02 9.1316000922192136e-02 -1.0448603186185416e+02 1.0448616698844991e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 -211 -1.9264491139159019e-02 2.5079280640141448e-05 -2.3844985149394361e+01 2.3845401394838909e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.5751482955295177e-02 1.8775977169153174e-01 -1.0744453521188308e+02 1.0744478520774781e+02 1.3497999999999999e-01 2 0 0 -127 0 V -92 0 1.8997502130095858e-06 -8.6887730274279145e-06 3.9906345517734896e-03 3.9906924788436415e-03 0 2 0 P 299 22 -5.9917957432297005e-02 -4.1537240124929473e-02 1.3919329915478281e+01 1.3919520853817806e+01 0 1 0 0 0 0 P 300 22 7.3016879963311687e-02 -1.8372512218535003e-02 1.3596399513213550e+01 1.3596607986438331e+01 0 1 0 0 0 0 V -93 0 6.4369338304830161e-05 -7.8216032323622550e-05 1.2694010285012669e-01 1.2694014628932984e-01 0 2 0 P 301 22 1.5868264013653646e-01 -1.2420659115557327e-01 1.9071826028136354e+02 1.9071836674061441e+02 0 1 0 0 0 0 P 302 22 1.5500342148435939e-01 -2.5695748138808933e-01 4.2788901413611688e+02 4.2788911936573703e+02 0 1 0 0 0 0 V -94 0 -1.1974657226291926e-04 -7.4015885789501519e-06 1.3375378648329906e-03 1.3439637031044875e-03 0 2 0 P 303 22 -2.5535126102248640e-01 -5.4301076686487849e-02 2.3261202389401259e+00 2.3407238708232878e+00 0 1 0 0 0 0 P 304 22 -4.8116648330986854e-02 3.5543591027384025e-02 1.0635368664905835e+00 1.0652179237575472e+00 0 1 0 0 0 0 V -95 0 8.3865667897269084e-06 -5.7789204376488588e-06 4.2248793575951405e-05 4.5185184698705130e-05 0 2 0 P 305 22 -7.4386887816514299e-03 1.7096912439986470e-02 2.1711601026946792e-01 2.1791512205696625e-01 0 1 0 0 0 0 P 306 22 9.8954012511175554e-02 -8.0157254999521477e-02 2.4390840153408183e-01 2.7515157724430922e-01 0 1 0 0 0 0 V -96 0 1.9704238135533929e-04 -2.8593707007579293e-04 1.4537354349718756e-03 1.4968443215194493e-03 0 2 0 P 307 22 1.0883558779781551e-01 -8.7138402176381469e-02 4.1970802411082808e-01 4.4225910031130433e-01 0 1 0 0 0 0 P 308 22 2.1828804500829832e-01 -3.8756542790192439e-01 1.9937383286785431e+00 2.0427552850844024e+00 0 1 0 0 0 0 V -97 0 -2.2019531221933132e-05 1.2644372056884850e-06 3.2837388455731629e-05 4.2981160591385249e-05 0 2 0 P 309 22 -1.9271554372318800e-01 -1.4442293172495155e-02 2.3252199710018881e-01 3.0234804408175781e-01 0 1 0 0 0 0 P 310 22 1.5920428126614140e-02 2.4594476690445590e-02 3.1129841324870962e-02 4.2748278752754561e-02 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 311 310 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -128 0 V -99 0 0 0 0 0 0 3 0 P 312 -211 3.3708344961490527e-02 -3.8195038478618437e-01 1.8532978879020140e-01 4.4816209620111541e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 211 -5.3442209570627876e-02 -2.2146634310668603e-01 -1.0876039161808590e-01 2.8846493474555740e-01 1.3957000000000000e-01 1 0 0 0 0 P 314 111 2.8653574884923000e-01 -8.2024999723274442e-02 -7.1285757132154612e-02 3.3486130788446838e-01 1.3497999999999999e-01 2 0 0 -129 0 V -100 0 8.3231665057211033e-05 -8.7162663612360094e-05 -9.3128936459144842e-05 1.6038006514177639e-04 0 2 0 P 315 22 -5.1661193948099992e-03 -2.4810046140043979e-02 8.8078615708871242e-03 2.6829193139646452e-02 0 1 0 0 0 0 P 316 22 2.2879075993863815e-01 -2.0937629755209039e-01 -2.5902422965135435e-01 4.0407573220424731e-01 0 1 0 0 0 0 V -101 0 4.9023823157233946e-05 2.1226195690003698e-05 -1.0538223093779641e-03 1.0559783775649671e-03 0 2 0 P 317 22 1.6469980756415120e-02 6.1084307068275619e-02 -1.6820717405300594e+00 1.6832610888171657e+00 0 1 0 0 0 0 P 318 22 1.4425868818336021e-01 8.5075354317939913e-03 -1.7729720764751975e+00 1.7788515765055497e+00 0 1 0 0 0 0 V -102 0 -1.0248114430443839e-05 -1.0116769966893501e-04 -1.9803878233773521e-03 1.9831241532949758e-03 0 2 0 P 319 22 -5.1903991300502862e-02 -6.1200428464747358e-01 -1.1631967535653756e+01 1.1648172046258704e+01 0 1 0 0 0 0 P 320 22 -9.6181894453323483e-03 4.6674377653848969e-03 -2.5683195459509767e-01 2.5705436670992060e-01 0 1 0 0 0 0 V -103 0 8.8741246029353963e-05 -2.4363156535258678e-04 -1.1105427375059752e-02 1.1108604118040998e-02 0 2 0 P 321 22 4.7274198055564369e-02 -9.7976794113359938e-02 -2.8800431704285150e+00 2.8820969736493010e+00 0 1 0 0 0 0 P 322 22 1.6008439268659036e-01 -4.7130863191172406e-01 -2.3069623676935912e+01 2.3074992858823126e+01 0 1 0 0 0 0 V -104 0 2.1527444674318521e+00 -4.6957440581547205e-01 -1.4657177744896254e+02 1.5756510909227748e+02 0 2 0 P 323 2212 -3.4840977164562907e-02 -5.2186920231660723e-02 -2.5431382500112334e+00 2.7114276903327603e+00 9.3827000000000005e-01 1 0 0 0 0 P 324 -211 7.6407954908016967e-02 4.3119987685452575e-02 -2.8699133722571285e-01 3.3097027276452179e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 1.3265726186690680e+01 2.6689645098168672e+01 -3.5446292847168172e+02 3.6979302742572571e+02 0 2 0 P 325 -2212 1.5958067549103055e-01 3.2060398680402924e-01 -3.1567066142395404e+00 3.3126122848332966e+00 9.3827000000000005e-01 1 0 0 0 0 P 326 211 -1.3140574565764420e-02 -2.5977498451161360e-02 -7.5620296109427276e-01 7.6952596343037361e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 327 310 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -130 0 V -107 0 -1.5337379937032414e-06 -1.5433130295128232e-06 -8.3066141810159461e-06 8.6987537045143330e-06 0 2 0 P 328 22 -3.7307630759296821e-02 -1.2225377224602654e-01 -3.1814608849567771e-01 3.4286262229405373e-01 0 1 0 0 0 0 P 329 22 -1.1154537726505742e-01 -2.7528516325623684e-02 -4.8803105024528337e-01 5.0137261233917474e-01 0 1 0 0 0 0 V -108 0 -7.8865836476704740e-05 2.0236704785591708e-05 -1.2112959964202977e-03 1.2143124194609939e-03 0 2 0 P 330 22 -1.5131833213718898e-01 1.0698233076824459e-01 -2.5065299923812407e+00 2.5133712538031645e+00 0 1 0 0 0 0 P 331 22 -2.5473200953548020e-01 -2.7911973242265094e-03 -3.7299746233845359e+00 3.7386637824973112e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 332 211 nan -3.3225499072101472e-01 -1.6566492137336521e+00 1.6958039630037867e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.6027675112512272e-02 7.5261551060797169e-02 -4.3966537941110237e+00 4.3996598351023630e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 2.6405701837519837e+00 -7.7982993007320696e+00 -1.3029010341796770e+03 1.3030601704154778e+03 0 2 0 P 334 -2212 1.7220395755946979e-01 -3.8237278977060402e-01 -7.1908607895458388e+01 7.1915951660316892e+01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 -1.4033739470275641e-02 -8.4745527595602610e-02 -6.1351956712459277e+00 6.1373841707738768e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 -7.1427905328503207e-06 -2.6309149475094311e-05 -5.3858423237354690e-03 5.3859241059454428e-03 0 2 0 P 336 22 -3.5770985869032337e-02 -2.8953305563906762e-01 -5.0984607136736621e+01 5.0985441783327843e+01 0 1 0 0 0 0 P 337 22 -4.6376559444884530e-02 -1.3042252811631894e-02 -1.0956692178689083e+01 1.0956798089960902e+01 0 1 0 0 0 0 V -112 0 -1.7551842520711538e-05 1.8865680813227385e-04 -2.1406122941536796e-02 2.1406988502804772e-02 0 2 0 P 338 22 -8.0286668814878143e-02 5.7779065752968028e-01 -5.9525675858009009e+01 5.9528534118907011e+01 0 1 0 0 0 0 P 339 22 1.0663425883858725e-02 1.7055805672550797e-01 -2.5386417901448109e+01 2.5386993079652637e+01 0 1 0 0 0 0 V -113 0 6.7187333606529885e-05 -2.3625422722544653e-05 -7.3713680030589928e-03 7.3717738348789202e-03 0 2 0 P 340 22 -1.2335498355771022e-02 -7.4059523706035222e-03 -2.7159042999156084e+00 2.7159424108309609e+00 0 1 0 0 0 0 P 341 22 3.1281337024908018e-01 -9.8252604997121948e-02 -3.0250621555581812e+01 3.0252398421910719e+01 0 1 0 0 0 0 V -114 0 -8.1021390797921325e-04 -1.4670334287573128e-03 5.3888910717802690e-03 5.6438407084497396e-03 0 2 0 P 342 22 -4.8587594651029892e-01 -9.8067409406381123e-01 3.3872364013090688e+00 3.5596583477236079e+00 0 1 0 0 0 0 P 343 22 -1.2102706269977270e+00 -2.0904947650522021e+00 7.8941659992068693e+00 8.2554697126400942e+00 0 1 0 0 0 0 V -115 0 -9.8516456018675041e-05 -3.2397601657837485e-05 7.3208142735309983e-04 7.4037434865636194e-04 0 2 0 P 344 22 -1.0582060976970183e-01 2.7773008509941854e-02 7.5655810671428558e-01 7.6442757033536479e-01 0 1 0 0 0 0 P 345 22 -2.4269154073134683e-01 -1.4238287452774639e-01 1.8332556452170787e+00 1.8547232482560911e+00 0 1 0 0 0 0 V -116 0 -2.1261866108416613e-08 3.9762655619080825e-07 1.8873800909275420e-04 1.8882620746227122e-04 0 2 0 P 346 22 1.3701766050722928e-02 1.6877052404695968e-02 1.1492474511622532e-01 1.1696268777182300e-01 0 1 0 0 0 0 P 347 22 -1.4200284822198445e-02 -7.5540559523848460e-03 4.3103425359343746e+00 4.3103725464205001e+00 0 1 0 0 0 0 V -117 0 3.9659449652515547e-05 4.7675517195196901e-05 1.6808269140455216e-04 1.8032998066073807e-04 0 2 0 P 348 22 2.2189777329585378e-01 1.7090452012840207e-01 7.7175710376428419e-01 8.2100913758898786e-01 0 1 0 0 0 0 P 349 22 3.8914894690380696e-02 1.4262425917260380e-01 3.3360607125767611e-01 3.6489595655923507e-01 0 1 0 0 0 0 V -118 0 4.9824731096665069e-05 1.5093837573680184e-05 2.8495886026714965e-04 2.9104129678065308e-04 0 2 0 P 350 22 1.5711280955429704e-01 1.0490351873218232e-01 1.0622832091644729e+00 1.0789507864778676e+00 0 1 0 0 0 0 P 351 22 8.1687513027162359e-02 -3.2561667562046530e-02 3.0346962595308674e-01 3.1595399325707280e-01 0 1 0 0 0 0 V -119 0 3.3823228722222976e-05 1.4360649910993738e-05 3.6323504301105803e-05 6.2532414710160219e-05 0 2 0 P 352 22 1.5473104914365582e-01 6.3661750907534731e-02 1.2865456110435905e-01 2.1106044676979319e-01 0 1 0 0 0 0 P 353 22 -2.5115562199293982e-02 -8.6296708439308929e-03 1.0542342188911721e-02 2.8572778343894122e-02 0 1 0 0 0 0 V -120 0 4.8572525032297548e+01 2.8544033180682732e+01 1.3950388584931414e+02 1.5358972150787298e+02 0 2 0 P 354 111 5.1654591582856790e-01 4.5730537088227718e-01 1.8375361352708055e+00 1.9674111248600072e+00 1.3497999999999999e-01 2 0 0 -131 0 P 355 111 2.6591599044471420e-01 2.5146323074637399e-03 4.0975235511759373e-01 5.0678815127649712e-01 1.3497999999999999e-01 2 0 0 -132 0 V -121 0 6.6642964961977059e-04 2.8796401977340636e-04 8.1298330715980180e-04 1.0916502398589912e-03 0 2 0 P 356 22 1.0177129125649877e+00 3.7069054974771970e-01 1.2106855245682948e+00 1.6244723744874781e+00 0 1 0 0 0 0 P 357 22 4.5980885745110484e-01 2.6774609309868552e-01 5.9175609199787738e-01 7.9579358390018506e-01 0 1 0 0 0 0 V -122 0 1.7430972560220277e-04 1.5577619562966499e-05 5.8050962786920530e-05 1.8652206818066101e-04 0 3 0 P 358 22 2.8736228462862523e-01 6.2337796790484991e-02 1.5309029325025983e-01 3.3151126892328320e-01 0 1 0 0 0 0 P 359 11 3.9021046762354122e-01 1.2288367788971719e-02 8.4696183425568741e-02 3.9948581528354338e-01 5.1000000000000004e-04 1 0 0 0 0 P 360 -11 1.5740319236191927e-01 -6.4750326420938465e-06 4.0288411694907128e-02 1.6247824846590309e-01 5.1000000000000004e-04 1 0 0 0 0 V -123 0 8.1987514462796568e-05 7.0378209922122772e-05 7.8175816420573375e-05 1.3449144903824778e-04 0 2 0 P 361 22 3.4433217110872449e-01 2.7338575327507170e-01 3.9774502332559170e-01 5.9287900766893564e-01 0 1 0 0 0 0 P 362 22 2.9306763426588633e-01 2.7375923094481497e-01 2.1002129936352670e-01 4.5270487181832270e-01 0 1 0 0 0 0 V -124 0 1.1525069614002883e-05 -7.9493378491408561e-07 6.9320224489119165e-06 1.4520866346742673e-05 0 2 0 P 363 22 -5.5261422719354953e-03 -1.0875404177234163e-02 3.7191125654135376e-02 3.9140675669302898e-02 0 1 0 0 0 0 P 364 22 2.9270813845852167e-01 -8.9327773638485722e-03 1.3554119711378970e-01 3.2269066448585765e-01 0 1 0 0 0 0 V -125 0 -6.0138627269926064e-05 9.5449214414613208e-05 -7.1284583249102415e-06 1.1694235544052164e-04 0 2 0 P 365 22 1.4806878555669097e-02 3.6451249127863940e-02 1.1053419039329224e-03 3.9359357162795768e-02 0 1 0 0 0 0 P 366 22 -2.8576832810328845e-01 3.9360608124453439e-01 -3.3223424548020651e-02 4.8753777338615073e-01 0 1 0 0 0 0 V -126 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 3 0 P 367 -321 9.0973991892192296e-03 1.6695573778195438e+00 5.3498051780683975e-01 1.8213593041837060e+00 4.9359999999999998e-01 1 0 0 0 0 P 368 311 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 2 0 0 -133 0 P 369 211 9.0953373940276727e-01 4.8017960527329260e+00 6.6594685369729034e-01 4.9343147398603193e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 1.7989748316348035e-06 2.1444019247280622e-05 -1.2271226473815835e-02 1.2271255025811223e-02 0 2 0 P 370 22 -2.3564685434985310e-02 1.2853845306975048e-01 -9.1298002518840178e+01 9.1298096044542277e+01 0 1 0 0 0 0 P 371 22 3.9316168390280487e-02 5.9221318621781253e-02 -1.6146532693042897e+01 1.6146689163205540e+01 0 1 0 0 0 0 V -128 0 -7.4110418624237212e+01 1.1480778126668004e+02 1.2284156326431871e+01 1.4772911339205135e+02 0 2 0 P 372 -211 -6.0577836167837174e-01 7.3827051501716001e-01 -4.4786304566678758e-02 9.6617616136922679e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -6.7622827127023610e-02 3.0492554060204241e-01 1.5640577221039809e-01 3.7615818818793517e-01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 2.8428750945630758e-05 -8.1381408700782695e-06 -7.0726429201931359e-06 3.3223389267859981e-05 0 2 0 P 374 22 1.9879161434333362e-01 -1.1717448571255196e-01 -6.6812368314700762e-02 2.4023292570971397e-01 0 1 0 0 0 0 P 375 22 8.7744134505896368e-02 3.5149485989277515e-02 -4.4733888174538494e-03 9.4628382174754361e-02 0 1 0 0 0 0 V -130 0 4.3587815190089977e+01 1.9499557712227041e+01 -2.0295725607435622e+02 2.1421615704265062e+02 0 2 0 P 376 -211 1.2645607786858875e-02 -5.9626725518012832e-02 -2.6911317671398299e-01 3.0921989679415995e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 4.2860738668408754e-01 2.5702680611061518e-01 -1.7854861786759948e+00 1.8593568108683693e+00 1.3957000000000000e-01 1 0 0 0 0 V -131 0 4.8572822087881093e+01 2.8544296168172600e+01 1.3950494258086931e+02 1.5359085292802723e+02 0 2 0 P 378 22 1.0371190939819742e-01 1.6694820163323085e-01 5.7866817046209762e-01 6.1113395723486119e-01 0 1 0 0 0 0 P 379 22 4.1283400643037049e-01 2.9035716924904637e-01 1.2588679648087078e+00 1.3562771676251462e+00 0 1 0 0 0 0 V -132 0 4.8572620458929656e+01 2.8544034083083869e+01 1.3950403289307476e+02 1.5358990337390662e+02 0 2 0 P 380 22 5.8013958732285417e-02 2.7385983767221966e-02 2.0152939904897688e-01 2.1149399564936031e-01 0 1 0 0 0 0 P 381 22 2.0790203171242877e-01 -2.4871351459758224e-02 2.0822295606861682e-01 2.9529415562713685e-01 0 1 0 0 0 0 V -133 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 1 0 P 382 130 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 1 0 0 0 0 E 101 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 U GEV MM C 1.2020000000000000e-01 1.0000000000000000e-02 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 1011 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 1012 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 NaN 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 1013 3 -1.0000000000000000e+00 Nxx -1.0000000000000000e+00 20 0 87 1 2 0 0 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 1014 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 F 2** 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 H 23 11 12 15 3 5 0 0 0 1.4499999582767487e-02 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 1015 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 H 23 11 12 15 3 5 0 0 0 1.4499999582767487e-02 xyz 0 0 F 2 3 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 E 1016 3 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 87 1 2 0 0 H 23 11 12 15 3 5 0 0 0 1.4499999582767487e-02 0 0 0 F 2 3 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -1.7526637965512617e+00 4.5298871881440322e-01 1.0201175839311695e+02 1.0202781914565642e+02 0 3 0 0 -3 0 P 28 2 9.0817660681918388e-01 -3.4868155246073418e-01 5.2810757522549380e+01 5.2820747568353347e+01 3.3000000000000002e-01 2 0 0 -11 0 P 33 2101 8.4448718973207781e-01 -1.0430716635366907e-01 6.8373036418084457e+03 6.8373037192996544e+03 5.7933000000000001e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 -1 8.0359443054101487e-01 8.5716253518803365e-01 -3.1769265273603889e+02 3.1769482541281963e+02 0 3 0 0 -4 0 P 14 2214 -4.0973584052984952e-01 -1.1903636262094119e-02 -4.2925375446801600e+03 4.2925377178395711e+03 1.1482862989258675e+00 2 0 0 -10 0 P 43 1 -3.9385859001116535e-01 -8.4525889892593953e-01 -2.3842048599064160e+03 2.3842050651084037e+03 3.3000000000000002e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 15 0 P 5 2 -3.1328127962008804e+01 -5.1020250454404177e+01 -5.6344754374287476e+01 8.2214651392150984e+01 0 3 0 0 -5 0 P 15 -2 1.8015877626189528e+01 2.8444264642790003e+01 1.9950162629890418e+01 3.9137781320227980e+01 3.3000000000000002e-01 2 0 0 -11 0 P 16 21 6.5995856736583880e+00 1.0831825457694304e+01 8.4415001387351545e+00 1.5236203542949179e+01 0 2 0 0 -11 0 P 17 21 5.7031824067563779e+00 1.3298273024763816e+01 9.7547319506002186e+00 1.7450648997500270e+01 0 2 0 0 -11 0 P 18 21 1.5077018665976598e+00 4.9910478340823987e+00 2.9118272604243494e+00 5.9718055389631575e+00 0 2 0 0 -11 0 P 19 21 -2.7569744001217444e-01 1.9559406082034164e-01 -3.0610181349496690e-01 4.5603117797181975e-01 0 2 0 0 -11 0 P 20 21 -6.3166722474963785e-02 -2.8406886322593983e-01 -1.8092694993776332e-01 3.4266560244134325e-01 0 2 0 0 -11 0 P 21 21 -2.5327444251905976e-02 1.1098778411573992e-02 -1.7943903021874866e-01 1.8155723031707555e-01 0 2 0 0 -11 0 P 22 21 -1.3411049750746462e-01 -1.1061895169353912e-01 -3.7029575383039887e-01 4.0907349378846408e-01 0 2 0 0 -11 0 P 23 21 7.5975808884443469e-02 -1.7872496039703260e-02 -1.5655370835228610e-01 1.7493088134799797e-01 0 2 0 0 -11 0 P 24 21 3.3094806436427803e-04 -6.6290434756983554e-02 -1.4747532463977961e-01 1.6168952546315296e-01 0 2 0 0 -11 0 P 25 21 7.2535530816079954e-02 -4.2452861923903065e+00 5.0115203591596247e+00 6.5683371235649872e+00 0 2 0 0 -11 0 P 26 21 9.0273357826862147e-02 -1.0098736815864760e-01 1.2971198532816883e+00 1.3041731639005825e+00 0 2 0 0 -11 0 P 27 21 -1.0193297277324731e+00 3.8086709338408981e-01 3.8652693062337113e+00 4.0155198475881599e+00 0 2 0 0 -11 0 P 34 21 -5.7799570955804472e-02 -1.6535511165149253e+00 1.8096739556909011e+01 1.8172219310693059e+01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 9 0 P 6 -1 2.5053784337776064e-01 -1.3604901407085794e+00 -1.2585188734878254e+02 1.2585949011451055e+02 0 3 0 0 -5 0 P 35 21 -1.7721355088522314e-01 3.1018952308081776e-01 -5.9508469137287956e-01 6.9408066732391416e-01 0 2 0 0 -15 0 P 36 21 3.8062620474231984e-01 -4.1527932567276210e-01 -1.1758368661026420e+01 1.1771854857866538e+01 0 2 0 0 -15 0 P 37 21 -6.1278448264184260e-01 -1.6401532088454465e+00 -2.1372649157036733e+01 2.1444247232310012e+01 0 2 0 0 -15 0 P 38 21 2.7970894532594703e-01 2.4579812133432974e-01 -1.4589972576028161e+00 1.5057645261591792e+00 0 2 0 0 -15 0 P 39 21 7.8514789239084826e-01 2.2453103879747331e+00 -1.5261989420576587e+01 1.5446235691101721e+01 0 2 0 0 -15 0 P 40 21 -7.4020224350297936e-01 1.9584406523938551e+00 -2.9197881369102184e+01 2.9272848607445095e+01 0 2 0 0 -15 0 P 41 21 -4.9404286056732999e-03 2.7449449072619797e-01 -4.3027343722233063e-01 5.1039873045782691e-01 0 2 0 0 -15 0 P 42 21 -2.7185340006489311e-01 -9.6220426103972079e-01 -2.1397087101347701e+01 2.1420435983745755e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845852e+01 0 3 0 0 -6 0 P 8 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -4.1845353926476561e+00 -3.5041149949900827e+00 -1.0219054717943990e+01 1.1585259499845851e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.6893054725983372e+01 -4.8876625600122665e+01 -1.7197758700512597e+02 1.9648888200681566e+02 7.6937828131767162e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 16 -4.3671673900336771e+01 -5.2085722569803472e+01 -9.0390188666554351e+01 1.1309519797078558e+02 0 1 0 0 0 0 P 12 -15 1.6702815331493724e+01 3.3098439146974514e+00 -8.1235071943581545e+01 8.3019478132643727e+01 1.7769999999999999e+00 2 0 0 -9 0 P 13 22 7.5803842859663989e-02 -1.0074694501664783e-01 -3.5232639499013524e-01 3.7420590338639087e-01 0 1 0 0 0 0 V -9 0 2.6700498587203320e-01 5.2909932256515906e-02 -1.2985936086901495e+00 1.3271184615275131e+00 0 4 0 P 44 -16 1.6372952924846531e+00 2.3121168428471481e-01 -7.6761015706564351e+00 7.8521799546862372e+00 0 1 0 0 0 0 P 45 321 4.8300851588808840e+00 8.4527135264297426e-01 -2.5829337489216794e+01 2.6295294681625080e+01 4.9359999999999998e-01 1 0 0 0 0 P 46 -321 6.3069772032682048e+00 1.4182500195674008e+00 -3.0345358601286772e+01 3.1030208251979825e+01 4.9359999999999998e-01 1 0 0 0 0 P 47 211 3.9284576768599839e+00 8.1511085820236162e-01 -1.7384274282421547e+01 1.7841795244352589e+01 1.3957000000000000e-01 1 0 0 0 0 V -10 0 0 0 0 0 0 2 0 P 48 2212 -2.4968553189380455e-01 -1.1889652069978865e-01 -3.2798923777152877e+03 3.2798925235782776e+03 9.3827000000000005e-01 1 0 0 0 0 P 49 111 -1.6005030863604497e-01 1.0699288443769453e-01 -1.0126451669648725e+03 1.0126451942612938e+03 1.3497999999999999e-01 2 0 0 -17 0 V -11 0 0 0 0 0 0 1 0 P 50 92 3.1456007993633904e+01 5.2979165033220681e+01 1.0270209644040061e+02 1.4423116501437752e+02 8.0365639309585902e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 18 0 P 51 113 1.2179565529971043e+01 1.8983114315325533e+01 1.3880162869447188e+01 2.6493113972407404e+01 7.2506624870560721e-01 2 0 0 -18 0 P 52 331 8.8489638840281675e+00 1.5493965635749891e+01 1.0972530874383834e+01 2.0968588900825683e+01 9.5820340214911615e-01 2 0 0 -19 0 P 53 223 4.6123438838946775e+00 9.9049994399839552e+00 6.8465716701360222e+00 1.2917745997066913e+01 7.8095326431609469e-01 2 0 0 -20 0 P 54 -211 1.7844232386007792e+00 1.9507146766844061e+00 1.6742219487521339e+00 3.1324037036872872e+00 1.3957000000000000e-01 1 0 0 0 0 P 55 223 3.7874874930671263e+00 9.6606291144773717e+00 7.0391587689182566e+00 1.2563090883020735e+01 7.8017944305918119e-01 2 0 0 -21 0 P 56 -311 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 2 0 0 -22 0 P 57 333 1.5065577572118347e-01 -3.3646312137083645e-01 1.6328034009420220e-01 1.0985902772303366e+00 1.0219273618819449e+00 2 0 0 -23 0 P 58 321 3.2703872117239252e-01 4.9589165587614420e-01 -4.6637746727214893e-02 7.7374343223929898e-01 4.9359999999999998e-01 1 0 0 0 0 P 59 -2212 -9.5071750852787207e-01 -7.3853959202609354e-01 5.5794308442614060e-01 1.6251017163151560e+00 9.3827000000000005e-01 1 0 0 0 0 P 60 -213 3.2037160976669959e-01 -6.3041449034971830e-01 6.2715088007867278e-02 8.8294907481490459e-01 5.2498141725708725e-01 2 0 0 -24 0 P 61 2224 -3.5245918172261392e-01 -9.0447614443921731e-01 1.8374866217168586e+00 2.3483916159144074e+00 1.0937465547687175e+00 2 0 0 -25 0 P 62 -213 -1.2850979598496162e-01 -9.5638964721636688e-01 2.9064867658140190e+00 3.2173814886387433e+00 9.8624662159952425e-01 2 0 0 -26 0 P 63 213 2.2515914366899323e-01 1.4155622746146790e-01 3.2534616323288530e+00 3.3701374954085064e+00 8.3790174806567841e-01 2 0 0 -27 0 P 64 -2224 1.7095981605512822e-01 -9.5002545725520593e-01 8.5115850969676128e+00 8.6456036137762702e+00 1.1694466022361167e+00 2 0 0 -28 0 P 65 111 5.5612764444304755e-02 3.0502839641708246e-01 3.4083788351291422e-01 4.8013036295101902e-01 1.3497999999999999e-01 2 0 0 -29 0 P 66 2224 -4.5334624218780734e-01 -2.1457036333669940e-01 2.6445487934897727e+01 2.6479386403635971e+01 1.2419778347909307e+00 2 0 0 -30 0 P 67 -213 5.1361266127366789e-01 2.9599036741387030e-02 9.7192276909281290e+00 9.7627802909598316e+00 7.6407986012782825e-01 2 0 0 -31 0 P 68 211 -1.3472932069258757e-02 -1.9207250360959019e-01 8.3221238621832239e+00 8.3255209283840497e+00 1.3957000000000000e-01 1 0 0 0 0 V -13 0 0 0 0 0 4 1 0 P 29 3 -4.5237353722677973e+00 -1.3806261545959104e+00 -1.6654767191363538e+00 5.0143915881237628e+00 0 2 0 0 -13 0 P 30 21 -8.6010622246390600e-01 -6.2808907954156756e-01 1.9956086421492318e+00 2.2620195530501510e+00 0 2 0 0 -13 0 P 31 21 8.6010622246390600e-01 6.2808907954156756e-01 5.1236738577503815e-01 1.1818624893643297e+00 0 2 0 0 -13 0 P 32 -3 4.5237353722677973e+00 1.3806261545959104e+00 1.4664002897145549e+00 4.9518319950030705e+00 0 2 0 0 -13 0 P 69 92 0 2.2204460492503131e-16 2.3088995985024710e+00 1.3410105625541314e+01 1.3209841616469514e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 7 0 P 70 -313 -2.3967695469162833e+00 -5.6367972852701465e-01 -2.4381031065963071e-01 2.6414161604322084e+00 9.2487662292378803e-01 2 0 0 -32 0 P 71 2112 -1.2764163662792098e+00 -3.7893335199153982e-01 -2.1374895764806118e-01 1.6435661310554557e+00 9.3957000000000002e-01 1 0 0 0 0 P 72 -211 -9.6670066735765303e-01 -4.2407086560604029e-01 -2.8670555004482701e-01 1.1027357510537577e+00 1.3957000000000000e-01 1 0 0 0 0 P 73 -2114 3.9334630030974309e-02 -4.6486901364530914e-01 6.5064601702361069e-01 1.4307074814131169e+00 1.1857205593796285e+00 2 0 0 -33 0 P 74 113 6.9930446799925416e-01 3.5516696854209451e-01 2.0722640199690806e-01 1.1596469925470252e+00 8.2865436168023332e-01 2 0 0 -34 0 P 75 221 -9.0821280962496587e-02 2.8163753857768614e-01 5.9770053636891696e-01 8.6285319834109531e-01 5.4744999999999999e-01 2 0 0 -35 0 P 76 323 3.9920687634854142e+00 1.1947484526501235e+00 1.5975914614655542e+00 4.5691799106986553e+00 9.8034162467922326e-01 2 0 0 -36 0 V -15 0 0 0 0 0 0 1 0 P 77 92 3.1317965523611713e-02 -5.8652080184252919e-01 4.3697231903636512e+03 9.3417468700151621e+03 8.2567398819418268e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 27 0 P 78 211 2.0746921749814441e-02 -1.1907935081770847e-01 1.0083750617303774e+03 1.0083750786338653e+03 1.3957000000000000e-01 1 0 0 0 0 P 79 1114 8.4357588712381493e-01 7.7427770148862263e-02 5.4921774440915206e+03 5.4921776429437841e+03 1.2110526537511448e+00 2 0 0 -37 0 P 80 211 -1.6358366283528138e-02 1.7086537611462077e-01 2.0947318008965073e+02 2.0947329691211013e+02 1.3957000000000000e-01 1 0 0 0 0 P 81 -3222 -1.0993322923316496e-02 -7.0040047138391903e-01 6.4094829225967786e+01 6.4109690501330121e+01 1.1893700000000000e+00 2 0 0 -38 0 P 82 223 1.2723711365481369e-01 -3.5903541339076300e-01 4.6148612418390648e+01 4.6156724961027017e+01 7.7700403724480060e-01 2 0 0 -39 0 P 83 3212 -2.4748622480269522e-01 -1.7899394993071044e-01 2.5356418574626165e+01 2.5386284223960896e+01 1.1925500000000000e+00 2 0 0 -40 0 P 84 -311 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 2 0 0 -41 0 P 85 321 -9.4723514825215058e-02 -5.4938029143517864e-01 6.4733067046169701e+00 6.5159904773501056e+00 4.9359999999999998e-01 1 0 0 0 0 P 86 -213 -3.2494978007295866e-01 -4.7901068989857853e-01 5.0398747517322240e-01 1.1754177819184806e+00 8.9025838177020544e-01 2 0 0 -42 0 P 87 211 6.8080641255468852e-02 4.9820285546719661e-01 -2.4814798562389220e-01 5.7783930861323363e-01 1.3957000000000000e-01 1 0 0 0 0 P 88 223 4.7056322294689579e-01 -5.0921141961830385e-01 -5.0561175216852339e-01 1.1591321807108739e+00 7.7924203670538916e-01 2 0 0 -43 0 P 89 111 -4.4109973361472077e-01 5.7115903700964010e-01 1.6319956888573386e-01 7.5209395705406823e-01 1.3497999999999999e-01 2 0 0 -44 0 P 90 331 1.9467019698581983e-01 -3.0759609024223155e-02 -7.9457321904875233e-01 1.2599991658674095e+00 9.5781452192752281e-01 2 0 0 -45 0 P 91 -213 -1.6101398993986113e-01 -2.1357467338473304e-01 -1.1554111361966355e+00 1.4241112580794300e+00 7.8840239451286986e-01 2 0 0 -46 0 P 92 -311 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632700e+01 4.9767000000000000e-01 2 0 0 -47 0 P 93 321 -7.5682999886215296e-02 -1.0308266006879425e+00 -1.2222102453362419e+01 1.2275657242593789e+01 4.9359999999999998e-01 1 0 0 0 0 P 94 -211 2.0744216086157524e-01 6.8083570643949654e-01 -2.8514256523306640e+00 2.9422232316626205e+00 1.3957000000000000e-01 1 0 0 0 0 P 95 111 -1.4582782081270099e-01 4.7042556288790977e-01 -3.0722102877519228e+00 3.1143637578340373e+00 1.3497999999999999e-01 2 0 0 -48 0 P 96 -2112 2.5455994134723298e-01 1.1688067510068845e+00 -2.0306531359986458e+01 2.0363421069259246e+01 9.3957000000000002e-01 1 0 0 0 0 P 97 2212 -4.0830077156949474e-01 5.7668403966239579e-01 -7.0264393749926057e+00 7.1239367547032657e+00 9.3827000000000005e-01 1 0 0 0 0 P 98 113 4.0782795955472129e-01 6.0908959893031356e-01 -1.0619632261685037e+01 1.0675971550092065e+01 8.1391976314242509e-01 2 0 0 -49 0 P 99 223 -6.6261273817188410e-02 1.6168764516380401e+00 -2.1343707666561876e+01 2.1419344632793415e+01 7.8472130495765957e-01 2 0 0 -50 0 P 100 -213 -1.8770276600143790e-01 -1.1149888848566774e+00 -4.5993471341021724e+01 4.6009050516262448e+01 3.9356177264175179e-01 2 0 0 -51 0 P 101 211 2.6155957299050871e-02 2.7121964981063407e-01 -2.8255832021114802e+01 2.8257490462227917e+01 1.3957000000000000e-01 1 0 0 0 0 P 102 331 -2.7126244779904446e-01 1.6069344562293481e-01 -2.1594645240619855e+02 2.1594880676809402e+02 9.5782672859052209e-01 2 0 0 -52 0 P 103 -323 -2.8955128409729608e-02 -5.2723415798799034e-01 -4.3852533798068379e+02 4.3852675972548923e+02 9.8393597723978043e-01 2 0 0 -53 0 P 104 313 -1.8493827598287893e-01 -8.0053986246146813e-01 -1.6618432515355771e+03 1.6618437040681033e+03 9.1049998245145269e-01 2 0 0 -54 0 V -17 0 -7.2623486588916352e-06 4.8548461882318786e-06 -4.5949191431825832e-02 4.5949192670412191e-02 0 2 0 P 105 22 -1.1449636903407959e-01 1.3852309603572940e-01 -7.7102277309324074e+02 7.7102279403819034e+02 0 1 0 0 0 0 P 106 22 -4.5553939601965389e-02 -3.1530211598034867e-02 -2.4162239387163172e+02 2.4162240022310348e+02 0 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 107 -211 1.0955317324645362e+01 1.7076898789785584e+01 1.2677066761396318e+01 2.3924191761019941e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 211 1.2242482053256818e+00 1.9062155255399513e+00 1.2030961080508695e+00 2.5689222113874632e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 3 0 P 109 111 1.9389899598114453e+00 3.2103375389223903e+00 2.2490032742725936e+00 4.3751782256443805e+00 1.3497999999999999e-01 2 0 0 -55 0 P 110 111 2.8210669497614735e+00 5.1815079558388035e+00 3.5655956695163926e+00 6.8947904616696931e+00 1.3497999999999999e-01 2 0 0 -56 0 P 111 221 4.0889069744552486e+00 7.1021201409886947e+00 5.1579319305948452e+00 9.6986202135116066e+00 5.4744999999999999e-01 2 0 0 -57 0 V -20 0 0 0 0 0 0 3 0 P 112 211 1.3366498727250700e+00 2.9505483619208426e+00 1.9569414010692774e+00 3.7870130644623741e+00 1.3957000000000000e-01 1 0 0 0 0 P 113 -211 3.0371134668120412e+00 6.2149503583486165e+00 4.3013534125394068e+00 8.1468268136430311e+00 1.3957000000000000e-01 1 0 0 0 0 P 114 111 2.3858054435756623e-01 7.3950071971449538e-01 5.8827685652733674e-01 9.8390611896150648e-01 1.3497999999999999e-01 2 0 0 -58 0 V -21 0 0 0 0 0 0 3 0 P 115 -211 3.3963080228442138e-01 6.6857190149855072e-01 5.1342370785041858e-01 9.1946786676676184e-01 1.3957000000000000e-01 1 0 0 0 0 P 116 211 1.0955980038584046e+00 2.8215226757275054e+00 2.2746837512759153e+00 3.7887981140358606e+00 1.3957000000000000e-01 1 0 0 0 0 P 117 111 2.3522586869243010e+00 6.1705345372513163e+00 4.2510513097919240e+00 7.8548249022181134e+00 1.3497999999999999e-01 2 0 0 -59 0 V -22 0 0 0 0 0 0 1 0 P 118 130 3.7831913246225829e-01 9.3661785410716358e-01 2.1545205461283962e-01 1.1465048571010057e+00 4.9767000000000000e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 119 130 6.3184413644643306e-02 -2.5201435009787143e-01 1.6886014747968928e-01 5.8625308620913241e-01 4.9767000000000000e-01 1 0 0 0 0 P 120 310 8.7471362076540146e-02 -8.4448771272965018e-02 -5.5798073854870936e-03 5.1233719102120423e-01 4.9767000000000000e-01 2 0 0 -60 0 V -24 0 0 0 0 0 0 2 0 P 121 -211 6.5978427308346285e-02 -5.1518777821152073e-01 -7.5997787599829392e-02 5.4316392397569502e-01 1.3957000000000000e-01 1 0 0 0 0 P 122 111 2.5439318245835330e-01 -1.1522671213819757e-01 1.3871287560769668e-01 3.3978515083920957e-01 1.3497999999999999e-01 2 0 0 -61 0 V -25 0 0 0 0 0 0 2 0 P 123 2212 -2.9897999814241494e-01 -8.3140733630058961e-01 1.6951748248961236e+00 2.1294589636819219e+00 9.3827000000000005e-01 1 0 0 0 0 P 124 211 -5.3479183580199006e-02 -7.3068808138627706e-02 1.4231179682073500e-01 2.1893265223248540e-01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 0 2 0 P 125 -211 2.8826920935482592e-01 -1.1306752670693348e-02 4.8472723633278331e-01 5.8109143709129862e-01 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -4.1677900533978757e-01 -9.4508289454567362e-01 2.4217595294812360e+00 2.6362900515474448e+00 1.3497999999999999e-01 2 0 0 -62 0 V -27 0 0 0 0 0 0 2 0 P 127 211 2.2732711547966255e-02 2.1836498636697527e-01 2.6695720800923661e-01 3.7275458314212473e-01 1.3957000000000000e-01 1 0 0 0 0 P 128 111 2.0242643212102698e-01 -7.6808758905507368e-02 2.9865044243196164e+00 2.9973829122663820e+00 1.3497999999999999e-01 2 0 0 -63 0 V -28 0 0 0 0 0 0 2 0 P 129 -2212 1.4689072647839568e-01 -6.3473476616576485e-01 7.1587794796435658e+00 7.2493406141504098e+00 9.3827000000000005e-01 1 0 0 0 0 P 130 -211 2.4069089576732546e-02 -3.1529069108944102e-01 1.3528056173240475e+00 1.3962629996258606e+00 1.3957000000000000e-01 1 0 0 0 0 V -29 0 2.6372578268446610e-05 1.4464997989201890e-04 1.6163148603767259e-04 2.2768649792017593e-04 0 2 0 P 131 22 7.8169352768357514e-02 8.0048031357654842e-02 1.0570074114905043e-01 1.5391810067668635e-01 0 1 0 0 0 0 P 132 22 -2.2556588324052759e-02 2.2498036505942762e-01 2.3513714236386379e-01 3.2621226227433264e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 133 2212 -1.0857048637377756e-01 -2.0843919870088631e-01 1.9286337499818273e+01 1.9310577391674833e+01 9.3827000000000005e-01 1 0 0 0 0 P 134 211 -3.4477575581402981e-01 -6.1311646358130521e-03 7.1591504350794493e+00 7.1688090119611365e+00 1.3957000000000000e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 135 -211 1.5625105833351666e-02 2.0413793179639039e-02 3.2800572022715541e-01 3.5739110829176979e-01 1.3957000000000000e-01 1 0 0 0 0 P 136 111 4.9798755544031620e-01 9.1852435617479893e-03 9.3912219707009719e+00 9.4053891826680616e+00 1.3497999999999999e-01 2 0 0 -64 0 V -32 0 0 0 0 0 0 2 0 P 137 -321 -7.5522998131855024e-01 -4.6627727444262253e-02 -7.9620090871636226e-02 9.0693262622944681e-01 4.9359999999999998e-01 1 0 0 0 0 P 138 211 -1.6415395655977327e+00 -5.1705200108275240e-01 -1.6419021978799447e-01 1.7344835342027614e+00 1.3957000000000000e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 139 -2212 1.0790204269228144e-02 -3.9990553114600025e-01 3.2692036965501736e-01 1.0711061494290421e+00 9.3827000000000005e-01 1 0 0 0 0 P 140 211 2.8544425761746168e-02 -6.4963482499308903e-02 3.2372564736859338e-01 3.5960133198407473e-01 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 141 211 -4.6232897002276632e-02 -7.4758498662034642e-02 -1.4471903829510543e-01 2.1943039632759351e-01 1.3957000000000000e-01 1 0 0 0 0 P 142 -211 7.4553736500153078e-01 4.2992546720412911e-01 3.5194544029201347e-01 9.4021659621943166e-01 1.3957000000000000e-01 1 0 0 0 0 V -35 0 0 0 0 0 0 3 0 P 143 22 9.2174555340027928e-02 -9.6239393237543561e-02 3.5188910970838649e-01 3.7627664688925799e-01 0 1 0 0 0 0 P 144 -11 -1.7926267320444650e-01 3.7169836775010989e-01 2.4211582253735450e-01 4.7845074377143559e-01 5.1000000000000004e-04 1 0 0 0 0 P 145 11 -3.7331630980780165e-03 6.1785640651198237e-03 3.6956041231759208e-03 8.1258076804017667e-03 5.1000000000000004e-04 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 146 311 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -65 0 P 147 211 8.5816624258499938e-02 2.8390045058675768e-02 1.1782050881423960e-01 2.0379387835458782e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 148 2112 8.8548187669572620e-01 4.0768156711857198e-02 5.1977675080609761e+03 5.1977676685656497e+03 9.3957000000000002e-01 1 0 0 0 0 P 149 -211 -4.1905989571911245e-02 3.6659613437005072e-02 2.9440993603054449e+02 2.9440997437813388e+02 1.3957000000000000e-01 1 0 0 0 0 V -38 0 -4.4818135638926886e-02 -2.8554281127750949e+00 2.6130504580289926e+02 2.6136563300292988e+02 0 2 0 P 150 -2212 2.5326047336712659e-02 -4.7368010764301055e-01 4.1596021847961175e+01 4.1609306632315011e+01 9.3827000000000005e-01 1 0 0 0 0 P 151 111 -3.6319370260029155e-02 -2.2672036374090845e-01 2.2498807378006607e+01 2.2500383869015110e+01 1.3497999999999999e-01 2 0 0 -66 0 V -39 0 0 0 0 0 0 3 0 P 152 211 -1.0847083191222452e-01 -2.4450666755789840e-02 1.0453035942775877e+01 1.0454559003723920e+01 1.3957000000000000e-01 1 0 0 0 0 P 153 -211 2.8126011174134785e-01 -7.5862061326581907e-03 1.3039614694624413e+01 1.3043396642368322e+01 1.3957000000000000e-01 1 0 0 0 0 P 154 111 -4.5552166174309634e-02 -3.2699854050231497e-01 2.2655961780990356e+01 2.2658769314934773e+01 1.3497999999999999e-01 2 0 0 -67 0 V -40 0 0 0 0 0 0 2 0 P 155 3122 -2.5950176701163413e-01 -1.9840361454859826e-01 2.5275145865972714e+01 2.5301866444393898e+01 1.1156800000000000e+00 2 0 0 -68 0 P 156 22 1.2015542208938959e-02 1.9409664617887814e-02 8.1272708653450390e-02 8.4417779566998294e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 1 0 P 157 130 2.5075482978381830e-01 2.8838579948183285e-01 1.0707944265902447e+00 1.2410964857413056e+00 4.9767000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 158 -211 -3.3464779784447757e-01 1.1575130997685905e-01 -5.5156652009311982e-03 3.8065433378082797e-01 1.3957000000000000e-01 1 0 0 0 0 P 159 111 9.6980177715188850e-03 -5.9476199987543765e-01 5.0950314037415367e-01 7.9476344813765265e-01 1.3497999999999999e-01 2 0 0 -69 0 V -43 0 0 0 0 0 0 3 0 P 160 -211 -1.2064213973451082e-01 -1.4044672762522867e-01 -1.6860578764608966e-01 2.8668363348491788e-01 1.3957000000000000e-01 1 0 0 0 0 P 161 211 8.8360930644829999e-02 -7.0378895892420926e-02 8.9479429076496034e-03 1.7977956956710975e-01 1.3957000000000000e-01 1 0 0 0 0 P 162 111 5.0284443203657669e-01 -2.9838579610065430e-01 -3.4595390743008342e-01 6.9266897765884639e-01 1.3497999999999999e-01 2 0 0 -70 0 V -44 0 -2.4168290224431852e-04 3.1294367959906923e-04 8.9418656252866600e-05 4.1207970998233885e-04 0 2 0 P 163 22 -2.7636199654651333e-01 4.4415962663682290e-01 8.5567804232318675e-02 5.3007129349784399e-01 0 1 0 0 0 0 P 164 22 -1.6473773706820743e-01 1.2699941037281717e-01 7.7631764653415203e-02 2.2202266355622421e-01 0 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 165 111 2.0382778236850813e-01 -5.9023223950244716e-02 -3.6054875338118619e-01 4.3959584824640024e-01 1.3497999999999999e-01 2 0 0 -71 0 P 166 111 8.8892138843492067e-03 -1.2167252315104765e-02 -1.4900319253697675e-01 2.0161500920961345e-01 1.3497999999999999e-01 2 0 0 -72 0 P 167 221 -1.8046799267037499e-02 4.0430867241126336e-02 -2.8502127313058945e-01 6.1878830841139576e-01 5.4744999999999999e-01 2 0 0 -73 0 V -46 0 0 0 0 0 0 2 0 P 168 -211 -7.7755567088274163e-02 6.7702226774294882e-02 4.6448476488450102e-02 1.7962952316229996e-01 1.3957000000000000e-01 1 0 0 0 0 P 169 111 -8.3258422851586952e-02 -2.8127690015902790e-01 -1.2018596126850856e+00 1.2444817349171298e+00 1.3497999999999999e-01 2 0 0 -74 0 V -47 0 0 0 0 0 0 1 0 P 170 310 -1.7474045029842900e-01 -1.1341574711850941e+00 -1.3403505507844816e+01 1.3461741444632704e+01 4.9767000000000000e-01 2 0 0 -75 0 V -48 0 -3.6595058127781659e-05 1.1805189656360888e-04 -7.7096203889277662e-04 7.8154032689945255e-04 0 2 0 P 171 22 -8.1662076057138752e-02 3.6968061858807949e-01 -2.5929702691424570e+00 2.6204631787304962e+00 0 1 0 0 0 0 P 172 22 -6.4165744755562248e-02 1.0074494429983033e-01 -4.7924001860946569e-01 4.9390057910354090e-01 0 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 173 -211 5.6788013533914827e-01 6.5492108413927919e-01 -8.5679881636352366e+00 8.6128572745434777e+00 1.3957000000000000e-01 1 0 0 0 0 P 174 211 -1.6005217578442704e-01 -4.5831485208965621e-02 -2.0516440980498012e+00 2.0631142755485872e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 175 -211 -1.0150229600277900e-01 3.5385337513294635e-01 -7.1390242370532073e+00 7.1498714512444170e+00 1.3957000000000000e-01 1 0 0 0 0 P 176 211 -7.1939688655855552e-02 8.5760038181035880e-01 -7.5385783211477140e+00 7.5888270913668512e+00 1.3957000000000000e-01 1 0 0 0 0 P 177 111 1.0718071084144616e-01 4.0542269469473485e-01 -6.6661051083609566e+00 6.6806460901821509e+00 1.3497999999999999e-01 2 0 0 -76 0 V -51 0 0 0 0 0 0 2 0 P 178 -211 -2.0024073572975407e-01 -5.5920870933762490e-01 -2.7345577330084783e+01 2.7352383626173999e+01 1.3957000000000000e-01 1 0 0 0 0 P 179 111 1.2537969728316178e-02 -5.5578017551905257e-01 -1.8647894010936941e+01 1.8656666890088452e+01 1.3497999999999999e-01 2 0 0 -77 0 V -52 0 0 0 0 0 0 3 0 P 180 111 -1.0331605590496390e-02 9.3750130489623995e-02 -1.6129860732560072e+01 1.6130701245799088e+01 1.3497999999999999e-01 2 0 0 -78 0 P 181 111 -2.7229168618430406e-02 -6.5032749704583845e-03 -1.8136462293551062e+01 1.8136986184204048e+01 1.3497999999999999e-01 2 0 0 -79 0 P 182 221 -2.3370167359011768e-01 7.3446590103769194e-02 -1.8168012938008741e+02 1.8168111933809092e+02 5.4744999999999999e-01 2 0 0 -80 0 V -53 0 0 0 0 0 0 2 0 P 183 -311 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -81 0 P 184 -211 -1.6698317023710979e-01 8.5570565540566718e-02 -4.5166685644172595e+01 4.5167291014242110e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 185 321 -3.3518505111951741e-01 -7.9817728631166163e-01 -1.2293272451586120e+03 1.2293276490692874e+03 4.9359999999999998e-01 1 0 0 0 0 P 186 -211 1.5024677513663851e-01 -2.3625761498064536e-03 -4.3251600637696509e+02 4.3251605499881623e+02 1.3957000000000000e-01 1 0 0 0 0 V -55 0 1.1684791337836554e-04 1.9346218930385638e-04 1.3553001574356750e-04 2.6365811939259325e-04 0 2 0 P 187 22 8.0933490118119999e-01 1.4499238876605196e+00 1.0367881167439892e+00 1.9576087099571575e+00 0 1 0 0 0 0 P 188 22 1.1296550586302454e+00 1.7604136512618704e+00 1.2122151575286044e+00 2.4175695156872230e+00 0 1 0 0 0 0 V -56 0 2.1215210946872419e-04 3.8966386216148619e-04 2.6814274750353224e-04 5.1850748912986332e-04 0 2 0 P 189 22 2.7431370086183153e+00 5.0425080110892706e+00 3.4939293283503967e+00 6.7200617438724457e+00 0 1 0 0 0 0 P 190 22 7.7929941143157849e-02 1.3899994474953303e-01 7.1666341165995989e-02 1.7472871779724769e-01 0 1 0 0 0 0 V -57 0 0 0 0 0 0 3 0 P 191 111 5.0167242531181477e-01 8.4279799147174439e-01 5.7082478827885952e-01 1.1428229154425675e+00 1.3497999999999999e-01 2 0 0 -82 0 P 192 111 1.2563968115962962e+00 2.3717090255327906e+00 1.6919231234786747e+00 3.1755881512162234e+00 1.3497999999999999e-01 2 0 0 -83 0 P 193 111 2.3308377375471379e+00 3.8876131239841598e+00 2.8951840188373108e+00 5.3802091468528159e+00 1.3497999999999999e-01 2 0 0 -84 0 V -58 0 2.3326396687737089e-06 7.2302153494438295e-06 5.7516757514835763e-06 9.6198055445756550e-06 0 2 0 P 194 22 9.2038773242127711e-02 4.4436781431505362e-01 2.8363623498104779e-01 5.3514802061978883e-01 0 1 0 0 0 0 P 195 22 1.4654177111543851e-01 2.9513290539944176e-01 3.0464062154628901e-01 4.4875809834171765e-01 0 1 0 0 0 0 V -59 0 1.3763968394333555e-03 3.6106165881747664e-03 2.4874532803691282e-03 4.5961595252313981e-03 0 2 0 P 196 22 4.2655930658614954e-01 1.2702830735855901e+00 8.5485772230065138e-01 1.5894507398627893e+00 0 1 0 0 0 0 P 197 22 1.9256993803381515e+00 4.9002514636657262e+00 3.3961935874912723e+00 6.2653741623553243e+00 0 1 0 0 0 0 V -60 0 2.0178344301697027e+00 -1.9481077488081924e+00 -1.2871787049913505e-01 1.1818858188059316e+01 0 2 0 P 198 -211 -7.0520956260687287e-02 -2.1274057706694366e-01 1.6679722549608696e-02 2.6455577190269330e-01 1.3957000000000000e-01 1 0 0 0 0 P 199 211 1.5799231833722743e-01 1.2829180579397864e-01 -2.2259529935095789e-02 2.4778141911851093e-01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 2.3783615382355153e-05 -1.0772725026610702e-05 1.2968483078645499e-05 3.1767043684507084e-05 0 2 0 P 200 22 1.7657765075077661e-01 -2.1916418151468692e-02 3.7938419506307199e-02 1.8193218462902550e-01 0 1 0 0 0 0 P 201 22 7.7815531707576671e-02 -9.3310293986728882e-02 1.0077445610138949e-01 1.5785296621018408e-01 0 1 0 0 0 0 V -62 0 -1.2241470715280829e-04 -2.7758606908862108e-04 7.1130978239720619e-04 7.7432085228702383e-04 0 2 0 P 202 22 -3.2425037015369962e-01 -7.0680133778030163e-01 1.6678581533867187e+00 1.8402329345632826e+00 0 1 0 0 0 0 P 203 22 -9.2528635186087976e-02 -2.3828155676537199e-01 7.5390137609451735e-01 7.9605711698416226e-01 0 1 0 0 0 0 V -63 0 1.2205241442554517e-04 -4.6311612447142342e-05 1.8007039488936319e-03 1.8072631008052167e-03 0 2 0 P 204 22 6.0712182660483671e-02 -5.5414558048152235e-02 1.8575238397150300e+00 1.8593417000316914e+00 0 1 0 0 0 0 P 205 22 1.4171424946054331e-01 -2.1394200857355133e-02 1.1289805846045864e+00 1.1380412122346906e+00 0 1 0 0 0 0 V -64 0 1.3187690980752360e-04 2.4324333480215918e-06 2.4869804863246196e-03 2.4907322429988522e-03 0 2 0 P 206 22 2.8739244296390237e-01 6.1550103958371103e-03 6.5867474635347527e+00 6.5930170975667313e+00 0 1 0 0 0 0 P 207 22 2.1059511247641385e-01 3.0302331659108786e-03 2.8044745071662196e+00 2.8123720851013303e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 1 0 P 208 310 3.9062521392269138e+00 1.1663584075914477e+00 1.4797709526513145e+00 4.3653860323440670e+00 4.9767000000000000e-01 2 0 0 -85 0 V -66 0 -4.4828297213898242e-02 -2.8554915454821379e+00 2.6131134060691983e+02 2.6137192824802725e+02 0 2 0 P 209 22 2.0086248546655937e-02 -2.3631858440864820e-03 5.0811625689924202e+00 5.0812028196636341e+00 0 1 0 0 0 0 P 210 22 -5.6405618806685091e-02 -2.2435717789682200e-01 1.7417644809014185e+01 1.7419181049351476e+01 0 1 0 0 0 0 V -67 0 -1.2715115287520356e-05 -9.1276101457558024e-05 6.3240278166489033e-03 6.3248114921746791e-03 0 2 0 P 211 22 -8.9887655237086944e-02 -1.6789691230980500e-01 1.3005094149396999e+01 1.3006488496070231e+01 0 1 0 0 0 0 P 212 22 4.4335489062777310e-02 -1.5910162819250998e-01 9.6508676315933570e+00 9.6522808188645417e+00 0 1 0 0 0 0 V -68 0 -4.3078466159489831e-01 -3.2935896713447327e-01 4.1957884464604071e+01 4.2002241832437612e+01 0 2 0 P 213 2212 -1.8926521465679530e-01 -7.2906094803932744e-02 2.0294020939674937e+01 2.0316711670765116e+01 9.3827000000000005e-01 1 0 0 0 0 P 214 -211 -7.0236552354838819e-02 -1.2549751974466553e-01 4.9811249262977775e+00 4.9851547736287785e+00 1.3957000000000000e-01 1 0 0 0 0 V -69 0 1.7021571959508271e-07 -1.0439024157485375e-05 8.9425948392707712e-06 1.3949369388651086e-05 0 2 0 P 215 22 -1.7669328460562999e-02 -5.7714341083876752e-01 4.8270747483346788e-01 7.5260429715950772e-01 0 1 0 0 0 0 P 216 22 2.7367346232081886e-02 -1.7618589036670101e-02 2.6795665540685822e-02 4.2159150978144884e-02 0 1 0 0 0 0 V -70 0 7.5423030891952710e-06 -4.4755713065910086e-06 -5.1890586004128097e-06 1.0389534092735131e-05 0 2 0 P 217 22 1.4362929610120462e-01 -2.9356850437311854e-02 -1.2392822351308995e-01 1.9196198568788717e-01 0 1 0 0 0 0 P 218 22 3.5921513593537208e-01 -2.6902894566334246e-01 -2.2202568391699348e-01 5.0070699197095925e-01 0 1 0 0 0 0 V -71 0 1.5536416395621439e-04 -4.4989420659305477e-05 -2.7482198444002686e-04 3.3507425066298021e-04 0 2 0 P 219 22 1.1281250078995506e-01 -1.0045238926211270e-01 -2.0409733519664883e-01 2.5391546836954199e-01 0 1 0 0 0 0 P 220 22 9.1015281578553056e-02 4.1429165311867980e-02 -1.5645141818453737e-01 1.8568037987685826e-01 0 1 0 0 0 0 V -72 0 1.2592156711305766e-06 -1.7235713966512797e-06 -2.1107283223479801e-05 2.8560093438506292e-05 0 2 0 P 221 22 6.7252752100757790e-02 1.3554340136002419e-02 -5.4572710407607673e-02 8.7663182253903169e-02 0 1 0 0 0 0 P 222 22 -5.8363538216408578e-02 -2.5721592451107184e-02 -9.4430482129369067e-02 1.1395182695571028e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 223 22 -8.2670646622258551e-02 -9.0858546827540937e-02 -4.0896773102695350e-01 4.2701793447803743e-01 0 1 0 0 0 0 P 224 22 6.4623847355221045e-02 1.3128941406866726e-01 1.2394645789636408e-01 1.9177037393335830e-01 0 1 0 0 0 0 V -74 0 -7.5757878446558126e-07 -2.5593736323899321e-06 -1.0935870669797184e-05 1.1323694681422454e-05 0 2 0 P 225 22 -3.8903361929632688e-02 -1.9039307692874238e-01 -9.9999744394602197e-01 1.0187040213969902e+00 0 1 0 0 0 0 P 226 22 -4.4355060921954265e-02 -9.0883823230285515e-02 -2.0186216873906354e-01 2.2577771352013959e-01 0 1 0 0 0 0 V -75 0 -2.0011531590686564e+00 -1.2988537012850854e+01 -1.5349890276584082e+02 1.5416582921976357e+02 0 2 0 P 227 -211 -1.6250552652228614e-01 -4.3053202253356693e-01 -7.3820674512601263e+00 7.3977135324660486e+00 1.3957000000000000e-01 1 0 0 0 0 P 228 211 -1.2234923776142858e-02 -7.0362544865152721e-01 -6.0214380565846897e+00 6.0640279121666545e+00 1.3957000000000000e-01 1 0 0 0 0 V -76 0 3.1614422235338377e-06 1.1958499018380916e-05 -1.9662592261832199e-04 1.9705482884165503e-04 0 2 0 P 229 22 1.2728634279174489e-01 2.3085121436728534e-01 -4.2372978131565855e+00 4.2454901782500594e+00 0 1 0 0 0 0 P 230 22 -2.0105631950298731e-02 1.7457148032744951e-01 -2.4288072952043707e+00 2.4351559119320898e+00 0 1 0 0 0 0 V -77 0 4.2125722713171825e-06 -1.8673391362971367e-04 -6.2654164056180541e-03 6.2683639631775376e-03 0 2 0 P 231 22 5.3063148884729912e-02 -1.0287091832894543e-01 -4.3772314430216452e+00 4.3787616091064780e+00 0 1 0 0 0 0 P 232 22 -4.0525179156413731e-02 -4.5290925719010711e-01 -1.4270662567915297e+01 1.4277905280981974e+01 0 1 0 0 0 0 V -78 0 -5.7497915860313319e-06 5.2174244047258550e-05 -8.9766626021072441e-03 8.9771303683133085e-03 0 2 0 P 233 22 -5.9881355551595156e-02 1.5872718816048177e-03 -5.5708430743400301e+00 5.5711651254559840e+00 0 1 0 0 0 0 P 234 22 4.9549749961098767e-02 9.2162858608019177e-02 -1.0559017658220041e+01 1.0559536120343100e+01 0 1 0 0 0 0 V -79 0 -2.1481967128576893e-05 -5.1306428448543984e-06 -1.4308438582110358e-02 1.4308851896300883e-02 0 2 0 P 235 22 -6.4433658095431126e-02 2.9353350727695834e-02 -6.0646564408385863e+00 6.0650697490547811e+00 0 1 0 0 0 0 P 236 22 3.7204489477000724e-02 -3.5856625698154218e-02 -1.2071805852712476e+01 1.2071916435149260e+01 0 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 237 -211 1.3265877933167001e-02 -8.4844176824957457e-02 -6.5057297583995108e+01 6.5057503973294686e+01 1.3957000000000000e-01 1 0 0 0 0 P 238 211 -1.5387351566528482e-01 1.7630640282155746e-02 -5.0411385900473768e+01 5.0411817028249295e+01 1.3957000000000000e-01 1 0 0 0 0 P 239 111 -9.3094035857999857e-02 1.4066012664657090e-01 -6.6211445895618525e+01 6.6211798336546934e+01 1.3497999999999999e-01 2 0 0 -86 0 V -81 0 0 0 0 0 0 1 0 P 240 310 1.3802804182738018e-01 -6.1280472352855708e-01 -3.9335865233651123e+02 3.9335946871124725e+02 4.9767000000000000e-01 2 0 0 -87 0 V -82 0 8.7766920096440471e-05 1.4744638182767400e-04 9.9865033544147488e-05 1.9993534115750168e-04 0 2 0 P 241 22 6.8144379384559445e-02 6.1816656189344316e-02 2.2518911236845469e-02 9.4720941651945695e-02 0 1 0 0 0 0 P 242 22 4.3352804592725530e-01 7.8098133528240010e-01 5.4830587704201406e-01 1.0481019737906219e+00 0 1 0 0 0 0 V -83 0 1.5256392014834823e-04 2.8799597630845193e-04 2.0544976071658902e-04 3.8561079800150373e-04 0 2 0 P 243 22 1.1757714438075906e-01 1.9246226796220284e-01 1.0245407405432561e-01 2.4771545523083108e-01 0 1 0 0 0 0 P 244 22 1.1388196672155371e+00 2.1792467575705881e+00 1.5894690494243491e+00 2.9278726959853927e+00 0 1 0 0 0 0 V -84 0 1.8625191479016440e-04 3.1065027678306119e-04 2.3134753590603699e-04 4.2992021256161260e-04 0 2 0 P 245 22 2.9759296360383679e-02 3.2644264234811163e-02 4.0774641631349397e-02 6.0115182004733959e-02 0 1 0 0 0 0 P 246 22 2.3010784411867542e+00 3.8549688597493486e+00 2.8544093772059616e+00 5.3200939648480823e+00 0 1 0 0 0 0 V -85 0 1.9379370039643442e+02 5.7864393730706155e+01 7.3413153691151606e+01 2.1657186549004857e+02 0 2 0 P 247 211 3.3194674978397165e+00 1.0281767868352276e+00 1.1428140808849845e+00 3.6608080778115197e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 -211 5.8678464138719710e-01 1.3818162075621995e-01 3.3695687176633010e-01 7.0457795453254735e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 -2.6367161986165323e-05 3.9839376498209416e-05 -1.8753166120447792e-02 1.8753265942815185e-02 0 3 0 P 249 22 -6.1794038869330763e-02 1.1064822189264269e-01 -2.4354069413296656e+01 2.4354399161546141e+01 0 1 0 0 0 0 P 250 -11 -1.4034217320468896e-02 1.1061732049640564e-02 -1.6060023909116758e+01 1.6060033858702592e+01 5.1000000000000004e-04 1 0 0 0 0 P 251 11 -1.7265779668200202e-02 1.8950172704287650e-02 -2.5797352573205110e+01 2.5797365316298201e+01 5.1000000000000004e-04 1 0 0 0 0 V -87 0 1.6783627139863602e+00 -7.4514467155255133e+00 -4.7830751386821648e+03 4.7830850654542846e+03 0 2 0 P 252 -211 1.1698117862715647e-01 -4.3069844869114193e-01 -1.5508639670284671e+02 1.5508710168098281e+02 1.3957000000000000e-01 1 0 0 0 0 P 253 211 2.1046863200223701e-02 -1.8210627483741515e-01 -2.3827225563366451e+02 2.3827236703026446e+02 1.3957000000000000e-01 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 U GEV MM C 1.2050000000000000e-01 1.0000000000000000e-02 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 0 U GEV MM C 1.2060000000000000e-01 1.0000000000000000e-02 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 1.5073383106491554e+00 -1.2993365623313919e+00 2.7209201338025518e+03 2.7209208615607290e+03 0 3 0 0 -3 0 P 13 2203 -1.5073383106491554e+00 1.2993365623313919e+00 4.2445390246486650e+03 4.2445395612551065e+03 7.7132999999999996e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 2.5858216316097202e+00 -2.1708479932488607e+00 -4.3397297718328176e+01 4.3528433279564204e+01 0 3 0 0 -4 0 P 16 2 -9.0692769071088786e-01 1.4604855287320972e+00 -7.6935046429856322e+02 7.6935245586936981e+02 3.3000000000000002e-01 2 0 0 -11 0 P 31 2101 -1.6788939408988324e+00 7.1036246451676344e-01 -6.0892474052497901e+03 6.0892477056910939e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 6 0 P 5 -3 1.9131593054692739e+00 -4.0833345117393832e-01 1.5134760262017681e+02 1.5136024489148531e+02 0 3 0 0 -5 0 P 11 3 -2.3763962284599889e+00 -1.5682078523784135e+00 3.3160241945312552e+00 4.3991534823891785e+00 5.0000000000000000e-01 2 0 0 -9 0 P 12 21 -1.7899416997370041e-01 2.7373785189054706e-01 1.8197775504657279e-01 3.7428228354280341e-01 0 2 0 0 -9 0 P 17 1 1.1548355662297878e+00 3.4375600693342656e-01 1.0589855551638902e+03 1.0589862920544110e+03 3.3000000000000002e-01 2 0 0 -13 0 P 18 21 1.2020137443834598e+00 -9.8631711370454744e-01 1.4970067852719885e+03 1.4970075927692765e+03 0 2 0 0 -13 0 P 19 21 -2.4138821327432236e-01 9.7656750468602660e-01 8.6876499652477523e+00 8.7456969007269940e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 8 0 P 6 4 -5.9089825329223244e-01 -1.6901151672419878e+00 -1.5889612462364616e+01 1.5990166798017459e+01 0 3 0 0 -5 0 P 14 -4 1.2883406923195979e+00 -8.1779995058646193e-02 -1.5140846367359584e+01 1.5269634521725274e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 4.8780533685027683e-01 -5.0842485147169025e-01 -1.9217346871295313e+00 2.0468302528471822e+00 0 2 0 0 -11 0 P 26 21 7.3199240075760574e-01 2.4932276178633131e-01 -7.8263490844843397e-01 1.1002236655488444e+00 0 2 0 0 -13 0 P 27 21 3.8517080731795145e-01 1.6355688468072610e-01 -4.1897803992779883e+00 4.2106255116681233e+00 0 2 0 0 -13 0 P 28 21 -4.9565627720230027e-01 -4.4399621171836968e-02 -1.3956559470714644e-01 5.1684139415898722e-01 0 2 0 0 -13 0 P 29 21 6.4928719605614766e-03 1.4868576029816710e-01 1.7868600341142118e-01 2.3254741563149370e-01 0 2 0 0 -13 0 P 30 21 8.0668235928323240e-01 -3.3823327368415140e-01 -4.1172703508799797e+00 4.2091630187533973e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 3 0 0 -6 0 P 8 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821259e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821045e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 13 0 P 32 -3 -1.8175462476630642e+00 -2.6075903952270956e+00 7.4978093125731151e+00 8.1590530406035970e+00 5.0000000000000000e-01 2 0 0 -15 0 P 33 21 -7.7086820243997201e+00 -1.2078882165221280e+01 4.1059302235880892e+01 4.3487808326150649e+01 0 2 0 0 -15 0 P 34 21 -8.6664999417158739e-01 -2.3788922262766904e-01 4.1521896803822882e+00 4.2483352782605541e+00 0 2 0 0 -15 0 P 35 21 -2.7355636784212805e+00 -4.9103226906665798e+00 4.5665344073097550e+01 4.6009979644415822e+01 0 2 0 0 -15 0 P 36 21 -8.1750908960544592e-03 -2.4124905925706416e-02 6.8686147210170772e+00 6.8686619533188251e+00 0 2 0 0 -15 0 P 37 21 6.4416385788967663e+00 3.9997054871194289e+00 1.5990357572048969e+01 1.7697002199435030e+01 0 2 0 0 -15 0 P 38 21 4.3820415185385482e+00 1.4472618519174791e+00 9.4571366554555141e+00 1.0523036085568249e+01 0 2 0 0 -15 0 P 39 21 1.5785379900501961e+00 6.3340244933387069e-01 4.9379047129305471e+00 5.2226318846761126e+00 0 2 0 0 -15 0 P 40 21 2.1695667705919841e-01 -2.8556071886963619e-01 9.3101540850151454e-01 9.9769976182675046e-01 0 2 0 0 -15 0 P 41 21 4.4744182629032359e-01 3.7836193256341005e-01 7.6527884936886914e-01 9.6385354552363345e-01 0 2 0 0 -15 0 P 42 21 7.0915200046107396e-01 9.4447177453203079e-01 5.3145921951374853e-01 1.2951341222637094e+00 0 2 0 0 -15 0 P 43 21 1.1637549392207085e+00 6.4262106092344524e+00 1.4233902665894258e+00 6.6840517804561888e+00 0 2 0 0 -15 0 P 44 4 1.1845655554320238e+00 8.2373132175066175e+00 1.2079282052863620e+00 8.5419912870215189e+00 1.5000000000000000e+00 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 45 92 -4.0627287090828448e+00 4.8665618435255187e-03 4.2480370265982428e+03 4.2493129970210384e+03 1.0404740032327815e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 14 0 P 46 3122 -7.3771937707635449e-01 -1.9294115521747696e-01 2.3626223120200218e+00 2.7217976082628574e+00 1.1156800000000000e+00 2 0 0 -17 0 P 47 113 -5.8649080238289153e-01 -3.6887303658376347e-01 1.5544771643782693e+00 1.8799923714648183e+00 7.9870725788248087e-01 2 0 0 -18 0 P 48 -2112 -8.3505206138920984e-01 -4.5948159379032477e-01 3.2157041824918604e+00 3.4830992599204103e+00 9.3957000000000002e-01 1 0 0 0 0 P 49 -211 -4.6959323148633048e-01 -1.2832517867366380e-01 9.7275164850053275e-01 1.0966816808444948e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 321 2.1227525312906162e-01 -1.5289242719376326e-02 2.1781765734125420e+00 2.2435214928761309e+00 4.9359999999999998e-01 1 0 0 0 0 P 51 -321 -2.7058491563472709e-01 -6.9924173239626061e-02 6.3841624885677168e+00 6.4093117592302722e+00 4.9359999999999998e-01 1 0 0 0 0 P 52 213 2.1203810470765724e-01 2.0958133779211251e-02 6.7514724368505332e+00 6.8027312640157040e+00 8.0583694606582701e-01 2 0 0 -19 0 P 53 111 -3.3213424623765248e-01 3.4211924550281853e-01 4.3402841912560630e+00 4.3684831688967929e+00 1.3497999999999999e-01 2 0 0 -20 0 P 54 -211 3.1101552012023875e-01 -7.6976657694286010e-01 4.3071461940135706e+01 4.3079688771881727e+01 1.3957000000000000e-01 1 0 0 0 0 P 55 211 -1.6705318266988844e-01 2.9031993215322216e-01 2.3857982790456216e+01 2.3860742131028751e+01 1.3957000000000000e-01 1 0 0 0 0 P 56 311 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -21 0 P 57 -311 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -22 0 P 58 2112 -4.9118388741375185e-01 1.5592546903498823e+00 3.6302423682361400e+03 3.6302428579180933e+03 9.3957000000000002e-01 1 0 0 0 0 P 59 211 -4.2689663996527044e-01 -1.8418355465330538e-01 4.2449709914417917e+02 4.2449737670088257e+02 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 60 92 8.6921833845898688e-01 8.7028068220176080e-01 -7.8641304535305233e+02 7.8666892064394222e+02 2.0024981314782629e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 9 0 P 61 -411 1.1688720643707666e+00 -7.4513028084903610e-01 -1.6866644499133198e+01 1.7026434159519269e+01 1.8693000000000000e+00 2 0 0 -23 0 P 62 213 3.7470388189717097e-01 1.1020281521248323e-01 -1.5451543037357895e+01 1.5475868794289363e+01 7.7445790275939808e-01 2 0 0 -24 0 P 63 -213 -2.1178538509080652e-01 3.9040080476128763e-01 -2.5920552948920815e+01 2.5932809177743518e+01 6.6201271419408125e-01 2 0 0 -25 0 P 64 211 -1.0539248551241585e-01 -5.6877312112187807e-02 -2.4813930335012659e+00 2.4881989020663533e+00 1.3957000000000000e-01 1 0 0 0 0 P 65 -2224 6.3960254240566017e-01 -4.3830975700149433e-02 -3.3696696807691140e+01 3.3728822474444563e+01 1.3247932655519623e+00 2 0 0 -26 0 P 66 111 -4.9002768594274757e-02 -9.3633614435907869e-02 -1.7412505148631521e+00 1.7496689632594586e+00 1.3497999999999999e-01 2 0 0 -27 0 P 67 2212 -1.7983236018661933e-01 2.1939525582136044e-01 -1.6103988517067441e+02 1.6104286833117743e+02 9.3827000000000005e-01 1 0 0 0 0 P 68 213 -7.6187580460114623e-01 8.5913101305733230e-01 -1.2365619630425306e+02 1.2366417060794262e+02 8.0848430729299015e-01 2 0 0 -28 0 P 69 331 -6.0713462293482384e-03 2.3062297644657839e-01 -4.0555888303665745e+02 4.0556007923349972e+02 9.5761898627699404e-01 2 0 0 -29 0 V -13 0 0 0 0 0 6 1 0 P 20 21 2.7497223922082998e+00 -3.2443890390539156e+00 2.5418671295121317e+01 2.5771998057588963e+01 0 2 0 0 -13 0 P 21 21 -2.0575204360516910e-01 2.4229652480183916e+00 4.9419044762411302e+00 5.5077685453225653e+00 0 2 0 0 -13 0 P 22 21 -2.7497223922082998e+00 3.2443890390539156e+00 6.7021782526682061e-01 4.3053716917648712e+00 0 2 0 0 -13 0 P 23 21 2.0575204360516910e-01 -2.4229652480183916e+00 -1.4189664353904355e-01 2.4358220694459964e+00 0 2 0 0 -13 0 P 24 21 1.2587821098669902e+00 -2.6667816242118747e-01 -5.8254265308406481e+01 5.8268474119927362e+01 0 2 0 0 -13 0 P 25 21 -1.2587821098669902e+00 2.6667816242118747e-01 -3.6098622829217867e+01 3.6121547860087098e+01 0 2 0 0 -13 0 P 70 92 1.8712493185571446e+00 1.2233013743409056e+00 -3.5970819712830998e+03 8.7966676707654060e+03 8.0275997909536509e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 50 0 P 71 -213 8.7695914611789827e-01 -1.3056393899451380e-01 7.7453546713867104e+02 7.7453638241747433e+02 7.9481340084842744e-01 2 0 0 -30 0 P 72 223 4.8295247219301213e-01 -1.9931783509541660e-02 9.9052523820924489e+02 9.9052566384292925e+02 7.8074427808345570e-01 2 0 0 -31 0 P 73 211 1.3850104916568237e-01 -4.3565090467300321e-01 6.8677299646723853e+01 6.8678962869296143e+01 1.3957000000000000e-01 1 0 0 0 0 P 74 111 4.2475962909123333e-01 1.2253088954042510e-01 3.4986130518811797e+02 3.4986161052921358e+02 1.3497999999999999e-01 2 0 0 -32 0 P 75 113 2.5170671641125530e-01 7.9527061042662023e-02 2.2599488119587267e+02 2.2599641994950557e+02 7.9108939580457083e-01 2 0 0 -33 0 P 76 -211 -1.9221335908804853e-02 -5.3067745014872614e-01 1.3807915012377745e+02 1.3808024176798583e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 213 -1.4049907214162011e-01 5.4367330912058265e-01 1.1669475275555600e+01 1.1707613671742026e+01 7.5910738610194239e-01 2 0 0 -34 0 P 78 223 8.1633397897400806e-01 -8.5768108564839712e-02 9.2590479009986204e+00 9.3278515479896740e+00 7.7787475513226845e-01 2 0 0 -35 0 P 79 -211 -1.4210113651499059e-01 -3.8388855788894088e-01 1.4955103913496963e+00 1.5567897332047844e+00 1.3957000000000000e-01 1 0 0 0 0 P 80 111 9.5463497763658234e-01 -3.9478491268212601e-01 7.3124203460701409e+00 7.3862638719334406e+00 1.3497999999999999e-01 2 0 0 -36 0 P 81 211 7.2490675961385420e-02 1.3169438131253494e-01 3.6667839444915624e+00 3.6725172005930387e+00 1.3957000000000000e-01 1 0 0 0 0 P 82 -213 4.4126493964800634e-01 -2.1003298064756973e-01 3.0615450194359637e+00 3.2079186412104401e+00 8.2392687944381182e-01 2 0 0 -37 0 P 83 111 -2.3027854891341855e-02 -2.8065908362951703e-01 6.3048404098198441e-01 7.0358334947440981e-01 1.3497999999999999e-01 2 0 0 -38 0 P 84 213 2.2642962321946897e-01 6.4703057792370411e-01 8.0785724570491790e-01 1.2852258827712018e+00 7.2749797062774335e-01 2 0 0 -39 0 P 85 111 -3.9094005207012528e-01 2.2862878685255186e-01 1.1012349532976333e+00 1.1983502281281138e+00 1.3497999999999999e-01 2 0 0 -40 0 P 86 2112 3.7269907250953721e-01 -2.8015513221139599e-01 4.1715239773705060e+00 4.3013713598608181e+00 9.3957000000000002e-01 1 0 0 0 0 P 87 -2212 -4.4502325970543771e-01 -2.1754495217768732e-01 1.7491568031425615e+00 2.0457936412983475e+00 9.3827000000000005e-01 1 0 0 0 0 P 88 321 -5.0379083550468627e-02 1.8803084736306059e+00 2.7277173368670735e+00 3.3499523635287178e+00 4.9359999999999998e-01 1 0 0 0 0 P 89 -323 -8.1116466091627526e-01 1.0534532017480058e+00 -8.4500355663205268e-02 1.6198712899609433e+00 9.2146130170505902e-01 2 0 0 -41 0 P 90 211 -8.9799083863894580e-01 2.3005438883367976e-01 4.0876039776347678e-01 1.0226814830536783e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 331 3.8608499147221492e-01 -6.2301749856969058e-01 1.4524261016864801e-02 1.2064351176701817e+00 9.5815568402303219e-01 2 0 0 -42 0 P 92 113 -4.2308470357622924e-01 -1.7764392720888758e-01 -1.4921992585509802e+00 1.8764952260107282e+00 1.0411616948133349e+00 2 0 0 -43 0 P 93 -213 -5.9228690859513926e-02 -3.6096116901355901e-01 5.0680556828157078e-03 8.5602583207208316e-01 7.7392088525231784e-01 2 0 0 -44 0 P 94 223 4.4519376696515300e-01 -3.6599579577299851e-01 -9.3581058961126686e+00 9.4083900348679848e+00 7.8198892107010165e-01 2 0 0 -45 0 P 95 213 2.5449089999962965e-01 -5.2538580551351322e-01 -1.5990871713898519e+01 1.6022635374114184e+01 8.2223494126538865e-01 2 0 0 -46 0 P 96 -211 -3.9985126704558338e-01 6.0759733471177846e-01 -5.2292352414804952e+00 5.2814237240112059e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 221 -5.4103870668604441e-02 -1.8671774238069413e-01 -6.7313154173464085e+00 6.7563377279741221e+00 5.4744999999999999e-01 2 0 0 -47 0 P 98 213 3.2263683737559473e-01 -3.9310173367445850e-01 -3.0380981895830683e+01 3.0395598885213076e+01 7.9356608680380858e-01 2 0 0 -48 0 P 99 -211 4.0901777019801971e-01 2.4457160340083145e-01 -2.4147552200210995e+00 2.4652856554661087e+00 1.3957000000000000e-01 1 0 0 0 0 P 100 211 -3.8554471983155963e-01 4.8755575017222624e-01 -1.2591851607058537e+01 1.2607956298290325e+01 1.3957000000000000e-01 1 0 0 0 0 P 101 313 -2.7509880964698280e-02 -4.0663952030180289e-01 -4.3936450704745784e+00 4.5023486881603016e+00 8.9493810481577130e-01 2 0 0 -49 0 P 102 3224 -9.2672852486645571e-02 6.5585209965268648e-02 -4.0204721714874072e+00 4.2506978129614730e+00 1.3752620615928364e+00 2 0 0 -50 0 P 103 -3224 3.3909533539442915e-01 3.1246322967426809e-01 -4.3825925655100573e+00 4.6089362027682723e+00 1.3500208922602861e+00 2 0 0 -51 0 P 104 -313 2.9239998644659210e-01 4.7617792020952156e-02 -2.8607764941309388e+00 3.0128119422957576e+00 8.9734522012261986e-01 2 0 0 -52 0 P 105 -211 3.3114193757278626e-01 4.8736178797093938e-01 -6.8654531220075832e-01 9.1542380665925804e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 213 -6.5980063614748952e-01 -2.7824199752659268e-01 -8.6444920386959794e+00 8.7073410305708592e+00 7.6012481010450028e-01 2 0 0 -53 0 P 107 -211 6.7548772052830464e-01 2.8279401240234431e-01 -2.3109875521773585e+01 2.3121896170747007e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 -3.8123255767312253e-01 -3.0685043734591605e-01 -1.1953401963161754e+01 1.2004205412817816e+01 9.8875358218105502e-01 2 0 0 -54 0 P 109 331 1.4931133481974440e-01 -1.1268304079557502e-01 -9.9766292699747137e+00 1.0024233320468472e+01 9.5766942641267616e-01 2 0 0 -55 0 P 110 221 1.9001747233615021e-01 1.1235252860039266e-01 -1.1311205093270679e+01 1.1326596659853676e+01 5.4744999999999999e-01 2 0 0 -56 0 P 111 3122 -1.6531213545598181e-02 1.7941481008998922e-01 -9.7845632368603006e+01 9.7852158782672305e+01 1.1156800000000000e+00 2 0 0 -57 0 P 112 -3212 2.1512032592093658e-01 -4.9536064251785050e-01 -8.8021694916783730e+01 8.8031429673989905e+01 1.1925500000000000e+00 2 0 0 -58 0 P 113 213 -3.0271802830700351e-01 -1.8199115940732644e-01 -9.3693985986604460e+01 9.3696228323527890e+01 5.4353749629009396e-01 2 0 0 -59 0 P 114 -213 -1.4424928218799363e-01 8.0356077501503209e-01 -1.5775355144448991e+02 1.5775717774879575e+02 6.9110067374553441e-01 2 0 0 -60 0 P 115 111 1.7128022450432756e-01 -3.6555194441179756e-01 -8.1007288706637596e+01 8.1008407022606633e+01 1.3497999999999999e-01 2 0 0 -61 0 P 116 111 1.5788168370261174e-02 -4.8321618446635503e-02 -1.0310912881680434e+01 1.0311921658889448e+01 1.3497999999999999e-01 2 0 0 -62 0 P 117 213 1.9689425293322910e-01 -1.5224892223532024e-01 -6.4658169287785782e+01 6.4660495121341583e+01 4.8869889289292329e-01 2 0 0 -63 0 P 118 -211 -7.1825664261600375e-01 -2.9746020738896345e-01 -7.9981103969115236e+02 7.9981142969252869e+02 1.3957000000000000e-01 1 0 0 0 0 P 119 211 -7.0721336506262444e-02 7.1538494473250414e-01 -1.9344004753605057e+02 1.9344143363731823e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2112 -9.2559101045397996e-01 2.0797149321907010e-01 -4.4406806478088056e+03 4.4406808485395886e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 121 92 2.9874720503971322e+00 1.9223572236693229e+00 1.4048773091264587e+02 1.6069923890952060e+02 7.7941147044214631e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 23 0 P 122 321 -1.9596084643502856e+00 -3.0602237549375295e+00 9.0339720928884173e+00 9.7499398715542842e+00 4.9359999999999998e-01 1 0 0 0 0 P 123 111 -2.1221753418868241e+00 -3.0794768752118356e+00 9.7608878684791733e+00 1.0453705447739610e+01 1.3497999999999999e-01 2 0 0 -64 0 P 124 -213 -5.8801121921525645e+00 -8.8594710964628405e+00 3.2017570968426774e+01 3.3747254672951620e+01 8.2849245105086544e-01 2 0 0 -65 0 P 125 213 -1.1405902431970816e+00 -2.4992193557709950e+00 2.1111220865463821e+01 2.1310746560358947e+01 9.5772075174289650e-01 2 0 0 -66 0 P 126 -211 -5.9892796811931859e-01 2.1874519221366373e-01 6.1395360304544235e+00 6.1741352936472156e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 213 -4.5559783483989907e-01 -3.2530999344707040e-01 6.7553426559176861e+00 6.8289650272447275e+00 8.2868146203666626e-01 2 0 0 -67 0 P 128 113 -5.7440792125096041e-01 -1.3510713832725041e+00 1.4285720978915283e+01 1.4384112737546413e+01 8.1580452090620947e-01 2 0 0 -68 0 P 129 -323 1.3411301224220290e-01 5.6031818823388205e-03 2.7919730682451793e+00 2.9745260344901774e+00 1.0171891762860905e+00 2 0 0 -69 0 P 130 313 1.2324498805479818e+00 3.7849258064035401e-01 4.8207774900212632e+00 5.0746247963754492e+00 9.2180902253684249e-01 2 0 0 -70 0 P 131 211 1.6120206802060957e-01 -7.1135203600750430e-02 1.1811311498599026e+00 1.2023297808816087e+00 1.3957000000000000e-01 1 0 0 0 0 P 132 223 1.2785603990255554e+00 8.1470418811002865e-01 4.2252255004056352e+00 4.5561557209133206e+00 7.7946444168590967e-01 2 0 0 -71 0 P 133 113 1.2567864011156424e+00 4.7197901755798238e-01 3.3548075691944046e+00 3.6963380307328726e+00 7.7839884382872360e-01 2 0 0 -72 0 P 134 -213 1.5702635608886917e+00 6.2797790528091013e-01 3.9810681837186714e+00 4.3848941954086769e+00 7.1993702595142928e-01 2 0 0 -73 0 P 135 -313 2.9950025276104766e+00 1.4295147405663253e+00 7.2274828460366631e+00 8.0017007909111246e+00 8.8156379441532173e-01 2 0 0 -74 0 P 136 311 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -75 0 P 137 213 1.6729071976051537e+00 8.5620849094171136e-01 3.0695739662043788e+00 3.7282048788027744e+00 9.7237637392591791e-01 2 0 0 -76 0 P 138 -2212 5.6456212520249682e-01 1.0007903273826917e+00 2.0028501160208223e+00 2.4924026265313830e+00 9.3827000000000005e-01 1 0 0 0 0 P 139 -213 9.5986336228977864e-01 4.5552201652155105e-01 6.3324037919285980e-01 1.4469243010152428e+00 7.5083858000640402e-01 2 0 0 -77 0 P 140 2224 -7.8524718047965902e-02 1.4537681742328321e+00 2.1735353569266671e+00 2.8439842589241842e+00 1.1155189292169956e+00 2 0 0 -78 0 P 141 -213 4.3109300650004678e-01 9.7089208546243078e-01 9.3226226300081128e-01 1.6345673268370955e+00 8.2111192725543636e-01 2 0 0 -79 0 P 142 223 8.4775152594623793e-01 6.9685656413280006e-01 5.1616019999694440e-01 1.4417240686217714e+00 7.7965070208605758e-01 2 0 0 -80 0 P 143 213 -6.9411667715650036e-02 8.6435598231357802e-01 -4.6980410204834594e-02 1.0258343082727188e+00 5.4607657458456793e-01 2 0 0 -81 0 P 144 423 1.9798114286895228e+00 1.0463034435943911e+01 2.2730832830925096e+00 1.1071968903622894e+01 2.0066999999999999e+00 2 0 0 -82 0 V -17 0 -1.9844667492655856e+00 -5.1901213251491485e-01 6.3554592233402145e+00 7.3216415613673087e+00 0 2 0 P 145 2212 -5.6405112594990248e-01 -8.2328990329775781e-02 1.8320933095166183e+00 2.1358483614268189e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -211 -1.7366825112645196e-01 -1.1061216488770119e-01 5.3052900250340351e-01 5.8594924683603844e-01 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 147 211 -1.2405291990440502e-01 1.5180733255592282e-01 9.8520447119075288e-02 2.6003972111024848e-01 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 -4.6243788247848655e-01 -5.2068036913968629e-01 1.4559567172591938e+00 1.6199526503545698e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 149 211 -1.6401757664718711e-01 -1.6181441769908414e-01 1.0378249140804121e+00 1.0722154673434461e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 111 3.7605568135484441e-01 1.8277255147829538e-01 5.7136475227701213e+00 5.7305157966722584e+00 1.3497999999999999e-01 2 0 0 -83 0 V -20 0 -2.1337750193070739e-05 2.1979230023625941e-05 2.7883875537992317e-04 2.8065038049059407e-04 0 2 0 P 151 22 -2.0299074029907288e-01 2.6252242577301055e-01 2.4946979827878186e+00 2.5166726624665596e+00 0 1 0 0 0 0 P 152 22 -1.2914350593857957e-01 7.9596819729807991e-02 1.8455862084682444e+00 1.8518105064302333e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 1 0 P 153 310 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -84 0 V -22 0 0 0 0 0 0 1 0 P 154 310 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -85 0 V -23 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 3 0 P 155 333 2.3005001914978035e-01 -1.8891038012288625e-01 -8.2469504198468382e+00 8.3158471983839330e+00 1.0259206872019917e+00 2 0 0 -86 0 P 156 -211 6.7707841467988750e-01 -6.3633879806255356e-01 -5.9907253670076601e+00 6.0639617786851350e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 111 2.6174363054109889e-01 8.0118897336403663e-02 -2.6289687122787009e+00 2.6466251824502018e+00 1.3497999999999999e-01 2 0 0 -87 0 V -24 0 0 0 0 0 0 2 0 P 158 211 2.6553185864339701e-01 3.5264117770652248e-01 -5.3710811805618999e+00 5.3909976628871830e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 111 1.0917202325377394e-01 -2.4243836249403924e-01 -1.0080461856795997e+01 1.0084871131402181e+01 1.3497999999999999e-01 2 0 0 -88 0 V -25 0 0 0 0 0 0 2 0 P 160 -211 -2.4426207882457773e-01 2.0745765263264787e-01 -5.5682657854634128e+00 5.5792263158300033e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 111 3.2476693733771218e-02 1.8294315212863976e-01 -2.0352287163457397e+01 2.0353582861913512e+01 1.3497999999999999e-01 2 0 0 -89 0 V -26 0 0 0 0 0 0 2 0 P 162 -2212 6.7891220695115995e-01 -2.6938319910007968e-01 -2.5439516053421304e+01 2.5467289151338523e+01 9.3827000000000005e-01 1 0 0 0 0 P 163 -211 -3.9309664545499771e-02 2.2555222339993028e-01 -8.2571807542698359e+00 8.2615333231060397e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 -1.7545294729911774e-05 -3.3525235594481608e-05 -6.2344953883797553e-04 6.2646373910703974e-04 0 2 0 P 164 22 -1.3943100255850547e-02 3.3588080481148697e-02 -2.5646016790007836e-01 2.5902584217504093e-01 0 1 0 0 0 0 P 165 22 -3.5059668338424207e-02 -1.2722169491705657e-01 -1.4847903469630739e+00 1.4906431210844178e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 166 211 1.1741752767951077e-01 5.9244901067751467e-02 -2.4668746433273466e+01 2.4669491831169758e+01 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -8.7929333228065698e-01 7.9988611198958082e-01 -9.8987449870979589e+01 9.8994678776772872e+01 1.3497999999999999e-01 2 0 0 -90 0 V -29 0 0 0 0 0 0 3 0 P 168 211 -6.7504817019198513e-02 2.1432555030263287e-02 -4.1979376582973444e+01 4.1979668344744397e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 -211 4.4469542840321237e-02 -6.9910430478048916e-02 -1.2780395423055235e+02 1.2780405729771864e+02 1.3957000000000000e-01 1 0 0 0 0 P 170 221 1.6963927949529032e-02 2.7910085189436401e-01 -2.3577555222313160e+02 2.3577635359103664e+02 5.4744999999999999e-01 2 0 0 -91 0 V -30 0 0 0 0 0 0 2 0 P 171 -211 8.6386022358688364e-01 -7.0654186651049333e-02 7.4701973770997915e+02 7.4702025357721789e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 111 1.3098922531014681e-02 -5.9909752343464469e-02 2.7515729428691831e+01 2.7516128840256126e+01 1.3497999999999999e-01 2 0 0 -92 0 V -31 0 0 0 0 0 0 2 0 P 173 22 1.6926641057211625e-01 3.6123228903412097e-01 3.7191796379176452e+02 3.7191817773657777e+02 0 1 0 0 0 0 P 174 111 3.1368606162089585e-01 -3.8116407254366264e-01 6.1860727441748043e+02 6.1860748610635142e+02 1.3497999999999999e-01 2 0 0 -93 0 V -32 0 5.6436604519175483e-07 1.6280330993721719e-07 4.6485077123992365e-04 4.6485117693795790e-04 0 2 0 P 175 22 3.8185582995770503e-02 2.3989543116426159e-02 1.5021587931467392e+01 1.5021655621792634e+01 0 1 0 0 0 0 P 176 22 3.8657404609546286e-01 9.8541346423998935e-02 3.3483971725665060e+02 3.3483995490742092e+02 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 177 211 1.7502709826283822e-01 -7.2253309396830834e-02 1.9461599680901642e+01 1.9463021269844411e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 7.6679618148417103e-02 1.5178037043949286e-01 2.0653328151497104e+02 2.0653339867966116e+02 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 179 211 1.6296883721185318e-01 5.6243079477968649e-01 8.2798181701248907e+00 8.3016718771611888e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -3.0346790935347329e-01 -1.8757485659103824e-02 3.3896571054307092e+00 3.4059417945808343e+00 1.3497999999999999e-01 2 0 0 -94 0 V -35 0 0 0 0 0 0 3 0 P 181 -211 1.9357415831584032e-01 5.5271447718090408e-02 3.1876873772349965e+00 3.1970856240619940e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 5.3124449692864362e-01 -7.7979213723395127e-02 5.6103361119600752e+00 5.6376992246264059e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 111 9.1515323729524131e-02 -6.3060342559535007e-02 4.6102441180354975e-01 4.9306669930127561e-01 1.3497999999999999e-01 2 0 0 -95 0 V -36 0 5.6399558106351325e-04 -2.3323778348715264e-04 4.3201567705729998e-03 4.3637833118717051e-03 0 2 0 P 184 22 6.0152711440246365e-01 -2.5407154692728640e-01 4.1453379317665098e+00 4.1964525243187989e+00 0 1 0 0 0 0 P 185 22 3.5310786323411864e-01 -1.4071336575483961e-01 3.1670824143036311e+00 3.1898113476146417e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 186 -211 1.1414130684189257e-01 2.6467084943073615e-01 6.4809866664659299e-01 7.2290425581473383e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 3.2712363280611384e-01 -4.7470383007830586e-01 2.4134463527893710e+00 2.4850143853957061e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -9.2152121994269624e-06 -1.1231324079235629e-04 2.5230505635093632e-04 2.8155770027142357e-04 0 2 0 P 188 22 4.4312363323561511e-02 -1.4226542374713172e-01 3.9594711711123376e-01 4.2305691802163847e-01 0 1 0 0 0 0 P 189 22 -6.7340218214903366e-02 -1.3839365988238528e-01 2.3453692387075067e-01 2.8052643145277134e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 190 211 4.0322473881604282e-01 6.3687839440575356e-01 5.4420540727985800e-01 9.4012955993668912e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 -1.7679511559657388e-01 1.0152183517950436e-02 2.6365183842505979e-01 3.4509632283451225e-01 1.3497999999999999e-01 2 0 0 -97 0 V -40 0 -1.1498802596763853e-04 6.7247069570746382e-05 3.2390857047193844e-04 3.5247329205758586e-04 0 2 0 P 192 22 -3.9541540899512673e-01 2.0790443889794896e-01 1.0051908558896452e+00 1.0999937536860889e+00 0 1 0 0 0 0 P 193 22 4.4753569250014945e-03 2.0724347954602883e-02 9.6044097407988055e-02 9.8356474442024944e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 194 -311 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -98 0 P 195 -211 -1.3776347211087997e-01 1.0257146128803515e-02 -1.9611982330692460e-01 2.7753694040378146e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 196 22 1.1928310723212228e-01 6.2424229046454179e-02 9.2406209769038995e-03 1.3494677883904066e-01 0 1 0 0 0 0 P 197 223 2.6680188424009266e-01 -6.8544172761614486e-01 5.2836400399609018e-03 1.0714883388311411e+00 7.7913139842235690e-01 2 0 0 -99 0 V -43 0 0 0 0 0 0 2 0 P 198 -211 1.1668201970610442e-01 -4.4466239966254167e-01 -9.0124037193265960e-01 1.0212998268371851e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -5.3976672328233366e-01 2.6701847245365407e-01 -5.9095888661832063e-01 8.5519539917354281e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 200 -211 -2.8285333140334207e-01 -1.2677482532142470e-01 2.5528442376328292e-01 4.2512090672818953e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 2.2362464054382813e-01 -2.3418634369213437e-01 -2.5021636808046721e-01 4.3090492534389380e-01 1.3497999999999999e-01 2 0 0 -100 0 V -45 0 0 0 0 0 0 3 0 P 202 -211 1.9376355805150766e-01 -3.8720878823476292e-03 -1.4890898146180365e+00 1.5081205423945816e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 211 9.0701539973870052e-02 -4.3171555039072046e-01 -4.4139722644893755e+00 4.4381568271506877e+00 1.3957000000000000e-01 1 0 0 0 0 P 204 111 1.6072866893977533e-01 6.9591842500069612e-02 -3.4550438170052566e+00 3.4621126653227159e+00 1.3497999999999999e-01 2 0 0 -101 0 V -46 0 0 0 0 0 0 2 0 P 205 211 3.1601308074546486e-01 8.1951041368575422e-02 -4.1020722236496665e+00 4.1174089611455589e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 -6.1522180745835209e-02 -6.0733684688208867e-01 -1.1888799490248854e+01 1.1905226412968625e+01 1.3497999999999999e-01 2 0 0 -102 0 V -47 0 0 0 0 0 0 2 0 P 207 22 1.3142818429080874e-01 -6.7188657540822996e-02 -5.0545426544338246e-01 5.2656594818030733e-01 0 1 0 0 0 0 P 208 22 -1.8553205495941319e-01 -1.1952908483987112e-01 -6.2258611519030262e+00 6.2297717797938148e+00 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 209 211 1.1527824663344002e-01 1.7618369235062545e-01 -4.4313150484662591e+00 4.4385090527406499e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 111 2.0735859074215474e-01 -5.6928542602508403e-01 -2.5949666847364426e+01 2.5957089832472430e+01 1.3497999999999999e-01 2 0 0 -103 0 V -49 0 0 0 0 0 0 2 0 P 211 321 -1.8049013031365618e-01 -1.0298015469208779e-01 -3.4192346740575754e+00 3.4609230438827532e+00 4.9359999999999998e-01 1 0 0 0 0 P 212 -211 1.5298024934895790e-01 -3.0365936560971507e-01 -9.7441039641700233e-01 1.0414256442775469e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 213 3122 4.1566977743454060e-02 -9.0669325462081497e-03 -2.8301295872369461e+00 3.0423979630972817e+00 1.1156800000000000e+00 2 0 0 -104 0 P 214 211 -1.3423983023009964e-01 7.4652142511476796e-02 -1.1903425842504611e+00 1.2082998498641908e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 215 -3122 1.4644010092526616e-01 2.9462648835286787e-01 -3.9129095753338130e+00 4.0821382482636706e+00 1.1156800000000000e+00 2 0 0 -105 0 P 216 -211 1.9265523446916299e-01 1.7836741321400194e-02 -4.6968299017624388e-01 5.2679795450460165e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 217 -311 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -106 0 P 218 111 -1.4885300802435425e-01 -1.4978228857165021e-01 -8.0617713874096109e-01 8.4423523463322847e-01 1.3497999999999999e-01 2 0 0 -107 0 V -53 0 0 0 0 0 0 2 0 P 219 211 -2.5375029447482039e-01 -3.8243313097061077e-01 -2.4079874229302018e+00 2.4553059942703834e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 111 -4.0605034167266918e-01 1.0419113344401808e-01 -6.2365046157657771e+00 6.2520350363004749e+00 1.3497999999999999e-01 2 0 0 -108 0 V -54 0 0 0 0 0 0 2 0 P 221 211 -6.8803944468509970e-01 -3.0625630690087424e-01 -8.1868653584578439e+00 8.2226173074864803e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 3.0680688701197723e-01 -5.9413044504183564e-04 -3.7665366047039095e+00 3.7815881053313332e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 223 22 1.4803887835073931e-01 1.4431039886464253e-01 -3.9233262621300380e+00 3.9287695223623227e+00 0 1 0 0 0 0 P 224 113 1.2724564690050806e-03 -2.5699343966021754e-01 -6.0533030078446757e+00 6.0954637981061488e+00 6.6794787376515263e-01 2 0 0 -109 0 V -56 0 0 0 0 0 0 2 0 P 225 22 2.7486911490570909e-01 2.4665741492151072e-01 -5.0974148933587955e+00 5.1107760179546959e+00 0 1 0 0 0 0 P 226 22 -8.4851642569558877e-02 -1.3430488632111803e-01 -6.2137901999118847e+00 6.2158206418989801e+00 0 1 0 0 0 0 V -57 0 -5.1384144154367772e-01 5.5767693277105579e+00 -3.0413460358706184e+03 3.0415488970824849e+03 0 2 0 P 227 2212 -5.5781591737588045e-02 1.8546033000560758e-01 -7.5892828715246239e+01 7.5898875539197462e+01 9.3827000000000005e-01 1 0 0 0 0 P 228 -211 3.9250378191989864e-02 -6.0455199156183590e-03 -2.1952803653356771e+01 2.1953283243474850e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 229 -3122 1.5817021808919415e-01 -4.6711831736620663e-01 -7.8043803566704312e+01 7.8053335831090763e+01 1.1156800000000000e+00 2 0 0 -110 0 P 230 22 5.6950107831742425e-02 -2.8242325151643891e-02 -9.9778913500794122e+00 9.9780938428991330e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 231 211 -2.2057048299308663e-01 1.2058414904337308e-01 -3.1752686671178758e+01 3.1753988450239152e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -8.2147545313916867e-02 -3.0257530845069952e-01 -6.1941299315425702e+01 6.1942239873288742e+01 1.3497999999999999e-01 2 0 0 -111 0 V -60 0 0 0 0 0 0 2 0 P 233 -211 -7.4626039256974197e-02 5.5212060759843820e-02 -7.2841457685032779e+01 7.2841650550236082e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -6.9623242931019416e-02 7.4834871425518823e-01 -8.4912093759457122e+01 8.4915527198559630e+01 1.3497999999999999e-01 2 0 0 -112 0 V -61 0 3.7095050924952572e-05 -7.9169489839899478e-05 -1.7544170721174722e-02 1.7544412920692747e-02 0 2 0 P 235 22 1.3051674595057553e-02 -1.0381379811796879e-02 -7.9006772465227870e-01 7.9024371480813493e-01 0 1 0 0 0 0 P 236 22 1.5822854990927002e-01 -3.5517056460000063e-01 -8.0217220981985307e+01 8.0218163307798491e+01 0 1 0 0 0 0 V -62 0 1.5640011215518141e-06 -4.7868165371285921e-06 -1.0214154633381629e-03 1.0215153944162522e-03 0 2 0 P 237 22 6.9792978338652722e-02 -1.5039179832264731e-02 -7.2497788692693597e+00 7.2501304050382371e+00 0 1 0 0 0 0 P 238 22 -5.4004809968391555e-02 -3.3282438614370767e-02 -3.0611340124110744e+00 3.0617912538512102e+00 0 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 239 211 -1.0358361896008007e-01 -4.6590364867594776e-02 -3.1691643432288359e+01 3.1692154288599902e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 3.0047787189330916e-01 -1.0565855736772548e-01 -3.2966525855497423e+01 3.2968340832741681e+01 1.3497999999999999e-01 2 0 0 -113 0 V -64 0 -5.1181826233904744e-04 -7.4269664342761776e-04 2.3540942018907534e-03 2.5211853382997506e-03 0 2 0 P 241 22 -5.8725538308890379e-01 -9.5414217075973340e-01 2.8620591107837323e+00 3.0735384364945171e+00 0 1 0 0 0 0 P 242 22 -1.5349199587979205e+00 -2.1253347044521020e+00 6.8988287576954406e+00 7.3801670112450930e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 243 -211 -4.1839656186445389e+00 -5.7883022373468282e+00 2.0736168567910838e+01 2.1932126612587918e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -1.6961465735080259e+00 -3.0711688591160131e+00 1.1281402400515939e+01 1.1815128060363703e+01 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 2 0 P 245 211 -7.9207809269603291e-01 -2.3846094897531902e+00 1.8521407113532455e+01 1.8691595741767490e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -3.4851215050104867e-01 -1.1460986601780454e-01 2.5898137519313642e+00 2.6191508185914563e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 247 211 -4.5509931606842358e-01 -3.3463298989938156e-01 2.3300753748670862e+00 2.4016297930524053e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 -4.9851877147551659e-04 9.3229964523111226e-03 4.4252672810506004e+00 4.4273352341923227e+00 1.3497999999999999e-01 2 0 0 -116 0 V -68 0 0 0 0 0 0 2 0 P 249 211 1.2633607542023662e-01 -4.9385416405376997e-02 1.6813651929675688e+00 1.6925922191505520e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -7.0074399667119702e-01 -1.3016859668671270e+00 1.2604355785947714e+01 1.2691520518395860e+01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 251 -321 -1.2669965574403158e-01 -3.0792559741866704e-01 1.6866098932232190e+00 1.7886209403419544e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 111 2.6081266798623448e-01 3.1352877930100587e-01 1.1053631750219604e+00 1.1859050941482230e+00 1.3497999999999999e-01 2 0 0 -117 0 V -70 0 0 0 0 0 0 2 0 P 253 321 7.1130158276548627e-01 3.9730596402338592e-01 2.1769947433776453e+00 2.3762889225401733e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 5.2114829778249550e-01 -1.8813383383031970e-02 2.6437827466436179e+00 2.6983358738352758e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 255 -211 8.5658487028361097e-01 4.6170671721684930e-01 2.1597437012294618e+00 2.3729482448258929e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 211 1.8317520616048497e-01 2.8065561972304365e-01 6.9972896405861429e-01 7.8830269635248829e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 2.3880032258145939e-01 7.2341851170135779e-02 1.3657528351175596e+00 1.3949047797349405e+00 1.3497999999999999e-01 2 0 0 -118 0 V -72 0 0 0 0 0 0 2 0 P 258 -211 1.2763369501819466e+00 4.7616414147585207e-01 2.7105047171436283e+00 3.0367884197923716e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 211 -1.9550549066303984e-02 -4.1851239178697201e-03 6.4430285205077642e-01 6.5954961094050124e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 260 -211 1.4406480739443299e+00 5.7294582521730630e-01 3.8418712804254009e+00 4.1452609702949896e+00 1.3957000000000000e-01 1 0 0 0 0 P 261 111 1.2961548694436184e-01 5.5032080063603842e-02 1.3919690329327078e-01 2.3963322511368726e-01 1.3497999999999999e-01 2 0 0 -119 0 V -74 0 0 0 0 0 0 2 0 P 262 -321 2.3467978243028602e+00 8.7581671916669590e-01 5.0381757927884312e+00 5.6481298880925079e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 211 6.4820470330761637e-01 5.5369802139962943e-01 2.1893070532482319e+00 2.3535709028186163e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 264 310 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -120 0 V -76 0 0 0 0 0 0 2 0 P 265 211 1.9538542758906119e-01 2.1777184809530614e-01 1.2671323496382063e+00 1.3079389204151113e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.4775217700160925e+00 6.3843664284640522e-01 1.8024416165661723e+00 2.4202659583876627e+00 1.3497999999999999e-01 2 0 0 -121 0 V -77 0 0 0 0 0 0 2 0 P 267 -211 1.2488741767569310e-01 3.8090232697473647e-01 3.5516549082212417e-01 5.5344896834251345e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 8.3497594461408564e-01 7.4619689546814610e-02 2.7807488837073568e-01 8.9347533267272949e-01 1.3497999999999999e-01 2 0 0 -122 0 V -78 0 0 0 0 0 0 2 0 P 269 2212 -9.2232292670682794e-02 1.1379748418494542e+00 1.6324744945112593e+00 2.2020029756163755e+00 9.3827000000000005e-01 1 0 0 0 0 P 270 211 1.3707574622716890e-02 3.1579333238337798e-01 5.4106086241540785e-01 6.4198128330780868e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 271 -211 -2.0630679887456405e-01 4.2374710124254417e-01 3.2449594031169304e-01 5.8898344734983732e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 6.3739980537461083e-01 5.4714498421988667e-01 6.0776632268911834e-01 1.0455838794872583e+00 1.3497999999999999e-01 2 0 0 -123 0 V -80 0 0 0 0 0 0 3 0 P 273 -211 1.5334866236891118e-01 4.5158223115453339e-01 2.8003428162375815e-01 5.7038698050479297e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 4.0722086739074048e-01 2.6508251451934939e-01 6.3393595605261185e-02 5.0950574796181791e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 2.8718199618658619e-01 -1.9808181541082735e-02 1.7273232276792508e-01 3.6183134015516061e-01 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 2 0 P 276 211 2.0154978183196928e-01 4.3429865194117984e-01 -1.4862327560746878e-02 4.9893717772377255e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -2.7096144954761930e-01 4.3005733037239829e-01 -3.2118082644087727e-02 5.2689713054894660e-01 1.3497999999999999e-01 2 0 0 -125 0 V -82 0 0 0 0 0 0 2 0 P 278 421 1.9143744857938487e+00 9.9772993986181735e+00 2.0368651444011325e+00 1.0527892136035650e+01 1.8645000000000000e+00 2 0 0 -126 0 P 279 22 6.5436942895674158e-02 4.8573503732573614e-01 2.3621813869137712e-01 5.4407676758724466e-01 0 1 0 0 0 0 V -83 0 9.3158625679084489e-05 4.5277443080327440e-05 1.4154168577331435e-03 1.4195955612927864e-03 0 2 0 P 280 22 6.0133077554468027e-02 8.1120094621999247e-02 9.5951376230901608e-01 9.6481247754579591e-01 0 1 0 0 0 0 P 281 22 3.1592260380037640e-01 1.0165245685629615e-01 4.7541337604611051e+00 4.7657033191264624e+00 0 1 0 0 0 0 V -84 0 2.3194919718120641e+01 9.0320585302742025e+00 1.9472780077286959e+03 1.9475633034498369e+03 0 2 0 P 282 -211 3.2899014348052175e-01 2.5432521102866373e-01 1.8344247268080039e+01 1.8349490550008031e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 211 1.9163934301953689e-01 -5.1593058824597436e-02 2.5364045821834221e+01 2.5365206242380879e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -1.8278419990207519e+02 -4.0449265532861070e+01 1.0015066615449587e+04 1.0017227546588516e+04 0 2 0 P 284 211 -8.6303227058914667e-01 -6.9112908356443833e-02 4.6000283128253848e+01 4.6008641894307154e+01 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 -1.3894645869463809e-01 -1.5262017196883429e-01 8.8998872716861932e+00 8.9033742069452231e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 2 0 P 286 321 9.3860133353128899e-02 -9.0077769540969452e-02 -3.0078943519050432e+00 3.0509003788096396e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -321 1.3618988579665145e-01 -9.8832610581916808e-02 -5.2390560679417950e+00 5.2649468195742948e+00 4.9359999999999998e-01 1 0 0 0 0 V -87 0 2.1932548233008348e-01 -1.3976113890248107e-01 -3.1645818630019038e+00 3.1945606003544724e+00 0 2 0 P 288 22 6.9273239458605015e-02 2.1583735867047225e-02 -2.8692066721167769e-01 2.9595288245303841e-01 0 1 0 0 0 0 P 289 22 1.9247039108249386e-01 5.8535161469356438e-02 -2.3420480450670231e+00 2.3506722999971634e+00 0 1 0 0 0 0 V -88 0 4.7888732563644145e-05 -1.0634653053609607e-04 -4.4218337957882582e-03 4.4237679412416622e-03 0 2 0 P 290 22 1.1627593184832767e-01 -2.5688553754755078e-01 -9.4705633195358434e+00 9.4747601479439059e+00 0 1 0 0 0 0 P 291 22 -7.1039085945537291e-03 1.4447175053511545e-02 -6.0989853726015519e-01 6.1011098345827497e-01 0 1 0 0 0 0 V -89 0 2.7989665861191741e-06 1.5766745659670319e-05 -1.7540385172393157e-03 1.7541501855240888e-03 0 2 0 P 292 22 -2.4564334390896319e-02 1.2586614939719518e-01 -1.6225936999026789e+01 1.6226443762897485e+01 0 1 0 0 0 0 P 293 22 5.7041028124667534e-02 5.7077002731444601e-02 -4.1263501644306082e+00 4.1271390990160279e+00 0 1 0 0 0 0 V -90 0 -1.6659800060248923e-04 1.5155286873553658e-04 -1.8754959952295668e-02 1.8756329599042085e-02 0 2 0 P 294 22 -7.3974616708617480e-01 6.0254421213368348e-01 -8.0148472874392638e+01 8.0154151408498777e+01 0 1 0 0 0 0 P 295 22 -1.3954716519448215e-01 1.9734189985589731e-01 -1.8838976996586958e+01 1.8840527368274092e+01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 296 211 2.0476936133392874e-02 9.1316000922192136e-02 -1.0448603186185416e+02 1.0448616698844991e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 -211 -1.9264491139159019e-02 2.5079280640141448e-05 -2.3844985149394361e+01 2.3845401394838909e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.5751482955295177e-02 1.8775977169153174e-01 -1.0744453521188308e+02 1.0744478520774781e+02 1.3497999999999999e-01 2 0 0 -127 0 V -92 0 1.8997502130095858e-06 -8.6887730274279145e-06 3.9906345517734896e-03 3.9906924788436415e-03 0 2 0 P 299 22 -5.9917957432297005e-02 -4.1537240124929473e-02 1.3919329915478281e+01 1.3919520853817806e+01 0 1 0 0 0 0 P 300 22 7.3016879963311687e-02 -1.8372512218535003e-02 1.3596399513213550e+01 1.3596607986438331e+01 0 1 0 0 0 0 V -93 0 6.4369338304830161e-05 -7.8216032323622550e-05 1.2694010285012669e-01 1.2694014628932984e-01 0 2 0 P 301 22 1.5868264013653646e-01 -1.2420659115557327e-01 1.9071826028136354e+02 1.9071836674061441e+02 0 1 0 0 0 0 P 302 22 1.5500342148435939e-01 -2.5695748138808933e-01 4.2788901413611688e+02 4.2788911936573703e+02 0 1 0 0 0 0 V -94 0 -1.1974657226291926e-04 -7.4015885789501519e-06 1.3375378648329906e-03 1.3439637031044875e-03 0 2 0 P 303 22 -2.5535126102248640e-01 -5.4301076686487849e-02 2.3261202389401259e+00 2.3407238708232878e+00 0 1 0 0 0 0 P 304 22 -4.8116648330986854e-02 3.5543591027384025e-02 1.0635368664905835e+00 1.0652179237575472e+00 0 1 0 0 0 0 V -95 0 8.3865667897269084e-06 -5.7789204376488588e-06 4.2248793575951405e-05 4.5185184698705130e-05 0 2 0 P 305 22 -7.4386887816514299e-03 1.7096912439986470e-02 2.1711601026946792e-01 2.1791512205696625e-01 0 1 0 0 0 0 P 306 22 9.8954012511175554e-02 -8.0157254999521477e-02 2.4390840153408183e-01 2.7515157724430922e-01 0 1 0 0 0 0 V -96 0 1.9704238135533929e-04 -2.8593707007579293e-04 1.4537354349718756e-03 1.4968443215194493e-03 0 2 0 P 307 22 1.0883558779781551e-01 -8.7138402176381469e-02 4.1970802411082808e-01 4.4225910031130433e-01 0 1 0 0 0 0 P 308 22 2.1828804500829832e-01 -3.8756542790192439e-01 1.9937383286785431e+00 2.0427552850844024e+00 0 1 0 0 0 0 V -97 0 -2.2019531221933132e-05 1.2644372056884850e-06 3.2837388455731629e-05 4.2981160591385249e-05 0 2 0 P 309 22 -1.9271554372318800e-01 -1.4442293172495155e-02 2.3252199710018881e-01 3.0234804408175781e-01 0 1 0 0 0 0 P 310 22 1.5920428126614140e-02 2.4594476690445590e-02 3.1129841324870962e-02 4.2748278752754561e-02 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 311 310 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -128 0 V -99 0 0 0 0 0 0 3 0 P 312 -211 3.3708344961490527e-02 -3.8195038478618437e-01 1.8532978879020140e-01 4.4816209620111541e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 211 -5.3442209570627876e-02 -2.2146634310668603e-01 -1.0876039161808590e-01 2.8846493474555740e-01 1.3957000000000000e-01 1 0 0 0 0 P 314 111 2.8653574884923000e-01 -8.2024999723274442e-02 -7.1285757132154612e-02 3.3486130788446838e-01 1.3497999999999999e-01 2 0 0 -129 0 V -100 0 8.3231665057211033e-05 -8.7162663612360094e-05 -9.3128936459144842e-05 1.6038006514177639e-04 0 2 0 P 315 22 -5.1661193948099992e-03 -2.4810046140043979e-02 8.8078615708871242e-03 2.6829193139646452e-02 0 1 0 0 0 0 P 316 22 2.2879075993863815e-01 -2.0937629755209039e-01 -2.5902422965135435e-01 4.0407573220424731e-01 0 1 0 0 0 0 V -101 0 4.9023823157233946e-05 2.1226195690003698e-05 -1.0538223093779641e-03 1.0559783775649671e-03 0 2 0 P 317 22 1.6469980756415120e-02 6.1084307068275619e-02 -1.6820717405300594e+00 1.6832610888171657e+00 0 1 0 0 0 0 P 318 22 1.4425868818336021e-01 8.5075354317939913e-03 -1.7729720764751975e+00 1.7788515765055497e+00 0 1 0 0 0 0 V -102 0 -1.0248114430443839e-05 -1.0116769966893501e-04 -1.9803878233773521e-03 1.9831241532949758e-03 0 2 0 P 319 22 -5.1903991300502862e-02 -6.1200428464747358e-01 -1.1631967535653756e+01 1.1648172046258704e+01 0 1 0 0 0 0 P 320 22 -9.6181894453323483e-03 4.6674377653848969e-03 -2.5683195459509767e-01 2.5705436670992060e-01 0 1 0 0 0 0 V -103 0 8.8741246029353963e-05 -2.4363156535258678e-04 -1.1105427375059752e-02 1.1108604118040998e-02 0 2 0 P 321 22 4.7274198055564369e-02 -9.7976794113359938e-02 -2.8800431704285150e+00 2.8820969736493010e+00 0 1 0 0 0 0 P 322 22 1.6008439268659036e-01 -4.7130863191172406e-01 -2.3069623676935912e+01 2.3074992858823126e+01 0 1 0 0 0 0 V -104 0 2.1527444674318521e+00 -4.6957440581547205e-01 -1.4657177744896254e+02 1.5756510909227748e+02 0 2 0 P 323 2212 -3.4840977164562907e-02 -5.2186920231660723e-02 -2.5431382500112334e+00 2.7114276903327603e+00 9.3827000000000005e-01 1 0 0 0 0 P 324 -211 7.6407954908016967e-02 4.3119987685452575e-02 -2.8699133722571285e-01 3.3097027276452179e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 1.3265726186690680e+01 2.6689645098168672e+01 -3.5446292847168172e+02 3.6979302742572571e+02 0 2 0 P 325 -2212 1.5958067549103055e-01 3.2060398680402924e-01 -3.1567066142395404e+00 3.3126122848332966e+00 9.3827000000000005e-01 1 0 0 0 0 P 326 211 -1.3140574565764420e-02 -2.5977498451161360e-02 -7.5620296109427276e-01 7.6952596343037361e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 327 310 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -130 0 V -107 0 -1.5337379937032414e-06 -1.5433130295128232e-06 -8.3066141810159461e-06 8.6987537045143330e-06 0 2 0 P 328 22 -3.7307630759296821e-02 -1.2225377224602654e-01 -3.1814608849567771e-01 3.4286262229405373e-01 0 1 0 0 0 0 P 329 22 -1.1154537726505742e-01 -2.7528516325623684e-02 -4.8803105024528337e-01 5.0137261233917474e-01 0 1 0 0 0 0 V -108 0 -7.8865836476704740e-05 2.0236704785591708e-05 -1.2112959964202977e-03 1.2143124194609939e-03 0 2 0 P 330 22 -1.5131833213718898e-01 1.0698233076824459e-01 -2.5065299923812407e+00 2.5133712538031645e+00 0 1 0 0 0 0 P 331 22 -2.5473200953548020e-01 -2.7911973242265094e-03 -3.7299746233845359e+00 3.7386637824973112e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 332 211 3.7300131581517355e-02 -3.3225499072101472e-01 -1.6566492137336521e+00 1.6958039630037867e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.6027675112512272e-02 7.5261551060797169e-02 -4.3966537941110237e+00 4.3996598351023630e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 2.6405701837519837e+00 -7.7982993007320696e+00 -1.3029010341796770e+03 1.3030601704154778e+03 0 2 0 P 334 -2212 1.7220395755946979e-01 -3.8237278977060402e-01 -7.1908607895458388e+01 7.1915951660316892e+01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 -1.4033739470275641e-02 -8.4745527595602610e-02 -6.1351956712459277e+00 6.1373841707738768e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 -7.1427905328503207e-06 -2.6309149475094311e-05 -5.3858423237354690e-03 5.3859241059454428e-03 0 2 0 P 336 22 -3.5770985869032337e-02 -2.8953305563906762e-01 -5.0984607136736621e+01 5.0985441783327843e+01 0 1 0 0 0 0 P 337 22 -4.6376559444884530e-02 -1.3042252811631894e-02 -1.0956692178689083e+01 1.0956798089960902e+01 0 1 0 0 0 0 V -112 0 -1.7551842520711538e-05 1.8865680813227385e-04 -2.1406122941536796e-02 2.1406988502804772e-02 0 2 0 P 338 22 -8.0286668814878143e-02 5.7779065752968028e-01 -5.9525675858009009e+01 5.9528534118907011e+01 0 1 0 0 0 0 P 339 22 1.0663425883858725e-02 1.7055805672550797e-01 -2.5386417901448109e+01 2.5386993079652637e+01 0 1 0 0 0 0 V -113 0 6.7187333606529885e-05 -2.3625422722544653e-05 -7.3713680030589928e-03 7.3717738348789202e-03 0 2 0 P 340 22 -1.2335498355771022e-02 -7.4059523706035222e-03 -2.7159042999156084e+00 2.7159424108309609e+00 0 1 0 0 0 0 P 341 22 3.1281337024908018e-01 -9.8252604997121948e-02 -3.0250621555581812e+01 3.0252398421910719e+01 0 1 0 0 0 0 V -114 0 -8.1021390797921325e-04 -1.4670334287573128e-03 5.3888910717802690e-03 5.6438407084497396e-03 0 2 0 P 342 22 -4.8587594651029892e-01 -9.8067409406381123e-01 3.3872364013090688e+00 3.5596583477236079e+00 0 1 0 0 0 0 P 343 22 -1.2102706269977270e+00 -2.0904947650522021e+00 7.8941659992068693e+00 8.2554697126400942e+00 0 1 0 0 0 0 V -115 0 -9.8516456018675041e-05 -3.2397601657837485e-05 7.3208142735309983e-04 7.4037434865636194e-04 0 2 0 P 344 22 -1.0582060976970183e-01 2.7773008509941854e-02 7.5655810671428558e-01 7.6442757033536479e-01 0 1 0 0 0 0 P 345 22 -2.4269154073134683e-01 -1.4238287452774639e-01 1.8332556452170787e+00 1.8547232482560911e+00 0 1 0 0 0 0 V -116 0 -2.1261866108416613e-08 3.9762655619080825e-07 1.8873800909275420e-04 1.8882620746227122e-04 0 2 0 P 346 22 1.3701766050722928e-02 1.6877052404695968e-02 1.1492474511622532e-01 1.1696268777182300e-01 0 1 0 0 0 0 P 347 22 -1.4200284822198445e-02 -7.5540559523848460e-03 4.3103425359343746e+00 4.3103725464205001e+00 0 1 0 0 0 0 V -117 0 3.9659449652515547e-05 4.7675517195196901e-05 1.6808269140455216e-04 1.8032998066073807e-04 0 2 0 P 348 22 2.2189777329585378e-01 1.7090452012840207e-01 7.7175710376428419e-01 8.2100913758898786e-01 0 1 0 0 0 0 P 349 22 3.8914894690380696e-02 1.4262425917260380e-01 3.3360607125767611e-01 3.6489595655923507e-01 0 1 0 0 0 0 V -118 0 4.9824731096665069e-05 1.5093837573680184e-05 2.8495886026714965e-04 2.9104129678065308e-04 0 2 0 P 350 22 1.5711280955429704e-01 1.0490351873218232e-01 1.0622832091644729e+00 1.0789507864778676e+00 0 1 0 0 0 0 P 351 22 8.1687513027162359e-02 -3.2561667562046530e-02 3.0346962595308674e-01 3.1595399325707280e-01 0 1 0 0 0 0 V -119 0 3.3823228722222976e-05 1.4360649910993738e-05 3.6323504301105803e-05 6.2532414710160219e-05 0 2 0 P 352 22 1.5473104914365582e-01 6.3661750907534731e-02 1.2865456110435905e-01 2.1106044676979319e-01 0 1 0 0 0 0 P 353 22 -2.5115562199293982e-02 -8.6296708439308929e-03 1.0542342188911721e-02 2.8572778343894122e-02 0 1 0 0 0 0 V -120 0 4.8572525032297548e+01 2.8544033180682732e+01 1.3950388584931414e+02 1.5358972150787298e+02 0 2 0 P 354 111 5.1654591582856790e-01 4.5730537088227718e-01 1.8375361352708055e+00 1.9674111248600072e+00 1.3497999999999999e-01 2 0 0 -131 0 P 355 111 2.6591599044471420e-01 2.5146323074637399e-03 4.0975235511759373e-01 5.0678815127649712e-01 1.3497999999999999e-01 2 0 0 -132 0 V -121 0 6.6642964961977059e-04 2.8796401977340636e-04 8.1298330715980180e-04 1.0916502398589912e-03 0 2 0 P 356 22 1.0177129125649877e+00 3.7069054974771970e-01 1.2106855245682948e+00 1.6244723744874781e+00 0 1 0 0 0 0 P 357 22 4.5980885745110484e-01 2.6774609309868552e-01 5.9175609199787738e-01 7.9579358390018506e-01 0 1 0 0 0 0 V -122 0 1.7430972560220277e-04 1.5577619562966499e-05 5.8050962786920530e-05 1.8652206818066101e-04 0 3 0 P 358 22 2.8736228462862523e-01 6.2337796790484991e-02 1.5309029325025983e-01 3.3151126892328320e-01 0 1 0 0 0 0 P 359 11 3.9021046762354122e-01 1.2288367788971719e-02 8.4696183425568741e-02 3.9948581528354338e-01 5.1000000000000004e-04 1 0 0 0 0 P 360 -11 1.5740319236191927e-01 -6.4750326420938465e-06 4.0288411694907128e-02 1.6247824846590309e-01 5.1000000000000004e-04 1 0 0 0 0 V -123 0 8.1987514462796568e-05 7.0378209922122772e-05 7.8175816420573375e-05 1.3449144903824778e-04 0 2 0 P 361 22 3.4433217110872449e-01 2.7338575327507170e-01 3.9774502332559170e-01 5.9287900766893564e-01 0 1 0 0 0 0 P 362 22 2.9306763426588633e-01 2.7375923094481497e-01 2.1002129936352670e-01 4.5270487181832270e-01 0 1 0 0 0 0 V -124 0 1.1525069614002883e-05 -7.9493378491408561e-07 6.9320224489119165e-06 1.4520866346742673e-05 0 2 0 P 363 22 -5.5261422719354953e-03 -1.0875404177234163e-02 3.7191125654135376e-02 3.9140675669302898e-02 0 1 0 0 0 0 P 364 22 2.9270813845852167e-01 -8.9327773638485722e-03 1.3554119711378970e-01 3.2269066448585765e-01 0 1 0 0 0 0 V -125 0 -6.0138627269926064e-05 9.5449214414613208e-05 -7.1284583249102415e-06 1.1694235544052164e-04 0 2 0 P 365 22 1.4806878555669097e-02 3.6451249127863940e-02 1.1053419039329224e-03 3.9359357162795768e-02 0 1 0 0 0 0 P 366 22 -2.8576832810328845e-01 3.9360608124453439e-01 -3.3223424548020651e-02 4.8753777338615073e-01 0 1 0 0 0 0 V -126 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 3 0 P 367 -321 9.0973991892192296e-03 1.6695573778195438e+00 5.3498051780683975e-01 1.8213593041837060e+00 4.9359999999999998e-01 1 0 0 0 0 P 368 311 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 2 0 0 -133 0 P 369 211 9.0953373940276727e-01 4.8017960527329260e+00 6.6594685369729034e-01 4.9343147398603193e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 1.7989748316348035e-06 2.1444019247280622e-05 -1.2271226473815835e-02 1.2271255025811223e-02 0 2 0 P 370 22 -2.3564685434985310e-02 1.2853845306975048e-01 -9.1298002518840178e+01 9.1298096044542277e+01 0 1 0 0 0 0 P 371 22 3.9316168390280487e-02 5.9221318621781253e-02 -1.6146532693042897e+01 1.6146689163205540e+01 0 1 0 0 0 0 V -128 0 -7.4110418624237212e+01 1.1480778126668004e+02 1.2284156326431871e+01 1.4772911339205135e+02 0 2 0 P 372 -211 -6.0577836167837174e-01 7.3827051501716001e-01 -4.4786304566678758e-02 9.6617616136922679e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -6.7622827127023610e-02 3.0492554060204241e-01 1.5640577221039809e-01 3.7615818818793517e-01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 2.8428750945630758e-05 -8.1381408700782695e-06 -7.0726429201931359e-06 3.3223389267859981e-05 0 2 0 P 374 22 1.9879161434333362e-01 -1.1717448571255196e-01 -6.6812368314700762e-02 2.4023292570971397e-01 0 1 0 0 0 0 P 375 22 8.7744134505896368e-02 3.5149485989277515e-02 -4.4733888174538494e-03 9.4628382174754361e-02 0 1 0 0 0 0 V -130 0 4.3587815190089977e+01 1.9499557712227041e+01 -2.0295725607435622e+02 2.1421615704265062e+02 0 2 0 P 376 -211 1.2645607786858875e-02 -5.9626725518012832e-02 -2.6911317671398299e-01 3.0921989679415995e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 4.2860738668408754e-01 2.5702680611061518e-01 -1.7854861786759948e+00 1.8593568108683693e+00 1.3957000000000000e-01 1 0 0 0 0 V -131 0 4.8572822087881093e+01 2.8544296168172600e+01 1.3950494258086931e+02 1.5359085292802723e+02 0 2 0 P 378 22 1.0371190939819742e-01 1.6694820163323085e-01 5.7866817046209762e-01 6.1113395723486119e-01 0 1 0 0 0 0 P 379 22 4.1283400643037049e-01 2.9035716924904637e-01 1.2588679648087078e+00 1.3562771676251462e+00 0 1 0 0 0 0 V -132 0 4.8572620458929656e+01 2.8544034083083869e+01 1.3950403289307476e+02 1.5358990337390662e+02 0 2 0 P 380 22 5.8013958732285417e-02 2.7385983767221966e-02 2.0152939904897688e-01 2.1149399564936031e-01 0 1 0 0 0 0 P 381 22 2.0790203171242877e-01 -2.4871351459758224e-02 2.0822295606861682e-01 2.9529415562713685e-01 0 1 0 0 0 0 V -133 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 1 0 P 382 130 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 1 0 0 0 0 E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 0 U GEV MM C 1.2060000000000000e-01 1.0000000000000000e-02 F1 0 0 0 0 0 0 0 E 321 -1 -1.0 -1.0 -1.0 0 0 0 0 0 0 1 1.0 N 1 "0" U GEV MM C 1.4347291803278606e+00 9.5861875635604679e-02 H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testStreamIO.output0000644000175000017500000000327711374257600021447 0ustar sylvestresylvestre basic IO_GenEvent input with streaming output Processing Event Number 1 its # 1 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles 3 out of 34 processed events passed the cuts. Finished. streaming input and output Processing Event Number 1 its # 1 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles 3 out of 34 processed events passed the cuts. Finished. basic IO_GenEvent input with streaming output using member function Processing Event Number 1 its # 1 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles 3 out of 34 processed events passed the cuts. Finished. streaming input and output using member functions Processing Event Number 1 its # 1 Event 9 has 929 particles, 409 decayed particles, 512 undecayed particles, and 0 beam particles Event 18 has 674 particles, 288 decayed particles, 378 undecayed particles, and 0 beam particles Event 56 has 809 particles, 354 decayed particles, 447 undecayed particles, and 0 beam particles 3 out of 34 processed events passed the cuts. Finished. hepmc-2.06.09.orig/test/testHepMCIteration.cc.in0000644000175000017500000003316111374257600022224 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testHepMCIteration.cc.in // // garren@fnal.gov, May 2007 // Use Matt's example_EventSelection along with example_UsingIterators // to check HepMC iteration. // Apply an event selection to the events in testHepMC.input // Events containing a photon of pT > 25 GeV pass the selection. // Use iterators on these events. ////////////////////////////////////////////////////////////////////////// #include #include "HepMC/IO_GenEvent.h" #include "HepMC/IO_AsciiParticles.h" #include "HepMC/GenEvent.h" #include "HepMC/GenRanges.h" // define methods and classes used by this test #include "IsGoodEvent.h" #include "testHepMCIteration.h" bool findW( HepMC::GenEvent* evt, std::ofstream& os); bool simpleIter ( HepMC::GenEvent* evt, std::ostream& os = std::cout ); bool simpleIter2( HepMC::GenEvent* evt, std::ostream& os = std::cout ); bool simpleIter3( HepMC::GenEvent* evt, std::ostream& os = std::cout ); bool simpleIter4( HepMC::GenEvent* evt, std::ostream& os = std::cout ); /// \class PrintW /// This class is designed for use with std::for_each /// This class also illustrates the use of the new GenEventIterator classes. /// PrintW duplicates the funtionality within findW's particle loop. class PrintW { public: PrintW( std::ostream & os, int num ) : m_out( os ),m_event_num( num ) {} void operator()( HepMC::GenParticle* p ) { if ( IsWBoson(p) ) { m_out << std::endl; m_out << "A W boson has been found in event: " << m_event_num << std::endl; p->print( m_out ); // return all parents // we do this by pointing to the production vertex of the W // particle and asking for all particle parents of that vertex m_out << "\t Its parents are: " << std::endl; if ( p->production_vertex() ) { std::for_each( p->particles_in(HepMC::parents).begin(), p->particles_in(HepMC::parents).end(), PrintParticle(m_out)); } // return immediate children m_out << "\t\t" << "Its children are: " << std::endl; if ( p->end_vertex() ) { std::for_each( p->particles_out(HepMC::children).begin(), p->particles_out(HepMC::children).end(), PrintChildren(m_out)); } // return all descendants // we do this by pointing to the end vertex of the W // particle and asking for all particle descendants of that vertex m_out << "\t\t Its descendants are: " << std::endl; if ( p->end_vertex() ) { std::for_each( p->particles_out(HepMC::descendants).begin(), p->particles_out(HepMC::descendants).end(), PrintDescendants(m_out)); } } // if IsWBoson } private: std::ostream & m_out; int m_event_num; }; /// \class PrintConstW /// This class is designed for use with std::for_each /// This class also illustrates the use of the new GenEventIterator classes. /// PrintConstW duplicates the funtionality within findW's particle loop. class PrintConstW { public: PrintConstW( std::ostream & os, int num ) : m_out( os ),m_event_num( num ) {} void operator()( HepMC::GenParticle* p ) { if ( IsWBoson(p) ) { m_out << std::endl; m_out << "A W boson has been found in event: " << m_event_num << std::endl; p->print( m_out ); // return all parents // we do this by pointing to the production vertex of the W // particle and asking for all particle parents of that vertex m_out << "\t Its parents are: " << std::endl; if ( p->production_vertex() ) { std::for_each( p->particles_in(HepMC::parents).begin(), p->particles_in(HepMC::parents).end(), PrintParticle(m_out)); } // return immediate children m_out << "\t\t" << "Its children are: " << std::endl; if ( p->end_vertex() ) { std::for_each( p->particles_out(HepMC::children).begin(), p->particles_out(HepMC::children).end(), PrintChildren(m_out)); } // return all descendants // we do this by pointing to the end vertex of the W // particle and asking for all particle descendants of that vertex m_out << "\t\t Its descendants are: " << std::endl; if ( p->end_vertex() ) { std::for_each( p->particles_out(HepMC::descendants).begin(), p->particles_out(HepMC::descendants).end(), PrintDescendants(m_out)); } } // if IsWBoson } private: std::ostream & m_out; int m_event_num; }; int main() { // declare an input strategy to read the data produced with the // example_MyPythia HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); // declare an instance of the event selection predicate IsGoodEvent is_good_event; // define some output streams std::ofstream os( "testHepMCIteration.out" ); std::ofstream os2( "testHepMCIteration2.out" ); std::ofstream os3( "testHepMCIteration3.out" ); //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); HepMC::GenEvent* evcopy; while ( evt ) { icount++; if ( icount%50==1 ) std::cout << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; // icount of 100 should be the last event if ( icount==100 ) std::cout << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; evcopy = evt; if ( is_good_event(evcopy) ) { ++num_good_events; // simple iteration several different ways os << "Event " << evcopy->event_number() << " is good " << std::endl; simpleIter( evcopy, os ); os2 << "Event " << evcopy->event_number() << " is good " << std::endl; simpleIter2( evcopy, os2 ); os3 << "Event " << evcopy->event_number() << " is good " << std::endl; simpleIter2( evcopy, os3 ); std::cout << "Event " << evcopy->event_number() << " is good " << std::endl; simpleIter3( evcopy ); simpleIter4( evcopy ); // test iterators findW( evcopy, os ); // this is the same as findW except that we use the STL for_each algorithm std::for_each( evt->particles_begin(), evt->particles_end(), PrintW(os2,evcopy->event_number())); // repeat, using the const iterator std::for_each( evt->particles_begin(), evt->particles_end(), PrintConstW(os3,evcopy->event_number())); } evcopy->clear(); // clean up and get next event delete evt; evt = ascii_in.read_next_event(); } //........................................PRINT RESULT std::cout << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } bool simpleIter( HepMC::GenEvent* evt, std::ostream& os ) { // use GenEvent::vertex_iterator to fill a list of all // vertices in the event std::list allvertices; for ( HepMC::GenEvent::vertex_iterator v = evt->vertices_begin(); v != evt->vertices_end(); ++v ) { allvertices.push_back(*v); } // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate IsFinalState isfinal; std::list finalstateparticles; for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( isfinal(*p) ) finalstateparticles.push_back(*p); } // print all photons in the event that satisfy the IsPhoton criteria os << "photons in event " << evt->event_number() << ":" << std::endl; for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( IsPhoton(*p) ) (*p)->print( os ); } return true; } bool simpleIter2( HepMC::GenEvent* evt, std::ostream& os ) { // illustrates the use various helpful algorithms // use the STL copy algorithm to fill a list of all // vertices in the event std::list allvertices2; copy( evt->vertices_begin(), evt->vertices_end(), back_inserter(allvertices2) ); // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate // an STL-like algorithm called HepMC::copy_if is provided in the // GenEvent.h header to do this sort of operation more easily std::list finalstateparticles2; HepMC::copy_if( evt->particles_begin(), evt->particles_end(), back_inserter(finalstateparticles2), IsFinalState() ); // use the STL for_each algorithm to // print all photons in the event that satisfy the IsPhoton criteria os << "photons in event " << evt->event_number() << ":" << std::endl; std::for_each(evt->particles_begin(), evt->particles_end(), PrintPhoton(os)); return true; } bool simpleIter3( HepMC::GenEvent* evt, std::ostream& os ) { // very simple illustration of using GenEventVertexRange // and GenEventParticleRange // NOTE that instead of creating this list, // you can just use GenEventVertexRange as if it were the list std::list allvertices; HepMC::GenEventVertexRange vc(*evt); for ( HepMC::GenEvent::vertex_iterator v = vc.begin(); v != vc.end(); ++v ) { allvertices.push_back(*v); } // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate IsFinalState isfinal; std::list finalstateparticles; HepMC::GenEventParticleRange pc(*evt); for ( HepMC::GenEvent::particle_iterator p = pc.begin(); p != pc.end(); ++p ) { if ( isfinal(*p) ) finalstateparticles.push_back(*p); } // print all photons in the event that satisfy the IsPhoton criteria os << "photons in event " << evt->event_number() << ":" << std::endl; std::for_each(pc.begin(), pc.end(), PrintPhoton(os)); return true; } bool simpleIter4( HepMC::GenEvent* evt, std::ostream& os ) { // very simple illustration of using // GenEvent::vertex_range(), which returns GenEventVertexRange, // and GenEvent::particle_range(), which returns GenEventParticleRange // NOTE that instead of creating these lists, // you can just use GenEvent::vertex_range() and GenEvent::particle_range() // as if they were a list std::list allvertices; for ( HepMC::GenEvent::vertex_iterator v = evt->vertex_range().begin(); v != evt->vertex_range().end(); ++v ) { allvertices.push_back(*v); } // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate IsFinalState isfinal; std::list finalstateparticles; for ( HepMC::GenEvent::particle_iterator p = evt->particle_range().begin(); p != evt->particle_range().end(); ++p ) { if ( isfinal(*p) ) finalstateparticles.push_back(*p); } // print all photons in the event that satisfy the IsPhoton criteria os << "photons in event " << evt->event_number() << ":" << std::endl; std::for_each(evt->particle_range().begin(), evt->particle_range().end(), PrintPhoton(os)); return true; } bool findW( HepMC::GenEvent* evt, std::ofstream& os ) { int num_W = 0; // use GenEvent::particle_iterator to find all W's in the event, // then // (1) for each W user the GenVertex::particle_iterator with a range of // parents to return and print the immediate mothers of these W's. // (2) for each W user the GenVertex::particle_iterator with a range of // descendants to return and print all descendants of these W's. for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( IsWBoson(*p) ) { ++num_W; os << std::endl; os << "A W boson has been found in event: " << evt->event_number() << std::endl; (*p)->print( os ); // return all parents // we do this by pointing to the production vertex of the W // particle and asking for all particle parents of that vertex os << "\t Its parents are: " << std::endl; if ( (*p)->production_vertex() ) { for ( HepMC::GenVertex::particle_iterator mother = (*p)->production_vertex()-> particles_begin(HepMC::parents); mother != (*p)->production_vertex()-> particles_end(HepMC::parents); ++mother ) { os << "\t"; (*mother)->print( os ); } } // return immediate children os << "\t\t" << "Its children are: " << std::endl; if ( (*p)->end_vertex() ) { for ( HepMC::GenVertex::particle_iterator child = (*p)->end_vertex()->particles_begin(HepMC::children); child != (*p)->end_vertex()->particles_end(HepMC::children); ++child ) { // make a copy HepMC::GenVertex::particle_iterator cp = child; // use the copy and the original os << "\t\t\t (id,barcode,status) " << (*cp)->pdg_id() << " " << (*child)->barcode() << " " << (*cp)->status() << std::endl; } } // return all descendants // we do this by pointing to the end vertex of the W // particle and asking for all particle descendants of that vertex os << "\t\t Its descendants are: " << std::endl; if ( (*p)->end_vertex() ) { for ( HepMC::GenVertex::particle_iterator des =(*p)->end_vertex()-> particles_begin(HepMC::descendants); des != (*p)->end_vertex()-> particles_end(HepMC::descendants); ++des ) { os << "\t\t"; (*des)->print( os ); } } } // if IsWBoson } // end particle loop return true; } hepmc-2.06.09.orig/test/testStreamIOVarious.output0000644000175000017500000000530611510652322023003 0ustar sylvestresylvestre process varied input Processing Event Number 1 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 2 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 3 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 4 its # 2 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 5 its # 3 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 6 its # 101 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 7 its # 1011 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 8 its # 1016 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 9 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 10 its # 39 Momenutm units: GEV Position units: MM pizero mass: 0.13498 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV 10 valid events processed. 7 invalid events processed. Finished. hepmc-2.06.09.orig/test/testStreamIOVarious.dat0000644000175000017500000247775511211311605022234 0ustar sylvestresylvestreE 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 U GEV MM H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 U GEV MM H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 1 -1 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 258 0 0 0 0 U GEV MM H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -1 0 P 3 -1 -1.4221403910208932e+00 1.1510218626680770e+00 2.7391537970226784e+02 2.7392148979599568e+02 9.4073427565344128e-06 3 0 0 -3 0 P 14 2112 7.9951212024063767e-01 -7.7892736865915102e-01 4.6429969632409717e+02 4.6430198873783621e+02 9.3956999998694357e-01 1 0 0 0 0 P 110 2 6.2262827078025551e-01 -3.7209449400892602e-01 1.6243703733758804e+02 1.6243899199172907e+02 3.3000000000543439e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -2 0 P 4 2 2.9923024991714953e+00 -7.2119383646849933e-01 -3.6033180598151871e+03 3.6033193744358937e+03 -2.0631129887374818e-05 3 0 0 -4 0 P 21 2101 -2.9923024991714953e+00 7.2119383646849933e-01 -1.8152375603709893e+03 1.8152402623894354e+03 5.7933000017739278e-01 2 0 0 -11 0 V -3 0 0 0 0 0 0 3 0 P 5 -1 -5.0799288861804737e+00 -2.3310134609848063e+00 2.6124955578648348e+02 2.6130933718464598e+02 1.0904229518957089e-05 3 0 0 -5 0 P 108 21 6.6806859637683935e-01 1.9569601752114720e+00 1.7816831543630873e+00 2.7295427528012519e+00 -1.5900815910626085e-08 2 0 0 -13 0 P 109 21 3.1664298860279576e+00 1.6887104390800713e+00 7.0336109728037552e+00 7.8961829061220730e+00 7.4622130483426637e-08 2 0 0 -13 0 V -4 0 0 0 0 0 0 11 0 P 6 2 8.9154538447857345e-01 1.0234558864853245e+00 -6.8727416891716393e+00 7.0054902362535785e+00 -3.5764242027152468e-07 3 0 0 -5 0 P 15 -2 -2.9117870485610418e+00 -2.8430417291726806e-01 -2.3873902878548115e+01 2.4054759847756827e+01 3.3000000000011270e-01 2 0 0 -9 0 P 16 21 -4.5168349018626819e-01 -5.8188236182207898e-01 -2.3549853918806662e+00 2.4675010140378513e+00 -1.8392147177952805e-08 2 0 0 -9 0 P 17 21 1.3361064706818437e-01 5.6062971936987716e-01 -6.6354406969191293e-01 8.7889033427045515e-01 7.4287206556386389e-09 2 0 0 -9 0 P 18 21 3.4853813800100564e-01 3.2654984823776517e-01 1.5743835764396941e+00 1.6452347196641450e+00 1.8932438781723495e-08 2 0 0 -9 0 P 19 2 3.8684578727925030e+00 -5.3367328577347839e-01 -2.8046052714443090e+03 2.8046080095597486e+03 3.2999999854300821e-01 2 0 0 -9 0 P 20 3 2.0280234355948692e+00 -1.3500894269493069e+00 -5.2260786435830971e+02 5.2261378235717200e+02 5.0000000001793410e-01 2 0 0 -11 0 P 22 -3 -4.1470342387186032e-01 -6.4497338778096824e-01 -2.2075314546382924e+02 2.2075504343451649e+02 4.9999999999444711e-01 2 0 0 -13 0 P 23 21 1.5396669730665143e-02 4.4227214617257865e-01 -1.6656899580654343e+01 1.6662777239965784e+01 1.6040392325528699e-07 2 0 0 -13 0 P 24 21 3.8670738014295408e-01 -6.5339056557188135e-02 -3.3094156701471751e+00 3.3325731601848574e+00 2.3597589618190988e-08 2 0 0 -13 0 P 25 21 -1.0785130532704446e+00 2.2252496443311437e-01 6.5585694625575608e-01 1.2817394820409573e+00 1.6757337577125598e-08 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -4.8202891827323624e+00 -2.5587437730119476e+00 2.5454803926087314e+02 2.6690270499359252e+02 8.0078507003069006e+01 3 0 0 -6 0 P 8 22 6.3190568103046052e-01 1.2511861985124657e+00 -1.7122516356100745e-01 1.4121224273069288e+00 2.7089442660160502e-07 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -4.8202891827323624e+00 -2.5587437730119476e+00 2.5454803926087314e+02 2.6690270499359252e+02 8.0078507003069006e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 6.3190568103046052e-01 1.2511861985124657e+00 -1.7122516356100745e-01 1.4121224273069028e+00 3.4846899907793303e-09 1 0 0 0 0 V -8 0 0 0 0 0 0 3 0 P 11 12 -3.1482668109141340e+01 2.3992429945124666e+01 9.3808327139613652e+01 1.0181747063581395e+02 3.9984011247750338e-07 1 0 0 0 0 P 12 -11 2.6662139146695090e+01 -2.6551414506163663e+01 1.6073902791950803e+02 1.6508447041719077e+02 5.1000340487305520e-04 1 0 0 0 0 P 13 22 2.3977971390581616e-04 2.4078802705085317e-04 6.8420175040426049e-04 7.6394058697522511e-04 7.6365066087176567e-12 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 113 92 9.8713611911438326e-01 -5.1268025290518304e-01 -2.8299233202079899e+03 2.8336543954754779e+03 1.4536160931182403e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 19 0 P 114 223 -2.7114001291755283e+00 -6.7007605629227818e-01 -2.0274893131572810e+01 2.0481544453069873e+01 7.8846629900692611e-01 2 0 0 -17 0 P 115 -2212 -2.2822451769197945e-02 5.5336396314251601e-01 -2.5235246202821924e+00 2.7486832560482362e+00 9.3827000000000049e-01 1 0 0 0 0 P 116 113 -7.6647932305791822e-01 -2.3318579739459548e-02 -1.6785015637627680e+00 2.0918082652443193e+00 9.8501777149145930e-01 2 0 0 -18 0 P 117 2112 4.2876407709936964e-01 -1.9456787248899243e-01 -9.8523397252217848e-01 1.4405460965646326e+00 9.3957000000000002e-01 1 0 0 0 0 P 118 211 -5.2448166589865997e-01 2.0859227481917400e-01 -4.2289320904761568e-01 7.1896467655696528e-01 1.3956999999999975e-01 1 0 0 0 0 P 119 -213 9.6239792339966590e-01 2.5788215224489214e-01 -4.7515939794649115e-01 1.2898501382463603e+00 6.6725104590913598e-01 2 0 0 -19 0 P 120 213 -4.8038065151633225e-01 -1.8223214992339704e-01 -3.0288568911759861e-01 9.5906567846649404e-01 7.5106132114707824e-01 2 0 0 -20 0 P 121 -211 3.1536695085298933e-01 -1.1243714543520097e-01 -8.7166437759012427e-01 9.4412763831142410e-01 1.3957000000000064e-01 1 0 0 0 0 P 122 -2214 -8.6053752736042655e-02 5.6973991384588207e-01 -2.7125893857089469e+00 3.0723401779268000e+00 1.3225445836165108e+00 2 0 0 -21 0 P 123 111 -2.1369420924390198e-01 -2.8515614406097767e-01 -3.8708902277524304e+00 3.8896002361771531e+00 1.3498000000000401e-01 2 0 0 -22 0 P 124 2224 4.7072418470400884e-01 -1.2307802237235101e-01 -7.5295987198691989e+00 7.6306902373960259e+00 1.1383528271932197e+00 2 0 0 -23 0 P 125 221 -2.1217124722303105e-01 -3.4382688073305967e-01 -3.9732780555050131e+00 4.0311131925214525e+00 5.4744999999999699e-01 2 0 0 -24 0 P 126 -213 1.7508880583947969e-01 1.0828789156835196e-01 -3.4664128143019106e+01 3.4673762724665636e+01 7.9098622830760767e-01 2 0 0 -25 0 P 127 -2112 3.6248540262698142e-01 5.1112997685056560e-01 -2.0170915788016266e+01 2.0202506899701749e+01 9.3956999999999991e-01 1 0 0 0 0 P 128 311 -1.9728899388726165e-01 -1.1236567577654022e-01 -5.1551286531483889e+01 5.1554188651090747e+01 4.9767000000003353e-01 2 0 0 -26 0 P 129 3214 3.3751529879291886e-01 -1.7864690712612299e-03 -2.4754777257927626e+02 2.4755183655446075e+02 1.3777346467955773e+00 2 0 0 -27 0 P 130 -2112 -8.0631095748395956e-02 -6.2809418206344581e-01 -3.0733734666909680e+02 3.0733943523905396e+02 9.3957000000470392e-01 1 0 0 0 0 P 131 213 1.7026536167311832e+00 3.1186073956629184e-01 -7.7175871066435047e+02 7.7176104676907880e+02 7.8072872635668100e-01 2 0 0 -28 0 P 132 2112 1.5275433793240565e+00 -3.5659798698589290e-01 -1.3512720474820703e+03 1.3512732845908970e+03 9.3956999991969092e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 133 92 -9.6427906357662607e-01 -6.2889559048080756e-01 -2.3378454247292989e+03 2.3378540447466075e+03 6.2433377756443456e+00 2 0 0 -12 0 V -12 0 0 0 0 0 0 4 0 P 134 -311 1.2889206342757902e+00 -8.4778519723955947e-01 -3.0032646868717376e+02 3.0033084344715405e+02 4.9766999997575972e-01 2 0 0 -29 0 P 135 -213 2.3225980860459833e-01 -1.0380307223137890e-01 -1.9567344331135686e+02 1.9567493636968206e+02 7.2082332081915179e-01 2 0 0 -30 0 P 136 221 -1.5793711419536141e+00 6.8164761926459483e-01 -9.3440250608298629e+02 9.3440424984711444e+02 5.4745000004656874e-01 2 0 0 -31 0 P 137 2212 -9.0608836450340069e-01 -3.5895494027446406e-01 -9.0744300664778200e+02 9.0744401508265673e+02 9.3827000004232552e-01 1 0 0 0 0 V -13 0 0 0 0 0 82 1 0 P 26 21 2.0350966064186202e-01 1.2697850280497742e+00 -3.3595146387401305e+00 3.5972362734943002e+00 -3.5597970436543955e-08 2 0 0 -13 0 P 27 21 6.5277544808364485e-01 -6.2126041561828348e-02 -1.8982573485812573e+00 2.0083217849995281e+00 2.0563045671041697e-08 2 0 0 -13 0 P 28 21 1.3039124474204202e+01 -5.1810386739467251e-01 -1.1709876053249934e+01 1.7533065785927931e+01 2.2586444603240665e-07 2 0 0 -13 0 P 29 21 4.8644826009004198e+00 -2.4933253546041709e+00 -2.8477662555000594e+00 6.1635732286020382e+00 -6.9294405124106538e-08 2 0 0 -13 0 P 30 21 -9.5184530427573161e-02 -1.1556588366534259e+00 -8.2119894034029783e-01 1.4209064505391955e+00 -1.4952006151901859e-08 2 0 0 -13 0 P 31 21 5.7486379282948441e-01 -2.9534785998417852e+00 -6.1937019420569142e+00 6.8858875947164053e+00 -1.7071424778386354e-08 2 0 0 -13 0 P 32 21 1.5201221821921060e-01 -4.6728355911534636e-01 -1.3328502232446815e+00 1.4205461473358856e+00 -8.1988130051917440e-09 2 0 0 -13 0 P 33 21 7.3707925916915795e-01 -3.2855372995774434e+00 -3.6483381886796558e+01 3.6638438764213838e+01 2.7597336735505068e-07 2 0 0 -13 0 P 34 21 2.2342396139048857e+00 -1.4891279932857771e+00 -4.2627112900507335e+01 4.2711591905071018e+01 2.2252178971570847e-07 2 0 0 -13 0 P 35 21 6.3838100578568935e-01 -2.2264083640990492e-01 -1.0504606717528652e+01 1.0526341317881220e+01 9.3874358895079434e-08 2 0 0 -13 0 P 36 21 2.1649239127925450e+00 1.4509962267722991e+00 -1.9084265138851531e+01 1.9261398222566093e+01 -1.8416653714043311e-07 2 0 0 -13 0 P 37 21 4.2838390539459076e-01 1.1912513640293771e+00 -1.1944757698730335e+01 1.2011653885459761e+01 4.3283961857193150e-08 2 0 0 -13 0 P 38 21 2.7147091913615857e+00 1.7156866523641445e+00 -6.8215266829334084e+01 6.8290818235543284e+01 8.1071081809612775e-07 2 0 0 -13 0 P 39 21 6.9527936567135162e+00 2.9750964011968009e+00 -2.0423986318714341e+02 2.0437982839050508e+02 -1.3591950238932823e-06 2 0 0 -13 0 P 40 21 4.6746952577299083e+00 1.7424316870150494e+00 -3.7270332474972020e+02 3.7273671287308412e+02 -9.8302498474542155e-07 2 0 0 -13 0 P 41 21 3.0900394902668077e-01 -1.0847501542455869e-01 -4.8731631985691230e+01 4.8732732390646127e+01 4.3926843920301425e-07 2 0 0 -13 0 P 42 21 1.6726910697677460e+00 -1.2169627141817063e+00 -1.6427489698366705e+02 1.6428792004483168e+02 -1.9031530667650226e-06 2 0 0 -13 0 P 43 21 -2.1755285815661516e+00 5.4307985908134846e+00 -1.5787651783500493e+02 1.5798487706628703e+02 9.8212105353379732e-07 2 0 0 -13 0 P 44 21 -6.9527936567135162e+00 -2.9750964011968009e+00 -2.2153359073268331e+02 2.2166263636694677e+02 -2.1064993199196210e-06 2 0 0 -13 0 P 45 21 -2.1649239127925450e+00 -1.4509962267722991e+00 -3.4840434645112950e+01 3.4937775714241958e+01 1.5805068191585263e-07 2 0 0 -13 0 P 46 21 -8.0156788825559844e-01 -4.7512431922149206e-01 -1.2779490902884447e+01 1.2813416481762566e+01 6.6431442276116485e-08 2 0 0 -13 0 P 47 21 -4.6746952577299083e+00 -1.7424316870150494e+00 -5.8598944731713296e+01 5.8810927280624867e+01 4.2878075152451274e-07 2 0 0 -13 0 P 48 21 -4.9571824485343443e+00 -4.2113439065434104e+00 -2.2014102002330510e+01 2.2954950714306694e+01 -2.2867335756455074e-07 2 0 0 -13 0 P 49 21 -2.7553647676288104e+00 -1.9683765117772283e+00 -9.5422826876061233e+00 1.0125299994814672e+01 -9.4573961755529819e-08 2 0 0 -13 0 P 50 21 -2.7246306003584002e+00 -3.3410237572721853e+00 -9.0584028652103790e+00 1.0031984555586105e+01 7.1899067854951255e-08 2 0 0 -13 0 P 51 21 -2.7147091913615857e+00 -1.7156866523641445e+00 -2.2367390686986113e+00 3.9135953219777706e+00 -2.3058463638909063e-08 2 0 0 -13 0 P 52 21 -1.3039124474204202e+01 5.1810386739467251e-01 -1.1953393518072080e+01 1.7696632879423362e+01 2.1645186910530850e-07 2 0 0 -13 0 P 53 21 -6.5277544808364485e-01 6.2126041561828348e-02 -7.7226737485287500e-01 1.0131003548134292e+00 -1.2615897864237489e-08 2 0 0 -13 0 P 54 21 -3.0900394902668077e-01 1.0847501542455869e-01 -3.7987017098863529e-01 5.0154921622147586e-01 -6.6448576714984773e-09 2 0 0 -13 0 P 55 21 -2.2342396139048857e+00 1.4891279932857771e+00 -3.2957879274317179e+00 4.2510642073878202e+00 -2.0404255297227432e-08 2 0 0 -13 0 P 56 21 -1.6726910697677460e+00 1.2169627141817063e+00 -2.7531778213440865e+00 3.4436727165237762e+00 3.8376818928935595e-08 2 0 0 -13 0 P 57 21 -3.1173917908684192e+00 2.0876149036324834e+00 -8.1142032333390124e-01 3.8385766248391557e+00 -3.2676020251305465e-08 2 0 0 -13 0 P 58 21 -4.8644826009004198e+00 2.4933253546041709e+00 7.8088600448797472e+00 9.5319545476724894e+00 -5.4304971311663281e-08 2 0 0 -13 0 P 59 21 -7.6901891194783767e-01 6.6295636099229494e-01 1.8809207306915094e+00 2.1374667292518645e+00 -2.0050490406910874e-08 2 0 0 -13 0 P 60 21 -2.4301729337268165e+00 1.1280415147837342e+00 7.5988061485363056e+00 8.0572993633057433e+00 -1.0638296836088327e-07 2 0 0 -13 0 P 61 21 -6.3838100578568935e-01 2.2264083640990492e-01 2.7427666016573808e+00 2.8248659935919842e+00 1.0720327899997437e-08 2 0 0 -13 0 P 62 21 -1.6454647372457343e+00 3.2745730023135217e-01 5.9445419261806114e+00 6.1767597652096748e+00 6.9519346976732922e-08 2 0 0 -13 0 P 63 21 -2.3874328682535366e+00 -1.9617254632528349e+00 3.3603918090317317e+00 4.5651325943283849e+00 -5.4016709327697754e-08 2 0 0 -13 0 P 64 21 -2.0350966064186202e-01 -1.2697850280497742e+00 1.4479197727352508e-01 1.2941154956636245e+00 -1.5808497738808353e-08 2 0 0 -13 0 P 65 21 2.5928637454896482e+00 -1.0523092361940408e+01 2.3921794259854025e+01 2.6262342924259215e+01 -2.6362845320931273e-07 2 0 0 -13 0 P 66 21 -1.0527314087565481e-01 -3.0640025334387468e+00 1.7593320163442453e+01 1.7858446414302104e+01 1.8589161261729374e-07 2 0 0 -13 0 P 67 21 2.1755285815661516e+00 -5.4307985908134846e+00 4.7886994487211545e+01 4.8243038243475318e+01 4.8742971521008385e-07 2 0 0 -13 0 P 68 21 8.6150731062793240e-01 -1.5567561364625317e+00 2.5611607764106946e+01 2.5673335131555120e+01 2.3024584562126463e-07 2 0 0 -13 0 P 69 21 2.0523030484842066e+00 -1.1016691558487282e+00 1.7908290546833189e+01 1.8059138767991151e+01 -2.4502104002841337e-07 2 0 0 -13 0 P 70 21 2.3874328682535366e+00 1.9617254632528349e+00 1.0971438048317234e+01 1.1398274226463185e+01 -1.2180047276818615e-07 2 0 0 -13 0 P 71 21 8.0156788825559844e-01 4.7512431922149206e-01 3.2982699629766250e+00 3.4273661821976438e+00 -2.8416786906108926e-08 2 0 0 -13 0 P 72 21 7.5607015917666121e-01 5.6840997639476143e-01 1.6722900768815856e+00 1.9212719974275205e+00 -8.6743086623946004e-09 2 0 0 -13 0 P 73 21 7.8883031030270412e-01 3.8871591814031825e-01 1.3357863449067267e+00 1.5992743612986495e+00 -1.3399398485141023e-08 2 0 0 -13 0 P 74 21 4.9571824485343443e+00 4.2113439065434104e+00 1.0228406789151180e+01 1.2121443015235077e+01 9.4903552553482327e-08 2 0 0 -13 0 P 75 21 2.7246306003584002e+00 3.3410237572721853e+00 5.8264505184621749e+00 7.2480050565072505e+00 -4.0680784113410032e-08 2 0 0 -13 0 P 76 21 1.5416351818443392e+00 2.8345662474227482e+00 5.4430566646215635e+00 6.3275801614210883e+00 -5.7561461405316157e-08 2 0 0 -13 0 P 77 21 2.7553647676288104e+00 1.9683765117772283e+00 7.8795218102559994e-01 3.4766952317379585e+00 -2.2869611452908580e-08 2 0 0 -13 0 P 78 21 1.0527314087565481e-01 3.0640025334387468e+00 -5.4318827558396277e-01 3.1135586491731231e+00 -2.3998503995547306e-08 2 0 0 -13 0 P 79 21 -5.7486379282948441e-01 2.9534785998417852e+00 2.3604531499534023e+00 3.8242964442044278e+00 -2.9258947954336197e-08 2 0 0 -13 0 P 80 21 -1.5201221821921060e-01 4.6728355911534636e-01 6.4376970093539387e-01 8.0987719251123302e-01 5.5294214221825436e-09 2 0 0 -13 0 P 81 21 9.5184530427573161e-02 1.1556588366534259e+00 2.1761948654639456e+00 2.4658531047163996e+00 -1.8961050614251134e-08 2 0 0 -13 0 P 82 21 -8.6150731062793240e-01 1.5567561364625317e+00 4.8887676220753216e+00 5.2024737747855214e+00 -5.8488244072003596e-08 2 0 0 -13 0 P 83 21 -9.8935295569215087e-01 1.4762447355768018e+00 8.7722331186815001e+00 8.9504296924084930e+00 1.2380636750075121e-07 2 0 0 -13 0 P 84 21 -7.3707925916915795e-01 3.2855372995774434e+00 1.5881070026461785e+01 1.6234113045269670e+01 -2.2302015940987714e-07 2 0 0 -13 0 P 85 21 -2.5928637454896482e+00 1.0523092361940408e+01 1.2213990627346465e+02 1.2261979905280930e+02 7.3666614856173245e-07 2 0 0 -13 0 P 86 21 -9.1737566933238157e-01 1.6463621215239150e+00 4.8457997871314916e+01 4.8494635208961341e+01 5.4972966747572170e-07 2 0 0 -13 0 P 87 21 -3.5075680165140208e+00 1.3016152382356951e+00 8.3942199459381669e+01 8.4025532344029187e+01 -7.3304020620875620e-07 2 0 0 -13 0 P 88 21 -2.2697791372812297e+00 -5.9688807813081823e-01 3.5662889706207316e+01 3.5740031825768703e+01 4.3749565648744100e-07 2 0 0 -13 0 P 89 21 -6.5882155047427104e-01 -2.2944326289327219e-01 4.6733054438952575e+00 4.7250898211777397e+00 2.5977055879275041e-08 2 0 0 -13 0 P 90 21 -7.5607015917666121e-01 -5.6840997639476143e-01 1.8314372247804172e+01 1.8338783024453999e+01 -4.8285280901252183e-08 2 0 0 -13 0 P 91 21 -1.5416351818443392e+00 -2.8345662474227482e+00 5.9086067348253245e+01 5.9174105481428668e+01 -5.9753470587025351e-07 2 0 0 -13 0 P 92 21 -4.2838390539459076e-01 -1.1912513640293771e+00 8.0789286948884723e+01 8.0799204688486498e+01 2.9876735293512675e-07 2 0 0 -13 0 P 93 21 -4.6881299462625253e-01 -7.7889023805439261e-01 7.1636223504739093e+01 7.1641991692357351e+01 -8.9282704466254960e-07 2 0 0 -13 0 P 94 21 2.2697791372812297e+00 5.9688807813081823e-01 8.2877671501442549e+01 8.2910895582009445e+01 -9.9000246774393866e-07 2 0 0 -13 0 P 95 21 1.6454647372457343e+00 -3.2745730023135217e-01 1.0769823716823872e+02 1.0771130428897048e+02 9.1372190217708894e-07 2 0 0 -13 0 P 96 21 3.1173917908684192e+00 -2.0876149036324834e+00 3.4783326628715849e+02 3.4785349991563538e+02 -2.7534507423522702e-06 2 0 0 -13 0 P 97 21 2.4301729337268165e+00 -1.1280415147837342e+00 2.4527393398082660e+02 2.4528856660793991e+02 -1.8128044993574082e-06 2 0 0 -13 0 P 98 21 7.6901891194783767e-01 -6.6295636099229494e-01 2.4093896738642047e+02 2.4094110671792413e+02 1.4230413897411016e-06 2 0 0 -13 0 P 99 21 9.8935295569215087e-01 -1.4762447355768018e+00 4.2002437020121289e+02 4.2002812963028532e+02 -4.4476409211582258e-06 2 0 0 -13 0 P 100 21 9.1737566933238157e-01 -1.6463621215239150e+00 8.8779441738839444e+02 8.8779641789790560e+02 7.2119157134314414e-06 2 0 0 -13 0 P 101 21 3.5075680165140208e+00 -1.3016152382356951e+00 1.2662323278526480e+03 1.2662378549604157e+03 -1.0794860289260646e-05 2 0 0 -13 0 P 102 21 1.9219791177889665e+00 1.9240066203380670e+00 5.9392331455139833e+02 5.9392954074782608e+02 5.5939522774935082e-06 2 0 0 -13 0 P 103 21 6.5882155047427104e-01 2.2944326289327219e-01 6.4415664052447511e+01 6.4419441672247018e+01 8.8030430601489128e-07 2 0 0 -13 0 P 104 21 4.6881299462625253e-01 7.7889023805439261e-01 9.7693273104759157e+01 9.7697502862396263e+01 4.3495057580847811e-07 2 0 0 -13 0 P 105 21 -2.0523030484842066e+00 1.1016691558487282e+00 3.4684370606238878e+02 3.4685152739727772e+02 -3.6285474908886966e-06 2 0 0 -13 0 P 106 21 -7.8883031030270412e-01 -3.8871591814031825e-01 2.2953155543089443e+02 2.2953324005870965e+02 1.8668722824294359e-06 2 0 0 -13 0 P 107 21 -1.9219791177889665e+00 -1.9240066203380670e+00 3.7522243232472266e+02 3.7523228742325119e+02 -1.6689300537109375e-06 2 0 0 -13 0 P 138 92 3.3660143259163640e+00 3.2280607865501594e+00 4.4429214549603557e+03 8.0884787807667662e+03 6.7589878074707540e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 172 0 P 139 313 -8.6458250440397455e-02 -2.6728207203775362e-02 -1.1629050840159658e+02 1.1629288938813896e+02 7.3863963743369143e-01 2 0 0 -32 0 P 140 211 -1.0262360665976952e-01 -4.6772032617917531e-01 -9.5278065980333665e+01 9.5279371485363441e+01 1.3957000002789088e-01 1 0 0 0 0 P 141 -213 1.5286984186724317e-01 1.8291219688183846e-01 -8.1263920331242367e+00 8.1699126183081159e+00 8.0771198731011240e-01 2 0 0 -33 0 P 142 111 -3.7083894693622894e-02 1.1147312010174858e-01 -1.4734858771202206e+00 1.4843118615114586e+00 1.3497999999999580e-01 2 0 0 -34 0 P 143 113 -8.4349362963301224e-03 -3.9394720192728527e-01 -4.2963027782092729e+00 4.4489058524693066e+00 1.0859466727377871e+00 2 0 0 -35 0 P 144 211 -4.0291476524173847e-01 4.2767383064424719e-01 -8.3814517551475092e+00 8.4031814524162822e+00 1.3957000000009651e-01 1 0 0 0 0 P 145 -213 -1.7217139914159160e-01 2.3690208700315463e-01 -9.6006616142194645e-01 1.3323699611321085e+00 8.7619466416480862e-01 2 0 0 -36 0 P 146 113 -2.5873411779145949e-01 1.8802963917265553e-01 -1.6802217717302612e+00 1.8551159539581010e+00 7.1833941247628430e-01 2 0 0 -37 0 P 147 111 3.4647539040062092e-01 -1.3513241760242628e-01 -2.2257125869746828e+00 2.2606021513432824e+00 1.3498000000000895e-01 2 0 0 -38 0 P 148 113 -1.1189644891801037e-01 -1.4641423409931398e-01 -1.2659039909461776e+00 1.4961949103133931e+00 7.7596929844349705e-01 2 0 0 -39 0 P 149 221 -5.4432542809620765e-01 5.7789489046409226e-01 -2.5893617279641012e+00 2.7631048363827704e+00 5.4744999999999555e-01 2 0 0 -40 0 P 150 213 7.2238063620118109e-01 -9.3048870360623606e-02 -3.4704633329065954e-01 1.0748718089971059e+00 7.1022276258397132e-01 2 0 0 -41 0 P 151 -2214 1.5918362096492000e+00 -1.6229638522809542e-01 -2.2108540750699275e+00 2.9847400159834860e+00 1.2085175161127610e+00 2 0 0 -42 0 P 152 -211 2.0690604124859145e-02 1.1263691155491730e-01 7.3587633987156287e-02 1.9496179040906830e-01 1.3956999999999964e-01 1 0 0 0 0 P 153 2224 2.2506191731033525e+00 5.3237313477059189e-01 -2.6587114308983502e+00 3.7280440751520647e+00 1.2169052290630427e+00 2 0 0 -43 0 P 154 -321 2.5328845729674656e+00 1.3333242899587179e-02 -2.5991480298649861e+00 3.6626347724682895e+00 4.9360000000000037e-01 1 0 0 0 0 P 155 321 1.2096320134938434e+00 -2.4791670383751760e-01 -1.3520086341154978e+00 1.8963756502427689e+00 4.9360000000000143e-01 1 0 0 0 0 P 156 -2224 4.4666215927472530e+00 -7.4762629650976553e-01 -2.7582129799388917e+00 5.4443847664139930e+00 1.2344768568217281e+00 2 0 0 -44 0 P 157 3224 2.1779547489658642e+00 -3.9451110719330940e-01 -3.2020481872908082e+00 4.1283558341389712e+00 1.3751666798228783e+00 2 0 0 -45 0 P 158 321 1.8112832192084030e+00 -1.2124626465915787e+00 -2.2810407729541704e+00 3.1933682120051823e+00 4.9360000000000481e-01 1 0 0 0 0 P 159 221 1.2600130762986108e+00 -8.0262998865643054e-01 -4.9228775360591420e-01 1.6655019021257431e+00 5.4745000000000044e-01 2 0 0 -46 0 P 160 -213 8.5171128272140018e-01 -1.4137020892317504e+00 -3.0877479916287291e+00 3.6308720593902488e+00 9.6181003615079164e-01 2 0 0 -47 0 P 161 111 1.8478036375929377e-01 -3.9753686261354959e-01 -1.2939063174540892e+00 1.3728046105383112e+00 1.3498000000000251e-01 2 0 0 -48 0 P 162 111 -2.9068009230831210e-01 1.2555316743292205e-01 -2.3057598180992606e-01 4.1429868175558976e-01 1.3497999999999960e-01 2 0 0 -49 0 P 163 223 4.8574152605526238e-01 -1.2305071076949254e+00 -3.7126461382530831e+00 4.0183335430074409e+00 7.8305206899093005e-01 2 0 0 -50 0 P 164 213 -3.5000074551346161e-01 -7.0579379504670514e-01 -3.5712845004007421e+00 3.7452430980785918e+00 8.0754410276859867e-01 2 0 0 -51 0 P 165 -211 1.2469731587310657e+00 -1.5936062218155405e+00 -1.8124300903975183e+01 1.8237441868078449e+01 1.3957000000065672e-01 1 0 0 0 0 P 166 223 -1.0577627092481059e-01 -1.2143030544604311e-01 -3.8692990712715818e+00 3.9514787188296112e+00 7.8535012819041550e-01 2 0 0 -52 0 P 167 213 8.6581244784671740e-01 -9.6044261858934676e-01 -1.0822088807950625e+01 1.0939539990760208e+01 9.4013181194053608e-01 2 0 0 -53 0 P 168 -213 1.1298794358204796e+00 -1.7534702451088580e+00 -2.6149604807775336e+01 2.6250310310309239e+01 9.6211971434348909e-01 2 0 0 -54 0 P 169 -2114 6.6031277041612679e-01 -1.0592910378357473e-01 -1.8054366227628531e+01 1.8100372919298024e+01 1.1027810328984637e+00 2 0 0 -55 0 P 170 211 1.9563466575872801e+00 9.8222549184576857e-01 -2.7776541468163451e+01 2.7863018409335851e+01 1.3957000000049524e-01 1 0 0 0 0 P 171 2112 1.0681561181506660e+00 -3.7843740144704308e-01 -2.4442381712946467e+01 2.4486669596860992e+01 9.3956999999993196e-01 1 0 0 0 0 P 172 -213 1.8469464969322036e+00 2.0200134493970907e+00 -3.2944462374097718e+01 3.3069017740417614e+01 8.5479090977815575e-01 2 0 0 -56 0 P 173 223 1.8571828098863239e+00 5.8038524275475067e-01 -5.5372620727927071e+01 5.5412399078646644e+01 7.8795326828177603e-01 2 0 0 -57 0 P 174 211 4.4447986574250631e-01 5.1626166339198809e-01 -2.8836859796558201e+01 2.8845243128935376e+01 1.3957000000031466e-01 1 0 0 0 0 P 175 -321 1.5612995962116072e+00 9.9586877807095953e-01 -2.8582587873108324e+01 2.8646769129104705e+01 4.9360000000024479e-01 1 0 0 0 0 P 176 313 3.7225517318265036e+00 1.0237926715118149e+00 -1.2877706485944555e+02 1.2883816013865803e+02 9.1297933726856495e-01 2 0 0 -58 0 P 177 111 2.4560755200114331e-01 6.4350191807092816e-01 -3.9721343322533187e+01 3.9727544005829394e+01 1.3497999999350518e-01 2 0 0 -59 0 P 178 -2114 2.8083137371214035e+00 5.1209505815456291e-01 -1.5834935456580001e+02 1.5837961024625733e+02 1.1974902739642197e+00 2 0 0 -60 0 P 179 2114 1.2310750735723537e+00 2.8899019917946739e-01 -1.4057912581526455e+02 1.4059029602554162e+02 1.2416361759596202e+00 2 0 0 -61 0 P 180 211 6.9850869046188879e-01 -1.4271746756676962e-01 -9.2059337255929861e+01 9.2062203636737536e+01 1.3956999998104466e-01 1 0 0 0 0 P 181 -211 9.0703686704609865e-01 7.9634409500678405e-01 -4.6559772417709816e+01 4.6575624173699104e+01 1.3956999999876751e-01 1 0 0 0 0 P 182 111 -1.5318652427413004e-01 -3.8997464511516222e-01 -1.8124405106100109e+01 1.8129749760696626e+01 1.3497999999912252e-01 2 0 0 -62 0 P 183 213 4.9190331845888646e-01 1.1018830624906324e+00 -8.9720263656592067e+01 8.9729953866587536e+01 5.3178485632593919e-01 2 0 0 -63 0 P 184 -323 2.7042205807770658e-01 1.9027196230679919e-02 -3.4117086146357337e+01 3.4129675990959562e+01 8.8641187166149504e-01 2 0 0 -64 0 P 185 323 -9.3809820262830168e-01 8.8804828128994817e-01 -4.4275312244151962e+01 4.4302485599048914e+01 8.5924266019984141e-01 2 0 0 -65 0 P 186 331 -5.4578313514071497e-01 8.6294210105749924e-01 -3.0656225779993900e+01 3.0688132282108047e+01 9.5641810408308459e-01 2 0 0 -66 0 P 187 -213 -1.3024610279208693e+00 1.3386371950359037e+00 -6.9483237747394767e+01 6.9514482450902563e+01 9.2443944456572902e-01 2 0 0 -67 0 P 188 211 -2.1115042984633141e+00 -1.2009431137226931e+00 -6.8032346762554354e+01 6.8075843003007833e+01 1.3957000001285033e-01 1 0 0 0 0 P 189 113 -1.0312394488534895e+00 -5.9561619162881892e-03 -3.1145572392265873e+01 3.1171877255571257e+01 7.5878964001236537e-01 2 0 0 -68 0 P 190 221 -2.1870520779673912e+00 -8.9001770795194468e-01 -6.1800914740108325e+01 6.1848428375576731e+01 5.4744999999718846e-01 2 0 0 -69 0 P 191 -211 -9.6742712156966726e-01 -7.9308470037160639e-01 -3.0222436678050354e+01 3.0248637277093575e+01 1.3956999999866210e-01 1 0 0 0 0 P 192 211 -2.6805309575448213e+00 -5.9519209451154886e-01 -3.1043177097097619e+01 3.1164688734373573e+01 1.3956999999919864e-01 1 0 0 0 0 P 193 -2212 -1.6196312513737525e+00 -1.1169667473354492e+00 -2.8599884095464279e+01 2.8682826586164246e+01 9.3827000000012306e-01 1 0 0 0 0 P 194 2112 -1.7345978510746289e+00 -5.7476832908853215e-01 -2.1418603456529546e+01 2.1516936448993750e+01 9.3957000000022284e-01 1 0 0 0 0 P 195 213 -1.4518147651206168e+00 -7.2330839175497530e-01 -1.6644320192828342e+01 1.6747260616949671e+01 8.9799908064249323e-01 2 0 0 -70 0 P 196 113 -3.1322115136188642e+00 -3.2539408346172580e+00 -1.6165254643600470e+01 1.6801439953537482e+01 7.5765882733774181e-01 2 0 0 -71 0 P 197 -2212 -1.0239073894788264e+00 -4.2431958348089382e-01 -4.7250705663701043e+00 4.9431847933525450e+00 9.3827000000000049e-01 1 0 0 0 0 P 198 2112 -2.0151804214801965e+00 -2.3366463105492397e+00 -9.4632573375005347e+00 9.9978447343604078e+00 9.3956999999997248e-01 1 0 0 0 0 P 199 211 -9.1263810662382960e-01 -4.6188546050838880e-01 -2.7960052517061063e+00 2.9804985564094975e+00 1.3956999999998834e-01 1 0 0 0 0 P 200 113 -2.1955863058696963e+00 -2.0568656313272755e+00 -7.9805882102828249e+00 8.5670308249738305e+00 8.0804301994923311e-01 2 0 0 -72 0 P 201 -211 -1.9389694814380847e+00 -9.2881999869035903e-01 -2.0076620016343507e+00 2.9449101408399350e+00 1.3957000000001579e-01 1 0 0 0 0 P 202 213 -7.3227556886456824e-01 -3.8366063610515627e-01 -1.2616829043612876e+00 1.7300278773884452e+00 8.4718930170953821e-01 2 0 0 -73 0 P 203 -213 -2.3742067286251043e+00 -2.7517999723894798e-01 -2.4360936519213849e+00 3.5084131608468891e+00 8.1352873651939472e-01 2 0 0 -74 0 P 204 223 -2.8267292288026193e+00 1.3159002388888899e-01 -4.6485956153947372e+00 5.4979862602283136e+00 7.8147146770564357e-01 2 0 0 -75 0 P 205 111 -1.2599441126026281e+00 -7.2081422498429182e-01 -9.3343207795606697e-01 1.7310538288508275e+00 1.3497999999999874e-01 2 0 0 -76 0 P 206 -313 -5.9913960915118638e+00 -2.3471816017155656e-01 -4.7429680748922056e+00 7.6955436763743217e+00 8.7961728918898430e-01 2 0 0 -77 0 P 207 -3122 -3.6189256000268109e+00 2.1096128147839641e+00 -4.0507469203712994e+00 5.9329909153923115e+00 1.1156799999999998e+00 2 0 0 -78 0 P 208 2212 -2.5853622663039495e+00 6.5770530381212144e-01 -2.0170318546889003e+00 3.4735345702066409e+00 9.3826999999999983e-01 1 0 0 0 0 P 209 -2212 -1.6749437480753951e-01 5.2872845008431354e-02 -6.0008055487800060e-01 1.1275181455631405e+00 9.3826999999999994e-01 1 0 0 0 0 P 210 2112 -1.5667247914730646e+00 9.4802603527313989e-01 -1.5972336866720349e+00 2.6052499247695931e+00 9.3957000000000179e-01 1 0 0 0 0 P 211 113 -2.8065399011492115e-01 1.5241577268544876e-01 7.1186233343886562e-01 1.0526036387911042e+00 7.0656153921404330e-01 2 0 0 -79 0 P 212 213 -1.3059020527626093e+00 1.2185337023999070e+00 -8.6495572583492358e-02 1.9618832430113062e+00 8.0703148627422960e-01 2 0 0 -80 0 P 213 111 1.8513735826213674e-02 -6.2294930740185162e-02 3.6113910269727278e-01 3.9097885966783252e-01 1.3498000000000016e-01 2 0 0 -81 0 P 214 111 -1.2454803240896020e+00 1.1841748634972864e+00 9.8122666773816303e-01 1.9835616246826555e+00 1.3497999999999896e-01 2 0 0 -82 0 P 215 111 -5.6608168501455802e-01 -1.6093270528414916e-01 7.1568468817773301e-01 9.3636103241808122e-01 1.3497999999999971e-01 2 0 0 -83 0 P 216 -213 -8.7447329821486419e-01 3.0970015436297060e-01 5.9037510042610142e-01 1.3544286010408377e+00 7.9076946148108229e-01 2 0 0 -84 0 P 217 211 -2.4028827090351885e-02 3.4163968385318016e-01 3.6860912337819218e-01 5.2215661333768260e-01 1.3956999999999981e-01 1 0 0 0 0 P 218 113 -2.2164948180331572e+00 1.2185398672762902e+00 3.9471969325687741e+00 4.7431261979697323e+00 7.2055105223496241e-01 2 0 0 -85 0 P 219 -213 -2.0871097327924693e+00 6.8175008219537814e-01 5.8285804113604520e+00 6.2749502445072247e+00 7.6278486354675779e-01 2 0 0 -86 0 P 220 111 -3.9838991070185514e-01 -2.1136581073607266e-01 5.3677933819072043e-01 7.1396196341655171e-01 1.3498000000000113e-01 2 0 0 -87 0 P 221 113 -2.5896721180322495e+00 1.1423444424028475e+00 7.5118429513325031e+00 8.0615199317614543e+00 7.4092278997280303e-01 2 0 0 -88 0 P 222 213 -9.5883983213934920e-01 -4.3871268479683656e-01 2.6564033781971599e+00 2.9693611780199021e+00 8.0547144849199559e-01 2 0 0 -89 0 P 223 111 -5.7254984108128271e-01 -5.1633849287441458e-01 1.0021875202425585e+00 1.2716202994117201e+00 1.3497999999999982e-01 2 0 0 -90 0 P 224 -2214 -2.9263762479847849e-01 -1.6197359121504856e-01 1.0729100401391110e+00 1.6668401014373686e+00 1.2309946164909227e+00 2 0 0 -91 0 P 225 -211 -9.6922320376789628e-01 -2.4255198092437182e+00 4.2652996792039568e+00 5.0034788999328415e+00 1.3956999999997163e-01 1 0 0 0 0 P 226 2224 7.5844147941590404e-02 -6.7615621671770609e-01 1.8652492184855125e+00 2.3601930945768528e+00 1.2760945233188874e+00 2 0 0 -92 0 P 227 111 9.3919333827516105e-01 -4.0345946606881906e+00 7.9774179144744304e+00 8.9898528567097067e+00 1.3498000000002508e-01 2 0 0 -93 0 P 228 223 7.7561739768101112e-01 -2.3225808345502679e+00 5.9114121270950921e+00 6.4470036822812986e+00 7.8936624096550989e-01 2 0 0 -94 0 P 229 -213 -1.5644393270301368e-01 -2.4523270637774717e+00 7.8384688727386704e+00 8.2688015938785746e+00 9.4504116218331591e-01 2 0 0 -95 0 P 230 113 4.3127572878668069e-01 -1.2925307973311557e+00 8.8689836630054675e+00 9.0074220098269109e+00 7.8622225367029097e-01 2 0 0 -96 0 P 231 211 1.4507096988062229e-01 -1.0842065657493365e+00 3.4460929389281745e+00 3.6182296488955337e+00 1.3956999999999731e-01 1 0 0 0 0 P 232 -211 2.3753122216016687e-01 -5.4618002536117871e-01 4.5859036889228282e+00 4.6265241953955503e+00 1.3956999999999908e-01 1 0 0 0 0 P 233 213 4.8962580640222642e-01 -8.6535048919657398e-01 1.2595745536616331e+01 1.2659288266335645e+01 7.8498973722294185e-01 2 0 0 -97 0 P 234 221 3.4442609762989673e-01 -1.4682533469385179e+00 8.2772170603865565e+00 8.4312763562095974e+00 5.4744999999999922e-01 2 0 0 -98 0 P 235 331 1.0904069433801873e+00 -2.2977645093615595e+00 2.4937029787772087e+01 2.5084672321656193e+01 9.5740367973944740e-01 2 0 0 -99 0 P 236 113 9.4910905796397915e-01 -1.9067022716499868e+00 1.7000693079191390e+01 1.7156778259501593e+01 8.9171380846996040e-01 2 0 0 -100 0 P 237 221 5.7451014673990419e-01 -7.4079782242908765e-01 5.9096442043923973e+00 6.0085305564198839e+00 5.4745000000000354e-01 2 0 0 -101 0 P 238 331 1.1052547802450339e+00 6.2562598491740218e-01 9.5252403029026613e+00 9.6571507084840569e+00 9.5778963038580178e-01 2 0 0 -102 0 P 239 331 1.5068901255762237e+00 -6.7100541939097466e-02 1.0839721670844447e+01 1.0986002563655262e+01 9.5784450407026001e-01 2 0 0 -103 0 P 240 -321 8.8666956133355207e-02 -5.5681827828218178e-01 5.2668409057661814e+00 5.3198836933518594e+00 4.9360000000000326e-01 1 0 0 0 0 P 241 323 4.2960648908995896e-01 9.9038722096097737e-02 2.1177479143357338e+00 2.3234115770669588e+00 8.4794735911658614e-01 2 0 0 -104 0 P 242 -211 1.4709643755454853e+00 4.5538916946417529e-01 4.1476751862642063e+00 4.4264889839963466e+00 1.3956999999999870e-01 1 0 0 0 0 P 243 213 4.1377071709381550e+00 5.5946781571058164e+00 1.5196108888375694e+01 1.6736026433774910e+01 8.6707043001812190e-01 2 0 0 -105 0 P 244 -323 4.7066948134873057e+00 3.3353627609046863e+00 7.8526852077527938e+00 9.7792866934909473e+00 8.3196300836727799e-01 2 0 0 -106 0 P 245 -3222 2.0658704347803991e+00 2.2631915036873225e+00 3.0755830510395468e+00 4.5015184700725115e+00 1.1893699999999992e+00 2 0 0 -107 0 P 246 211 7.0856195037529024e-01 9.1436004820608163e-01 1.2808484547270407e+00 1.7315215517433535e+00 1.3956999999999922e-01 1 0 0 0 0 P 247 2214 6.0455339898790339e-01 1.5588847882426693e+00 1.0728983080190957e+00 2.3388756494257614e+00 1.2343508127288287e+00 2 0 0 -108 0 P 248 111 2.9179655513536563e-02 5.9823903526451749e-01 -3.6138744127912392e-01 7.1243377146537734e-01 1.3497999999999999e-01 2 0 0 -109 0 P 249 223 1.2145386026632192e+00 2.1048774292157315e+00 1.3725716012255009e+00 2.8959883652118075e+00 7.7277603584121946e-01 2 0 0 -110 0 P 250 -323 -1.3711328200405654e-01 6.7130370616046298e-01 4.6060985832616053e-01 1.1961464978847105e+00 8.6553814751743607e-01 2 0 0 -111 0 P 251 323 3.1771789416814433e-01 2.6387353476027937e+00 9.5838479396598164e-01 2.9906306525256947e+00 9.8056177345334483e-01 2 0 0 -112 0 P 252 111 -7.3643513080090106e-01 7.4757308201204187e-01 9.7768085461269083e-01 1.4405837944052142e+00 1.3497999999999885e-01 2 0 0 -113 0 P 253 -2212 -5.4819162965982160e-01 1.2687962779024808e+00 5.3729913070941659e+00 5.6266992310463646e+00 9.3826999999999805e-01 1 0 0 0 0 P 254 2112 -7.8989578392726101e-01 2.0041553147643452e+00 7.6609765451792500e+00 8.0133593009330877e+00 9.3956999999999646e-01 1 0 0 0 0 P 255 213 1.9852265167723052e-02 7.2243092199878334e-01 3.7137040197553013e+00 3.8360479016489233e+00 6.3353406215145402e-01 2 0 0 -114 0 P 256 113 -6.5038419558314542e-01 1.6331384341997779e+00 8.0981126078556240e+00 8.3371490083419051e+00 9.1568828247464107e-01 2 0 0 -115 0 P 257 -211 2.0952301966083978e-01 5.6185519693507335e-01 3.2564220260147434e+00 3.3141130569889605e+00 1.3957000000000100e-01 1 0 0 0 0 P 258 111 -7.9471605748990737e-01 1.8219886489093593e+00 1.4938053087263649e+01 1.5070330649560875e+01 1.3498000000004173e-01 2 0 0 -116 0 P 259 213 -1.4785935916277890e-01 1.0823162024683843e+00 1.0100792119540120e+01 1.0184074173031185e+01 7.0433980962274401e-01 2 0 0 -117 0 P 260 -211 -3.3016507635965109e-01 8.1980070489155632e-01 9.6973072404626048e+00 9.7384973006217308e+00 1.3957000000003769e-01 1 0 0 0 0 P 261 213 -6.8287060587783655e-01 2.8216517660287885e+00 3.3295433715242297e+01 3.3429240276910214e+01 7.0722574344921363e-01 2 0 0 -118 0 P 262 -211 -5.0133409960976427e-01 5.0819350515765838e-01 7.7112523494019989e+00 7.7454818506774519e+00 1.3956999999999070e-01 1 0 0 0 0 P 263 213 -6.1534284389602178e-01 1.4014602304025630e+00 2.5048861603694608e+01 2.5105627499487035e+01 7.1015977710624467e-01 2 0 0 -119 0 P 264 -213 -8.7850171255637388e-01 3.1659976167696975e+00 4.3216065971977635e+01 4.3344910460908793e+01 5.9799548620483356e-01 2 0 0 -120 0 P 265 111 -2.7703148198687601e-02 -2.1313112002194740e-01 5.7840357377160068e+00 5.7896011394842981e+00 1.3498000000001592e-01 2 0 0 -121 0 P 266 211 -4.0867371432589983e-01 1.2152506516609649e+00 1.3196245909077160e+01 1.3259118908467448e+01 1.3957000000003836e-01 1 0 0 0 0 P 267 223 -1.3340594868137647e+00 1.1046902094200263e-01 2.2132289576565547e+01 2.2186509355341400e+01 7.8168878382243168e-01 2 0 0 -122 0 P 268 -321 -1.1348307922960887e+00 8.9846755274809154e-01 3.8757593401763934e+01 3.8787752862558818e+01 4.9360000000005705e-01 1 0 0 0 0 P 269 333 -1.9058686269840910e+00 5.2705167322184487e-01 3.4693954709169461e+01 3.4765256468211511e+01 1.0210020808266531e+00 2 0 0 -123 0 P 270 311 -1.7244824127432363e+00 -3.9212022161552618e-01 4.6946279297054723e+01 4.6982213795499561e+01 4.9766999999986511e-01 2 0 0 -124 0 P 271 211 -1.0410453271368658e+00 -1.3096092067284957e+00 2.0718783678019197e+01 2.0786686328728688e+01 1.3956999999980010e-01 1 0 0 0 0 P 272 223 -4.8107430045210509e-01 -9.9625936732274878e-01 3.1603459876252415e+01 3.1632436713138716e+01 7.8000708413191155e-01 2 0 0 -125 0 P 273 -2214 -6.7223836845056484e-01 -5.2884270012629941e-01 7.5598216556348532e+01 7.5614086054776507e+01 1.2915434073556129e+00 2 0 0 -126 0 P 274 2112 -3.3912481482832363e-01 -1.1060746633544731e+00 2.8434374428021954e+01 2.8473405972921398e+01 9.3957000000004220e-01 1 0 0 0 0 P 275 -2112 1.1911753378849299e+00 -3.9285491775581260e-01 6.6583483751579521e+01 6.6601924401279462e+01 9.3957000000011326e-01 1 0 0 0 0 P 276 111 6.5531120148361169e-02 4.7575418538027027e-02 4.8819191907438736e+01 4.8819445673254918e+01 1.3497999999877419e-01 2 0 0 -127 0 P 277 2112 3.2470414334847805e-02 -4.5395177680516458e-01 5.6744924733685551e+01 5.6754527584678300e+01 9.3957000000013613e-01 1 0 0 0 0 P 278 -2114 3.5147732051311236e+00 -1.0653591794292385e+00 3.0076979503181508e+02 3.0079515762351491e+02 1.3298967668296131e+00 2 0 0 -128 0 P 279 223 4.2188245471656338e-01 -4.6036605180864476e-01 6.7195590642386293e+01 6.7203143597201418e+01 7.9068695427841207e-01 2 0 0 -129 0 P 280 2214 2.4826507607967483e+00 -1.9868507806297022e+00 3.5970341976899709e+02 3.5971957295357805e+02 1.2287561062551129e+00 2 0 0 -130 0 P 281 223 9.6639111799113309e-01 -6.5202840325088651e-01 2.6197499296865038e+02 2.6197874629196588e+02 7.7943245648910531e-01 2 0 0 -131 0 P 282 -213 1.4517766990878931e+00 -1.1027653158701467e+00 3.5793226392700927e+02 3.5793785636203410e+02 8.2444539420643526e-01 2 0 0 -132 0 P 283 113 2.0559781684965261e-01 -4.6267809829803608e-01 1.8459103349964764e+02 1.8459252627399187e+02 5.4292380810112750e-01 2 0 0 -133 0 P 284 -311 3.1865086807574067e-01 -5.5487539481077219e-01 2.4466956603456691e+02 2.4467090886341941e+02 4.9766999999751133e-01 2 0 0 -134 0 P 285 313 1.8125039797322215e+00 -3.2396099942357115e-01 8.0754843847266329e+02 8.0755104971624587e+02 9.0955855669973640e-01 2 0 0 -135 0 P 286 -313 7.6628161476843215e-01 -9.0264530739853466e-01 3.7716122032030961e+02 3.7716391125996518e+02 7.9239342858083783e-01 2 0 0 -136 0 P 287 311 1.6380306417008008e+00 -1.4172523212967988e-01 3.2704278346785134e+02 3.2704729493492738e+02 4.9767000000738415e-01 2 0 0 -137 0 P 288 213 7.7795553432290854e-01 1.1218956468666517e-01 4.4583357082830787e+02 4.4583474944782984e+02 6.5813097297386813e-01 2 0 0 -138 0 P 289 -211 7.1338260907551931e-01 7.4376210896650718e-01 1.6913516046839726e+02 1.6913835781181351e+02 1.3956999999329156e-01 1 0 0 0 0 P 290 211 1.0008309002088114e+00 1.5159740827199570e+00 3.4586099009633818e+02 3.4586578869572304e+02 1.3957000002988271e-01 1 0 0 0 0 P 291 -211 -1.4291449730596018e-01 -2.7710443699978121e-01 2.3482432879045728e+01 2.3484917396625711e+01 1.3956999999984138e-01 1 0 0 0 0 P 292 111 -2.7148170708573210e-01 5.5866299346449155e-01 7.9047475327229890e+01 7.9050030878342909e+01 1.3498000000125404e-01 2 0 0 -139 0 P 293 213 -1.5251228600398872e+00 -1.3537775464818530e-01 2.9140496124428807e+02 2.9141024059407954e+02 8.5589627853972206e-01 2 0 0 -140 0 P 294 -213 -4.9982807433505505e-01 -3.1234274394603839e-01 1.3919081262877782e+02 1.3919486234990666e+02 8.8317509947770467e-01 2 0 0 -141 0 P 295 -313 -6.7565587302759100e-01 -3.1075479641138409e-01 2.1036602600455680e+02 2.1036942080325039e+02 9.3553874474624321e-01 2 0 0 -142 0 P 296 311 -4.9871228495176489e-01 -7.5174835164291953e-01 1.2689625628638298e+02 1.2690043882688370e+02 4.9767000000088790e-01 2 0 0 -143 0 P 297 111 -7.6555690783014108e-01 1.3412096124136335e-02 5.0867788113490533e+01 5.0873729413350638e+01 1.3498000000064128e-01 2 0 0 -144 0 P 298 -1114 -2.3989338165417701e-01 1.5971260638358453e-01 1.1920509234076086e+01 1.1999004823300890e+01 1.3395967298801084e+00 2 0 0 -145 0 P 299 -211 2.6427123975556938e-01 1.4125731954195242e-01 1.1559626919648089e+00 1.2022988183478560e+00 1.3957000000000080e-01 1 0 0 0 0 P 300 2114 2.7412898036199668e-01 3.1220103074346817e-01 1.6376978277139848e+01 1.6422568265488334e+01 1.1500933715322554e+00 2 0 0 -146 0 P 301 -313 4.7863366193791601e-01 1.7151733967799046e-01 1.1471722923102272e+00 1.4614470845821850e+00 7.4920953853988825e-01 2 0 0 -147 0 P 302 311 3.5449487156875237e-01 3.4868286711363355e-01 1.3485744103664414e+00 1.5210439589250291e+00 4.9767000000000033e-01 2 0 0 -148 0 P 303 113 6.4481878354490141e-01 4.1487289544268102e-01 1.0275332608992802e+00 1.3870878038553298e+00 5.2941211769714291e-01 2 0 0 -149 0 P 304 221 6.5807891907336291e-01 1.2163197878146004e+00 3.4758356092690224e+00 3.7806925787639329e+00 5.4745000000000110e-01 2 0 0 -150 0 P 305 223 4.3589299051890427e-02 -1.9698664696504845e-01 2.8796082005999248e+00 2.9931864459371456e+00 7.9140251775258841e-01 2 0 0 -151 0 P 306 113 1.1385315347037392e+00 7.3545871769851634e-01 3.8713136770423904e+00 4.1613962876104358e+00 7.0213666442427414e-01 2 0 0 -152 0 P 307 211 1.7128174553781481e-01 -3.4337879065824878e-01 2.0298958803554323e+00 2.0705563262592879e+00 1.3957000000000255e-01 1 0 0 0 0 P 308 -2212 3.2329186676553112e-01 3.4400171074514890e-01 3.5580189662426235e+01 3.5595689371260043e+01 9.3827000000007010e-01 1 0 0 0 0 P 309 -211 -1.6469931596059559e-01 -7.0929480570152936e-01 1.9400706078899834e+01 1.9414868043096096e+01 1.3957000000001110e-01 1 0 0 0 0 P 310 2224 6.2973464850393379e-01 3.6713142294376311e-01 1.0047112818768339e+02 1.0048173019806920e+02 1.2645762461887646e+00 2 0 0 -153 0 V -15 0 0 0 0 0 2 1 0 P 111 2 1.5697925032022784e+00 1.3042181395192785e+00 3.1869951533928838e+00 3.7844645019224230e+00 -2.4088690348672797e-08 2 0 0 -15 0 P 112 -2 -1.5697925032022784e+00 -1.3042181395192785e+00 2.9811219176452064e+00 3.6127996548972705e+00 3.0048686647604551e-08 2 0 0 -15 0 P 311 92 0 0 6.1681170710380897e+00 7.3972641568196931e+00 4.0833624384492078e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 4 0 P 312 223 8.0560257221793297e-01 4.4431650838945014e-01 1.8382278590945076e+00 2.1957906195591539e+00 7.7201173501524822e-01 2 0 0 -154 0 P 313 111 -1.7611323127243686e-01 5.6926970695682888e-01 1.1356315308009262e+00 1.2895590113047124e+00 1.3497999999999927e-01 2 0 0 -155 0 P 314 223 -4.9288244654333319e-01 -1.3724991139995704e+00 3.0703481326263287e+00 3.4864111898567653e+00 7.7546012482676085e-01 2 0 0 -156 0 P 315 111 -1.3660689440216289e-01 3.5891289865329146e-01 1.2390954851632832e-01 4.2550333609906266e-01 1.3498000000000002e-01 2 0 0 -157 0 V -17 0 0 0 0 0 0 2 0 P 316 22 -1.3858897399363583e+00 -6.1695563740168335e-01 -8.8468470018067258e+00 8.9759693907209392e+00 -9.0678494011149447e-08 1 0 0 0 0 P 317 111 -1.3255103892391700e+00 -5.3120418890594712e-02 -1.1428046129766084e+01 1.1505575062348933e+01 1.3497999999999613e-01 2 0 0 -158 0 V -18 0 0 0 0 0 0 2 0 P 318 -211 -2.8370787412352783e-01 -4.0198019506998689e-01 -3.4386896839253328e-01 6.1628231143814383e-01 1.3957000000000008e-01 1 0 0 0 0 P 319 211 -4.8277144893439045e-01 3.7866161533052733e-01 -1.3346325953702347e+00 1.4755259538061753e+00 1.3956999999999947e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 320 -211 3.0057518624306956e-01 -1.8175003365912976e-01 -5.8078576321517861e-02 3.8240217474235827e-01 1.3956999999999994e-01 1 0 0 0 0 P 321 111 6.6182273715659634e-01 4.3963218590402192e-01 -4.1708082162497334e-01 9.0744796350400203e-01 1.3498000000000027e-01 2 0 0 -159 0 V -20 0 0 0 0 0 0 2 0 P 322 211 1.1096829509701452e-01 2.6271945432621482e-02 -2.5983888011742501e-01 3.1622809197512847e-01 1.3957000000000003e-01 1 0 0 0 0 P 323 111 -5.9134894661334680e-01 -2.0850409535601852e-01 -4.3046809000173610e-02 6.4283758649136558e-01 1.3497999999999977e-01 2 0 0 -160 0 V -21 0 0 0 0 0 0 2 0 P 324 -2212 -1.1664606878750057e-01 7.4993935690093594e-01 -2.3947075735743955e+00 2.6816021890331041e+00 9.3826999999999972e-01 1 0 0 0 0 P 325 111 3.0592316051457923e-02 -1.8019944305505387e-01 -3.1788181213455147e-01 3.9073798889369610e-01 1.3498000000000004e-01 2 0 0 -161 0 V -22 0 -8.2657939431601607e-06 -1.1029975668380898e-05 -1.4972788037824163e-04 1.5045159242856225e-04 0 2 0 P 326 22 -1.0076915203629748e-01 -6.3237918121332379e-02 -1.7725950820654059e+00 1.7765828945627329e+00 2.1181191160425841e-08 1 0 0 0 0 P 327 22 -1.1292505720760450e-01 -2.2191822593964527e-01 -2.0982951456870245e+00 2.1130173416144205e+00 3.1596413727267408e-08 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 328 2212 3.4483383572031939e-01 -1.8167367511399590e-01 -6.7783659292374798e+00 6.8540871720481125e+00 9.3826999999999694e-01 1 0 0 0 0 P 329 211 1.2589034898368945e-01 5.8595652741644903e-02 -7.5123279063171877e-01 7.7660306534791268e-01 1.3956999999999986e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 3 0 P 330 111 -1.1272739739865062e-01 -2.1685727702231542e-02 -1.1538719700078723e+00 1.1673979015229112e+00 1.3497999999999952e-01 2 0 0 -162 0 P 331 111 -4.4945571991878375e-02 5.7204111168850441e-03 -8.7131455113777889e-01 8.8287115422888995e-01 1.3497999999999993e-01 2 0 0 -163 0 P 332 111 -5.4498277832502044e-02 -3.2786156414771317e-01 -1.9480915343593619e+00 1.9808441367696517e+00 1.3497999999999979e-01 2 0 0 -164 0 V -25 0 0 0 0 0 0 2 0 P 333 -211 3.0667388398723527e-01 2.5721173335345737e-01 -1.0649560848420171e+01 1.0657993844809550e+01 1.3956999999998387e-01 1 0 0 0 0 P 334 111 -1.3158507814775555e-01 -1.4892384178510540e-01 -2.4014567294598937e+01 2.4015768879856086e+01 1.3497999999988683e-01 2 0 0 -165 0 V -26 0 0 0 0 0 0 1 0 P 335 310 -1.9728899388726165e-01 -1.1236567577654022e-01 -5.1551286531483889e+01 5.1554188651090747e+01 4.9767000000003353e-01 2 0 0 -166 0 V -27 0 0 0 0 0 0 2 0 P 336 3122 2.7660489680953065e-01 -2.1473626319240557e-02 -1.6845998947323770e+02 1.6846391235683481e+02 1.1156799999991918e+00 2 0 0 -167 0 P 337 111 6.0910401983388193e-02 1.9687157247979328e-02 -7.9087783106038557e+01 7.9087924197625952e+01 1.3498000000175248e-01 2 0 0 -168 0 V -28 0 0 0 0 0 0 2 0 P 338 211 1.2394221263686946e+00 -1.1057245195541077e-01 -5.3735126173745482e+02 5.3735272062593492e+02 1.3957000009092310e-01 1 0 0 0 0 P 339 111 4.6323149036248856e-01 4.2243319152170261e-01 -2.3440744892689563e+02 2.3440832614314394e+02 1.3497999997793755e-01 2 0 0 -169 0 V -29 0 0 0 0 0 0 1 0 P 340 130 1.2889206342757902e+00 -8.4778519723955947e-01 -3.0032646868717376e+02 3.0033084344715411e+02 4.9767000001006828e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 341 -211 1.0987439104186890e-01 -3.7539177412139657e-01 -8.5628426883232791e+01 8.5629433967812318e+01 1.3957000000366596e-01 1 0 0 0 0 P 342 111 1.2238541756272946e-01 2.7158870189001771e-01 -1.1004501642812407e+02 1.1004550240186975e+02 1.3497999999529908e-01 2 0 0 -170 0 V -31 0 0 0 0 0 0 3 0 P 343 111 -5.6450038184394513e-01 1.3419523498441369e-01 -3.1501575451710994e+02 3.1501631780373958e+02 1.3497999996186902e-01 2 0 0 -171 0 P 344 111 -4.8524219573545196e-01 1.2655621118111576e-01 -2.7019843873359349e+02 2.7019893780349133e+02 1.3497999996900181e-01 2 0 0 -172 0 P 345 111 -5.2962856437421701e-01 4.2089617309906541e-01 -3.4918831283228292e+02 3.4918899423988353e+02 1.3498000000582391e-01 2 0 0 -173 0 V -32 0 0 0 0 0 0 2 0 P 346 321 4.1727885684839670e-02 -1.4226834987035189e-01 -8.8084962593431683e+01 8.8086470343328415e+01 4.9359999999887000e-01 1 0 0 0 0 P 347 -211 -1.2818613612523713e-01 1.1554014266657653e-01 -2.8205545808164899e+01 2.8206419044810538e+01 1.3956999999985986e-01 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 348 -211 6.7577327523398345e-02 2.5911422159614084e-01 -7.7292308759880903e+00 7.7351274452497680e+00 1.3957000000000805e-01 1 0 0 0 0 P 349 111 8.5292514343844827e-02 -7.6202024714302402e-02 -3.9716115713614647e-01 4.3478517305834724e-01 1.3498000000000002e-01 2 0 0 -174 0 V -34 0 -3.9478161081191336e-06 1.1867021595109293e-05 -1.5686192965545182e-04 1.5801442444919107e-04 0 2 0 P 350 22 -1.4513120710267547e-02 -3.1244768956859823e-02 -2.8109925134954922e-01 2.8320249887526655e-01 -6.6080437723167128e-09 1 0 0 0 0 P 351 22 -2.2570773983355344e-02 1.4271788905860841e-01 -1.1923866257706714e+00 1.2011093626361919e+00 -3.1630709204341646e-08 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 352 -211 1.3818021414552201e-01 1.5058624509318608e-01 -3.1878533997976217e+00 3.1974457106093017e+00 1.3956999999999839e-01 1 0 0 0 0 P 353 211 -1.4661515044185211e-01 -5.4453344702047135e-01 -1.1084493784116514e+00 1.2514601418600033e+00 1.3956999999999978e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 354 -211 -6.9769270534550190e-02 4.8937007230822858e-02 -1.0508692659523773e+00 1.0635170806390093e+00 1.3956999999999956e-01 1 0 0 0 0 P 355 111 -1.0240212860704140e-01 1.8796507977233179e-01 9.0803104530430695e-02 2.6885288049309869e-01 1.3497999999999993e-01 2 0 0 -175 0 V -37 0 0 0 0 0 0 2 0 P 356 211 -4.5615612194866223e-01 2.1693964408822330e-01 -9.4440512880586969e-01 1.0800565026808546e+00 1.3956999999999931e-01 1 0 0 0 0 P 357 -211 1.9742200415720274e-01 -2.8910004915567767e-02 -7.3581664292439153e-01 7.7505945127724640e-01 1.3957000000000022e-01 1 0 0 0 0 V -38 0 5.3873773781241210e-06 -2.1011862597246919e-06 -3.4607807577354655e-05 3.5150308589027264e-05 0 2 0 P 358 22 8.0918005219743308e-02 2.0580493496324959e-02 -3.5182292800051013e-01 3.6159459750962392e-01 1.0332146747329617e-08 1 0 0 0 0 P 359 22 2.6555738518087757e-01 -1.5571291109875124e-01 -1.8738896589741725e+00 1.8990075538336584e+00 4.3784543864117954e-08 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 360 -211 -3.8467938945995130e-02 2.7382172263684024e-01 -7.5535198250651936e-01 8.1639115654880079e-01 1.3956999999999983e-01 1 0 0 0 0 P 361 211 -7.3428509972015249e-02 -4.2023595673615427e-01 -5.1055200843965820e-01 6.7980375376459201e-01 1.3956999999999986e-01 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 362 22 -3.0690761774016045e-01 -1.0006581316829610e-02 -1.1499136565925463e+00 1.1902074756590257e+00 -3.0387744080564849e-08 1 0 0 0 0 P 363 22 -2.3741781035604714e-01 5.8790147178092189e-01 -1.4394480713715549e+00 1.5728973607237446e+00 -3.9270461802013244e-08 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 364 211 3.9091542002179869e-01 -3.7669034127406475e-01 -1.8321859386204320e-01 5.8971121479650956e-01 1.3957000000000017e-01 1 0 0 0 0 P 365 111 3.3146521617938240e-01 2.8364147091344116e-01 -1.6382773942861631e-01 4.8516059420059643e-01 1.3497999999999999e-01 2 0 0 -176 0 V -42 0 0 0 0 0 0 2 0 P 366 -2212 1.1231777486174843e+00 6.9527289352941612e-02 -1.6218820715164806e+00 2.1856839537684305e+00 9.3827000000000005e-01 1 0 0 0 0 P 367 111 4.6865846103171582e-01 -2.3182367458103703e-01 -5.8897200355344670e-01 7.9905606221505643e-01 1.3498000000000016e-01 2 0 0 -177 0 V -43 0 0 0 0 0 0 2 0 P 368 2212 1.3809634102076220e+00 2.9766770780858043e-01 -1.6075995234484981e+00 2.3367483444513484e+00 9.3826999999999994e-01 1 0 0 0 0 P 369 211 8.6965576289573054e-01 2.3470542696201149e-01 -1.0511119074498523e+00 1.3912957307007170e+00 1.3956999999999994e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 370 -2212 3.8786134267980246e+00 -6.8761848648807899e-01 -2.1491944601414890e+00 4.5843046057064027e+00 9.3826999999999949e-01 1 0 0 0 0 P 371 -211 5.8800816594922833e-01 -6.0007810021686495e-02 -6.0901851979740274e-01 8.6008016070758975e-01 1.3956999999999969e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 372 3122 1.7179936906407915e+00 -5.0963730908492588e-01 -2.6293835773326570e+00 3.3718885460583619e+00 1.1156800000000002e+00 2 0 0 -178 0 P 373 211 4.5996105832507267e-01 1.1512620189161654e-01 -5.7266460995815083e-01 7.5646728808060903e-01 1.3956999999999989e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 3 0 P 374 111 3.4387293631885368e-01 -3.4481029699169208e-01 -2.4331406418526660e-01 5.6086011756444343e-01 1.3497999999999991e-01 2 0 0 -179 0 P 375 111 6.8451154829317451e-01 -2.6680607628189823e-01 -1.6687922004569211e-01 7.6538213760886764e-01 1.3497999999999999e-01 2 0 0 -180 0 P 376 111 2.3162859168658281e-01 -1.9101361538284034e-01 -8.2094469374955542e-02 3.3925964695243210e-01 1.3497999999999999e-01 2 0 0 -181 0 V -47 0 0 0 0 0 0 2 0 P 377 -211 6.5050218565328621e-01 -1.4976841315021852e+00 -2.4955986216413391e+00 2.9855825422405102e+00 1.3956999999999856e-01 1 0 0 0 0 P 378 111 2.0120909706811393e-01 8.3982042270434626e-02 -5.9214936998739021e-01 6.4528951714973792e-01 1.3498000000000004e-01 2 0 0 -182 0 V -48 0 1.5648180326476800e-04 -3.3665528014124700e-04 -1.0957484317686737e-03 1.1625636870542086e-03 0 2 0 P 379 22 5.6782984415220505e-02 -2.9709269020648545e-02 -2.6544449343225140e-01 2.7307091950324014e-01 7.3797581516376600e-09 1 0 0 0 0 P 380 22 1.2799737934407326e-01 -3.6782759359290101e-01 -1.0284618240218377e+00 1.0997336910350710e+00 2.4111184228210931e-08 1 0 0 0 0 V -49 0 -1.2364780766866242e-04 5.3407076403674971e-05 -9.8081070586723097e-05 1.7623196453632985e-04 0 2 0 P 381 22 -2.5265933888883385e-01 7.6429847525327707e-02 -1.2560892339207444e-01 2.9232835092786230e-01 -6.6763958702514263e-09 1 0 0 0 0 P 382 22 -3.8020753419478227e-02 4.9123319907594339e-02 -1.0496705841785159e-01 1.2197033082772743e-01 -3.3693890532334476e-09 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 383 211 1.0883610843061388e-01 -5.3182156966211747e-01 -1.4237656165956583e+00 1.5301201901668424e+00 1.3957000000000094e-01 1 0 0 0 0 P 384 -211 2.5390305861119511e-01 -4.1438051438946977e-01 -1.9306516922219012e+00 1.9957639428191634e+00 1.3957000000000111e-01 1 0 0 0 0 P 385 111 1.2300235901345337e-01 -2.8430502364333826e-01 -3.5822882943552353e-01 4.9244941002143461e-01 1.3498000000000002e-01 2 0 0 -183 0 V -51 0 0 0 0 0 0 2 0 P 386 211 -3.0990351250662518e-01 -5.8527006483287680e-01 -1.2929042673239235e+00 1.4593363098401393e+00 1.3956999999999925e-01 1 0 0 0 0 P 387 111 -4.0097233006836451e-02 -1.2052373021382830e-01 -2.2783802330768186e+00 2.2859067882384529e+00 1.3498000000000365e-01 2 0 0 -184 0 V -52 0 0 0 0 0 0 3 0 P 388 -211 -7.3303400412597336e-02 1.7693224704408117e-01 -2.0285456711131569e+00 2.0423407485647553e+00 1.3956999999999944e-01 1 0 0 0 0 P 389 211 8.8459627598427876e-02 -3.6275396519128623e-02 -4.1394036974280268e-01 4.4717717373573612e-01 1.3956999999999994e-01 1 0 0 0 0 P 390 111 -1.2093249811064113e-01 -2.6208715597099563e-01 -1.4268130304156221e+00 1.4619607965291190e+00 1.3497999999999974e-01 2 0 0 -185 0 V -53 0 0 0 0 0 0 2 0 P 391 211 4.6632805055535481e-01 -9.2799721716161498e-01 -9.3302626555544119e+00 9.3889254812426604e+00 1.3956999999998368e-01 1 0 0 0 0 P 392 111 3.9948439729136265e-01 -3.2445401427731738e-02 -1.4918261523962113e+00 1.5506145095175441e+00 1.3498000000000016e-01 2 0 0 -186 0 V -54 0 0 0 0 0 0 2 0 P 393 -211 1.1111296906329400e+00 -1.7375158775781228e+00 -2.1612402052147548e+01 2.1711033436085295e+01 1.3956999999986991e-01 1 0 0 0 0 P 394 111 1.8749745187539753e-02 -1.5954367530735085e-02 -4.5372027556277885e+00 4.5392768742239440e+00 1.3497999999999397e-01 2 0 0 -187 0 V -55 0 0 0 0 0 0 2 0 P 395 -2212 5.3822739200970038e-01 -2.4478036381451705e-02 -1.5752792350679760e+01 1.5789905171859312e+01 9.3827000000001037e-01 1 0 0 0 0 P 396 211 1.2208537840642637e-01 -8.1451067402123017e-02 -2.3015738769487699e+00 2.3104677474387252e+00 1.3956999999999928e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 397 -211 3.0349049526255789e-01 6.6269155706217964e-01 -1.2197393710616888e+01 1.2219949251008067e+01 1.3957000000001607e-01 1 0 0 0 0 P 398 111 1.5434560016696457e+00 1.3573218923349111e+00 -2.0747068663480828e+01 2.0849068489409539e+01 1.3497999999980798e-01 2 0 0 -188 0 V -57 0 0 0 0 0 0 3 0 P 399 211 4.7184996658599110e-01 1.6852789823429487e-01 -1.0629550966137284e+01 1.0642268440988534e+01 1.3956999999995884e-01 1 0 0 0 0 P 400 -211 4.2426821849970223e-02 5.9240190977691239e-02 -5.5954916484707722e+00 5.5977063167377334e+00 1.3957000000000072e-01 1 0 0 0 0 P 401 111 1.3429060214503628e+00 3.5261715354276468e-01 -3.9147578113319028e+01 3.9172424320920392e+01 1.3498000000069268e-01 2 0 0 -189 0 V -58 0 0 0 0 0 0 2 0 P 402 311 2.4818659030214052e+00 8.4359686098204834e-01 -9.5341267997563477e+01 9.5378594940565989e+01 4.9766999999940309e-01 2 0 0 -190 0 P 403 111 1.2406858288050986e+00 1.8019581052976649e-01 -3.3435796861882068e+01 3.3459565198092058e+01 1.3498000000076260e-01 2 0 0 -191 0 V -59 0 7.4992897904602168e-05 1.9648448612477577e-04 -1.2128367471398093e-02 1.2130260765010534e-02 0 2 0 P 404 22 1.7706545332887860e-01 5.7444706928288136e-01 -3.2673419181503647e+01 3.2678948309583333e+01 -1.1361097167215881e-06 1 0 0 0 0 P 405 22 6.8542098672264712e-02 6.9054848788046810e-02 -7.0479241410295419e+00 7.0485956962460605e+00 -2.4031010073500427e-07 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 406 -2212 1.8376602114136100e+00 3.9682100749992283e-01 -1.0259967841209421e+02 1.0262119090530307e+02 9.3827000000046723e-01 1 0 0 0 0 P 407 211 9.7065352570779351e-01 1.1527405065464012e-01 -5.5749676153705813e+01 5.5758419340954219e+01 1.3956999999877545e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 408 2112 8.2552318034068362e-01 3.5883941203932285e-01 -8.8766928098994939e+01 8.8776464055299869e+01 9.3956999999993629e-01 1 0 0 0 0 P 409 22 4.0555189323167012e-01 -6.9849212859855417e-02 -5.1812197716269608e+01 5.1813831970241800e+01 -1.8112727673565176e-06 1 0 0 0 0 V -62 0 -5.6406138577693503e-08 -1.4359594604280415e-07 -6.6737443838301642e-06 6.6757123854494287e-06 0 2 0 P 410 22 -1.6286205514669624e-02 -1.6789232572256113e-01 -9.1450581785949616e+00 9.1466136992557594e+00 -2.5700453511814323e-07 1 0 0 0 0 P 411 22 -1.3690031875946040e-01 -2.2208231939260112e-01 -8.9793469275051496e+00 8.9831360614408666e+00 -2.9054876223266780e-07 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 412 211 4.3194925285785707e-01 7.5349489191456864e-01 -4.8692948880384456e+01 4.8700894089963271e+01 1.3956999999900296e-01 1 0 0 0 0 P 413 111 5.9954065601029338e-02 3.4838817057606380e-01 -4.1027314776207604e+01 4.1029059776624202e+01 1.3497999999919244e-01 2 0 0 -192 0 V -64 0 0 0 0 0 0 2 0 P 414 -311 1.0704265611564484e-01 2.6747463614617123e-01 -1.7807434534755959e+01 1.7816716895930323e+01 4.9767000000004685e-01 2 0 0 -193 0 P 415 -211 1.6337940196206174e-01 -2.4844743991549134e-01 -1.6309651611601378e+01 1.6312959095029250e+01 1.3957000000014413e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 416 311 -6.8339964509218487e-01 5.1552886739707993e-01 -3.6069702285399487e+01 3.6083291195154089e+01 4.9766999999983819e-01 2 0 0 -194 0 P 417 211 -2.5469855753611675e-01 3.7251941389286825e-01 -8.2056099587524702e+00 8.2191944038948108e+00 1.3956999999997721e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 3 0 P 418 -211 -6.6667194912293004e-02 4.1053116542843782e-01 -1.0220462152198525e+01 1.0229873251516267e+01 1.3956999999993924e-01 1 0 0 0 0 P 419 211 -1.0042615290003744e-01 4.8957671136176335e-02 -4.3539891826947485e+00 4.3576580698435095e+00 1.3956999999998618e-01 1 0 0 0 0 P 420 221 -3.7868978732838460e-01 4.0345326449288504e-01 -1.6081774445100628e+01 1.6100600960748277e+01 5.4744999999997102e-01 2 0 0 -195 0 V -67 0 0 0 0 0 0 2 0 P 421 -211 -4.5491821851336928e-01 5.5740688299783758e-01 -1.4054038934068229e+01 1.4073135512882493e+01 1.3956999999995598e-01 1 0 0 0 0 P 422 111 -8.4754280940749993e-01 7.8123031203806603e-01 -5.5429198813326536e+01 5.5441346938020054e+01 1.3498000000092669e-01 2 0 0 -196 0 V -68 0 0 0 0 0 0 2 0 P 423 211 -5.0822699817146078e-01 2.1871436701034566e-01 -2.2084111237892312e+01 2.2091482060027314e+01 1.3957000000010725e-01 1 0 0 0 0 P 424 -211 -5.2301245068202862e-01 -2.2467052892663383e-01 -9.0614611543735624e+00 9.0803951955439501e+00 1.3957000000001502e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 425 22 -7.3896130695332102e-02 -7.1029611115872179e-02 -9.8874829217766003e-01 9.9404679420601316e-01 -3.3350094432313904e-08 1 0 0 0 0 P 426 22 -2.1131559472720594e+00 -8.1898809683607254e-01 -6.0812166447930665e+01 6.0854381581370717e+01 -1.7140222191567672e-06 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 427 211 -1.1400362126834707e+00 -7.5069527169178896e-01 -9.9368944819939813e+00 1.0031180273943466e+01 1.3956999999999245e-01 1 0 0 0 0 P 428 111 -3.1177855243714614e-01 2.7386879936813605e-02 -6.7074257108343609e+00 6.7160803430062019e+00 1.3497999999998417e-01 2 0 0 -197 0 V -71 0 0 0 0 0 0 2 0 P 429 -211 -2.9459374159754592e+00 -2.8038684397489866e+00 -1.4573643082860357e+01 1.5131119521627213e+01 1.3957000000000469e-01 1 0 0 0 0 P 430 211 -1.8627409764340494e-01 -4.5007239486827122e-01 -1.5916115607401125e+00 1.6703204319102676e+00 1.3957000000000125e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 431 211 -4.0294144754513739e-01 -3.9253842866592048e-01 -8.6321440131939475e-01 1.0397437740493962e+00 1.3957000000000053e-01 1 0 0 0 0 P 432 -211 -1.7926448583245587e+00 -1.6643272026613549e+00 -7.1173738089634293e+00 7.5272870509244330e+00 1.3957000000001885e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 433 211 -4.1785020003949669e-01 -5.3540198718837383e-02 -7.2956857574681525e-02 4.4974195992710347e-01 1.3956999999999994e-01 1 0 0 0 0 P 434 111 -3.1442536882507155e-01 -3.3012043738631891e-01 -1.1887260467866061e+00 1.2802859174613417e+00 1.3498000000000077e-01 2 0 0 -198 0 V -74 0 0 0 0 0 0 2 0 P 435 -211 -1.3128178686495777e+00 2.2367801298747514e-01 -1.4067767805533196e+00 1.9421697415374404e+00 1.3957000000000114e-01 1 0 0 0 0 P 436 111 -1.0613888599755268e+00 -4.9885801022642312e-01 -1.0293168713680656e+00 1.5662434193094499e+00 1.3497999999999943e-01 2 0 0 -199 0 V -75 0 0 0 0 0 0 3 0 P 437 211 -8.7240680410128857e-01 2.7980087512027552e-01 -1.6866912441851214e+00 1.9245231356549208e+00 1.3956999999999967e-01 1 0 0 0 0 P 438 -211 -3.4126239295049182e-01 -3.1457535020789129e-02 -4.4577142341818865e-01 5.7934578982517693e-01 1.3956999999999994e-01 1 0 0 0 0 P 439 111 -1.6130600317508390e+00 -1.1675331621059735e-01 -2.5161329477914274e+00 2.9941173347482173e+00 1.3498000000000354e-01 2 0 0 -200 0 V -76 0 -4.5008315126440140e-05 -2.5749264162755577e-05 -3.3344498929393918e-05 6.1837517593386551e-05 0 2 0 P 440 22 -4.2139926226963886e-01 -2.8391545516944366e-01 -2.6468169110857215e-01 5.7292383571776961e-01 3.0446557399402422e-09 1 0 0 0 0 P 441 22 -8.3854485033298931e-01 -4.3689876981484815e-01 -6.6875038684749477e-01 1.1581299931330580e+00 -1.0218056038716664e-08 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 442 -321 -2.1683154978543420e+00 -2.1854980073718605e-01 -1.7539377085644450e+00 2.8406503760867654e+00 4.9359999999999921e-01 1 0 0 0 0 P 443 211 -3.8230805936575214e+00 -1.6168359434370502e-02 -2.9890303663277602e+00 4.8548933002875572e+00 1.3956999999999695e-01 1 0 0 0 0 V -78 0 -1.0156831312538596e+02 5.9208129325376873e+01 -1.1368775627686763e+02 1.6651458075296497e+02 0 2 0 P 444 -2212 -3.1453660058797914e+00 1.8275481925700063e+00 -3.3783256208662253e+00 5.0523949074286794e+00 9.3826999999999861e-01 1 0 0 0 0 P 445 211 -4.7355959414701926e-01 2.8206462221395789e-01 -6.7242129950507379e-01 8.8059600796363169e-01 1.3956999999999983e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 446 -211 -3.9033321084511235e-01 8.5093966710394889e-02 1.3328079525359385e-01 4.4367167358599213e-01 1.3957000000000006e-01 1 0 0 0 0 P 447 211 1.0967922073019121e-01 6.7321805975053869e-02 5.7858153818527180e-01 6.0893196520511217e-01 1.3957000000000000e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 448 211 -8.7867070654726953e-01 6.3824938016959443e-01 -3.9838939392534201e-01 1.1651688186367462e+00 1.3956999999999997e-01 1 0 0 0 0 P 449 111 -4.2723134621533970e-01 5.8028432223031268e-01 3.1189382134184968e-01 7.9671442437455997e-01 1.3497999999999993e-01 2 0 0 -201 0 V -81 0 6.7337968892684204e-06 -2.2657847922919216e-05 1.3135314175180332e-04 1.4220642736368811e-04 0 2 0 P 450 22 3.0326177076402516e-02 1.7237938250692513e-02 2.5727513013004782e-01 2.5962918964291570e-01 5.9377520490934104e-09 1 0 0 0 0 P 451 22 -1.1812441250188842e-02 -7.9532868990877678e-02 1.0386397256722496e-01 1.3134967002491685e-01 2.3159042773858833e-09 1 0 0 0 0 V -82 0 -7.8395047179927375e-04 7.4536259222731185e-04 6.1761963977844596e-04 1.2485256020801107e-03 0 2 0 P 452 22 -1.0836826292501700e+00 1.0610777780214997e+00 8.2033353361722416e-01 1.7242973056658548e+00 2.1621932771511190e-08 1 0 0 0 0 P 453 22 -1.6179769483943199e-01 1.2309708547578650e-01 1.6089313412093878e-01 2.5926431901680075e-01 -3.0646209095344373e-09 1 0 0 0 0 V -83 0 -1.5916081712855892e-04 -4.5248206316860451e-05 2.0122353856729433e-04 2.6326940261840509e-04 0 2 0 P 454 22 -4.3376247428462439e-01 -7.9519933012538596e-02 5.8960730614864287e-01 7.3628125013998380e-01 -1.2194192386393900e-08 1 0 0 0 0 P 455 22 -1.3231921072993363e-01 -8.1412772271610576e-02 1.2607738202909022e-01 2.0007978227809739e-01 -3.8195936280588895e-09 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 456 -211 -8.5921933395184030e-02 3.7985737486839422e-01 2.3951940754401280e-01 4.7804135320127811e-01 1.3957000000000008e-01 1 0 0 0 0 P 457 111 -7.8855136481968013e-01 -7.0157220505423598e-02 3.5085569288208857e-01 8.7638724783955946e-01 1.3498000000000021e-01 2 0 0 -202 0 V -85 0 0 0 0 0 0 2 0 P 458 -211 -1.7640869092334013e+00 6.8071105835006596e-01 2.6089862839929228e+00 3.2251603655092751e+00 1.3956999999999875e-01 1 0 0 0 0 P 459 211 -4.5240790879975595e-01 5.3782880892622409e-01 1.3382106485758516e+00 1.5179658324604577e+00 1.3956999999999917e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 460 -211 -1.9958846715506473e+00 7.6421271078239772e-01 5.3633389088956704e+00 5.7751589351312589e+00 1.3956999999999792e-01 1 0 0 0 0 P 461 111 -9.1225061241821739e-02 -8.2462628587019707e-02 4.6524150246478096e-01 4.9979130937596511e-01 1.3497999999999996e-01 2 0 0 -203 0 V -87 0 -2.2240164947657685e-04 -1.1799521947692140e-04 2.9965771474544924e-04 3.9857012956888898e-04 0 2 0 P 462 22 -2.2134847241181499e-01 -4.8625350781584531e-02 2.1618899168832184e-01 3.1320480696325453e-01 8.9975563886411407e-09 1 0 0 0 0 P 463 22 -1.7704143829004015e-01 -1.6274045995448813e-01 3.2059034650239859e-01 4.0075715645329718e-01 8.3210492872206647e-09 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 464 211 -5.2067470723979459e-01 1.3712531386391810e-01 2.2394641106176807e+00 2.3075061841967321e+00 1.3956999999999894e-01 1 0 0 0 0 P 465 -211 -2.0689974107924551e+00 1.0052191285389294e+00 5.2723788407148229e+00 5.7540137475647226e+00 1.3956999999998490e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 466 211 -2.4774159582104280e-01 -1.7595711887443552e-01 1.8793905174320563e-01 3.8358529436447963e-01 1.3957000000000003e-01 1 0 0 0 0 P 467 111 -7.1109823631830649e-01 -2.6275556592240101e-01 2.4684643264539541e+00 2.5857758836554225e+00 1.3498000000000310e-01 2 0 0 -204 0 V -90 0 -3.8916699154968658e-04 -3.5095966058386915e-04 6.8119537241486674e-04 8.6433112160329045e-04 0 2 0 P 468 22 -2.9403046856309240e-01 -3.2108093022435247e-01 6.4688341859377496e-01 7.7974677777387202e-01 -8.8414352135954075e-09 1 0 0 0 0 P 469 22 -2.7851937251819031e-01 -1.9525756265006211e-01 3.5530410164878351e-01 4.9187352163784798e-01 4.7043891044279444e-09 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 470 -2112 -1.9946156841798374e-01 -2.8433147499558503e-01 6.4559205184739699e-01 1.1917257181320957e+00 9.3957000000000002e-01 1 0 0 0 0 P 471 -211 -9.3176056380494754e-02 1.2235788378053646e-01 4.2731798829171397e-01 4.7511438330527295e-01 1.3957000000000008e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 472 2212 1.4586148504328794e-01 -7.8159750038988129e-01 1.4312563799027713e+00 1.8870653521664611e+00 9.3826999999999994e-01 1 0 0 0 0 P 473 211 -7.0017337101697552e-02 1.0544128367217517e-01 4.3399283858274107e-01 4.7312774241039174e-01 1.3956999999999994e-01 1 0 0 0 0 V -93 0 6.0306782618782045e-05 -2.5906638520655314e-04 5.1224001323403612e-04 5.7724973113639400e-04 0 2 0 P 474 22 8.5561307282517640e-01 -3.8113265708089870e+00 7.5052944651097180e+00 8.4609531949863968e+00 1.2202813740193247e-07 1 0 0 0 0 P 475 22 8.3580265449984634e-02 -2.2326808987920368e-01 4.7212344936471218e-01 5.2889966172331027e-01 4.0994065025958720e-09 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 476 211 4.3264100274787132e-01 -7.1513541973083405e-01 2.6483553540175220e+00 2.7806227309481510e+00 1.3956999999999867e-01 1 0 0 0 0 P 477 -211 2.2664014393013029e-01 -1.0326492890729888e+00 1.9687475615646477e+00 2.2390125178592384e+00 1.3957000000000225e-01 1 0 0 0 0 P 478 111 1.1633625100300943e-01 -5.7479612574644490e-01 1.2943092115129222e+00 1.4273684334739087e+00 1.3497999999999888e-01 2 0 0 -205 0 V -95 0 0 0 0 0 0 2 0 P 479 -211 -3.2735921983195587e-01 -2.3273580178941069e+00 7.3748386053675858e+00 7.7415427172098648e+00 1.3957000000001663e-01 1 0 0 0 0 P 480 111 1.7091528712894219e-01 -1.2496904588336477e-01 4.6363026737108420e-01 5.2725887666871030e-01 1.3497999999999979e-01 2 0 0 -206 0 V -96 0 0 0 0 0 0 2 0 P 481 211 3.6435261291318571e-01 -6.4975306355905782e-01 2.7402179596041241e+00 2.8430979795248064e+00 1.3957000000000205e-01 1 0 0 0 0 P 482 -211 6.6923115873495004e-02 -6.4277773377209801e-01 6.1287657034013430e+00 6.1643240303021036e+00 1.3957000000000228e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 483 211 -7.7490797336635470e-02 -3.2280590054982870e-02 4.0488357310085350e+00 4.0521102430409739e+00 1.3956999999998979e-01 1 0 0 0 0 P 484 111 5.6711660373886197e-01 -8.3306989914159113e-01 8.5469098056077968e+00 8.6071780232946722e+00 1.3497999999996907e-01 2 0 0 -207 0 V -98 0 0 0 0 0 0 3 0 P 485 111 3.3411419906854800e-01 -7.9524901726587338e-01 4.8024356039435325e+00 4.8811536165035863e+00 1.3498000000000926e-01 2 0 0 -208 0 P 486 111 -1.0192602434548843e-02 -3.7000362361794925e-01 1.7837106690739677e+00 1.8267046619536238e+00 1.3497999999999885e-01 2 0 0 -209 0 P 487 111 2.0504500995897540e-02 -3.0300070605469526e-01 1.6910707873690565e+00 1.7234180777523878e+00 1.3498000000000016e-01 2 0 0 -210 0 V -99 0 0 0 0 0 0 2 0 P 488 22 2.4945317918638116e-01 -3.9062863961164168e-01 6.5656021999546059e+00 6.5819411931997545e+00 1.0835408845729371e-07 1 0 0 0 0 P 489 113 8.4095376419380630e-01 -1.9071358697499179e+00 1.8371427587817482e+01 1.8502731128456443e+01 7.0522133995734604e-01 2 0 0 -211 0 V -100 0 0 0 0 0 0 2 0 P 490 -211 6.1956691808817499e-01 -1.7987668051922854e+00 1.3090748730421117e+01 1.3229006285181553e+01 1.3957000000003078e-01 1 0 0 0 0 P 491 211 3.2954213987580416e-01 -1.0793546645770138e-01 3.9099443487702739e+00 3.9277719743200428e+00 1.3957000000000042e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 3 0 P 492 111 5.7069929638821681e-02 -4.6264463492203416e-02 7.7833308735768736e-01 7.9335954820431254e-01 1.3498000000000018e-01 2 0 0 -212 0 P 493 111 9.3231326916960150e-02 -1.4252221621218575e-01 9.8862038744325376e-01 1.0122225710293065e+00 1.3498000000000027e-01 2 0 0 -213 0 P 494 111 4.2420889018412233e-01 -5.5201114272469842e-01 4.1426907295914557e+00 4.2029484371862642e+00 1.3498000000000446e-01 2 0 0 -214 0 V -102 0 0 0 0 0 0 2 0 P 495 22 1.0332357895531194e-01 1.5600648694165692e-01 5.8033098953295537e-01 6.0975228031415452e-01 1.2762220471439713e-08 1 0 0 0 0 P 496 223 1.0019312012897219e+00 4.6961949797574526e-01 8.9449093133697062e+00 9.0473984281699025e+00 7.8715124890090671e-01 2 0 0 -215 0 V -103 0 0 0 0 0 0 2 0 P 497 22 2.4906633416729027e-02 4.4414155028907581e-02 7.8014262506757792e-01 7.8180270721098077e-01 -9.4662193908617476e-09 1 0 0 0 0 P 498 113 1.4819834921594945e+00 -1.1151469696800505e-01 1.0059579045776870e+01 1.0204199856444282e+01 8.4961964039875371e-01 2 0 0 -216 0 V -104 0 0 0 0 0 0 2 0 P 499 311 5.2482512314272056e-01 -4.7832544214417169e-02 1.4903979172423241e+00 1.6573143162321544e+00 4.9767000000000011e-01 2 0 0 -217 0 P 500 211 -9.5218634052761569e-02 1.4687126631051489e-01 6.2734999709340966e-01 6.6609726083480403e-01 1.3956999999999975e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 501 211 3.3162306271459374e+00 4.6154153302513574e+00 1.3049238670355871e+01 1.4233817263965104e+01 1.3956999999998426e-01 1 0 0 0 0 P 502 111 8.2147654379221768e-01 9.7926282685445865e-01 2.1468702180198229e+00 2.5022091698098055e+00 1.3498000000000390e-01 2 0 0 -218 0 V -106 0 0 0 0 0 0 2 0 P 503 -311 3.2371750674381259e+00 2.3409283617548118e+00 5.0353659835270168e+00 6.4468468284171374e+00 4.9767000000000045e-01 2 0 0 -219 0 P 504 -211 1.4695197460491800e+00 9.9443439914987442e-01 2.8173192242257765e+00 3.3324398650738094e+00 1.3956999999999836e-01 1 0 0 0 0 V -107 0 7.1335599716129835e+01 7.8149200680703117e+01 1.0620151086386613e+02 1.5543981572590374e+02 0 2 0 P 505 -2212 1.7529045540197865e+00 1.6712774876539851e+00 2.3153304985395544e+00 3.4795040920524500e+00 9.3827000000000005e-01 1 0 0 0 0 P 506 111 3.1296588076061255e-01 5.9191401603333715e-01 7.6025255249999213e-01 1.0220143780200615e+00 1.3498000000000043e-01 2 0 0 -220 0 V -108 0 0 0 0 0 0 2 0 P 507 2212 4.5811093566341965e-01 1.1167198185399771e+00 1.0475247390430900e+00 1.8532640001634055e+00 9.3827000000000005e-01 1 0 0 0 0 P 508 111 1.4644246332448371e-01 4.4216496970269220e-01 2.5373568976005820e-02 4.8561164926235612e-01 1.3497999999999993e-01 2 0 0 -221 0 V -109 0 5.1375358377442843e-06 1.0532936147183876e-04 -6.3627924943147592e-05 1.2543513514834796e-04 0 2 0 P 509 22 2.1134015144162574e-03 4.8221597802877242e-01 -2.2742964399716972e-01 5.3316128788658856e-01 -1.5787050845553939e-08 1 0 0 0 0 P 510 22 2.7066253999120306e-02 1.1602305723574509e-01 -1.3395779728195420e-01 1.7927248357878844e-01 -6.3553063700245054e-09 1 0 0 0 0 V -110 0 0 0 0 0 0 3 0 P 511 211 3.6583801979614422e-01 4.2025018090805177e-01 9.0517835425368065e-02 5.8148167186224220e-01 1.3957000000000014e-01 1 0 0 0 0 P 512 -211 4.1403113759370697e-01 1.1086732565207793e+00 7.5281162375798483e-01 1.4095330072001373e+00 1.3956999999999922e-01 1 0 0 0 0 P 513 111 4.3466944527336787e-01 5.7595399178690021e-01 5.2924214204214792e-01 9.0497368614942786e-01 1.3498000000000007e-01 2 0 0 -222 0 V -111 0 0 0 0 0 0 2 0 P 514 -321 -9.6072206080423980e-02 1.2759824993078764e-01 9.9159846550863948e-02 5.2819013369671164e-01 4.9360000000000004e-01 1 0 0 0 0 P 515 111 -4.1041075923632556e-02 5.4370545622967525e-01 3.6145001177529656e-01 6.6795636418799897e-01 1.3498000000000002e-01 2 0 0 -223 0 V -112 0 0 0 0 0 0 2 0 P 516 311 -8.9194348715380331e-02 9.8455421872459370e-01 2.1845309080941969e-01 1.1281399838829154e+00 4.9767000000000000e-01 2 0 0 -224 0 P 517 211 4.0691224288352468e-01 1.6541811288782000e+00 7.3993170315656198e-01 1.8624906686427793e+00 1.3956999999999997e-01 1 0 0 0 0 V -113 0 -8.0474930003756706e-05 8.1692044460432653e-05 1.0683737786300766e-04 1.5742171329228503e-04 0 2 0 P 518 22 -3.2819219707531860e-01 4.0751739144544413e-01 4.2685300543822929e-01 6.7526589637214263e-01 1.2241888959299085e-08 1 0 0 0 0 P 519 22 -4.0824293372558240e-01 3.4005569056659779e-01 5.5082784917446148e-01 7.6531789803307182e-01 7.6196473892561959e-09 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 520 211 9.3663331501539882e-02 3.6133530383635998e-01 2.9557572318803529e+00 2.9825017385040176e+00 1.3956999999999659e-01 1 0 0 0 0 P 521 111 -7.3811066333816830e-02 3.6109561816242330e-01 7.5794678787494796e-01 8.5354616314490517e-01 1.3497999999999996e-01 2 0 0 -225 0 V -115 0 0 0 0 0 0 2 0 P 522 211 -7.3393913871523353e-01 1.2780461949311306e+00 7.2999658953237523e+00 7.4485603034080290e+00 1.3956999999998701e-01 1 0 0 0 0 P 523 -211 8.3554943132088041e-02 3.5509223926864719e-01 7.9814671253187175e-01 8.8858870493387598e-01 1.3956999999999981e-01 1 0 0 0 0 V -116 0 -2.5746289995494090e-05 5.9026677114693335e-05 4.8394573524476693e-04 4.8823111043846577e-04 0 2 0 P 524 22 -1.8669331800377653e-01 3.1692073717140146e-01 2.5560924029801839e+00 2.5824216389291537e+00 3.7328496247215348e-08 1 0 0 0 0 P 525 22 -6.0802273948613084e-01 1.5050679117379580e+00 1.2381960684283465e+01 1.2487909010631721e+01 1.1554406895690280e-07 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 526 211 -1.7073882013668817e-01 3.2742880280082814e-01 5.9426596079770304e+00 5.9557572454547678e+00 1.3956999999999525e-01 1 0 0 0 0 P 527 111 2.2879460973909277e-02 7.5488739966755614e-01 4.1581325115630889e+00 4.2283169275764161e+00 1.3497999999999946e-01 2 0 0 -226 0 V -118 0 0 0 0 0 0 2 0 P 528 211 -4.3731470763077790e-02 1.2604608629033636e+00 1.6518523186890892e+01 1.6567189323756708e+01 1.3957000000001668e-01 1 0 0 0 0 P 529 111 -6.3913913511475884e-01 1.5611909031254254e+00 1.6776910528351404e+01 1.6862050953153506e+01 1.3498000000018118e-01 2 0 0 -227 0 V -119 0 0 0 0 0 0 2 0 P 530 211 -5.9815189532824220e-01 1.2545484891445016e+00 2.3786846959190580e+01 2.3827825029707466e+01 1.3956999999972305e-01 1 0 0 0 0 P 531 111 -1.7190948567779557e-02 1.4691174125806133e-01 1.2620146445040268e+00 1.2778024697795667e+00 1.3497999999999899e-01 2 0 0 -228 0 V -120 0 0 0 0 0 0 2 0 P 532 -211 -5.9962999905078818e-01 2.7649368600696107e+00 3.6805036639652862e+01 3.6913881315936187e+01 1.3956999999961386e-01 1 0 0 0 0 P 533 111 -2.7887171350558565e-01 4.0106075670008701e-01 6.4110293323247722e+00 6.4310291449725998e+00 1.3498000000002031e-01 2 0 0 -229 0 V -121 0 -5.0157599184704946e-06 -3.8588196601982270e-05 1.0472215797340766e-03 1.0482292168054802e-03 0 2 0 P 534 22 2.4683491753739874e-02 -8.0731002211826206e-03 2.1774492248962579e-01 2.1928816881526325e-01 6.8652968848417830e-09 1 0 0 0 0 P 535 22 -5.2386639952427476e-02 -2.0505801980076480e-01 5.5662908152263810e+00 5.5703129706690362e+00 1.3121406364818449e-07 1 0 0 0 0 V -122 0 0 0 0 0 0 3 0 P 536 -211 -5.1758706768007023e-01 -1.7083232674058602e-01 1.0489562964760037e+01 1.0504641404305747e+01 1.3957000000000494e-01 1 0 0 0 0 P 537 211 -7.9373712864481319e-02 7.0095548013431666e-02 1.8788068503061299e+00 1.8869574817155890e+00 1.3957000000000122e-01 1 0 0 0 0 P 538 111 -7.3709870626921314e-01 2.1120579966915698e-01 9.7639197614993805e+00 9.7949104693200617e+00 1.3497999999998944e-01 2 0 0 -230 0 V -123 0 0 0 0 0 0 2 0 P 539 -321 -8.5795433684424061e-01 2.4919056416375207e-01 1.7934370895434306e+01 1.7963392829762956e+01 4.9359999999998605e-01 1 0 0 0 0 P 540 321 -1.0479142901398506e+00 2.7786110905809280e-01 1.6759583813735155e+01 1.6801863638448555e+01 4.9360000000002624e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 1 0 P 541 130 -1.7244824127432363e+00 -3.9212022161552618e-01 4.6946279297054723e+01 4.6982213795499561e+01 4.9766999999986511e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 3 0 P 542 -211 -5.9165457996848719e-02 3.7213531856083226e-02 5.0445981838376595e+00 5.0470125836628732e+00 1.3956999999999217e-01 1 0 0 0 0 P 543 211 -1.3381854084617595e-01 -5.9891788157947912e-01 1.1843191848384286e+01 1.1859902317189880e+01 1.3957000000005571e-01 1 0 0 0 0 P 544 111 -2.8809030160908039e-01 -4.3455501759935283e-01 1.4715669844030469e+01 1.4725521812285963e+01 1.3497999999992924e-01 2 0 0 -231 0 V -126 0 0 0 0 0 0 2 0 P 545 -2112 -3.7963353294098168e-01 -6.3483853460677531e-01 5.4539475563579821e+01 5.4552583148001112e+01 9.3956999999979429e-01 1 0 0 0 0 P 546 -211 -2.9260483550958311e-01 1.0599583448047589e-01 2.1058740992768712e+01 2.1061502906775388e+01 1.3956999999986852e-01 1 0 0 0 0 V -127 0 6.6328164470284886e-06 4.8154070591021530e-06 4.9412971772984059e-03 4.9413228625312458e-03 0 2 0 P 547 22 -3.5217830354860646e-02 -1.5450607726689007e-02 1.2743645501733083e+01 1.2743703531183384e+01 -1.3585822678216152e-07 1 0 0 0 0 P 548 22 1.0074895050322182e-01 6.3026026264716026e-02 3.6075546405705651e+01 3.6075742142071533e+01 -4.3863612501427609e-07 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 549 -2112 2.6626820410570526e+00 -9.4944055253522119e-01 2.0890304932083723e+02 2.0892428800966061e+02 9.3957000000056545e-01 1 0 0 0 0 P 550 111 8.5209116407407082e-01 -1.1591862689401730e-01 9.1866745710977852e+01 9.1870869613854325e+01 1.3498000000039206e-01 2 0 0 -232 0 V -129 0 0 0 0 0 0 3 0 P 551 -211 4.0603688739493729e-02 -1.7061650551776167e-01 7.6014080290035739e+00 7.6047118590906750e+00 1.3957000000002251e-01 1 0 0 0 0 P 552 211 2.6311187798959595e-01 7.3185682547040345e-02 2.5162104593812185e+01 2.5163973680230104e+01 1.3957000000021841e-01 1 0 0 0 0 P 553 111 1.1816688798747371e-01 -3.6293522883792340e-01 3.4432078019570525e+01 3.4434458057880626e+01 1.3497999999988991e-01 2 0 0 -233 0 V -130 0 0 0 0 0 0 2 0 P 554 2112 1.7675673200478197e+00 -1.5309536122704215e+00 2.8729342881067316e+02 2.8730448159186807e+02 9.3957000000229529e-01 1 0 0 0 0 P 555 211 7.1508344074892871e-01 -4.5589716835928090e-01 7.2409990958323959e+01 7.2415091361710012e+01 1.3956999999661818e-01 1 0 0 0 0 V -131 0 0 0 0 0 0 3 0 P 556 211 2.2439546791702109e-01 -1.9696073443006980e-02 5.5536519517846827e+01 5.5537151720289117e+01 1.3957000000034331e-01 1 0 0 0 0 P 557 -211 -3.7254464785821319e-02 -1.3183150102421531e-01 2.9812054854766831e+01 2.9812696320331970e+01 1.3956999999996964e-01 1 0 0 0 0 P 558 111 7.7925011485993334e-01 -5.0050082878366420e-01 1.7662641859603670e+02 1.7662889825134476e+02 1.3498000000139551e-01 2 0 0 -234 0 V -132 0 0 0 0 0 0 2 0 P 559 -211 5.7420658799858970e-01 -5.2176680747758952e-01 8.8745934585503349e+01 8.8749435711143690e+01 1.3957000000370096e-01 1 0 0 0 0 P 560 111 8.7757011108930327e-01 -5.8099850839255707e-01 2.6918632934150588e+02 2.6918842065089035e+02 1.3497999995636806e-01 2 0 0 -235 0 V -133 0 0 0 0 0 0 2 0 P 561 211 1.4702191181921057e-01 3.2086876987868253e-02 3.5343072584490557e+01 3.5343668520793052e+01 1.3956999999978570e-01 1 0 0 0 0 P 562 -211 5.8575905030442056e-02 -4.9476497528590435e-01 1.4924796091515708e+02 1.4924885775319882e+02 1.3957000000127162e-01 1 0 0 0 0 V -134 0 0 0 0 0 0 1 0 P 563 310 3.1865086807574067e-01 -5.5487539481077219e-01 2.4466956603456691e+02 2.4467090886341941e+02 4.9766999999751133e-01 2 0 0 -236 0 V -135 0 0 0 0 0 0 2 0 P 564 321 8.3084442751023035e-01 8.3461209683641513e-02 3.4093246441167344e+02 3.4093384431442593e+02 4.9359999999438636e-01 1 0 0 0 0 P 565 -211 9.8165955222199097e-01 -4.0742220910721266e-01 4.6661597406098980e+02 4.6661720540181989e+02 1.3957000008328668e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 566 -321 3.7972478919659475e-01 -7.4349326116669168e-01 2.3330469933231484e+02 2.3330671517263869e+02 4.9359999999691634e-01 1 0 0 0 0 P 567 211 3.8655682557183740e-01 -1.5915204623184290e-01 1.4385652098799477e+02 1.4385719608732646e+02 1.3956999999568431e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 1 0 P 568 130 1.6380306417008008e+00 -1.4172523212967988e-01 3.2704278346785134e+02 3.2704729493492738e+02 4.9767000000738415e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 569 211 7.5386992013918197e-01 2.3480098916759773e-01 3.0328383260799040e+02 3.0328489255572464e+02 1.3956999996303865e-01 1 0 0 0 0 P 570 111 2.4085614183726616e-02 -1.2261142448093255e-01 1.4254973822031749e+02 1.4254985689210520e+02 1.3498000000604105e-01 2 0 0 -237 0 V -139 0 -1.7721686556587544e-04 3.6468204680237032e-04 5.1600330492852509e-02 5.1601998696441269e-02 0 2 0 P 571 22 -1.6228899273435982e-01 1.8598818410456283e-01 3.2180724883893291e+01 3.2181671544135462e+01 1.4485584270375655e-07 1 0 0 0 0 P 572 22 -1.0919271435137227e-01 3.7267480935992875e-01 4.6866750443336599e+01 4.6868359334207447e+01 4.1241504261189840e-07 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 573 211 -7.3270599967859806e-01 -4.6348354767781064e-01 1.3285558233156209e+02 1.3285848452968409e+02 1.3957000000354980e-01 1 0 0 0 0 P 574 111 -7.9241686036128911e-01 3.2810579302962534e-01 1.5854937891272601e+02 1.5855175606439551e+02 1.3498000001584537e-01 2 0 0 -238 0 V -141 0 0 0 0 0 0 2 0 P 575 -211 -2.6451416739490663e-01 4.2183455290681814e-02 1.1183276361656556e+02 1.1183317148812414e+02 1.3956999999759023e-01 1 0 0 0 0 P 576 111 -2.3531390694014848e-01 -3.5452619923672024e-01 2.7358049012212273e+01 2.7361690861782531e+01 1.3498000000018479e-01 2 0 0 -239 0 V -142 0 0 0 0 0 0 2 0 P 577 -311 -2.1260416101622295e-01 -1.2104737182693050e-01 1.5437457045784552e+02 1.5437556650088354e+02 4.9766999999619244e-01 2 0 0 -240 0 P 578 111 -4.6305171201136808e-01 -1.8970742458445361e-01 5.5991455546711308e+01 5.5993854302366856e+01 1.3497999999879640e-01 2 0 0 -241 0 V -143 0 0 0 0 0 0 1 0 P 579 310 -4.9871228495176489e-01 -7.5174835164291953e-01 1.2689625628638298e+02 1.2690043882688370e+02 4.9767000000088790e-01 2 0 0 -242 0 V -144 0 -1.9977884541291021e-05 3.5000050954297345e-07 1.3274399164949437e-03 1.3275949599690685e-03 0 2 0 P 580 22 -6.2590518556441310e-01 -3.8452311759602079e-02 4.2259474569965363e+01 4.2264126949591009e+01 -4.7543812196087289e-07 1 0 0 0 0 P 581 22 -1.3965172226572800e-01 5.1864407883738410e-02 8.6083135435251741e+00 8.6096024637596269e+00 -1.2794080943669675e-07 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 582 -2112 -2.1106434929637469e-01 6.9239095715808538e-02 1.1567378666509168e+01 1.1607600234813003e+01 9.3957000000000979e-01 1 0 0 0 0 P 583 211 -2.8829032357802299e-02 9.0473510667775994e-02 3.5313056756691868e-01 3.9140458848788873e-01 1.3957000000000003e-01 1 0 0 0 0 V -146 0 0 0 0 0 0 2 0 P 584 2112 8.8440335776350798e-02 2.0193564114694096e-01 1.2459750216819856e+01 1.2497070334546418e+01 9.3957000000000712e-01 1 0 0 0 0 P 585 111 1.8568864458564585e-01 1.1026538959652721e-01 3.9172280603199909e+00 3.9254979309419138e+00 1.3497999999999788e-01 2 0 0 -243 0 V -147 0 0 0 0 0 0 2 0 P 586 -321 2.7037679249353758e-01 2.7099818893913880e-01 6.9085121163553098e-01 9.3137531905546422e-01 4.9359999999999993e-01 1 0 0 0 0 P 587 211 2.0825686944437849e-01 -9.9480849261148349e-02 4.5632108067469634e-01 5.3007176552672086e-01 1.3956999999999994e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 1 0 P 588 310 3.5449487156875237e-01 3.4868286711363355e-01 1.3485744103664414e+00 1.5210439589250291e+00 4.9767000000000033e-01 2 0 0 -244 0 V -149 0 0 0 0 0 0 2 0 P 589 211 5.2292799236916876e-01 8.0220043182134493e-02 6.5002038371948301e-01 8.4964417533589720e-01 1.3956999999999983e-01 1 0 0 0 0 P 590 -211 1.2189079117573262e-01 3.3465285226054653e-01 3.7751287717979715e-01 5.3744362851943261e-01 1.3957000000000014e-01 1 0 0 0 0 V -150 0 0 0 0 0 0 3 0 P 591 111 3.8161042283457075e-01 3.9313467286154724e-01 1.3370126677817902e+00 1.4512077246317687e+00 1.3498000000000079e-01 2 0 0 -245 0 P 592 111 1.6457624324822243e-01 4.0594887231049659e-01 1.2637068698881968e+00 1.3442672651576717e+00 1.3498000000000046e-01 2 0 0 -246 0 P 593 111 1.1189225299056972e-01 4.1723624264255654e-01 8.7511607159903537e-01 9.8521758897449252e-01 1.3498000000000038e-01 2 0 0 -247 0 V -151 0 0 0 0 0 0 2 0 P 594 211 -1.0035032418546279e-01 -2.0637581039206379e-01 2.8796574521790458e-01 3.9378321193013255e-01 1.3957000000000003e-01 1 0 0 0 0 P 595 -211 1.4393962323735321e-01 9.3891634270153457e-03 2.5916424553820203e+00 2.5994032340070130e+00 1.3957000000000169e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 596 -211 1.0540169108163648e+00 4.0097700342132225e-01 2.6173442417723680e+00 2.8533672862774937e+00 1.3957000000000269e-01 1 0 0 0 0 P 597 211 8.4514623887374393e-02 3.3448171427719403e-01 1.2539694352700224e+00 1.3080290013329421e+00 1.3957000000000072e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 598 2212 6.5816341038749770e-01 4.4280431594953112e-01 9.5678827142181746e+01 9.5686715737522263e+01 9.3827000000001759e-01 1 0 0 0 0 P 599 211 -2.8428761883563927e-02 -7.5672893005768016e-02 4.7923010455016462e+00 4.7950144605469402e+00 1.3956999999999586e-01 1 0 0 0 0 V -154 0 0 0 0 0 0 3 0 P 600 -211 6.5649721987824561e-01 1.8223610580214269e-01 1.3102302944717150e+00 1.4833683990894617e+00 1.3957000000000080e-01 1 0 0 0 0 P 601 211 1.8370954434857381e-01 2.2773004421390300e-01 2.9245109411220260e-01 4.3659775202106937e-01 1.3956999999999992e-01 1 0 0 0 0 P 602 111 -3.4604192008886397e-02 3.4350358373404423e-02 2.3554647051059002e-01 2.7582446844862302e-01 1.3497999999999996e-01 2 0 0 -248 0 V -155 0 -5.5716529317326420e-06 1.8009852007121769e-05 3.5927707999218846e-05 4.0797475544943080e-05 0 2 0 P 603 22 -6.5530631488677493e-02 3.9952859112717909e-01 8.2006107792972505e-01 9.1455865330039710e-01 -1.1683366531780341e-08 1 0 0 0 0 P 604 22 -1.1058259978375935e-01 1.6974111582964982e-01 3.1557045287120111e-01 3.7500035800431530e-01 -2.8012342321490788e-09 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 605 211 -3.5011541685761055e-01 -8.9341381340842707e-01 1.5616709511161966e+00 1.8382233247270399e+00 1.3957000000000017e-01 1 0 0 0 0 P 606 -211 -2.4230730439271450e-01 -2.4229381710466791e-01 7.6103745267095013e-01 8.4621327857526707e-01 1.3957000000000008e-01 1 0 0 0 0 P 607 111 9.9540274706991866e-02 -2.3679148348647550e-01 7.4763972883918206e-01 8.0197458655445863e-01 1.3497999999999993e-01 2 0 0 -249 0 V -157 0 -5.6757001979622614e-05 1.4912000004484708e-04 5.1481548725728454e-05 1.7678678513994637e-04 0 2 0 P 608 22 -6.9685269580410353e-02 3.1849893899444737e-01 7.9475029734191724e-02 3.3557993278551940e-01 -1.0602106405447678e-08 1 0 0 0 0 P 609 22 -6.6921624821752540e-02 4.0413959658844104e-02 4.4434518782136598e-02 8.9923403313543010e-02 -4.0480488383394896e-09 1 0 0 0 0 V -158 0 -2.1029966855693518e-04 -8.4278528308705216e-06 -1.8131237090662504e-03 1.8254241096954033e-03 0 2 0 P 610 22 -1.2273132813497996e+00 -1.7560888609513145e-02 -1.0670152282924063e+01 1.0740519355048711e+01 1.7085645043058136e-07 1 0 0 0 0 P 611 22 -9.8197107889370500e-02 -3.5559530281081567e-02 -7.5789384684202077e-01 7.6505570730022288e-01 6.0937611052311959e-09 1 0 0 0 0 V -159 0 1.6972944047120685e-04 1.1274699513529626e-04 -1.0696352740889265e-04 2.3272188526491649e-04 0 2 0 P 612 22 3.7634155522181495e-01 1.7202383219088110e-01 -2.3490758988761568e-01 4.7582217352201972e-01 -2.6444477708080195e-09 1 0 0 0 0 P 613 22 2.8548118193478145e-01 2.6760835371314085e-01 -1.8217323173735767e-01 4.3162578998198231e-01 -2.3658389031073981e-09 1 0 0 0 0 V -160 0 -2.1144376728188418e-04 -7.4553090300174255e-05 -1.5391892581507802e-05 2.2985413572910654e-04 0 2 0 P 614 22 -5.4271606424264918e-01 -2.2499884379717716e-01 -2.3781231341297848e-02 5.8798873548836472e-01 -5.2166535757500862e-09 1 0 0 0 0 P 615 22 -4.8632882370697669e-02 1.6494748441158641e-02 -1.9265577658875762e-02 5.4848851003000902e-02 -1.1760072468439380e-09 1 0 0 0 0 V -161 0 4.6196280978078249e-07 -2.7211225490290270e-06 -4.8002111008815201e-06 5.9003842315764029e-06 0 2 0 P 616 22 -2.1402079083340915e-02 -1.5761199139248414e-01 -2.8164968722465983e-01 3.2345963447321019e-01 -6.0097824312468558e-09 1 0 0 0 0 P 617 22 5.1994395134798838e-02 -2.2587451662569740e-02 -3.6232124909891660e-02 6.7278354420485839e-02 -1.6704939523174851e-09 1 0 0 0 0 V -162 0 -6.3859171467440001e-06 -1.2284791769259764e-06 -6.5365926726422891e-05 6.6132159957924832e-05 0 2 0 P 618 22 -9.3631225358064646e-02 3.5287494229782182e-02 -9.3791217966718099e-01 9.4323447264140625e-01 -1.5253517175241558e-08 1 0 0 0 0 P 619 22 -1.9096172040585967e-02 -5.6973221932013721e-02 -2.1595979034069140e-01 2.2416342888150495e-01 -2.6731198893871705e-09 1 0 0 0 0 V -163 0 -3.6708784036477894e-05 4.6720806296011821e-06 -7.1163623618667132e-04 7.2107496014247154e-04 0 2 0 P 620 22 1.5199393614177322e-02 2.6821733214883965e-02 -6.8983949432755698e-01 6.9052802613144426e-01 -7.2738618365550916e-09 1 0 0 0 0 P 621 22 -6.0144965606055700e-02 -2.1101322097998920e-02 -1.8147505681022183e-01 1.9234312809744558e-01 -1.1346762004318837e-09 1 0 0 0 0 V -164 0 -8.7176397319130867e-06 -5.2445308583250231e-05 -3.1162012519974361e-04 3.1685928870089209e-04 0 2 0 P 622 22 -7.4051365188027060e-02 -1.4825179452758794e-01 -1.1921112226251573e+00 1.2035744124796390e+00 1.1524528889697587e-08 1 0 0 0 0 P 623 22 1.9553087355525019e-02 -1.7960976962012523e-01 -7.5598031173420444e-01 7.7726972429001251e-01 -1.0355075801693409e-08 1 0 0 0 0 V -165 0 -9.1887465028559066e-06 -1.0399533515936851e-05 -1.6769665250193696e-03 1.6770504331834635e-03 0 2 0 P 624 22 -1.3445094835791693e-01 -1.4619387324435984e-01 -1.6429211147143562e+01 1.6430411699757094e+01 1.0106459234841567e-07 1 0 0 0 0 P 625 22 2.8658702101613878e-03 -2.7299685407455665e-03 -7.5853561474553750e+00 7.5853571800989927e+00 -2.9860473315941912e-08 1 0 0 0 0 V -166 0 -2.3556303591907920e+01 -1.3416460390155493e+01 -6.1552230165611672e+03 6.1555695296087133e+03 0 2 0 P 626 111 3.0842588679892983e-02 5.8626407534376488e-03 -3.5549262854207583e+01 3.5549532974622551e+01 1.3497999999955393e-01 2 0 0 -250 0 P 627 111 -2.2813158256715463e-01 -1.1822831652997785e-01 -1.6002023677276302e+01 1.6004655676468190e+01 1.3497999999981763e-01 2 0 0 -251 0 V -167 0 1.0209915492701025e+01 -7.9262483264082406e-01 -6.2181193328888248e+03 6.2182641326030607e+03 0 2 0 P 628 2212 2.2448579587005246e-01 -1.1630614894183093e-01 -1.4532921437317623e+02 1.4533246306971591e+02 9.3826999999938909e-01 1 0 0 0 0 P 629 -211 5.2119100939478184e-02 9.4832522622590371e-02 -2.3130775100061459e+01 2.3131449287118887e+01 1.3956999999976741e-01 1 0 0 0 0 V -168 0 3.5786741483071062e-05 1.1566812630167021e-05 -4.6466514032478222e-02 4.6466596928141334e-02 0 2 0 P 630 22 6.6681696552200437e-02 1.2259358067023583e-02 -1.6371699174993136e+01 1.6371839561179012e+01 -1.8589161261729374e-07 1 0 0 0 0 P 631 22 -5.7712945688122418e-03 7.4277991809557457e-03 -6.2716083931045418e+01 6.2716084636446929e+01 -6.1942963870842839e-07 1 0 0 0 0 V -169 0 1.0426130863208057e-04 9.5078677235897977e-05 -5.2758993908426206e-02 5.2759191346890354e-02 0 2 0 P 632 22 8.7737487777021395e-02 1.5488116298259177e-01 -5.6906306113813535e+01 5.6906584518493631e+01 -1.0193962679199619e-06 1 0 0 0 0 P 633 22 3.7549400258546722e-01 2.6755202853911086e-01 -1.7750114281308211e+02 1.7750174162465029e+02 -3.7258862972335799e-06 1 0 0 0 0 V -170 0 4.8204505763780982e-05 1.0697188771631935e-04 -4.3343935366858051e-02 4.3344126779566290e-02 0 2 0 P 634 22 1.2008538163596126e-01 2.0584407631048540e-01 -9.9213018956230044e+01 9.9213305169679202e+01 -1.7228732625001232e-06 1 0 0 0 0 P 635 22 2.3000359267681893e-03 6.5744625579532312e-02 -1.0831997471894031e+01 1.0832197232190545e+01 -1.7813355052478957e-07 1 0 0 0 0 V -171 0 -3.2150215499455889e-04 7.6428747659230636e-05 -1.7941217967587830e-01 1.7941250048676022e-01 0 2 0 P 636 22 -1.8173359332474895e-01 1.0504970368329648e-01 -9.9515534817701550e+01 9.9515756202685608e+01 1.7461719602692428e-06 1 0 0 0 0 P 637 22 -3.8276678851919621e-01 2.9145531301117206e-02 -2.1550021969940838e+02 2.1550056160105402e+02 3.2950103190148481e-06 1 0 0 0 0 V -172 0 -2.2211411050469687e-04 5.7929670012999611e-05 -1.2368027019601842e-01 1.2368049863960270e-01 0 2 0 P 638 22 -2.5183351067242926e-01 8.8344197815170139e-02 -1.7590097629945379e+02 1.7590117875646936e+02 6.4472280898046307e-07 1 0 0 0 0 P 639 22 -2.3340868506302273e-01 3.8212013365945624e-02 -9.4297462434139675e+01 9.4297759047021970e+01 1.4895199536800145e-06 1 0 0 0 0 V -173 0 -1.5462912712494692e-04 1.2288387038459243e-04 -1.0194820983510636e-01 1.0194840877728883e-01 0 2 0 P 640 22 -3.3928254946959358e-01 2.3294036621235314e-01 -1.8040736871073349e+02 1.8040783813070078e+02 2.6280173879919770e-06 1 0 0 0 0 P 641 22 -1.9034601490462347e-01 1.8795580688671229e-01 -1.6878094412154940e+02 1.6878115610918275e+02 1.9741648628329272e-06 1 0 0 0 0 V -174 0 1.5401276916593514e-05 -1.3759806394015258e-05 -7.1715425540271030e-05 7.8509197448508312e-05 0 2 0 P 642 22 -9.5814195932756880e-03 -7.8028231270919415e-02 -1.3833351893913973e-01 1.5911119048883970e-01 3.3374366295697735e-09 1 0 0 0 0 P 643 22 9.4873933937120514e-02 1.8262065566170098e-03 -2.5882763819700672e-01 2.7567398256950759e-01 5.2412758509118242e-09 1 0 0 0 0 V -175 0 -2.0965113252988107e-05 3.8482688188601851e-05 1.8590408188765859e-05 5.5043104714742399e-05 0 2 0 P 644 22 2.6984753773511470e-02 6.5432258244418229e-02 4.8197512272619682e-02 8.5630354106768863e-02 4.8479067308469794e-09 1 0 0 0 0 P 645 22 -1.2938688238055288e-01 1.2253282152791357e-01 4.2605592257811006e-02 1.8322252638633016e-01 7.8604052888205257e-09 1 0 0 0 0 V -176 0 1.0285409743612106e-04 8.8014325673519702e-05 -5.0835965439013894e-05 1.5054597765416577e-04 0 2 0 P 646 22 2.9932661513435299e-01 2.7454677579620285e-01 -1.0829508054129178e-01 4.2035720416964950e-01 -5.2438609439671079e-09 1 0 0 0 0 P 647 22 3.2138601045029427e-02 9.0946951172383231e-03 -5.5532658887324532e-02 6.4803390030946886e-02 -1.7969111260530924e-09 1 0 0 0 0 V -177 0 6.3419519547283583e-05 -3.1370704434204673e-05 -7.9700516683156234e-05 1.0812938583347969e-04 0 2 0 P 648 22 3.0967014087180444e-01 -8.0842768939070192e-02 -3.6935035147429041e-01 4.8872367609057044e-01 -1.2254060587790577e-08 1 0 0 0 0 P 649 22 1.5898832015991138e-01 -1.5098090564196684e-01 -2.1962165207915635e-01 3.1033238612448577e-01 -6.9727821687183692e-09 1 0 0 0 0 V -178 0 4.5698737717912728e+01 -1.3556383731798242e+01 -6.9941764696175397e+01 8.9692442480903992e+01 0 2 0 P 650 2112 1.2762968464268005e+00 -3.5772134143341161e-01 -2.0219113921975294e+00 2.5938033196667143e+00 9.3957000000000024e-01 1 0 0 0 0 P 651 111 4.4169684421399102e-01 -1.5191596765151427e-01 -6.0747218513512746e-01 7.7808522639164734e-01 1.3497999999999977e-01 2 0 0 -252 0 V -179 0 4.5997771344297361e-05 -4.6123156326197706e-05 -3.2546628440884262e-05 7.5022814298894713e-05 0 2 0 P 652 22 1.1511064359970761e-02 -3.8203024689809614e-02 1.1883480188794220e-02 4.1631632198930853e-02 -7.8093771968262380e-10 1 0 0 0 0 P 653 22 3.3236187195888289e-01 -3.0660727230188245e-01 -2.5519754437406084e-01 5.1922848536551258e-01 2.1147893421101558e-09 1 0 0 0 0 V -180 0 1.8057971937837162e-04 -7.0385615120103614e-05 -4.4024096892264364e-05 2.0191403924632034e-04 0 3 0 P 654 22 3.9407673340486893e-01 -2.2341609962631431e-01 -1.0582154795059659e-01 4.6519826460762703e-01 4.8294822947800954e-09 1 0 0 0 0 P 655 11 5.5075039942849381e-02 -3.9025561183405220e-03 -9.4633096915689632e-03 5.6020570322710878e-02 5.0999999999984684e-04 1 0 0 0 0 P 656 -11 2.3535977494545623e-01 -3.9487420537243419e-02 -5.1594362403526578e-02 2.4416330267852981e-01 5.1000000000571769e-04 1 0 0 0 0 V -181 0 2.0498605421569915e-05 -1.6904272064903158e-05 -7.2651744879898052e-06 3.0023709887028830e-05 0 2 0 P 657 22 1.6603892420300490e-01 -6.9521403085086045e-02 -8.9432409947510699e-02 2.0099827309315327e-01 -2.4217465034121088e-09 1 0 0 0 0 P 658 22 6.5589667483577932e-02 -1.2149221229775430e-01 7.3379405725551607e-03 1.3826137385927884e-01 1.1634253949920347e-09 1 0 0 0 0 V -182 0 4.4821507279609603e-06 1.8707910198048836e-06 -1.3190769047843446e-05 1.4374523424550579e-05 0 2 0 P 659 22 1.0868902684117659e-01 4.0823315789285289e-02 -4.7908985340352939e-01 4.9295733618836546e-01 1.3073808645239525e-08 1 0 0 0 0 P 660 22 9.2520070226937326e-02 4.3158726481149330e-02 -1.1305951658386082e-01 1.5233218096137272e-01 5.3993684796093056e-09 1 0 0 0 0 V -183 0 2.0203102441503644e-05 -4.6697019174016375e-05 -5.8838983224656980e-05 8.0884675364908292e-05 0 2 0 P 661 22 1.3083307021617085e-01 -1.7347436718988990e-01 -1.7872505940379951e-01 2.8134195419989166e-01 5.5958121835973888e-09 1 0 0 0 0 P 662 22 -7.8307112027174840e-03 -1.1083065645344835e-01 -1.7950377003172405e-01 2.1110745582154306e-01 4.8668705897136054e-09 1 0 0 0 0 V -184 0 -1.1041858304191617e-05 -3.3189470981372003e-05 -6.2741365950154263e-04 6.2948630016478426e-04 0 2 0 P 663 22 -3.7223838682792533e-02 1.9998585086784395e-02 -3.8347533750163215e-01 3.8579643860946483e-01 -6.0725963468407172e-09 1 0 0 0 0 P 664 22 -2.8733943240439150e-03 -1.4052231530061271e-01 -1.8949048955751864e+00 1.9001103496289877e+00 -1.6318089764504909e-08 1 0 0 0 0 V -185 0 -1.3947050824405040e-05 -3.0226307583648640e-05 -1.6455323559035141e-04 1.6860680008300543e-04 0 2 0 P 665 22 3.0229673168350830e-03 -1.1223801825989337e-01 -3.4510844235011617e-01 3.6291369229560666e-01 2.1965198991952006e-09 1 0 0 0 0 P 666 22 -1.2395546542747622e-01 -1.4984913771110225e-01 -1.0817045880655061e+00 1.0990471042335126e+00 1.3667773568480436e-08 1 0 0 0 0 V -186 0 1.1930991214537883e-04 -9.6901356351118731e-06 -4.4554843289349875e-04 4.6310614921702710e-04 0 2 0 P 667 22 -1.3530467071068992e-03 1.7660194861720220e-02 -4.2436329967148953e-02 4.5984294264741016e-02 2.6706233680768282e-09 1 0 0 0 0 P 668 22 4.0083744399846954e-01 -5.0105596289451958e-02 -1.4493898224290622e+00 1.5046302152528035e+00 3.8697545666837564e-08 1 0 0 0 0 V -187 0 1.3710449053845509e-05 -1.1666374184212181e-05 -3.3177564071293253e-03 3.3192730729325022e-03 0 2 0 P 669 22 -5.4075638648149946e-03 -6.8874232900005022e-02 -3.2817234073251362e+00 3.2824505211640616e+00 3.3006156136597226e-08 1 0 0 0 0 P 670 22 2.4157309052354747e-02 5.2919865369269938e-02 -1.2554793483026521e+00 1.2568263530598827e+00 1.5760416165711776e-08 1 0 0 0 0 V -188 0 8.7334643290194584e-04 7.6802463542082475e-04 -1.1739484890286436e-02 1.1797200292627093e-02 0 2 0 P 671 22 1.2418571432422965e+00 1.1149743369762841e+00 -1.7323233224647538e+01 1.7403441794423028e+01 5.0578962074092791e-07 1 0 0 0 0 P 672 22 3.0159885842734924e-01 2.4234755535862690e-01 -3.4238354388332892e+00 3.4456266949865206e+00 9.0093124843660960e-08 1 0 0 0 0 V -189 0 2.6889622087743437e-04 7.0606147034624881e-05 -7.8386987942809967e-03 7.8436738641819593e-03 0 2 0 P 673 22 2.6641094905481288e-01 5.9482203634312197e-02 -9.2856281550727839e+00 9.2896395603169584e+00 -1.4683032166224985e-07 1 0 0 0 0 P 674 22 1.0764950723955498e+00 2.9313494990845251e-01 -2.9861949958246246e+01 2.9882784760603425e+01 -6.5165965573995943e-07 1 0 0 0 0 V -190 0 0 0 0 0 0 1 0 P 675 310 2.4818659030214052e+00 8.4359686098204834e-01 -9.5341267997563477e+01 9.5378594940565989e+01 4.9766999999940309e-01 2 0 0 -253 0 V -191 0 3.6075361527087402e-04 5.2395448223895719e-05 -9.7221103984104201e-03 9.7290215059750024e-03 0 2 0 P 676 22 1.6329296600498747e-01 6.9979730498661061e-02 -4.9610249635807699e+00 4.9642049156636299e+00 -6.6431442276116485e-08 1 0 0 0 0 P 677 22 1.0773928628001110e+00 1.1021608003110542e-01 -2.8474771898301299e+01 2.8495360282428422e+01 -4.5172889206481331e-07 1 0 0 0 0 V -192 0 1.0791249507861972e-06 6.2707068095968037e-06 -7.3845866155913755e-04 7.3849007016287167e-04 0 2 0 P 678 22 2.7116656542003324e-02 4.6619243797545076e-02 -1.2785111932285867e+01 1.2785225683891268e+01 4.5783196376971053e-07 1 0 0 0 0 P 679 22 3.2837409059026018e-02 3.0176892677851874e-01 -2.8242202843921739e+01 2.8243834092732964e+01 9.9612340011603658e-07 1 0 0 0 0 V -193 0 0 0 0 0 0 1 0 P 680 130 1.0704265611564484e-01 2.6747463614617123e-01 -1.7807434534755959e+01 1.7816716895930323e+01 4.9767000000004685e-01 1 0 0 0 0 V -194 0 0 0 0 0 0 1 0 P 681 310 -6.8339964509218487e-01 5.1552886739707993e-01 -3.6069702285399487e+01 3.6083291195154089e+01 4.9766999999983819e-01 2 0 0 -254 0 V -195 0 0 0 0 0 0 3 0 P 682 111 6.3554709809058880e-03 3.7576578256312110e-02 -1.6879560820374548e+00 1.6937732216953003e+00 1.3498000000000029e-01 2 0 0 -255 0 P 683 111 -2.1149010980454089e-01 1.2441650967338756e-01 -7.6153827250599866e+00 7.6205302429664634e+00 1.3497999999997692e-01 2 0 0 -256 0 P 684 111 -1.7355514850474960e-01 2.4146017656318536e-01 -6.7784356380031854e+00 6.7862974960865134e+00 1.3498000000000301e-01 2 0 0 -257 0 V -196 0 -3.7791985483042614e-05 3.4835107187205381e-05 -2.4715913504762522e-03 2.4721330360961027e-03 0 2 0 P 685 22 -3.0747000977755051e-01 2.2450077469092433e-01 -1.6103444494501041e+01 1.6107944095762978e+01 2.6071709702793792e-07 1 0 0 0 0 P 686 22 -5.4007279962994947e-01 5.5672953734714170e-01 -3.9325754318825496e+01 3.9333402842257087e+01 9.2188704587414470e-07 1 0 0 0 0 V -197 0 -3.1325939632240399e-05 2.7516958460091431e-06 -6.7392837404264155e-04 6.7479794792075175e-04 0 2 0 P 687 22 -2.6655461094630861e-01 7.1088800812943664e-02 -5.7260318907233945e+00 5.7326735640361646e+00 9.7125826958445384e-08 1 0 0 0 0 P 688 22 -4.5223941490837527e-02 -4.3701920876130063e-02 -9.8139382011096621e-01 9.8340677897003836e-01 1.2600849501541638e-08 1 0 0 0 0 V -198 0 -1.3440327260466266e-05 -1.4111223691714404e-05 -5.0812907214051624e-05 5.4726696455653969e-05 0 2 0 P 689 22 -1.0933820777628772e-01 -1.9579107808744109e-01 -6.7020665439642291e-01 7.0672904959087357e-01 7.6498243286957318e-09 1 0 0 0 0 P 690 22 -2.0508716104878386e-01 -1.3432935929887782e-01 -5.1851939239018319e-01 5.7355686787046811e-01 5.9337564452433298e-09 1 0 0 0 0 V -199 0 -4.3793716994123248e-04 -2.0583263442779259e-04 -4.2470402188891275e-04 6.4624402644217975e-04 0 2 0 P 691 22 -8.9752454829585648e-01 -4.0250236576975268e-01 -9.2067379502902158e-01 1.3472931032618956e+00 -3.2851405487316234e-08 1 0 0 0 0 P 692 22 -1.6386431167967042e-01 -9.6355644456670428e-02 -1.0864307633904398e-01 2.1895031604755391e-01 -6.8264459732823335e-09 1 0 0 0 0 V -200 0 -6.9005956933333669e-04 -4.9946524938117374e-05 -1.0763899570766660e-03 1.2808694517756020e-03 0 2 0 P 693 22 -8.5305784809732860e-02 -2.7658393909772285e-02 -1.8425301167266087e-01 2.0491763219917963e-01 -4.2066866218006828e-09 1 0 0 0 0 P 694 22 -1.5277542469411063e+00 -8.9094922300825066e-02 -2.3318799361187663e+00 2.7891997025490372e+00 -3.4263305625221047e-08 1 0 0 0 0 V -201 0 -3.7344632512870178e-04 5.0723115142745794e-04 2.7262887529735187e-04 6.9641442884610524e-04 0 2 0 P 695 22 -3.3722199426053995e-01 3.7012594779948238e-01 2.5110763415762921e-01 5.6014902890191876e-01 8.1921983909603124e-09 1 0 0 0 0 P 696 22 -9.0009351954799768e-02 2.1015837443083032e-01 6.0786187184220464e-02 2.3656539547264133e-01 2.6851339718957424e-09 1 0 0 0 0 V -202 0 -1.2245481210789705e-04 -1.0894774441191276e-05 5.4484678951366546e-05 1.3609492108670801e-04 0 2 0 P 697 22 -6.2364443611965407e-02 3.0198587297070988e-02 4.0932611920266086e-02 8.0478302792640607e-02 2.3510239252946653e-09 1 0 0 0 0 P 698 22 -7.2618692120771466e-01 -1.0035580780249459e-01 3.0992308096182247e-01 7.9590894504691900e-01 1.8617718295849677e-08 1 0 0 0 0 V -203 0 -7.3514058083588884e-05 -6.6452818832336523e-05 3.7491661139507577e-04 4.0275870300313451e-04 0 2 0 P 699 22 -5.9592681858139512e-02 -3.4692181673933044e-02 6.2720509782091052e-02 9.3213183336199754e-02 1.4667868577356162e-09 1 0 0 0 0 P 700 22 -3.1632379383682227e-02 -4.7770446913086656e-02 4.0252099268268987e-01 4.0657812603976534e-01 2.2026812574389044e-09 1 0 0 0 0 V -204 0 -1.9574633573899992e-04 -7.2329583449162510e-05 6.7950224332930290e-04 7.1179497911348297e-04 0 2 0 P 701 22 -2.9868928518983828e-01 -4.0232948883506717e-02 9.5845914495654083e-01 1.0047277799552987e+00 1.9893058914033535e-08 1 0 0 0 0 P 702 22 -4.1240895112846809e-01 -2.2252261703889428e-01 1.5100051814974131e+00 1.5810481037001238e+00 1.8148846244351078e-08 1 0 0 0 0 V -205 0 2.4183460453793714e-05 -1.1948605233654473e-04 2.6905522020641677e-04 2.9671497720015760e-04 0 2 0 P 703 22 9.6605716538289685e-02 -2.0754049137140287e-01 4.0907804974754347e-01 4.6877560816643749e-01 -6.9303792277989984e-09 1 0 0 0 0 P 704 22 1.9730534464719746e-02 -3.6725563437504199e-01 8.8523116176537886e-01 9.5859282530747125e-01 -1.6686015638680120e-08 1 0 0 0 0 V -206 0 4.2037483529183717e-05 -3.0736771977666828e-05 1.1403222061429432e-04 1.2968200045707640e-04 0 2 0 P 705 22 1.1211428697288379e-01 -1.2053564878016564e-01 4.2750840977204663e-01 4.5810686132835626e-01 1.0794029644239611e-08 1 0 0 0 0 P 706 22 5.8801000156058401e-02 -4.4333971031991371e-03 3.6121857599037591e-02 6.9152015340354256e-02 2.4402134372217793e-09 1 0 0 0 0 V -207 0 1.5599164937093644e-04 -2.2914502370700285e-04 2.3509213957264158e-03 2.3674988308070351e-03 0 2 0 P 707 22 1.1332350268471862e-01 -1.1475455491098487e-01 1.7363169892926267e+00 1.7437911318273651e+00 -8.5989876243376115e-09 1 0 0 0 0 P 708 22 4.5379310105414339e-01 -7.1831534423060617e-01 6.8105928163151699e+00 6.8633868914673073e+00 -1.3938759963117321e-08 1 0 0 0 0 V -208 0 5.1282863840389080e-05 -1.2206199911690046e-04 7.3712117553179676e-04 7.4920352680916665e-04 0 2 0 P 709 22 1.4642378330523126e-01 -4.0976978583760976e-01 2.0654153428690272e+00 2.1107562010477667e+00 3.6130034814161853e-08 1 0 0 0 0 P 710 22 1.8769041576331677e-01 -3.8547923142826362e-01 2.7370202610745054e+00 2.7703974154558195e+00 -1.7670603432702158e-08 1 0 0 0 0 V -209 0 -1.2265189895363895e-06 -4.4524102012105708e-05 2.1464145408460806e-04 2.1981510321313161e-04 0 2 0 P 711 22 -6.0240342616575057e-03 -2.7764569961970931e-01 1.0098043092438616e+00 1.0472956442540835e+00 -4.7029484707685548e-09 1 0 0 0 0 P 712 22 -4.1685681728913385e-03 -9.2357923998239944e-02 7.7390635983010625e-01 7.7940901769954041e-01 -1.0417707879653710e-08 1 0 0 0 0 V -210 0 7.8524125542846869e-06 -1.1603728121240558e-04 6.4761319885705464e-04 6.6000093114832001e-04 0 2 0 P 713 22 5.0685145734293668e-02 -5.6561140865886199e-02 2.5600636348120043e-01 2.6703446368779016e-01 -9.3495347561599978e-10 1 0 0 0 0 P 714 22 -3.0180644738396125e-02 -2.4643956518880905e-01 1.4350644238878560e+00 1.4563836140645976e+00 6.7319871367891137e-09 1 0 0 0 0 V -211 0 0 0 0 0 0 2 0 P 715 211 2.2819263877195303e-01 -1.2013107685152362e+00 1.1732570566183654e+01 1.1796944999376720e+01 1.3957000000001413e-01 1 0 0 0 0 P 716 -211 6.1276112542185324e-01 -7.0582510123468178e-01 6.6388570216338296e+00 6.7057861290797227e+00 1.3957000000001316e-01 1 0 0 0 0 V -212 0 1.7838482623809421e-05 -1.4460992563483656e-05 2.4328541041202363e-04 2.4798226674961290e-04 0 2 0 P 717 22 1.3683628412259266e-02 -8.7988502498512602e-02 3.6715756233210245e-01 3.7780139469846741e-01 -9.2745830019235206e-09 1 0 0 0 0 P 718 22 4.3386301226562417e-02 4.1724039006309194e-02 4.1117552502558496e-01 4.1555815350584491e-01 -1.0499990876882691e-08 1 0 0 0 0 V -213 0 2.1235806628923309e-05 -3.2463060688853036e-05 2.2518344500079224e-04 2.3055944278209788e-04 0 2 0 P 719 22 2.8386824592129590e-02 -6.5972348319248086e-02 7.4917667170485669e-01 7.5261135254522105e-01 -1.2033087722419342e-08 1 0 0 0 0 P 720 22 6.4844502324830564e-02 -7.6549867892937662e-02 2.3944371573839707e-01 2.5961121848408525e-01 -4.2022545001888753e-09 1 0 0 0 0 V -214 0 6.1011172857340830e-05 -7.9392129743761268e-05 5.9581594362132461e-04 6.0448241313463028e-04 0 2 0 P 721 22 8.3542728585246320e-02 -8.6242476476969490e-02 1.0537645148061670e+00 1.0605832380879048e+00 9.7455687525013221e-09 1 0 0 0 0 P 722 22 3.4066616159887603e-01 -4.6576866624772895e-01 3.0889262147852885e+00 3.1423651990983594e+00 4.4431017495231939e-08 1 0 0 0 0 V -215 0 0 0 0 0 0 3 0 P 723 211 4.0839911065151713e-01 3.5962300351329679e-01 5.1096352894767918e+00 5.1404251881146417e+00 1.3956999999998718e-01 1 0 0 0 0 P 724 -211 4.9172751037101914e-01 1.0414272996518113e-01 3.4034504221599939e+00 3.4431956397598618e+00 1.3957000000000497e-01 1 0 0 0 0 P 725 111 1.0180458026718550e-01 5.8537644972672517e-03 4.3182360173291945e-01 4.6377760029539838e-01 1.3497999999999996e-01 2 0 0 -258 0 V -216 0 0 0 0 0 0 2 0 P 726 211 1.3231828164054067e+00 -2.3233267031911264e-01 9.4772253231821892e+00 9.5729865165785082e+00 1.3957000000005512e-01 1 0 0 0 0 P 727 -211 1.5880067575408788e-01 1.2081797335110758e-01 5.8235372259468099e-01 6.3121333986577510e-01 1.3956999999999983e-01 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 728 130 5.2482512314272056e-01 -4.7832544214417169e-02 1.4903979172423241e+00 1.6573143162321544e+00 4.9767000000000011e-01 1 0 0 0 0 V -218 0 1.3991069369725554e-04 1.6678424046614966e-04 3.6564659545179487e-04 4.2616654531315949e-04 0 2 0 P 729 22 5.0227605788554219e-01 5.7576949594196969e-01 1.4064151788053489e+00 1.6005609660229729e+00 1.7026909905282988e-08 1 0 0 0 0 P 730 22 3.1920048590667549e-01 4.0349333091248907e-01 7.4045503921447398e-01 9.0164820378683252e-01 1.1685686271013324e-08 1 0 0 0 0 V -219 0 0 0 0 0 0 1 0 P 731 130 3.2371750674381259e+00 2.3409283617548118e+00 5.0353659835270168e+00 6.4468468284171374e+00 4.9767000000000045e-01 1 0 0 0 0 V -220 0 7.1335706145639833e+01 7.8149401971395051e+01 1.0620176940101544e+02 1.5544016327973040e+02 0 2 0 P 732 22 4.2594277641554164e-02 2.1431530215710426e-01 2.5174085126258827e-01 3.3334483259968084e-01 -6.8906660702204298e-09 1 0 0 0 0 P 733 22 2.7037160311905839e-01 3.7759871387623289e-01 5.0851170123740386e-01 6.8866954542038039e-01 -1.1374199938098188e-08 1 0 0 0 0 V -221 0 1.8662821273001112e-05 5.6350088733884587e-05 3.2336412001490208e-06 6.1886991057978410e-05 0 2 0 P 734 22 -1.0452759311989706e-02 1.3150959032668796e-01 -2.4031578868727921e-02 1.3409529935106437e-01 -3.6133316826687506e-09 1 0 0 0 0 P 735 22 1.5689522263647343e-01 3.1065537937600424e-01 4.9405147844733738e-02 3.5151634991129166e-01 -6.8234673769773668e-09 1 0 0 0 0 V -222 0 1.6203995030957650e-04 2.1470926292290209e-04 1.9729560320097769e-04 3.3736415736078032e-04 0 2 0 P 736 22 1.5947638965055264e-01 3.1854881454449369e-01 2.8118962801131037e-01 4.5384322513927239e-01 7.8370946830636057e-09 1 0 0 0 0 P 737 22 2.7519305562281521e-01 2.5740517724240652e-01 2.4805251403083758e-01 4.5113046101015558e-01 6.7701290121994501e-09 1 0 0 0 0 V -223 0 -8.0899007442886404e-06 1.0717368090473127e-04 7.1248003456954618e-05 1.3166566826493042e-04 0 2 0 P 738 22 -4.1312525022179178e-02 5.0648672790241593e-02 6.7336991952037351e-02 9.3841799131676285e-02 -1.6915310508013225e-09 1 0 0 0 0 P 739 22 2.7144909854662387e-04 4.9305678343943365e-01 2.9411301982325927e-01 5.7411456505632263e-01 -8.0486694432066778e-09 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 740 130 -8.9194348715380331e-02 9.8455421872459370e-01 2.1845309080941969e-01 1.1281399838829154e+00 4.9767000000000000e-01 1 0 0 0 0 V -225 0 -1.8131657971486007e-06 8.8702989520742314e-06 1.8618931551783693e-05 2.0967326258402975e-05 0 2 0 P 741 22 -8.2688765082448906e-02 1.1547635103319900e-01 3.4345631592514858e-01 3.7166444606348681e-01 1.4999064997217066e-09 1 0 0 0 0 P 742 22 8.8776987486320815e-03 2.4561926712922430e-01 4.1449047194979938e-01 4.8188171708141836e-01 -2.5049590961250957e-09 1 0 0 0 0 V -226 0 5.4847667808577248e-06 1.8096498591930064e-04 9.9680613524213372e-04 1.0136310575566397e-03 0 2 0 P 743 22 1.7491949032887224e-02 6.0824195917264978e-01 3.0138614691303087e+00 3.0746748127708492e+00 3.5131976220496029e-08 1 0 0 0 0 P 744 22 5.3875119410220496e-03 1.4664544049490638e-01 1.1442710424327800e+00 1.1536421148055669e+00 -2.8515813671787945e-09 1 0 0 0 0 V -227 0 -3.9557239115917199e-05 9.6624347450479116e-05 1.0383470905395047e-03 1.0436165537241098e-03 0 2 0 P 745 22 -9.2465822996315339e-02 1.7076610153122404e-01 2.3377513782791670e+00 2.3458031666149455e+00 4.8936548290474906e-08 1 0 0 0 0 P 746 22 -5.4667331211844350e-01 1.3904248015942013e+00 1.4439159150072237e+01 1.4516247786538560e+01 1.2031015203859764e-07 1 0 0 0 0 V -228 0 -1.0171236214618871e-06 8.6922139121361843e-06 7.4668649056499923e-05 7.5602755162160803e-05 0 2 0 P 747 22 5.4556614548170110e-02 2.8867218876497448e-02 4.2721723499616182e-01 4.3165299303304622e-01 8.7528530213443520e-09 1 0 0 0 0 P 748 22 -7.1747563115949667e-02 1.1804452238156389e-01 8.3479740950786496e-01 8.4614947674652075e-01 1.1901723145630264e-08 1 0 0 0 0 V -229 0 -3.2002413942854375e-05 4.6024432491944058e-05 7.3570894628841314e-04 7.3800405996304723e-04 0 2 0 P 749 22 -9.4255113313073374e-02 4.6514851128216267e-02 1.5785869802872254e+00 1.5820823341702168e+00 1.0170196028352508e-08 1 0 0 0 0 P 750 22 -1.8461660019251228e-01 3.5454590557187071e-01 4.8324423520375470e+00 4.8489468108023832e+00 6.1973202078097033e-08 1 0 0 0 0 V -230 0 -4.3311461166626516e-06 1.2410321321600544e-06 5.7372184754559076e-05 5.7554284224668776e-05 0 2 0 P 751 22 -4.7176024337145944e-01 1.2903645357429647e-01 5.3733266872040728e+00 5.3955396227806931e+00 -4.3263918345186615e-08 1 0 0 0 0 P 752 22 -2.6533846289775370e-01 8.2169346094860526e-02 4.3905930742953077e+00 4.3993708465393686e+00 1.5472292644750466e-08 1 0 0 0 0 V -231 0 -5.2437667020373493e-06 -7.9096905337090929e-06 2.6785191690003744e-04 2.6803124061485585e-04 0 2 0 P 753 22 -1.9473595911436073e-01 -3.3472194511027792e-01 1.2197160189531591e+01 1.2203306009578096e+01 -1.7690226540839324e-07 1 0 0 0 0 P 754 22 -9.3354342494719633e-02 -9.9833072489074901e-02 2.5185096544988781e+00 2.5222158027078665e+00 -3.5743864369383990e-08 1 0 0 0 0 V -232 0 6.0469302882566243e-05 -8.2262542494528161e-06 6.5193940571714650e-03 6.5196867131015000e-03 0 2 0 P 755 22 6.0602143321655599e-01 -9.2327015022225831e-02 5.8629644204129811e+01 5.8632848862715804e+01 9.2495289759865373e-07 1 0 0 0 0 P 756 22 2.4606973085751480e-01 -2.3591611871791464e-02 3.3237101506848042e+01 3.3238020751138535e+01 7.0564511373946519e-07 1 0 0 0 0 V -233 0 1.1537666442066055e-04 -3.5436539640874371e-04 3.3619048268336497e-02 3.3621372107832406e-02 0 2 0 P 757 22 8.6061004527217849e-02 -2.6487050398755779e-01 2.9418793463269164e+01 2.9420111687668211e+01 5.3390051655014245e-07 1 0 0 0 0 P 758 22 3.2105883460255856e-02 -9.8064724850365603e-02 5.0132845563013611e+00 5.0143463702124214e+00 9.7107964737244507e-08 1 0 0 0 0 V -234 0 7.8286756369666825e-04 -5.0282426269319112e-04 1.7744635691917926e-01 1.7744884808558761e-01 0 2 0 P 759 22 4.3443655474220944e-01 -3.0654097397688851e-01 1.1285504058773739e+02 1.1285629308349925e+02 2.0546318475178698e-06 1 0 0 0 0 P 760 22 3.4481356011772396e-01 -1.9395985480677569e-01 6.3771378008299308e+01 6.3772605167845541e+01 1.1726560613840356e-06 1 0 0 0 0 V -235 0 7.1725371163522885e-05 -4.7486044856498838e-05 2.2001079047917860e-02 2.2001249974365707e-02 0 2 0 P 761 22 1.8881440446573644e-01 -1.7056700732901389e-01 5.4454523635302792e+01 5.4455118109605401e+01 8.9008715886283388e-07 1 0 0 0 0 P 762 22 6.8875570662356678e-01 -4.1043150106354315e-01 2.1473180570620309e+02 2.1473330254128501e+02 3.8655806462981609e-06 1 0 0 0 0 V -236 0 1.1475536927923592e+02 -1.9982663540190637e+02 8.8112568376915326e+04 8.8113051968319865e+04 0 2 0 P 763 -211 2.3846333906313949e-01 -1.2920476794887265e-01 1.4287105833224882e+02 1.4287138393463502e+02 1.3957000000809983e-01 1 0 0 0 0 P 764 211 8.0187529012601150e-02 -4.2567062686189949e-01 1.0179850770231810e+02 1.0179952492878442e+02 1.3957000000090253e-01 1 0 0 0 0 V -237 0 3.8999848402204098e-06 -1.9853456634564445e-05 2.3081903321869487e-02 2.3081922537413230e-02 0 2 0 P 765 22 3.1507629919568250e-02 -1.3867615711558412e-01 1.3914586843944574e+02 1.3914594111067279e+02 -3.8710910990546981e-06 1 0 0 0 0 P 766 22 -7.4220157358416338e-03 1.6064732634651580e-02 3.4038697808717768e+00 3.4039157814323611e+00 -5.1577111691237944e-08 1 0 0 0 0 V -238 0 -6.7547192375065580e-05 2.7968391675867270e-05 1.3515065029638850e-02 1.3515267662784552e-02 0 2 0 P 767 22 -7.1982443399898344e-01 3.2294729206421013e-01 1.4964729986488274e+02 1.4964937954772603e+02 -2.4770015186286149e-06 1 0 0 0 0 P 768 22 -7.2592426362305673e-02 5.1585009654152077e-03 8.9020790478432659e+00 8.9023765166694364e+00 6.5059398101914596e-08 1 0 0 0 0 V -239 0 -2.3362185886775710e-05 -3.5197694330947360e-05 2.7161328237407935e-03 2.7164943899896320e-03 0 2 0 P 769 22 -4.0271295264548181e-02 -1.0531583754955903e-01 4.3312375652451918e+00 4.3327049345013258e+00 -9.3494767743693187e-08 1 0 0 0 0 P 770 22 -1.9504261167560030e-01 -2.4921036168716121e-01 2.3026811446967081e+01 2.3028985927281202e+01 -1.8521849654102404e-07 1 0 0 0 0 V -240 0 0 0 0 0 0 1 0 P 771 130 -2.1260416101622295e-01 -1.2104737182693050e-01 1.5437457045784552e+02 1.5437556650088354e+02 4.9766999999619244e-01 1 0 0 0 0 V -241 0 -6.4205292672790841e-05 -2.6304234282470835e-05 7.7635989616293664e-03 7.7639315655371379e-03 0 2 0 P 772 22 -2.2128739119982938e-01 -2.2306569149795712e-02 2.6459936958424120e+01 2.6460871670001914e+01 -5.3726900748371916e-08 1 0 0 0 0 P 773 22 -2.4176432081153867e-01 -1.6740085543465791e-01 2.9531518588287192e+01 2.9532982632364948e+01 2.0417853602833630e-07 1 0 0 0 0 V -242 0 -2.9068652654757788e+01 -4.3817472272230638e+01 7.3964554483247994e+03 7.3966992378216664e+03 0 2 0 P 774 -211 -2.6240200831458399e-01 -1.0822124517810787e-01 4.9982246928372049e+01 4.9983247738072528e+01 1.3956999999959877e-01 1 0 0 0 0 P 775 211 -2.3631027663718093e-01 -6.4352710646481170e-01 7.6914009358010929e+01 7.6917191088811165e+01 1.3956999999862113e-01 1 0 0 0 0 V -243 0 4.2744301962094770e-05 2.5382365838251828e-05 9.0172007792043471e-04 9.0362374762430772e-04 0 2 0 P 776 22 2.0206176206786792e-02 -3.0759204499496016e-02 6.5404528235364845e-01 6.5507988031033682e-01 -7.0120302710568519e-09 1 0 0 0 0 P 777 22 1.6548246837885905e-01 1.4102459409602322e-01 3.2631827779663429e+00 3.2704180506315774e+00 -1.4901161193847656e-08 1 0 0 0 0 V -244 0 1.1326427392595388e+01 1.1140728665347153e+01 4.3088155478619456e+01 4.8598711415685202e+01 0 2 0 P 778 -211 2.1620125203128515e-01 4.1486119245492276e-01 8.3566219858905100e-01 9.6781397253589097e-01 1.3957000000000022e-01 1 0 0 0 0 P 779 211 1.3829361953746722e-01 -6.6178325341289201e-02 5.1291221177739044e-01 5.5322998638913801e-01 1.3956999999999983e-01 1 0 0 0 0 V -245 0 5.5560580388043604e-05 5.7238453899148698e-05 1.9466239746896441e-04 2.1128863002546066e-04 0 2 0 P 780 22 2.4006383788629909e-01 1.5857535476889045e-01 6.1514299916077531e-01 6.7910065440794010e-01 1.0998629796255085e-08 1 0 0 0 0 P 781 22 1.4154658494827163e-01 2.3455931809265679e-01 7.2186966862101487e-01 7.7210707022382863e-01 -3.8328761312072933e-09 1 0 0 0 0 V -246 0 4.7170460551163638e-07 1.1635212281659898e-06 3.6220072762500309e-06 3.8529076098609674e-06 0 2 0 P 782 22 1.2272228898739163e-01 3.2378646068682188e-01 1.1298942576735578e+00 1.1817611712448854e+00 -2.0767658130245058e-08 1 0 0 0 0 P 783 22 4.1853954260830807e-02 8.2162411623674700e-02 1.3381261221463916e-01 1.6250609391278614e-01 -1.4060493941862559e-09 1 0 0 0 0 V -247 0 1.0409831841134347e-04 3.8817335497764977e-04 8.1415923831543711e-04 9.1659155607642072e-04 0 2 0 P 784 22 6.5292659833318858e-03 5.6451798019208535e-02 4.0221849707068713e-02 6.9622079886632493e-02 1.2794104777470502e-09 1 0 0 0 0 P 785 22 1.0536298700723784e-01 3.6078444462334802e-01 8.3489422189196660e-01 9.1559550908786003e-01 1.2656653230010423e-08 1 0 0 0 0 V -248 0 -4.8948383235562968e-07 4.8589330029972814e-07 3.3318561246498033e-06 3.9015971775620507e-06 0 2 0 P 786 22 -7.9726534590996823e-02 4.9599735739373124e-02 1.7688445592298932e-01 2.0026124150837823e-01 -4.2749950725069594e-09 1 0 0 0 0 P 787 22 4.5122342582110425e-02 -1.5249377365968701e-02 5.8662014587600717e-02 7.5563226940244740e-02 -2.2325692325475442e-09 1 0 0 0 0 V -249 0 1.6005326353629871e-05 -3.8074286836331070e-05 1.2021483655971793e-04 1.2895147238547742e-04 0 2 0 P 788 22 1.0867350616276265e-01 -1.3905087124770737e-01 5.9390637658169299e-01 6.1957232013773023e-01 -1.2521007712696447e-08 1 0 0 0 0 P 789 22 -9.1332314557707895e-03 -9.7740612238768107e-02 1.5373335225748916e-01 1.8240226641672835e-01 -2.3858041423278856e-09 1 0 0 0 0 V -250 0 -2.3556298519312328e+01 -1.3416459425943119e+01 -6.1552288632504924e+03 6.1555753763424646e+03 0 2 0 P 790 22 -2.3213653733425543e-02 -9.9755034120093834e-03 -2.9430548614542598e+01 2.9430559460148622e+01 5.7615682271662964e-07 1 0 0 0 0 P 791 22 5.4056242413318530e-02 1.5838144165447033e-02 -6.1187142396649827e+00 6.1189735144739341e+00 8.9948598054421223e-08 1 0 0 0 0 V -251 0 -2.3556307420695578e+01 -1.3416462374409992e+01 -6.1552232851270101e+03 6.1555697982187294e+03 0 2 0 P 792 22 -5.7116369314341643e-02 2.8352248717224603e-02 -2.9548210046346037e+00 2.9555089746236312e+00 5.5887114959498858e-08 1 0 0 0 0 P 793 22 -1.7101521325281299e-01 -1.4658056524720245e-01 -1.3047202672641697e+01 1.3049146701844561e+01 2.2447772167895480e-07 1 0 0 0 0 V -252 0 4.5698786253224441e+01 -1.3556400424896554e+01 -6.9941831447505521e+01 8.9692527979837251e+01 0 2 0 P 794 22 4.0930070299454407e-01 -1.5666810164849121e-01 -4.9589725382548561e-01 6.6180514193955009e-01 -3.4924596548080444e-09 1 0 0 0 0 P 795 22 3.2396141219446915e-02 4.7521339969769285e-03 -1.1157493130964191e-01 1.1628008445209730e-01 -1.7355256150331783e-09 1 0 0 0 0 V -253 0 3.2089322298709840e+02 1.0907298226418077e+02 -1.2327163499917337e+04 1.2331989692593479e+04 0 2 0 P 796 -211 5.3669786914359341e-01 2.3172426959419054e-01 -1.6834484085283336e+01 1.6845209257899416e+01 1.3957000000019584e-01 1 0 0 0 0 P 797 211 1.9451680338778117e+00 6.1187259138785777e-01 -7.8506783912280142e+01 7.8533385682666577e+01 1.3956999999933545e-01 1 0 0 0 0 V -254 0 -1.3737028042026699e+02 1.0362654646905284e+02 -7.2503770717535244e+03 7.2531085808448788e+03 0 2 0 P 798 211 -6.6213492676284158e-01 4.0215600491309411e-01 -3.1817096474859657e+01 3.1826832390122547e+01 1.3956999999999251e-01 1 0 0 0 0 P 799 -211 -2.1264718329343259e-02 1.1337286248398579e-01 -4.2526058105398290e+00 4.2564588050315431e+00 1.3956999999998720e-01 1 0 0 0 0 V -255 0 3.6595714785966773e-06 2.1637133496982003e-05 -9.7194935725559495e-04 9.7529894982596786e-04 0 2 0 P 800 22 -5.9470864189116096e-02 2.6736378549356159e-02 -1.1230940280261077e+00 1.1249852503091948e+00 -2.4366146795360614e-08 1 0 0 0 0 P 801 22 6.5826335170021982e-02 1.0840199706955950e-02 -5.6486205401134704e-01 5.6878797138610493e-01 -1.3348731289826485e-08 1 0 0 0 0 V -256 0 -6.8422734566243745e-05 4.0252084718800003e-05 -2.4637809838895346e-03 2.4654463442778537e-03 0 2 0 P 802 22 -2.0891482218267035e-01 1.4110641636296994e-01 -7.4548860259442193e+00 7.4591475440216879e+00 -1.8454292530567699e-07 1 0 0 0 0 P 803 22 -2.5752876218705389e-03 -1.6689906689582371e-02 -1.6049669911576778e-01 1.6138269894477408e-01 -5.7496088445598486e-09 1 0 0 0 0 V -257 0 -1.2601714585453721e-04 1.7532249864193761e-04 -4.9217733949071755e-03 4.9274818335522394e-03 0 2 0 P 804 22 -9.3833273508074660e-02 2.2621323689805828e-01 -5.2475274304246851e+00 5.2532391193267252e+00 -9.5504848236547925e-08 1 0 0 0 0 P 805 22 -7.9721874996674935e-02 1.5246939665127048e-02 -1.5309082075784999e+00 1.5330583767597865e+00 -3.5172072426940672e-08 1 0 0 0 0 V -258 0 5.8362199776217426e-06 3.3558271360268071e-07 2.4755443464605853e-05 2.6587291936313057e-05 0 2 0 P 806 22 1.3364918421663818e-01 1.0779583078241388e-02 3.7762962267932421e-01 4.0072738336435465e-01 9.5949109933951653e-09 1 0 0 0 0 P 807 22 -3.1844603949452689e-02 -4.9258185809741362e-03 5.4193979053595236e-02 6.3050216931043901e-02 2.8222463250938626e-09 1 0 0 0 0 E 2 -1 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 306 0 0 0 0 U GEV MM H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -1 0 P 3 2 3.1564508916247891e-01 -8.3581952973138751e-01 2.1599035257864975e+03 2.1599037105693046e+03 -3.7479521967179458e-05 3 0 0 -3 0 P 87 2101 -3.1564508916247891e-01 8.3581952973138751e-01 2.1991196891509016e+03 2.1991199469470771e+03 5.7932999947564401e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -2 0 P 4 21 1.0485570318721020e+00 -4.0602676647099523e-01 -2.6283896264111208e+03 2.6283898669252194e+03 -5.5337768846145660e-05 3 0 0 -4 0 P 16 1 -7.7683827458000398e-01 2.5423061695185373e-01 -1.0163523559378891e+01 1.0201677413714762e+01 3.2999999999998797e-01 2 0 0 -11 0 P 95 2203 -2.7171875729209799e-01 1.5179614951914150e-01 -6.7511740163706804e+02 6.7511791400933009e+02 7.7133000000372853e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 3 0 P 5 2 1.1351433714083008e+00 6.2334370232618885e-01 1.5054710073034357e+03 1.5054715643076977e+03 5.8205392912548552e-06 3 0 0 -5 0 P 85 21 -6.2859554271951848e-02 -9.8434930980659352e-01 1.6902747918111271e+02 1.6903035707590743e+02 -1.0176522182800694e-06 2 0 0 -13 0 P 86 21 -7.9826179328966473e-01 -4.9184531800099446e-01 4.3922827640778718e+02 4.3922927717749297e+02 -2.9418379495747248e-06 2 0 0 -13 0 V -4 0 0 0 0 0 0 16 0 P 6 -1 -3.9153510615501634e+00 1.2028448393528433e+00 2.1863609591490727e+00 4.6429499121174000e+00 -1.9822955424917506e-07 3 0 0 -5 0 P 14 -2 -2.6175345707137820e-02 1.4799141542815424e+00 4.7603304819027397e+00 4.9960461716939841e+00 3.3000000000000618e-01 2 0 0 -11 0 P 15 21 -3.3014204858802826e-01 -6.6173486872478360e-01 -2.4920757233973277e+03 2.4920758331224838e+03 -3.3589108019554754e-05 2 0 0 -11 0 P 17 2 5.5375425333838957e-01 -1.7158053715528803e+00 3.0886169522163374e+00 3.5915298305399346e+00 3.2999999999999929e-01 2 0 0 -13 0 P 18 21 1.3726171967042677e+00 -1.0487868079664044e+00 5.6382820804011544e+00 5.8969701165450559e+00 -4.7121609153872423e-08 2 0 0 -13 0 P 19 21 1.3406491389301670e-01 -5.2582702137319426e-01 9.8015115038302003e+00 9.8165215436660205e+00 8.4211338724622982e-08 2 0 0 -13 0 P 20 21 -4.8509911729354183e-01 -2.0425121135375561e+00 5.6771047945201296e+00 6.0528254340853138e+00 -5.9254369588892408e-08 2 0 0 -13 0 P 21 21 -3.3068411322502413e-02 1.6789622470597114e+00 6.4607220922419195e+00 6.6753979431987425e+00 7.5981311702620752e-08 2 0 0 -13 0 P 22 21 -8.6091820198030400e-01 5.3778950104120271e-01 5.6078087914236763e+00 5.6989400013598859e+00 -4.4897089873231763e-08 2 0 0 -13 0 P 88 1 4.5314466228188728e+00 9.1667134983359311e-01 -1.3638020061622930e+01 1.4404123925469809e+01 3.2999999999996854e-01 2 0 0 -15 0 P 89 21 6.8996520985842413e-01 -1.1023608522319204e-02 7.7078438419935197e-02 6.9434472449143614e-01 3.1839111659623086e-09 2 0 0 -15 0 P 90 21 3.8161683430029963e-01 -3.0964881570981106e-01 -1.5715986414356771e+00 1.6466438859250463e+00 1.1019557310453832e-08 2 0 0 -15 0 P 91 21 -2.4780275052988057e-03 7.9068318981913444e-01 -4.6443582297488399e+00 4.7111834408690410e+00 -2.0825005858203301e-08 2 0 0 -15 0 P 92 21 3.3831940005505579e-01 3.5026058914303315e-01 -8.8535044407174777e+00 8.8668869045773064e+00 -8.6607992183884012e-08 2 0 0 -15 0 P 93 21 -1.4312453788937820e+00 -6.5137745978608985e-01 -1.0310507231270073e+02 1.0311706305232403e+02 9.0640224967870412e-07 2 0 0 -15 0 P 94 21 1.7287325907739978e-01 -3.7940517406762642e-01 -1.6224025257554775e+00 1.6751189227607335e+00 -1.7701254979472804e-08 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 1.6114126440303389e+00 -9.5808125124733068e-01 2.3946441701668553e+02 2.3947175530223686e+02 1.8601997535618823e-06 3 0 0 -6 0 P 8 24 -4.3916203341722051e+00 2.7842697929263647e+00 1.2681929512459012e+03 1.2706427589175803e+03 7.8693206266182784e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 1.6114126440303389e+00 -9.5808125124733068e-01 2.3946441701668553e+02 2.3947175530223686e+02 1.8601997535618823e-06 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -4.3916203341722051e+00 2.7842697929263647e+00 1.2681929512459012e+03 1.2706427589175803e+03 7.8693206266182784e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 3 0 P 11 12 -1.2212913928490286e+01 -3.4791389170413495e+01 4.3251392047097784e+02 4.3408281171708148e+02 -2.2302015940987716e-06 1 0 0 0 0 P 12 -11 7.6763292388928965e+00 3.6880087269723475e+01 8.2020562934461793e+02 8.2107024137796350e+02 5.1006204526735707e-04 1 0 0 0 0 P 13 22 1.4496435542527097e-01 6.9557169361632731e-01 1.5473401430257159e+01 1.5489705822487025e+01 8.3798333102479523e-08 1 0 0 0 0 V -9 0 0 0 0 0 2 1 0 P 116 1 -3.4933843168561007e-01 -3.5075788562810800e-01 -1.3740541647468454e+00 1.4605113083578003e+00 1.2434115561487795e-08 2 0 0 -9 0 P 117 -1 3.4933843168561007e-01 3.5075788562810800e-01 -9.5423591836400767e-01 1.0750044753762023e+00 1.2820493334844899e-08 2 0 0 -9 0 P 124 91 0 0 -2.3282900831108533e+00 2.5355157837340023e+00 1.0039450076831440e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 125 -211 -9.7506281867387828e-02 -1.6567436134807093e-01 -4.7344885095838174e-02 2.4223292933957546e-01 1.3956999999999992e-01 1 0 0 0 0 P 126 211 9.7506281867387828e-02 1.6567436134807093e-01 -2.2809451980150151e+00 2.2932828543944268e+00 1.3956999999999961e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 127 92 -1.1331556688751701e+00 1.0724099025086125e+00 -2.4974789164748040e+03 2.5072735567078926e+03 2.2139854522041421e+02 2 0 0 -12 0 V -12 0 0 0 0 0 0 23 0 P 128 -211 -5.3144075686221970e-01 1.0222566269073003e+00 3.5501630110011577e+00 3.7350468643500294e+00 1.3957000000000128e-01 1 0 0 0 0 P 129 223 5.1052793807063979e-01 3.7377926589243380e-03 -7.3832325904346652e-01 1.1912143102111321e+00 7.8308208469010288e-01 2 0 0 -25 0 P 130 223 -6.7980293948721904e-02 2.8117711162848102e-01 -5.7792284098610081e-01 1.0180190773083682e+00 7.8656604500909233e-01 2 0 0 -26 0 P 131 113 6.2080858143120743e-01 6.0199952370884810e-02 -1.1195401288222389e+00 1.5300675941135422e+00 8.3588839773560875e-01 2 0 0 -27 0 P 132 -311 -2.2825215977304525e-01 -4.6001086979558325e-01 -1.4008672310623200e+00 1.5728361252003846e+00 4.9766999999999961e-01 2 0 0 -28 0 P 133 323 -1.7896231159442544e-01 3.2919128611090098e-01 -8.3945564491432390e-01 1.2287486458585728e+00 8.1531775590758704e-01 2 0 0 -29 0 P 134 223 1.7234825591206271e-01 3.1530308772422583e-01 -8.2608994470471619e-01 1.1912034808242860e+00 7.7937229713487588e-01 2 0 0 -30 0 P 135 111 -9.4558018500305402e-02 1.6356809536857243e-02 -3.0890237981151442e-01 3.5049828064363775e-01 1.3498000000000007e-01 2 0 0 -31 0 P 136 -323 -3.1366278722632779e-01 -1.3501190604184621e-01 -5.8152778902626965e+00 5.8877055606123605e+00 8.5498963071133860e-01 2 0 0 -32 0 P 137 323 -7.6063884483943855e-02 -1.5334571494036736e-01 -5.8493718718124459e+00 5.9184579784246187e+00 8.8526432482848239e-01 2 0 0 -33 0 P 138 -213 3.0011328528370179e-01 5.0689559442465115e-02 -1.6495988444568273e+01 1.6520533152347088e+01 8.4719741443715257e-01 2 0 0 -34 0 P 139 331 -1.0679798443554327e-01 -6.8438790676717279e-02 -1.6105347217778011e+01 1.6134297691030934e+01 9.5773863870443576e-01 2 0 0 -35 0 P 140 211 -4.7016220535410669e-01 -9.1586511170435606e-02 -1.1612493094471530e+02 1.1612600271811722e+02 1.3956999999520384e-01 1 0 0 0 0 P 141 -211 1.5433852535823833e-01 2.2070416586911615e-01 -2.9729239339432633e+02 2.9729254814176056e+02 1.3956999998979153e-01 1 0 0 0 0 P 142 221 1.3049985304850631e-01 -5.9322707704690691e-01 -2.6932974224066510e+02 2.6933098356019531e+02 5.4745000000524968e-01 2 0 0 -36 0 P 143 223 -4.1101307696033801e-01 2.6693361678289890e-01 -4.3127998422108061e+02 4.3128096514701468e+02 7.7841062412608419e-01 2 0 0 -37 0 P 144 211 4.1054634892557790e-01 1.2326427497805471e-01 -8.0977723096288685e+01 8.0978977889512834e+01 1.3957000000180933e-01 1 0 0 0 0 P 145 223 -7.6614295950571876e-01 2.6422061138178343e-01 -8.0515928541486471e+02 8.0516008227539385e+02 7.9146217694553134e-01 2 0 0 -38 0 P 146 -211 7.4425249040835961e-01 -2.6712562086228903e-01 -1.6068261020479275e+02 1.6068461646927210e+02 1.3957000000991349e-01 1 0 0 0 0 P 147 213 -2.1861473561276429e-01 -7.7242963722716518e-01 -2.3746600607738023e+02 2.3746900969113449e+02 8.8435366152226469e-01 2 0 0 -39 0 P 148 113 -5.0840765889616024e-01 7.9395450516305710e-01 -2.8411530488314543e+01 2.8435907720498498e+01 7.0494049137943815e-01 2 0 0 -40 0 P 149 -211 -6.4896229801351429e-02 8.1995280638267859e-02 -1.8376618361533755e+01 1.8377445876319399e+01 1.3956999999989944e-01 1 0 0 0 0 P 150 111 -1.3963588435849167e-01 -2.1639865092329461e-01 -5.8511681880765636e+00 5.8583884577485277e+00 1.3497999999998730e-01 2 0 0 -41 0 V -13 0 0 0 0 0 62 1 0 P 23 21 -4.2558990380049305e-01 -3.6652561067324091e-02 3.4102375408661295e-01 5.4659617388071202e-01 7.4232456120335773e-09 2 0 0 -13 0 P 24 21 -2.2177511285183216e+00 1.6430846541122073e-02 7.6276247703710898e-01 2.3453137609151860e+00 3.2275400033525112e-08 2 0 0 -13 0 P 25 21 -1.0522102416632771e+01 4.5971570978514249e+00 -1.7833639653700410e+00 1.1620192755777131e+01 1.2644054553268208e-07 2 0 0 -13 0 P 26 21 -1.4839306651887794e+00 1.0123762884171605e+00 6.7643404413229757e-01 1.9195100897098962e+00 -1.6097338886413356e-08 2 0 0 -13 0 P 27 21 -1.0121679005386577e+01 2.3799685503980445e+01 5.3161447748330994e+00 2.6403310611426090e+01 -2.4165622502903425e-07 2 0 0 -13 0 P 28 21 -1.0073197382025285e+00 1.8959424739631661e+00 -3.2066411552797663e-01 2.1707409782231784e+00 2.2736481606464278e-08 2 0 0 -13 0 P 29 21 -3.3221859710811588e+00 4.2035329620073920e+00 -5.1356472612804911e+00 7.4216899545473405e+00 -6.5880787312341455e-08 2 0 0 -13 0 P 30 21 -3.2674029175344996e+00 2.0663679166525566e+00 -4.3304222893539146e+00 5.8050284578645419e+00 -6.6666044921328428e-08 2 0 0 -13 0 P 31 21 -1.4547013008931733e+00 6.0476590285027787e-01 -2.3484674699782859e+00 2.8279315991757676e+00 2.8363321596460531e-08 2 0 0 -13 0 P 32 21 -4.5828849719107820e+00 3.0729386185003844e+00 -6.3600643466217814e+00 8.4199884151943039e+00 -5.9488115544137774e-08 2 0 0 -13 0 P 33 21 -2.6425191693100478e+00 3.5134708349685853e+00 -6.5655360655233128e+00 7.9014966111511598e+00 8.0848240905294965e-08 2 0 0 -13 0 P 34 21 -3.5148923790076730e-01 3.5265935643821222e-01 -8.7207698514434173e-01 1.0042069378678484e+00 1.2129560371517302e-08 2 0 0 -13 0 P 35 21 -1.8964373176552702e+00 9.7063749425126700e-01 -7.4800308386410848e+00 7.7774978619131447e+00 -8.1468104305226501e-08 2 0 0 -13 0 P 36 21 -9.3960035170327783e-01 2.1846731909457021e-01 -4.2727250179917888e+00 4.3802689266535024e+00 4.3303996091942006e-08 2 0 0 -13 0 P 37 21 -1.0304986824760289e+00 3.9540769749557403e-01 -5.5343952375009513e+00 5.6433859895187739e+00 -5.6466111508101663e-08 2 0 0 -13 0 P 38 21 -6.8107916700425120e-01 -6.9383455670473471e-01 -4.0216319744152731e+00 4.1374870345952930e+00 5.5034781629942945e-08 2 0 0 -13 0 P 39 21 -1.9988776016792793e+00 -2.9567431434453448e+00 -3.4298704089848997e+01 3.4483893978578323e+01 -4.0108766656204374e-07 2 0 0 -13 0 P 40 21 -1.3905376285482849e+00 -1.0023346343082498e+00 -3.1587066882634204e+01 3.1633543333991991e+01 3.0209325153698465e-07 2 0 0 -13 0 P 41 21 -1.2623100866544219e+00 -1.0388992725735120e+00 -3.8358158850104552e+01 3.8392982286132415e+01 1.7881393432617188e-07 2 0 0 -13 0 P 42 21 -4.3197608796821738e+00 -3.1601148819602516e+00 -1.5115528602386883e+02 1.5125001538208983e+02 -1.9871691558563294e-06 2 0 0 -13 0 P 43 21 -1.1939504963919689e-01 -4.5808754649506298e+00 -2.3725761707720332e+02 2.3730186585097914e+02 -2.4020006274711950e-06 2 0 0 -13 0 P 44 21 -8.4225249075781036e-02 -3.5405091179820825e+00 -2.1989737580768494e+02 2.1992589248611296e+02 -1.2039548085167500e-06 2 0 0 -13 0 P 45 21 -7.0004805125896468e+00 -3.4047369808490224e-01 -1.4343064561697458e+03 1.4343235802495758e+03 4.0320240319461258e-06 2 0 0 -13 0 P 46 21 4.3197608796821738e+00 3.1601148819602516e+00 -5.5092203982485694e+02 5.5094803804433866e+02 -5.8788433103265534e-06 2 0 0 -13 0 P 47 21 -1.5281776336328485e+00 1.7688384032189193e+00 -1.5107767268891206e+02 1.5109575540456021e+02 1.6561083781063323e-06 2 0 0 -13 0 P 48 21 1.1939504963919689e-01 4.5808754649506298e+00 -2.4465858928664815e+02 2.4470149976437833e+02 -2.1671842292187027e-06 2 0 0 -13 0 P 49 21 8.4225249075781036e-02 3.5405091179820825e+00 -9.2960303028627592e+01 9.3027739077553449e+01 6.8220634116289601e-07 2 0 0 -13 0 P 50 21 1.9988776016792793e+00 2.9567431434453448e+00 -6.8710027656851139e+01 6.8802657959471702e+01 4.0590281700719105e-07 2 0 0 -13 0 P 51 21 5.3193535976324311e+00 -3.6964345011348057e+00 -1.2426644230800144e+02 1.2443515513955722e+02 -1.1998905026434299e-06 2 0 0 -13 0 P 52 21 1.8163020077403840e+00 -1.0225145555807500e+00 -1.2009557448662246e+01 1.2189091808351231e+01 -9.5341234595103017e-08 2 0 0 -13 0 P 53 21 1.2623100866544219e+00 1.0388992725735120e+00 -4.6708411395957770e+00 4.9486862301790406e+00 4.3042823703182278e-08 2 0 0 -13 0 P 54 21 3.6885896684190472e-01 3.0307860623893193e-02 -1.0476441642012073e+00 1.1110957648286313e+00 1.0970252556157994e-08 2 0 0 -13 0 P 55 21 7.0004805125896468e+00 3.4047369808490224e-01 -2.0047888604407483e+01 2.1237713795061993e+01 2.1374208163888830e-07 2 0 0 -13 0 P 56 21 1.8964373176552702e+00 -9.7063749425126700e-01 -6.5830230591503813e+00 6.9191621055115871e+00 -3.3579312967732448e-08 2 0 0 -13 0 P 57 21 4.4799405944219500e-01 -1.4037001611678230e+00 -2.2745191526793382e+00 2.7100756807999300e+00 -5.4304971311663284e-09 2 0 0 -13 0 P 58 21 3.3221859710811588e+00 -4.2035329620073920e+00 -9.4544576684332196e+00 1.0867077748563633e+01 1.3278452247844351e-07 2 0 0 -13 0 P 59 21 1.4547013008931733e+00 -6.0476590285027787e-01 -2.8574768493228833e+00 3.2629850775764870e+00 -3.1376035004710811e-08 2 0 0 -13 0 P 60 21 1.0304986824760289e+00 -3.9540769749557403e-01 -1.5894105917946559e+00 1.9350712677140915e+00 8.1988130051917440e-09 2 0 0 -13 0 P 61 21 1.0522102416632771e+01 -4.5971570978514249e+00 -1.1325976080582238e+01 1.6128429149373350e+01 1.0784055908121264e-07 2 0 0 -13 0 P 62 21 1.0121679005386577e+01 -2.3799685503980445e+01 -1.6841651210241888e+01 3.0862835765105942e+01 2.3359679291532758e-07 2 0 0 -13 0 P 63 21 9.2108886106139620e-01 -9.3406477610320460e-01 -3.5246329532351389e-01 1.3583490238073646e+00 -1.0396872443038089e-08 2 0 0 -13 0 P 64 21 6.0854916893600319e-01 -5.3149012741370405e-01 -3.1384326728517675e-01 8.6678223503436569e-01 -7.2664052873511028e-09 2 0 0 -13 0 P 65 21 1.0073197382025285e+00 -1.8959424739631661e+00 2.8677094266573294e-01 2.1659936502924872e+00 -2.7430572500495501e-08 2 0 0 -13 0 P 66 21 1.4839306651887794e+00 -1.0123762884171605e+00 6.2084627242776869e-01 1.9006330688547892e+00 -1.5873518352452023e-08 2 0 0 -13 0 P 67 21 1.5281776336328485e+00 -1.7688384032189193e+00 8.3122059387097635e-01 2.4809360838830505e+00 -2.3011395895119451e-08 2 0 0 -13 0 P 68 21 -7.8779233712078711e-01 -3.8776249637271092e+00 3.0825144027339610e+00 5.0158236780022687e+00 3.3137289573731266e-08 2 0 0 -13 0 P 69 21 1.3905376285482849e+00 1.0023346343082498e+00 4.9542147021185201e+00 5.2423766490237842e+00 5.4813694095470611e-08 2 0 0 -13 0 P 70 21 1.6956243401785520e+00 4.9359751230365112e-01 2.7167406894664707e+00 3.2402870831086954e+00 -1.4397897602748412e-08 2 0 0 -13 0 P 71 21 4.5828849719107820e+00 -3.0729386185003844e+00 8.6102203541626654e+00 1.0226518516390307e+01 9.5631909765254225e-08 2 0 0 -13 0 P 72 21 3.5148923790076730e-01 -3.5265935643821222e-01 6.1861717716259423e-01 7.9410359394986541e-01 -1.0412502929101651e-09 2 0 0 -13 0 P 73 21 2.4406500816413526e+00 -4.2899981569938932e+00 1.6290135335060231e+01 1.7021438430479513e+01 1.2850901715949430e-07 2 0 0 -13 0 P 74 21 2.6425191693100478e+00 -3.5134708349685853e+00 1.6581804923497256e+01 1.7154697298094877e+01 -2.3168790050545652e-07 2 0 0 -13 0 P 75 21 3.2674029175344996e+00 -2.0663679166525566e+00 1.2975501422852753e+01 1.3539181488071494e+01 1.1342270186273999e-07 2 0 0 -13 0 P 76 21 2.2177511285183216e+00 -1.6430846541122073e-02 3.6002281440105754e+01 3.6070527566606863e+01 -7.0682413730808632e-08 2 0 0 -13 0 P 77 21 7.8779233712078711e-01 3.8776249637271092e+00 1.4127172616641948e+02 1.4132712834472213e+02 1.7285346984863281e-06 2 0 0 -13 0 P 78 21 -4.3757872082178884e-01 8.2210068814098125e-01 3.7618032027634726e+01 3.7629558306077818e+01 4.6814316726937914e-07 2 0 0 -13 0 P 79 21 -6.0854916893600319e-01 5.3149012741370405e-01 9.1489662015537085e+00 9.1845738280947486e+00 -6.2613697029544450e-08 2 0 0 -13 0 P 80 21 -1.2036559975856105e+00 3.1730492796060461e-01 2.3909651245576246e+01 2.3942031928449968e+01 2.4451075615617541e-07 2 0 0 -13 0 P 81 21 -3.6885896684190472e-01 -3.0307860623893193e-02 1.3026901125781635e+01 1.3032157474674946e+01 -1.3923817568295268e-07 2 0 0 -13 0 P 82 21 -3.5113013765072396e+00 -1.5102986058820400e+00 2.0131931995251125e+02 2.0135560291528316e+02 1.2908224956815072e-06 2 0 0 -13 0 P 83 21 -1.8163020077403840e+00 1.0225145555807500e+00 2.1028935912892720e+02 2.1029968866323748e+02 -1.4342319268603283e-06 2 0 0 -13 0 P 84 21 -5.3193535976324311e+00 3.6964345011348057e+00 6.1224868067244734e+02 6.1228294614162678e+02 5.3471711854948530e-06 2 0 0 -13 0 P 151 92 -2.1888639784839388e+00 -1.0773633034824538e+01 6.8529984298748263e+02 7.8040625915464398e+03 7.7739073956204020e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 136 0 P 152 211 1.0520443983331029e+00 -1.0438991469906358e+00 5.2107490499631952e+00 5.4192165754603474e+00 1.3956999999998629e-01 1 0 0 0 0 P 153 -213 2.5010437978830075e-01 -8.5654961689099696e-01 2.5273938183632523e+00 2.7975481441152428e+00 8.0145284237842385e-01 2 0 0 -42 0 P 154 211 -4.4041632021085249e-02 -5.2048659303822284e-02 5.2429059175826276e-01 5.4681728007867070e-01 1.3957000000000003e-01 1 0 0 0 0 P 155 -211 1.0215465329895816e-01 -2.4353654059048049e-01 6.4442083876022027e-01 7.1028418405722282e-01 1.3956999999999956e-01 1 0 0 0 0 P 156 323 1.8890511461982035e-02 -1.3948061080517167e+00 5.8898112361090780e+00 6.1169270784868326e+00 8.8378705356383191e-01 2 0 0 -43 0 P 157 -323 4.9571586735733741e-01 -5.8498094614865681e-01 3.6939728986324933e+00 3.8723128915395684e+00 8.7260210041311093e-01 2 0 0 -44 0 P 158 221 8.0871204737868602e-03 1.6958829837682970e-01 3.1580730564262409e+00 3.2096654848580850e+00 5.4745000000000066e-01 2 0 0 -45 0 P 159 111 -6.3961048909656926e-01 -3.6836999899913409e-01 2.5556586171708422e+00 2.6635331050776441e+00 1.3498000000000071e-01 2 0 0 -46 0 P 160 211 5.7761554913362412e-01 5.8689437264464228e-01 3.9888229635776344e+00 4.0753249130476883e+00 1.3956999999999767e-01 1 0 0 0 0 P 161 111 -9.3311519197163306e-01 -4.2201048184719470e-01 2.0571954096360519e+00 2.3019707561358813e+00 1.3497999999999594e-01 2 0 0 -47 0 P 162 311 -4.9462975411311262e-02 5.4657580232646674e-01 2.3302515224276483e+00 2.4451869622386209e+00 4.9767000000000106e-01 2 0 0 -48 0 P 163 -321 -7.4235535614072534e-01 9.3121815871022612e-02 2.9901130814827730e+00 3.1215669698784847e+00 4.9360000000000054e-01 1 0 0 0 0 P 164 213 -1.0057615599774634e+00 8.4237484217752942e-02 1.5347995183397110e+00 2.0575214652798022e+00 9.2689414137521575e-01 2 0 0 -49 0 P 165 -213 -4.8060380612791169e+00 2.5739284192737246e+00 -8.7028196095455435e-01 5.5931858646769168e+00 8.9622992097468912e-01 2 0 0 -50 0 P 166 113 -2.2394375114852103e+00 7.6419468414451186e-01 4.8508994117964521e-01 2.5311694525077542e+00 7.5659279877152585e-01 2 0 0 -51 0 P 167 111 -3.6655917250068826e+00 1.6519210063041272e+00 -7.2840524128689721e-01 4.0883003193799246e+00 1.3497999999998850e-01 2 0 0 -52 0 P 168 213 -1.9831238614205671e+00 1.6199953838093737e+00 6.8355911593227392e-01 2.7746012128085407e+00 8.2097109074876218e-01 2 0 0 -53 0 P 169 311 -2.4553592648254549e-01 9.4030805112059901e-01 2.8285561708192503e-01 1.1278962058676578e+00 4.9767000000000033e-01 2 0 0 -54 0 P 170 -323 -3.0555920116619668e+00 5.6226729529716053e+00 6.5875326058966788e-01 6.4873843239488629e+00 8.3732062584715350e-01 2 0 0 -55 0 P 171 211 -5.9340879917975842e-01 1.7857517586856975e+00 4.5253712290722053e-01 1.9404414392354565e+00 1.3957000000000286e-01 1 0 0 0 0 P 172 221 -2.1206144849268913e+00 4.1019546421738431e+00 1.0622350412719868e+00 4.7698094789560930e+00 5.4745000000000921e-01 2 0 0 -56 0 P 173 -211 -7.9953461497977274e-01 7.2074972638350887e-01 -1.5802023203436190e-02 1.0855713967630494e+00 1.3956999999999883e-01 1 0 0 0 0 P 174 211 -2.3095703597071238e-01 1.1054292829752299e+00 2.3366584258262518e-01 1.1616344360483446e+00 1.3956999999999847e-01 1 0 0 0 0 P 175 331 -2.9414582953071031e+00 7.2370032376802893e+00 1.9100462158944616e+00 8.0988683205864067e+00 9.5760052324514355e-01 2 0 0 -57 0 P 176 -213 -1.5771493835268173e+00 2.8542180726349851e+00 -3.0048375305201441e-01 3.3822619468915809e+00 8.4583946906455854e-01 2 0 0 -58 0 P 177 2114 -2.4105961059110954e+00 2.9835577864615277e+00 -3.4145941756696141e+00 5.2693555372954588e+00 1.1807047653501335e+00 2 0 0 -59 0 P 178 -2114 -3.1431765646085714e+00 2.2388675847489132e+00 -4.9511651549663318e+00 6.4237960995367152e+00 1.3634635889257776e+00 2 0 0 -60 0 P 179 223 -8.9183099928949994e-01 1.3184926647996849e+00 -2.0906411877278330e+00 2.7415670112549195e+00 7.8206372051956574e-01 2 0 0 -61 0 P 180 213 -3.5622014532232176e+00 3.4527410449562361e+00 -5.1400841381240303e+00 7.1747893179186581e+00 6.6815933178721965e-01 2 0 0 -62 0 P 181 -211 -3.4824901168865546e-01 2.6640719722011325e-01 -4.3892860195121586e-01 6.3591530205181468e-01 1.3957000000000072e-01 1 0 0 0 0 P 182 211 -4.9251195094842548e-01 5.5239360845997731e-01 -1.1107527596631901e+00 1.3419978384833007e+00 1.3956999999999875e-01 1 0 0 0 0 P 183 113 -4.9890837451704186e+00 3.3172360890687456e+00 -8.8514320628893586e+00 1.0720661336100617e+01 8.3049264444250837e-01 2 0 0 -63 0 P 184 -211 -5.8536912942963215e-01 7.3654463033297901e-01 -5.0357372036698846e+00 5.1247716026654828e+00 1.3957000000000680e-01 1 0 0 0 0 P 185 2212 -1.3246420740435501e+00 3.6241704940073499e-01 -3.9532928988474474e+00 4.2889273809427451e+00 9.3827000000000427e-01 1 0 0 0 0 P 186 -2112 -1.2931686864860117e+00 -2.1405793837505718e-01 -6.6950678882867853e+00 6.8865689473320613e+00 9.3957000000000135e-01 1 0 0 0 0 P 187 1114 -1.0687746964811395e+00 -7.7489621056862412e-01 -1.2785059963860034e+01 1.2914857988392816e+01 1.2621628626548309e+00 2 0 0 -64 0 P 188 -1114 -1.3444229932098453e+00 -3.1539782253039633e-01 -2.0773954382685748e+01 2.0857296024957844e+01 1.2500671212721504e+00 2 0 0 -65 0 P 189 113 -8.8056401584945843e-01 -1.0200200590354376e+00 -2.0057037325999989e+01 2.0113909656857661e+01 6.8467618684419396e-01 2 0 0 -66 0 P 190 223 -8.6456328472097921e-01 -1.1757586303143390e+00 -2.6289245041728375e+01 2.6341859407365000e+01 7.9954621085827637e-01 2 0 0 -67 0 P 191 223 -1.8081575818231221e+00 -7.8841834511491637e-01 -5.4333389086391925e+01 5.4374765591376651e+01 7.7905466835571724e-01 2 0 0 -68 0 P 192 331 -1.3632645966078540e+00 -1.6376479419915919e+00 -4.4063965744501772e+01 4.4125854818402914e+01 9.5791710490646587e-01 2 0 0 -69 0 P 193 113 -2.6577389524392708e-01 -7.2666263359403604e-01 -3.5628501472707420e+01 3.5644139379426058e+01 7.1824825985288021e-01 2 0 0 -70 0 P 194 -213 -2.8468785291863774e-01 -1.3218491929323617e+00 -4.1906645660515700e+01 4.1936580319121241e+01 8.2552158277798560e-01 2 0 0 -71 0 P 195 223 -2.0394372661947573e+00 -1.7303470807293666e+00 -1.1031978665215739e+02 1.1035492498392902e+02 7.7507151189157542e-01 2 0 0 -72 0 P 196 213 1.9354095196793032e-02 -2.4196459252945646e+00 -1.2533564266359362e+02 1.2536142343932552e+02 7.7981013910432462e-01 2 0 0 -73 0 P 197 -211 -5.7930508266581993e-01 -4.3704582556950061e-01 -7.2735645920928761e+01 7.2739399713993180e+01 1.3957000000089298e-01 1 0 0 0 0 P 198 213 2.1648749816966145e-01 -1.6157190620109430e+00 -1.0909623951236736e+02 1.0911112839172367e+02 7.6905672818837634e-01 2 0 0 -74 0 P 199 -211 -3.3348108274860888e-01 -3.7617706628683195e-01 -6.3874707957206944e+01 6.3876838644544129e+01 1.3956999999595873e-01 1 0 0 0 0 P 200 211 -2.9881419447460200e-01 -3.0149728738835718e-01 -1.7960536121131106e+01 1.7966093845922025e+01 1.3957000000000425e-01 1 0 0 0 0 P 201 113 -6.4958710608427350e-01 -6.7962441637776067e-02 -1.3102985774352032e+02 1.3103498004452874e+02 9.5697057478638581e-01 2 0 0 -75 0 P 202 311 2.7162778169678620e-01 -2.8627754461386645e-01 -4.3900057562294734e+01 4.3904651984567984e+01 4.9766999999869715e-01 2 0 0 -76 0 P 203 -311 -2.1818283436060484e+00 -1.0409004061438667e+00 -4.5134283621901437e+02 4.5134958439133339e+02 4.9766999997976452e-01 2 0 0 -77 0 P 204 1114 3.8432013613266015e-02 2.1822793353422223e-01 -8.1248768777556108e+01 8.1256669041818043e+01 1.1111865064557838e+00 2 0 0 -78 0 P 205 -2114 -2.3642768750173597e+00 -3.8111790157011616e-01 -6.0164922899971702e+02 6.0165522597241659e+02 1.2170160102035057e+00 2 0 0 -79 0 P 206 331 1.4407060213218142e-01 1.0838702395334734e+00 -2.0994248983331755e+02 2.0994752158052736e+02 9.5773136046328433e-01 2 0 0 -80 0 P 207 111 5.4695158996353888e-01 -3.6620644037301764e-01 -1.0220912850850839e+02 1.0221133710732833e+02 1.3497999999261112e-01 2 0 0 -81 0 P 208 213 5.3358223057991749e-01 1.5609214771556559e+00 -1.5310714213768514e+02 1.5311733601456123e+02 6.3279441534489411e-01 2 0 0 -82 0 P 209 -211 2.6116038590878671e-01 4.6560802414091235e-01 -6.3852115573982786e+01 6.3854499752464328e+01 1.3956999999788294e-01 1 0 0 0 0 P 210 113 -3.5788704089531947e-01 9.4471630669149498e-01 -5.5858854614237217e+01 5.5873710411365010e+01 7.9956505952846180e-01 2 0 0 -83 0 P 211 223 -1.7986673502806977e-01 1.2661180158498846e+00 -1.1597020414698636e+02 1.1597987922324356e+02 7.8021014607641748e-01 2 0 0 -84 0 P 212 111 1.0317261898715153e+00 1.6188433537474891e+00 -1.2204347718981047e+02 1.2205864843146114e+02 1.3498000000558374e-01 2 0 0 -85 0 P 213 323 2.6494897554143709e-01 8.4610790552058157e-01 -3.6358260025368416e+01 3.6380004468514620e+01 8.9193974539534793e-01 2 0 0 -86 0 P 214 -313 -2.2839989785979437e-01 1.7314109462960801e+00 -8.9035273545642156e+01 8.9057313941967465e+01 9.3556444595251897e-01 2 0 0 -87 0 P 215 1114 5.8494085287990982e-01 1.0880145851068885e+00 -5.1226937632988033e+01 5.1259001407392326e+01 1.3267081405605579e+00 2 0 0 -88 0 P 216 213 -5.6068000742978399e-03 1.5687935941536062e+00 -7.7714457243134177e+01 7.7738533115494732e+01 1.1320430984182996e+00 2 0 0 -89 0 P 217 -2214 -6.8259607555323357e-02 1.5344815507982337e+00 -7.0413351030994789e+01 7.0440855829837190e+01 1.2308020239052719e+00 2 0 0 -90 0 P 218 2224 1.0417545077554458e+00 1.6140358336649507e+00 -5.6923081197978171e+01 5.6968640723017941e+01 1.2241277016303966e+00 2 0 0 -91 0 P 219 -213 2.4217035191570044e+00 -1.1119073096292569e+00 -4.2914679493479404e+01 4.3003681831578923e+01 7.3888378227233686e-01 2 0 0 -92 0 P 220 -2112 7.4474377545181525e-01 -2.0894630534078820e-01 -1.4820470534214998e+01 1.4870354417095266e+01 9.3956999999995072e-01 1 0 0 0 0 P 221 -211 2.3974461340917306e+00 -1.8008303870125206e+00 -4.9545078574149244e+01 4.9635924779862627e+01 1.3956999999735795e-01 1 0 0 0 0 P 222 213 8.7783027604542962e-01 1.9718254681593650e-01 -1.0794757596074913e+01 1.0855122624616902e+01 7.0528624482680435e-01 2 0 0 -93 0 P 223 113 1.9464318004338096e-01 -1.1097161836602148e-01 -4.8964574137062931e+00 4.9569194358122717e+00 7.3861655903043189e-01 2 0 0 -94 0 P 224 113 1.4406831413002366e+00 -1.9734590809408911e-01 -5.7929288005320840e+00 6.0075810404550136e+00 6.4691000033409296e-01 2 0 0 -95 0 P 225 -211 2.6813015732299211e-01 2.0363279251256816e-04 -2.5768074895760722e+00 2.5944769118201272e+00 1.3956999999999251e-01 1 0 0 0 0 P 226 111 2.5288455079230090e+00 4.1142327462956324e-01 -6.9689882310575424e+00 7.4262605178425973e+00 1.3497999999990229e-01 2 0 0 -96 0 P 227 111 6.5808360076030992e-01 5.5900780498112812e-01 -2.9036056097314185e+00 3.0322778383392306e+00 1.3498000000000279e-01 2 0 0 -97 0 P 228 213 3.3339375302075522e+00 -5.2844361029254661e-01 -1.0061761418835957e+01 1.0639483223032553e+01 7.5177676143249805e-01 2 0 0 -98 0 P 229 -211 1.9454641068538243e+00 -3.1356635358532198e-01 -3.7626436557583296e+00 4.2497201689376851e+00 1.3956999999998670e-01 1 0 0 0 0 P 230 2214 1.4636432232259406e+00 -2.3078140576786916e+00 -7.0586657555375050e+00 7.6720540223349474e+00 1.2519558552574372e+00 2 0 0 -99 0 P 231 213 1.3956115240980960e+00 -5.4339191824799049e-01 -3.2865984545712958e+00 3.6787429265368097e+00 6.9886609228201924e-01 2 0 0 -100 0 P 232 -2214 2.8648664037012854e+00 -2.8290045973525815e+00 -6.2500526136635335e+00 7.5471653610172726e+00 1.2983916166081153e+00 2 0 0 -101 0 P 233 -213 1.4653566738433033e+00 -7.0377729576686932e-01 -2.6025197943465090e+00 3.1466783577705235e+00 6.9706724473465731e-01 2 0 0 -102 0 P 234 331 2.8904642273046033e+00 -1.6578197026898058e+00 -3.5993082650744377e+00 4.9975299637173993e+00 9.5767224835324460e-01 2 0 0 -103 0 P 235 211 4.2155648542712770e-01 -3.7125706203664260e-02 -7.7396631742451072e-01 8.9307997059303224e-01 1.3956999999999969e-01 1 0 0 0 0 P 236 -211 2.3979234619310086e+00 -2.0952205254145468e+00 -3.6571152047682096e+00 4.8511810299394540e+00 1.3956999999998201e-01 1 0 0 0 0 P 237 323 1.5393467542895345e+00 -3.2004917135439170e-01 -1.9795587740818890e+00 2.6741895952769639e+00 8.7213367634590477e-01 2 0 0 -104 0 P 238 -321 2.7461161953106608e+00 -2.5605978991759457e+00 -3.1108323892437437e+00 4.9008912325596148e+00 4.9359999999999538e-01 1 0 0 0 0 P 239 113 6.7536829019627398e-01 -1.1646925528770369e+00 -1.3218112959587216e+00 2.0439782343164317e+00 7.8614938154613756e-01 2 0 0 -105 0 P 240 221 1.5077989915290158e+00 -2.7370621821846779e+00 -2.0215340624493892e+00 3.7618172013196762e+00 5.4745000000000266e-01 2 0 0 -106 0 P 241 213 1.6442057442953033e+00 -4.0797727284941798e+00 -3.1067005257498854e+00 5.4578523064811515e+00 8.8803468227794669e-01 2 0 0 -107 0 P 242 221 2.2616540050608922e+00 -3.0623258739596992e+00 -2.3292131524875690e+00 4.4964268046029714e+00 5.4744999999999866e-01 2 0 0 -108 0 P 243 -211 6.3539171198211974e-01 -2.6721591969501697e+00 -1.8587129981947472e+00 3.3194052473386026e+00 1.3956999999999539e-01 1 0 0 0 0 P 244 211 1.3484550959391051e+00 -2.4089722122567490e+00 -2.0156045900983375e+00 3.4210553801005328e+00 1.3956999999999140e-01 1 0 0 0 0 P 245 311 1.9689396359732416e+00 -2.9250125098724342e+00 -1.8651629399316361e+00 4.0198171220107888e+00 4.9766999999999856e-01 2 0 0 -109 0 P 246 -323 3.4905847976717097e-01 -1.4502677293797532e+00 -2.7091929486861266e-01 1.7577665557781506e+00 8.8950980382590616e-01 2 0 0 -110 0 P 247 113 1.1787752697746843e+00 -1.9869747474125705e+00 -5.6981630929774441e-01 2.5063265312538539e+00 7.8702113785948880e-01 2 0 0 -111 0 P 248 211 9.0362421674847426e-01 -1.8511986936421003e+00 -6.6188340853591965e-01 2.1681888201518889e+00 1.3957000000000108e-01 1 0 0 0 0 P 249 3112 8.2901240423524569e-01 -1.1827507069815140e+00 -2.1967977335192077e-01 1.8889898246579109e+00 1.1974400000000001e+00 2 0 0 -112 0 P 250 323 1.2537014617667548e+00 -1.7520063505393280e+00 -2.5467397598109301e-02 2.3319859883054290e+00 8.9230961764748229e-01 2 0 0 -113 0 P 251 -3122 1.0861896032885885e+00 -1.5778114230696205e+00 9.7351220706834452e-01 2.4211081390083100e+00 1.1156800000000002e+00 2 0 0 -114 0 P 252 -313 -3.0137902739070055e-01 -9.4214992434425815e-01 1.4529354700302928e+00 1.9637863209949860e+00 8.7576220309055253e-01 2 0 0 -115 0 P 253 223 3.9407134967809543e-01 -1.0584905713203911e+00 9.8162621912783177e-01 1.6853875475054940e+00 7.7540094982924679e-01 2 0 0 -116 0 P 254 223 4.3655943968484351e-01 -3.0535021491348857e-01 1.4790635775847321e+00 1.7542565085284902e+00 7.7843685232083148e-01 2 0 0 -117 0 P 255 -211 1.8398237774568255e-01 1.6557426218611634e-01 7.6943188761747583e-01 8.2022531428993573e-01 1.3957000000000022e-01 1 0 0 0 0 P 256 221 1.0402651578794067e-01 -1.5704209078092823e-01 1.4148421233161252e+00 1.5287130112200609e+00 5.4745000000000021e-01 2 0 0 -118 0 P 257 223 6.8651957458626922e-01 -6.6748734642579327e-02 7.3831922878286926e-01 1.2747000951250691e+00 7.7716184225348572e-01 2 0 0 -119 0 P 258 211 6.5236917786138227e-01 -1.4277978045704556e-01 1.6567098771809212e+00 1.7916860807573745e+00 1.3956999999999972e-01 1 0 0 0 0 P 259 313 1.6520145498562795e+00 -9.2720329442859950e-01 2.8084040891010074e+00 3.5099186682443619e+00 9.1844298019796655e-01 2 0 0 -120 0 P 260 -311 1.1625962621355042e+00 -3.1873747786317252e-01 4.6261690148754990e+00 4.8064892418084293e+00 4.9767000000000200e-01 2 0 0 -121 0 P 261 -211 1.4036275256518120e+00 -1.4896894309844029e+00 3.1698076684137377e+00 3.7757787635385363e+00 1.3956999999999675e-01 1 0 0 0 0 P 262 113 2.1160465244134010e+00 -2.3939860260489896e+00 1.1375522016034855e+01 1.1835655066799067e+01 6.8659138980390211e-01 2 0 0 -122 0 P 263 213 1.5869270015302843e+00 -1.0936453126887016e+00 5.8111558754106420e+00 6.2262958010412790e+00 1.1326205964897380e+00 2 0 0 -123 0 P 264 -211 1.5071468059430895e+00 -9.5099336184728200e-01 5.3467885740195680e+00 5.6376863791016483e+00 1.3956999999998790e-01 1 0 0 0 0 P 265 211 4.4537704856103574e-02 -4.3252315334750646e-01 6.4489603923117667e-01 7.9020919486651087e-01 1.3957000000000003e-01 1 0 0 0 0 P 266 -211 1.7833728663588728e+00 -2.8617295135373615e+00 1.1648818444759593e+01 1.2127834329878816e+01 1.3956999999998476e-01 1 0 0 0 0 P 267 213 8.6850471083792780e-01 -4.7712672397129452e-01 8.8059660184140878e+00 8.9148884867425426e+00 9.7378070945969519e-01 2 0 0 -124 0 P 268 -213 1.0212129565171406e+00 -3.6634775229162647e-01 9.1409671982338612e+00 9.2338097392566549e+00 7.2723751514621537e-01 2 0 0 -125 0 P 269 223 7.5492060011653306e-01 -6.0244840906949715e-01 5.3817923025099192e+00 5.5242445987559190e+00 7.8787105636534949e-01 2 0 0 -126 0 P 270 221 9.3374019964427302e-01 -3.1898597686091351e-01 6.3301824624807681e+00 6.4299715648410700e+00 5.4744999999999966e-01 2 0 0 -127 0 P 271 113 -2.2628447168300262e-02 -7.5771693581755650e-01 8.9471971358606890e+00 9.0095515603004408e+00 7.3826535088164291e-01 2 0 0 -128 0 P 272 2212 1.1957200490941451e+00 2.7842218550546689e+00 7.5345926024839926e+01 7.5412668411265756e+01 9.3826999999985550e-01 1 0 0 0 0 P 273 213 -1.4987770389893237e-01 -1.6927405039981111e-01 3.0130330630342243e+01 3.0138628440883561e+01 6.7006221623870421e-01 2 0 0 -129 0 P 274 -2214 3.0011490187134304e-01 2.8895787119429066e+00 7.8069935968726668e+01 7.8135738977304797e+01 1.3561228858725485e+00 2 0 0 -130 0 P 275 -213 -1.4015806028406650e+00 1.5106579248434082e-01 5.9432860546431542e+01 5.9455908159187537e+01 8.6767116020188151e-01 2 0 0 -131 0 P 276 213 -1.5911853237716771e+00 -4.8381603838062326e-01 5.4575356398840391e+01 5.4606678254351777e+01 8.0860077928837226e-01 2 0 0 -132 0 P 277 -211 -1.3995652915932502e-01 -1.2791013189661163e-01 3.0890003824106692e+01 3.0890901004504904e+01 1.3956999999965006e-01 1 0 0 0 0 P 278 2214 -1.1754489059441704e+00 1.4707596104494372e-01 1.1179740188824846e+02 1.1181069540111811e+02 1.2526873713228965e+00 2 0 0 -133 0 P 279 -2214 -3.6478208742332794e+00 1.6393467582872070e+00 3.1422837893598683e+02 3.1425627656388701e+02 1.2406353758113529e+00 2 0 0 -134 0 P 280 323 -1.0419686123345917e+00 -1.7457288489804909e-01 1.1150122752340833e+02 1.1150910392822023e+02 8.0021582495969601e-01 2 0 0 -135 0 P 281 333 -1.2157105304038520e+00 1.1249908325600706e+00 2.0392137396473802e+02 2.0393064325489976e+02 1.0183036008876087e+00 2 0 0 -136 0 P 282 3122 -1.8807907362174541e+00 -1.6646518633031013e-01 2.5761761150915157e+02 2.5762694654479418e+02 1.1156799999962288e+00 2 0 0 -137 0 P 283 -213 -1.9207549484052744e-01 4.3026090277201939e-01 2.6178425114972595e+02 2.6178569480067961e+02 7.3064000137347340e-01 2 0 0 -138 0 P 284 -1114 -8.9354742228842399e-01 7.6917981350107056e-01 4.0808479114679409e+02 4.0808852317343786e+02 1.2868239870336209e+00 2 0 0 -139 0 P 285 -213 -1.0355968572055166e-01 -6.0837365892383888e-01 3.2110679399890830e+02 3.2110838047498447e+02 7.9875897032668419e-01 2 0 0 -140 0 P 286 211 -6.3820460601982842e-01 1.7118645120261225e-01 5.2030405657628444e+02 5.2030449486761358e+02 1.3957000004775191e-01 1 0 0 0 0 P 287 2112 2.0121702327982427e-01 9.3449116451073608e-02 1.2263369913839651e+03 1.2263373713825606e+03 9.3957000013627878e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 288 92 4.4087791624188730e+00 8.5795622022905582e-01 -8.0847527941062924e+02 8.1023327886574748e+02 5.3155576761674688e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 13 0 P 289 -213 1.0686058998222101e+00 1.1217509584804393e-01 -2.7830013157146793e+00 3.0669542201163624e+00 7.1176544153012611e-01 2 0 0 -141 0 P 290 211 3.0118183926896208e-01 3.2150087774301273e-01 -1.1258547904237250e+00 1.2170053856557137e+00 1.3957000000000019e-01 1 0 0 0 0 P 291 223 2.2770437959560388e+00 4.1527342373573506e-01 -5.9155482740362126e+00 6.3947143980660481e+00 7.3571759882261911e-01 2 0 0 -142 0 P 292 3112 1.2682283101393961e+00 -1.0269868968936931e-01 -5.5967786041419600e+00 5.8631683725511561e+00 1.1974400000000016e+00 2 0 0 -143 0 P 293 113 6.9611062476938101e-01 4.4489200454678512e-01 -1.1973972162742144e+00 1.6658895886409693e+00 8.1174449821028383e-01 2 0 0 -144 0 P 294 -3212 3.9701568390520009e-01 6.6206509235101074e-02 -9.8860357762167421e+00 9.9658358217597165e+00 1.1925499999999956e+00 2 0 0 -145 0 P 295 211 -3.2286495889437028e-01 6.7494378401957211e-02 -1.5610549751669467e+00 1.6016147143402519e+00 1.3957000000000092e-01 1 0 0 0 0 P 296 223 -5.6824655056656714e-01 1.5579160565453670e-01 -5.4945074641198744e+01 5.4953910893709093e+01 7.8988608051695186e-01 2 0 0 -146 0 P 297 113 -2.5427810099584569e-01 -4.0483983865906042e-01 -3.4702926725489775e+01 3.4713854101574036e+01 7.2800454878009579e-01 2 0 0 -147 0 P 298 311 -1.5383926908124421e-01 -1.1118497467405460e-01 -4.6423180776798752e+01 4.6426236305386006e+01 4.9766999999974171e-01 2 0 0 -148 0 P 299 -321 -1.9772031636424187e-02 8.8104835715730551e-02 -5.5453606834260087e+00 5.5680175524686071e+00 4.9359999999999921e-01 1 0 0 0 0 P 300 223 -1.2931128772374442e-01 -8.3573730733899967e-02 -2.5469627095033877e+02 2.5469752095148556e+02 7.8296669561457455e-01 2 0 0 -149 0 P 301 2224 -1.5109479254411956e-01 -1.1118527689546225e-01 -3.8409679468140263e+02 3.8409855655999388e+02 1.1481616354504134e+00 2 0 0 -150 0 V -17 0 0 0 0 0 12 1 0 P 96 1 2.2061781171336805e+00 -4.4204499382840270e+00 6.0226102010938462e+02 6.0228128307522388e+02 -3.8957916828079679e-06 2 0 0 -17 0 P 97 21 -6.8127287449091412e-02 -4.6536283126181044e-01 6.8309266667804806e+01 6.8310885783931127e+01 -4.0644948771553800e-07 2 0 0 -17 0 P 98 21 3.5113013765072396e+00 1.5102986058820400e+00 4.3942059873949637e+02 4.3943722286102832e+02 -1.1119102302895565e-06 2 0 0 -17 0 P 99 21 1.2036559975856105e+00 -3.1730492796060461e-01 6.9377515103261246e+01 6.9388681152483898e+01 -2.5111883202720758e-07 2 0 0 -17 0 P 100 21 4.3757872082178884e-01 -8.2210068814098125e-01 2.8370610001157598e+01 2.8385891504691930e+01 2.6425939576280414e-07 2 0 0 -17 0 P 101 21 -9.2108886106139620e-01 9.3406477610320460e-01 5.3611732788527799e+00 5.5193351612140003e+00 -5.4845332593975428e-08 2 0 0 -17 0 P 102 21 -8.1522017701846017e-01 -8.8077436468785497e-01 2.5329410223798585e+00 2.8028802402821329e+00 4.1126091342083401e-09 2 0 0 -17 0 P 103 21 -1.6956243401785520e+00 -4.9359751230365112e-01 2.6250066724640142e+00 3.1637699723018580e+00 -9.7232931376533123e-09 2 0 0 -17 0 P 104 21 1.2191659968623254e-01 8.1011037581439793e-01 2.3722783761375736e+00 2.5097504202950383e+00 -1.7109488203072769e-08 2 0 0 -17 0 P 105 21 -4.4799405944219500e-01 1.4037001611678230e+00 2.7264682234482915e+00 3.0991453327056724e+00 2.1481071775165939e-08 2 0 0 -17 0 P 106 21 -2.4406500816413526e+00 4.2899981569938932e+00 6.0504170464064211e-01 4.9726182713316529e+00 2.9214447627511104e-08 2 0 0 -17 0 P 107 -1 -2.2061781171336805e+00 4.4204499382840270e+00 1.0020189171469194e+00 5.0409960773358131e+00 2.3413086477623387e-08 2 0 0 -17 0 P 302 92 -1.1142521121901772e+00 5.9690317516064564e+00 1.2249639388161743e+03 1.2349124598528254e+03 1.5631782112701936e+02 2 0 0 -18 0 V -18 0 0 0 0 0 0 18 0 P 303 111 3.7233003015652411e-01 -2.0563914581909881e-01 6.1700398446961174e+01 6.1702012165113530e+01 1.3497999999866972e-01 2 0 0 -151 0 P 304 -211 1.1985365743797738e+00 -3.5746984884662503e+00 4.3573691803759476e+02 4.3575325148516112e+02 1.3957000008364304e-01 1 0 0 0 0 P 305 111 9.9264225557400443e-01 -8.3959691695391081e-01 1.4696968923682294e+02 1.4697550148102650e+02 1.3498000001048260e-01 2 0 0 -152 0 P 306 113 1.3787891920422402e+00 7.5411902978737322e-01 2.3023465306645039e+02 2.3024114946686325e+02 7.2227421836038297e-01 2 0 0 -153 0 P 307 3122 1.2107265645595489e+00 -4.8927217460589256e-01 1.3291281117501691e+02 1.3292390816697753e+02 1.1156800000000955e+00 2 0 0 -154 0 P 308 -3114 1.9404235888672721e+00 5.3921277930935607e-01 1.2858301379810169e+02 1.2860666738857296e+02 1.4238908899992737e+00 2 0 0 -155 0 P 309 113 -4.6664411472924350e-01 -3.4667383292036280e-02 5.5077553394795586e+01 5.5084497205453040e+01 7.3890856249552939e-01 2 0 0 -156 0 P 310 223 2.5066664106057446e-01 -4.3787769869363735e-01 9.4013787617154314e+00 9.4479473647451488e+00 7.8944039788130771e-01 2 0 0 -157 0 P 311 -213 1.8148700867714673e-01 1.2808301366487387e-01 7.1472660657448035e+00 7.1943756906703840e+00 7.9138269582655618e-01 2 0 0 -158 0 P 312 213 -6.3586919571426104e-01 -4.3057277787054360e-01 3.4062658427362682e+00 3.5844337510633024e+00 8.0981218394666032e-01 2 0 0 -159 0 P 313 111 -5.4724866005940398e-01 1.3065780585676104e-01 2.7833729019187632e+00 2.8428747544877515e+00 1.3498000000000129e-01 2 0 0 -160 0 P 314 -213 -7.1311536921652663e-01 5.7659925917347710e-01 2.4853147950084522e+00 2.7678835387635736e+00 8.0211558916295389e-01 2 0 0 -161 0 P 315 213 -1.1986309033786851e+00 -5.6047318130754575e-01 2.8214074268819855e+00 3.2866736847654821e+00 1.0445275545267731e+00 2 0 0 -162 0 P 316 -213 -2.3429456999562809e-01 8.1054341086860759e-01 1.8916245124547173e+00 2.2252371034580998e+00 8.1336480379660780e-01 2 0 0 -163 0 P 317 223 -3.4784687845172862e-01 1.7777094829870443e+00 1.5191642797210239e+00 2.4903978644885019e+00 7.8292589554690106e-01 2 0 0 -164 0 P 318 223 -1.0621313516191107e+00 1.2081185239518120e+00 5.9345874509067920e-01 1.8892627077548971e+00 7.9337690965960084e-01 2 0 0 -165 0 P 319 321 -2.6307204311933092e+00 4.9844095560280994e+00 5.4257650588492146e-01 5.6835779957752353e+00 4.9360000000000387e-01 1 0 0 0 0 P 320 -311 -8.0335249314936497e-01 1.6323766569879674e+00 1.1570718232742099e+00 2.2128080376850625e+00 4.9766999999999995e-01 2 0 0 -166 0 V -19 0 0 0 0 0 5 1 0 P 108 2 1.6576220906814521e+00 -2.3767265655758762e-01 6.1357298342656588e+00 6.3601399266280279e+00 -4.4235371377460349e-08 2 0 0 -19 0 P 109 21 9.3960035170327783e-01 -2.1846731909457021e-01 2.3530842535787109e+00 2.5431441750072628e+00 6.9693799815586607e-09 2 0 0 -19 0 P 110 21 8.1522017701846017e-01 8.8077436468785497e-01 -9.5719596952820826e-02 1.2039558379567394e+00 9.4174167216553747e-09 2 0 0 -19 0 P 111 21 6.8107916700425120e-01 6.9383455670473471e-01 -7.0278349356287839e-01 1.1996582274253382e+00 -1.4185482833280989e-08 2 0 0 -19 0 P 112 -2 -1.6576220906814521e+00 2.3767265655758762e-01 -1.7292340648151077e+00 2.4071663295475179e+00 1.7841573861118422e-08 2 0 0 -19 0 P 321 92 2.4358996957259893e+00 1.3561416022980195e+00 5.9610769325135626e+00 1.3714064496564886e+01 1.2031974046160288e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 7 0 P 322 113 7.2356170928335739e-01 2.0357616549316022e-02 2.9664067813067212e+00 3.1280313035220808e+00 6.7901006173614509e-01 2 0 0 -167 0 P 323 213 5.9390456841307626e-01 -9.3798420274161728e-02 2.5614541777311128e+00 2.7385000707570994e+00 7.5948295102169128e-01 2 0 0 -168 0 P 324 221 8.6555097453534868e-01 5.1719606144414393e-03 2.4743288193714621e+00 2.6779114711968846e+00 5.4744999999999999e-01 2 0 0 -169 0 P 325 -211 1.1370244611001126e+00 3.0314323866130581e-02 2.8179564883701318e-02 1.1463060045853799e+00 1.3957000000000078e-01 1 0 0 0 0 P 326 213 -3.7604486702778966e-02 8.3462434703043109e-01 -5.0316114654595645e-01 1.2929056562031813e+00 8.4877676592410589e-01 2 0 0 -170 0 P 327 2112 -2.0378425005482331e-01 7.7464794003833368e-02 -4.4493416917765527e-01 1.0622085551727936e+00 9.3957000000000013e-01 1 0 0 0 0 P 328 -2212 -6.4275328084830308e-01 4.8200698050802882e-01 -1.1211970950558230e+00 1.6682014351274672e+00 9.3827000000000005e-01 1 0 0 0 0 V -21 0 0 0 0 0 3 1 0 P 113 2 -9.7045622143671695e-01 4.1909262487017634e-01 -2.3278009315956734e+01 2.3301998661482116e+01 2.5034394288676145e-07 2 0 0 -21 0 P 114 21 -6.5085955550268204e-01 -4.6512409631285764e-02 -3.5124618912129854e+01 3.5130679402590395e+01 -1.2555941601360379e-07 2 0 0 -21 0 P 115 -2 9.7045622143671695e-01 -4.1909262487017634e-01 -3.7452170258484109e+01 3.7467085301320509e+01 -3.9184671021415908e-07 2 0 0 -21 0 P 329 92 -6.5085955550268215e-01 -4.6512409631285778e-02 -9.5854798486570701e+01 9.5899763365393028e+01 2.8629423801507299e+00 2 0 0 -22 0 V -22 0 0 0 0 0 0 3 0 P 330 213 -5.2454760064057604e-01 3.3925284500828307e-01 -2.1166407903829871e+01 2.1187804205979749e+01 7.1831806425670419e-01 2 0 0 -171 0 P 331 113 -6.3538802420093210e-01 5.4903969117010260e-02 -4.0802285870031781e+01 4.0811295877020221e+01 5.7324214322552447e-01 2 0 0 -172 0 P 332 -213 5.0907606933882599e-01 -4.4066922375657908e-01 -3.3886104712709056e+01 3.3900663282393062e+01 7.3043177393274350e-01 2 0 0 -173 0 V -23 0 0 0 0 0 6 1 0 P 118 21 -9.9804945936276412e-01 -5.8064296534176496e-01 -2.4043505489442207e-01 1.1794312155260549e+00 -1.4662785915503082e-08 2 0 0 -23 0 P 119 21 9.9804945936276412e-01 5.8064296534176496e-01 -8.7245990461720275e+00 8.8006748316820023e+00 5.0256913763404048e-08 2 0 0 -23 0 P 120 21 6.8127287449091412e-02 4.6536283126181044e-01 -3.0753166644530756e+00 3.1110732036835729e+00 -2.2717399369274207e-08 2 0 0 -23 0 P 121 21 4.2558990380049305e-01 3.6652561067324091e-02 -1.8242915926645393e+00 1.8736355012424983e+00 -1.8920981934210328e-08 2 0 0 -23 0 P 122 21 6.5085955550268204e-01 4.6512409631285764e-02 -5.1523791025185695e+00 5.1935336699889527e+00 5.8488244072003596e-08 2 0 0 -23 0 P 123 21 -1.2191659968623254e-01 -8.1011037581439793e-01 -7.2792108118722898e-01 1.0959067381479057e+00 -1.0391657056483159e-08 2 0 0 -23 0 P 333 92 1.0226601470660339e+00 -2.6158257385397765e-01 -1.9744942541889866e+01 2.1254255160270986e+01 7.7952772379199189e+00 2 0 0 -24 0 V -24 0 0 0 0 0 0 6 0 P 334 113 -1.2966902418277207e-02 5.0856167052392587e-01 -4.6204792156455321e+00 4.7137923365413643e+00 7.8243651278511539e-01 2 0 0 -174 0 P 335 2112 -5.2965861143025328e-01 -1.0549655249930145e-01 -1.1189033543909628e+00 1.5576919684645005e+00 9.3957000000000013e-01 1 0 0 0 0 P 336 -2212 1.0290163157711132e+00 9.9567399613893215e-02 -4.1172656450887377e+00 4.3475297848682999e+00 9.3826999999999916e-01 1 0 0 0 0 P 337 213 -6.3402370652111198e-02 2.3964389544565287e-01 -3.3340114469188729e+00 3.4770329544589580e+00 9.5534118563937109e-01 2 0 0 -175 0 P 338 1114 6.0090237654818413e-02 -1.6420057915169201e-01 -3.2538272423831671e+00 3.4517338670524369e+00 1.1386405485607654e+00 2 0 0 -176 0 P 339 -1114 5.3958147814074398e-01 -8.3965840778645606e-01 -3.3004556374625897e+00 3.7064742488854261e+00 1.3596946456734900e+00 2 0 0 -177 0 V -25 0 0 0 0 0 0 3 0 P 340 -211 -4.0095871996602694e-02 -3.6448960844204105e-02 -8.5231961137155310e-02 1.7228023043017973e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 211 2.8237206829562123e-01 2.4991457378219353e-01 -2.4624032768033771e-01 4.7149269667557153e-01 1.3956999999999992e-01 1 0 0 0 0 P 342 111 2.6825174177162125e-01 -2.0972782027906509e-01 -4.0685097022597355e-01 5.4744138310538093e-01 1.3498000000000016e-01 2 0 0 -178 0 V -26 0 0 0 0 0 0 3 0 P 343 211 1.2562501930652095e-01 3.8397093611738486e-01 -2.3042664245947389e-01 4.8558371854271515e-01 1.3956999999999992e-01 1 0 0 0 0 P 344 -211 -1.1711138206447884e-01 1.5966920214822409e-02 -2.6114353283261221e-01 3.1881930303934930e-01 1.3956999999999997e-01 1 0 0 0 0 P 345 111 -7.6493931190764003e-02 -1.1876074470372623e-01 -8.6352665694014619e-02 2.1361605572630354e-01 1.3497999999999999e-01 2 0 0 -179 0 V -27 0 0 0 0 0 0 2 0 P 346 -211 7.5378781664111855e-02 3.6141253104381493e-01 -3.2870842448281085e-01 5.1364383725168372e-01 1.3957000000000019e-01 1 0 0 0 0 P 347 211 5.4542979976709560e-01 -3.0121257867293016e-01 -7.9083170433942807e-01 1.0164237568618586e+00 1.3956999999999975e-01 1 0 0 0 0 V -28 0 0 0 0 0 0 1 0 P 348 130 -2.2825215977304525e-01 -4.6001086979558325e-01 -1.4008672310623200e+00 1.5728361252003848e+00 4.9767000000000033e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 2 0 P 349 311 -2.4502658043940842e-01 4.0045520849499322e-01 -8.0278871714574462e-01 1.0547736972493715e+00 4.9767000000000011e-01 2 0 0 -180 0 P 350 211 6.6064268844982996e-02 -7.1263922384092196e-02 -3.6666927768579390e-02 1.7397494860920157e-01 1.3957000000000000e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 3 0 P 351 211 -3.3977651747801006e-02 3.0677083655410182e-02 -3.2553366578736170e-01 3.5713795197493864e-01 1.3956999999999997e-01 1 0 0 0 0 P 352 -211 1.1899554543974369e-01 -5.4692084857974485e-02 1.9768957141242958e-02 1.9241039615121189e-01 1.3957000000000003e-01 1 0 0 0 0 P 353 111 8.7330362220120028e-02 3.3931808892679016e-01 -5.2032523605859748e-01 6.4165513269813534e-01 1.3498000000000013e-01 2 0 0 -181 0 V -31 0 -1.0580409607244744e-05 1.8302175480451494e-06 -3.4564109515978869e-05 3.9218412511813922e-05 0 2 0 P 354 22 3.3402181446374572e-02 1.4073364751917007e-02 -5.0762432705776413e-02 6.2374593345572278e-02 9.7117000919904009e-10 1 0 0 0 0 P 355 22 -1.2796019994667998e-01 2.2834447849402356e-03 -2.5813994710573801e-01 2.8812368729806548e-01 3.2261960349397309e-09 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 356 -321 -7.1420040165353429e-02 -2.4661119265386863e-01 -2.6170848642721491e+00 2.6755732188227923e+00 4.9360000000000015e-01 1 0 0 0 0 P 357 111 -2.4224274706097437e-01 1.1159928661202242e-01 -3.1981930259905473e+00 3.2121323417895677e+00 1.3497999999999691e-01 2 0 0 -182 0 V -33 0 0 0 0 0 0 2 0 P 358 321 -1.7150470518011149e-01 1.3115246403428368e-01 -2.7979872154878733e+00 2.8493838370347304e+00 4.9359999999999921e-01 1 0 0 0 0 P 359 111 9.5440820696167647e-02 -2.8449817897465107e-01 -3.0513846563245721e+00 3.0690741413898879e+00 1.3497999999999910e-01 2 0 0 -183 0 V -34 0 0 0 0 0 0 2 0 P 360 -211 2.5283601840832459e-01 -1.3556238981400012e-01 -1.5205901721537961e+01 1.5209248178779507e+01 1.3956999999993314e-01 1 0 0 0 0 P 361 111 4.7277266875377200e-02 1.8625194925646524e-01 -1.2900867230303128e+00 1.3112849735675802e+00 1.3498000000000010e-01 2 0 0 -184 0 V -35 0 0 0 0 0 0 3 0 P 362 111 -9.8760483284141901e-02 1.9607752911280033e-02 -1.3675135648493497e+00 1.3778428965160447e+00 1.3498000000000110e-01 2 0 0 -185 0 P 363 111 5.2446825063892720e-02 -1.1847008830458998e-01 -4.2697145861460299e+00 4.2738118909037563e+00 1.3497999999999144e-01 2 0 0 -186 0 P 364 221 -6.0484326215294093e-02 3.0423544716592671e-02 -1.0468119066782632e+01 1.0482642903611136e+01 5.4744999999998456e-01 2 0 0 -187 0 V -36 0 0 0 0 0 0 3 0 P 365 111 -9.5938763084326723e-02 -1.2790192577362786e-01 -4.9936873208078168e+01 4.9937311587118444e+01 1.3498000000025140e-01 2 0 0 -188 0 P 366 111 5.7073921540303829e-02 -2.3810829107469716e-01 -1.0508870991169579e+02 1.0508908184723923e+02 1.3497999999498983e-01 2 0 0 -189 0 P 367 111 1.6936469459252920e-01 -2.2721686019858195e-01 -1.1430415912089116e+02 1.1430459012583763e+02 1.3498000000187588e-01 2 0 0 -190 0 V -37 0 0 0 0 0 0 3 0 P 368 211 -3.0095542616326393e-01 -1.0429765205387454e-02 -1.0708790106920719e+02 1.0708841542455349e+02 1.3956999999803249e-01 1 0 0 0 0 P 369 -211 1.0973799420558733e-01 2.6342484556989409e-02 -8.0017053904793940e+01 8.0017255212494405e+01 1.3956999999631273e-01 1 0 0 0 0 P 370 111 -2.1979564500266144e-01 2.5102089743129696e-01 -2.4417502924707946e+02 2.4417529450996679e+02 1.3497999998714966e-01 2 0 0 -191 0 V -38 0 0 0 0 0 0 3 0 P 371 211 -1.5576809358930013e-01 -7.3534569533479407e-02 -3.1937561244431612e+02 3.1937568939260046e+02 1.3957000000972258e-01 1 0 0 0 0 P 372 -211 -3.0998606706290122e-02 6.3198273483141817e-02 -5.5164891209864805e+01 5.5165112679269569e+01 1.3956999999974115e-01 1 0 0 0 0 P 373 111 -5.7937625921012859e-01 2.7455690743212108e-01 -4.3061878176068382e+02 4.3061928020352383e+02 1.3497999991462409e-01 2 0 0 -192 0 V -39 0 0 0 0 0 0 2 0 P 374 211 2.4088007564756525e-01 -5.2848903160756910e-01 -8.7401198474890791e+01 8.7403239633891872e+01 1.3957000000413050e-01 1 0 0 0 0 P 375 111 -4.5949481126032954e-01 -2.4394060561959618e-01 -1.5006480760248945e+02 1.5006577005724264e+02 1.3498000000698201e-01 2 0 0 -193 0 V -40 0 0 0 0 0 0 2 0 P 376 -211 -2.8656491442920357e-01 4.2944508420509769e-01 -2.2859350537481490e+01 2.2865605815523125e+01 1.3956999999980757e-01 1 0 0 0 0 P 377 211 -2.2184274446695673e-01 3.6450942095795946e-01 -5.5521799508330547e+00 5.5703019049753744e+00 1.3957000000001565e-01 1 0 0 0 0 V -41 0 -4.4685019166822185e-05 -6.9249948955501676e-05 -1.8724381904672012e-03 1.8747487561943678e-03 0 2 0 P 378 22 2.5442604844583584e-02 -4.3943181021970562e-02 -1.2506497062972342e+00 1.2516800777998209e+00 2.0817195016198896e-08 1 0 0 0 0 P 379 22 -1.6507848920307527e-01 -1.7245546990132404e-01 -4.6005184817793294e+00 4.6067083799487065e+00 -7.9615824942151121e-08 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 380 -211 1.1842445305739507e-02 -7.6072837499219570e-01 2.3069557611920555e+00 2.4331815741999820e+00 1.3957000000000172e-01 1 0 0 0 0 P 381 111 2.3826193448256125e-01 -9.5821241898801340e-02 2.2043805717119716e-01 3.6436656991526117e-01 1.3498000000000004e-01 2 0 0 -194 0 V -43 0 0 0 0 0 0 2 0 P 382 321 6.9082939363158860e-02 -4.2211725458482807e-01 1.9597442660854250e+00 2.0657187556838390e+00 4.9360000000000082e-01 1 0 0 0 0 P 383 111 -5.0192427901176818e-02 -9.7268885346688849e-01 3.9300669700236535e+00 4.0512083228029940e+00 1.3498000000001009e-01 2 0 0 -195 0 V -44 0 0 0 0 0 0 2 0 P 384 -311 4.7191817164383204e-01 -6.7596381966119112e-01 3.3982408254051157e+00 3.5320461467212807e+00 4.9766999999999978e-01 2 0 0 -196 0 P 385 -211 2.3797695713505391e-02 9.0982873512534382e-02 2.9573207322737749e-01 3.4026674481828723e-01 1.3957000000000003e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 386 22 -1.3525968932789708e-02 3.0617793166309659e-01 2.9062926066757218e+00 2.9224073284350736e+00 -1.6371156863166902e-08 1 0 0 0 0 P 387 22 2.1613089406576570e-02 -1.3658963328626686e-01 2.5178044975051933e-01 2.8725815642301145e-01 -3.0954218935939322e-09 1 0 0 0 0 V -46 0 -2.9875762315146199e-04 -1.7206307153707688e-04 1.1937304141634165e-03 1.2441178392527685e-03 0 2 0 P 388 22 -4.7500623990232538e-01 -2.0880342989198156e-01 1.8640371620319802e+00 1.9349068044009354e+00 -1.5103514064314641e-08 1 0 0 0 0 P 389 22 -1.6460424919424391e-01 -1.5956656910715253e-01 6.9162145513886197e-01 7.2862630067670853e-01 -5.8254208430632967e-09 1 0 0 0 0 V -47 0 -2.0154919135623552e-04 -9.1152595190780177e-05 4.4434607306930514e-04 4.9721657992145675e-04 0 2 0 P 390 22 -5.4254772198306278e-01 -2.2282727850452388e-01 1.0332942740935025e+00 1.1881528031146338e+00 2.7744973282825631e-09 1 0 0 0 0 P 391 22 -3.9056746998857034e-01 -1.9918320334267081e-01 1.0239011355425491e+00 1.1138179530212475e+00 -1.1931292689702434e-08 1 0 0 0 0 V -48 0 0 0 0 0 0 1 0 P 392 310 -4.9462975411311262e-02 5.4657580232646674e-01 2.3302515224276483e+00 2.4451869622386209e+00 4.9767000000000106e-01 2 0 0 -197 0 V -49 0 0 0 0 0 0 2 0 P 393 211 -8.0968494028712090e-02 -2.3327370761182556e-01 7.3260635714402389e-01 7.8559810279562292e-01 1.3956999999999989e-01 1 0 0 0 0 P 394 111 -9.2479306594875121e-01 3.1751119182957849e-01 8.0219316119568695e-01 1.2719233624841790e+00 1.3498000000000071e-01 2 0 0 -198 0 V -50 0 0 0 0 0 0 2 0 P 395 -211 -2.4423996253863338e+00 1.7769266042189911e+00 -5.7421536533989948e-01 3.0776593634710410e+00 1.3957000000000044e-01 1 0 0 0 0 P 396 111 -2.3636384358927836e+00 7.9700181505473344e-01 -2.9606659561465493e-01 2.5155265012058758e+00 1.3497999999999954e-01 2 0 0 -199 0 V -51 0 0 0 0 0 0 2 0 P 397 -211 -1.0895420852316491e+00 3.7728339842884942e-03 1.9995810394235392e-01 1.1165031204611227e+00 1.3956999999999956e-01 1 0 0 0 0 P 398 211 -1.1498954262535612e+00 7.6042185016022334e-01 2.8513183723729130e-01 1.4146663320466313e+00 1.3957000000000008e-01 1 0 0 0 0 V -52 0 -1.0531525634836884e-03 4.7460955092004398e-04 -2.0927640191975008e-04 1.1745999785718268e-03 0 2 0 P 399 22 -2.4015333688899659e-01 8.2731083075735720e-02 -2.2616736388532697e-02 2.5500896864752137e-01 -4.2599100767476453e-09 1 0 0 0 0 P 400 22 -3.4254383881178860e+00 1.5691899232283915e+00 -7.0578850489836453e-01 3.8332913507324031e+00 -5.8628956733409844e-08 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 401 211 -6.9350859952065147e-01 7.0693860573821943e-01 -1.0115606658659004e-01 1.0052008279938212e+00 1.3956999999999997e-01 1 0 0 0 0 P 402 111 -1.2896152618999157e+00 9.1305677807115448e-01 7.8471518251886396e-01 1.7694003848147202e+00 1.3498000000000077e-01 2 0 0 -200 0 V -54 0 0 0 0 0 0 1 0 P 403 130 -2.4553592648254549e-01 9.4030805112059901e-01 2.8285561708192503e-01 1.1278962058676576e+00 4.9766999999999983e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 404 -311 -1.5098184827549155e+00 2.9092034397151592e+00 1.3618773778380941e-01 3.3180173346957580e+00 4.9767000000000139e-01 2 0 0 -201 0 P 405 -211 -1.5457735289070518e+00 2.7134695132564466e+00 5.2256552280585844e-01 3.1693669892531058e+00 1.3956999999999642e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 406 111 -1.0740587367642567e+00 1.8515347640837057e+00 5.2637890587266833e-01 2.2084106288409866e+00 1.3498000000000035e-01 2 0 0 -202 0 P 407 111 -3.0870759961258887e-01 8.1347953336746215e-01 1.2614629027631566e-01 8.8948401909016162e-01 1.3498000000000021e-01 2 0 0 -203 0 P 408 111 -7.3784814855004588e-01 1.4369403447226756e+00 4.0970984512300285e-01 1.6719148310249441e+00 1.3497999999999985e-01 2 0 0 -204 0 V -57 0 0 0 0 0 0 3 0 P 409 211 -7.8559753596574133e-01 1.9260062884993956e+00 6.8423704493486392e-01 2.1941567470023320e+00 1.3956999999999717e-01 1 0 0 0 0 P 410 -211 -6.8797048567540353e-01 1.7222267374400586e+00 3.6028873151877749e-01 1.8943748518372199e+00 1.3956999999999942e-01 1 0 0 0 0 P 411 221 -1.4678902736659585e+00 3.5887702117408358e+00 8.6552043944082024e-01 4.0103367217468557e+00 5.4745000000000144e-01 2 0 0 -205 0 V -58 0 0 0 0 0 0 2 0 P 412 -211 -8.9362028729247822e-01 9.1146492608543284e-01 -2.9874163834664252e-01 1.3183519563176789e+00 1.3957000000000019e-01 1 0 0 0 0 P 413 111 -6.8352909623433911e-01 1.9427531465495520e+00 -1.7421147053718962e-03 2.0639099905739018e+00 1.3497999999999705e-01 2 0 0 -206 0 V -59 0 0 0 0 0 0 2 0 P 414 2212 -2.2404966273468219e+00 2.7567416698667260e+00 -3.2822367592946775e+00 4.9267513138474213e+00 9.3826999999999816e-01 1 0 0 0 0 P 415 -211 -1.7009947856427349e-01 2.2681611659480186e-01 -1.3235741637493659e-01 3.4260422344803754e-01 1.3957000000000006e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 416 -2112 -2.1411118900503858e+00 1.4123437408897657e+00 -2.8333753255006640e+00 3.9357188019727256e+00 9.3957000000000002e-01 1 0 0 0 0 P 417 111 -1.0020646745581854e+00 8.2652384385914746e-01 -2.1177898294656674e+00 2.4880772975639891e+00 1.3498000000000071e-01 2 0 0 -207 0 V -61 0 0 0 0 0 0 3 0 P 418 -211 -3.7559852107293540e-01 3.4671680205712990e-01 -8.9305254760764408e-01 1.0384167889385276e+00 1.3956999999999981e-01 1 0 0 0 0 P 419 211 -1.5484588761034401e-01 4.3676285544493554e-01 -7.9404391172880573e-01 9.2990567234522903e-01 1.3957000000000028e-01 1 0 0 0 0 P 420 111 -3.6138659060622041e-01 5.3501300729761936e-01 -4.0354472839138322e-01 7.7324454997116254e-01 1.3497999999999988e-01 2 0 0 -208 0 V -62 0 0 0 0 0 0 2 0 P 421 211 -2.0472747272246342e-01 3.4391020663235566e-01 -5.2011985036600128e-01 6.7096349524991905e-01 1.3957000000000003e-01 1 0 0 0 0 P 422 111 -3.3574739805007545e+00 3.1088308383238803e+00 -4.6199642877580294e+00 6.5038258226687384e+00 1.3497999999998303e-01 2 0 0 -209 0 V -63 0 0 0 0 0 0 2 0 P 423 -211 -3.3246252466950224e+00 2.5040985542761067e+00 -5.6445677089326498e+00 7.0145753261416193e+00 1.3956999999998237e-01 1 0 0 0 0 P 424 211 -1.6644584984753961e+00 8.1313753479263873e-01 -3.2068643539567092e+00 3.7060860099589976e+00 1.3957000000000588e-01 1 0 0 0 0 V -64 0 0 0 0 0 0 2 0 P 425 2112 -6.4295416874200206e-01 -6.7885753158377760e-01 -1.0577386208387852e+01 1.0660118592097570e+01 9.3957000000000257e-01 1 0 0 0 0 P 426 -211 -4.2582052773913748e-01 -9.6038678984846498e-02 -2.2076737554721824e+00 2.2547393962952440e+00 1.3957000000000067e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 427 -2112 -1.2616273298666039e+00 -1.0557420819668918e-01 -1.8722467718065381e+01 1.8788731694071398e+01 9.3957000000002255e-01 1 0 0 0 0 P 428 211 -8.2795663343241288e-02 -2.0982361433370716e-01 -2.0514866646203656e+00 2.0685643308864483e+00 1.3956999999999917e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 429 -211 -6.8287263458363623e-01 -8.3378192035991106e-01 -1.1449661770883136e+01 1.1501119153295692e+01 1.3957000000002259e-01 1 0 0 0 0 P 430 211 -1.9769138126582217e-01 -1.8623813867552652e-01 -8.6073755551168531e+00 8.6127905035619712e+00 1.3957000000001374e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 431 211 -3.3056900892849722e-01 -5.4983137984766861e-01 -1.3138991004599434e+01 1.3155385012221194e+01 1.3957000000000255e-01 1 0 0 0 0 P 432 -211 -4.9128878369963463e-01 -5.6479079927309617e-01 -8.6112936209801916e+00 8.6448950790374983e+00 1.3957000000002076e-01 1 0 0 0 0 P 433 111 -4.2705492092847380e-02 -6.1136451193574290e-02 -4.5389604161487505e+00 4.5415793161063114e+00 1.3497999999998722e-01 2 0 0 -210 0 V -68 0 0 0 0 0 0 3 0 P 434 -211 -7.9534836422304644e-01 -4.6563379617201067e-01 -2.7855436845692246e+01 2.7871028605020285e+01 1.3956999999989447e-01 1 0 0 0 0 P 435 211 -8.2081421782719821e-01 -2.0896527108421645e-01 -1.6439659569315058e+01 1.6462056038192152e+01 1.3956999999986355e-01 1 0 0 0 0 P 436 111 -1.9199499977287740e-01 -1.1381927785868921e-01 -1.0038292671384619e+01 1.0041680948164217e+01 1.3497999999996166e-01 2 0 0 -211 0 V -69 0 0 0 0 0 0 3 0 P 437 -211 -1.1035073161105688e-01 -1.4141076374942488e-01 -4.2874677461262021e+00 4.2934873642580786e+00 1.3956999999998912e-01 1 0 0 0 0 P 438 211 -4.4396030657402025e-02 -1.9672234248972872e-01 -3.7223108439462043e+00 3.7303818157706434e+00 1.3957000000000055e-01 1 0 0 0 0 P 439 221 -1.2085178343393952e+00 -1.2995148357524382e+00 -3.6054187154429364e+01 3.6101985638374195e+01 5.4745000000019328e-01 2 0 0 -212 0 V -70 0 0 0 0 0 0 2 0 P 440 -211 6.6563844121262122e-02 -6.5940189442217301e-01 -2.0462073996687245e+01 2.0473279992090081e+01 1.3956999999984049e-01 1 0 0 0 0 P 441 211 -3.3233773936518923e-01 -6.7260739171863010e-02 -1.5166427476020173e+01 1.5170859387335971e+01 1.3957000000005482e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 442 -211 2.6590109196171779e-01 -4.5803752383848345e-01 -1.5836333630849360e+01 1.5845802107069904e+01 1.3957000000003597e-01 1 0 0 0 0 P 443 111 -5.5058894488035548e-01 -8.6381166909387808e-01 -2.6070312029666340e+01 2.6090778212051337e+01 1.3498000000019938e-01 2 0 0 -213 0 V -72 0 0 0 0 0 0 3 0 P 444 -211 -7.2402636230187900e-01 -8.7528247690814132e-01 -5.2794114773737043e+01 5.2806518235111000e+01 1.3957000000031228e-01 1 0 0 0 0 P 445 211 -2.8255227411054118e-01 -9.9419312156861853e-02 -1.2071340158093937e+01 1.2075862411627012e+01 1.3957000000006853e-01 1 0 0 0 0 P 446 111 -1.0328586297823370e+00 -7.5564529166436334e-01 -4.5454331720326401e+01 4.5472544337190996e+01 1.3497999999896418e-01 2 0 0 -214 0 V -73 0 0 0 0 0 0 2 0 P 447 211 3.2359742967011260e-02 -2.2700506107370551e+00 -1.0423263724252065e+02 1.0425745212330904e+02 1.3956999999983979e-01 1 0 0 0 0 P 448 111 -1.3005647770218225e-02 -1.4959531455750949e-01 -2.1103005421072954e+01 2.1103971316016469e+01 1.3497999999982577e-01 2 0 0 -215 0 V -74 0 0 0 0 0 0 2 0 P 449 211 -2.5665538594068016e-01 -7.5418414898311359e-01 -4.6764654909455523e+01 4.6771648402670955e+01 1.3957000000090411e-01 1 0 0 0 0 P 450 111 4.7314288411034156e-01 -8.6153491302782914e-01 -6.2331584602911825e+01 6.2339479989052720e+01 1.3497999999954077e-01 2 0 0 -216 0 V -75 0 0 0 0 0 0 2 0 P 451 -211 -3.7571407795409117e-01 1.0506753680468835e-01 -1.8789224218656564e+01 1.8793792240511586e+01 1.3957000000008180e-01 1 0 0 0 0 P 452 211 -2.7387302813018233e-01 -1.7302997844246443e-01 -1.1224063352486377e+02 1.1224118780401716e+02 1.3957000000322209e-01 1 0 0 0 0 V -76 0 0 0 0 0 0 1 0 P 453 130 2.7162778169678620e-01 -2.8627754461386645e-01 -4.3900057562294734e+01 4.3904651984567998e+01 4.9766999999995087e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 1 0 P 454 130 -2.1818283436060484e+00 -1.0409004061438667e+00 -4.5134283621901437e+02 4.5134958439133339e+02 4.9766999997976452e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 455 2112 -5.3100396599866061e-02 1.9032478474236869e-01 -6.6532572827070382e+01 6.6539500163062016e+01 9.3956999999976920e-01 1 0 0 0 0 P 456 -211 9.1532410213132076e-02 2.7903148791853516e-02 -1.4716195950485725e+01 1.4717168878756008e+01 1.3956999999997283e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 457 -2212 -1.4636261891386597e+00 -1.4369785849828279e-01 -3.9046613255016888e+02 3.9047002941323808e+02 9.3826999999430571e-01 1 0 0 0 0 P 458 211 -9.0065068587869967e-01 -2.3742004307183337e-01 -2.1118309644954815e+02 2.1118519655917856e+02 1.3957000001877173e-01 1 0 0 0 0 V -80 0 0 0 0 0 0 3 0 P 459 -211 8.6007831959503418e-03 2.5733513452316331e-01 -6.1940629990653214e+01 6.1941322384728274e+01 1.3956999999961547e-01 1 0 0 0 0 P 460 211 1.6043636453193735e-01 2.9223827036428196e-01 -5.5205258265426963e+01 5.5206441317758582e+01 1.3957000000069411e-01 1 0 0 0 0 P 461 221 -2.4966545595706300e-02 5.3429683464602806e-01 -9.2796601577237354e+01 9.2799757878040509e+01 5.4744999999969868e-01 2 0 0 -217 0 V -81 0 1.0882417346732437e-04 -7.2862231179657579e-05 -2.0336029979354187e-02 2.0336469413017991e-02 0 2 0 P 462 22 4.1418889420666277e-01 -3.3272165454692970e-01 -7.6579996800340922e+01 7.6581839662414183e+01 -6.4747217245103213e-07 1 0 0 0 0 P 463 22 1.3276269575687608e-01 -3.3484785826087979e-02 -2.5629131708167463e+01 2.5629497444914154e+01 -4.2186342677152354e-07 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 464 211 5.6078919612244604e-01 1.4181927701898691e+00 -1.2286445571409003e+02 1.2287399933655776e+02 1.3957000000179343e-01 1 0 0 0 0 P 465 111 -2.7206965542528532e-02 1.4272870696578663e-01 -3.0242686423595117e+01 3.0243336678003480e+01 1.3498000000002974e-01 2 0 0 -218 0 V -83 0 0 0 0 0 0 2 0 P 466 211 -4.9067373254929286e-01 9.1863196448590434e-01 -5.1230445716531428e+01 5.1241220648003328e+01 1.3957000000067105e-01 1 0 0 0 0 P 467 -211 1.3278669165397342e-01 2.6084342205590735e-02 -4.6284088977057918e+00 4.6324897633616899e+00 1.3956999999999192e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 3 0 P 468 -211 1.0301013419542456e-02 1.6589041559390102e-01 -6.8057532039242492e+00 6.8092130381189113e+00 1.3957000000001607e-01 1 0 0 0 0 P 469 211 -3.6883796896427850e-03 3.6762216235245476e-01 -4.1221703515871063e+01 4.1223579177379470e+01 1.3957000000019137e-01 1 0 0 0 0 P 470 111 -1.8647936875796944e-01 7.3260543790352883e-01 -6.7942747427191037e+01 6.7947087007745168e+01 1.3497999999896090e-01 2 0 0 -219 0 V -85 0 4.7323935468982165e-05 7.4254234465713593e-05 -5.5979752143929208e-03 5.5986710994716448e-03 0 2 0 P 471 22 1.0049338439548758e+00 1.5475946301134091e+00 -1.1837988468873996e+02 1.1839426523311529e+02 1.3657139822709083e-07 1 0 0 0 0 P 472 22 2.6792345916639471e-02 7.1248723634080177e-02 -3.6635925010705148e+00 3.6643831983458437e+00 4.8357080615115055e-08 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 473 311 -6.3223538503737436e-02 5.2421010596387940e-01 -2.6637693007269625e+01 2.6647573203379267e+01 4.9767000000005945e-01 2 0 0 -220 0 P 474 211 3.2817251404517450e-01 3.2189779955670211e-01 -9.7205670180987855e+00 9.7324312651353519e+00 1.3957000000005398e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 2 0 P 475 -321 -3.2066011893004737e-01 1.3133771056230756e+00 -5.4108128354696298e+01 5.4127266486880124e+01 4.9359999999965049e-01 1 0 0 0 0 P 476 211 9.2260221070253029e-02 4.1803384067300420e-01 -3.4927145190945851e+01 3.4930047455087312e+01 1.3956999999994121e-01 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 477 2112 3.7414162258522204e-01 6.0437400539232133e-01 -2.6682763540031818e+01 2.6708760956103824e+01 9.3957000000002933e-01 1 0 0 0 0 P 478 -211 2.1079923029468778e-01 4.8364057971456725e-01 -2.4544174092956219e+01 2.4550240451288509e+01 1.3956999999976341e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 479 211 -1.2556851216650586e-01 1.5151364261730891e+00 -4.9703472843286967e+01 4.9726915230179209e+01 1.3956999999887729e-01 1 0 0 0 0 P 480 111 1.1996171209220802e-01 5.3657167980517007e-02 -2.8010984399847203e+01 2.8011617885315498e+01 1.3497999999986174e-01 2 0 0 -221 0 V -90 0 0 0 0 0 0 2 0 P 481 -2112 -2.1641153879756714e-01 1.1541291768894069e+00 -5.9455604101998063e+01 5.9474620629555098e+01 9.3956999999989688e-01 1 0 0 0 0 P 482 -211 1.4815193124224377e-01 3.8035237390882670e-01 -1.0957746928996727e+01 1.0966235200282096e+01 1.3957000000005909e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 483 2212 1.0111523308641404e+00 1.1967836398141107e+00 -4.7871809618355826e+01 4.7906630301511960e+01 9.3826999999992244e-01 1 0 0 0 0 P 484 211 3.0602176891305396e-02 4.1725219385083989e-01 -9.0512715796223393e+00 9.0620104215059758e+00 1.3957000000003664e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 485 -211 6.3860838331157510e-01 -5.6769651789423614e-01 -1.0796526077493930e+01 1.0831184382632008e+01 1.3956999999998554e-01 1 0 0 0 0 P 486 111 1.7830951358454292e+00 -5.4421079173502085e-01 -3.2118153415985475e+01 3.2172497448946920e+01 1.3498000000068200e-01 2 0 0 -222 0 V -93 0 0 0 0 0 0 2 0 P 487 211 5.9259634605067901e-01 6.8629489461620952e-02 -3.5591793603460036e+00 3.6115257080892231e+00 1.3956999999999467e-01 1 0 0 0 0 P 488 111 2.8523392999475061e-01 1.2855305735431555e-01 -7.2355782357289087e+00 7.2435969165276761e+00 1.3497999999999363e-01 2 0 0 -223 0 V -94 0 0 0 0 0 0 2 0 P 489 211 2.2137940396925562e-01 -2.9011480911546178e-02 -4.6693017839119291e+00 4.6767199446481280e+00 1.3957000000000896e-01 1 0 0 0 0 P 490 -211 -2.6736223925874669e-02 -8.1960137454475293e-02 -2.2715562979436413e-01 2.8019949116414400e-01 1.3957000000000003e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 491 -211 5.9325205390527092e-01 -2.1157668697345897e-01 -3.5017511594596678e+00 3.5606816287911243e+00 1.3956999999999536e-01 1 0 0 0 0 P 492 211 8.4743108739496564e-01 1.4230778879369854e-02 -2.2911776410724167e+00 2.4468994116638902e+00 1.3957000000000269e-01 1 0 0 0 0 V -96 0 2.0060431372047266e-03 3.2636744078320273e-04 -5.5282503301894541e-03 5.8909881605017827e-03 0 2 0 P 493 22 8.0769347448192175e-01 1.1455383439574714e-01 -2.0464276953359146e+00 2.2030337359952772e+00 -3.6925501379368844e-08 1 0 0 0 0 P 494 22 1.7211520334410875e+00 2.9686944023381606e-01 -4.9225605357216278e+00 5.2232267818473206e+00 -1.0698460400681480e-07 1 0 0 0 0 V -97 0 1.0301673074217148e-05 8.7507356910247367e-06 -4.5453185117145469e-05 4.7467426516440579e-05 0 2 0 P 495 22 3.6595637246398743e-01 3.7229226920721542e-01 -1.9032376793922146e+00 1.9735347132788723e+00 1.4223646697868839e-08 1 0 0 0 0 P 496 22 2.9212722829632248e-01 1.8671553577391273e-01 -1.0003679303392039e+00 1.0587431250603583e+00 1.1944915483128894e-08 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 497 211 4.4803426002170665e-01 -2.6568292541790767e-01 -1.2169285071574683e+00 1.3310585604864724e+00 1.3957000000000055e-01 1 0 0 0 0 P 498 111 2.8859032701858456e+00 -2.6276068487463894e-01 -8.8448329116784876e+00 9.3084246625460807e+00 1.3498000000005991e-01 2 0 0 -224 0 V -99 0 0 0 0 0 0 2 0 P 499 2212 1.2224639154097592e+00 -2.2269715459240955e+00 -6.1780625699284171e+00 6.7455635792485884e+00 9.3826999999999738e-01 1 0 0 0 0 P 500 111 2.4117930781618135e-01 -8.0842511754596100e-02 -8.8060318560908724e-01 9.2649044308635853e-01 1.3498000000000016e-01 2 0 0 -225 0 V -100 0 0 0 0 0 0 2 0 P 501 211 6.5726262117825496e-01 -4.0259225567797108e-01 -1.0142842263108784e+00 1.2815330484123475e+00 1.3956999999999925e-01 1 0 0 0 0 P 502 111 7.3834890291984112e-01 -1.4079966257001941e-01 -2.2723142282604174e+00 2.3972098781244626e+00 1.3498000000000124e-01 2 0 0 -226 0 V -101 0 0 0 0 0 0 2 0 P 503 -2112 2.7039868746319518e+00 -2.3591928695238495e+00 -5.6031688342734070e+00 6.7197938051748922e+00 9.3957000000000079e-01 1 0 0 0 0 P 504 -211 1.6087952906933362e-01 -4.6981172782873176e-01 -6.4688377939012742e-01 8.2737155584238209e-01 1.3957000000000017e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 505 -211 1.4348741547379213e+00 -6.5392999181256051e-01 -2.1436239826545345e+00 2.6647873907759561e+00 1.3957000000000119e-01 1 0 0 0 0 P 506 111 3.0482519105381880e-02 -4.9847303954308801e-02 -4.5889581169197469e-01 4.8189096699456768e-01 1.3498000000000002e-01 2 0 0 -227 0 V -103 0 0 0 0 0 0 3 0 P 507 211 1.9284323491400018e-01 -1.5766313397687934e-01 -4.1141320158776068e-01 5.0078616635066819e-01 1.3957000000000017e-01 1 0 0 0 0 P 508 -211 8.6503982394204060e-01 -4.6932525661311525e-01 -1.1163502936767322e+00 1.4947500983752333e+00 1.3957000000000119e-01 1 0 0 0 0 P 509 221 1.8325811684485624e+00 -1.0308313120998112e+00 -2.0715447698099450e+00 3.0019936989914977e+00 5.4745000000000044e-01 2 0 0 -228 0 V -104 0 0 0 0 0 0 2 0 P 510 321 1.2151138770255046e+00 -6.8673912713576632e-02 -1.1806555027430561e+00 1.7660142175488858e+00 4.9359999999999976e-01 1 0 0 0 0 P 511 111 3.2423287726402983e-01 -2.5137525864081506e-01 -7.9890327133883288e-01 9.0817537772807788e-01 1.3498000000000004e-01 2 0 0 -229 0 V -105 0 0 0 0 0 0 2 0 P 512 -211 5.6184348283302521e-01 -7.2117854789785962e-01 -1.2576720589991743e+00 1.5610846838135437e+00 1.3956999999999919e-01 1 0 0 0 0 P 513 211 1.1352480736324876e-01 -4.4351400497917715e-01 -6.4139236959547430e-02 4.8289355050288807e-01 1.3957000000000008e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 3 0 P 514 111 3.5187780872434593e-01 -5.8175808974162491e-01 -4.0017286434822363e-01 8.0038639981769655e-01 1.3497999999999971e-01 2 0 0 -230 0 P 515 111 1.7986296791692397e-01 -5.5081511124616578e-01 -3.6940745218779075e-01 7.0030667577632399e-01 1.3498000000000024e-01 2 0 0 -231 0 P 516 111 9.7605821488774580e-01 -1.6044889811968872e+00 -1.2519537459133747e+00 2.2611241257256554e+00 1.3498000000000157e-01 2 0 0 -232 0 V -107 0 0 0 0 0 0 2 0 P 517 211 6.9107582621544850e-01 -2.2247232819337182e+00 -1.1791777860748986e+00 2.6147503733300810e+00 1.3956999999999872e-01 1 0 0 0 0 P 518 111 9.5312991807985492e-01 -1.8550494465604619e+00 -1.9275227396749866e+00 2.8431019331510701e+00 1.3497999999999566e-01 2 0 0 -233 0 V -108 0 0 0 0 0 0 3 0 P 519 111 4.7508871322107704e-01 -5.3514783491907703e-01 -5.1874477319096779e-01 8.9409632074043521e-01 1.3498000000000032e-01 2 0 0 -234 0 P 520 111 1.3034270563704311e+00 -1.7746421537414794e+00 -1.3649512801417218e+00 2.5941450350115756e+00 1.3497999999999949e-01 2 0 0 -235 0 P 521 111 4.8313823546938373e-01 -7.5253588529914273e-01 -4.4551709915487914e-01 1.0081854488509605e+00 1.3498000000000046e-01 2 0 0 -236 0 V -109 0 0 0 0 0 0 1 0 P 522 130 1.9689396359732416e+00 -2.9250125098724342e+00 -1.8651629399316361e+00 4.0198171220107888e+00 4.9766999999999856e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 523 -311 9.8650468822015294e-02 -1.2307530988115232e+00 -3.7309446347831554e-01 1.3825194439179300e+00 4.9767000000000000e-01 2 0 0 -237 0 P 524 -211 2.5040801094515569e-01 -2.1951463056823009e-01 1.0217516860970288e-01 3.7524711186022064e-01 1.3956999999999992e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 525 211 9.0538548005837927e-01 -8.0671559298564421e-01 -2.5920882984302884e-01 1.2478709539993764e+00 1.3957000000000030e-01 1 0 0 0 0 P 526 -211 2.7338978971630495e-01 -1.1802591544269263e+00 -3.1060747945471562e-01 1.2584555772544774e+00 1.3956999999999969e-01 1 0 0 0 0 V -112 0 2.7144207824562674e+01 -3.8726599060445878e+01 -7.1929363086167468e+00 6.1850862685582186e+01 0 2 0 P 527 2112 5.6964597811336837e-01 -1.0866393603619822e+00 -2.8744628369347713e-01 1.5718456637907632e+00 9.3957000000000002e-01 1 0 0 0 0 P 528 -211 2.5936642612187732e-01 -9.6111346619531884e-02 6.7766510341556369e-02 3.1714416086714781e-01 1.3957000000000003e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 529 321 9.3457368411270181e-01 -1.1853761942511207e+00 2.5960050806957780e-01 1.6092166034201989e+00 4.9359999999999993e-01 1 0 0 0 0 P 530 111 3.1912777765405320e-01 -5.6663015628820723e-01 -2.8506790566768714e-01 7.2276938488523046e-01 1.3498000000000021e-01 2 0 0 -238 0 V -114 0 1.8468635868168480e+01 -2.6827751391731343e+01 1.6552766120322872e+01 4.1166445049210566e+01 0 2 0 P 531 -2112 1.0034800035430811e+00 -1.2942603011818756e+00 8.8048915213070089e-01 2.0832990127790256e+00 9.3957000000000046e-01 1 0 0 0 0 P 532 111 8.2709599745507456e-02 -2.8355112188774484e-01 9.3023054937643720e-02 3.3780912622928450e-01 1.3498000000000002e-01 2 0 0 -239 0 V -115 0 0 0 0 0 0 2 0 P 533 -311 -2.8124579874435557e-01 -6.0355450546260614e-01 1.3483890520791870e+00 1.5840472546747366e+00 4.9766999999999972e-01 2 0 0 -240 0 P 534 111 -2.0133228646345036e-02 -3.3859541888165218e-01 1.0454641795110585e-01 3.7973906632024945e-01 1.3497999999999999e-01 2 0 0 -241 0 V -116 0 0 0 0 0 0 3 0 P 535 211 2.0796352172022520e-01 -8.5468430304172260e-01 7.5718755043832098e-01 1.1689939502285625e+00 1.3957000000000061e-01 1 0 0 0 0 P 536 -211 5.7802563222805171e-02 -9.7506815499186342e-02 2.4172732741187081e-01 3.0126500145487284e-01 1.3956999999999997e-01 1 0 0 0 0 P 537 111 1.2830526473506504e-01 -1.0629945277948220e-01 -1.7288658722360184e-02 2.1512859582205879e-01 1.3497999999999999e-01 2 0 0 -242 0 V -117 0 0 0 0 0 0 3 0 P 538 -211 -2.0272324172213415e-02 -2.7200343964632417e-01 2.6880727381986652e-01 4.0759535530381541e-01 1.3957000000000000e-01 1 0 0 0 0 P 539 211 3.7358725433655210e-01 -5.7744702945934680e-02 6.5816695183047247e-01 7.7172884402674324e-01 1.3957000000000011e-01 1 0 0 0 0 P 540 111 8.3244509520504842e-02 2.4397927678770272e-02 5.5208935193439324e-01 5.7493230919793181e-01 1.3498000000000013e-01 2 0 0 -243 0 V -118 0 0 0 0 0 0 3 0 P 541 211 -1.7824716449998088e-02 -7.9027268511622464e-02 5.6190048541174853e-01 5.8461523251698588e-01 1.3956999999999978e-01 1 0 0 0 0 P 542 -211 6.1157833078706501e-02 9.0489972643676267e-02 4.3651245026758140e-01 4.7111741618681846e-01 1.3956999999999994e-01 1 0 0 0 0 P 543 111 6.0693399159232261e-02 -1.6850479491298204e-01 4.1642918763679532e-01 4.7298036251625641e-01 1.3498000000000007e-01 2 0 0 -244 0 V -119 0 0 0 0 0 0 3 0 P 544 -211 7.0346220260087350e-03 -1.7231763449856705e-02 -2.4878384906292218e-02 1.4298649766389221e-01 1.3957000000000000e-01 1 0 0 0 0 P 545 211 5.6071215576324962e-01 9.2752262998357704e-02 4.2556634631958623e-01 7.2359353502625301e-01 1.3957000000000006e-01 1 0 0 0 0 P 546 111 1.1877279679701097e-01 -1.4226923419108034e-01 3.3763126736957538e-01 4.0812006243492394e-01 1.3497999999999996e-01 2 0 0 -245 0 V -120 0 0 0 0 0 0 2 0 P 547 321 1.2219457694523721e+00 -9.6849409183542301e-01 2.0085277979533953e+00 2.5901654666360963e+00 4.9360000000000065e-01 1 0 0 0 0 P 548 -211 4.3006878040390750e-01 4.1290797406823503e-02 7.9987629114761183e-01 9.1975320160826557e-01 1.3956999999999989e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 1 0 P 549 130 1.1625962621355042e+00 -3.1873747786317252e-01 4.6261690148754990e+00 4.8064892418084293e+00 4.9767000000000200e-01 1 0 0 0 0 V -122 0 0 0 0 0 0 2 0 P 550 211 2.1594424809521398e-01 -3.1371507279112737e-01 9.0395375165195568e-01 9.9078818887156461e-01 1.3956999999999981e-01 1 0 0 0 0 P 551 -211 1.9001022763181872e+00 -2.0802709532578620e+00 1.0471568264382899e+01 1.0844866877927503e+01 1.3957000000003386e-01 1 0 0 0 0 V -123 0 0 0 0 0 0 2 0 P 552 211 1.0785004843538393e+00 -1.2341599745578260e+00 4.8535596414043809e+00 5.1247278088813131e+00 1.3957000000000708e-01 1 0 0 0 0 P 553 111 5.0842651717644471e-01 1.4051466186912470e-01 9.5759623400626093e-01 1.1015679921599655e+00 1.3498000000000021e-01 2 0 0 -246 0 V -124 0 0 0 0 0 0 2 0 P 554 211 3.7969182022962944e-01 1.0062904220252890e-01 1.2033980540651914e+00 1.2735535889438563e+00 1.3956999999999983e-01 1 0 0 0 0 P 555 111 4.8881289060829841e-01 -5.7775576617382340e-01 7.6025679643488964e+00 7.6413348977986866e+00 1.3497999999999932e-01 2 0 0 -247 0 V -125 0 0 0 0 0 0 2 0 P 556 -211 3.9685606803015600e-01 -4.1004208673044434e-01 2.8226552860259289e+00 2.8831392439930354e+00 1.3957000000000255e-01 1 0 0 0 0 P 557 111 6.2435688848698456e-01 4.3694334438817865e-02 6.3183119122079319e+00 6.3506704952636186e+00 1.3498000000000754e-01 2 0 0 -248 0 V -126 0 0 0 0 0 0 3 0 P 558 -211 2.8206464551565380e-01 -5.8858078189121643e-01 2.6740009882656479e+00 2.7560386193243391e+00 1.3957000000000241e-01 1 0 0 0 0 P 559 211 3.6507341139214755e-01 3.3987336505286111e-02 1.7082633886648368e+00 1.7527342424625860e+00 1.3957000000000033e-01 1 0 0 0 0 P 560 111 1.0778254320873173e-01 -4.7854963683566863e-02 9.9952792557943471e-01 1.0154717369689938e+00 1.3497999999999935e-01 2 0 0 -249 0 V -127 0 0 0 0 0 0 2 0 P 561 22 6.8891284959618482e-01 -4.7308282538680985e-01 4.9120226431066802e+00 4.9826072211651837e+00 -7.2224050649781878e-08 1 0 0 0 0 P 562 22 2.4482735004808823e-01 1.5409684852589633e-01 1.4181598193740883e+00 1.4473643436758861e+00 -2.2225267372618847e-08 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 563 211 1.8982020867565869e-01 -1.4764789919960464e-01 4.9736553570586741e+00 4.9814213844502433e+00 1.3957000000001518e-01 1 0 0 0 0 P 564 -211 -2.1244865584395897e-01 -6.1006903661795187e-01 3.9735417788020144e+00 4.0281301758501966e+00 1.3956999999999342e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 565 211 -2.1133912113889716e-01 6.2474342026270356e-02 2.4662458317392790e+01 2.4663837846320110e+01 1.3957000000002054e-01 1 0 0 0 0 P 566 111 6.1461417239964795e-02 -2.3174839242608147e-01 5.4678723129494546e+00 5.4747905945634523e+00 1.3498000000000956e-01 2 0 0 -250 0 V -130 0 0 0 0 0 0 2 0 P 567 -2112 2.3901854820815996e-01 1.6731071724615698e+00 4.1069402929746829e+01 4.1114900781440873e+01 9.3957000000001445e-01 1 0 0 0 0 P 568 -211 6.1096353663183091e-02 1.2164715394813370e+00 3.7000533038979839e+01 3.7020838195863931e+01 1.3957000000029915e-01 1 0 0 0 0 V -131 0 0 0 0 0 0 2 0 P 569 -211 -1.2972820814937853e+00 -1.3787157197318824e-02 5.5830161073392070e+01 5.5845407117778912e+01 1.3956999999989148e-01 1 0 0 0 0 P 570 111 -1.0429852134687956e-01 1.6485294968165964e-01 3.6026994730394675e+00 3.6105010414086220e+00 1.3497999999999422e-01 2 0 0 -251 0 V -132 0 0 0 0 0 0 2 0 P 571 211 -3.9347136895971163e-01 1.5210711577093611e-01 1.9075727496692494e+01 1.9080901855149019e+01 1.3957000000005029e-01 1 0 0 0 0 P 572 111 -1.1977139548119655e+00 -6.3592315415155942e-01 3.5499628902147897e+01 3.5525776399202755e+01 1.3497999999907112e-01 2 0 0 -252 0 V -133 0 0 0 0 0 0 2 0 P 573 2212 -1.2231219573079828e+00 1.3742907035272256e-01 9.4241717442914577e+01 9.4254424677332139e+01 9.3827000000056471e-01 1 0 0 0 0 P 574 111 4.7673051363812405e-02 9.6468906922211658e-03 1.7555684445333878e+01 1.7556270723785968e+01 1.3498000000015437e-01 2 0 0 -253 0 V -134 0 0 0 0 0 0 2 0 P 575 -2112 -2.3887365337543600e+00 1.2700440959698724e+00 2.0874598325526048e+02 2.0876562789698832e+02 9.3956999999842905e-01 1 0 0 0 0 P 576 -211 -1.2590843404789192e+00 3.6930266231733444e-01 1.0548239568072637e+02 1.0549064866689869e+02 1.3956999999979841e-01 1 0 0 0 0 V -135 0 0 0 0 0 0 2 0 P 577 311 -3.8383409842285338e-01 5.9745474691944864e-03 5.3947223891583342e+01 5.3950885121078876e+01 4.9767000000003264e-01 2 0 0 -254 0 P 578 211 -6.5813451391173827e-01 -1.8054743236724358e-01 5.7554003631824990e+01 5.7558218807141351e+01 1.3956999999973241e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 2 0 P 579 321 -4.8598815287259606e-01 4.5884249245804881e-01 9.7372649385635114e+01 9.7376194268699180e+01 4.9359999999905940e-01 1 0 0 0 0 P 580 -321 -7.2972237753125591e-01 6.6614834010202173e-01 1.0654872457910291e+02 1.0655444898620057e+02 4.9360000000042870e-01 1 0 0 0 0 V -137 0 -2.1488742896441056e+02 -1.9019274826152731e+01 2.9433782890960298e+04 2.9434849453959527e+04 0 2 0 P 581 2212 -1.7520277563216105e+00 -1.1618494087976809e-01 2.2851123088396207e+02 2.2851990305200056e+02 9.3827000000229899e-01 1 0 0 0 0 P 582 -211 -1.2876297989584359e-01 -5.0280245450542035e-02 2.9106380625189516e+01 2.9107043492793661e+01 1.3956999999981334e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 583 -211 -5.6436981535937937e-02 -1.7455443567429693e-01 5.8596185657851308e+01 5.8596639048824102e+01 1.3956999999917954e-01 1 0 0 0 0 P 584 111 -1.3563851330458951e-01 6.0481533844631630e-01 2.0318806549187462e+02 2.0318905575185551e+02 1.3498000000710045e-01 2 0 0 -255 0 V -139 0 0 0 0 0 0 2 0 P 585 -2112 -4.7681236557088064e-01 2.9009088501167535e-01 2.6586521083620943e+02 2.6586745687940169e+02 9.3956999999775404e-01 1 0 0 0 0 P 586 211 -4.1673505671754335e-01 4.7908892848939527e-01 1.4221958031058466e+02 1.4222106629403621e+02 1.3957000000961439e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 587 -211 2.2100188175922070e-01 -1.4476033454864196e-02 1.4465768451132490e+02 1.4465792138472816e+02 1.3956999998956882e-01 1 0 0 0 0 P 588 111 -3.2456156747977238e-01 -5.9389762546897462e-01 1.7644910948758340e+02 1.7645045909025632e+02 1.3498000000502114e-01 2 0 0 -256 0 V -141 0 0 0 0 0 0 2 0 P 589 -211 3.4099991898792542e-01 -1.6217711717520286e-01 -1.5623098628016883e+00 1.6133425719271346e+00 1.3957000000000097e-01 1 0 0 0 0 P 590 111 7.2760598083428474e-01 2.7435221302324680e-01 -1.2206914529129913e+00 1.4536116481892281e+00 1.3497999999999974e-01 2 0 0 -257 0 V -142 0 0 0 0 0 0 3 0 P 591 211 4.0279980055965309e-01 8.7782087123909877e-02 -6.6311819242756032e-01 7.9319537074993129e-01 1.3957000000000017e-01 1 0 0 0 0 P 592 -211 1.5421346979760031e+00 2.6285809952691930e-01 -4.0036365978126573e+00 4.3006812947989239e+00 1.3956999999998834e-01 1 0 0 0 0 P 593 111 3.3210929742038237e-01 6.4633237084905898e-02 -1.2487934837959944e+00 1.3008377325171923e+00 1.3498000000000002e-01 2 0 0 -258 0 V -143 0 4.1227949584103868e+01 -3.3385600739361068e+00 -1.8194177206121034e+02 1.9060165124375928e+02 0 2 0 P 594 2112 9.3770782241514250e-01 -2.4845545104784199e-02 -3.6952362476017653e+00 3.9265093877157708e+00 9.3957000000000035e-01 1 0 0 0 0 P 595 -211 3.3052048772425358e-01 -7.7853144584585116e-02 -1.9015423565401948e+00 1.9366589848353850e+00 1.3957000000000022e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 596 -211 7.9856772023181855e-01 4.9925576672831889e-01 -1.1161727812451014e+00 1.4670678876248879e+00 1.3957000000000053e-01 1 0 0 0 0 P 597 211 -1.0245709546243754e-01 -5.4363762181533763e-02 -8.1224435029112821e-02 1.9882170101608115e-01 1.3956999999999997e-01 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 598 -3122 3.6623680165845779e-01 1.2087015765356601e-01 -9.6366008777548942e+00 9.7086331339404630e+00 1.1156800000000024e+00 2 0 0 -259 0 P 599 22 3.0778882246742231e-02 -5.4663648418464938e-02 -2.4943489846184774e-01 2.5720268781925404e-01 -3.4544174850354414e-09 1 0 0 0 0 V -146 0 0 0 0 0 0 3 0 P 600 -211 -4.1283374322204741e-01 7.9954854351494131e-02 -1.9194767579096176e+01 1.9199880381885162e+01 1.3956999999979741e-01 1 0 0 0 0 P 601 211 -2.8012635919650630e-01 7.7821910024461816e-02 -2.5913511195713443e+01 2.5915517924634702e+01 1.3957000000013012e-01 1 0 0 0 0 P 602 111 1.2471355185198663e-01 -1.9851587214192610e-03 -9.8367958663891226e+00 9.8385125871892249e+00 1.3497999999999863e-01 2 0 0 -260 0 V -147 0 0 0 0 0 0 2 0 P 603 211 -2.4200877646059363e-01 -4.4818163315623510e-01 -1.3374364067776613e+01 1.3384787223804372e+01 1.3957000000004968e-01 1 0 0 0 0 P 604 -211 -1.2269324535252082e-02 4.3341794497174693e-02 -2.1328562657713160e+01 2.1329066877769666e+01 1.3956999999998426e-01 1 0 0 0 0 V -148 0 0 0 0 0 0 1 0 P 605 130 -1.5383926908124421e-01 -1.1118497467405460e-01 -4.6423180776798752e+01 4.6426236305386006e+01 4.9766999999974171e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 606 22 1.9615722898659793e-01 2.4607494673195068e-01 -9.5162895620395062e+01 9.5163415940140027e+01 -1.2675625275454961e-06 1 0 0 0 0 P 607 111 -3.2546851671034238e-01 -3.2964867746585064e-01 -1.5953337532994371e+02 1.5953410501134550e+02 1.3497999999078186e-01 2 0 0 -261 0 V -150 0 0 0 0 0 0 2 0 P 608 2212 -2.4544770417878589e-01 -5.1447118081482647e-02 -3.4265861850766311e+02 3.4265999486306328e+02 9.3827000000171956e-01 1 0 0 0 0 P 609 211 9.4352911634666317e-02 -5.9738158813979592e-02 -4.1438176173739556e+01 4.1438561696930662e+01 1.3956999999978131e-01 1 0 0 0 0 V -151 0 5.2668372016669577e-05 -2.9088921537264511e-05 8.7279007218815149e-03 8.7281289922360242e-03 0 2 0 P 610 22 1.4188175963078895e-01 -7.3852186724918223e-02 3.2946490621046898e+01 3.2946878893484445e+01 -6.1058405782425041e-07 1 0 0 0 0 P 611 22 2.3044827052573516e-01 -1.3178695909418059e-01 2.8753907825914279e+01 2.8755133271629084e+01 -2.1490760299348766e-07 1 0 0 0 0 V -152 0 9.0707037071951639e-05 -7.6721848424230135e-05 1.3429999554420369e-02 1.3430530673710809e-02 0 2 0 P 612 22 4.3186035271515355e-01 -3.8982689723791780e-01 7.3062513009317712e+01 7.3064829265596558e+01 -1.4479451507920269e-06 1 0 0 0 0 P 613 22 5.6078190285885088e-01 -4.4977001971599301e-01 7.3907176227505246e+01 7.3910672215429912e+01 -1.6610617871706156e-06 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 614 -211 7.3740913440852607e-01 6.9074549523912787e-01 1.6533350452255485e+02 1.6533665080394385e+02 1.3957000000585981e-01 1 0 0 0 0 P 615 211 6.4138005763371408e-01 6.3373534548245278e-02 6.4901148543895530e+01 6.4904498662919380e+01 1.3956999999749317e-01 1 0 0 0 0 V -154 0 3.5694369719884715e+00 -1.4424612794704852e+00 3.9185057646077081e+02 3.9188329236421384e+02 0 2 0 P 616 2212 1.1171137995204345e+00 -4.9861075228288415e-01 1.2309366280093919e+02 1.2310331729188938e+02 9.3827000000053917e-01 1 0 0 0 0 P 617 -211 9.3612765039114268e-02 9.3385776769915850e-03 9.8191483740777166e+00 9.8205908750881363e+00 1.3957000000001707e-01 1 0 0 0 0 V -155 0 0 0 0 0 0 2 0 P 618 -3122 1.4836702550469067e+00 6.0559226537517996e-01 1.1037187106385852e+02 1.1038914205399462e+02 1.1156800000000564e+00 2 0 0 -262 0 P 619 211 4.5675333382036537e-01 -6.6379486065823959e-02 1.8211142734243168e+01 1.8217525334578351e+01 1.3956999999979106e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 2 0 P 620 -211 -3.8061592886191370e-01 1.3334847056481808e-01 4.9688950120346547e+01 4.9690782788632866e+01 1.3956999999909045e-01 1 0 0 0 0 P 621 211 -8.6028185867329798e-02 -1.6801585385685436e-01 5.3886032744490340e+00 5.3937144168201678e+00 1.3957000000000194e-01 1 0 0 0 0 V -157 0 0 0 0 0 0 3 0 P 622 -211 -1.4147839060121908e-02 7.7300023717645480e-02 2.6849091670417340e+00 2.6896825974790328e+00 1.3956999999999783e-01 1 0 0 0 0 P 623 211 2.6481524949532698e-02 -3.8793994832790346e-01 4.8450909483433975e+00 4.8626725940876829e+00 1.3957000000001318e-01 1 0 0 0 0 P 624 111 2.3833295517116368e-01 -1.2723777408337944e-01 1.8713786463303004e+00 1.8955921731784346e+00 1.3498000000000032e-01 2 0 0 -263 0 V -158 0 0 0 0 0 0 2 0 P 625 -211 -9.9498893440446282e-02 3.3256835931515355e-01 2.0775303185582481e+00 2.1109509119925507e+00 1.3956999999999750e-01 1 0 0 0 0 P 626 111 2.8098590211759306e-01 -2.0448534565027968e-01 5.0697357471865550e+00 5.0834247786778324e+00 1.3498000000000196e-01 2 0 0 -264 0 V -159 0 0 0 0 0 0 2 0 P 627 211 6.4849853023247167e-02 -2.2658939252293075e-01 1.7253676739427515e+00 1.7469750002297308e+00 1.3956999999999914e-01 1 0 0 0 0 P 628 111 -7.0071904873750823e-01 -2.0398338534761287e-01 1.6808981687935169e+00 1.8374587508335718e+00 1.3498000000000127e-01 2 0 0 -265 0 V -160 0 -2.5102070909472268e-04 5.9932198045701124e-05 1.2767216998554947e-03 1.3040149548498435e-03 0 2 0 P 629 22 -4.7448174933588655e-01 8.2693224815413399e-02 2.5150954846475782e+00 2.5607960474777860e+00 -2.0028849288454809e-08 1 0 0 0 0 P 630 22 -7.2766910723517403e-02 4.7964581041347633e-02 2.6827741727118526e-01 2.8207870700996557e-01 -3.0601954618689872e-09 1 0 0 0 0 V -161 0 0 0 0 0 0 2 0 P 631 -211 -1.7627204915219544e-01 5.5024289399089488e-01 1.7426899004621530e+00 1.8412731877080537e+00 1.3956999999999883e-01 1 0 0 0 0 P 632 111 -5.3684332006433122e-01 2.6356365182582241e-02 7.4262489454629910e-01 9.2661035105551970e-01 1.3497999999999999e-01 2 0 0 -266 0 V -162 0 0 0 0 0 0 2 0 P 633 211 -1.0962096734401454e+00 -4.6396608936336008e-02 2.2014354373351579e+00 2.4636611096332994e+00 1.3957000000000275e-01 1 0 0 0 0 P 634 111 -1.0242122993853950e-01 -5.1407657237120963e-01 6.1997198954682742e-01 8.2301257513218240e-01 1.3497999999999993e-01 2 0 0 -267 0 V -163 0 0 0 0 0 0 2 0 P 635 -211 -2.1994685308759823e-01 4.1337865627531617e-01 2.8707725794386718e-01 5.6670245153492427e-01 1.3957000000000008e-01 1 0 0 0 0 P 636 111 -1.4347716908029823e-02 3.9716475459329137e-01 1.6045472545108501e+00 1.6585346519231756e+00 1.3498000000000057e-01 2 0 0 -268 0 V -164 0 0 0 0 0 0 3 0 P 637 211 -3.4785890827804429e-02 4.7966523855394144e-01 6.5444796947489814e-01 8.2405747914056982e-01 1.3956999999999989e-01 1 0 0 0 0 P 638 -211 -1.0296911472673728e-01 1.0322980992411664e-01 9.3124762448905440e-02 2.2228593865951643e-01 1.3957000000000000e-01 1 0 0 0 0 P 639 111 -2.1009187289718695e-01 1.1948144345089864e+00 7.7159154779722050e-01 1.4440544466884160e+00 1.3498000000000054e-01 2 0 0 -269 0 V -165 0 0 0 0 0 0 3 0 P 640 211 -4.2068448872465997e-01 7.8944236976203241e-01 2.7901978239978381e-01 9.4737876168903257e-01 1.3956999999999994e-01 1 0 0 0 0 P 641 -211 -4.5069059069827228e-01 3.6986350801145290e-01 7.5692965904866030e-02 6.0426007073938859e-01 1.3957000000000006e-01 1 0 0 0 0 P 642 111 -1.9075627219617836e-01 4.8812646178326702e-02 2.3874599678602942e-01 3.3762387532647592e-01 1.3497999999999993e-01 2 0 0 -270 0 V -166 0 0 0 0 0 0 1 0 P 643 310 -8.0335249314936497e-01 1.6323766569879674e+00 1.1570718232742099e+00 2.2128080376850625e+00 4.9766999999999995e-01 2 0 0 -271 0 V -167 0 0 0 0 0 0 2 0 P 644 -211 4.3845899927792698e-01 -2.0728329437185319e-01 9.6643610883180364e-01 1.0902711568813546e+00 1.3956999999999975e-01 1 0 0 0 0 P 645 211 2.8510271000543042e-01 2.2764091092116923e-01 1.9999706724749176e+00 2.0377601466407262e+00 1.3956999999999972e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 646 211 4.1260040689946015e-02 2.1127979456094340e-01 1.2587222701651288e+00 1.2846023045507531e+00 1.3956999999999911e-01 1 0 0 0 0 P 647 111 5.5264452772313033e-01 -3.0507821483510517e-01 1.3027319075659840e+00 1.4538977662063464e+00 1.3497999999999982e-01 2 0 0 -272 0 V -169 0 0 0 0 0 0 3 0 P 648 111 4.3540161620463019e-01 1.4015042967169009e-01 1.3446937347106787e+00 1.4267577057443623e+00 1.3497999999999985e-01 2 0 0 -273 0 P 649 111 1.4075090851628871e-01 -8.8631509368547468e-02 4.8830186172190215e-01 5.3322103415205147e-01 1.3497999999999996e-01 2 0 0 -274 0 P 650 111 2.8939844981442980e-01 -4.6346959688701186e-02 6.4133322293888162e-01 7.1793273130047108e-01 1.3498000000000016e-01 2 0 0 -275 0 V -170 0 0 0 0 0 0 2 0 P 651 211 3.0860629146802437e-01 1.3454738837029426e-01 -3.0672689236485140e-01 4.7634232884629635e-01 1.3956999999999994e-01 1 0 0 0 0 P 652 111 -3.4621077817080337e-01 7.0007695866013675e-01 -1.9643425418110497e-01 8.1656332735688475e-01 1.3497999999999977e-01 2 0 0 -276 0 V -171 0 0 0 0 0 0 2 0 P 653 211 -6.6922260469438533e-01 2.3608404319786103e-01 -1.5136393667239499e+01 1.5153662514541974e+01 1.3956999999994066e-01 1 0 0 0 0 P 654 111 1.4467500405380923e-01 1.0316880181042207e-01 -6.0300142365903726e+00 6.0341416914377755e+00 1.3497999999998400e-01 2 0 0 -277 0 V -172 0 0 0 0 0 0 2 0 P 655 -211 -6.4466319687432927e-01 -4.9364008400073593e-03 -2.6528619314767873e+01 2.6536818527062216e+01 1.3956999999985370e-01 1 0 0 0 0 P 656 211 9.2751726733972025e-03 5.9840369957017615e-02 -1.4273666555263908e+01 1.4274477349958007e+01 1.3957000000000150e-01 1 0 0 0 0 V -173 0 0 0 0 0 0 2 0 P 657 -211 4.4043547119013504e-01 -4.8898954245078435e-01 -3.2213224616542803e+01 3.2220248511730134e+01 1.3956999999991099e-01 1 0 0 0 0 P 658 111 6.8640598148690959e-02 4.8320318694205298e-02 -1.6728800961662511e+00 1.6804147706629233e+00 1.3498000000000004e-01 2 0 0 -278 0 V -174 0 0 0 0 0 0 2 0 P 659 -211 1.0701884991843977e-01 -1.1964309003985671e-01 -5.2713261056148919e-01 5.6843300154857423e-01 1.3956999999999992e-01 1 0 0 0 0 P 660 211 -1.1998575233671697e-01 6.2820476056378249e-01 -4.0933466050840428e+00 4.1453593349927900e+00 1.3956999999999986e-01 1 0 0 0 0 V -175 0 0 0 0 0 0 2 0 P 661 211 -3.4893186735153109e-01 -1.5132819885113238e-01 -2.1948097316882600e+00 2.2318878141686347e+00 1.3956999999999942e-01 1 0 0 0 0 P 662 111 2.8552949669941990e-01 3.9097209429678526e-01 -1.1392017152306129e+00 1.2451451402903233e+00 1.3498000000000054e-01 2 0 0 -279 0 V -176 0 0 0 0 0 0 2 0 P 663 2112 6.1835195876930669e-02 -1.9586718259156859e-02 -2.8314410978352633e+00 2.9839667736742417e+00 9.3956999999999991e-01 1 0 0 0 0 P 664 -211 -1.7449582221122492e-03 -1.4461386089253514e-01 -4.2238614454790385e-01 4.6776709337819516e-01 1.3957000000000003e-01 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 665 -2112 1.1631520432503864e-01 -5.4826166729506132e-01 -2.6426284540143201e+00 2.8601393346213837e+00 9.3956999999999991e-01 1 0 0 0 0 P 666 211 4.2326627381570531e-01 -2.9139674049139475e-01 -6.5782718344826963e-01 8.4633491426404250e-01 1.3956999999999972e-01 1 0 0 0 0 V -178 0 1.3425524666748739e-04 -1.0496506027749164e-04 -2.0362170625194865e-04 2.7398471838209221e-04 0 2 0 P 667 22 2.1605259216410818e-02 -8.5604141781056173e-02 -7.5878760525045441e-02 1.1641495872394002e-01 -2.8101402397837446e-09 1 0 0 0 0 P 668 22 2.4664648255521046e-01 -1.2412367849800893e-01 -3.3097220970092811e-01 4.3102642438144079e-01 -7.7946121930893048e-09 1 0 0 0 0 V -179 0 -2.6357448404613867e-05 -4.0921288163575687e-05 -2.9754464114999914e-05 7.3605501502621004e-05 0 2 0 P 669 22 -8.0137259629238358e-02 -6.8285989140453668e-02 -1.1463140609674261e-01 1.5564483916111849e-01 3.5975913378322598e-09 1 0 0 0 0 P 670 22 3.6433284384743483e-03 -5.0474755563272564e-02 2.8278740402727993e-02 5.7971216565185127e-02 1.8217812287920750e-09 1 0 0 0 0 V -180 0 0 0 0 0 0 1 0 P 671 310 -2.4502658043940842e-01 4.0045520849499322e-01 -8.0278871714574462e-01 1.0547736972493715e+00 4.9767000000000011e-01 2 0 0 -280 0 V -181 0 3.4038070775972744e-05 1.3225335190235769e-04 -2.0280308888272148e-04 2.5009289169664566e-04 0 2 0 P 672 22 -3.5975072473432346e-02 5.7430644506166854e-02 -9.7205453358376381e-02 1.1849634986137721e-01 1.0107035838408242e-09 1 0 0 0 0 P 673 22 1.2330543469355239e-01 2.8188744442062336e-01 -4.2311978270022110e-01 5.2315878283675810e-01 -6.5337937327112448e-09 1 0 0 0 0 V -182 0 -1.0881105371401328e-04 5.0128377907346758e-05 -1.4365703715011379e-03 1.4428316596451420e-03 0 2 0 P 674 22 -2.4169575876634902e-01 1.1181071710019878e-01 -2.5369070948607351e+00 2.5508461506368505e+00 3.5616239860603480e-08 1 0 0 0 0 P 675 22 -5.4698829462533312e-04 -2.1143048817636175e-04 -6.6128593112981215e-01 6.6128619115271758e-01 9.3986899088786017e-09 1 0 0 0 0 V -183 0 7.0399386131185401e-06 -2.0985252441421831e-05 -2.2507728358626088e-04 2.2638210146239739e-04 0 2 0 P 676 22 6.9657162518587154e-02 -1.1939528323774647e-01 -1.9711743861128106e+00 1.9760151351689537e+00 -7.6089681304843124e-09 1 0 0 0 0 P 677 22 2.5783658177580496e-02 -1.6510289573690462e-01 -1.0802102702117615e+00 1.0930590062209342e+00 -7.5517570321573203e-09 1 0 0 0 0 V -184 0 1.5845346719182131e-05 6.2423801292736260e-05 -4.3238268147170045e-04 4.3948744136589036e-04 0 2 0 P 678 22 -4.0281067255798303e-02 1.1474971510930113e-01 -6.9348981301735479e-01 7.0407256888461278e-01 1.3321290875195427e-08 1 0 0 0 0 P 679 22 8.7558334131175503e-02 7.1502234147164112e-02 -5.9659691001295800e-01 6.0721240468296767e-01 1.1324045741285358e-08 1 0 0 0 0 V -185 0 -8.8119915257092268e-06 1.7495191066986620e-06 -1.2201760809609012e-04 1.2293925185568244e-04 0 3 0 P 680 22 3.2278505293783066e-02 -8.5446160457354238e-03 -2.1887798835075548e-01 2.2141022142584846e-01 -5.1847311997887101e-09 1 0 0 0 0 P 681 -11 -1.9693872371619296e-02 4.9598911494769769e-03 -1.6869805500424429e-01 1.6991687082635237e-01 5.0999999999809444e-04 1 0 0 0 0 P 682 11 -1.1134511620630566e-01 2.3192477807538484e-02 -9.7993752149434987e-01 9.8651580426384367e-01 5.1000000001217845e-04 1 0 0 0 0 V -186 0 8.1149960632298865e-06 -1.8330648214282749e-05 -6.6064470090381779e-04 6.6127866896457824e-04 0 2 0 P 683 22 -3.4088554612219282e-02 -8.2554812259295077e-02 -2.5302034658436674e+00 2.5317793950401808e+00 -2.1591825633066948e-08 1 0 0 0 0 P 684 22 8.6535379676112009e-02 -3.5915276045294903e-02 -1.7395111203023625e+00 1.7420324958635756e+00 -2.4872590528938253e-08 1 0 0 0 0 V -187 0 0 0 0 0 0 3 0 P 685 22 4.8589857326733973e-02 1.3323578335660716e-01 -2.2343916359592524e+00 2.2388878335116171e+00 -5.2278646084242271e-08 1 0 0 0 0 P 686 -211 -3.3027917125022947e-02 -1.7772560552591218e-01 -4.2042220790300640e+00 4.2104204432423424e+00 1.3957000000000183e-01 1 0 0 0 0 P 687 211 -7.6046266417005112e-02 7.4913366885897684e-02 -4.0295053517933166e+00 4.0333346268571777e+00 1.3957000000000538e-01 1 0 0 0 0 V -188 0 -6.6817877624448723e-06 -8.9079064077174368e-06 -3.4779225577800717e-03 3.4779530892942632e-03 0 2 0 P 688 22 -4.4867492214128044e-02 2.3675700506575817e-03 -4.5304033246336841e+00 4.5306261135849057e+00 -2.3889830966257787e-08 1 0 0 0 0 P 689 22 -5.1071270870198679e-02 -1.3026949582428546e-01 -4.5406469883444487e+01 4.5406685473533535e+01 -6.4541124784075360e-07 1 0 0 0 0 V -189 0 4.6891217694486710e-06 -1.9562678383263579e-05 -8.6339565264010737e-03 8.6339870841585665e-03 0 2 0 P 690 22 -8.5761328176232488e-03 -1.1575590548338085e-02 -9.9060856278476084e-01 9.9071331323099598e-01 -1.3413551003517654e-08 1 0 0 0 0 P 691 22 6.5650054357927076e-02 -2.2653270052635907e-01 -1.0409810134891103e+02 1.0409836853400823e+02 -1.5665366173924713e-06 1 0 0 0 0 V -190 0 1.9780422812456962e-06 -2.6537086585016806e-06 -1.3349798799999252e-03 1.3349849137881632e-03 0 2 0 P 692 22 6.5613673069342543e-02 -8.6604704842754288e-03 -1.6694994265740522e+01 1.6695125446996546e+01 1.4741986198283269e-07 1 0 0 0 0 P 693 22 1.0375102152318666e-01 -2.1855638971430655e-01 -9.7609164855150638e+01 9.7609464678841093e+01 5.5355356994291274e-07 1 0 0 0 0 V -191 0 -2.7478009408291441e-05 3.1381670829790178e-05 -3.0525826618811508e-02 3.0525859780961347e-02 0 2 0 P 694 22 -1.7272697536612652e-01 1.1661950526645287e-01 -1.1708858139308745e+02 1.1708876687096287e+02 -6.1076586043593871e-07 1 0 0 0 0 P 695 22 -4.7068669636534922e-02 1.3440139216484406e-01 -1.2708644785399200e+02 1.2708652763900392e+02 1.4871329009383499e-06 1 0 0 0 0 V -192 0 -1.8904179884929534e-04 8.9583808177137462e-05 -1.4050446118263848e-01 1.4050462381707440e-01 0 2 0 P 696 22 -5.3306811260503917e-01 2.2315226046021971e-01 -3.5912002580609197e+02 3.5912049077365697e+02 7.0414254310714528e-06 1 0 0 0 0 P 697 22 -4.6308146605089452e-02 5.1404646971901363e-02 -7.1498755954591829e+01 7.1498789429866946e+01 7.2573397528445250e-07 1 0 0 0 0 V -193 0 -1.4393598120128932e-05 -7.6413986761649216e-06 -4.7007550023909989e-03 4.7007851511251886e-03 0 2 0 P 698 22 -3.0986037201237726e-01 -1.2383221976554022e-01 -7.9250184936042331e+01 7.9250887441502542e+01 -1.0887029443745511e-06 1 0 0 0 0 P 699 22 -1.4963443924795228e-01 -1.2010838585405596e-01 -7.0814622666447136e+01 7.0814882615740103e+01 -2.5200150199663286e-07 1 0 0 0 0 V -194 0 1.0364418881804313e-05 -4.1682339689328930e-06 9.5890783686247466e-06 1.5849983612906528e-05 0 2 0 P 700 22 1.0164798686741998e-01 -1.0755441289657182e-01 8.0568521209057428e-02 1.6849792751704626e-01 -8.4149839209863921e-10 1 0 0 0 0 P 701 22 1.3661394761514128e-01 1.1733170997770475e-02 1.3986953596213972e-01 1.9586864239821491e-01 2.8598863856257514e-09 1 0 0 0 0 V -195 0 -1.6318083386012513e-05 -3.1623132179954674e-04 1.2777058853523978e-03 1.3170902064304640e-03 0 2 0 P 702 22 -7.9280882355259541e-02 -8.2723802648046330e-01 3.4541407391748251e+00 3.5527026974951803e+00 5.6673102224697903e-08 1 0 0 0 0 P 703 22 2.9088454454082716e-02 -1.4545082698642509e-01 4.7592623084882824e-01 4.9850562530781378e-01 8.6852384049419719e-09 1 0 0 0 0 V -196 0 0 0 0 0 0 1 0 P 704 310 4.7191817164383204e-01 -6.7596381966119112e-01 3.3982408254051157e+00 3.5320461467212807e+00 4.9766999999999978e-01 2 0 0 -281 0 V -197 0 -2.1473123305593131e+00 2.3728232079879604e+01 1.0116208711272211e+02 1.0615172400925057e+02 0 2 0 P 705 -211 -7.5547078529649786e-02 4.6132424694602098e-01 1.0934587920714980e+00 1.1973551422836659e+00 1.3956999999999981e-01 1 0 0 0 0 P 706 211 2.6084103118338520e-02 8.5251555380445737e-02 1.2367927303561503e+00 1.2478318199549547e+00 1.3957000000000017e-01 1 0 0 0 0 V -198 0 -2.4027387094717280e-04 8.2493744751078053e-05 2.0842074101204213e-04 3.3046306368948660e-04 0 2 0 P 707 22 -6.0505591679278969e-01 2.5727955123696838e-01 5.9072736068757992e-01 8.8388022072878936e-01 1.3021874664453383e-08 1 0 0 0 0 P 708 22 -3.1973714915596146e-01 6.0231640592610089e-02 2.1146580050810701e-01 3.8804314175538968e-01 5.5648472172753509e-09 1 0 0 0 0 V -199 0 -2.5485878177643363e-04 8.5936541128268251e-05 -3.1923313962588511e-05 2.7123607819548292e-04 0 2 0 P 709 22 -8.1645387098741112e-02 5.4707076294615367e-02 -1.5505282905830876e-02 9.9494960823139175e-02 -4.3363730730929352e-10 1 0 0 0 0 P 710 22 -2.2819930487940425e+00 7.4229473876011809e-01 -2.8056131270882406e-01 2.4160315403827366e+00 -2.9590567323038829e-08 1 0 0 0 0 V -200 0 -2.4559255386784996e-04 1.7388127496450822e-04 1.4944007831433403e-04 3.3696217171096733e-04 0 2 0 P 711 22 -1.2668365034506728e+00 9.1104942018120483e-01 7.8453196440351991e-01 1.7465326151144389e+00 -3.1448517003847370e-08 1 0 0 0 0 P 712 22 -2.2778758449242917e-02 2.0073578899497809e-03 1.8321811534405022e-04 2.2867769700280947e-02 -1.4366101473762136e-09 1 0 0 0 0 V -201 0 0 0 0 0 0 1 0 P 713 310 -1.5098184827549155e+00 2.9092034397151592e+00 1.3618773778380941e-01 3.3180173346957580e+00 4.9767000000000139e-01 2 0 0 -282 0 V -202 0 -1.3542602308228675e-04 2.3345649647975636e-04 6.6370114982256440e-05 2.7845429543042825e-04 0 2 0 P 714 22 -3.6502074185881422e-01 6.4055384712520946e-01 1.1582189603821480e-01 7.4630026440833630e-01 1.8159297639541738e-08 1 0 0 0 0 P 715 22 -7.0903799490544239e-01 1.2109809169584962e+00 4.1055700983445353e-01 1.4621103644326507e+00 2.8240735083923313e-08 1 0 0 0 0 V -203 0 -1.1678933891817813e-04 3.0775315231850765e-04 4.7723288532060891e-05 3.3650694280992977e-04 0 2 0 P 716 22 -2.2719517385056015e-01 7.0723003502146520e-01 7.6882767911012437e-02 7.4679510540650174e-01 1.7141143157431820e-08 1 0 0 0 0 P 717 22 -8.1512425762028731e-02 1.0624949834599695e-01 4.9263522365303222e-02 1.4268891368366010e-01 4.2523475114323389e-09 1 0 0 0 0 V -204 0 -2.1076783403858561e-04 4.1046495094554652e-04 1.1703445595215530e-04 4.7758589396015020e-04 0 2 0 P 718 22 -6.5462671242583359e-01 1.3485814647665917e+00 3.6810805283262488e-01 1.5436034588888716e+00 2.9091720743919306e-08 1 0 0 0 0 P 719 22 -8.3221436124212261e-02 8.8358879956083977e-02 4.1601792290377949e-02 1.2831137213607280e-01 2.9141640875509420e-09 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 720 211 -5.2478542941994910e-01 1.2496983343208399e+00 4.1305453273316539e-01 1.4238116117124400e+00 1.3957000000000100e-01 1 0 0 0 0 P 721 -211 -3.4254960382908239e-01 1.1218665657918931e+00 2.5243108594357122e-01 1.2079429045181764e+00 1.3957000000000089e-01 1 0 0 0 0 P 722 111 -6.0055524041692687e-01 1.2172053116281025e+00 2.0003482076408358e-01 1.3785822055162391e+00 1.3498000000000027e-01 2 0 0 -283 0 V -206 0 -1.9447473891990056e-04 5.5274371353390055e-04 -4.9565893297330351e-07 5.8721473421144128e-04 0 2 0 P 723 22 -2.5982203170150930e-01 6.1749692625993691e-01 4.8272029711426814e-02 6.7166965909621901e-01 1.0943040251731873e-08 1 0 0 0 0 P 724 22 -4.2370706453282975e-01 1.3252562202896150e+00 -5.0014144416798710e-02 1.3922403314776832e+00 2.8198472889517774e-08 1 0 0 0 0 V -207 0 -1.2631893660266388e-05 1.0419049357175134e-05 -2.6696576178976610e-05 3.1364370623291876e-05 0 2 0 P 725 22 -4.6823494198975957e-01 4.7188672457110969e-01 -1.1041573916247889e+00 1.2888307054094659e+00 1.2628782188818434e-08 1 0 0 0 0 P 726 22 -5.3382973256842581e-01 3.5463711928803771e-01 -1.0136324378408783e+00 1.1992465921545232e+00 2.1016754389548222e-08 1 0 0 0 0 V -208 0 -6.7313903517734341e-05 9.9654538630092044e-05 -7.5166515908795629e-05 1.4402888868969793e-04 0 2 0 P 727 22 -1.3101650110582172e-01 1.2996907453032164e-01 -1.7465549618897380e-01 2.5409019313089742e-01 5.0395868769645136e-09 1 0 0 0 0 P 728 22 -2.3037008950039869e-01 4.0504393276729772e-01 -2.2888923220240939e-01 5.1915435684026523e-01 7.6763525241215415e-09 1 0 0 0 0 V -209 0 -9.2704423794204099e-04 8.5839048407899651e-04 -1.2756349855093461e-03 1.7957947815829258e-03 0 2 0 P 729 22 -2.0944430504795655e+00 2.0257244524624145e+00 -2.9207764612683071e+00 4.1256740522859188e+00 4.9122299977543182e-08 1 0 0 0 0 P 730 22 -1.2630309300211888e+00 1.0831063858614658e+00 -1.6991878264897222e+00 2.3781517703828201e+00 -2.0499677120759282e-08 1 0 0 0 0 V -210 0 -5.9445433090224911e-06 -8.5101064071572128e-06 -6.3181678630637168e-04 6.3218133342798953e-04 0 2 0 P 731 22 -8.0010526936592108e-02 -2.3758503506559683e-02 -3.7098840420504295e+00 3.7108227869799952e+00 5.9049082860899559e-08 1 0 0 0 0 P 732 22 3.7305034843744735e-02 -3.7377947687014607e-02 -8.2907637409832069e-01 8.3075652912631692e-01 1.5822208493977791e-08 1 0 0 0 0 V -211 0 -3.1325547102733094e-05 -1.8570541701498602e-05 -1.6378291636785713e-03 1.6383819886166264e-03 0 2 0 P 733 22 -3.7451544068004897e-02 2.6063186411597508e-02 -1.0799719194094148e+00 1.0809353609498851e+00 -2.6215944711922196e-08 1 0 0 0 0 P 734 22 -1.5454345570487252e-01 -1.3988246427028672e-01 -8.9583207519752044e+00 8.9607455872143298e+00 -1.9842198469617627e-07 1 0 0 0 0 V -212 0 0 0 0 0 0 3 0 P 735 111 -5.7703969087560014e-01 -3.7810774183938528e-01 -1.3502792096078071e+01 1.3521078147085502e+01 1.3497999999999138e-01 2 0 0 -284 0 P 736 111 -3.4673042267504489e-01 -5.4396718127840726e-01 -1.2053089800896329e+01 1.2071094218387474e+01 1.3498000000002225e-01 2 0 0 -285 0 P 737 111 -2.8474772078875010e-01 -3.7743991263464560e-01 -1.0498305257454964e+01 1.0509813272901216e+01 1.3497999999993926e-01 2 0 0 -286 0 V -213 0 -3.2676314636504182e-04 -5.1265435218880078e-04 -1.5472190759993076e-02 1.5484337015765893e-02 0 2 0 P 738 22 -4.3635857813584866e-01 -7.4220650852037773e-01 -2.0760065080312124e+01 2.0777910901936160e+01 -2.5034394288676145e-07 1 0 0 0 0 P 739 22 -1.1423036674450679e-01 -1.2160516057350039e-01 -5.3102469493542177e+00 5.3128673101151769e+00 9.0150870683268169e-08 1 0 0 0 0 V -214 0 -1.8128268248540237e-04 -1.3262744922724627e-04 -7.9779390395165566e-03 7.9811356357835494e-03 0 2 0 P 740 22 -5.0199309143975779e-01 -4.4700107060362310e-01 -2.4462846770485481e+01 2.4472079583419674e+01 3.4466485697687797e-07 1 0 0 0 0 P 741 22 -5.3086553834257921e-01 -3.0864422106074030e-01 -2.0991484949840917e+01 2.1000464753771329e+01 4.6525878199802943e-07 1 0 0 0 0 V -215 0 -9.0939015618402477e-06 -1.0460110013233829e-04 -1.4755793586665655e-02 1.4756468966599868e-02 0 2 0 P 742 22 3.3653754812228466e-02 -1.4755171573109777e-01 -1.7672201570332387e+01 1.7672849584220614e+01 3.2761381366730708e-07 1 0 0 0 0 P 743 22 -4.6659402582446691e-02 -2.0435988264117214e-03 -3.4308038507405652e+00 3.4311217317958582e+00 7.0939641976885659e-08 1 0 0 0 0 V -216 0 4.2719192771160285e-04 -7.7786388139227660e-04 -5.6278030755772625e-02 5.6285159353367184e-02 0 2 0 P 744 22 2.9494571685593229e-01 -6.0196968709240006e-01 -3.8818431327087154e+01 3.8824218873994759e+01 -4.8856724234685304e-07 1 0 0 0 0 P 745 22 1.7819716725440926e-01 -2.5956522593542897e-01 -2.3513153275824671e+01 2.3515261115057957e+01 -2.6299599699262965e-07 1 0 0 0 0 V -217 0 0 0 0 0 0 3 0 P 746 111 9.0787559229631887e-02 1.2427107709724174e-01 -3.0873960200556922e+01 3.0874638844000859e+01 1.3498000000036922e-01 2 0 0 -287 0 P 747 111 -5.0437655040873934e-02 3.2693877514124871e-02 -1.7163568723570236e+01 1.7164204723079695e+01 1.3497999999986307e-01 2 0 0 -288 0 P 748 111 -6.5316449784464256e-02 3.7733188003466150e-01 -4.4759072653110202e+01 4.4760914310959961e+01 1.3497999999923233e-01 2 0 0 -289 0 V -218 0 -1.5822259163638782e-06 8.3004133194261888e-06 -1.7587688037124297e-03 1.7588066193731115e-03 0 2 0 P 749 22 2.0974667560251483e-02 1.3905795106770566e-01 -2.5892194880772948e+01 2.5892576789388098e+01 9.3652345910493547e-08 1 0 0 0 0 P 750 22 -4.8181633102780015e-02 3.6707558980809902e-03 -4.3504915428221684e+00 4.3507598886153813e+00 -1.7962699310840955e-08 1 0 0 0 0 V -219 0 -6.0885520037662093e-05 2.3919569959006127e-04 -2.2183309271392341e-02 2.2184726144586105e-02 0 2 0 P 751 22 -2.3346231930607673e-02 3.3368085828149791e-01 -3.2398035133019995e+01 3.2399761857799611e+01 -5.3726900748371917e-07 1 0 0 0 0 P 752 22 -1.6313313682736177e-01 3.9892457962203093e-01 -3.5544712294171042e+01 3.5547325149945557e+01 4.1214575427589806e-07 1 0 0 0 0 V -220 0 0 0 0 0 0 1 0 P 753 310 -6.3223538503737436e-02 5.2421010596387940e-01 -2.6637693007269625e+01 2.6647573203379267e+01 4.9767000000005945e-01 2 0 0 -290 0 V -221 0 2.0048090902195636e-06 8.9672259795770156e-07 -4.6812166291564333e-04 4.6813224977209299e-04 0 2 0 P 754 22 7.0844262235664604e-02 9.0886718416084797e-02 -2.2369862340242737e+01 2.2370159150674066e+01 5.0756994874033629e-07 1 0 0 0 0 P 755 22 4.9117449856543399e-02 -3.7229550435567797e-02 -5.6411220596044656e+00 5.6414587346414393e+00 1.3303903045870173e-07 1 0 0 0 0 V -222 0 1.2858031834614254e-05 -3.9243445535797339e-06 -2.3160639653473059e-04 2.3199827540411474e-04 0 2 0 P 756 22 6.7348023089347203e-02 -2.7954517145810454e-03 -1.5224055529912714e+00 1.5238970564126009e+00 -3.4351792450077814e-08 1 0 0 0 0 P 757 22 1.7157471127560822e+00 -5.4141534002043978e-01 -3.0595747862994205e+01 3.0648600392534313e+01 -5.7615682271662964e-07 1 0 0 0 0 V -223 0 3.4531293679091908e-05 1.5563027080714810e-05 -8.7596127501591030e-04 8.7693204108706558e-04 0 2 0 P 758 22 6.6856071047275326e-02 1.0072858773499746e-02 -2.9838447350427386e+00 2.9846106277975397e+00 6.2828045247208064e-08 1 0 0 0 0 P 759 22 2.1837785894747527e-01 1.1848019858081581e-01 -4.2517335006861705e+00 4.2589862887301377e+00 3.0606382945841146e-08 1 0 0 0 0 V -224 0 2.8625886738894269e-04 -2.6063789740850597e-05 -8.7733773952114436e-04 9.2332238873139600e-04 0 2 0 P 760 22 1.5199392677691252e+00 -7.7245472134219270e-02 -4.7337411078391698e+00 4.9723723831505415e+00 4.6770570909566132e-08 1 0 0 0 0 P 761 22 1.3659640024167206e+00 -1.8551521274041968e-01 -4.1110918038393178e+00 4.3360522793955392e+00 7.0902952219077496e-08 1 0 0 0 0 V -225 0 1.4780518623598162e-04 -4.9543812916071910e-05 -5.3967199353665782e-04 5.6779370388859154e-04 0 2 0 P 762 22 2.0962699800839948e-01 -1.5958816195499440e-02 -5.6770325640310582e-01 6.0538016934738270e-01 -1.6708742005759062e-09 1 0 0 0 0 P 763 22 3.1552309807781877e-02 -6.4883695559096663e-02 -3.1289992920598142e-01 3.2111027373897583e-01 3.9658174144327229e-09 1 0 0 0 0 V -226 0 4.5914316244744172e-05 -8.7556441254643311e-06 -1.4130413639296404e-04 1.4907078755581297e-04 0 2 0 P 764 22 4.5871076358549678e-01 -2.2297390960807857e-02 -1.4180873432760761e+00 1.4905986889275895e+00 2.0169101495023550e-08 1 0 0 0 0 P 765 22 2.7963813933434434e-01 -1.1850227160921155e-01 -8.5422688498434129e-01 9.0661118919687322e-01 9.0504957947772040e-09 1 0 0 0 0 V -227 0 3.9454801306777613e-06 -6.4519453474190326e-06 -5.9396807095325114e-05 6.2373166366505269e-05 0 2 0 P 766 22 8.2098896224541723e-02 -3.1702415371112826e-02 -2.2310459683117745e-01 2.3983522057623824e-01 -5.1179729249862183e-09 1 0 0 0 0 P 767 22 -5.1616377119159840e-02 -1.8144888583195972e-02 -2.3579121486079727e-01 2.4205574641832933e-01 -5.5882386043700342e-09 1 0 0 0 0 V -228 0 0 0 0 0 0 3 0 P 768 111 3.7002950171216781e-01 -1.9238783528284842e-01 -3.8963210453036928e-01 5.8648758604333662e-01 1.3497999999999979e-01 2 0 0 -291 0 P 769 111 1.7265984339244744e-01 -1.2929032633439427e-01 -2.1692978391523851e-01 3.3437335652451544e-01 1.3497999999999999e-01 2 0 0 -292 0 P 770 111 1.2898918233439474e+00 -7.0915315048256855e-01 -1.4649828813643373e+00 2.0811327564236457e+00 1.3497999999999941e-01 2 0 0 -293 0 V -229 0 1.8105475636886199e-06 -1.4037036155747547e-06 -4.4611526867693772e-06 5.0713386360525643e-06 0 2 0 P 771 22 3.2129596193369037e-01 -2.1560522311609429e-01 -6.6335525812086094e-01 7.6795631768117523e-01 -1.0880941008727926e-08 1 0 0 0 0 P 772 22 2.9369153303394503e-03 -3.5770035524720765e-02 -1.3554801321797202e-01 1.4021906004690263e-01 -1.5748372835187105e-09 1 0 0 0 0 V -230 0 1.9961067893415393e-04 -3.3001548943864295e-04 -2.2700714612597082e-04 4.5403736386920285e-04 0 2 0 P 773 22 2.5601040187585711e-01 -2.9508423641769105e-01 -2.3574531421529707e-01 4.5628049007745097e-01 6.7198973566581549e-09 1 0 0 0 0 P 774 22 9.5867406848488823e-02 -2.8667385332393386e-01 -1.6442755013292656e-01 3.4410590974024569e-01 2.5926923206215825e-09 1 0 0 0 0 V -231 0 2.2368252607166250e-05 -6.8500879813622318e-05 -4.5940525174269053e-05 8.7092061293489570e-05 0 2 0 P 775 22 1.4761898455890435e-01 -2.4077394215186579e-01 -1.9391326467091363e-01 3.4258693792508182e-01 3.6098136877905700e-09 1 0 0 0 0 P 776 22 3.2243983358019597e-02 -3.1004116909430002e-01 -1.7549418751687709e-01 3.5771973785124217e-01 4.4007455397946294e-09 1 0 0 0 0 V -232 0 9.8304170585273405e-05 -1.6159687619442888e-04 -1.2609112112979315e-04 2.2773019926416549e-04 0 2 0 P 777 22 3.4490325099256341e-01 -4.4998711939998187e-01 -3.9099285410802587e-01 6.8871044142997628e-01 7.4067961986115510e-09 1 0 0 0 0 P 778 22 6.3115496389518233e-01 -1.1545018617969054e+00 -8.6096089180534885e-01 1.5724136842956791e+00 1.1425320195392982e-08 1 0 0 0 0 V -233 0 1.1122709927774908e-05 -2.1647811598798974e-05 -2.2493550885262049e-05 3.3178056314969242e-05 0 2 0 P 779 22 8.5633839927659017e-01 -1.6084541644771919e+00 -1.6316025702019512e+00 2.4459286989585833e+00 2.7517390814971472e-08 1 0 0 0 0 P 780 22 9.6791518803264767e-02 -2.4659528208327003e-01 -2.9592016947303534e-01 3.9717323419248718e-01 5.8625258095628451e-09 1 0 0 0 0 V -234 0 3.1240077147080688e-05 -3.5189342922119918e-05 -3.4110738232986830e-05 5.8792468142375189e-05 0 2 0 P 781 22 1.1138017837425890e-01 -2.0490957335919460e-01 -2.1023007843101232e-01 3.1399070570008669e-01 -4.8448918495990366e-09 1 0 0 0 0 P 782 22 3.6370853484681809e-01 -3.3023826155988245e-01 -3.0851469475995547e-01 5.8010561504034841e-01 -3.3980513735037352e-09 1 0 0 0 0 V -235 0 4.0778003996139601e-04 -5.5520072629535377e-04 -4.2702802956344759e-04 8.1158401682129985e-04 0 2 0 P 783 22 1.1990296316225013e-01 -1.0659998138624037e-01 -1.1083180358523703e-01 1.9499734688603140e-01 -2.1394779846874421e-09 1 0 0 0 0 P 784 22 1.1835240932081812e+00 -1.6680421723552390e+00 -1.2541194765564847e+00 2.3991476881255442e+00 1.0900851255952963e-08 1 0 0 0 0 V -236 0 2.5019023503185277e-04 -3.8969619084272826e-04 -2.3070835542539443e-04 5.2208278270226042e-04 0 2 0 P 785 22 1.1114454312382184e-01 -1.7696105258294867e-01 -4.2833064889533874e-02 2.1331431045595425e-01 -1.3626064069941204e-09 1 0 0 0 0 P 786 22 3.7199369234556190e-01 -5.7557483271619414e-01 -4.0268403426534527e-01 7.9487113839500623e-01 -6.8398336049022068e-09 1 0 0 0 0 V -237 0 0 0 0 0 0 1 0 P 787 130 9.8650468822015294e-02 -1.2307530988115232e+00 -3.7309446347831554e-01 1.3825194439179300e+00 4.9767000000000000e-01 1 0 0 0 0 V -238 0 1.1045081382303614e-04 -1.9611192218607477e-04 -9.8662618488687496e-05 2.5015204678762945e-04 0 2 0 P 788 22 1.7345781340477220e-01 -2.1484988282423548e-01 -1.7309149725615489e-01 3.2589684196556729e-01 -4.7815388017131130e-09 1 0 0 0 0 P 789 22 1.4566996424928100e-01 -3.5178027346397178e-01 -1.1197640841153227e-01 3.9687254291966306e-01 -6.9078540891161175e-09 1 0 0 0 0 V -239 0 1.8468638409301406e+01 -2.6827760103429792e+01 1.6552768978321804e+01 4.1166455427907792e+01 0 2 0 P 790 22 1.4399808248346276e-02 -2.3582254898037949e-01 4.1623740692332933e-02 2.3990032278931012e-01 -3.4749534811357269e-09 1 0 0 0 0 P 791 22 6.8309791497161182e-02 -4.7728572907365353e-02 5.1399314245310773e-02 9.7908803439974323e-02 -1.7869846700933706e-09 1 0 0 0 0 V -240 0 0 0 0 0 0 1 0 P 792 310 -2.8124579874435557e-01 -6.0355450546260614e-01 1.3483890520791870e+00 1.5840472546747366e+00 4.9766999999999972e-01 2 0 0 -294 0 V -241 0 -3.1945784448189416e-06 -5.3725591939280522e-05 1.6588582940981278e-05 6.0253934290989416e-05 0 2 0 P 793 22 -4.2431717602095485e-02 -1.7065507290756593e-01 -8.5242264557243777e-03 1.7605756730234320e-01 3.5513829115735367e-09 1 0 0 0 0 P 794 22 2.2298488955750449e-02 -1.6794034597408625e-01 1.1307064440683022e-01 2.0368149901790630e-01 2.9680199883836233e-09 1 0 0 0 0 V -242 0 5.0694905043825419e-05 -4.2000152339763787e-05 -6.8309504997703032e-06 8.4999814777126956e-05 0 2 0 P 795 22 1.5584634534368713e-01 -1.0263287982919059e-01 -1.3593980128020414e-02 1.8709994033868069e-01 -3.0329486984091410e-09 1 0 0 0 0 P 796 22 -2.7541080608622072e-02 -3.6665729502916179e-03 -3.6946785943397691e-03 2.8028655483378091e-02 -8.2578112239195388e-10 1 0 0 0 0 V -243 0 1.3546002605985201e-05 3.9701644447295714e-06 8.9839003714687485e-05 9.3556134855259362e-05 0 2 0 P 797 22 -1.7010038789049005e-02 -2.4498372959110774e-02 3.5160944822578033e-02 4.6106439225611605e-02 -1.5077216826038315e-09 1 0 0 0 0 P 798 22 1.0025454830955384e-01 4.8896300637881043e-02 5.1692840711181520e-01 5.2882586997232006e-01 -1.0176856711513522e-08 1 0 0 0 0 V -244 0 2.0130756880670801e-06 -5.5889587774135198e-06 1.3812102881794847e-05 1.5687789478006126e-05 0 2 0 P 799 22 1.0070312423016907e-01 -1.0973874231318186e-01 2.3622708971257497e-01 2.7926143433755540e-01 5.3910476241811805e-09 1 0 0 0 0 P 800 22 -4.0009725070936815e-02 -5.8766052599800174e-02 1.8020209792422032e-01 1.9371892817870104e-01 3.5151837269971728e-09 1 0 0 0 0 V -245 0 6.1005719298474498e-05 -7.3074283000199581e-05 1.7341882046221938e-04 2.0962424595871292e-04 0 2 0 P 801 22 7.9782100815240647e-02 -1.5996345991470945e-01 2.2331025895294873e-01 2.8604363980345920e-01 3.5387194141677264e-09 1 0 0 0 0 P 802 22 3.8990695981770317e-02 1.7694225723629116e-02 1.1432100841662664e-01 1.2207642263146475e-01 1.0629872772696937e-09 1 0 0 0 0 V -246 0 1.7511595143831891e-04 4.8397079760704210e-05 3.2982224558826870e-04 3.7941004354449532e-04 0 2 0 P 803 22 1.5600434170310245e-02 9.4913813291519437e-03 1.9351439156746922e-03 1.8363132843061666e-02 -5.9820142965003035e-10 1 0 0 0 0 P 804 22 4.9282608300613445e-01 1.3102328053997278e-01 9.5566109009058631e-01 1.0832048593169039e+00 1.1940376278905277e-08 1 0 0 0 0 V -247 0 1.7511343964231001e-04 -2.0697653730443341e-04 2.7235612070189725e-03 2.7374491612673340e-03 0 2 0 P 805 22 1.7218919523142209e-01 -2.1083677319926525e-01 3.4101076510163324e+00 3.4209553425041448e+00 -2.9539226604911881e-08 1 0 0 0 0 P 806 22 3.1662369537687629e-01 -3.6691899297455821e-01 4.1924603133325640e+00 4.2203795552945413e+00 -5.2782249880227274e-08 1 0 0 0 0 V -248 0 2.0614380437322048e-04 1.4426550738634973e-05 2.0861159359601305e-03 2.0967997636526397e-03 0 2 0 P 807 22 1.3990309305970045e-01 6.4886624589748990e-03 9.2863623928834471e-01 9.3913803197814194e-01 4.8280789873860125e-09 1 0 0 0 0 P 808 22 4.8445379542728417e-01 3.7205671979842966e-02 5.3896756729195872e+00 5.4115324632854769e+00 6.2862549091451636e-08 1 0 0 0 0 V -249 0 4.7491247671490978e-05 -2.1085900044176764e-05 4.4041295422336043e-04 4.4743813170560544e-04 0 2 0 P 809 22 1.1201791916508728e-01 -8.5668643033197753e-02 7.6864017996045475e-01 7.8146967750698138e-01 -1.6829967841972784e-08 1 0 0 0 0 P 810 22 -4.2353759563555516e-03 3.7813679349630890e-02 2.3088774561897993e-01 2.3400205946201227e-01 -5.7693159642461066e-09 1 0 0 0 0 V -250 0 1.2861543712831895e-05 -4.8496149510012082e-05 1.1442183068218316e-03 1.1456660407887969e-03 0 2 0 P 811 22 2.4908681372536362e-03 -2.1235277486618756e-01 4.0601686194926092e+00 4.0657187709100064e+00 8.0245208846546765e-08 1 0 0 0 0 P 812 22 5.8970549102711156e-02 -1.9395617559893909e-02 1.4077036934568454e+00 1.4090718236534467e+00 3.0640017316496386e-08 1 0 0 0 0 V -251 0 -1.3818947945306597e-05 2.1842057786270420e-05 4.7733674301035921e-04 4.7837040548028573e-04 0 2 0 P 813 22 3.2079345679078386e-02 3.8583815289098426e-02 9.2419945482044652e-01 9.2556060175002675e-01 -5.1010638243068579e-09 1 0 0 0 0 P 814 22 -1.3637786702595794e-01 1.2626913439256121e-01 2.6785000182190211e+00 2.6849404396585959e+00 3.6160030697131856e-08 1 0 0 0 0 V -252 0 -5.4492728935536579e-04 -2.8932774744578081e-04 1.6151366086242076e-02 1.6163262486577307e-02 0 2 0 P 815 22 -6.6021462350147531e-01 -3.8595678428474406e-01 1.8438051258210113e+01 1.8453904199079506e+01 3.2171500038182897e-07 1 0 0 0 0 P 816 22 -5.3749933131049032e-01 -2.4996636986681534e-01 1.7061577643937785e+01 1.7071872200123256e+01 1.6195375561180828e-07 1 0 0 0 0 V -253 0 1.1144751722804713e-06 2.2551986622666825e-07 4.1040742908197232e-04 4.1042113478698188e-04 0 2 0 P 817 22 4.5629404863430714e-02 -1.1642512105985747e-02 1.9394121213709126e+00 1.9399837543641321e+00 2.9824142272781424e-08 1 0 0 0 0 P 818 22 2.0436465003816941e-03 2.1289402798206913e-02 1.5616272323962965e+01 1.5616286969421836e+01 1.7297546217208952e-07 1 0 0 0 0 V -254 0 0 0 0 0 0 1 0 P 819 310 -3.8383409842285338e-01 5.9745474691944864e-03 5.3947223891583342e+01 5.3950885121078876e+01 4.9767000000003264e-01 2 0 0 -295 0 V -255 0 -1.0639756118574791e-05 4.7442924144940014e-05 1.5938478020500382e-02 1.5938555698472762e-02 0 2 0 P 820 22 -5.8553590312220719e-03 4.0547169124994571e-02 5.9820049497976138e+00 5.9821452320682242e+00 3.7159654019884772e-08 1 0 0 0 0 P 821 22 -1.2978315427336745e-01 5.6426816932132173e-01 1.9720606054207701e+02 1.9720691051978727e+02 -1.5451289888400699e-06 1 0 0 0 0 V -256 0 -1.1942493775670617e-06 -2.1852922237907361e-06 6.4925813864557982e-04 6.4926310461294512e-04 0 2 0 P 822 22 -1.1042847752277536e-01 -1.6588006793615703e-01 6.8288623595263090e+01 6.8288914350581905e+01 1.3902072655785801e-06 1 0 0 0 0 P 823 22 -2.1413308995699704e-01 -4.2801755753281762e-01 1.0816048589232031e+02 1.0816154473967444e+02 1.9791075844626416e-06 1 0 0 0 0 V -257 0 2.8653650379485755e-04 1.0804188805309905e-04 -4.8071713309571552e-04 5.7244279255379618e-04 0 2 0 P 824 22 4.7703103867972019e-01 1.0992524762672437e-01 -7.5790457674784251e-01 9.0225357820569252e-01 6.7037437338791641e-09 1 0 0 0 0 P 825 22 2.5057494215456455e-01 1.6442696539652243e-01 -4.6278687616514869e-01 5.5135806998353554e-01 7.0120302710568519e-09 1 0 0 0 0 V -258 0 1.8587793851945280e-05 3.6174515325219057e-06 -6.9893604366849375e-05 7.2806464000479173e-05 0 2 0 P 826 22 2.2286710588623665e-01 4.9268069914418745e-03 -9.7359446667994010e-01 9.9878937011916313e-01 -1.6815466885704351e-08 1 0 0 0 0 P 827 22 1.0924219153414572e-01 5.9706430093464019e-02 -2.7519901711605432e-01 3.0204836239802890e-01 -6.6305654430287621e-09 1 0 0 0 0 V -259 0 5.7576334225938695e+00 1.9002078883087317e+00 -1.5149765136301579e+02 1.5263007531342379e+02 0 2 0 P 828 -2112 2.4269349090631004e-01 4.3215897296158726e-02 -8.4282783734131055e+00 8.4840695346602661e+00 9.3956999999999913e-01 1 0 0 0 0 P 829 111 1.2354331075214774e-01 7.7654260357407287e-02 -1.2083225043417880e+00 1.2245635992801958e+00 1.3497999999999932e-01 2 0 0 -296 0 V -260 0 4.8423601072331812e-06 -7.7079461344629559e-08 -3.8194171506663064e-04 3.8200837165843014e-04 0 2 0 P 830 22 1.5136237396146299e-01 -1.8088235516940606e-02 -7.9845222038862262e+00 7.9859772462027152e+00 -1.5148241528382497e-07 1 0 0 0 0 P 831 22 -2.6648822109476368e-02 1.6103076795521344e-02 -1.8522736625028962e+00 1.8525353409865077e+00 -3.6449709767894410e-08 1 0 0 0 0 V -261 0 -1.4016441188887692e-05 -1.4196461603709633e-05 -6.8703731948579179e-03 6.8704046189002749e-03 0 2 0 P 832 22 -3.2011013017572532e-01 -3.1740886771994209e-01 -1.4013516566754168e+02 1.4013589074735316e+02 -1.2069020707199923e-06 1 0 0 0 0 P 833 22 -5.3583865346171133e-03 -1.2239809745908530e-02 -1.9398209662402031e+01 1.9398214263992354e+01 1.9111864773006230e-07 1 0 0 0 0 V -262 0 2.5603167340344248e+02 1.0450489290107588e+02 1.9046479329906953e+04 1.9049459722949701e+04 0 2 0 P 834 -2212 1.3926466526079706e+00 5.1269058462175687e-01 1.0188474725798451e+02 1.0189987434119270e+02 9.3826999999959637e-01 1 0 0 0 0 P 835 211 9.1023602438936133e-02 9.2901680753423158e-02 8.4871238058740062e+00 8.4892677128019152e+00 1.3957000000004460e-01 1 0 0 0 0 V -263 0 1.8394077158685279e-04 -9.8199656539660080e-05 1.4442938950257420e-03 1.4629814273818371e-03 0 2 0 P 836 22 2.1416491787321015e-01 -7.1084589581390301e-02 1.6688884845465850e+00 1.6840749403680915e+00 1.3415571573086021e-08 1 0 0 0 0 P 837 22 2.4168037297953526e-02 -5.6153184501989147e-02 2.0249016178371551e-01 2.1151723281034340e-01 4.8280789873860125e-09 1 0 0 0 0 V -264 0 1.8859229146093403e-05 -1.3724660068613739e-05 3.4027083724050614e-04 3.4118961850225797e-04 0 2 0 P 838 22 8.2580771768056643e-02 3.9487544711140701e-03 1.3880997221630018e+00 1.3905596050499538e+00 -1.8733826177093610e-08 1 0 0 0 0 P 839 22 1.9840513034953641e-01 -2.0843410012139377e-01 3.6816360250235531e+00 3.6928651736278786e+00 3.6201983179108816e-08 1 0 0 0 0 V -265 0 -3.5214514189898612e-05 -1.0251149630895667e-05 8.4473245765761152e-05 9.2341170646298486e-05 0 2 0 P 840 22 -4.5833555473571297e-01 -1.4153351333293879e-01 9.3821525731023914e-01 1.0537319797657170e+00 1.5366822481155396e-08 1 0 0 0 0 P 841 22 -2.4238349400179526e-01 -6.2449872014674085e-02 7.4268291148327781e-01 7.8372677106785482e-01 -5.6458430611445293e-09 1 0 0 0 0 V -266 0 -2.8573182375079734e-04 1.4028026445702631e-05 3.9525790403060275e-04 4.9318312367514078e-04 0 2 0 P 842 22 -4.8670088585876731e-01 6.7444217589618599e-03 7.1792170013443690e-01 8.6737235778210742e-01 1.4765942465241930e-08 1 0 0 0 0 P 843 22 -5.0142434205563934e-02 1.9611943423620378e-02 2.4703194411862188e-02 5.9237993273412434e-02 1.7313110183026490e-09 1 0 0 0 0 V -267 0 -8.6170275025045757e-06 -4.3250915510136134e-05 5.2160237559276391e-05 6.9242695084572025e-05 0 2 0 P 844 22 5.4231022688158151e-04 -2.6861432599347190e-01 2.4786507805192448e-01 3.6550109048673990e-01 6.0670144021489576e-09 1 0 0 0 0 P 845 22 -1.0296354016542107e-01 -2.4546224637773770e-01 3.7210691149490288e-01 4.5751148464544261e-01 1.0171528513917132e-08 1 0 0 0 0 V -268 0 -1.3559423048696604e-05 3.7534368444001442e-04 1.5163900406594260e-03 1.5674112564740576e-03 0 2 0 P 846 22 -6.9512889961407143e-02 1.8523523316628454e-01 8.5899620678622435e-01 8.8148659476481905e-01 -8.7582705886121962e-09 1 0 0 0 0 P 847 22 5.5165173053377328e-02 2.1192952142700683e-01 7.4555104772462577e-01 7.7704805715835634e-01 -1.4236979881497517e-08 1 0 0 0 0 V -269 0 -5.7187178484318609e-06 3.2522945975803378e-05 2.1002784616264002e-05 3.9307279355949866e-05 0 2 0 P 848 22 -1.6655797726448668e-01 6.6917956386937594e-01 3.8197532690296521e-01 7.8831973136124955e-01 8.8014910795892587e-09 1 0 0 0 0 P 849 22 -4.3533895632700277e-02 5.2563487063961045e-01 3.8961622089425535e-01 6.5573471532716643e-01 -6.1864639891248304e-09 1 0 0 0 0 V -270 0 -5.6206394003341885e-05 1.4382661140616043e-05 7.0346581045973103e-05 9.9480978229743713e-05 0 2 0 P 850 22 -1.3308214918023575e-01 3.0659907402193201e-03 2.2689472110321066e-01 2.6306172886635065e-01 1.6504720410748647e-09 1 0 0 0 0 P 851 22 -5.7674123015942616e-02 4.5746655438107388e-02 1.1851275682818740e-02 7.4562146460125281e-02 3.4681216603532039e-10 1 0 0 0 0 V -271 0 -1.1581993380902514e+01 2.3534097171040013e+01 1.6681591596055529e+01 3.1902220089222034e+01 0 2 0 P 852 111 -3.7477557912726089e-01 4.3283607439480459e-01 2.3007234663969625e-01 6.3163018222372425e-01 1.3497999999999977e-01 2 0 0 -297 0 P 853 111 -4.2857691402210413e-01 1.1995405825931629e+00 9.2699947663451365e-01 1.5811778554613383e+00 1.3497999999999952e-01 2 0 0 -298 0 V -272 0 1.0296998203039187e-04 -5.6842865030906221e-05 2.4272796414930123e-04 2.7089352983749546e-04 0 2 0 P 854 22 3.4669330381668156e-01 -1.3248240772383829e-01 6.5885331005432801e-01 7.5619806891923225e-01 1.5717361896985836e-08 1 0 0 0 0 P 855 22 2.0595122390644877e-01 -1.7259580711126687e-01 6.4387859751165588e-01 6.9769969728711434e-01 1.4105963409331609e-08 1 0 0 0 0 V -273 0 3.6676439077489542e-05 1.1805695027833619e-05 1.1327146249227364e-04 1.2018419345618263e-04 0 2 0 P 856 22 3.6190906908006160e-01 1.0677278790435563e-01 1.2295064533120010e+00 1.2861044752488504e+00 -1.4610934527346149e-08 1 0 0 0 0 P 857 22 7.3492547124568597e-02 3.3377641767334466e-02 1.1518728139867770e-01 1.4065323049551193e-01 -1.5876933113888203e-09 1 0 0 0 0 V -274 0 5.7537881395215671e-05 -3.6231874647802080e-05 1.9961401955402903e-04 2.1797662937944319e-04 0 2 0 P 858 22 6.4021119248965128e-02 -1.1477165960550940e-01 3.3395150490363512e-01 3.5887998716269448e-01 -3.1280864129179165e-09 1 0 0 0 0 P 859 22 7.6729789267323587e-02 2.6140150236961927e-02 1.5435035681826703e-01 1.7434104698935698e-01 1.3093489547262425e-09 1 0 0 0 0 V -275 0 1.4143044732445466e-04 -2.2649987396631322e-05 3.1342270375823419e-04 3.5085726064462957e-04 0 2 0 P 860 22 2.8685316037143427e-01 -4.8396331837284201e-02 5.1442350835622341e-01 5.9098095273867313e-01 4.8866709372530123e-09 1 0 0 0 0 P 861 22 2.5452894429955453e-03 2.0493721485830138e-03 1.2690971458265818e-01 1.2695177856179796e-01 2.9992482224451962e-09 1 0 0 0 0 V -276 0 -1.9609430742211879e-05 3.9652464627463171e-05 -1.1126065812029840e-05 4.6250270136116946e-05 0 2 0 P 862 22 -3.2898999259710410e-01 6.9728372043979336e-01 -1.7819363398421703e-01 7.9132292599917975e-01 -1.7669069459572595e-08 1 0 0 0 0 P 863 22 -1.7220785573699261e-02 2.7932382203434310e-03 -1.8240620196887925e-02 2.5240401357704851e-02 -1.6475184610426693e-09 1 0 0 0 0 V -277 0 7.4946606271707991e-06 5.3444972193909493e-06 -3.1237538630684658e-04 3.1258920260177308e-04 0 2 0 P 864 22 -2.5939392912113890e-02 1.1055292965454789e-02 -5.9037889096908880e-01 5.9105186448322145e-01 8.3721962740482772e-09 1 0 0 0 0 P 865 22 1.7061439696592312e-01 9.2113508844967287e-02 -5.4396353456212836e+00 5.4430898269545551e+00 9.9847162285358464e-08 1 0 0 0 0 V -278 0 3.0608365998778314e-06 2.1547102438792658e-06 -7.4597435973107975e-05 7.4933423829997312e-05 0 2 0 P 866 22 4.8273506823902829e-02 9.5798710810473378e-02 -1.1178139420491429e+00 1.1229495685441402e+00 -4.2295786842203116e-09 1 0 0 0 0 P 867 22 2.0367091324788124e-02 -4.7478392116268080e-02 -5.5506615411710836e-01 5.5746520211878325e-01 3.5118086098223823e-09 1 0 0 0 0 V -279 0 7.3497839080402468e-05 1.0063970414168227e-04 -2.9324068201009852e-04 3.2051146452705272e-04 0 2 0 P 868 22 1.0239467217267258e-01 2.5046453098124133e-01 -5.7194082843864680e-01 6.3271910150088562e-01 1.0032002126244140e-08 1 0 0 0 0 P 869 22 1.8313482452674731e-01 1.4050756331554393e-01 -5.6726088679196596e-01 6.1242603878943769e-01 1.0150187753949927e-08 1 0 0 0 0 V -280 0 -1.5809400362047432e+01 2.5837836478030926e+01 -5.1796863069841450e+01 6.8055227482946052e+01 0 2 0 P 870 -211 -8.1637091209585885e-02 -7.4492674307197896e-03 -4.3773712239139478e-01 4.6670513117590162e-01 1.3956999999999992e-01 1 0 0 0 0 P 871 211 -1.6338948922982252e-01 4.0790447592571305e-01 -3.6505159475434984e-01 5.8806856607346980e-01 1.3956999999999983e-01 1 0 0 0 0 V -281 0 9.7759124212234610e+01 -1.4002773145830108e+02 7.0395476782909634e+02 7.3167290163445716e+02 0 2 0 P 872 211 4.0810021953445413e-01 -4.2654016644429393e-01 2.8125298200993463e+00 2.8772010838004451e+00 1.3956999999999808e-01 1 0 0 0 0 P 873 -211 6.3817952109377921e-02 -2.4942365321689722e-01 5.8571100530576925e-01 6.5484506292083533e-01 1.3957000000000025e-01 1 0 0 0 0 V -282 0 -5.3714327819125330e+01 1.0349979751754918e+02 4.8451074588229694e+00 1.1804403831392172e+02 0 2 0 P 874 111 -1.2847317695017593e+00 2.5951810659854240e+00 4.7745847840927308e-02 2.8993102198975556e+00 1.3497999999999977e-01 2 0 0 -299 0 P 875 111 -2.2508671325315618e-01 3.1402237372973529e-01 8.8441889942882115e-02 4.1870711479820233e-01 1.3498000000000004e-01 2 0 0 -300 0 V -283 0 -6.1795070696748610e-04 1.2524624417946631e-03 2.0582895725539617e-04 1.4185137206031864e-03 0 2 0 P 876 22 -4.5824644823641209e-02 1.6054686887279063e-01 5.7966219939721009e-02 1.7673504981233912e-01 -3.8846800367961604e-09 1 0 0 0 0 P 877 22 -5.5473059559328564e-01 1.0566584427553118e+00 1.4206860082436257e-01 1.2018471557038997e+00 -2.2071067851323759e-08 1 0 0 0 0 V -284 0 -4.7338734079736979e-05 -3.1018909318463585e-05 -1.1077315728494936e-03 1.1092317097026376e-03 0 2 0 P 878 22 -2.8286993319012221e-01 -2.6091458217827790e-01 -7.8416705460692491e+00 7.8511074869336896e+00 -9.2983126449202629e-08 1 0 0 0 0 P 879 22 -2.9416975768547787e-01 -1.1719315966110738e-01 -5.6611215500088221e+00 5.6699706601518125e+00 7.2786300191953485e-08 1 0 0 0 0 V -285 0 -9.6203825882511234e-06 -1.5092913852140837e-05 -3.3442503937372516e-04 3.3492458995601059e-04 0 2 0 P 880 22 -1.5837994384267873e-01 -1.8321208992150420e-01 -5.5515493446030559e+00 5.5568292219635138e+00 -7.1305501247014746e-08 1 0 0 0 0 P 881 22 -1.8835047883236619e-01 -3.6075509135690309e-01 -6.5015404562932728e+00 6.5142649964239583e+00 -1.1817158703179584e-07 1 0 0 0 0 V -286 0 -4.5799783642441675e-05 -6.0708708357014615e-05 -1.6885828201605106e-03 1.6904338081723976e-03 0 2 0 P 882 22 -2.7959988872439190e-01 -2.8973793145834364e-01 -8.8827049741258044e+00 8.8918261242592749e+00 -2.0475545650215887e-07 1 0 0 0 0 P 883 22 -5.1478320643582294e-03 -8.7701981176301971e-02 -1.6156002833291603e+00 1.6179871486419393e+00 -3.6960718842194283e-08 1 0 0 0 0 V -287 0 2.6240129087857226e-07 3.5917796805956739e-07 -8.9234329900518111e-05 8.9236291368777044e-05 0 2 0 P 884 22 4.8994414984101710e-02 1.0476408181621308e-01 -2.8477584219978002e+01 2.8477819069786200e+01 7.3379708839923918e-08 1 0 0 0 0 P 885 22 4.1793144245530177e-02 1.9506995281028675e-02 -2.3963759805789202e+00 2.3968197742146580e+00 2.9998129994434130e-08 1 0 0 0 0 V -288 0 -3.9236826395317965e-06 2.5433458299596637e-06 -1.3352007855739634e-03 1.3352502617090453e-03 0 2 0 P 886 22 -5.8693005136177208e-02 7.2278789657185177e-02 -1.4778051571793698e+01 1.4778344878601269e+01 -2.6034422531211596e-07 1 0 0 0 0 P 887 22 8.2553500953032773e-03 -3.9584912143060307e-02 -2.3855171517765390e+00 2.3858598444784263e+00 -2.3450103238251381e-08 1 0 0 0 0 V -289 0 -2.1646700664991409e-05 1.2505257535310116e-04 -1.4833724903323395e-02 1.4834335252115048e-02 0 2 0 P 888 22 -3.0211336005094687e-02 3.2948973796556663e-01 -4.1362429595978668e+01 4.1363752952247211e+01 -1.2422600388924081e-07 1 0 0 0 0 P 889 22 -3.5105113779369569e-02 4.7842142069094887e-02 -3.3966430571315356e+00 3.3971613587127543e+00 2.5007355179819375e-08 1 0 0 0 0 V -290 0 -2.0353664095648405e+00 1.6875987432595739e+01 -8.5755190010587251e+02 8.5786997498363803e+02 0 2 0 P 890 111 -9.2432441831670417e-02 1.2991647362334888e-01 -1.6438293415120480e+01 1.6439620800018929e+01 1.3497999999994553e-01 2 0 0 -301 0 P 891 111 2.9208903327932984e-02 3.9429363234053055e-01 -1.0199399592149145e+01 1.0207952403360336e+01 1.3497999999998331e-01 2 0 0 -302 0 V -291 0 7.8283678397293252e-06 -4.0701693662656088e-06 -8.2430817605570858e-06 1.2407768936633321e-05 0 2 0 P 892 22 2.6517695457568125e-01 -1.3445343009057775e-01 -3.5234686893402745e-01 4.6102587579090132e-01 7.8293090580778077e-09 1 0 0 0 0 P 893 22 1.0485254713648660e-01 -5.7934405192270666e-02 -3.7285235596341809e-02 1.2546171025243544e-01 2.3715604082056509e-09 1 0 0 0 0 V -292 0 2.0626214806308061e-05 -1.5445224500114047e-05 -2.5914771107208264e-05 3.9944763887597555e-05 0 2 0 P 894 22 8.8771999684374520e-02 -7.9276642275247999e-02 -2.0355509496016780e-01 2.3579637533822093e-01 1.9471310875003377e-09 1 0 0 0 0 P 895 22 8.3887843708072923e-02 -5.0013684059146267e-02 -1.3374688955070701e-02 9.8576981186294516e-02 1.1495091986220503e-09 1 0 0 0 0 V -293 0 1.0060468398799984e-04 -5.5310164241865670e-05 -1.1426085285617699e-04 1.6231725754667982e-04 0 2 0 P 896 22 7.2241225452817859e-01 -3.7910707954432871e-01 -9.0295475042453099e-01 1.2169342318167169e+00 -7.8681601438279276e-09 1 0 0 0 0 P 897 22 5.6747956881576889e-01 -3.3004607093823990e-01 -5.6202813093980641e-01 8.6419852460692892e-01 -1.0674720058541420e-08 1 0 0 0 0 V -294 0 -1.1008599380663210e+01 -2.3624494249144696e+01 5.2779010210583266e+01 6.2003207530948181e+01 0 2 0 P 898 111 -2.5224494777092465e-01 -5.9967469469488710e-01 9.2641020337843216e-01 1.1400406652646347e+00 1.3498000000000060e-01 2 0 0 -303 0 P 899 111 -2.9000850973430900e-02 -3.8798107677190620e-03 4.2197884870075492e-01 4.4400658941010218e-01 1.3497999999999999e-01 2 0 0 -304 0 V -295 0 -1.2875283207805534e-02 2.0040947643899264e-04 1.8095989614602543e+00 1.8097217732866071e+00 0 2 0 P 900 111 2.6103261286544759e-02 2.1452230433249373e-03 5.4266544317228318e+00 5.4283960710295220e+00 1.3498000000000732e-01 2 0 0 -305 0 P 901 111 -4.0993735970939815e-01 3.8293244258695491e-03 4.8520569459860511e+01 4.8522489050049352e+01 1.3497999999876514e-01 2 0 0 -306 0 V -296 0 5.7576491057203159e+00 1.9002177460790703e+00 -1.5149780475274210e+02 1.5263023076486550e+02 0 2 0 P 902 22 1.4193329064350904e-01 5.5545544251085641e-02 -7.4947141989846700e-01 7.6481224867523401e-01 -1.9244829490568326e-08 1 0 0 0 0 P 903 22 -1.8389979891361298e-02 2.2108716106321646e-02 -4.5885108444332101e-01 4.5975135060496147e-01 -1.0015101271682939e-08 1 0 0 0 0 V -297 0 -1.1582195425094504e+01 2.3534330516059768e+01 1.6681715629701170e+01 3.1902560605565444e+01 0 2 0 P 904 22 -1.2508929374930752e-01 2.2198710888883297e-01 1.4803831919546262e-01 2.9468788891595254e-01 -4.5401975512504578e-09 1 0 0 0 0 P 905 22 -2.4968628537795337e-01 2.1084896550597165e-01 8.2034027444233618e-02 3.3694229330777170e-01 -3.9003476425425509e-09 1 0 0 0 0 V -298 0 -1.1582007631562883e+01 2.3534137057102193e+01 1.6681622419821981e+01 3.1902272665149166e+01 0 2 0 P 906 22 -1.0250867820525052e-01 4.6658356693029301e-01 3.7654391115163027e-01 6.0827096845250606e-01 -6.2583387157486811e-09 1 0 0 0 0 P 907 22 -3.2606823581685362e-01 7.3295701566286986e-01 5.5045556548288344e-01 9.7290688700883221e-01 -9.2166827120303582e-09 1 0 0 0 0 V -299 0 -5.3714846500591094e+01 1.0350084526335199e+02 4.8451267351317915e+00 1.1804520884500863e+02 0 2 0 P 908 22 -7.9813961886278795e-01 1.7403142088270098e+00 2.2672744941151278e-03 1.9146084553185407e+00 -2.5137084678310491e-08 1 0 0 0 0 P 909 22 -4.8659215063897127e-01 8.5486685715841393e-01 4.5478573346812178e-02 9.8470176457901426e-01 -1.8426011785349420e-08 1 0 0 0 0 V -300 0 -5.3714350518437982e+01 1.0349982918575357e+02 4.8451163779194468e+00 1.1804408053926488e+02 0 2 0 P 910 22 8.7214984394195783e-03 1.5308966907009878e-03 -1.2750281060814255e-02 1.5523461174498267e-02 -9.7185796834596618e-10 1 0 0 0 0 P 911 22 -2.3380821169257576e-01 3.1249147703903429e-01 1.0119217100369636e-01 4.0318365362370401e-01 -3.8399413466618029e-09 1 0 0 0 0 V -301 0 -2.0353844259364271e+00 1.6876012755127718e+01 -8.5755510415843833e+02 8.5787317929492963e+02 0 2 0 P 912 22 -5.0936294274395923e-02 1.3372159183959825e-01 -1.5101828689246995e+01 1.5102506604188660e+01 -2.0078588989692727e-07 1 0 0 0 0 P 913 22 -4.1496147557274488e-02 -3.8051182162493627e-03 -1.3364647258734856e+00 1.3371141958302686e+00 -1.4725502860585132e-09 1 0 0 0 0 V -302 0 -2.0353659347161108e+00 1.6875993842621764e+01 -8.5755206591736794e+02 8.5787014093417645e+02 0 2 0 P 914 22 -2.6458722683072245e-02 2.1145174977200157e-01 -4.0715976740152477e+00 4.0771705293664180e+00 2.4285921473811005e-08 1 0 0 0 0 P 915 22 5.5667626011005229e-02 1.8284188256852901e-01 -6.1278019181338976e+00 6.1307818739939197e+00 1.3482000067232230e-07 1 0 0 0 0 V -303 0 -1.1008607493405217e+01 -2.3624513535977314e+01 5.2779040005935123e+01 6.2003244197116828e+01 0 2 0 P 916 22 -1.7932133090279753e-01 -3.0521205700656789e-01 4.1542521132725618e-01 5.4579176034933552e-01 -4.6507884644526471e-09 1 0 0 0 0 P 917 22 -7.2923616868127109e-02 -2.9446263768831921e-01 5.1098499205117609e-01 5.9424890491529914e-01 1.7030093397861106e-09 1 0 0 0 0 V -304 0 -1.1008606042173026e+01 -2.3624495140339150e+01 5.2779107139333583e+01 6.2003309519481434e+01 0 2 0 P 918 22 -3.1335663804435733e-02 2.7939771342145765e-02 4.0628891940320311e-01 4.0845225018175441e-01 2.7622586390247273e-09 1 0 0 0 0 P 919 22 2.3348128310048352e-03 -3.1819582109864825e-02 1.5689929297551791e-02 3.5554339228347769e-02 7.4790332432946082e-10 1 0 0 0 0 V -305 0 -1.2872564898266207e-02 2.0063287305593802e-04 1.8101640757709321e+00 1.8102870689659916e+00 0 2 0 P 920 22 3.6613282802286831e-02 -9.8335226714439394e-03 4.1784485102191810e-01 4.1956113996796573e-01 -5.2786357927856196e-09 1 0 0 0 0 P 921 22 -1.0510021515742070e-02 1.1978745714768877e-02 5.0088095807009143e+00 5.0088349310615561e+00 -7.8684357313008694e-08 1 0 0 0 0 V -306 0 -1.2963643963177167e-02 2.0123487571236637e-04 1.8200574231422397e+00 1.8201806487304395e+00 0 2 0 P 922 22 -2.3735050177417261e-01 -5.9248654947571582e-02 3.0584664151553945e+01 3.0585642496556360e+01 -3.4866806735985251e-07 1 0 0 0 0 P 923 22 -1.7258685793522552e-01 6.3077979373441131e-02 1.7935905308306566e+01 1.7936846553492991e+01 -2.2788304451371913e-07 1 0 0 0 0 E 3 -1 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 222 0 0 0 0 U GEV MM H 0 0 0 0 0 0 0 0 0 0 0 0 0 F 0 0 0 0 0 0 0 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -1 0 P 3 2 1.1704323272484478e+00 8.1361174969814221e-01 7.2954183724810684e+02 7.2954322981661278e+02 -6.3974417996400541e-06 3 0 0 -3 0 P 29 2101 -1.1704323272484478e+00 -8.1361174969814221e-01 1.4916902351181495e+03 1.4916910286805378e+03 5.7932999996094181e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3826999914648146e-01 3 0 0 -2 0 P 4 21 9.1802741860387727e-01 -9.4937632559807617e-01 -5.8782942051959185e+02 5.8783090401759932e+02 1.5359042557150276e-06 3 0 0 -4 0 P 17 2101 -1.1357719929402199e-01 4.8501315304379056e-01 -4.5249488430370557e+03 4.5249489075417387e+03 5.7932999811963615e-01 2 0 0 -9 0 P 83 2 -8.0445021930985527e-01 4.6436317255428561e-01 -2.9931433926654938e+02 2.9931596242746963e+02 3.3000000001921459e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 2 0 P 5 2 -1.0715606852744096e-01 -5.3456663999982823e-01 5.0986983685541668e+02 5.0987012834533152e+02 -1.9876160622278530e-06 3 0 0 -5 0 P 30 21 1.2726614343998868e+00 1.3822261869034078e+00 1.8135889400218031e+02 1.8136862642158496e+02 2.2021476271046600e-06 2 0 0 -15 0 V -4 0 0 0 0 0 0 7 0 P 6 -1 -1.3217596331527364e+01 -6.2409611116597610e+00 7.7183235580693008e+00 1.6529578546578325e+01 -4.7286247171826454e-07 3 0 0 -5 0 P 11 1 5.8275235859555270e+00 4.1045817156903803e+00 6.3710567516382097e+00 9.5659231827483620e+00 3.2999999999997526e-01 2 0 0 -9 0 P 12 21 7.9845516756960260e+00 3.7660034393679687e+00 1.2786180117250570e+01 1.5537768480639857e+01 1.0905624306428766e-07 2 0 0 -9 0 P 13 21 9.0744307411692238e-01 2.4205796124698081e-01 3.9914330386802197e+00 4.1004368903366659e+00 -2.3962334413581727e-08 2 0 0 -9 0 P 14 21 -1.5827779710919703e+00 -1.6376251826535566e+00 -2.0766542515553471e+02 2.0767791362437563e+02 2.2045662413724576e-06 2 0 0 -9 0 P 15 21 5.1005792897960278e-01 -1.4081009653043615e+00 -2.2871269558386899e+02 2.2871759886081992e+02 4.8788504432871642e-07 2 0 0 -9 0 P 16 21 4.9375241768026495e-01 1.9062001967098396e-01 -1.4400518702535288e+02 1.4400615965176186e+02 -4.7683715820312500e-07 2 0 0 -9 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -6.5485677906973372e+00 -5.0227210479790454e+00 1.2773245158537030e+01 1.5207473778220365e+01 -1.4126662333204255e-07 3 0 0 -6 0 P 8 24 -6.7761846093574674e+00 -1.7528067036805439e+00 5.0481491525494891e+02 5.1119223311368944e+02 8.0189846755675944e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -6.5485677906973372e+00 -5.0227210479790454e+00 1.2773245158537030e+01 1.5207473778220365e+01 -1.4126662333204255e-07 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -6.7761846093574674e+00 -1.7528067036805439e+00 5.0481491525494891e+02 5.1119223311368944e+02 8.0189846755675944e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 8 0 P 18 -1 -6.5686228307056052e+00 1.0148832857090728e+01 1.2239518863107135e+01 1.7206403931489771e+01 3.3000000000001023e-01 2 0 0 -11 0 P 19 21 -2.0559179636137439e+00 1.9085654399969074e+00 3.6603990136482847e+00 4.6117178633322320e+00 -2.4885664164810232e-08 2 0 0 -11 0 P 20 21 -1.1080071407886092e+00 -1.2302593452686978e+00 5.2538906053271175e+00 5.5085918684727462e+00 4.4431017495231939e-08 2 0 0 -11 0 P 21 21 1.6980726094143081e-01 2.9987565776286951e-01 6.0781412568556119e+00 6.0879028453382418e+00 -4.7451776276741164e-08 2 0 0 -11 0 P 22 21 -3.9596970812057417e-02 -7.4949838636281496e-01 1.3149756129405672e+01 1.3171157960259226e+01 -1.4499947768471065e-07 2 0 0 -11 0 P 23 21 -1.8981438892219701e-01 -5.5785032510999366e-01 2.7065388346039644e+01 2.7071802171436719e+01 2.5375763127098087e-07 2 0 0 -11 0 P 24 21 4.7279937148223355e-01 -7.5690198728182834e-01 4.7628403149722942e+01 4.7636763391907344e+01 4.9421560620597007e-07 2 0 0 -11 0 P 25 2 2.5431680530610525e+00 -1.0815570614507738e+01 3.8973941789084336e+02 3.8989789308145401e+02 3.3000000000418556e-01 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 89 92 1.4026973512042352e+01 5.7425501410621864e+00 -5.0821834808942431e+03 5.1345547082324210e+03 7.3132303771272450e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 19 0 P 90 313 6.4843604245823405e+00 3.7755281311252777e+00 7.8467562513205982e+00 1.0891965639935110e+01 8.7280527557993304e-01 2 0 0 -21 0 P 91 3122 2.9853488516621662e+00 2.1949271037207154e+00 4.7018983897002000e+00 6.0895486767274072e+00 1.1156799999994438e+00 2 0 0 -22 0 P 92 -2112 2.9385010226172690e+00 1.4777222691209064e+00 5.4877364859524915e+00 6.4665674734538312e+00 9.3956999999908974e-01 1 0 0 0 0 P 93 -213 1.7312645336007431e+00 1.5983142089993524e-01 2.0746041676167093e+00 2.8587516626710743e+00 9.1959537195514518e-01 2 0 0 -23 0 P 94 211 5.4865014045039617e-01 5.3032533653387837e-01 2.1770080448486460e+00 2.3110832419931624e+00 1.3956999999960995e-01 1 0 0 0 0 P 95 311 -7.9131985855261974e-02 3.0405386607759238e-01 -1.5990113514674982e+00 1.7038847835707795e+00 4.9766999999999939e-01 2 0 0 -24 0 P 96 -313 -2.1781600911194307e-01 -4.9874093120531915e-01 -1.6983947915338529e-01 1.0459856689527562e+00 8.7695737678090646e-01 2 0 0 -25 0 P 97 221 4.0409014635171209e-01 4.3971459781932559e-01 -9.7579286434525259e-01 1.2682708663850442e+00 5.4744999999999877e-01 2 0 0 -26 0 P 98 -213 -5.2113634826856020e-02 -6.3506553642791175e-02 -2.5525015397039015e+00 2.6493369398756657e+00 7.0496325968699747e-01 2 0 0 -27 0 P 99 213 -5.8465216990410318e-01 -7.2747914679793346e-01 -2.2709266996933245e+01 2.2741593428907553e+01 7.7344688177682419e-01 2 0 0 -28 0 P 100 313 3.0174890842526653e-01 1.8021169504097584e-01 -2.2689627926029335e+01 2.2710012357630042e+01 8.9549829887810573e-01 2 0 0 -29 0 P 101 -311 -3.1207108979161702e-01 -4.4717569186949419e-01 -2.2463512008646514e+01 2.2475640183451702e+01 4.9767000000001732e-01 2 0 0 -30 0 P 102 311 -3.0827245514081758e-01 -9.0834425973967292e-02 -2.3017419711853826e+01 2.3025042202351713e+01 4.9766999999979716e-01 2 0 0 -31 0 P 103 333 6.1223416940558861e-01 -6.9647856699879029e-01 -9.3302382310668179e+01 9.3312571582132293e+01 1.0205671717238387e+00 2 0 0 -32 0 P 104 333 -1.0102150210817433e+00 -4.8570549583368477e-01 -1.5172728398677717e+02 1.5173488534819958e+02 1.0248323812426707e+00 2 0 0 -33 0 P 105 -321 4.6261350660270734e-01 -3.0558040110177053e-02 -7.5949291331280463e+01 7.5952310298858066e+01 4.9360000000072024e-01 1 0 0 0 0 P 106 2212 -1.4883066254250268e-01 -7.5747211985574192e-01 -1.2332896777094531e+03 1.2332902762163733e+03 9.3827000007213246e-01 1 0 0 0 0 P 107 -2214 3.1605824160496304e-01 1.4757847356188206e-01 -1.0224646971285487e+03 1.0224654567842047e+03 1.1965661450978187e+00 2 0 0 -34 0 P 108 2214 -4.4793405005967200e-02 3.3060821944959212e-01 -2.4315611798888181e+03 2.4315615248767435e+03 1.2515631703347729e+00 2 0 0 -35 0 V -11 0 0 0 0 0 0 1 0 P 109 92 -6.7761846093574984e+00 -1.7528067036805677e+00 5.0481491525494977e+02 5.1119223311369029e+02 8.0189846755676015e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 11 0 P 110 213 -5.3524836030562764e+00 8.8904001186599420e+00 1.0975281784518415e+01 1.5123864944643898e+01 7.6562760098617610e-01 2 0 0 -36 0 P 111 223 -2.1346782520193894e+00 1.6898894454967928e+00 3.4100765771138892e+00 4.4349012111108772e+00 7.9192734066070281e-01 2 0 0 -37 0 P 112 221 -5.6744583469230669e-01 3.6485945089251520e-01 7.9427064736043251e-01 1.1771510344784122e+00 5.4744999999999910e-01 2 0 0 -38 0 P 113 -213 -2.2222375170427144e-01 -2.6583503682953580e-01 4.9717248576496296e+00 5.0321142869441378e+00 6.9575460765157437e-01 2 0 0 -39 0 P 114 213 -5.0319287445012506e-01 8.2034055214051893e-01 2.6951006875598313e+00 2.9711226421312618e+00 7.9864907695181320e-01 2 0 0 -40 0 P 115 -213 -7.6943831385429073e-01 -1.6055065073193064e-01 2.4556647486366434e+00 2.6888382527189791e+00 7.6272535116567564e-01 2 0 0 -41 0 P 116 -2114 -1.8902112090432779e-01 -4.4970111294541110e-01 2.3751426458726026e+01 2.3791248845808912e+01 1.2865856923659902e+00 2 0 0 -42 0 P 117 211 -3.7286637377801184e-02 -3.3924780555679357e-01 1.0931768644676040e+01 1.0937985411058303e+01 1.3957000000000105e-01 1 0 0 0 0 P 118 2114 1.3208541719526350e+00 -5.7200626284953628e+00 1.7825435903611813e+02 1.7835475350060224e+02 1.1566367907879516e+00 2 0 0 -43 0 P 119 113 3.1679150953764579e-01 -1.9909193335584799e-01 2.9505694407770072e+01 2.9518925190601763e+01 8.0059194674111389e-01 2 0 0 -44 0 P 120 331 1.3619400972110161e+00 -6.3838071029554531e+00 2.3706954740482044e+02 2.3716132779359123e+02 9.5771610443010313e-01 2 0 0 -45 0 V -13 0 0 0 0 0 3 1 0 P 26 2 -8.3403704558801672e-01 1.9413039471862088e+00 6.2168451490303987e+01 6.2204345824958679e+01 5.5555557853899145e-07 2 0 0 -13 0 P 27 21 1.5240992634851376e+00 -7.5611288752719119e-01 1.5511277367579703e+01 1.5604304240741751e+01 1.2461638960002161e-07 2 0 0 -13 0 P 28 -2 8.3403704558801672e-01 -1.9413039471862088e+00 3.5935664665615050e+00 4.1686926917643241e+00 6.0671931039178109e-08 2 0 0 -13 0 P 121 92 1.5240992634851376e+00 -7.5611288752719119e-01 8.1273295324445201e+01 8.1977342757464754e+01 1.0584970827391649e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 5 0 P 122 221 -7.9993062604067089e-01 1.8326756625733338e+00 5.0591146027457278e+01 5.0633608867674766e+01 5.4745000000003963e-01 2 0 0 -46 0 P 123 211 5.8673604834305937e-01 -6.8523841578523648e-01 1.6506681660694479e+01 1.6531903402491213e+01 1.3957000000009512e-01 1 0 0 0 0 P 124 1114 6.2020115577185464e-01 -2.0971456925278500e-01 4.0162886749753399e+00 4.2552069944249995e+00 1.2440185571327464e+00 2 0 0 -47 0 P 125 211 8.2325877209872389e-01 -4.2424390597938649e-01 6.4095635221368967e+00 6.4776324553656242e+00 1.3956999999999503e-01 1 0 0 0 0 P 126 -2212 2.9383391331217079e-01 -1.2695916590831167e+00 3.7496154391812069e+00 4.0789910375081533e+00 9.3827000000000038e-01 1 0 0 0 0 V -15 0 0 0 0 0 52 1 0 P 31 21 -3.6771854683024401e+00 -4.5455549568856819e+00 1.5310735535905769e+03 1.5310847168812415e+03 1.9660499694908431e-06 2 0 0 -15 0 P 32 21 5.6370686308403277e+00 -7.9068690829950172e-01 1.3806166172729486e+03 1.3806283517365327e+03 5.6218271839864708e-06 2 0 0 -15 0 P 33 21 3.3816546252824469e+00 -5.6507284458183038e-01 2.9397301445154181e+02 2.9399300692542124e+02 -2.9418379495747248e-06 2 0 0 -15 0 P 34 21 5.1785722076676688e+00 -7.3565085724739232e-01 4.4249725488911878e+02 4.4252816789069999e+02 2.8560515763070437e-06 2 0 0 -15 0 P 35 21 1.6282046480391124e+00 8.0817623843936107e-02 6.9052892049874146e+01 6.9072132458146910e+01 1.6323404237781945e-07 2 0 0 -15 0 P 36 21 1.4613761368640050e+00 1.8729074353819137e+00 6.6332787464599107e+01 6.6375312393227802e+01 -8.4398998370804169e-07 2 0 0 -15 0 P 37 21 4.7071062460718660e-01 3.6589066612640131e-01 1.4147441098666631e+01 1.4159997673443248e+01 8.7206810047623706e-08 2 0 0 -15 0 P 38 21 3.6291661993645121e+00 2.2203211890134784e+00 7.7487765629111820e+01 7.7604474714266033e+01 9.1128855058077908e-07 2 0 0 -15 0 P 39 21 8.4128176340188754e-01 7.4170781564113164e-01 1.4642486316441454e+01 1.4685376774750825e+01 -1.1019557310453832e-07 2 0 0 -15 0 P 40 21 5.9096756449150978e-01 1.0689049408550071e+01 1.0760868785424000e+02 1.0813988497142007e+02 -6.9254338971509040e-07 2 0 0 -15 0 P 41 21 -7.2579892084618469e-01 7.6510125016231401e+00 6.6847453510296944e+01 6.7287790996471315e+01 -2.6404924909277781e-07 2 0 0 -15 0 P 42 21 -4.4888801553703201e+00 4.8856667576245636e+00 7.5139347255278494e+01 7.5431699507999710e+01 8.4109102437913918e-07 2 0 0 -15 0 P 43 21 -5.1785722076676688e+00 7.3565085724739232e-01 1.0516788216065500e+02 1.0529787381733409e+02 4.8514665949641782e-07 2 0 0 -15 0 P 44 21 -3.3816546252824469e+00 5.6507284458183038e-01 4.3159424834063792e+01 4.3295390601443707e+01 -5.3322426483282118e-07 2 0 0 -15 0 P 45 21 -4.9721872324203877e+00 -2.5900506545869604e+00 4.2122891134149228e+01 4.2494340396892362e+01 -4.2631386223196886e-07 2 0 0 -15 0 P 46 21 -1.6834856746364306e+00 -1.0319448415751866e+00 2.8824793754610823e+01 2.8892347934506997e+01 -3.0710494288094266e-07 2 0 0 -15 0 P 47 21 -3.1057064686006602e-01 -2.9059417988803726e-01 2.1315612284616911e+01 2.1319855209925496e+01 2.5277130981813927e-07 2 0 0 -15 0 P 48 21 -1.4613761368640050e+00 -1.8729074353819137e+00 8.7314519122033317e+01 8.7346829661910604e+01 -3.4175351086794479e-07 2 0 0 -15 0 P 49 21 5.6192117601838165e-01 -4.5027022371450496e+00 6.8542546017526107e+01 6.8692581094388444e+01 -3.5325496170311264e-07 2 0 0 -15 0 P 50 21 7.2579892084618469e-01 -7.6510125016231401e+00 5.2329519591403553e+01 5.2890863077100406e+01 -6.1149253036627748e-07 2 0 0 -15 0 P 51 21 1.1984416629942880e+00 -3.2506838668685987e+00 1.8691763752874273e+01 1.9010135197183235e+01 2.1893807135395875e-07 2 0 0 -15 0 P 52 21 -5.6370686308403277e+00 7.9068690829950172e-01 1.2058158569908802e+01 1.3334201012165121e+01 -1.4013232941779514e-07 2 0 0 -15 0 P 53 21 -3.6291661993645121e+00 -2.2203211890134784e+00 5.5990418535608963e+00 7.0320653554214587e+00 6.6613982402710861e-08 2 0 0 -15 0 P 54 21 -5.9096756449150978e-01 -1.0689049408550071e+01 8.9691870570734551e+00 1.3966078060267300e+01 -6.1889170579001865e-08 2 0 0 -15 0 P 55 21 2.6573993894737526e+00 -2.7516669700532668e+00 2.3667336140365802e+00 4.4983186446791708e+00 1.7914347408033296e-08 2 0 0 -15 0 P 56 21 3.1057064686006602e-01 2.9059417988803726e-01 5.5310753002352009e-01 6.9772992184985161e-01 7.6409611298804814e-09 2 0 0 -15 0 P 57 21 5.3177450259835544e+00 3.1409626225641749e+00 3.3397729034515584e+00 7.0212635190788353e+00 6.7852458358135018e-08 2 0 0 -15 0 P 58 21 4.9721872324203877e+00 2.5900506545869604e+00 2.2465576098423261e+00 6.0397044101438544e+00 4.6789112266452874e-08 2 0 0 -15 0 P 59 21 5.3110642386278517e-01 -1.0677186970273143e+00 -1.0747643578997981e+00 1.6053708837716558e+00 -9.7788870334625244e-09 2 0 0 -15 0 P 60 21 4.4888801553703201e+00 -4.8856667576245636e+00 -1.1694113715120455e+01 1.3445150809790254e+01 1.2208498722444431e-07 2 0 0 -15 0 P 61 21 1.9692753564584113e+00 -4.8234948441289044e-01 -6.0545866266705675e+00 6.3850392069685729e+00 -6.3137901040458281e-08 2 0 0 -15 0 P 62 21 1.4452166521894729e+00 -4.8797449645332396e+00 -4.6251686691273115e+01 4.6530840137250301e+01 -4.0835707205667260e-07 2 0 0 -15 0 P 63 21 1.4620489060083572e-01 -1.8418966864131061e+00 -6.8684374072445323e+01 6.8709222095706011e+01 7.8652162673453374e-07 2 0 0 -15 0 P 64 21 4.0172141962060387e-01 -1.0771727306709731e+00 -9.3603829759028159e+01 9.3610889466705785e+01 -7.2266791182649975e-07 2 0 0 -15 0 P 65 21 -5.3177450259835544e+00 -3.1409626225641749e+00 -3.4359887463130758e+02 3.4365437681813211e+02 -2.8535626419987259e-06 2 0 0 -15 0 P 66 21 -7.7233569092838661e-01 -5.7315226000886017e-02 -2.0336945204007922e+01 2.0351686114065199e+01 2.6609109980506557e-07 2 0 0 -15 0 P 67 21 -1.9692753564584113e+00 4.8234948441289044e-01 -8.3172378634140927e+01 8.3197086932870249e+01 -5.7287164887014288e-07 2 0 0 -15 0 P 68 21 -1.4452166521894729e+00 4.8797449645332396e+00 -8.1239702301217733e+02 8.1241296368358064e+02 9.3105431507905173e-06 2 0 0 -15 0 P 69 21 -1.5240992634851376e+00 7.5611288752719119e-01 -1.1842496437013315e+01 1.1964084048698158e+01 6.7775716627613654e-08 2 0 0 -15 0 P 70 21 -4.0172141962060387e-01 1.0771727306709731e+00 -7.6473295502542760e+00 7.7332613069050904e+00 7.7249263798176200e-08 2 0 0 -15 0 P 71 21 -1.1984416629942880e+00 3.2506838668685987e+00 -2.2856438081656297e+01 2.3117525166040341e+01 1.7927899085754104e-07 2 0 0 -15 0 P 72 21 -2.1148840671962699e+00 2.9949801623855010e+00 -1.2205270872285231e+01 1.2744068340079536e+01 -1.2349772791751308e-07 2 0 0 -15 0 P 73 21 3.6771854683024401e+00 4.5455549568856819e+00 -1.2383825988907871e+01 1.3694630661610143e+01 1.3385150002853335e-07 2 0 0 -15 0 P 74 21 1.6834856746364306e+00 1.0319448415751866e+00 -4.1091281052566444e+00 4.5589437327268882e+00 -4.9139953994277565e-08 2 0 0 -15 0 P 75 21 7.7233569092838661e-01 5.7315226000886017e-02 -1.6219863860496893e+00 1.7973945841533774e+00 -1.1752759538706357e-08 2 0 0 -15 0 P 76 21 -1.4620489060083572e-01 1.8418966864131061e+00 8.6126343116408988e-02 1.8496964671085330e+00 1.7286009335211092e-08 2 0 0 -15 0 P 77 21 -5.6192117601838165e-01 4.5027022371450496e+00 -4.1804060873011173e-01 4.5568454872857336e+00 -5.5176441533858419e-08 2 0 0 -15 0 P 78 21 -5.3110642386278517e-01 1.0677186970273143e+00 -7.4894641031626885e-01 1.4081967103269510e+00 -1.4101158762096167e-08 2 0 0 -15 0 P 79 21 -2.6573993894737526e+00 2.7516669700532668e+00 -2.7904471485460702e-01 3.8355323727151474e+00 7.0927414166404946e-09 2 0 0 -15 0 P 80 21 -1.6282046480391124e+00 -8.0817623843936107e-02 -1.0021489337131528e+00 1.9136050662460002e+00 9.1487926917097062e-09 2 0 0 -15 0 P 81 21 -8.4128176340188754e-01 -7.4170781564113164e-01 -1.4892504652198422e+00 1.8643369967291978e+00 1.7210579116434164e-08 2 0 0 -15 0 P 82 21 -4.7071062460718660e-01 -3.6589066612640131e-01 1.7889381601143503e-01 6.2245278462196840e-01 -1.7808119930301741e-09 2 0 0 -15 0 P 127 92 -4.3412044428398264e+00 4.7840706596722438e+00 4.4525481399271048e+03 8.2167593082415915e+03 6.9057879244745436e+03 2 0 0 -16 0 V -16 0 0 0 0 0 0 126 0 P 128 2112 -5.2316542290389090e-01 -9.9051471023854420e-01 1.2458548885006398e+03 1.2458557463904790e+03 9.3956999997994839e-01 1 0 0 0 0 P 129 111 -3.8043858367760902e-01 4.6112807472291906e-02 1.1746360275407315e+02 1.1746430543562613e+02 1.3498000000531396e-01 2 0 0 -48 0 P 130 111 4.4717182031802943e-01 7.0150043819568197e-01 1.8741462083127021e+02 1.8741651577817487e+02 1.3498000004265917e-01 2 0 0 -49 0 P 131 223 1.2433327271739004e-01 5.7508859428568349e-01 6.5751215172531531e+01 6.5758517731994857e+01 7.8369125971863807e-01 2 0 0 -50 0 P 132 113 -2.1933490272355519e-01 -7.5403982597797503e-01 3.1797170692743202e+02 3.1797370743630984e+02 8.0964843514068741e-01 2 0 0 -51 0 P 133 211 -7.0275014797990121e-01 -1.0214532569728141e+00 3.8964595659688445e+02 3.8964795417994009e+02 1.3956999987618718e-01 1 0 0 0 0 P 134 -2212 1.5347143676336272e-01 -3.8222532684709315e-01 2.0686021477219319e+02 2.0686275270302571e+02 9.3826999999479799e-01 1 0 0 0 0 P 135 213 -8.8838170188911894e-02 -2.3006834322600025e-01 2.9040575089057410e+02 2.9040694798991399e+02 7.9653426504610847e-01 2 0 0 -52 0 P 136 1114 -7.8062575419333946e-01 -1.3703067786177658e+00 4.3119062832508411e+02 4.3119516226206326e+02 1.1928476812265290e+00 2 0 0 -53 0 P 137 -2114 1.2405095225144613e+00 -9.4575502582856474e-01 5.8286440457983690e+02 5.8286775945049351e+02 1.2155509805188933e+00 2 0 0 -54 0 P 138 111 1.5241268980050479e-01 -5.1191140034803635e-02 7.1359755068866537e+00 7.1390626973095346e+00 1.3497999999987062e-01 2 0 0 -55 0 P 139 2112 1.3555542694280700e+00 -2.4929609363811361e-01 2.4044486564479993e+02 2.4045065165777876e+02 9.3957000000343727e-01 1 0 0 0 0 P 140 211 1.4745624160514095e+00 1.3032312712821861e-01 1.7904805607908659e+02 1.7905422972921062e+02 1.3956999999497158e-01 1 0 0 0 0 P 141 -2212 1.2646469853349900e+00 -4.4897709568934335e-01 2.5395664011817817e+02 2.5396191904129392e+02 9.3826999999814709e-01 1 0 0 0 0 P 142 2112 1.1091084293191464e+00 -1.7270325832432318e-01 2.1099626404878367e+02 2.1100134165983960e+02 9.3956999999839119e-01 1 0 0 0 0 P 143 211 1.9209768288467561e+00 -3.7250136109150461e-01 1.3766194932191840e+02 1.3767592629118684e+02 1.3957000000377254e-01 1 0 0 0 0 P 144 223 9.6040019346621563e-01 5.7096344024133283e-01 1.4323058082337764e+02 1.4323710415354083e+02 7.8762650316451266e-01 2 0 0 -56 0 P 145 111 8.1464232096002243e-01 -4.3692115316140090e-01 3.9434827517043338e+01 3.9445891840653537e+01 1.3497999999943466e-01 2 0 0 -57 0 P 146 111 8.9584250899133389e-01 2.3225200445562483e-01 1.2646073969541494e+02 1.2646419801155734e+02 1.3497999999214394e-01 2 0 0 -58 0 P 147 -211 1.9764010665059890e+00 1.2120883862126240e-01 1.1937343506405554e+02 1.1938993815031245e+02 1.3957000000053979e-01 1 0 0 0 0 P 148 -311 6.9143988497464892e-01 -2.0097660021271568e-01 8.6194913026738277e+01 8.6199357235563212e+01 4.9767000000121675e-01 2 0 0 -59 0 P 149 331 1.8785343331515953e+00 7.8246944742228886e-01 5.7176860721763866e+01 5.7221079770630375e+01 9.5781963014052196e-01 2 0 0 -60 0 P 150 323 1.5293539221195895e+00 8.4253867305337826e-01 5.0041485889740720e+01 5.0080230782332997e+01 9.1126852459675867e-01 2 0 0 -61 0 P 151 223 1.9214135292620136e+00 1.4147469077715404e+00 4.1184894530986078e+01 4.1261045883190150e+01 7.6487324622814967e-01 2 0 0 -62 0 P 152 -213 1.6532053615722466e+00 2.8164162403973863e+00 4.2852983605233604e+01 4.2982734161587544e+01 6.8698160716242618e-01 2 0 0 -63 0 P 153 -311 -4.1967148092914647e-01 5.1170449098340587e+00 5.1912837582457293e+01 5.2168483340544363e+01 4.9767000000045825e-01 2 0 0 -64 0 P 154 313 -1.4383370436852649e-01 1.2257898350935135e+00 1.3414243081157045e+01 1.3496261623249000e+01 8.2698942465011316e-01 2 0 0 -65 0 P 155 -313 1.7220047790497300e-01 1.0002443261012480e+01 9.9916989482923810e+01 1.0042051988552450e+02 8.9302998491051300e-01 2 0 0 -66 0 P 156 313 -2.0854725969949790e+00 2.0260742627450066e+00 3.1474964913400036e+01 3.1619501150468121e+01 8.1563707230407934e-01 2 0 0 -67 0 P 157 213 -1.3280635356445782e+00 1.8248674713156170e+00 2.1764479528190844e+01 2.1901864782278118e+01 9.5142932768626409e-01 2 0 0 -68 0 P 158 -321 -3.1374857666403440e+00 1.7826315433628530e+00 5.7046910234457940e+01 5.7163058004392703e+01 4.9359999999961607e-01 1 0 0 0 0 P 159 323 -1.6512922797026690e+00 5.4892897198610524e-01 3.4072819972374688e+01 3.4128430052514510e+01 8.7440709639660319e-01 2 0 0 -69 0 P 160 -323 -2.7657180497810270e+00 4.6480846186905268e-02 4.4256690263472159e+01 4.4351636912212101e+01 8.7275822301295403e-01 2 0 0 -70 0 P 161 313 -2.0023260018908093e+00 2.6262016540275807e-01 3.1476331672888996e+01 3.1553491904508039e+01 8.8606829139473120e-01 2 0 0 -71 0 P 162 223 -1.6607523577208576e+00 -1.3649682622965515e+00 2.0208881784449726e+01 2.0337970086620981e+01 7.8287132766095002e-01 2 0 0 -72 0 P 163 213 -1.6532815212141381e+00 -7.6495223927947420e-01 3.3065587974191182e+01 3.3131047621675236e+01 1.0073314816727488e+00 2 0 0 -73 0 P 164 221 -4.2531932155639474e-01 8.6056136037740871e-02 7.7053978773851437e+00 7.7369994271132283e+00 5.4745000000000621e-01 2 0 0 -74 0 P 165 111 -7.5466571846104347e-01 3.2536149577890090e-02 1.3835595788041468e+01 1.3856857845778766e+01 1.3498000000017862e-01 2 0 0 -75 0 P 166 -213 -1.2575551825091695e+00 -1.1610499427843293e+00 1.8423294034525821e+01 1.8517786682685525e+01 7.4911850608266672e-01 2 0 0 -76 0 P 167 111 -3.9658409068992874e-03 2.7325358129837057e-01 4.8050354861751758e+00 4.8146930194342819e+00 1.3498000000003499e-01 2 0 0 -77 0 P 168 -2112 -1.1473754008853843e+00 -2.8022991199120972e+00 4.9179699685402731e+01 4.9281791805892347e+01 9.3956999999975221e-01 1 0 0 0 0 P 169 2112 -3.2180064710175510e-01 -4.2224082300311155e-01 1.3425782855849898e+01 1.3469086088017200e+01 9.3956999999999347e-01 1 0 0 0 0 P 170 223 -3.6331326139914694e-01 -8.1580332633998121e-01 2.2082115058016225e+01 2.2114163756762146e+01 7.8670301400827780e-01 2 0 0 -78 0 P 171 211 -1.6638938214343557e-01 -1.5213364325973100e+00 2.9784374802053581e+01 2.9823993899237276e+01 1.3957000000011244e-01 1 0 0 0 0 P 172 -213 4.4235336179713626e-02 -4.8873920543581961e-01 4.7718432933684012e+00 4.8336225177734180e+00 5.9379748396593834e-01 2 0 0 -79 0 P 173 211 -2.0521390035509124e-01 -4.4988466628781998e-01 3.4603058765265335e+00 3.4982432022207828e+00 1.3957000000000877e-01 1 0 0 0 0 P 174 223 3.0775903553842932e-01 -9.8566548626154626e-01 2.4773753288861805e+01 2.4807052720850027e+01 7.6469641223095697e-01 2 0 0 -80 0 P 175 -213 1.0931823886581636e-01 -2.9748165649503795e+00 2.9329962545012698e+01 2.9488474256059327e+01 6.7965210657660113e-01 2 0 0 -81 0 P 176 -2114 5.0142359701078743e-01 -3.3766899761491236e+00 2.1505993339509889e+01 2.1807985074876743e+01 1.1945721779523817e+00 2 0 0 -82 0 P 177 221 -2.0362660322698103e-01 -5.2076618420820953e-01 1.2047250014436038e+01 1.2072638304239288e+01 5.4745000000000099e-01 2 0 0 -83 0 P 178 2114 5.3708989367866955e-01 -2.5246524285967733e+00 1.2358852188651557e+01 1.2698883291827912e+01 1.3631118807410338e+00 2 0 0 -84 0 P 179 211 -8.4081224621093398e-01 -9.1335129978659085e-02 3.4218250847129159e+00 3.5275592177335664e+00 1.3957000000000702e-01 1 0 0 0 0 P 180 -211 -2.2031278804372542e-01 -1.8114575540713659e-01 3.7063727461188900e-01 4.8806073752080331e-01 1.3957000000000003e-01 1 0 0 0 0 P 181 213 -1.3452307778146919e-01 -1.7652810170981623e-01 2.1231841241494687e+00 2.3198814092564430e+00 9.0811909947112301e-01 2 0 0 -85 0 P 182 -211 -7.7425536795393135e-01 1.8059636258949233e-04 1.6309018169397684e+00 1.8107434740509107e+00 1.3956999999999822e-01 1 0 0 0 0 P 183 213 -8.7343595864523271e-01 -5.1914990171308961e-01 1.7696788002294721e+00 2.1687081772437229e+00 7.3425139275246853e-01 2 0 0 -86 0 P 184 -2212 -3.1107671881873085e+00 -1.1797834752290535e+00 7.0382680713899539e+00 7.8413219284233939e+00 9.3826999999999783e-01 1 0 0 0 0 P 185 2212 -1.3305386112012327e+00 3.1026906379965624e-01 2.2372529014954470e+00 2.7842864482660934e+00 9.3827000000000038e-01 1 0 0 0 0 P 186 -213 -1.0868050687840674e+00 -1.5322634580354191e+00 2.0049883023099455e+00 2.8013620961882681e+00 5.4651160938740218e-01 2 0 0 -87 0 P 187 -2112 2.1763065455706526e-01 -3.6943737309396369e+00 3.4881003648539108e+00 5.1715951413324861e+00 9.3957000000000068e-01 1 0 0 0 0 P 188 2212 -2.0029706278463105e-01 -1.6055738689921297e+00 9.7546951550309258e-01 2.1094733301765980e+00 9.3827000000000071e-01 1 0 0 0 0 P 189 -211 4.1446014801913966e-01 -1.7510657482765565e-01 9.9351226136172499e-01 1.0995389603010932e+00 1.3956999999999989e-01 1 0 0 0 0 P 190 211 1.0782426959962471e-01 -3.2267917754915301e+00 3.2001906014189330e+00 4.5480227468433512e+00 1.3956999999998465e-01 1 0 0 0 0 P 191 113 2.8606987619444052e-01 -7.4271965742460222e-01 6.5321163764209367e-01 1.3027440678777920e+00 7.9811540471844677e-01 2 0 0 -88 0 P 192 -2212 5.2268400730036402e-01 -1.0020776618513685e+00 1.7596808529484231e+00 2.2922010184541763e+00 9.3827000000000038e-01 1 0 0 0 0 P 193 -213 3.8870142465985247e-01 1.5107078531349782e-01 -1.6853380930334408e-01 8.0944741237390028e-01 6.7297123921655899e-01 2 0 0 -89 0 P 194 3224 1.3380652038935394e+00 -1.0786146584442891e+00 1.7820038963025577e+00 2.8260213905267015e+00 1.3627292254866428e+00 2 0 0 -90 0 P 195 333 4.7061834197900287e+00 2.0613121806756536e+00 2.2732329140826351e+00 5.7087010398922793e+00 1.0121805146761984e+00 2 0 0 -91 0 P 196 311 2.3259789199831693e+00 1.0776281238376622e+00 1.7930943720070938e+00 3.1676999803193899e+00 4.9766999999999895e-01 2 0 0 -92 0 P 197 213 1.6580274682240530e+00 1.1022573807713145e+00 8.6718788101809374e-01 2.2865429181902668e+00 7.1570753586301428e-01 2 0 0 -93 0 P 198 -211 6.8479107795390048e-01 2.3066598797702304e-02 -2.3862473141211996e-01 7.3884533954466114e-01 1.3957000000000017e-01 1 0 0 0 0 P 199 211 1.1054969414817907e-01 -5.1752673543190242e-01 -1.3347675729948968e-01 5.6333913977482974e-01 1.3957000000000011e-01 1 0 0 0 0 P 200 -211 1.1277241392676780e-01 2.1698547232312457e-01 -2.6317027164356849e-01 3.8540717341418196e-01 1.3956999999999994e-01 1 0 0 0 0 P 201 111 9.1759241472600162e-01 -7.3746334904868949e-01 -2.5874185259451199e+00 2.8458359509214191e+00 1.3497999999998739e-01 2 0 0 -94 0 P 202 113 1.3994312783598655e+00 -1.1351106934793307e+00 -2.1964224601024132e+00 2.9820206301737429e+00 9.0625119378482222e-01 2 0 0 -95 0 P 203 213 1.4879754305104860e+00 -1.2098310749643899e+00 -5.7514823604929353e+00 6.1191975280916324e+00 8.2901564097971081e-01 2 0 0 -96 0 P 204 -213 5.3126789530888818e-01 -1.2114758784849975e+00 -6.2531671324219564e+00 6.4370104050825203e+00 7.6359962572114093e-01 2 0 0 -97 0 P 205 223 1.9512032819036333e+00 -1.6342787562468817e+00 -4.8721513079522625e+00 5.5527859596763864e+00 7.8581947415860198e-01 2 0 0 -98 0 P 206 -313 5.5895716003567453e-01 -1.2164028509751468e+00 -1.1907329633806484e+01 1.2016576969148849e+01 9.0639618530578392e-01 2 0 0 -99 0 P 207 311 7.1952409168827680e-01 -3.2300571594934713e-01 -4.5172793905966930e+00 4.6125411795089075e+00 4.9767000000000333e-01 2 0 0 -100 0 P 208 331 8.8024325378201296e-01 -1.9253934471315086e+00 -1.8834719196545574e+01 1.8977507184644477e+01 9.5768659718337523e-01 2 0 0 -101 0 P 209 113 1.3308532259702427e-01 -1.4103781075437853e+00 -1.9736387619296821e+01 1.9799966011026697e+01 7.1188458990913472e-01 2 0 0 -102 0 P 210 -313 -1.4873068595594577e-01 -1.0975803491358320e+00 -4.6715447719320878e+01 4.6737194873971390e+01 8.9751079727283722e-01 2 0 0 -103 0 P 211 321 -5.3656847178256983e-01 -8.6220778176765078e-01 -8.5076132983215018e+01 8.5083625641609430e+01 4.9359999999961901e-01 1 0 0 0 0 P 212 -211 -2.6863701434916248e-01 -1.3689785687355562e+00 -9.8110216752974665e+01 9.8120234300921368e+01 1.3956999999928932e-01 1 0 0 0 0 P 213 213 -2.6184103626602426e+00 -5.6206994268499144e-01 -1.1053161783907385e+02 1.1056656068383148e+02 7.4418000548643015e-01 2 0 0 -104 0 P 214 -213 -1.3168709426572840e+00 -9.3527035808174230e-01 -1.1149991800356845e+02 1.1151476844259933e+02 8.3844277189217176e-01 2 0 0 -105 0 P 215 213 -8.4847785157765376e-01 -4.6999791791926010e-01 -6.6041998105419140e+01 6.6052148640784353e+01 6.3246628417544504e-01 2 0 0 -106 0 P 216 -213 -6.3614780132812687e-01 6.0466864070678195e-01 -9.5448223829579490e+01 9.5455365286003442e+01 7.7007887430843036e-01 2 0 0 -107 0 P 217 -2112 -4.7400736844635238e-01 5.9170839200309167e-01 -1.3349033855042691e+02 1.3349579798592538e+02 9.3956999999813129e-01 1 0 0 0 0 P 218 2112 -9.2884601683326040e-01 5.5325631503995931e-01 -1.9690488111989870e+02 1.9691009077266574e+02 9.3957000000085655e-01 1 0 0 0 0 P 219 -313 -8.4168972565600941e-01 8.8635627431878161e-01 -4.1611197849482423e+01 4.1638838316080069e+01 8.9833223508224969e-01 2 0 0 -108 0 P 220 313 -6.7279319282340133e-01 2.4042816624755221e+00 -3.9559159657676611e+02 3.9560085393447577e+02 1.0445719404317406e+00 2 0 0 -109 0 P 221 -2112 -8.8606990527749419e-01 1.8383465101542337e-01 -1.5768512068958794e+01 1.5822379078689512e+01 9.3956999999999524e-01 1 0 0 0 0 P 222 2212 -2.6614704436164688e-01 6.8893635950537579e-01 -1.2656381652772295e+01 1.2712584894119768e+01 9.3826999999999827e-01 1 0 0 0 0 P 223 -2212 -3.1269057383832061e-01 1.3674271533947213e+00 -1.3765167271491231e+01 1.3868230349249391e+01 9.3827000000000216e-01 1 0 0 0 0 P 224 213 -5.8750830167982759e-01 3.0385204274268124e-01 -8.9238302872851225e+00 8.9799799567648577e+00 7.5352568583273138e-01 2 0 0 -110 0 P 225 1114 -1.3542428860231177e+00 2.3884169656989624e+00 -1.6813625990637753e+01 1.7082463259250243e+01 1.2546005954893427e+00 2 0 0 -111 0 P 226 -311 -2.3632075193857760e-01 4.5815560489077944e-01 -3.2324818532212225e+00 3.3109467552943461e+00 4.9766999999999889e-01 2 0 0 -112 0 P 227 323 -5.5453694347542504e-01 2.2045701747067916e+00 -9.1926955075690557e+00 9.5103860334278689e+00 8.7985847330907407e-01 2 0 0 -113 0 P 228 221 -3.1696669958568774e-01 1.3790271324468251e+00 -4.9700199486389316e+00 5.1964395034523099e+00 5.4745000000000343e-01 2 0 0 -114 0 P 229 223 2.0969349132403003e+00 1.2618765396288050e+00 -5.1143182751221854e+00 5.7238735087533135e+00 7.8549862719646391e-01 2 0 0 -115 0 P 230 -211 5.1889404878258527e-01 7.3167006257689093e-01 -1.9947391500748037e+00 2.1915875926082458e+00 1.3957000000000119e-01 1 0 0 0 0 P 231 213 3.5658929182843496e-01 6.9993133964829202e-01 -1.6574882830893414e+00 1.9756770203157559e+00 7.3414744892067396e-01 2 0 0 -116 0 P 232 223 -7.9360978118905703e-02 5.8013551336518354e-01 -1.4267352061606109e+00 1.7316600040244656e+00 7.8753897828893327e-01 2 0 0 -117 0 P 233 113 1.3771622064136644e+00 1.2294279227782667e+00 -2.6915304566618392e+00 3.3623148076489708e+00 8.0793310769902904e-01 2 0 0 -118 0 P 234 111 -4.0251492321278275e-02 6.7562409405455909e-02 -2.7333997195786502e-01 3.1483202262267856e-01 1.3497999999999996e-01 2 0 0 -119 0 P 235 -211 -1.6858108965307184e-01 1.2322870097588481e-01 -7.3131456595269217e-01 7.7324360702652795e-01 1.3956999999999981e-01 1 0 0 0 0 P 236 223 7.1857064624636180e-01 6.8655753476709813e-01 -1.6639478218971835e+00 2.0952452140885112e+00 7.9600573551453802e-01 2 0 0 -120 0 P 237 211 1.9321876594379825e-01 1.4279011431116198e+00 -4.2592800472858511e-01 1.5090161086364811e+00 1.3956999999999892e-01 1 0 0 0 0 P 238 223 -1.2290849975329284e-01 1.2699974907817282e+00 -1.8283813569658161e-01 1.5053194087754045e+00 7.7753238689294524e-01 2 0 0 -121 0 P 239 -2212 -8.4146485552514827e-01 1.8586110289227735e+00 -2.2503598801073416e-01 2.2568761261348165e+00 9.3826999999999960e-01 1 0 0 0 0 P 240 2212 -1.2719156088207451e+00 2.6553265707731226e+00 -2.0332824817212228e-01 3.0968082735003697e+00 9.3826999999999938e-01 1 0 0 0 0 P 241 -211 -9.4690196173706817e-02 2.9782818501561878e-02 -3.8382424813670118e-01 4.2030237673253290e-01 1.3956999999999997e-01 1 0 0 0 0 P 242 213 -2.3765027158195137e-01 -4.6598369496748310e-02 -3.4236046744807436e-01 8.3640750603616187e-01 7.2368347145671186e-01 2 0 0 -122 0 P 243 113 -1.7183429892726010e+00 1.3250864031824769e+00 -1.3211733158460330e+00 2.6166515302160396e+00 6.2674531940571188e-01 2 0 0 -123 0 P 244 -213 -3.8949210783800881e-01 -2.7418522871988309e-02 -3.3566512097177148e-01 1.0273714094288691e+00 8.8902478143766617e-01 2 0 0 -124 0 P 245 213 -8.5002558245984994e-01 9.5931247178410908e-02 -4.1558978693771904e-02 1.0835704091005451e+00 6.6381577847083517e-01 2 0 0 -125 0 P 246 -213 -4.3948907151517136e-01 -5.3184486913884776e-01 -4.4513077700649291e+00 4.5588902618911895e+00 7.0237450645316113e-01 2 0 0 -126 0 P 247 113 -2.5334523864175346e-01 3.5769214156612071e-02 -4.3251713444875289e-01 8.5846975128213021e-01 6.9601436454344345e-01 2 0 0 -127 0 P 248 113 -2.6397562921292256e-01 3.0006120184171758e-01 -6.2305095272960251e+00 6.3151565423551475e+00 9.4985963544906371e-01 2 0 0 -128 0 P 249 211 1.6711759289113212e-01 -4.5757367334954591e-01 -9.2985839888441699e+00 9.3123813248215672e+00 1.3957000000003697e-01 1 0 0 0 0 P 250 -213 -3.3449884966892407e-01 3.1847814386882722e-01 -1.0437944816133580e+02 1.0438180514932228e+02 5.2794882094996820e-01 2 0 0 -129 0 P 251 -311 -6.5718627282419140e-01 1.7741082195482410e-01 -7.6846952058343547e+01 7.6851578282317575e+01 4.9766999999970024e-01 2 0 0 -130 0 P 252 311 2.7383899289197322e-01 2.5861312316422225e-01 -8.5888917727060857e+01 8.5891185416759910e+01 4.9767000000070233e-01 2 0 0 -131 0 P 253 211 -1.9969280119249017e-01 -8.2232454190437690e-02 -1.2203924601046783e+01 1.2206633231333903e+01 1.3957000000001890e-01 1 0 0 0 0 V -17 0 0 0 0 0 3 1 0 P 84 21 2.4308739179399574e+00 -4.9785162227103479e+00 8.7421348503743790e+00 1.0349864420698522e+01 8.8509949822103395e-08 2 0 0 -17 0 P 85 21 2.1148840671962699e+00 -2.9949801623855010e+00 9.5651006731462775e+00 1.0243719621220931e+01 8.3508013827576842e-08 2 0 0 -17 0 P 86 21 -2.4308739179399574e+00 4.9785162227103479e+00 1.5278494899860416e+01 1.6251989976300489e+01 -1.5530484606084102e-07 2 0 0 -17 0 P 254 92 2.1148840671962694e+00 -2.9949801623855015e+00 3.3585730423381072e+01 3.6845574018219942e+01 1.4702122155299085e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 8 0 P 255 211 2.8391269974158247e-02 -1.4535489462089330e+00 3.1113129499398671e+00 3.4370566856831681e+00 1.3957000000000500e-01 1 0 0 0 0 P 256 -213 1.0832950038517588e+00 -1.1786726029153283e+00 5.7674762150532226e+00 6.0356615252245911e+00 7.7629310549457642e-01 2 0 0 -132 0 P 257 221 2.1583417415860620e+00 -4.3860340904168709e+00 8.1819625910922706e+00 9.5467244361773140e+00 5.4745000000000776e-01 2 0 0 -133 0 P 258 -311 3.5412737503118719e-01 -1.0534476862846769e-01 1.9382811103130024e+00 2.0349724345848199e+00 4.9766999999999917e-01 2 0 0 -134 0 P 259 311 -7.7462308880751485e-01 2.3383737709654255e+00 6.9072176727568966e+00 7.3501948430091266e+00 4.9767000000000172e-01 2 0 0 -135 0 P 260 111 3.2092000527714254e-01 -5.2744620320580493e-01 1.3057179382986148e+00 1.4506233425179968e+00 1.3497999999999941e-01 2 0 0 -136 0 P 261 221 -2.3457958949382471e-01 5.9273779954080330e-01 2.9501250259557312e+00 3.0674590223965290e+00 5.4745000000000077e-01 2 0 0 -137 0 P 262 111 -8.2098865022269896e-01 1.7249548784836743e+00 3.4236369199714662e+00 3.9228817286263964e+00 1.3497999999999663e-01 2 0 0 -138 0 V -19 0 0 0 0 0 2 1 0 P 87 21 -1.5151331246653688e-01 -7.4998502057433947e-01 -2.5410676225718145e+00 2.6537630786155813e+00 -2.6887655320115481e-08 2 0 0 -19 0 P 88 21 1.5151331246653688e-01 7.4998502057433947e-01 -2.6970271350197489e-01 8.1127884762934821e-01 2.9907637691742576e-09 2 0 0 -19 0 P 263 92 0 0 -2.8107703360737895e+00 3.4650419262449295e+00 2.0263478646280868e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 2 0 P 264 -321 7.6293477202256502e-02 -4.9783875641669750e-01 -2.1395575499935542e+00 2.2527786379909935e+00 4.9360000000000070e-01 1 0 0 0 0 P 265 323 -7.6293477202256502e-02 4.9783875641669750e-01 -6.7121278608023571e-01 1.2122632882539366e+00 8.7486659199932859e-01 2 0 0 -139 0 V -21 0 0 0 0 0 0 2 0 P 266 311 3.0623337865297260e+00 1.7986568155414071e+00 4.0580587817063698e+00 5.4155859392035532e+00 4.9767000000000083e-01 2 0 0 -140 0 P 267 111 3.4220266380526136e+00 1.9768713155838700e+00 3.7886974696142279e+00 5.4763797007312442e+00 1.3498000000001592e-01 2 0 0 -141 0 V -22 0 9.8669119948806827e+00 7.2544796751416474e+00 1.5540300288260283e+01 2.0126639755470325e+01 0 2 0 P 268 2212 2.2623384977183738e+00 1.7357036692132950e+00 3.6587911426027140e+00 4.7326468200856908e+00 9.3827000000000216e-01 1 0 0 0 0 P 269 -211 7.2301035394379209e-01 4.5922343450742042e-01 1.0431072470974856e+00 1.3569018566418183e+00 1.3957000000000050e-01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 270 -211 1.7862928027930909e+00 2.2670726369320932e-01 1.9217040244232839e+00 2.6371697524251836e+00 1.3957000000000030e-01 1 0 0 0 0 P 271 111 -5.5028269192347913e-02 -6.6875842793274090e-02 1.5290014319342518e-01 2.2158191024581889e-01 1.3497999999999999e-01 2 0 0 -142 0 V -24 0 0 0 0 0 0 1 0 P 272 130 -7.9131985855261974e-02 3.0405386607759238e-01 -1.5990113514674982e+00 1.7038847835707798e+00 4.9767000000000017e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 2 0 P 273 -311 1.3814668425302615e-01 -2.9359349190104789e-01 -1.5165014136526819e-01 6.1315156293763273e-01 4.9767000000000000e-01 2 0 0 -143 0 P 274 111 -3.5596269336496916e-01 -2.0514743930427126e-01 -1.8189337788117075e-02 4.3283410601512556e-01 1.3498000000000004e-01 2 0 0 -144 0 V -26 0 0 0 0 0 0 2 0 P 275 22 4.2039386871960222e-01 1.5346691492622114e-01 -3.1300547374110854e-01 5.4612775559011983e-01 -1.6149453012142178e-08 1 0 0 0 0 P 276 22 -1.6303722367890121e-02 2.8624768289310443e-01 -6.6278739060414393e-01 7.2214311079492433e-01 -1.4881138858641306e-08 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 277 -211 -6.8218086549737628e-02 2.1203752372658818e-01 -1.9995718729945671e+00 2.0167749202555085e+00 1.3957000000000286e-01 1 0 0 0 0 P 278 111 1.6104451722881604e-02 -2.7554407736937936e-01 -5.5292966670933452e-01 6.3256201962015779e-01 1.3497999999999996e-01 2 0 0 -145 0 V -28 0 0 0 0 0 0 2 0 P 279 211 -3.2171250164441573e-01 -8.1754769208972211e-01 -1.8221702987949961e+01 1.8243404910501770e+01 1.3957000000011452e-01 1 0 0 0 0 P 280 111 -2.6293966825968745e-01 9.0068545291788635e-02 -4.4875640089832860e+00 4.4981885184057857e+00 1.3498000000000840e-01 2 0 0 -146 0 V -29 0 0 0 0 0 0 2 0 P 281 311 4.8227764306808563e-01 1.6799080085382423e-01 -1.9089518075743705e+01 1.9102831947834868e+01 4.9767000000006739e-01 2 0 0 -147 0 P 282 111 -1.8052873464281910e-01 1.2220894187151601e-02 -3.6001098502856288e+00 3.6071804097951747e+00 1.3498000000000440e-01 2 0 0 -148 0 V -30 0 0 0 0 0 0 1 0 P 283 130 -3.1207108979161702e-01 -4.4717569186949419e-01 -2.2463512008646514e+01 2.2475640183451702e+01 4.9767000000001732e-01 1 0 0 0 0 V -31 0 0 0 0 0 0 1 0 P 284 130 -3.0827245514081758e-01 -9.0834425973967292e-02 -2.3017419711853826e+01 2.3025042202351717e+01 4.9766999999996153e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 285 130 4.2277240103438929e-01 -4.4352620377671181e-01 -5.3627932510746732e+01 5.3633741924301901e+01 4.9767000000022316e-01 1 0 0 0 0 P 286 310 1.8946176837119935e-01 -2.5295236322207848e-01 -3.9674449799921440e+01 3.9678829657830391e+01 4.9767000000026795e-01 2 0 0 -149 0 V -33 0 0 0 0 0 0 2 0 P 287 321 -4.2170446647751747e-01 -3.5028845469279885e-01 -7.6712346882761892e+01 7.6715893671909512e+01 4.9359999999960641e-01 1 0 0 0 0 P 288 -321 -5.8851055460422586e-01 -1.3541704114088596e-01 -7.5014937104015260e+01 7.5018991676290057e+01 4.9359999999947685e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 289 -2212 1.2705792896225135e-01 -2.6907073137259655e-02 -7.2759115944111022e+02 7.2759177600847022e+02 9.3827000001454808e-01 1 0 0 0 0 P 290 111 1.8900031264271169e-01 1.7448554669914174e-01 -2.9487353768743850e+02 2.9487368077573456e+02 1.3498000002914370e-01 2 0 0 -150 0 V -35 0 0 0 0 0 0 2 0 P 291 2112 -1.8116617835507798e-01 3.8134421461258028e-01 -1.6660027959987333e+03 1.6660031144364575e+03 9.3957000005363656e-01 1 0 0 0 0 P 292 211 1.3637277334911077e-01 -5.0735995162988157e-02 -7.6555838389008488e+02 7.6555841044028637e+02 1.3956999988148175e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 293 211 -2.9046214119051830e+00 4.8055002133823219e+00 5.4190211395562899e+00 7.8048015825627211e+00 1.3957000000001324e-01 1 0 0 0 0 P 294 111 -2.4478621911510934e+00 4.0848999052776209e+00 5.5562606449621263e+00 7.3190633620811818e+00 1.3497999999999935e-01 2 0 0 -151 0 V -37 0 0 0 0 0 0 3 0 P 295 211 -6.0761375744800883e-01 1.5223285235606110e-01 8.4856270446702919e-01 1.0639115413834690e+00 1.3957000000000047e-01 1 0 0 0 0 P 296 -211 -8.7451906709251270e-01 7.9394975819860070e-01 1.4863108605927506e+00 1.9036122442524734e+00 1.3957000000000119e-01 1 0 0 0 0 P 297 111 -6.5254542747886801e-01 7.4370683494213108e-01 1.0752030120541096e+00 1.4673774254749357e+00 1.3497999999999913e-01 2 0 0 -152 0 V -38 0 0 0 0 0 0 3 0 P 298 -211 -9.6148069252058446e-02 2.0915305685955332e-01 1.8014299599793407e-01 3.2391470531870864e-01 1.3956999999999997e-01 1 0 0 0 0 P 299 211 -3.1330705525204910e-01 9.4266146693399375e-02 2.7002099637049642e-01 4.4658542370306681e-01 1.3957000000000008e-01 1 0 0 0 0 P 300 111 -1.5799071018819916e-01 6.1440247339562472e-02 3.4410665499200199e-01 4.0665090545663712e-01 1.3497999999999993e-01 2 0 0 -153 0 V -39 0 0 0 0 0 0 2 0 P 301 -211 1.1916594608641826e-01 -3.5365042300788802e-01 3.2758556428507846e+00 3.2999968366799468e+00 1.3956999999999736e-01 1 0 0 0 0 P 302 22 -3.4138969779068967e-01 8.7815386178352217e-02 1.6958692147988448e+00 1.7321174502641909e+00 1.0433307151500172e-08 1 0 0 0 0 V -40 0 0 0 0 0 0 2 0 P 303 211 -6.3480618391744159e-01 5.9217711685917940e-01 2.3874372240373649e+00 2.5442069319319751e+00 1.3957000000000003e-01 1 0 0 0 0 P 304 111 1.3161330946731647e-01 2.2816343528133945e-01 3.0766346352246604e-01 4.2691571019928676e-01 1.3498000000000004e-01 2 0 0 -154 0 V -41 0 0 0 0 0 0 2 0 P 305 -211 -1.8978657307597913e-01 2.6696317063195180e-01 6.7159038251505798e-01 7.6013268879881124e-01 1.3956999999999981e-01 1 0 0 0 0 P 306 111 -5.7965174077831161e-01 -4.2751382136388238e-01 1.7840743661215852e+00 1.9287055639201678e+00 1.3497999999999952e-01 2 0 0 -155 0 V -42 0 0 0 0 0 0 2 0 P 307 -2112 2.3770417141587792e-02 -3.7747014583083804e-01 2.1628041899759804e+01 2.1651744431947979e+01 9.3956999999998969e-01 1 0 0 0 0 P 308 111 -2.1279153804591558e-01 -7.2230967114573053e-02 2.1233845589662232e+00 2.1395044138609380e+00 1.3498000000000279e-01 2 0 0 -156 0 V -43 0 0 0 0 0 0 2 0 P 309 2112 1.1655784977084065e+00 -5.1719381359748482e+00 1.6404849514868053e+02 1.6413683032655479e+02 9.3957000000239366e-01 1 0 0 0 0 P 310 111 1.5527567424422856e-01 -5.4812449252051476e-01 1.4205863887437605e+01 1.4217923174047494e+01 1.3498000000006855e-01 2 0 0 -157 0 V -44 0 0 0 0 0 0 2 0 P 311 211 -2.1827974885942256e-01 -3.3651446745819623e-02 1.4103143333201251e+01 1.4105563091573094e+01 1.3956999999999112e-01 1 0 0 0 0 P 312 -211 5.3507125839706837e-01 -1.6544048661002836e-01 1.5402551074568821e+01 1.5413362099028671e+01 1.3956999999992434e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 313 22 2.5104548013175021e-01 -1.3634832021787791e+00 5.1452135836409063e+01 5.1470811071946471e+01 -7.5835053026673039e-07 1 0 0 0 0 P 314 113 1.1108946170792657e+00 -5.0203239007766731e+00 1.8561741156841137e+02 1.8569051672164477e+02 8.4070451138041657e-01 2 0 0 -158 0 V -46 0 0 0 0 0 0 2 0 P 315 22 -3.7112806852160668e-01 1.0096705506398014e+00 2.0553718157071927e+01 2.0581848817451313e+01 -2.5490351609224086e-07 1 0 0 0 0 P 316 22 -4.2880255751906421e-01 8.2300511193353265e-01 3.0037427870385351e+01 3.0051760050223454e+01 3.4659216849842691e-07 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 317 2112 6.6325746218642301e-01 -3.4174526897673418e-01 3.6008649414052951e+00 3.7954868463947697e+00 9.3957000000000013e-01 1 0 0 0 0 P 318 -211 -4.3056306414568445e-02 1.3203069972394918e-01 4.1542373357004458e-01 4.5972014803022959e-01 1.3956999999999992e-01 1 0 0 0 0 V -48 0 -9.9344323304238663e-05 1.2041485407998327e-05 3.0673392839592022e-02 3.0673576331557279e-02 0 2 0 P 319 22 -1.4645463983196377e-01 -2.9849711017792758e-02 3.2065219301659937e+01 3.2065567651771289e+01 4.1536569192309241e-07 1 0 0 0 0 P 320 22 -2.3398394384564525e-01 7.5962518490084660e-02 8.5398383452413213e+01 8.5398737783854841e+01 7.6360273214095575e-07 1 0 0 0 0 V -49 0 6.4354316830719254e-05 1.0095578344902503e-04 2.6971600936541388e-02 2.6971873646063634e-02 0 2 0 P 321 22 2.6957585366662734e-01 4.3192279290475855e-01 1.2875546888587036e+02 1.2875647555156300e+02 3.4755181639464502e-07 1 0 0 0 0 P 322 22 1.7759596665140209e-01 2.6957764529092343e-01 5.8659151945399863e+01 5.8660040226611855e+01 1.0237433932612936e-06 1 0 0 0 0 V -50 0 0 0 0 0 0 3 0 P 323 -211 -1.2699107055555754e-02 2.4360616817177363e-01 1.1927169358604321e+01 1.1930480037543383e+01 1.3957000000004999e-01 1 0 0 0 0 P 324 211 -8.2894059203390644e-02 -5.3655854509028843e-02 9.2391687660437984e+00 9.2407504916058407e+00 1.3956999999997322e-01 1 0 0 0 0 P 325 111 2.1992643897633643e-01 3.8513828062293864e-01 4.4584877047883410e+01 4.4587287202845644e+01 1.3498000000025923e-01 2 0 0 -159 0 V -51 0 0 0 0 0 0 2 0 P 326 211 -4.5142725497731745e-01 -6.0853398355620703e-01 2.6405699160245933e+02 2.6405811556190025e+02 1.3957000003382819e-01 1 0 0 0 0 P 327 -211 2.3209235225376226e-01 -1.4550584242176792e-01 5.3914715324972676e+01 5.3915591874409550e+01 1.3957000000026615e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 328 211 2.5526492666948991e-01 7.5813834737305727e-02 1.6594663708597199e+02 1.6594690942541990e+02 1.3956999999703340e-01 1 0 0 0 0 P 329 111 -3.4410309685840179e-01 -3.0588217796330597e-01 1.2445911380460211e+02 1.2446003856449411e+02 1.3497999999544055e-01 2 0 0 -160 0 V -53 0 0 0 0 0 0 2 0 P 330 2112 -4.8404874374981044e-01 -8.5525371045234777e-01 2.7989989218594201e+02 2.7990319433615338e+02 9.3957000000815616e-01 1 0 0 0 0 P 331 -211 -2.9657701044352908e-01 -5.1505306816541807e-01 1.5129073613914210e+02 1.5129196792590994e+02 1.3956999998645062e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 332 -2112 1.2307423218153850e+00 -7.7895597174324960e-01 5.4400223010727734e+02 5.4400499138569000e+02 9.3957000000432955e-01 1 0 0 0 0 P 333 111 9.7672006990761895e-03 -1.6679905408531515e-01 3.8862174472559573e+01 3.8862768064803547e+01 1.3498000000071983e-01 2 0 0 -161 0 V -55 0 1.2803039546550990e-05 -4.3001812457774098e-06 5.9943943471816143e-04 5.9969876628119341e-04 0 2 0 P 334 22 1.7959822716852879e-02 -3.5464534216201486e-02 4.5989433653526268e-01 4.6160923863848546e-01 -1.1712908793330738e-08 1 0 0 0 0 P 335 22 1.3445286708365192e-01 -1.5726605818602152e-02 6.6760811703513907e+00 6.6774534586710494e+00 -1.4771374980290860e-07 1 0 0 0 0 V -56 0 0 0 0 0 0 2 0 P 336 22 -9.0951811756537881e-02 -1.5060963957491394e-02 2.8126323921142312e+01 2.8126475008107917e+01 -3.2740194414138541e-07 1 0 0 0 0 P 337 111 1.0513520052227536e+00 5.8602440419882429e-01 1.1510425690223533e+02 1.1511062914543292e+02 1.3497999999440091e-01 2 0 0 -162 0 V -57 0 7.0961007011853297e-05 -3.8058868555436490e-05 3.4350475048367420e-03 3.4360112843079089e-03 0 2 0 P 338 22 3.7074314883523546e-01 -2.7423641197269716e-01 1.8972958004415638e+01 1.8978561366167334e+01 -2.2708998105120914e-07 1 0 0 0 0 P 339 22 4.4389917212478691e-01 -1.6268474118870377e-01 2.0461869512627700e+01 2.0467330474486204e+01 -1.5332635959429053e-07 1 0 0 0 0 V -58 0 6.7406584330207320e-05 1.7475520716051672e-05 9.5153851588681924e-03 9.5156453756767862e-03 0 2 0 P 340 22 8.9170839253658263e-01 2.3383423750736571e-01 1.2635832054962434e+02 1.2636168325259665e+02 -1.6536932467228272e-06 1 0 0 0 0 P 341 22 4.1341164547512082e-03 -1.5822330517408821e-03 1.0241914579061162e-01 1.0251475896069805e-01 -1.9184259578675261e-09 1 0 0 0 0 V -59 0 0 0 0 0 0 1 0 P 342 310 6.9143988497464892e-01 -2.0097660021271568e-01 8.6194913026738277e+01 8.6199357235563212e+01 4.9767000000121675e-01 2 0 0 -163 0 V -60 0 0 0 0 0 0 3 0 P 343 211 6.6217901093023668e-01 3.2032566933260476e-01 2.2705420458215411e+01 2.2717761499456692e+01 1.3956999999980160e-01 1 0 0 0 0 P 344 -211 3.5069934124424668e-01 1.5975013529292945e-01 8.3416024454407243e+00 8.3516657785353168e+00 1.3956999999996331e-01 1 0 0 0 0 P 345 221 8.6565598097711172e-01 3.0239364279675462e-01 2.6129837818107728e+01 2.6151652492638359e+01 5.4744999999995025e-01 2 0 0 -164 0 V -61 0 0 0 0 0 0 2 0 P 346 321 1.4395472781296519e+00 7.4075545956669375e-01 4.7988890560769860e+01 4.8018728359155816e+01 4.9360000000001103e-01 1 0 0 0 0 P 347 111 8.9806643989937734e-02 1.0178321348668455e-01 2.0525953289708641e+00 2.0615024231771888e+00 1.3498000000000049e-01 2 0 0 -165 0 V -62 0 0 0 0 0 0 3 0 P 348 -211 9.9022584930924806e-01 6.1770087827864562e-01 2.1025318710595396e+01 2.1058148263194447e+01 1.3957000000002523e-01 1 0 0 0 0 P 349 211 7.7866088387693280e-02 2.5495313658862812e-01 5.0100828871463330e+00 5.0191109322821026e+00 1.3957000000000616e-01 1 0 0 0 0 P 350 111 8.5332159156507226e-01 5.4209289290426677e-01 1.5149492933244348e+01 1.5183786687713605e+01 1.3497999999991403e-01 2 0 0 -166 0 V -63 0 0 0 0 0 0 2 0 P 351 -211 1.1704863189279662e+00 1.6237979356540997e+00 2.2833590920832112e+01 2.2921586159850253e+01 1.3956999999993028e-01 1 0 0 0 0 P 352 111 4.8271904264428045e-01 1.1926183047432866e+00 2.0019392684401492e+01 2.0061148001737291e+01 1.3497999999983656e-01 2 0 0 -167 0 V -64 0 0 0 0 0 0 1 0 P 353 130 -4.1967148092914647e-01 5.1170449098340587e+00 5.1912837582457293e+01 5.2168483340544356e+01 4.9766999999971340e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 354 321 6.9665241958789897e-02 7.1208858726601665e-01 9.5808389773646603e+00 9.6201891806887865e+00 4.9359999999998716e-01 1 0 0 0 0 P 355 -211 -2.1349894632731639e-01 5.1370124782749682e-01 3.8334041037923843e+00 3.8760724425602127e+00 1.3956999999999484e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 356 -321 2.5644638430003303e-01 9.4467763024047020e+00 9.3740241037637233e+01 9.4216685242105726e+01 4.9359999999963972e-01 1 0 0 0 0 P 357 211 -8.4245906395060022e-02 5.5566695860777848e-01 6.1767484452865675e+00 6.2038346434187597e+00 1.3956999999998623e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 358 321 -1.9596598104533551e+00 1.9652790088787653e+00 2.9008580642333666e+01 2.9145222249936971e+01 4.9360000000003318e-01 1 0 0 0 0 P 359 -211 -1.2581278654162403e-01 6.0795253866241419e-02 2.4663842710663713e+00 2.4742789005311474e+00 1.3956999999999695e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 360 211 -1.0586821546912912e+00 1.3613885867147333e+00 1.9236102076276563e+01 1.9313759076433836e+01 1.3956999999990502e-01 1 0 0 0 0 P 361 111 -2.6938138095328701e-01 4.6347888460088382e-01 2.5283774519142805e+00 2.5881057058442822e+00 1.3498000000000385e-01 2 0 0 -168 0 V -69 0 0 0 0 0 0 2 0 P 362 321 -1.2414584429650393e+00 2.6312343669690236e-01 2.0125612067384097e+01 2.0171622519157570e+01 4.9360000000002485e-01 1 0 0 0 0 P 363 111 -4.0983383673762974e-01 2.8580553528920288e-01 1.3947207904990591e+01 1.3956807533356942e+01 1.3498000000004934e-01 2 0 0 -169 0 V -70 0 0 0 0 0 0 2 0 P 364 -321 -1.0892251914354356e+00 1.8782383489284449e-01 1.9336038750264933e+01 1.9373892867009420e+01 4.9360000000000548e-01 1 0 0 0 0 P 365 111 -1.6764928583455911e+00 -1.4134298870593923e-01 2.4920651513207222e+01 2.4977744045202670e+01 1.3497999999970486e-01 2 0 0 -170 0 V -71 0 0 0 0 0 0 2 0 P 366 321 -1.6396131010827215e+00 4.5457769838738876e-01 2.5102968169272756e+01 2.5165405299192670e+01 4.9360000000006082e-01 1 0 0 0 0 P 367 -211 -3.6271290080808805e-01 -1.9195753298463067e-01 6.3733635036162415e+00 6.3880866053153706e+00 1.3956999999999831e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 3 0 P 368 211 -1.0532917373698201e+00 -7.9755911054799566e-01 1.0163863701073391e+01 1.0250323367471239e+01 1.3956999999999270e-01 1 0 0 0 0 P 369 -211 -1.5142305355020175e-01 -3.3548778947336523e-02 2.6124673882154736e+00 2.6207861608885037e+00 1.3956999999999706e-01 1 0 0 0 0 P 370 111 -4.5603756680083579e-01 -5.3386037280121934e-01 7.4325506951608640e+00 7.4668605582612377e+00 1.3497999999998839e-01 2 0 0 -171 0 V -73 0 0 0 0 0 0 2 0 P 371 211 -7.3182755425833745e-01 1.2924406639675451e-01 9.4555482228540733e+00 9.4857338976744092e+00 1.3957000000002800e-01 1 0 0 0 0 P 372 111 -9.2145396695580062e-01 -8.9419630567622876e-01 2.3610039751337109e+01 2.3645313724000832e+01 1.3498000000030858e-01 2 0 0 -172 0 V -74 0 0 0 0 0 0 3 0 P 373 -211 -6.1523131786021534e-02 5.7311263947901932e-02 1.0055013690318289e+00 1.0186179189200180e+00 1.3956999999999986e-01 1 0 0 0 0 P 374 211 -1.6240155320755878e-01 5.4867626365447705e-04 4.4784042281227929e+00 4.4835208018808137e+00 1.3956999999998609e-01 1 0 0 0 0 P 375 111 -2.0139463656281439e-01 2.8196195826184461e-02 2.2214922802305219e+00 2.2348607063123955e+00 1.3497999999999646e-01 2 0 0 -173 0 V -75 0 -5.6790533254732893e-04 2.4484288067995935e-05 1.0411641121079644e-02 1.0427641365525044e-02 0 2 0 P 376 22 -3.6333094792267574e-02 -1.1147807753449648e-03 3.0371816156113496e-01 3.0588569462372167e-01 7.2458602113627990e-09 1 0 0 0 0 P 377 22 -7.1833262366877593e-01 3.3650930353235055e-02 1.3531877626480334e+01 1.3550972151155044e+01 1.1506263324231283e-07 1 0 0 0 0 V -76 0 0 0 0 0 0 2 0 P 378 -211 -1.0686254152761050e-01 5.5715832617782242e-02 2.2058544010860763e+00 2.2135485719714501e+00 1.3957000000000094e-01 1 0 0 0 0 P 379 111 -1.1506926409815590e+00 -1.2167657754021115e+00 1.6217439633439746e+01 1.6304238110714074e+01 1.3497999999982022e-01 2 0 0 -174 0 V -77 0 -6.0697847028520998e-07 4.1821909821924239e-05 7.3541858020348069e-04 7.3689668154489942e-04 0 2 0 P 380 22 4.0589079040356753e-02 8.3783629330459547e-02 8.9813705540730582e-01 9.0294924562615064e-01 2.0887387443339269e-08 1 0 0 0 0 P 381 22 -4.4554919947256043e-02 1.8946995196791103e-01 3.9068984307678698e+00 3.9117437738081313e+00 9.1625292697975916e-08 1 0 0 0 0 V -78 0 0 0 0 0 0 2 0 P 382 22 -3.5573810935660083e-01 -4.4722508896718788e-01 1.8795334328506652e+01 1.8804019581009559e+01 7.2043685636720492e-08 1 0 0 0 0 P 383 111 -7.5751520425461037e-03 -3.6857823737279338e-01 3.2867807295095717e+00 3.3101441757525873e+00 1.3498000000000296e-01 2 0 0 -175 0 V -79 0 0 0 0 0 0 2 0 P 384 -211 4.3470706358751533e-02 -5.8455683713283568e-01 3.5837043846103773e+00 3.6340078837731924e+00 1.3956999999999845e-01 1 0 0 0 0 P 385 111 7.6462982096209622e-04 9.5817631697016042e-02 1.1881389087580241e+00 1.1996146340002261e+00 1.3497999999999971e-01 2 0 0 -176 0 V -80 0 0 0 0 0 0 3 0 P 386 211 5.5451040176107476e-02 -2.3085206187607971e-01 3.1680148786887088e+00 3.1799631363935785e+00 1.3957000000000364e-01 1 0 0 0 0 P 387 -211 -9.8273385316510378e-02 -4.0126666843095365e-01 8.4560419499170081e+00 8.4672780656543623e+00 1.3956999999999303e-01 1 0 0 0 0 P 388 111 3.5058138067883221e-01 -3.5354675595451285e-01 1.3149696460256086e+01 1.3159811518802087e+01 1.3498000000004723e-01 2 0 0 -177 0 V -81 0 0 0 0 0 0 2 0 P 389 -211 2.0483385037801277e-01 -3.8332789859825772e-01 4.5017510694222294e+00 4.5248358710619137e+00 1.3957000000001038e-01 1 0 0 0 0 P 390 111 -9.5515611512196424e-02 -2.5914886663521219e+00 2.4828211475590468e+01 2.4963638384997413e+01 1.3497999999999971e-01 2 0 0 -178 0 V -82 0 0 0 0 0 0 2 0 P 391 -2212 5.2327572376146192e-01 -2.3978597206423640e+00 1.5524012327571649e+01 1.5744804160816154e+01 9.3826999999998972e-01 1 0 0 0 0 P 392 211 -2.1852126750674501e-02 -9.7883025550675939e-01 5.9819810119382399e+00 6.0631809140605890e+00 1.3956999999998226e-01 1 0 0 0 0 V -83 0 0 0 0 0 0 3 0 P 393 111 -9.1943947340116502e-02 -1.1924299340856412e-01 3.3472525047133534e+00 3.3533552617698197e+00 1.3498000000000243e-01 2 0 0 -179 0 P 394 111 -1.5345774271691640e-01 -2.9470622403101360e-01 7.1887789119840546e+00 7.1977192834306232e+00 1.3498000000002316e-01 2 0 0 -180 0 P 395 111 4.1775086830051836e-02 -1.0681696676863191e-01 1.5112185977386310e+00 1.5215637590388460e+00 1.3497999999999943e-01 2 0 0 -181 0 V -84 0 0 0 0 0 0 2 0 P 396 2112 7.0139844484745395e-01 -2.2620929509719812e+00 1.1428662868783924e+01 1.1709233580832349e+01 9.3957000000000079e-01 1 0 0 0 0 P 397 111 -1.6430855116878434e-01 -2.6255947762479237e-01 9.3018931986763376e-01 9.8964971099556232e-01 1.3498000000000029e-01 2 0 0 -182 0 V -85 0 0 0 0 0 0 2 0 P 398 211 -4.0645694756389905e-01 -2.6348186852485217e-01 7.0327181502484104e-01 8.6527508687852783e-01 1.3956999999999997e-01 1 0 0 0 0 P 399 111 2.7193386978242989e-01 8.6953766815035943e-02 1.4199123091246275e+00 1.4546063223779151e+00 1.3498000000000041e-01 2 0 0 -183 0 V -86 0 0 0 0 0 0 2 0 P 400 211 6.7089498024477043e-02 -1.4638828158574002e-01 1.7686382225286684e-01 2.7693162739690080e-01 1.3957000000000000e-01 1 0 0 0 0 P 401 111 -9.4052545666970977e-01 -3.7276162012734959e-01 1.5928149779766052e+00 1.8917765498468222e+00 1.3498000000000085e-01 2 0 0 -184 0 V -87 0 0 0 0 0 0 2 0 P 402 -211 -5.0656401037088761e-01 -8.9878439292725298e-01 7.8838368407255421e-01 1.3059284435927032e+00 1.3956999999999942e-01 1 0 0 0 0 P 403 111 -5.8024105841317974e-01 -6.3347906510816598e-01 1.2166046182373911e+00 1.4954336525955645e+00 1.3498000000000115e-01 2 0 0 -185 0 V -88 0 0 0 0 0 0 2 0 P 404 -211 2.2895701966280685e-01 -7.1827806304631825e-01 7.8768895151957530e-01 1.0992171586872421e+00 1.3957000000000047e-01 1 0 0 0 0 P 405 211 5.7112856531633685e-02 -2.4441594378283932e-02 -1.3447731387748169e-01 2.0352690919054969e-01 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 406 -211 5.4374858630584921e-01 7.3137187612622626e-02 -7.7104433408247630e-02 5.7134617516239694e-01 1.3956999999999986e-01 1 0 0 0 0 P 407 111 -1.5504716164599674e-01 7.7933597700875198e-02 -9.1429375895096449e-02 2.3810123721150325e-01 1.3497999999999999e-01 2 0 0 -186 0 V -90 0 0 0 0 0 0 2 0 P 408 3122 1.1511704376750438e+00 -7.4732054801724956e-01 1.2929009347614060e+00 2.1908938969225944e+00 1.1156800000000000e+00 2 0 0 -187 0 P 409 211 1.8689476621849552e-01 -3.3129411042703943e-01 4.8910296154115185e-01 6.3512749360410703e-01 1.3957000000000022e-01 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 410 -321 1.8957493262797385e+00 9.0109994132800919e-01 9.3518925408408415e-01 2.3503332770706731e+00 4.9359999999999971e-01 1 0 0 0 0 P 411 321 2.8104340935102905e+00 1.1602122393476444e+00 1.3380436599985508e+00 3.3583677628216062e+00 4.9359999999999887e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 1 0 P 412 310 2.3259789199831693e+00 1.0776281238376622e+00 1.7930943720070938e+00 3.1676999803193899e+00 4.9766999999999895e-01 2 0 0 -188 0 V -93 0 0 0 0 0 0 2 0 P 413 211 3.0638134801627775e-01 -2.2088266579458549e-02 4.3060335105289040e-02 3.4013438416622410e-01 1.3957000000000000e-01 1 0 0 0 0 P 414 111 1.3516461202077752e+00 1.1243456473507731e+00 8.2412754591280468e-01 1.9464085340240427e+00 1.3498000000000129e-01 2 0 0 -189 0 V -94 0 1.0745240550780371e-04 -8.6358833788730647e-05 -3.0299329005599777e-04 3.3325462776237719e-04 0 2 0 P 415 22 1.5548218548953593e-01 -1.7490536066011961e-01 -6.0654549322799378e-01 6.5012616509985122e-01 -1.4929328906843320e-08 1 0 0 0 0 P 416 22 7.6211022923646576e-01 -5.6255798838856996e-01 -1.9808730327171262e+00 2.1957097858215677e+00 -5.4904605639041761e-08 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 417 211 8.1881230959764695e-01 -6.3946541787753974e-01 -6.0215190977308508e-01 1.2088988073256186e+00 1.3957000000000067e-01 1 0 0 0 0 P 418 -211 5.8061896876221852e-01 -4.9564527560179095e-01 -1.5942705503293280e+00 1.7731218228481245e+00 1.3957000000000025e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 419 211 9.3461736912158211e-01 -1.1444836285290680e+00 -3.6322237964619881e+00 3.9237586438413294e+00 1.3957000000000436e-01 1 0 0 0 0 P 420 111 5.5335806138890387e-01 -6.5347446435321851e-02 -2.1192585640309471e+00 2.1954388842503030e+00 1.3497999999999996e-01 2 0 0 -190 0 V -97 0 0 0 0 0 0 2 0 P 421 -211 -1.5449825647323254e-01 -4.3644386269411450e-01 -2.0313500569531513e+00 2.0881129747502167e+00 1.3957000000000158e-01 1 0 0 0 0 P 422 111 6.8576615178212075e-01 -7.7503201579088310e-01 -4.2218170754688051e+00 4.3488974303323031e+00 1.3497999999998667e-01 2 0 0 -191 0 V -98 0 0 0 0 0 0 3 0 P 423 211 3.9114799949768836e-01 -5.3596463020120011e-01 -8.5869056381399100e-01 1.0941133906597353e+00 1.3957000000000030e-01 1 0 0 0 0 P 424 -211 1.1743828510438303e+00 -7.5750062226373582e-01 -2.7542760764553660e+00 3.0916821899720137e+00 1.3956999999999747e-01 1 0 0 0 0 P 425 111 3.8567243136211482e-01 -3.4081350378194575e-01 -1.2591846676829057e+00 1.3669903790446374e+00 1.3498000000000066e-01 2 0 0 -192 0 V -99 0 0 0 0 0 0 2 0 P 426 -321 1.7233709840724457e-01 -8.5049220216811039e-01 -5.8772542221362327e+00 5.9614423768962457e+00 4.9359999999999504e-01 1 0 0 0 0 P 427 211 3.8662006162842993e-01 -3.6591064880703628e-01 -6.0300754116702509e+00 6.0551345922526032e+00 1.3956999999998826e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 428 130 7.1952409168827680e-01 -3.2300571594934713e-01 -4.5172793905966930e+00 4.6125411795089075e+00 4.9767000000000333e-01 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 429 22 3.9700737198680593e-02 -9.1427097064582699e-02 -4.4110105045143616e-01 4.5222251085183240e-01 -8.9359660923459974e-09 1 0 0 0 0 P 430 113 8.4054251658333246e-01 -1.8339663500669259e+00 -1.8393618146094138e+01 1.8525284673792644e+01 8.8940398322193326e-01 2 0 0 -193 0 V -102 0 0 0 0 0 0 2 0 P 431 -211 3.5784664251239390e-01 -6.3598907228644186e-01 -1.1125229293039554e+01 1.1150010893592460e+01 1.3956999999997199e-01 1 0 0 0 0 P 432 211 -2.2476131991536963e-01 -7.7438903525734348e-01 -8.6111583262572680e+00 8.6499551174342386e+00 1.3957000000000697e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 433 -321 1.8234173456144583e-02 -6.4143642516602328e-01 -1.9136911402644444e+01 1.9154028092421559e+01 4.9359999999993259e-01 1 0 0 0 0 P 434 211 -1.6696485941209038e-01 -4.5614392396980874e-01 -2.7578536316676438e+01 2.7583166781549835e+01 1.3957000000011083e-01 1 0 0 0 0 V -104 0 0 0 0 0 0 2 0 P 435 211 -1.8684433415934643e+00 -6.6168863945962997e-01 -7.2773497003376789e+01 7.2800619903004431e+01 1.3956999999826955e-01 1 0 0 0 0 P 436 111 -7.4996702106677859e-01 9.9618696774638513e-02 -3.7758120835697056e+01 3.7765940780827044e+01 1.3498000000074573e-01 2 0 0 -194 0 V -105 0 0 0 0 0 0 2 0 P 437 -211 -1.0489609372734354e+00 -5.5468887433209457e-01 -9.5604358388792846e+01 9.5611823649132845e+01 1.3957000000089298e-01 1 0 0 0 0 P 438 111 -2.6791000538384846e-01 -3.8058148374964779e-01 -1.5895559614775598e+01 1.5902944793466485e+01 1.3497999999990420e-01 2 0 0 -195 0 V -106 0 0 0 0 0 0 2 0 P 439 211 -3.7504874395961008e-01 4.9850195273630556e-02 -1.6248524683848782e+01 1.6253528256623472e+01 1.3956999999995234e-01 1 0 0 0 0 P 440 111 -4.7342910761804369e-01 -5.1984811319289059e-01 -4.9793473421570354e+01 4.9798620384160877e+01 1.3497999999889837e-01 2 0 0 -196 0 V -107 0 0 0 0 0 0 2 0 P 441 -211 -7.2508765966409440e-03 4.0195741288894743e-01 -2.2500325801240489e+01 2.2504349874721026e+01 1.3956999999996617e-01 1 0 0 0 0 P 442 111 -6.2889692473148595e-01 2.0271122781783449e-01 -7.2947898028338997e+01 7.2951015411282413e+01 1.3497999999761856e-01 2 0 0 -197 0 V -108 0 0 0 0 0 0 2 0 P 443 -321 -3.0170491599421062e-01 1.5894971169406974e-01 -1.6912513636325112e+01 1.6923151282372487e+01 4.9359999999997700e-01 1 0 0 0 0 P 444 211 -5.3998480966179885e-01 7.2740656262471182e-01 -2.4698684213157311e+01 2.4715687033707582e+01 1.3956999999974234e-01 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 445 321 -4.0281532237254752e-01 2.2012946310149655e+00 -3.0962409221781314e+02 3.0963257270658931e+02 4.9359999998754150e-01 1 0 0 0 0 P 446 -211 -2.6997787045085386e-01 2.0298703146055652e-01 -8.5967504358952951e+01 8.5968281227886422e+01 1.3957000000003705e-01 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 447 211 -3.8648071533029799e-01 4.5259523909131921e-01 -3.8528936402718585e+00 3.9010868975091646e+00 1.3956999999999406e-01 1 0 0 0 0 P 448 111 -2.0102758634952952e-01 -1.4874319634863797e-01 -5.0709366470132640e+00 5.0788930592556927e+00 1.3497999999999233e-01 2 0 0 -198 0 V -111 0 0 0 0 0 0 2 0 P 449 2112 -7.0924840524928123e-01 1.3885715890540256e+00 -1.0027042215808324e+01 1.0190953426484638e+01 9.3957000000000856e-01 1 0 0 0 0 P 450 -211 -6.4499448077383648e-01 9.9984537664493711e-01 -6.7865837748294284e+00 6.8915098327656050e+00 1.3956999999998634e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 1 0 P 451 130 -2.3632075193857760e-01 4.5815560489077944e-01 -3.2324818532212225e+00 3.3109467552943461e+00 4.9766999999999889e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 452 311 -5.4202281255151274e-01 2.1726238359480559e+00 -8.6481993756898685e+00 8.9472404087762456e+00 4.9766999999998979e-01 2 0 0 -199 0 P 453 211 -1.2514130923912322e-02 3.1946338758735641e-02 -5.4449613187918711e-01 5.6314562465162221e-01 1.3956999999999978e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 454 22 1.1932196130638308e-01 8.1854340655322239e-02 -3.7529811033314786e-01 4.0222696969963517e-01 9.3480851035028380e-09 1 0 0 0 0 P 455 22 -4.3628866089207080e-01 1.2971727917915028e+00 -4.5947218383057837e+00 4.7942125337526749e+00 6.4523920698794628e-08 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 456 22 2.0067439678187200e+00 1.3134320609930377e+00 -4.7217596381157829e+00 5.2959549857755137e+00 -7.8529879390570505e-08 1 0 0 0 0 P 457 111 9.0190945421580140e-02 -5.1555521364232873e-02 -3.9255863700640203e-01 4.2791852297779825e-01 1.3498000000000007e-01 2 0 0 -200 0 V -116 0 0 0 0 0 0 2 0 P 458 211 4.5126468605549175e-01 2.0924117263882538e-01 -5.5806669778829332e-01 7.6048662663347510e-01 1.3957000000000000e-01 1 0 0 0 0 P 459 111 -9.4675394227056772e-02 4.9069016700946677e-01 -1.0994215853010483e+00 1.2151903936822810e+00 1.3497999999999954e-01 2 0 0 -201 0 V -117 0 0 0 0 0 0 3 0 P 460 -211 5.6375160567856866e-02 -3.2872431769631914e-02 -3.6059731313848054e-01 3.9213385806659457e-01 1.3956999999999997e-01 1 0 0 0 0 P 461 211 -2.5884282769304529e-01 3.9017772271037870e-01 -8.4584855099659406e-01 9.7682026026829849e-01 1.3956999999999969e-01 1 0 0 0 0 P 462 111 1.2310668900628273e-01 2.2283022242443684e-01 -2.2028934202553638e-01 3.6270588568957268e-01 1.3498000000000004e-01 2 0 0 -202 0 V -118 0 0 0 0 0 0 2 0 P 463 -211 5.4768579435851431e-04 2.4356402846323821e-01 -1.9221494859276578e-01 3.4022067439162196e-01 1.3957000000000000e-01 1 0 0 0 0 P 464 211 1.3766145206193059e+00 9.8586389431502852e-01 -2.4993155080690732e+00 3.0220941332573483e+00 1.3956999999999559e-01 1 0 0 0 0 V -119 0 -1.1937157821908289e-05 2.0036602306915307e-05 -8.1062892233989102e-05 9.3367955439773944e-05 0 2 0 P 465 22 -4.9474751153526654e-02 2.9431738350285779e-03 -2.3274640425083407e-01 2.3796491751016413e-01 -5.8292000919554573e-09 1 0 0 0 0 P 466 22 9.2232588322483742e-03 6.4619235570427327e-02 -4.0593567707030973e-02 7.6867105112514336e-02 -2.8672812533914840e-09 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 467 -211 2.9839594635009770e-01 3.4684642554131900e-01 -1.1305278444584148e+00 1.2275648967385593e+00 1.3956999999999944e-01 1 0 0 0 0 P 468 211 6.5492722020448008e-02 1.5541153244584759e-02 -2.8192594748837670e-02 1.5749740118646888e-01 1.3956999999999997e-01 1 0 0 0 0 P 469 111 3.5468197787581618e-01 3.2416995598119436e-01 -5.0522738268993117e-01 7.1018291616348295e-01 1.3498000000000016e-01 2 0 0 -203 0 V -121 0 0 0 0 0 0 3 0 P 470 -211 4.4542248328503883e-02 2.6345201411254138e-01 -2.8402747049091159e-01 4.1417673102140645e-01 1.3957000000000003e-01 1 0 0 0 0 P 471 211 -1.4973682990161505e-01 3.2677797474303066e-01 9.8060051448326149e-02 3.9786998076782615e-01 1.3956999999999997e-01 1 0 0 0 0 P 472 111 -1.7713918180181667e-02 6.7976750192615609e-01 3.1292833460038641e-03 6.9327269698617178e-01 1.3497999999999991e-01 2 0 0 -204 0 V -122 0 0 0 0 0 0 2 0 P 473 211 8.4215108407071887e-02 -1.4416239091939118e-01 1.2034580542673930e-01 2.4867222849248932e-01 1.3956999999999997e-01 1 0 0 0 0 P 474 111 -3.2186537998902326e-01 9.7564021422642866e-02 -4.6270627287481370e-01 5.8773527754367250e-01 1.3497999999999977e-01 2 0 0 -205 0 V -123 0 0 0 0 0 0 2 0 P 475 -211 -6.6288433069510433e-01 3.4870889548021233e-01 -7.3197673467743640e-01 1.0565430680654566e+00 1.3956999999999956e-01 1 0 0 0 0 P 476 211 -1.0554586585774965e+00 9.7637750770226461e-01 -5.8919658116859674e-01 1.5601084621505830e+00 1.3956999999999975e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 477 -211 -4.1792807964229839e-01 2.2097145863086262e-01 1.0411247360863655e-01 5.0379703983237079e-01 1.3957000000000006e-01 1 0 0 0 0 P 478 111 2.8435971804289580e-02 -2.4838998150285094e-01 -4.3977759458040805e-01 5.2357436959649839e-01 1.3497999999999988e-01 2 0 0 -206 0 V -125 0 0 0 0 0 0 2 0 P 479 211 -2.3317887496131016e-03 -8.8800757103705118e-03 1.4225606923550035e-01 1.9950154665498263e-01 1.3957000000000003e-01 1 0 0 0 0 P 480 111 -8.4769379371023679e-01 1.0481132288878141e-01 -1.8381504792927228e-01 8.8406886244556226e-01 1.3497999999999982e-01 2 0 0 -207 0 V -126 0 0 0 0 0 0 2 0 P 481 -211 -2.4841824995074743e-01 -6.2507304461244373e-01 -3.7797191115148197e+00 3.8416382293053104e+00 1.3957000000000325e-01 1 0 0 0 0 P 482 111 -1.9107082156442395e-01 9.3228175473595951e-02 -6.7158865855010985e-01 7.1725203258587955e-01 1.3498000000000018e-01 2 0 0 -208 0 V -127 0 0 0 0 0 0 2 0 P 483 -211 3.3339414513076288e-02 -2.6235508857640732e-01 -1.2293331084643182e-01 3.2331732535958335e-01 1.3956999999999997e-01 1 0 0 0 0 P 484 211 -2.8668465315482977e-01 2.9812430273301938e-01 -3.0958382360232106e-01 5.3515242592254697e-01 1.3957000000000017e-01 1 0 0 0 0 V -128 0 0 0 0 0 0 2 0 P 485 211 1.9200784492908282e-01 2.1707435247544291e-02 -4.3169595314477576e+00 4.3235353134115808e+00 1.3956999999998829e-01 1 0 0 0 0 P 486 -211 -4.5598347414200535e-01 2.7835376659417327e-01 -1.9135499958482669e+00 1.9916212289435655e+00 1.3956999999999858e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 487 -211 -3.2833813936654399e-01 7.4354075908762566e-03 -4.6984259644012212e+01 4.6985614769841028e+01 1.3957000000030273e-01 1 0 0 0 0 P 488 111 -6.1607103023800141e-03 3.1104273627795093e-01 -5.7395188517323582e+01 5.7396190379481247e+01 1.3498000000063307e-01 2 0 0 -209 0 V -130 0 0 0 0 0 0 1 0 P 489 310 -6.5718627282419140e-01 1.7741082195482410e-01 -7.6846952058343547e+01 7.6851578282317575e+01 4.9766999999970024e-01 2 0 0 -210 0 V -131 0 0 0 0 0 0 1 0 P 490 310 2.7383899289197322e-01 2.5861312316422225e-01 -8.5888917727060857e+01 8.5891185416759910e+01 4.9767000000070233e-01 2 0 0 -211 0 V -132 0 0 0 0 0 0 2 0 P 491 -211 4.3649940178097013e-01 -7.9126723760571782e-01 4.0994216147519191e+00 4.2001634408030553e+00 1.3956999999999975e-01 1 0 0 0 0 P 492 111 6.4679560207078868e-01 -3.8740536530961039e-01 1.6680546003013035e+00 1.8354980844215361e+00 1.3498000000000113e-01 2 0 0 -212 0 V -133 0 0 0 0 0 0 2 0 P 493 22 5.6864378614401079e-01 -1.2021635621597491e+00 1.7768467242203034e+00 2.2194002043518952e+00 -3.3038988290478963e-08 1 0 0 0 0 P 494 22 1.5896979554420512e+00 -3.1838705282571214e+00 6.4051158668719674e+00 7.3273242318254166e+00 -1.4915124490236939e-07 1 0 0 0 0 V -134 0 0 0 0 0 0 1 0 P 495 130 3.5412737503118719e-01 -1.0534476862846769e-01 1.9382811103130024e+00 2.0349724345848199e+00 4.9766999999999917e-01 1 0 0 0 0 V -135 0 0 0 0 0 0 1 0 P 496 130 -7.7462308880751485e-01 2.3383737709654255e+00 6.9072176727568966e+00 7.3501948430091266e+00 4.9767000000000172e-01 1 0 0 0 0 V -136 0 9.5292031550715133e-05 -1.5661666275303509e-04 3.8771193109396484e-04 4.3073925916227202e-04 0 2 0 P 497 22 5.3011075681773628e-02 -5.1263053189598708e-02 2.6667221800995677e-01 2.7668058592103689e-01 2.5598138369731631e-09 1 0 0 0 0 P 498 22 2.6790892959536894e-01 -4.7618315001620626e-01 1.0390457202886580e+00 1.1739427565969600e+00 -7.8059055908770352e-09 1 0 0 0 0 V -137 0 0 0 0 0 0 3 0 P 499 111 -6.7942735768543441e-02 2.2211019222257272e-01 6.3973487129294393e-01 6.9385117913069938e-01 1.3498000000000010e-01 2 0 0 -213 0 P 500 111 -1.9604521411138837e-01 1.4236208457933971e-01 1.1811039930333942e+00 1.2132299583595780e+00 1.3498000000000066e-01 2 0 0 -214 0 P 501 111 2.9408360386107099e-02 2.2826552273889086e-01 1.1292861616293932e+00 1.1603778849062516e+00 1.3497999999999929e-01 2 0 0 -215 0 V -138 0 -3.1336668254231703e-04 6.5840543308240428e-04 1.3067826742182555e-03 1.4973415685735330e-03 0 2 0 P 502 22 -7.4353431505148962e-02 2.6313286211965464e-01 4.6781743636932915e-01 5.4186759422855635e-01 1.5618754393652476e-09 1 0 0 0 0 P 503 22 -7.4663521871754990e-01 1.4618220163640196e+00 2.9558194836021374e+00 3.3810141343978399e+00 -5.6673102224697903e-08 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 504 311 -2.6620835943512777e-01 1.4142633786532155e-01 -4.0267865400476671e-01 7.0759722085818633e-01 4.9767000000000006e-01 2 0 0 -216 0 P 505 211 1.8991488223287128e-01 3.5641241855137601e-01 -2.6853413207546900e-01 5.0466606739575037e-01 1.3957000000000008e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 1 0 P 506 130 3.0623337865297260e+00 1.7986568155414071e+00 4.0580587817063698e+00 5.4155859392035532e+00 4.9767000000000083e-01 1 0 0 0 0 V -141 0 4.1228351598574209e-04 2.3817215435356480e-04 4.5645977632358283e-04 6.5979062020842503e-04 0 2 0 P 507 22 5.3985301304025968e-01 3.4316142512790310e-01 5.5646008170858430e-01 8.4784955146513374e-01 2.0960008895457175e-07 1 0 0 0 0 P 508 22 2.8821736250123537e+00 1.6337098904559668e+00 3.2322373879056436e+00 4.6285301492662603e+00 1.0735067320382023e-06 1 0 0 0 0 V -142 0 -1.2390273054380195e-05 -1.5057895970780310e-05 3.4427296224752241e-05 4.9891817644865368e-05 0 2 0 P 509 22 -1.1053321583879418e-02 2.4170356990269298e-02 -1.1193448550866085e-02 2.8838782317141046e-02 2.9095033403954778e-08 1 0 0 0 0 P 510 22 -4.3974947608468491e-02 -9.1046199783543391e-02 1.6409359174429128e-01 1.9274312792870402e-01 7.8601617486916961e-08 1 0 0 0 0 V -143 0 0 0 0 0 0 1 0 P 511 130 1.3814668425302615e-01 -2.9359349190104789e-01 -1.5165014136526819e-01 6.1315156293763273e-01 4.9767000000000000e-01 1 0 0 0 0 V -144 0 -6.9568718278162977e-05 -4.0093652162060809e-05 -3.5548919587211769e-06 8.4592331004960548e-05 0 2 0 P 512 22 -3.5995616869500197e-01 -2.0625407513767552e-01 -3.4226771312614396e-02 4.1626993497845621e-01 -2.1261339169738934e-08 1 0 0 0 0 P 513 22 3.9934753300328090e-03 1.1066358334042641e-03 1.6037433524497317e-02 1.6564171036668608e-02 -3.7756927403942037e-09 1 0 0 0 0 V -145 0 3.0573071364570492e-06 -5.2309938186404788e-05 -1.0496947335297335e-04 1.2008706723549037e-04 0 2 0 P 514 22 1.3610021528460230e-02 -1.3835128436423011e-01 -4.1640368726871080e-01 4.3899697190551951e-01 -5.8497975237672741e-09 1 0 0 0 0 P 515 22 2.4944301944213724e-03 -1.3719279300514925e-01 -1.3652597944062370e-01 1.9356504771463820e-01 -3.3193680991845328e-09 1 0 0 0 0 V -146 0 -1.1003675715236046e-05 3.7692489349118137e-06 -1.8779859057800195e-04 1.8824321217919445e-04 0 2 0 P 516 22 -2.5764364410873958e-01 4.5854198422510525e-02 -3.5934091259582948e+00 3.6029254781889333e+00 -6.4992704698323836e-08 1 0 0 0 0 P 517 22 -5.2960241509478739e-03 4.4214346869278109e-02 -8.9415488302499113e-01 8.9526304021685144e-01 -9.4317966608931748e-09 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 518 130 4.8227764306808563e-01 1.6799080085382423e-01 -1.9089518075743705e+01 1.9102831947834868e+01 4.9767000000006739e-01 1 0 0 0 0 V -148 0 -2.7097967052123497e-05 1.8343971040739484e-06 -5.4038853316111524e-04 5.4144984779896964e-04 0 2 0 P 519 22 -7.4898750022151808e-02 -2.6216913538606980e-02 -6.3478452475105862e-01 6.3972536464782992e-01 4.9115678085314548e-09 1 0 0 0 0 P 520 22 -1.0562998462066729e-01 3.8437807725758583e-02 -2.9653253255345704e+00 2.9674550451473447e+00 -3.3241823869896584e-08 1 0 0 0 0 V -149 0 1.5476253162188915e+01 -2.0662505395436522e+01 -3.2408217998427449e+03 3.2411795701221849e+03 0 2 0 P 521 211 2.3226749053011436e-01 -2.2642539334331174e-01 -3.5478345483703180e+01 3.5480102799904763e+01 1.3957000000066466e-01 1 0 0 0 0 P 522 -211 -4.2805722158915024e-02 -2.6526969878766748e-02 -4.1961043162182641e+00 4.1987268579256307e+00 1.3956999999999581e-01 1 0 0 0 0 V -150 0 9.2284253549246465e-07 8.5197046539824457e-07 -1.4397957303040592e-03 1.4397964289693897e-03 0 2 0 P 523 22 4.2081269636854379e-02 1.2056401341208531e-01 -1.0275966051327256e+02 1.0275973985621806e+02 -1.4597054596255370e-06 1 0 0 0 0 P 524 22 1.4691904300585731e-01 5.3921533287056414e-02 -1.9211387717416594e+02 1.9211394091951644e+02 -3.5683225505580343e-06 1 0 0 0 0 V -151 0 -6.4609648265863851e-04 1.0781813904202626e-03 1.4665369939622815e-03 1.9318167140661860e-03 0 2 0 P 525 22 -2.0935073997422546e+00 3.5806941469771636e+00 4.8477009833772797e+00 6.3799959742314192e+00 -1.5163121364216736e-07 1 0 0 0 0 P 526 22 -3.5435479140883852e-01 5.0420575830045777e-01 7.0855966158484662e-01 9.3906738784976074e-01 -2.2634922942392031e-08 1 0 0 0 0 V -152 0 -2.8188773308533623e-04 3.2126779984018304e-04 4.6446810737061451e-04 6.3388030722370142e-04 0 2 0 P 527 22 -4.8597086129312500e-01 5.2077297983886273e-01 8.5273013983125157e-01 1.1110899450237390e+00 -2.6101966308879700e-08 1 0 0 0 0 P 528 22 -1.6657456618574307e-01 2.2293385510326844e-01 2.2247287222285814e-01 3.5628748045119640e-01 -9.3712526361914856e-09 1 0 0 0 0 V -153 0 -8.3728865500357075e-05 3.2560915763179751e-05 1.8236299969335253e-04 2.1550899371246938e-04 0 2 0 P 529 22 -9.8999382063783475e-02 2.6099954040613244e-02 3.1633022220931806e-01 3.3248593163159490e-01 -6.1568188584304191e-09 1 0 0 0 0 P 530 22 -5.8991328124415668e-02 3.5340293298949228e-02 2.7776432782683911e-02 7.4164973825042113e-02 -2.5282670223800682e-09 1 0 0 0 0 V -154 0 1.2956295145731744e-05 2.2460895641433575e-05 3.0287048134330438e-05 4.2026493871162865e-05 0 2 0 P 531 22 2.9511188860004721e-02 -1.2563333387411609e-02 5.2761082611401798e-02 6.1745278783574040e-02 -2.1768614616952965e-09 1 0 0 0 0 P 532 22 1.0210212060731176e-01 2.4072676866875106e-01 2.5490238091106421e-01 3.6517043141571259e-01 -6.4070745864030968e-09 1 0 0 0 0 V -155 0 -8.3760146138260833e-05 -6.1776093530719112e-05 2.5780019124452237e-04 2.7869951649712115e-04 0 2 0 P 533 22 -1.8451037146853469e-01 -2.0008702732533962e-01 5.6422502899681815e-01 6.2644136120614524e-01 -2.5979142641207898e-09 1 0 0 0 0 P 534 22 -3.9514136930977689e-01 -2.2742679403854277e-01 1.2198493371247672e+00 1.3022642027140225e+00 -1.7829416058097636e-08 1 0 0 0 0 V -156 0 -8.7641369671399730e-05 -2.9749401450564509e-05 8.7454761028488582e-04 8.8118681302222447e-04 0 2 0 P 535 22 -1.0275945127038592e-01 1.3149977629196456e-02 5.2900789631817324e-01 5.3905638026464175e-01 -1.6299808046954814e-08 1 0 0 0 0 P 536 22 -1.1003208677552966e-01 -8.5380944743769505e-02 1.5943766626480502e+00 1.6004480335962954e+00 -4.6812278635286508e-08 1 0 0 0 0 V -157 0 4.9913107357918801e-05 -1.7619370692700828e-04 4.5664513310075677e-03 4.5703277686411428e-03 0 2 0 P 537 22 7.2034512837753528e-02 -1.5202194310419279e-01 2.9586473526151726e+00 2.9634260239394732e+00 -3.9104459388585789e-08 1 0 0 0 0 P 538 22 8.3241161406475028e-02 -3.9610254941632200e-01 1.1247216534822432e+01 1.1254497150108019e+01 1.0205527791233901e-07 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 539 211 7.9655254947817011e-01 -3.1295196324073902e+00 1.0277518415985375e+02 1.0282600034996234e+02 1.3956999999609157e-01 1 0 0 0 0 P 540 -211 3.1434206760109562e-01 -1.8908042683692827e+00 8.2842227408557633e+01 8.2864516371682427e+01 1.3957000000068776e-01 1 0 0 0 0 V -159 0 3.6214186612224306e-05 6.3418794170040773e-05 7.3415686854678428e-03 7.3419655536296367e-03 0 2 0 P 541 22 9.0791251727033118e-02 2.5014562143832414e-01 2.1332896102971848e+01 2.1334555819690884e+01 -4.5867991362873866e-07 1 0 0 0 0 P 542 22 1.2913518724930331e-01 1.3499265918461453e-01 2.3251980944911566e+01 2.3252731383154753e+01 -4.7939145392612850e-07 1 0 0 0 0 V -160 0 -1.2157021595247700e-04 -1.0806692171769436e-04 4.3970895585126304e-02 4.3971222299011771e-02 0 2 0 P 543 22 -2.1171760959838504e-01 -1.8970212698787461e-01 9.2743666432857921e+01 9.2744102101710027e+01 -8.2590618494457111e-07 1 0 0 0 0 P 544 22 -1.3238548726001675e-01 -1.1618005097543138e-01 3.1715447371744194e+01 3.1715936462784089e+01 -2.8370965666561979e-07 1 0 0 0 0 V -161 0 3.5080713326925313e-06 -5.9908974739535109e-05 1.3958070934917549e-02 1.3958284134584326e-02 0 2 0 P 545 22 -3.8810252789273463e-02 -7.5220786712183227e-02 2.7233577401465510e+01 2.7233708937346162e+01 3.2646808475563891e-07 1 0 0 0 0 P 546 22 4.8577453488349652e-02 -9.1578267373131933e-02 1.1628597071094061e+01 1.1629059127457383e+01 1.1237787551431623e-07 1 0 0 0 0 V -162 0 1.5178404582213249e-04 8.4604542130450658e-05 1.6617640635278725e-02 1.6618560598191893e-02 0 2 0 P 547 22 8.4319396432758853e-01 5.2853165173125682e-01 9.4035105336540909e+01 9.4040370891562858e+01 -1.3234378880962442e-06 1 0 0 0 0 P 548 22 2.0815804089516504e-01 5.7492752467567472e-02 2.1069151565694426e+01 2.1070258253870062e+01 -1.8394033455295130e-07 1 0 0 0 0 V -163 0 4.6637326669094410e+00 -1.3555786353441361e+00 5.8138102869052170e+02 5.8141100469035314e+02 0 2 0 P 549 211 3.4271429266718384e-01 -1.3776079110878162e-01 6.3666168228867846e+01 6.3667392657885458e+01 1.3957000000083888e-01 1 0 0 0 0 P 550 -211 3.4872559230746503e-01 -6.3215809103934081e-02 2.2528744797870424e+01 2.2531964577677744e+01 1.3957000000026396e-01 1 0 0 0 0 V -164 0 0 0 0 0 0 3 0 P 551 111 2.9825024814632706e-01 4.5609154453568335e-02 9.4375932474661610e+00 9.4433796551080267e+00 1.3497999999999519e-01 2 0 0 -217 0 P 552 111 1.0605804374348120e-01 -2.5837892049880382e-02 4.2219247841410175e+00 4.2254922066727865e+00 1.3498000000000757e-01 2 0 0 -218 0 P 553 111 4.6134768908730345e-01 2.8262238039306664e-01 1.2470319786500550e+01 1.2482780630857548e+01 1.3497999999996985e-01 2 0 0 -219 0 V -165 0 1.7375701767379798e-05 1.9692916736409119e-05 3.9713413953326921e-04 3.9885747542098358e-04 0 2 0 P 554 22 2.6093223961751932e-03 3.5507820288978045e-02 1.3458450636142134e+00 1.3463159172793682e+00 -3.4225312666991651e-08 1 0 0 0 0 P 555 22 8.7197321593762533e-02 6.6275393197706506e-02 7.0675026535665075e-01 7.1518650589782007e-01 -1.6784812614990919e-08 1 0 0 0 0 V -166 0 1.3711346201430178e-04 8.7104596923566835e-05 2.4342515698314309e-03 2.4397619605765236e-03 0 2 0 P 556 22 3.0775516862917657e-01 2.4679548346019944e-01 5.1678711691671229e+00 5.1829059103540631e+00 -1.0998284774448366e-07 1 0 0 0 0 P 557 22 5.4556642293589563e-01 2.9529740944406735e-01 9.9816217640772251e+00 1.0000880777359539e+01 -2.1258649062475202e-07 1 0 0 0 0 V -167 0 9.3728326180861056e-05 2.3156765654802944e-04 3.8871144531355253e-03 3.8952219766788198e-03 0 2 0 P 558 22 4.4793789389014799e-01 1.1039710779181926e+00 1.9000506040394153e+01 1.9037821048867890e+01 -1.0911985126045950e-07 1 0 0 0 0 P 559 22 3.4781148754132470e-02 8.8647226825094030e-02 1.0188866440073383e+00 1.0233269528694009e+00 -1.5958668187441113e-08 1 0 0 0 0 V -168 0 -4.2242919709208015e-05 7.2680232166838342e-05 3.9648636931706861e-04 4.0585262850769077e-04 0 2 0 P 560 22 -1.5080211649718875e-01 3.5818519049893216e-01 1.9519257200913069e+00 1.9902391629617664e+00 -5.0934064812493761e-08 1 0 0 0 0 P 561 22 -1.1857926445609825e-01 1.0529369410195170e-01 5.7645173182297371e-01 5.9786654288251484e-01 -1.7648347772547244e-08 1 0 0 0 0 V -169 0 -1.2265595670325379e-05 8.5536498501525573e-06 4.1741505351130338e-04 4.1770235326445284e-04 0 2 0 P 562 22 -1.3706959900935115e-01 1.7659070996460757e-01 5.8357876145983436e+00 5.8400675883518511e+00 -8.5681676864624023e-08 1 0 0 0 0 P 563 22 -2.7276423772827857e-01 1.0921482532459531e-01 8.1114202903922479e+00 8.1167399450050901e+00 5.9488115544137774e-08 1 0 0 0 0 V -170 0 -6.4736364016958000e-05 -5.4578408267971784e-06 9.6229003295054841e-04 9.6449461313441801e-04 0 2 0 P 564 22 -1.6419837625429345e+00 -1.1982950412197201e-01 2.4187558609832298e+01 2.4243524110380189e+01 5.1640640053640179e-07 1 0 0 0 0 P 565 22 -3.4509095802656431e-02 -2.1513484583967218e-02 7.3309290337492294e-01 7.3421993482248615e-01 1.3864668953194661e-08 1 0 0 0 0 V -171 0 -1.1864937627838293e-04 -1.3889689109816900e-04 1.9337606555633472e-03 1.9426872093242877e-03 0 2 0 P 566 22 -1.6312064978655344e-01 -2.0203636068223246e-01 3.4594500830651431e+00 3.4691817356033594e+00 5.3847843876010791e-08 1 0 0 0 0 P 567 22 -2.9291691701428235e-01 -3.3182401211898688e-01 3.9731006120957209e+00 3.9976788226578792e+00 4.5701280781571928e-08 1 0 0 0 0 V -172 0 -3.2021536291654924e-04 -3.1074302657431159e-04 8.2047478426138364e-03 8.2170059351101311e-03 0 2 0 P 568 22 -4.0203697858193604e-01 -4.0086593569779549e-01 1.1673169470001753e+01 1.1686967643744511e+01 -1.7889152770553484e-07 1 0 0 0 0 P 569 22 -5.1941698837386463e-01 -4.9333036997843327e-01 1.1936870281335356e+01 1.1958346080256318e+01 -1.0078958614519747e-07 1 0 0 0 0 V -173 0 -1.8589092577612752e-05 2.6025603436860295e-06 2.0504779254524620e-04 2.0628172267513536e-04 0 2 0 P 570 22 -2.1468011819497154e-01 1.4078608160351074e-02 1.7818333553807240e+00 1.7947746005287877e+00 2.0115274066529402e-08 1 0 0 0 0 P 571 22 1.3285481632157137e-02 1.4117587665833386e-02 4.3965892484979796e-01 4.4008610578360824e-01 7.3985577772537469e-09 1 0 0 0 0 V -174 0 -6.5328110395028685e-05 -6.9079271101061746e-05 9.2071040429556733e-04 9.2563820195720964e-04 0 2 0 P 572 22 -1.3201516014633222e-01 -1.8969950488160423e-01 1.9477691764468823e+00 1.9614328103142749e+00 2.1960262437447152e-08 1 0 0 0 0 P 573 22 -1.0186774808352268e+00 -1.0270662705205071e+00 1.4269670456992865e+01 1.4342805300399803e+01 1.7500936458328880e-07 1 0 0 0 0 V -175 0 -3.6033425252536125e-06 -1.7532501382797475e-04 1.5634533415708467e-03 1.5745668477963452e-03 0 2 0 P 574 22 4.0313512514734223e-02 -3.1272512858509222e-01 2.4670379696740543e+00 2.4871064571411732e+00 9.1724636049904897e-09 1 0 0 0 0 P 575 22 -4.7888664557280330e-02 -5.5853108787701160e-02 8.1974275983551725e-01 8.2303771861141384e-01 -1.3915405420105843e-08 1 0 0 0 0 V -176 0 5.1883240426524882e-08 6.5016156657103889e-06 8.0620052963193642e-05 8.1398727552501097e-05 0 2 0 P 576 22 -6.6065972401129880e-02 4.9475267901188780e-02 5.1341746823244894e-01 5.2000962638149195e-01 -1.0895877104995391e-08 1 0 0 0 0 P 577 22 6.6830602222091973e-02 4.6342363795827263e-02 6.7472144052557503e-01 6.7960500761873388e-01 -6.1004294578795799e-09 1 0 0 0 0 V -177 0 1.0602166712337458e-04 -1.0691844615301195e-04 3.9766879181751865e-03 3.9797468808845599e-03 0 2 0 P 578 22 5.6927994272722458e-02 -5.1514921691679649e-02 3.6131489618812433e+00 3.6139645826200786e+00 -5.2212239393628312e-08 1 0 0 0 0 P 579 22 2.9365338640610977e-01 -3.0203183426283320e-01 9.5365474983748424e+00 9.5458469361820057e+00 -1.6111611370225184e-07 1 0 0 0 0 V -178 0 -2.3853372332902112e-07 -6.4717948277072822e-06 6.2004164901532301e-05 6.2342370189949001e-05 0 2 0 P 580 22 1.0889567124311290e-02 -8.9558518546932520e-01 9.0254910445647862e+00 9.0698224901385718e+00 7.9594033283075306e-08 1 0 0 0 0 P 581 22 -1.0640517863650771e-01 -1.6959034808827969e+00 1.5802720431025683e+01 1.5893815894858841e+01 -2.6005087961297081e-07 1 0 0 0 0 V -179 0 -3.9057587494001639e-06 -5.0654162485251345e-06 1.4219055342897603e-04 1.4244979721237140e-04 0 2 0 P 582 22 3.5503572700885756e-02 -3.0235977878056111e-02 7.2237235063562344e-01 7.2387604670662065e-01 1.2684463031474720e-08 1 0 0 0 0 P 583 22 -1.2744752004100227e-01 -8.9007015530508007e-02 2.6248801540777298e+00 2.6294792150631991e+00 4.1015217795697596e-08 1 0 0 0 0 V -180 0 -6.4815922418187848e-05 -1.2447502103682121e-04 3.0363234072861133e-03 3.0400995505540322e-03 0 2 0 P 584 22 -4.7077671836974408e-02 -2.0895086789436190e-01 5.0838730122713791e+00 5.0883830022199250e+00 -7.4633752963130081e-08 1 0 0 0 0 P 585 22 -1.0638007087994197e-01 -8.5755356136651681e-02 2.1049058997126759e+00 2.1093362812106973e+00 -3.8359864291956597e-08 1 0 0 0 0 V -181 0 7.9045982254682003e-06 -2.0211692423385343e-05 2.8594975504362113e-04 2.8790724573630441e-04 0 2 0 P 586 22 2.1153332304290192e-03 -2.2869969585229862e-02 3.1758339022521613e-02 3.9193140228546572e-02 6.2335893717256539e-10 1 0 0 0 0 P 587 22 3.9659753599622816e-02 -8.3946997183402039e-02 1.4794602587161094e+00 1.4823706188102994e+00 -1.8040994766923149e-08 1 0 0 0 0 V -182 0 -5.1998726280328764e-05 -8.3092196432874764e-05 2.9437700891778927e-04 3.1319443856943515e-04 0 2 0 P 588 22 -1.5425340619473926e-01 -1.7276987683242259e-01 7.8668736953297824e-01 8.2007350953806968e-01 9.9083049366964084e-09 1 0 0 0 0 P 589 22 -1.0055144974045098e-02 -8.9789600792369806e-02 1.4350195033465554e-01 1.6957620145749272e-01 3.0493815266308856e-09 1 0 0 0 0 V -183 0 2.4069328980178928e-04 7.6964256832419498e-05 1.2567885169534100e-03 1.2874967777266703e-03 0 2 0 P 590 22 1.6426708105476662e-01 1.3000916766403279e-03 5.5433848681146802e-01 5.7816651763747873e-01 -6.4900889362983189e-09 1 0 0 0 0 P 591 22 1.0766678872766326e-01 8.5653675138395613e-02 8.6557382231315949e-01 8.7643980474043637e-01 1.1826329956949031e-08 1 0 0 0 0 V -184 0 -2.4385382087112084e-04 -9.6647405657713310e-05 4.1297555059878320e-04 4.9048852069140489e-04 0 2 0 P 592 22 -2.5258141332874157e-01 -4.6154391009288212e-02 4.5938482664928509e-01 5.2627180916725580e-01 -7.9469979581777062e-09 1 0 0 0 0 P 593 22 -6.8794404334096815e-01 -3.2660722911806139e-01 1.1334301513273202e+00 1.3655047406795662e+00 -1.8380353558799765e-08 1 0 0 0 0 V -185 0 -7.1493480502746154e-05 -7.8053116947747188e-05 1.4990200588592159e-04 1.8425748253213066e-04 0 2 0 P 594 22 -8.9283561741308470e-03 2.8928615533265348e-03 1.4295196506760198e-03 9.4935619432606165e-03 1.4749929237195242e-09 1 0 0 0 0 P 595 22 -5.7131270223904884e-01 -6.3637192666149245e-01 1.2151750985867151e+00 1.4859400906523041e+00 3.1961465656565913e-08 1 0 0 0 0 V -186 0 -3.4643003795999668e-05 1.7413114128149149e-05 -2.0428546918075669e-05 5.3200213257585289e-05 0 2 0 P 596 22 -1.5266059399937498e-01 5.7653259239427226e-02 -1.2030311839328613e-01 2.0273627094410027e-01 3.0607489927520291e-09 1 0 0 0 0 P 597 22 -2.3865676466217440e-03 2.0280338461447969e-02 2.8873742498189671e-02 3.5364966267403014e-02 1.1698690031478463e-09 1 0 0 0 0 V -187 0 1.5015947829540522e+02 -9.7481015788023200e+01 1.6864690361881696e+02 2.8578173465513419e+02 0 2 0 P 598 2212 9.8301252607263212e-01 -6.2693276563659328e-01 1.2203714063088977e+00 1.9310658407420502e+00 9.3826999999999983e-01 1 0 0 0 0 P 599 -211 1.6815791160241159e-01 -1.2038778238065620e-01 7.2529528452508291e-02 2.5982805618054400e-01 1.3957000000000006e-01 1 0 0 0 0 V -188 0 5.5499329914581061e+01 2.5712889423146706e+01 4.2784367160438556e+01 7.5583327418732537e+01 0 2 0 P 600 211 1.7011747132838417e+00 6.5029766836969671e-01 1.4125975392687948e+00 2.3090677892716100e+00 1.3957000000000366e-01 1 0 0 0 0 P 601 -211 6.2480420669932768e-01 4.2733045546796544e-01 3.8049683273829910e-01 8.5863219104778044e-01 1.3956999999999992e-01 1 0 0 0 0 V -189 0 2.5602696659034710e-05 2.1297202069875233e-05 1.5610511694523092e-05 3.6868605270374782e-05 0 2 0 P 602 22 1.1312879209698625e+00 9.9905577923525790e-01 6.8820574863636907e-01 1.6587802635104589e+00 7.5947057596873909e-09 1 0 0 0 0 P 603 22 2.2035819923791272e-01 1.2528986811551532e-01 1.3592179727643566e-01 2.8762827051358381e-01 3.0546546362810596e-09 1 0 0 0 0 V -190 0 3.9081413399969558e-05 -4.6152224878789689e-06 -1.4967455219579840e-04 1.5505485618913316e-04 0 2 0 P 604 22 4.5054328722331491e-02 -4.3151504604696826e-03 -3.7135446051741094e-01 3.7410245709737555e-01 -2.2842335596620783e-09 1 0 0 0 0 P 605 22 5.0830373266657236e-01 -6.1032295974852172e-02 -1.7479041035135361e+00 1.8213364271529273e+00 3.7830501816402938e-09 1 0 0 0 0 V -191 0 4.7553386882259491e-04 -5.3743389342364163e-04 -2.9275533680712010e-03 3.0156752630386683e-03 0 2 0 P 606 22 1.4239690959865312e-01 -2.2583051872785925e-01 -1.2603239731078508e+00 1.2882906582920257e+00 3.5997755993320957e-08 1 0 0 0 0 P 607 22 5.4336924218346760e-01 -5.4920149706302390e-01 -2.9614931023609543e+00 3.0606067720402792e+00 7.2385994910534639e-08 1 0 0 0 0 V -192 0 1.3656373877750109e-04 -1.2067952624444311e-04 -4.4586792326005659e-04 4.8404112364446044e-04 0 2 0 P 608 22 1.1733196375393423e-01 -1.5915950179234992e-01 -6.1309606238676551e-01 6.4419354113752214e-01 1.4039514057041458e-08 1 0 0 0 0 P 609 22 2.6834046760818059e-01 -1.8165400198959583e-01 -6.4608860529614021e-01 7.2279683790711546e-01 1.3915405420105843e-08 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 610 211 2.3804457617923067e-01 -1.3920003742715799e+00 -1.0572309855370106e+01 1.0667124529369499e+01 1.3957000000003386e-01 1 0 0 0 0 P 611 -211 6.0249794040410176e-01 -4.4196597579534597e-01 -7.8213082907240308e+00 7.8581601444231444e+00 1.3956999999998676e-01 1 0 0 0 0 V -194 0 -6.9541044426446141e-05 9.2371904677298566e-06 -3.5011394964533107e-03 3.5018646045399610e-03 0 2 0 P 612 22 -1.9303459801023157e-01 6.1753192345280004e-02 -7.8809367811550857e+00 7.8835423739177592e+00 -1.6885471580964151e-07 1 0 0 0 0 P 613 22 -5.5693242305654700e-01 3.7865504429358501e-02 -2.9877184054541971e+01 2.9882398406909278e+01 -3.9656410760197829e-07 1 0 0 0 0 V -195 0 -2.5913448143869982e-05 -3.6811535013533907e-05 -1.5374892744491513e-03 1.5382036018023431e-03 0 2 0 P 614 22 -3.2999983796561189e-02 -1.5230014614653414e-01 -4.6139473125453172e+00 4.6165781848021350e+00 -9.0898228343997620e-08 1 0 0 0 0 P 615 22 -2.3491002158728730e-01 -2.2828133760311362e-01 -1.1281612302230281e+01 1.1286366608664348e+01 -1.9556887072930765e-07 1 0 0 0 0 V -196 0 -7.7929744231941235e-07 -8.5570637395754391e-07 -8.1963541863454471e-05 8.1972014124069583e-05 0 2 0 P 616 22 -2.1167471749260425e-01 -2.4242014910913440e-01 -1.8206753483635289e+01 1.8209597637745475e+01 4.0893439948745350e-07 1 0 0 0 0 P 617 22 -2.6175439012543950e-01 -2.7742796408375620e-01 -3.1586719937935065e+01 3.1589022746415417e+01 6.4725779898144357e-07 1 0 0 0 0 V -197 0 -7.5504843238620347e-06 2.4337341903251902e-06 -8.7580641415415750e-04 8.7584384119525176e-04 0 2 0 P 618 22 -2.5756603909971276e-01 6.4746076901372754e-02 -2.2635714482017875e+01 2.2637272415872143e+01 6.6997251350779368e-07 1 0 0 0 0 P 619 22 -3.7133088563177319e-01 1.3796515091646175e-01 -5.0312183546321123e+01 5.0313742995410301e+01 1.3329669645606753e-06 1 0 0 0 0 V -198 0 -3.6516535658500819e-05 -2.7019108830070969e-05 -9.2113247865740892e-04 9.2257775597800128e-04 0 2 0 P 620 22 -4.6742383254679228e-02 2.4009909709349971e-02 -9.2242598741676829e-01 9.2392154884404476e-01 1.2710079610306938e-08 1 0 0 0 0 P 621 22 -1.5428520309485030e-01 -1.7275310605798794e-01 -4.1485106595964956e+00 4.1549715104116487e+00 7.0436561112065006e-08 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 622 310 -5.4202281255151274e-01 2.1726238359480559e+00 -8.6481993756898685e+00 8.9472404087762456e+00 4.9766999999998979e-01 2 0 0 -220 0 V -200 0 5.1128834285848416e-05 -2.9226589166252007e-05 -2.2253969514523364e-04 2.4258505271130952e-04 0 2 0 P 623 22 1.1887508462392737e-01 -1.9995749894009793e-02 -2.2778422507283197e-01 2.5771451055421818e-01 -5.1255803468523818e-09 1 0 0 0 0 P 624 22 -2.8684139202347237e-02 -3.1559771470223076e-02 -1.6477441193357009e-01 1.7020401242357996e-01 -4.7960428183699302e-09 1 0 0 0 0 V -201 0 -3.4014855740594389e-05 1.7629454179114704e-04 -3.9499879485501371e-04 4.3659206572013530e-04 0 2 0 P 625 22 2.7316643205832162e-02 1.0922242578697071e-01 -3.1355347719720073e-01 3.3315389890151448e-01 -2.4084189051735684e-09 1 0 0 0 0 P 626 22 -1.2199203743288893e-01 3.8146774122249605e-01 -7.8586810810384755e-01 8.8203649478076651e-01 -7.5804165546315285e-09 1 0 0 0 0 V -202 0 3.3558614120711552e-05 6.0743031179990303e-05 -6.0050392741560461e-05 9.8872831000646047e-05 0 2 0 P 627 22 1.0912704759250721e-01 1.0772168262056689e-01 -1.8747602083854625e-01 2.4219812512139419e-01 2.7456498739940010e-09 1 0 0 0 0 P 628 22 1.3979641413775517e-02 1.1510853980386995e-01 -3.2813321186990124e-02 1.2050776056817850e-01 4.7733831064707852e-10 1 0 0 0 0 V -203 0 1.4299131655137982e-05 1.3069028505413219e-05 -2.0368423859961488e-05 2.8631279994178353e-05 0 2 0 P 629 22 8.1068539476611481e-02 1.7861666675017013e-02 -4.9341473929529055e-02 9.6569810390301228e-02 2.8517298831741653e-09 1 0 0 0 0 P 630 22 2.7361343839920471e-01 3.0630828930617732e-01 -4.5588590876040214e-01 6.1361310577318184e-01 1.1636874638125113e-08 1 0 0 0 0 V -204 0 -1.7470939744617705e-06 6.7044326081331008e-05 3.0863595634666357e-07 6.8376320768970614e-05 0 2 0 P 631 22 -3.8364831245797627e-02 6.6640406608947822e-01 1.0514693510210261e-02 6.6759029228765898e-01 1.0426810291070993e-08 1 0 0 0 0 P 632 22 2.0650913065615960e-02 1.3363435836677859e-02 -7.3854101642063978e-03 2.5682404698512889e-02 -5.6189992978202125e-10 1 0 0 0 0 V -205 0 -7.7319385436372146e-05 2.3437097140913555e-05 -1.1115257148021013e-04 1.4118738231648945e-04 0 2 0 P 633 22 -2.9525698948052276e-01 9.3575868078096744e-02 -3.3102291402427758e-01 4.5333133857344915e-01 5.0664076458171343e-09 1 0 0 0 0 P 634 22 -2.6608390508500498e-02 3.9881533445461220e-03 -1.3168335885053611e-01 1.3440393897022346e-01 3.1804508259224594e-09 1 0 0 0 0 V -206 0 2.9025841022775834e-06 -2.5354252579700443e-05 -4.4890023922952736e-05 5.3443527515439218e-05 0 2 0 P 635 22 3.9916722220635921e-02 -7.0484000804260719e-02 -5.0601154493991905e-02 9.5508198173451422e-02 -1.6401757956023062e-09 1 0 0 0 0 P 636 22 -1.1480750416346342e-02 -1.7790598069859020e-01 -3.8917644008641616e-01 4.2806617142304698e-01 -3.6443760251855777e-09 1 0 0 0 0 V -207 0 -4.5581891871683619e-06 5.6358775094177731e-07 -9.8840379642610219e-07 4.7537839245866506e-06 0 2 0 P 637 22 -6.2025368233331923e-01 1.3462312732121015e-01 -1.5029180022818756e-01 6.5224661139297169e-01 -7.8215156831968697e-09 1 0 0 0 0 P 638 22 -2.2744011137691761e-01 -2.9811804432428746e-02 -3.3523247701084731e-02 2.3182225105259063e-01 3.3760443329811096e-09 1 0 0 0 0 V -208 0 -2.6595186962158251e-05 1.2976448923810099e-05 -9.3478563548139525e-05 9.9834457974410043e-05 0 2 0 P 639 22 -1.3519181399703945e-01 6.6735924944735556e-02 -6.1572635255040709e-01 6.3391596562562413e-01 -1.4407307379324903e-08 1 0 0 0 0 P 640 22 -5.5879007567384495e-02 2.6492250528860402e-02 -5.5862305999702828e-02 8.3336066960255223e-02 -3.2142937597759059e-09 1 0 0 0 0 V -209 0 -8.0691159306851446e-07 4.0739456576211792e-05 -7.5174518404297697e-03 7.5175830613685895e-03 0 2 0 P 641 22 -5.2800248836732074e-02 2.6411349251225147e-01 -4.9056145503240181e+01 4.9056884893338633e+01 3.9649411128908605e-07 1 0 0 0 0 P 642 22 4.6639538534352057e-02 4.6929243765699465e-02 -8.3390430140833995e+00 8.3393054861426119e+00 -4.3283961857193150e-08 1 0 0 0 0 V -210 0 -4.2926939868548793e+01 1.1588348693524646e+01 -5.0195882453744616e+03 5.0198904270337034e+03 0 2 0 P 643 211 -2.6432247891954253e-01 6.1087042209269020e-02 -1.4949070940669101e+01 1.4952183779423171e+01 1.3956999999994768e-01 1 0 0 0 0 P 644 -211 -3.9286379390464882e-01 1.1632377974555508e-01 -6.1897881117674451e+01 6.1899394502894410e+01 1.3956999999935535e-01 1 0 0 0 0 V -211 0 7.6144710803081077e+00 7.1910947616541954e+00 -2.3882598794455225e+03 2.3883229356868933e+03 0 2 0 P 645 -211 3.3796605551364506e-01 2.1497284956919879e-01 -4.6217506007127888e+01 4.6219452351629329e+01 1.3957000000049444e-01 1 0 0 0 0 P 646 211 -6.4127062621671810e-02 4.3640273595023447e-02 -3.9671411719932969e+01 3.9671733065130582e+01 1.3957000000073189e-01 1 0 0 0 0 V -212 0 3.7964201648542032e-05 -2.2739077633263604e-05 9.7907841370396473e-05 1.0773607485795076e-04 0 2 0 P 647 22 4.5090921528260769e-01 -2.1310906320362102e-01 9.9040681821074705e-01 1.1088914549245288e+00 2.2508835491923526e-08 1 0 0 0 0 P 648 22 1.9588638678818093e-01 -1.7429630210598940e-01 6.7764778209055632e-01 7.2660662949700738e-01 1.0605940570989972e-08 1 0 0 0 0 V -213 0 -4.9202418928832053e-06 1.6084661005302228e-05 4.6327988981731686e-05 5.0246955768976739e-05 0 2 0 P 649 22 2.6881427825512668e-02 6.0483897453350532e-02 2.8587241621548015e-01 2.9343474805476327e-01 3.0234383682768215e-09 1 0 0 0 0 P 650 22 -9.4824163594056113e-02 1.6162629476922216e-01 3.5386245507746378e-01 4.0041643107593611e-01 3.6776924969002870e-09 1 0 0 0 0 V -214 0 -1.2023182470641698e-05 8.7308702105107785e-06 7.2435478159520639e-05 7.4405719284319297e-05 0 2 0 P 651 22 -1.0043312453005759e-01 -5.6015671763648203e-03 4.6796893279155305e-01 4.7865761470571688e-01 6.0041420898528896e-09 1 0 0 0 0 P 652 22 -9.5612089581330773e-02 1.4796365175570453e-01 7.1313506024184115e-01 7.3457234365386115e-01 7.5553454177398012e-09 1 0 0 0 0 V -215 0 2.1568489611073342e-06 1.6741302442980963e-05 8.2823375819819685e-05 8.5103684894119827e-05 0 2 0 P 653 22 3.8145234241672279e-02 2.1676341608863689e-01 7.7096835330685443e-01 8.0176906852936791e-01 -5.1010638243068579e-09 1 0 0 0 0 P 654 22 -8.7368738555651804e-03 1.1502106650253944e-02 3.5831780832253879e-01 3.5860881637688374e-01 -2.6031257322754127e-10 1 0 0 0 0 V -216 0 0 0 0 0 0 1 0 P 655 130 -2.6620835943512777e-01 1.4142633786532155e-01 -4.0267865400476671e-01 7.0759722085818633e-01 4.9767000000000006e-01 1 0 0 0 0 V -217 0 7.9714019066899877e-05 1.2190061970889600e-05 2.5224069141597722e-03 2.5239534604307619e-03 0 2 0 P 656 22 5.7496167861669369e-02 -9.0301762403987903e-03 7.4068743375115109e-01 7.4297054310287136e-01 -1.1434805726454290e-08 1 0 0 0 0 P 657 22 2.4075408028465767e-01 5.4639330693967127e-02 8.6969058137150093e+00 8.7004091120051541e+00 -9.6606481670513302e-08 1 0 0 0 0 V -218 0 2.7293365428723354e-05 -6.6492177748529911e-06 1.0864855873152699e-03 1.0874036408957575e-03 0 2 0 P 658 22 -1.2919373062557854e-03 -5.2363958136461601e-02 7.6056220412595588e-01 7.6236377114777187e-01 -1.6899078443296304e-08 1 0 0 0 0 P 659 22 1.0734998104973698e-01 2.6526066086581222e-02 3.4613625800150616e+00 3.4631284355250136e+00 -6.2821142204255063e-08 1 0 0 0 0 V -219 0 3.7810932752676751e-06 2.3163041827703742e-06 1.0220370319499298e-04 1.0230582923987596e-04 0 2 0 P 660 22 4.5651937259259145e-01 2.7983288313526739e-01 1.1513491919599616e+01 1.1525936515646862e+01 -2.4792079824171715e-07 1 0 0 0 0 P 661 22 4.8283164947119850e-03 2.7894972577992270e-03 9.5682786690093380e-01 9.5684411521068313e-01 -2.0152968362329902e-08 1 0 0 0 0 V -220 0 -5.6560504058317875e+01 2.2671499509747932e+02 -9.0244636306587449e+02 9.3365152855672409e+02 0 2 0 P 662 111 -5.5486989528651742e-01 1.9564109870549846e+00 -7.7479893755920237e+00 8.0115531275559544e+00 1.3497999999995103e-01 2 0 0 -221 0 P 663 111 1.2847082735004626e-02 2.1621284889307130e-01 -9.0021000009784458e-01 9.3568728122029077e-01 1.3498000000000013e-01 2 0 0 -222 0 V -221 0 -5.6560551674905824e+01 2.2671516298839686e+02 -9.0244702796555760e+02 9.3365221607433375e+02 0 2 0 P 664 22 -5.1332455428418633e-01 1.7636215946540703e+00 -7.1339144946580575e+00 7.3665866752691889e+00 9.8014787710628432e-08 1 0 0 0 0 P 665 22 -4.1545341002331107e-02 1.9278939240091442e-01 -6.1407488093396634e-01 6.4496645228676719e-01 8.3721962740482772e-09 1 0 0 0 0 V -222 0 -5.6560500275218018e+01 2.2671505876600349e+02 -9.0244662815207289e+02 9.3365180408997105e+02 0 2 0 P 666 22 1.6137826704574278e-02 9.1263398590635571e-03 -3.0331185413454043e-01 3.0387793665961138e-01 7.4227891761114792e-09 1 0 0 0 0 P 667 22 -3.2907439695696542e-03 2.0708650903400774e-01 -5.9689814596330415e-01 6.3180934456067961e-01 1.3868578348155535e-08 1 0 0 0 0 hepmc-2.06.09.orig/test/testHepMCIteration.h0000644000175000017500000000435411374257600021463 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testHepMCIteration.h // // garren@fnal.gov, May 2007 // // Define methods and classes used by testHepMCIteration ////////////////////////////////////////////////////////////////////////// /// returns true if the GenParticle particle is a photon with pT > 10 GeV bool IsPhoton( const HepMC::GenParticle* p ) { if ( p->pdg_id() == 22 && p->momentum().perp() > 10. ) return true; return false; } /// returns true if the GenParticle is a W+/W- bool IsWBoson( const HepMC::GenParticle* p ) { if ( abs(p->pdg_id()) == 24 ) return true; return false; } /// \class IsFinalState /// this predicate returns true if the input has no decay vertex class IsFinalState { public: /// returns true if the GenParticle does not decay bool operator()( const HepMC::GenParticle* p ) { if ( !p->end_vertex() && p->status()==1 ) return true; return false; } }; /// \class PrintPhoton /// prints the particle if it is a photon class PrintPhoton { public: PrintPhoton( std::ostream & os ) : m_out( os ) {} void operator()( const HepMC::GenParticle* p ) { if ( IsPhoton(p) ) p->print( m_out ); } private: std::ostream & m_out; }; /// \class PrintParticle /// prints the particle class PrintParticle { public: PrintParticle( std::ostream & os ) : m_out( os ) {} void operator()( const HepMC::GenParticle* p ) { m_out << "\t"; p->print( m_out ); } private: std::ostream & m_out; }; //! test class /// \class PrintChildren /// prints the particle class PrintChildren { public: PrintChildren( std::ostream & os ) : m_out( os ) {} void operator()( HepMC::GenParticle* p ) { // make a copy HepMC::GenParticle* cp = p; // use the copy and the original m_out << "\t\t\t (id,barcode,status) " << cp->pdg_id() << " " << p->barcode() << " " << cp->status() << std::endl; } private: std::ostream & m_out; }; //! test class /// \class PrintDescendants /// prints the particle class PrintDescendants { public: PrintDescendants( std::ostream & os ) : m_out( os ) {} void operator()( const HepMC::GenParticle* p ) { m_out << "\t\t"; p->print( m_out ); } private: std::ostream & m_out; }; hepmc-2.06.09.orig/test/testMass1.dat0000644000175000017500000127520011763464675020174 0ustar sylvestresylvestre HepMC::Version 2.06.09 HepMC::IO_GenEvent-START_EVENT_LISTING E 9 51 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 309 1 2 0 4 2.3000000000000001e-01 3.4000000000000002e-01 1.1000000000000000e-01 6.5000000000000002e-02 N 4 "0" "1" "2" "3" U GEV MM H 23 11 12 15 3 5 0 0 0 1.4499999582767487e-02 0 0 0 F 2 3 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -9.5802904850995474e-01 3.4892974578914365e-01 1.5677975928920182e+01 1.5711094833049845e+01 0 3 0 0 -3 0 P 12 2101 2.5787537037233477e-01 -1.1110299643709216e-01 1.2403958218239170e+03 1.2403959888942973e+03 5.7933000000000001e-01 2 0 0 -9 0 P 25 2 7.0015367813761997e-01 -2.3782674935205150e-01 2.3333682308044050e+00 2.4698753078332274e+00 3.3000000000000002e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 2.7745239600449745e-01 -1.8469236508822412e-01 -1.2668437617555701e+03 1.2668438056011901e+03 0 3 0 0 -4 0 P 116 2203 -2.7745239600449745e-01 1.8469236508822412e-01 -1.8910900158159372e+03 1.8910902024916190e+03 7.7132999999999996e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 3 0 P 5 -2 2.1641937170955747e-01 2.1585758680319689e+00 6.7210685943817223e+00 7.0625101892235298e+00 0 3 0 0 -5 0 P 11 2 -7.8613112624186288e-01 -1.2686604299929187e+00 7.9479243119334866e+00 8.0935716653711971e+00 3.3000000000000002e-01 2 0 0 -9 0 P 26 21 -3.8825477811099457e-01 -5.4115869652245197e-01 6.3755964759046990e-01 9.2199610182667313e-01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 3 0 P 6 1 2.5842389710676084e-01 1.0209235102430092e+00 -7.2160803882991831e+02 7.2160880729913856e+02 0 3 0 0 -5 0 P 114 21 -5.2865744956173000e-01 -6.9649191122955012e-01 -4.4717703814957508e+02 4.4717789304471205e+02 0 2 0 0 -15 0 P 115 21 5.4762343259355273e-01 -5.0895095982937877e-01 -9.7687261399730332e+01 9.7690122132601928e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 3 0 0 -6 0 P 8 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 6 0 P 13 3 2.3630480898948672e+01 -3.3485870839025779e+01 -1.8716832175387171e+02 1.9160358514788896e+02 5.0000000000000000e-01 2 0 0 -11 0 P 14 21 2.1678474294330585e+00 -5.7647767925118565e-01 -9.1238201043902460e+00 9.3955299099758065e+00 0 2 0 0 -11 0 P 15 21 -6.7346922259594131e-03 2.1414349995112662e-02 -6.6107589858462634e-01 6.6145693295524743e-01 0 2 0 0 -11 0 P 16 21 3.3764665257654020e-01 7.3229494210984691e-01 -9.2744676446560570e-01 1.2289909052362948e+00 0 2 0 0 -11 0 P 17 21 7.9505379403523882e-02 2.0787135033438138e+00 -5.1470482330796514e+00 5.5515291990573523e+00 0 2 0 0 -11 0 P 18 -4 1.0113429576180263e+01 4.0532269037603918e+01 -1.2801602896015814e+02 1.3466811041169737e+02 1.5000000000000000e+00 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 124 92 -5.2825575586952811e-01 -1.3797634264300109e+00 1.2483437461358506e+03 1.2484895605596685e+03 1.9023446289477928e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 4 0 P 125 321 -5.8300296905006943e-01 -8.3754713871767816e-01 5.2130254825213198e+00 5.3348526983331048e+00 4.9359999999999998e-01 1 0 0 0 0 P 126 -321 -5.6024842041286405e-01 9.9682405893232934e-02 2.0270147074255881e+01 2.0284139573730606e+01 4.9359999999999998e-01 1 0 0 0 0 P 127 2214 4.7811432563610745e-01 -6.6583676148553717e-01 1.1617906836670844e+02 1.1618877689694931e+02 1.2585779083646447e+00 2 0 0 -21 0 P 128 223 1.3688130795729797e-01 2.3938067879971422e-02 1.1066815052123648e+03 1.1066817913906555e+03 7.8364979506277710e-01 2 0 0 -22 0 V -11 0 0 0 0 0 0 1 0 P 129 92 3.6322175244316099e+01 9.3023433147757260e+00 -3.3104374171454992e+02 3.4310920250681102e+02 8.2025190709107449e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 14 0 P 130 -321 8.4774237942142285e+00 -1.1575249821477136e+01 -6.6017595908298702e+01 6.7560489437893608e+01 4.9359999999999998e-01 1 0 0 0 0 P 131 113 8.1166531719425414e+00 -1.1935464788455144e+01 -6.6411749488034161e+01 6.7968219806545932e+01 9.0722388608265891e-01 2 0 0 -23 0 P 132 213 4.4640857480875296e+00 -6.2464911552612126e+00 -3.4037849594606975e+01 3.4900217244072529e+01 7.0939787097003992e-01 2 0 0 -24 0 P 133 -213 2.6219761201134175e+00 -1.5905307818721801e+00 -1.5758999082365960e+01 1.6091483712895801e+01 1.0886914447407658e+00 2 0 0 -25 0 P 134 211 1.0991665653485541e+00 -1.7747942066025924e+00 -6.2642892043534646e+00 6.6044576336630119e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 221 -1.0539935670700662e-01 -1.9008242486428576e-02 -2.2895443225905412e+00 2.3565196891354958e+00 5.4744999999999999e-01 2 0 0 -26 0 P 136 -211 3.7094048605218444e-01 1.0848859760136005e+00 -4.5535756686736004e+00 4.6977766635271028e+00 1.3957000000000000e-01 1 0 0 0 0 P 137 213 3.5612107659123227e-01 -2.2610769118583549e-01 -2.1425609141914284e+00 2.3142161217116470e+00 7.6621281493029081e-01 2 0 0 -27 0 P 138 -211 -1.2806866025349489e-01 9.3356523387269782e-02 -6.4814017320824868e-01 6.8167623636481678e-01 1.3957000000000000e-01 1 0 0 0 0 P 139 111 1.3741706190609260e+00 2.0556848430328345e+00 -6.8256340665829400e+00 7.2609699817216429e+00 1.3497999999999999e-01 2 0 0 -28 0 P 140 111 -2.7368763101259033e-02 1.1354557010925908e+00 -6.7655318092670651e+00 6.8615340093117556e+00 1.3497999999999999e-01 2 0 0 -29 0 P 141 2214 2.0766566444824259e+00 7.3115436382185655e+00 -2.1956232593249634e+01 2.3269209316796356e+01 1.2683766583146068e+00 2 0 0 -30 0 P 142 -323 1.2897259685408347e+00 4.2009194012475897e+00 -1.2360417564658022e+01 1.3146440715478059e+01 8.5899023461601665e-01 2 0 0 -31 0 P 143 -4314 6.3360918299439941e+00 2.6788143919123808e+01 -8.5011621324469345e+01 8.9395991937693410e+01 2.6299999999999999e+00 2 0 0 -32 0 V -13 0 0 0 0 0 6 1 0 P 19 2 -1.3422716221329383e+00 2.2458209152218909e+00 1.2243765530778314e+00 2.8886852778657341e+00 0 2 0 0 -13 0 P 20 21 -3.1136850524464815e-01 1.1424832197198764e+00 4.2154796869102973e-01 1.2569490615404091e+00 0 2 0 0 -13 0 P 21 21 -1.0366767212476704e+00 6.4496905084407596e-01 1.1318981087915423e+00 1.6648955011079218e+00 0 2 0 0 -13 0 P 22 21 -1.9193652015049112e+00 1.6799815126144066e+00 3.7499482821555006e+00 4.5352412039841017e+00 0 2 0 0 -13 0 P 23 21 1.6385288267246378e+00 -1.7821619094090042e+00 3.0468215298537345e+01 3.0564244163161977e+01 0 2 0 0 -13 0 P 24 -2 1.3422716221329383e+00 -2.2458209152218909e+00 8.7851492924509799e+01 8.7890444382515369e+01 0 2 0 0 -13 0 P 144 92 -1.6288816012725915e+00 1.6852718737693544e+00 1.2484747913576305e+02 1.2880045959017551e+02 3.1578029506702293e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 10 0 P 145 321 -1.1010053635793597e+00 1.9303424342721458e+00 1.3214859368578387e+00 2.6321855492148107e+00 4.9359999999999998e-01 1 0 0 0 0 P 146 333 -2.2742645850539889e+00 1.8224975026383272e+00 2.4028292558239515e+00 3.9128320814196207e+00 1.0212198170763180e+00 2 0 0 -33 0 P 147 333 -4.5546778245550490e-01 1.0958084876084577e+00 1.4565589353781194e+00 2.1380684792764288e+00 1.0205516878021945e+00 2 0 0 -34 0 P 148 -313 2.9421386514592190e-01 -7.1874852810811476e-02 5.9218326847841043e+00 5.9968596558591178e+00 8.9582118337464256e-01 2 0 0 -35 0 P 149 313 2.7548192965343210e-01 -2.2221641303721607e-01 3.6869876420023866e+00 3.8215580130646662e+00 9.4082801146210371e-01 2 0 0 -36 0 P 150 -311 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -37 0 P 151 113 7.6713384223317649e-01 -1.4337349851236222e-01 1.7498595349866797e+01 1.7536011090934025e+01 8.3773233852236728e-01 2 0 0 -38 0 P 152 223 3.0597082946051074e-01 -8.1635843373088079e-01 4.6141761958922793e+01 4.6156652536640770e+01 7.8378407325468757e-01 2 0 0 -39 0 P 153 113 2.6009135348849310e-01 -7.6182406810884840e-01 1.6415535872747945e+01 1.6450982214462886e+01 7.1900932413296093e-01 2 0 0 -40 0 P 154 -213 1.0999640936951034e+00 -1.2737984655891550e+00 2.3070773839530055e+01 2.3159199511647177e+01 1.1204610333156111e+00 2 0 0 -41 0 V -15 0 0 0 0 0 87 1 0 P 27 21 5.2847330830817318e-01 3.9482837243296416e+00 7.0850922196230783e+01 7.0962817055566134e+01 0 2 0 0 -15 0 P 28 21 -5.7917808217076661e-01 2.0509273516155622e+00 4.7843281643543889e+01 4.7890722991785530e+01 0 2 0 0 -15 0 P 29 21 -3.6941404946741234e+00 1.8687682072877096e+00 1.6063205049313078e+02 1.6068539017046533e+02 0 2 0 0 -15 0 P 30 21 -7.8285328618851413e-01 2.2745788741529469e+00 1.7376288796631704e+02 1.7377953792871381e+02 0 2 0 0 -15 0 P 31 21 -1.6385288267246378e+00 1.7821619094090042e+00 4.5366984237005170e+02 4.5367630173269453e+02 0 2 0 0 -15 0 P 32 21 -2.6531228347646882e+00 -5.5253588200530759e+00 2.7403897665525697e+03 2.7403966211621473e+03 0 2 0 0 -15 0 P 33 21 6.3759445235574630e-01 2.0594842167424357e-01 2.7690485029478161e+01 2.7698590263871175e+01 0 2 0 0 -15 0 P 34 21 8.8753932067569985e-01 9.5420023664512799e-02 3.9744074807287475e+01 3.9754098069430839e+01 0 2 0 0 -15 0 P 35 21 1.6843215363312323e+00 -2.7821864416007021e+00 1.0736410900449084e+02 1.0741335765519001e+02 0 2 0 0 -15 0 P 36 21 5.2725985674785902e-01 -9.3860440241317822e-01 3.4755869739806450e+01 3.4772538914366905e+01 0 2 0 0 -15 0 P 37 21 7.8285328618851413e-01 -2.2745788741529469e+00 6.8500764443718325e+01 6.8542988683717482e+01 0 2 0 0 -15 0 P 38 21 -5.6362905336703299e+00 -6.2420799417268809e+00 2.6598779293208821e+02 2.6612071945239870e+02 0 2 0 0 -15 0 P 39 21 -1.3897196033319998e+00 -1.5471710640558063e+00 5.5330799198385002e+01 5.5369869051762613e+01 0 2 0 0 -15 0 P 40 21 -1.5858347610022412e+00 -2.7473769215456776e+00 3.2616100677436002e+01 3.2770001147984203e+01 0 2 0 0 -15 0 P 41 21 -2.0185257136541477e+00 -2.1264412338423813e+00 2.5855386277297548e+01 2.6021091405356817e+01 0 2 0 0 -15 0 P 42 21 -2.8599757261838490e+00 -2.5688235222694822e-01 2.8305965682677051e+01 2.8451241500611840e+01 0 2 0 0 -15 0 P 43 21 -1.8535663224563970e+00 5.7728168876603392e-01 2.0409299686710998e+01 2.0501426193363006e+01 0 2 0 0 -15 0 P 44 21 -2.4247486989411180e+00 3.2791812337924786e-01 1.9996455113056196e+01 2.0145598865189601e+01 0 2 0 0 -15 0 P 45 21 -7.7619559597960892e+00 1.2490160387269378e+00 5.1477609326338026e+01 5.2074487643585080e+01 0 2 0 0 -15 0 P 46 21 -1.6843215363312323e+00 2.7821864416007021e+00 2.0364105336307141e+01 2.0622179481853728e+01 0 2 0 0 -15 0 P 47 21 4.2114615912387715e-01 1.0217234629964247e+00 1.3173009510357799e+01 1.3219283735594725e+01 0 2 0 0 -15 0 P 48 21 1.4624059777523883e+00 2.2397226244353168e+00 2.1481799152918637e+01 2.1647694646878897e+01 0 2 0 0 -15 0 P 49 21 1.3897196033319998e+00 1.5471710640558063e+00 1.2560810093045554e+01 1.2731810910899199e+01 0 2 0 0 -15 0 P 50 21 1.9372001777844456e+00 -1.2827480084352952e-01 2.9200030987296010e+01 2.9264500826297837e+01 0 2 0 0 -15 0 P 51 21 7.7619559597960892e+00 -1.2490160387269378e+00 7.1494086453218344e+01 7.1925047091865494e+01 0 2 0 0 -15 0 P 52 21 1.0346584559188690e+00 2.4641502772336282e-01 8.0203549012479822e+00 8.0905705131507784e+00 0 2 0 0 -15 0 P 53 21 5.6362905336703299e+00 6.2420799417268809e+00 3.0354535817447225e+01 3.1498082126877776e+01 0 2 0 0 -15 0 P 54 21 8.5200287437891176e-01 4.8496411120420584e+00 1.8643195705153385e+01 1.9282470638230155e+01 0 2 0 0 -15 0 P 55 21 1.7037463727801377e-01 2.3431367096279225e+00 5.4376283413198969e+00 5.9234381177960280e+00 0 2 0 0 -15 0 P 56 21 1.5858347610022412e+00 2.7473769215456776e+00 7.6104127916923217e+00 8.2450794234015081e+00 0 2 0 0 -15 0 P 57 21 2.0185257136541477e+00 2.1264412338423813e+00 3.0983765767253653e+00 4.2656928849682192e+00 0 2 0 0 -15 0 P 58 21 2.6531228347646882e+00 5.5253588200530759e+00 7.0764229453390852e+00 9.3618594610264054e+00 0 2 0 0 -15 0 P 59 21 -5.4958283952121656e-01 2.9060742837279863e+00 4.0558675757773539e+00 5.0196982810009008e+00 0 2 0 0 -15 0 P 60 21 -2.4973477455846362e+00 3.3661783072244771e+00 -4.0445481404606944e-02 4.1916032726596830e+00 0 2 0 0 -15 0 P 61 21 -1.3441969160771789e+00 1.3112345489852457e+00 -7.9560756534537536e-01 2.0394099121262346e+00 0 2 0 0 -15 0 P 62 21 -8.8753932067569985e-01 -9.5420023664512799e-02 9.9640965813476101e-01 1.3377829545504945e+00 0 2 0 0 -15 0 P 63 21 -5.9163429359758224e+00 -7.3953762176103388e-02 5.3728533689185758e+00 7.9922547643897532e+00 0 2 0 0 -15 0 P 64 21 -3.4026097992283950e+00 -1.0490545054749216e+00 7.6673137586059559e-01 3.6422720661685082e+00 0 2 0 0 -15 0 P 65 21 -2.6407486104449145e+00 -3.9050172412465817e-01 -5.7600510296339077e-03 2.6694714829529347e+00 0 2 0 0 -15 0 P 66 21 -6.3759445235574630e-01 -2.0594842167424357e-01 -1.0647452673764712e-01 6.7843810543699712e-01 0 2 0 0 -15 0 P 67 21 -2.3111809738720206e+00 -1.5156191657255100e+00 -8.7350441149539659e-01 2.8985632486465485e+00 0 2 0 0 -15 0 P 68 21 -1.4624059777523883e+00 -2.2397226244353168e+00 9.1784142594430213e-02 2.6764553063716825e+00 0 2 0 0 -15 0 P 69 21 -1.7037463727801377e-01 -2.3431367096279225e+00 1.0043874402615933e+00 2.5550168858911322e+00 0 2 0 0 -15 0 P 70 21 6.1363209212199210e-01 -1.4727619173352384e+00 5.0948147557915768e-01 1.6748562277381591e+00 0 2 0 0 -15 0 P 71 21 -8.5200287437891176e-01 -4.8496411120420584e+00 2.6976624699897158e+00 5.6144733159531066e+00 0 2 0 0 -15 0 P 72 21 5.4958283952121656e-01 -2.9060742837279863e+00 2.4806170017111224e+00 3.8601515189458055e+00 0 2 0 0 -15 0 P 73 21 5.7917808217076661e-01 -2.0509273516155622e+00 3.9498846714721818e+00 4.4881331498076946e+00 0 2 0 0 -15 0 P 74 21 1.8535663224563970e+00 -5.7728168876603392e-01 1.3239861314488808e+00 2.3498726638262908e+00 0 2 0 0 -15 0 P 75 21 3.6941404946741234e+00 -1.8687682072877096e+00 1.3698292678439965e+00 4.3606651820568061e+00 0 2 0 0 -15 0 P 76 21 3.4026097992283950e+00 1.0490545054749216e+00 8.5365778392455860e-01 3.6615571022882216e+00 0 2 0 0 -15 0 P 77 21 8.0027583532907598e-01 7.2225688798810728e-01 -5.5235642504880245e-01 1.2112778562949993e+00 0 2 0 0 -15 0 P 78 21 2.5249116086388907e+00 1.2712899341906045e+00 -2.0235598552540077e+00 3.4765142335404589e+00 0 2 0 0 -15 0 P 79 21 2.8599757261838490e+00 2.5688235222694822e-01 -2.5145198343890223e+00 3.8168389663152258e+00 0 2 0 0 -15 0 P 80 21 4.5243527644201125e+00 -1.4453032263767607e+00 -1.4282200794269138e+00 4.9596856703191596e+00 0 2 0 0 -15 0 P 81 21 1.9193652015049112e+00 -1.6799815126144066e+00 -1.1030943101881863e+00 2.7790497866435802e+00 0 2 0 0 -15 0 P 82 21 4.4842555716047272e-01 -7.5493427251315082e-01 -2.8765951844044063e-01 9.2399092781207914e-01 0 2 0 0 -15 0 P 83 21 1.3441969160771789e+00 -1.3112345489852457e+00 -6.9608922544577423e-01 2.0026835999292643e+00 0 2 0 0 -15 0 P 84 21 5.8282497851138615e+00 -7.7105256426171707e+00 -6.2054388130251672e+00 1.1485998959835227e+01 0 2 0 0 -15 0 P 85 21 3.1136850524464815e-01 -1.1424832197198764e+00 -4.9383638733881891e-01 1.2830014149873872e+00 0 2 0 0 -15 0 P 86 21 -5.2847330830817318e-01 -3.9482837243296416e+00 -1.2977179899770348e+00 4.1895465610147555e+00 0 2 0 0 -15 0 P 87 21 -6.1363209212199210e-01 1.4727619173352384e+00 -1.8903676382598003e+00 2.4736737491866050e+00 0 2 0 0 -15 0 P 88 21 -4.4842555716047272e-01 7.5493427251315082e-01 -2.2310748267761786e+00 2.3976459535978192e+00 0 2 0 0 -15 0 P 89 21 6.7732806682179603e-01 2.7745959877202684e+00 -9.9674458406715871e+00 1.0368564644727797e+01 0 2 0 0 -15 0 P 90 21 -5.2725985674785902e-01 9.3860440241317822e-01 -5.7793854616152487e+00 5.8787989840355044e+00 0 2 0 0 -15 0 P 91 21 -1.9372001777844456e+00 1.2827480084352952e-01 -1.4544901177980950e+01 1.4673900273293777e+01 0 2 0 0 -15 0 P 92 21 -1.3461311705244356e+00 2.2615002471675072e-01 -1.0101494546248885e+01 1.0193301968931992e+01 0 2 0 0 -15 0 P 93 21 -1.9314754602611099e+00 2.2368463567760051e+00 -2.3796213393013595e+01 2.3979029399107308e+01 0 2 0 0 -15 0 P 94 21 -5.8282497851138615e+00 7.7105256426171707e+00 -8.0893963492787165e+01 8.1469344116762841e+01 0 2 0 0 -15 0 P 95 21 -1.1595476048730318e+00 7.1533408734022323e+00 -8.3670200783024256e+01 8.3983434886712317e+01 0 2 0 0 -15 0 P 96 21 2.3111809738720206e+00 1.5156191657255100e+00 -2.0500855447634013e+01 2.0686317531989296e+01 0 2 0 0 -15 0 P 97 21 5.9163429359758224e+00 7.3953762176103388e-02 -6.3289088211230968e+01 6.3565063277747043e+01 0 2 0 0 -15 0 P 98 21 2.4247486989411180e+00 -3.2791812337924786e-01 -1.6499642496191235e+01 1.6680082105636558e+01 0 2 0 0 -15 0 P 99 21 1.0366767212476704e+00 -6.4496905084407596e-01 -3.4799418378807259e+00 3.6879098275250999e+00 0 2 0 0 -15 0 P 100 21 2.4973477455846362e+00 -3.3661783072244771e+00 -2.6779995437190731e+01 2.7106015158528219e+01 0 2 0 0 -15 0 P 101 21 -6.7732806682179603e-01 -2.7745959877202684e+00 -1.9384033357688871e+01 1.9593312772912416e+01 0 2 0 0 -15 0 P 102 21 -4.2114615912387715e-01 -1.0217234629964247e+00 -2.4391922343815637e+01 2.4416944087025197e+01 0 2 0 0 -15 0 P 103 21 1.9314754602611099e+00 -2.2368463567760051e+00 -4.5510256054231363e+01 4.5606112366645718e+01 0 2 0 0 -15 0 P 104 21 3.6613162463384313e-01 -2.5172544962865279e-01 -1.1495383306573240e+01 1.1503966943345695e+01 0 2 0 0 -15 0 P 105 21 2.1489368818706622e+00 3.4062409825483048e-01 -6.9569518582389307e+01 6.9603533461197117e+01 0 2 0 0 -15 0 P 106 21 2.6407486104449145e+00 3.9050172412465817e-01 -1.7282354599157296e+02 1.7284416129543237e+02 0 2 0 0 -15 0 P 107 21 5.8857977426890551e-01 2.1863311847542044e-01 -8.9377764843706004e+01 8.9379970211720149e+01 0 2 0 0 -15 0 P 108 21 1.3461311705244356e+00 -2.2615002471675072e-01 -7.9117499390447946e+01 7.9129273488131233e+01 0 2 0 0 -15 0 P 109 21 1.1595476048730318e+00 -7.1533408734022323e+00 -5.2797615538703258e+02 5.2802588524955013e+02 0 2 0 0 -15 0 P 110 21 -3.6613162463384313e-01 2.5172544962865279e-01 -1.6292945304739521e+03 1.6292945910578617e+03 0 2 0 0 -15 0 P 111 21 -5.8857977426890551e-01 -2.1863311847542044e-01 -3.8687281312035248e+02 3.8687332262414571e+02 0 2 0 0 -15 0 P 112 21 -2.1489368818706622e+00 -3.4062409825483048e-01 -2.3501688939757997e+02 2.3502696070156060e+02 0 2 0 0 -15 0 P 113 21 -4.5243527644201125e+00 1.4453032263767607e+00 -1.3300985226359649e+02 1.3309462599420328e+02 0 2 0 0 -15 0 P 155 92 6.0421399882133819e+00 -1.2450459757124852e+00 -1.5395010229486406e+03 1.1011830204374652e+04 1.0903683001294694e+04 2 0 0 -16 0 V -16 0 0 0 0 0 0 163 0 P 156 221 1.8165572807868086e-01 -6.0160239653196425e-02 1.2915962211331227e+00 1.4158179116412846e+00 5.4744999999999999e-01 2 0 0 -42 0 P 157 213 -5.3597162004113172e-02 -9.9845238084615928e-02 3.3191484434642105e+00 3.4115809658474312e+00 7.8057451241923836e-01 2 0 0 -43 0 P 158 2114 4.4149662418739066e-01 -6.3222835626578738e-02 5.7512007177449558e+00 5.8910422717021103e+00 1.1954718545735590e+00 2 0 0 -44 0 P 159 -213 -7.8704970943413013e-02 5.8871372637053498e-01 6.5088177272712837e+00 6.5913624637824535e+00 8.5356464198742310e-01 2 0 0 -45 0 P 160 -1114 -7.4630965933767657e-01 2.2606487064529914e+00 5.1016155635761841e+01 5.1088038448627401e+01 1.2930684415561233e+00 2 0 0 -46 0 P 161 313 2.2073358893449499e-01 6.4393754468203523e-01 1.7403603859317190e+01 1.7437593555878546e+01 8.4903642397834189e-01 2 0 0 -47 0 P 162 -321 -1.8000749627380799e-01 1.7259669392466912e+00 4.5963975898605860e+01 4.5999370495059033e+01 4.9359999999999998e-01 1 0 0 0 0 P 163 2224 -1.6345542144489289e+00 1.4994653481876703e+00 1.0873485569765424e+02 1.0876350393474506e+02 1.1448933414195375e+00 2 0 0 -48 0 P 164 -2224 -1.4132855118930063e+00 1.1461356416346355e+00 1.8173523469621284e+02 1.8174891982765669e+02 1.2896998043202212e+00 2 0 0 -49 0 P 165 321 -5.4435213182232578e-01 1.5277767401501612e+00 7.3178574446850774e+01 7.3198209131401896e+01 4.9359999999999998e-01 1 0 0 0 0 P 166 -311 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 2 0 0 -50 0 P 167 -211 -4.7228145882501238e-02 4.2962468283138122e-01 1.3805262834679914e+02 1.3805337547887126e+02 1.3957000000000000e-01 1 0 0 0 0 P 168 2224 -1.2377390866873145e-01 7.7858231979998655e-03 2.6821955586202665e+02 2.6822236050000436e+02 1.2203051962378006e+00 2 0 0 -51 0 P 169 111 -2.7863633177704455e-01 3.5148613196916430e-02 1.3824363250696737e+02 1.3824398367362045e+02 1.3497999999999999e-01 2 0 0 -52 0 P 170 -2224 -2.0076223782297234e-01 -8.3155972687518265e-01 3.7131743420163679e+02 3.7132010358255786e+02 1.1182957654914161e+00 2 0 0 -53 0 P 171 211 -9.0159311494263239e-01 4.0222294603082764e-01 2.5721020011470176e+02 2.5721213263816520e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 -213 -2.1390170311781478e-01 -4.7293062190977475e-01 4.0647663068551151e+02 4.0647787660817539e+02 8.6224192288579649e-01 2 0 0 -54 0 P 173 213 -1.6394981974144815e-01 -3.6390764273644982e-01 3.1530768998372338e+02 3.1530860269396891e+02 6.4518341228499854e-01 2 0 0 -55 0 P 174 -211 -6.8922251856284578e-01 -5.5121725590629100e-01 2.2874450224070739e+02 2.2874624729878568e+02 1.3957000000000000e-01 1 0 0 0 0 P 175 321 -4.1772769247750424e-01 -1.5798410967589427e+00 5.1081385101672851e+02 5.1081670335436024e+02 4.9359999999999998e-01 1 0 0 0 0 P 176 -311 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -56 0 P 177 113 -5.2643273927719736e-01 -4.3391462681262000e-01 3.0178378185602827e+02 3.0178561155077705e+02 7.9933373333579127e-01 2 0 0 -57 0 P 178 311 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -58 0 P 179 -321 7.2317674462283765e-01 -1.2226574062176467e+00 4.4456491915052922e+01 4.4481919811200910e+01 4.9359999999999998e-01 1 0 0 0 0 P 180 213 3.9201411601302034e-02 -5.3432434859259026e-01 1.7917308663988145e+01 1.7935856599788213e+01 6.1478691216654369e-01 2 0 0 -59 0 P 181 331 1.2599340251930209e+00 -2.7659863369956459e+00 1.2307250247953787e+02 1.2311375362021128e+02 9.5778375322348541e-01 2 0 0 -60 0 P 182 -213 -1.5530659506175648e+00 -2.2616086947259535e+00 8.0747599468933487e+01 8.0796786087538621e+01 6.4725137708597513e-01 2 0 0 -61 0 P 183 213 -1.6396015234384054e+00 -1.8820239306898225e+00 8.4482738305729626e+01 8.4522463821248692e+01 6.9534994682336593e-01 2 0 0 -62 0 P 184 -211 -1.4900955021410117e-01 -5.5436673909137790e-01 2.4068021231383486e+01 2.4075270551059063e+01 1.3957000000000000e-01 1 0 0 0 0 P 185 321 -2.3490349330881353e+00 -2.9247785702907758e+00 9.3533148652207558e+01 9.3609646044401075e+01 4.9359999999999998e-01 1 0 0 0 0 P 186 333 -6.9519406392065963e-01 -6.6028658822733255e-01 2.6147485254333493e+01 2.6184991534611676e+01 1.0215299197743888e+00 2 0 0 -63 0 P 187 -313 -2.1592410406662772e+00 -2.1385722289257187e+00 3.5777276528790495e+01 3.5916418958711979e+01 8.6012903110637817e-01 2 0 0 -64 0 P 188 223 -1.6953630936206241e+00 -1.9669557779668789e+00 3.2090263544607552e+01 3.2204688649761835e+01 7.8344471026469786e-01 2 0 0 -65 0 P 189 113 -7.9987358115612073e-01 -1.7550273094835359e-01 1.0517749031625208e+01 1.0574965987068071e+01 7.3229910623443761e-01 2 0 0 -66 0 P 190 113 -2.9543327199843792e+00 7.0888064205805207e-02 2.5974406783582687e+01 2.6151198016211328e+01 6.9443717214128031e-01 2 0 0 -67 0 P 191 -211 -2.4949348211979636e+00 5.2980481463842022e-01 1.5372612213153992e+01 1.5583391124673458e+01 1.3957000000000000e-01 1 0 0 0 0 P 192 213 -1.3898104129259063e+00 -3.3134373125214639e-01 1.2047036725250917e+01 1.2157769658158903e+01 7.9931692662395637e-01 2 0 0 -68 0 P 193 111 -2.2799119642017178e+00 4.3752770426735177e-01 2.3246460482696069e+01 2.3362482180420418e+01 1.3497999999999999e-01 2 0 0 -69 0 P 194 313 -2.4419822723539255e+00 7.5246315720506707e-01 2.0137219005222946e+01 2.0317671494227596e+01 8.7789945984415341e-01 2 0 0 -70 0 P 195 -311 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406863e+01 4.9767000000000000e-01 2 0 0 -71 0 P 196 311 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251241e+00 4.9767000000000000e-01 2 0 0 -72 0 P 197 3122 -1.9236510625059072e-01 8.2977576326676017e-01 1.4477039072603571e+01 1.4544928130571776e+01 1.1156800000000000e+00 2 0 0 -73 0 P 198 -211 6.3338164498712834e-01 3.5399408796871440e-01 5.6360731374143551e+00 5.6843015681530389e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 -1114 2.8418767416834040e-01 1.9009231667892663e+00 1.4825560697947701e+01 1.4996992817447840e+01 1.1909122712715725e+00 2 0 0 -74 0 P 200 331 -1.6773077680880741e-01 2.3066748177860730e-01 7.9825334923997175e+00 8.0448349089223949e+00 9.5769862372992598e-01 2 0 0 -75 0 P 201 -211 1.2745143823559155e+00 8.7315785472443819e-01 1.4945371702992986e+01 1.5025658277613747e+01 1.3957000000000000e-01 1 0 0 0 0 P 202 223 1.3935469391089825e+00 1.2208505817155041e-01 9.7353675813556713e+00 9.8665054363242177e+00 7.8337076022504715e-01 2 0 0 -76 0 P 203 111 1.3973791152251329e+00 9.4387948276398770e-01 2.5238089010764789e+01 2.5294721453009451e+01 1.3497999999999999e-01 2 0 0 -77 0 P 204 223 1.9819196620715647e+00 2.7256017120108078e-01 1.2901543418614215e+01 1.3078424181843234e+01 7.7010512529335406e-01 2 0 0 -78 0 P 205 111 5.0694484478662449e-01 1.0981187792552677e-01 7.2324938379395425e+00 7.2523264157387963e+00 1.3497999999999999e-01 2 0 0 -79 0 P 206 2214 2.6231820800260413e+00 -2.1009869920493901e-01 3.3031506472103509e+01 3.3159857071285359e+01 1.2531861326555973e+00 2 0 0 -80 0 P 207 -2114 2.3006062341126947e+00 1.2299131996010686e+00 1.2138140113143205e+01 1.2475417039766334e+01 1.2231555039343724e+00 2 0 0 -81 0 P 208 -211 7.6302633964084460e-02 1.5294205975419628e-01 1.0724296502066093e+00 1.0948965728021911e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 211 1.1560279240236406e+00 4.6289713561619972e-01 8.6267685373819454e+00 8.7172982914287811e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 331 1.1556392388883838e+00 -2.5755365958322113e-01 7.8237588787425363e+00 7.9706004239347426e+00 9.5782680443949475e-01 2 0 0 -82 0 P 211 -211 4.0447479049561608e+00 4.8918526123536763e+00 2.6712656438317385e+01 2.7456796997685622e+01 1.3957000000000000e-01 1 0 0 0 0 P 212 213 7.7822367947735926e-01 3.3900130568191416e+00 8.2081009398129634e+00 8.9417149654048735e+00 6.9535952117122202e-01 2 0 0 -83 0 P 213 223 1.1445980353394032e+00 4.3636285502617325e+00 1.5423787965164273e+01 1.6089060175042317e+01 7.8311131687929891e-01 2 0 0 -84 0 P 214 -213 7.5834067266838456e-01 1.5923984093401140e+00 3.8430376052075017e+00 4.3410912392275440e+00 9.8250793501480560e-01 2 0 0 -85 0 P 215 221 1.6837706068490421e+00 1.9558629699116810e+00 2.7880387003202403e+00 3.8384039274865156e+00 5.4744999999999999e-01 2 0 0 -86 0 P 216 111 8.3865023530752991e-01 2.5156120799758663e+00 3.5029630868211119e+00 4.3955213959362291e+00 1.3497999999999999e-01 2 0 0 -87 0 P 217 211 5.3811991830180717e-01 4.3516930755823646e-01 9.7424349476318306e-01 1.2031523364488135e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -213 -1.2664119511626293e-02 2.0289922277049239e+00 2.5027726718674566e+00 3.3278210192726152e+00 8.3279760401676484e-01 2 0 0 -88 0 P 219 213 7.9782984590529493e-01 1.4807864674439419e+00 1.7275967053669015e+00 2.5231282680978273e+00 7.4318561322013754e-01 2 0 0 -89 0 P 220 -211 -1.7206740038871476e-01 1.3579752606481117e+00 4.3740045976586339e-01 1.4437807818059591e+00 1.3957000000000000e-01 1 0 0 0 0 P 221 111 -6.7844388624597163e-01 9.5974588766622640e-02 9.6285525260314364e-01 1.1894566265059532e+00 1.3497999999999999e-01 2 0 0 -90 0 P 222 323 -5.1707067933979345e-01 2.3286957007650688e+00 1.3434126861683076e+00 2.8809638889100553e+00 8.9722323289757167e-01 2 0 0 -91 0 P 223 -321 1.5948369342205113e-01 3.4592572994388832e-01 2.1793282552963544e-01 6.6048113943403508e-01 4.9359999999999998e-01 1 0 0 0 0 P 224 213 -7.3609700918726173e-01 2.2196956683538419e-01 4.4047036829215229e-02 8.9044876371975390e-01 4.4704537109904641e-01 2 0 0 -92 0 P 225 -213 -1.1297770832448866e+00 8.3254897042943654e-01 1.0200247749153839e+00 1.8955811807234102e+00 7.6370375492277087e-01 2 0 0 -93 0 P 226 113 -1.6995621736599003e+00 1.4685684665883294e+00 -2.0508783389087765e-01 2.4313022385442888e+00 9.0772497616142289e-01 2 0 0 -94 0 P 227 213 -1.6133273961280552e+00 3.8441715104224972e-01 1.6498158834705128e+00 2.4577948404164869e+00 7.5383101230550731e-01 2 0 0 -95 0 P 228 -211 -1.9628702716387874e+00 -7.3483760608346527e-01 4.5330462307682795e-01 2.1489092295396355e+00 1.3957000000000000e-01 1 0 0 0 0 P 229 111 -1.5606454837837023e+00 -1.6798349234264481e-01 2.0745900868571594e+00 2.6049906734267005e+00 1.3497999999999999e-01 2 0 0 -96 0 P 230 2212 -3.9697249978842710e+00 -1.1210073588914939e+00 -2.4957019805628813e-01 4.2376892210465380e+00 9.3827000000000005e-01 1 0 0 0 0 P 231 -2112 -1.4701127234394118e+00 -3.3130613402121328e-01 7.1818390386388109e-01 1.9156134993071257e+00 9.3957000000000002e-01 1 0 0 0 0 P 232 221 -1.1000387119379464e+00 1.2047991748431918e-02 2.3597353472712018e-01 1.2512455128626347e+00 5.4744999999999999e-01 2 0 0 -97 0 P 233 313 -1.8638580036210914e+00 -2.0849135666065326e+00 1.1058371658996702e+00 3.1375648291712075e+00 8.9476588104641208e-01 2 0 0 -98 0 P 234 -311 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 2 0 0 -99 0 P 235 -211 1.8567812528727759e-01 -4.3364559606164149e-01 1.0788064812559593e-01 5.0362971351366170e-01 1.3957000000000000e-01 1 0 0 0 0 P 236 111 1.7230464101786414e-01 -4.3405194404859709e-01 4.3813477170707515e-01 6.5442467712294616e-01 1.3497999999999999e-01 2 0 0 -100 0 P 237 323 -1.1716969209035828e+00 -3.7853144588899852e+00 1.9043310292409132e+00 4.5060519066309812e+00 9.8820437622307189e-01 2 0 0 -101 0 P 238 -313 -1.6410076009926275e-01 -1.4570587045948526e+00 1.4852836485052954e+00 2.2646186615896742e+00 8.7890900427872454e-01 2 0 0 -102 0 P 239 -213 2.9859903663276971e-01 -4.4692505472942984e-01 4.5483781888333707e-01 8.3920055178797315e-01 4.5659252667095346e-01 2 0 0 -103 0 P 240 113 2.0016506456433403e-01 -1.6011853898426920e+00 1.4138708387925774e+00 2.2452471327698023e+00 6.6199942047199278e-01 2 0 0 -104 0 P 241 213 -2.3003149142417012e-01 -2.1132565309966589e+00 9.9307006781204110e-01 2.4679901291257655e+00 7.6551908208165509e-01 2 0 0 -105 0 P 242 313 7.8845462100362285e-01 -2.7171349343182998e+00 1.5555868003253859e+00 3.3321395556195985e+00 8.2390581021335585e-01 2 0 0 -106 0 P 243 -323 6.0139418868086758e-01 -8.5371777867186660e-01 2.5315930098409281e+00 2.8823457853053944e+00 8.9913571989593200e-01 2 0 0 -107 0 P 244 2224 3.9634867640488403e+00 -3.9023657068966511e-01 1.2944872592527801e+00 4.4053619303472136e+00 1.3674811015479447e+00 2 0 0 -108 0 P 245 111 5.2320674801323763e-01 -5.6791094765218242e-01 1.5001282470688018e-01 7.9811753119845985e-01 1.3497999999999999e-01 2 0 0 -109 0 P 246 -2214 8.3297739830777207e-01 -4.7410979366851758e-01 3.8046826545214280e-01 1.5927212525905523e+00 1.2138259532953917e+00 2 0 0 -110 0 P 247 313 2.6284615862436369e+00 6.0363541092985762e-01 -2.9923948889033092e-01 2.8507710309611904e+00 8.7416541888209409e-01 2 0 0 -111 0 P 248 -321 4.4240074925043749e-01 -2.1249433327407575e-02 -3.4740324441317399e-01 7.4866543634849603e-01 4.9359999999999998e-01 1 0 0 0 0 P 249 213 1.4537845118565145e+00 2.2536052458945438e-01 -1.6664223186205686e-03 1.6484904677325376e+00 7.4380190392642742e-01 2 0 0 -112 0 P 250 313 1.0031861708363126e+00 5.9899961604393381e-01 -8.0983003889045202e-01 1.6663566341385945e+00 8.6933118365234718e-01 2 0 0 -113 0 P 251 -321 3.7542620166599701e+00 3.7190791184469779e-01 -1.8249241162302015e+00 4.2198089737127971e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 223 1.5743038305878552e+00 -6.6745849204711316e-01 -1.2041977792193024e+00 2.2336983203172096e+00 7.8446319550494170e-01 2 0 0 -114 0 P 253 111 5.2731372264649645e-01 -5.6678153196328673e-01 -9.8680125732414192e-02 7.9199648653294008e-01 1.3497999999999999e-01 2 0 0 -115 0 P 254 321 1.4899047689225020e+00 -1.8809308091704732e-01 -1.1434221997793363e+00 1.9509614333694805e+00 4.9359999999999998e-01 1 0 0 0 0 P 255 -313 3.1052134391028487e+00 -3.5657054276055744e+00 -2.5280934294163124e+00 5.4387420809940288e+00 9.1216957682030386e-01 2 0 0 -116 0 P 256 -211 1.2618409992918820e+00 -7.8480952235684842e-01 -9.4767655723319455e-01 1.7679760563721671e+00 1.3957000000000000e-01 1 0 0 0 0 P 257 223 1.1709311169445527e+00 -1.8646477719970616e+00 -7.0979192653750589e-01 2.4425339235323915e+00 7.8369406938300235e-01 2 0 0 -117 0 P 258 323 3.4106114137506363e+00 -3.4158924657143168e+00 -2.0092476388205687e+00 5.3050049247467328e+00 8.9744616805193944e-01 2 0 0 -118 0 P 259 -313 -4.3502962198863682e-02 -2.6662449307525620e+00 -1.3432122691050827e+00 3.1423548809952644e+00 9.7950010707325930e-01 2 0 0 -119 0 P 260 313 3.6920573172873611e-01 2.3888315855645803e-01 -1.5368886029575397e+00 1.8477927043744620e+00 9.2678652593542199e-01 2 0 0 -120 0 P 261 -313 6.9940661833834539e-01 -9.0010452164849564e-01 -9.4850223978499193e-01 1.7314727607553249e+00 8.9385885613612015e-01 2 0 0 -121 0 P 262 -211 -7.0474633150104674e-02 -4.2047661255068347e-01 -3.0125961647395372e-01 5.4037431197066821e-01 1.3957000000000000e-01 1 0 0 0 0 P 263 213 -5.3596663719210880e-01 -7.7738508685707131e-01 -6.0080544106670308e-01 1.3427313454637180e+00 7.4187093124387660e-01 2 0 0 -122 0 P 264 313 -3.5040429490065950e-01 -1.6292595689125591e-01 -1.7293537519727651e+00 1.9724781187916283e+00 8.6641646587292043e-01 2 0 0 -123 0 P 265 221 4.4271297585370617e-01 7.8838628116886092e-02 -1.1070645363442759e-01 7.1705490002433458e-01 5.4744999999999999e-01 2 0 0 -124 0 P 266 -313 -1.7820965573683964e-01 3.6297589758039939e-01 -2.1940742894976419e+00 2.4004974357213138e+00 8.8595472087905380e-01 2 0 0 -125 0 P 267 313 -1.0396082963222222e+00 1.1121991439442469e+00 -8.5679143107978817e+00 8.7473029042015877e+00 8.8790771767458732e-01 2 0 0 -126 0 P 268 -321 3.2912897810216402e-01 4.1537724024442807e-01 -3.1899781715514406e+00 3.2711566503171818e+00 4.9359999999999998e-01 1 0 0 0 0 P 269 213 -1.0438824976090404e+00 5.9520783524058085e-01 -4.9427476983163094e+00 5.1363639180054683e+00 7.1240189010911914e-01 2 0 0 -127 0 P 270 223 2.1254945277292651e-02 1.5109947998573003e+00 -7.6200163263667164e+00 7.8070210467847216e+00 7.7548162644240393e-01 2 0 0 -128 0 P 271 -213 -8.2219215832088577e-01 1.1362848530341856e+00 -1.1282600740130793e+01 1.1391832628618344e+01 7.1388231860324336e-01 2 0 0 -129 0 P 272 213 -9.7351598645880755e-01 7.1555250722650965e-01 -8.9429352701951412e+00 9.0490871372354711e+00 6.7092324739213716e-01 2 0 0 -130 0 P 273 -213 -3.7930638808420949e+00 3.3946186517059886e+00 -4.7693776986657603e+01 4.7970601025530172e+01 7.5592995899535609e-01 2 0 0 -131 0 P 274 221 -4.1631208965072786e-01 2.5053579526899976e+00 -2.0059935753462330e+01 2.0227477800324802e+01 5.4744999999999999e-01 2 0 0 -132 0 P 275 213 -1.0048000360083025e+00 2.5979660555292576e+00 -2.7575400521401797e+01 2.7723889100912139e+01 6.7250444303650447e-01 2 0 0 -133 0 P 276 -213 -1.8897596138514399e+00 2.0488860322336140e+00 -2.7462631029994004e+01 2.7616803608220788e+01 8.5006651164553226e-01 2 0 0 -134 0 P 277 323 -8.9696983610258751e-01 1.4423053243558148e+00 -1.8143005004609364e+01 1.8240245626033762e+01 8.0816481315406463e-01 2 0 0 -135 0 P 278 -311 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -136 0 P 279 -211 5.1454959247626297e-01 1.3714370366104331e+00 -7.0417532310864175e+00 7.1938424489920747e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 113 -1.5522679982297477e-01 1.5797034356125750e+00 -2.7936808333457513e+01 2.7993820487850048e+01 8.1802649209089873e-01 2 0 0 -137 0 P 281 2212 1.4724695105171033e+00 6.4391110390161321e-01 -1.8512991776106723e+01 1.8606289341623853e+01 9.3827000000000005e-01 1 0 0 0 0 P 282 -2112 2.4631015040795057e+00 3.1782396234435648e-03 -2.4002839143825927e+01 2.4147172875305465e+01 9.3957000000000002e-01 1 0 0 0 0 P 283 111 2.7925940523902619e-02 -5.5472408808229241e-02 -2.4619485436848509e-01 2.8755617366116737e-01 1.3497999999999999e-01 2 0 0 -138 0 P 284 311 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 2 0 0 -139 0 P 285 -323 1.2149894988745846e+00 2.8126001053118044e-01 -1.5867995640197217e+01 1.5939009753910748e+01 8.3871307492165326e-01 2 0 0 -140 0 P 286 111 1.4701215289329348e+00 2.0257739530499569e-01 -1.0246762632681136e+01 1.0354547742988640e+01 1.3497999999999999e-01 2 0 0 -141 0 P 287 221 2.4742944322276328e+00 -2.1889539237695113e+00 -2.5489290973132327e+01 2.5708312041696626e+01 5.4744999999999999e-01 2 0 0 -142 0 P 288 211 1.0920348541005535e-01 2.7899557451340989e-01 -5.5127425853781209e-01 6.4276513972849081e-01 1.3957000000000000e-01 1 0 0 0 0 P 289 223 1.1034186693568511e+00 -4.1280946986221387e+00 -3.0890263315788975e+01 3.1196321959364010e+01 8.6222820230003172e-01 2 0 0 -143 0 P 290 -213 4.8751681044854056e-02 -2.3693416705232451e-01 -4.0466609114571508e+00 4.1088518321851835e+00 6.6983902589715094e-01 2 0 0 -144 0 P 291 2212 8.0410663991472264e-01 -2.2749831680509103e+00 -3.8548531817409440e+01 3.8635369698942938e+01 9.3827000000000005e-01 1 0 0 0 0 P 292 -2212 3.8701868692076369e-01 -1.0146124093407376e+00 -2.2846150079256496e+01 2.2891180525303312e+01 9.3827000000000005e-01 1 0 0 0 0 P 293 211 8.7412050987943168e-01 -1.2452971111903675e-01 -8.9355965003826583e+00 8.9801981557922250e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 -211 8.6892355883605532e-01 -1.2082322036524880e-02 -6.1745104569172916e+01 6.1751377249229058e+01 1.3957000000000000e-01 1 0 0 0 0 P 295 213 1.7081611541563861e+00 -5.7932635894194628e-01 -1.2477442885938915e+02 1.2478940072257220e+02 6.9498341937365571e-01 2 0 0 -145 0 P 296 -213 6.9617780643707183e-01 2.6210426802024800e-01 -4.6550497074325975e+01 4.6564405009410663e+01 8.6120486999776258e-01 2 0 0 -146 0 P 297 223 6.3889112496883238e-01 -3.6058594501588370e-01 -4.4738186984386196e+01 4.4751035320656143e+01 7.8203806007384802e-01 2 0 0 -147 0 P 298 221 1.5692289495223868e+00 -1.0193024182541098e-01 -9.1874706839159060e+01 9.1889794468994964e+01 5.4744999999999999e-01 2 0 0 -148 0 P 299 213 1.0531408697158957e+00 -3.1242044722714932e+00 -2.0346999410597067e+02 2.0349839635146830e+02 8.3009448831115984e-01 2 0 0 -149 0 P 300 313 7.3621987424404223e-01 8.6893003089341225e-02 -1.4720006889004748e+02 1.4720458551476847e+02 8.8325831037160563e-01 2 0 0 -150 0 P 301 -313 3.7255610227274127e-01 -8.5161418207003303e-01 -8.6674628809694639e+01 8.6684221906256170e+01 8.9386991798089355e-01 2 0 0 -151 0 P 302 -213 9.4170324307306083e-02 -7.1957469828364529e-01 -1.4329891754246052e+02 1.4330287884534638e+02 7.8016711461893740e-01 2 0 0 -152 0 P 303 211 -4.5120026787354511e-01 -1.5894556763202117e-01 -6.0764575775260319e+01 6.0766619079124787e+01 1.3957000000000000e-01 1 0 0 0 0 P 304 3212 3.0514676584537620e-01 -3.2892463865811306e-01 -2.1879895037475299e+02 2.1880266032789169e+02 1.1925500000000000e+00 2 0 0 -153 0 P 305 -3322 -9.4097277055493167e-01 -5.8894171144694929e-01 -5.4165333361151420e+02 5.4165606712799843e+02 1.3149000000000000e+00 2 0 0 -154 0 P 306 -313 2.0649051041945177e-01 -7.5848415393842872e-01 -2.4148146439685010e+02 2.4148469113781218e+02 9.6977839462858995e-01 2 0 0 -155 0 P 307 2112 4.2778927057065519e-01 5.7125015057551069e-02 -3.1787588628924232e+02 3.1787756785102590e+02 9.3957000000000002e-01 1 0 0 0 0 P 308 221 -1.3190068515466569e+00 -4.6578333167382737e-03 -3.5394622875142039e+02 3.5394910983024829e+02 5.4744999999999999e-01 2 0 0 -156 0 P 309 -2112 -2.3989354435229902e+00 9.8281899945084195e-01 -8.7756585665258584e+01 8.7799897174522030e+01 9.3957000000000002e-01 1 0 0 0 0 P 310 -211 -3.9662298283597591e-01 -6.0413446470482035e-01 -4.6774529481667196e+02 4.6774587394349317e+02 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -4.2672931306698003e-01 -2.3090676102758495e-01 -5.6274245176992679e+01 5.6276509894129916e+01 1.3957000000000000e-01 1 0 0 0 0 P 312 313 -1.7865835516067197e+00 6.2968574057666271e-01 -6.7387947123314731e+01 6.7420716824772796e+01 9.1063425851607227e-01 2 0 0 -157 0 P 313 -321 -2.3041265158966925e-01 5.1032141117892726e-01 -8.3700840329905716e+01 8.3704168539118115e+01 4.9359999999999998e-01 1 0 0 0 0 P 314 213 -7.8760798121659548e-01 -5.6618594630365937e-01 -1.3811232527239807e+02 1.3811810805796154e+02 8.1023978190677848e-01 2 0 0 -158 0 P 315 -213 3.2088574587708457e-01 -4.8175169867612921e-01 -1.6802059835364230e+02 1.6802338629388333e+02 7.7576941578643599e-01 2 0 0 -159 0 P 316 331 -2.1624890421805518e-01 -1.0258729185735911e-01 -2.4700316793464120e+02 2.4700514452338271e+02 9.5873016411597090e-01 2 0 0 -160 0 P 317 2224 -2.8190748331736332e-01 4.8138431144231691e-02 -5.2424415849457421e+02 5.2424545547994126e+02 1.1305248998194504e+00 2 0 0 -161 0 P 318 223 1.8038463663845153e-01 -8.6773010817760621e-02 -1.2449355926405819e+03 1.2449358522978935e+03 7.7874588461348127e-01 2 0 0 -162 0 V -17 0 0 0 0 0 4 1 0 P 117 21 1.1046570476529272e+00 2.8533800296792613e+00 1.0622002836134497e+02 1.0626408833595492e+02 0 2 0 0 -17 0 P 118 21 -1.1046570476529272e+00 -2.8533800296792613e+00 1.2677472698946275e+01 1.3041486066366435e+01 0 2 0 0 -17 0 P 119 21 -8.0027583532907598e-01 -7.2225688798810728e-01 5.8653299018286402e+00 5.9635720237239598e+00 0 2 0 0 -17 0 P 120 21 -2.5249116086388907e+00 -1.2712899341906045e+00 8.4958119689861782e+00 8.9537800810932691e+00 0 2 0 0 -17 0 P 319 92 -3.3251874439679669e+00 -1.9935468221787118e+00 1.3325864293110607e+02 1.3422292650713857e+02 1.5585152672686750e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 14 0 P 320 -213 -2.8480004165306860e-01 5.9576816893411100e-02 5.2376360130968678e+00 5.3018150371256416e+00 7.6925367816187462e-01 2 0 0 -163 0 P 321 111 6.5183842329488442e-02 -7.2012445035361494e-01 4.2344957846876685e+00 4.2979067356371941e+00 1.3497999999999999e-01 2 0 0 -164 0 P 322 111 1.2502523672386964e-01 1.0021852270277111e-01 7.9973630980928678e-01 8.2672415456303261e-01 1.3497999999999999e-01 2 0 0 -165 0 P 323 213 -5.7951255899824528e-01 -6.1566977336730366e-01 1.3722141760877589e+01 1.3769789640887952e+01 7.7139365618962863e-01 2 0 0 -166 0 P 324 111 -9.2424961714341142e-02 9.6321817969330384e-02 2.0534940757776016e-01 2.7965737207760372e-01 1.3497999999999999e-01 2 0 0 -167 0 P 325 -213 -1.1067600447339856e+00 -1.6218532971014071e-01 6.0389272983154685e+00 6.2006422649470814e+00 8.5328758675814831e-01 2 0 0 -168 0 P 326 211 -2.0498004014864751e-01 -4.5270767112597400e-03 1.0122361628257261e+00 1.0421799966968472e+00 1.3957000000000000e-01 1 0 0 0 0 P 327 111 -3.8255127661839133e-01 -1.9081742065836602e+00 1.2677249287337471e+01 1.2826470417679680e+01 1.3497999999999999e-01 2 0 0 -169 0 P 328 -211 -8.1729685617042191e-01 2.1791621288724021e-02 1.1939970820232670e+00 1.4538080487617762e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 223 -2.7131083404504175e-01 2.2030189280282422e-01 2.3163028516552117e+01 2.3179612650792340e+01 8.0399632432182300e-01 2 0 0 -170 0 P 330 211 -9.9126330579208961e-03 7.5749306203032651e-01 1.5234962660263182e+01 1.5254424310469131e+01 1.3957000000000000e-01 1 0 0 0 0 P 331 113 2.2031514708745323e-01 -1.2504058092678683e-01 1.2349971029631249e+01 1.2362771509823645e+01 5.0215641035580594e-01 2 0 0 -171 0 P 332 -213 -1.3587985301966357e-01 5.2511456700412673e-01 1.4701157426952882e+01 1.4737191883200287e+01 8.7554912327975243e-01 2 0 0 -172 0 P 333 211 1.4971743005094948e-01 -2.3864370521745951e-01 2.2687754191155520e+01 2.2689932484476365e+01 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 3 1 0 P 121 21 -1.7526455339572602e+00 -1.6402911423441666e+00 1.1232651365346609e+02 1.1235216059756776e+02 0 2 0 0 -19 0 P 122 21 1.7526455339572602e+00 1.6402911423441666e+00 6.0230130902450367e+02 6.0230609259248740e+02 0 2 0 0 -19 0 P 123 21 -1.0346584559188690e+00 -2.4641502772336282e-01 3.3310302304817554e+01 3.3327278288582555e+01 0 2 0 0 -19 0 P 334 92 -1.0346584559188690e+00 -2.4641502772336282e-01 7.4793812498278737e+02 7.4798553147863765e+02 8.3537572460591214e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 8 0 P 335 -313 4.8542659709619368e-01 2.1568580876425061e-01 8.8452633747117673e+01 8.8458036504785539e+01 8.2075948423400813e-01 2 0 0 -173 0 P 336 313 -6.4832044132540001e-01 1.5477146596683491e-01 6.5132897050042757e+01 6.5143350318356681e+01 9.5788254361141645e-01 2 0 0 -174 0 P 337 -313 2.0698906709717108e-01 -9.4320638447488919e-02 2.1680836829305770e+02 2.1681088551026144e+02 1.0196925952559621e+00 2 0 0 -175 0 P 338 -213 -4.9985847065148958e-01 7.0337786165625538e-01 9.1704333136889161e+01 9.1710638387419195e+01 6.4177756229868965e-01 2 0 0 -176 0 P 339 223 1.6532552377892859e-01 -6.4894137994897416e-01 5.1310672477646385e+01 5.1320679500312195e+01 7.6064237460428186e-01 2 0 0 -177 0 P 340 223 -5.0062651592458085e-01 -2.6584103501101658e-02 9.7772110140335585e+01 9.7776755163349847e+01 8.1055250091657272e-01 2 0 0 -178 0 P 341 223 -2.1942864235462733e-01 -3.8082064426386303e-01 1.0447815140000758e+02 1.0448199912859234e+02 7.8156807258233552e-01 2 0 0 -179 0 P 342 321 -2.4165573635064514e-02 -1.6958339794927593e-01 3.2278958737690516e+01 3.2283186965560510e+01 4.9359999999999998e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 343 2212 4.2703213642904175e-01 -7.9813291226967820e-01 1.0311535374488091e+02 1.0312359526857088e+02 9.3827000000000005e-01 1 0 0 0 0 P 344 111 5.1082189207065733e-02 1.3229615078414103e-01 1.3063714621827531e+01 1.3065181628378417e+01 1.3497999999999999e-01 2 0 0 -180 0 V -22 0 0 0 0 0 0 3 0 P 345 211 2.1776891658702804e-01 1.4667198137665299e-01 2.6957894967833710e+02 2.6957911366690013e+02 1.3957000000000000e-01 1 0 0 0 0 P 346 -211 -1.5210313885320217e-01 -1.9229827923117676e-01 4.8175528836764261e+02 4.8175537097573539e+02 1.3957000000000000e-01 1 0 0 0 0 P 347 111 7.1215530223472059e-02 6.9564365734495190e-02 3.5534726716638522e+02 3.5534730674802006e+02 1.3497999999999999e-01 2 0 0 -181 0 V -23 0 0 0 0 0 0 2 0 P 348 -211 6.9351459176469330e+00 -9.9571581001823137e+00 -5.4470746165444318e+01 5.5806118965004615e+01 1.3957000000000000e-01 1 0 0 0 0 P 349 211 1.1815072542956082e+00 -1.9783066882728300e+00 -1.1941003322589840e+01 1.2162100841541307e+01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 350 211 3.0186545477769307e+00 -4.5886947121995734e+00 -2.5167158245603247e+01 2.5759924852078239e+01 1.3957000000000000e-01 1 0 0 0 0 P 351 111 1.4454312003105978e+00 -1.6577964430616390e+00 -8.8706913490037280e+00 9.1402923919942918e+00 1.3497999999999999e-01 2 0 0 -182 0 V -25 0 0 0 0 0 0 2 0 P 352 -211 9.1455216081853052e-01 -9.8289000639705093e-01 -4.9483535427792180e+00 5.1291481737973488e+00 1.3957000000000000e-01 1 0 0 0 0 P 353 111 1.7074239592948872e+00 -6.0764077547512907e-01 -1.0810645539586742e+01 1.0962335539098452e+01 1.3497999999999999e-01 2 0 0 -183 0 V -26 0 0 0 0 0 0 3 0 P 354 111 -5.2101895132735616e-02 -2.7951792743423822e-02 -1.4584156859397457e+00 1.4658416775317493e+00 1.3497999999999999e-01 2 0 0 -184 0 P 355 111 5.1409819858218207e-02 -1.1826177758111430e-02 -4.4319556981907693e-01 4.6628826016261354e-01 1.3497999999999999e-01 2 0 0 -185 0 P 356 111 -1.0470728143248921e-01 2.0769728015106678e-02 -3.8793306683171846e-01 4.2438975144113289e-01 1.3497999999999999e-01 2 0 0 -186 0 V -27 0 0 0 0 0 0 2 0 P 357 211 3.4684553451869282e-01 1.6291744491796858e-01 -6.6296555978386895e-01 7.7836176488423159e-01 1.3957000000000000e-01 1 0 0 0 0 P 358 111 9.2755420725394548e-03 -3.8902513610380407e-01 -1.4795953544075593e+00 1.5358543568274154e+00 1.3497999999999999e-01 2 0 0 -187 0 V -28 0 2.1102570769762575e-04 3.1568303294152541e-04 -1.0481844389672740e-03 1.1150371778514147e-03 0 2 0 P 359 22 3.1320131910570148e-01 4.8679418852937290e-01 -1.7680141049283331e+00 1.8603595145834197e+00 0 1 0 0 0 0 P 360 22 1.0609692999552245e+00 1.5688906545034618e+00 -5.0576199616546074e+00 5.4006104671382227e+00 0 1 0 0 0 0 V -29 0 -1.1851815173083341e-05 4.9169964520442955e-04 -2.9297572657699215e-03 2.9713302198317989e-03 0 2 0 P 361 22 1.1841076177942948e-02 1.0169469996359737e+00 -6.1418145836920681e+00 6.2254484008468207e+00 0 1 0 0 0 0 P 362 22 -3.9209839279201984e-02 1.1850870145661702e-01 -6.2371722557499676e-01 6.3608560846493456e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 363 2212 1.4882630359469244e+00 4.5861111788280926e+00 -1.3721630598223710e+01 1.4574321235506892e+01 9.3827000000000005e-01 1 0 0 0 0 P 364 111 5.8839360853550149e-01 2.7254324593904724e+00 -8.2346019950259244e+00 8.6948880812894629e+00 1.3497999999999999e-01 2 0 0 -188 0 V -31 0 0 0 0 0 0 2 0 P 365 -311 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 2 0 0 -189 0 P 366 -211 2.8966372111981192e-01 6.5671604788001436e-01 -1.5189103093889327e+00 1.6857488993750240e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 367 -4132 6.1932746264626175e+00 2.6422707217778360e+01 -8.4052347087424351e+01 8.8359580919728643e+01 2.4702999999999999e+00 2 0 0 -190 0 P 368 22 1.4281720348137575e-01 3.6543670134544759e-01 -9.5927423704498971e-01 1.0364110179647501e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 369 22 -9.2275782543600859e-01 6.2896337763484900e-01 1.3580062462352611e+00 1.7581973437652592e+00 0 1 0 0 0 0 P 370 221 -1.3515067596179804e+00 1.1935341250034783e+00 1.0448230095886901e+00 2.1546347376543618e+00 5.4744999999999999e-01 2 0 0 -191 0 V -34 0 0 0 0 0 0 3 0 P 371 -211 -1.6576177375707235e-01 2.7787931788032871e-01 -3.2018964475850183e-02 3.5383453750423144e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 211 -2.2270823658959865e-01 1.7465271223669632e-01 3.8269392481484193e-01 4.9602112205698540e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 111 -6.6997772108833897e-02 6.4327645749143270e-01 1.1058839750391278e+00 1.2882128197152116e+00 1.3497999999999999e-01 2 0 0 -192 0 V -35 0 0 0 0 0 0 2 0 P 374 -321 2.3088659145579091e-01 2.3884583942541135e-01 4.0077372094797328e+00 4.0516607031405405e+00 4.9359999999999998e-01 1 0 0 0 0 P 375 211 6.3327273690130970e-02 -3.1072069223622284e-01 1.9140954753043713e+00 1.9451989527185771e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 376 321 2.0739891592609752e-01 -1.5008835806955192e-01 3.5726648215625678e+00 3.6156763838576635e+00 4.9359999999999998e-01 1 0 0 0 0 P 377 -211 6.8083013727334607e-02 -7.2128054967664168e-02 1.1432282043981888e-01 2.0588162920700304e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 1 0 P 378 310 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -193 0 V -38 0 0 0 0 0 0 2 0 P 379 211 1.4276982042613318e-02 2.1777535620317029e-01 2.4591674133331107e+00 2.4727745731637416e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 -211 7.5285686019056319e-01 -3.6114885471553254e-01 1.5039427936533686e+01 1.5063236517770283e+01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 381 211 -3.2564748328028643e-02 -4.4951821422832400e-01 1.2129972911179671e+01 1.2139145344652947e+01 1.3957000000000000e-01 1 0 0 0 0 P 382 -211 3.3570438762405375e-01 -2.2475947898224130e-01 2.2843365525610821e+01 2.2847364018215043e+01 1.3957000000000000e-01 1 0 0 0 0 P 383 111 2.8311901644856694e-03 -1.4208074052031550e-01 1.1168423522132302e+01 1.1170143173772781e+01 1.3497999999999999e-01 2 0 0 -194 0 V -40 0 0 0 0 0 0 2 0 P 384 211 4.1170657522114390e-01 -5.8600038434651192e-01 8.6485618301443488e+00 8.6792857004055559e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 -211 -1.5161522173265082e-01 -1.7582368376233651e-01 7.7669740426035965e+00 7.7716965140573295e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 386 -211 8.8968567793816111e-01 -2.0505212342513832e-01 1.0841477853633208e+01 1.0880749460150653e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 2.1027841575694231e-01 -1.0687463421640166e+00 1.2229295985896846e+01 1.2278450051496520e+01 1.3497999999999999e-01 2 0 0 -195 0 V -42 0 0 0 0 0 0 3 0 P 388 211 2.0477302601016806e-01 2.9926708139069717e-02 6.9643984775708101e-01 7.3982149636605465e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 -1.7942048213989335e-02 -2.6279955290552579e-02 4.3046327500712783e-01 4.5364189530294569e-01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -5.1752497174978492e-03 -6.3806992501713566e-02 1.6469309836891391e-01 2.2235451997228423e-01 1.3497999999999999e-01 2 0 0 -196 0 V -43 0 0 0 0 0 0 2 0 P 391 211 -9.6998340142361542e-02 -3.5415583248679028e-01 1.0026780585523312e+00 1.0768835153706535e+00 1.3957000000000000e-01 1 0 0 0 0 P 392 111 4.3401178138248377e-02 2.5431059440217435e-01 2.3164703849118795e+00 2.3346974504767779e+00 1.3497999999999999e-01 2 0 0 -197 0 V -44 0 0 0 0 0 0 2 0 P 393 2112 3.7203063582527385e-01 -1.7583068964110157e-01 3.9902577890296973e+00 4.1199844942941706e+00 9.3957000000000002e-01 1 0 0 0 0 P 394 111 6.9465988362116801e-02 1.1260785401452283e-01 1.7609429287152587e+00 1.7710577774079406e+00 1.3497999999999999e-01 2 0 0 -198 0 V -45 0 0 0 0 0 0 2 0 P 395 -211 4.5659270866253085e-02 2.5304423324417319e-02 4.3542211986285642e+00 4.3567702618272390e+00 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -1.2436424180966610e-01 5.6340930304611758e-01 2.1545965286427187e+00 2.2345922019552154e+00 1.3497999999999999e-01 2 0 0 -199 0 V -46 0 0 0 0 0 0 2 0 P 397 -2112 -7.7577062635964089e-01 2.1836498478976050e+00 4.9526950996446381e+01 4.9590037442133948e+01 9.3957000000000002e-01 1 0 0 0 0 P 398 211 2.9460967021964348e-02 7.6998858555386393e-02 1.4892046393154574e+00 1.4980010064934481e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 399 321 3.3381760456813248e-01 3.6762918413813089e-01 1.4157483297276345e+01 1.4174786054216423e+01 4.9359999999999998e-01 1 0 0 0 0 P 400 -211 -1.1308401563363750e-01 2.7630836054390440e-01 3.2461205620408458e+00 3.2628075016621292e+00 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 401 2212 -1.4693914225262659e+00 1.3718629277384442e+00 1.0163868586425282e+02 1.0166289359373096e+02 9.3827000000000005e-01 1 0 0 0 0 P 402 211 -1.6516279192266309e-01 1.2760242044922626e-01 7.0961698334014214e+00 7.1006103410141126e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 403 -2212 -9.1390721957133725e-01 7.0795529763213272e-01 1.0302908485290651e+02 1.0303984231029150e+02 9.3827000000000005e-01 1 0 0 0 0 P 404 -211 -4.9937829232166903e-01 4.3818034400250272e-01 7.8706149843306349e+01 7.8709077517365202e+01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 1 0 P 405 130 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 406 2212 4.9754496854899223e-02 -1.3733105716182045e-01 1.9316292574205696e+02 1.9316525973154057e+02 9.3827000000000005e-01 1 0 0 0 0 P 407 211 -1.7352840552363066e-01 1.4511688035982032e-01 7.5056630119969697e+01 7.5057100768463812e+01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 -6.1881305703396353e-05 7.8060246645409220e-06 3.0702013732928451e-02 3.0702091722223220e-02 0 2 0 P 408 22 -1.0641333515515250e-02 -2.6841500845066445e-02 6.5167008755383504e+00 6.5167648419586923e+00 0 1 0 0 0 0 P 409 22 -2.6799499826152934e-01 6.1990114041982874e-02 1.3172693163142904e+02 1.3172721883166176e+02 0 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 410 -2212 -2.0509311894932511e-01 -7.5844595228929157e-01 3.0014973307008194e+02 3.0015222790458233e+02 9.3827000000000005e-01 1 0 0 0 0 P 411 -211 4.3308811263527832e-03 -7.3113774585891050e-02 7.1167701131554878e+01 7.1167875677975545e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 412 -211 -9.0600469820506457e-02 -6.6602013092826295e-01 2.2393397044676266e+02 2.2393502269876501e+02 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -1.2330123329730834e-01 1.9308950901848823e-01 1.8254266023874885e+02 1.8254285390941035e+02 1.3497999999999999e-01 2 0 0 -200 0 V -55 0 0 0 0 0 0 2 0 P 414 211 -2.8174637945878134e-01 -8.2458417284482555e-02 7.7885956018908786e+01 7.7886634316660604e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 1.1779655971733316e-01 -2.8144922545196727e-01 2.3742173396481462e+02 2.3742196837730833e+02 1.3497999999999999e-01 2 0 0 -201 0 V -56 0 0 0 0 0 0 1 0 P 416 310 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -202 0 V -57 0 0 0 0 0 0 2 0 P 417 211 -2.1124342068482702e-01 -4.0228384217061497e-01 2.5877969129574996e+02 2.5878012783631783e+02 1.3957000000000000e-01 1 0 0 0 0 P 418 -211 -3.1518931859237037e-01 -3.1630784642005007e-02 4.3004090560278321e+01 4.3005483714459146e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 1 0 P 419 310 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -203 0 V -59 0 0 0 0 0 0 2 0 P 420 211 1.3608658690979444e-01 -2.5282171118196906e-01 3.4211693972318886e+00 3.4360323348649877e+00 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -9.6885175308492402e-02 -2.8150263741062120e-01 1.4496139266756256e+01 1.4499824264923223e+01 1.3497999999999999e-01 2 0 0 -204 0 V -60 0 0 0 0 0 0 3 0 P 422 -211 2.5205438547994158e-01 -5.8887644427160113e-01 2.6311317594760464e+01 2.6319483662053653e+01 1.3957000000000000e-01 1 0 0 0 0 P 423 211 1.2907148587371026e-01 -1.3161144221356708e-01 1.1123105810374851e+01 1.1125508692814092e+01 1.3957000000000000e-01 1 0 0 0 0 P 424 221 8.7880815383936906e-01 -2.0454984505104776e+00 8.5638079074402569e+01 8.5668761265343520e+01 5.4744999999999999e-01 2 0 0 -205 0 V -61 0 0 0 0 0 0 2 0 P 425 -211 -1.5303794146600642e+00 -2.0392859333538551e+00 7.1862357021913098e+01 7.1907708799548004e+01 1.3957000000000000e-01 1 0 0 0 0 P 426 111 -2.2686535957500534e-02 -2.2232276137209814e-01 8.8852424470203903e+00 8.8890772879906255e+00 1.3497999999999999e-01 2 0 0 -206 0 V -62 0 0 0 0 0 0 2 0 P 427 211 -1.4567424831221007e-01 -7.3919574209108385e-02 1.1251435733221703e+01 1.1253487056632304e+01 1.3957000000000000e-01 1 0 0 0 0 P 428 111 -1.4939272751261954e+00 -1.8081043564807144e+00 7.3231302572507929e+01 7.3268976764616397e+01 1.3497999999999999e-01 2 0 0 -207 0 V -63 0 0 0 0 0 0 2 0 P 429 130 -2.4475005945396067e-01 -3.8069210975122858e-01 1.3098865230824227e+01 1.3116126518077866e+01 4.9767000000000000e-01 1 0 0 0 0 P 430 310 -4.5044400446669897e-01 -2.7959447847610397e-01 1.3048620023509267e+01 1.3068865016533811e+01 4.9767000000000000e-01 2 0 0 -208 0 V -64 0 0 0 0 0 0 2 0 P 431 -321 -1.4681054948386378e+00 -1.0884780864011612e+00 2.1136007562234159e+01 2.1220616742200743e+01 4.9359999999999998e-01 1 0 0 0 0 P 432 211 -6.9113554582763925e-01 -1.0500941425245576e+00 1.4641268966556334e+01 1.4695802216511233e+01 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 3 0 P 433 211 -4.3018667221439905e-01 -7.6358381810188447e-01 9.5552365537666510e+00 9.5963610917657913e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 -211 -8.8064940984377915e-01 -1.0586598586157425e+00 1.6649598390478797e+01 1.6707031765949232e+01 1.3957000000000000e-01 1 0 0 0 0 P 435 111 -3.8452701156244590e-01 -1.4471210124925199e-01 5.8854286003621024e+00 5.9012957920468052e+00 1.3497999999999999e-01 2 0 0 -209 0 V -66 0 0 0 0 0 0 2 0 P 436 211 -8.1639098647959640e-01 -7.8935342042376108e-02 6.4220344622251169e+00 6.4757031625867105e+00 1.3957000000000000e-01 1 0 0 0 0 P 437 -211 1.6517405323475644e-02 -9.6567388905977478e-02 4.0957145694000898e+00 4.0992628244813609e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 438 -211 -2.6062580481261710e+00 -6.3972279868279566e-02 2.1191598909602646e+01 2.1351815323208143e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 211 -3.4807467185820817e-01 1.3486034407408479e-01 4.7828078739800386e+00 4.7993826930031780e+00 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 440 211 -1.3822909515300794e+00 -3.1701713614728161e-01 9.4159258935073957e+00 9.5231490777061776e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -7.5194613958268972e-03 -1.4326595104864758e-02 2.6311108317435226e+00 2.6346205804527285e+00 1.3497999999999999e-01 2 0 0 -210 0 V -69 0 -3.2894213052368456e-04 6.3125812515849269e-05 3.3539629417182757e-03 3.3707023707118793e-03 0 2 0 P 442 22 -4.8186379190428402e-01 1.4824942523018392e-01 4.9461812084873484e+00 4.9718084389106165e+00 0 1 0 0 0 0 P 443 22 -1.7980481722974337e+00 2.8927827903716785e-01 1.8300279274208723e+01 1.8390673741509801e+01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 444 311 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 2 0 0 -211 0 P 445 111 -1.4620556163168672e+00 2.4813037811528996e-01 1.0592684088258299e+01 1.0696838369527132e+01 1.3497999999999999e-01 2 0 0 -212 0 V -71 0 0 0 0 0 0 1 0 P 446 130 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406864e+01 4.9767000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 1 0 P 447 310 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251250e+00 4.9767000000000000e-01 2 0 0 -213 0 V -73 0 -1.9472591318257961e+00 8.3995921291674325e+00 1.4654708998628274e+02 1.4723431227236318e+02 0 2 0 P 448 2212 -9.3545545269659622e-02 7.5649194101478967e-01 1.3035061116275278e+01 1.3090996895721572e+01 9.3827000000000005e-01 1 0 0 0 0 P 449 -211 -9.8819560980931087e-02 7.3283822251970498e-02 1.4419779563282928e+00 1.4539312348502051e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 450 -2112 2.9133267477638297e-01 1.6172779667688766e+00 1.1317897326733288e+01 1.1475105857139834e+01 9.3957000000000002e-01 1 0 0 0 0 P 451 211 -7.1450006080425775e-03 2.8364520002038962e-01 3.5076633712144134e+00 3.5218869603080050e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 3 0 P 452 211 -8.9225259645836996e-02 -5.9408438952089790e-02 1.6800231451730891e+00 1.6892152209812905e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 -211 1.1630693744121963e-01 8.7192875310218548e-02 1.7971980900530726e+00 1.8084608541498020e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 221 -1.9481245460419003e-01 2.0288304542047858e-01 4.5053122571735562e+00 4.5471588337913031e+00 5.4744999999999999e-01 2 0 0 -214 0 V -76 0 0 0 0 0 0 2 0 P 455 22 1.0022458329071902e+00 -1.9223542467573798e-01 5.0271274686520160e+00 5.1296648773731528e+00 0 1 0 0 0 0 P 456 111 3.9130110620179237e-01 3.1432048284728842e-01 4.7082401127036553e+00 4.7368405589510640e+00 1.3497999999999999e-01 2 0 0 -215 0 V -77 0 4.0153636320777204e-05 2.7122341438058723e-05 7.2521553852361901e-04 7.2684286962158178e-04 0 2 0 P 457 22 6.3762516781812406e-01 5.1208879147255471e-01 1.2209129422220263e+01 1.2236488141354586e+01 0 1 0 0 0 0 P 458 22 7.5975394740700897e-01 4.3179069129143305e-01 1.3028959588544526e+01 1.3058233311654865e+01 0 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 459 -211 3.9200224519627397e-01 6.7036711704883095e-02 3.4972968056970180e+00 3.5226019379137474e+00 1.3957000000000000e-01 1 0 0 0 0 P 460 211 1.2860876453298151e+00 -1.1186266750594271e-02 7.4847706976630288e+00 7.5957500449612549e+00 1.3957000000000000e-01 1 0 0 0 0 P 461 111 3.0382977154547536e-01 2.1670972624679194e-01 1.9194759152541676e+00 1.9600721989682317e+00 1.3497999999999999e-01 2 0 0 -216 0 V -79 0 1.2364522635710453e-04 2.6783415676147990e-05 1.7640249169410100e-03 1.7688621366039612e-03 0 2 0 P 462 22 2.0036052118735095e-01 8.2793776830612023e-02 2.2819925965955972e+00 2.2922672965536681e+00 0 1 0 0 0 0 P 463 22 3.0658432359927351e-01 2.7018101094914749e-02 4.9505012413439449e+00 4.9600591191851287e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 464 2112 1.9496405700625017e+00 -2.5711196714691569e-03 2.6746309193694472e+01 2.6833727885493200e+01 9.3957000000000002e-01 1 0 0 0 0 P 465 211 6.7354150996353956e-01 -2.0752757953346984e-01 6.2851972784090346e+00 6.3261291857921558e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 466 -2112 1.3462739229625320e+00 7.7425325317696203e-01 7.6486544610351199e+00 7.8610831585040799e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 111 9.5433231115016270e-01 4.5565994642410657e-01 4.4894856521080859e+00 4.6143338812622563e+00 1.3497999999999999e-01 2 0 0 -217 0 V -82 0 0 0 0 0 0 3 0 P 468 -211 3.1549491408771663e-01 4.6567377454487337e-02 1.4474850154494627e+00 1.4887572724621485e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 211 9.5243535602676552e-02 -1.5209731860964573e-01 1.1476132120066047e+00 1.1699148664216805e+00 1.3957000000000000e-01 1 0 0 0 0 P 470 221 7.4490078919799063e-01 -1.5202371842806270e-01 5.2286606512864680e+00 5.3119282850509109e+00 5.4744999999999999e-01 2 0 0 -218 0 V -83 0 0 0 0 0 0 2 0 P 471 211 8.1894668694024209e-01 2.3325557372599750e+00 5.9305418993343562e+00 6.4266863116333273e+00 1.3957000000000000e-01 1 0 0 0 0 P 472 111 -4.0723007462882800e-02 1.0574573195591666e+00 2.2775590404786064e+00 2.5150286537715449e+00 1.3497999999999999e-01 2 0 0 -219 0 V -84 0 0 0 0 0 0 2 0 P 473 22 9.7849810237617163e-01 2.9329241145962222e+00 1.1451736197173155e+01 1.1861777452303665e+01 0 1 0 0 0 0 P 474 111 1.6609993296323144e-01 1.4307044356655101e+00 3.9720517679911169e+00 4.2272827227386527e+00 1.3497999999999999e-01 2 0 0 -220 0 V -85 0 0 0 0 0 0 2 0 P 475 -211 2.8137841195477081e-01 1.2848410923924741e-01 1.4733443763819121e+00 1.5119211002421380e+00 1.3957000000000000e-01 1 0 0 0 0 P 476 111 4.7696226071361375e-01 1.4639143001008668e+00 2.3696932288255899e+00 2.8291701389854058e+00 1.3497999999999999e-01 2 0 0 -221 0 V -86 0 0 0 0 0 0 3 0 P 477 22 5.7680613643623646e-01 8.5068187069240031e-01 9.5896780536495674e-01 1.4056970569371274e+00 0 1 0 0 0 0 P 478 211 2.0358806942319194e-01 2.0701396234629021e-01 3.5019977835089117e-01 4.7583878811503688e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 -211 9.0337640098961369e-01 8.9816713687299043e-01 1.4788711166043924e+00 1.9568680824343512e+00 1.3957000000000000e-01 1 0 0 0 0 V -87 0 3.2474631983916332e-05 9.7410783509234710e-05 1.3564348080823553e-04 1.7020556806749825e-04 0 2 0 P 480 22 3.9001811079315468e-02 1.5271838292545140e-01 1.6207399367084319e-01 2.2607968766620315e-01 0 1 0 0 0 0 P 481 22 7.9964842422821447e-01 2.3628936970504149e+00 3.3408890931502686e+00 4.1694417082700257e+00 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 482 -211 -1.1441099565012297e-01 1.3904297631243436e+00 2.1816410435693205e+00 2.5933419037978593e+00 1.3957000000000000e-01 1 0 0 0 0 P 483 111 1.0174687613849669e-01 6.3856246458058019e-01 3.2113162829813596e-01 7.3447911547475564e-01 1.3497999999999999e-01 2 0 0 -222 0 V -89 0 0 0 0 0 0 2 0 P 484 211 3.9779167190723447e-01 1.5889195636751455e-01 4.5397661523884070e-01 6.3957753253281457e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 111 4.0003817399806046e-01 1.3218945110764273e+00 1.2736200901280608e+00 1.8835507355650123e+00 1.3497999999999999e-01 2 0 0 -223 0 V -90 0 -8.4995179063576421e-05 1.2023658143504478e-05 1.2062612143230178e-04 1.4901465103862350e-04 0 2 0 P 486 22 -4.6194329145719348e-01 1.1785630989943167e-01 5.9984472343393835e-01 7.6622151270827321e-01 0 1 0 0 0 0 P 487 22 -2.1650059478877809e-01 -2.1881721132809034e-02 3.6301052916920529e-01 4.2323511379768003e-01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 488 311 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 2 0 0 -224 0 P 489 211 -3.8198541151957377e-01 6.4838416885081673e-01 2.2544827281917265e-01 7.9788570211985288e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 490 211 -3.8355905440942223e-01 2.2046827761504406e-01 1.6759697766551432e-01 4.9324673488692167e-01 1.3957000000000000e-01 1 0 0 0 0 P 491 111 -3.5253795477783950e-01 1.5012892203401249e-03 -1.2354994083629908e-01 3.9720202883283229e-01 1.3497999999999999e-01 2 0 0 -225 0 V -93 0 0 0 0 0 0 2 0 P 492 -211 -1.0903142327166899e+00 5.2865137402408924e-01 9.6701452576942848e-01 1.5565520483656223e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -3.9462850528196543e-02 3.0389759640534730e-01 5.3010249145955493e-02 3.3902913235778781e-01 1.3497999999999999e-01 2 0 0 -226 0 V -94 0 0 0 0 0 0 2 0 P 494 211 -1.2361325495235732e-02 1.4230680560034584e-01 -1.9723024651120868e-01 2.8068413622263361e-01 1.3957000000000000e-01 1 0 0 0 0 P 495 -211 -1.6872008481646645e+00 1.3262616609879836e+00 -7.8575873796689465e-03 2.1506181023216553e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 496 211 -1.0885790322625848e-01 2.2612266225162836e-01 1.5295726796725564e-01 3.2535705340838750e-01 1.3957000000000000e-01 1 0 0 0 0 P 497 111 -1.5044694929017968e+00 1.5829448879062136e-01 1.4968586155032573e+00 2.1324377870080999e+00 1.3497999999999999e-01 2 0 0 -227 0 V -96 0 -3.2554406769056885e-04 -3.5040648225571856e-05 4.3275074492165266e-04 5.4339007092584282e-04 0 2 0 P 498 22 -1.5542977715021760e+00 -1.6533880291179975e-01 2.0752910663201551e+00 2.5980784230259841e+00 0 1 0 0 0 0 P 499 22 -6.3477122815262799e-03 -2.6446894308450376e-03 -7.0097946299553786e-04 6.9122504007164713e-03 0 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 500 111 -6.2353150947055946e-01 -9.0116747774047601e-02 1.5221604244427969e-01 6.6204372628203678e-01 1.3497999999999999e-01 2 0 0 -228 0 P 501 111 -3.5805485482381427e-01 3.4710721190687049e-02 9.8967965370352393e-02 3.9676488226407791e-01 1.3497999999999999e-01 2 0 0 -229 0 P 502 111 -1.1845234764357272e-01 6.7454018331792445e-02 -1.5210473087511882e-02 1.9243690431652011e-01 1.3497999999999999e-01 2 0 0 -230 0 V -98 0 0 0 0 0 0 2 0 P 503 321 -1.6678250697673029e+00 -1.5086562075239927e+00 7.6560955002661513e-01 2.4264136001384720e+00 4.9359999999999998e-01 1 0 0 0 0 P 504 -211 -1.9603293385378842e-01 -5.7625735908253983e-01 3.4022761587305511e-01 7.1115122903273542e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 1 0 P 505 130 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 1 0 0 0 0 V -100 0 2.4784462981138953e-05 -6.2434443295398604e-05 6.3021721098028584e-05 9.4133066226671541e-05 0 2 0 P 506 22 3.1410186598358023e-02 -1.4480480589819336e-01 6.5194531758202029e-02 1.6188069250076839e-01 0 1 0 0 0 0 P 507 22 1.4089445441950610e-01 -2.8924713815040376e-01 3.7294023994887310e-01 4.9254398462217774e-01 0 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 508 321 -1.0257296027806273e+00 -3.6848502762598798e+00 1.7505002102640654e+00 4.2353435188432540e+00 4.9359999999999998e-01 1 0 0 0 0 P 509 111 -1.4596731812295549e-01 -1.0046418263010555e-01 1.5383081897684797e-01 2.7070838778772827e-01 1.3497999999999999e-01 2 0 0 -231 0 V -102 0 0 0 0 0 0 2 0 P 510 -321 6.2500809318834630e-02 -7.1273415170284204e-01 1.0469390988621148e+00 1.3607419883634428e+00 4.9359999999999998e-01 1 0 0 0 0 P 511 211 -2.2660156941809736e-01 -7.4432455289201060e-01 4.3834454964318059e-01 9.0387667322623122e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 512 -211 2.0360668152390449e-01 -7.7249685061133971e-02 3.2219910915490019e-01 4.1317701466009982e-01 1.3957000000000000e-01 1 0 0 0 0 P 513 111 9.4992355108865181e-02 -3.6967536966829589e-01 1.3263870972843683e-01 4.2602353712787333e-01 1.3497999999999999e-01 2 0 0 -232 0 V -104 0 0 0 0 0 0 2 0 P 514 -211 2.9481347638730043e-01 -1.5034953496218688e+00 1.1685860468671678e+00 1.9319643852894353e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -9.4648411822966391e-02 -9.7690040220823046e-02 2.4528479192540964e-01 3.1328274748036694e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 516 211 -4.8823976241588701e-01 -1.3475917088973037e+00 6.2437563827297571e-01 1.5696197635292004e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 111 2.5820827099171689e-01 -7.6566482209935494e-01 3.6869442953906528e-01 8.9837036559656480e-01 1.3497999999999999e-01 2 0 0 -233 0 V -106 0 0 0 0 0 0 2 0 P 518 311 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -234 0 P 519 111 4.3122583000365111e-01 -9.4305119800959158e-01 7.6444474015925989e-01 1.2953364967014640e+00 1.3497999999999999e-01 2 0 0 -235 0 V -107 0 0 0 0 0 0 2 0 P 520 -311 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -236 0 P 521 -211 3.5535698437635393e-01 -7.0098858679047649e-01 1.5780827514139777e+00 1.7684706784015041e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 522 2212 2.4512438852886342e+00 -5.1337536525883387e-01 9.8873679260435876e-01 2.8513333527963920e+00 9.3827000000000005e-01 1 0 0 0 0 P 523 211 1.5122428787602060e+00 1.2313879456916881e-01 3.0575046664842115e-01 1.5540285775508218e+00 1.3957000000000000e-01 1 0 0 0 0 V -109 0 1.0971462260821673e-04 -1.1908893670300572e-04 3.1457163944474797e-05 1.6736245100994987e-04 0 2 0 P 524 22 3.1853088413534097e-01 -3.3413156370193076e-01 2.2283367807392554e-02 4.6217136918115015e-01 0 1 0 0 0 0 P 525 22 2.0467586387789666e-01 -2.3377938395025166e-01 1.2772945689948761e-01 3.3594616201730970e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 526 -2212 7.5978565726629566e-01 -1.9014739034781902e-01 2.7137807095332911e-01 1.2519692190058080e+00 9.3827000000000005e-01 1 0 0 0 0 P 527 111 7.3191741041476452e-02 -2.8396240332069861e-01 1.0909019449881370e-01 3.4075203358474421e-01 1.3497999999999999e-01 2 0 0 -237 0 V -111 0 0 0 0 0 0 2 0 P 528 321 1.8281708448208533e+00 6.3811732635462859e-01 -3.7858685294090250e-01 2.0338071012922216e+00 4.9359999999999998e-01 1 0 0 0 0 P 529 -211 8.0029074142278345e-01 -3.4481915424770984e-02 7.9347364050571564e-02 8.1696392966896858e-01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 530 211 1.1403325962761759e+00 -1.1350723537513931e-01 -9.5876406440765255e-02 1.1584102869123987e+00 1.3957000000000000e-01 1 0 0 0 0 P 531 111 3.1345191558033864e-01 3.3886775996459373e-01 9.4209984122144680e-02 4.9008018082013888e-01 1.3497999999999999e-01 2 0 0 -238 0 V -113 0 0 0 0 0 0 2 0 P 532 311 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -239 0 P 533 111 3.5757720671230186e-01 1.3540099758327029e-01 -5.6804795938670838e-01 6.9792046357025561e-01 1.3497999999999999e-01 2 0 0 -240 0 V -114 0 0 0 0 0 0 3 0 P 534 211 3.8846428976296371e-01 -5.8515519060278111e-02 -4.8557609063497448e-01 6.3999413676086325e-01 1.3957000000000000e-01 1 0 0 0 0 P 535 -211 3.4136747847378457e-01 6.4763654972160275e-03 -1.9050995828055373e-01 4.1514759757664699e-01 1.3957000000000000e-01 1 0 0 0 0 P 536 111 8.4447206235110672e-01 -6.1541933848405095e-01 -5.2811173030377401e-01 1.1785565859796994e+00 1.3497999999999999e-01 2 0 0 -241 0 V -115 0 8.5814370191757743e-05 -9.2237311704393624e-05 -1.6059079209375197e-05 1.2888850937693450e-04 0 2 0 P 537 22 -8.2210746879714906e-03 -5.9756489793695300e-03 8.5154693932728513e-04 1.0198999065581039e-02 0 1 0 0 0 0 P 538 22 5.3553479733446796e-01 -5.6080588298391720e-01 -9.9531672671741483e-02 7.8179748746735900e-01 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 539 -321 2.1312527234463374e+00 -1.9889389125683865e+00 -1.5254584753989664e+00 3.3269777109702261e+00 4.9359999999999998e-01 1 0 0 0 0 P 540 211 9.7396071565651121e-01 -1.5767665150371877e+00 -1.0026349540173458e+00 2.1117643700238022e+00 1.3957000000000000e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 3 0 P 541 -211 4.9111497523019360e-01 -8.2946656483207570e-01 -4.4635437474071360e-01 1.0714106186798089e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 211 5.3315892504720708e-01 -4.6847413534888277e-01 -2.6511382769233804e-01 7.7038404798000548e-01 1.3957000000000000e-01 1 0 0 0 0 P 543 111 1.4665721666715198e-01 -5.6670707181610314e-01 1.6762758955457706e-03 6.0073925687257679e-01 1.3497999999999999e-01 2 0 0 -242 0 V -118 0 0 0 0 0 0 2 0 P 544 311 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 2 0 0 -243 0 P 545 211 1.3800726882087853e+00 -1.7691735401852144e+00 -8.8733395516209135e-01 2.4169023507198029e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 546 -321 -3.1195537120779965e-01 -1.1031140689059398e+00 -6.2055739697654777e-01 1.3938827947807961e+00 4.9359999999999998e-01 1 0 0 0 0 P 547 211 2.6845240900893597e-01 -1.5631308618466222e+00 -7.2265487212853508e-01 1.7484720862144680e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 548 321 1.3929316808297021e-01 -3.4255715454587804e-02 -1.2981052658220242e+00 1.3961712938858055e+00 4.9359999999999998e-01 1 0 0 0 0 P 549 -211 2.2991256364576590e-01 2.7313887401104586e-01 -2.3878333713551556e-01 4.5162141048865656e-01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 550 -311 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -244 0 P 551 111 3.8999362575834590e-01 -1.9929949933398994e-01 -6.9151628053952960e-02 4.6348340491265927e-01 1.3497999999999999e-01 2 0 0 -245 0 V -122 0 0 0 0 0 0 2 0 P 552 211 -1.5536671083745418e-01 -7.2973955177834704e-01 -2.3183190520181396e-01 7.9365259744778438e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 -3.8059992635465462e-01 -4.7645535078724238e-02 -3.6897353586488912e-01 5.4907874801593359e-01 1.3497999999999999e-01 2 0 0 -246 0 V -123 0 0 0 0 0 0 2 0 P 554 321 -1.5321551811203027e-01 -6.3670986621277445e-02 -1.5968430735118158e+00 1.6796064273961109e+00 4.9359999999999998e-01 1 0 0 0 0 P 555 -211 -1.9718877678862928e-01 -9.9254970269978496e-02 -1.3251067846094938e-01 2.9287169139551761e-01 1.3957000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 3 0 P 556 211 7.3701270062135935e-02 2.3440173600653293e-02 -9.3517261011000462e-03 1.5983916487604236e-01 1.3957000000000000e-01 1 0 0 0 0 P 557 -211 3.2057533662789278e-01 4.5639136669046503e-02 -1.7727187754385837e-01 3.9466008249873386e-01 1.3957000000000000e-01 1 0 0 0 0 P 558 111 4.8436369163677419e-02 9.7593178471862916e-03 7.5917150010530829e-02 1.6255565264955840e-01 1.3497999999999999e-01 2 0 0 -247 0 V -125 0 0 0 0 0 0 2 0 P 559 -321 -3.9684362250671479e-01 2.7377417853337127e-01 -1.7126579727948870e+00 1.8464223388308987e+00 4.9359999999999998e-01 1 0 0 0 0 P 560 211 2.1863396676987515e-01 8.9201719047028172e-02 -4.8141631670275498e-01 5.5407509689041534e-01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 561 311 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -248 0 P 562 111 -8.0485031244081850e-01 6.3442935549394852e-01 -5.0100165855366425e+00 5.1155420455999367e+00 1.3497999999999999e-01 2 0 0 -249 0 V -127 0 0 0 0 0 0 2 0 P 563 211 -2.5648980130092658e-01 2.7079627430371095e-01 -6.8642645852325646e-01 7.9358598035054739e-01 1.3957000000000000e-01 1 0 0 0 0 P 564 111 -7.8739269630811382e-01 3.2441156093686990e-01 -4.2563212397930528e+00 4.3427779376549207e+00 1.3497999999999999e-01 2 0 0 -250 0 V -128 0 0 0 0 0 0 3 0 P 565 -211 1.1064791628146634e-01 3.6783581785418351e-01 -1.1705761568557398e+00 1.2398687326378708e+00 1.3957000000000000e-01 1 0 0 0 0 P 566 211 1.9601539694647892e-02 8.6425514861375141e-01 -3.9289817684673118e+00 4.0253818084887678e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 111 -1.0899451069882157e-01 2.7890383338936536e-01 -2.5204584010436650e+00 2.5417705056580830e+00 1.3497999999999999e-01 2 0 0 -251 0 V -129 0 0 0 0 0 0 2 0 P 568 -211 -3.4479822045339553e-01 2.8801578257251337e-01 -1.8778933266544979e+00 1.9359240778068190e+00 1.3957000000000000e-01 1 0 0 0 0 P 569 111 -4.7739393786749029e-01 8.4826907046167233e-01 -9.4047074134762951e+00 9.4559085508115253e+00 1.3497999999999999e-01 2 0 0 -252 0 V -130 0 0 0 0 0 0 2 0 P 570 211 -1.0146392264150319e+00 5.7709586525715317e-01 -7.2572446439651097e+00 7.3518441227175968e+00 1.3957000000000000e-01 1 0 0 0 0 P 571 111 4.1123239956224314e-02 1.3845664196935642e-01 -1.6856906262300306e+00 1.6972430145178741e+00 1.3497999999999999e-01 2 0 0 -253 0 V -131 0 0 0 0 0 0 2 0 P 572 -211 -2.4719131510665512e-01 3.7533207946098579e-01 -3.3887167587110185e+00 3.4212364390386081e+00 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -3.5458725657354400e+00 3.0192865722450031e+00 -4.4305060227946583e+01 4.4549364586491564e+01 1.3497999999999999e-01 2 0 0 -254 0 V -132 0 0 0 0 0 0 3 0 P 574 111 -3.9553579765962431e-02 4.6132811797115725e-01 -3.9094286650084178e+00 3.9390659051725212e+00 1.3497999999999999e-01 2 0 0 -255 0 P 575 111 -1.4022200828605086e-02 4.6580852717875432e-01 -3.2668051470350230e+00 3.3026367761537201e+00 1.3497999999999999e-01 2 0 0 -256 0 P 576 111 -3.6273630905616033e-01 1.5782213075400859e+00 -1.2883701941418890e+01 1.2985775118998561e+01 1.3497999999999999e-01 2 0 0 -257 0 V -133 0 0 0 0 0 0 2 0 P 577 211 3.8100751365880502e-02 3.3494356918345564e-01 -2.9936548703032515e+00 3.0158063812490310e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 111 -1.0429007873741831e+00 2.2630224863458022e+00 -2.4581745651098544e+01 2.4708082719663107e+01 1.3497999999999999e-01 2 0 0 -258 0 V -134 0 0 0 0 0 0 2 0 P 579 -211 -4.2929060271745229e-01 2.5422565295510141e-01 -7.9782186368012722e+00 7.9950217951988796e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -1.4604690111339875e+00 1.7946603792785125e+00 -1.9484412393192731e+01 1.9621781813021908e+01 1.3497999999999999e-01 2 0 0 -259 0 V -135 0 0 0 0 0 0 2 0 P 581 311 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 2 0 0 -260 0 P 582 211 -2.4445528601288491e-01 2.4975364963508259e-01 -2.2299522763905060e+00 2.2614823042077701e+00 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 1 0 P 583 310 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -261 0 V -137 0 0 0 0 0 0 2 0 P 584 -211 -2.9967223315772812e-01 2.0862329553960912e-01 -5.0554832516896031e+00 5.0705737170246952e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 211 1.4444543333475335e-01 1.3710801400729660e+00 -2.2881325081767912e+01 2.2923246770825354e+01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 8.7103622244021213e-07 -1.7302363505580758e-06 -7.6790479357282175e-06 8.9691461969131791e-06 0 2 0 P 586 22 -3.7330375548358934e-02 -6.4597192447063162e-02 -8.3231111894584861e-02 1.1177554382705249e-01 0 1 0 0 0 0 P 587 22 6.5256316072261553e-02 9.1247836388339276e-03 -1.6296374247390022e-01 1.7578062983411483e-01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 1 0 P 588 130 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 589 -321 1.1804077913916842e+00 2.5432481593847861e-01 -1.2468626407813948e+01 1.2536679349956099e+01 4.9359999999999998e-01 1 0 0 0 0 P 590 111 3.4581707482900445e-02 2.6935194592701807e-02 -3.3993692323832683e+00 3.4023304039546467e+00 1.3497999999999999e-01 2 0 0 -262 0 V -141 0 4.7813783231145052e-05 6.5885652825406035e-06 -3.3326257571074819e-04 3.3676814569143449e-04 0 2 0 P 591 22 5.0031277022003218e-01 1.2474131327401576e-01 -3.7798245607535468e+00 3.8148324961075692e+00 0 1 0 0 0 0 P 592 22 9.6980875871290273e-01 7.7836082030979942e-02 -6.4669380719275891e+00 6.5397152468810686e+00 0 1 0 0 0 0 V -142 0 0 0 0 0 0 3 0 P 593 211 1.4765586212938988e+00 -1.2287157083785445e+00 -1.5048198279817107e+01 1.5170949835383547e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 -211 6.3388671792337425e-01 -6.1184057820052018e-01 -6.0484572541297492e+00 6.1138757105642245e+00 1.3957000000000000e-01 1 0 0 0 0 P 595 111 3.6384909301035945e-01 -3.4839763719044642e-01 -4.3926354391854696e+00 4.4234864957488531e+00 1.3497999999999999e-01 2 0 0 -263 0 V -143 0 0 0 0 0 0 3 0 P 596 211 2.7403696569266053e-02 -5.8737576679686765e-01 -4.9964233153207394e+00 5.0328408463596936e+00 1.3957000000000000e-01 1 0 0 0 0 P 597 -211 6.3313694644344165e-01 -1.2579374520113713e+00 -1.0217288689588599e+01 1.0314830923355927e+01 1.3957000000000000e-01 1 0 0 0 0 P 598 111 4.4287802634414347e-01 -2.2827814798139006e+00 -1.5676551310879637e+01 1.5848650189648389e+01 1.3497999999999999e-01 2 0 0 -264 0 V -144 0 0 0 0 0 0 2 0 P 599 -211 -2.1889466677890226e-01 -9.7573203754683979e-02 -2.9615072609576862e+00 2.9744647328284626e+00 1.3957000000000000e-01 1 0 0 0 0 P 600 111 2.6764634782375629e-01 -1.3936096329764053e-01 -1.0851536504994650e+00 1.1343870993567216e+00 1.3497999999999999e-01 2 0 0 -265 0 V -145 0 0 0 0 0 0 2 0 P 601 211 8.6337712446234738e-01 -2.6367366432140288e-01 -8.2966721302920419e+01 8.2971749815233323e+01 1.3957000000000000e-01 1 0 0 0 0 P 602 111 8.4478402969403887e-01 -3.1565269462054341e-01 -4.1807707556468742e+01 4.1817650907338887e+01 1.3497999999999999e-01 2 0 0 -266 0 V -146 0 0 0 0 0 0 2 0 P 603 -211 8.7452626824318952e-02 3.7856557858886258e-01 -1.0165811398854835e+01 1.0174190928089452e+01 1.3957000000000000e-01 1 0 0 0 0 P 604 111 6.0872517961275285e-01 -1.1646131056861458e-01 -3.6384685675471133e+01 3.6390214081321204e+01 1.3497999999999999e-01 2 0 0 -267 0 V -147 0 0 0 0 0 0 3 0 P 605 211 2.0641916258513257e-01 1.2592649415801263e-01 -1.3498926563830947e+01 1.3501813378698953e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -2.8769692802774584e-03 -1.2157472425517003e-01 -4.9109042297012939e+00 4.9143920100789700e+00 1.3957000000000000e-01 1 0 0 0 0 P 607 111 4.3534893166397720e-01 -3.6493771491872629e-01 -2.6328356190853949e+01 2.6334829931878211e+01 1.3497999999999999e-01 2 0 0 -268 0 V -148 0 0 0 0 0 0 2 0 P 608 22 -8.2706559572206014e-03 -5.9321617721436126e-02 -8.1286488242441344e+00 8.1288694888012927e+00 0 1 0 0 0 0 P 609 22 1.5774996054796075e+00 -4.2608624103974854e-02 -8.3746058014914937e+01 8.3760924980193678e+01 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 610 211 -8.6387955802294428e-02 -4.7459259601925996e-01 -2.4954090132624273e+01 2.4959142516183125e+01 1.3957000000000000e-01 1 0 0 0 0 P 611 111 1.1395288255181901e+00 -2.6496118762522336e+00 -1.7851590397334641e+02 1.7853925383528519e+02 1.3497999999999999e-01 2 0 0 -269 0 V -150 0 0 0 0 0 0 2 0 P 612 321 7.7811070249969116e-01 2.2597030472746757e-01 -1.2516984843507953e+02 1.2517344413678464e+02 4.9359999999999998e-01 1 0 0 0 0 P 613 -211 -4.1890828255649049e-02 -1.3907730163812634e-01 -2.2030220454967942e+01 2.2031141377983822e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 614 -321 2.4875219142127142e-01 -3.9989688858790529e-01 -3.1288850806598013e+01 3.1296287654157773e+01 4.9359999999999998e-01 1 0 0 0 0 P 615 211 1.2380391085146980e-01 -4.5171729348212764e-01 -5.5385778003096625e+01 5.5387934252098397e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 616 -211 -1.7160566534893104e-01 5.1350245553554733e-02 -4.0610989314430611e+01 4.0611624176260122e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.6577598965623711e-01 -7.7092494383720001e-01 -1.0268792822802989e+02 1.0269125466908623e+02 1.3497999999999999e-01 2 0 0 -270 0 V -153 0 0 0 0 0 0 2 0 P 618 3122 2.5665947751140833e-01 -3.1011370428576662e-01 -2.1579684862941454e+02 2.1580010812056105e+02 1.1156800000000000e+00 2 0 0 -271 0 P 619 22 4.8487288333967843e-02 -1.8810934372346415e-02 -3.0021017453384418e+00 3.0025522073306337e+00 0 1 0 0 0 0 V -154 0 -7.7492381941262678e+01 -4.8501399267561105e+01 -4.4607036804293253e+04 4.4607261918887496e+04 0 2 0 P 620 -3122 -6.9235537172918693e-01 -4.1701401614409078e-01 -4.0893541102044969e+02 4.0893773167192211e+02 1.1156800000000000e+00 2 0 0 -272 0 P 621 111 -2.4861739882574477e-01 -1.7192769530285856e-01 -1.3271792259106454e+02 1.3271833545607635e+02 1.3497999999999999e-01 2 0 0 -273 0 V -155 0 0 0 0 0 0 2 0 P 622 -321 -2.3411617728133400e-02 -6.5232230856388274e-01 -1.1568864861813621e+02 1.1569154304679614e+02 4.9359999999999998e-01 1 0 0 0 0 P 623 211 2.2990212814758515e-01 -1.0616184537454590e-01 -1.2579281577871387e+02 1.2579314809101602e+02 1.3957000000000000e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 624 111 -4.3927707335301913e-01 9.8569205808876362e-02 -1.0808464474333476e+02 1.0808566662203083e+02 1.3497999999999999e-01 2 0 0 -274 0 P 625 111 -2.2207926295417768e-01 2.9408095632049314e-02 -5.3039822882697464e+01 5.3040467711582643e+01 1.3497999999999999e-01 2 0 0 -275 0 P 626 111 -6.5765051523946005e-01 -1.3263513475766395e-01 -1.9282176112538815e+02 1.9282297549663477e+02 1.3497999999999999e-01 2 0 0 -276 0 V -157 0 0 0 0 0 0 2 0 P 627 321 -1.2897257610442938e+00 1.6839958820118497e-01 -4.9003144009236280e+01 4.9022887661886635e+01 4.9359999999999998e-01 1 0 0 0 0 P 628 -211 -4.9685779056242585e-01 4.6128615237547776e-01 -1.8384803114078451e+01 1.8397829162886165e+01 1.3957000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 629 211 -4.8378664284063333e-01 -8.0413758485326461e-02 -9.9398903073761019e+01 9.9400210904907951e+01 1.3957000000000000e-01 1 0 0 0 0 P 630 111 -3.0382133837596209e-01 -4.8577218781833292e-01 -3.8713422198637055e+01 3.8717897153053585e+01 1.3497999999999999e-01 2 0 0 -277 0 V -159 0 0 0 0 0 0 2 0 P 631 -211 8.5805581558979674e-02 8.3027654605316289e-02 -1.0962875129040640e+01 1.0964413667364697e+01 1.3957000000000000e-01 1 0 0 0 0 P 632 111 2.3508016431810488e-01 -5.6477935328144557e-01 -1.5705772322460166e+02 1.5705897262651862e+02 1.3497999999999999e-01 2 0 0 -278 0 V -160 0 0 0 0 0 0 2 0 P 633 22 -1.1826159119951234e-01 -1.6186743966905534e-01 -3.6712014271588117e+01 3.6712561593401077e+01 0 1 0 0 0 0 P 634 113 -9.7987313018542840e-02 5.9280147811696236e-02 -2.1029115366305308e+02 2.1029258292998162e+02 7.6681860694569770e-01 2 0 0 -279 0 V -161 0 0 0 0 0 0 2 0 P 635 2212 -3.5302386687277360e-01 7.8037839027768764e-04 -4.5012253740932857e+02 4.5012365374512910e+02 9.3827000000000005e-01 1 0 0 0 0 P 636 211 7.1116383555410306e-02 4.7358052753954001e-02 -7.4121621085245621e+01 7.4121801734812138e+01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 0 0 0 0 0 3 0 P 637 211 -2.4548359173950322e-02 -2.0581985447976094e-02 -5.3648734582717566e+02 5.3648736493855336e+02 1.3957000000000000e-01 1 0 0 0 0 P 638 -211 6.1716837644396998e-02 1.5323336215082284e-01 -1.4280631838436983e+02 1.4280648213479046e+02 1.3957000000000000e-01 1 0 0 0 0 P 639 111 1.4321615816800487e-01 -2.1942438752060736e-01 -5.6564192842903651e+02 5.6564200522454962e+02 1.3497999999999999e-01 2 0 0 -280 0 V -163 0 0 0 0 0 0 2 0 P 640 -211 9.7855876042737558e-02 -1.6373976034273754e-01 3.3446785750497643e+00 3.3530196893084465e+00 1.3957000000000000e-01 1 0 0 0 0 P 641 111 -3.8265591769580620e-01 2.2331657723614864e-01 1.8929574380471039e+00 1.9487953478171953e+00 1.3497999999999999e-01 2 0 0 -281 0 V -164 0 2.8431227347185748e-05 -3.1409658029638097e-04 1.8469594312437588e-03 1.8746173768069280e-03 0 2 0 P 642 22 8.0474890970902282e-02 -3.9610817574688773e-01 2.6384796414490626e+00 2.6692607053848221e+00 0 1 0 0 0 0 P 643 22 -1.5291048641413833e-02 -3.2401627460672716e-01 1.5960161432386062e+00 1.6286460302523722e+00 0 1 0 0 0 0 V -165 0 4.9518262439976248e-05 3.9693163065173995e-05 3.1674847022588156e-04 3.2743744162256743e-04 0 2 0 P 644 22 -2.0840241077519799e-03 8.0365993919266188e-02 2.8112048781632437e-01 2.9238974811918661e-01 0 1 0 0 0 0 P 645 22 1.2710926083162161e-01 1.9852528783504918e-02 5.1861582199296241e-01 5.3433440644384600e-01 0 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 646 211 -5.9255362752556828e-01 -5.9212017658873661e-01 7.8082688359773718e+00 7.8543152537196139e+00 1.3957000000000000e-01 1 0 0 0 0 P 647 111 1.3041068527323001e-02 -2.3549596778567120e-02 5.9138729249002173e+00 5.9154743871683380e+00 1.3497999999999999e-01 2 0 0 -282 0 V -167 0 -1.8899636156857891e-05 1.9696489777446890e-05 4.1991135470968582e-05 5.7186094349548713e-05 0 2 0 P 648 22 -1.8243290188374818e-02 7.3279362659785088e-02 1.8431000302853914e-01 1.9918047054142049e-01 0 1 0 0 0 0 P 649 22 -7.4181671525966317e-02 2.3042455309545299e-02 2.1039404549221000e-02 8.0476901536183282e-02 0 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 650 -211 -8.0533756546595370e-01 2.7160722614549743e-01 3.7685258388601572e+00 3.8656960385811159e+00 1.3957000000000000e-01 1 0 0 0 0 P 651 111 -3.0142247926803184e-01 -4.3379255585563814e-01 2.2704014594553108e+00 2.3349462263659646e+00 1.3497999999999999e-01 2 0 0 -283 0 V -169 0 -7.6711134932358558e-05 -3.8263683323609167e-04 2.5421067451362371e-03 2.5720293279743512e-03 0 2 0 P 652 22 -2.4796545140232665e-02 -1.1981409363355952e-01 6.0650430944957090e-01 6.1872268672243125e-01 0 1 0 0 0 0 P 653 22 -3.5775473147815867e-01 -1.7883601129501008e+00 1.2070744977887900e+01 1.2207747730957248e+01 0 1 0 0 0 0 V -170 0 0 0 0 0 0 3 0 P 654 211 -3.1317702558067601e-01 2.4649858180520168e-01 1.0350445771567724e+01 1.0359056368957923e+01 1.3957000000000000e-01 1 0 0 0 0 P 655 -211 1.4953891873198336e-01 1.9344874000060928e-02 1.0106431063785744e+01 1.0108519414054614e+01 1.3957000000000000e-01 1 0 0 0 0 P 656 111 -1.0767272719634909e-01 -4.5541563002438383e-02 2.7061516811986510e+00 2.7120368677798039e+00 1.3497999999999999e-01 2 0 0 -284 0 V -171 0 0 0 0 0 0 2 0 P 657 -211 1.4541589324493778e-01 1.4556811293786326e-01 5.6458157753451461e+00 5.6512875888197929e+00 1.3957000000000000e-01 1 0 0 0 0 P 658 211 7.4899253842515445e-02 -2.7060869386465009e-01 6.7041552542861025e+00 6.7114839210038530e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 659 -211 1.7028538573734212e-01 -7.3687049697008650e-02 1.4660710025635930e+00 1.4843418957054952e+00 1.3957000000000000e-01 1 0 0 0 0 P 660 111 -3.0616523875700569e-01 5.9880161670113530e-01 1.3235086424389289e+01 1.3252849987494791e+01 1.3497999999999999e-01 2 0 0 -285 0 V -173 0 0 0 0 0 0 2 0 P 661 -311 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 2 0 0 -286 0 P 662 111 -5.5261957942046398e-03 3.9843570042760463e-04 3.6538160709534502e+01 3.6538410451657057e+01 1.3497999999999999e-01 2 0 0 -287 0 V -174 0 0 0 0 0 0 2 0 P 663 311 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -288 0 P 664 111 -6.2777541923746638e-01 1.9448482545552981e-02 3.2186440271673021e+01 3.2192850715381624e+01 1.3497999999999999e-01 2 0 0 -289 0 V -175 0 0 0 0 0 0 2 0 P 665 -321 -6.4351916287137684e-02 -3.5002433531645633e-01 1.5786338280768058e+02 1.5786455565024323e+02 4.9359999999999998e-01 1 0 0 0 0 P 666 211 2.7134098338430873e-01 2.5570369686896743e-01 5.8944985485377110e+01 5.8946329860018210e+01 1.3957000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 667 -211 -4.5421763141989729e-01 6.2425330852400984e-01 5.1503199604186612e+01 5.1509174475072726e+01 1.3957000000000000e-01 1 0 0 0 0 P 668 111 -4.5640839231592317e-02 7.9124553132245534e-02 4.0201133532702542e+01 4.0201463912346462e+01 1.3497999999999999e-01 2 0 0 -290 0 V -177 0 0 0 0 0 0 3 0 P 669 -211 1.0370774191255924e-01 -3.1397961181753531e-01 8.8675221091625804e+00 8.8747826245918198e+00 1.3957000000000000e-01 1 0 0 0 0 P 670 211 -3.4119362058425258e-02 -1.5865509427344407e-01 2.7056259978793161e+01 2.7057106633835605e+01 1.3957000000000000e-01 1 0 0 0 0 P 671 111 9.5737143924794599e-02 -1.7630667385799484e-01 1.5386890389690647e+01 1.5388790241884777e+01 1.3497999999999999e-01 2 0 0 -291 0 V -178 0 0 0 0 0 0 2 0 P 672 22 -3.5658524969334016e-01 -3.5750914631672842e-01 3.7303429147365428e+01 3.7306846449177542e+01 0 1 0 0 0 0 P 673 111 -1.4404126623124075e-01 3.3092504281562679e-01 6.0468680992970157e+01 6.0469908714172291e+01 1.3497999999999999e-01 2 0 0 -292 0 V -179 0 0 0 0 0 0 3 0 P 674 211 -6.4088371711647524e-02 -1.6853907306660940e-01 1.3645855447586628e+01 1.3647760381098008e+01 1.3957000000000000e-01 1 0 0 0 0 P 675 -211 1.0120490930013099e-01 -1.7321198751651401e-01 6.1470833901023184e+01 6.1471319695434936e+01 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -2.5654517994311077e-01 -3.9069583680739609e-02 2.9361462051397748e+01 2.9362919052059368e+01 1.3497999999999999e-01 2 0 0 -293 0 V -180 0 2.7874310402828541e-06 7.2190797405105633e-06 7.1285518893231389e-04 7.1293523991798461e-04 0 2 0 P 677 22 -2.0472067600532211e-02 1.1710557708470458e-01 9.2661389801761018e+00 9.2669015545475180e+00 0 1 0 0 0 0 P 678 22 7.1554256807597943e-02 1.5190573699436449e-02 3.7975756416514295e+00 3.7982800738309006e+00 0 1 0 0 0 0 V -181 0 6.8699890293909516e-06 6.7107052061940235e-06 3.4279486783242566e-02 3.4279490601586637e-02 0 2 0 P 679 22 4.7209951929092032e-02 1.0543355578252174e-01 3.0210765287072019e+02 3.0210767495724076e+02 0 1 0 0 0 0 P 680 22 2.4005578294380023e-02 -3.5869190048026550e-02 5.3239614295665028e+01 5.3239631790779363e+01 0 1 0 0 0 0 V -182 0 2.2064386563502137e-04 -2.5306124259287359e-04 -1.3541036264325438e-03 1.3952580004988353e-03 0 2 0 P 681 22 7.5279082376440476e-01 -8.0679834100198666e-01 -4.6814294843943811e+00 4.8097192854411448e+00 0 1 0 0 0 0 P 682 22 6.9264037654619304e-01 -8.5099810205965243e-01 -4.1892618646093469e+00 4.3305731065531452e+00 0 1 0 0 0 0 V -183 0 1.8858877061785453e-05 -6.7115273977681676e-06 -1.1940598237464134e-04 1.2108143212847695e-04 0 2 0 P 683 22 1.3501778070345933e+00 -4.9390965344496285e-01 -8.8793476233960753e+00 8.9949842175228074e+00 0 1 0 0 0 0 P 684 22 3.5724615226029388e-01 -1.1373112203016625e-01 -1.9312979161906665e+00 1.9673513215756446e+00 0 1 0 0 0 0 V -184 0 -3.0922713758710697e-06 -1.6589517211335248e-06 -8.6557639952703560e-05 8.6998375960077397e-05 0 2 0 P 685 22 -1.2378422738514841e-04 -2.0255687437457568e-02 -1.2720232401748697e+00 1.2721845116731587e+00 0 1 0 0 0 0 P 686 22 -5.1978110905350462e-02 -7.6961053059662540e-03 -1.8639244576487590e-01 1.9365716585859055e-01 0 1 0 0 0 0 V -185 0 2.4651623082129744e-05 -5.6707935837792154e-06 -2.1251757288745076e-04 2.2359079391547974e-04 0 2 0 P 687 22 6.0640802277366547e-02 4.6535683630569633e-02 -3.2839784071453820e-01 3.3717653912717349e-01 0 1 0 0 0 0 P 688 22 -9.2309824191483363e-03 -5.8361861388681067e-02 -1.1479772910453874e-01 1.2911172103544014e-01 0 1 0 0 0 0 V -186 0 -1.4832730474643106e-05 2.9422192369530004e-06 -5.4954216591198518e-05 6.0118634666164664e-05 0 2 0 P 689 22 -1.2640580876616897e-01 4.7177821781676815e-02 -3.3746011804611964e-01 3.6343294653841440e-01 0 1 0 0 0 0 P 690 22 2.1698527333679749e-02 -2.6408093766570138e-02 -5.0472948785598819e-02 6.0956804902718556e-02 0 1 0 0 0 0 V -187 0 9.7712690300578037e-07 -4.0981640044293525e-05 -1.5586716280811184e-04 1.6179373662674135e-04 0 2 0 P 691 22 7.9394382566176040e-03 -2.9018871046713950e-02 -3.1018489693273164e-02 4.3211992079839966e-02 0 1 0 0 0 0 P 692 22 1.3361038159218500e-03 -3.6000626505709010e-01 -1.4485768647142860e+00 1.4926423647475755e+00 0 1 0 0 0 0 V -188 0 1.9176385299722858e-04 8.8824797196092515e-04 -2.6837460223185948e-03 2.8337582456032834e-03 0 2 0 P 693 22 5.0314286580798862e-01 2.4241644791864827e+00 -7.1865354125248873e+00 7.6010537033385850e+00 0 1 0 0 0 0 P 694 22 8.5250742727512957e-02 3.0126798020398959e-01 -1.0480665825010369e+00 1.0938343779508795e+00 0 1 0 0 0 0 V -189 0 0 0 0 0 0 1 0 P 695 130 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 1 0 0 0 0 V -190 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 4 0 P 696 -211 2.0725484551154222e-01 1.1124373119939290e+00 -3.5934346215628152e+00 3.7699765925600368e+00 1.3957000000000000e-01 1 0 0 0 0 P 697 -211 3.1337716993121384e-01 1.0537898241530332e+00 -3.0351918280270906e+00 3.2311836007792887e+00 1.3957000000000000e-01 1 0 0 0 0 P 698 -3112 3.1991115434626538e+00 1.3444156387045226e+01 -4.2430664477738212e+01 4.4640506339006059e+01 1.1974400000000001e+00 2 0 0 -294 0 P 699 323 2.4735310675572069e+00 1.0812323694586169e+01 -3.4993056160096224e+01 3.6717914387383253e+01 8.1642998283846813e-01 2 0 0 -295 0 V -191 0 0 0 0 0 0 2 0 P 700 22 1.8983806908161149e-02 1.7362657703381851e-01 7.3873501760517088e-02 1.8964141804882165e-01 0 1 0 0 0 0 P 701 22 -1.3704905665261415e+00 1.0199075479696598e+00 9.7094950782817302e-01 1.9649933196055396e+00 0 1 0 0 0 0 V -192 0 -4.6997728532604423e-06 4.5124683058843886e-05 7.7575765897137122e-05 9.0365805440288039e-05 0 2 0 P 702 22 1.3324926704386489e-02 3.4288906286411369e-01 6.7035004936878473e-01 7.5307347038136963e-01 0 1 0 0 0 0 P 703 22 -8.0322698813220392e-02 3.0038739462731900e-01 4.3553392567034310e-01 5.3513934933384222e-01 0 1 0 0 0 0 V -193 0 -9.7600780826877997e+00 1.5361365577876793e+00 8.4454766310167997e+01 8.5246695089912620e+01 0 2 0 P 704 -211 -7.9285124718928887e-02 -8.9100832825820486e-02 1.5225500634850293e+00 1.5335786807758569e+00 1.3957000000000000e-01 1 0 0 0 0 P 705 211 -7.2171465914144683e-01 2.1517001386551807e-01 5.4085675963640245e+00 5.4625317768801551e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 1.2716116432762454e-06 -6.3814690442655613e-05 5.0162287104313008e-03 5.0170010813853404e-03 0 2 0 P 706 22 -5.3124113350063948e-04 2.0691351623261963e-02 3.1445633804797661e+00 3.1446314995724811e+00 0 1 0 0 0 0 P 707 22 3.3624312979863087e-03 -1.6277209214357746e-01 8.0238601416525359e+00 8.0255116742002990e+00 0 1 0 0 0 0 V -195 0 5.6424540710598678e-05 -2.8677941706789788e-04 3.2815180137927033e-03 3.2947076489035468e-03 0 2 0 P 708 22 2.2129278247067530e-01 -8.4449592202847690e-01 9.6857270744122257e+00 9.7249911474457598e+00 0 1 0 0 0 0 P 709 22 -1.1014366713732959e-02 -2.2425042013553978e-01 2.5435689114846194e+00 2.5534589040507631e+00 0 1 0 0 0 0 V -196 0 -1.2570459193487190e-07 -1.5498444312552478e-06 4.0003245939914675e-06 5.4008957487570616e-06 0 2 0 P 710 22 -2.5331579215445051e-02 -9.9973730546892750e-02 1.4086450724835456e-01 1.7458306076860042e-01 0 1 0 0 0 0 P 711 22 2.0156329497947201e-02 3.6166738045179184e-02 2.3828591120559357e-02 4.7771459203683843e-02 0 1 0 0 0 0 V -197 0 9.4412890987401761e-06 5.5321536087690306e-05 5.0391412239911271e-04 5.0787915290754126e-04 0 2 0 P 712 22 5.7975534397695254e-02 2.0617575857106443e-01 1.3467179724438043e+00 1.3636417796893010e+00 0 1 0 0 0 0 P 713 22 -1.4574356259446879e-02 4.8134835831109918e-02 9.6975241246807509e-01 9.7105567078747701e-01 0 1 0 0 0 0 V -198 0 3.4005524300272399e-06 5.5124661814798012e-06 8.6203031103025443e-05 8.6698180947031910e-05 0 2 0 P 714 22 9.9388352207220837e-02 1.2139537353315158e-01 1.5288395993128989e+00 1.5368687002138293e+00 0 1 0 0 0 0 P 715 22 -2.9922363845104029e-02 -8.7875195186287360e-03 2.3210332940235986e-01 2.3418907719411133e-01 0 1 0 0 0 0 V -199 0 -3.1751718579696859e-05 1.4384531578524084e-04 5.5009496005256153e-04 5.7051883808736752e-04 0 2 0 P 716 22 -8.4245225274086843e-02 1.1851795814052958e-01 5.6722523277629699e-01 5.8556658808491291e-01 0 1 0 0 0 0 P 717 22 -4.0119016535579248e-02 4.4489134490558802e-01 1.5873712958664217e+00 1.6490256138703019e+00 0 1 0 0 0 0 V -200 0 -2.1860320961568040e-05 3.4233223209356850e-05 3.2363351406028681e-02 3.2363385742285575e-02 0 2 0 P 718 22 -4.5483352791465939e-02 9.3532564159593795e-02 1.3004722086957409e+02 1.3004726245859899e+02 0 1 0 0 0 0 P 719 22 -7.7817880505842402e-02 9.9556944858894450e-02 5.2495439369174754e+01 5.2495591450811361e+01 0 1 0 0 0 0 V -201 0 2.2199023141811921e-05 -5.3039731245512057e-05 4.4742652750651611e-02 4.4742696926206353e-02 0 2 0 P 720 22 6.6205091243347419e-02 -2.6727801909111137e-01 2.1146345735761838e+02 2.1146363663356138e+02 0 1 0 0 0 0 P 721 22 5.1591468473985748e-02 -1.4171206360855906e-02 2.5958276607196254e+01 2.5958331743746964e+01 0 1 0 0 0 0 V -202 0 1.2999308436397550e+02 2.5108727436240727e+01 1.4229354800096778e+04 1.4230076817044011e+04 0 2 0 P 722 -211 2.6685586729241118e-01 -8.1108204032047090e-02 4.0488586354586793e+01 4.0489787544174661e+01 1.3957000000000000e-01 1 0 0 0 0 P 723 211 9.1045510119082751e-01 3.0851091826085342e-01 8.8382696010616314e+01 8.8388033926362922e+01 1.3957000000000000e-01 1 0 0 0 0 V -203 0 2.7363225273066167e+01 -2.1373490947568285e+01 1.0415390354526505e+03 1.0421995956974124e+03 0 2 0 P 724 -211 7.2489758038794805e-01 -3.7887502919494193e-01 1.9820686504652318e+01 1.9838047184398125e+01 1.3957000000000000e-01 1 0 0 0 0 P 725 211 3.1690428588277286e-01 -4.3487929017670479e-01 1.9833897342831033e+01 1.9841686216506282e+01 1.3957000000000000e-01 1 0 0 0 0 V -204 0 -3.7161138508547294e-06 -1.0797274676986123e-05 5.5601183299288683e-04 5.5615317425263119e-04 0 2 0 P 726 22 -1.0203530149602461e-01 -2.6159332671702568e-01 1.4267316207454684e+01 1.4270078977876521e+01 0 1 0 0 0 0 P 727 22 5.1501261875322099e-03 -1.9909310693595528e-02 2.2882305930157293e-01 2.2974528704670483e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 728 22 1.3398938831493382e-01 -2.8168125127713017e-01 6.4585134479593540e+00 6.4660415588653537e+00 0 1 0 0 0 0 P 729 -11 2.8592288824210077e-01 -7.2276444124703509e-01 3.2320127085609279e+01 3.2329471932365159e+01 5.1000000000000004e-04 1 0 0 0 0 P 730 11 4.5889587728233433e-01 -1.0410527579863120e+00 4.6859438540833928e+01 4.6873247774113004e+01 5.1000000000000004e-04 1 0 0 0 0 V -206 0 -4.1784848742943209e-06 -4.0948177251253058e-05 1.6365147697675645e-03 1.6372210840774910e-03 0 2 0 P 731 22 -2.4716554148417149e-03 1.8669719255098305e-02 5.2483838463482613e-01 5.2517615852554422e-01 0 1 0 0 0 0 P 732 22 -2.0214880542658818e-02 -2.4099248062719644e-01 8.3604040623855642e+00 8.3639011294650789e+00 0 1 0 0 0 0 V -207 0 -6.6357726067545197e-04 -8.0312941323564240e-04 3.2528107603266763e-02 3.2544841843021095e-02 0 2 0 P 733 22 -1.6978077908428943e-01 -2.2914579108914412e-01 7.6881637487780461e+00 7.6934514448682423e+00 0 1 0 0 0 0 P 734 22 -1.3241464960419060e+00 -1.5789585653915703e+00 6.5543138823729876e+01 6.5575525319748152e+01 0 1 0 0 0 0 V -208 0 -1.9185409250505920e+01 -1.1908548988451217e+01 5.5576966908853410e+02 5.5663194824553909e+02 0 2 0 P 735 211 -3.1372636994174885e-01 4.4975243109516228e-02 6.7182563856611566e+00 6.7271759049445476e+00 1.3957000000000000e-01 1 0 0 0 0 P 736 -211 -1.3671763452495014e-01 -3.2456972158562020e-01 6.3303636378481105e+00 6.3416891115892637e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 -1.4539267113275475e-04 -5.4716777529803165e-05 2.2253265940689157e-03 2.2313261033700717e-03 0 2 0 P 737 22 -3.8468416547776196e-01 -1.4929627784085295e-01 5.3644270119134116e+00 5.3802740127146613e+00 0 1 0 0 0 0 P 738 22 1.5715391531603848e-04 4.5841765916009442e-03 5.2100158844869027e-01 5.2102177933214522e-01 0 1 0 0 0 0 V -210 0 -2.8363000894961221e-06 -5.4039140357384783e-06 9.9244074737718947e-04 9.9376460557048423e-04 0 2 0 P 739 22 -4.3026960238468220e-02 4.7754327164595239e-02 1.3072049332033679e+00 1.3087843720267780e+00 0 1 0 0 0 0 P 740 22 3.5507498842641323e-02 -6.2080922269460000e-02 1.3239058985401544e+00 1.3258362084259505e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 741 130 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 1 0 0 0 0 V -212 0 -8.8538078053875373e-05 1.5026095136142807e-05 6.4146389517578928e-04 6.4777119277904729e-04 0 2 0 P 742 22 -7.7983274945426995e-01 1.9647554485541990e-01 5.8880896098635800e+00 5.9427553382779514e+00 0 1 0 0 0 0 P 743 22 -6.8222286686259725e-01 5.1654833259870067e-02 4.7045944783947178e+00 4.7540830312491806e+00 0 1 0 0 0 0 V -213 0 -6.3534965157973911e-02 8.6485374397461928e-02 6.9236259580253534e-01 7.0234914930299941e-01 0 2 0 P 744 111 -1.6505271178654668e-01 2.4278520744795476e-01 1.0958430706822513e+00 1.1424879389236215e+00 1.3497999999999999e-01 2 0 0 -296 0 P 745 111 -4.7877543116970306e-01 6.3360966980973132e-01 5.9201759544256864e+00 5.9747292875015034e+00 1.3497999999999999e-01 2 0 0 -297 0 V -214 0 0 0 0 0 0 3 0 P 746 111 -9.8576060081403155e-02 -3.4742542340549541e-02 6.5130757674160544e-01 6.7330932251861741e-01 1.3497999999999999e-01 2 0 0 -298 0 P 747 111 -7.8036095414182050e-03 5.8506008690904859e-02 1.2294543013758501e+00 1.2382492999983463e+00 1.3497999999999999e-01 2 0 0 -299 0 P 748 111 -8.8432784981368667e-02 1.7911957907012327e-01 2.6245503790561009e+00 2.6356002112743395e+00 1.3497999999999999e-01 2 0 0 -300 0 V -215 0 1.2483117079168445e-04 1.0027314836518818e-04 1.5020022083302700e-03 1.5111261978453612e-03 0 2 0 P 749 22 7.9080599247424721e-02 1.1552153501489100e-01 1.7374338802173952e+00 1.7430649598786627e+00 0 1 0 0 0 0 P 750 22 3.1222050695436765e-01 1.9879894783239740e-01 2.9708062324862601e+00 2.9937755990724022e+00 0 1 0 0 0 0 V -216 0 1.2803321640575294e-04 9.1321015503690144e-05 8.0886304851986559e-04 8.2597023571746430e-04 0 2 0 P 751 22 1.7736451536358298e-02 -9.7427532151740594e-04 3.2879122276151196e-01 3.2927070791449675e-01 0 1 0 0 0 0 P 752 22 2.8609332000911708e-01 2.1768400156830933e-01 1.5906846924926556e+00 1.6308014910537347e+00 0 1 0 0 0 0 V -217 0 6.2931424959365278e-04 3.0047531022833670e-04 2.9604963189529009e-03 3.0428248419687057e-03 0 2 0 P 753 22 5.8170899209270899e-01 2.3538083525002693e-01 2.4177051293440934e+00 2.4978165628286746e+00 0 1 0 0 0 0 P 754 22 3.7262331905745372e-01 2.2027911117407961e-01 2.0717805227639920e+00 2.1165173184335808e+00 0 1 0 0 0 0 V -218 0 0 0 0 0 0 3 0 P 755 22 2.7296384981771588e-01 4.1193242995714828e-02 1.5089012072781871e+00 1.5339455661467860e+00 0 1 0 0 0 0 P 756 -211 1.4881621464025929e-01 -2.0539802718801009e-01 1.2405600104643622e+00 1.2738930644979274e+00 1.3957000000000000e-01 1 0 0 0 0 P 757 211 3.2312072474001546e-01 1.2181065764232569e-02 2.4791994335439189e+00 2.5040896544061981e+00 1.3957000000000000e-01 1 0 0 0 0 V -219 0 -2.4671788581451044e-06 6.4065414239974683e-05 1.3798454148966445e-04 1.5237149485754223e-04 0 2 0 P 758 22 -3.0908596580837319e-02 3.0216712382390964e-01 7.9697772075333473e-01 8.5289729712304263e-01 0 1 0 0 0 0 P 759 22 -9.8144108820454826e-03 7.5529019573525691e-01 1.4805813197252715e+00 1.6621313566485028e+00 0 1 0 0 0 0 V -220 0 4.0567384792548925e-06 3.4942781932908585e-05 9.7011329031475023e-05 1.0324495728616244e-04 0 2 0 P 760 22 1.8068605299296200e-01 1.0776192675902039e+00 2.9492644755356836e+00 3.1451663997767412e+00 0 1 0 0 0 0 P 761 22 -1.4586120029730540e-02 3.5308516807530621e-01 1.0227872924554335e+00 1.0821163229619100e+00 0 1 0 0 0 0 V -221 0 2.0675182460147988e-05 6.3457211929768438e-05 1.0272057962666369e-04 1.2263781362242262e-04 0 2 0 P 762 22 5.9120950754609006e-02 9.1366976056781901e-02 2.0661266069486495e-01 2.3352088277347030e-01 0 1 0 0 0 0 P 763 22 4.1784130995900476e-01 1.3725473240440851e+00 2.1630805681307250e+00 2.5956492562119360e+00 0 1 0 0 0 0 V -222 0 1.5377275143954877e-06 9.6507638240328226e-06 4.8533474374632963e-06 1.1100377598591108e-05 0 2 0 P 764 22 7.7472181555053917e-03 2.5065186328143901e-01 1.8907486681031971e-01 3.1406318029171515e-01 0 1 0 0 0 0 P 765 22 9.3999657982991286e-02 3.8791060129914118e-01 1.3205676148781625e-01 4.2041593518304071e-01 0 1 0 0 0 0 V -223 0 5.4954268885320472e-05 1.8159203576425541e-04 1.7496045487644607e-04 2.5874819032116849e-04 0 2 0 P 766 22 2.2627081669604437e-01 8.2327951744218397e-01 7.0174352480374225e-01 1.1051839760565256e+00 0 1 0 0 0 0 P 767 22 1.7376735730201609e-01 4.9861499363424333e-01 5.7187656532431863e-01 7.7836675950848699e-01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 768 130 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 1 0 0 0 0 V -225 0 -1.8082820781383619e-04 7.7006017492616700e-07 -6.3372791706959298e-05 2.0373786720105999e-04 0 2 0 P 769 22 -2.1264881636648886e-02 3.5330874902066163e-02 -3.0983967508055987e-02 5.1579764975292451e-02 0 1 0 0 0 0 P 770 22 -3.3127307314119059e-01 -3.3829585681726032e-02 -9.2565973328243095e-02 3.4562226385753986e-01 0 1 0 0 0 0 V -226 0 -1.2297308265662378e-06 9.4699758739430153e-06 1.6518912502826024e-06 1.0564735430515539e-05 0 2 0 P 771 22 -7.7408455670575693e-02 1.9416267633283169e-01 -5.3166459872710410e-03 2.0909203862076006e-01 0 1 0 0 0 0 P 772 22 3.7945605142379144e-02 1.0973492007251560e-01 5.8326895133226531e-02 1.2993709373702780e-01 0 1 0 0 0 0 V -227 0 -2.3608690580570848e-04 2.4840155444158006e-05 2.3489257883266889e-04 3.3463000834060537e-04 0 2 0 P 773 22 -2.5052439834052270e-01 3.2445645815808749e-02 1.8343834876288742e-01 3.1219356478495913e-01 0 1 0 0 0 0 P 774 22 -1.2539450945612740e+00 1.2584884297481261e-01 1.3134202667403698e+00 1.8202442222231403e+00 0 1 0 0 0 0 V -228 0 -2.6089566168031577e-04 -3.7706303822482873e-05 6.3689652421221289e-05 2.7700979566584223e-04 0 2 0 P 775 22 -1.4059160255266409e-01 3.4741577955301153e-02 2.1745791104954771e-02 1.4644403496875816e-01 0 1 0 0 0 0 P 776 22 -4.8293990691789540e-01 -1.2485832572934877e-01 1.3047025133932491e-01 5.1559969131327865e-01 0 1 0 0 0 0 V -229 0 -2.6501319287119539e-05 2.5691032884143488e-06 7.3250833332978362e-06 2.9366429990093739e-05 0 2 0 P 777 22 -3.0331334702049934e-01 -2.0932356712419369e-02 9.5306405529795538e-02 3.1862275652144439e-01 0 1 0 0 0 0 P 778 22 -5.4741507803314937e-02 5.5643077903106422e-02 3.6615598405568602e-03 7.8142125742633448e-02 0 1 0 0 0 0 V -230 0 -2.8564513768493680e-05 1.6266382842630464e-05 -3.6679709315757982e-06 4.6405721053801357e-05 0 2 0 P 779 22 -2.6786843097393261e-02 -3.7865117055441037e-02 -2.4592819968008901e-02 5.2498655665888391e-02 0 1 0 0 0 0 P 780 22 -9.1665504546179458e-02 1.0531913538723349e-01 9.3823468804970205e-03 1.3993824865063176e-01 0 1 0 0 0 0 V -231 0 -5.4623174923645008e-05 -3.7595214407808302e-05 5.7565815702264965e-05 1.0130316710327741e-04 0 2 0 P 781 22 -7.1958126703669398e-02 2.5472642242451462e-02 6.0038356493111136e-02 9.7115558752998862e-02 0 1 0 0 0 0 P 782 22 -7.4009191419286108e-02 -1.2593682487255700e-01 9.3792462483736821e-02 1.7359282903472953e-01 0 1 0 0 0 0 V -232 0 6.6156749195451250e-05 -2.5745777843756999e-04 9.2375284759031441e-05 2.9670105836229993e-04 0 2 0 P 783 22 4.0549566629202595e-02 -1.4443016568080131e-02 2.9336346243940083e-02 5.2091163284633139e-02 0 1 0 0 0 0 P 784 22 5.4442788479662593e-02 -3.5523235310021578e-01 1.0330236348449674e-01 3.7393237384324013e-01 0 1 0 0 0 0 V -233 0 1.0181494648366103e-04 -3.0191179619094551e-04 1.4538110444009777e-04 3.5423935238176570e-04 0 3 0 P 785 22 1.1764545742433479e-03 -1.1680143638895212e-01 2.1305382893816848e-02 1.1873448921075895e-01 0 1 0 0 0 0 P 786 -11 1.8768868087602619e-01 -4.6968018883035584e-01 2.4818429153344063e-01 5.6340236365554708e-01 5.1000000000000004e-04 1 0 0 0 0 P 787 11 6.9343135541447359e-02 -1.7918319688004694e-01 9.9204755111807819e-02 2.1623351273025873e-01 5.1000000000000004e-04 1 0 0 0 0 V -234 0 0 0 0 0 0 1 0 P 788 310 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -301 0 V -235 0 1.1400149726289859e-04 -2.4931078123903997e-04 2.0209328590582162e-04 3.4244307694182959e-04 0 2 0 P 789 22 1.6471041977504419e-01 -2.5778262260651164e-01 1.7103424549907614e-01 3.5047698360063639e-01 0 1 0 0 0 0 P 790 22 2.6651541022860692e-01 -6.8526857540308006e-01 5.9341049466018381e-01 9.4485951310082783e-01 0 1 0 0 0 0 V -236 0 0 0 0 0 0 1 0 P 791 310 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -302 0 V -237 0 9.6400603553581464e-06 -3.7400595582401066e-05 1.4368233958943263e-05 4.4880339273613988e-05 0 2 0 P 792 22 9.9977700365546998e-02 -2.7020529430595508e-01 8.0295871654573484e-02 2.9908839604056625e-01 0 1 0 0 0 0 P 793 22 -2.6785959324070546e-02 -1.3757109014743554e-02 2.8794322844240220e-02 4.1663637544177935e-02 0 1 0 0 0 0 V -238 0 4.9214316492429608e-05 5.3204795884247146e-05 1.4791678547409143e-05 7.6946287218869109e-05 0 2 0 P 794 22 2.4581610879340962e-01 2.8121587286393135e-01 1.2824843499334984e-01 3.9491212639168188e-01 0 1 0 0 0 0 P 795 22 6.7635806786929029e-02 5.7651887100662380e-02 -3.4038450871205155e-02 9.5168054428457063e-02 0 1 0 0 0 0 V -239 0 0 0 0 0 0 1 0 P 796 310 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -303 0 V -240 0 1.1279258363679956e-05 4.2710296008058427e-06 -1.7918255349085802e-05 2.2014896582157827e-05 0 2 0 P 797 22 1.7312205521361410e-01 5.7123939550538558e-02 -1.5682251056273419e-01 2.4047388691988597e-01 0 1 0 0 0 0 P 798 22 1.8445515149868780e-01 7.8277058032731717e-02 -4.1122544882397422e-01 4.5744657665036964e-01 0 1 0 0 0 0 V -241 0 6.5399807658158475e-04 -4.7660909295107020e-04 -4.0899405822526817e-04 9.1272852559190693e-04 0 2 0 P 799 22 2.5469071716046998e-01 -1.1258865883322625e-01 -1.3219763816046462e-01 3.0825279080777884e-01 0 1 0 0 0 0 P 800 22 5.8978134519063674e-01 -5.0283067965082473e-01 -3.9591409214330936e-01 8.7030379517192058e-01 0 1 0 0 0 0 V -242 0 3.1857498697690236e-05 -1.2310249855162448e-04 3.6412771476850070e-07 1.3049511321972345e-04 0 2 0 P 801 22 9.9050131199567043e-02 -2.2979514999698891e-01 5.5326538858207985e-02 2.5627673588294908e-01 0 1 0 0 0 0 P 802 22 4.7607085467584936e-02 -3.3691192181911422e-01 -5.3650262962662211e-02 3.4446252098962760e-01 0 1 0 0 0 0 V -243 0 0 0 0 0 0 1 0 P 803 130 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 1 0 0 0 0 V -244 0 0 0 0 0 0 1 0 P 804 310 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -304 0 V -245 0 6.4965936568868685e-06 -3.3199718602483327e-06 -1.1519419767570312e-06 7.7208014427745386e-06 0 2 0 P 805 22 9.7374705017344854e-02 -2.1443819351663635e-02 -6.8644774646092407e-02 1.2105278043818127e-01 0 1 0 0 0 0 P 806 22 2.9261892074100104e-01 -1.7785567998232629e-01 -5.0685340786055071e-04 3.4243062447447803e-01 0 1 0 0 0 0 V -246 0 -2.2469514871277152e-04 -2.8128540886888134e-05 -2.1783126525091215e-04 3.2416015452797986e-04 0 2 0 P 807 22 7.5040267329632955e-03 -4.9708818776737530e-03 -3.2283997862810970e-02 3.3515318913249173e-02 0 1 0 0 0 0 P 808 22 -3.8810395308761791e-01 -4.2674653201050482e-02 -3.3668953800207813e-01 5.1556342910268438e-01 0 1 0 0 0 0 V -247 0 4.4830817241213456e-06 9.0328445827070299e-07 7.0265957922959573e-06 1.5045518236167562e-05 0 2 0 P 809 22 6.7417540520481947e-02 4.7308195042312748e-02 8.6223522757306686e-02 1.1923793844524530e-01 0 1 0 0 0 0 P 810 22 -1.8981171356804521e-02 -3.7548877195126451e-02 -1.0306372746775861e-02 4.3317714204313074e-02 0 1 0 0 0 0 V -248 0 0 0 0 0 0 1 0 P 811 310 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -305 0 V -249 0 -3.4082685073129327e-04 2.6865934684020671e-04 -2.1215723576991949e-03 2.1662588163728230e-03 0 2 0 P 812 22 -2.4417377576979460e-01 2.5875852985578829e-01 -1.9194596956287622e+00 1.9521532554310552e+00 0 1 0 0 0 0 P 813 22 -5.6067653667102391e-01 3.7567082563816023e-01 -3.0905568899078801e+00 3.1633887901688817e+00 0 1 0 0 0 0 V -250 0 -3.5066053650164268e-04 1.4447471069879404e-04 -1.8955267129949741e-03 1.9340296762540333e-03 0 2 0 P 814 22 -4.6809727571721355e-01 2.0409707477442379e-01 -2.8705134147554303e+00 2.9155819212905398e+00 0 1 0 0 0 0 P 815 22 -3.1929542059090027e-01 1.2031448616244612e-01 -1.3858078250376222e+00 1.4271960163643809e+00 0 1 0 0 0 0 V -251 0 -3.0610493066481829e-05 7.8328567222722323e-05 -7.0785651419358266e-04 7.1384189846980962e-04 0 2 0 P 816 22 -5.1128943322413717e-02 6.1370396501252297e-02 -3.1959967490815711e-01 3.2943048828757066e-01 0 1 0 0 0 0 P 817 22 -5.7865567376407863e-02 2.1753343688811308e-01 -2.2008587261355079e+00 2.2123400173705123e+00 0 1 0 0 0 0 V -252 0 -3.1595202136812678e-05 5.6140706074658872e-05 -6.2242858192481298e-04 6.2581720954536378e-04 0 2 0 P 818 22 -1.5560660365060733e-01 3.1238322669717611e-01 -3.9926092799943222e+00 4.0078330252292442e+00 0 1 0 0 0 0 P 819 22 -3.2178733421688299e-01 5.3588584376449622e-01 -5.4120981334819724e+00 5.4480755255822810e+00 0 1 0 0 0 0 V -253 0 8.2670086277064431e-06 2.7833951190187880e-05 -3.3887453823001315e-04 3.4119691588673190e-04 0 2 0 P 820 22 -9.1812336919902763e-03 1.4428471142650589e-02 -9.0507229751793461e-01 9.0523385904749176e-01 0 1 0 0 0 0 P 821 22 5.0304473648214588e-02 1.2402817082670582e-01 -7.8061832871209613e-01 7.9200915547038275e-01 0 1 0 0 0 0 V -254 0 -2.9932024793535637e-03 2.5486917215391401e-03 -3.7399543740989902e-02 3.7605770106477469e-02 0 2 0 P 822 22 -2.8581195043282608e+00 2.4839794409922482e+00 -3.6355592283186461e+01 3.6552265199650492e+01 0 1 0 0 0 0 P 823 22 -6.8775306140717929e-01 5.3530713125275498e-01 -7.9494679447601255e+00 7.9970993868410662e+00 0 1 0 0 0 0 V -255 0 -6.7191018409440153e-06 7.8367384825347102e-05 -6.6410801488824998e-04 6.6914259421394960e-04 0 2 0 P 824 22 -8.7737849848401814e-02 3.4919304490414788e-01 -2.9680208188315538e+00 2.9897794724566187e+00 0 1 0 0 0 0 P 825 22 4.8184270082439383e-02 1.1213507306700937e-01 -9.4140784617686379e-01 9.4928643271590196e-01 0 1 0 0 0 0 V -256 0 -1.0166947831838920e-05 3.3773949277570250e-04 -2.3686322791022234e-03 2.3946123879619134e-03 0 2 0 P 826 22 1.4865786985915693e-03 4.6900792525798518e-01 -3.1797381757151806e+00 3.2141414887916078e+00 0 1 0 0 0 0 P 827 22 -1.5508779527196656e-02 -3.1993980792308662e-03 -8.7066971319842257e-02 8.8495287362112221e-02 0 1 0 0 0 0 V -257 0 -8.8938464324596629e-05 3.8696037852455615e-04 -3.1589246427167401e-03 3.1839517255756061e-03 0 2 0 P 828 22 -2.4999787180030134e-01 7.9860978746036337e-01 -6.7874761436946081e+00 6.8388675180731191e+00 0 1 0 0 0 0 P 829 22 -1.1273843725585900e-01 7.7961152007972256e-01 -6.0962257977242826e+00 6.1469076009254415e+00 0 1 0 0 0 0 V -258 0 -1.4802412875733451e-04 3.2120210853710468e-04 -3.4890101986592226e-03 3.5069418511523716e-03 0 2 0 P 830 22 -3.5118457102437489e-01 8.7996114299297690e-01 -8.9161133568262390e+00 8.9663113713431990e+00 0 1 0 0 0 0 P 831 22 -6.9171621634980818e-01 1.3830613433528252e+00 -1.5665632294272305e+01 1.5741771348319908e+01 0 1 0 0 0 0 V -259 0 -1.7868539407029648e-05 2.1957302390465356e-05 -2.3838779735576340e-04 2.4006848408915227e-04 0 2 0 P 832 22 -6.2197838045647003e-01 8.6890930820452361e-01 -8.8741517570603534e+00 8.9382565357555652e+00 0 1 0 0 0 0 P 833 22 -8.3849063067751761e-01 9.2575107107398880e-01 -1.0610260636132377e+01 1.0683525277266343e+01 0 1 0 0 0 0 V -260 0 0 0 0 0 0 1 0 P 834 130 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 1 0 0 0 0 V -261 0 1.8873150902798748e+00 7.7750143658049794e+01 -1.4428808303284700e+03 1.4456868319154903e+03 0 2 0 P 835 -211 -1.8859357892682854e-01 4.3023155444858407e-01 -7.0435719255908014e+00 7.0605985570861192e+00 1.3957000000000000e-01 1 0 0 0 0 P 836 211 2.0930465456036404e-01 4.2298533239426150e-01 -8.7903575337873399e+00 8.8041234876933192e+00 1.3957000000000000e-01 1 0 0 0 0 V -262 0 1.3947021024975306e-05 1.0863134085613558e-05 -1.3709870797775638e-03 1.3721813389732671e-03 0 2 0 P 837 22 3.3616722167114178e-02 -4.8125144015729558e-02 -9.5060532242121420e-01 9.5241618660716609e-01 0 1 0 0 0 0 P 838 22 9.6498531578626781e-04 7.5060338608431365e-02 -2.4487639099620542e+00 2.4499142173474806e+00 0 1 0 0 0 0 V -263 0 1.0780920313932128e-05 -1.0323090633636669e-05 -1.3015465353012292e-04 1.3106877641458204e-04 0 2 0 P 839 22 2.1830435080113278e-03 -1.7139312219983723e-02 -4.3819330445397577e-02 4.7102605267807671e-02 0 1 0 0 0 0 P 840 22 3.6166604950234810e-01 -3.3125832497046265e-01 -4.3488161087400723e+00 4.3763838904810459e+00 0 1 0 0 0 0 V -264 0 4.2854331215892163e-05 -2.2088942735991985e-04 -1.5169145503672566e-03 1.5335674026514853e-03 0 2 0 P 841 22 1.1475161950229236e-01 -3.5679017599192719e-01 -2.6721909446520997e+00 2.6983460876143059e+00 0 1 0 0 0 0 P 842 22 3.2812640684185113e-01 -1.9259913038219734e+00 -1.3004360366227537e+01 1.3150304102034083e+01 0 1 0 0 0 0 V -265 0 1.6814293329160212e-05 -8.7550461068270593e-06 -6.8172392169991289e-05 7.1265375345077396e-05 0 2 0 P 843 22 1.0968956376357341e-02 -1.6074597892518031e-02 -2.7427689497955537e-01 2.7496640853205806e-01 0 1 0 0 0 0 P 844 22 2.5667739144739893e-01 -1.2328636540512249e-01 -8.1087675551990968e-01 8.5942069082466377e-01 0 1 0 0 0 0 V -266 0 1.1551216755063298e-05 -4.3161004075825854e-06 -5.7166077369144184e-04 5.7179673483314828e-04 0 2 0 P 845 22 4.7333165389760246e-01 -1.3982624625537882e-01 -2.0141913981453921e+01 2.0147960022543529e+01 0 1 0 0 0 0 P 846 22 3.7145237579643647e-01 -1.7582644836516459e-01 -2.1665793575014817e+01 2.1669690884795351e+01 0 1 0 0 0 0 V -267 0 9.3043479648438978e-05 -1.7801079933336813e-05 -5.5613893995878072e-03 5.5622344149320506e-03 0 2 0 P 847 22 3.9580953748357922e-01 -3.3466911524511089e-02 -2.0095039346034426e+01 2.0098964937100661e+01 0 1 0 0 0 0 P 848 22 2.1291564212917369e-01 -8.2994399044103509e-02 -1.6289646329436707e+01 1.6291249144220551e+01 0 1 0 0 0 0 V -268 0 4.3057210299589143e-04 -3.6093346726380151e-04 -2.6039470569485027e-02 2.6045873277943304e-02 0 2 0 P 849 22 1.8756957728983165e-01 -2.1208705518794599e-01 -1.0605788090201759e+01 1.0609566639574327e+01 0 1 0 0 0 0 P 850 22 2.4777935437414558e-01 -1.5285065973078030e-01 -1.5722568100652190e+01 1.5725263292303884e+01 0 1 0 0 0 0 V -269 0 5.4473263963224242e-05 -1.2666025106433589e-04 -8.5336533319827473e-03 8.5347695329637263e-03 0 2 0 P 851 22 9.0519872288476333e-01 -2.1314399596635889e+00 -1.3994761345912491e+02 1.3996677082055655e+02 0 1 0 0 0 0 P 852 22 2.3433010263342685e-01 -5.1817191658864448e-01 -3.8568290514221495e+01 3.8572483014728633e+01 0 1 0 0 0 0 V -270 0 1.5684118308229876e-05 -4.5494245140606384e-05 -6.0598762786608362e-03 6.0600725804228614e-03 0 2 0 P 853 22 8.9993522781378898e-02 -4.6370871294303867e-01 -5.9912700506580229e+01 5.9914562558661657e+01 0 1 0 0 0 0 P 854 22 1.7578246687485821e-01 -3.0721623089416134e-01 -4.2775227721449660e+01 4.2776692110424591e+01 0 1 0 0 0 0 V -271 0 6.4264702668150537e+00 -7.7649051546743326e+00 -5.4033151038721280e+03 5.4033967179357942e+03 0 2 0 P 855 2112 2.1443340026434654e-01 -1.5625284761175928e-01 -1.8063827215395455e+02 1.8064091052468316e+02 9.3957000000000002e-01 1 0 0 0 0 P 856 111 4.2226077247061802e-02 -1.5386085667400737e-01 -3.5158576475460016e+01 3.5159197595877906e+01 1.3497999999999999e-01 2 0 0 -306 0 V -272 0 -1.3251752657357954e+02 -8.1643709544901299e+01 -7.7107297588689515e+04 7.7107707137734804e+04 0 2 0 P 857 -2112 -6.1757359492483122e-01 -4.5449380058941408e-01 -3.4777952924375683e+02 3.4778164372858140e+02 9.3957000000000002e-01 1 0 0 0 0 P 858 111 -7.4781776804355687e-02 3.7479784445323287e-02 -6.1155881776692887e+01 6.1156087943340694e+01 1.3497999999999999e-01 2 0 0 -307 0 V -273 0 -7.7492383577918346e+01 -4.8501400399366197e+01 -4.4607037677979257e+04 4.4607262792576214e+04 0 2 0 P 859 22 -1.6833817595152048e-01 -1.5278137566466343e-01 -1.1453001020463921e+02 1.1453023582165977e+02 0 1 0 0 0 0 P 860 22 -8.0279222874224301e-02 -1.9146319638195151e-02 -1.8187912386425317e+01 1.8188099634416581e+01 0 1 0 0 0 0 V -274 0 -5.1883992298091892e-05 1.1642228163605630e-05 -1.2766117823086330e-02 1.2766238519452277e-02 0 2 0 P 861 22 -3.7353977013517270e-01 2.9641474255999962e-02 -8.5631810076762349e+01 8.5632629923409269e+01 0 1 0 0 0 0 P 862 22 -6.5737303217846446e-02 6.8927731552876403e-02 -2.2452834666572414e+01 2.2453036698621581e+01 0 1 0 0 0 0 V -275 0 -1.1920018931715163e-04 1.5784682100284478e-05 -2.8468920712647720e-02 2.8469266822069052e-02 0 2 0 P 863 22 -1.3739525262877536e-01 -1.5612861198574154e-02 -4.2018804897122976e+01 4.2019032428167186e+01 0 1 0 0 0 0 P 864 22 -8.4684010325402334e-02 4.5020956830623474e-02 -1.1021017985574492e+01 1.1021435283415459e+01 0 1 0 0 0 0 V -276 0 -5.9085767758302491e-05 -1.1916433709519678e-05 -1.7323824025977080e-02 1.7323933129605510e-02 0 2 0 P 865 22 -3.0781796945104134e-01 1.2091668385156247e-04 -7.9160671740163636e+01 7.9161270216380956e+01 0 1 0 0 0 0 P 866 22 -3.4983254578841871e-01 -1.3275605144151550e-01 -1.1366108938522451e+02 1.1366170528025384e+02 0 1 0 0 0 0 V -277 0 -1.5989814324876999e-05 -2.5565706243426140e-05 -2.0374488380101021e-03 2.0376843504024016e-03 0 2 0 P 867 22 -6.8388798473445520e-02 -7.0058844393298098e-02 -1.0231171894658548e+01 1.0231640318516156e+01 0 1 0 0 0 0 P 868 22 -2.3543253990251659e-01 -4.1571334342503485e-01 -2.8482250303978507e+01 2.8486256834537429e+01 0 1 0 0 0 0 V -278 0 3.1728354452903333e-05 -7.6227271495126877e-05 -2.1197803423741977e-02 2.1197972053311340e-02 0 2 0 P 869 22 2.3625020922498387e-02 -1.1858128734633575e-02 -3.1487189993181333e+00 3.1488299562691000e+00 0 1 0 0 0 0 P 870 22 2.1145514339560648e-01 -5.5292122454681203e-01 -1.5390900422528352e+02 1.5391014267024951e+02 0 1 0 0 0 0 V -279 0 0 0 0 0 0 2 0 P 871 211 -2.2682609437294937e-01 1.3669907563566838e-01 -3.4209413114697526e+01 3.4210722911848954e+01 1.3957000000000000e-01 1 0 0 0 0 P 872 -211 1.2883878135440655e-01 -7.7418927823972167e-02 -1.7608174054835555e+02 1.7608186001813266e+02 1.3957000000000000e-01 1 0 0 0 0 V -280 0 6.7337505139416272e-06 -1.0316916059882883e-05 -2.6595404282509800e-02 2.6595407893288313e-02 0 2 0 P 873 22 5.8620549340157688e-02 -1.8170113597611967e-01 -3.0075020770068483e+02 3.0075026830191973e+02 0 1 0 0 0 0 P 874 22 8.4595608827847196e-02 -3.7723251544487676e-02 -2.6489172072835169e+02 2.6489173692263000e+02 0 1 0 0 0 0 V -281 0 -6.4429183937020525e-05 3.7600633272765823e-05 3.1872420448974192e-04 3.2812583868084284e-04 0 2 0 P 875 22 -3.5134981217224825e-01 1.4971859696988479e-01 1.5073768992703573e+00 1.5550072235349974e+00 0 1 0 0 0 0 P 876 22 -3.1306105523557989e-02 7.3597980266263852e-02 3.8558053877674675e-01 3.9378812428219800e-01 0 1 0 0 0 0 V -282 0 1.1207701133734363e-06 -2.0238896986174594e-06 5.0824761902214233e-04 5.0838525122950669e-04 0 2 0 P 877 22 -5.0071123477724307e-02 -3.5032085498748908e-02 4.1231987469852216e+00 4.1236515700967287e+00 0 1 0 0 0 0 P 878 22 6.3112192005047307e-02 1.1482488720181786e-02 1.7906741779149959e+00 1.7918228170716093e+00 0 1 0 0 0 0 V -283 0 -8.2859234777522517e-06 -1.1924697626291465e-05 6.2411976712909128e-05 6.4186273708971813e-05 0 2 0 P 879 22 -5.4529905096834183e-03 -5.4436188084502866e-02 3.9659826274296861e-01 4.0035386308790732e-01 0 1 0 0 0 0 P 880 22 -2.9596948875834839e-01 -3.7935636777113524e-01 1.8738031967123421e+00 1.9345923632780577e+00 0 1 0 0 0 0 V -284 0 -1.5678020198773831e-05 -6.6312200241192554e-06 3.9403757872139055e-04 3.9489450950131415e-04 0 2 0 P 881 22 -2.3570358772930459e-02 -5.5643209794369673e-02 4.2090544495396509e-01 4.2522126263958182e-01 0 1 0 0 0 0 P 882 22 -8.4102368423418630e-02 1.0101646791931288e-02 2.2852462362446859e+00 2.2868156051402222e+00 0 1 0 0 0 0 V -285 0 -1.6813379206574424e-04 3.2883807097044721e-04 7.2681839319340569e-03 7.2779389754447201e-03 0 2 0 P 883 22 -6.4921929949543780e-02 1.1057861743330907e-01 3.7038362870560779e+00 3.7060552787209193e+00 0 1 0 0 0 0 P 884 22 -2.4124330880746189e-01 4.8822299926782625e-01 9.5312501373332115e+00 9.5467947087738718e+00 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 885 130 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 1 0 0 0 0 V -287 0 -3.8038450459167854e-06 2.7425515157775186e-07 2.5150303532066168e-02 2.5150475437002405e-02 0 2 0 P 886 22 1.0529793067655197e-02 6.4706887245832984e-02 1.4188459323642903e+01 1.4188610778947609e+01 0 1 0 0 0 0 P 887 22 -1.6055988861859837e-02 -6.4308451545405376e-02 2.2349701385891599e+01 2.2349799672709448e+01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 888 310 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -308 0 V -289 0 -4.6486154383588651e-05 1.4401410670670431e-06 2.3833743496114428e-03 2.3838490366838785e-03 0 2 0 P 889 22 -1.6865108008256671e-01 -1.3645704997106036e-02 6.0859581203726316e+00 6.0883097518939895e+00 0 1 0 0 0 0 P 890 22 -4.5912433915489964e-01 3.3094187542659019e-02 2.6100482151300390e+01 2.6104540963487629e+01 0 1 0 0 0 0 V -290 0 -7.6733232239886483e-06 1.3302741171269238e-05 6.7587778130431429e-03 6.7588333578104415e-03 0 2 0 P 891 22 -7.8945623805223158e-02 1.9993694539028198e-03 1.9598744442085753e+01 1.9598903543698135e+01 0 1 0 0 0 0 P 892 22 3.3304784573630841e-02 7.7125183678342715e-02 2.0602389090616789e+01 2.0602560368648327e+01 0 1 0 0 0 0 V -291 0 4.4979176954494166e-05 -8.2832313108760350e-05 7.2290611276326121e-03 7.2299537152378385e-03 0 2 0 P 893 22 1.0099680549739821e-01 -1.6055518792352039e-01 1.5194665281581971e+01 1.5195849148448479e+01 0 1 0 0 0 0 P 894 22 -5.2596615726036256e-03 -1.5751485934474459e-02 1.9222510810867460e-01 1.9294109343629703e-01 0 1 0 0 0 0 V -292 0 -3.0017737324045102e-05 6.8963716225881009e-05 1.2601478936352042e-02 1.2601734789507995e-02 0 2 0 P 895 22 -3.4861181404083038e-03 1.7136340832012836e-01 2.4550627991649026e+01 2.4551226290250177e+01 0 1 0 0 0 0 P 896 22 -1.4055514809083244e-01 1.5956163449549843e-01 3.5918053001321127e+01 3.5918682423922114e+01 0 1 0 0 0 0 V -293 0 -6.0089343615353204e-06 -9.1510806760094115e-07 6.8771940390648968e-04 6.8775353053222605e-04 0 2 0 P 897 22 -3.4333016589369889e-03 1.4269097782557709e-02 3.5450228848659221e-01 3.5480595718510782e-01 0 1 0 0 0 0 P 898 22 -2.5311187828417375e-01 -5.3338681463297316e-02 2.9006959762911155e+01 2.9008113094874265e+01 0 1 0 0 0 0 V -294 0 3.0172165798551441e+02 1.2679839093659461e+03 -4.0018577847538872e+03 4.2102779230643928e+03 0 2 0 P 899 -2112 2.2433504297897615e+00 9.2990747662889905e+00 -2.8954924633877429e+01 3.0508619519707747e+01 9.3957000000000002e-01 1 0 0 0 0 P 900 211 9.5576111367289240e-01 4.1450816207562351e+00 -1.3475739843860779e+01 1.4131886819298311e+01 1.3957000000000000e-01 1 0 0 0 0 V -295 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 2 0 P 901 311 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 2 0 0 -309 0 P 902 211 9.5907365410764833e-01 3.5533099932890289e+00 -1.1009113140839961e+01 1.1608871009496410e+01 1.3957000000000000e-01 1 0 0 0 0 V -296 0 -6.3542480825888759e-02 8.6496429611121028e-02 6.9241249496818302e-01 7.0240117244065481e-01 0 2 0 P 903 22 -1.6332316298713009e-01 1.3223849371523858e-01 7.8182884949936748e-01 8.0957879461958515e-01 0 1 0 0 0 0 P 904 22 -1.7295487994165946e-03 1.1054671373271617e-01 3.1401422118288380e-01 3.3290914430403634e-01 0 1 0 0 0 0 V -297 0 -6.3635987780062450e-02 8.6619067369276395e-02 6.9361176536973812e-01 7.0360982973812103e-01 0 2 0 P 905 22 -1.7793407499752598e-02 7.6165807755422407e-02 7.7855022268054364e-01 7.8246935074634849e-01 0 1 0 0 0 0 P 906 22 -4.6098202366995045e-01 5.5744386205430896e-01 5.1416257317451430e+00 5.1922599367551543e+00 0 1 0 0 0 0 V -298 0 -1.4533882853552200e-05 -5.1223800179794811e-06 9.6027656351618218e-05 9.9271555483239679e-05 0 2 0 P 907 22 -1.2312509430800810e-01 -1.7818593130385213e-03 5.5677807040586080e-01 5.7023221897385012e-01 0 1 0 0 0 0 P 908 22 2.4549034226604937e-02 -3.2960683027511019e-02 9.4529506335744695e-02 1.0307710354476726e-01 0 1 0 0 0 0 V -299 0 -7.0722287233100335e-06 5.3022626638857538e-05 1.1142256641670921e-03 1.1221963656161281e-03 0 2 0 P 909 22 5.8390923454788482e-02 5.3573450783977454e-02 5.7440019651630847e-01 5.7984066805354395e-01 0 1 0 0 0 0 P 910 22 -6.6194532996206687e-02 4.9325579069274070e-03 6.5505410485954152e-01 6.5840863194480259e-01 0 1 0 0 0 0 V -300 0 -4.4576067352408903e-05 9.0288306790825817e-05 1.3229497916552486e-03 1.3285196497717468e-03 0 2 0 P 911 22 -4.4869857889043414e-02 2.5558475405449053e-02 1.3649296386073730e+00 1.3659060941956764e+00 0 1 0 0 0 0 P 912 22 -4.3562927092325260e-02 1.5356110366467421e-01 1.2596207404487278e+00 1.2696941170786631e+00 0 1 0 0 0 0 V -301 0 4.4216848208305670e+00 -2.1959145862124011e+01 9.7925501154733610e+00 2.5211017128348697e+01 0 2 0 P 913 211 2.0940276717338838e-01 -1.5453334033939878e+00 7.1620579293458486e-01 1.7217245335065001e+00 1.3957000000000000e-01 1 0 0 0 0 P 914 -211 1.4782602382658336e-01 -2.2875033291472027e-01 7.4936267231541009e-02 3.1507852541163428e-01 1.3957000000000000e-01 1 0 0 0 0 V -302 0 8.2642611624942131e+00 -5.1300937694053594e+00 3.2027911465799008e+01 3.7414482951373842e+01 0 2 0 P 915 -211 3.3809492791803003e-01 -1.7785263753722091e-01 6.7266449280062446e-01 7.8606427583090521e-01 1.3957000000000000e-01 1 0 0 0 0 P 916 211 -9.2057723613516385e-02 2.5123445655830780e-02 2.8084576562632596e-01 3.2781083107298525e-01 1.3957000000000000e-01 1 0 0 0 0 V -303 0 3.6427544455342655e+00 2.6157876085759240e+00 -1.3642201299943590e+00 5.4642598873152712e+00 0 2 0 P 917 211 5.3899441789760905e-01 1.6646556459765430e-01 -2.2405964135415515e-01 6.2282282754034546e-01 1.3957000000000000e-01 1 0 0 0 0 P 918 -211 1.0661454622640182e-01 2.9713305386300926e-01 -1.7722438149588546e-02 3.4561334302799351e-01 1.3957000000000000e-01 1 0 0 0 0 V -304 0 6.6673336398945082e+00 -1.5101178723373868e+01 -1.8948538217380435e+01 2.7323054590385826e+01 0 2 0 P 919 -211 2.6070712297237070e-01 -5.5080873379264950e-01 -8.5031250318031415e-01 1.0554002099467124e+00 1.3957000000000000e-01 1 0 0 0 0 P 920 211 4.8705869607628884e-02 -1.4999628852185634e-01 -2.9038108550724868e-02 2.1258914589595349e-01 1.3957000000000000e-01 1 0 0 0 0 V -305 0 -3.0953682088713720e+01 6.2995660035799247e+01 -4.6912157478541900e+02 4.7886069381214571e+02 0 2 0 P 921 -211 2.9048817697976771e-02 3.3314350502044077e-01 -1.2970331913412130e+00 1.3467008996387158e+00 1.3957000000000000e-01 1 0 0 0 0 P 922 211 -2.6380680157938041e-01 1.4462628342985762e-01 -2.2608645339200257e+00 2.2850599589629352e+00 1.3957000000000000e-01 1 0 0 0 0 V -306 0 6.4264747537197922e+00 -7.7649215037896635e+00 -5.4033188397906333e+03 5.4034004539202988e+03 0 2 0 P 923 22 4.5821044601333891e-02 -1.7296783165094021e-01 -3.3887806926761776e+01 3.3888279326994429e+01 0 1 0 0 0 0 P 924 22 -3.5949673542720862e-03 1.9106974976932853e-02 -1.2707695486982380e+00 1.2709182688834759e+00 0 1 0 0 0 0 V -307 0 -1.3251754549370838e+02 -8.1643700062345786e+01 -7.7107313061405075e+04 7.7107722610502533e+04 0 2 0 P 925 22 -5.1199629974816488e-02 1.4148846571079097e-02 -7.1989735928065892e+00 7.1991695619630649e+00 0 1 0 0 0 0 P 926 22 -2.3582146829539196e-02 2.3330937874244190e-02 -5.3956908183886291e+01 5.3956918381377626e+01 0 1 0 0 0 0 V -308 0 -1.5487673078074202e-01 1.0201196758067184e+00 2.4836378830859363e+02 2.4839426476441406e+02 0 2 0 P 927 -211 -9.0674855235478663e-02 -1.1538687304506388e-01 1.7884263157970235e+01 1.7885409823324558e+01 1.3957000000000000e-01 1 0 0 0 0 P 928 211 7.0129833147545048e-02 2.5070985646634580e-01 1.5062193620399494e+01 1.5065089779650497e+01 1.3957000000000000e-01 1 0 0 0 0 V -309 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 1 0 P 929 130 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 1 0 0 0 0 E 18 40 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 219 1 2 0 5 2.3000000000000001e-01 1.4000000000000000e-02 3.5400000000000000e+00 1.3400000000000001e+00 1.2000000000000000e-01 N 5 "0" "3" "4" "p 2" "p1" U GEV MM V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -3.1410233325201048e-01 4.1184766785753961e+00 7.1390134753684538e+02 7.1391329622395415e+02 0 3 0 0 -3 0 P 54 2101 3.1410233325201048e-01 -4.1184766785753961e+00 2.8196940829706500e+03 2.8196971677244655e+03 5.7933000000000001e-01 2 0 0 -10 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -7.6780376358711888e-01 -1.2934196904331927e+00 -1.5345071570435563e+01 1.5418614678912338e+01 0 3 0 0 -4 0 P 58 1 4.4388699579991542e-01 2.7387929144970635e-01 -6.2316178603176073e+00 6.2621088052152736e+00 3.3000000000000002e-01 2 0 0 -12 0 P 60 2203 3.2391676778720346e-01 1.0195403989834864e+00 -2.6457158393169570e+03 2.6457161680246991e+03 7.7132999999999996e-01 2 0 0 -14 0 V -3 0 0 0 0 0 0 1 0 P 5 2 -3.1020025913426502e-01 4.0673130941294575e+00 7.0503259466256543e+02 7.0504439491186349e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 6 0 P 6 -1 1.6285067613798643e+00 -1.9071492713409388e+00 -1.1991323138172993e+01 1.2250758475258626e+01 0 3 0 0 -5 0 P 13 1 -5.3412244936010811e-01 -1.4542908888535993e+00 2.1666373129408201e+00 2.6839273511293951e+00 3.3000000000000002e-01 2 0 0 -10 0 P 55 -1 4.5991111564601900e-01 -1.0793343291424645e-01 3.7323134613524288e-02 5.7746071434583257e-01 3.3000000000000002e-01 2 0 0 -12 0 P 56 21 -4.2425764127993371e-01 6.3379673462519126e-01 8.4509759231255621e-01 1.1383684761703687e+00 0 2 0 0 -12 0 P 57 21 -1.3518050980022980e+00 9.2098641435326034e-01 4.8286364260132686e+00 5.0981685665570602e+00 0 2 0 0 -12 0 P 59 1 -5.4993852608840832e-01 6.7233433814307830e-01 -2.3626900238629132e+00 2.5388324075416864e+00 3.3000000000000002e-01 2 0 0 -14 0 V -5 0 0 0 0 0 0 2 0 P 7 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033562e+01 0 3 0 0 -6 0 P 8 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033583e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 -15 1.0850533131842932e+01 2.2987430442201006e+01 2.9604459103757250e+02 2.9713921592274522e+02 1.7769999999999999e+00 2 0 0 -9 0 P 12 16 -3.3318084775284674e+01 -5.5337032829059574e+01 3.5497923972353345e+02 3.6080817979934341e+02 0 1 0 0 0 0 V -9 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 99 -16 3.7779982345953385e+00 8.8172237174551213e+00 1.0425857679604805e+02 1.0469893762728306e+02 0 1 0 0 0 0 P 100 213 7.0725348972475919e+00 1.4170206724745883e+01 1.9178601424152444e+02 1.9244027829546215e+02 7.5494588540254526e-01 2 0 0 -30 0 V -10 0 0 0 0 0 40 1 0 P 14 21 1.3929204664533565e+00 2.8407328198885767e-01 -3.9781910974353806e+01 3.9807302920780963e+01 0 2 0 0 -10 0 P 15 21 2.9568382149066377e+00 1.0292741166592101e+00 -7.2809186542315942e+01 7.2876470430380465e+01 0 2 0 0 -10 0 P 16 21 1.2650634913664724e+00 1.3778845565554025e+00 -4.8035446572798911e+01 4.8071853292093920e+01 0 2 0 0 -10 0 P 17 21 1.9942637464441160e+00 -1.5967219838243523e+00 -4.6774523100972125e+01 4.6844237855977383e+01 0 2 0 0 -10 0 P 18 21 2.8124816225447402e+00 -7.9134419118784982e-01 -3.4910351676410329e+01 3.5032398328928664e+01 0 2 0 0 -10 0 P 19 21 2.5183687095674840e+00 3.1396150922964710e+00 -8.5129580891689933e+00 9.4164653301040815e+00 0 2 0 0 -10 0 P 20 21 -4.8604162704783915e-01 4.4805287193126347e-01 -1.5205429797645378e+00 1.6580225549070144e+00 0 2 0 0 -10 0 P 21 21 -1.7909508627676911e+00 1.0886553103426566e-01 -2.6329276379508761e+00 3.1861677048424948e+00 0 2 0 0 -10 0 P 22 21 -1.5527611081126074e+00 -3.5633050659470139e-01 -2.0423671050618739e+00 2.5902320128969043e+00 0 2 0 0 -10 0 P 23 21 -8.1858222642740464e-01 -9.3508705088232957e-01 -2.7624164052919555e+00 3.0290937671813314e+00 0 2 0 0 -10 0 P 24 21 -4.3510641327334225e+00 -5.1953278002191912e+00 -1.6233808380677498e+01 1.7591467379938621e+01 0 2 0 0 -10 0 P 25 21 -2.5183687095674840e+00 -3.1396150922964710e+00 -2.2406827729750205e+00 4.6065196378840501e+00 0 2 0 0 -10 0 P 26 21 -3.9998383868616751e+00 -2.3334229478203432e+00 3.1757234065285198e+00 5.6150502160888900e+00 0 2 0 0 -10 0 P 27 21 -2.8360382924746732e+00 7.3613381622880194e+00 4.6561222236585903e-01 7.9024810963112770e+00 0 2 0 0 -10 0 P 28 21 -3.7287934837490419e-02 1.3170726275440601e+00 3.0109250586432484e-01 1.3515647943764730e+00 0 2 0 0 -10 0 P 29 21 -4.9995236867785348e-01 2.0507226444561018e+00 1.3306012526188160e-01 2.1149753502975703e+00 0 2 0 0 -10 0 P 30 21 -1.5127652223692316e+00 3.3862903404124922e+00 -2.7622519106447081e+00 4.6244412100751289e+00 0 2 0 0 -10 0 P 31 21 -1.0031830177760117e+00 1.8935131419854179e+00 -2.3617684265267416e+00 3.1889995745632009e+00 0 2 0 0 -10 0 P 32 21 1.3299732528289634e+00 3.2515719337466917e+00 -6.4332977281482917e-01 3.5714733780555656e+00 0 2 0 0 -10 0 P 33 21 3.9998383868616751e+00 2.3334229478203432e+00 9.0305395860629323e-01 4.7179525460289744e+00 0 2 0 0 -10 0 P 34 21 2.5993650469852851e+00 4.8539935980158577e-01 1.1857519188066898e+00 2.8979852999865874e+00 0 2 0 0 -10 0 P 35 21 1.5455237168893123e+00 9.4820344049031013e-01 3.2730835552882112e+00 3.7417655303243058e+00 0 2 0 0 -10 0 P 36 21 4.3510641327334225e+00 5.1953278002191912e+00 2.0066857517307266e+01 2.1180225698957997e+01 0 2 0 0 -10 0 P 37 21 3.7287934837490419e-02 -1.3170726275440601e+00 2.4420841180840294e-01 1.3400404638324328e+00 0 2 0 0 -10 0 P 38 21 8.8522632601036022e-01 -3.3748367869032077e+00 2.5292441676367368e+00 4.3093183969186377e+00 0 2 0 0 -10 0 P 39 21 1.5127652223692316e+00 -3.3862903404124922e+00 1.0104000223774685e+01 1.0763189183955639e+01 0 2 0 0 -10 0 P 40 21 4.1823331179364909e-01 -2.1216008959167789e+00 8.4439069477434519e+00 8.7164025840250687e+00 0 2 0 0 -10 0 P 41 21 1.0885105597808160e+00 -8.9890075088024568e-01 9.3956793709183373e+00 9.5011403862793138e+00 0 2 0 0 -10 0 P 42 21 1.0031830177760117e+00 -1.8935131419854179e+00 2.3484295314524928e+01 2.3581855198559829e+01 0 2 0 0 -10 0 P 43 21 4.9995236867785348e-01 -2.0507226444561018e+00 2.3541942986559114e+01 2.3636380757591283e+01 0 2 0 0 -10 0 P 44 21 -1.9756779591267767e-01 -2.6145170257635817e+00 5.6547783834784617e+01 5.6608538127543248e+01 0 2 0 0 -10 0 P 45 21 -2.4698490047492405e+00 -2.1129646240121569e+00 7.3367288852546594e+01 7.3439252768404415e+01 0 2 0 0 -10 0 P 46 21 -7.1751238809425899e-01 -5.2235835518124177e-02 2.1769629426330660e+01 2.1781513215783306e+01 0 2 0 0 -10 0 P 47 21 -1.0885105597808160e+00 8.9890075088024568e-01 8.7800519323714141e+01 8.7811867485622855e+01 0 2 0 0 -10 0 P 48 21 2.4698490047492405e+00 2.1129646240121569e+00 1.1214366175799709e+02 1.1219075561783443e+02 0 2 0 0 -10 0 P 49 21 5.7548395374757400e-01 3.7837025068570346e-01 3.0029956120090755e+01 3.0037852959261272e+01 0 2 0 0 -10 0 P 50 21 2.0173726863664050e+00 -5.9209092629134409e-02 8.5980073616271000e+01 8.6003757809363933e+01 0 2 0 0 -10 0 P 51 21 2.8360382924746732e+00 -7.3613381622880194e+00 5.7465038669001149e+02 5.7470453220391062e+02 0 2 0 0 -10 0 P 52 21 1.9756779591267767e-01 2.6145170257635817e+00 8.9980556439700217e+02 8.9980938450991914e+02 0 2 0 0 -10 0 P 53 21 -6.3314715763410501e-01 -4.9505380802813853e-01 1.3344525639164242e+03 1.3344528059458357e+03 0 2 0 0 -10 0 P 101 92 1.3573730350144873e+01 -7.0434923760203176e+00 5.9216311885040304e+03 6.5266868286012177e+03 2.7443926776306075e+03 2 0 0 -11 0 V -11 0 0 0 0 0 0 91 0 P 102 223 -2.0748164925503010e-01 -5.8626181783009357e-01 9.5456731384514981e-01 1.3810122684773649e+00 7.8054120659989479e-01 2 0 0 -31 0 P 103 -213 -4.9257000459653066e-01 -1.2748800340129449e-01 -6.1113728432809510e-02 9.6611792377233841e-01 8.1900583294121942e-01 2 0 0 -32 0 P 104 223 3.3086974401874941e-01 -7.1401668620527645e-02 -3.9660042157565983e-01 9.3898572672508673e-01 7.8091568995034399e-01 2 0 0 -33 0 P 105 111 1.1391885908489846e-01 -6.4826447391926029e-02 -1.2379388613706153e-01 2.2522100564019076e-01 1.3497999999999999e-01 2 0 0 -34 0 P 106 213 2.9852534732093487e-02 -5.0798993676476556e-01 -2.7217211611674497e+00 2.9457142743137661e+00 1.0052470129600175e+00 2 0 0 -35 0 P 107 -211 -1.1388382351648388e-01 2.1432779589139200e-01 -2.8767179819663075e-01 4.0142343943531583e-01 1.3957000000000000e-01 1 0 0 0 0 P 108 111 -1.9599035438555143e-01 -7.1282012524033794e-02 1.0610699831870526e-01 2.7013263374471486e-01 1.3497999999999999e-01 2 0 0 -36 0 P 109 223 8.2316738601997497e-01 -2.2080300031358368e-03 -2.6921217906279531e+00 2.9196354496806687e+00 7.7404263619954250e-01 2 0 0 -37 0 P 110 2212 7.4955613574521962e-01 6.4919700042379916e-02 -2.2646869845526815e+01 2.2678781126004473e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 -2112 4.1350142857250616e-01 7.3610295881520099e-02 -2.0186093444576702e+01 2.0212312144956904e+01 9.3957000000000002e-01 1 0 0 0 0 P 112 -211 1.3917633448255307e+00 1.0962910634503154e+00 -3.7727789733950814e+01 3.7769623473075590e+01 1.3957000000000000e-01 1 0 0 0 0 P 113 113 1.6066471334474972e+00 -6.7439777317844563e-02 -5.9877604437566710e+01 5.9907691672478400e+01 1.0090318171599266e+00 2 0 0 -38 0 P 114 223 6.2132283911471697e-01 1.0830526508889199e-01 -1.7737943734308050e+01 1.7765503279164623e+01 7.6202804389301848e-01 2 0 0 -39 0 P 115 2212 2.1451243362106545e+00 2.8214099617659722e-04 -3.4495106316809157e+01 3.4574474238927657e+01 9.3827000000000005e-01 1 0 0 0 0 P 116 -2212 1.5621157128965870e+00 -4.6964766713982103e-01 -2.3072626809080184e+01 2.3149238278952364e+01 9.3827000000000005e-01 1 0 0 0 0 P 117 213 7.9679418597883689e-02 -4.1196652321288030e-01 -7.5954324935795370e+00 7.6461235174999853e+00 7.7236316221474233e-01 2 0 0 -40 0 P 118 -211 5.8385464407250764e-01 7.5976102923402927e-02 -6.1976821347634061e+00 6.2271504110697329e+00 1.3957000000000000e-01 1 0 0 0 0 P 119 211 1.1227002128604000e+00 6.7572817127988472e-01 -8.4617806861184519e+00 8.5637769993318624e+00 1.3957000000000000e-01 1 0 0 0 0 P 120 223 3.3063977614282025e-01 4.1163687917442521e-01 -1.1149629123163751e+00 1.4658424435107005e+00 7.9169703264075575e-01 2 0 0 -41 0 P 121 -211 9.1955776670667111e-01 1.7587314188637599e+00 -3.8793537358085524e+00 4.3597692464671640e+00 1.3957000000000000e-01 1 0 0 0 0 P 122 223 -1.0617299367722848e+00 1.1318728789250672e-01 -2.6333877711447315e+00 2.9473095837641861e+00 7.8218975226901910e-01 2 0 0 -42 0 P 123 211 -3.2954695847980436e-01 2.8756788992051779e-01 -6.0211144176106335e-01 7.5717531811081451e-01 1.3957000000000000e-01 1 0 0 0 0 P 124 223 -1.0267775286850447e+00 -6.3605273017002473e-01 -3.1919891705004231e+00 3.5039545824899605e+00 7.9376802819911751e-01 2 0 0 -43 0 P 125 2114 -1.2592359502665480e+00 -1.5362654268390121e+00 -4.5371030949712834e+00 5.0952900236058127e+00 1.1961978473958392e+00 2 0 0 -44 0 P 126 -213 -1.4238617093304717e+00 -7.2563517196796889e-01 -4.1561726629699347e+00 4.5211526483207001e+00 7.8302074998325488e-01 2 0 0 -45 0 P 127 -1114 -3.2660167272524698e+00 -3.0182597803527762e+00 -8.0627747388887823e+00 9.2833433326579851e+00 1.1812576253952995e+00 2 0 0 -46 0 P 128 -213 -2.5131127353271937e-01 -1.2464200136185575e+00 -1.8013930339428830e+00 2.3056037788013777e+00 6.7384843661741511e-01 2 0 0 -47 0 P 129 211 -3.5890312335702512e-01 -9.0730774541786768e-02 -4.0876101696176864e-01 5.6886631056163073e-01 1.3957000000000000e-01 1 0 0 0 0 P 130 -211 -8.4695249730381494e-01 -7.5548711333791696e-01 -9.7897652699873472e-01 1.5053119731216289e+00 1.3957000000000000e-01 1 0 0 0 0 P 131 213 -3.8027283316423138e-01 -2.0152358516946922e-01 3.1706069617718452e-01 1.0499592183931830e+00 9.0369668152879434e-01 2 0 0 -48 0 P 132 223 -1.7520779495751202e+00 -1.4734533106028989e+00 -6.8994641425270486e-01 2.5171249411851924e+00 7.8679737867026334e-01 2 0 0 -49 0 P 133 313 -7.0050574067036986e-01 -9.5920825624524553e-01 4.9194533517634220e-01 1.5447374357767283e+00 8.5639638084657499e-01 2 0 0 -50 0 P 134 333 -1.1135052236137697e+00 -2.4250958763589278e-01 5.1647240051368815e-01 1.6213477009634201e+00 1.0311740123841930e+00 2 0 0 -51 0 P 135 -323 -9.1455740622984327e-01 -2.2264069624092109e-01 4.9963951575127846e-01 1.4086411127513092e+00 9.2121984885290742e-01 2 0 0 -52 0 P 136 323 -1.1631054682627238e+00 1.4982581655588041e+00 5.3966262060463532e-01 2.1573167774586151e+00 8.7475029194638099e-01 2 0 0 -53 0 P 137 -311 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521394e-01 4.9767000000000000e-01 2 0 0 -54 0 P 138 111 -4.2683779844818148e-01 1.0831703099617001e+00 -1.4210131280919769e-01 1.1806188250526557e+00 1.3497999999999999e-01 2 0 0 -55 0 P 139 221 -7.8495502539906492e-01 1.3662062215293831e+00 2.1685209199656871e-01 1.6820820919170760e+00 5.4744999999999999e-01 2 0 0 -56 0 P 140 -211 -7.8445825130098693e-02 4.5841878119012303e-01 -4.6933439479007230e-02 4.8783609857154864e-01 1.3957000000000000e-01 1 0 0 0 0 P 141 221 -6.5523912092518888e-01 3.2243594649372209e+00 4.2669822350934122e-01 3.3626782690538626e+00 5.4744999999999999e-01 2 0 0 -57 0 P 142 113 -1.3072427183672559e+00 2.5331067891371437e+00 -1.0519254502916864e+00 3.1567755117109670e+00 8.5625402099480863e-01 2 0 0 -58 0 P 143 323 -5.7057868564338654e-01 1.2046694907051487e+00 -9.0184918985162799e-01 1.7650583916806721e+00 7.2478310304530957e-01 2 0 0 -59 0 P 144 -323 -5.9007929479415289e-01 2.5822897905475206e+00 -1.5740710791246635e+00 3.2148786163000507e+00 9.1724076386514519e-01 2 0 0 -60 0 P 145 2212 -1.5764521534060036e-01 2.0300708033813919e+00 -8.7336311190774019e-01 2.4060659173851646e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -2212 7.2365141780465592e-01 1.2430021913724214e+00 -1.0531920479450281e+00 2.0145197703179702e+00 9.3827000000000005e-01 1 0 0 0 0 P 147 211 2.2241991878269509e+00 1.1843112947233121e+00 7.9923449495463117e-01 2.6472458957876688e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 6.4749064233649767e-01 4.5496979398408177e-01 8.4575817056419178e-01 1.1666311813625316e+00 1.3957000000000000e-01 1 0 0 0 0 P 149 211 7.4930102238880791e-01 6.3840903930251058e-01 -4.2849557911211827e-01 1.0826386146053979e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 113 1.3435253011165857e+00 9.9939041499436132e-01 1.7611070260073296e+00 2.5002366990309786e+00 5.8808516203516847e-01 2 0 0 -61 0 P 151 313 1.5062269049378567e+00 7.7912652310414487e-01 2.4412884596394493e+00 3.1092733123682219e+00 9.1210391933894797e-01 2 0 0 -62 0 P 152 221 1.7561036050702450e-01 1.9617870342530644e-01 2.9124035317355462e-01 6.7368206760436955e-01 5.4744999999999999e-01 2 0 0 -63 0 P 153 -313 9.5917686540083469e-01 2.0310537413449883e-01 1.6350355071088831e+00 2.1224962192571186e+00 9.3293999760513857e-01 2 0 0 -64 0 P 154 313 1.7407526781137117e+00 1.8494300859639754e+00 6.6863027514660720e+00 7.2181922776954472e+00 9.7213360413609928e-01 2 0 0 -65 0 P 155 -323 9.0427674707556271e-01 9.1029036267049834e-01 2.0362099856102240e+00 2.5725590348822687e+00 9.0860547146891735e-01 2 0 0 -66 0 P 156 321 8.6382831146018524e-01 6.8773613355695284e-01 2.2142691125827949e+00 2.5230554896827417e+00 4.9359999999999998e-01 1 0 0 0 0 P 157 -311 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 2 0 0 -67 0 P 158 -213 -1.6602513881248579e-01 -1.9784274193529106e-01 2.2646584205545799e+00 2.4207488753579938e+00 8.1525533331837119e-01 2 0 0 -68 0 P 159 331 5.1620771162131607e-01 -6.4002033012468196e-01 9.4032750164386014e-01 1.5740156532052576e+00 9.5771240029414251e-01 2 0 0 -69 0 P 160 211 -8.4799439646089533e-02 -9.8831134457310066e-01 1.0927606558186655e+00 1.4824155606918801e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 113 5.0126111132881723e-01 -4.3179711117534747e-01 1.5371815355241629e+00 1.9236481447149212e+00 9.4856927240911548e-01 2 0 0 -70 0 P 162 2114 6.4711665824334352e-01 -1.0448010103200167e+00 2.6382163035971300e+00 3.1323556191604474e+00 1.1580575718756674e+00 2 0 0 -71 0 P 163 221 -1.3981216061220206e-01 -1.4326992519303943e+00 1.7533934277153054e+00 2.3337233344148127e+00 5.4744999999999999e-01 2 0 0 -72 0 P 164 -2114 7.0262469379130088e-01 -1.5351082564629341e+00 3.3250980913109447e+00 3.9095704221752330e+00 1.1739781725917031e+00 2 0 0 -73 0 P 165 221 5.6327815323546571e-01 -1.6312680393081156e+00 6.6999903819016007e+00 6.9403090935530001e+00 5.4744999999999999e-01 2 0 0 -74 0 P 166 -213 7.0423490553950796e-01 -1.0006986557040105e+00 3.9967597953351519e+00 4.2482885757863542e+00 7.5929069521581427e-01 2 0 0 -75 0 P 167 211 7.6418744823686524e-01 -1.0704977293789804e+00 8.4438415583385531e+00 8.5468057127720858e+00 1.3957000000000000e-01 1 0 0 0 0 P 168 -211 5.2372258404576174e-03 -2.3482517504405259e-01 4.8057016549318456e+00 4.8134622126369342e+00 1.3957000000000000e-01 1 0 0 0 0 P 169 2212 2.0003033394174879e-01 -1.5010801108721556e+00 1.4698718944362916e+01 1.4806280519834349e+01 9.3827000000000005e-01 1 0 0 0 0 P 170 213 6.3159966958329494e-01 -9.1749176770289220e-01 1.2733709180813570e+01 1.2804106985966232e+01 7.4638925508959320e-01 2 0 0 -76 0 P 171 -2212 4.7361667833955118e-01 -1.5840762027944670e+00 3.6337015602613633e+01 3.6386709986913459e+01 9.3827000000000005e-01 1 0 0 0 0 P 172 -213 -6.0952058896008998e-01 -1.8069308779011817e+00 1.8612817522071094e+01 1.8724460299567959e+01 7.2933041503898699e-01 2 0 0 -77 0 P 173 213 -4.7321050360378542e-01 -1.4611884798605018e-01 2.9941318100501928e+01 2.9956088506777341e+01 7.9964375316480341e-01 2 0 0 -78 0 P 174 223 -1.7560572926702317e-01 -1.3404016943138539e+00 4.6968532063610319e+01 4.6994150414073992e+01 7.6135067869491690e-01 2 0 0 -79 0 P 175 113 -4.3134179050242744e-01 1.0973587207868786e-02 1.2871076482854550e+01 1.2890720525938937e+01 5.6558791582026013e-01 2 0 0 -80 0 P 176 -213 -1.2501268431343457e+00 -1.1745115211022394e+00 6.2507076325949292e+01 6.2535966680650212e+01 8.1868396113299058e-01 2 0 0 -81 0 P 177 213 -4.6281070091042303e-01 5.8393261537029106e-01 3.1213144798142149e+01 3.1232240006769871e+01 7.9827101069615036e-01 2 0 0 -82 0 P 178 223 1.0031372976855530e+00 7.8370618483776744e-01 5.2661003312281423e+01 5.2682258696146789e+01 7.8653140398757571e-01 2 0 0 -83 0 P 179 -213 1.8609393907630062e-01 4.7087974756006179e-01 4.7345711458362551e+01 4.7354375164417895e+01 7.5106259598804104e-01 2 0 0 -84 0 P 180 213 1.3380931368508377e+00 6.3715354177187031e-02 6.1408852998635467e+01 6.1428565438091873e+01 7.9175266634869734e-01 2 0 0 -85 0 P 181 113 8.2448148830641443e-01 4.8703237968489921e-01 1.1982262412103316e+02 1.1982867466157809e+02 7.3010248356707108e-01 2 0 0 -86 0 P 182 223 1.3736434430544133e+00 -3.2854396964776109e+00 2.0083136786729793e+02 2.0086443786783431e+02 7.7657594818138642e-01 2 0 0 -87 0 P 183 113 8.1937534954823310e-01 2.6671720877831295e-01 1.0843040649543882e+02 1.0843677941065161e+02 7.9972630025099722e-01 2 0 0 -88 0 P 184 2112 4.1284275122129448e-02 2.1785557114613488e-01 6.8470889871054808e+01 6.8477695032472198e+01 9.3957000000000002e-01 1 0 0 0 0 P 185 -211 4.9692799164784396e-01 -4.5143707676763412e-01 6.2609785685328688e+01 6.2613540677802696e+01 1.3957000000000000e-01 1 0 0 0 0 P 186 -2112 1.4651936158971004e+00 -2.7185979355670793e+00 2.5540781641928450e+02 2.5542821505644039e+02 9.3957000000000002e-01 1 0 0 0 0 P 187 221 -1.5613844695571832e-01 5.6548206245058699e-02 8.2576614295373119e+01 8.2578595936862271e+01 5.4744999999999999e-01 2 0 0 -89 0 P 188 223 1.0600406665999704e-01 2.5492099931411084e-02 3.7240084764324325e+02 3.7240161638693974e+02 7.4878267209803262e-01 2 0 0 -90 0 P 189 2212 -2.6959746734500439e-01 1.3575454822855444e+00 9.0043408955781308e+02 9.0043564212048580e+02 9.3827000000000005e-01 1 0 0 0 0 P 190 -2112 1.9580022939934716e-01 -4.8950229014925795e-01 5.9384678292044839e+02 5.9384776022729341e+02 9.3957000000000002e-01 1 0 0 0 0 P 191 113 -1.5736385716531065e-01 -1.4804920438155920e+00 9.6701055914748656e+02 9.6701203983749474e+02 8.0440528513598242e-01 2 0 0 -91 0 P 192 2112 -1.0790175788540123e-01 -2.3833877274373352e+00 1.9804652392727123e+03 1.9804668992283500e+03 9.3957000000000002e-01 1 0 0 0 0 V -12 0 0 0 0 0 0 1 0 P 193 92 -8.7226462783629732e-01 1.7207290075139114e+00 -5.2056070737825788e-01 1.3076106562288535e+01 1.2922531697774431e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 8 0 P 194 211 2.9311158783897240e-03 5.3752555149700273e-02 -2.1995324781658038e-01 2.6600215177790593e-01 1.3957000000000000e-01 1 0 0 0 0 P 195 331 3.1759291946618406e-01 3.9967604905194953e-01 1.2655854117268379e+00 1.6672042491491539e+00 9.5773554143321526e-01 2 0 0 -92 0 P 196 -321 -6.0173090597412993e-01 1.0800519107475366e+00 2.5983670579928191e+00 2.9195452627380361e+00 4.9359999999999998e-01 1 0 0 0 0 P 197 321 -6.5221812347676422e-01 -4.0707566782054477e-01 1.5727573506906443e+00 1.8188748511303765e+00 4.9359999999999998e-01 1 0 0 0 0 P 198 -211 -4.0663638488017689e-01 4.2709903090390200e-01 -1.2559795267689029e+00 1.3945361552394793e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 111 2.2986081111496354e-01 -4.9818705056104168e-02 1.6232187692062083e-01 3.1604728758040185e-01 1.3497999999999999e-01 2 0 0 -93 0 P 200 211 -1.2037434346537397e-01 4.5842844064854220e-02 -2.6226988656582737e+00 2.6295666323069034e+00 1.3957000000000000e-01 1 0 0 0 0 P 201 -211 3.5831028350061028e-01 1.7120099047261800e-01 -2.0209607644654231e+00 2.0643299723662785e+00 1.3957000000000000e-01 1 0 0 0 0 V -14 0 0 0 0 0 0 1 0 P 202 92 -2.2602175830120486e-01 1.6918747371265646e+00 -2.6480785293408198e+03 2.6482550004322406e+03 3.0524354744471182e+01 2 0 0 -15 0 V -15 0 0 0 0 0 0 7 0 P 203 -213 -5.4948297913438748e-01 9.5903886946949701e-01 -8.9799152358473773e+00 9.0973357600802771e+00 9.4918554093485974e-01 2 0 0 -94 0 P 204 211 2.9889740077264110e-01 -2.5277391376300806e-01 -1.7162699519135116e+00 1.7658699387012955e+00 1.3957000000000000e-01 1 0 0 0 0 P 205 -211 -4.2451348704537578e-01 3.4001512028456304e-02 -1.8315587197478209e+02 1.8315642027084709e+02 1.3957000000000000e-01 1 0 0 0 0 P 206 2224 3.9747452716477527e-01 -1.8937081086197274e-04 -1.3634046587949891e+02 1.3634617772235450e+02 1.1830288337409314e+00 2 0 0 -95 0 P 207 -2214 -3.5552241237768090e-01 6.7454950182330650e-02 -3.9843850756557049e+02 3.9844071052458770e+02 1.2745767545025275e+00 2 0 0 -96 0 P 208 2114 2.1613866127831893e-01 7.8391954525838436e-01 -1.1219864055512307e+03 1.1219873516270043e+03 1.2090175490814592e+00 2 0 0 -97 0 P 209 211 1.9098653104050403e-01 1.0042314476176620e-01 -7.9746109318197693e+02 7.9746113458866546e+02 1.3957000000000000e-01 1 0 0 0 0 V -16 0 0 0 0 0 9 1 0 P 61 1 -8.6065710259298001e-01 3.7912432933034372e+00 -4.1189328693785676e+01 4.1372394837644798e+01 0 2 0 0 -16 0 P 62 21 -8.8522632601036022e-01 3.3748367869032077e+00 -1.7300727107672188e+01 1.7649031345675610e+01 0 2 0 0 -16 0 P 63 21 -1.5621497140726917e-01 4.8573435420028033e-01 -2.0282804347019647e+00 2.0914737631481128e+00 0 2 0 0 -16 0 P 64 21 -1.5358120632735701e+00 1.2830740326538903e+00 -9.9218846240528435e+00 1.0121699074759315e+01 0 2 0 0 -16 0 P 65 21 -2.8124816225447402e+00 7.9134419118784982e-01 -1.1404262529845585e+01 1.1772573310696293e+01 0 2 0 0 -16 0 P 66 21 -2.5993650469852851e+00 -4.8539935980158577e-01 -8.2753623994528347e+00 8.6875735408836903e+00 0 2 0 0 -16 0 P 67 21 -5.7548395374757400e-01 -3.7837025068570346e-01 -3.1084297450257559e+00 3.1838155265947474e+00 0 2 0 0 -16 0 P 68 21 -1.3299732528289634e+00 -3.2515719337466917e+00 -3.5154601680047463e+01 3.5329698104800805e+01 0 2 0 0 -16 0 P 69 -1 8.6065710259298001e-01 -3.7912432933034372e+00 -1.6244622152453920e+02 1.6249273566518880e+02 0 2 0 0 -16 0 P 210 92 -9.8945572367977626e+00 1.8196478207112481e+00 -2.9082909873912354e+02 2.9270099516939217e+02 3.1481653683343659e+01 2 0 0 -17 0 V -17 0 0 0 0 0 0 14 0 P 211 -213 -4.0151496016342902e-01 3.7692035091442104e+00 -3.4327358400619815e+01 3.4544630232420268e+01 7.7190269688648883e-01 2 0 0 -98 0 P 212 331 -1.9103546610924991e+00 2.0569511421273083e+00 -1.7160035389899534e+01 1.7414493202784929e+01 9.5773482498096330e-01 2 0 0 -99 0 P 213 211 -7.3583794373030598e-01 1.5449679177345517e+00 -1.1611060732749708e+01 1.1737316323196051e+01 1.3957000000000000e-01 1 0 0 0 0 P 214 -213 -5.2657313727511046e-01 7.3211451499706859e-01 -2.6863684280968041e+00 2.9409800321932509e+00 7.8709420421889431e-01 2 0 0 -100 0 P 215 111 -1.9886352915998822e+00 2.8516872474544769e-01 -1.0273752022868901e+01 1.0469202059009671e+01 1.3497999999999999e-01 2 0 0 -101 0 P 216 211 -1.2236169289295014e+00 1.1387515839325153e+00 -6.8336246496330801e+00 7.0364692279327503e+00 1.3957000000000000e-01 1 0 0 0 0 P 217 223 -1.2950663359447676e+00 -7.6465123341031382e-01 -7.8257531534250715e+00 8.0066894906056429e+00 7.7638640983667129e-01 2 0 0 -102 0 P 218 223 -1.0194062682557754e+00 -1.0740229285285248e-01 -5.4002943803493828e+00 5.5515999730020722e+00 7.7869022950995559e-01 2 0 0 -103 0 P 219 111 -4.3302487932554351e-01 -1.1282303182206530e+00 -9.0705608394909572e+00 9.1517051821162863e+00 1.3497999999999999e-01 2 0 0 -104 0 P 220 223 -2.3738449997160477e-02 7.3895439371345073e-02 -7.8045195328321135e+00 7.8437923405874406e+00 7.8008274813128187e-01 2 0 0 -105 0 P 221 2112 -4.1253808300065847e-01 -1.2531578894324771e+00 -1.9164148162278675e+01 1.9232471472393811e+01 9.3957000000000002e-01 1 0 0 0 0 P 222 -2214 -1.6527631246943678e-01 -1.3041024854301384e+00 -2.7767373839325042e+01 2.7821954935539765e+01 1.1428591122286682e+00 2 0 0 -106 0 P 223 321 -1.4905537012243913e-01 -1.6963072750784520e+00 -6.0114990459445579e+01 6.0141128978213231e+01 4.9359999999999998e-01 1 0 0 0 0 P 224 -311 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -107 0 V -18 0 0 0 0 0 11 1 0 P 70 1 -5.2814132470876707e-01 -3.7790259024332915e+00 -1.9544912358720660e+02 1.9548636750688598e+02 0 2 0 0 -18 0 P 71 21 -1.2650634913664724e+00 -1.3778845565554025e+00 -8.5462912591169356e+01 8.5483380724291877e+01 0 2 0 0 -18 0 P 72 21 4.4236034888581199e-01 -1.4189626612674393e+00 -1.6214455942675107e+02 1.6215137153107139e+02 0 2 0 0 -18 0 P 73 21 1.5358120632735701e+00 -1.2830740326538903e+00 -1.7580058451842277e+02 1.7581197488989787e+02 0 2 0 0 -18 0 P 74 21 1.7909508627676911e+00 -1.0886553103426566e-01 -6.7699524182289360e+02 6.7699761949916399e+02 0 2 0 0 -18 0 P 75 21 -2.9568382149066377e+00 -1.0292741166592101e+00 -3.3213907999518472e+02 3.3215383598188970e+02 0 2 0 0 -18 0 P 76 21 -1.3929204664533565e+00 -2.8407328198885767e-01 -8.3922590765229089e+01 8.3934630313140232e+01 0 2 0 0 -18 0 P 77 21 -1.9942637464441160e+00 1.5967219838243523e+00 -2.9782333053268803e+02 2.9783428751331968e+02 0 2 0 0 -18 0 P 78 21 -4.1823331179364909e-01 2.1216008959167789e+00 -4.1139307264994937e+02 4.1139875587297439e+02 0 2 0 0 -18 0 P 79 21 -4.4236034888581199e-01 1.4189626612674393e+00 -1.5106009013227225e+02 1.5106740207100455e+02 0 2 0 0 -18 0 P 80 -1 5.2814132470876707e-01 3.7790259024332915e+00 -1.1688392700829701e+02 1.1694619430708735e+02 0 2 0 0 -18 0 P 225 92 -4.7005563049229702e+00 -3.6484863915049548e-01 -2.6890745130300643e+03 2.6892658202107268e+03 3.1728327748096785e+01 2 0 0 -19 0 V -19 0 0 0 0 0 0 18 0 P 226 -211 1.9949917944299295e-01 -1.3749025677242002e+00 -5.6317918871676987e+01 5.6335225417273548e+01 1.3957000000000000e-01 1 0 0 0 0 P 227 213 -1.3609081538419352e+00 -4.4320243975493412e+00 -3.0800857953830581e+02 3.0804434845210523e+02 7.3527737181296549e-01 2 0 0 -108 0 P 228 2114 6.9668643918452122e-01 -9.2490570707507003e-01 -1.2951269679632762e+02 1.2952376562880053e+02 1.2354791157414682e+00 2 0 0 -109 0 P 229 211 -7.2906435289257290e-02 1.1685305944877628e-01 -8.9625240121129135e+00 8.9646687857616740e+00 1.3957000000000000e-01 1 0 0 0 0 P 230 -2224 7.7062045499559184e-01 -1.2284044122682334e+00 -2.4708811747772657e+02 2.4709520529528140e+02 1.1831516997934051e+00 2 0 0 -110 0 P 231 321 4.5803316039516617e-01 3.0198686173057687e-01 -1.1914265633812468e+02 1.1914494194343779e+02 4.9359999999999998e-01 1 0 0 0 0 P 232 -321 -1.6491069397593583e-01 -7.6302358422499372e-01 -1.8525743880335440e+02 1.8525974110277082e+02 4.9359999999999998e-01 1 0 0 0 0 P 233 2212 6.1225979015057819e-01 3.0418751195681504e-01 -2.6175878723717318e+02 2.6176136162268421e+02 9.3827000000000005e-01 1 0 0 0 0 P 234 -211 -6.0720435157590313e-01 -3.6692773639914572e-01 -7.5939756336117725e+01 7.5943198545110960e+01 1.3957000000000000e-01 1 0 0 0 0 P 235 -1114 -8.7484216173256701e-01 -3.5010515751792939e-02 -1.5931011873468503e+02 1.5931750180844546e+02 1.2593159573434576e+00 2 0 0 -111 0 P 236 -213 -2.1712612685434944e+00 -3.2823806221932161e-01 -2.1291580519543123e+02 2.1292812390016576e+02 6.5094539229835768e-01 2 0 0 -112 0 P 237 211 -5.1053935921726790e-01 9.2482005992371052e-01 -1.0321182185381051e+02 1.0321732215451127e+02 1.3957000000000000e-01 1 0 0 0 0 P 238 1114 -5.2623977286571588e-01 9.2029791209866507e-01 -2.2125572499479415e+02 2.2126133210857773e+02 1.1650609189207797e+00 2 0 0 -113 0 P 239 -1114 -1.2537659450274838e+00 1.4775347844706543e+00 -2.8708343490117772e+02 2.8709237032908857e+02 1.1728036628335905e+00 2 0 0 -114 0 P 240 313 1.0067805419488426e-01 1.0460617989003338e+00 -4.2788632014641685e+01 4.2810592006916174e+01 8.8055490487576349e-01 2 0 0 -115 0 P 241 -313 -3.9173806062460098e-01 1.4220257261643379e+00 -1.5962915455210754e+02 1.5963842383939780e+02 8.8530618012404305e-01 2 0 0 -116 0 P 242 -211 7.6871957408836122e-01 1.9251793035913369e+00 -8.1537911820692656e+01 8.1564378186794968e+01 1.3957000000000000e-01 1 0 0 0 0 P 243 211 -3.7273675468090528e-01 6.4964132577639710e-01 -2.9353433551803132e+01 2.9363319083602732e+01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 7 1 0 P 81 2 1.8488247010320389e+00 -1.6008342585849420e+00 7.0399918993020938e+00 7.4526712688031873e+00 0 2 0 0 -20 0 P 82 21 1.5527611081126074e+00 3.5633050659470139e-01 1.4438586644885602e+01 1.4526211577375086e+01 0 2 0 0 -20 0 P 83 21 7.1751238809425899e-01 5.2235835518124177e-02 1.0831306326871731e+01 1.0855171548902975e+01 0 2 0 0 -20 0 P 84 21 6.3314715763410501e-01 4.9505380802813853e-01 6.3261757921053512e+00 6.3770254624458786e+00 0 2 0 0 -20 0 P 85 21 -1.5455237168893123e+00 -9.4820344049031013e-01 1.4517992048568290e+01 1.4630783521271754e+01 0 2 0 0 -20 0 P 86 21 -2.0173726863664050e+00 5.9209092629134409e-02 6.9514804891213959e+00 7.2385343311324162e+00 0 2 0 0 -20 0 P 87 -2 -1.8488247010320389e+00 1.6008342585849420e+00 4.9193045353882958e-01 2.4945578104594666e+00 0 2 0 0 -20 0 P 244 92 -6.5947574941474607e-01 1.4625802279788491e-02 6.0597463654393287e+01 6.3574955520390759e+01 1.9216847969841190e+01 2 0 0 -21 0 V -21 0 0 0 0 0 0 11 0 P 245 111 2.4054182034315141e-01 1.6817783133907804e-01 1.5024392890041587e+00 1.5367783079648263e+00 1.3497999999999999e-01 2 0 0 -117 0 P 246 223 1.5682006719996129e+00 -1.1011446231514121e+00 9.9834273520692971e+00 1.0195555671111880e+01 7.8023132463450573e-01 2 0 0 -118 0 P 247 211 -1.8417357799866718e-03 1.4365836300598361e-03 2.2648518148254004e-01 2.6604657128854065e-01 1.3957000000000000e-01 1 0 0 0 0 P 248 111 1.6243441749863650e+00 -1.5551870214874833e-01 6.9439000540971643e+00 7.1343288140665875e+00 1.3497999999999999e-01 2 0 0 -119 0 P 249 331 2.8820561273211375e-02 -1.3102248921275680e-01 8.7919471241252012e+00 8.8449856661032378e+00 9.5783071715555534e-01 2 0 0 -120 0 P 250 113 2.8206140318432488e-01 2.4555021207596181e-01 1.5814260176302563e+01 1.5839299583756057e+01 8.0791883154731026e-01 2 0 0 -121 0 P 251 111 8.6230201664537001e-02 2.4224115023465881e-01 6.2379615320978810e-01 6.8808259947875927e-01 1.3497999999999999e-01 2 0 0 -122 0 P 252 111 -1.1161104965547421e+00 -3.5821412312951101e-01 4.1793640298044643e+00 4.3427322381828386e+00 1.3497999999999999e-01 2 0 0 -123 0 P 253 221 2.6877585511991986e-01 -5.4721732157604386e-01 1.9792203094410024e+00 2.1421255315998735e+00 5.4744999999999999e-01 2 0 0 -124 0 P 254 -211 -1.6570630102597235e+00 4.4995918179559341e-01 1.0065893431001440e+01 1.0212248108738404e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 -1.9834351953914149e+00 1.2003781024229085e+00 4.8673055385567743e-01 2.3727724280997657e+00 1.3497999999999999e-01 2 0 0 -125 0 V -22 0 0 0 0 0 2 1 0 P 88 1 2.3497909442372764e+00 -5.4846848995548543e-02 -3.6728179136005600e+01 3.6803310561754920e+01 0 2 0 0 -22 0 P 89 -1 -2.3497909442372764e+00 5.4846848995548543e-02 -7.4108419020636703e+01 7.4145682918135776e+01 0 2 0 0 -22 0 P 256 92 0 0 -1.1083659815664231e+02 1.1094899347989070e+02 4.9927610861951086e+00 2 0 0 -23 0 V -23 0 0 0 0 0 0 4 0 P 257 -213 1.8256691796405293e+00 5.6273475595900277e-02 -3.1485274250821060e+01 3.1546713134329167e+01 7.3237986912236286e-01 2 0 0 -126 0 P 258 213 4.5058259894467330e-02 6.2491642775392466e-02 -1.1813081671562822e+01 1.1821298498454530e+01 4.3389417874450209e-01 2 0 0 -127 0 P 259 -211 -1.1915895614269676e+00 -4.6821900866330639e-02 -4.7247582704814576e+01 4.7262835602685712e+01 1.3957000000000000e-01 1 0 0 0 0 P 260 213 -6.7913787810802906e-01 -7.1943217504962104e-02 -2.0290659529443822e+01 2.0318146244421271e+01 8.0610085340163251e-01 2 0 0 -128 0 V -24 0 0 0 0 0 4 1 0 P 90 1 7.5769167851755326e-01 1.2556996586281193e+00 -5.8789782529126677e+00 6.0591471025709227e+00 0 2 0 0 -24 0 P 91 21 8.1858222642740464e-01 9.3508705088232957e-01 -6.6895240298497542e+00 6.8039838624211884e+00 0 2 0 0 -24 0 P 92 21 4.8604162704783915e-01 -4.4805287193126347e-01 -4.8593638405727352e-01 8.2044013103932334e-01 0 2 0 0 -24 0 P 93 -1 -7.5769167851755326e-01 -1.2556996586281193e+00 -1.6210048017782981e+00 2.1859860200289072e+00 0 2 0 0 -24 0 P 261 92 1.3046238534752441e+00 4.8703417895106593e-01 -1.4675443468597994e+01 1.5869557116060342e+01 5.8766449926265576e+00 2 0 0 -25 0 V -25 0 0 0 0 0 0 6 0 P 262 -211 -1.2605936402499596e-01 1.5057371897507288e-01 -1.9934474466451280e+00 2.0079531656740279e+00 1.3957000000000000e-01 1 0 0 0 0 P 263 211 8.4095744167351105e-01 -1.1469816322793629e-01 -1.8247275765362030e+00 2.0172941284863750e+00 1.3957000000000000e-01 1 0 0 0 0 P 264 2112 -3.2022114448484328e-03 3.5485340289505374e-01 -1.9776757554839368e+00 2.2180902529954225e+00 9.3957000000000002e-01 1 0 0 0 0 P 265 113 4.2082129723615885e-01 8.6963761258957373e-01 -5.0332734567012771e+00 5.1794887343703202e+00 7.4826580711497215e-01 2 0 0 -129 0 P 266 -2212 2.9848035908897141e-01 7.6144801945563514e-02 -2.6579725499699327e+00 2.8354994665700217e+00 9.3827000000000005e-01 1 0 0 0 0 P 267 213 -1.2637366905355291e-01 -8.4947719422626133e-01 -1.1883466832615162e+00 1.6112313679641745e+00 6.6806951266502279e-01 2 0 0 -130 0 V -26 0 0 0 0 0 3 1 0 P 94 1 -4.8287486780671490e-01 1.2761023729390071e+00 -1.1383200487310590e+00 1.7769012177166736e+00 0 2 0 0 -26 0 P 95 21 1.5621497140726917e-01 -4.8573435420028033e-01 -2.3619765661507044e+00 2.4164590373493215e+00 0 2 0 0 -26 0 P 96 -1 4.8287486780671490e-01 -1.2761023729390071e+00 -2.2017850240909422e+02 2.2018272985980460e+02 0 2 0 0 -26 0 P 268 92 1.5621497140726920e-01 -4.8573435420028033e-01 -2.2367879902397598e+02 2.2437609011487061e+02 1.7668173121411101e+01 2 0 0 -27 0 V -27 0 0 0 0 0 0 6 0 P 269 313 -2.8543117315447136e-01 2.2482482489894967e-01 -9.0341200093274154e-01 1.3217361221462267e+00 8.9376505674459228e-01 2 0 0 -131 0 P 270 221 4.1238714735209003e-01 2.2411899452297654e-01 -9.6698372983086163e+00 9.6966874426923582e+00 5.4744999999999999e-01 2 0 0 -132 0 P 271 -313 -7.1452535519722837e-01 1.2615975732829462e-01 -3.4389877916850984e+00 3.6634749075678412e+00 1.0334159856665626e+00 2 0 0 -133 0 P 272 223 2.9518440687517600e-01 -6.7587691309211138e-03 -6.1846089388196880e+01 6.1851744831168652e+01 7.8255129680869040e-01 2 0 0 -134 0 P 273 223 -7.1475168838994643e-02 -2.6715068557088228e-01 -1.7827325999504673e+01 1.7843612536382814e+01 7.1026605394107112e-01 2 0 0 -135 0 P 274 113 5.2007511437069753e-01 -7.8692847624869777e-01 -1.2999314654534800e+02 1.2999883427491272e+02 7.6748258910931000e-01 2 0 0 -136 0 V -28 0 0 0 0 0 2 1 0 P 97 3 2.7933547404477370e-03 4.5160821789481753e-01 -6.9749067594193650e+02 6.9749082215017336e+02 0 2 0 0 -28 0 P 98 -3 -2.7933547404477370e-03 -4.5160821789481753e-01 -8.5705274275953133e-02 4.5967725562567846e-01 0 2 0 0 -28 0 P 275 92 0 0 -6.9757638121621244e+02 6.9795049940579906e+02 2.2849332377506720e+01 2 0 0 -29 0 V -29 0 0 0 0 0 0 7 0 P 276 -313 7.4754027829760331e-02 6.7622667534388892e-01 -5.6128142380157919e+02 5.6128242301330602e+02 8.1167005533660608e-01 2 0 0 -137 0 P 277 111 3.1985609755234451e-01 -2.4118651425109322e-01 -5.4722554391411123e+01 5.4724187134932819e+01 1.3497999999999999e-01 2 0 0 -138 0 P 278 -211 -5.7660524700388271e-01 1.8519245211609431e-01 -1.1572207736933230e+01 1.1588884396128494e+01 1.3957000000000000e-01 1 0 0 0 0 P 279 323 4.7016327779864553e-01 1.2608243070388506e-01 -5.0242507469607531e+01 5.0252637084772871e+01 8.8375723657481486e-01 2 0 0 -139 0 P 280 -323 -2.9340181810227189e-01 -1.0902889962350583e-01 -1.6654982782813086e+01 1.6682011254030524e+01 8.9614510877530373e-01 2 0 0 -140 0 P 281 321 -1.7091842733929916e-01 -3.0692804215831166e-02 -6.8335184307022190e-01 8.6067755777773114e-01 4.9359999999999998e-01 1 0 0 0 0 P 282 221 1.7615208926470335e-01 -6.0659334007343801e-01 -2.4193531907980739e+00 2.5596789648505904e+00 5.4744999999999999e-01 2 0 0 -141 0 V -30 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 283 211 5.6975865540499546e+00 1.1330876234577410e+01 1.5021801775047430e+02 1.5075252430871902e+02 1.3957000000000000e-01 1 0 0 0 0 P 284 111 1.3749483431976381e+00 2.8393304901684724e+00 4.1567996491050160e+01 4.1687753986743168e+01 1.3497999999999999e-01 2 0 0 -142 0 V -31 0 0 0 0 0 0 2 0 P 285 22 -4.8425593179708420e-01 -3.7941731719233979e-01 6.9555917814895751e-01 9.2858164873819682e-01 0 1 0 0 0 0 P 286 111 2.7677428254205411e-01 -2.0684450063775386e-01 2.5900813569619241e-01 4.5243061973916815e-01 1.3497999999999999e-01 2 0 0 -143 0 V -32 0 0 0 0 0 0 2 0 P 287 -211 1.2086441549120626e-01 -6.6626754639345240e-02 2.0268340549126157e-01 2.8214832823771546e-01 1.3957000000000000e-01 1 0 0 0 0 P 288 111 -6.1343442008773696e-01 -6.0861248761949253e-02 -2.6379713392407106e-01 6.8396959553462333e-01 1.3497999999999999e-01 2 0 0 -144 0 V -33 0 0 0 0 0 0 3 0 P 289 211 1.5650772444410885e-01 1.2556032321315094e-01 -2.8281242327341727e-01 3.7379501633093848e-01 1.3957000000000000e-01 1 0 0 0 0 P 290 -211 2.8637689616156098e-01 -6.1545467400357816e-02 -2.1606036427427738e-02 3.2518637259694833e-01 1.3957000000000000e-01 1 0 0 0 0 P 291 111 -1.1201487658692037e-01 -1.3541652443332075e-01 -9.2181961874814866e-02 2.4000433779720101e-01 1.3497999999999999e-01 2 0 0 -145 0 V -34 0 3.2060726993416450e-05 -1.8244415792794160e-05 -3.4839902881546210e-05 6.3385020118851183e-05 0 2 0 P 292 22 9.1312929032954696e-02 2.4513449271720920e-02 -7.6611343405081037e-02 1.2168918662767823e-01 0 1 0 0 0 0 P 293 22 2.2605930051943775e-02 -8.9339896663646945e-02 -4.7182542731980512e-02 1.0353181901251253e-01 0 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 294 211 2.3521656847716066e-01 -5.7442171875550820e-02 -2.1861578301465836e+00 2.2039492463319497e+00 1.3957000000000000e-01 1 0 0 0 0 P 295 111 -2.0536403374506718e-01 -4.5054776488921472e-01 -5.3556333102086606e-01 7.4176502798182520e-01 1.3497999999999999e-01 2 0 0 -146 0 V -36 0 -9.1559870712433641e-05 -3.3300474767159021e-05 4.9569495795866960e-05 1.2619656257276831e-04 0 2 0 P 296 22 -8.4024681070091131e-02 5.0886996525857696e-03 1.0502499963480008e-01 1.3459677723249733e-01 0 1 0 0 0 0 P 297 22 -1.1196567331546031e-01 -7.6370712176619573e-02 1.0819986839051790e-03 1.3553585651221753e-01 0 1 0 0 0 0 V -37 0 0 0 0 0 0 3 0 P 298 211 2.6686053765618595e-01 -2.7853579602186887e-02 -2.9605080343987927e-01 4.2322125604960115e-01 1.3957000000000000e-01 1 0 0 0 0 P 299 -211 7.1975412359191374e-02 -6.6361870680359092e-02 -8.8395747329463348e-01 9.0024716459309384e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 4.8433143600459772e-01 9.2007420279410140e-02 -1.5121135138934403e+00 1.5961670290379748e+00 1.3497999999999999e-01 2 0 0 -147 0 V -38 0 0 0 0 0 0 2 0 P 301 -211 1.3700899235692003e+00 2.0647988874548268e-01 -5.3617076847975170e+01 5.3635158150691581e+01 1.3957000000000000e-01 1 0 0 0 0 P 302 211 2.3655720987829679e-01 -2.7391966606332724e-01 -6.2605275895915451e+00 6.2725335217867562e+00 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 303 -211 7.6058597263690339e-02 9.5331259892183606e-02 -1.5955122519410254e+00 1.6062416039700482e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 211 1.2718162954678505e-01 -1.6596692473159425e-01 -7.0263617142971331e+00 7.0308576227967796e+00 1.3957000000000000e-01 1 0 0 0 0 P 305 111 4.1808261230424149e-01 1.7894092992830260e-01 -9.1160697680698899e+00 9.1284040523977996e+00 1.3497999999999999e-01 2 0 0 -148 0 V -40 0 0 0 0 0 0 2 0 P 306 211 -2.9122588501405933e-01 -3.3684082652828878e-01 -4.6635582309991701e+00 4.6868464256191062e+00 1.3957000000000000e-01 1 0 0 0 0 P 307 111 3.7090530361194302e-01 -7.5125696684591542e-02 -2.9318742625803669e+00 2.9592770918808839e+00 1.3497999999999999e-01 2 0 0 -149 0 V -41 0 0 0 0 0 0 3 0 P 308 -211 1.4504900297074907e-01 3.5879574393377839e-01 -5.5188056275372821e-01 6.8834986712657509e-01 1.3957000000000000e-01 1 0 0 0 0 P 309 211 -9.8582801360054262e-02 1.2670073071007715e-01 -2.1199629453041532e-01 3.0032292233709035e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 2.8417357453212544e-01 -7.3859595469430273e-02 -3.5108605503223167e-01 4.7716965404703654e-01 1.3497999999999999e-01 2 0 0 -150 0 V -42 0 0 0 0 0 0 2 0 P 311 22 -1.0730730754671272e-01 -1.8672610568622816e-01 -1.3883704539384237e-01 2.5623665227941311e-01 0 1 0 0 0 0 P 312 111 -9.5442262922557208e-01 2.9991339357873487e-01 -2.4945507257508890e+00 2.6910729314847739e+00 1.3497999999999999e-01 2 0 0 -151 0 V -43 0 0 0 0 0 0 3 0 P 313 211 -6.3323774426540858e-01 -1.1255111736749875e-01 -1.4589519703761096e+00 1.6005244239146581e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 -211 -4.2660195365594117e-01 -3.9901435866671309e-01 -1.3159947460453554e+00 1.4465557859288571e+00 1.3957000000000000e-01 1 0 0 0 0 P 315 111 3.3062169236304978e-02 -1.2448725413581298e-01 -4.1704245407895840e-01 4.5687437264644720e-01 1.3497999999999999e-01 2 0 0 -152 0 V -44 0 0 0 0 0 0 2 0 P 316 2212 -1.2343932503498354e+00 -1.3486551019384820e+00 -4.2743490607469745e+00 4.7426793868553325e+00 9.3827000000000005e-01 1 0 0 0 0 P 317 -211 -2.4842699916712615e-02 -1.8761032490053006e-01 -2.6275403422430921e-01 3.5261063675048676e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 318 -211 -5.4010433013124859e-01 -6.4877349465559186e-01 -2.4200749546584195e+00 2.5668779296762643e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 111 -8.8375737919922326e-01 -7.6861677312377114e-02 -1.7360977083115159e+00 1.9542747186444511e+00 1.3497999999999999e-01 2 0 0 -153 0 V -46 0 0 0 0 0 0 2 0 P 320 -2112 -2.6766242311314188e+00 -2.6825556264374533e+00 -6.6946110588537957e+00 7.7499052237971684e+00 9.3957000000000002e-01 1 0 0 0 0 P 321 211 -5.8939249612105094e-01 -3.3570415391532266e-01 -1.3681636800349863e+00 1.5334381088608311e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 322 -211 -1.5413501151578968e-01 -8.7100911742999540e-02 -5.3553172868274723e-01 5.8104921299952383e-01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 -9.7176262016929679e-02 -1.1593191018755580e+00 -1.2658613052601357e+00 1.7245545658018560e+00 1.3497999999999999e-01 2 0 0 -154 0 V -48 0 0 0 0 0 0 2 0 P 324 211 -5.9509985910772289e-01 -2.4537451572840885e-01 2.2934680228601213e-02 6.5905863148597865e-01 1.3957000000000000e-01 1 0 0 0 0 P 325 111 2.1482702594349154e-01 4.3850930558939641e-02 2.9412601594858329e-01 3.9090058690720431e-01 1.3497999999999999e-01 2 0 0 -155 0 V -49 0 0 0 0 0 0 2 0 P 326 22 -1.4729585917556347e+00 -8.9874920679701553e-01 -2.8534654522184699e-01 1.7489367628976895e+00 0 1 0 0 0 0 P 327 111 -2.7911935781948527e-01 -5.7470410380588333e-01 -4.0459986903085787e-01 7.6818817828750319e-01 1.3497999999999999e-01 2 0 0 -156 0 V -50 0 0 0 0 0 0 2 0 P 328 321 -3.0593436265306406e-01 -6.2947238346167100e-01 5.9462952582352520e-02 8.5849176963012552e-01 4.9359999999999998e-01 1 0 0 0 0 P 329 -211 -3.9457137801730585e-01 -3.2973587278357458e-01 4.3248238259398969e-01 6.8624566614660343e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 330 321 -7.6312948724507468e-01 -9.8292277421156843e-02 2.8732408547725447e-01 9.5824009319111092e-01 4.9359999999999998e-01 1 0 0 0 0 P 331 -321 -3.5037573636869501e-01 -1.4421731021473594e-01 2.2914831503643365e-01 6.6310760777230970e-01 4.9359999999999998e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 332 -321 -6.1284827128046937e-01 1.6452355202546848e-01 3.5949133910142839e-01 8.8063953219888724e-01 4.9359999999999998e-01 1 0 0 0 0 P 333 111 -3.0170913494937390e-01 -3.8716424826638957e-01 1.4014817664985008e-01 5.2800158055242186e-01 1.3497999999999999e-01 2 0 0 -157 0 V -53 0 0 0 0 0 0 2 0 P 334 321 -4.1090121515246270e-01 8.6110473017422617e-01 1.3300828011507695e-01 1.0824386021947703e+00 4.9359999999999998e-01 1 0 0 0 0 P 335 111 -7.5220425311026118e-01 6.3715343538457803e-01 4.0665434048955834e-01 1.0748781752638450e+00 1.3497999999999999e-01 2 0 0 -158 0 V -54 0 0 0 0 0 0 1 0 P 336 310 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521350e-01 4.9767000000000000e-01 2 0 0 -159 0 V -55 0 -2.0392913757103350e-04 5.1750334191608572e-04 -6.7891358905529012e-05 5.6406105473422305e-04 0 2 0 P 337 22 -6.1262135287171917e-03 6.2046980428774039e-02 1.7479980352246530e-02 6.4752667787845081e-02 0 1 0 0 0 0 P 338 22 -4.2071158491946425e-01 1.0211233295329261e+00 -1.5958129316144423e-01 1.1158661572648105e+00 0 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 339 111 -1.4339050666386671e-01 2.7065318764901369e-01 6.5930004188256536e-02 3.4114564519887419e-01 1.3497999999999999e-01 2 0 0 -160 0 P 340 111 -2.4164224281110458e-01 2.3923226942222706e-01 1.2253120834007535e-01 3.8581932256040363e-01 1.3497999999999999e-01 2 0 0 -161 0 P 341 111 -3.9992227592409368e-01 8.5632076445814231e-01 2.8390879468236811e-02 9.5511712415779881e-01 1.3497999999999999e-01 2 0 0 -162 0 V -57 0 0 0 0 0 0 3 0 P 342 211 -2.4471078018673106e-01 1.1262759358575185e+00 1.9667685510391394e-01 1.1775153586535054e+00 1.3957000000000000e-01 1 0 0 0 0 P 343 -211 -3.4371558545151815e-01 1.8125521817847505e+00 2.0244398499703575e-01 1.8611687637977430e+00 1.3957000000000000e-01 1 0 0 0 0 P 344 111 -6.6812755286939696e-02 2.8553134729495211e-01 2.7577383408391491e-02 3.2399414660261450e-01 1.3497999999999999e-01 2 0 0 -163 0 V -58 0 0 0 0 0 0 2 0 P 345 -211 -6.5742788697386811e-01 1.5736712111710887e+00 -2.2396981487714127e-01 1.7257736729698094e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 211 -6.4981483139338791e-01 9.5943557796605505e-01 -8.2795563541454520e-01 1.4310018387411592e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 347 311 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 2 0 0 -164 0 P 348 211 -5.4408604599649928e-03 7.8852405375660795e-02 -6.5848956842328984e-02 1.7338735482524456e-01 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 349 -321 -5.4942812877044434e-01 1.7387252193230223e+00 -7.6676258835511502e-01 2.0387747506517533e+00 4.9359999999999998e-01 1 0 0 0 0 P 350 111 -4.0651166023708565e-02 8.4356457122449835e-01 -8.0730849076954858e-01 1.1761038656482961e+00 1.3497999999999999e-01 2 0 0 -165 0 V -61 0 0 0 0 0 0 2 0 P 351 211 1.2851692555344616e+00 9.4793127548327738e-01 1.6759754690659709e+00 2.3191824585877794e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 -211 5.8356045582124039e-02 5.1459139511083926e-02 8.5131556941358835e-02 1.8105424044319968e-01 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 353 321 1.1422211627213763e+00 3.6857937973079874e-01 1.3086573151746401e+00 1.8430260096622104e+00 4.9359999999999998e-01 1 0 0 0 0 P 354 -211 3.6400574221648024e-01 4.1054714337334614e-01 1.1326311444648089e+00 1.2662473027060110e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 3 0 P 355 -211 3.0563832193197818e-02 9.2061879970179963e-02 4.3649550299795219e-02 1.7548391870297442e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 211 -7.2872017997011734e-02 9.1957200922732126e-03 7.2495685068559662e-02 1.7358082131540922e-01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 2.1791854631083843e-01 9.4921103362853254e-02 1.7509511780519976e-01 3.2461732758598588e-01 1.3497999999999999e-01 2 0 0 -166 0 V -64 0 0 0 0 0 0 2 0 P 358 -311 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 2 0 0 -167 0 P 359 111 4.1104135675830361e-01 3.7329422097730236e-01 8.9565830231595311e-01 1.0624156283151398e+00 1.3497999999999999e-01 2 0 0 -168 0 V -65 0 0 0 0 0 0 2 0 P 360 321 9.1246343574899591e-01 8.1459452796934884e-01 2.5265770799552967e+00 2.8501555163765890e+00 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 8.2828924236471579e-01 1.0348355579946267e+00 4.1597256715107758e+00 4.3680367613188578e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 362 -311 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 2 0 0 -169 0 P 363 -211 4.3159119413565189e-01 4.0336422123606865e-02 4.7466589796963654e-01 6.5778832872018422e-01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 1 0 P 364 130 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 365 -211 1.3272235991429066e-01 1.6818792182867751e-01 2.9346844832497537e-01 3.8923760986386785e-01 1.3957000000000000e-01 1 0 0 0 0 P 366 111 -2.9874749872677647e-01 -3.6603066376396853e-01 1.9711899722296045e+00 2.0315112654941259e+00 1.3497999999999999e-01 2 0 0 -170 0 V -69 0 0 0 0 0 0 3 0 P 367 211 2.7848348520160093e-01 -3.3423424484720043e-01 3.8549778481142249e-01 5.9779085720101344e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 -211 3.5899433419374238e-02 -1.2781310195533430e-01 1.1729520868379965e-01 2.2552806750259019e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 221 2.0182479300034090e-01 -1.7797298332214723e-01 4.3753450814863803e-01 7.5069672850165425e-01 5.4744999999999999e-01 2 0 0 -171 0 V -70 0 0 0 0 0 0 2 0 P 370 211 6.8983184216840976e-01 -4.1143035497139790e-01 7.7094495687011755e-01 1.1220422536093815e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 -211 -1.8857073083959253e-01 -2.0366756203949593e-02 7.6623657865404549e-01 8.0160589110553970e-01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 372 2212 6.5675069035641587e-01 -9.7147107194644045e-01 2.5255427405922277e+00 2.9383318805693981e+00 9.3827000000000005e-01 1 0 0 0 0 P 373 -211 -9.6340321130723439e-03 -7.3329938373576167e-02 1.1267356300490225e-01 1.9402373859104938e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 374 22 1.5114081988176223e-01 -1.0421467584987865e+00 1.1928799948306383e+00 1.5911870084157937e+00 0 1 0 0 0 0 P 375 22 -2.9095298049396429e-01 -3.9055249343160792e-01 5.6051343288466704e-01 7.4253632599901898e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 376 -2112 7.6964311807977337e-01 -1.3732545698925434e+00 3.0166237874413904e+00 3.5300126774270302e+00 9.3957000000000002e-01 1 0 0 0 0 P 377 111 -6.7018424288472503e-02 -1.6185368657039093e-01 3.0847430386955427e-01 3.7955774474820320e-01 1.3497999999999999e-01 2 0 0 -172 0 V -74 0 0 0 0 0 0 2 0 P 378 22 2.2640706598129223e-01 -9.7084278252676171e-01 2.8430472060192771e+00 3.0127584177236284e+00 0 1 0 0 0 0 P 379 22 3.3687108725417347e-01 -6.6042525678135389e-01 3.8569431758823236e+00 3.9275506758293717e+00 0 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 380 -211 3.4851583694759375e-01 -5.0471081241815048e-02 1.5589876174455641e+00 1.6043480903138185e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.5571906859191427e-01 -9.5022757446219552e-01 2.4377721778895882e+00 2.6439404854725366e+00 1.3497999999999999e-01 2 0 0 -173 0 V -76 0 0 0 0 0 0 2 0 P 382 211 4.5431790825533552e-01 -3.9623843775284906e-01 3.5975213639881711e+00 3.6503492176181767e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 111 1.7728176132795945e-01 -5.2125332995004325e-01 9.1361878168253998e+00 9.1537577683480578e+00 1.3497999999999999e-01 2 0 0 -174 0 V -77 0 0 0 0 0 0 2 0 P 384 -211 -3.1360534094101078e-01 -1.4326321398964859e+00 1.5775650170230223e+01 1.5844286075318005e+01 1.3957000000000000e-01 1 0 0 0 0 P 385 111 -2.9591524801907926e-01 -3.7429873800469604e-01 2.8371673518408707e+00 2.8801742242499566e+00 1.3497999999999999e-01 2 0 0 -175 0 V -78 0 0 0 0 0 0 2 0 P 386 211 -5.1234342909888853e-01 1.6481351159925531e-01 1.3854720010185996e+01 1.3865871975050640e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 3.9132925495103138e-02 -3.1093235958530552e-01 1.6086598090315931e+01 1.6090216531726703e+01 1.3497999999999999e-01 2 0 0 -176 0 V -79 0 0 0 0 0 0 3 0 P 388 211 -2.2010665653869918e-01 -3.7840520821899098e-01 1.0356827592199917e+01 1.0367014758420739e+01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 1.8014414327519915e-01 -5.0257743408370981e-01 1.6312098132895112e+01 1.6321429510668075e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -1.3564321600352311e-01 -4.5941905201115307e-01 2.0299606338515286e+01 2.0305706144985173e+01 1.3497999999999999e-01 2 0 0 -177 0 V -80 0 0 0 0 0 0 2 0 P 391 -211 -3.6013316151179109e-01 1.3581563341815253e-01 1.1230011184642867e+01 1.1237471814087240e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 211 -7.1208628990636291e-02 -1.2484204621028375e-01 1.6410652982116831e+00 1.6532487118516974e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 393 -211 -5.1257537386430607e-01 -8.8186007329528260e-01 4.2945534614920597e+01 4.2957872780772185e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 111 -7.3755146927003945e-01 -2.9265144780695673e-01 1.9561541711028688e+01 1.9578093899878024e+01 1.3497999999999999e-01 2 0 0 -178 0 V -82 0 0 0 0 0 0 2 0 P 395 211 -6.3436402900425559e-01 5.8402474956215134e-01 2.5205975701515957e+01 2.5221106111344689e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 1.7155332809383256e-01 -9.2134191860241137e-05 6.0071690966261970e+00 6.0111338954251865e+00 1.3497999999999999e-01 2 0 0 -179 0 V -83 0 0 0 0 0 0 2 0 P 397 22 9.0896224106974899e-01 2.6426185446286166e-01 3.5422143972163397e+01 3.5434789829602288e+01 0 1 0 0 0 0 P 398 111 9.4175056615804026e-02 5.1944433037490578e-01 1.7238859340118029e+01 1.7247468866544502e+01 1.3497999999999999e-01 2 0 0 -180 0 V -84 0 0 0 0 0 0 2 0 P 399 -211 1.7998652190564260e-01 -1.4562572699266582e-01 1.6405261095718068e+01 1.6407488333197456e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 111 6.1074171706580428e-03 6.1650547455272764e-01 3.0940450362644491e+01 3.0946886831220446e+01 1.3497999999999999e-01 2 0 0 -181 0 V -85 0 0 0 0 0 0 2 0 P 401 211 1.3838395600779609e+00 7.7675880220554036e-02 5.2136695552433721e+01 5.2155302207757046e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 111 -4.5746423227123197e-02 -1.3960526043366997e-02 9.2721574462017475e+00 9.2732632303348321e+00 1.3497999999999999e-01 2 0 0 -182 0 V -86 0 0 0 0 0 0 2 0 P 403 211 7.2857996074761644e-01 4.1553357159059978e-01 6.2819157675742417e+01 6.2824911840630620e+01 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 9.5901527558797967e-02 7.1498808094299482e-02 5.7003466445290741e+01 5.7003762820947479e+01 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 405 -211 5.5026146329129742e-02 -4.6602149520370451e-01 2.1850271128066328e+01 2.1855755124581734e+01 1.3957000000000000e-01 1 0 0 0 0 P 406 211 8.8140392276748003e-01 -1.5355520998161576e+00 9.7032872564722794e+01 9.7049124834142390e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 4.3721337395780346e-01 -1.2838661014577484e+00 8.1948224174508795e+01 8.1959557909110188e+01 1.3497999999999999e-01 2 0 0 -183 0 V -88 0 0 0 0 0 0 2 0 P 408 -211 7.7031758809808171e-01 1.2716369997181484e-01 1.0215387523999424e+02 1.0215695407619754e+02 1.3957000000000000e-01 1 0 0 0 0 P 409 211 4.9057761450151387e-02 1.3955350880649811e-01 6.2765312554445902e+00 6.2798253344540997e+00 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 3 0 P 410 111 -2.1677261634769962e-02 2.1837712318713929e-02 2.0777508768179796e+01 2.0777969992314929e+01 1.3497999999999999e-01 2 0 0 -184 0 P 411 111 6.9883225600702974e-03 -8.7477035247187127e-02 1.3332849320704190e+01 1.3333821345636443e+01 1.3497999999999999e-01 2 0 0 -185 0 P 412 111 -1.4144950788101865e-01 1.2218752917353191e-01 4.8466256206489128e+01 4.8466804598910905e+01 1.3497999999999999e-01 2 0 0 -186 0 V -90 0 0 0 0 0 0 3 0 P 413 -211 6.9092256790205822e-02 -7.3852907243934229e-02 8.5719036118345215e+01 8.5719209403930748e+01 1.3957000000000000e-01 1 0 0 0 0 P 414 211 1.5804983505946495e-02 1.4777288371142786e-02 1.8221189996498669e+01 1.8221737371588869e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 2.1106826363844720e-02 8.4567718804202538e-02 2.6846062152839943e+02 2.6846066961142020e+02 1.3497999999999999e-01 2 0 0 -187 0 V -91 0 0 0 0 0 0 2 0 P 416 211 -8.7858801090971057e-03 -5.9160013497779995e-01 6.1462034723411580e+02 6.1462064786490976e+02 1.3957000000000000e-01 1 0 0 0 0 P 417 -211 -1.4857797705621353e-01 -8.8889190883779212e-01 3.5239021191337071e+02 3.5239139197258504e+02 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 418 211 1.9173187324304894e-01 1.4177184931694289e-01 4.1974107468740074e-01 5.0251639093244382e-01 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 2.4777939303405997e-02 1.4976450907929015e-01 3.7345849962036537e-01 4.2660800542720539e-01 1.3957000000000000e-01 1 0 0 0 0 P 420 221 1.0108310691972915e-01 1.0813969065571651e-01 4.7238583741907175e-01 7.3807985278950483e-01 5.4744999999999999e-01 2 0 0 -188 0 V -93 0 8.8614260160638382e-05 -1.9205743115992772e-05 6.2577143800353726e-05 1.2184024074772208e-04 0 2 0 P 421 22 1.4937475289244201e-01 -7.2625272438234315e-02 1.6253872286247756e-01 2.3239208985714457e-01 0 1 0 0 0 0 P 422 22 8.0486058222521528e-02 2.2806567382130150e-02 -2.1684594185671696e-04 8.3655197723257274e-02 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 423 -211 -7.8204128223218805e-01 7.5614889943791963e-01 -7.4861984916674462e+00 7.5661084691392366e+00 1.3957000000000000e-01 1 0 0 0 0 P 424 111 2.3255830309780054e-01 2.0288997003157741e-01 -1.4937167441799306e+00 1.5312272909410396e+00 1.3497999999999999e-01 2 0 0 -189 0 V -95 0 0 0 0 0 0 2 0 P 425 2212 4.5647545228043396e-01 -1.1140433831688563e-01 -1.2126566885452833e+02 1.2127020893069391e+02 9.3827000000000005e-01 1 0 0 0 0 P 426 211 -5.9000925115658708e-02 1.1121496750602367e-01 -1.5074797024970575e+01 1.5075968791660573e+01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 427 -2212 -1.3072230570276372e-01 -1.7892225551353019e-01 -2.9712410467673669e+02 2.9712566875320618e+02 9.3827000000000005e-01 1 0 0 0 0 P 428 111 -2.2480010667491718e-01 2.4637720569586083e-01 -1.0131440288883377e+02 1.0131504177138149e+02 1.3497999999999999e-01 2 0 0 -190 0 V -97 0 0 0 0 0 0 2 0 P 429 2112 2.9357461669539409e-01 8.3186522226129234e-01 -1.0235777711237882e+03 1.0235785824822296e+03 9.3957000000000002e-01 1 0 0 0 0 P 430 111 -7.7435955417075167e-02 -4.7945677002907923e-02 -9.8408634427442522e+01 9.8408769144774695e+01 1.3497999999999999e-01 2 0 0 -191 0 V -98 0 0 0 0 0 0 2 0 P 431 -211 7.8595314844738667e-02 2.1843479597838567e-01 -1.8052883068822703e+00 1.8254962721067158e+00 1.3957000000000000e-01 1 0 0 0 0 P 432 111 -4.8011027500816772e-01 3.5507687131658252e+00 -3.2522070093737547e+01 3.2719133960313556e+01 1.3497999999999999e-01 2 0 0 -192 0 V -99 0 0 0 0 0 0 2 0 P 433 22 -6.1183810521068949e-01 3.8868096624442550e-01 -3.0994279392832174e+00 3.1830602117016138e+00 0 1 0 0 0 0 P 434 113 -1.2985165558818097e+00 1.6682701758828831e+00 -1.4060607450616317e+01 1.4231432991083315e+01 6.0310237416879398e-01 2 0 0 -193 0 V -100 0 0 0 0 0 0 2 0 P 435 -211 -3.7918697642735721e-01 6.7511573006078118e-01 -1.1669516784687082e+00 1.4074160780837193e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -1.4738616084775324e-01 5.6998784936287329e-02 -1.5194167496280955e+00 1.5335639541095309e+00 1.3497999999999999e-01 2 0 0 -194 0 V -101 0 -4.9275822512791998e-05 7.0661138953492902e-06 -2.5457034950437956e-04 2.5941334979290564e-04 0 2 0 P 437 22 -1.8229556149851037e-01 -1.2849175469491584e-02 -9.3033545487038249e-01 9.4811435578266867e-01 0 1 0 0 0 0 P 438 22 -1.8063397301013717e+00 2.9801790021493929e-01 -9.3434165679985188e+00 9.5210877032270034e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 439 211 -6.7102305857259514e-01 -4.0575526931628320e-01 -4.6805218233447254e+00 4.7478072420244990e+00 1.3957000000000000e-01 1 0 0 0 0 P 440 -211 -6.1718875130524686e-01 -3.1552968940478576e-01 -2.4896427087015871e+00 2.5881038506065761e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -6.8545260669255689e-03 -4.3366274689244914e-02 -6.5558862137875962e-01 6.7077839797456795e-01 1.3497999999999999e-01 2 0 0 -195 0 V -103 0 0 0 0 0 0 3 0 P 442 211 -4.1476258190075632e-01 -9.3001270880391340e-02 -2.8739040796315165e+00 2.9085188119647816e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 -6.4231756251543967e-02 -3.6009712601321874e-02 -2.2291965308975625e-01 2.7312153804935418e-01 1.3957000000000000e-01 1 0 0 0 0 P 444 111 -5.4041193010347521e-01 2.1608690628860755e-02 -2.3034706476281102e+00 2.3699596229879365e+00 1.3497999999999999e-01 2 0 0 -196 0 V -104 0 -4.6906263753148636e-05 -1.2221253652488468e-04 -9.8254428195633362e-04 9.9133402619271073e-04 0 2 0 P 445 22 -2.4212067568491508e-01 -5.5171204703804555e-01 -4.9784026847355571e+00 5.0147284967207586e+00 0 1 0 0 0 0 P 446 22 -1.9090420364062843e-01 -5.7651827118260746e-01 -4.0921581547554000e+00 4.1369766853955277e+00 0 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 447 -211 -2.5193142070019092e-01 2.3805514906495040e-01 -6.0423533634480142e+00 6.0538957414547436e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 211 2.2819297070303043e-01 -1.6415970969360533e-01 -1.7621661693840995e+00 1.7898965991326967e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 449 -2112 -2.6308173180292155e-01 -1.1419800220779119e+00 -2.4648583485377404e+01 2.4694306833538640e+01 9.3957000000000002e-01 1 0 0 0 0 P 450 -211 9.7805419333484772e-02 -1.6212246335222635e-01 -3.1187903539476376e+00 3.1276481020011224e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 1 0 P 451 310 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -197 0 V -108 0 0 0 0 0 0 2 0 P 452 211 -2.1972790853334513e-02 -3.2624597759583773e-01 -1.7206669552161703e+01 1.7210342126280462e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -1.3389353629886009e+00 -4.1057784199535039e+00 -2.9080190998614410e+02 2.9083400632582476e+02 1.3497999999999999e-01 2 0 0 -198 0 V -109 0 0 0 0 0 0 2 0 P 454 2112 5.8846751214971771e-01 -7.4027463896910151e-01 -1.2091036663083530e+02 1.2091771520807804e+02 9.3957000000000002e-01 1 0 0 0 0 P 455 111 1.0821892703480351e-01 -1.8463106810596860e-01 -8.6023301654923312e+00 8.6060504207224948e+00 1.3497999999999999e-01 2 0 0 -199 0 V -110 0 0 0 0 0 0 2 0 P 456 -2212 7.9081465387851435e-01 -9.9785310864047527e-01 -2.2194887736288482e+02 2.2195451248370915e+02 9.3827000000000005e-01 1 0 0 0 0 P 457 -211 -2.0194198882922419e-02 -2.3055130362775828e-01 -2.5139240114841765e+01 2.5140692811572286e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 458 -2112 -7.7491382199421210e-01 1.0558817986814673e-01 -1.0827771937645640e+02 1.0828462007804612e+02 9.3957000000000002e-01 1 0 0 0 0 P 459 211 -9.9928339738354868e-02 -1.4059869561993965e-01 -5.1032399358228631e+01 5.1032881730399339e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 460 -211 -1.7336432491089007e+00 -2.2414381816314603e-02 -1.6316635351593828e+02 1.6317562446883034e+02 1.3957000000000000e-01 1 0 0 0 0 P 461 111 -4.3761801943459389e-01 -3.0582368040300700e-01 -4.9749451679492942e+01 4.9752499431335430e+01 1.3497999999999999e-01 2 0 0 -200 0 V -113 0 0 0 0 0 0 2 0 P 462 2112 -3.0637156620669509e-01 8.0125595836388264e-01 -1.9162861096553587e+02 1.9163283436565089e+02 9.3957000000000002e-01 1 0 0 0 0 P 463 -211 -2.1986820665902077e-01 1.1904195373478234e-01 -2.9627114029258273e+01 2.9628497742926839e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 464 -2112 -8.8617158525268902e-01 9.6898483102912891e-01 -2.1553676080218526e+02 2.1554280846403714e+02 9.3957000000000002e-01 1 0 0 0 0 P 465 211 -3.6759435977479488e-01 5.0854995344152532e-01 -7.1546674098992469e+01 7.1549561865051444e+01 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 466 321 7.9718700036665910e-02 9.9199918773705331e-01 -4.1153373238873421e+01 4.1168363914025413e+01 4.9359999999999998e-01 1 0 0 0 0 P 467 -211 2.0959354158218355e-02 5.4062611163280497e-02 -1.6352587757682648e+00 1.6422280928907671e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 468 -321 -5.3554684720145317e-02 6.4237427019267368e-01 -9.6145960796342720e+01 9.6149388615940410e+01 4.9359999999999998e-01 1 0 0 0 0 P 469 211 -3.3818337590445563e-01 7.7965145597166419e-01 -6.3483193755764816e+01 6.3489035223457392e+01 1.3957000000000000e-01 1 0 0 0 0 V -117 0 5.2318908866169861e-05 3.6579421485158085e-05 3.2678718455786247e-04 3.3425607292410947e-04 0 2 0 P 470 22 1.8266412630151260e-01 1.5932520980673923e-01 1.3792066253718847e+00 1.4003433939527687e+00 0 1 0 0 0 0 P 471 22 5.7877694041638790e-02 8.8526215323388273e-03 1.2323266363227396e-01 1.3643491401205765e-01 0 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 472 -211 5.8240180193788149e-01 -7.5473666151519558e-01 4.6725645894455701e+00 4.7708656357705408e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 211 5.3111079302644382e-01 -2.3403290644079899e-01 3.4379787548848668e+00 3.4894165385786211e+00 1.3957000000000000e-01 1 0 0 0 0 P 474 111 4.5468807703528752e-01 -1.1237505519541752e-01 1.8728840077388604e+00 1.9352734967627176e+00 1.3497999999999999e-01 2 0 0 -201 0 V -119 0 3.5077352219168098e-04 -3.3583918826718676e-05 1.4995198168166006e-03 1.5406424852077560e-03 0 2 0 P 475 22 1.5939966107531871e+00 -1.3355826438208993e-01 6.8043520657159329e+00 6.9898404873995581e+00 0 1 0 0 0 0 P 476 22 3.0347564233177846e-02 -2.1960437766658396e-02 1.3954798838123139e-01 1.4448832666703018e-01 0 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 477 22 8.1526290073245911e-02 4.0771981638271351e-02 1.8785239564833603e-01 2.0879993537029071e-01 0 1 0 0 0 0 P 478 113 -5.2705728800034539e-02 -1.7179447085102814e-01 8.6040947284768645e+00 8.6361857307329455e+00 7.2178019164331098e-01 2 0 0 -202 0 V -121 0 0 0 0 0 0 2 0 P 479 -211 -1.1492326116213154e-01 1.3553570072240281e-01 1.3712950593471820e+00 1.3897867486835682e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 211 3.9698466434645641e-01 1.1001451135355901e-01 1.4442965116955381e+01 1.4449512835072490e+01 1.3957000000000000e-01 1 0 0 0 0 V -122 0 1.9686373992394057e-06 5.5303707840317438e-06 1.4241279888082432e-05 1.5708940869343237e-05 0 2 0 P 481 22 5.2347122365422195e-02 1.1036021575484060e-01 1.4146929533133645e-01 1.8690414645732278e-01 0 1 0 0 0 0 P 482 22 3.3883079299114813e-02 1.3188093447981819e-01 4.8232685787845164e-01 5.0117845302143660e-01 0 1 0 0 0 0 V -123 0 -1.0796146644315501e-04 -3.4650083619040744e-05 4.0427024998893838e-04 4.2007287114622017e-04 0 2 0 P 483 22 -9.2458993266648781e-01 -3.0798553088771941e-01 3.6391071529418921e+00 3.7673362607308167e+00 0 1 0 0 0 0 P 484 22 -1.9152056388825436e-01 -5.0228592241791631e-02 5.4025687686257207e-01 5.7539597745202176e-01 0 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 485 22 5.4439475698488553e-02 -3.0736169358088400e-01 1.6594688086673335e+00 1.6885708732934530e+00 0 1 0 0 0 0 P 486 22 2.1433637942143127e-01 -2.3985562799515983e-01 3.1975150077366887e-01 4.5355465830642044e-01 0 1 0 0 0 0 V -125 0 -5.2216246139961579e-05 3.1601354358726787e-05 1.2813749833128471e-05 6.2466003138217694e-05 0 2 0 P 487 22 -2.9465078976023806e-01 1.2446978490510306e-01 7.2947601427002712e-02 3.2807494237537743e-01 0 1 0 0 0 0 P 488 22 -1.6887844056311767e+00 1.0759083175178057e+00 4.1378295242867474e-01 2.0446974857243863e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 489 -211 1.3952162275891509e+00 -1.1200017921607484e-01 -1.8920237025580249e+01 1.8972454275894574e+01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 4.3045295205137857e-01 1.6827365481197512e-01 -1.2565037225240808e+01 1.2574258858434590e+01 1.3497999999999999e-01 2 0 0 -203 0 V -127 0 0 0 0 0 0 2 0 P 491 211 1.8725300200231912e-01 6.5108299074054105e-02 -7.1054858346587348e+00 7.1096210524051937e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 -1.4219474210785180e-01 -2.6166562986616455e-03 -4.7075958369040869e+00 4.7116774460493360e+00 1.3497999999999999e-01 2 0 0 -204 0 V -128 0 0 0 0 0 0 2 0 P 493 211 1.5061846814412688e-01 3.2693588382798254e-02 -4.4353266663800088e+00 4.4401978802829305e+00 1.3957000000000000e-01 1 0 0 0 0 P 494 111 -8.2975634625215589e-01 -1.0463680588776036e-01 -1.5855332863063813e+01 1.5877948364138343e+01 1.3497999999999999e-01 2 0 0 -205 0 V -129 0 0 0 0 0 0 2 0 P 495 211 2.0801151128511147e-02 -8.8401138894077413e-02 -9.1822740812415726e-01 9.3320351862626882e-01 1.3957000000000000e-01 1 0 0 0 0 P 496 -211 4.0002014610764774e-01 9.5803875148365114e-01 -4.1150460485771196e+00 4.2462852157440514e+00 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 497 211 -6.6620043579804306e-02 -3.8671234659421558e-02 -5.3881783861967358e-01 5.6190581302513298e-01 1.3957000000000000e-01 1 0 0 0 0 P 498 111 -5.9753625473748587e-02 -8.1080595956683976e-01 -6.4952884464184257e-01 1.0493255549390417e+00 1.3497999999999999e-01 2 0 0 -206 0 V -131 0 0 0 0 0 0 2 0 P 499 321 -9.9178269242689854e-02 4.0401998341760498e-01 -7.5268094976009992e-01 9.9158360626953856e-01 4.9359999999999998e-01 1 0 0 0 0 P 500 -211 -1.8625290391178151e-01 -1.7919515851865531e-01 -1.5073105117264160e-01 3.3015251587668815e-01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 501 22 4.7425473385707850e-01 7.9323364794636100e-02 -4.7379618395365597e+00 4.7622990395073739e+00 0 1 0 0 0 0 P 502 22 -6.1867586504988442e-02 1.4479562972834045e-01 -4.9318754587720566e+00 4.9343884031849843e+00 0 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 503 -311 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 2 0 0 -207 0 P 504 111 8.6409255727351850e-02 -9.5414871722545147e-02 -1.3258601716960836e+00 1.3389157376441405e+00 1.3497999999999999e-01 2 0 0 -208 0 V -134 0 0 0 0 0 0 3 0 P 505 -211 1.4225854778794583e-01 1.7041821011440441e-02 -5.5083339604025987e+00 5.5119643252026496e+00 1.3957000000000000e-01 1 0 0 0 0 P 506 211 -1.4107720881536270e-02 8.5127213061654231e-02 -3.9087883622364373e+01 3.9088228042859569e+01 1.3957000000000000e-01 1 0 0 0 0 P 507 111 1.6703357996876647e-01 -1.0892780320401577e-01 -1.7249871805429915e+01 1.7251552463106442e+01 1.3497999999999999e-01 2 0 0 -209 0 V -135 0 0 0 0 0 0 3 0 P 508 211 -2.5817525732431779e-01 3.3706163801431002e-02 -7.1403369450109677e+00 7.1464454130820343e+00 1.3957000000000000e-01 1 0 0 0 0 P 509 -211 1.1734115969327032e-01 -1.7309197020497577e-01 -7.3396762323509277e+00 7.3439809884384033e+00 1.3957000000000000e-01 1 0 0 0 0 P 510 111 6.9358928792052854e-02 -1.2776487916733750e-01 -3.3473128221427770e+00 3.3531861348623742e+00 1.3497999999999999e-01 2 0 0 -210 0 V -136 0 0 0 0 0 0 2 0 P 511 -211 -1.2047649407579651e-01 -4.2771179832827311e-01 -5.4212052512571177e+01 5.4214053246171595e+01 1.3957000000000000e-01 1 0 0 0 0 P 512 211 6.4055160844649406e-01 -3.5921667792042467e-01 -7.5781094032776821e+01 7.5784781028741136e+01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 513 -321 -4.8377072580336111e-03 3.5469088021954326e-01 -2.2965032716714978e+02 2.2965113158432914e+02 4.9359999999999998e-01 1 0 0 0 0 P 514 211 7.9591735087793936e-02 3.2153579512434560e-01 -3.3163109663442941e+02 3.3163129142897691e+02 1.3957000000000000e-01 1 0 0 0 0 V -138 0 1.7527944554182279e-06 -1.3216893100866474e-06 -2.9987669660695124e-04 2.9988564395488004e-04 0 2 0 P 515 22 4.2687248114623806e-03 -1.2493951962920221e-02 -7.8910727507023308e+00 7.8910837961413147e+00 0 1 0 0 0 0 P 516 22 3.1558737274088211e-01 -2.2869256228817300e-01 -4.6831481640708795e+01 4.6833103338791503e+01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 517 311 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -211 0 P 518 211 2.2872942692541226e-01 2.9508018390042912e-01 -1.4610750785719796e+01 1.4616186498980641e+01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 519 -311 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 2 0 0 -212 0 P 520 -211 -9.8727393571171440e-02 -7.9162813741766619e-02 -9.8295384096922744e-01 1.0008455863403845e+00 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 3 0 P 521 111 -4.7809061756595085e-02 -1.1744692207374245e-01 -6.7080065987515902e-01 6.9589698345343498e-01 1.3497999999999999e-01 2 0 0 -213 0 P 522 111 2.7383748699990303e-03 -2.5570859930017142e-01 -6.5590826218892662e-01 7.1681910916261293e-01 1.3497999999999999e-01 2 0 0 -214 0 P 523 111 2.2122277615129943e-01 -2.3343781869952412e-01 -1.0926442687339883e+00 1.1469628722345426e+00 1.3497999999999999e-01 2 0 0 -215 0 V -142 0 4.3553295221904181e-01 9.2269902071506338e-01 1.1883062990838523e+01 1.1927000312671099e+01 0 2 0 P 524 22 2.8931379374386579e-01 5.5117985952323578e-01 8.8785811440121361e+00 8.9003766684114201e+00 0 1 0 0 0 0 P 525 22 1.0856345494537722e+00 2.2881506306452364e+00 3.2689415347038022e+01 3.2787377318331743e+01 0 1 0 0 0 0 V -143 0 7.4549140510790131e-05 -5.5713556911073003e-05 6.9763829659713370e-05 1.2186216700677129e-04 0 2 0 P 526 22 -8.2019968566538447e-03 2.0234355144485333e-03 -6.3406266212371505e-03 1.0562698029747521e-02 0 1 0 0 0 0 P 527 22 2.8497627939870795e-01 -2.0886793615220239e-01 2.6534876231742960e-01 4.4186792170942063e-01 0 1 0 0 0 0 V -144 0 -1.0446871824117720e-05 -1.0364753656648250e-06 -4.4925011630097772e-06 1.1648095480396876e-05 0 2 0 P 528 22 -2.2244031186969035e-01 -1.2533908917936615e-02 -2.7281509057465479e-02 2.2445728313846441e-01 0 1 0 0 0 0 P 529 22 -3.9099410821804659e-01 -4.8327339844012634e-02 -2.3651562486660557e-01 4.5951231239615881e-01 0 1 0 0 0 0 V -145 0 -4.9209201804216552e-06 -5.9489768515649160e-06 -4.0496413537414356e-06 1.0543619073119500e-05 0 2 0 P 530 22 -1.3747186497283917e-01 -1.1834859580333407e-01 -1.0163655706251823e-01 2.0793002072633451e-01 0 1 0 0 0 0 P 531 22 2.5456988385918800e-02 -1.7067928629986677e-02 9.4545951877033560e-03 3.2074317070866158e-02 0 1 0 0 0 0 V -146 0 -1.3827182148201422e-05 -3.0335428740758462e-05 -3.6059535814902079e-05 4.9943117916170825e-05 0 2 0 P 532 22 -1.0291102724851901e-01 -1.7471342736489895e-01 -3.1251663828659632e-01 3.7253471037862934e-01 0 1 0 0 0 0 P 533 22 -1.0245300649654818e-01 -2.7583433752431574e-01 -2.2304669273426975e-01 3.6923031760319242e-01 0 1 0 0 0 0 V -147 0 1.7866387459979162e-04 3.3940399026452637e-05 -5.5779996742632101e-04 5.8880626925412994e-04 0 2 0 P 534 22 9.0156284313061538e-02 7.3364227371896754e-02 -3.6696477417450074e-01 3.8493325518062893e-01 0 1 0 0 0 0 P 535 22 3.9417515169153622e-01 1.8643192907513383e-02 -1.1451487397189395e+00 1.2112337738573453e+00 0 1 0 0 0 0 V -148 0 1.5526811023645269e-04 6.6455334941560720e-05 -3.3855388481017429e-03 3.3901195720121634e-03 0 2 0 P 536 22 2.5818611403193403e-01 1.7033042577315605e-01 -6.6000404199358647e+00 6.6072843187053891e+00 0 1 0 0 0 0 P 537 22 1.5989649827230745e-01 8.6105041551465412e-03 -2.5160293481340248e+00 2.5211197336924069e+00 0 1 0 0 0 0 V -149 0 7.2529715193879701e-05 -1.4690664520602360e-05 -5.7332155452730202e-04 5.7868011744165789e-04 0 2 0 P 538 22 3.0671920491466848e-01 -2.1415875940039346e-02 -1.9799760299708333e+00 2.0037066625793365e+00 0 1 0 0 0 0 P 539 22 6.4186098697274596e-02 -5.3709820744552196e-02 -9.5189823260953343e-01 9.5557042930154579e-01 0 1 0 0 0 0 V -150 0 3.4977500751212862e-05 -9.0910073544654049e-06 -4.3213422549400324e-05 5.8732420705780224e-05 0 2 0 P 540 22 2.8122996468926652e-02 2.3139561216032611e-02 -6.4180389790431582e-03 3.6980176419242311e-02 0 1 0 0 0 0 P 541 22 2.5605057806319881e-01 -9.6999156685462884e-02 -3.4466801605318848e-01 4.4018947762779376e-01 0 1 0 0 0 0 V -151 0 -1.0775534259433855e-04 3.3860545091989095e-05 -2.8163746315440030e-04 3.0382503180355569e-04 0 2 0 P 542 22 -4.1748328940694612e-01 2.0120342520193288e-01 -1.1243106915250403e+00 1.2160796217043304e+00 0 1 0 0 0 0 P 543 22 -5.3693933981862596e-01 9.8709968376802001e-02 -1.3702400342258485e+00 1.4749933097804426e+00 0 1 0 0 0 0 V -152 0 2.2637848897208109e-05 -8.5237106755244250e-05 -2.8555125925595285e-04 3.1282439270862881e-04 0 2 0 P 544 22 3.3322368581920503e-02 2.1747731258736615e-02 -7.5544789244305063e-02 8.5383600561103321e-02 0 1 0 0 0 0 P 545 22 -2.6019934561552401e-04 -1.4623498539454957e-01 -3.4149766483465338e-01 3.7149077208534353e-01 0 1 0 0 0 0 V -153 0 -1.5980756545795372e-04 -1.3898698689719089e-05 -3.1393406685190805e-04 3.5338645240572673e-04 0 2 0 P 546 22 -5.3506827370041254e-01 -4.6631344643884895e-02 -1.1907466742080999e+00 1.3062733947997545e+00 0 1 0 0 0 0 P 547 22 -3.4868910549881071e-01 -3.0230332668492219e-02 -5.4535103410341612e-01 6.4800132384468989e-01 0 1 0 0 0 0 V -154 0 -6.3130523609729116e-05 -7.5315123686702683e-04 -8.2236634091199269e-04 1.1203562523700783e-03 0 2 0 P 548 22 1.1015665929753610e-02 -6.3897991812966881e-01 -6.6253692779380602e-01 9.2052803398882310e-01 0 1 0 0 0 0 P 549 22 -1.0819192794668329e-01 -5.2033918374588917e-01 -6.0332437746632972e-01 8.0402653181303152e-01 0 1 0 0 0 0 V -155 0 3.2143381626660110e-05 6.5611725966495973e-06 4.4008451615632758e-05 5.8488296283302674e-05 0 2 0 P 550 22 1.0544295108123020e-01 -3.4498365327997006e-03 2.3557776238824138e-01 2.5812206305674928e-01 0 1 0 0 0 0 P 551 22 1.0938407486226136e-01 4.7300767091739339e-02 5.8548253560341892e-02 1.3277852385045502e-01 0 1 0 0 0 0 V -156 0 -3.5452259046247017e-05 -7.2995864286289443e-05 -5.1390127431563749e-05 9.7571184262060991e-05 0 2 0 P 552 22 -1.9798126262379626e-01 -2.6504570114930182e-01 -1.7509571553794673e-01 3.7430510769635916e-01 0 1 0 0 0 0 P 553 22 -8.1138095195689000e-02 -3.0965840265658151e-01 -2.2950415349291114e-01 3.9388307059114364e-01 0 1 0 0 0 0 V -157 0 -1.3345338878477742e-05 -1.7125229223215404e-05 6.1990993773087014e-06 2.3354811653370376e-05 0 2 0 P 554 22 -4.4316209452028396e-02 -8.6217726714066106e-02 8.3541828664441375e-02 1.2797132474322642e-01 0 1 0 0 0 0 P 555 22 -2.5739292549734549e-01 -3.0094652155232349e-01 5.6606347985408700e-02 4.0003025580919543e-01 0 1 0 0 0 0 V -158 0 -2.5727603064668183e-04 2.1792525911790159e-04 1.3908777321292520e-04 3.6764002492298324e-04 0 2 0 P 556 22 -1.4865321497905377e-02 1.5943997275793709e-02 3.5712994186855307e-02 4.1840253179886044e-02 0 1 0 0 0 0 P 557 22 -7.3733893161235586e-01 6.2120943810878437e-01 3.7094134630270303e-01 1.0330379220839589e+00 0 1 0 0 0 0 V -159 0 3.0627117761726698e+01 1.3141971120815964e+02 3.2651209389538309e+01 1.7218819217960470e+02 0 2 0 P 558 -211 -2.6612427220895882e-02 4.6849662704332645e-01 -4.4504203352452962e-02 4.9158694027567257e-01 1.3957000000000000e-01 1 0 0 0 0 P 559 211 1.7626517655937549e-01 1.7365720710385671e-01 2.0404723617668519e-01 3.4977320871954093e-01 1.3957000000000000e-01 1 0 0 0 0 V -160 0 -3.0530269283521600e-06 5.7626651119506302e-06 1.4037615380282384e-06 7.2635690152330765e-06 0 2 0 P 560 22 -9.0960275379681418e-02 8.8826735685521838e-02 8.1907555029945775e-02 1.5123758871615420e-01 0 1 0 0 0 0 P 561 22 -5.2430231284185287e-02 1.8182645196349184e-01 -1.5977550841689239e-02 1.8990805648271983e-01 0 1 0 0 0 0 V -161 0 -2.2844142250951500e-05 2.2616310501518673e-05 1.1583737681535141e-05 3.6474216532683863e-05 0 2 0 P 562 22 -2.3283718133738132e-01 2.3881311161042698e-01 8.0819077585636820e-02 3.4318592423347427e-01 0 1 0 0 0 0 P 563 22 -8.8050614737232667e-03 4.1915781180006394e-04 4.1712130754438539e-02 4.2633398326929202e-02 0 1 0 0 0 0 V -162 0 -7.0456826195412692e-06 1.5086342247262502e-05 5.0018000512883158e-07 1.6826899941382884e-05 0 2 0 P 564 22 -3.8761452320086198e-01 7.9971159026074501e-01 -4.0777907404131487e-03 8.8870708029750911e-01 0 1 0 0 0 0 P 565 22 -1.2307752723231700e-02 5.6609174197397277e-02 3.2468670208649957e-02 6.6410043860289328e-02 0 1 0 0 0 0 V -163 0 -2.3109962223415762e-05 9.8762857799358292e-05 9.5387817199204668e-06 1.1206681203967465e-04 0 2 0 P 566 22 -2.2336516007126720e-02 4.3719835493910252e-02 -4.6077346222812135e-02 6.7331016611128794e-02 0 1 0 0 0 0 P 567 22 -4.4476239279812979e-02 2.4181151180104188e-01 7.3654729631203633e-02 2.5666312999148572e-01 0 1 0 0 0 0 V -164 0 0 0 0 0 0 1 0 P 568 130 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 1 0 0 0 0 V -165 0 -1.9613561677516819e-06 4.0700691677651203e-05 -3.8951391621231090e-05 5.6745200604099134e-05 0 2 0 P 569 22 1.4775738055481847e-02 5.5526797721820642e-01 -5.9375573838335094e-01 8.1307239888108473e-01 0 1 0 0 0 0 P 570 22 -5.5426904079190410e-02 2.8829659400629187e-01 -2.1355275238619759e-01 3.6303146676721182e-01 0 1 0 0 0 0 V -166 0 7.8237635988022883e-05 3.4078800809782420e-05 6.2863066600044894e-05 1.1654488679843942e-04 0 2 0 P 571 22 1.1175372484247184e-01 1.1034915211480543e-01 6.2319827408693455e-02 1.6896624300987670e-01 0 1 0 0 0 0 P 572 22 1.0616482146836660e-01 -1.5428048751952181e-02 1.1277529039650631e-01 1.5565108457610918e-01 0 1 0 0 0 0 V -167 0 0 0 0 0 0 1 0 P 573 130 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 1 0 0 0 0 V -168 0 1.5493882988471805e-04 1.4071034179404914e-04 3.3761140346509285e-04 4.0046927540475497e-04 0 2 0 P 574 22 3.3370271180238198e-01 2.4852931957147076e-01 5.7497661222605501e-01 7.0973405382429888e-01 0 1 0 0 0 0 P 575 22 7.7338644955921618e-02 1.2476490140583157e-01 3.2068169008989816e-01 3.5268157449084070e-01 0 1 0 0 0 0 V -169 0 0 0 0 0 0 1 0 P 576 130 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 1 0 0 0 0 V -170 0 -2.0276210216922056e-05 -2.4842767607923537e-05 1.3378609837657492e-04 1.3788014846235198e-04 0 2 0 P 577 22 -5.4717313373058546e-02 -1.1285578451512142e-01 3.2899766715906870e-01 3.5209356352736459e-01 0 1 0 0 0 0 P 578 22 -2.4403018535371790e-01 -2.5317487924884713e-01 1.6421923050705356e+00 1.6794177019667613e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 579 22 -1.6086181504354044e-01 -6.0677298924980222e-02 2.9941127658110411e-01 3.4526130783489201e-01 0 1 0 0 0 0 P 580 22 3.6268660804388131e-01 -1.1729568439716702e-01 1.3812323156753387e-01 4.0543542066676214e-01 0 1 0 0 0 0 V -172 0 -9.2393718058419983e-06 -2.2313660821585120e-05 4.2527242564390301e-05 5.2327030406155359e-05 0 2 0 P 581 22 1.3943816139045334e-02 -1.3432906142987217e-01 1.7522874901361241e-01 2.2123255012322540e-01 0 1 0 0 0 0 P 582 22 -8.0962240427517831e-02 -2.7524625140518767e-02 1.3324555485594183e-01 1.5832519462497774e-01 0 1 0 0 0 0 V -173 0 2.6315961380831131e-04 -7.0297474497312863e-04 1.8034545840499604e-03 1.9559771137467982e-03 0 2 0 P 583 22 2.2926720213869609e-01 -4.6947447537701975e-01 1.1323030197722768e+00 1.2470284125040818e+00 0 1 0 0 0 0 P 584 22 1.2645186645321813e-01 -4.8075309908517572e-01 1.3054691581173115e+00 1.3969120729684543e+00 0 1 0 0 0 0 V -174 0 6.2468250889524703e-05 -1.8367249709394737e-04 3.2192915302746285e-03 3.2254826022247982e-03 0 2 0 P 585 22 7.5341761928015019e-02 -3.0457864354941522e-01 6.1426509764610753e+00 6.1506589524875315e+00 0 1 0 0 0 0 P 586 22 1.0193999939994444e-01 -2.1667468640062801e-01 2.9935368403643245e+00 3.0030988158605263e+00 0 1 0 0 0 0 V -175 0 -1.3941300077281751e-08 -1.7634140383110248e-08 1.3366597931759887e-07 1.3569213957008366e-07 0 2 0 P 587 22 -2.1704839426217112e-01 -2.9359709181515714e-01 2.4444473847419288e+00 2.4715647421311382e+00 0 1 0 0 0 0 P 588 22 -7.8866853756908106e-02 -8.0701646189538859e-02 3.9271996709894169e-01 4.0860948211881826e-01 0 1 0 0 0 0 V -176 0 8.9381173201513184e-06 -7.1018199468698127e-05 3.6742435990725561e-03 3.6750700656205180e-03 0 2 0 P 589 22 5.4003005372682156e-02 -3.1523884214362824e-01 1.5767194633722832e+01 1.5770438119148228e+01 0 1 0 0 0 0 P 590 22 -1.4870079877579013e-02 4.3064825583227374e-03 3.1940345659309782e-01 3.1977841257847550e-01 0 1 0 0 0 0 V -177 0 -4.8092656890535008e-05 -1.6288822610025237e-04 7.1972785032300363e-03 7.1994412055626572e-03 0 2 0 P 591 22 -6.5003819847065353e-02 -6.5064487704687091e-02 2.7845648367790230e+00 2.7860833107394996e+00 0 1 0 0 0 0 P 592 22 -7.0639396156457757e-02 -3.9435456430646598e-01 1.7515041501736263e+01 1.7519622834245673e+01 0 1 0 0 0 0 V -178 0 -3.3351555116958019e-04 -1.3233491218248413e-04 8.8455906296782214e-03 8.8530754122556499e-03 0 2 0 P 593 22 -5.7146156102573520e-01 -2.4377032932303166e-01 1.6463137954116490e+01 1.6474856709102486e+01 0 1 0 0 0 0 P 594 22 -1.6608990824430428e-01 -4.8881118483925054e-02 3.0984037569121963e+00 3.1032371907755381e+00 0 1 0 0 0 0 V -179 0 3.3392512947562540e-06 -1.7933736575040648e-09 1.1692834762585951e-04 1.1700552164323406e-04 0 2 0 P 595 22 8.3092113277213012e-02 1.3864082624491623e-02 1.1273307696862198e+00 1.1304738724788010e+00 0 1 0 0 0 0 P 596 22 8.8461214816619546e-02 -1.3956216816351865e-02 4.8798383269399777e+00 4.8806600229463850e+00 0 1 0 0 0 0 V -180 0 3.7881267448364677e-06 2.0894290176796522e-05 6.9342123555268668e-04 6.9376754781931517e-04 0 2 0 P 597 22 -1.7008055498074472e-02 2.1241870150833311e-01 5.6731806420242963e+00 5.6771814816633714e+00 0 1 0 0 0 0 P 598 22 1.1118311211387850e-01 3.0702562886657264e-01 1.1565678698093732e+01 1.1570287384881127e+01 0 1 0 0 0 0 V -181 0 4.2848433363917432e-07 4.3252807212474440e-05 2.1707209259958326e-03 2.1711724959265731e-03 0 2 0 P 599 22 6.2604039713167900e-02 4.2970682649130676e-01 2.0251891721644245e+01 2.0256546732543637e+01 0 1 0 0 0 0 P 600 22 -5.6496622542509860e-02 1.8679864806142088e-01 1.0688558641000245e+01 1.0690340098676810e+01 0 1 0 0 0 0 V -182 0 -1.0856455606341898e-05 -3.3130859319539594e-06 2.2004510645548892e-03 2.2007134871773401e-03 0 2 0 P 601 22 -1.4129831260776927e-02 5.9980859085423562e-02 3.4478178746791981e+00 3.4483685204086680e+00 0 1 0 0 0 0 P 602 22 -3.1616591966346273e-02 -7.3941385128790560e-02 5.8243395715225486e+00 5.8248947099261628e+00 0 1 0 0 0 0 V -183 0 5.9270025063243236e-05 -1.7404494131186669e-04 1.1109159943447154e-02 1.1110696380285313e-02 0 2 0 P 603 22 3.6979185162852352e-01 -9.9396790785838718e-01 6.0977798410630506e+01 6.0987020071674877e+01 0 1 0 0 0 0 P 604 22 6.7421522329279962e-02 -2.8989819359936131e-01 2.0970425763878296e+01 2.0972537837435311e+01 0 1 0 0 0 0 V -184 0 -1.2619145634172405e-06 1.2712549984865108e-06 1.2095365802126941e-03 1.2095634297965084e-03 0 2 0 P 605 22 4.7447799774845589e-02 4.0539640970956494e-03 3.6257585026865802e+00 3.6260712138804458e+00 0 1 0 0 0 0 P 606 22 -6.9125061409615551e-02 1.7783748221618281e-02 1.7151750265493217e+01 1.7151898778434482e+01 0 1 0 0 0 0 V -185 0 2.1214523662777376e-06 -2.6555494802208933e-05 4.0474669704353063e-03 4.0477620490575192e-03 0 2 0 P 607 22 4.2587000092977084e-02 1.8428580378439384e-02 2.8648434219497414e+00 2.8652192058270840e+00 0 1 0 0 0 0 P 608 22 -3.5598677532906783e-02 -1.0590561562562652e-01 1.0468005898754448e+01 1.0468602139809358e+01 0 1 0 0 0 0 V -186 0 -2.3477925341504178e-05 2.0280803592558862e-05 8.0444758122121419e-03 8.0445668349136638e-03 0 2 0 P 609 22 -1.3371682069126956e-01 1.4021119136715113e-01 4.7189657976406295e+01 4.7190055724660112e+01 0 1 0 0 0 0 P 610 22 -7.7326871897490787e-03 -1.8023662193619217e-02 1.2765982300828291e+00 1.2767488742507889e+00 0 1 0 0 0 0 V -187 0 1.0965398689753128e-05 4.3934542170654282e-05 1.3947041098515944e-01 1.3947043596520542e-01 0 2 0 P 611 22 7.8628750911548986e-02 5.4202122757459600e-02 1.6496580741708874e+02 1.6496583506024089e+02 0 1 0 0 0 0 P 612 22 -5.7521924547704266e-02 3.0365596046742941e-02 1.0349481411131067e+02 1.0349483455117931e+02 0 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 613 111 -1.0007671194680588e-01 6.5324508566010589e-02 2.3756431331142164e-01 2.9822649622828962e-01 1.3497999999999999e-01 2 0 0 -216 0 P 614 111 1.4811202823700551e-01 8.9489737385213403e-02 1.3342491717846466e-01 2.5684118620235763e-01 1.3497999999999999e-01 2 0 0 -217 0 P 615 111 5.3047790629529530e-02 -4.6674555295507486e-02 1.0139660692918552e-01 1.8301217035885767e-01 1.3497999999999999e-01 2 0 0 -218 0 V -189 0 7.1575932317251089e-05 6.2444722761509646e-05 -4.5973060156706368e-04 4.7127545857880032e-04 0 2 0 P 616 22 1.3413135534606807e-01 9.4576119148161025e-02 -1.0797231129539018e+00 1.0921253881523698e+00 0 1 0 0 0 0 P 617 22 9.8426947751732469e-02 1.0831385088341638e-01 -4.1399363122602895e-01 4.3910190278866984e-01 0 1 0 0 0 0 V -190 0 -6.0334114165957099e-05 6.6125193071370409e-05 -2.7191778691592217e-02 2.7191950161317667e-02 0 2 0 P 618 22 -2.3270893257734387e-01 2.4966336221171562e-01 -9.1711157820598530e+01 9.1711792884211263e+01 0 1 0 0 0 0 P 619 22 7.9088259024267075e-03 -3.2861565158548230e-03 -9.6032450682352355e+00 9.6032488871702260e+00 0 1 0 0 0 0 V -191 0 -2.5000937051640845e-05 -1.5479719287917333e-05 -3.1772166578265156e-02 3.1772210073041235e-02 0 2 0 P 620 22 -5.7857561140387904e-02 3.0993497743476657e-02 -2.3836856533279331e+01 2.3836946899349861e+01 0 1 0 0 0 0 P 621 22 -1.9578394276687262e-02 -7.8939174746384580e-02 -7.4571777894163191e+01 7.4571822245424826e+01 0 1 0 0 0 0 V -192 0 -3.3885487787946758e-05 2.5060811261695470e-04 -2.2953606001899132e-03 2.3092690824530623e-03 0 2 0 P 622 22 -4.4140050050192048e-01 3.0499956332031197e+00 -2.8291877298078887e+01 2.8459227480976235e+01 0 1 0 0 0 0 P 623 22 -3.8709774506247206e-02 5.0077307996270559e-01 -4.2301927956586605e+00 4.2599064793373209e+00 0 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 624 -211 -8.3440250211859313e-01 6.9414865635304823e-01 -7.9088417535738627e+00 7.9841923549368348e+00 1.3957000000000000e-01 1 0 0 0 0 P 625 211 -4.6411405376321657e-01 9.7412151952983472e-01 -6.1517656970424541e+00 6.2472406361464801e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 -7.4236737301190179e-05 2.8709641390097327e-05 -7.6531298084143464e-04 7.7243876725580107e-04 0 2 0 P 626 22 -1.0828373806067951e-01 8.5871616229304837e-02 -7.5090700056749005e-01 7.6351858255283578e-01 0 1 0 0 0 0 P 627 22 -3.9102422787073723e-02 -2.8872831293017501e-02 -7.6850974906060543e-01 7.7004537155669517e-01 0 1 0 0 0 0 V -195 0 -9.3906586457413829e-07 -5.9411530187208128e-06 -8.9815238796829471e-05 9.1896228868551310e-05 0 2 0 P 628 22 -1.3320942921857294e-02 3.5555959758585776e-02 -6.8037915792382997e-02 7.7915542608987476e-02 0 1 0 0 0 0 P 629 22 6.4664168549317252e-03 -7.8922234447830683e-02 -5.8755070558637668e-01 5.9286285536558037e-01 0 1 0 0 0 0 V -196 0 -1.5939618486369118e-04 6.3735507198752916e-06 -6.7941585432267201e-04 6.9902698504997296e-04 0 2 0 P 630 22 -4.1061900666324386e-01 6.2097683569687978e-02 -1.8747789158167412e+00 1.9202239645751809e+00 0 1 0 0 0 0 P 631 22 -1.2979292344023130e-01 -4.0488992940827223e-02 -4.2869173181136894e-01 4.4973565841275553e-01 0 1 0 0 0 0 V -197 0 2.0643820895390459e+01 -8.0840928111842871e+01 -3.7462971438793988e+03 3.7473186924516558e+03 0 2 0 P 632 -211 1.9795272173451232e-02 -2.9044275379573697e-01 -9.3415415783931603e+00 9.3471186839464622e+00 1.3957000000000000e-01 1 0 0 0 0 P 633 211 3.7028611293529395e-01 -1.2371107631205758e+00 -6.1447717169715723e+01 6.1461443035450593e+01 1.3957000000000000e-01 1 0 0 0 0 V -198 0 -3.4382591530053092e-04 -1.0543249975194654e-03 -7.4675175244422784e-02 7.4683417280351883e-02 0 2 0 P 634 22 -6.5579686232794987e-01 -2.1359617010724024e+00 -1.5414485687642863e+02 1.5416104989058601e+02 0 1 0 0 0 0 P 635 22 -6.8313850066065096e-01 -1.9698167188811015e+00 -1.3665705310971549e+02 1.3667295643523875e+02 0 1 0 0 0 0 V -199 0 2.2362966388621159e-05 -3.8153200031461547e-05 -1.7776337802061094e-03 1.7784025546243075e-03 0 2 0 P 636 22 5.7763677263542090e-02 -1.9136128225376486e-01 -7.2721877316519059e+00 7.2749343768274146e+00 0 1 0 0 0 0 P 637 22 5.0455249771261416e-02 6.7302141477962457e-03 -1.3301424338404253e+00 1.3311160438950789e+00 0 1 0 0 0 0 V -200 0 -3.3049270089520947e-05 -2.3096054011827400e-05 -3.7571192052041915e-03 3.7573493739114544e-03 0 2 0 P 638 22 -3.9424131655850264e-01 -2.9923501467436614e-01 -4.7757460552618383e+01 4.7760025190996181e+01 0 1 0 0 0 0 P 639 22 -4.3376702876091230e-02 -6.5886657286408756e-03 -1.9919911268745627e+00 1.9924742403392508e+00 0 1 0 0 0 0 V -201 0 9.3367098934036936e-05 -2.3075451999006639e-05 3.8458397146173416e-04 3.9739522798756203e-04 0 2 0 P 640 22 9.9017072473670226e-02 -8.1128339776451522e-02 5.8291298957693749e-01 5.9680293361683656e-01 0 1 0 0 0 0 P 641 22 3.5567100456161727e-01 -3.1246715418965992e-02 1.2899710181619228e+00 1.3384705631458809e+00 0 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 642 211 -2.4576207637755104e-01 1.5574702289929518e-01 2.9481866443683988e+00 2.9657950718584045e+00 1.3957000000000000e-01 1 0 0 0 0 P 643 -211 1.9305634757751650e-01 -3.2754149375032332e-01 5.6559080841084652e+00 5.6703906588745410e+00 1.3957000000000000e-01 1 0 0 0 0 V -203 0 4.7947559207063651e-05 1.8743769763073063e-05 -1.3996021247504021e-03 1.4006293097225057e-03 0 2 0 P 644 22 1.8835468060241567e-01 5.9945266369590633e-02 -7.1479463080354080e+00 7.1506788029684287e+00 0 1 0 0 0 0 P 645 22 2.4209827144896290e-01 1.0832838844238450e-01 -5.4170909172053996e+00 5.4235800554661626e+00 0 1 0 0 0 0 V -204 0 -4.9660074040994333e-05 -9.1384072016398563e-07 -1.6440801843321086e-03 1.6455056450021364e-03 0 2 0 P 646 22 -1.7136842177076752e-02 -3.2810632171762479e-02 -2.5384196567090056e+00 2.5386895364557631e+00 0 1 0 0 0 0 P 647 22 -1.2505789993077504e-01 3.0193975873100833e-02 -2.1691761801950813e+00 2.1729879095935729e+00 0 1 0 0 0 0 V -205 0 -4.7084066677389482e-04 -5.9375578958587187e-05 -8.9970212712279281e-03 9.0098543127026358e-03 0 2 0 P 648 22 -4.0907063650597941e-01 -4.3870732628050670e-02 -6.5450530036438286e+00 6.5579708940601300e+00 0 1 0 0 0 0 P 649 22 -4.2068570974617642e-01 -6.0766073259709688e-02 -9.3102798594199854e+00 9.3199774700782108e+00 0 1 0 0 0 0 V -206 0 -1.0627626530457704e-05 -1.4420786786789068e-04 -1.1552353395938867e-04 1.8663035118524687e-04 0 2 0 P 650 22 -1.5229367191954694e-02 -7.4079450504613986e-01 -5.9116431297389904e-01 9.4788378890322045e-01 0 1 0 0 0 0 P 651 22 -4.4524258281793891e-02 -7.0011454520699914e-02 -5.8364531667943483e-02 1.0144176603582128e-01 0 1 0 0 0 0 V -207 0 0 0 0 0 0 1 0 P 652 130 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 1 0 0 0 0 V -208 0 2.6428534901832397e-06 -2.9182930072095719e-06 -4.0551838489598011e-05 4.0951146963461157e-05 0 2 0 P 653 22 9.2096994972170346e-02 -6.1082785226852163e-02 -1.2561510057633618e+00 1.2610028994472136e+00 0 1 0 0 0 0 P 654 22 -5.6877392448184943e-03 -3.4332086495692984e-02 -6.9709165932721667e-02 7.7912838196926931e-02 0 1 0 0 0 0 V -209 0 9.3781386746660198e-05 -6.1157765053290885e-05 -9.6849801065021085e-03 9.6859237156110122e-03 0 2 0 P 655 22 6.7540719358148787e-02 -1.2295956317095448e-01 -1.0196066521405267e+01 1.0197031593158272e+01 0 1 0 0 0 0 P 656 22 9.9492860610617684e-02 1.4031759966938716e-02 -7.0538052840246479e+00 7.0545208699481705e+00 0 1 0 0 0 0 V -210 0 1.5298275171739444e-05 -2.8180687228403756e-05 -7.3830599074793321e-04 7.3960144838718632e-04 0 2 0 P 657 22 4.6247397676361457e-03 1.3829320064062008e-02 -4.7162264777538591e-02 4.9365144892922992e-02 0 1 0 0 0 0 P 658 22 6.4734189024416716e-02 -1.4159419923139951e-01 -3.3001505573652383e+00 3.3038209899694513e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 659 310 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -219 0 V -212 0 0 0 0 0 0 1 0 P 660 130 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 1 0 0 0 0 V -213 0 -7.3342785183459024e-06 -1.8017262961502671e-05 -1.0290599081116587e-04 1.0675596025517438e-04 0 2 0 P 661 22 4.3335705601751880e-02 -1.0322778658087705e-02 -1.6117016656036340e-01 1.6721353332885724e-01 0 1 0 0 0 0 P 662 22 -9.1144767358346965e-02 -1.0712414341565475e-01 -5.0963049331479560e-01 5.2868345012457774e-01 0 1 0 0 0 0 V -214 0 2.3289013549293327e-06 -2.1747208897570036e-04 -5.5782926481562258e-04 6.0963201673284323e-04 0 2 0 P 663 22 4.1351835940388942e-03 -1.7996740470468281e-01 -2.7659605885261906e-01 3.3001628182908943e-01 0 1 0 0 0 0 P 664 22 -1.3968087240398643e-03 -7.5741194595488615e-02 -3.7931220333630755e-01 3.8680282733352339e-01 0 1 0 0 0 0 V -215 0 6.1129297576019006e-06 -6.4504614457150077e-06 -3.0192450257694374e-05 3.1693406956216335e-05 0 2 0 P 665 22 4.1122060335194123e-03 1.6913040658006116e-02 -5.3825317938393985e-02 5.6569656477043206e-02 0 1 0 0 0 0 P 666 22 2.1711057011778001e-01 -2.5035085935753026e-01 -1.0388189507955945e+00 1.0903932157574994e+00 0 1 0 0 0 0 V -216 0 -1.6851219132982025e-10 1.0999538126165820e-10 4.0001796860742436e-10 5.0216278507187129e-10 0 2 0 P 667 22 -9.2566380960936570e-02 9.0685254050486871e-02 1.1633093648067099e-01 1.7414142806603056e-01 0 1 0 0 0 0 P 668 22 -7.5103309858693089e-03 -2.5360745484476279e-02 1.2123337683075065e-01 1.2408506816225907e-01 0 1 0 0 0 0 V -217 0 1.6393039358514227e-05 9.9047241780487354e-06 1.4767469899292045e-05 2.8427182615886741e-05 0 2 0 P 669 22 9.8940591396890376e-02 1.2133965356437675e-01 7.3234360240121477e-02 1.7284624286593350e-01 0 1 0 0 0 0 P 670 22 4.9171436840115122e-02 -3.1849916179163336e-02 6.0190556938343173e-02 8.3994943336424072e-02 0 1 0 0 0 0 V -218 0 7.3548058078630191e-07 -6.4711892105781862e-07 1.4058122773641915e-06 2.5373704681975370e-06 0 2 0 P 671 22 2.6853549766319547e-02 -1.4033837957733747e-03 1.2338045730684905e-01 1.2627675901121962e-01 0 1 0 0 0 0 P 672 22 2.6194240863209987e-02 -4.5271171499734107e-02 -2.1983850377663518e-02 5.6735411347638029e-02 0 1 0 0 0 0 V -219 0 2.5678622015421473e+00 -1.7974403382515305e+00 -3.7897519685896702e+02 3.7902512065065866e+02 0 2 0 P 673 -211 -6.7514417930739964e-02 -1.0120446765128294e-02 -1.8254475337189451e+01 1.8255136544025881e+01 1.3957000000000000e-01 1 0 0 0 0 P 674 211 3.0894826880397325e-01 -1.5887730643141576e-01 -1.7377281346698286e+01 1.7381314041766348e+01 1.3957000000000000e-01 1 0 0 0 0 E 56 41 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 267 1 2 0 0 U GEV MM V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 6.3025125034486240e-01 -1.5608419695341000e+00 1.9452414252898802e+01 1.9525108567144983e+01 0 3 0 0 -3 0 P 16 2101 -1.7880188390121066e-01 3.6145160557737538e-01 3.8899755288348720e+03 3.8899755928764857e+03 5.7933000000000001e-01 2 0 0 -9 0 P 21 2 -4.5144936644365175e-01 1.1993903639567247e+00 1.0087534688187022e+01 1.0173966771175884e+01 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 7.9350883045900622e-01 1.2907195919618031e+00 -2.1409034301832048e+03 2.1409039663150570e+03 0 3 0 0 -4 0 P 108 2203 -7.9350883045900622e-01 -1.2907195919618031e+00 -1.1968432930191095e+03 1.1968445005965161e+03 7.7132999999999996e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 14 0 P 5 -2 1.0003614864163026e+01 -1.0257720694460053e+00 -3.0805747333149420e+00 1.0517340889050738e+01 0 3 0 0 -5 0 P 13 2 -1.0499899244979101e+00 -5.4262234289970435e-01 7.0635962817166409e-01 1.4158961024283889e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 4.9535803854359983e-01 4.0039251959885136e-01 1.2898926301649314e+00 1.4385815074073083e+00 0 2 0 0 -9 0 P 15 21 -6.3453392564729386e-02 -6.0242936340307540e-01 3.3113481667761038e+00 3.3662997716379435e+00 0 2 0 0 -9 0 P 22 21 -2.7574400668731508e-01 3.4891572569002499e-01 1.1026196358497136e+00 1.1889268279499483e+00 0 2 0 0 -13 0 P 23 21 4.6321719747654339e-01 -1.2959977708520807e+00 8.2530843986248943e+00 8.3670533932153930e+00 0 2 0 0 -13 0 P 24 21 -5.5943765103619141e-02 2.8844957927574533e+00 -1.9970005919302466e+01 2.0177328418308132e+01 0 2 0 0 -13 0 P 25 21 -1.3045988663419938e-01 9.3723958840172750e-01 -2.6174323016129932e+00 2.7832336735558405e+00 0 2 0 0 -13 0 P 26 21 -1.9495747437559372e+00 6.9982049704316884e-01 -1.6444493586568179e+01 1.6574436935481540e+01 0 2 0 0 -13 0 P 27 21 -3.0163843268160900e-01 1.7425856925080294e-01 -9.5580536458100731e+00 9.5643996826361857e+00 0 2 0 0 -13 0 P 28 21 -2.1272170451727654e+00 6.3116866731662902e-01 -1.3476371482465675e+01 1.3657818807455673e+01 0 2 0 0 -13 0 P 29 21 -4.2861007759990706e+00 -6.0393247141214168e-01 -2.8860821117946031e+01 2.9183597960054986e+01 0 2 0 0 -13 0 P 30 21 -3.0076073060719022e-01 -1.9639985518539025e+00 -8.3041820572937326e+01 8.3065586805828787e+01 0 2 0 0 -13 0 P 31 21 3.1703176079971879e-01 -1.2966020696646954e+00 -1.9474288849505118e+01 1.9519979822181526e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 3 0 P 6 1 1.1653713200998055e+00 2.6752250866964773e+00 -1.7756452256670705e+03 1.7756476233627661e+03 0 3 0 0 -5 0 P 106 21 -1.4490091404178268e-01 -1.0765343811603139e+00 -1.4289350967582706e+02 1.4289763829407536e+02 0 2 0 0 -13 0 P 107 21 -3.3504948253253491e-01 -6.1374980363618858e-01 -2.1051722837873946e+01 2.1063332628524677e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 3 0 0 -6 0 P 8 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 11 3.8889381082532978e+01 9.9574802708035470e+00 -6.4348808273781026e+02 6.4473905419182495e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 -12 -3.5643554689559657e+01 4.9081792325658270e+01 -6.0425972452305109e+02 6.0729671496681112e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 111 92 -7.9688716242025026e-01 -3.8320758112655301e-01 3.8952831292599849e+03 3.8961963702579596e+03 8.4348779698580927e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 11 0 P 112 221 -1.9396974754442750e-01 1.2598924306987255e-01 3.1949337287330484e-03 5.9431411091551523e-01 5.4744999999999999e-01 2 0 0 -17 0 P 113 223 -5.4564597509654456e-01 -1.1334947568334210e+00 6.5349495577190488e+00 6.7003799684583347e+00 7.7909313042627482e-01 2 0 0 -18 0 P 114 213 -3.9441813280558591e-01 -3.2653899542578857e-02 8.4058736532943872e+00 8.4541143666159542e+00 8.1037393099259503e-01 2 0 0 -19 0 P 115 -211 6.2067640778002942e-01 3.3800632674824665e-01 3.5205742917886478e+00 3.5935234254140744e+00 1.3957000000000000e-01 1 0 0 0 0 P 116 223 3.7718586716942831e-01 2.2730629852546597e-01 2.5481311947971516e+01 2.5497026924395573e+01 7.7922144591589504e-01 2 0 0 -20 0 P 117 113 -8.2504205999324987e-01 -2.0374545284331191e-01 6.1077079632131792e+01 6.1090023896303194e+01 9.2690703461292867e-01 2 0 0 -21 0 P 118 213 7.4462068175255380e-01 -3.7022949926663090e-01 2.1669260651856166e+02 2.1669576065528562e+02 8.2184933097928414e-01 2 0 0 -22 0 P 119 -211 -3.1322325275422336e-01 -1.0448531114927263e-01 1.5631336659839113e+02 1.5631377764961803e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2214 -9.5049730367357463e-02 7.5361195990320451e-01 1.5066331994641766e+03 1.5066338836070302e+03 1.2184168838635854e+00 2 0 0 -23 0 P 121 -2214 8.3769597141783364e-02 -5.9740141289930782e-01 4.6550780342107242e+02 4.6550993878808310e+02 1.2744248818855703e+00 2 0 0 -24 0 P 122 2212 -2.5579081770265655e-01 6.1388892316118060e-01 1.4451131692411484e+03 1.4451136268658397e+03 9.3827000000000005e-01 1 0 0 0 0 V -11 0 0 0 0 0 4 1 0 P 17 2 -2.4510261161848934e+00 -9.3852038831382611e-01 -1.0162161541263165e+01 1.0495612260951207e+01 0 2 0 0 -11 0 P 18 21 -1.5118186265680786e+00 -5.7158301477300355e-01 -1.0920106164589825e+01 1.1039067956504656e+01 0 2 0 0 -11 0 P 19 21 9.1795879951363357e-01 -2.2917706231768326e-01 -2.7228504205467079e+01 2.7244937360005721e+01 0 2 0 0 -11 0 P 20 -2 2.4510261161848934e+00 9.3852038831382611e-01 -5.9015137999255117e+01 5.9073470040388067e+01 0 2 0 0 -11 0 P 123 92 -5.9385982705444507e-01 -8.0076007709068675e-01 -1.0732590991057519e+02 1.0785308761784965e+02 1.0603946641482150e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 7 0 P 124 221 -1.4327812970501628e+00 -3.1715631974414271e-01 -9.7617879944391799e+00 9.8866403154563738e+00 5.4744999999999999e-01 2 0 0 -25 0 P 125 211 -4.5475281739552614e-01 -9.4300196253977286e-01 -4.8048456252358624e+00 4.9195603557158680e+00 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -1.0455551102232519e+00 5.2607524903311782e-02 -4.8048601601660819e+00 4.9194363294326351e+00 1.3497999999999999e-01 2 0 0 -26 0 P 127 113 -5.4292307192056422e-01 -2.2148993427114952e-01 -6.1087963704559840e+00 6.1875058882484737e+00 7.8994478820119496e-01 2 0 0 -27 0 P 128 311 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389745e+01 4.9767000000000000e-01 2 0 0 -28 0 P 129 -321 1.6809372678608958e+00 -2.1519884311027904e-01 -2.9657299043359608e+01 2.9709777652278355e+01 4.9359999999999998e-01 1 0 0 0 0 P 130 223 1.1498121463644551e+00 4.9551508984439335e-01 -3.5090282720025776e+01 3.5121271722328203e+01 7.7986078634625899e-01 2 0 0 -29 0 V -13 0 0 0 0 0 74 1 0 P 32 21 2.2919498513335910e+00 -5.3931438577433810e-01 5.4911357009882424e+00 5.9746519073832962e+00 0 2 0 0 -13 0 P 33 21 3.8275082768368374e+00 3.6553705284511260e+00 1.5564529802174704e+01 1.6439773151485639e+01 0 2 0 0 -13 0 P 34 21 2.6293041569352962e+00 2.5667889340332115e+00 7.9396237158021936e+00 8.7486725010187243e+00 0 2 0 0 -13 0 P 35 21 5.7644642234917343e-01 9.8089113377593973e-01 1.9821416854542029e+00 2.2854591563566911e+00 0 2 0 0 -13 0 P 36 21 -5.3890140962706091e-02 2.7404738935971873e-01 5.4609241298814792e-01 6.1337023275593960e-01 0 2 0 0 -13 0 P 37 21 -2.5645263155703646e-02 1.3041663402810690e+00 3.3087988598539289e+00 3.5566356880646492e+00 0 2 0 0 -13 0 P 38 21 3.3716652055867755e-02 -2.2187543183966403e+00 9.1906635303119355e+00 9.4547503227444061e+00 0 2 0 0 -13 0 P 39 21 2.5213698438065348e+00 -1.3044207475783756e+00 2.3154239373566323e+01 2.3327614973339621e+01 0 2 0 0 -13 0 P 40 21 1.1374896133187604e+00 -1.0709938123047886e+00 1.6755976217700258e+01 1.6828655602113315e+01 0 2 0 0 -13 0 P 41 21 2.4633426515889321e+00 -3.3125263080737302e+00 4.1258546615875410e+01 4.1464545776062494e+01 0 2 0 0 -13 0 P 42 21 1.8765359236492645e+00 1.1871959259510274e+00 2.6203848599061335e+01 2.6297766115049953e+01 0 2 0 0 -13 0 P 43 21 -5.7644642234917343e-01 -9.8089113377593973e-01 3.4456282820570408e+01 3.4475061475003855e+01 0 2 0 0 -13 0 P 44 21 -1.4127517917197032e+00 -1.1361949925331560e+00 8.8030640521746875e+01 8.8049307080493747e+01 0 2 0 0 -13 0 P 45 21 2.5645263155703646e-02 -1.3041663402810690e+00 2.3173135613390048e+02 2.3173502739805923e+02 0 2 0 0 -13 0 P 46 21 -2.5245419624345616e-01 -2.6719005480120606e-01 6.6202681689115320e+02 6.6202691894414613e+02 0 2 0 0 -13 0 P 47 21 1.4127517917197032e+00 1.1361949925331560e+00 1.3896332854063241e+03 1.3896344680223863e+03 0 2 0 0 -13 0 P 48 21 2.5245419624345616e-01 2.6719005480120606e-01 5.4687024989630231e+01 5.4688260402604023e+01 0 2 0 0 -13 0 P 49 21 9.3132849782446436e-01 6.8669548972004613e-01 1.2771682076240751e+02 1.2772206242119404e+02 0 2 0 0 -13 0 P 50 21 -3.3716652055867755e-02 2.2187543183966403e+00 4.0215320953119857e+01 4.0276494967914857e+01 0 2 0 0 -13 0 P 51 21 -1.8282763906214214e+00 4.0115474249900318e+00 7.0294034634439413e+01 7.0432140479267105e+01 0 2 0 0 -13 0 P 52 21 -4.2493496184377975e+00 2.1968843743290272e+00 9.3448641803408776e+01 9.3570999396371136e+01 0 2 0 0 -13 0 P 53 21 -1.8016928865495392e+00 2.3419894882116729e-01 1.8537995702078970e+01 1.8626814839241050e+01 0 2 0 0 -13 0 P 54 21 -9.3132849782446436e-01 -6.8669548972004613e-01 8.6339478491838637e+00 8.7111410807590808e+00 0 2 0 0 -13 0 P 55 21 -6.3280387971454042e+00 -1.4769041269268166e+00 2.7628974104691839e+01 2.8382838668745645e+01 0 2 0 0 -13 0 P 56 21 -2.6293041569352962e+00 -2.5667889340332115e+00 8.3053441710776710e+00 9.0818713700209628e+00 0 2 0 0 -13 0 P 57 21 -2.5213698438065348e+00 1.3044207475783756e+00 9.1650012017673657e+00 9.5945852648442909e+00 0 2 0 0 -13 0 P 58 21 -3.4767577075515682e-01 5.7011883976277411e-01 2.3272311839395439e+00 2.4211400034949024e+00 0 2 0 0 -13 0 P 59 21 2.3088839059774262e-02 3.2892297985008279e-01 2.2607665199560172e+00 2.2846856849283728e+00 0 2 0 0 -13 0 P 60 21 -4.2663340640220210e-01 5.3288846869669737e-01 2.4668070541485823e+00 2.5595162093500137e+00 0 2 0 0 -13 0 P 61 21 -2.7235874873859904e+00 2.7064803100231232e+00 7.4578779428432176e+00 8.3882601223576625e+00 0 2 0 0 -13 0 P 62 21 -2.2919498513335910e+00 5.3931438577433810e-01 3.9475559527521433e+00 4.5964216655829242e+00 0 2 0 0 -13 0 P 63 21 -2.2907802242727042e+00 -4.0226783466691823e-01 2.5056031540007084e+00 3.4187045224857924e+00 0 2 0 0 -13 0 P 64 21 -1.8765359236492645e+00 -1.1871959259510274e+00 1.3113427535256532e+00 2.5788449074275790e+00 0 2 0 0 -13 0 P 65 21 -1.1374896133187604e+00 1.0709938123047886e+00 7.6791084132077247e-01 1.7408611164079646e+00 0 2 0 0 -13 0 P 66 21 -2.0100594716904077e+00 1.1950825638901958e+00 5.5888075633528878e-01 2.4043521193969468e+00 0 2 0 0 -13 0 P 67 21 -9.1795879951363357e-01 2.2917706231768326e-01 -3.9283776468404602e-01 1.0244471645033884e+00 0 2 0 0 -13 0 P 68 21 -2.2202915482781052e+00 2.2931386178317714e-01 -9.0567087128387347e-01 2.4088418656385873e+00 0 2 0 0 -13 0 P 69 21 -6.9209919897388739e-01 -1.8276976386733144e+00 1.0625486119189624e+00 2.2245200633672018e+00 0 2 0 0 -13 0 P 70 21 1.0974082109116090e+00 -1.4793290650290782e+00 8.1104693157102148e-01 2.0125894735953467e+00 0 2 0 0 -13 0 P 71 21 2.7235874873859904e+00 -2.7064803100231232e+00 2.0440120821380905e+00 4.3498218195593807e+00 0 2 0 0 -13 0 P 72 21 1.5118186265680786e+00 5.7158301477300355e-01 3.4903819535779795e-01 1.6535205968580542e+00 0 2 0 0 -13 0 P 73 21 2.2907802242727042e+00 4.0226783466691823e-01 -1.0274911734027061e+00 2.5426819616591811e+00 0 2 0 0 -13 0 P 74 21 4.2493496184377975e+00 -2.1968843743290272e+00 -3.2115415473152611e+00 5.7617074070123167e+00 0 2 0 0 -13 0 P 75 21 1.8016928865495392e+00 -2.3419894882116729e-01 -2.5067821150723426e+00 3.0959494468609656e+00 0 2 0 0 -13 0 P 76 21 4.2663340640220210e-01 -5.3288846869669737e-01 -3.3458622009045778e+00 3.4147884342913959e+00 0 2 0 0 -13 0 P 77 21 3.4767577075515682e-01 -5.7011883976277411e-01 -1.8164162637576227e+00 1.9352731012097093e+00 0 2 0 0 -13 0 P 78 21 5.3890140962706091e-02 -2.7404738935971873e-01 -6.5426318239873249e-01 7.1138346252241114e-01 0 2 0 0 -13 0 P 79 21 -2.3088839059774262e-02 -3.2892297985008279e-01 -3.1922325539690849e-01 4.5894107241429810e-01 0 2 0 0 -13 0 P 80 21 -9.3297002321780897e-01 -8.3566416332879623e+00 -1.4491781841706969e+01 1.6754570522667912e+01 0 2 0 0 -13 0 P 81 21 -4.0422079593563165e+00 -9.5648883823126116e+00 -2.8793930127679420e+01 3.0609099090800875e+01 0 2 0 0 -13 0 P 82 21 -3.8275082768368374e+00 -3.6553705284511260e+00 -1.3732826537603481e+01 1.4717407313159134e+01 0 2 0 0 -13 0 P 83 21 -1.8396918775672468e+00 3.5076898330315426e-01 -4.7612002809216607e+00 5.1163007338391404e+00 0 2 0 0 -13 0 P 84 21 -2.4633426515889321e+00 3.3125263080737302e+00 -1.6624719714693128e+01 1.7129570722961045e+01 0 2 0 0 -13 0 P 85 21 -4.3170938568895023e-01 3.1672682924854845e-01 -2.3097535125758859e+00 2.3710019331317325e+00 0 2 0 0 -13 0 P 86 21 -2.2293456748496046e+00 1.4724864523063381e+00 -1.5591261313224100e+01 1.5818521670100365e+01 0 2 0 0 -13 0 P 87 21 -2.5681698473071308e+00 2.4884971888383181e+00 -4.9706974962155648e+01 4.9835443958209524e+01 0 2 0 0 -13 0 P 88 21 -1.0974082109116090e+00 1.4793290650290782e+00 -5.4666161612356085e+01 5.4697184065473152e+01 0 2 0 0 -13 0 P 89 21 -1.8242550257676140e+00 1.3243641552904142e-01 -2.2644655520464190e+02 2.2645394191722988e+02 0 2 0 0 -13 0 P 90 21 -1.4428508959266808e+00 -1.5871315338421952e+00 -7.5192118504893884e+01 7.5222705950182345e+01 0 2 0 0 -13 0 P 91 21 -1.9589249265875797e+00 -2.4473705025324115e+00 -1.2473946486162077e+02 1.2477884878138681e+02 0 2 0 0 -13 0 P 92 21 1.8282763906214214e+00 -4.0115474249900318e+00 -6.8494543017015289e+01 6.8636269788015184e+01 0 2 0 0 -13 0 P 93 21 2.5681698473071308e+00 -2.4884971888383181e+00 -5.4222757300156495e+01 5.4340551376068575e+01 0 2 0 0 -13 0 P 94 21 2.0100594716904077e+00 -1.1950825638901958e+00 -2.2156419752345965e+01 2.2279486027653178e+01 0 2 0 0 -13 0 P 95 21 4.3170938568895023e-01 -3.1672682924854845e-01 -4.6618003043369205e+00 4.6924482901331555e+00 0 2 0 0 -13 0 P 96 21 1.8396918775672468e+00 -3.5076898330315426e-01 -2.5983872810484662e+01 2.6051279264471418e+01 0 2 0 0 -13 0 P 97 21 2.2202915482781052e+00 -2.2931386178317714e-01 -2.6446956727484729e+01 2.6540983394592047e+01 0 2 0 0 -13 0 P 98 21 1.4428508959266808e+00 1.5871315338421952e+00 -1.7131009215502147e+01 1.7264769965314109e+01 0 2 0 0 -13 0 P 99 21 6.9209919897388739e-01 1.8276976386733144e+00 -1.6242077004503077e+01 1.6359234254079251e+01 0 2 0 0 -13 0 P 100 21 4.0422079593563165e+00 9.5648883823126116e+00 -1.7237771059692227e+02 1.7269018977807937e+02 0 2 0 0 -13 0 P 101 21 9.3297002321780897e-01 8.3566416332879623e+00 -1.4482319119673554e+02 1.4506708999927463e+02 0 2 0 0 -13 0 P 102 21 6.3280387971454042e+00 1.4769041269268166e+00 -3.3575882534388273e+02 3.3582169989016830e+02 0 2 0 0 -13 0 P 103 21 2.2293456748496046e+00 -1.4724864523063381e+00 -7.4254174078206188e+02 7.4254654736396492e+02 0 2 0 0 -13 0 P 104 21 1.8242550257676140e+00 -1.3243641552904142e-01 -7.1381127856972205e+02 7.1381362193442658e+02 0 2 0 0 -13 0 P 105 21 1.9589249265875797e+00 2.4473705025324115e+00 -5.5170479271759041e+02 5.5171369868510976e+02 0 2 0 0 -13 0 P 131 92 -9.7782391947879663e+00 -4.6548535903390897e-01 -2.0286046800342438e+03 8.1903714067458041e+03 7.9351654678364484e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 164 0 P 132 111 -9.5378886780884922e-02 9.2016129485517639e-01 3.7281450095512794e+00 3.8435762973089558e+00 1.3497999999999999e-01 2 0 0 -30 0 P 133 113 1.7111059602166162e-01 -8.8303316087832129e-01 9.3511847499636431e+00 9.4248957009459957e+00 7.5827194757295746e-01 2 0 0 -31 0 P 134 221 -5.9237764754734812e-01 6.6245614510044482e-01 5.0432351371495123e+00 5.1501147145063220e+00 5.4744999999999999e-01 2 0 0 -32 0 P 135 221 5.5949257037198585e-01 -3.7844598157706683e-01 1.3356639670320541e-01 8.7965605898075816e-01 5.4744999999999999e-01 2 0 0 -33 0 P 136 213 1.7643180981315237e-01 3.0573422024266106e-01 4.4575534532322197e-01 9.4402442716508184e-01 7.5357991895936527e-01 2 0 0 -34 0 P 137 113 -6.1006547629510433e-01 7.8421187115020008e-01 -4.3211779756747069e+00 4.5111053994124450e+00 8.3085779946503613e-01 2 0 0 -35 0 P 138 -211 1.3778881272259097e-01 3.9013610545415672e-01 -4.4811341333903005e+00 4.5023588088940754e+00 1.3957000000000000e-01 1 0 0 0 0 P 139 211 -5.1471806676339016e-01 3.9306527626725007e-01 -3.5166835082200163e+00 3.5785440728802449e+00 1.3957000000000000e-01 1 0 0 0 0 P 140 311 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300324e+00 4.9767000000000000e-01 2 0 0 -36 0 P 141 -321 -8.6621862706943487e-01 9.4605578613282582e-01 -1.4267764152839385e+01 1.4333809372996630e+01 4.9359999999999998e-01 1 0 0 0 0 P 142 223 -1.4823278846344665e-01 7.0068809158244638e-01 -5.0938869159078699e+00 5.2029198299935979e+00 7.8086752014802596e-01 2 0 0 -37 0 P 143 223 -1.5127336842276602e+00 -1.6932258679773229e-01 -8.9042401749900222e+00 9.0676146742845045e+00 7.8683508411640057e-01 2 0 0 -38 0 P 144 211 -1.1052020216926355e+00 1.7888768218666659e-01 -2.0680044964895078e+01 2.0710799401437260e+01 1.3957000000000000e-01 1 0 0 0 0 P 145 -211 -1.1836048869607055e-01 1.6870905370595057e-01 -1.2760479751112799e+00 1.3000962155826516e+00 1.3957000000000000e-01 1 0 0 0 0 P 146 113 -1.1965349864064070e+00 1.6293335719855687e-01 -1.2531649205245573e+01 1.2615527799632281e+01 8.0688698550683258e-01 2 0 0 -39 0 P 147 111 -2.3673624416023592e-01 -2.4200729240265403e-01 -4.6805328292745960e+00 4.6947011348106509e+00 1.3497999999999999e-01 2 0 0 -40 0 P 148 113 -2.0503896461125839e+00 5.3360163757153500e-01 -1.5414376149219221e+01 1.5590345801569375e+01 9.8339297047964802e-01 2 0 0 -41 0 P 149 213 -1.1279683274631416e+00 -1.0629888103991101e+00 -2.0170403482798850e+01 2.0237874087779595e+01 5.6930938436242173e-01 2 0 0 -42 0 P 150 331 -1.2585005341064656e-01 -2.0679762452408088e-01 -2.0539292866478739e+01 2.0563041993890913e+01 9.5788365373064077e-01 2 0 0 -43 0 P 151 313 -2.5891868332793694e-01 -1.0976812115405470e+00 -2.3427568915158162e+01 2.3473181595386592e+01 9.3130339243749294e-01 2 0 0 -44 0 P 152 -321 -5.8152469734450962e-01 -4.0236864860739080e-01 -2.5693310184079895e+01 2.5707778991549375e+01 4.9359999999999998e-01 1 0 0 0 0 P 153 221 3.7558069010983147e-01 -6.0121950718713923e-01 -4.1464817357575745e+00 4.2421148072720607e+00 5.4744999999999999e-01 2 0 0 -45 0 P 154 211 3.7166412348551842e-01 2.5263117957493336e-01 -1.3386359820979408e+00 1.4189372118057229e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 2112 4.8656919045718644e-01 -2.1099169578659491e-01 7.1963271134692353e-01 1.2968924770132602e+00 9.3957000000000002e-01 1 0 0 0 0 P 156 -2112 2.7693644967545605e-01 3.0404244051744694e-01 4.8921693944190998e-02 1.0268012075533515e+00 9.3957000000000002e-01 1 0 0 0 0 P 157 313 1.8047452413869469e+00 5.7464973658489826e-01 5.7315708504760536e+00 6.1264646927334088e+00 1.0465837334949950e+00 2 0 0 -46 0 P 158 -321 1.3041552224063184e+00 9.4508609836262170e-01 5.2668349808775874e+00 5.5296654739001863e+00 4.9359999999999998e-01 1 0 0 0 0 P 159 3222 8.3075042829696188e-01 1.8296383599183643e+00 4.4084598082256141e+00 4.9886713341170283e+00 1.1893700000000000e+00 2 0 0 -47 0 P 160 -3322 1.8542265179893243e+00 9.8944077685311804e-01 6.6420463292861696e+00 7.0896326055232510e+00 1.3149000000000000e+00 2 0 0 -48 0 P 161 -311 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425931e+00 4.9767000000000000e-01 2 0 0 -49 0 P 162 -211 1.4298062467162460e+00 1.3474966941410549e+00 6.6461866500901925e+00 6.9319095505211950e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 321 7.6410158396290562e-01 6.9909897553263511e-01 1.8606876457340611e+00 2.1859529004973464e+00 4.9359999999999998e-01 1 0 0 0 0 P 164 3224 3.2395285587733541e-01 1.5676247251179283e-02 4.1571351898734719e+00 4.4023116848350057e+00 1.4118725105304402e+00 2 0 0 -50 0 P 165 -211 6.7709439517060932e-01 -7.0060770228368074e-01 9.2688784337453249e+00 9.3209921777093996e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 -2112 9.2167164365202447e-01 1.7289840255036981e-01 5.9304801504111522e+00 6.0772328469162167e+00 9.3957000000000002e-01 1 0 0 0 0 P 167 313 2.4368048812152451e-01 -2.7189249717698005e-01 5.9901665861521334e+00 6.0642794212361464e+00 8.7182765421982122e-01 2 0 0 -51 0 P 168 -311 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645047e+00 4.9767000000000000e-01 2 0 0 -52 0 P 169 -211 8.2675932128159796e-02 -3.9746599663937121e-01 1.3273593382207474e+00 1.3950545243464900e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 111 1.3786554306129115e+00 -1.9488201490323926e+00 2.0080262669134132e+01 2.0222110652240410e+01 1.3497999999999999e-01 2 0 0 -53 0 P 171 221 8.1577905188286604e-01 3.1773786874613397e-01 1.6663022606641665e+01 1.6694983579107749e+01 5.4744999999999999e-01 2 0 0 -54 0 P 172 211 2.2723467062803587e-01 2.2022509676426130e-01 7.0122979398662952e+00 7.0208216663816030e+00 1.3957000000000000e-01 1 0 0 0 0 P 173 113 1.3167927918971483e+00 -1.1762731205460377e+00 1.6526735514980462e+01 1.6636723078691851e+01 7.2801531855450885e-01 2 0 0 -55 0 P 174 311 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280085e+01 4.9767000000000000e-01 2 0 0 -56 0 P 175 -313 2.3671732340945112e-01 -1.2818661158563485e-01 9.0995186506478944e+00 9.1482919540292045e+00 9.0417869034536813e-01 2 0 0 -57 0 P 176 111 6.3669604849360489e-02 3.2443801829702268e-01 2.8213067643071827e+01 2.8215327736520177e+01 1.3497999999999999e-01 2 0 0 -58 0 P 177 223 -5.9529930597106151e-01 -6.6909166784838903e-01 4.9008447852470091e+01 4.9022843881333117e+01 7.8051033408005732e-01 2 0 0 -59 0 P 178 113 1.7439300796065513e-01 4.5153278989565365e-02 2.1139860425192904e+01 2.1149444202864011e+01 6.1060589056441528e-01 2 0 0 -60 0 P 179 111 -7.9604417957461746e-02 -9.6209230235598897e-01 4.3259944128694286e+01 4.3270924927481758e+01 1.3497999999999999e-01 2 0 0 -61 0 P 180 113 5.9714359549159754e-02 -3.3812967846350012e-01 1.2082496526331296e+02 1.2082716193306055e+02 6.4259818942612779e-01 2 0 0 -62 0 P 181 313 -7.0125682803178158e-01 1.2932329278298590e-01 2.1123998264694384e+02 2.1124305884618306e+02 8.8946970601160780e-01 2 0 0 -63 0 P 182 -323 3.7591087000047047e-01 3.2172473610928232e-01 3.3853664827469237e+02 3.3853822148893727e+02 9.0574170822959221e-01 2 0 0 -64 0 P 183 213 3.5865522298360386e-01 -4.7339465582558199e-01 2.9925170177958864e+02 2.9925289532902849e+02 6.0133913684443618e-01 2 0 0 -65 0 P 184 311 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 2 0 0 -66 0 P 185 221 2.5994388602780161e-01 -2.1971917570972543e-01 2.4042429868065742e+02 2.4042516287803269e+02 5.4744999999999999e-01 2 0 0 -67 0 P 186 333 1.9401697942219695e-01 4.9437006858390177e-02 3.9568878893459038e+02 3.9569013623563654e+02 1.0129852159978843e+00 2 0 0 -68 0 P 187 -321 1.8767593486739167e-01 3.2317846264445632e-01 4.7583526931697583e+02 4.7583567209016002e+02 4.9359999999999998e-01 1 0 0 0 0 P 188 223 4.1211719745933267e-01 2.6963666964811467e-01 4.6095379421228202e+01 4.6104611526514589e+01 7.8016376855931513e-01 2 0 0 -69 0 P 189 3212 4.6113282985353568e-02 7.5510760968410517e-01 1.7324197899084831e+02 1.7324773526400020e+02 1.1925500000000000e+00 2 0 0 -70 0 P 190 -3112 2.7241775814165076e-01 5.5060609804795047e-01 6.2317676746792522e+01 6.2332207374530590e+01 1.1974400000000001e+00 2 0 0 -71 0 P 191 -213 -1.1185640412266291e+00 1.8677657111647226e+00 4.4372768731290904e+01 4.4431414791525569e+01 6.8431076992887618e-01 2 0 0 -72 0 P 192 223 1.9568918983671615e-01 1.2729495677269613e+00 3.0872829065873162e+01 3.0909303763703615e+01 7.7122614406223777e-01 2 0 0 -73 0 P 193 323 -6.0023605285414339e-01 9.0108152680739173e-01 2.7246443724479708e+01 2.7282237203205870e+01 8.8291559259718566e-01 2 0 0 -74 0 P 194 -323 -3.0703714755842770e+00 2.3060980355854404e+00 6.5480404290779745e+01 6.5599237691837274e+01 9.1179521735205749e-01 2 0 0 -75 0 P 195 111 -8.2657351272765955e-01 7.8848798350730487e-01 1.2765680916774796e+01 1.2817400904293603e+01 1.3497999999999999e-01 2 0 0 -76 0 P 196 213 -7.9433878678597092e-01 4.3574366466307551e-01 1.7578414382623187e+01 1.7616247407695436e+01 7.1461449218151363e-01 2 0 0 -77 0 P 197 111 -9.3314735858685560e-01 -6.2790142045255470e-01 7.8946953041036680e+00 7.9755537570553985e+00 1.3497999999999999e-01 2 0 0 -78 0 P 198 223 -1.4873893292554239e+00 2.3891052157349510e-01 1.6881736267763948e+01 1.6966975143136498e+01 7.8474253062634569e-01 2 0 0 -79 0 P 199 -213 -8.6327166983079384e-01 1.3232007939613391e-01 5.2690952433733145e+00 5.3557217283060572e+00 3.9704403781757419e-01 2 0 0 -80 0 P 200 323 -1.6613365377513465e+00 -7.6011701606238102e-01 1.0124147137273564e+01 1.0324922914625303e+01 8.7627676336584359e-01 2 0 0 -81 0 P 201 -311 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696917e+00 4.9767000000000000e-01 2 0 0 -82 0 P 202 3112 -1.8441967940919355e+00 -1.3213630468256885e+00 1.0038364402446758e+01 1.0360969286064202e+01 1.1974400000000001e+00 2 0 0 -83 0 P 203 221 -1.4583744633757945e+00 1.7279417687409573e-01 7.4072308360005090e+00 7.5712273815600772e+00 5.4744999999999999e-01 2 0 0 -84 0 P 204 -3112 -2.7871596910270373e+00 -4.3261702294956333e-01 1.0276470718751812e+01 1.0723578209664675e+01 1.1974400000000001e+00 2 0 0 -85 0 P 205 -211 -2.3463548895022307e-01 3.8275857104720590e-01 3.7780705689810018e-01 6.0313837013326677e-01 1.3957000000000000e-01 1 0 0 0 0 P 206 211 -6.4460098550996059e-01 2.0472505911299932e-01 3.1021058469222291e+00 3.1780439346803107e+00 1.3957000000000000e-01 1 0 0 0 0 P 207 311 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 2 0 0 -86 0 P 208 -321 -1.6835957314647925e+00 5.7502921006996155e-01 2.5030946983757643e+00 3.1103500138211153e+00 4.9359999999999998e-01 1 0 0 0 0 P 209 111 -1.4014985911539006e+00 9.9159072173989193e-01 6.3981511675636975e+00 6.6258590706295362e+00 1.3497999999999999e-01 2 0 0 -87 0 P 210 213 -9.6646484642001329e-01 1.0297103343557248e+00 3.9278503494105834e+00 4.2807800120428974e+00 9.5011129458422561e-01 2 0 0 -88 0 P 211 113 -1.5844201907951090e+00 3.2761292509146417e-01 1.6301442665538992e+00 2.4279522150855071e+00 7.8731446022150242e-01 2 0 0 -89 0 P 212 -213 -1.1710739363307439e+00 -5.2844511866246523e-03 1.8497534609192328e+00 2.2276480672007817e+00 4.1156525040772202e-01 2 0 0 -90 0 P 213 113 -6.2093468371241456e-01 -8.6668736080996303e-02 9.5906356420507188e-01 1.3134358278937774e+00 6.4205872204835146e-01 2 0 0 -91 0 P 214 2224 -2.0185366513081511e+00 1.9186110978437379e-01 2.2501044345770262e+00 3.2526963087490626e+00 1.1856485197243571e+00 2 0 0 -92 0 P 215 111 -9.2642973855978927e-01 4.5143517373897674e-01 1.1576608301212377e+00 1.5557840385393122e+00 1.3497999999999999e-01 2 0 0 -93 0 P 216 -2224 -3.1032735478718187e+00 -8.5363516668582565e-02 -3.5868877264797472e-01 3.3600610247344354e+00 1.2344062586590931e+00 2 0 0 -94 0 P 217 213 -9.2680052695863313e-01 4.6310995514766951e-01 1.1674412209241978e+00 1.7497123530220562e+00 7.9066065203557612e-01 2 0 0 -95 0 P 218 113 -1.6876829116224674e+00 -7.0622510073982764e-02 -4.1776953565468920e-02 1.9645158264640727e+00 1.0021556612956735e+00 2 0 0 -96 0 P 219 111 -1.8969189782821572e-02 1.8792948360487647e-02 -8.6176548071781031e-02 1.6235455924200173e-01 1.3497999999999999e-01 2 0 0 -97 0 P 220 2112 1.2311947456161887e-01 -1.8395851082529507e-01 -4.4092232421181160e-01 1.0612273175949323e+00 9.3957000000000002e-01 1 0 0 0 0 P 221 -3122 7.1199729324989025e-02 -1.9503849061399534e-01 5.8922097304292043e-01 1.2786839452149945e+00 1.1156800000000000e+00 2 0 0 -98 0 P 222 333 4.7572441015108302e-01 -2.1474214213958498e+00 1.2670522471103023e+00 2.7350441383951600e+00 1.0184854277696322e+00 2 0 0 -99 0 P 223 -311 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679957e-01 4.9767000000000000e-01 2 0 0 -100 0 P 224 111 1.2940890778630012e+00 -9.2518979500341925e-01 1.1728881721895412e-01 1.6008182174336356e+00 1.3497999999999999e-01 2 0 0 -101 0 P 225 -213 1.2261900383170972e+00 -5.2838540579492410e-01 5.2201528021316679e-01 1.6417319868511671e+00 8.0003175983775732e-01 2 0 0 -102 0 P 226 223 6.6024216925665991e-01 9.4027839869779237e-02 -2.4006983269977769e-01 1.0578426798937934e+00 7.8526215628735507e-01 2 0 0 -103 0 P 227 331 1.4946045294379426e+00 -1.0732848342928707e+00 9.5876268473866905e-02 2.0767748473918295e+00 9.5813280549378643e-01 2 0 0 -104 0 P 228 223 9.9420282128298698e-01 -3.7546557748686166e-01 -1.0613068048478145e+00 1.6955343449694420e+00 7.8679789732185013e-01 2 0 0 -105 0 P 229 213 9.2827556121699073e-01 1.2565483393623539e-01 -5.9530845933283794e-01 1.2728415388191838e+00 6.2309611324906244e-01 2 0 0 -106 0 P 230 -211 1.5554644844482319e+00 -1.6863632900265141e-01 -1.7007854817912444e+00 2.3151801255650000e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 3212 1.3099515119184744e+00 -9.1416401295275251e-01 -1.2311207243195397e+00 2.3429687463780744e+00 1.1925500000000000e+00 2 0 0 -107 0 P 232 -3212 1.3242055177125795e+00 -6.8638328788203096e-01 -1.9338349209273054e+00 2.7178181092416955e+00 1.1925500000000000e+00 2 0 0 -108 0 P 233 213 4.4600368878850227e-01 -8.0727387354407465e-01 -1.6343381049089423e+00 2.0195652366821699e+00 7.4630577294963429e-01 2 0 0 -109 0 P 234 223 5.9193869189485193e-01 -1.0175355777714485e+00 -3.4830928743747203e+00 3.7577959153385119e+00 7.7673940470532832e-01 2 0 0 -110 0 P 235 113 -1.7673372205386045e-02 -2.9141556480679931e+00 -4.8090909785285803e+00 5.6572316424831532e+00 6.1991800078394799e-01 2 0 0 -111 0 P 236 -211 -3.2654834478515110e-01 -6.7351702809598046e-01 -2.7714904742543802e+00 2.8741778376433031e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 211 -1.4113547946701910e-01 8.1332088206809740e-03 -2.5848972391342706e-01 3.2600934790116970e-01 1.3957000000000000e-01 1 0 0 0 0 P 238 113 -5.6972190284160862e-01 -3.5003862791043274e+00 -6.6608917286834028e+00 7.5771878863400373e+00 6.8484340847811531e-01 2 0 0 -112 0 P 239 -213 -8.6042664087407350e-01 -2.8563772686369608e+00 -9.5358671015221450e+00 1.0019230517937205e+01 7.4363545407684173e-01 2 0 0 -113 0 P 240 211 -1.7150384319993699e+00 -3.7363227332416113e+00 -9.2359168317705915e+00 1.0110544193981660e+01 1.3957000000000000e-01 1 0 0 0 0 P 241 -213 -8.1549856648566732e-01 -1.3430766565358121e+00 -4.4625495466393730e+00 4.8342640599841600e+00 9.9341216429620149e-01 2 0 0 -114 0 P 242 111 -1.9899595175840767e+00 -2.8105357529960577e+00 -9.9097800936532590e+00 1.0491949828580909e+01 1.3497999999999999e-01 2 0 0 -115 0 P 243 211 1.5907968441241596e-01 2.5791089111383038e-02 -3.3179660333165167e-01 3.9438597484282650e-01 1.3957000000000000e-01 1 0 0 0 0 P 244 221 -6.1327225553376563e-01 -1.9053975470304130e-01 -3.2725294108080534e+00 3.3795796343086031e+00 5.4744999999999999e-01 2 0 0 -116 0 P 245 -211 -6.4329156172857138e-01 -6.8687745213541831e-02 -1.4702607017873401e+00 1.6123549100163732e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 113 -4.5403661687550312e-01 -8.6902816474020469e-02 -2.8367549097601654e+00 2.9740262594884488e+00 7.6416779904912269e-01 2 0 0 -117 0 P 247 2212 -3.7022331340018594e-01 9.6636894054778391e-02 -3.4626391076266749e+00 3.6078558970173993e+00 9.3827000000000005e-01 1 0 0 0 0 P 248 -2212 -5.2882150793671845e-01 -4.3613633431824639e-01 -3.8558104386500678e+00 4.0270947122052956e+00 9.3827000000000005e-01 1 0 0 0 0 P 249 213 -1.6059435270807487e+00 -5.4791989963380516e-01 -4.7447532838858999e+00 5.0922126184455179e+00 7.3394468314884231e-01 2 0 0 -118 0 P 250 113 -1.4939629446410834e+00 2.2898207276010285e-01 -7.3349343404515981e+00 7.5318728112929723e+00 8.0217716070205192e-01 2 0 0 -119 0 P 251 223 -1.8797596367186018e+00 1.8505823868378783e+00 -1.0122234129684928e+01 1.0489907890746126e+01 7.8764987009991638e-01 2 0 0 -120 0 P 252 223 -1.8133470483218717e+00 1.7186906924022449e+00 -1.7262417226371358e+01 1.7459919314773000e+01 7.8460739688900027e-01 2 0 0 -121 0 P 253 -211 -2.5838464734318373e-01 3.8031641369989722e-01 -1.4854522860686203e+01 1.4862292299778700e+01 1.3957000000000000e-01 1 0 0 0 0 P 254 211 -1.7649897167754627e+00 1.4636054011096398e+00 -3.7881886874393018e+01 3.7951471149610136e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 311 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -122 0 P 256 -311 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 2 0 0 -123 0 P 257 1114 -1.1721384161292434e+00 7.9620984340023501e-02 -5.7798059416760822e+01 5.7824385184096379e+01 1.2898068101919591e+00 2 0 0 -124 0 P 258 223 -2.5658458888797053e-01 1.1741062227357534e-01 -6.6069309686689479e+01 6.6074625560155994e+01 7.8920183328603977e-01 2 0 0 -125 0 P 259 -1114 -1.1118756984451283e+00 4.7098036284291449e-03 -7.5095286699551011e+01 7.5113186769820999e+01 1.2051773642106405e+00 2 0 0 -126 0 P 260 -211 -8.8366504358488751e-01 -5.7185408679097882e-01 -5.3190507796194645e+01 5.3201104127713144e+01 1.3957000000000000e-01 1 0 0 0 0 P 261 213 -7.5457908692256526e-01 -1.8550274055557001e-03 -6.0851918697939290e+01 6.0861347878563521e+01 7.6043627962360516e-01 2 0 0 -127 0 P 262 313 -5.2356689018349933e-01 -1.3194785611780053e+00 -6.2402774114210409e+01 6.2425474597775633e+01 9.0471854543684183e-01 2 0 0 -128 0 P 263 -313 -1.1166248071558116e+00 -1.3816476856172815e+00 -4.8281968538343975e+01 4.8322766889805884e+01 8.8629152187922478e-01 2 0 0 -129 0 P 264 -213 7.4932935392847599e-01 -1.7881148332235097e+00 -5.4211638245296051e+01 5.4258059505359093e+01 1.1298012704852716e+00 2 0 0 -130 0 P 265 2224 2.1305547501532636e+00 -2.8875932717779862e+00 -4.6292857887869758e+01 4.6449002697402115e+01 1.2663734481366959e+00 2 0 0 -131 0 P 266 -213 2.9501615734955484e+00 -2.0611191424768478e+00 -5.7704459572170741e+01 5.7822650963053867e+01 8.3823889772115534e-01 2 0 0 -132 0 P 267 -2112 1.3366857100925198e+00 -8.2706876300639198e-01 -1.9515446600578798e+01 1.9601179026559830e+01 9.3957000000000002e-01 1 0 0 0 0 P 268 -213 1.4454688220488716e+00 -7.3744816474676456e-01 -1.7258252555606354e+01 1.7343707648671078e+01 5.6894975021936267e-01 2 0 0 -133 0 P 269 223 1.5333538260086685e+00 1.6892059317215538e+00 -2.2561208053669169e+01 2.2689639384113832e+01 7.7912508924065293e-01 2 0 0 -134 0 P 270 213 1.1917981052355211e+00 2.4088605343486744e-01 -1.9862858981540064e+01 1.9913265186034764e+01 7.2564084395440487e-01 2 0 0 -135 0 P 271 2212 1.0148440736041775e+00 9.6779805550273279e-01 -2.5790979365897766e+01 2.5846112063810075e+01 9.3827000000000005e-01 1 0 0 0 0 P 272 -211 8.3949500658127896e-01 2.3400794756034817e+00 -3.4751319161058518e+01 3.4840413129537779e+01 1.3957000000000000e-01 1 0 0 0 0 P 273 -2214 1.7983847562803692e+00 7.3664058181282535e+00 -1.1993075545251776e+02 1.2017692097077203e+02 1.2681120591629913e+00 2 0 0 -136 0 P 274 223 1.1509038263009055e+00 3.5319809372778194e-01 -2.0722945499304867e+01 2.0772678532097942e+01 7.8382059166358686e-01 2 0 0 -137 0 P 275 113 1.2596345802193534e+00 4.5750511743499249e+00 -7.3766824680073668e+01 7.3923106188787401e+01 7.5062153873152426e-01 2 0 0 -138 0 P 276 2214 1.5190503581519559e+00 1.6381843012732062e+00 -9.0013673850423800e+01 9.0049028670783741e+01 1.1725709810594909e+00 2 0 0 -139 0 P 277 213 2.0578233862762640e-01 1.2216377008536984e-01 -2.0912759884649834e+01 2.0924960597890376e+01 6.7318620947914676e-01 2 0 0 -140 0 P 278 -2224 3.0556014846562324e-01 1.5957522138898375e+00 -5.1694021773796713e+01 5.1734448116246725e+01 1.2415484728318067e+00 2 0 0 -141 0 P 279 331 6.1159455107455185e-01 9.8642666529095557e-01 -4.3395578927702907e+01 4.3421661426494119e+01 9.5777090459737735e-01 2 0 0 -142 0 P 280 113 1.7370568052796040e+00 2.4297024488596281e-01 -8.8460462398386383e+01 8.8479856883274010e+01 5.9604149490845026e-01 2 0 0 -143 0 P 281 223 1.0381032329670323e+00 -1.9541194859645697e-01 -6.0129467008396098e+01 6.0143779295091235e+01 7.7816516942080050e-01 2 0 0 -144 0 P 282 223 6.0277948289184857e-01 4.2525395145953201e-02 -1.4154617604409043e+02 1.4154968951817088e+02 7.9340939728978999e-01 2 0 0 -145 0 P 283 113 1.3576402747404808e+00 2.1290308839209571e-01 -3.0819349617131866e+02 3.0819771455210758e+02 8.4359824629068492e-01 2 0 0 -146 0 P 284 321 1.9707904859542941e-01 -1.8041953679716968e-01 -1.6127321181959451e+02 1.6127418852044630e+02 4.9359999999999998e-01 1 0 0 0 0 P 285 -311 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -147 0 P 286 2112 1.1564324061673690e+00 4.0927520449593802e-01 -2.1981471572107174e+02 2.1982014666864256e+02 9.3957000000000002e-01 1 0 0 0 0 P 287 -2212 9.0904909410333434e-01 -3.5196262463989575e-02 -3.5959413299945447e+02 3.5959650783517719e+02 9.3827000000000005e-01 1 0 0 0 0 P 288 321 7.1688243292429099e-01 -1.5260811464153853e-01 -2.1460689020507988e+02 2.1460870945540515e+02 4.9359999999999998e-01 1 0 0 0 0 P 289 333 8.0097651661225422e-01 9.8596548019314847e-02 -2.9490839976680940e+02 2.9491126732797227e+02 1.0198329819226979e+00 2 0 0 -148 0 P 290 -321 5.0418828950498273e-01 5.3523060479821194e-01 -2.0070252973120446e+02 2.0070448365469218e+02 4.9359999999999998e-01 1 0 0 0 0 P 291 223 -4.8590448068744879e-01 -5.8809670963273808e-01 -7.4207865814018902e+01 7.4215919884725380e+01 7.8323352858977313e-01 2 0 0 -149 0 P 292 211 3.9242950286129108e-01 -2.0840078293561953e-01 -1.8648424078664419e+02 1.8648482236728285e+02 1.3957000000000000e-01 1 0 0 0 0 P 293 221 -1.7063816599739356e-01 -6.0097669642154050e-01 -5.0431125538651315e+01 5.0437966007473435e+01 5.4744999999999999e-01 2 0 0 -150 0 P 294 2214 1.6431277093737304e-02 -5.3759544996054023e-02 -3.2489795453959999e+02 3.2490020742516401e+02 1.2086193871872084e+00 2 0 0 -151 0 P 295 111 -5.7351337967272420e-01 -8.2647110166747562e-01 -8.0206852911437488e+02 8.0206917132338140e+02 1.3497999999999999e-01 2 0 0 -152 0 V -15 0 0 0 0 0 2 1 0 P 109 21 5.1387124488148161e-01 -3.2205039602836177e-01 7.0657442164984490e+00 7.0917220367749429e+00 0 2 0 0 -15 0 P 110 21 -5.1387124488148161e-01 3.2205039602836177e-01 1.2307516868381542e+01 1.2322449090152261e+01 0 2 0 0 -15 0 P 296 92 0 0 1.9373261084879992e+01 1.9414171126927204e+01 1.2596807066429270e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 2 0 P 297 -211 -2.0317271556976602e-01 2.5215155745021967e-01 6.9362772865471038e+00 6.9452344770386132e+00 1.3957000000000000e-01 1 0 0 0 0 P 298 213 2.0317271556976602e-01 -2.5215155745021967e-01 1.2436983798332886e+01 1.2468936649888589e+01 8.3123740210821184e-01 2 0 0 -153 0 V -17 0 0 0 0 0 0 3 0 P 299 211 -1.3311297140433123e-01 8.2070871348664379e-02 -5.7585411632740287e-02 2.1737192922024559e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 -211 -4.2938482434311713e-03 -2.7874120168555949e-02 -7.8442671347478413e-02 1.6256826657142293e-01 1.3957000000000000e-01 1 0 0 0 0 P 301 111 -5.6562927896665088e-02 7.1792491889764123e-02 1.3922301670895176e-01 2.1437391512384674e-01 1.3497999999999999e-01 2 0 0 -154 0 V -18 0 0 0 0 0 0 3 0 P 302 -211 -3.3900975360586688e-01 -8.4631353862517522e-01 4.2709349160994501e+00 4.3693865772162566e+00 1.3957000000000000e-01 1 0 0 0 0 P 303 211 -2.5033979406491824e-01 -8.4753424823063292e-02 1.4403521465048290e+00 1.4710361132048297e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 111 4.3703572574240603e-02 -2.0242779338518258e-01 8.2366249511477030e-01 8.5995727803724942e-01 1.3497999999999999e-01 2 0 0 -155 0 V -19 0 0 0 0 0 0 2 0 P 305 211 -4.4526015143556819e-01 -1.8172716722569746e-01 2.8014743515334413e+00 2.8458776665492875e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 5.0842018629982250e-02 1.4907326768311860e-01 5.6043993017609459e+00 5.6082367000666684e+00 1.3497999999999999e-01 2 0 0 -156 0 V -20 0 0 0 0 0 0 3 0 P 307 211 -2.6929065983679287e-03 1.1285645195543136e-01 1.7468123181512798e+00 1.7560116429679400e+00 1.3957000000000000e-01 1 0 0 0 0 P 308 -211 2.0154960412591191e-01 1.2413227727648309e-02 1.7424304682299983e+01 1.7426033678885940e+01 1.3957000000000000e-01 1 0 0 0 0 P 309 111 1.7832916964188436e-01 1.0203661884238632e-01 6.3101949475202526e+00 6.3149816025416952e+00 1.3497999999999999e-01 2 0 0 -157 0 V -21 0 0 0 0 0 0 2 0 P 310 -211 -4.4685271127191584e-01 -5.1144332797634284e-01 2.5860721786668751e+01 2.5870014741698281e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -3.7818934872133403e-01 3.0769787513303087e-01 3.5216357845463044e+01 3.5220009154604917e+01 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 312 211 1.2991520945383486e-01 -4.4532952738337911e-01 6.3737149545197269e+01 6.3738990486838958e+01 1.3957000000000000e-01 1 0 0 0 0 P 313 111 6.1470547229871897e-01 7.5100028116748221e-02 1.5295545697336439e+02 1.5295677016844670e+02 1.3497999999999999e-01 2 0 0 -158 0 V -23 0 0 0 0 0 0 2 0 P 314 2212 -1.2219673877438203e-01 7.9464546996402807e-01 1.1677973569188712e+03 1.1677980106040429e+03 9.3827000000000005e-01 1 0 0 0 0 P 315 111 2.7147008407024571e-02 -4.1033510060823578e-02 3.3883584254530552e+02 3.3883587300298723e+02 1.3497999999999999e-01 2 0 0 -159 0 V -24 0 0 0 0 0 0 2 0 P 316 -2112 2.0383755609826110e-01 -2.5760982211119121e-01 2.8949200422010205e+02 2.8949371532336625e+02 9.3957000000000002e-01 1 0 0 0 0 P 317 -211 -1.2006795895647772e-01 -3.3979159078811655e-01 1.7601579920097041e+02 1.7601622346471694e+02 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 3 0 P 318 211 -2.2537908639659168e-01 -9.1510707193303495e-02 -1.5674323812313566e+00 1.5923234585813844e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 -211 -9.0395642249094277e-01 -7.5107488114054516e-02 -6.0381441426750193e+00 6.1074907139638022e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 111 -3.0344578816262824e-01 -1.5053812443678469e-01 -2.1562114705328037e+00 2.1868261429111868e+00 1.3497999999999999e-01 2 0 0 -160 0 V -26 0 -4.1412397752595289e-04 2.0836814097827171e-05 -1.9031113535077952e-03 1.9484927384605410e-03 0 2 0 P 321 22 -1.1382747632865017e-01 4.0426905399940288e-02 -4.4421580483599166e-01 4.6034629390672083e-01 0 1 0 0 0 0 P 322 22 -9.3172763389460167e-01 1.2180619503371494e-02 -4.3606443553300904e+00 4.4590900355259144e+00 0 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 323 -211 1.4254201284684628e-01 -2.0005022368394540e-01 -1.6107380024488089e+00 1.6353271889304617e+00 1.3957000000000000e-01 1 0 0 0 0 P 324 211 -6.8546508476741042e-01 -2.1439710587204105e-02 -4.4980583680071753e+00 4.5521786993180120e+00 1.3957000000000000e-01 1 0 0 0 0 V -28 0 0 0 0 0 0 1 0 P 325 130 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389741e+01 4.9767000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 3 0 P 326 211 2.5167538714079141e-01 7.4449632190263848e-02 -1.0977353280090194e+01 1.0981377330236525e+01 1.3957000000000000e-01 1 0 0 0 0 P 327 -211 5.3309548495712133e-01 -1.9899962064743846e-02 -1.1139730934144831e+01 1.1153370426674401e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 111 3.6504127426654226e-01 4.4096541971887332e-01 -1.2973198505790748e+01 1.2986523965417277e+01 1.3497999999999999e-01 2 0 0 -161 0 V -30 0 -3.0542603647347061e-05 2.9465768231238892e-04 1.1938413123666275e-03 1.2308051750146046e-03 0 2 0 P 329 22 -1.2899026002081496e-01 6.5304148426829556e-01 2.6509678462506225e+00 2.7332640174725600e+00 0 1 0 0 0 0 P 330 22 3.3611373239930027e-02 2.6711981058688078e-01 1.0771771633006568e+00 1.1103122798363956e+00 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 331 -211 7.4338762428573388e-02 -9.1962591215722234e-01 8.7346102008974533e+00 8.7843117668051978e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 211 9.6771833593088247e-02 3.6592751278901069e-02 6.1657454906619036e-01 6.4058393414079928e-01 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 3 0 P 333 -211 -2.6433657073505956e-01 2.1069054534130133e-01 1.4428354141759185e+00 1.4884616709288756e+00 1.3957000000000000e-01 1 0 0 0 0 P 334 211 -2.2718123810590876e-01 1.2236106234764597e-01 1.4061006963613412e+00 1.4363782571920345e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -1.0085983870637980e-01 3.2940453741149744e-01 2.1942990266122524e+00 2.2252747863854112e+00 1.3497999999999999e-01 2 0 0 -162 0 V -33 0 0 0 0 0 0 3 0 P 336 111 1.1452527962241617e-01 -2.1564067455358379e-01 8.3943073226767542e-02 2.9134683821396057e-01 1.3497999999999999e-01 2 0 0 -163 0 P 337 111 2.1798140389722739e-01 -1.6157765338157687e-01 1.0065385695279425e-01 3.1933372799749282e-01 1.3497999999999999e-01 2 0 0 -164 0 P 338 111 2.2698588685234231e-01 -1.2276536419061545e-03 -5.1030533476356360e-02 2.6897549276930482e-01 1.3497999999999999e-01 2 0 0 -165 0 V -34 0 0 0 0 0 0 2 0 P 339 211 1.2060933333105567e-01 -1.4039999345637508e-01 4.1279361792102048e-01 4.7343122557076578e-01 1.3957000000000000e-01 1 0 0 0 0 P 340 111 5.5822476482096692e-02 4.4613421369903616e-01 3.2961727402201504e-02 4.7059320159431600e-01 1.3497999999999999e-01 2 0 0 -166 0 V -35 0 0 0 0 0 0 2 0 P 341 -211 1.5862968892975057e-01 3.2887229730958190e-01 -1.3134574465456359e+00 1.3703906796727032e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 211 -7.6869516522485493e-01 4.5533957384061818e-01 -3.0077205291290707e+00 3.1407147197397411e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 1 0 P 343 310 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300331e+00 4.9767000000000000e-01 2 0 0 -167 0 V -37 0 0 0 0 0 0 3 0 P 344 -211 1.2005336521129144e-01 3.1092501659564013e-02 -5.0581641834251301e-01 5.3917491421880326e-01 1.3957000000000000e-01 1 0 0 0 0 P 345 211 -1.8221207856344207e-02 2.3427491252188562e-01 -2.3629269615407358e+00 2.3786803815412054e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 111 -2.5006494581839389e-01 4.3532067740099673e-01 -2.2251435360246208e+00 2.2850645342335896e+00 1.3497999999999999e-01 2 0 0 -168 0 V -38 0 0 0 0 0 0 3 0 P 347 -211 -5.9016838819195361e-01 1.7141108689545579e-02 -4.7192997852929928e+00 4.7581364831617305e+00 1.3957000000000000e-01 1 0 0 0 0 P 348 211 -1.1034022836323337e-01 -3.0323389382045547e-02 -5.3715563395821642e-01 5.6666606915529982e-01 1.3957000000000000e-01 1 0 0 0 0 P 349 111 -8.1222506767247327e-01 -1.5614030610523233e-01 -3.6477847557388130e+00 3.7428121219674733e+00 1.3497999999999999e-01 2 0 0 -169 0 V -39 0 0 0 0 0 0 2 0 P 350 -211 2.5084824323340603e-02 1.7172563836451307e-01 -1.9557957883483599e+00 1.9684348843444670e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 211 -1.2216198107297476e+00 -8.7922811659562079e-03 -1.0575853416897214e+01 1.0647092915287814e+01 1.3957000000000000e-01 1 0 0 0 0 V -40 0 -4.1813923581260875e-05 -4.2744931037189045e-05 -8.2670671209264686e-04 8.2920921206708917e-04 0 2 0 P 352 22 -1.7905707402183735e-01 -2.2906237901470136e-01 -4.2758823563526276e+00 4.2857555850287161e+00 0 1 0 0 0 0 P 353 22 -5.7679170138398558e-02 -1.2944913387952650e-02 -4.0465047292196826e-01 4.0894554978193431e-01 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 354 211 -5.9718795198551451e-02 2.6452495283792704e-01 -1.4674440599005480e+00 1.4988034023884778e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 -211 -1.9906708509140325e+00 2.6907668473360791e-01 -1.3946932089318674e+01 1.4091542399180899e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 356 211 -6.2484684743194474e-01 -3.3409804107312108e-01 -1.1050184857881687e+01 1.1073758181487090e+01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 -5.0312148003119694e-01 -7.2889076932598906e-01 -9.1202186249171646e+00 9.1641159062925084e+00 1.3497999999999999e-01 2 0 0 -170 0 V -43 0 0 0 0 0 0 2 0 P 358 22 8.1110939178376681e-02 7.1308275250644287e-02 -4.8974168720692255e+00 4.8986075443335881e+00 0 1 0 0 0 0 P 359 113 -2.0696099258902326e-01 -2.7810589977472516e-01 -1.5641875994409514e+01 1.5664434449557323e+01 7.6553658047847217e-01 2 0 0 -171 0 V -44 0 0 0 0 0 0 2 0 P 360 321 1.0329203360506498e-01 -8.7387326781869390e-01 -1.7137062043677236e+01 1.7166737027788869e+01 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 -3.6221071693300189e-01 -2.2380794372185306e-01 -6.2905068714809262e+00 6.3064445675977261e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 362 111 1.6889257592659648e-01 -9.4484418283927146e-02 -1.7355837553971882e+00 1.7515486233331292e+00 1.3497999999999999e-01 2 0 0 -172 0 P 363 111 2.9925921186909250e-02 -2.0438383490219006e-01 -8.4333768920500407e-01 8.7869583540713725e-01 1.3497999999999999e-01 2 0 0 -173 0 P 364 111 1.7676219299632576e-01 -3.0235125400102209e-01 -1.5675602911553823e+00 1.6118703485317942e+00 1.3497999999999999e-01 2 0 0 -174 0 V -46 0 0 0 0 0 0 2 0 P 365 311 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 2 0 0 -175 0 P 366 111 3.7898161351632903e-01 -2.1799505613207515e-01 1.2846742739940369e+00 1.3637288948114183e+00 1.3497999999999999e-01 2 0 0 -176 0 V -47 0 2.6817846767744381e+01 5.9063419656930051e+01 1.4231157227461964e+02 1.6104165445601933e+02 0 2 0 P 367 2112 5.8115766378682054e-01 1.6774805152241707e+00 3.8726477300170425e+00 4.3625539921978111e+00 9.3957000000000002e-01 1 0 0 0 0 P 368 211 2.4959276451014145e-01 1.5215784469419352e-01 5.3581207820857168e-01 6.2611734191921709e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 5.5561167844417639e+02 2.9648203464623077e+02 1.9902630414974558e+03 2.1243805076085168e+03 0 2 0 P 369 -3122 1.5246765486763587e+00 6.8901077612516815e-01 5.2717372079757707e+00 5.6422805212127161e+00 1.1156800000000000e+00 2 0 0 -177 0 P 370 111 3.2954996931296582e-01 3.0043000072794990e-01 1.3703091213103993e+00 1.4473520843105354e+00 1.3497999999999999e-01 2 0 0 -178 0 V -49 0 0 0 0 0 0 1 0 P 371 310 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425934e+00 4.9767000000000000e-01 2 0 0 -179 0 V -50 0 0 0 0 0 0 2 0 P 372 3122 4.0008082281271762e-01 1.7226597706454996e-01 3.7675672439506922e+00 3.9533587026383934e+00 1.1156800000000000e+00 2 0 0 -180 0 P 373 211 -7.6127966935382194e-02 -1.5658972981337069e-01 3.8956794592278010e-01 4.4895298219661400e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 374 311 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -181 0 P 375 111 3.2308081006429989e-01 1.4648299619720992e-02 1.7578846612369856e+00 1.7924770194135893e+00 1.3497999999999999e-01 2 0 0 -182 0 V -52 0 0 0 0 0 0 1 0 P 376 130 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645051e+00 4.9767000000000000e-01 1 0 0 0 0 V -53 0 2.3332650498310875e-04 -3.2982236468777218e-04 3.3984253089612997e-03 3.4224319558740653e-03 0 2 0 P 377 22 5.4748163446670128e-01 -7.7073006323284021e-01 7.4008500562631090e+00 7.4609880395118520e+00 0 1 0 0 0 0 P 378 22 8.3117379614621023e-01 -1.1780900857995524e+00 1.2679412612871024e+01 1.2761122612728558e+01 0 1 0 0 0 0 V -54 0 0 0 0 0 0 3 0 P 379 -211 2.5687463659686677e-01 6.5879190823043429e-02 5.2726859506992803e+00 5.2811950888328152e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 211 2.4344618234348475e-01 -2.6033907415343182e-02 5.2831048139718035e+00 5.2906162276567530e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.1545823294251452e-01 2.7789258533843370e-01 6.1072318419705818e+00 6.1231722626181826e+00 1.3497999999999999e-01 2 0 0 -183 0 V -55 0 0 0 0 0 0 2 0 P 382 -211 4.1775258590954462e-01 -7.2867077866813867e-01 9.3546085054334149e+00 9.3932772982354855e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 211 8.9904020598760359e-01 -4.4760234187789893e-01 7.1721270095470473e+00 7.2434457804563630e+00 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 1 0 P 384 310 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280088e+01 4.9767000000000000e-01 2 0 0 -184 0 V -57 0 0 0 0 0 0 2 0 P 385 -321 7.1424613341219384e-02 -2.0219924047183085e-01 8.2801006520162108e+00 8.2975715589416641e+00 4.9359999999999998e-01 1 0 0 0 0 P 386 211 1.6529271006823174e-01 7.4012628886196002e-02 8.1941799863168385e-01 8.5072039508754027e-01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 8.4540998512518928e-06 4.3079133421901049e-05 3.7461531531249770e-03 3.7464532500979474e-03 0 2 0 P 387 22 3.6906006137794822e-02 2.7604572388385823e-01 1.8433548845177015e+01 1.8435652587377820e+01 0 1 0 0 0 0 P 388 22 2.6763598711565674e-02 4.8392294413164484e-02 9.7795187978948146e+00 9.7796751491423581e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 389 -211 -2.7048272019072223e-01 -3.3337801697846353e-01 2.0863152665314590e+01 2.0868035861701252e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 211 -3.6903342906120246e-01 -1.0185232158680115e-01 1.1405057272625475e+01 1.1412334149679658e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 4.4216843280863220e-02 -2.3386132928312431e-01 1.6740237914530020e+01 1.6742473869952200e+01 1.3497999999999999e-01 2 0 0 -185 0 V -60 0 0 0 0 0 0 2 0 P 392 -211 3.6535041280299030e-01 2.8363138994268199e-02 1.4670351021381544e+01 1.4675590763824106e+01 1.3957000000000000e-01 1 0 0 0 0 P 393 211 -1.9095740484233517e-01 1.6790139995297170e-02 6.4695094038113599e+00 6.4738534390399041e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 -5.5865219181540288e-07 -6.7518234192367481e-06 3.0359197674457219e-04 3.0366903838848478e-04 0 2 0 P 394 22 -8.9078266023006322e-02 -9.5497267321269530e-01 4.3017933459134625e+01 4.3028624273134682e+01 0 1 0 0 0 0 P 395 22 9.4738480655445784e-03 -7.1196291432936137e-03 2.4201066955966205e-01 2.4230065434707967e-01 0 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 396 211 9.3430636949675128e-02 4.8614313543461886e-02 7.8310333940595754e+01 7.8310529140773440e+01 1.3957000000000000e-01 1 0 0 0 0 P 397 -211 -3.3716277400515381e-02 -3.8674399200696202e-01 4.2514631322717214e+01 4.2516632792287105e+01 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 398 311 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -186 0 P 399 111 -4.2885849112531471e-01 -1.5673053900609951e-01 6.7992945942717043e+01 6.7994613033952248e+01 1.3497999999999999e-01 2 0 0 -187 0 V -64 0 0 0 0 0 0 2 0 P 400 -311 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -188 0 P 401 -211 1.2172230641498865e-02 3.7825020894308725e-01 1.1158794225620269e+02 1.1158867128047673e+02 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 402 211 4.3187380787425550e-01 -3.8323959647493888e-01 2.6988168414236554e+02 2.6988233788612160e+02 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -7.3218584890651639e-02 -9.0155059350643107e-02 2.9370017637223118e+01 2.9370557442906950e+01 1.3497999999999999e-01 2 0 0 -189 0 V -66 0 0 0 0 0 0 1 0 P 404 130 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 405 111 6.5309564888249233e-03 -6.6103335182406145e-02 9.7992131137707318e+01 9.7992246615813144e+01 1.3497999999999999e-01 2 0 0 -190 0 P 406 111 1.2000194664104810e-01 4.1020079997362527e-02 6.8020962999834879e+01 6.8021215147477818e+01 1.3497999999999999e-01 2 0 0 -191 0 P 407 111 1.3341098289792858e-01 -1.9463592052468182e-01 7.4411204543115218e+01 7.4411701114741675e+01 1.3497999999999999e-01 2 0 0 -192 0 V -68 0 0 0 0 0 0 2 0 P 408 130 1.5093662397629165e-01 1.0034531946336880e-01 2.1097599386832690e+02 2.1097665869760286e+02 4.9767000000000000e-01 1 0 0 0 0 P 409 310 4.3080355445905313e-02 -5.0908312604978634e-02 1.8471279506626348e+02 1.8471347753803366e+02 4.9767000000000000e-01 2 0 0 -193 0 V -69 0 0 0 0 0 0 3 0 P 410 211 -8.8986611946982638e-02 6.9570257664758217e-02 7.3060465880930776e+00 7.3082525387498647e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 -211 3.2612733257024029e-01 -9.3180200276067285e-02 1.7277474714617092e+01 1.7281367245849093e+01 1.3957000000000000e-01 1 0 0 0 0 P 412 111 1.7497647683607498e-01 2.9324661225942372e-01 2.1511858118518035e+01 2.1514991741915633e+01 1.3497999999999999e-01 2 0 0 -194 0 V -70 0 0 0 0 0 0 2 0 P 413 3122 7.9052202219132631e-02 6.3510108851245561e-01 1.6014488825012842e+02 1.6015005331610672e+02 1.1156800000000000e+00 2 0 0 -195 0 P 414 22 -3.2938919233779070e-02 1.2000652117164945e-01 1.3097090740719890e+01 1.3097681947893477e+01 0 1 0 0 0 0 V -71 0 1.2757481431566603e+01 2.5785202550200765e+01 2.9183729040974845e+03 2.9190533818123808e+03 0 2 0 P 415 -2112 3.3471436843346714e-01 4.2790066680758426e-01 4.3607026156806192e+01 4.3620530197538514e+01 9.3957000000000002e-01 1 0 0 0 0 P 416 211 -6.2296610291816372e-02 1.2270543124036619e-01 1.8710650589986333e+01 1.8711677176992062e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 417 -211 -5.3966998199939242e-01 4.8812533848599660e-01 1.8762747152632105e+01 1.8777371235986347e+01 1.3957000000000000e-01 1 0 0 0 0 P 418 111 -5.7889405922723680e-01 1.3796403726787261e+00 2.5610021578658795e+01 2.5654043555539207e+01 1.3497999999999999e-01 2 0 0 -196 0 V -73 0 0 0 0 0 0 3 0 P 419 -211 8.4195936056102455e-03 2.0789552799372421e-01 3.9004499495231943e+00 3.9084883310241265e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 211 3.4367819715696907e-01 6.4192760786830705e-01 1.3652165927200944e+01 1.3672282181321119e+01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -1.5640860092586314e-01 4.2312643186493037e-01 1.3320213189149028e+01 1.3328533251358381e+01 1.3497999999999999e-01 2 0 0 -197 0 V -74 0 0 0 0 0 0 2 0 P 422 311 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 2 0 0 -198 0 P 423 211 -2.0753747025873301e-01 -4.8462844466245950e-02 5.2824018809414319e+00 5.2885413740963330e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 424 -311 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -199 0 P 425 -211 -4.1519813495381386e-01 6.1074003971623614e-01 1.3946591518839895e+01 1.3966828117566944e+01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 -4.4604980650574202e-05 4.2549743859432887e-05 6.8888361593526519e-04 6.9167461880071085e-04 0 2 0 P 426 22 -2.3131739921367450e-01 1.5252274105477401e-01 2.7591004671769230e+00 2.7729778783275121e+00 0 1 0 0 0 0 P 427 22 -5.9525611351398500e-01 6.3596524245253083e-01 1.0006580449597873e+01 1.0044423025966090e+01 0 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 428 211 -3.2420035273119030e-01 1.8115415106660560e-01 2.8463603409524980e+00 2.8738771147366253e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 111 -4.7013843405478062e-01 2.5458951359646992e-01 1.4732054041670690e+01 1.4742370292958812e+01 1.3497999999999999e-01 2 0 0 -200 0 V -78 0 -1.3983035899499822e-05 -9.4089835037750707e-06 1.1830050938585944e-04 1.1951215794275435e-04 0 2 0 P 430 22 -4.7587767431975525e-01 -4.0016980423991849e-01 4.2600418017949506e+00 4.3051773002028346e+00 0 1 0 0 0 0 P 431 22 -4.5726968426710041e-01 -2.2773161621263621e-01 3.6346535023087179e+00 3.6703764568525643e+00 0 1 0 0 0 0 V -79 0 0 0 0 0 0 3 0 P 432 -211 -6.2150685489726676e-01 7.8100740241283148e-02 5.0205055395510092e+00 5.0613561575799917e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 211 -7.7339441987470581e-01 1.6872379521568628e-01 7.8500433457686851e+00 7.8910878187428972e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 111 -9.2488054483451543e-02 -7.9140138834743121e-03 4.0111873824442554e+00 4.0145311668136143e+00 1.3497999999999999e-01 2 0 0 -201 0 V -80 0 0 0 0 0 0 2 0 P 435 -211 -4.8881373301361830e-01 -1.8868727647097155e-02 3.4599769991687270e+00 3.4971725027716833e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -3.7445793681717549e-01 1.5118880704323107e-01 1.8091182442045874e+00 1.8585492255343738e+00 1.3497999999999999e-01 2 0 0 -202 0 V -81 0 0 0 0 0 0 2 0 P 437 311 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 2 0 0 -203 0 P 438 211 -2.3124155086897880e-01 -3.3684822055876906e-01 2.8743198814706590e+00 2.9065673817166879e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 1 0 P 439 310 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696908e+00 4.9767000000000000e-01 2 0 0 -204 0 V -83 0 -2.1481408161251331e+01 -1.5391382865966664e+01 1.1692797845173176e+02 1.2068571580492544e+02 0 2 0 P 440 2112 -1.6685242240378610e+00 -9.6565662968149657e-01 8.3457714687441840e+00 8.6169112218969399e+00 9.3957000000000002e-01 1 0 0 0 0 P 441 -211 -1.7567257005407436e-01 -3.5570641714419182e-01 1.6925929337025740e+00 1.7440580641672592e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 442 22 -6.9369290055963195e-01 -7.3844423871074344e-02 2.3778260423066357e+00 2.4780475230905736e+00 0 1 0 0 0 0 P 443 22 -7.6468156281616251e-01 2.4663860074517008e-01 5.0294047936938737e+00 5.0931798584695036e+00 0 1 0 0 0 0 V -85 0 -6.6124195948730431e+01 -1.0263657618316149e+01 2.4380496232626649e+02 2.5441240022602068e+02 0 2 0 P 444 -2112 -2.6292253938341017e+00 -3.1653082360471818e-01 9.7026808524626684e+00 1.0101377403281182e+01 9.3957000000000002e-01 1 0 0 0 0 P 445 211 -1.5793429719293592e-01 -1.1608619934484518e-01 5.7378986628914297e-01 6.2220080638349406e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 1 0 P 446 130 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 1 0 0 0 0 V -87 0 -1.4785007413585779e-04 1.0460714170320036e-04 6.7496830209288431e-04 6.9899018164531828e-04 0 2 0 P 447 22 -1.1609632116846085e+00 8.6534513767992827e-01 5.5108258561418211e+00 5.6978820102659693e+00 0 1 0 0 0 0 P 448 22 -2.4053537946929221e-01 1.2624558405996367e-01 8.8732531142187587e-01 9.2797706036356664e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 449 211 -6.4642357927476746e-01 1.1410649784545004e+00 3.3132734348513795e+00 3.5661117996901934e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -3.2004126714524589e-01 -1.1135464409877557e-01 6.1457691455920416e-01 7.1466821235270495e-01 1.3497999999999999e-01 2 0 0 -205 0 V -89 0 0 0 0 0 0 2 0 P 451 211 -1.4766341798580660e+00 9.1994134776747574e-02 1.4809242821358144e+00 2.0979818722472086e+00 1.3957000000000000e-01 1 0 0 0 0 P 452 -211 -1.0778601093704292e-01 2.3561879031471655e-01 1.4921998441808487e-01 3.2997034283829840e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 453 -211 -8.7329616946689381e-01 7.5263142472155542e-02 1.1650286431975723e+00 1.4646099359867493e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -2.9777776686384994e-01 -8.0547593658780198e-02 6.8472481772166038e-01 7.6303813121403208e-01 1.3497999999999999e-01 2 0 0 -206 0 V -91 0 0 0 0 0 0 2 0 P 455 -211 -9.2323025441794174e-02 2.1477743632714319e-01 2.6616411783798294e-01 3.8075715450462372e-01 1.3957000000000000e-01 1 0 0 0 0 P 456 211 -5.2861165827062040e-01 -3.0144617240813948e-01 6.9289944636708889e-01 9.3267867338915345e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 457 2212 -1.9226228964946190e+00 2.5105496858605597e-01 1.9639306251800579e+00 2.9149410787865397e+00 9.3827000000000005e-01 1 0 0 0 0 P 458 211 -9.5913754813531829e-02 -5.9193858801682174e-02 2.8617380939696824e-01 3.3775522996252194e-01 1.3957000000000000e-01 1 0 0 0 0 V -93 0 -8.5110838608413631e-05 4.1473221999532737e-05 1.0635397372811340e-04 1.4292944052024268e-04 0 2 0 P 459 22 -5.5038113910546993e-01 2.6249674384585009e-01 5.8411685220637644e-01 8.4440300558690229e-01 0 1 0 0 0 0 P 460 22 -3.7604859945431929e-01 1.8893842989312667e-01 5.7354397791486122e-01 7.1138103295240995e-01 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 461 -2212 -3.0034647518820718e+00 -1.6340168897528362e-01 -3.6167654414129125e-01 3.1715392387987253e+00 9.3827000000000005e-01 1 0 0 0 0 P 462 -211 -9.9808795989746471e-02 7.8038172306701056e-02 2.9877714933164998e-03 1.8852178593570948e-01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 463 211 -2.0619999689447668e-01 5.0362776002960541e-01 5.9809251368635086e-01 8.2058137879151127e-01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 -7.2060053006415647e-01 -4.0517804881935883e-02 5.6934870723784692e-01 9.2913097423054491e-01 1.3497999999999999e-01 2 0 0 -207 0 V -96 0 0 0 0 0 0 2 0 P 465 -211 -2.0385821111055416e-01 -3.6220140979609450e-01 -7.8664292450954840e-02 4.4543898269267251e-01 1.3957000000000000e-01 1 0 0 0 0 P 466 211 -1.4838247005119132e+00 2.9157889972211171e-01 3.6887338885485912e-02 1.5190768437714002e+00 1.3957000000000000e-01 1 0 0 0 0 V -97 0 -5.4731838131263985e-06 5.4223328431606724e-06 -2.4864535247821415e-05 4.6844190806467883e-05 0 2 0 P 467 22 -1.9705846225357582e-03 1.5069638392957595e-02 -1.2178071002327252e-01 1.2272537854421744e-01 0 1 0 0 0 0 P 468 22 -1.6998605160285816e-02 3.7233099675300502e-03 3.5604161951491492e-02 3.9629180697784289e-02 0 1 0 0 0 0 V -98 0 3.7976633007273047e-01 -1.0402996262150903e+00 3.1427968709405993e+00 6.8202662257423352e+00 0 2 0 P 469 -2212 7.1289145041890822e-02 -1.5445558513177707e-01 6.0981027764510254e-01 1.1318824309974957e+00 9.3827000000000005e-01 1 0 0 0 0 P 470 211 -8.9415716901796184e-05 -4.0582905482218282e-02 -2.0589304602182137e-02 1.4680151421749890e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 471 -321 1.0038375018802244e-01 -9.5747959943768235e-01 5.8014328305206309e-01 1.2276201649987597e+00 4.9359999999999998e-01 1 0 0 0 0 P 472 321 3.7534065996306060e-01 -1.1899418219581674e+00 6.8690896405823920e-01 1.5074239733964006e+00 4.9359999999999998e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 473 310 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679946e-01 4.9767000000000000e-01 2 0 0 -208 0 V -101 0 1.1488333490807863e-05 -8.2134136583885698e-06 1.0412367046470049e-06 1.4211335104077831e-05 0 2 0 P 474 22 1.4435757764459331e-01 -1.5555736336425940e-01 -9.6165086740462012e-04 2.1222188457519126e-01 0 1 0 0 0 0 P 475 22 1.1497315002184079e+00 -7.6963243163915995e-01 1.1825046808635874e-01 1.3885963328584443e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 476 -211 6.4291291426941599e-01 -4.9454709508610400e-01 6.2481354543056222e-01 1.0333371163594225e+00 1.3957000000000000e-01 1 0 0 0 0 P 477 111 5.8327712404768117e-01 -3.3838310708820062e-02 -1.0279826521739548e-01 6.0839487049174457e-01 1.3497999999999999e-01 2 0 0 -209 0 V -103 0 0 0 0 0 0 3 0 P 478 -211 1.9367344517678403e-01 -1.3441370752915358e-01 7.4193503682874140e-02 2.8383253694232846e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 211 3.3161504232253403e-01 -5.0838567942118260e-02 -2.1167271648523855e-01 4.2052136698296505e-01 1.3957000000000000e-01 1 0 0 0 0 P 480 111 1.3495368175734179e-01 2.7928011534105107e-01 -1.0259061989741322e-01 3.5348877596849970e-01 1.3497999999999999e-01 2 0 0 -210 0 V -104 0 0 0 0 0 0 3 0 P 481 -211 1.8298976692532751e-01 -1.4862546174945823e-01 -1.0669585020692001e-02 2.7416857519442145e-01 1.3957000000000000e-01 1 0 0 0 0 P 482 211 2.7086816075914885e-02 -5.0652211916194179e-02 -9.4710643744833831e-03 1.5122442969811159e-01 1.3957000000000000e-01 1 0 0 0 0 P 483 221 1.2845279464367001e+00 -8.7400716062721828e-01 1.1601691786904229e-01 1.6513818424992961e+00 5.4744999999999999e-01 2 0 0 -211 0 V -105 0 0 0 0 0 0 3 0 P 484 211 2.4242331910144835e-01 -2.8879973733053099e-01 -2.4863283611991935e-01 4.7272870234774300e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 -211 5.3606262164470220e-01 -1.7527092030547467e-01 -3.2520793996948161e-01 6.6582506632636862e-01 1.3957000000000000e-01 1 0 0 0 0 P 486 111 2.1571688053683633e-01 8.8605080149143992e-02 -4.8746602875841349e-01 5.5698057629533038e-01 1.3497999999999999e-01 2 0 0 -212 0 V -106 0 0 0 0 0 0 2 0 P 487 211 -3.3784735675481313e-02 -9.4428454817126785e-03 -8.6200214725578900e-02 1.6775231030954402e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 9.6206029689247208e-01 1.3509767941794806e-01 -5.0910824460725901e-01 1.1050892285096399e+00 1.3497999999999999e-01 2 0 0 -213 0 V -107 0 0 0 0 0 0 2 0 P 489 3122 1.2861282209344809e+00 -8.7616170010251626e-01 -1.1087966059631398e+00 2.2126809307277004e+00 1.1156800000000000e+00 2 0 0 -214 0 P 490 22 2.3823290983993460e-02 -3.8002312850236149e-02 -1.2232411835639999e-01 1.3028781565037384e-01 0 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 491 -3122 1.3328849122824100e+00 -6.2435441660021751e-01 -1.8753445922776306e+00 2.6321207854320132e+00 1.1156800000000000e+00 2 0 0 -215 0 P 492 22 -8.6793945698304606e-03 -6.2028871281813447e-02 -5.8490328649674642e-02 8.5697323809682271e-02 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 493 211 1.6352498208888305e-01 -5.7698647102462766e-02 -3.4427479907372972e-02 2.2524340149579661e-01 1.3957000000000000e-01 1 0 0 0 0 P 494 111 2.8247870669961922e-01 -7.4957522644161190e-01 -1.5999106250015693e+00 1.7943218351863734e+00 1.3497999999999999e-01 2 0 0 -216 0 V -110 0 0 0 0 0 0 3 0 P 495 -211 1.9545074995621259e-01 -6.5403151837277684e-01 -1.9204953951975325e+00 2.0429734630088499e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 211 2.8530693106995164e-01 -2.5403511663583600e-01 -1.3820998203697235e+00 1.4406989913811832e+00 1.3957000000000000e-01 1 0 0 0 0 P 497 111 1.1118101086868773e-01 -1.0946894276283572e-01 -1.8049765880746443e-01 2.7412346094847867e-01 1.3497999999999999e-01 2 0 0 -217 0 V -111 0 0 0 0 0 0 2 0 P 498 211 5.2489225794783434e-02 -7.1433658617988982e-01 -8.0907252155347420e-01 1.0895457802279682e+00 1.3957000000000000e-01 1 0 0 0 0 P 499 -211 -7.0162598000169468e-02 -2.1998190618881033e+00 -4.0000184569751065e+00 4.5676858622551855e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 500 -211 -6.9126424432539562e-03 -1.9094039395394029e+00 -3.7142119420282071e+00 4.1786027956912930e+00 1.3957000000000000e-01 1 0 0 0 0 P 501 211 -5.6280926039835466e-01 -1.5909823395649245e+00 -2.9466797866551953e+00 3.3985850906487438e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 502 -211 -4.5125981166231938e-01 -2.2885562268996611e+00 -7.8060779803421063e+00 8.1483408275172575e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 111 -4.0916682921175401e-01 -5.6782104173729964e-01 -1.7297891211800389e+00 1.8708896904199468e+00 1.3497999999999999e-01 2 0 0 -218 0 V -114 0 0 0 0 0 0 2 0 P 504 -211 -7.4464548608927983e-01 -3.6972942406954323e-01 -1.6269637249242004e+00 1.8323993817110846e+00 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -7.0853080396387519e-02 -9.7334723246626897e-01 -2.8355858217151724e+00 3.0018646782730749e+00 1.3497999999999999e-01 2 0 0 -219 0 V -115 0 -4.4271586228711654e-04 -6.2527340299215362e-04 -2.2046764270680914e-03 2.3341945272698796e-03 0 2 0 P 506 22 -1.3167327456731837e+00 -1.9679441103467479e+00 -6.8025667273536978e+00 7.2028815917711775e+00 0 1 0 0 0 0 P 507 22 -6.7322677191089320e-01 -8.4259164264931008e-01 -3.1072133662995611e+00 3.2890682368097313e+00 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 508 22 -6.3304411189734389e-01 -3.2192633161853706e-01 -2.8083682316781022e+00 2.8967764040905983e+00 0 1 0 0 0 0 P 509 22 1.9771856363578318e-02 1.3138657691549580e-01 -4.6416117912995120e-01 4.8280323021800525e-01 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 510 -211 1.2905330776752127e-01 -1.9241956541400762e-01 -1.1309582654954131e+00 1.1628527114782197e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 211 -5.8308992464302445e-01 1.0551674893998715e-01 -1.7057966442647523e+00 1.8111735480102293e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 512 211 -1.0702332936833268e+00 -1.2362155306792325e-01 -3.5129628615751138e+00 3.6771006843703913e+00 1.3957000000000000e-01 1 0 0 0 0 P 513 111 -5.3571023339742208e-01 -4.2429834656588200e-01 -1.2317904223107861e+00 1.4151119340751270e+00 1.3497999999999999e-01 2 0 0 -220 0 V -119 0 0 0 0 0 0 2 0 P 514 -211 -3.0625466188265321e-01 3.7393789633251995e-01 -2.3822328467080025e+00 2.4347760860237151e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -1.1877082827584302e+00 -1.4495582357241707e-01 -4.9527014937435956e+00 5.0970967252692567e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 516 211 -5.7282502290046045e-01 6.2193140407372827e-01 -4.0846424054614676e+00 4.1735728750829395e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 -211 -3.3406291594068510e-01 2.9216957663837884e-01 -1.0712142160796640e+00 1.1678787501067960e+00 1.3957000000000000e-01 1 0 0 0 0 P 518 111 -9.7287169787745642e-01 9.3648140612577135e-01 -4.9663775081437977e+00 5.1484562655563915e+00 1.3497999999999999e-01 2 0 0 -221 0 V -121 0 0 0 0 0 0 3 0 P 519 -211 -1.6747337785881769e-01 3.5532788349039501e-01 -3.9408681763983484e+00 3.9628559153376308e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 211 -6.5606740246757667e-01 4.1021848185040549e-01 -5.1552311937230400e+00 5.2148434382124345e+00 1.3957000000000000e-01 1 0 0 0 0 P 521 111 -9.8980626799547733e-01 9.5314432706144425e-01 -8.1663178562499699e+00 8.2822199612229355e+00 1.3497999999999999e-01 2 0 0 -222 0 V -122 0 0 0 0 0 0 1 0 P 522 310 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -223 0 V -123 0 0 0 0 0 0 1 0 P 523 130 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 524 2112 -1.0025411444960000e+00 2.4762507505735337e-01 -4.0375055415801917e+01 4.0399186854913061e+01 9.3957000000000002e-01 1 0 0 0 0 P 525 -211 -1.6959727163324345e-01 -1.6800409071732988e-01 -1.7423004000958901e+01 1.7425198329183317e+01 1.3957000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 526 22 -1.3535102538818325e-01 2.7952478983467072e-01 -1.0071553705504458e+01 1.0076341005100328e+01 0 1 0 0 0 0 P 527 111 -1.2123356349978728e-01 -1.6211416756109540e-01 -5.5997755981185016e+01 5.5998284555055655e+01 1.3497999999999999e-01 2 0 0 -224 0 V -126 0 0 0 0 0 0 2 0 P 528 -2112 -1.1057290404247513e+00 6.2289478049111918e-02 -6.1903745329327961e+01 6.1920779987602771e+01 9.3957000000000002e-01 1 0 0 0 0 P 529 211 -6.1466580203770856e-03 -5.7579674420682771e-02 -1.3191541370223055e+01 1.3192406782218230e+01 1.3957000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 530 211 -1.1448623887606267e-01 2.2926459753080367e-01 -3.0975827552287125e+01 3.0977201966744886e+01 1.3957000000000000e-01 1 0 0 0 0 P 531 111 -6.4009284804650257e-01 -2.3111962493635937e-01 -2.9876091145652161e+01 2.9884145911818635e+01 1.3497999999999999e-01 2 0 0 -225 0 V -128 0 0 0 0 0 0 2 0 P 532 321 -4.2042955560296735e-01 -1.2490778497195061e+00 -5.9513329992444312e+01 5.9529967614937071e+01 4.9359999999999998e-01 1 0 0 0 0 P 533 -211 -1.0313733458053201e-01 -7.0400711458499202e-02 -2.8894441217660987e+00 2.8955069828385667e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 534 -311 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 2 0 0 -226 0 P 535 111 -3.0204755368595976e-01 -1.6351430669869163e-01 -5.2367869292747669e+00 5.2497739566771697e+00 1.3497999999999999e-01 2 0 0 -227 0 V -130 0 0 0 0 0 0 2 0 P 536 -211 8.3272019658133953e-02 -5.8888391597143805e-02 -1.6303543496742719e+01 1.6304459893139811e+01 1.3957000000000000e-01 1 0 0 0 0 P 537 111 6.6605733427034197e-01 -1.7292264416263661e+00 -3.7908094748553331e+01 3.7953599612219286e+01 1.3497999999999999e-01 2 0 0 -228 0 V -131 0 0 0 0 0 0 2 0 P 538 2212 1.8283077509902117e+00 -2.1301051224982039e+00 -3.4175830882779856e+01 3.4303758164179229e+01 9.3827000000000005e-01 1 0 0 0 0 P 539 211 3.0224699916305181e-01 -7.5748814927978214e-01 -1.2117027005089897e+01 1.2145244533222879e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 540 -211 2.9089982035438711e+00 -2.0049546659832567e+00 -5.4478784483466150e+01 5.4593402095323952e+01 1.3957000000000000e-01 1 0 0 0 0 P 541 111 4.1163369951677076e-02 -5.6164476493590937e-02 -3.2256750887045871e+00 3.2292488677299129e+00 1.3497999999999999e-01 2 0 0 -229 0 V -133 0 0 0 0 0 0 2 0 P 542 -211 5.0717790540492147e-01 -2.4060572472866068e-01 -8.6236125848834497e+00 8.6429910529609675e+00 1.3957000000000000e-01 1 0 0 0 0 P 543 111 9.3829091664395015e-01 -4.9684244001810385e-01 -8.6346399707229047e+00 8.7007165957101105e+00 1.3497999999999999e-01 2 0 0 -230 0 V -134 0 0 0 0 0 0 3 0 P 544 211 4.5954362992296782e-01 8.6416140913779915e-01 -8.7890621302093646e+00 8.8444925350427077e+00 1.3957000000000000e-01 1 0 0 0 0 P 545 -211 9.4305394931758113e-01 6.6626012771725274e-01 -1.1950069870091166e+01 1.2006535844866745e+01 1.3957000000000000e-01 1 0 0 0 0 P 546 111 1.3075624676811948e-01 1.5878439486650184e-01 -1.8220760533686400e+00 1.8386110042043819e+00 1.3497999999999999e-01 2 0 0 -231 0 V -135 0 0 0 0 0 0 2 0 P 547 211 7.9758207878700105e-01 -1.6524061860885875e-01 -1.0614913456712763e+01 1.0647032878358276e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 3.9421602644851994e-01 4.0612667204372616e-01 -9.2479455248273013e+00 9.2662323076764856e+00 1.3497999999999999e-01 2 0 0 -232 0 V -136 0 0 0 0 0 0 2 0 P 549 -2212 1.4529231513669718e+00 6.7132069972024366e+00 -1.0693024923461154e+02 1.0715473244724242e+02 9.3827000000000005e-01 1 0 0 0 0 P 550 111 3.4546160491339739e-01 6.5319882092581749e-01 -1.3000506217906223e+01 1.3022188523529621e+01 1.3497999999999999e-01 2 0 0 -233 0 V -137 0 0 0 0 0 0 3 0 P 551 211 6.2755527675323730e-01 6.0114867548809129e-03 -1.0298936787768188e+01 1.0318984470707317e+01 1.3957000000000000e-01 1 0 0 0 0 P 552 -211 6.4967361087830230e-02 2.2450897404247538e-01 -2.6190259359222110e+00 2.6331353317605108e+00 1.3957000000000000e-01 1 0 0 0 0 P 553 111 4.5838118845983800e-01 1.2267763293042569e-01 -7.8049827756144694e+00 7.8205587296301156e+00 1.3497999999999999e-01 2 0 0 -234 0 V -138 0 0 0 0 0 0 2 0 P 554 211 -1.0986898001611440e-02 8.1246665145864017e-01 -1.4137328085179032e+01 1.4161346967875335e+01 1.3957000000000000e-01 1 0 0 0 0 P 555 -211 1.2706214782209646e+00 3.7625845228912844e+00 -5.9629496594894640e+01 5.9761759220912069e+01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 556 2212 1.3696519165972645e+00 1.5331848955082423e+00 -7.6247102479807822e+01 7.6280584616635380e+01 9.3827000000000005e-01 1 0 0 0 0 P 557 111 1.4939844155469140e-01 1.0499940576496405e-01 -1.3766571370615983e+01 1.3768444054148370e+01 1.3497999999999999e-01 2 0 0 -235 0 V -140 0 0 0 0 0 0 2 0 P 558 211 -9.5122343388916453e-02 -8.7062377719035661e-02 -1.3923673280689432e+01 1.3924969857421980e+01 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.0090468201654286e-01 2.0922614780440552e-01 -6.9890866039604012e+00 6.9999907404683954e+00 1.3497999999999999e-01 2 0 0 -236 0 V -141 0 0 0 0 0 0 2 0 P 560 -2212 7.9956755782367109e-03 1.0612947857400963e+00 -3.6475219951094530e+01 3.6502718140252128e+01 9.3827000000000005e-01 1 0 0 0 0 P 561 -211 2.9756447288738652e-01 5.3445742814974107e-01 -1.5218801822702183e+01 1.5231729975994600e+01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 562 22 2.1051712033551939e-02 -4.1142823590531133e-02 -4.3854423292326006e+00 4.3856858448294718e+00 0 1 0 0 0 0 P 563 223 5.9054283904099991e-01 1.0275694888814868e+00 -3.9010136598470304e+01 3.9035975581664637e+01 7.8229935560695696e-01 2 0 0 -237 0 V -143 0 0 0 0 0 0 2 0 P 564 -211 5.5342689869080886e-01 1.2598230811957775e-01 -1.8747614937148573e+01 1.8756724087394630e+01 1.3957000000000000e-01 1 0 0 0 0 P 565 211 1.1836299065887952e+00 1.1698793676638504e-01 -6.9712847461237814e+01 6.9723132795879394e+01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 3 0 P 566 -211 1.6167866862186708e-01 -7.6602039724113113e-02 -5.0244923477493657e+00 5.0296134048124577e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 211 1.2373747540626116e-01 -5.1837954297145016e-02 -1.9259599320002913e+01 1.9260572262741373e+01 1.3957000000000000e-01 1 0 0 0 0 P 568 111 7.5268708893890413e-01 -6.6971954575198819e-02 -3.5845375340643820e+01 3.5853593627537407e+01 1.3497999999999999e-01 2 0 0 -238 0 V -145 0 0 0 0 0 0 2 0 P 569 22 5.7542487605413273e-01 -1.2096342722600081e-01 -5.3106277786432571e+01 5.3109532913295787e+01 0 1 0 0 0 0 P 570 111 2.7354606837715813e-02 1.6348882237195400e-01 -8.8439898257657859e+01 8.8440156604875085e+01 1.3497999999999999e-01 2 0 0 -239 0 V -146 0 0 0 0 0 0 2 0 P 571 -211 1.3701553450210049e+00 3.7342467181524917e-02 -2.7565341951921630e+02 2.7565686258925479e+02 1.3957000000000000e-01 1 0 0 0 0 P 572 211 -1.2515070280524206e-02 1.7556062121057078e-01 -3.2540076652102378e+01 3.2540851962852820e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 573 310 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -240 0 V -148 0 0 0 0 0 0 2 0 P 574 321 4.4507323458190218e-01 7.5445245304814473e-02 -1.2675932461029535e+02 1.2676108945093289e+02 4.9359999999999998e-01 1 0 0 0 0 P 575 -321 3.5590328203035199e-01 2.3151302714500381e-02 -1.6814907515651404e+02 1.6815017787703940e+02 4.9359999999999998e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 576 22 -6.2488058438212302e-01 -3.9913499111879353e-01 -6.4564091652279743e+01 6.4568349176433586e+01 0 1 0 0 0 0 P 577 111 1.3897610369467420e-01 -1.8896171851394453e-01 -9.6437741617391612e+00 9.6475707082917896e+00 1.3497999999999999e-01 2 0 0 -241 0 V -150 0 0 0 0 0 0 3 0 P 578 22 -7.0510358622244140e-02 -2.3984238285756929e-01 -1.7296971614689348e+01 1.7298778081663933e+01 0 1 0 0 0 0 P 579 211 4.4442497368725929e-02 -1.1202593090239153e-01 -5.3243783371714128e+00 5.3275706853130664e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 -211 -1.4457030474387536e-01 -2.4910838266157978e-01 -2.7809775586790558e+01 2.7811617240496428e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 581 2112 1.5135906528403212e-01 -8.1915487259626052e-02 -2.2054600688888851e+02 2.2054807540790796e+02 9.3957000000000002e-01 1 0 0 0 0 P 582 211 -1.3492778819029480e-01 2.8155942263572029e-02 -1.0435194765071148e+02 1.0435213201725607e+02 1.3957000000000000e-01 1 0 0 0 0 V -152 0 -7.6107868220902204e-05 -1.0967652355379499e-04 -1.0643818972942594e-01 1.0643827495352039e-01 0 3 0 P 583 22 -2.9848077808674555e-02 -1.0943146180779233e-02 -3.8510412641130742e+01 3.8510425763036686e+01 0 1 0 0 0 0 P 584 -11 -1.4612629056746559e-02 -2.2408250516419068e-02 -2.0295894596065654e+01 2.0295912233090835e+01 5.1000000000000004e-04 1 0 0 0 0 P 585 11 -5.2905267280730306e-01 -7.9311970497027717e-01 -7.4326222187717838e+02 7.4326283332725382e+02 5.1000000000000004e-04 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 586 211 3.4978552860815242e-02 1.8567160807331137e-01 1.2859771199358374e+00 1.3072545211638158e+00 1.3957000000000000e-01 1 0 0 0 0 P 587 111 1.6819416270895077e-01 -4.3782316552353101e-01 1.1151006678397048e+01 1.1161682128724772e+01 1.3497999999999999e-01 2 0 0 -242 0 V -154 0 -3.9518943049119740e-06 5.0159415430707511e-06 9.7271245903310129e-06 1.4977708647744207e-05 0 2 0 P 588 22 -7.3570786528157350e-02 4.7245302883753497e-02 1.7664704815864921e-02 8.9201014967212944e-02 0 1 0 0 0 0 P 589 22 1.7007858631492252e-02 2.4547189006010627e-02 1.2155831189308684e-01 1.2517290015663379e-01 0 1 0 0 0 0 V -155 0 4.3034828652643780e-06 -1.9933028102143615e-05 8.1105896513745365e-05 8.4679837205665857e-05 0 2 0 P 590 22 3.4544082384907332e-02 -1.5912937123738349e-01 3.7132451585401793e-01 4.0545942644417715e-01 0 1 0 0 0 0 P 591 22 9.1594901893332706e-03 -4.3298422147799082e-02 4.5233797926075231e-01 4.5449785159307227e-01 0 1 0 0 0 0 V -156 0 6.2460713030626959e-07 1.8314030095968984e-06 6.8851470875687138e-05 6.8898614289897788e-05 0 2 0 P 592 22 -1.1905794839662887e-02 -1.8038359156136623e-03 2.0955746201951566e+00 2.0956092170490295e+00 0 1 0 0 0 0 P 593 22 6.2747813469645142e-02 1.5087710359873224e-01 3.5088246815657897e+00 3.5126274830176381e+00 0 1 0 0 0 0 V -157 0 6.2320570835968663e-06 3.5658666191288826e-06 2.2052194377702260e-04 2.2068922267700857e-04 0 2 0 P 594 22 1.9969103128953214e-01 8.8321847428489531e-02 5.8653626914591763e+00 5.8694255902151014e+00 0 1 0 0 0 0 P 595 22 -2.1361861647647789e-02 1.3714771413896799e-02 4.4483225606107607e-01 4.4555601232659331e-01 0 1 0 0 0 0 V -158 0 1.4963861996038181e-04 1.8281705748204211e-05 3.7234162584095648e-02 3.7234482257026351e-02 0 2 0 P 596 22 4.3719971301913485e-01 2.8414829815181421e-02 9.2958461081091031e+01 9.2959493531087674e+01 0 1 0 0 0 0 P 597 22 1.7750575927958404e-01 4.6685198301566797e-02 5.9996995892273368e+01 5.9997276637359001e+01 0 1 0 0 0 0 V -159 0 3.0267893068320052e-06 -4.5750819984181511e-06 3.7778921699606616e-02 3.7778925095523538e-02 0 2 0 P 598 22 -2.8880351668452143e-02 -3.5672285499681128e-02 2.7948926382703689e+02 2.7948926759567303e+02 0 1 0 0 0 0 P 599 22 5.6027360075476713e-02 -5.3612245611424489e-03 5.9346578718268603e+01 5.9346605407314222e+01 0 1 0 0 0 0 V -160 0 -7.9428014042315717e-05 -3.9403889353905348e-05 -5.6439601945601904e-04 5.7240951881053269e-04 0 2 0 P 600 22 -3.1183871604522373e-01 -1.2787034177636744e-01 -2.0712750306150651e+00 2.0985172054525014e+00 0 1 0 0 0 0 P 601 22 8.3929278825955016e-03 -2.2667782660417246e-02 -8.4936439917738707e-02 8.8308937458685302e-02 0 1 0 0 0 0 V -161 0 4.3386218508710943e-05 5.2410024299715175e-05 -1.5419024225686259e-03 1.5434861922512385e-03 0 2 0 P 602 22 3.6535943004552857e-01 4.4161945641701744e-01 -1.2973139031867646e+01 1.2985794222825843e+01 0 1 0 0 0 0 P 603 22 -3.1815577898629705e-04 -6.5403669814412257e-04 -5.9473923101441055e-05 7.2974259143281496e-04 0 1 0 0 0 0 V -162 0 -2.5379822510312859e-05 8.2889570326734013e-05 5.5216150000097673e-04 5.5995607210468108e-04 0 2 0 P 604 22 -8.4858668313497851e-02 7.7630147160151680e-02 5.6833238796444774e-01 5.7985268521014766e-01 0 1 0 0 0 0 P 605 22 -1.6001170392881951e-02 2.5177439025134579e-01 1.6259666386478049e+00 1.6454221011752639e+00 0 1 0 0 0 0 V -163 0 5.4311071975335773e-07 -1.0226280376788801e-06 3.9808139363472970e-07 1.3816477158749319e-06 0 2 0 P 606 22 1.1110258333579513e-01 -6.7137755390032888e-02 2.9342271065216259e-02 1.3308730628412244e-01 0 1 0 0 0 0 P 607 22 3.4226962866210379e-03 -1.4850291916355091e-01 5.4600802161551283e-02 1.5825953192983808e-01 0 1 0 0 0 0 V -164 0 4.4144968595203476e-05 -3.2722242845905029e-05 2.0384130364910097e-05 6.4670550523130544e-05 0 2 0 P 608 22 1.8246810056267390e-01 -1.5407946942974535e-01 1.3067263014575828e-01 2.7223230317490249e-01 0 1 0 0 0 0 P 609 22 3.5513303334553492e-02 -7.4981839518315132e-03 -3.0018773192964032e-02 4.7101424822590304e-02 0 1 0 0 0 0 V -165 0 5.6380051062987950e-05 -3.0493162362714481e-07 -1.2675255378498870e-05 6.6809669214768023e-05 0 2 0 P 610 22 1.5629447797873078e-01 5.9272811617123743e-02 -5.4638072284284134e-02 1.7585945805268952e-01 0 1 0 0 0 0 P 611 22 7.0691408873611514e-02 -6.0500465259029898e-02 3.6075388079277754e-03 9.3116034716615323e-02 0 1 0 0 0 0 V -166 0 1.6795846570804687e-06 1.3423270115360811e-05 9.9175126408736319e-07 1.4159191260131311e-05 0 2 0 P 612 22 8.8762006613232747e-02 3.5139103501920521e-01 -7.3169086190899872e-03 3.6250226269861546e-01 0 1 0 0 0 0 P 613 22 -3.2939530131136062e-02 9.4743178679830939e-02 4.0278636021291489e-02 1.0809093889570057e-01 0 1 0 0 0 0 V -167 0 5.8194757435905009e+00 1.6391496056570528e+01 -3.6935008738567987e+01 4.2938642877598774e+01 0 2 0 P 614 111 4.6037197571210636e-02 -2.2999289523593373e-02 -2.9058014755777606e-01 3.2450703140841131e-01 1.3497999999999999e-01 2 0 0 -243 0 P 615 111 1.7166229270591718e-01 6.3618516633134004e-01 -1.0911134843167920e+00 1.2817752317216218e+00 1.3497999999999999e-01 2 0 0 -244 0 V -168 0 -3.6846001179087060e-05 6.4142641585785472e-05 -3.2786539146331803e-04 3.3669449449266921e-04 0 2 0 P 616 22 -1.4196815812055172e-01 1.4866334818016907e-01 -1.0952678736333827e+00 1.1143910731990234e+00 0 1 0 0 0 0 P 617 22 -1.0809678769784217e-01 2.8665732922082771e-01 -1.1298756623912380e+00 1.1706734610345657e+00 0 1 0 0 0 0 V -169 0 -4.7321224760593346e-04 -9.0969249946531208e-05 -2.1252439646961239e-03 2.1806080692367510e-03 0 2 0 P 618 22 -3.1901381769645237e-01 -4.1561351663143989e-03 -1.2453043607719190e+00 1.2855232554482801e+00 0 1 0 0 0 0 P 619 22 -4.9321124997602084e-01 -1.5198417093891795e-01 -2.4024803949668945e+00 2.4572888665191939e+00 0 1 0 0 0 0 V -170 0 -9.5333233258119936e-05 -1.3811279480163778e-04 -1.7281312049733308e-03 1.7364490167361942e-03 0 2 0 P 620 22 -2.4221196715545883e-02 -3.4353108747470454e-02 -8.3476022029741836e-01 8.3581781976812553e-01 0 1 0 0 0 0 P 621 22 -4.7890028331565110e-01 -6.9453766057851862e-01 -8.2854584046197459e+00 8.3282980865243808e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 622 211 -1.9152017635186680e-01 -4.9525486530404544e-01 -1.2450101878820432e+01 1.2462201809370013e+01 1.3957000000000000e-01 1 0 0 0 0 P 623 -211 -1.5440816237156476e-02 2.1714896552932031e-01 -3.1917741155890820e+00 3.2022326401873098e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 2.0935869646649089e-06 -1.1712258244503818e-06 -2.1514240673094736e-05 2.1712140664967733e-05 0 2 0 P 624 22 -1.7164290433487467e-03 -5.1934534500188846e-02 -6.2216004565596528e-01 6.2432624837743689e-01 0 1 0 0 0 0 P 625 22 1.7060900496994524e-01 -4.2549883783738307e-02 -1.1134237097412230e+00 1.1272223749556924e+00 0 1 0 0 0 0 V -173 0 1.1182305473968963e-05 -7.6371332449317781e-05 -3.1512679591386145e-04 3.2833894030721318e-04 0 2 0 P 626 22 2.9881587566890418e-02 -1.9446701291353726e-02 -3.5038349332988750e-01 3.5219266866970445e-01 0 1 0 0 0 0 P 627 22 4.4333620018828024e-05 -1.8493713361083633e-01 -4.9295419587511657e-01 5.2650316673743280e-01 0 1 0 0 0 0 V -174 0 5.5692103202238959e-05 -9.5261192202459821e-05 -4.9388802000534108e-04 5.0784869930261341e-04 0 2 0 P 628 22 1.8691804702625456e-01 -2.5306053184774174e-01 -1.1865181766825594e+00 1.2275191944247863e+00 0 1 0 0 0 0 P 629 22 -1.0155854029928794e-02 -4.9290722153280307e-02 -3.8104211447282282e-01 3.8435115410700788e-01 0 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 630 130 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 1 0 0 0 0 V -176 0 5.2250133594461580e-05 -3.0054943035758407e-05 1.7711783381455315e-04 1.8801708156602681e-04 0 2 0 P 631 22 7.1381752921829675e-02 -2.5802625999512854e-02 1.0504833828474659e-01 1.2960047660039858e-01 0 1 0 0 0 0 P 632 22 3.0759986059449940e-01 -1.9219243013256229e-01 1.1796259357092902e+00 1.2341284182110204e+00 0 1 0 0 0 0 V -177 0 7.1039891327504233e+02 3.6643134481150577e+02 2.5254569656684307e+03 2.6971924924040927e+03 0 2 0 P 633 -2112 1.1422147066867083e+00 5.9541899629508177e-01 4.2255011488959902e+00 4.5162849734645594e+00 9.3957000000000002e-01 1 0 0 0 0 P 634 111 3.8246184198965044e-01 9.3591779830086430e-02 1.0462360590797810e+00 1.1259955477481565e+00 1.3497999999999999e-01 2 0 0 -245 0 V -178 0 5.5561168031183911e+02 2.9648203634886158e+02 1.9902630492634262e+03 2.1243805158111140e+03 0 2 0 P 635 22 7.1289868399566497e-02 1.5230009407052197e-01 4.8621509421616277e-01 5.1447320808177111e-01 0 1 0 0 0 0 P 636 22 2.5826010091339929e-01 1.4812990665742792e-01 8.8409402709423657e-01 9.3287887622876431e-01 0 1 0 0 0 0 V -179 0 5.5209363211154461e-01 -5.2128970822942033e-01 2.7330200827139302e+00 3.1587949778593916e+00 0 2 0 P 637 111 5.4473612168521028e-02 -2.0135342999722378e-01 1.7584087262199635e-01 3.0438493898154434e-01 1.3497999999999999e-01 2 0 0 -246 0 P 638 111 1.4319901079884229e-01 1.4709900787341600e-02 8.0269468176634418e-01 8.2659584466104896e-01 1.3497999999999999e-01 2 0 0 -247 0 V -180 0 7.9538906338402043e+01 3.4247698549261749e+01 7.4901910077430466e+02 7.8595576103995711e+02 0 2 0 P 639 2212 2.8113737551741153e-01 1.6173787011823723e-01 3.4071838954093634e+00 3.5488660234756857e+00 9.3827000000000005e-01 1 0 0 0 0 P 640 -211 1.1894344729530607e-01 1.0528106946312728e-02 3.6038334854132892e-01 4.0449267916270770e-01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 1 0 P 641 310 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -248 0 V -182 0 2.2857299422344308e-05 1.0363369163570521e-06 1.2436670579055224e-04 1.2681404362039812e-04 0 2 0 P 642 22 3.3064429514652588e-01 -2.9385785503240722e-03 1.6837507302587995e+00 1.7159110719393005e+00 0 1 0 0 0 0 P 643 22 -7.5634850822259448e-03 1.7586878170045065e-02 7.4133930978186227e-02 7.6565947474288729e-02 0 1 0 0 0 0 V -183 0 3.3042510594032325e-05 2.9107716129004940e-05 6.3969886268683274e-04 6.4136853386075846e-04 0 2 0 P 644 22 2.7490091490234275e-01 2.6115949324123056e-01 4.7049954255147108e+00 4.7202496489103742e+00 0 1 0 0 0 0 P 645 22 4.0557318040171764e-02 1.6733092097203136e-02 1.4022364164558709e+00 1.4029226137078079e+00 0 1 0 0 0 0 V -184 0 1.6510356519907546e+01 -2.0951009388828552e+01 3.4277481425724073e+02 3.4387324490704015e+02 0 2 0 P 646 111 1.1584217849857776e+00 -1.2621767385808140e+00 2.1450577286789734e+01 2.1519305673935758e+01 1.3497999999999999e-01 2 0 0 -249 0 P 647 111 9.9029184113605215e-02 -3.3348032841390018e-01 4.6556138091395436e+00 4.6705433783443295e+00 1.3497999999999999e-01 2 0 0 -250 0 V -185 0 1.3791437503772767e-05 -7.2942427999000018e-05 5.2213574707276333e-03 5.2220548755439458e-03 0 2 0 P 648 22 2.1473331500103339e-02 2.1415622482539296e-03 4.5633340839199754e-01 4.5684337564337524e-01 0 1 0 0 0 0 P 649 22 2.2743511780759881e-02 -2.3600289153137824e-01 1.6283904506138022e+01 1.6285630494308823e+01 0 1 0 0 0 0 V -186 0 0 0 0 0 0 1 0 P 650 310 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -251 0 V -187 0 -6.4898479034697910e-05 -2.3717785260807778e-05 1.0289265266013758e-02 1.0289517544300922e-02 0 2 0 P 651 22 -3.7076014040847560e-01 -1.2245226039503190e-01 4.9333140644562064e+01 4.9334685805160788e+01 0 1 0 0 0 0 P 652 22 -5.8098350716839123e-02 -3.4278278611067622e-02 1.8659805298154975e+01 1.8659927228791460e+01 0 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 653 310 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -252 0 V -189 0 -3.8156288164306583e-05 -4.6982366965856362e-05 1.5305551971952054e-02 1.5305833280055125e-02 0 2 0 P 654 22 -1.5408943224027936e-02 -5.5379560032673752e-03 1.9517334687879231e+01 1.9517341556246379e+01 0 1 0 0 0 0 P 655 22 -5.7809641666623703e-02 -8.4617103347375724e-02 9.8526829493438850e+00 9.8532158866605712e+00 0 1 0 0 0 0 V -190 0 5.7259152975389607e-06 -5.7955078829102164e-05 8.5913088485572914e-02 8.5913189729219838e-02 0 2 0 P 656 22 -6.4140966160402851e-02 -3.6653323657850727e-02 4.7909740780391559e+01 4.7909797736725935e+01 0 1 0 0 0 0 P 657 22 7.0671922649227781e-02 -2.9450011524555422e-02 5.0082390357315759e+01 5.0082448879087224e+01 0 1 0 0 0 0 V -191 0 7.2852717417934541e-06 2.4903131825419027e-06 4.1295263407232592e-03 4.1295416485090863e-03 0 2 0 P 658 22 8.7393068341428085e-02 8.5525989547457659e-02 5.4895167875559508e+01 5.4895304064456596e+01 0 1 0 0 0 0 P 659 22 3.2608878299620024e-02 -4.4505909550095132e-02 1.3125795124275372e+01 1.3125911083021251e+01 0 1 0 0 0 0 V -192 0 7.8972404442270773e-05 -1.1521440214880167e-04 4.4047585982568103e-02 4.4047879927297903e-02 0 2 0 P 660 22 1.0358314056572004e-01 -1.0958195529204297e-01 2.7762783353347977e+01 2.7763192849470158e+01 0 1 0 0 0 0 P 661 22 2.9827842332208532e-02 -8.5053965232638862e-02 4.6648421189767241e+01 4.6648508265271531e+01 0 1 0 0 0 0 V -193 0 1.2260988875696963e+00 -1.4488883577432832e+00 5.2570632300147599e+03 5.2570826536678287e+03 0 2 0 P 662 111 -4.0794161306335473e-02 -1.0598500749054776e-01 1.6055890388883756e+02 1.6055900078964987e+02 1.3497999999999999e-01 2 0 0 -253 0 P 663 111 8.3874516752240794e-02 5.5076694885569120e-02 2.4153891177425916e+01 2.4154476748383797e+01 1.3497999999999999e-01 2 0 0 -254 0 V -194 0 3.3274369359114265e-05 5.5765187790187018e-05 4.0907985209178380e-03 4.0913944258317405e-03 0 2 0 P 664 22 5.7109002705339050e-02 2.1821668015513598e-01 1.4321259070863738e+01 1.4323035339357533e+01 0 1 0 0 0 0 P 665 22 1.1786747413073592e-01 7.5029932104287753e-02 7.1905990476542971e+00 7.1919564025580964e+00 0 1 0 0 0 0 V -195 0 1.9210083408778569e+01 1.5433276418424106e+02 3.8916014663914379e+04 3.8917269800969007e+04 0 2 0 P 666 2212 1.3829406545060660e-01 6.2138776432242016e-01 1.4044115540962187e+02 1.4044573233596188e+02 9.3827000000000005e-01 1 0 0 0 0 P 667 -211 -5.9241863231473957e-02 1.3713324190035391e-02 1.9703732840506547e+01 1.9704320980144828e+01 1.3957000000000000e-01 1 0 0 0 0 V -196 0 -7.2295112924534088e-05 1.7229621715448068e-04 3.1983043745524428e-03 3.2038020536856158e-03 0 2 0 P 668 22 -5.4899348331959485e-01 1.2966001182389595e+00 2.3465244512513383e+01 2.3507451281314708e+01 0 1 0 0 0 0 P 669 22 -2.9900575907641967e-02 8.3040254439766731e-02 2.1447770661454109e+00 2.1465922742245089e+00 0 1 0 0 0 0 V -197 0 -7.3128842317440605e-05 1.9783276580076606e-04 6.2278657578791734e-03 6.2317558030159327e-03 0 2 0 P 670 22 -8.1206401551535773e-02 1.2067788807765223e-01 5.8741685648858937e+00 5.8759691933346128e+00 0 1 0 0 0 0 P 671 22 -7.5202199374327358e-02 3.0244854378727820e-01 7.4460446242631342e+00 7.4525640580237669e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 1 0 P 672 130 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 673 310 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -255 0 V -200 0 -9.7427874271153141e-05 5.2759173308814661e-05 3.0529576077170549e-03 3.0550954683143693e-03 0 2 0 P 674 22 -2.5971657690663985e-01 2.0988432958907718e-01 9.6143360259585613e+00 9.6201331254911349e+00 0 1 0 0 0 0 P 675 22 -2.1042185714814071e-01 4.4705184007392727e-02 5.1177180157121285e+00 5.1222371674676772e+00 0 1 0 0 0 0 V -201 0 -7.0949290365020413e-05 -6.0709858381969450e-06 3.0770557332510887e-03 3.0796208118384211e-03 0 2 0 P 676 22 -5.9974481706348774e-02 -5.8889056441193813e-02 1.3249310257300573e+00 1.3275944721060642e+00 0 1 0 0 0 0 P 677 22 -3.2513572777102775e-02 5.0975042557719501e-02 2.6862563567141984e+00 2.6869366947075481e+00 0 1 0 0 0 0 V -202 0 -9.0676759332457125e-05 3.6611084242323768e-05 4.3808653390564861e-04 4.5005647967767969e-04 0 2 0 P 678 22 -9.6101124843582741e-02 9.7320276959662208e-02 4.5712311657598281e-01 4.7714589614901520e-01 0 1 0 0 0 0 P 679 22 -2.7835681197359274e-01 5.3868530083568851e-02 1.3519951276286046e+00 1.3814033293853587e+00 0 1 0 0 0 0 V -203 0 0 0 0 0 0 1 0 P 680 130 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 1 0 0 0 0 V -204 0 -1.5617632826542147e+01 -6.1385552261550727e+00 5.3886219856013092e+01 5.6788381863814713e+01 0 2 0 P 681 211 -3.1253019405652588e-01 -1.3387584005324293e-01 6.7600374586473966e-01 7.6945351521071803e-01 1.3957000000000000e-01 1 0 0 0 0 P 682 -211 -9.2253798689452748e-01 -3.5157123896567982e-01 3.5854074599863557e+00 3.7214654522589727e+00 1.3957000000000000e-01 1 0 0 0 0 V -205 0 -4.7033923026387570e-05 -1.6364907581732757e-05 9.0319487705483434e-05 1.0502911074260955e-04 0 2 0 P 683 22 -1.3134421016177045e-01 -6.3046120503593719e-02 1.4165829437904479e-01 2.0320725188819683e-01 0 1 0 0 0 0 P 684 22 -1.8869705698347544e-01 -4.8308523595181854e-02 4.7291862018015934e-01 5.1146096046450795e-01 0 1 0 0 0 0 V -206 0 -1.2475372964072763e-04 -3.3745342469147750e-05 2.8686485122108262e-04 3.1967414400876036e-04 0 2 0 P 685 22 -1.4122446350123194e-01 1.4579009360950178e-02 2.0355345039157621e-01 2.4817514736869475e-01 0 1 0 0 0 0 P 686 22 -1.5655330336261800e-01 -9.5126603019730374e-02 4.8117136733008420e-01 5.1486298384533746e-01 0 1 0 0 0 0 V -207 0 -2.0001326775327693e-04 -1.1246312233359236e-05 1.5803110138651555e-04 2.5789395729432983e-04 0 2 0 P 687 22 -7.0207213810202518e-01 -1.9330174967431394e-02 5.2610327802955259e-01 8.7753267854642392e-01 0 1 0 0 0 0 P 688 22 -1.8528391962131234e-02 -2.1187629914504486e-02 4.3245429208294342e-02 5.1598295684120915e-02 0 1 0 0 0 0 V -208 0 4.7633184300895532e+00 4.2354881049835102e-01 2.7340754574658801e+00 8.8431748625724733e+00 0 2 0 P 689 -211 3.1133600199242017e-01 1.3748590257612459e-01 2.5574478144335300e-01 4.4801524268634463e-01 1.3957000000000000e-01 1 0 0 0 0 P 690 211 3.1332281348318079e-02 -1.0701623191802564e-01 -5.9058173717179453e-02 1.8815376300045492e-01 1.3957000000000000e-01 1 0 0 0 0 V -209 0 1.9693409568809412e-04 -1.1424958813418978e-05 -3.4708173120874380e-05 2.0541469689418581e-04 0 2 0 P 691 22 -3.7246149657566559e-03 -7.8668898931835100e-03 6.3408665058492693e-03 1.0768811507293322e-02 0 1 0 0 0 0 P 692 22 5.8700173901343777e-01 -2.5971420815636553e-02 -1.0913913172324474e-01 5.9762605898445120e-01 0 1 0 0 0 0 V -210 0 8.3401651552009946e-05 1.7259568291705629e-04 -6.3401213081193151e-05 2.1845678707663307e-04 0 2 0 P 693 22 8.4072036537419487e-02 1.5385487131507988e-01 -1.2629159823963515e-01 2.1607636738165140e-01 0 1 0 0 0 0 P 694 22 5.0881645219922306e-02 1.2542524402597122e-01 2.3700978342221936e-02 1.3741240858684825e-01 0 1 0 0 0 0 V -211 0 0 0 0 0 0 2 0 P 695 22 9.1509746572344053e-01 -7.4754699403113933e-01 -1.3173196811594412e-01 1.1889420471503884e+00 0 1 0 0 0 0 P 696 22 3.6943048071325946e-01 -1.2646016659607895e-01 2.4774888598498643e-01 4.6243979534890800e-01 0 1 0 0 0 0 V -212 0 1.4244979165104253e-05 5.8510836866631591e-06 -3.2190078987230427e-05 3.6780509179205760e-05 0 2 0 P 697 22 1.3116895313702617e-01 1.2093923917139338e-01 -3.0677341841587580e-01 3.5488240881308963e-01 0 1 0 0 0 0 P 698 22 8.4547927399810166e-02 -3.2334159022249391e-02 -1.8069261034253767e-01 2.0209816748224077e-01 0 1 0 0 0 0 V -213 0 4.0284161411361974e-04 5.6569185336429397e-05 -2.1317789298508214e-04 4.6273183706920461e-04 0 2 0 P 699 22 4.1459782968447439e-01 1.1752860089682196e-01 -1.8797307177866096e-01 4.7014700692628730e-01 0 1 0 0 0 0 P 700 22 5.4746246720799763e-01 1.7569078521126099e-02 -3.2113517282859805e-01 6.3494222158335234e-01 0 1 0 0 0 0 V -214 0 2.5775259491430116e+01 -1.7559131981557996e+01 -2.2221361584890410e+01 4.4344276280483690e+01 0 2 0 P 701 2212 9.8874773635934465e-01 -7.5860679142754572e-01 -8.3638486145038160e-01 1.7700272821397691e+00 9.3827000000000005e-01 1 0 0 0 0 P 702 -211 2.9738048457513627e-01 -1.1755490867497051e-01 -2.7241174451275818e-01 4.4265364858793127e-01 1.3957000000000000e-01 1 0 0 0 0 V -215 0 2.1366239082526384e+01 -1.0008445301153683e+01 -3.0061905984150741e+01 4.2193081696247596e+01 0 2 0 P 703 -2112 1.1138096031339999e+00 -4.3333735457616673e-01 -1.6267397659040195e+00 2.2265280473818545e+00 9.3957000000000002e-01 1 0 0 0 0 P 704 111 2.1907530914841028e-01 -1.9101706202405075e-01 -2.4860482637361125e-01 4.0559273805015911e-01 1.3497999999999999e-01 2 0 0 -256 0 V -216 0 1.0064770204298328e-05 -2.6707508304306029e-05 -5.7005120761825609e-05 6.3932029265871922e-05 0 2 0 P 705 22 1.8449153725946318e-01 -5.1031539840655460e-01 -9.3716531909840206e-01 1.0829301771083906e+00 0 1 0 0 0 0 P 706 22 9.7987169440156063e-02 -2.3925982803505724e-01 -6.6274530590316727e-01 7.1139165807798288e-01 0 1 0 0 0 0 V -217 0 9.1119881088432618e-06 -8.9716732825958346e-06 -1.4792926488770253e-05 2.2466154040167701e-05 0 2 0 P 707 22 6.2273253671259486e-02 -1.2515149232949954e-01 -7.9493077164483422e-02 1.6081045821769283e-01 0 1 0 0 0 0 P 708 22 4.8907757197428250e-02 1.5682549566663803e-02 -1.0100458164298101e-01 1.1331300273078584e-01 0 1 0 0 0 0 V -218 0 -2.3331096522134937e-05 -3.2377716340285340e-05 -9.8634283299402673e-05 1.0667997704883603e-04 0 2 0 P 709 22 -1.5238624859306366e-01 -1.9018507153879224e-01 -7.7683907844499023e-01 8.1416883015486674e-01 0 1 0 0 0 0 P 710 22 -2.5678058061869036e-01 -3.7763597019850736e-01 -9.5295004273504869e-01 1.0567208602650799e+00 0 1 0 0 0 0 V -219 0 -2.4480660100889405e-05 -3.3630411867545293e-04 -9.7973175336847564e-04 1.0371832593098619e-03 0 2 0 P 711 22 -4.7094707206962204e-02 -1.6528578372743810e-01 -6.2090325920157818e-01 6.4425007492156738e-01 0 1 0 0 0 0 P 712 22 -2.3758373189425315e-02 -8.0806144873883090e-01 -2.2146825625135942e+00 2.3576146033515077e+00 0 1 0 0 0 0 V -220 0 -6.3258699571216450e-06 -5.0102760710309347e-06 -1.4545449274972692e-05 1.6710179331387082e-05 0 2 0 P 713 22 -1.3303041365068499e-01 -1.8331038855147769e-01 -4.3345890352421845e-01 4.8906687738118582e-01 0 1 0 0 0 0 P 714 22 -4.0267981974673711e-01 -2.4098795801440431e-01 -7.9833151878656761e-01 9.2604505669394122e-01 0 1 0 0 0 0 V -221 0 -6.1183284580906027e-05 5.8894722192789365e-05 -3.1233233434574355e-04 3.2378315201801971e-04 0 2 0 P 715 22 -4.1394488840273475e-01 4.2578747014621565e-01 -2.4287588634468973e+00 2.5003029730694908e+00 0 1 0 0 0 0 P 716 22 -5.5892680947472162e-01 5.1069393597955570e-01 -2.5376186446969005e+00 2.6481532924869016e+00 0 1 0 0 0 0 V -222 0 -6.1292718703627152e-05 5.9022466326513542e-05 -5.0569069866692742e-04 5.1286781538861976e-04 0 2 0 P 717 22 -9.3424140243224429e-01 9.3422010705446545e-01 -7.7562824549205622e+00 7.8680043039484895e+00 0 1 0 0 0 0 P 718 22 -5.5564865563233042e-02 1.8924220006978795e-02 -4.1003540132940813e-01 4.1421565727444615e-01 0 1 0 0 0 0 V -223 0 -1.6903411194691762e+00 7.6771705586798840e+00 -1.6704606600191198e+02 1.6782395201303450e+02 0 2 0 P 719 111 -2.0910470929011304e-01 2.6488679320180425e-01 -3.4082945121141575e+00 3.4276202932016142e+00 1.3497999999999999e-01 2 0 0 -257 0 P 720 111 1.4942552293477154e-01 6.1634032207249058e-03 -2.4894341700026432e+00 2.4975724337084482e+00 1.3497999999999999e-01 2 0 0 -258 0 V -224 0 -2.6068411886855723e-05 -3.4858819378717637e-05 -1.2040993644963105e-02 1.2041107302278574e-02 0 2 0 P 721 22 -4.7659294313653179e-03 2.3024557546644706e-02 -7.1972739351880284e+00 7.1973123415946398e+00 0 1 0 0 0 0 P 722 22 -1.1646763406842196e-01 -1.8513872510774010e-01 -4.8800482045996986e+01 4.8800972213461009e+01 0 1 0 0 0 0 V -225 0 -1.5577947031839606e-04 -5.6247609800128191e-05 -7.2709477508733199e-03 7.2729080402450597e-03 0 2 0 P 723 22 -1.2406154375219754e-01 -1.0436814170996277e-01 -7.3656698222499077e+00 7.3674538278868882e+00 0 1 0 0 0 0 P 724 22 -5.1603130429430499e-01 -1.2675148322639662e-01 -2.2510421323402252e+01 2.2516692083931748e+01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 1 0 P 725 130 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 1 0 0 0 0 V -227 0 -1.8789777367814162e-04 -1.0171899695354876e-04 -3.2577009587721065e-03 3.2657799301321778e-03 0 2 0 P 726 22 -9.8742975301253269e-02 -1.2958951465171503e-01 -2.3164490981717019e+00 2.3221714066578940e+00 0 1 0 0 0 0 P 727 22 -2.0330457838470647e-01 -3.3924792046976605e-02 -2.9203378311030650e+00 2.9276025500192757e+00 0 1 0 0 0 0 V -228 0 2.5680124126781640e-04 -6.6671061753152347e-04 -1.4615627341137078e-02 1.4633171935080992e-02 0 2 0 P 728 22 3.9488384293166995e-01 -9.0894745383209852e-01 -2.1326824337540682e+01 2.1349837354124130e+01 0 1 0 0 0 0 P 729 22 2.7117349133867197e-01 -8.2027898779426756e-01 -1.6581270411012650e+01 1.6603762258095156e+01 0 1 0 0 0 0 V -229 0 4.2228774081899641e-06 -5.7618144288484923e-06 -3.3091630919049152e-04 3.3128293686761383e-04 0 2 0 P 730 22 -3.2736646243361221e-02 -2.0419438010375442e-02 -2.1851403038440043e+00 2.1854809056451145e+00 0 1 0 0 0 0 P 731 22 7.3900016195038304e-02 -3.5745038483215488e-02 -1.0405347848605828e+00 1.0437679620847982e+00 0 1 0 0 0 0 V -230 0 2.0021810869478633e-04 -1.0601920139601617e-04 -1.8425109457332314e-03 1.8566107698380972e-03 0 2 0 P 732 22 3.7482875608027388e-01 -2.6224906363708034e-01 -3.4106175623845778e+00 3.4411601713098636e+00 0 1 0 0 0 0 P 733 22 5.6346216056367626e-01 -2.3459337638102351e-01 -5.2240224083383273e+00 5.2595564244002473e+00 0 1 0 0 0 0 V -231 0 3.5027927508939576e-06 4.2536310198609524e-06 -4.8811088946560889e-05 4.9254039148600072e-05 0 2 0 P 734 22 2.2103473072237936e-02 8.2751909090109807e-02 -1.1731799816906168e+00 1.1763025594716305e+00 0 1 0 0 0 0 P 735 22 1.0865277369588155e-01 7.6032485776392031e-02 -6.4889607167802310e-01 6.6230844473275119e-01 0 1 0 0 0 0 V -232 0 6.4309717389651207e-05 6.6252738983817758e-05 -1.5086468414144969e-03 1.5116300226098219e-03 0 2 0 P 736 22 3.5481334459866376e-01 2.8788857028233866e-01 -7.1377630606681404e+00 7.1523726027551948e+00 0 1 0 0 0 0 P 737 22 3.9402681849856215e-02 1.1823810176138751e-01 -2.1101824641591613e+00 2.1138597049212908e+00 0 1 0 0 0 0 V -233 0 6.3882138645046598e-05 1.2078835114433230e-04 -2.4040302275451738e-03 2.4080396805039924e-03 0 2 0 P 738 22 2.8243820302205580e-01 4.6793477037071962e-01 -1.0384138176070101e+01 1.0398512391085790e+01 0 1 0 0 0 0 P 739 22 6.3023401891341618e-02 1.8526405055509784e-01 -2.6163680418361217e+00 2.6236761324438316e+00 0 1 0 0 0 0 V -234 0 3.7188408530402123e-04 9.9528210271637450e-05 -6.3321727710414985e-03 6.3448095230672725e-03 0 2 0 P 740 22 1.0690837274370636e-01 7.0264089256418694e-02 -1.4433400690182150e+00 1.4489986187830710e+00 0 1 0 0 0 0 P 741 22 3.5147281571613159e-01 5.2413543674007003e-02 -6.3616427065962542e+00 6.3715601108470459e+00 0 1 0 0 0 0 V -235 0 7.0438810368322106e-06 4.9505424250073509e-06 -6.4907029826131470e-04 6.4915859208743826e-04 0 2 0 P 742 22 1.4433243584258459e-01 3.5067455891633161e-02 -7.4278565617346404e+00 7.4293414701575875e+00 0 1 0 0 0 0 P 743 22 5.0660057121067938e-03 6.9931949873330901e-02 -6.3387148088813436e+00 6.3391025839907806e+00 0 1 0 0 0 0 V -236 0 2.9872774276008541e-05 2.0771247041135075e-05 -6.9385230271726338e-04 6.9493482760984787e-04 0 2 0 P 744 22 2.6595339129699630e-01 1.1806897499546447e-01 -4.9124064458151855e+00 4.9210170268030415e+00 0 1 0 0 0 0 P 745 22 3.4951290719546543e-02 9.1157172808941048e-02 -2.0766801581452152e+00 2.0789737136653552e+00 0 1 0 0 0 0 V -237 0 0 0 0 0 0 3 0 P 746 211 4.0716413945063162e-01 6.5720178265344942e-01 -2.0453752726074384e+01 2.0468834289814179e+01 1.3957000000000000e-01 1 0 0 0 0 P 747 -211 1.5826736729557286e-01 1.0134390427953499e-01 -3.5457128517341818e+00 3.5534319408619939e+00 1.3957000000000000e-01 1 0 0 0 0 P 748 111 2.5111332294795449e-02 2.6902380194850234e-01 -1.5010671020661738e+01 1.5013709350988467e+01 1.3497999999999999e-01 2 0 0 -259 0 V -238 0 5.8903333867336597e-05 -5.2410509733231833e-06 -2.8051658415803133e-03 2.8058089833371256e-03 0 2 0 P 749 22 5.4891653572885640e-02 -4.1198549231600635e-02 -3.6787475394676590e+00 3.6793877035765208e+00 0 1 0 0 0 0 P 750 22 6.9779543536601840e-01 -2.5773405343598180e-02 -3.2166627801176162e+01 3.2174205923960876e+01 0 1 0 0 0 0 V -239 0 1.4693022594664131e-06 8.7815005908772063e-06 -4.7503860358099432e-03 4.7503999124542768e-03 0 2 0 P 751 22 -1.0608406023043717e-02 1.6744162506424523e-01 -6.0624531977538545e+01 6.0624764137534385e+01 0 1 0 0 0 0 P 752 22 3.7963012860759530e-02 -3.9528026922912261e-03 -2.7815366280119310e+01 2.7815392467340683e+01 0 1 0 0 0 0 V -240 0 1.7544549980818637e+01 -1.3287867655642611e+00 -2.8328132820646224e+03 2.8329467750762365e+03 0 2 0 P 753 211 3.3395522795578292e-01 6.5363911138751535e-02 -5.7809835809678958e+01 5.7811005826417670e+01 1.3957000000000000e-01 1 0 0 0 0 P 754 -211 7.9135413072235108e-02 -9.6650514521375047e-02 -8.8894329592630523e+00 8.8914060675290063e+00 1.3957000000000000e-01 1 0 0 0 0 V -241 0 1.4102817339079698e-05 -1.9175185729306621e-05 -9.7861705607419280e-04 9.7900231656954172e-04 0 2 0 P 755 22 6.1092134047216619e-02 -9.3224802538886639e-02 -2.2430251534172858e+00 2.2457927222950689e+00 0 1 0 0 0 0 P 756 22 7.7883969647457585e-02 -9.5736915975057901e-02 -7.4007490083218750e+00 7.4017779859967225e+00 0 1 0 0 0 0 V -242 0 3.3969430748175402e-05 -8.8425207282220679e-05 2.2521194733120887e-03 2.2542755467736910e-03 0 2 0 P 757 22 1.7035851339353436e-01 -4.1092918385679900e-01 1.0927832676777681e+01 1.0936883094779835e+01 0 1 0 0 0 0 P 758 22 -2.1643506845835945e-03 -2.6893981666731962e-02 2.2317400161936557e-01 2.2479903394493703e-01 0 1 0 0 0 0 V -243 0 5.8194933746022386e+00 1.6391487248459587e+01 -3.6935120022969791e+01 4.2938767155087014e+01 0 2 0 P 759 22 2.1264245317034271e-02 -1.7847415052051872e-03 8.9981171120764522e-03 2.3158573848707790e-02 0 1 0 0 0 0 P 760 22 2.4772952254176361e-02 -2.1214548018388187e-02 -2.9957826466985249e-01 3.0134845755970330e-01 0 1 0 0 0 0 V -244 0 5.8194889795431610e+00 1.6391545109374213e+01 -3.6935092868438311e+01 4.2938741708367139e+01 0 2 0 P 761 22 5.0555801579855085e-02 3.8498334704217291e-01 -5.5316611598883214e-01 6.7584082330926543e-01 0 1 0 0 0 0 P 762 22 1.2110649112606210e-01 2.5120181928916713e-01 -5.3794736832795975e-01 6.0593440841235591e-01 0 1 0 0 0 0 V -245 0 7.1039895655604471e+02 3.6643135540274807e+02 2.5254570840649353e+03 2.6971926198265191e+03 0 2 0 P 763 22 1.9372940901322067e-01 -1.0401068480301538e-03 6.3248572780355294e-01 6.6149101400854815e-01 0 1 0 0 0 0 P 764 22 1.8873243297642975e-01 9.4631886678116589e-02 4.1375033127622796e-01 4.6450453373960826e-01 0 1 0 0 0 0 V -246 0 5.5214858287883606e-01 -5.2149282539082475e-01 2.7331974638437493e+00 3.1591020290220215e+00 0 2 0 P 765 22 6.7943750918057849e-02 -4.3972019132378519e-02 2.1946814010010467e-02 8.3854364230988812e-02 0 1 0 0 0 0 P 766 22 -1.3470138749536818e-02 -1.5738141086484525e-01 1.5389405861198588e-01 2.2053057475055549e-01 0 1 0 0 0 0 V -247 0 5.5211131230527322e-01 -5.2128789205838533e-01 2.7331191881295291e+00 3.1588970342534082e+00 0 2 0 P 767 22 1.5734271138854929e-02 -1.1710027817708276e-02 4.5354650614759229e-01 4.5397040132419475e-01 0 1 0 0 0 0 P 768 22 1.2746473965998736e-01 2.6419928605049874e-02 3.4914817561875189e-01 3.7262544333685410e-01 0 1 0 0 0 0 V -248 0 -2.3221937203653706e-01 -8.3803594578539853e-01 1.2378008386335120e+01 1.2493592556593743e+01 0 2 0 P 769 111 -2.1007566335191094e-01 -2.6535313856906168e-01 3.3332599205886893e+00 3.3531157706056187e+00 1.3497999999999999e-01 2 0 0 -260 0 P 770 111 1.3067534140913559e-01 -2.1187658227639329e-02 8.9902200432645851e-01 9.1868663121693905e-01 1.3497999999999999e-01 2 0 0 -261 0 V -249 0 1.6510511898734837e+01 -2.0951178684282088e+01 3.4277769141786280e+02 3.4387613128618381e+02 0 2 0 P 771 22 3.4608057484918514e-01 -4.1856277200663949e-01 6.1115559126115606e+00 6.1356403277388365e+00 0 1 0 0 0 0 P 772 22 8.1234121013659244e-01 -8.4361396657417442e-01 1.5339021374178174e+01 1.5383665346196919e+01 0 1 0 0 0 0 V -250 0 1.6510371730223042e+01 -2.0951060609497006e+01 3.4277552933285705e+02 3.4387396227575277e+02 0 2 0 P 773 22 1.1179296245496410e-01 -3.4049150293053171e-01 4.5015911093763892e+00 4.5158337708599170e+00 0 1 0 0 0 0 P 774 22 -1.2763778341358891e-02 7.0111745166315294e-03 1.5402269976315447e-01 1.5470960748441195e-01 0 1 0 0 0 0 V -251 0 -2.5634079793228746e+00 2.6919131858569605e+00 1.3480280425796320e+03 1.3480413030082466e+03 0 2 0 P 775 111 -2.9420682174197654e-01 2.5131457931322942e-01 1.3022820225659302e+02 1.3022884703189320e+02 1.3497999999999999e-01 2 0 0 -262 0 P 776 111 2.1808484835509710e-02 3.4739252475855999e-02 1.3018834447633772e+01 1.3019598780337631e+01 1.3497999999999999e-01 2 0 0 -263 0 V -252 0 2.2905751564047588e+01 -3.5595845413983285e+00 1.4291664715640214e+04 1.4291717876903973e+04 0 2 0 P 777 111 1.8279443920262844e-01 -2.3695624301270182e-01 1.1222317832130916e+02 1.1222365853154521e+02 1.3497999999999999e-01 2 0 0 -264 0 P 778 111 1.8094420015634316e-01 1.8043077017889689e-01 1.1472552769718048e+02 1.1472589167691538e+02 1.3497999999999999e-01 2 0 0 -265 0 V -253 0 1.2260791437956435e+00 -1.4489396529280316e+00 5.2571409381626672e+03 5.2571603618626341e+03 0 3 0 P 779 22 -6.5038995644094280e-02 -2.1360384467465116e-03 7.9702064854890466e+01 7.9702091420280709e+01 0 1 0 0 0 0 P 780 -11 1.9922626937671800e-02 -8.5263438659147581e-02 6.6352679615537539e+01 6.6352737390308974e+01 5.1000000000000004e-04 1 0 0 0 0 P 781 11 4.3222074000870093e-03 -1.8585530384653683e-02 1.4504159418409575e+01 1.4504171979060221e+01 5.1000000000000004e-04 1 0 0 0 0 V -254 0 1.2261085393293176e+00 -1.4488820198585435e+00 5.2570660094948762e+03 5.2570854332153285e+03 0 2 0 P 782 22 1.1096562081050221e-01 1.3153255323044396e-02 1.9443964258454457e+01 1.9444285342001692e+01 0 1 0 0 0 0 P 783 22 -2.7091104058261421e-02 4.1923439562524728e-02 4.7099269189714574e+00 4.7101914063821031e+00 0 1 0 0 0 0 V -255 0 -1.1507078111758497e+02 7.3473986000586351e+01 2.2333894359704686e+03 2.2376624568261132e+03 0 2 0 P 784 111 -1.0351969009330031e+00 4.2956798630949328e-01 1.8495213885591919e+01 1.8529633497529179e+01 1.3497999999999999e-01 2 0 0 -266 0 P 785 111 -1.6199764396974605e+00 1.2657900095597112e+00 3.3038598886347934e+01 3.3102776076741165e+01 1.3497999999999999e-01 2 0 0 -267 0 V -256 0 2.1366291327530174e+01 -1.0008490854836426e+01 -3.0061965271343563e+01 4.2193178421863180e+01 0 2 0 P 786 22 1.7223250489391898e-01 -6.1733530835467343e-02 -1.4176713115907519e-01 2.3145838513331476e-01 0 1 0 0 0 0 P 787 22 4.6842804254491312e-02 -1.2928353118858341e-01 -1.0683769521453605e-01 1.7413435291684440e-01 0 1 0 0 0 0 V -257 0 -1.6904111902783872e+00 7.6772593220176963e+00 -1.6704720811848748e+02 1.6782510060566270e+02 0 2 0 P 788 22 -1.4765727126762232e-01 2.2163974408978340e-01 -3.0457199071246519e+00 3.0573414265622647e+00 0 1 0 0 0 0 P 789 22 -6.1447438022490718e-02 4.3247049112020826e-02 -3.6257460498950556e-01 3.7027886663934978e-01 0 1 0 0 0 0 V -258 0 -1.6903407351458315e+00 7.6771705745321945e+00 -1.6704607240475167e+02 1.6782395843680584e+02 0 2 0 P 790 22 6.6490143301456972e-02 -6.3655958838597301e-02 -1.0203698210398104e+00 1.0245133439544478e+00 0 1 0 0 0 0 P 791 22 8.2935379633314571e-02 6.9819362059322210e-02 -1.4690643489628326e+00 1.4730590897540004e+00 0 1 0 0 0 0 V -259 0 1.0227575525429421e-06 1.0957050069130500e-05 -6.1136848395340474e-04 6.1149223187933316e-04 0 2 0 P 792 22 -4.4839716115330150e-02 1.8339547998973249e-01 -8.4706454259079571e+00 8.4727491662197423e+00 0 1 0 0 0 0 P 793 22 6.9951048410125602e-02 8.5628321958769876e-02 -6.5400255947537813e+00 6.5409601847687231e+00 0 1 0 0 0 0 V -260 0 -2.3242766873055079e-01 -8.3829905185217557e-01 1.2381313419439236e+01 1.2496917277403941e+01 0 2 0 P 794 22 -4.6739801355008818e-02 -2.0328069699797665e-02 2.1397317976128771e-01 2.1995990795047599e-01 0 1 0 0 0 0 P 795 22 -1.6333586199690212e-01 -2.4502506886926398e-01 3.1192867408274014e+00 3.1331558626551428e+00 0 1 0 0 0 0 V -261 0 -2.3220808822769526e-01 -8.3803777533856949e-01 1.2378086016837798e+01 1.2493671885135917e+01 0 2 0 P 796 22 1.4429995742686419e-01 -2.2664260392563140e-02 5.4011178679036131e-01 5.5951486900922776e-01 0 1 0 0 0 0 P 797 22 -1.3624616017728595e-02 1.4766021649238105e-03 3.5891021753609725e-01 3.5917176220771113e-01 0 1 0 0 0 0 V -262 0 -2.5634185835077368e+00 2.6919222440638433e+00 1.3480327364338493e+03 1.3480459968857037e+03 0 2 0 P 798 22 -3.0676729493944860e-01 2.2671315406546047e-01 1.2319050457185693e+02 1.2319109513960890e+02 0 1 0 0 0 0 P 799 22 1.2560473197472043e-02 2.4601425247768944e-02 7.0376976847360835e+00 7.0377518922842679e+00 0 1 0 0 0 0 V -263 0 -2.5634046502484154e+00 2.6919184888185841e+00 1.3480300299102319e+03 1.3480432904555221e+03 0 2 0 P 800 22 -1.1820245590838951e-02 -4.1861740319001306e-02 2.1364089748912685e+00 2.1368517570258176e+00 0 1 0 0 0 0 P 801 22 3.3628730426348660e-02 7.6600992794857298e-02 1.0882425472742504e+01 1.0882747023311813e+01 0 1 0 0 0 0 V -264 0 2.2905774555094453e+01 -3.5596143446686681e+00 1.4291678830557295e+04 1.4291731991881452e+04 0 2 0 P 802 22 1.1897890058568597e-02 1.6410341096972033e-02 4.3399220988415381e+00 4.3399694334287542e+00 0 1 0 0 0 0 P 803 22 1.7089654914405983e-01 -2.5336658410967383e-01 1.0788325622246762e+02 1.0788368909811645e+02 0 1 0 0 0 0 V -265 0 2.2905765438350556e+01 -3.5595707064637567e+00 1.4291673512477737e+04 1.4291726673769404e+04 0 2 0 P 804 22 1.7934073718150681e-01 1.1571090940544328e-01 9.9105850367145678e+01 9.9106080182346176e+01 0 1 0 0 0 0 P 805 22 1.6034629748363427e-03 6.4719860773453625e-02 1.5619677330034813e+01 1.5619811494569175e+01 0 1 0 0 0 0 V -266 0 -1.1507097050537887e+02 7.3474064589435670e+01 2.2333928196434226e+03 2.2376658467960856e+03 0 2 0 P 806 22 -4.3063881229938067e-01 1.5901999326194144e-01 6.5454577753714780e+00 6.5615359965549676e+00 0 1 0 0 0 0 P 807 22 -6.0455808863362237e-01 2.7054799304755184e-01 1.1949756110220441e+01 1.1968097500974212e+01 0 1 0 0 0 0 V -267 0 -1.1507107976724249e+02 7.3474219354444827e+01 2.2333955267789524e+03 2.2376685594659393e+03 0 2 0 P 808 22 -1.1283681298247601e+00 8.2396220903032336e-01 2.1714939205414947e+01 2.1759841751565688e+01 0 1 0 0 0 0 P 809 22 -4.9160830987270043e-01 4.4182780052938780e-01 1.1323659680932987e+01 1.1342934325175468e+01 0 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testFlow.output0000644000175000017500000000370611225157556020674 0ustar sylvestresylvestre________________________________________________________________________________ GenEvent: #1 ID=20 SignalProcessGenVertex Barcode: -3 Momenutm units: GEV Position units: MM Entries this event: 4 vertices, 8 particles. Beam Particles are not defined. RndmState(0)= Wgts(0)= EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ GenVertex: -1 ID: 0 (X,cT):0 I: 1 10001 2212 +0.00e+00,+0.00e+00,+7.00e+03,+7.00e+03 3 -1 O: 1 10003 1 +7.50e-01,-1.57e+00,+3.22e+01,+3.22e+01 3 -3 GenVertex: -2 ID: 0 (X,cT):0 I: 1 10002 2212 +0.00e+00,+0.00e+00,-7.00e+03,+7.00e+03 3 -2 O: 1 10004 -2 -3.05e+00,-1.90e+01,-5.46e+01,+5.79e+01 3 -3 GenVertex: -3 ID: 0 (X,cT):0 I: 2 10003 1 +7.50e-01,-1.57e+00,+3.22e+01,+3.22e+01 3 -3 10004 -2 -3.05e+00,-1.90e+01,-5.46e+01,+5.79e+01 3 -3 O: 2 10005 22 -3.81e+00,+1.13e-01,-1.83e+00,+4.23e+00 1 10006 -24 +1.52e+00,-2.07e+01,-2.06e+01,+8.59e+01 3 -4 Vertex: -4 ID: 0 (X,cT)=+1.20e-01,-3.00e-01,+5.00e-02,+4.00e-03 I: 1 10006 -24 +1.52e+00,-2.07e+01,-2.06e+01,+8.59e+01 3 -4 O: 2 10007 1 -2.44e+00,+2.88e+01,+6.08e+00,+2.96e+01 1 10008 -2 +3.96e+00,-4.95e+01,-2.67e+01,+5.64e+01 1 ________________________________________________________________________________ dangling partners of particle 10001 10005 22 231 10001 2212 231 all partners of particle 10001 10001 2212 231 10003 1 231 10005 22 231 dangling partners of particle 10002 10006 -24 243 10002 2212 243 all partners of particle 10002 10002 2212 243 10004 -2 243 10006 -24 243 hepmc-2.06.09.orig/test/testMass.cc.in0000644000175000017500000001067111374257600020315 0ustar sylvestresylvestre//------------------------------------------------------------------- // testMass.cc.in // // garren@fnal.gov, March 2006 // Read events written by example_MyPythia.cc // Select events containing a photon of pT > 25 GeV // Add arbitrary PDF information to one of the good events // Add arbitrary HeavyIon information to one of the good events // Write the selected events and read them back in using an istream //------------------------------------------------------------------- #include // for min() #include #include "HepMC/IO_GenEvent.h" #include "HepMC/GenEvent.h" #include "HepMC/Version.h" // define methods and classes used by this test #include "IsGoodEvent.h" void massInfo( const HepMC::GenEvent*, std::ostream& os ); int main() { // output file std::ofstream os( "testMass.cout" ); // read and process the input file { // declare an input strategy to read the data produced with the // example_MyPythia HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare another IO_GenEvent for output HepMC::IO_GenEvent ascii_out("testMass1.out",std::ios::out); // declare an instance of the event selection predicate IsGoodEvent is_good_event; // send version to output HepMC::version(os); //........................................EVENT LOOP int icount=0; int num_good_events=0; double x1=0., x2=0., q=0., xf1=0., xf2=0.; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { if (num_good_events == 0 ) { // add some arbitrary PDF information x1 = std::min(0.8, 0.07 * icount); x2 = 1-x1; q = 1.69 * icount; // use beam momentum if( evt->valid_beam_particles() ) { HepMC::GenParticle* bp1 = evt->beam_particles().first; xf1 = x1*bp1->momentum().rho(); xf2 = x2*bp1->momentum().rho(); } else { xf1 = x1*0.34; xf2 = x2*0.34; } // provide optional pdf set id numbers // (two ints at the end of the constructor) HepMC::PdfInfo pdf( 2, 3, x1, x2, q, xf1, xf2, 230, 230); evt->set_pdf_info(pdf); // add some arbitrary HeavyIon information HepMC::HeavyIon ion(23,11,12,15,3,5,0,0,0,0.0145); evt->set_heavy_ion( ion ); } os << "saving Event " << evt->event_number() << std::endl; if( evt->weights().size() > 0 ) { os << "Weights: "; evt->weights().print(os); } ascii_out << evt; ++num_good_events; } // clean up and get next event delete evt; ascii_in >> evt; } //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } // now read the file we just created { // declare an input strategy const char infile[] = "testMass1.out"; std::ifstream istr( infile ); if( !istr ) { std::cerr << "testMass: cannot open " << infile << std::endl; exit(-1); } HepMC::IO_GenEvent xin(istr); // declare another IO_GenEvent for output HepMC::IO_GenEvent xout("testMass2.out",std::ios::out); //........................................EVENT LOOP int ixin=0; HepMC::GenEvent* evt = xin.read_next_event(); while ( evt ) { ixin++; os << "reading Event " << evt->event_number() << std::endl; if( evt->weights().size() > 0 ) { os << "Weights: "; evt->weights().print(os); } xout << evt; // look at mass info massInfo(evt,os); // clean up and get next event delete evt; xin >> evt; } //........................................PRINT RESULT os << ixin << " events in the second pass. Finished." << std::endl; } } void massInfo( const HepMC::GenEvent* e, std::ostream& os ) { double gm, m, d; for ( HepMC::GenEvent::particle_const_iterator p = e->particles_begin(); p != e->particles_end(); ++p ) { gm = (*p)->generated_mass(); m = (*p)->momentum().m(); d = fabs(m-gm); if( d > 1.0e-5 ) { os << "Event " << e->event_number() << " Particle " << (*p)->barcode() << " " << (*p)->pdg_id() << " generated mass " << gm << " mass from momentum " << m << " difference " << d << std::endl; } } } hepmc-2.06.09.orig/test/testFlow.sh.in0000755000175000017500000000114511657246747020363 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ rm -f testFlow.out ./testFlow@EXEEXT@ if [ "$?" -ne 0 ] then exit 1; fi if [ ! -e testFlow.out ] then echo "ERROR: testFlow.out does not exist" exit 1; fi OS=`uname` case "$OS" in CYGWIN*) cmd1=`sed 's/e+0/e+/g' testFlow.out | \ sed 's/e-0/e-/g' | \ @DIFF_Q@ - @srcdir@/testFlow.output` cmd2=`@DIFF_Q@ testFlow.out4 testFlow.out5` ;; *) cmd1=`@DIFF_Q@ testFlow.out @srcdir@/testFlow.output` cmd2=`@DIFF_Q@ testFlow.out4 testFlow.out5` esac if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi if [ -n "$cmd2" ] then echo $cmd2 exit 1; fi exit 0; hepmc-2.06.09.orig/test/.cvsignore0000644000175000017500000000001410403667104017560 0ustar sylvestresylvestreMakefile.in hepmc-2.06.09.orig/test/testMultipleCopies.cc.in0000644000175000017500000001262411211311605022332 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testMultipleCopies.cc.in // // garren@fnal.gov, January 2008 // Multiple events in memory at the same time // run with valgrind or some other leak checker ////////////////////////////////////////////////////////////////////////// // #include #include "HepMC/IO_GenEvent.h" #include "HepMC/GenEvent.h" #include "HepMC/CompareGenEvent.h" // define methods and classes used by this test #include "IsGoodEvent.h" int main() { // use output file std::ofstream os( "testMultipleCopies.out" ); { // declare an input strategy HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); // declare another input strategy HepMC::IO_GenEvent ascii_in2("@srcdir@/testHepMCVarious.input",std::ios::in); std::ofstream out1( "testMultipleOriginals.out" ); std::ofstream out2( "testMultipleCopies1.out" ); std::ofstream out3( "testMultipleCopies2.out" ); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; int icnt; HepMC::GenEvent* evt1 = ascii_in.read_next_event(); HepMC::GenEvent* evt2 = ascii_in2.read_next_event(); HepMC::GenEvent* evt3 = ascii_in.read_next_event(); while ( evt1 && evt2 ) { icount++; if ( icount%50==1 ) os << "Processing Event Number " << icount << " stream 1 # " << evt1->event_number() << " stream 2 # " << evt2->event_number() << std::endl; if ( is_good_event(evt1) ) { os << "good event in stream 1 # " << evt1->event_number() << std::endl; evt1->print(out1); ++num_good_events; HepMC::GenEvent ec = (*evt1); ec.print(out3); icnt=0; for ( HepMC::GenEvent::particle_const_iterator p1 = ec.particles_begin(); p1 != ec.particles_end(); ++p1 ) { ++icnt; os << "particle " << icnt << " barcode " <<(*p1)->barcode() << std::endl; } HepMC::GenEvent* evt4 = new HepMC::GenEvent(*evt1); evt4->print(out2); if( !compareGenEvent(evt1,evt4) ) { return -1; } delete evt4; } // clean up and get next events delete evt1; delete evt2; ascii_in >> evt1; ascii_in2 >> evt2; } // might have either evt1 or evt2 still in memory, cleanup here delete evt1; delete evt2; delete evt3; //........................................PRINT RESULT os << std::endl; os << num_good_events << " out of " << icount << " processed events passed the cuts." << std::endl; os << std::endl; os << " GenEvent copy constructor passes the test" << std::endl; os << std::endl; } // test operator= and swap { // declare an input strategy HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); // HepMC::GenEvent* evt5 = ascii_in.read_next_event(); HepMC::GenEvent* evt6 = new HepMC::GenEvent(); os << "event number for evt5: " << evt5->event_number() << std::endl; os << "event number for evt6: " << evt6->event_number() << std::endl; // copy GenEvent object (*evt6) = (*evt5); if( !compareGenEvent(evt5,evt6) ) { return -4; } delete evt5; os << "event number for evt6 after copy: " << evt6->event_number() << std::endl; os << std::endl; delete evt6; os << " GenEvent operator= passes the test" << std::endl; os << std::endl; evt5 = ascii_in.read_next_event(); evt6 = ascii_in.read_next_event(); HepMC::GenEvent* evt7 = new HepMC::GenEvent(*evt5); HepMC::GenEvent* evt8 = new HepMC::GenEvent(*evt6); os << "event number for evt5: " << evt5->event_number() << std::endl; os << "event number for evt6: " << evt6->event_number() << std::endl; os << "before swap, evt5 has: " << evt5->vertices_size() << " vertices and " << evt5->particles_size() << " particles" << std::endl; os << "before swap, evt6 has: " << evt6->vertices_size() << " vertices and " << evt6->particles_size() << " particles" << std::endl; os << "before swap, evt7 has: " << evt7->vertices_size() << " vertices and " << evt7->particles_size() << " particles" << std::endl; os << "before swap, evt8 has: " << evt8->vertices_size() << " vertices and " << evt8->particles_size() << " particles" << std::endl; (*evt6).swap((*evt5)); os << "event number for evt5 after swap: " << evt5->event_number() << std::endl; os << "event number for evt6 after swap: " << evt6->event_number() << std::endl; // evt6 should now match evt7 os << "after swap, evt6 has: " << evt6->vertices_size() << " vertices and " << evt6->particles_size() << " particles" << std::endl; os << "after swap, evt7 has: " << evt7->vertices_size() << " vertices and " << evt7->particles_size() << " particles" << std::endl; if( !compareGenEvent(evt6,evt7) ) { return -6; } // evt5 should now match evt8 os << "after swap, evt5 has: " << evt5->vertices_size() << " vertices and " << evt5->particles_size() << " particles" << std::endl; os << "after swap, evt8 has: " << evt8->vertices_size() << " vertices and " << evt8->particles_size() << " particles" << std::endl; if( !compareGenEvent(evt5,evt8) ) { return -5; } // cleanup delete evt5; delete evt6; delete evt7; delete evt8; os << std::endl; os << " GenEvent swap passes the test" << std::endl; os << std::endl; } return 0; } hepmc-2.06.09.orig/test/list_of_examples.cc0000644000175000017500000000323311225157556021442 0ustar sylvestresylvestre/// The HepMC tests can also serve as useful examples /// based on example_EventSelection /// Apply an event selection to the events in testHepMC.input /// Events containing a photon of pT > 25 GeV pass the selection and are /// written to "testHepMC.out" /// Add arbitrary PDF information to the good events /// Also write events using IO_AsciiParticles /// Test the new GenCrossSection class /// \example testHepMC.cc.in /// Use Matt's example_EventSelection along with example_UsingIterators /// to check HepMC iteration. /// Apply an event selection to the events in testHepMC.input /// Events containing a photon of pT > 25 GeV pass the selection. /// Use iterators on these events. /// \example testHepMCIteration.cc.in /// Read events from testIOGenEvent.input /// Select events containing a photon of pT > 25 GeV /// Add arbitrary PDF information to one of the good events /// Write the selected events and read them back in using an istream /// \example testMass.cc.in /// Multiple events in memory at the same time /// run with valgrind or some other leak checker /// \example testMultipleCopies.cc.in /// Thanks to Bob McElrath and Frank Siegert for this test /// \example testPrintBug.cc /// Exercise all the vector methods /// \example testSimpleVector.cc /// Use streaming IO to read and write a file /// \example testStreamIO.cc.in /// Test MomentumUnits and PositionUnits /// Make sure set and change methods work as expected. /// \example testUnits.cc /// Use a modified example_BuildEventFromScratch to test Flow /// \example testFlow.cc // This file is used by Doxygen when generating the documentation. hepmc-2.06.09.orig/test/Makefile.am0000644000175000017500000000606711461337532017636 0ustar sylvestresylvestre# Applicable to each test program: INCLUDES = -I$(top_builddir) -I$(top_srcdir) LDADD = $(top_builddir)/src/libHepMC.la # Identify executables needed during testing: check_PROGRAMS = testSimpleVector testUnits testPrintBug \ testHepMC testHepMCIteration testMass \ testMultipleCopies testStreamIO testFlow \ testPolarization testWeights check_SCRIPTS = testHepMC.sh testHepMCIteration.sh testPrintBug.sh \ testMass.sh testStreamIO.sh testFlow.sh testPolarization.sh # Identify test(s) to run when 'make check' is requested: TESTS = testSimpleVector testUnits \ testHepMC.sh testHepMCIteration.sh testMass.sh testFlow.sh testStreamIO.sh \ testPrintBug.sh testMultipleCopies testPolarization.sh testWeights # Identify the test(s) for which failure is the intended outcome: XFAIL_TESTS = # Identify the dependencies on a per-test basis: testSimpleVector_SOURCES = testSimpleVector.cc testUnits_SOURCES = testUnits.cc testFlow_SOURCES = testFlow.cc testPolarization_SOURCES = testPolarization.cc testWeights_SOURCES = testWeights.cc testHepMC_SOURCES = testHepMC.cc testHepMCMethods.cc testMass_SOURCES = testMass.cc testStreamIO_SOURCES = testStreamIO.cc testHepMCMethods.cc testHepMCIteration_SOURCES = testHepMCIteration.cc testMultipleCopies_SOURCES = testMultipleCopies.cc testPrintBug_SOURCES = testPrintBug.cc # Identify input data file(s) and prototype output file(s): EXTRA_DIST = testIOGenEvent.input \ testHepMCVarious.input \ testCrossSection.output \ testFlow.output \ testHepMC.output \ testHepMCParticle.output \ testPrintBug.output \ testStreamIO.output \ testCrossSection.dat \ testHepMC.dat \ testHepMCIteration.dat \ testMass1.dat \ testStreamIOVarious.dat # Identify generated file(s) to be removed when 'make clean' is requested: CLEANFILES = testHepMC.cout testStreamIO.cout \ testHepMCIteration.cout \ testHepMCIteration.out testHepMCIteration2.out testHepMCIteration3.out \ testHepMC.out testHepMCParticle.out \ testPrintBug.out testMass.out testNaN.out \ testAscii.out testHepMCprecision.out \ testMass.cout testMass1.out testMass2.out \ testHepMCVarious.cout testHepMCVarious.out testIOAscii.out \ testMultipleCopies.out \ testMultipleCopies1.out testMultipleCopies2.out \ testMultipleOriginals.out testUnits.out \ testCrossSection.out testCrossSection2.out testCrossSection.cout \ testStreamIO.out testStreamIOParticle.out testStreamIOVarious.out \ testStreamIO2.out testStreamIO3.out testStreamIO4.out \ testStreamIOprecision.out testStreamIO.cout testStreamIOVarious.cout \ testFlow.out testFlow.out1 testFlow.out2 testFlow.out3 testFlow.out4 testFlow.out5 \ testPolarization.cout testPolarization1.dat testPolarization2.dat \ testPolarization4.out testPolarization5.out \ testWithWeight.cout testWithWeight.out testWithWeight2.out hepmc-2.06.09.orig/test/testHepMCMethods.h0000644000175000017500000000110411374257600021116 0ustar sylvestresylvestre#ifndef TEST_HEPMC_METHODS_H #define TEST_HEPMC_METHODS_H ////////////////////////////////////////////////////////////////////////// // testHepMCMethods.h // // garren@fnal.gov, March 2009 // // various methods used by the test jobs ////////////////////////////////////////////////////////////////////////// #include "HepMC/GenEvent.h" double findPiZero( HepMC::GenEvent * ); void particleTypes( HepMC::GenEvent *, std::ostream & os=std::cout ); void repairUnits(HepMC::GenEvent*, HepMC::Units::MomentumUnit, HepMC::Units::MomentumUnit ); #endif hepmc-2.06.09.orig/test/IsGoodEvent.h0000644000175000017500000000131511320735010020113 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // IsGoodEvent.h // // garren@fnal.gov, May 2007 // // Events containing a photon of pT > 25 GeV are considered good ////////////////////////////////////////////////////////////////////////// //! used in the tests /// \class IsGoodEvent /// event selection predicate. returns true if the event contains /// a photon with pT > 50 GeV class IsGoodEvent { public: bool operator()( const HepMC::GenEvent* evt ) { for ( HepMC::GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if ( (*p)->pdg_id() == 22 && (*p)->momentum().perp() > 25. ) { return 1; } } return 0; } }; hepmc-2.06.09.orig/test/testHepMCIteration.sh.in0000755000175000017500000000202011657245323022245 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ rm -f testHepMCIteration*out ./testHepMCIteration@EXEEXT@ >& testHepMCIteration.cout OS=`uname` case "$OS" in CYGWIN*) #don't compare these on Windows (hopelessly different default output) cmd1= cmd3=`@DIFF_Q@ testHepMCIteration2.out testHepMCIteration.out` cmd4=`@DIFF_Q@ testHepMCIteration3.out testHepMCIteration.out` ;; Darwin*) # MacOSX fix cmd1=`sed 's/(-0,0)/(0,0)/g' testHepMCIteration.out | \ @DIFF_Q@ - @srcdir@/testHepMCIteration.dat` cmd3=`@DIFF_Q@ testHepMCIteration2.out testHepMCIteration.out` cmd4=`@DIFF_Q@ testHepMCIteration3.out testHepMCIteration.out` ;; *) cmd1=`sed 's/(-0,0)/(0,0)/g' testHepMCIteration.out | \ @DIFF_Q@ - @srcdir@/testHepMCIteration.dat` cmd3=`@DIFF_Q@ testHepMCIteration2.out testHepMCIteration.out` cmd4=`@DIFF_Q@ testHepMCIteration3.out testHepMCIteration.out` esac if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi if [ -n "$cmd3" ] then echo $cmd3 exit 1; fi if [ -n "$cmd4" ] then echo $cmd4 exit 1; fi exit 0; hepmc-2.06.09.orig/test/testWithWeight.dat0000644000175000017500000064135511763464675021302 0ustar sylvestresylvestre HepMC::Version 2.06.09 HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 3 3.4560000000000002e-01 9.8563000000000001e-01 9.8595999999999995e-01 N 3 "0" "1" "2" U GEV MM V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 5 0 P 6 2 -2.7828996352056361e+00 -2.2906329123013656e+01 -1.4383349580125826e+00 2.3119542636542171e+01 0 3 0 0 -5 0 P 12 -5 3.7947351872647319e+00 3.6846157497299679e+00 1.6502860042574440e+01 1.7982235621563390e+01 4.7999999999999998e+00 2 0 0 -26 0 P 92 5 -8.1346941537251727e-01 1.5630945530626079e+01 4.8238634152714468e+01 5.0941083769297414e+01 4.7999999999999998e+00 2 0 0 -9 0 P 93 -1 -5.3741676229734869e-01 1.0873863248915283e+00 2.6033126052803390e+00 2.8909102920655938e+00 3.3000000000000002e-01 2 0 0 -9 0 P 94 1 4.4412768169065009e-01 2.9757316866911192e+00 4.7222021198355009e+00 5.6089501093698795e+00 3.3000000000000002e-01 2 0 0 -28 0 V -5 0 0 0 0 0 0 2 0 P 7 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 3 0 0 -6 0 P 8 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045892e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 -2.9558924368432336e+00 -2.1136942526184530e+01 1.4726160664063599e+02 1.6897945352520074e+02 8.0078507003069546e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 2.1890720009389736e-01 -1.5103381590519644e+00 -1.0101282227481354e+00 1.8301368100045781e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 9 0 P 96 2 2.7190384457759081e-01 -1.9805443867586117e+00 7.8874807176809707e+00 8.1435704602100820e+00 3.3000000000000002e-01 2 0 0 -30 0 P 97 21 -1.8998170418053997e+00 -3.7695997386017890e+00 9.2595789687513896e+00 1.0176393745337489e+01 0 2 0 0 -30 0 P 98 -2 -3.9588186178208620e+00 -1.6822212934605655e+01 3.5789440119508285e+01 3.9744836355605848e+01 3.3000000000000002e-01 2 0 0 -30 0 P 99 -1 5.9552199433256057e+00 2.3745242403988787e+01 3.1715991321618784e+01 4.0066372270403619e+01 3.3000000000000002e-01 2 0 0 -32 0 P 100 21 2.0743573511597924e+00 3.8441154402886393e+00 6.6888125451965719e+00 7.9887668136800203e+00 0 2 0 0 -32 0 P 101 21 4.6118002546575992e-01 5.3242052175615229e-01 1.9958811204074995e+00 2.1165301969673829e+00 0 2 0 0 -32 0 P 102 21 4.8040805695154620e-01 -9.3527667947940610e-02 4.5473259441109271e-01 6.6807264445985481e-01 0 2 0 0 -32 0 P 103 21 -1.0767332361972990e+00 -2.8872396336169426e+00 6.7623151592711821e+00 7.4313130385665520e+00 0 2 0 0 -32 0 P 104 2 -5.2635927624999708e+00 -2.3705596530687178e+01 4.6707374093790200e+01 5.2643597999969892e+01 3.3000000000000002e-01 2 0 0 -32 0 V -9 0 0 0 0 0 0 1 0 P 155 91 -1.3508861776698660e+00 1.6718331855517608e+01 5.0841946757994805e+01 5.3831994061363005e+01 5.6260573213938283e+00 2 0 0 -10 0 V -10 0 0 0 0 0 0 2 0 P 156 -513 -1.2785505564444590e+00 1.5823118816394398e+01 4.8119523608035401e+01 5.0949463470260362e+01 5.3247999999999998e+00 2 0 0 -42 0 P 164 21 -7.2335621225406918e-02 8.9521303912320904e-01 2.7224231499594054e+00 2.8825305911026429e+00 3.0125732139382855e-01 2 0 0 -43 0 V -11 0 0 0 0 0 1 1 0 P 107 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -11 0 P 157 21 -1.8070461989342570e+00 -2.8935371764034503e+00 1.6598525521802102e+01 1.6945472045777521e+01 0 2 0 0 -43 0 V -12 0 0 0 0 0 1 1 0 P 108 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -12 0 P 158 21 -9.1487110299030849e-01 -1.4248626131309374e+00 2.3754663428602494e+00 2.9172012181964542e+00 0 2 0 0 -43 0 V -13 0 0 0 0 0 1 1 0 P 109 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -13 0 P 159 21 1.8070461989342570e+00 2.8935371764034503e+00 1.5274152401094503e+00 3.7377761666571487e+00 0 2 0 0 -43 0 V -14 0 0 0 0 0 1 1 0 P 110 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -14 0 P 160 21 9.8216452499740170e-01 9.8341505181360611e-01 7.0892394640252454e-01 1.5602325083396573e+00 0 2 0 0 -43 0 V -15 0 0 0 0 0 1 1 0 P 111 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -15 0 P 161 21 1.3401685180999063e+00 2.5835207626249184e+00 1.3204965090011838e+00 3.1959884571294142e+00 0 2 0 0 -43 0 V -16 0 0 0 0 0 1 1 0 P 112 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -16 0 P 162 21 1.3761919250471610e-01 4.8591322357565431e-01 3.6734634395003668e-01 6.2449502752607455e-01 0 2 0 0 -43 0 V -17 0 0 0 0 0 1 1 0 P 113 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -17 0 P 163 21 -9.9976074745951243e-02 3.0732513860366850e-01 4.2340487093193641e-01 5.3264964194887221e-01 0 2 0 0 -43 0 V -18 0 0 0 0 0 1 1 0 P 114 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -18 0 P 165 21 -9.1845765782715993e-01 2.4175813170148195e+00 4.6496400343398196e+00 5.3204714398759876e+00 0 2 0 0 -43 0 V -19 0 0 0 0 0 1 1 0 P 115 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -19 0 P 166 21 -6.9650314882875508e-01 6.0044192124953466e-01 1.8070915715313585e+00 2.0276161088879419e+00 0 2 0 0 -43 0 V -20 0 0 0 0 0 1 1 0 P 116 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -20 0 P 167 21 -1.7425097379845018e+00 1.1291072602017853e+00 8.5123809502567713e+00 8.7619548523320745e+00 0 2 0 0 -43 0 V -21 0 0 0 0 0 1 1 0 P 117 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -21 0 P 168 21 -1.1809310183838817e+00 -2.2094009565497752e-01 4.9964295799303473e+00 5.1388443392704719e+00 0 2 0 0 -43 0 V -22 0 0 0 0 0 1 1 0 P 118 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -22 0 P 169 21 -5.1222509543467332e-01 1.7864288355096222e-01 2.3439599826686899e+00 2.4059169205499735e+00 0 2 0 0 -43 0 V -23 0 0 0 0 0 1 1 0 P 119 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -23 0 P 170 21 -1.5190597689628260e+00 3.0230195735901849e-01 5.4945559012304521e+00 5.7086840521131377e+00 0 2 0 0 -43 0 V -24 0 0 0 0 0 1 1 0 P 120 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -24 0 P 171 21 -2.5456115759764222e+00 -2.3087755245418690e-01 5.2855367899213421e+00 5.8711448540795184e+00 0 2 0 0 -43 0 V -25 0 0 0 0 0 0 2 0 P 172 2112 -1.3403559716416125e-01 -3.5047595088280412e-02 6.1283805805316501e+02 6.1283879396137661e+02 9.3957000000000002e-01 1 0 0 0 0 P 173 211 1.7168992358367489e-02 2.6454621882586724e-02 2.0806905855130985e+01 2.0807397859187049e+01 1.3957000000000000e-01 1 0 0 0 0 V -26 0 0 0 0 0 78 1 0 P 13 21 -1.1866008488266269e+00 -2.6534654857213158e+00 -1.2295998440103107e+01 1.2634891305324647e+01 0 2 0 0 -26 0 P 14 21 1.7815727787665281e+00 -1.3584083605995161e+00 -1.4567475253570901e+01 1.4738745201121741e+01 0 2 0 0 -26 0 P 15 21 2.8573722797658214e+00 -1.5915402919107193e+00 -2.1376023848084682e+01 2.1624799938955146e+01 0 2 0 0 -26 0 P 16 21 1.1809310183838817e+00 2.2094009565497752e-01 -5.8049347409737422e+00 5.9279574849194985e+00 0 2 0 0 -26 0 P 17 21 5.1534094670127262e-01 -4.9046104854686232e-02 -1.4987083400079519e+00 1.5855940527631187e+00 0 2 0 0 -26 0 P 18 21 1.7163166423143401e+00 -1.6201022616056748e-01 -8.8787354063630275e+00 9.0445526448946172e+00 0 2 0 0 -26 0 P 19 21 7.3984661623869989e+00 -8.4270820825763382e-01 -5.4483578136558933e+01 5.4990069514802151e+01 0 2 0 0 -26 0 P 20 21 7.0841655836376993e-01 1.2817427516325680e-01 -4.1556897475046767e+01 4.1563132827260823e+01 0 2 0 0 -26 0 P 21 21 2.3175712830731623e+00 -1.8407453326341918e+00 -1.6386601176234313e+02 1.6389273715124816e+02 0 2 0 0 -26 0 P 22 21 4.2774952725718389e+00 -8.4167440342362561e+00 -4.5897553355467534e+02 4.5907262927312888e+02 0 2 0 0 -26 0 P 23 21 -4.8715772635984167e-01 -1.6361874193643067e+00 -9.9108187382080487e+01 9.9122889576944914e+01 0 2 0 0 -26 0 P 24 21 -1.3401685180999063e+00 -2.5835207626249184e+00 -1.1392859161076321e+02 1.1396576072487686e+02 0 2 0 0 -26 0 P 25 21 -5.5178542391167906e-01 -6.4049774448693120e-01 -3.6392568727095977e+01 3.6402386777121336e+01 0 2 0 0 -26 0 P 26 21 -4.0890861668624021e+00 -1.5298627984032251e+00 -1.8091422395899011e+02 1.8096689624499172e+02 0 2 0 0 -26 0 P 27 21 -7.0841655836376993e-01 -1.2817427516325680e-01 -7.2369630185089093e+01 7.2373210898726441e+01 0 2 0 0 -26 0 P 28 21 -4.1939911576024308e-01 1.0095437424246569e+00 -8.6819720899936101e+01 8.6826603131350069e+01 0 2 0 0 -26 0 P 29 21 -4.2774952725718389e+00 8.4167440342362561e+00 -5.3177873608047241e+02 5.3186254116387011e+02 0 2 0 0 -26 0 P 30 21 1.1866008488266269e+00 2.6534654857213158e+00 -8.1778152132714425e+01 8.1829793271764629e+01 0 2 0 0 -26 0 P 31 21 3.5610538671964784e+00 3.8007691361534151e+00 -1.0096686093401887e+02 1.0110110759799279e+02 0 2 0 0 -26 0 P 32 21 3.2268133313577079e+00 6.3131000326162816e+00 -7.5946089385992650e+01 7.6276313815773989e+01 0 2 0 0 -26 0 P 33 21 3.9347873264937305e-01 1.0941869455934863e+00 -1.1271542634222525e+01 1.1331361080649165e+01 0 2 0 0 -26 0 P 34 21 -4.8165933557349000e-01 1.2673999381286170e+00 -6.6285926443263881e+00 6.7658361466363797e+00 0 2 0 0 -26 0 P 35 21 4.9593199016518291e-01 2.2246031165377023e+00 -6.6066014621757985e+00 6.9887044897464259e+00 0 2 0 0 -26 0 P 36 21 2.5456115759764222e+00 2.3087755245418690e-01 -2.4902650358035352e+00 3.5685939371856223e+00 0 2 0 0 -26 0 P 37 21 4.0890861668624021e+00 1.5298627984032251e+00 -2.3905289163520411e+00 4.9775229142495032e+00 0 2 0 0 -26 0 P 38 21 5.5701092972694690e+00 1.8239892209716617e+00 -2.3110672288487164e+00 6.3003242772104260e+00 0 2 0 0 -26 0 P 39 21 4.7845731316178641e+00 1.4512396995780199e+00 3.0578555861144334e+00 5.8607778923076514e+00 0 2 0 0 -26 0 P 40 21 1.1001063507625650e+00 2.5604211832993923e-01 1.0053949146459622e+00 1.5121542526286702e+00 0 2 0 0 -26 0 P 41 21 3.1434810857682747e+00 1.0228230912018581e+00 1.2584395208721093e+01 1.3011327494985322e+01 0 2 0 0 -26 0 P 42 21 7.1735587483348717e-01 4.2520817845077635e-01 2.9517359304575899e+00 3.0672701950323642e+00 0 2 0 0 -26 0 P 43 21 3.2027665608668978e+00 2.3186653582813230e+00 9.3989794202085495e+00 1.0196800323072178e+01 0 2 0 0 -26 0 P 44 21 6.9677945733142521e-01 3.4335555183466832e-01 1.2738377618221897e+00 1.4919977515328000e+00 0 2 0 0 -26 0 P 45 21 2.1010779999027096e+00 3.3833210182541018e+00 2.2971613453416722e+00 4.5976450625039664e+00 0 2 0 0 -26 0 P 46 21 3.1255055435266299e+00 3.6131889411100966e+00 -5.4104657516805299e-01 4.8079778101897555e+00 0 2 0 0 -26 0 P 47 21 9.1487110299030849e-01 1.4248626131309374e+00 1.4245353063220495e-01 1.6992691398876776e+00 0 2 0 0 -26 0 P 48 21 5.5986074961689092e-01 2.2852114462945621e+00 1.9361284993227865e-01 2.3607459306109519e+00 0 2 0 0 -26 0 P 49 21 6.4500408422525440e-02 5.3577989959068031e+00 -7.8918460875106455e-01 5.4159932357709044e+00 0 2 0 0 -26 0 P 50 21 -2.0929448039700498e+00 2.7195851814810417e+00 2.3934474592599855e-01 3.4400359619048868e+00 0 2 0 0 -26 0 P 51 21 -2.3175712830731623e+00 1.8407453326341918e+00 1.2784452580810020e+00 3.2239575539466623e+00 0 2 0 0 -26 0 P 52 21 -1.1516503633303758e+00 7.0009365092342135e-01 1.1912898316085290e+00 1.7987776800694824e+00 0 2 0 0 -26 0 P 53 21 -1.6733093439385109e+00 1.0186940306012382e+00 1.4430497495859105e+00 2.4331243840532455e+00 0 2 0 0 -26 0 P 54 21 -2.8573722797658214e+00 1.5915402919107193e+00 -4.5322851904726402e-01 3.3019680398857831e+00 0 2 0 0 -26 0 P 55 21 -1.7163166423143401e+00 1.6201022616056748e-01 -1.3459337128029691e-01 1.7291921540587571e+00 0 2 0 0 -26 0 P 56 21 -4.7845731316178641e+00 -1.4512396995780199e+00 -3.9749293067899427e-01 5.0155994006071349e+00 0 2 0 0 -26 0 P 57 21 -1.8215011095383324e+00 -1.0109477777759557e+00 -5.5316333447210642e-01 2.1554283509418304e+00 0 2 0 0 -26 0 P 58 21 -2.1010779999027096e+00 -3.3833210182541018e+00 4.9829949520130395e-01 4.0136881120925452e+00 0 2 0 0 -26 0 P 59 21 -3.2268133313577079e+00 -6.3131000326162816e+00 -3.2464940557286099e+00 7.7979022788906969e+00 0 2 0 0 -26 0 P 60 21 -4.9593199016518291e-01 -2.2246031165377023e+00 -6.2510301372838184e-01 2.3633792211049758e+00 0 2 0 0 -26 0 P 61 21 -6.4500408422525440e-02 -5.3577989959068031e+00 -3.2074405683290954e+00 6.2448254885617009e+00 0 2 0 0 -26 0 P 62 21 6.1701487444457359e-01 -2.2176964341280705e+00 -1.0889490270157198e+00 2.5465063936045191e+00 0 2 0 0 -26 0 P 63 21 4.8165933557349000e-01 -1.2673999381286170e+00 -3.8663483658057557e-01 1.4098882280419276e+00 0 2 0 0 -26 0 P 64 21 7.6835179738635895e-01 -1.8073191566348357e+00 -1.8208737057635851e+00 2.6781239834681503e+00 0 2 0 0 -26 0 P 65 21 1.7425097379845018e+00 -1.1291072602017853e+00 -9.4817732019907908e-01 2.2826001889404779e+00 0 2 0 0 -26 0 P 66 21 1.6733093439385109e+00 -1.0186940306012382e+00 3.0640209567571901e+00 3.6367466384038596e+00 0 2 0 0 -26 0 P 67 21 2.2478313184332115e+00 -5.0909195898916133e+00 1.1069730893889062e+01 1.2389880950598085e+01 0 2 0 0 -26 0 P 68 21 2.0929448039700498e+00 -2.7195851814810417e+00 1.6459128310673290e+01 1.6813074265553087e+01 0 2 0 0 -26 0 P 69 21 -5.5986074961689092e-01 -2.2852114462945621e+00 2.2422557941603955e+01 2.2545659006953510e+01 0 2 0 0 -26 0 P 70 21 -3.5610538671964784e+00 -3.8007691361534151e+00 2.5811575910167623e+01 2.6331813489347006e+01 0 2 0 0 -26 0 P 71 21 -7.3984661623869989e+00 8.4270820825763382e-01 6.2610359148205958e+01 6.3051602131488998e+01 0 2 0 0 -26 0 P 72 21 -1.0650504509831762e+00 2.3499897731401714e-01 2.1669329593155950e+01 2.1696760172876097e+01 0 2 0 0 -26 0 P 73 21 -3.1434810857682747e+00 -1.0228230912018581e+00 5.1963463698484453e+01 5.2068504875367701e+01 0 2 0 0 -26 0 P 74 21 -7.5966767935229651e-01 -1.4142689436207581e-01 1.7420555026334643e+01 1.7437684306554427e+01 0 2 0 0 -26 0 P 75 21 -5.5701092972694690e+00 -1.8239892209716617e+00 1.3277135940544565e+02 1.3290066565909959e+02 0 2 0 0 -26 0 P 76 21 -3.1255055435266299e+00 -3.6131889411100966e+00 1.4694678938720386e+02 1.4702442936612277e+02 0 2 0 0 -26 0 P 77 21 -3.9347873264937305e-01 -1.0941869455934863e+00 7.7565859490375843e+01 7.7574574630259377e+01 0 2 0 0 -26 0 P 78 21 -4.1732154979340319e-01 -6.9334187616310994e-01 6.8248264263998863e+01 6.8253061874774431e+01 0 2 0 0 -26 0 P 79 21 -3.2027665608668978e+00 -2.3186653582813230e+00 2.7370624658957468e+02 2.7373480477432929e+02 0 2 0 0 -26 0 P 80 21 -1.9384656826482829e+00 -1.9405105769327926e+00 3.7603306834088568e+02 3.7604307162393405e+02 0 2 0 0 -26 0 P 81 21 -6.9677945733142521e-01 -3.4335555183466832e-01 2.1633353932493438e+02 2.1633493391382740e+02 0 2 0 0 -26 0 P 82 21 -1.0393969672053709e+00 -6.0301084174250907e-01 2.7986357750513110e+02 2.7986615726468466e+02 0 2 0 0 -26 0 P 83 21 -6.1908358320014234e-01 7.6023501837222052e-01 8.9075310426997220e+01 8.9080705820239587e+01 0 2 0 0 -26 0 P 84 21 -2.2478313184332115e+00 5.0909195898916133e+00 5.4505011097923989e+02 5.4507852066137093e+02 0 2 0 0 -26 0 P 85 21 4.1732154979340319e-01 6.9334187616310994e-01 9.3073017702551795e+01 9.3076535735343541e+01 0 2 0 0 -26 0 P 86 21 1.9384656826482829e+00 1.9405105769327926e+00 5.9520590524972476e+02 5.9521222507156745e+02 0 2 0 0 -26 0 P 87 21 1.8215011095383324e+00 1.0109477777759557e+00 5.0083199704508138e+02 5.0083632969850123e+02 0 2 0 0 -26 0 P 88 21 9.1845765782715993e-01 -2.4175813170148195e+00 9.1643197685042333e+02 9.1643562592135652e+02 0 2 0 0 -26 0 P 89 21 6.9650314882875508e-01 -6.0044192124953466e-01 2.2995649607485112e+02 2.2995833477862928e+02 0 2 0 0 -26 0 P 90 21 7.5966767935229651e-01 1.4142689436207581e-01 1.3515581170406858e+02 1.3515802060527204e+02 0 2 0 0 -26 0 P 174 92 1.0664015478979922e+01 -6.4959693542123746e+00 3.3986864486071613e+03 7.8877994002698997e+03 7.1180161480645884e+03 2 0 0 -27 0 V -27 0 0 0 0 0 0 132 0 P 175 -5114 2.9691426171388335e+00 3.1276950826970666e+00 1.5009512295030522e+01 1.6662528131886525e+01 5.8099999999999996e+00 2 0 0 -45 0 P 176 1114 6.2514367201275745e-01 7.4624418247641211e-01 7.5672393431473306e-01 1.7485624916067142e+00 1.2398204239935837e+00 2 0 0 -46 0 P 177 223 -6.8454360167920780e-02 -3.3863812383868197e-01 -1.7362403702818234e+00 1.9337756078260901e+00 7.7820029535063628e-01 2 0 0 -47 0 P 178 113 -6.7670166840735207e-02 -1.2762166083009432e+00 -3.8206369525694561e+00 4.1031179548266170e+00 7.7781883822515563e-01 2 0 0 -48 0 P 179 -313 2.0061503636214922e-01 -6.4231694290986108e-01 -7.0475342952106566e+00 7.1335741476406591e+00 8.7596976531907189e-01 2 0 0 -49 0 P 180 323 1.1817392883703184e+00 -1.6970011660529181e+00 -1.2136321510570626e+01 1.2352187865589196e+01 1.0049500264225451e+00 2 0 0 -50 0 P 181 -2214 7.6136106318676366e-01 -3.7768615960991281e-01 -7.0478148748411993e+00 7.1946529418711629e+00 1.1700508280603596e+00 2 0 0 -51 0 P 182 111 4.4755917821015218e-01 -2.6010511416320825e-01 -6.0447478483813111e+00 6.0683737557375670e+00 1.3497999999999999e-01 2 0 0 -52 0 P 183 3122 3.9940979116949644e+00 -6.6019988362633963e-01 -2.5879088665645387e+01 2.6217563846423293e+01 1.1156800000000000e+00 2 0 0 -53 0 P 184 323 2.9575969733312246e+00 -9.2889079347733661e-01 -1.9687135400570650e+01 1.9951995134845326e+01 9.4265137650388842e-01 2 0 0 -54 0 P 185 -213 1.1542058589560715e+00 1.8522985156712882e-01 -7.1521394364032638e+00 7.2836983748578055e+00 7.2983712935922052e-01 2 0 0 -55 0 P 186 211 1.5016703753858824e+00 -3.9502580937435039e-01 -9.2421059547454600e+00 9.3726763290975192e+00 1.3957000000000000e-01 1 0 0 0 0 P 187 -2224 1.7317130669833445e+00 -1.2781541963249959e-01 -4.0140444078293392e+01 4.0197255586658940e+01 1.2445637664372733e+00 2 0 0 -56 0 P 188 213 6.9120451845957820e-01 -5.6945072857859169e-01 -1.9218812047629648e+01 1.9257303982043098e+01 8.2400383256448750e-01 2 0 0 -57 0 P 189 2114 7.3197216911775531e-01 -1.0418500418670087e-02 -4.1597083934109889e+01 4.1622652447452516e+01 1.2617104020056518e+00 2 0 0 -58 0 P 190 223 1.0452421746478415e+00 -1.5838948579863577e+00 -6.1344071008532616e+01 6.1378287520714913e+01 7.7322503247048135e-01 2 0 0 -59 0 P 191 -2112 1.1824197916745824e+00 -1.4782636589452161e+00 -1.0920390565400065e+02 1.0922435251298985e+02 9.3957000000000002e-01 1 0 0 0 0 P 192 113 1.8871409459091634e-01 -1.1248876587475589e+00 -6.3939617613819266e+01 6.3957376008290709e+01 9.8501777149145919e-01 2 0 0 -60 0 P 193 2112 1.4366660222662786e+00 -1.6548981480285090e+00 -1.3355007881255409e+02 1.3357136309764977e+02 9.3957000000000002e-01 1 0 0 0 0 P 194 211 8.9179414222768005e-01 -2.5126701535742364e+00 -1.3054235965874022e+02 1.3056965938972786e+02 1.3957000000000000e-01 1 0 0 0 0 P 195 -213 9.3903917773625967e-01 -7.8077186090000861e-01 -7.5650593142541794e+01 7.5663391848718646e+01 6.6725104590913586e-01 2 0 0 -61 0 P 196 211 -8.1858946621930684e-01 -2.5619912229017618e+00 -1.0328225929425922e+02 1.0331736762254414e+02 1.3957000000000000e-01 1 0 0 0 0 P 197 -213 -1.5709355293829513e-01 -1.1482698026776599e+00 -7.8940003603445561e+01 7.8952303331520611e+01 7.7384140256876499e-01 2 0 0 -62 0 P 198 211 -1.8713344879901048e+00 -3.1415253885818967e-01 -8.1306047872188444e+01 8.1328306787754485e+01 1.3957000000000000e-01 1 0 0 0 0 P 199 -213 -7.5943253514748688e-01 -9.2860300203423074e-01 -8.8509621948422563e+01 8.8520031734256079e+01 6.3545217774063467e-01 2 0 0 -63 0 P 200 211 7.0562440572574631e-02 -3.5651499795223590e-01 -1.3819144542091278e+01 1.3824627216019088e+01 1.3957000000000000e-01 1 0 0 0 0 P 201 -321 3.6014206962634565e-01 1.9281248996044217e-01 -1.5257810655636924e+01 1.5271257509775253e+01 4.9359999999999998e-01 1 0 0 0 0 P 202 331 -2.3783810069050078e+00 -1.3996998073594116e-01 -1.5790759919833116e+02 1.5792847567232565e+02 9.5773472008653371e-01 2 0 0 -64 0 P 203 313 -9.0519463013872581e-01 1.2905366618640115e+00 -8.0989027535582011e+01 8.1009647640885177e+01 9.2496894383689987e-01 2 0 0 -65 0 P 204 223 -6.0394557515820013e-01 2.5541392679240247e-02 -6.3794959065730978e+01 6.3802646371149891e+01 7.8452478815033821e-01 2 0 0 -66 0 P 205 111 -1.6314734139079126e+00 1.9095122359444876e+00 -1.1590324761606587e+02 1.1593053510629107e+02 1.3497999999999999e-01 2 0 0 -67 0 P 206 213 -6.8176097847688644e-01 9.0581622621649927e-01 -1.0889148607888941e+02 1.0889952521297886e+02 6.8231230078063265e-01 2 0 0 -68 0 P 207 111 -7.1802465883693167e-01 3.1028361439776426e+00 -1.7734095531528615e+02 1.7736960225271358e+02 1.3497999999999999e-01 2 0 0 -69 0 P 208 111 -4.7632299339527423e-01 2.9218629134339963e-01 -2.2981021351687158e+01 2.2988210421648450e+01 1.3497999999999999e-01 2 0 0 -70 0 P 209 -211 2.8371816319526411e-01 1.1098855536857770e+00 -5.1801234925627966e+01 5.1814088446516237e+01 1.3957000000000000e-01 1 0 0 0 0 P 210 -2112 1.8726540984361897e+00 2.3522760171830353e+00 -5.2628516036238473e+01 5.2722704101695250e+01 9.3957000000000002e-01 1 0 0 0 0 P 211 2212 1.3278800762916625e+00 1.7960422409831471e+00 -4.8992353131958048e+01 4.9052217577065647e+01 9.3827000000000005e-01 1 0 0 0 0 P 212 113 1.9728965056787656e-01 1.1150487517108194e+00 -2.4050726382261338e+01 2.4085057672635635e+01 6.0852826957350037e-01 2 0 0 -71 0 P 213 -213 1.6486716365103891e+00 3.0088224244878861e+00 -4.5113149793571587e+01 4.5252207062414094e+01 8.9153192608985898e-01 2 0 0 -72 0 P 214 -1114 8.7516543827491161e-02 8.5008475344384515e-01 -1.6722782136341337e+01 1.6790718945539410e+01 1.2435823636084860e+00 2 0 0 -73 0 P 215 1114 1.6213404936184996e+00 3.6290653839389555e+00 -4.4282650263694379e+01 4.4479033254835102e+01 1.2776636297963906e+00 2 0 0 -74 0 P 216 213 9.9235196262138492e-01 1.2539103457203367e+00 -8.8657298366740971e+00 9.0530300120117850e+00 8.9394255333873707e-01 2 0 0 -75 0 P 217 -211 2.4180650989096583e-01 1.3785653438534726e+00 -4.1369803149028552e+00 4.3695536049227304e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -313 -1.5938356419941197e-02 -2.7798576812290893e-01 -4.0639021852885273e+00 4.1678877882684731e+00 8.8230240026894280e-01 2 0 0 -76 0 P 219 313 2.4355089481557513e+00 2.1445044743288300e+00 -4.5818864925371035e+00 5.6891369947772530e+00 9.1760156815803728e-01 2 0 0 -77 0 P 220 223 1.5621918379492203e+00 2.3247104120340698e-01 -1.3978769529497237e-01 1.7680920523710082e+00 7.8238275949070135e-01 2 0 0 -78 0 P 221 213 2.2225588938235865e+00 8.4227272423108657e-01 -1.5013625997007820e+00 3.0392914705635938e+00 1.1549942029128735e+00 2 0 0 -79 0 P 222 -213 2.0758326472222315e+00 7.2751849337230123e-01 -8.5729109127074499e-01 2.4609267092779374e+00 6.9487258961121334e-01 2 0 0 -80 0 P 223 111 1.8427698207226351e-01 1.5241318379534083e-01 -5.8001061672952703e-01 6.4173179805527802e-01 1.3497999999999999e-01 2 0 0 -81 0 P 224 213 3.5455929725095721e+00 5.2021373694132311e-01 -9.7618119115428836e-01 3.8083404761832598e+00 8.4182872709395007e-01 2 0 0 -82 0 P 225 -3224 1.8659755225370578e+00 5.9366433314837208e-01 1.4095414904461880e+00 2.7643728504576286e+00 1.3493139189595675e+00 2 0 0 -83 0 P 226 211 2.9395287164846440e-01 8.3577827587125827e-02 4.7648820980052409e-01 5.8302173458068451e-01 1.3957000000000000e-01 1 0 0 0 0 P 227 3114 1.6025954981950221e+00 2.0932409298084417e-01 1.8184935549242767e+00 2.7991122160375110e+00 1.3841898287200671e+00 2 0 0 -84 0 P 228 221 -9.4555229116203648e-02 5.1774622347277435e-02 7.9241445218848483e-01 9.6914574208918514e-01 5.4744999999999999e-01 2 0 0 -85 0 P 229 211 2.6184769810369385e-01 -7.2946227871570415e-02 2.7065525559158082e-01 4.0819042301631503e-01 1.3957000000000000e-01 1 0 0 0 0 P 230 223 7.6329051847893992e-01 6.3608456696158155e-01 1.5954242045657365e+00 2.0368689111127449e+00 7.8500992134931347e-01 2 0 0 -86 0 P 231 -213 1.9264648896398375e+00 1.1806538886820253e+00 4.8504239723526439e+00 5.4094610731575274e+00 7.9400618042831983e-01 2 0 0 -87 0 P 232 211 1.3186347738036788e+00 7.3698608315144420e-01 7.0133259470605114e-01 1.6713148556571584e+00 1.3957000000000000e-01 1 0 0 0 0 P 233 221 2.2968569575833424e+00 1.1253388597043763e+00 4.7424069937955844e+00 5.4159085138193603e+00 5.4744999999999999e-01 2 0 0 -88 0 P 234 -321 9.6293898825614721e-01 2.1859108066213670e-01 6.1264599154255901e+00 6.2251253490163023e+00 4.9359999999999998e-01 1 0 0 0 0 P 235 311 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -89 0 P 236 211 6.2606843616601637e-01 1.5564576062757693e+00 1.8064013289805951e+00 2.4692281209195555e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 -211 3.2829229505596486e-01 1.6050501362759673e-01 1.1576485905034266e+00 1.2219524272193569e+00 1.3957000000000000e-01 1 0 0 0 0 P 238 211 5.2363044541308601e-01 4.7984615570748412e-01 2.1021603784419852e-02 7.2412904184021443e-01 1.3957000000000000e-01 1 0 0 0 0 P 239 -213 4.2644872999455108e-01 3.3243908822368406e-01 2.6050146808359692e-01 9.4414167018209461e-01 7.2881287845891241e-01 2 0 0 -90 0 P 240 213 1.9703139564481746e+00 3.5422184657686375e+00 6.9544944926156382e-01 4.1815329737555462e+00 7.5638570049935916e-01 2 0 0 -91 0 P 241 -211 1.1223834325538911e+00 2.1584377697301642e+00 4.4346854074937758e-01 2.4768411953541882e+00 1.3957000000000000e-01 1 0 0 0 0 P 242 -311 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530437e+00 4.9767000000000000e-01 2 0 0 -92 0 P 243 221 5.6045792497946134e-01 2.2593533285322249e+00 -9.4878141960802309e-01 2.5726791936647180e+00 5.4744999999999999e-01 2 0 0 -93 0 P 244 331 -1.7773805180447802e-01 3.3939935301843325e+00 -1.2919680637438463e-01 3.5333837861913504e+00 9.5777151124379667e-01 2 0 0 -94 0 P 245 323 -1.4642481292293190e+00 1.7565592644649222e+00 7.5978764920431943e-02 2.4614360173103882e+00 9.0739818220276580e-01 2 0 0 -95 0 P 246 113 -7.1276144961179386e-02 1.1043845211059751e+00 2.5193602116803671e-01 1.3673207596737100e+00 7.6246235433213971e-01 2 0 0 -96 0 P 247 -321 -1.3593408532003441e+00 1.6777687551577893e+00 1.2977477760519185e+00 2.5671980447972569e+00 4.9359999999999998e-01 1 0 0 0 0 P 248 313 -3.3374767408470971e+00 2.5283432526764869e+00 4.3550376149791936e-01 4.3043867743663480e+00 8.9822679653360227e-01 2 0 0 -97 0 P 249 211 -2.2712258512296837e-01 -5.2096566362130149e-02 5.1979686130267189e-01 5.8648724011675890e-01 1.3957000000000000e-01 1 0 0 0 0 P 250 113 -1.7348648239198627e+00 2.4344911375809028e-01 3.2158972854853984e-01 1.8952052213951078e+00 6.4757968577717218e-01 2 0 0 -98 0 P 251 111 -1.2274734953005944e+00 5.0297506266871539e-01 4.3168359800874967e-01 1.4015154028842625e+00 1.3497999999999999e-01 2 0 0 -99 0 P 252 -213 -1.3669985264220348e+00 4.9558188161756828e-01 -6.1653843976002842e-01 1.7911566168541109e+00 8.4488816169414438e-01 2 0 0 -100 0 P 253 -313 -4.1355654154764379e+00 -9.6986897629822244e-01 -1.8280778529299693e-01 4.3367558952529306e+00 8.5468466218644279e-01 2 0 0 -101 0 P 254 323 -1.8247089415022222e+00 -2.0606022018786829e+00 3.8202847665362633e-01 2.9816514411509303e+00 1.0810436642234649e+00 2 0 0 -102 0 P 255 223 -1.7718370632785063e+00 -1.1695106770310499e+00 -1.2934083845062685e+00 2.6060496654881939e+00 7.8193849335033083e-01 2 0 0 -103 0 P 256 221 -1.6223753874966427e+00 -2.2308848126240868e+00 -7.7378579335598319e-01 2.9167438868798947e+00 5.4744999999999999e-01 2 0 0 -104 0 P 257 -213 -9.3652673441129597e-01 -1.5977868262550217e+00 -2.9726727540037662e-02 2.0219324996876180e+00 8.1075414802614520e-01 2 0 0 -105 0 P 258 -311 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -106 0 P 259 313 5.2769026493173465e-01 -3.0354065769053165e+00 -2.1097230961284898e+00 3.8344363805122224e+00 8.7167695336857376e-01 2 0 0 -107 0 P 260 -2112 4.8509563970114938e-02 -1.0952533737364247e+00 -1.1078823745473330e+00 1.8199253477025443e+00 9.3957000000000002e-01 1 0 0 0 0 P 261 -213 -3.8823937332356712e-01 -3.6780016192075178e+00 -1.6771750905185370e+00 4.1060500429813427e+00 6.0688133050821980e-01 2 0 0 -108 0 P 262 2212 1.3994814356647098e+00 -3.5588256310982294e+00 -1.3878258821424518e+00 4.1749490336262003e+00 9.3827000000000005e-01 1 0 0 0 0 P 263 221 3.8552433433146971e-01 -2.4304532705639512e-01 -5.2189832595612418e-01 8.8305119245798991e-01 5.4744999999999999e-01 2 0 0 -109 0 P 264 213 6.6006078842681448e-01 7.5435510076233758e-03 3.0935669352680117e-01 1.0629207771882128e+00 7.7353853502467906e-01 2 0 0 -110 0 P 265 -211 5.4369569153822121e-02 -4.3737793901907585e-01 -2.7615385129983872e-01 5.3851299527335472e-01 1.3957000000000000e-01 1 0 0 0 0 P 266 113 1.8819665975533371e+00 -2.2575681917141304e+00 3.8043511437585864e+00 4.8761428354847576e+00 8.1564018567391483e-01 2 0 0 -111 0 P 267 211 3.0523685108268028e-01 -1.7220696171275969e+00 5.1540199386080552e+00 5.4444554010444648e+00 1.3957000000000000e-01 1 0 0 0 0 P 268 -213 1.7504582880534454e+00 -1.0935293982809760e+00 4.8448604512813409e+00 5.2964691185225945e+00 5.6568681083592098e-01 2 0 0 -112 0 P 269 211 -5.0982886146815114e-02 -7.6484798786358799e-01 1.2805420625894124e+00 1.4989527871749613e+00 1.3957000000000000e-01 1 0 0 0 0 P 270 -213 2.7515363116190916e-01 -7.4643473023876172e-01 3.5838680029046865e+00 3.7064769671765667e+00 5.1086917965187129e-01 2 0 0 -113 0 P 271 211 8.4819788307836030e-01 -1.4251534372870902e+00 6.3827941417568583e+00 6.5962142786310007e+00 1.3957000000000000e-01 1 0 0 0 0 P 272 -213 5.4944412999452275e-01 -8.5895545990627264e-01 4.9372299567970188e+00 5.1022091968224723e+00 7.8524245157638428e-01 2 0 0 -114 0 P 273 213 -1.2253733529216106e-01 -9.8305977537440536e-01 1.0202237447194712e+01 1.0279968807705211e+01 7.8146518665284626e-01 2 0 0 -115 0 P 274 -2212 -9.1662723706912985e-01 -2.3915294024825631e+00 1.4024135690051535e+01 1.4286929369901458e+01 9.3827000000000005e-01 1 0 0 0 0 P 275 -213 -8.1745599592468154e-01 -4.3960870085680626e-01 6.3322463013795227e+00 6.4293155373725375e+00 6.1421896960535005e-01 2 0 0 -116 0 P 276 2214 -1.4713517625255945e+00 -8.1615562855879209e-01 1.5687312820145953e+01 1.5822686900223104e+01 1.1977692625296601e+00 2 0 0 -117 0 P 277 -2114 -1.6268741928342647e+00 -2.9150937650310788e-01 1.7522168822069684e+01 1.7651789697507002e+01 1.3518808897251333e+00 2 0 0 -118 0 P 278 2114 -2.0786598986685143e+00 -5.7244922585239699e-01 1.7854367899304666e+01 1.8020591722279129e+01 1.1466245448456889e+00 2 0 0 -119 0 P 279 213 -1.3105931547647895e+00 -2.1409212226085772e-01 1.5404927153559775e+01 1.5480554564588445e+01 7.5650457142464267e-01 2 0 0 -120 0 P 280 -213 -4.1437170794638769e+00 3.0558763559883056e-01 4.3931473089934187e+01 4.4135833344046617e+01 8.5655244099482808e-01 2 0 0 -121 0 P 281 331 -1.1421064280800977e+00 -1.6540894887149127e-01 2.0358704411419819e+01 2.0413872471661882e+01 9.5790227282399543e-01 2 0 0 -122 0 P 282 213 -3.1005223220381932e+00 -7.1712057860705125e-01 6.5412363142110067e+01 6.5494110032303723e+01 7.5742755066710921e-01 2 0 0 -123 0 P 283 -211 -2.6799980994716771e-01 -1.1610144176980286e-01 5.2340533983920965e+00 5.2440536043248640e+00 1.3957000000000000e-01 1 0 0 0 0 P 284 223 -3.0584790676784648e+00 -1.6206259014099111e+00 8.9697238332705837e+01 8.9767157175582639e+01 7.5314032674977260e-01 2 0 0 -124 0 P 285 213 -2.3371127110740288e+00 -1.5073792806209050e+00 7.2083708170371096e+01 7.2142197726121807e+01 8.3750883202531645e-01 2 0 0 -125 0 P 286 111 2.4104652627652998e-01 -6.9467412668197948e-02 9.0868094664109549e+00 9.0912735647162517e+00 1.3497999999999999e-01 2 0 0 -126 0 P 287 -213 -2.4283435265549698e+00 -2.2380586429674962e+00 1.1515379078687506e+02 1.1520392512505541e+02 8.0191823751295999e-01 2 0 0 -127 0 P 288 -311 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -128 0 P 289 323 -2.2403478955641885e+00 -1.2542845990365676e+00 1.7832052728396903e+02 1.7834073125877697e+02 7.8331764567485074e-01 2 0 0 -129 0 P 290 -213 -2.8237573260597537e-01 -1.3311149207494328e+00 1.2998361503052314e+02 1.2999270365316514e+02 7.1499906976384642e-01 2 0 0 -130 0 P 291 211 -1.0011969944514103e+00 -1.0702458455431036e+00 2.2797869405533871e+02 2.2798344730386509e+02 1.3957000000000000e-01 1 0 0 0 0 P 292 -211 -2.2885549914420253e-01 -2.3494400230758322e-01 1.4343482749461661e+01 1.4347911021912322e+01 1.3957000000000000e-01 1 0 0 0 0 P 293 211 -7.1793173082487416e-01 -4.3470215680588120e-01 7.7748341021135175e+01 7.7752996104708970e+01 1.3957000000000000e-01 1 0 0 0 0 P 294 -323 -1.3556077228273271e+00 -9.4491071737478416e-01 2.0019401185161229e+02 2.0020297535198844e+02 9.2651496664259558e-01 2 0 0 -131 0 P 295 -3224 -1.0046907488865093e+00 4.6009964660702640e-01 2.9133895754536934e+02 2.9134433034958789e+02 1.3818639736188865e+00 2 0 0 -132 0 P 296 111 -5.2586748753748613e-01 2.2817335480684575e-01 5.2508985190922090e+01 5.2512287562771135e+01 1.3497999999999999e-01 2 0 0 -133 0 P 297 2214 -1.3537513097931211e+00 1.5601927351825597e+00 2.2135383837901600e+02 2.2136640832332273e+02 1.1393528271932196e+00 2 0 0 -134 0 P 298 111 2.1611077324121103e-01 1.7625881335944368e-01 1.8368805843928985e+02 1.8368831972619262e+02 1.3497999999999999e-01 2 0 0 -135 0 P 299 223 -1.4215734995147538e+00 2.2001431386652368e+00 2.3130307259149845e+02 2.3131923872522097e+02 7.8569275333050759e-01 2 0 0 -136 0 P 300 -2112 2.4646941998757597e+00 2.1352868404484551e+00 7.5193790236373798e+02 7.5194556050977064e+02 9.3957000000000002e-01 1 0 0 0 0 P 301 311 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 2 0 0 -137 0 P 302 3224 1.8423495387476940e+00 1.0418858850566093e+00 5.9734576259245944e+02 5.9735109909829680e+02 1.3768546603956719e+00 2 0 0 -138 0 P 303 111 1.8662434870098762e-01 -8.6284235099039153e-01 4.7718209334826275e+02 4.7718292902973883e+02 1.3497999999999999e-01 2 0 0 -139 0 P 304 -213 1.8315559200148694e+00 -9.6616630104238366e-01 5.2533045478230451e+02 5.2533509139534817e+02 7.6384237017675982e-01 2 0 0 -140 0 P 305 223 2.2386100814753743e-01 -1.0336020682337410e+00 5.5225201941282432e+02 5.5225357566646676e+02 7.7488313244291573e-01 2 0 0 -141 0 P 306 111 -2.2392429017146134e-01 1.7445810857089172e-01 1.6930393345583457e+02 1.6930422523061094e+02 1.3497999999999999e-01 2 0 0 -142 0 V -28 0 0 0 0 0 0 1 0 P 307 92 3.6565725628015372e-01 2.6534957812901521e+00 -3.0186600794351311e+03 3.0289913482462762e+03 2.4994546971367831e+02 2 0 0 -29 0 V -29 0 0 0 0 0 0 8 0 P 308 3112 5.2629010552499911e-01 2.2095689027084431e+00 3.2822879571958228e+00 4.1673076198599057e+00 1.1974400000000001e+00 2 0 0 -143 0 P 309 -3212 -5.7762748463877567e-01 7.6639852523623542e-01 9.8517198853744026e-01 1.8203734671745821e+00 1.1925500000000000e+00 2 0 0 -144 0 P 310 113 4.4680926910207847e-01 1.0944863316850231e-01 -1.6855308852030451e+01 1.6873260084942086e+01 6.2757618701300688e-01 2 0 0 -145 0 P 311 111 -3.2685718955868198e-01 -4.9906211808401685e-01 -4.0496670550598530e+00 4.0955978168406437e+00 1.3497999999999999e-01 2 0 0 -146 0 P 312 2212 5.8097379374744407e-01 2.3047518666148586e-01 -8.6818639682477240e+01 8.6825959230344239e+01 9.3827000000000005e-01 1 0 0 0 0 P 313 -2112 5.1239388078277125e-02 5.0696152500454261e-01 -1.3724178871246721e+02 1.3724595074626106e+02 9.3957000000000002e-01 1 0 0 0 0 P 314 331 -2.6777684056730455e-01 -4.0160054286399477e-01 -1.5735456338026506e+03 1.5735459996664790e+03 9.5834208979089808e-01 2 0 0 -147 0 P 315 2112 -6.7393785407882822e-02 -2.6869433054104569e-01 -1.2044165012761791e+03 1.2044168996143749e+03 9.3957000000000002e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 1 0 P 316 92 -5.5867318150486707e+00 -2.2572357059966055e+01 5.2936499805940642e+01 5.8064800561153419e+01 5.3408966369227118e+00 2 0 0 -31 0 V -31 0 0 0 0 0 0 4 0 P 317 323 -3.3678385100292230e-01 -2.3916064791703322e+00 7.9308179193829966e+00 8.3433456899487055e+00 9.3826409825449575e-01 2 0 0 -148 0 P 318 -313 -1.4432711014888111e+00 -3.4428053105693768e+00 8.4502611297583154e+00 9.2857745847445354e+00 9.3955127518717430e-01 2 0 0 -149 0 P 319 313 -1.2766531536571657e+00 -6.7752674362523555e+00 1.5353193055229843e+01 1.6855446710408064e+01 9.2274303506655375e-01 2 0 0 -150 0 P 320 -323 -2.5300237088997681e+00 -9.9626778339739772e+00 2.1202227701569452e+01 2.3580233576052070e+01 9.1486960864539102e-01 2 0 0 -151 0 V -32 0 0 0 0 0 0 1 0 P 321 92 2.6308393782054340e+00 1.4354145337815147e+00 9.4325106834695333e+01 1.1091465296404732e+02 5.8273945567814913e+01 2 0 0 -33 0 V -33 0 0 0 0 0 0 14 0 P 322 -311 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 2 0 0 -152 0 P 323 323 4.1487077181306828e+00 1.5262662197889542e+01 1.9379542540038070e+01 2.5031442630723507e+01 9.1968365033499522e-01 2 0 0 -153 0 P 324 111 2.3700623034953161e-01 1.2283585956161944e+00 3.4011020440492064e+00 3.6263964906066701e+00 1.3497999999999999e-01 2 0 0 -154 0 P 325 -321 1.0175627835157428e+00 1.9963748160040700e+00 2.5132030966012668e+00 3.4030540972981589e+00 4.9359999999999998e-01 1 0 0 0 0 P 326 321 1.3122407562534047e-01 2.8988430326849035e-01 7.5983534073212522e-01 9.6033503129412501e-01 4.9359999999999998e-01 1 0 0 0 0 P 327 223 6.4451528238949851e-01 5.9750787702414798e-01 2.7862939420546327e+00 3.0245782829008139e+00 7.8244759922014617e-01 2 0 0 -155 0 P 328 -213 -5.7442451543345963e-01 -4.1847743104996638e-01 1.1652480567890082e+00 1.5389607790376529e+00 7.1099251848136613e-01 2 0 0 -156 0 P 329 -311 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 2 0 0 -157 0 P 330 313 -1.5372193453694380e-01 -5.6917644271363221e-01 2.7803332645326635e+00 2.9821351986964224e+00 9.0293135139907910e-01 2 0 0 -158 0 P 331 211 -5.0858782693125981e-01 -8.2346797127734328e-01 8.7048693522533749e-01 1.3091937850143827e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 -211 -2.0731033366389440e-01 -4.0898741156755172e+00 8.0889300125557728e+00 9.0675419155051031e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -2112 -7.3539112513031613e-01 -2.3873813947944624e+00 5.2501630681687015e+00 5.8896005007465302e+00 9.3957000000000002e-01 1 0 0 0 0 P 334 223 -4.4160036145106579e-01 -3.1241992593555259e+00 6.8108463874511846e+00 7.5474000244698649e+00 7.8739235741753477e-01 2 0 0 -159 0 P 335 2212 -3.1111256482686391e+00 -1.2728797014661707e+01 2.5102539953173608e+01 2.8332300276069237e+01 9.3827000000000005e-01 1 0 0 0 0 V -34 0 0 0 0 0 2 1 0 P 105 1 1.0317229622055910e+00 -8.5465966178340042e-02 5.0993111254266481e+01 5.1003619009753770e+01 0 2 0 0 -34 0 P 106 -1 -1.0317229622055910e+00 8.5465966178340042e-02 -1.5643938430550380e-01 1.0470100205246182e+00 0 2 0 0 -34 0 P 336 92 0 0 5.0836671869960973e+01 5.2050629030278387e+01 1.1175901557976333e+01 2 0 0 -35 0 V -35 0 0 0 0 0 0 5 0 P 337 -211 9.0470111191768376e-01 1.2320712550148322e-01 3.7229982195883856e+01 3.7241438186359133e+01 1.3957000000000000e-01 1 0 0 0 0 P 338 321 1.3023437408810626e-01 2.3698200152554177e-01 9.0550724432520138e+00 9.0725464657825352e+00 4.9359999999999998e-01 1 0 0 0 0 P 339 -313 2.2289971680190834e-01 -3.9206496080003178e-01 3.2415245958111889e+00 3.3941020488553888e+00 8.9947084197207572e-01 2 0 0 -160 0 P 340 -211 -5.5622019750448815e-01 -3.0901183910263791e-01 6.9312891928093434e-01 9.5119751285476051e-01 1.3957000000000000e-01 1 0 0 0 0 P 341 213 -7.0161500530321019e-01 3.4088767287564470e-01 6.1696371573298570e-01 1.3913448164265709e+00 9.7299956345357086e-01 2 0 0 -161 0 V -36 0 0 0 0 0 12 1 0 P 121 21 9.4759070547472246e-01 2.6432368989622907e+00 -2.5787213247728664e+02 2.5788741989060344e+02 0 2 0 0 -36 0 P 122 21 5.5178542391167906e-01 6.4049774448693120e-01 -1.8684706233596984e+02 1.8684897486498696e+02 0 2 0 0 -36 0 P 123 21 2.8688773380469318e-01 6.6866585019952185e-01 -1.7660889067764339e+02 1.7661038951595918e+02 0 2 0 0 -36 0 P 124 21 -6.1701487444457359e-01 2.2176964341280705e+00 -6.6377109962274642e+02 6.6377509111085146e+02 0 2 0 0 -36 0 P 125 21 4.1939911576024308e-01 -1.0095437424246569e+00 -2.6844742796777683e+02 2.6844965385841141e+02 0 2 0 0 -36 0 P 126 21 -9.8216452499740170e-01 -9.8341505181360611e-01 -1.2042473225552310e+01 1.2122413691441206e+01 0 2 0 0 -36 0 P 127 21 -7.1735587483348717e-01 -4.2520817845077635e-01 -1.1439031276977879e+01 1.1469386993290344e+01 0 2 0 0 -36 0 P 128 21 -1.1001063507625650e+00 -2.5604211832993923e-01 -8.4200935648081785e+00 8.4955145335330400e+00 0 2 0 0 -36 0 P 129 21 -4.7874298673684945e-01 -1.1188799702452870e+00 -2.6000214230150993e+00 2.8707487934863396e+00 0 2 0 0 -36 0 P 130 21 9.9976074745951243e-02 -3.0732513860366850e-01 -8.7664886967447009e-01 9.3432178452656134e-01 0 2 0 0 -36 0 P 131 21 -2.8688773380469318e-01 -6.6866585019952185e-01 -8.8856392677208629e-01 1.1484617725424175e+00 0 2 0 0 -36 0 P 132 21 -9.4759070547472246e-01 -2.6432368989622907e+00 -5.0818296299581602e+00 5.8059987803183839e+00 0 2 0 0 -36 0 P 342 92 -2.8242239973570036e+00 -1.2422200212529315e+00 -1.5948952749981813e+03 1.5964183755899508e+03 6.9650357916985683e+01 2 0 0 -37 0 V -37 0 0 0 0 0 0 20 0 P 343 323 -3.5580183328981602e-01 1.5398245032097418e-01 -4.4042159019581533e+01 4.4051657679161423e+01 8.2853342499583460e-01 2 0 0 -162 0 P 344 3312 1.9262928931582740e-01 1.1264000388776048e+00 -7.5429734988415163e+01 7.5449961147791385e+01 1.3212999999999999e+00 2 0 0 -163 0 P 345 -3112 3.2474311435695080e-01 3.0465627817795840e-02 -5.5571190844860773e+01 5.5585047456256959e+01 1.1974400000000001e+00 2 0 0 -164 0 P 346 313 1.8114524925907871e-01 1.2697221185178564e-01 -1.5221473804093333e+02 1.5221725774259866e+02 8.4743274827264670e-01 2 0 0 -165 0 P 347 3122 1.7842094931757735e-01 1.7984245152323588e+00 -2.1132876439474754e+02 2.1133943684803663e+02 1.1156800000000000e+00 2 0 0 -166 0 P 348 -2212 1.5044427956806861e-01 8.6203491361789353e-01 -2.5712129609912051e+02 2.5712449707477907e+02 9.3827000000000005e-01 1 0 0 0 0 P 349 211 4.6126903900905569e-01 8.5588603944245312e-01 -2.1132892829293303e+02 2.1133121095395111e+02 1.3957000000000000e-01 1 0 0 0 0 P 350 113 3.2119298017090570e-01 1.0031989714986074e-01 -2.8241087664827040e+02 2.8241216081134468e+02 7.8236556413446379e-01 2 0 0 -167 0 P 351 313 -6.6241670069084477e-02 3.8195439619453381e-01 -1.5262673379418129e+02 1.5262987372966518e+02 8.9900441268452280e-01 2 0 0 -168 0 P 352 -313 -1.9458073052682037e-01 -7.5937721688038973e-01 -9.1988198390600459e+01 9.1996161991272444e+01 9.2231369813271546e-01 2 0 0 -169 0 P 353 -213 -9.5638827482829147e-01 -5.9826040212721598e-01 -1.8150756337995048e+01 1.8204806360614256e+01 8.3212075158079024e-01 2 0 0 -170 0 P 354 211 -1.1747242021953168e+00 -2.5703202321610114e-01 -9.0724911614228478e+00 9.1529021665905326e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 113 8.6007488666897105e-04 -9.7097392132802640e-01 -6.3826417656051158e+00 6.4994038970523178e+00 7.4922894587978039e-01 2 0 0 -171 0 P 356 -213 -7.2768431156491964e-01 -1.8276487606308411e+00 -5.3914294041114177e+00 5.8097550417053281e+00 9.0328189153227356e-01 2 0 0 -172 0 P 357 321 -3.1244198214996222e-01 -3.3401013536825680e-01 -1.5541504028906898e+00 1.6935782230366012e+00 4.9359999999999998e-01 1 0 0 0 0 P 358 -323 -9.5417472016598692e-01 -6.8132469418794894e-01 -3.5400480221546111e+00 3.8465288466250858e+00 9.4296947630556727e-01 2 0 0 -173 0 P 359 213 2.7533755034509610e-01 -3.5226499373917458e-01 -5.0888819655990911e+00 5.1591494666984925e+00 7.2125041940478252e-01 2 0 0 -174 0 P 360 223 -2.2655623257355420e-01 3.8858892847904052e-02 -4.8570046848146440e+00 4.9253602044947726e+00 7.8475530940421190e-01 2 0 0 -175 0 P 361 111 9.7986198975989328e-02 -6.5121242678213531e-01 -6.5548819594195109e+00 6.5892621758667795e+00 1.3497999999999999e-01 2 0 0 -176 0 P 362 -211 -3.9658765198470725e-02 -2.8541443034600650e-01 -2.4036878052400565e-01 4.0036377240879378e-01 1.3957000000000000e-01 1 0 0 0 0 V -38 0 0 0 0 0 15 1 0 P 133 21 1.6885523536529496e+00 -2.1106274479230640e+00 5.7220859536593458e+01 5.7284663945784928e+01 0 2 0 0 -38 0 P 134 21 4.7971740185522893e-01 -8.4343647732891103e-01 2.8927117807826868e+01 2.8943387129788835e+01 0 2 0 0 -38 0 P 135 21 1.0650504509831762e+00 -2.3499897731401714e-01 5.2687957672215070e+01 5.2699245162066646e+01 0 2 0 0 -38 0 P 136 21 6.1908358320014234e-01 -7.6023501837222052e-01 6.5051599049973163e+01 6.5058986779111592e+01 0 2 0 0 -38 0 P 137 21 1.5190597689628260e+00 -3.0230195735901849e-01 9.9546979586022090e+01 9.9559028087637557e+01 0 2 0 0 -38 0 P 138 21 4.7874298673684945e-01 1.1188799702452870e+00 4.3537081386983751e+01 4.3554087557105504e+01 0 2 0 0 -38 0 P 139 21 4.8715772635984167e-01 1.6361874193643067e+00 1.8101329415271120e+01 1.8181654449521300e+01 0 2 0 0 -38 0 P 140 21 1.0393969672053709e+00 6.0301084174250907e-01 1.0869625096829981e+01 1.0935845549217076e+01 0 2 0 0 -38 0 P 141 21 5.5928929357170032e-02 3.6392466150097519e-01 -2.5703393465958890e-01 4.4903858181032563e-01 0 2 0 0 -38 0 P 142 21 -1.6885523536529496e+00 2.1106274479230640e+00 -2.3144306440651383e+00 3.5584472008364707e+00 0 2 0 0 -38 0 P 143 21 -5.1534094670127262e-01 4.9046104854686232e-02 -6.0972123338198958e-01 7.9983860508557314e-01 0 2 0 0 -38 0 P 144 21 -1.7815727787665281e+00 1.3584083605995161e+00 -5.3327780769719588e+00 5.7842715062850649e+00 0 2 0 0 -38 0 P 145 21 -4.7971740185522893e-01 8.4343647732891103e-01 -2.6918956564021319e+00 2.8614360209322167e+00 0 2 0 0 -38 0 P 146 21 -7.6835179738635895e-01 1.8073191566348357e+00 -5.6942895205980353e+00 6.0234292693513636e+00 0 2 0 0 -38 0 P 147 21 1.1516503633303758e+00 -7.0009365092342135e-01 1.6830187745592717e+01 1.6884064949866829e+01 0 2 0 0 -38 0 P 363 92 3.3508052532815915e+00 4.9391469109734381e+00 3.7587258823122926e+02 4.1257742479440134e+02 1.7001266364092726e+02 2 0 0 -39 0 V -39 0 0 0 0 0 0 26 0 P 364 331 1.4958609474720355e-01 -7.2364379442289783e-01 1.8505851836560709e+00 2.2108752394120135e+00 9.5774081114321652e-01 2 0 0 -177 0 P 365 -213 5.3839800762543544e-01 -3.8690684652301538e-01 1.1254772984927273e+01 1.1302016695751195e+01 7.9126299438844661e-01 2 0 0 -178 0 P 366 213 1.1398385265661140e+00 -8.3897735544557828e-01 3.7197332852739834e+01 3.7231280795890264e+01 7.2359068216360334e-01 2 0 0 -179 0 P 367 -211 -1.8877024900286560e-02 1.1743384237120272e-01 2.4118002243337369e+00 2.4187614922516469e+00 1.3957000000000000e-01 1 0 0 0 0 P 368 113 5.8015616894641842e-01 -5.0746034714745825e-01 4.9012747960330202e+01 4.9024227359182753e+01 7.2890901880614345e-01 2 0 0 -180 0 P 369 213 1.4058114789909280e+00 -1.6876985066230397e+00 6.9916258716351919e+01 6.9954250412143651e+01 6.9948957770951781e-01 2 0 0 -181 0 P 370 113 7.9847068801701548e-01 -3.2836597622539304e-01 4.6279429569899342e+01 4.6293618068932098e+01 7.5371940595830900e-01 2 0 0 -182 0 P 371 311 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 2 0 0 -183 0 P 372 333 7.8774521135541675e-01 -1.3523039142944859e-01 8.2554176760690495e+01 8.2564336842670400e+01 1.0192094278559669e+00 2 0 0 -184 0 P 373 -311 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -185 0 P 374 -213 1.7113841112220674e-01 1.0590282497861596e+00 2.9483276821479233e+01 2.9511675175346095e+01 7.2424466415553146e-01 2 0 0 -186 0 P 375 113 3.2139255960567770e-01 -4.0089621180867807e-01 6.2992504118690489e+00 6.3453180696151330e+00 5.6435334954219785e-01 2 0 0 -187 0 P 376 223 7.4122524453563143e-01 1.3050763615156384e+00 1.5856286134768247e+01 1.5946381625904690e+01 7.8271182361273817e-01 2 0 0 -188 0 P 377 213 5.1589131658370546e-01 3.0108015881072309e-01 1.2881262865788161e+00 1.5447272979827276e+00 6.0837486996236878e-01 2 0 0 -189 0 P 378 -211 -5.6367417140554188e-01 3.7992280512408727e-01 8.4325669378545920e-01 1.0920767124506698e+00 1.3957000000000000e-01 1 0 0 0 0 P 379 213 -2.5558201343130399e-01 6.0676515327873204e-01 -6.7090569289889890e-01 1.1985775144042030e+00 7.4363128797021660e-01 2 0 0 -190 0 P 380 113 1.2675458754535590e-01 4.8491256760156104e-01 -4.7225873593720158e-01 9.8433479669676838e-01 7.0333473868232410e-01 2 0 0 -191 0 P 381 223 -1.7069234815062684e+00 1.1806340750257254e+00 -2.6128171371635958e+00 3.4285860327401321e+00 7.8797474630575559e-01 2 0 0 -192 0 P 382 313 -1.2346075567117900e+00 1.0123135123051592e+00 -3.5126582843558398e+00 3.9605542775849494e+00 8.9341339633859518e-01 2 0 0 -193 0 P 383 -313 -6.2854554396472462e-01 4.1888244698964588e-01 -1.9681831735976141e+00 2.2970955690799597e+00 9.1234370903736828e-01 2 0 0 -194 0 P 384 221 -7.0184684103379968e-02 -6.4497525165465048e-03 -9.3214705354207006e-01 1.0833130300690466e+00 5.4744999999999999e-01 2 0 0 -195 0 P 385 111 -2.8856749122872732e-01 1.4722745088102402e+00 -2.6093944184885975e+00 3.0129756484123669e+00 1.3497999999999999e-01 2 0 0 -196 0 P 386 111 -5.3734860460964462e-01 3.0660051176767983e-01 -1.0920306107751934e+00 1.2623382478409571e+00 1.3497999999999999e-01 2 0 0 -197 0 P 387 223 2.2837479745134567e-01 3.8858311191444128e-01 -1.0311388716424684e-01 9.0789874619839506e-01 7.8134229160236957e-01 2 0 0 -198 0 P 388 -211 -3.3237575539947506e-01 2.8614048571683232e-01 1.1434398306567024e-01 4.7424081615457636e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 213 9.3272815774848333e-02 2.4820849915165158e-01 -1.4544507599491008e+00 1.5420621841582294e+00 4.3843071229174629e-01 2 0 0 -199 0 V -40 0 0 0 0 0 7 1 0 P 148 21 -5.2507123671246270e-01 6.8064638054119919e-01 -4.0554490761666877e+01 4.0563600681363219e+01 0 2 0 0 -40 0 P 149 21 -2.8562446297032057e-01 7.1185508695858413e-01 -1.5348015651844539e+01 1.5367169662886555e+01 0 2 0 0 -40 0 P 150 21 5.2507123671246270e-01 -6.8064638054119919e-01 -7.5204080530226589e+00 7.5693801980700277e+00 0 2 0 0 -40 0 P 151 21 5.1222509543467332e-01 -1.7864288355096222e-01 -8.9647875849840979e+00 8.9811861283530625e+00 0 2 0 0 -40 0 P 152 21 -1.3761919250471610e-01 -4.8591322357565431e-01 -9.4885045316320795e+00 9.5019350108172098e+00 0 2 0 0 -40 0 P 153 21 -5.5928929357170032e-02 -3.6392466150097519e-01 -5.5579709745098862e+00 5.5701535488603913e+00 0 2 0 0 -40 0 P 154 21 2.8562446297032057e-01 -7.1185508695858413e-01 -1.1552698666533196e+01 1.1578133073962908e+01 0 2 0 0 -40 0 P 390 92 3.1867697357278724e-01 -1.0284807686275919e+00 -9.8986876224193338e+01 9.9131558304313359e+01 5.2445075567477355e+00 2 0 0 -41 0 V -41 0 0 0 0 0 0 5 0 P 391 211 -1.7415492038429875e-01 3.5602153001354064e-01 -3.2716960638775582e+01 3.2719658838230849e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 -2112 2.7464356472635870e-01 -7.8218738069446681e-02 -1.3943897225897315e+01 1.3978433706603813e+01 9.3957000000000002e-01 1 0 0 0 0 P 393 -211 -7.5827133030339736e-02 3.0601606673647574e-01 -5.0726604007238958e+00 5.0843641601656326e+00 1.3957000000000000e-01 1 0 0 0 0 P 394 2212 7.1391580899396856e-01 -1.6660704476267443e+00 -2.2667721989582429e+01 2.2759425241176139e+01 9.3827000000000005e-01 1 0 0 0 0 P 395 -211 -4.1990034673290150e-01 5.3770820318582657e-02 -2.4585635969214138e+01 2.4589676358136970e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 396 -511 -1.2210119293384796e+00 1.5650620856612626e+01 4.7593593180308304e+01 5.0392984311129204e+01 5.2792000000000003e+00 2 0 0 -200 0 P 397 22 -5.7538627105979380e-02 1.7249795978177015e-01 5.2593042772709342e-01 5.5647915913115520e-01 0 1 0 0 0 0 V -43 0 0 0 0 0 0 1 0 P 398 92 -7.7425285667578629e+00 8.0067822938770750e+00 5.9133596734895683e+01 6.7630978223786883e+01 3.0872506237629384e+01 2 0 0 -44 0 V -44 0 0 0 0 0 0 18 0 P 399 333 8.1840031156200654e-01 5.1986992237367380e-01 9.1233010769165668e-01 1.6782436515471415e+00 1.0218178518718559e+00 2 0 0 -201 0 P 400 -311 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 2 0 0 -202 0 P 401 223 4.9887276731439067e-01 1.2695033019786919e+00 5.2172622629581478e-01 1.6737517504719217e+00 8.1776157607228672e-01 2 0 0 -203 0 P 402 -213 2.1290233325702873e-01 8.7223421157626702e-01 8.2667375794125597e-01 1.3668093091372093e+00 6.1535214481226763e-01 2 0 0 -204 0 P 403 223 7.2768160248816771e-01 1.2965466112664183e+00 1.5302222640691161e+00 2.2721571902771611e+00 7.8138626177404102e-01 2 0 0 -205 0 P 404 2224 5.2223485702862804e-01 1.3712637125115219e+00 2.4212525385279178e+00 3.0626034299668650e+00 1.1678966130485728e+00 2 0 0 -206 0 P 405 223 -2.5277140085766009e-01 1.2752109530232694e+00 1.9961590751659590e+00 2.5055922728132152e+00 7.7671438020151051e-01 2 0 0 -207 0 P 406 -2212 3.4185191708386387e-01 1.6026327262382216e+00 1.2036982850881843e+00 2.2393156416298048e+00 9.3827000000000005e-01 1 0 0 0 0 P 407 -211 -5.4784319903047352e-01 6.7006466548422805e-01 2.6138950376053938e+00 2.7569994340174495e+00 1.3957000000000000e-01 1 0 0 0 0 P 408 2114 -2.2092686775907473e+00 9.8761415538015185e-01 8.9853902881090466e+00 9.3975479648632110e+00 1.3116475565369998e+00 2 0 0 -208 0 P 409 213 -1.2023440943748964e+00 5.0189721636598195e-01 4.4098640446934239e+00 4.6700498946279803e+00 8.1543423313033159e-01 2 0 0 -209 0 P 410 -2114 -3.6970487378997663e+00 9.2866014837235888e-01 1.3023722529539040e+01 1.3628624885057686e+01 1.2615421870114505e+00 2 0 0 -210 0 P 411 -211 -9.1432669276632239e-01 -1.4583236186694613e+00 8.4826981179861569e+00 8.6566938390854560e+00 1.3957000000000000e-01 1 0 0 0 0 P 412 221 -6.2818856939617229e-01 -4.1723351988169177e-01 1.3865900657314518e+00 1.6706400574983313e+00 5.4744999999999999e-01 2 0 0 -211 0 P 413 223 -7.0685525649640046e-01 -1.4289242423264394e+00 4.8878950010276725e+00 5.2008366946750906e+00 7.8467569075563315e-01 2 0 0 -212 0 P 414 211 -9.6419827342677467e-01 7.3693683495808432e-02 4.2443091215253492e+00 4.3553127067329660e+00 1.3957000000000000e-01 1 0 0 0 0 P 415 -211 -7.9642913151272365e-02 -2.4310669381468272e-01 1.2107951528336264e-01 3.1556915583431322e-01 1.3957000000000000e-01 1 0 0 0 0 P 416 321 -7.8289741516756481e-02 -3.9762855698041016e-01 7.5885606042431530e-01 9.9183730187757901e-01 4.9359999999999998e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 417 -5122 2.8780389197770107e+00 2.9722498260732082e+00 1.4341749085552404e+01 1.5956942842702880e+01 5.6410000000000000e+00 2 0 0 -213 0 P 418 211 9.1103697361822875e-02 1.5544525662385886e-01 6.6776320947811940e-01 7.0558528918364694e-01 1.3957000000000000e-01 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 419 2112 6.9997427573348536e-01 6.7396791109235188e-01 7.9801392683394845e-01 1.5696543390797046e+00 9.3957000000000002e-01 1 0 0 0 0 P 420 -211 -7.4830603720727848e-02 7.2276271384060259e-02 -4.1289992519215397e-02 1.7890815252700978e-01 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 3 0 P 421 211 3.0504600599131283e-03 -7.6550190173280989e-03 -1.1219761504760704e+00 1.1306538691216841e+00 1.3957000000000000e-01 1 0 0 0 0 P 422 -211 -6.6308899572512708e-02 -3.3073036462151310e-02 -3.4492580307211618e-01 3.7939990831349529e-01 1.3957000000000000e-01 1 0 0 0 0 P 423 111 -5.1959206553212024e-03 -2.9791006835920253e-01 -2.6933841673363695e-01 4.2372183039091038e-01 1.3497999999999999e-01 2 0 0 -214 0 V -48 0 0 0 0 0 0 2 0 P 424 -211 -2.5367687850827619e-01 -1.8294614488707522e-01 -1.3261368162478377e+00 1.3696495504057586e+00 1.3957000000000000e-01 1 0 0 0 0 P 425 211 1.8600671166754099e-01 -1.0932704634138679e+00 -2.4945001363216184e+00 2.7334684044208593e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 426 -311 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 2 0 0 -215 0 P 427 111 -6.9221802335079921e-02 -4.9071769193487685e-01 -2.9586048562958522e+00 3.0028582729116287e+00 1.3497999999999999e-01 2 0 0 -216 0 V -50 0 0 0 0 0 0 2 0 P 428 311 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -217 0 P 429 211 8.8853077953678550e-01 -6.8662715168308686e-01 -5.6284674722081869e+00 5.7410861047556407e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 430 -2112 4.9630523445732838e-01 -1.9734165756335939e-01 -4.8296140088702213e+00 4.9490631310516831e+00 9.3957000000000002e-01 1 0 0 0 0 P 431 -211 2.6505582872943528e-01 -1.8034450204655342e-01 -2.2182008659709780e+00 2.2455898108194789e+00 1.3957000000000000e-01 1 0 0 0 0 V -52 0 1.3367000811824830e-04 -7.7684146397883627e-05 -1.8053511877405750e-03 1.8124074059612386e-03 0 2 0 P 432 22 2.9154564503606700e-01 -9.6781632713479920e-02 -3.7331868418513992e+00 3.7458042585995597e+00 0 1 0 0 0 0 P 433 22 1.5601353317408517e-01 -1.6332348144972836e-01 -2.3115610065299119e+00 2.3225694971380073e+00 0 1 0 0 0 0 V -53 0 1.4245274087618452e+02 -2.3546564212493116e+01 -9.2299868288269784e+02 9.3507067467819024e+02 0 2 0 P 434 2112 3.4172420466257170e+00 -4.7529538017664963e-01 -2.1698924401012185e+01 2.1991579316851848e+01 9.3957000000000002e-01 1 0 0 0 0 P 435 111 5.7685586506924746e-01 -1.8490450344969003e-01 -4.1801642646332011e+00 4.2259845295714458e+00 1.3497999999999999e-01 2 0 0 -218 0 V -54 0 0 0 0 0 0 2 0 P 436 321 2.4581690827222911e+00 -7.3712505157438291e-01 -1.4314169014911140e+01 1.4550774004442253e+01 4.9359999999999998e-01 1 0 0 0 0 P 437 111 4.9942789060893378e-01 -1.9176574190295378e-01 -5.3729663856595113e+00 5.4012211304030791e+00 1.3497999999999999e-01 2 0 0 -219 0 V -55 0 0 0 0 0 0 2 0 P 438 -211 7.3815466288868570e-01 3.7692166349124850e-01 -5.5026165143631021e+00 5.5664360712932703e+00 1.3957000000000000e-01 1 0 0 0 0 P 439 111 4.1605119606738594e-01 -1.9169181192411971e-01 -1.6495229220401624e+00 1.7172623035645340e+00 1.3497999999999999e-01 2 0 0 -220 0 V -56 0 0 0 0 0 0 2 0 P 440 -2212 1.1685933490688603e+00 9.2864981618385731e-02 -2.6187256323893408e+01 2.6230268368556473e+01 9.3827000000000005e-01 1 0 0 0 0 P 441 -211 5.6311971791448412e-01 -2.2068040125088534e-01 -1.3953187754399988e+01 1.3966987218102481e+01 1.3957000000000000e-01 1 0 0 0 0 V -57 0 0 0 0 0 0 2 0 P 442 211 -5.2518796878895581e-02 1.2185105245127453e-01 -2.9667431468410124e+00 2.9729868124896219e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 111 7.4372331533847380e-01 -6.9130178102986628e-01 -1.6252068900788636e+01 1.6284317169553479e+01 1.3497999999999999e-01 2 0 0 -221 0 V -58 0 0 0 0 0 0 2 0 P 444 2212 8.3401818408294548e-01 9.0299080424853684e-02 -3.5887662642851851e+01 3.5909725991928021e+01 9.3827000000000005e-01 1 0 0 0 0 P 445 -211 -1.0204601496519020e-01 -1.0071758084352378e-01 -5.7094212912580415e+00 5.7129264555245145e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 446 211 6.3138088784518387e-01 -6.2202521592855231e-01 -2.4520033304115387e+01 2.4536443715718356e+01 1.3957000000000000e-01 1 0 0 0 0 P 447 -211 2.7244695886380635e-02 -6.1171143977485146e-02 -5.5532380143321296e+00 5.5553952524580019e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 111 3.8661659091627681e-01 -9.0069849808031999e-01 -3.1270799690085092e+01 3.1286448552538552e+01 1.3497999999999999e-01 2 0 0 -222 0 V -60 0 0 0 0 0 0 2 0 P 449 -211 9.1653439403288892e-02 -8.3230641423724272e-01 -2.1969379471417149e+01 2.1985773774515195e+01 1.3957000000000000e-01 1 0 0 0 0 P 450 211 9.7060655187627465e-02 -2.9258124451031620e-01 -4.1970238142402117e+01 4.1971602233775521e+01 1.3957000000000000e-01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 451 -211 4.3320791571527867e-01 -7.1568256455258283e-01 -5.1991690588731771e+01 5.1998608064935382e+01 1.3957000000000000e-01 1 0 0 0 0 P 452 111 5.0583126202098116e-01 -6.5089296347425871e-02 -2.3658902553810023e+01 2.3664783783783346e+01 1.3497999999999999e-01 2 0 0 -223 0 V -62 0 0 0 0 0 0 2 0 P 453 -211 -1.2123149395844458e-01 -1.5450294679589957e-01 -5.3119642971156864e+00 5.3174253840019006e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -3.5862058979850564e-02 -9.9376685588176028e-01 -7.3628039306329867e+01 7.3634877947518731e+01 1.3497999999999999e-01 2 0 0 -224 0 V -63 0 0 0 0 0 0 2 0 P 455 -211 -6.3320200994941300e-01 -8.1534045856997828e-01 -8.2365793642315111e+01 8.2372381093192402e+01 1.3957000000000000e-01 1 0 0 0 0 P 456 111 -1.2623052519807393e-01 -1.1326254346425248e-01 -6.1438283061074621e+00 6.1476506410637111e+00 1.3497999999999999e-01 2 0 0 -225 0 V -64 0 0 0 0 0 0 2 0 P 457 22 -1.0184814030971618e+00 -2.6024042472388820e-01 -6.7185565150341105e+01 6.7193788358879132e+01 0 1 0 0 0 0 P 458 113 -1.3598996038078459e+00 1.2027044398794705e-01 -9.0722034047990064e+01 9.0734687313446543e+01 6.5744060729081877e-01 2 0 0 -226 0 V -65 0 0 0 0 0 0 2 0 P 459 311 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -227 0 P 460 111 -6.2091473248536988e-01 9.9466814593987418e-01 -5.4313735973969017e+01 5.4326559203358180e+01 1.3497999999999999e-01 2 0 0 -228 0 V -66 0 0 0 0 0 0 3 0 P 461 -211 -2.0782848144395624e-01 -2.5426044847466135e-03 -7.1847155457765206e+00 7.1890761855164449e+00 1.3957000000000000e-01 1 0 0 0 0 P 462 211 -2.2455584703703788e-01 1.9776666816851149e-01 -3.5017825763506117e+01 3.5019382318533971e+01 1.3957000000000000e-01 1 0 0 0 0 P 463 111 -1.7156124667720604e-01 -1.6968267100452464e-01 -2.1592417756448341e+01 2.1594187867099478e+01 1.3497999999999999e-01 2 0 0 -229 0 V -67 0 -4.1637247473224015e-04 4.8733146886362726e-04 -2.9579962277049340e-02 2.9586926386753760e-02 0 2 0 P 464 22 -4.8452206358921046e-01 4.7778095021150502e-01 -3.0669495912844791e+01 3.0677043791970778e+01 0 1 0 0 0 0 P 465 22 -1.1469513503187021e+00 1.4317312857329827e+00 -8.5233751703221074e+01 8.5253491314320300e+01 0 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 466 211 -5.6621212742163737e-02 2.0418726438804774e-01 -9.1388459866265350e+00 9.1423675354281499e+00 1.3957000000000000e-01 1 0 0 0 0 P 467 111 -6.2513976573472274e-01 7.0162896182845147e-01 -9.9752640092262894e+01 9.9757157677550708e+01 1.3497999999999999e-01 2 0 0 -230 0 V -69 0 -5.4532935961215648e-05 2.3565592442432553e-04 -1.3468789463546319e-02 1.3470965157075765e-02 0 2 0 P 468 22 -6.3366427980598128e-01 2.6695916297693940e+00 -1.5021395073490055e+02 1.5023900706965679e+02 0 1 0 0 0 0 P 469 22 -8.4360379030950394e-02 4.3324451420824844e-01 -2.7127004580385595e+01 2.7130595183056776e+01 0 1 0 0 0 0 V -70 0 -5.7279336692549490e-05 3.5136319663068345e-05 -2.7635400301778031e-03 2.7644045384306671e-03 0 2 0 P 470 22 -4.4621469630670146e-01 2.3415772506538515e-01 -2.1203586948833461e+01 2.1209574179887444e+01 0 1 0 0 0 0 P 471 22 -3.0108297088572742e-02 5.8028566278014490e-02 -1.7774344028536944e+00 1.7786362417610073e+00 0 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 472 -211 -7.5948427782745784e-02 7.6057971617832576e-01 -1.1935947267370208e+01 1.1961210917908225e+01 1.3957000000000000e-01 1 0 0 0 0 P 473 211 2.7323807835062236e-01 3.5446903553249370e-01 -1.2114779114891128e+01 1.2123846754727410e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 474 -211 1.0226370988679015e-01 4.7864589740044999e-01 -4.0401493846577923e+00 4.0720813592938967e+00 1.3957000000000000e-01 1 0 0 0 0 P 475 111 1.5464079266235990e+00 2.5301765270874359e+00 -4.1073000408913799e+01 4.1180125703120211e+01 1.3497999999999999e-01 2 0 0 -231 0 V -73 0 0 0 0 0 0 2 0 P 476 -2112 -1.1292424669499278e-01 7.6463906364153600e-01 -1.4910864340255845e+01 1.4960417505589595e+01 9.3957000000000002e-01 1 0 0 0 0 P 477 211 2.0044079052248395e-01 8.5445689802309197e-02 -1.8119177960854922e+00 1.8303014399498183e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 478 2112 9.2425460987449848e-01 1.9753049852404465e+00 -2.5475902284959801e+01 2.5586333566697476e+01 9.3957000000000002e-01 1 0 0 0 0 P 479 -211 6.9708588374400127e-01 1.6537603986985090e+00 -1.8806747978734577e+01 1.8892699688137629e+01 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 480 211 4.6120009563273612e-01 1.1077246540720582e+00 -6.9831028826525818e+00 7.0868162874496408e+00 1.3957000000000000e-01 1 0 0 0 0 P 481 111 5.3115186698864880e-01 1.4618569164827847e-01 -1.8826269540215146e+00 1.9662137245621440e+00 1.3497999999999999e-01 2 0 0 -232 0 V -76 0 0 0 0 0 0 2 0 P 482 -321 -2.4620881879403911e-01 -3.3852663196510813e-01 -2.7195545516736286e+00 2.7955029927600412e+00 4.9359999999999998e-01 1 0 0 0 0 P 483 211 2.3027046237409790e-01 6.0540863842199234e-02 -1.3443476336148987e+00 1.3723847955084312e+00 1.3957000000000000e-01 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 484 321 2.3937973222824511e+00 2.0221234181627992e+00 -4.2092071821709069e+00 5.2707034445971424e+00 4.9359999999999998e-01 1 0 0 0 0 P 485 -211 4.1711625873300004e-02 1.2238105616603095e-01 -3.7267931036619628e-01 4.1843355018011047e-01 1.3957000000000000e-01 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 486 -211 4.5342912062507301e-01 2.2719554473345482e-01 1.2806524043169518e-01 5.4138366588251086e-01 1.3957000000000000e-01 1 0 0 0 0 P 487 211 9.3069018326052644e-01 -9.9477450412130797e-02 -1.7135786674434950e-01 9.6172931937899475e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 1.7807253406362070e-01 1.0475294688208295e-01 -9.6495068982318050e-02 2.6497906710950236e-01 1.3497999999999999e-01 2 0 0 -233 0 V -79 0 0 0 0 0 0 2 0 P 489 211 -1.8811199583660929e-02 2.5451314171903688e-01 -3.2828181332517775e-01 4.3861091459007007e-01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 2.2413700934072476e+00 5.8775958251204963e-01 -1.1730807863756043e+00 2.6006805559735242e+00 1.3497999999999999e-01 2 0 0 -234 0 V -80 0 0 0 0 0 0 2 0 P 491 -211 1.1135953561404925e+00 7.1999105855526202e-01 -4.4936420698912327e-01 1.4070855400579456e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 9.6223729108173894e-01 7.5274348170391572e-03 -4.0792688428162172e-01 1.0538411692199918e+00 1.3497999999999999e-01 2 0 0 -235 0 V -81 0 4.7141725164729339e-05 3.8990330431739755e-05 -1.4837827697745883e-04 1.6416778543467878e-04 0 2 0 P 493 22 6.1270208481262703e-02 7.0111468533507221e-02 -8.8640600536904257e-02 1.2855665105627717e-01 0 1 0 0 0 0 P 494 22 1.2300677359100080e-01 8.2301715261833608e-02 -4.9137001619262283e-01 5.1317514699900091e-01 0 1 0 0 0 0 V -82 0 0 0 0 0 0 2 0 P 495 211 1.4278969429751729e+00 -1.1466112467383673e-01 -1.6139026015923771e-01 1.4482967424680551e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 111 2.1176960295343994e+00 6.3487486161515982e-01 -8.1479093099505062e-01 2.3600437337152060e+00 1.3497999999999999e-01 2 0 0 -236 0 V -83 0 0 0 0 0 0 2 0 P 497 -3122 1.6906238454930942e+00 5.9865983926799271e-01 1.4111163431497347e+00 2.5401956197124891e+00 1.1156800000000000e+00 2 0 0 -237 0 P 498 -211 1.7535167704396368e-01 -4.9955061196206817e-03 -1.5748527035466297e-03 2.2417723074513962e-01 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 499 3122 1.5623954170454932e+00 1.4082628971046141e-01 1.4928725149312085e+00 2.4360463237211660e+00 1.1156800000000000e+00 2 0 0 -238 0 P 500 -211 4.0200081149528902e-02 6.8497803270382768e-02 3.2562103999306807e-01 3.6306589231634523e-01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 0 0 0 0 0 3 0 P 501 111 -1.3562656876083662e-01 -2.1166073977190544e-02 3.5299655552896042e-01 4.0208051116257337e-01 1.3497999999999999e-01 2 0 0 -239 0 P 502 111 -7.3130727670807444e-02 -1.4489669135378633e-03 1.2160786522284638e-01 1.9585268984325002e-01 1.3497999999999999e-01 2 0 0 -240 0 P 503 111 1.1420206731544041e-01 7.4389663238005846e-02 3.1781003143667813e-01 3.7121254108336188e-01 1.3497999999999999e-01 2 0 0 -241 0 V -86 0 0 0 0 0 0 2 0 P 504 22 -1.1096249274999527e-01 2.5533293922412065e-01 2.0610845869211966e-01 3.4639324675080257e-01 0 1 0 0 0 0 P 505 111 8.7425301122893528e-01 3.8075162773746102e-01 1.3893157458736169e+00 1.6904756643619427e+00 1.3497999999999999e-01 2 0 0 -242 0 V -87 0 0 0 0 0 0 2 0 P 506 -211 1.3280335528383598e+00 9.1674457465381420e-01 2.6112088293731492e+00 3.0727813244873077e+00 1.3957000000000000e-01 1 0 0 0 0 P 507 111 5.9843133680147775e-01 2.6390931402821105e-01 2.2392151429794942e+00 2.3366797486702198e+00 1.3497999999999999e-01 2 0 0 -243 0 V -88 0 0 0 0 0 0 2 0 P 508 22 2.1804073249860914e-01 -5.0779840180407133e-02 3.3484350957577835e-01 4.0279092480131945e-01 0 1 0 0 0 0 P 509 22 2.0788162250847333e+00 1.1761186998847835e+00 4.4075634842198061e+00 5.0131175890180408e+00 0 1 0 0 0 0 V -89 0 0 0 0 0 0 1 0 P 510 310 1.8605067343532793e+00 1.1259029363195969e+00 4.1217200822447717e+00 4.6867253595518950e+00 4.9767000000000000e-01 2 0 0 -244 0 V -90 0 0 0 0 0 0 2 0 P 511 -211 3.1152409998690250e-01 -7.5606357257709630e-02 -1.0855846554684376e-01 3.6609877283639630e-01 1.3957000000000000e-01 1 0 0 0 0 P 512 111 1.1492463000764856e-01 4.0804544548139371e-01 3.6905993363044071e-01 5.7804289734569814e-01 1.3497999999999999e-01 2 0 0 -245 0 V -91 0 0 0 0 0 0 2 0 P 513 211 4.8279464985930370e-01 5.5163849861257275e-01 3.3939648669075584e-01 8.1979599118459312e-01 1.3957000000000000e-01 1 0 0 0 0 P 514 111 1.4875193065888710e+00 2.9905799671560649e+00 3.5605296257080793e-01 3.3617369825709527e+00 1.3497999999999999e-01 2 0 0 -246 0 V -92 0 0 0 0 0 0 1 0 P 515 130 1.2433077100008398e+00 1.5027732493466355e+00 7.8255339202150964e-01 2.1596774622530441e+00 4.9767000000000000e-01 1 0 0 0 0 V -93 0 0 0 0 0 0 2 0 P 516 22 6.3370336893887630e-02 5.8507052184495389e-01 -7.2393235027104538e-03 5.8853693421462372e-01 0 1 0 0 0 0 P 517 22 4.9708758808557374e-01 1.6742828066872710e+00 -9.4154209610531270e-01 1.9841422594500941e+00 0 1 0 0 0 0 V -94 0 0 0 0 0 0 3 0 P 518 211 6.7513355309093567e-02 6.9655699873792509e-01 -7.5685065875550656e-02 7.1760554605748705e-01 1.3957000000000000e-01 1 0 0 0 0 P 519 -211 9.7278730234189193e-03 9.0412258996316186e-01 8.2681011316953615e-02 9.1861211821293198e-01 1.3957000000000000e-01 1 0 0 0 0 P 520 221 -2.5497928013699050e-01 1.7933139414832455e+00 -1.3619275181578758e-01 1.8971661219209319e+00 5.4744999999999999e-01 2 0 0 -247 0 V -95 0 0 0 0 0 0 2 0 P 521 311 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 2 0 0 -248 0 P 522 211 -9.9551490310604418e-01 1.1594392525819142e+00 1.9132375138167868e-01 1.5464261590766959e+00 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 523 -211 1.4561444306408733e-01 1.6948672434379919e-01 2.9629528741099403e-01 3.9648454950933315e-01 1.3957000000000000e-01 1 0 0 0 0 P 524 211 -2.1689058802526670e-01 9.3489779676217588e-01 -4.4359266242957329e-02 9.7083621016437693e-01 1.3957000000000000e-01 1 0 0 0 0 V -97 0 0 0 0 0 0 2 0 P 525 321 -2.7865819617544729e+00 1.9304576620578515e+00 1.4127889794582241e-01 3.4286012456361936e+00 4.9359999999999998e-01 1 0 0 0 0 P 526 -211 -5.5089477909262408e-01 5.9788559061863533e-01 2.9422486355209693e-01 8.7578552873015403e-01 1.3957000000000000e-01 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 527 -211 -1.6831721611249397e+00 2.0308360507947998e-01 3.5416234646360062e-01 1.7375909263088023e+00 1.3957000000000000e-01 1 0 0 0 0 P 528 211 -5.1692662794923135e-02 4.0365508678610301e-02 -3.2572617915060803e-02 1.5761429508630598e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 -8.4592064243676633e-04 3.4662824881460924e-04 2.9749731293998353e-04 9.6586265571668890e-04 0 2 0 P 529 22 -1.0518836878809273e-01 1.9818786887836545e-02 6.7430361773768835e-02 1.2650782952428929e-01 0 1 0 0 0 0 P 530 22 -1.1222851265125016e+00 4.8315627578087883e-01 3.6425323623498085e-01 1.2750075733599733e+00 0 1 0 0 0 0 V -100 0 0 0 0 0 0 2 0 P 531 -211 -5.3394471118507696e-02 -1.4810623901225919e-01 -4.7100712040543211e-02 2.1560308336178258e-01 1.3957000000000000e-01 1 0 0 0 0 P 532 111 -1.3136040553035271e+00 6.4368812062982750e-01 -5.6943772771948520e-01 1.5755535334923285e+00 1.3497999999999999e-01 2 0 0 -249 0 V -101 0 0 0 0 0 0 2 0 P 533 -311 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 2 0 0 -250 0 P 534 111 -1.1682040035379349e+00 -3.2878742670569067e-01 1.9767826884812031e-01 1.2369713271602536e+00 1.3497999999999999e-01 2 0 0 -251 0 V -102 0 0 0 0 0 0 2 0 P 535 311 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 2 0 0 -252 0 P 536 211 -8.9433654146803154e-01 -1.4832412635096766e+00 3.8099491655606149e-01 1.7788983688014171e+00 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 3 0 P 537 211 -5.3927897358256194e-01 -5.2835325939886801e-01 -4.6772919885965192e-01 8.9901577651983444e-01 1.3957000000000000e-01 1 0 0 0 0 P 538 -211 -1.1438678394334325e+00 -5.8586720781913393e-01 -6.0300912383378602e-01 1.4264549791755390e+00 1.3957000000000000e-01 1 0 0 0 0 P 539 111 -8.8690250262511830e-02 -5.5290209813047921e-02 -2.2267006181283047e-01 2.8057890979282030e-01 1.3497999999999999e-01 2 0 0 -253 0 V -104 0 0 0 0 0 0 3 0 P 540 -211 -9.3625851815150862e-01 -1.1334563796692814e+00 -4.2677820682438172e-01 1.5371801456382683e+00 1.3957000000000000e-01 1 0 0 0 0 P 541 211 -4.2159513520427772e-01 -7.9243515197215852e-01 -2.6258698197726910e-01 9.4558322537626582e-01 1.3957000000000000e-01 1 0 0 0 0 P 542 111 -2.6452173414085622e-01 -3.0499328098264666e-01 -8.4420604554332382e-02 4.3398051586536052e-01 1.3497999999999999e-01 2 0 0 -254 0 V -105 0 0 0 0 0 0 2 0 P 543 -211 -4.1581844761382414e-01 -1.5516390056188711e-01 -1.1724385843327131e-01 4.7979862927468930e-01 1.3957000000000000e-01 1 0 0 0 0 P 544 111 -5.2070828679747183e-01 -1.4426229256931344e+00 8.7517130893233652e-02 1.5421338704129290e+00 1.3497999999999999e-01 2 0 0 -255 0 V -106 0 0 0 0 0 0 1 0 P 545 310 -1.7641762117682904e+00 -5.4117906562180078e+00 -1.8685235787195578e+00 6.0115598313606258e+00 4.9767000000000000e-01 2 0 0 -256 0 V -107 0 0 0 0 0 0 2 0 P 546 311 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -257 0 P 547 111 -3.2665476953105892e-02 -9.9619369304408634e-01 -4.5750639209141231e-01 1.1049889622298905e+00 1.3497999999999999e-01 2 0 0 -258 0 V -108 0 0 0 0 0 0 2 0 P 548 -211 -3.8191337591283514e-01 -1.9578305594101206e+00 -6.7396374946776771e-01 2.1101339404307815e+00 1.3957000000000000e-01 1 0 0 0 0 P 549 111 -6.3259974107319787e-03 -1.7201710597973972e+00 -1.0032113410507693e+00 1.9959161025505616e+00 1.3497999999999999e-01 2 0 0 -259 0 V -109 0 0 0 0 0 0 2 0 P 550 22 4.5245148329683943e-01 7.2352098899763012e-03 -3.5106855697437522e-01 5.7272491188679087e-01 0 1 0 0 0 0 P 551 22 -6.6927148965369720e-02 -2.5028053694637142e-01 -1.7082976898174893e-01 3.1032628057119899e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 552 211 1.3677341290237796e-01 4.3032518265617416e-02 -2.2568792483045799e-01 3.0161828263472945e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 5.2328737552443649e-01 -3.5488967257994039e-02 5.3504461835725914e-01 7.6130249455348342e-01 1.3497999999999999e-01 2 0 0 -260 0 V -111 0 0 0 0 0 0 2 0 P 554 -211 4.3386228550685657e-01 -1.0964728129495991e+00 1.4095106610054362e+00 1.8430109062918811e+00 1.3957000000000000e-01 1 0 0 0 0 P 555 211 1.4481043120464805e+00 -1.1610953787645313e+00 2.3948404827531502e+00 3.0331319291928769e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 556 -211 4.6815085288505343e-01 -5.6246872888928223e-01 1.6274668207732095e+00 1.7898783002352383e+00 1.3957000000000000e-01 1 0 0 0 0 P 557 111 1.2823074351683919e+00 -5.3106066939169372e-01 3.2173936305081314e+00 3.5065908182873557e+00 1.3497999999999999e-01 2 0 0 -261 0 V -113 0 0 0 0 0 0 2 0 P 558 -211 2.3524406742930551e-01 -2.8915221898310189e-01 9.5835606781377047e-01 1.0377258378873524e+00 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.9909563732603633e-02 -4.5728251125565983e-01 2.6255119350909162e+00 2.6687511292892143e+00 1.3497999999999999e-01 2 0 0 -262 0 V -114 0 0 0 0 0 0 2 0 P 560 -211 3.0746174085269307e-01 -5.2967487749507325e-01 1.3468136160901569e+00 1.4860938393397081e+00 1.3957000000000000e-01 1 0 0 0 0 P 561 111 2.4198238914182968e-01 -3.2928058241119945e-01 3.5904163407068617e+00 3.6161153574827640e+00 1.3497999999999999e-01 2 0 0 -263 0 V -115 0 0 0 0 0 0 2 0 P 562 211 2.6864067533575414e-01 -3.9255006517361679e-01 2.8841001174337535e+00 2.9263931107071128e+00 1.3957000000000000e-01 1 0 0 0 0 P 563 111 -3.9117801062791518e-01 -5.9050971020078857e-01 7.3181373297609582e+00 7.3535756969980994e+00 1.3497999999999999e-01 2 0 0 -264 0 V -116 0 0 0 0 0 0 2 0 P 564 -211 -5.6998220983344872e-01 -4.2572816965848740e-04 3.0681783931664808e+00 3.1237923007083466e+00 1.3957000000000000e-01 1 0 0 0 0 P 565 111 -2.4747378609123288e-01 -4.3918297268714779e-01 3.2640679082130415e+00 3.3055232366641909e+00 1.3497999999999999e-01 2 0 0 -265 0 V -117 0 0 0 0 0 0 2 0 P 566 2112 -1.4371167998166035e+00 -6.3349314583682681e-01 1.3642911267958715e+01 1.3765116705369127e+01 9.3957000000000002e-01 1 0 0 0 0 P 567 211 -3.4234962708991006e-02 -1.8266248272196522e-01 2.0444015521872392e+00 2.0575701948539766e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 568 -2112 -1.3162688891195169e+00 -2.8911560676272552e-01 1.6330562783998946e+01 1.6412989497637813e+01 9.3957000000000002e-01 1 0 0 0 0 P 569 111 -3.1060530371474787e-01 -2.3937697403823475e-03 1.1916060380707374e+00 1.2388001998691882e+00 1.3497999999999999e-01 2 0 0 -266 0 V -119 0 0 0 0 0 0 2 0 P 570 2212 -1.6732613565904975e+00 -5.8486616589951879e-01 1.4134197777849595e+01 1.4275775615207095e+01 9.3827000000000005e-01 1 0 0 0 0 P 571 -211 -4.0539854207801668e-01 1.2416940047121844e-02 3.7201701214550718e+00 3.7448161070720358e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 572 211 -8.8311553566975642e-01 -4.6481667687979156e-01 1.0881745545925389e+01 1.0928303322273495e+01 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -4.2747761909503296e-01 2.5072455461893389e-01 4.5231816076343865e+00 4.5522512423149513e+00 1.3497999999999999e-01 2 0 0 -267 0 V -121 0 0 0 0 0 0 2 0 P 574 -211 -1.5258491840368951e+00 3.7945327433581177e-01 1.3630926104636135e+01 1.3722019777524775e+01 1.3957000000000000e-01 1 0 0 0 0 P 575 111 -2.6178678954269814e+00 -7.3865638736981196e-02 3.0300546985298055e+01 3.0413813566521849e+01 1.3497999999999999e-01 2 0 0 -268 0 V -122 0 0 0 0 0 0 3 0 P 576 211 -2.9117961562330641e-01 -2.1049238308480708e-01 4.4225267602199825e+00 4.4392922117892972e+00 1.3957000000000000e-01 1 0 0 0 0 P 577 -211 -1.8317573516048721e-01 -5.7756035173422933e-02 3.4047749776731813e+00 3.4130428569005620e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 221 -6.6775107729630390e-01 1.0283946938673875e-01 1.2531402673526651e+01 1.2561537402972020e+01 5.4744999999999999e-01 2 0 0 -269 0 V -123 0 0 0 0 0 0 2 0 P 579 211 -3.2920167101321152e-01 -2.2024192911528137e-01 1.2095902565103403e+01 1.2103190442892048e+01 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -2.7713206510249817e+00 -4.9687864949176985e-01 5.3316460577006659e+01 5.3390919589411673e+01 1.3497999999999999e-01 2 0 0 -270 0 V -124 0 0 0 0 0 0 3 0 P 581 -211 -7.8150261580597014e-01 -6.5062412477329945e-01 3.1001982616560351e+01 3.1018969422478541e+01 1.3957000000000000e-01 1 0 0 0 0 P 582 211 -1.3655830782458056e+00 -6.3821399822721958e-01 3.6030634076998076e+01 3.6062420967352701e+01 1.3957000000000000e-01 1 0 0 0 0 P 583 111 -9.1139337362668937e-01 -3.3178777840939216e-01 2.2664621639147420e+01 2.2685766785751412e+01 1.3497999999999999e-01 2 0 0 -271 0 V -125 0 0 0 0 0 0 2 0 P 584 211 -6.6940976246566128e-02 -1.4731635952133604e-01 9.5208895159545790e+00 9.5232872561945374e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 111 -2.2701717348274628e+00 -1.3600629210995689e+00 6.2562818654416517e+01 6.2618910469927265e+01 1.3497999999999999e-01 2 0 0 -272 0 V -126 0 7.0961611550761529e-05 -2.0450489908914677e-05 2.6750629994621937e-03 2.6763771839673936e-03 0 2 0 P 586 22 2.3664262512697717e-01 -3.6062986660967612e-02 6.7922903027154478e+00 6.7965070313651710e+00 0 1 0 0 0 0 P 587 22 4.4039011495527981e-03 -3.3404426007230335e-02 2.2945191636955076e+00 2.2947665333510812e+00 0 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 588 -211 -1.1202404688519298e+00 -6.9172561735669214e-01 3.6686347561336113e+01 3.6710230184702098e+01 1.3957000000000000e-01 1 0 0 0 0 P 589 111 -1.3081030577030401e+00 -1.5463330256108041e+00 7.8467443225538958e+01 7.8493694940353308e+01 1.3497999999999999e-01 2 0 0 -273 0 V -128 0 0 0 0 0 0 1 0 P 590 310 -4.4704344427537235e-01 -5.2775316827026497e-01 4.1607056255053422e+01 4.1615780383020201e+01 4.9767000000000000e-01 2 0 0 -274 0 V -129 0 0 0 0 0 0 2 0 P 591 311 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -275 0 P 592 211 -7.0711942355462210e-01 -5.1829387561651707e-01 7.1426844109757411e+01 7.1432360913560430e+01 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 593 -211 -6.5974742546762402e-02 -8.9992570891152934e-01 5.6466683496943318e+01 5.6474065232432885e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 111 -2.1640099005921301e-01 -4.3118921183790349e-01 7.3516931533579836e+01 7.3518638420732259e+01 1.3497999999999999e-01 2 0 0 -276 0 V -131 0 0 0 0 0 0 2 0 P 595 -311 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -277 0 P 596 -211 -3.9479609549778139e-01 5.0709780915583827e-02 4.0697152583884559e+01 4.0699338368820968e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 597 -3122 -9.5407414509883370e-01 3.1641885649184620e-01 2.7446204970628219e+02 2.7446615793063307e+02 1.1156800000000000e+00 2 0 0 -278 0 P 598 -211 -5.0616603787675574e-02 1.4368079011518017e-01 1.6876907839087174e+01 1.6878172418954879e+01 1.3957000000000000e-01 1 0 0 0 0 V -133 0 -6.4275451781776666e-05 2.7889051543100351e-05 6.4180403347498258e-03 6.4184439753010658e-03 0 2 0 P 599 22 -2.2919641601893113e-02 4.7235780119459274e-02 6.0487704784640925e+00 6.0489983327848069e+00 0 1 0 0 0 0 P 600 22 -5.0294784593559294e-01 1.8093757468738647e-01 4.6460214712457997e+01 4.6463289229986330e+01 0 1 0 0 0 0 V -134 0 0 0 0 0 0 2 0 P 601 2112 -1.1252144453532473e+00 1.3405629650142816e+00 1.9860074067378008e+02 1.9861067495119730e+02 9.3957000000000002e-01 1 0 0 0 0 P 602 211 -2.2853686443987378e-01 2.1962977016827817e-01 2.2753097705235920e+01 2.2755733372125459e+01 1.3957000000000000e-01 1 0 0 0 0 V -135 0 5.6985063945844475e-07 4.6476719321603960e-07 4.8435696190711068e-04 4.8435765088020719e-04 0 2 0 P 603 22 8.6717329866356677e-02 1.1673580097080817e-01 1.2663985904779804e+02 1.2663994254100356e+02 0 1 0 0 0 0 P 604 22 1.2939344337485437e-01 5.9523012388635520e-02 5.7048199391491814e+01 5.7048377185189054e+01 0 1 0 0 0 0 V -136 0 0 0 0 0 0 3 0 P 605 211 -3.1495995688358996e-01 7.5983414030273444e-01 5.4603784676569624e+01 5.4610157740893676e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -8.8924474176920010e-01 9.7022390661284097e-01 1.2234474164311358e+02 1.2235189977333755e+02 1.3957000000000000e-01 1 0 0 0 0 P 607 111 -2.1736880086196367e-01 4.7008509174966145e-01 5.4354546271815245e+01 5.4357181210989758e+01 1.3497999999999999e-01 2 0 0 -279 0 V -137 0 0 0 0 0 0 1 0 P 608 130 -9.4109625004445471e-03 9.7639263073555665e-02 8.1250064204531355e+01 8.1251647556595898e+01 4.9767000000000000e-01 1 0 0 0 0 V -138 0 0 0 0 0 0 2 0 P 609 3122 1.3559086680843437e+00 6.2389688928430742e-01 4.2441896095407844e+02 4.2442305179484140e+02 1.1156800000000000e+00 2 0 0 -280 0 P 610 211 4.8644087066335034e-01 4.1798899577230186e-01 1.7292680163838099e+02 1.7292804730345540e+02 1.3957000000000000e-01 1 0 0 0 0 V -139 0 5.4559683186922301e-05 -2.5225221487964311e-04 1.3950432522214515e-01 1.3950456953387025e-01 0 2 0 P 611 22 1.5071805412575051e-01 -5.2922638670154287e-01 2.6605969611287617e+02 2.6606026515091690e+02 0 1 0 0 0 0 P 612 22 3.5906294575237120e-02 -3.3361596428884865e-01 2.1112239723538661e+02 2.1112266387882184e+02 0 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 613 -211 3.5885971104675846e-01 -1.1599645970843625e-02 1.5187603419869194e+02 1.5187652273656764e+02 1.3957000000000000e-01 1 0 0 0 0 P 614 111 1.4726962089681108e+00 -9.5456665507154004e-01 3.7345442058361260e+02 3.7345856865878056e+02 1.3497999999999999e-01 2 0 0 -281 0 V -141 0 0 0 0 0 0 3 0 P 615 -211 2.0173742232651119e-02 -4.5826984566280266e-01 1.6740134254555329e+02 1.6740202921132675e+02 1.3957000000000000e-01 1 0 0 0 0 P 616 211 -5.7865076990022647e-03 -7.2602295539787517e-02 2.9007160200767537e+01 2.9007587408726035e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.0947377361388858e-01 -5.0272992703115083e-01 3.5584351666650343e+02 3.5584395904641389e+02 1.3497999999999999e-01 2 0 0 -282 0 V -142 0 -3.4546403242393264e-05 2.6914901295345784e-05 2.6119729803363686e-02 2.6119774817547150e-02 0 2 0 P 618 22 -7.0645741463905218e-02 1.3909794530204359e-01 7.7536267551841462e+01 7.7536424504421916e+01 0 1 0 0 0 0 P 619 22 -1.5327854870755614e-01 3.5360163268848152e-02 9.1767665903993091e+01 9.1767800726189023e+01 0 1 0 0 0 0 V -143 0 2.3772635172426060e+01 9.9806693800612422e+01 1.4826163995507130e+02 1.8823816495538307e+02 0 2 0 P 620 2112 2.8020980002177093e-01 1.8814591029109589e+00 2.5579743327315718e+00 3.3233161690950022e+00 9.3957000000000002e-01 1 0 0 0 0 P 621 -211 2.4608030550322821e-01 3.2810979979748428e-01 7.2431362446425074e-01 8.4399145076490378e-01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 2 0 P 622 -3122 -5.1820186844428273e-01 6.3591793859830237e-01 8.6051583842839252e-01 1.6303846698483089e+00 1.1156800000000000e+00 2 0 0 -283 0 P 623 22 -5.9425616194492895e-02 1.3048058663793294e-01 1.2465615010904767e-01 1.8998879732627325e-01 0 1 0 0 0 0 V -145 0 0 0 0 0 0 2 0 P 624 -211 4.0425673171067267e-01 2.6409238387353862e-01 -1.4397750854767478e+01 1.4406522056110942e+01 1.3957000000000000e-01 1 0 0 0 0 P 625 211 4.2552537391405805e-02 -1.5464375070503628e-01 -2.4575579972629717e+00 2.4667380288311440e+00 1.3957000000000000e-01 1 0 0 0 0 V -146 0 -2.9152496236380507e-05 -4.4511508340410430e-05 -3.6119108697173414e-04 3.6528766615898252e-04 0 2 0 P 626 22 -8.8350633664131914e-02 -6.4412439422267737e-02 -5.2791525377933701e-01 5.3911901468421863e-01 0 1 0 0 0 0 P 627 22 -2.3850655589455008e-01 -4.3464967866174914e-01 -3.5217518012805162e+00 3.5564788021564251e+00 0 1 0 0 0 0 V -147 0 0 0 0 0 0 3 0 P 628 -211 3.3836234997372601e-02 -4.1467463518519383e-02 -1.0959116068233817e+02 1.0959126262585121e+02 1.3957000000000000e-01 1 0 0 0 0 P 629 211 -5.2962302875346279e-03 3.0306421820769654e-02 -2.1019951860486424e+02 2.1019956719277712e+02 1.3957000000000000e-01 1 0 0 0 0 P 630 221 -2.9631684527714247e-01 -3.9043950116624504e-01 -1.2537549545154482e+03 1.2537551698478508e+03 5.4744999999999999e-01 2 0 0 -284 0 V -148 0 0 0 0 0 0 2 0 P 631 321 -3.0792669756726926e-01 -2.3070874887861219e+00 6.8722894621326800e+00 7.2725150356206223e+00 4.9359999999999998e-01 1 0 0 0 0 P 632 111 -2.8857153435653024e-02 -8.4518990384209930e-02 1.0585284572503173e+00 1.0708306543280837e+00 1.3497999999999999e-01 2 0 0 -285 0 V -149 0 0 0 0 0 0 2 0 P 633 -311 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 2 0 0 -286 0 P 634 111 4.9528499860061248e-02 -2.6880942319866119e-01 7.5436333558661017e-01 8.1363088730464361e-01 1.3497999999999999e-01 2 0 0 -287 0 V -150 0 0 0 0 0 0 2 0 P 635 321 -4.3468371415822504e-01 -3.8892974280641361e+00 8.9050315606267745e+00 9.7395488843713718e+00 4.9359999999999998e-01 1 0 0 0 0 P 636 -211 -8.4196943949894065e-01 -2.8859700081882194e+00 6.4481614946030694e+00 7.1158978260366945e+00 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 637 -311 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -288 0 P 638 -211 -1.5469962819246081e+00 -5.0469452808978090e+00 1.1036078959307597e+01 1.2234352158804203e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 1 0 P 639 130 2.0928327517164034e+00 7.6378291019020494e+00 1.1259349120158101e+01 1.3774505448654907e+01 4.9767000000000000e-01 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 640 321 2.1408656791317626e+00 7.6180868333093379e+00 1.0139915285787804e+01 1.2871677272946155e+01 4.9359999999999998e-01 1 0 0 0 0 P 641 111 2.0078420389989198e+00 7.6445753645802030e+00 9.2396272542502675e+00 1.2159765357777355e+01 1.3497999999999999e-01 2 0 0 -289 0 V -154 0 3.1941042641940405e-05 1.6554440034891865e-04 4.5836240363113755e-04 4.8872506335477268e-04 0 2 0 P 642 22 2.3775515665535224e-01 9.3367352098130940e-01 2.6254883945503793e+00 2.7966878746504009e+00 0 1 0 0 0 0 P 643 22 -7.4892630582066005e-04 2.9468507463488502e-01 7.7561364949882705e-01 8.2970861595626977e-01 0 1 0 0 0 0 V -155 0 0 0 0 0 0 3 0 P 644 -211 3.2754521351315508e-01 6.5423371987000267e-01 1.8973895648642505e+00 2.0383509444808734e+00 1.3957000000000000e-01 1 0 0 0 0 P 645 211 1.3474911917073265e-01 -2.3686920344324673e-02 3.5557636552914174e-01 4.0574959264995020e-01 1.3957000000000000e-01 1 0 0 0 0 P 646 111 1.8222094970561079e-01 -3.3038922501530080e-02 5.3332801166124055e-01 5.8047774576999001e-01 1.3497999999999999e-01 2 0 0 -290 0 V -156 0 0 0 0 0 0 2 0 P 647 -211 -1.2692696860774755e-01 -3.9905599424957583e-01 8.9693073240568688e-01 9.9966027506361954e-01 1.3957000000000000e-01 1 0 0 0 0 P 648 111 -4.4749754682571208e-01 -1.9421436800390511e-02 2.6831732438332134e-01 5.3930050397403340e-01 1.3497999999999999e-01 2 0 0 -291 0 V -157 0 0 0 0 0 0 1 0 P 649 130 9.1152281893812456e-02 -1.4358287283948206e+00 4.1572330731656653e+00 4.4272085030299602e+00 4.9767000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 650 311 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -292 0 P 651 111 7.5278247369453113e-02 -4.9866492740300677e-01 1.2237588261257504e+00 1.3304656287441390e+00 1.3497999999999999e-01 2 0 0 -293 0 V -159 0 0 0 0 0 0 3 0 P 652 211 -2.7320306803784417e-01 -1.9351255850886149e+00 4.2833017173779639e+00 4.7101490776240684e+00 1.3957000000000000e-01 1 0 0 0 0 P 653 -211 -2.1822795151185551e-01 -1.0672202750105624e+00 2.0948829584994950e+00 2.3652900348427206e+00 1.3957000000000000e-01 1 0 0 0 0 P 654 111 4.9830658098633851e-02 -1.2185339925634903e-01 4.3266171157372679e-01 4.7196091200307777e-01 1.3497999999999999e-01 2 0 0 -294 0 V -160 0 0 0 0 0 0 2 0 P 655 -311 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 2 0 0 -295 0 P 656 111 3.2673680169654806e-01 -3.1003439694019946e-01 1.2053680412223686e+00 1.2938353759536845e+00 1.3497999999999999e-01 2 0 0 -296 0 V -161 0 0 0 0 0 0 2 0 P 657 211 -2.1092686291050697e-01 -3.0539453275829531e-01 3.4307662146924267e-01 5.2434465310011058e-01 1.3957000000000000e-01 1 0 0 0 0 P 658 111 -4.9068814239270320e-01 6.4628220563394001e-01 2.7388709426374303e-01 8.6700016332646013e-01 1.3497999999999999e-01 2 0 0 -297 0 V -162 0 0 0 0 0 0 2 0 P 659 311 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -298 0 P 660 211 -2.9480464620938440e-01 1.2387656932981087e-02 -9.5768029093302758e+00 9.5823638514996787e+00 1.3957000000000000e-01 1 0 0 0 0 V -163 0 1.9732409977550819e+01 1.1538529496114290e+02 -7.7268127841611786e+03 7.7288846958133481e+03 0 2 0 P 661 3122 2.0262804964864586e-01 9.0000687804219359e-01 -5.7358901883772766e+01 5.7377168261266597e+01 1.1156800000000000e+00 2 0 0 -299 0 P 662 -211 -9.9987603328184765e-03 2.2639316083541108e-01 -1.8070833104642393e+01 1.8072792886524780e+01 1.3957000000000000e-01 1 0 0 0 0 V -164 0 2.1209796242428151e+01 1.9897874037841634e+00 -3.6294953846905419e+03 3.6304003951167228e+03 0 2 0 P 663 -2112 8.6025318877684456e-02 -5.8665208746041302e-02 -4.4545019771419803e+01 4.4555049323093407e+01 9.3957000000000002e-01 1 0 0 0 0 P 664 211 2.3871779547926636e-01 8.9130836563837135e-02 -1.1026171073440972e+01 1.1029998133163554e+01 1.3957000000000000e-01 1 0 0 0 0 V -165 0 0 0 0 0 0 2 0 P 665 321 3.2194234233487184e-01 1.1075780028352308e-01 -8.0059170722993358e+01 8.0061416250123301e+01 4.9359999999999998e-01 1 0 0 0 0 P 666 -211 -1.4079709307579313e-01 1.6214411568262550e-02 -7.2155567317939955e+01 7.2155841492475332e+01 1.3957000000000000e-01 1 0 0 0 0 V -166 0 1.1728132305648380e+01 1.1821571814879215e+02 -1.3891259508989857e+04 1.3891961040646755e+04 0 2 0 P 667 2212 2.0544835640954720e-01 1.6711160783310814e+00 -1.8743277071432695e+02 1.8744268117538431e+02 9.3827000000000005e-01 1 0 0 0 0 P 668 -211 -2.7027407091969848e-02 1.2730843690127711e-01 -2.3895993680420577e+01 2.3896755672652315e+01 1.3957000000000000e-01 1 0 0 0 0 V -167 0 0 0 0 0 0 2 0 P 669 211 -5.2153325208921519e-02 -7.1078348190801707e-02 -2.0511845968677090e+02 2.0511852611638781e+02 1.3957000000000000e-01 1 0 0 0 0 P 670 -211 3.7334630537982721e-01 1.7139824534066245e-01 -7.7292416961499498e+01 7.7293634694956879e+01 1.3957000000000000e-01 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 671 321 -2.9795096558714318e-01 2.9765547735468728e-01 -8.1806910110059647e+01 8.1809483290609236e+01 4.9359999999999998e-01 1 0 0 0 0 P 672 -211 2.3170929551805872e-01 8.4298918839846512e-02 -7.0819823684121644e+01 7.0820390439055927e+01 1.3957000000000000e-01 1 0 0 0 0 V -169 0 0 0 0 0 0 2 0 P 673 -311 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 2 0 0 -300 0 P 674 111 -2.0237897492416637e-01 -4.6487244911642300e-01 -2.5209407155106010e+01 2.5214866494902346e+01 1.3497999999999999e-01 2 0 0 -301 0 V -170 0 0 0 0 0 0 2 0 P 675 -211 -1.8782129517416396e-01 -5.4493903259008558e-01 -9.6226102260737711e+00 9.6408683600597218e+00 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -7.6856697965412746e-01 -5.3321369537130438e-02 -8.5281461119212754e+00 8.5639380005545309e+00 1.3497999999999999e-01 2 0 0 -302 0 V -171 0 0 0 0 0 0 2 0 P 677 211 2.1292711529492087e-01 -2.9642176823137267e-01 -3.7360168520060966e+00 3.7563952833112189e+00 1.3957000000000000e-01 1 0 0 0 0 P 678 -211 -2.1206704040825189e-01 -6.7455215309665373e-01 -2.6466249135990192e+00 2.7430086137410985e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 679 -211 -2.0518251366494872e-01 -1.5264696036755279e+00 -3.8222194120578554e+00 4.1232329953170348e+00 1.3957000000000000e-01 1 0 0 0 0 P 680 111 -5.2250179789997098e-01 -3.0117915695531333e-01 -1.5692099920535623e+00 1.6865220463882933e+00 1.3497999999999999e-01 2 0 0 -303 0 V -173 0 0 0 0 0 0 2 0 P 681 -311 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 2 0 0 -304 0 P 682 -211 2.3939125846134075e-02 -1.4685657358588786e-01 -1.0935030731601856e+00 1.1123707524303372e+00 1.3957000000000000e-01 1 0 0 0 0 V -174 0 0 0 0 0 0 2 0 P 683 211 8.0181502928624401e-02 1.6438577226586526e-03 -3.7638840684705412e+00 3.7673246265043923e+00 1.3957000000000000e-01 1 0 0 0 0 P 684 111 1.9515604741647172e-01 -3.5390885146183321e-01 -1.3249978971285499e+00 1.3918248401941005e+00 1.3497999999999999e-01 2 0 0 -305 0 V -175 0 0 0 0 0 0 2 0 P 685 -211 -3.8509823102327539e-01 2.5322410024728437e-01 -3.6391097194121600e+00 3.6708340233935055e+00 1.3957000000000000e-01 1 0 0 0 0 P 686 211 1.5854199844972119e-01 -2.1436520739938031e-01 -1.2178949654024840e+00 1.2545261811012667e+00 1.3957000000000000e-01 1 0 0 0 0 V -176 0 6.6706556619015272e-06 -4.4332915320853985e-05 -4.4623999004607227e-04 4.4858050930182550e-04 0 2 0 P 687 22 6.0486056081753961e-02 -2.9331717830278142e-01 -2.3492617274439067e+00 2.3682745183150873e+00 0 1 0 0 0 0 P 688 22 3.7500142894235373e-02 -3.5789524847935389e-01 -4.2056202319756046e+00 4.2209876575516923e+00 0 1 0 0 0 0 V -177 0 0 0 0 0 0 2 0 P 689 22 1.3714166274975878e-01 6.0597379534375901e-03 2.1835181390073627e-01 2.5791872890423195e-01 0 1 0 0 0 0 P 690 223 1.2444431997444765e-02 -7.2970353237633534e-01 1.6322333697553348e+00 1.9529565105077820e+00 7.8564066184333647e-01 2 0 0 -306 0 V -178 0 0 0 0 0 0 2 0 P 691 -211 7.1739751212837166e-01 -3.2179295576271921e-01 8.8216781176396761e+00 8.8577477099389768e+00 1.3957000000000000e-01 1 0 0 0 0 P 692 111 -1.7899950450293620e-01 -6.5113890760296181e-02 2.4330948672875952e+00 2.4442689858122164e+00 1.3497999999999999e-01 2 0 0 -307 0 V -179 0 0 0 0 0 0 2 0 P 693 211 8.7827130211925408e-01 -2.7357881425372454e-01 1.8966384714833929e+01 1.8989192578509513e+01 1.3957000000000000e-01 1 0 0 0 0 P 694 111 2.6156722444686004e-01 -5.6539854119185384e-01 1.8230948137905909e+01 1.8242088217380751e+01 1.3497999999999999e-01 2 0 0 -308 0 V -180 0 0 0 0 0 0 2 0 P 695 -211 3.1151551946842931e-01 7.9727110800363890e-02 2.4767877977866551e+01 2.4770358448000973e+01 1.3957000000000000e-01 1 0 0 0 0 P 696 211 2.6864064947798910e-01 -5.8718745794782212e-01 2.4244869982463651e+01 2.4253868911181783e+01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 2 0 P 697 211 1.1876176129267604e-02 -2.9974295517280763e-01 1.1271864743366191e+01 1.1276719445848466e+01 1.3957000000000000e-01 1 0 0 0 0 P 698 111 1.3939353028616601e+00 -1.3879555514502320e+00 5.8644393972985725e+01 5.8677530966295180e+01 1.3497999999999999e-01 2 0 0 -309 0 V -182 0 0 0 0 0 0 2 0 P 699 211 -1.0125669391963240e-02 -1.5867107629237132e-01 1.9347938766352279e+01 1.9349095413766758e+01 1.3957000000000000e-01 1 0 0 0 0 P 700 -211 8.0859635740897873e-01 -1.6969489993302173e-01 2.6931490803547064e+01 2.6944522655165343e+01 1.3957000000000000e-01 1 0 0 0 0 V -183 0 0 0 0 0 0 1 0 P 701 130 9.3654809714504861e-01 4.8153753676720973e-01 2.5815409904002355e+01 2.5841673023977080e+01 4.9767000000000000e-01 1 0 0 0 0 V -184 0 0 0 0 0 0 2 0 P 702 130 4.9706871922416046e-01 -2.7670691321225648e-02 4.8622964901116255e+01 4.8628060152373678e+01 4.9767000000000000e-01 1 0 0 0 0 P 703 310 2.9067649213125629e-01 -1.0755970010822294e-01 3.3931211859574240e+01 3.3936276690296722e+01 4.9767000000000000e-01 2 0 0 -310 0 V -185 0 0 0 0 0 0 1 0 P 704 310 4.5288757453038492e-01 -9.4617733821196079e-02 1.1123493496624080e+01 1.1144229119551325e+01 4.9767000000000000e-01 2 0 0 -311 0 V -186 0 0 0 0 0 0 2 0 P 705 -211 7.1844459577990280e-02 9.1746641109791984e-04 8.1545440469481516e+00 8.1560548592217188e+00 1.3957000000000000e-01 1 0 0 0 0 P 706 111 9.9293951544216455e-02 1.0581107833750616e+00 2.1328732774531080e+01 2.1355620316124373e+01 1.3497999999999999e-01 2 0 0 -312 0 V -187 0 0 0 0 0 0 2 0 P 707 211 -1.0729249277439934e-01 -3.5158928533000948e-02 1.2558318831456941e+00 1.2685981762901102e+00 1.3957000000000000e-01 1 0 0 0 0 P 708 -211 4.2868505238007704e-01 -3.6573728327567712e-01 5.0434185287233548e+00 5.0767198933250226e+00 1.3957000000000000e-01 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 709 211 1.1569351433050877e-01 9.8895071181040600e-02 1.1998725560879528e+00 1.2175135153726566e+00 1.3957000000000000e-01 1 0 0 0 0 P 710 -211 4.3380583882045376e-01 4.2361207847846072e-01 7.5682557263513717e+00 7.5937875413510145e+00 1.3957000000000000e-01 1 0 0 0 0 P 711 111 1.9172589138466900e-01 7.8256921185613737e-01 7.0881578523289255e+00 7.1350805691810226e+00 1.3497999999999999e-01 2 0 0 -313 0 V -189 0 0 0 0 0 0 2 0 P 712 211 3.7745239500337979e-02 2.9382676127846225e-01 3.2714020165321894e-01 4.6288158873089463e-01 1.3957000000000000e-01 1 0 0 0 0 P 713 111 4.7814607708336748e-01 7.2533975322608335e-03 9.6098608492559712e-01 1.0818457092518330e+00 1.3497999999999999e-01 2 0 0 -314 0 V -190 0 0 0 0 0 0 2 0 P 714 211 6.1391690716930479e-02 -1.1235880250659060e-01 -7.7636567393693720e-02 2.0469651117318494e-01 1.3957000000000000e-01 1 0 0 0 0 P 715 111 -3.1697370414823450e-01 7.1912395578532273e-01 -5.9326912550520516e-01 9.9388100323101769e-01 1.3497999999999999e-01 2 0 0 -315 0 V -191 0 0 0 0 0 0 2 0 P 716 211 1.7812749976972270e-01 4.8518745676453812e-01 -5.1230857866881314e-02 5.3781098917150227e-01 1.3957000000000000e-01 1 0 0 0 0 P 717 -211 -5.1372912224366803e-02 -2.7488916297711271e-04 -4.2102787807032027e-01 4.4652380752526610e-01 1.3957000000000000e-01 1 0 0 0 0 V -192 0 0 0 0 0 0 3 0 P 718 211 -8.7382237376242189e-01 3.7657966634866380e-01 -1.3110793634052378e+00 1.6259725299162187e+00 1.3957000000000000e-01 1 0 0 0 0 P 719 -211 -1.0125062929395157e-01 9.0555796707178129e-02 -3.4464398578057370e-01 3.9586778611603807e-01 1.3957000000000000e-01 1 0 0 0 0 P 720 111 -7.3185047844989493e-01 7.1349861196988340e-01 -9.5709378797778422e-01 1.4067457167078754e+00 1.3497999999999999e-01 2 0 0 -316 0 V -193 0 0 0 0 0 0 2 0 P 721 311 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -317 0 P 722 111 -4.3735940007636745e-03 2.8610802860542983e-01 -5.7775006045693067e-01 6.5870453552025587e-01 1.3497999999999999e-01 2 0 0 -318 0 V -194 0 0 0 0 0 0 2 0 P 723 -321 -7.3058336922678535e-01 3.6828292278446256e-01 -1.8483758402545671e+00 2.0807495229945880e+00 4.9359999999999998e-01 1 0 0 0 0 P 724 211 1.0203782526206066e-01 5.0599524205183308e-02 -1.1980733334304698e-01 2.1634604608537161e-01 1.3957000000000000e-01 1 0 0 0 0 V -195 0 0 0 0 0 0 3 0 P 725 211 -1.9244687765195546e-02 -5.5846414505067013e-02 -2.8146846630668193e-01 3.1967712218000111e-01 1.3957000000000000e-01 1 0 0 0 0 P 726 -211 -1.1662106886101029e-01 -1.2476710162427157e-02 -1.4624750329091718e-01 2.3371833286584207e-01 1.3957000000000000e-01 1 0 0 0 0 P 727 111 6.5681072522825873e-02 6.1873372150947674e-02 -5.0443108394447089e-01 5.2991757502320325e-01 1.3497999999999999e-01 2 0 0 -319 0 V -196 0 -2.6141669810956234e-04 1.3337508641920635e-03 -2.3638812190598648e-03 2.7294902212951304e-03 0 2 0 P 728 22 -2.5093294579819070e-01 1.4196115602350956e+00 -2.4966820121441597e+00 2.8829993747838918e+00 0 1 0 0 0 0 P 729 22 -3.7634545430536646e-02 5.2662948575144711e-02 -1.1271240634443769e-01 1.2997627362847877e-01 0 1 0 0 0 0 V -197 0 -2.1077989261317591e-04 1.2026684798499318e-04 -4.2835897012649432e-04 4.9516369455302107e-04 0 2 0 P 730 22 -1.3951903810115664e-02 2.1117659271192780e-02 -1.1515458701096574e-01 1.1790330810747897e-01 0 1 0 0 0 0 P 731 22 -5.2339670079952894e-01 2.8548285249648703e-01 -9.7687602376422766e-01 1.1444349397334808e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 2 0 P 732 22 3.5757089882951915e-01 2.4772873070092391e-01 -3.5692145445703738e-01 5.6268943153054551e-01 0 1 0 0 0 0 P 733 111 -1.2919610137817347e-01 1.4085438121351737e-01 2.5380756729279053e-01 3.4520931466784982e-01 1.3497999999999999e-01 2 0 0 -320 0 V -199 0 0 0 0 0 0 2 0 P 734 211 -4.3106591006983497e-02 -3.7065924885810508e-02 -2.7575413806711907e-01 3.1424861262545561e-01 1.3957000000000000e-01 1 0 0 0 0 P 735 111 1.3637940678183183e-01 2.8527442403746212e-01 -1.1786966218819819e+00 1.2278135715327738e+00 1.3497999999999999e-01 2 0 0 -321 0 V -200 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 3 0 P 736 -12 5.2789876881363484e-01 2.0340254868890275e+00 8.2724622219022539e+00 8.5351958386570779e+00 0 1 0 0 0 0 P 737 11 -5.6374371309688553e-01 8.7193398546285685e+00 2.0856832975795843e+01 2.2613097455123551e+01 5.1000000000000004e-04 1 0 0 0 0 P 738 413 -1.1851669850552287e+00 4.8972555150950283e+00 1.8464297982610198e+01 1.9244691017348565e+01 2.0099999999999998e+00 2 0 0 -322 0 V -201 0 0 0 0 0 0 2 0 P 739 130 3.8387589363753477e-01 2.4179166810288757e-01 5.7730529452257273e-01 8.8700662030437361e-01 4.9767000000000000e-01 1 0 0 0 0 P 740 310 4.3452441792447183e-01 2.7807825427078620e-01 3.3502481316908406e-01 7.9123703124276779e-01 4.9767000000000000e-01 2 0 0 -323 0 V -202 0 0 0 0 0 0 1 0 P 741 130 4.1630520101529572e-01 5.8280761748316545e-01 8.0723469819054749e-01 1.1883930436735035e+00 4.9767000000000000e-01 1 0 0 0 0 V -203 0 0 0 0 0 0 3 0 P 742 211 1.6371395499549429e-01 1.3799703208585359e-01 3.4166291513822861e-01 4.2668345691568971e-01 1.3957000000000000e-01 1 0 0 0 0 P 743 -211 1.3127426847814982e-01 5.5004395009911300e-01 -2.7229871254133099e-02 5.8309736013261593e-01 1.3957000000000000e-01 1 0 0 0 0 P 744 111 2.0388454384074653e-01 5.8146231979372531e-01 2.0729318241171923e-01 6.6397093342361613e-01 1.3497999999999999e-01 2 0 0 -324 0 V -204 0 0 0 0 0 0 2 0 P 745 -211 1.8888492056969808e-01 8.9366955778243440e-01 6.0226454118849659e-01 1.1029619912756121e+00 1.3957000000000000e-01 1 0 0 0 0 P 746 111 2.4017412687330649e-02 -2.1435346206167379e-02 2.2440921675275932e-01 2.6384731786159721e-01 1.3497999999999999e-01 2 0 0 -325 0 V -205 0 0 0 0 0 0 3 0 P 747 -211 1.1983366551152229e-01 9.5959234333921728e-02 2.4535475543698013e-01 3.2132074778859243e-01 1.3957000000000000e-01 1 0 0 0 0 P 748 211 4.6333421567019661e-01 5.5256491155297183e-01 3.9993481796486718e-01 8.3632184020916933e-01 1.3957000000000000e-01 1 0 0 0 0 P 749 111 1.4451372130644879e-01 6.4802246537952479e-01 8.8493269066726865e-01 1.1145146022793990e+00 1.3497999999999999e-01 2 0 0 -326 0 V -206 0 0 0 0 0 0 2 0 P 750 2212 3.0476044701243760e-01 9.7486023435221258e-01 1.6254191575051451e+00 2.1367193163982039e+00 9.3827000000000005e-01 1 0 0 0 0 P 751 211 2.1747441001619047e-01 3.9640347815930932e-01 7.9583338102277257e-01 9.2588411356866129e-01 1.3957000000000000e-01 1 0 0 0 0 V -207 0 0 0 0 0 0 3 0 P 752 211 1.0938635831903422e-01 5.3399377677129378e-01 9.9098761067979624e-01 1.1395836776812933e+00 1.3957000000000000e-01 1 0 0 0 0 P 753 -211 -3.4221145252139534e-01 6.5231410534757162e-01 7.3102074390704452e-01 1.0471358475358461e+00 1.3957000000000000e-01 1 0 0 0 0 P 754 111 -1.9946306655298937e-02 8.8903070904403914e-02 2.7415072057911816e-01 3.1887274759607542e-01 1.3497999999999999e-01 2 0 0 -327 0 V -208 0 0 0 0 0 0 2 0 P 755 2212 -2.0642284002552516e+00 6.6192322313593333e-01 7.4717496296119865e+00 7.8362347056640589e+00 9.3827000000000005e-01 1 0 0 0 0 P 756 -211 -1.4504027733549557e-01 3.2569093224421847e-01 1.5136406584970599e+00 1.5613132591991521e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 0 0 0 0 0 2 0 P 757 211 -8.5574836270580845e-01 -4.2339194968383814e-02 2.2426052888166734e+00 2.4047569802441071e+00 1.3957000000000000e-01 1 0 0 0 0 P 758 111 -3.4659573166908808e-01 5.4423641133436573e-01 2.1672587558767504e+00 2.2652929143838727e+00 1.3497999999999999e-01 2 0 0 -328 0 V -210 0 0 0 0 0 0 2 0 P 759 -2112 -3.1169214918820951e+00 9.0180822065914890e-01 1.0277411577162814e+01 1.0818338050028995e+01 9.3957000000000002e-01 1 0 0 0 0 P 760 111 -5.8012724601767185e-01 2.6851927713209996e-02 2.7463109523762261e+00 2.8102868350286911e+00 1.3497999999999999e-01 2 0 0 -329 0 V -211 0 0 0 0 0 0 3 0 P 761 -211 -2.0371181166429844e-01 -1.9789653206614738e-01 7.7496179437481583e-01 8.3708249728207351e-01 1.3957000000000000e-01 1 0 0 0 0 P 762 211 -2.2457723607923327e-01 -8.9662759096642133e-02 2.1892944561100824e-01 3.5480168036433196e-01 1.3957000000000000e-01 1 0 0 0 0 P 763 111 -1.9989952165264055e-01 -1.2967422871890225e-01 3.9269882574562776e-01 4.7875587985192580e-01 1.3497999999999999e-01 2 0 0 -330 0 V -212 0 0 0 0 0 0 3 0 P 764 -211 -5.1581980770696001e-01 -5.0670093101733671e-01 1.9864555893690581e+00 2.1185611865018799e+00 1.3957000000000000e-01 1 0 0 0 0 P 765 211 -1.3776053580202488e-01 -7.4065490121150623e-01 1.7948910881899671e+00 1.9515792198311734e+00 1.3957000000000000e-01 1 0 0 0 0 P 766 111 -5.3274912987415643e-02 -1.8156841009759669e-01 1.1065483234686477e+00 1.1306962883420379e+00 1.3497999999999999e-01 2 0 0 -331 0 V -213 0 1.5539002510808453e-01 1.6047662591609438e-01 7.7433447309687697e-01 8.6154142389706978e-01 0 3 0 P 767 14 1.3542298632384597e+00 1.1730433012959607e+00 6.1953799181086922e+00 6.4492403768898745e+00 0 1 0 0 0 0 P 768 -13 -5.1160863814198487e-01 3.4192174660539071e-01 -6.1704657208541597e-02 6.2739571224578916e-01 1.0566000000000000e-01 1 0 0 0 0 P 769 -4122 2.0354176946805360e+00 1.4572847781718568e+00 8.2080738246522529e+00 8.8803067535672149e+00 2.2848999999999999e+00 2 0 0 -332 0 V -214 0 -1.1025063030676446e-06 -6.3212614260567382e-05 -5.7150084038136259e-05 8.9908222188673812e-05 0 2 0 P 770 22 2.4222704833967035e-02 -1.6176115619173628e-01 -2.2375127948283796e-01 2.7716068651987408e-01 0 1 0 0 0 0 P 771 22 -2.9418625489288239e-02 -1.3614891216746625e-01 -4.5587137250799006e-02 1.4656114387103644e-01 0 1 0 0 0 0 V -215 0 0 0 0 0 0 1 0 P 772 130 2.6983683869722913e-01 -1.5159925097498428e-01 -4.0889294389148052e+00 4.1307158747290327e+00 4.9767000000000000e-01 1 0 0 0 0 V -216 0 -6.6213235350023479e-06 -4.6938977215908410e-05 -2.8300158772139180e-04 2.8723459205034450e-04 0 2 0 P 773 22 -1.0818085846023998e-01 -3.7592288424370218e-01 -2.1667898009046844e+00 2.2018172390868092e+00 0 1 0 0 0 0 P 774 22 3.8959056125160055e-02 -1.1479480769117467e-01 -7.9181505539116770e-01 8.0104103382481906e-01 0 1 0 0 0 0 V -217 0 0 0 0 0 0 1 0 P 775 310 2.9320850883353289e-01 -1.0103740143698312e+00 -6.5078540383624395e+00 6.6111017608335532e+00 4.9767000000000000e-01 2 0 0 -333 0 V -218 0 1.4245287088867465e+02 -2.3546605886499375e+01 -9.2299962501330299e+02 9.3507162713582352e+02 0 2 0 P 776 22 3.6298899195536843e-01 -1.2780701264563596e-01 -3.0648537786927377e+00 3.0889196048989889e+00 0 1 0 0 0 0 P 777 22 2.1386687311387906e-01 -5.7097490804054074e-02 -1.1153104859404637e+00 1.1370649246724569e+00 0 1 0 0 0 0 V -219 0 2.9846733456883846e-05 -1.1460275031417437e-05 -3.2109839798904371e-04 3.2278695373675194e-04 0 2 0 P 778 22 4.0937856712880083e-02 -1.8395083840243558e-02 -9.7314222463659472e-01 9.7417661468154415e-01 0 1 0 0 0 0 P 779 22 4.5849003389605375e-01 -1.7337065806271021e-01 -4.3998241610229165e+00 4.4270445157215335e+00 0 1 0 0 0 0 V -220 0 2.7620791860314485e-05 -1.2726029124610677e-05 -1.0950846849893384e-04 1.1400554812643258e-04 0 2 0 P 780 22 1.9170020874489344e-01 -3.7526851095076620e-02 -8.6736071536113934e-01 8.8908483573713926e-01 0 1 0 0 0 0 P 781 22 2.2435098732249253e-01 -1.5416496082904310e-01 -7.8216220667902303e-01 8.2817746782739565e-01 0 1 0 0 0 0 V -221 0 1.4232230957031980e-04 -1.3229068399108764e-04 -3.1100705511747065e-03 3.1162417280029705e-03 0 2 0 P 782 22 1.8821191777645830e-03 -1.0624938036040333e-02 -5.8930525249932308e-02 5.9910253605721837e-02 0 1 0 0 0 0 P 783 22 7.4184119616070920e-01 -6.8067684299382591e-01 -1.6193138375538702e+01 1.6224406915947753e+01 0 1 0 0 0 0 V -222 0 5.3202593658642071e-05 -1.2394578331143994e-04 -4.3031977633175731e-03 4.3053512147986856e-03 0 2 0 P 784 22 1.8623025374401256e-01 -5.9851547263261962e-01 -1.9734631609981161e+01 1.9744583744917431e+01 0 1 0 0 0 0 P 785 22 2.0038633717226426e-01 -3.0218302544770037e-01 -1.1536168080103931e+01 1.1541864807621115e+01 0 1 0 0 0 0 V -223 0 4.5731222582718309e-05 -5.8845969446886034e-06 -2.1389554580480852e-03 2.1394871686345254e-03 0 2 0 P 786 22 5.0833948905464521e-01 -7.1507022776317944e-02 -2.2477551667824812e+01 2.2483412803001496e+01 0 1 0 0 0 0 P 787 22 -2.5082270336640221e-03 6.4177264288920750e-03 -1.1813508859852122e+00 1.1813709807818249e+00 0 1 0 0 0 0 V -224 0 -4.5262390034241044e-06 -1.2542576838461570e-04 -9.2927766205838178e-03 9.2936397423721336e-03 0 2 0 P 788 22 -8.3115835698499507e-02 -7.0466409110965866e-01 -5.3609230535461286e+01 5.3613925973833304e+01 0 1 0 0 0 0 P 789 22 4.7253776718648950e-02 -2.8910276477210162e-01 -2.0018808770868578e+01 2.0020951973685410e+01 0 1 0 0 0 0 V -225 0 -2.2776807598283265e-05 -2.0436888435102839e-05 -1.1085812645199346e-03 1.1092709597243077e-03 0 2 0 P 790 22 -6.3780508770300046e-02 -1.2098310582457925e-01 -5.1599236826014483e+00 5.1617358781194174e+00 0 1 0 0 0 0 P 791 22 -6.2450016427773883e-02 7.7205623603267721e-03 -9.8390462350601349e-01 9.8591476294429126e-01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 2 0 P 792 211 -1.0235376162171228e+00 3.1734928596535456e-01 -5.8361755735399235e+01 5.8371759885448199e+01 1.3957000000000000e-01 1 0 0 0 0 P 793 -211 -3.3636198759072294e-01 -1.9707884197740752e-01 -3.2360278312590836e+01 3.2362927427998351e+01 1.3957000000000000e-01 1 0 0 0 0 V -227 0 0 0 0 0 0 1 0 P 794 310 -2.8427989765335598e-01 2.9586851592413749e-01 -2.6675291561612994e+01 2.6683088437526987e+01 4.9767000000000000e-01 2 0 0 -334 0 V -228 0 -5.2040475589254329e-05 8.3365719413675752e-05 -4.5521752073762207e-03 4.5532499555197082e-03 0 2 0 P 795 22 -1.7841561109230558e-01 2.1141720593765087e-01 -1.4785094207683306e+01 1.4787682039296032e+01 0 1 0 0 0 0 P 796 22 -4.4249912139306424e-01 7.8325094000222339e-01 -3.9528641766285716e+01 3.9538877164062157e+01 0 1 0 0 0 0 V -229 0 -3.4983584693956239e-06 -3.4600518515421719e-06 -4.4029767209097606e-04 4.4033376696501147e-04 0 2 0 P 797 22 6.9158440264726019e-03 -4.5981979221847553e-02 -6.9999171663317412e+00 7.0000716072635685e+00 0 1 0 0 0 0 P 798 22 -1.7847709070367865e-01 -1.2370069178267711e-01 -1.4592500590116600e+01 1.4594116259835911e+01 0 1 0 0 0 0 V -230 0 -2.1185596401957264e-05 2.3777767507321799e-05 -3.3805546997008138e-03 3.3807077978460051e-03 0 2 0 P 799 22 -2.2527771341923214e-01 3.3557756724586918e-01 -3.8682630051541970e+01 3.8684741566362575e+01 0 1 0 0 0 0 P 800 22 -3.9986205231549055e-01 3.6605139458258229e-01 -6.1070010040720931e+01 6.1072416111188147e+01 0 1 0 0 0 0 V -231 0 3.1374251779468288e-04 5.1333412122805185e-04 -8.3330836190231433e-03 8.3548177028603850e-03 0 2 0 P 801 22 1.0154526158385728e+00 1.7809979968601379e+00 -2.8396046902343294e+01 2.8469959212473647e+01 0 1 0 0 0 0 P 802 22 5.3095531078502622e-01 7.4917853022729819e-01 -1.2676953506570507e+01 1.2710166490646555e+01 0 1 0 0 0 0 V -232 0 3.2418951948122134e-04 8.9224705919179595e-05 -1.1490648259355049e-03 1.2000821651574961e-03 0 2 0 P 803 22 1.1334115210787986e-01 3.5108832753341750e-02 -6.3011079379772095e-01 6.4118519895490234e-01 0 1 0 0 0 0 P 804 22 4.1781071488076893e-01 1.1107685889493671e-01 -1.2525161602237938e+00 1.3250285256072416e+00 0 1 0 0 0 0 V -233 0 3.2280344878106937e-05 1.8989235314321669e-05 -1.7492277077795025e-05 4.8034446843541831e-05 0 2 0 P 805 22 4.4361371407468035e-02 -2.6052691519744244e-02 5.8169906449322129e-03 5.1773655354219565e-02 0 1 0 0 0 0 P 806 22 1.3371116265615265e-01 1.3080563840182718e-01 -1.0231205962725026e-01 2.1320541175528285e-01 0 1 0 0 0 0 V -234 0 1.1730274585080435e-03 3.0760566107124665e-04 -6.1393518969237381e-04 1.3610736182918337e-03 0 2 0 P 807 22 1.1527787319270966e+00 3.6975293419412225e-01 -5.9287718131384148e-01 1.3480057081671624e+00 0 1 0 0 0 0 P 808 22 1.0885913614801508e+00 2.1800664831792743e-01 -5.8020360506176283e-01 1.2526748478063614e+00 0 1 0 0 0 0 V -235 0 1.1676976940195673e-04 9.1347200521171293e-07 -4.9502891492465910e-05 1.2788611650850438e-04 0 2 0 P 809 22 3.2753680444895966e-01 4.7936158513524889e-02 -1.8928139243419759e-01 3.8132096596371212e-01 0 1 0 0 0 0 P 810 22 6.3470048663277934e-01 -4.0408723696485731e-02 -2.1864549184742413e-01 6.7252020325627970e-01 0 1 0 0 0 0 V -236 0 1.5467853040040000e-04 4.6371863200962329e-05 -5.9513103879029088e-05 1.7237983701183076e-04 0 2 0 P 811 22 6.6216807853574544e-01 1.3720414175109252e-01 -2.7054530355066719e-01 7.2834490594683055e-01 0 1 0 0 0 0 P 812 22 1.4555279509986538e+00 4.9767071986406725e-01 -5.4424562744438343e-01 1.6316988277683746e+00 0 1 0 0 0 0 V -237 0 4.2051135775234798e+01 1.4890554307126880e+01 3.5098904524876879e+01 6.3182659575602742e+01 0 2 0 P 813 -2112 1.4006483726126788e+00 3.9723656595970552e-01 1.1216362627684342e+00 2.0640911907895796e+00 9.3957000000000002e-01 1 0 0 0 0 P 814 111 2.8997547288041525e-01 2.0142327330828716e-01 2.8948008038130046e-01 4.7610442892290927e-01 1.3497999999999999e-01 2 0 0 -335 0 V -238 0 9.3356066077004371e+01 8.4146357984397397e+00 8.9201941856696777e+01 1.4555835167131369e+02 0 2 0 P 815 2212 1.3253483353058928e+00 2.1835605218306284e-01 1.2947460197862553e+00 2.0882876775184553e+00 9.3827000000000005e-01 1 0 0 0 0 P 816 -211 2.3704708173960035e-01 -7.7529762472601432e-02 1.9812649514495329e-01 3.4775864620271046e-01 1.3957000000000000e-01 1 0 0 0 0 V -239 0 -3.2560440868836392e-05 -5.0814284137425978e-06 8.4745367948308313e-05 9.6529159646490198e-05 0 2 0 P 817 22 2.7325187650949191e-02 -8.3362091158294873e-03 6.3384997885245153e-02 6.9525651521542428e-02 0 1 0 0 0 0 P 818 22 -1.6295175641178583e-01 -1.2829864861361057e-02 2.8961155764371527e-01 3.3255485964103088e-01 0 1 0 0 0 0 V -240 0 -2.5460187281650942e-05 -5.0445237123376777e-07 4.2337320058301156e-05 6.8185375995031237e-05 0 2 0 P 819 22 -6.5909248047458152e-02 -6.3015553245216668e-02 6.5859288486129597e-02 1.1248304231697034e-01 0 1 0 0 0 0 P 820 22 -7.2214796233492952e-03 6.1566586331678809e-02 5.5748576736716786e-02 8.3369647526279650e-02 0 1 0 0 0 0 V -241 0 9.1987932829855304e-06 5.9919680142673335e-06 2.5599088100306872e-05 2.9900574567059019e-05 0 2 0 P 821 22 5.0297393252790486e-02 2.3960753414232670e-02 1.5065153868665712e-02 5.7713987327944062e-02 0 1 0 0 0 0 P 822 22 6.3904674062649922e-02 5.0428909823773183e-02 3.0274487756801244e-01 3.1349855375541780e-01 0 1 0 0 0 0 V -242 0 3.5234721361046378e-05 1.5345303177435915e-05 5.5993119336883146e-05 6.8130664963560872e-05 0 2 0 P 823 22 1.9580959165147441e-01 6.8074222690016728e-02 4.0297966910470745e-01 4.5317558373030931e-01 0 1 0 0 0 0 P 824 22 6.7844341957746079e-01 3.1267740504744429e-01 9.8633607676890955e-01 1.2373000806316332e+00 0 1 0 0 0 0 V -243 0 1.3457905338265795e-05 5.9349608679609423e-06 5.0356897396611940e-05 5.2548743572695989e-05 0 2 0 P 825 22 2.1708643798852831e-01 1.4471713417188661e-01 7.2027270175243074e-01 7.6606940636682319e-01 0 1 0 0 0 0 P 826 22 3.8134489881294947e-01 1.1919217985632445e-01 1.5189424412270636e+00 1.5706103423033966e+00 0 1 0 0 0 0 V -244 0 5.5942703727465940e+01 3.3854246926069528e+01 1.2393406653737082e+02 1.4092294502365817e+02 0 2 0 P 827 -211 1.2705803251912671e+00 6.3771662122582295e-01 2.3266215800015786e+00 2.7301473610740992e+00 1.3957000000000000e-01 1 0 0 0 0 P 828 211 5.8992640916201222e-01 4.8818631509377391e-01 1.7950985022431929e+00 1.9565779984777958e+00 1.3957000000000000e-01 1 0 0 0 0 V -245 0 8.2543581876686644e-05 2.9307497127692206e-04 2.6507397802369594e-04 4.1517411212997889e-04 0 2 0 P 829 22 8.4103956588559695e-02 8.4234270308607084e-02 1.1221132402682753e-01 1.6358566272179087e-01 0 1 0 0 0 0 P 830 22 3.0820673419088871e-02 3.2381117517278662e-01 2.5684860960361316e-01 4.1445723462390738e-01 0 1 0 0 0 0 V -246 0 1.2787177398383809e-04 2.5707953096602539e-04 3.0607417163906372e-05 2.8898533936624259e-04 0 2 0 P 831 22 3.6748472566900886e-01 8.3844985460639654e-01 1.3851031371219824e-01 9.2586623725793460e-01 0 1 0 0 0 0 P 832 22 1.1200345809198622e+00 2.1521301125496684e+00 2.1754264885860972e-01 2.4358707453130184e+00 0 1 0 0 0 0 V -247 0 0 0 0 0 0 3 0 P 833 111 -1.6026925933656530e-01 7.2071644002458557e-01 -2.0792768287316670e-02 7.5084643038577026e-01 1.3497999999999999e-01 2 0 0 -336 0 P 834 111 -5.0876756402245399e-02 4.2627741462564583e-01 -1.7293134947176397e-01 4.8210551810995023e-01 1.3497999999999999e-01 2 0 0 -337 0 P 835 111 -4.3833264398179798e-02 6.4632008683301412e-01 5.7531365943293049e-02 6.6421417342521138e-01 1.3497999999999999e-01 2 0 0 -338 0 V -248 0 0 0 0 0 0 1 0 P 836 130 -4.6873322612327484e-01 5.9712001188300790e-01 -1.1534498646124672e-01 9.1500985823369241e-01 4.9767000000000000e-01 1 0 0 0 0 V -249 0 -1.5309709204332808e-04 7.5020154705971066e-05 -6.6366467019980083e-05 1.8362661363779828e-04 0 2 0 P 837 22 -1.0149370277003988e+00 5.5808572264323653e-01 -4.5656607044409331e-01 1.2449937432358060e+00 0 1 0 0 0 0 P 838 22 -2.9866702760312824e-01 8.5602397986591028e-02 -1.1287165727539183e-01 3.3055979025652227e-01 0 1 0 0 0 0 V -250 0 0 0 0 0 0 1 0 P 839 130 -2.9673614119385032e+00 -6.4108154959253183e-01 -3.8048605414111725e-01 3.0997845680926774e+00 4.9767000000000000e-01 1 0 0 0 0 V -251 0 -1.0318935482045665e-03 -2.9042326795738192e-04 1.7461242182603015e-04 1.0926368407786890e-03 0 2 0 P 840 22 -9.2035686570330733e-01 -2.5506419136661546e-01 2.1089329047432548e-01 9.7805443710041484e-01 0 1 0 0 0 0 P 841 22 -2.4784713783462745e-01 -7.3723235339075183e-02 -1.3215021626205144e-02 2.5891689005983859e-01 0 1 0 0 0 0 V -252 0 0 0 0 0 0 1 0 P 842 130 -9.3037240003419064e-01 -5.7736093836900670e-01 1.0335600975648254e-03 1.2027530723495141e+00 4.9767000000000000e-01 1 0 0 0 0 V -253 0 -2.4441081916731901e-05 -1.5236765520834219e-05 -6.1362970620362892e-05 7.7321375213801707e-05 0 2 0 P 843 22 2.3505993528966801e-04 -6.3486219494819099e-02 -3.4410309544218899e-02 7.2212358511867566e-02 0 1 0 0 0 0 P 844 22 -8.8925310197801491e-02 8.1960096817711749e-03 -1.8825975226861158e-01 2.0836655128095277e-01 0 1 0 0 0 0 V -254 0 -1.4728770941435592e-05 -1.6982257389399431e-05 -4.7006033408058894e-06 2.4164364535064062e-05 0 3 0 P 845 22 -1.1786485570226100e-01 -5.7371823414804575e-02 -1.4655102836030033e-02 1.3190307945908217e-01 0 1 0 0 0 0 P 846 11 -1.1709951964129536e-02 -6.1994936477857907e-02 -2.7018052506569443e-02 6.8634760764088060e-02 5.1000000000000004e-04 1 0 0 0 0 P 847 -11 -1.3494692647446568e-01 -1.8562652108998418e-01 -4.2747449211732909e-02 2.3344267564219032e-01 5.1000000000000004e-04 1 0 0 0 0 V -255 0 -2.4629848584412729e-04 -6.8237024693337215e-04 4.1396185486115835e-05 7.2943958619844300e-04 0 2 0 P 848 22 -2.6297068921948330e-01 -6.9498997674987750e-01 1.0900204018081097e-01 7.5103002332459678e-01 0 1 0 0 0 0 P 849 22 -2.5773759757798853e-01 -7.4763294894325694e-01 -2.1484909287577320e-02 7.9110384708833204e-01 0 1 0 0 0 0 V -256 0 -2.2511947936484594e+02 -6.9057698818996960e+02 -2.3843483004493274e+02 7.6711113684615998e+02 0 2 0 P 850 211 -1.5256786246630244e-01 -7.3707730971331531e-01 -2.9893255249059991e-01 8.2182745694598225e-01 1.3957000000000000e-01 1 0 0 0 0 P 851 -211 -1.6116083493019879e+00 -4.6747133465046922e+00 -1.5695910262289579e+00 5.1897323744146435e+00 1.3957000000000000e-01 1 0 0 0 0 V -257 0 0 0 0 0 0 1 0 P 852 310 5.6035574188484061e-01 -2.0392128838612300e+00 -1.6522167040370774e+00 2.7294474182823323e+00 4.9767000000000000e-01 2 0 0 -339 0 V -258 0 -1.6636599203987888e-05 -5.0736363728922024e-04 -2.3300901099390379e-04 5.6277330699441342e-04 0 2 0 P 853 22 3.8852844812819622e-02 -6.8563088990531007e-01 -3.2701465004002378e-01 7.6061675111924498e-01 0 1 0 0 0 0 P 854 22 -7.1518321765925513e-02 -3.1056280313877627e-01 -1.3049174205138855e-01 3.4437221111064531e-01 0 1 0 0 0 0 V -259 0 -2.0161730237963388e-06 -5.4823963114416943e-04 -3.1973576839625513e-04 6.3612296092570493e-04 0 2 0 P 855 22 2.1192891936431250e-02 -4.3441046299814247e-02 -3.2961033741190297e-02 5.8503785497519209e-02 0 1 0 0 0 0 P 856 22 -2.7518889347163230e-02 -1.6767300134975829e+00 -9.7025030730957906e-01 1.9374123170530422e+00 0 1 0 0 0 0 V -260 0 2.2808431188459821e-05 -1.5468511290612265e-06 2.3320891982778994e-05 3.3182752676239682e-05 0 2 0 P 857 22 3.3694553725398307e-01 2.7759409438693632e-02 2.7879372938133395e-01 4.3821093485913015e-01 0 1 0 0 0 0 P 858 22 1.8634183827045345e-01 -6.3248376696687675e-02 2.5625088897592518e-01 3.2309155969435327e-01 0 1 0 0 0 0 V -261 0 6.7047613533435595e-04 -2.7767405497033622e-04 1.6822686885139869e-03 1.8334803305070913e-03 0 2 0 P 859 22 6.0858153627457201e-01 -2.7675183906168849e-01 1.7090334708764614e+00 1.8351453542688083e+00 0 1 0 0 0 0 P 860 22 6.7372589889381984e-01 -2.5430883033000523e-01 1.5083601596316700e+00 1.6714454640185479e+00 0 1 0 0 0 0 V -262 0 3.1133065094344022e-06 -3.5672166914210433e-05 2.0481364950222680e-04 2.0818669726747424e-04 0 2 0 P 861 22 -4.4407908911827415e-02 -2.1471985073297389e-01 1.3431312567605396e+00 1.3609108161668264e+00 0 1 0 0 0 0 P 862 22 8.4317472644431055e-02 -2.4256266052268596e-01 1.2823806783303766e+00 1.3078403131223875e+00 0 1 0 0 0 0 V -263 0 9.9256431224609602e-06 -1.3506443835687757e-05 1.4727183819158424e-04 1.4832596146898620e-04 0 2 0 P 863 22 9.1116118605139143e-02 -1.4693351829066478e-01 9.9295926263477574e-01 1.0078986571670470e+00 0 1 0 0 0 0 P 864 22 1.5086627053669055e-01 -1.8234706412053464e-01 2.5974570780720860e+00 2.6082167003157171e+00 0 1 0 0 0 0 V -264 0 -3.4055907219440550e-04 -5.1409699309262942e-04 6.3711609331365210e-03 6.4020135300066573e-03 0 2 0 P 865 22 -1.0458261231646067e-01 -7.7940739711104670e-02 1.6272516170774798e+00 1.6324705531760508e+00 0 1 0 0 0 0 P 866 22 -2.8659539831145453e-01 -5.1256897048968397e-01 5.6908857126834791e+00 5.7211051438220473e+00 0 1 0 0 0 0 V -265 0 -2.0821188516168012e-04 -3.6950626617233143e-04 2.7462210975922664e-03 2.7810995072337155e-03 0 2 0 P 867 22 -1.8514102455630702e-01 -2.0995058890108451e-01 1.5502362632194822e+00 1.5753059768039905e+00 0 1 0 0 0 0 P 868 22 -6.2332761534925882e-02 -2.2923238378606328e-01 1.7138316449935593e+00 1.7302172598602004e+00 0 1 0 0 0 0 V -266 0 -3.1929630627935538e-05 -2.4607494690087748e-07 1.2249481961376372e-04 1.2734628910252509e-04 0 2 0 P 869 22 -9.3473099780500737e-02 -5.8483924187136611e-02 4.8878583962391553e-01 5.0106804606536048e-01 0 1 0 0 0 0 P 870 22 -2.1713220393424718e-01 5.6090154446754262e-02 7.0282019844682186e-01 7.3773215380382751e-01 0 1 0 0 0 0 V -267 0 -1.6216667998322888e-05 9.5114145856106836e-06 1.7159011641921894e-04 1.7269289371887083e-04 0 2 0 P 871 22 -2.7532893929005992e-01 1.4571638713678847e-01 2.2335375673415760e+00 2.2551561708708583e+00 0 1 0 0 0 0 P 872 22 -1.5214867980497307e-01 1.0500816748214542e-01 2.2896440402928104e+00 2.2970950714440921e+00 0 1 0 0 0 0 V -268 0 -6.0373765079165236e-05 -1.7035033464901506e-06 6.9879695176987527e-04 7.0140912711228690e-04 0 2 0 P 873 22 -2.7582512153528127e-01 2.4983114766870911e-02 2.9185292319388649e+00 2.9316405870050084e+00 0 1 0 0 0 0 P 874 22 -2.3420427738917002e+00 -9.8848753503852110e-02 2.7382017753359190e+01 2.7482172979516836e+01 0 1 0 0 0 0 V -269 0 0 0 0 0 0 2 0 P 875 22 -7.2784641599349664e-01 1.6347892126292610e-01 9.6187364022331998e+00 9.6476202111514500e+00 0 1 0 0 0 0 P 876 22 6.0095338697192739e-02 -6.0639451876187342e-02 2.9126662712934519e+00 2.9139171918205697e+00 0 1 0 0 0 0 V -270 0 -1.2046282003705710e-03 -2.1598151520952775e-04 2.3175417081835570e-02 2.3207782671173512e-02 0 2 0 P 877 22 -1.7484292480984354e+00 -2.4863290809372585e-01 3.3664986522403332e+01 3.3711276165582809e+01 0 1 0 0 0 0 P 878 22 -1.0228914029265463e+00 -2.4824574139804401e-01 1.9651474054603330e+01 1.9679643423828882e+01 0 1 0 0 0 0 V -271 0 -4.3199664384317626e-05 -1.5726601804299483e-05 1.0742935778790910e-03 1.0752958489763831e-03 0 2 0 P 879 22 -8.4422163521454918e-01 -3.4276788884063980e-01 2.1139825486980662e+01 2.1159452299503915e+01 0 1 0 0 0 0 P 880 22 -6.7171738412140136e-02 1.0980110431247640e-02 1.5247961521667597e+00 1.5263144862474922e+00 0 1 0 0 0 0 V -272 0 -2.7259832097029682e-04 -1.6331401850260349e-04 7.5124357592529362e-03 7.5191711680741395e-03 0 2 0 P 881 22 -9.4009172329775215e-01 -5.6756091980217294e-01 2.4405094015951359e+01 2.4429787386985673e+01 0 1 0 0 0 0 P 882 22 -1.3300800115297107e+00 -7.9250200129739601e-01 3.8157724638465154e+01 3.8189123082941585e+01 0 1 0 0 0 0 V -273 0 -7.4649699149567596e-04 -8.8244801865674019e-04 4.4779124972827787e-02 4.4794106075436713e-02 0 2 0 P 883 22 -6.2041210216911025e-01 -6.5015004834883772e-01 3.6322364020376810e+01 3.6333479523583335e+01 0 1 0 0 0 0 P 884 22 -6.8769095553393000e-01 -8.9618297726196638e-01 4.2145079205162148e+01 4.2160215416769958e+01 0 1 0 0 0 0 V -274 0 -2.3048093247887543e+01 -2.7209221810371712e+01 2.1451233087446112e+03 2.1455730961589211e+03 0 2 0 P 885 -211 -4.6962329981859241e-01 -4.7472930869957491e-01 3.6891592346200504e+01 3.6897899392559061e+01 1.3957000000000000e-01 1 0 0 0 0 P 886 211 2.2579855543220034e-02 -5.3023859570690106e-02 4.7154639088529180e+00 4.7178809904611381e+00 1.3957000000000000e-01 1 0 0 0 0 V -275 0 0 0 0 0 0 1 0 P 887 310 -1.5332284720095661e+00 -7.3599072342005045e-01 1.0689368317421160e+02 1.0690837034521651e+02 4.9767000000000000e-01 2 0 0 -340 0 V -276 0 -2.0742358053058935e-05 -4.1330129858050974e-05 7.0467076717831804e-03 7.0468712794656682e-03 0 2 0 P 888 22 -1.6395091195412573e-01 -3.5215417528597542e-01 6.5381347304466388e+01 6.5382501235513743e+01 0 1 0 0 0 0 P 889 22 -5.2450078105087297e-02 -7.9035036551928117e-02 8.1355842291134532e+00 8.1361371852185194e+00 0 1 0 0 0 0 V -277 0 0 0 0 0 0 1 0 P 890 310 -9.6081162732954584e-01 -9.9562049829036792e-01 1.5949685926772773e+02 1.5950363698316747e+02 4.9767000000000000e-01 2 0 0 -341 0 V -278 0 -7.6060643489322061e+01 2.5225525668586421e+01 2.1880647558996137e+04 2.1880975074618826e+04 0 2 0 P 891 -2112 -7.7296053634946738e-01 2.8555767491313833e-01 2.4701964509867653e+02 2.4702280637147143e+02 9.3957000000000002e-01 1 0 0 0 0 P 892 111 -1.8111360874936624e-01 3.0861181578707871e-02 2.7442404607605667e+01 2.7443351559161634e+01 1.3497999999999999e-01 2 0 0 -342 0 V -279 0 -4.9156246367559617e-06 1.0630604986608599e-05 1.2291853555520102e-03 1.2292449426310724e-03 0 2 0 P 893 22 -2.0561470510913502e-01 4.5875421447865466e-01 5.3895666823138804e+01 5.3898011421081613e+01 0 1 0 0 0 0 P 894 22 -1.1754095752828644e-02 1.1330877271006762e-02 4.5887944867643932e-01 4.5916978990814517e-01 0 1 0 0 0 0 V -280 0 9.6786614921279536e+01 4.4534613130733533e+01 3.0295605822173799e+04 3.0295897831981649e+04 0 2 0 P 895 2112 1.1030203682458994e+00 5.1213711306000176e-01 3.2803864686206975e+02 3.2804224661655689e+02 9.3957000000000002e-01 1 0 0 0 0 P 896 111 2.5288829983844435e-01 1.1175977622430570e-01 9.6380314092008675e+01 9.6380805178284447e+01 1.3497999999999999e-01 2 0 0 -343 0 V -281 0 2.0770238892031061e-05 -1.3462774836702399e-05 5.2670316414012291e-03 5.2670901439706361e-03 0 2 0 P 897 22 3.5093248305305175e-01 -1.6253369117553670e-01 8.4670517145396218e+01 8.4671400392796528e+01 0 1 0 0 0 0 P 898 22 1.1217637259150592e+00 -7.9203296389600342e-01 2.8878390343821638e+02 2.8878716826598401e+02 0 1 0 0 0 0 V -282 0 1.0238082450841965e-05 -2.4571049418997193e-05 1.7391939813641996e-02 1.7391961435069440e-02 0 2 0 P 899 22 1.3084472537439429e-01 -3.4839383069203578e-01 2.7836045233961778e+02 2.7836070111515392e+02 0 1 0 0 0 0 P 900 22 7.8629048239494292e-02 -1.5433609633911505e-01 7.7483064326885668e+01 7.7483257931259985e+01 0 1 0 0 0 0 V -283 0 -2.8565004162818603e+01 3.5053904027412123e+01 4.7434484519851345e+01 8.9872205634897313e+01 0 2 0 P 901 -2212 -5.2759088440406565e-01 5.3917194976469807e-01 8.1657801449255829e-01 1.4547194847708402e+00 9.3827000000000005e-01 1 0 0 0 0 P 902 211 9.3890159597829117e-03 9.6745988833604343e-02 4.3937823935834321e-02 1.7566518507746870e-01 1.3957000000000000e-01 1 0 0 0 0 V -284 0 0 0 0 0 0 3 0 P 903 211 -1.7702576219980706e-01 -1.3705752951796274e-01 -3.8279050796732076e+02 3.8279059888214499e+02 1.3957000000000000e-01 1 0 0 0 0 P 904 -211 -7.4847718900170765e-02 3.8577069183974343e-03 -2.1372367292116817e+02 2.1372373163446846e+02 1.3957000000000000e-01 1 0 0 0 0 P 905 111 -4.4443364177164636e-02 -2.5723967856667973e-01 -6.5724077362695914e+02 6.5724083933123711e+02 1.3497999999999999e-01 2 0 0 -344 0 V -285 0 -5.1020597058681466e-06 -1.4943294257401051e-05 1.8715204884273446e-04 1.8932712630295866e-04 0 2 0 P 906 22 -6.4505944881040597e-02 -5.6936247758118411e-02 3.3408327975050606e-01 3.4498462435683214e-01 0 1 0 0 0 0 P 907 22 3.5648791445387573e-02 -2.7582742626091523e-02 7.2444517749981119e-01 7.2584602997125147e-01 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 908 130 -1.4927996013488725e+00 -3.1739958873707157e+00 7.6958977941717057e+00 8.4721436974398934e+00 4.9767000000000000e-01 1 0 0 0 0 V -287 0 1.1426341914165622e-05 -6.2014968914783292e-05 1.7403340348036157e-04 1.8770656766379430e-04 0 2 0 P 909 22 -1.0974945418380566e-02 1.8244432087845762e-03 1.2972255346058906e-01 1.3019876687700960e-01 0 1 0 0 0 0 P 910 22 6.0503445278441814e-02 -2.7063386640744580e-01 6.2464078212602114e-01 6.8343212042763390e-01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 911 310 -9.8302742697515999e-01 -4.9157325530761682e+00 1.0166148742261852e+01 1.1345881417247863e+01 4.9767000000000000e-01 2 0 0 -345 0 V -289 0 1.7473524061948817e-03 6.6527978288059538e-03 8.0409138774221577e-03 1.0582204597763609e-02 0 2 0 P 912 22 4.7411895368727158e-01 2.0298665173506012e+00 2.4108497250210847e+00 3.1870587156719927e+00 0 1 0 0 0 0 P 913 22 1.5337230853116481e+00 5.6147088472296023e+00 6.8287775292291828e+00 8.9727066421053614e+00 0 1 0 0 0 0 V -290 0 1.5120993512337076e-05 -2.7416240207690077e-06 4.4256433836536727e-05 4.8168996166601611e-05 0 2 0 P 914 22 2.4309127266708440e-02 -6.3590662674816972e-02 1.4659122337200442e-01 1.6162825501004549e-01 0 1 0 0 0 0 P 915 22 1.5791182243890234e-01 3.0551740173286886e-02 3.8673678828923613e-01 4.1884949075994465e-01 0 1 0 0 0 0 V -291 0 -1.1650565686996588e-05 -5.0563567729887177e-07 6.9856217868934289e-06 1.4040648917851959e-05 0 2 0 P 916 22 -4.0726444942087192e-01 -2.0843544527645422e-02 2.8308069458340152e-01 4.9642065303166316e-01 0 1 0 0 0 0 P 917 22 -4.0233097404840171e-02 1.4221077272549131e-03 -1.4763370200080159e-02 4.2879850942370235e-02 0 1 0 0 0 0 V -292 0 0 0 0 0 0 1 0 P 918 310 -2.2900018190639690e-01 -7.0511515310625411e-02 1.5565744384069131e+00 1.6516695699522832e+00 4.9767000000000000e-01 2 0 0 -346 0 V -293 0 4.7647266552619476e-06 -3.1562930257665902e-05 7.7457652140019450e-05 8.4211645019772983e-05 0 2 0 P 919 22 3.7405343459637842e-02 -5.4805959234604421e-02 2.6639557343031572e-01 2.7453497851863123e-01 0 1 0 0 0 0 P 920 22 3.7872903909815264e-02 -4.4385896816840237e-01 9.5736325269543465e-01 1.0559306502255077e+00 0 1 0 0 0 0 V -294 0 2.5148602923739737e-05 -6.1497135894535951e-05 2.1835628907681580e-04 2.3818986191187548e-04 0 2 0 P 921 22 -4.5954732311484864e-02 -2.6254673225945855e-02 1.1007221206087654e-01 1.2213532312969910e-01 0 1 0 0 0 0 P 922 22 9.5785390410118715e-02 -9.5598726030403175e-02 3.2258949951285026e-01 3.4982558887337872e-01 0 1 0 0 0 0 V -295 0 0 0 0 0 0 1 0 P 923 130 -1.0383708489463972e-01 -8.2030563859832331e-02 2.0361565545888203e+00 2.1002666729017041e+00 4.9767000000000000e-01 1 0 0 0 0 V -296 0 2.7397167945153826e-05 -2.5996656628945844e-05 1.0107116948448486e-04 1.0848923324317046e-04 0 2 0 P 924 22 2.8553198575482930e-01 -2.0306568196961436e-01 8.1846904597303827e-01 8.9031217294772291e-01 0 1 0 0 0 0 P 925 22 4.1204815941718750e-02 -1.0696871497058512e-01 3.8689899524933041e-01 4.0352320300596178e-01 0 1 0 0 0 0 V -297 0 -1.9021712960005189e-04 2.5053376156151979e-04 1.0617337653872511e-04 3.3609591955199419e-04 0 2 0 P 926 22 -3.1991644498803552e-03 1.4625840004435262e-02 2.8553291276627726e-02 3.2240351917134279e-02 0 1 0 0 0 0 P 927 22 -4.8748897794282281e-01 6.3165636562950467e-01 2.4533380298711530e-01 8.3475981140932598e-01 0 1 0 0 0 0 V -298 0 0 0 0 0 0 1 0 P 928 310 -6.0997187080431600e-02 1.4159479338799311e-01 -3.4465356110251257e+01 3.4469293827661744e+01 4.9767000000000000e-01 2 0 0 -347 0 V -299 0 5.1407163750731094e+01 2.5607409054293311e+02 -1.6693138507667198e+04 1.6698065813774618e+04 0 2 0 P 929 2212 1.0332169210238297e-01 8.3196253669975118e-01 -5.1497409226270946e+01 5.1512778459770999e+01 9.3827000000000005e-01 1 0 0 0 0 P 930 -211 9.9306357546262894e-02 6.8044341342442402e-02 -5.8614926575018185e+00 5.8643898014955962e+00 1.3957000000000000e-01 1 0 0 0 0 V -300 0 0 0 0 0 0 1 0 P 931 130 7.7982443973460183e-03 -2.9450476776396667e-01 -6.6778791235494438e+01 6.6781295496370092e+01 4.9767000000000000e-01 1 0 0 0 0 V -301 0 -8.0042678428211321e-06 -1.8386117415953774e-05 -9.9705439808562245e-04 9.9727031981361436e-04 0 2 0 P 932 22 -1.3438374857015975e-01 -1.7695908583871722e-01 -8.8786249752792301e+00 8.8814050105595772e+00 0 1 0 0 0 0 P 933 22 -6.7995226354006608e-02 -2.8791336327770584e-01 -1.6330782179826780e+01 1.6333461484342770e+01 0 1 0 0 0 0 V -302 0 -5.5181380595337203e-04 -3.8283544104602783e-05 -6.1230171062820245e-03 6.1487148773440407e-03 0 2 0 P 934 22 -4.8146927300960679e-01 5.6967131604799496e-03 -4.7054047819303149e+00 4.7299766675117869e+00 0 1 0 0 0 0 P 935 22 -2.8709770664452067e-01 -5.9018082697610386e-02 -3.8227413299909605e+00 3.8339613330427458e+00 0 1 0 0 0 0 V -303 0 -1.3583544213340550e-05 -7.8297919951317346e-06 -4.0794947295389052e-05 4.3844723359736092e-05 0 2 0 P 936 22 -4.6756386452440984e-01 -3.0411020457571242e-01 -1.4811490416570794e+00 1.5826880512399679e+00 0 1 0 0 0 0 P 937 22 -5.4937933375561167e-02 2.9310476203991309e-03 -8.8060950396482804e-02 1.0383399514832536e-01 0 1 0 0 0 0 V -304 0 0 0 0 0 0 1 0 P 938 130 -9.7811384601212092e-01 -5.3446812060206106e-01 -2.4465449489944255e+00 2.7341580941947483e+00 4.9767000000000000e-01 1 0 0 0 0 V -305 0 8.4270410009109473e-05 -1.5282152110252504e-04 -5.7214786592775860e-04 6.0100443463952081e-04 0 2 0 P 939 22 1.6672634622193541e-03 -6.8935936478635343e-02 -3.7548750321875263e-01 3.8176669338627695e-01 0 1 0 0 0 0 P 940 22 1.9348878395425237e-01 -2.8497291498319782e-01 -9.4951039390979730e-01 1.0100581468078234e+00 0 1 0 0 0 0 V -306 0 0 0 0 0 0 3 0 P 941 211 1.1940709547935929e-01 -3.9857347140590033e-01 4.4132518687920630e-01 6.2238779875037176e-01 1.3957000000000000e-01 1 0 0 0 0 P 942 -211 9.3742317944053979e-02 -2.9980940806541312e-01 7.8610410942323372e-01 8.5797013881029272e-01 1.3957000000000000e-01 1 0 0 0 0 P 943 111 -2.0070498142596849e-01 -3.1320652905021923e-02 4.0480407345289465e-01 4.7259857294711727e-01 1.3497999999999999e-01 2 0 0 -348 0 V -307 0 -4.5365314754085676e-06 -1.6502348190329954e-06 6.1663921801102811e-05 6.1947116665455408e-05 0 2 0 P 944 22 -1.3826475338131836e-01 -1.5469263796931062e-02 9.8796878230194385e-01 9.9771677090905986e-01 0 1 0 0 0 0 P 945 22 -4.0734751121617833e-02 -4.9644626963365121e-02 1.4451260849856513e+00 1.4465522149031564e+00 0 1 0 0 0 0 V -308 0 8.4289356170574945e-05 -1.8219820590146478e-04 5.8748755092418769e-03 5.8784653708103853e-03 0 2 0 P 946 22 1.2937568214962111e-01 -2.8459962124924043e-01 1.1077686032416693e+01 1.1082096500407616e+01 0 1 0 0 0 0 P 947 22 1.3219154229723892e-01 -2.8079891994261341e-01 7.1532621054892163e+00 7.1599917169731313e+00 0 1 0 0 0 0 V -309 0 3.5654602612392546e-04 -3.5501650276758553e-04 1.5000284147039127e-02 1.5008760052095787e-02 0 2 0 P 948 22 1.2480205652502749e+00 -1.2077393450899871e+00 5.2732508874886129e+01 5.2761100082323061e+01 0 1 0 0 0 0 P 949 22 1.4591473761138535e-01 -1.8021620636024488e-01 5.9118850980995958e+00 5.9164308839721214e+00 0 1 0 0 0 0 V -310 0 1.8922143278185338e+01 -7.0018047950276303e+00 2.2088172583264977e+03 2.2091469631881050e+03 0 2 0 P 950 211 8.0643002987568227e-02 -7.3930508176365067e-02 2.6703213733648738e+01 2.6703802585096316e+01 1.3957000000000000e-01 1 0 0 0 0 P 951 -211 2.1003348914368805e-01 -3.3629191931857871e-02 7.2279981259254988e+00 7.2324741052004038e+00 1.3957000000000000e-01 1 0 0 0 0 V -311 0 2.6456249005230166e+01 -5.5272665161543442e+00 6.4979904573425415e+02 6.5101035475285687e+02 0 2 0 P 952 -211 -4.3862399616636148e-02 -7.1168733468254114e-02 2.8087124199423399e+00 2.8134203634654313e+00 1.3957000000000000e-01 1 0 0 0 0 P 953 211 4.9674997414702105e-01 -2.3449000352941961e-02 8.3147810766817418e+00 8.3308087560858937e+00 1.3957000000000000e-01 1 0 0 0 0 V -312 0 3.1283609350318249e-05 3.3336899057466001e-04 6.7198427867847738e-03 6.7283139910677501e-03 0 2 0 P 954 22 2.2579253038535517e-03 3.0528518726289949e-01 7.2766499386810377e+00 7.2830514534702804e+00 0 1 0 0 0 0 P 955 22 9.7036026240362908e-02 7.5282559611216215e-01 1.4052082835850042e+01 1.4072568862654093e+01 0 1 0 0 0 0 V -313 0 8.6185055720059116e-05 3.5178227959469600e-04 3.1862847268232437e-03 3.2073775324804664e-03 0 2 0 P 956 22 1.2644973486924255e-01 3.3751957683611428e-01 2.7062320925696590e+00 2.7301284107254165e+00 0 1 0 0 0 0 P 957 22 6.5276156515426453e-02 4.4504963502002309e-01 4.3819257597592669e+00 4.4049521584556075e+00 0 1 0 0 0 0 V -314 0 3.7029737401236308e-04 5.6173504031397439e-06 7.4422993466978873e-04 8.3782894898173249e-04 0 2 0 P 958 22 1.2548167630820636e-01 6.1869341446147766e-02 2.8109216541694382e-01 3.1398450910655451e-01 0 1 0 0 0 0 P 959 22 3.5266440077516109e-01 -5.4615943913886932e-02 6.7989391950865330e-01 7.6786120014527848e-01 0 1 0 0 0 0 V -315 0 -2.9699310805883544e-05 6.7379361730387607e-05 -5.5587210924202971e-05 9.3123121674526489e-05 0 2 0 P 960 22 -2.8726348449596911e-01 5.1810958382788452e-01 -4.7002875297558383e-01 7.5623070487970401e-01 0 1 0 0 0 0 P 961 22 -2.9710219652265394e-02 2.0101437195743821e-01 -1.2324037252962139e-01 2.3765029835131563e-01 0 1 0 0 0 0 V -316 0 -4.8244811287646296e-04 4.7035025462296379e-04 -6.3093228118628667e-04 9.2735037594052412e-04 0 2 0 P 962 22 -2.2569651296469778e-01 3.0937230486445150e-01 -3.3855946353559285e-01 5.1114836332622260e-01 0 1 0 0 0 0 P 963 22 -5.0615396548519709e-01 4.0412630710543179e-01 -6.1853432444219136e-01 8.9559735338165414e-01 0 1 0 0 0 0 V -317 0 0 0 0 0 0 1 0 P 964 310 -1.2302339627110266e+00 7.2620548369972937e-01 -2.9349082238989097e+00 3.3018497420646939e+00 4.9767000000000000e-01 2 0 0 -349 0 V -318 0 -8.6752832431353258e-08 5.6751225327585816e-06 -1.1460015303951991e-05 1.3065795357727114e-05 0 2 0 P 965 22 -1.7129251235544502e-02 2.1873872842535341e-01 -5.3413276926017550e-01 5.7744078290208689e-01 0 1 0 0 0 0 P 966 22 1.2755657234780827e-02 6.7369300180076405e-02 -4.3617291196755177e-02 8.1263752618169274e-02 0 1 0 0 0 0 V -319 0 3.1921301658151099e-06 3.0070741861760174e-06 -2.4515581396366050e-05 2.5754236519802493e-05 0 2 0 P 967 22 9.3138278016174428e-02 8.3273264531574645e-02 -3.5056410225625334e-01 3.7216174603026658e-01 0 1 0 0 0 0 P 968 22 -2.7457205493348565e-02 -2.1399892380626978e-02 -1.5386698168821752e-01 1.5775582899293655e-01 0 1 0 0 0 0 V -320 0 -1.0746932664611035e-05 1.1716704562053139e-05 2.1112501123235648e-05 2.8715582129467181e-05 0 2 0 P 969 22 -1.4068528265196240e-01 1.4966455846836127e-01 2.5833133115484436e-01 3.3004076334996274e-01 0 1 0 0 0 0 P 970 22 1.1489181273788934e-02 -8.8101772548439174e-03 -4.5237638620538598e-03 1.5168551317887391e-02 0 1 0 0 0 0 V -321 0 1.2218163860844812e-05 2.5557595097723896e-05 -1.0559884962263108e-04 1.0999921294242689e-04 0 2 0 P 971 22 1.1697892565086621e-01 2.8441463194930533e-01 -9.5543592736149419e-01 1.0037098999244820e+00 0 1 0 0 0 0 P 972 22 1.9400481130965621e-02 8.5979208815679996e-04 -2.2326069452048766e-01 2.2410367160829545e-01 0 1 0 0 0 0 V -322 0 -4.9934163756776680e-02 6.4004343116673823e-01 1.9463743297958531e+00 2.0608574497285241e+00 0 2 0 P 973 421 -1.1037172122179661e+00 4.5163594353480354e+00 1.7181620330893381e+01 1.7896930789349671e+01 1.8645000000000000e+00 2 0 0 -350 0 P 974 211 -8.1449772837262457e-02 3.8089607974699263e-01 1.2826776517168166e+00 1.3477602279988961e+00 1.3957000000000000e-01 1 0 0 0 0 V -323 0 1.9195685995135829e+01 1.2284471552955107e+01 1.4800160471742727e+01 3.4953933479751313e+01 0 2 0 P 975 111 4.5641562633666360e-01 9.4120386102036019e-02 1.9678464626512276e-01 5.2356247807685263e-01 1.3497999999999999e-01 2 0 0 -351 0 P 976 111 -2.1891208412191825e-02 1.8395786816875018e-01 1.3824016690396129e-01 2.6767455316591521e-01 1.3497999999999999e-01 2 0 0 -352 0 V -324 0 5.5237386491626443e-05 1.5753258331269735e-04 5.6160871335588687e-05 1.7988621588389630e-04 0 2 0 P 977 22 9.5485174013533736e-02 2.1180426368696531e-01 1.3440345360567596e-02 2.3272109370614358e-01 0 1 0 0 0 0 P 978 22 1.0839936982721279e-01 3.6965805610676000e-01 1.9385283705115164e-01 4.3124983971747244e-01 0 1 0 0 0 0 V -325 0 6.9563584848130220e-07 -6.2084935791120686e-07 6.4997465769981853e-06 7.6420243603919714e-06 0 2 0 P 979 22 4.2922034683422462e-02 -2.2175930972358687e-02 2.3650692482140684e-01 2.4139096599569404e-01 0 1 0 0 0 0 P 980 22 -1.8904621996091813e-02 7.4058476619130547e-04 -1.2097708068647515e-02 2.2456351865903165e-02 0 1 0 0 0 0 V -326 0 3.9874695692097447e-05 1.7880446489822852e-04 2.4417350428281937e-04 3.0752049153900593e-04 0 2 0 P 981 22 4.4206936185452420e-02 1.9295564320086966e-01 3.7287452737726368e-01 4.2216293846900360e-01 0 1 0 0 0 0 P 982 22 1.0030678512099638e-01 4.5506682217865518e-01 5.1205816329000498e-01 6.9235166381039537e-01 0 1 0 0 0 0 V -327 0 -5.2192255534409094e-07 2.3262711611844503e-06 7.1735307747344352e-06 8.3437441392550759e-06 0 2 0 P 983 22 -5.5713513184479604e-02 7.2235821280198995e-02 2.6224031917337293e-01 2.7765445148157547e-01 0 1 0 0 0 0 P 984 22 3.5767206529180667e-02 1.6667249624204915e-02 1.1910401405745227e-02 4.1218296114499953e-02 0 1 0 0 0 0 V -328 0 -2.2685853805608005e-04 3.5622099567596358e-04 1.4185435884618784e-03 1.4827102352101926e-03 0 2 0 P 985 22 -1.2298778432735447e-01 3.1707018428791950e-01 1.0815452600747339e+00 1.1337546676632699e+00 0 1 0 0 0 0 P 986 22 -2.2360794734173359e-01 2.2716622704644621e-01 1.0857134958020165e+00 1.1315382467206032e+00 0 1 0 0 0 0 V -329 0 -1.0196495600193926e-04 4.7195777247829987e-06 4.8270009269338061e-04 4.9394469136483329e-04 0 2 0 P 987 22 -2.5570797186855776e-01 -5.4815773112541905e-02 1.2383530383640451e+00 1.2656656681306162e+00 0 1 0 0 0 0 P 988 22 -3.2441927414911403e-01 8.1667700825751893e-02 1.5079579140121810e+00 1.5446211668980749e+00 0 1 0 0 0 0 V -330 0 -5.9497562279534290e-05 -3.8595892753861152e-05 1.1688183467742599e-04 1.4249562751671006e-04 0 2 0 P 989 22 -8.5956863364667305e-02 -5.1738678601620763e-02 5.6094774055840499e-02 1.1494388587180134e-01 0 1 0 0 0 0 P 990 22 -1.1394265828797324e-01 -7.7935550117281469e-02 3.3660405168978724e-01 3.6381199398012443e-01 0 1 0 0 0 0 V -331 0 -6.8221964755399840e-06 -2.3251006861894294e-05 1.4170065513135043e-04 1.4479295789850125e-04 0 2 0 P 991 22 -8.3777659903153195e-02 -1.7586869514779890e-01 8.3713903784781118e-01 8.5950582483226767e-01 0 1 0 0 0 0 P 992 22 3.0502746915737546e-02 -5.6997149497978001e-03 2.6940928562083649e-01 2.7119046350977005e-01 0 1 0 0 0 0 V -332 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 993 -2224 1.9119058779091349e+00 6.2604414074633197e-01 6.4510509626914381e+00 6.8710814143773229e+00 1.2443415638855060e+00 2 0 0 -353 0 P 994 321 1.2351181677140120e-01 8.3124063742552490e-01 1.7570228619608157e+00 2.0092253391898929e+00 4.9359999999999998e-01 1 0 0 0 0 V -333 0 2.1809669977435259e+01 -7.5154448603308410e+01 -4.8407240773011210e+02 4.9175226245866389e+02 0 2 0 P 995 -211 2.3999280017897809e-01 -5.9909764925245845e-01 -4.9181947380225841e+00 4.9623214127553856e+00 1.3957000000000000e-01 1 0 0 0 0 P 996 211 5.3215708654554814e-02 -4.1127636511737264e-01 -1.5896593003398556e+00 1.6487803480781678e+00 1.3957000000000000e-01 1 0 0 0 0 V -334 0 -3.2329108953837857e+00 3.3646999194383005e+00 -3.0335891295498976e+02 3.0344758121926162e+02 0 2 0 P 997 -211 -2.8812130091558030e-01 2.9376039180242386e-01 -1.3357655695045368e+01 1.3364720517246560e+01 1.3957000000000000e-01 1 0 0 0 0 P 998 211 3.8414032622243331e-03 2.1081241217136650e-03 -1.3317635866567626e+01 1.3318367920280426e+01 1.3957000000000000e-01 1 0 0 0 0 V -335 0 4.2051186239212633e+01 1.4890589360503977e+01 3.5098954902642333e+01 6.3182742431311574e+01 0 2 0 P 999 22 7.2615487348572094e-02 2.9784122325364815e-02 1.4219925984908621e-01 1.6242146547544409e-01 0 1 0 0 0 0 P 1000 22 2.1735998553184313e-01 1.7163915098292234e-01 1.4728082053221422e-01 3.1368296344746516e-01 0 1 0 0 0 0 V -336 0 -1.1919306907479989e-05 5.3600050798759312e-05 -1.5463688276751211e-06 5.5840833614634204e-05 0 2 0 P 1001 22 2.4498907288381673e-02 9.7350623615553009e-02 -2.6741880278574135e-03 1.0042156968634836e-01 0 1 0 0 0 0 P 1002 22 -1.8476816662494699e-01 6.2336581640903255e-01 -1.8118580259459258e-02 6.5042486069942174e-01 0 1 0 0 0 0 V -337 0 -4.9971732520676711e-05 4.1869455621070683e-04 -1.6985515098327426e-04 4.7352955851307822e-04 0 2 0 P 1003 22 -3.8634579614612224e-02 4.2813179286664593e-01 -1.4864662472275189e-01 4.5484643765415267e-01 0 1 0 0 0 0 P 1004 22 -1.2242176787633176e-02 -1.8543782410001255e-03 -2.4284724749012096e-02 2.7259080455797439e-02 0 1 0 0 0 0 V -338 0 -1.5208815081218550e-06 2.2425349375367568e-05 1.9961641415823748e-06 2.3046219980750401e-05 0 2 0 P 1005 22 -9.8494440014837772e-03 5.2080210084277612e-01 9.3666452200674599e-02 5.2924969915650277e-01 0 1 0 0 0 0 P 1006 22 -3.3983820396696028e-02 1.2551798599023797e-01 -3.6135086257381550e-02 1.3496447426870842e-01 0 1 0 0 0 0 V -339 0 2.1867863107736678e+01 -7.9580211031325021e+01 -6.4477698732359741e+01 1.0651658944726171e+02 0 2 0 P 1007 211 5.3874760498926932e-01 -1.4644991426116110e+00 -1.3330098307197604e+00 2.0570371202988396e+00 1.3957000000000000e-01 1 0 0 0 0 P 1008 -211 2.1608136895571332e-02 -5.7471374124961894e-01 -3.1920687331731684e-01 6.7241029798349261e-01 1.3957000000000000e-01 1 0 0 0 0 V -340 0 -3.6772516583660786e+02 -1.7651792656127668e+02 2.5637077636970425e+04 2.5640600166386004e+04 0 2 0 P 1009 -211 -1.3320731483705557e+00 -6.4254738997811722e-01 8.3434356266099144e+01 8.3447579781226935e+01 1.3957000000000000e-01 1 0 0 0 0 P 1010 211 -2.0115532363901048e-01 -9.3443333441933271e-02 2.3459326908112452e+01 2.3460790563989569e+01 1.3957000000000000e-01 1 0 0 0 0 V -341 0 -4.0763677238298612e+01 -4.2240488655350561e+01 6.7668607526977803e+03 6.7671483060503206e+03 0 2 0 P 1011 211 -3.8224786177966374e-01 -1.8546166054263935e-01 6.1338306855253300e+01 6.1339937048463625e+01 1.3957000000000000e-01 1 0 0 0 0 P 1012 -211 -5.7856376554988209e-01 -8.1015883774772846e-01 9.8158552412474421e+01 9.8163699934703843e+01 1.3957000000000000e-01 1 0 0 0 0 V -342 0 -7.6060645116033214e+01 2.5225525945772816e+01 2.1880647805476045e+04 2.1880975321107238e+04 0 2 0 P 1013 22 -6.1213327513367187e-02 7.0716688786339965e-02 8.2292324097762535e+00 8.2297639076494793e+00 0 1 0 0 0 0 P 1014 22 -1.1990028123599906e-01 -3.9855507207632097e-02 1.9213172197829412e+01 1.9213587651512150e+01 0 1 0 0 0 0 V -343 0 9.6786640647947195e+01 4.4534624500206235e+01 3.0295615627073083e+04 3.0295907636930890e+04 0 2 0 P 1015 22 1.7036288531940283e-01 1.3975121366559737e-01 6.7557882222922530e+01 6.7558241572443904e+01 0 1 0 0 0 0 P 1016 22 8.2525414519041523e-02 -2.7991437441291667e-02 2.8822431869086149e+01 2.8822563605840557e+01 0 1 0 0 0 0 V -344 0 -8.3302526442764039e-05 -4.8215780966777503e-04 -1.2319008233956636e+00 1.2319009465486348e+00 0 2 0 P 1017 22 -2.7510435391057672e-02 -1.0315257114924108e-02 -1.7263300327945450e+02 1.7263300577963858e+02 0 1 0 0 0 0 P 1018 22 -1.6932928786106961e-02 -2.4692442145175564e-01 -4.8460777034750470e+02 4.8460783355159850e+02 0 1 0 0 0 0 V -345 0 -2.1902071060124646e+02 -1.0952362135137330e+03 2.2650406901255487e+03 2.5278877701811030e+03 0 2 0 P 1019 -211 -7.6676500128931868e-01 -2.8026437552842607e+00 5.8619060646051580e+00 6.5440173503277634e+00 1.3957000000000000e-01 1 0 0 0 0 P 1020 211 -2.1626242568584125e-01 -2.1130887977919071e+00 4.3042426776566947e+00 4.8018640669200998e+00 1.3957000000000000e-01 1 0 0 0 0 V -346 0 -8.5151445357149953e+00 -2.6219007308372984e+00 5.7879675960484533e+01 6.1415694067590834e+01 0 2 0 P 1021 211 -2.5311082834743692e-01 -7.5760009812718535e-02 4.7721483285837413e-01 5.6304391668287723e-01 1.3957000000000000e-01 1 0 0 0 0 P 1022 -211 2.4110646441040044e-02 5.2484945020931234e-03 1.0793596055485390e+00 1.0886256532694061e+00 1.3957000000000000e-01 1 0 0 0 0 V -347 0 -7.3414709553488278e-01 1.7042000014129410e+00 -4.1481652344971297e+02 4.1486391684502047e+02 0 2 0 P 1023 111 -1.2809551450517631e-01 2.5314111096848124e-01 -2.5775190160297392e+01 2.5777104885591598e+01 1.3497999999999999e-01 2 0 0 -354 0 P 1024 111 6.7098327424744725e-02 -1.1154631758048814e-01 -8.6901659499538653e+00 8.6921889420701461e+00 1.3497999999999999e-01 2 0 0 -355 0 V -348 0 -1.6969768110492633e-05 -2.6481864729575669e-06 3.4226511010700993e-05 3.9958590640265266e-05 0 2 0 P 1025 22 -1.8459335718580022e-01 1.2951241997555388e-02 3.7107986051373759e-01 4.1465974613567047e-01 0 1 0 0 0 0 P 1026 22 -1.6111624240168258e-02 -4.4271894902577311e-02 3.3724212939157040e-02 5.7938826811446915e-02 0 1 0 0 0 0 V -349 0 -2.1362037665229540e+01 1.2609982625828227e+01 -5.0962355066803831e+01 5.7334003687786719e+01 0 2 0 P 1027 211 -4.7134804649627376e-01 2.2728637129532855e-01 -6.9721277828310502e-01 8.8284399449375972e-01 1.3957000000000000e-01 1 0 0 0 0 P 1028 -211 -7.5888591621475288e-01 4.9891911240440079e-01 -2.2376954456158047e+00 2.4190057475709343e+00 1.3957000000000000e-01 1 0 0 0 0 V -350 0 -7.4937305578486449e-02 7.4235512317424091e-01 2.3355994728891742e+00 2.4662869327028862e+00 0 4 0 P 1029 -321 -6.9475603962581467e-01 2.7239436269227761e+00 9.2557747430972803e+00 9.6858433753704318e+00 4.9359999999999998e-01 1 0 0 0 0 P 1030 211 -2.0737565038267694e-01 4.4714931873178132e-01 1.7510850320946540e+00 1.8244795828235156e+00 1.3957000000000000e-01 1 0 0 0 0 P 1031 111 3.2793004863951020e-01 6.4790247921863109e-01 2.5212138868349157e+00 2.6271762032546624e+00 1.3497999999999999e-01 2 0 0 -356 0 P 1032 111 -5.2951557084898471e-01 6.9736401047484631e-01 3.6535466688665323e+00 3.7594316279010611e+00 1.3497999999999999e-01 2 0 0 -357 0 V -351 0 1.9195937416996173e+01 1.2284523400265332e+01 1.4800268872855652e+01 3.4954221890236511e+01 0 2 0 P 1033 22 2.2288873995758193e-01 7.3675461963920150e-02 3.1775667153819381e-02 2.3689060158340167e-01 0 1 0 0 0 0 P 1034 22 2.3352688637908170e-01 2.0444924138115873e-02 1.6500897911130341e-01 2.8667187649345099e-01 0 1 0 0 0 0 V -352 0 1.9195683580546294e+01 1.2284491843417612e+01 1.4800175719565237e+01 3.4953963004123054e+01 0 2 0 P 1035 22 -4.0357145166409463e-03 1.0976832625835231e-01 1.5458450978411431e-01 1.8963581704523760e-01 0 1 0 0 0 0 P 1036 22 -1.7855493895550880e-02 7.4189541910397866e-02 -1.6344342880153025e-02 7.8038736120677549e-02 0 1 0 0 0 0 V -353 0 2.1482907290390621e-01 2.0303281465723411e-01 1.0140297914829699e+00 1.1208675459732980e+00 0 2 0 P 1037 -2212 1.5237271844840088e+00 2.5402830944103544e-01 5.0689040872193969e+00 5.3814880983852920e+00 9.3827000000000005e-01 1 0 0 0 0 P 1038 -211 3.8817869342512629e-01 3.7201583130529653e-01 1.3821468754720407e+00 1.4895933159920307e+00 1.3957000000000000e-01 1 0 0 0 0 V -354 0 -7.3414900271720562e-01 1.7042037703681141e+00 -4.1481690721012200e+02 4.1486430063393738e+02 0 2 0 P 1039 22 -9.7274222366465476e-02 8.9428759539900413e-02 -7.5752960490264716e+00 7.5764483768957289e+00 0 1 0 0 0 0 P 1040 22 -3.0821292138710831e-02 1.6371235142858082e-01 -1.8199894111270918e+01 1.8200656508695868e+01 0 1 0 0 0 0 V -355 0 -7.3411681031324572e-01 1.7041496543315700e+00 -4.1482044580682617e+02 4.1486784011522298e+02 0 2 0 P 1041 22 3.7672496289768230e-02 -1.2368654465382664e-01 -4.3862175652357296e+00 4.3881228455784553e+00 0 1 0 0 0 0 P 1042 22 2.9425831134976495e-02 1.2140227073338498e-02 -4.3039483847181357e+00 4.3040660964916908e+00 0 1 0 0 0 0 V -356 0 -7.4836813416827422e-02 7.4255366893407915e-01 2.3363720834948323e+00 2.4670920148135971e+00 0 2 0 P 1043 22 3.4122086001177505e-02 8.9260575971455581e-03 1.2675543067880043e-01 1.3157100920745229e-01 0 1 0 0 0 0 P 1044 22 2.9380796263833270e-01 6.3897642162148549e-01 2.3944584561561153e+00 2.4956051940472102e+00 0 1 0 0 0 0 V -357 0 -7.4973199762894627e-02 7.4240239527306040e-01 2.3358471352528434e+00 2.4665417726727581e+00 0 2 0 P 1045 22 -3.2354745675462077e-01 3.1736642046907071e-01 1.9340962330574338e+00 1.9864875132607027e+00 0 1 0 0 0 0 P 1046 22 -2.0596811409436391e-01 3.7999759000577560e-01 1.7194504358090985e+00 1.7729441146403588e+00 0 1 0 0 0 0 E 39 4 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 133 1 2 0 3 3.4560000000000002e-01 9.9222999999999995e-01 9.9256000000000000e-01 N 3 "0" "1" "2" U GEV MM V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 1 1.5073383106491554e+00 -1.2993365623313919e+00 2.7209201338025518e+03 2.7209208615607290e+03 0 3 0 0 -3 0 P 13 2203 -1.5073383106491554e+00 1.2993365623313919e+00 4.2445390246486650e+03 4.2445395612551065e+03 7.7132999999999996e-01 2 0 0 -9 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 2.5858216316097202e+00 -2.1708479932488607e+00 -4.3397297718328176e+01 4.3528433279564204e+01 0 3 0 0 -4 0 P 16 2 -9.0692769071088786e-01 1.4604855287320972e+00 -7.6935046429856322e+02 7.6935245586936981e+02 3.3000000000000002e-01 2 0 0 -11 0 P 31 2101 -1.6788939408988324e+00 7.1036246451676344e-01 -6.0892474052497901e+03 6.0892477056910939e+03 5.7933000000000001e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 6 0 P 5 -3 1.9131593054692739e+00 -4.0833345117393832e-01 1.5134760262017681e+02 1.5136024489148531e+02 0 3 0 0 -5 0 P 11 3 -2.3763962284599889e+00 -1.5682078523784135e+00 3.3160241945312552e+00 4.3991534823891785e+00 5.0000000000000000e-01 2 0 0 -9 0 P 12 21 -1.7899416997370041e-01 2.7373785189054706e-01 1.8197775504657279e-01 3.7428228354280341e-01 0 2 0 0 -9 0 P 17 1 1.1548355662297878e+00 3.4375600693342656e-01 1.0589855551638902e+03 1.0589862920544110e+03 3.3000000000000002e-01 2 0 0 -13 0 P 18 21 1.2020137443834598e+00 -9.8631711370454744e-01 1.4970067852719885e+03 1.4970075927692765e+03 0 2 0 0 -13 0 P 19 21 -2.4138821327432236e-01 9.7656750468602660e-01 8.6876499652477523e+00 8.7456969007269940e+00 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 8 0 P 6 4 -5.9089825329223244e-01 -1.6901151672419878e+00 -1.5889612462364616e+01 1.5990166798017459e+01 0 3 0 0 -5 0 P 14 -4 1.2883406923195979e+00 -8.1779995058646193e-02 -1.5140846367359584e+01 1.5269634521725274e+01 1.5000000000000000e+00 2 0 0 -11 0 P 15 21 4.8780533685027683e-01 -5.0842485147169025e-01 -1.9217346871295313e+00 2.0468302528471822e+00 0 2 0 0 -11 0 P 26 21 7.3199240075760574e-01 2.4932276178633131e-01 -7.8263490844843397e-01 1.1002236655488444e+00 0 2 0 0 -13 0 P 27 21 3.8517080731795145e-01 1.6355688468072610e-01 -4.1897803992779883e+00 4.2106255116681233e+00 0 2 0 0 -13 0 P 28 21 -4.9565627720230027e-01 -4.4399621171836968e-02 -1.3956559470714644e-01 5.1684139415898722e-01 0 2 0 0 -13 0 P 29 21 6.4928719605614766e-03 1.4868576029816710e-01 1.7868600341142118e-01 2.3254741563149370e-01 0 2 0 0 -13 0 P 30 21 8.0668235928323240e-01 -3.3823327368415140e-01 -4.1172703508799797e+00 4.2091630187533973e+00 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 3 0 0 -6 0 P 8 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821259e+00 0 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 24 2.9874720503971384e+00 1.9223572236693305e+00 1.4048773091264584e+02 1.6069923890952060e+02 7.7941147044214716e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 -1.6652109982200969e+00 -4.0208058420852568e+00 -5.0297407548336697e+00 6.6511727799821045e+00 0 1 0 0 0 0 V -8 0 0 0 0 0 0 13 0 P 32 -3 -1.8175462476630642e+00 -2.6075903952270956e+00 7.4978093125731151e+00 8.1590530406035970e+00 5.0000000000000000e-01 2 0 0 -15 0 P 33 21 -7.7086820243997201e+00 -1.2078882165221280e+01 4.1059302235880892e+01 4.3487808326150649e+01 0 2 0 0 -15 0 P 34 21 -8.6664999417158739e-01 -2.3788922262766904e-01 4.1521896803822882e+00 4.2483352782605541e+00 0 2 0 0 -15 0 P 35 21 -2.7355636784212805e+00 -4.9103226906665798e+00 4.5665344073097550e+01 4.6009979644415822e+01 0 2 0 0 -15 0 P 36 21 -8.1750908960544592e-03 -2.4124905925706416e-02 6.8686147210170772e+00 6.8686619533188251e+00 0 2 0 0 -15 0 P 37 21 6.4416385788967663e+00 3.9997054871194289e+00 1.5990357572048969e+01 1.7697002199435030e+01 0 2 0 0 -15 0 P 38 21 4.3820415185385482e+00 1.4472618519174791e+00 9.4571366554555141e+00 1.0523036085568249e+01 0 2 0 0 -15 0 P 39 21 1.5785379900501961e+00 6.3340244933387069e-01 4.9379047129305471e+00 5.2226318846761126e+00 0 2 0 0 -15 0 P 40 21 2.1695667705919841e-01 -2.8556071886963619e-01 9.3101540850151454e-01 9.9769976182675046e-01 0 2 0 0 -15 0 P 41 21 4.4744182629032359e-01 3.7836193256341005e-01 7.6527884936886914e-01 9.6385354552363345e-01 0 2 0 0 -15 0 P 42 21 7.0915200046107396e-01 9.4447177453203079e-01 5.3145921951374853e-01 1.2951341222637094e+00 0 2 0 0 -15 0 P 43 21 1.1637549392207085e+00 6.4262106092344524e+00 1.4233902665894258e+00 6.6840517804561888e+00 0 2 0 0 -15 0 P 44 4 1.1845655554320238e+00 8.2373132175066175e+00 1.2079282052863620e+00 8.5419912870215189e+00 1.5000000000000000e+00 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 45 92 -4.0627287090828448e+00 4.8665618435255187e-03 4.2480370265982428e+03 4.2493129970210384e+03 1.0404740032327815e+02 2 0 0 -10 0 V -10 0 0 0 0 0 0 14 0 P 46 3122 -7.3771937707635449e-01 -1.9294115521747696e-01 2.3626223120200218e+00 2.7217976082628574e+00 1.1156800000000000e+00 2 0 0 -17 0 P 47 113 -5.8649080238289153e-01 -3.6887303658376347e-01 1.5544771643782693e+00 1.8799923714648183e+00 7.9870725788248087e-01 2 0 0 -18 0 P 48 -2112 -8.3505206138920984e-01 -4.5948159379032477e-01 3.2157041824918604e+00 3.4830992599204103e+00 9.3957000000000002e-01 1 0 0 0 0 P 49 -211 -4.6959323148633048e-01 -1.2832517867366380e-01 9.7275164850053275e-01 1.0966816808444948e+00 1.3957000000000000e-01 1 0 0 0 0 P 50 321 2.1227525312906162e-01 -1.5289242719376326e-02 2.1781765734125420e+00 2.2435214928761309e+00 4.9359999999999998e-01 1 0 0 0 0 P 51 -321 -2.7058491563472709e-01 -6.9924173239626061e-02 6.3841624885677168e+00 6.4093117592302722e+00 4.9359999999999998e-01 1 0 0 0 0 P 52 213 2.1203810470765724e-01 2.0958133779211251e-02 6.7514724368505332e+00 6.8027312640157040e+00 8.0583694606582701e-01 2 0 0 -19 0 P 53 111 -3.3213424623765248e-01 3.4211924550281853e-01 4.3402841912560630e+00 4.3684831688967929e+00 1.3497999999999999e-01 2 0 0 -20 0 P 54 -211 3.1101552012023875e-01 -7.6976657694286010e-01 4.3071461940135706e+01 4.3079688771881727e+01 1.3957000000000000e-01 1 0 0 0 0 P 55 211 -1.6705318266988844e-01 2.9031993215322216e-01 2.3857982790456216e+01 2.3860742131028751e+01 1.3957000000000000e-01 1 0 0 0 0 P 56 311 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -21 0 P 57 -311 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -22 0 P 58 2112 -4.9118388741375185e-01 1.5592546903498823e+00 3.6302423682361400e+03 3.6302428579180933e+03 9.3957000000000002e-01 1 0 0 0 0 P 59 211 -4.2689663996527044e-01 -1.8418355465330538e-01 4.2449709914417917e+02 4.2449737670088257e+02 1.3957000000000000e-01 1 0 0 0 0 V -11 0 0 0 0 0 0 1 0 P 60 92 8.6921833845898688e-01 8.7028068220176080e-01 -7.8641304535305233e+02 7.8666892064394222e+02 2.0024981314782629e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 9 0 P 61 -411 1.1688720643707666e+00 -7.4513028084903610e-01 -1.6866644499133198e+01 1.7026434159519269e+01 1.8693000000000000e+00 2 0 0 -23 0 P 62 213 3.7470388189717097e-01 1.1020281521248323e-01 -1.5451543037357895e+01 1.5475868794289363e+01 7.7445790275939808e-01 2 0 0 -24 0 P 63 -213 -2.1178538509080652e-01 3.9040080476128763e-01 -2.5920552948920815e+01 2.5932809177743518e+01 6.6201271419408125e-01 2 0 0 -25 0 P 64 211 -1.0539248551241585e-01 -5.6877312112187807e-02 -2.4813930335012659e+00 2.4881989020663533e+00 1.3957000000000000e-01 1 0 0 0 0 P 65 -2224 6.3960254240566017e-01 -4.3830975700149433e-02 -3.3696696807691140e+01 3.3728822474444563e+01 1.3247932655519623e+00 2 0 0 -26 0 P 66 111 -4.9002768594274757e-02 -9.3633614435907869e-02 -1.7412505148631521e+00 1.7496689632594586e+00 1.3497999999999999e-01 2 0 0 -27 0 P 67 2212 -1.7983236018661933e-01 2.1939525582136044e-01 -1.6103988517067441e+02 1.6104286833117743e+02 9.3827000000000005e-01 1 0 0 0 0 P 68 213 -7.6187580460114623e-01 8.5913101305733230e-01 -1.2365619630425306e+02 1.2366417060794262e+02 8.0848430729299015e-01 2 0 0 -28 0 P 69 331 -6.0713462293482384e-03 2.3062297644657839e-01 -4.0555888303665745e+02 4.0556007923349972e+02 9.5761898627699404e-01 2 0 0 -29 0 V -13 0 0 0 0 0 6 1 0 P 20 21 2.7497223922082998e+00 -3.2443890390539156e+00 2.5418671295121317e+01 2.5771998057588963e+01 0 2 0 0 -13 0 P 21 21 -2.0575204360516910e-01 2.4229652480183916e+00 4.9419044762411302e+00 5.5077685453225653e+00 0 2 0 0 -13 0 P 22 21 -2.7497223922082998e+00 3.2443890390539156e+00 6.7021782526682061e-01 4.3053716917648712e+00 0 2 0 0 -13 0 P 23 21 2.0575204360516910e-01 -2.4229652480183916e+00 -1.4189664353904355e-01 2.4358220694459964e+00 0 2 0 0 -13 0 P 24 21 1.2587821098669902e+00 -2.6667816242118747e-01 -5.8254265308406481e+01 5.8268474119927362e+01 0 2 0 0 -13 0 P 25 21 -1.2587821098669902e+00 2.6667816242118747e-01 -3.6098622829217867e+01 3.6121547860087098e+01 0 2 0 0 -13 0 P 70 92 1.8712493185571446e+00 1.2233013743409056e+00 -3.5970819712830998e+03 8.7966676707654060e+03 8.0275997909536509e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 50 0 P 71 -213 8.7695914611789827e-01 -1.3056393899451380e-01 7.7453546713867104e+02 7.7453638241747433e+02 7.9481340084842744e-01 2 0 0 -30 0 P 72 223 4.8295247219301213e-01 -1.9931783509541660e-02 9.9052523820924489e+02 9.9052566384292925e+02 7.8074427808345570e-01 2 0 0 -31 0 P 73 211 1.3850104916568237e-01 -4.3565090467300321e-01 6.8677299646723853e+01 6.8678962869296143e+01 1.3957000000000000e-01 1 0 0 0 0 P 74 111 4.2475962909123333e-01 1.2253088954042510e-01 3.4986130518811797e+02 3.4986161052921358e+02 1.3497999999999999e-01 2 0 0 -32 0 P 75 113 2.5170671641125530e-01 7.9527061042662023e-02 2.2599488119587267e+02 2.2599641994950557e+02 7.9108939580457083e-01 2 0 0 -33 0 P 76 -211 -1.9221335908804853e-02 -5.3067745014872614e-01 1.3807915012377745e+02 1.3808024176798583e+02 1.3957000000000000e-01 1 0 0 0 0 P 77 213 -1.4049907214162011e-01 5.4367330912058265e-01 1.1669475275555600e+01 1.1707613671742026e+01 7.5910738610194239e-01 2 0 0 -34 0 P 78 223 8.1633397897400806e-01 -8.5768108564839712e-02 9.2590479009986204e+00 9.3278515479896740e+00 7.7787475513226845e-01 2 0 0 -35 0 P 79 -211 -1.4210113651499059e-01 -3.8388855788894088e-01 1.4955103913496963e+00 1.5567897332047844e+00 1.3957000000000000e-01 1 0 0 0 0 P 80 111 9.5463497763658234e-01 -3.9478491268212601e-01 7.3124203460701409e+00 7.3862638719334406e+00 1.3497999999999999e-01 2 0 0 -36 0 P 81 211 7.2490675961385420e-02 1.3169438131253494e-01 3.6667839444915624e+00 3.6725172005930387e+00 1.3957000000000000e-01 1 0 0 0 0 P 82 -213 4.4126493964800634e-01 -2.1003298064756973e-01 3.0615450194359637e+00 3.2079186412104401e+00 8.2392687944381182e-01 2 0 0 -37 0 P 83 111 -2.3027854891341855e-02 -2.8065908362951703e-01 6.3048404098198441e-01 7.0358334947440981e-01 1.3497999999999999e-01 2 0 0 -38 0 P 84 213 2.2642962321946897e-01 6.4703057792370411e-01 8.0785724570491790e-01 1.2852258827712018e+00 7.2749797062774335e-01 2 0 0 -39 0 P 85 111 -3.9094005207012528e-01 2.2862878685255186e-01 1.1012349532976333e+00 1.1983502281281138e+00 1.3497999999999999e-01 2 0 0 -40 0 P 86 2112 3.7269907250953721e-01 -2.8015513221139599e-01 4.1715239773705060e+00 4.3013713598608181e+00 9.3957000000000002e-01 1 0 0 0 0 P 87 -2212 -4.4502325970543771e-01 -2.1754495217768732e-01 1.7491568031425615e+00 2.0457936412983475e+00 9.3827000000000005e-01 1 0 0 0 0 P 88 321 -5.0379083550468627e-02 1.8803084736306059e+00 2.7277173368670735e+00 3.3499523635287178e+00 4.9359999999999998e-01 1 0 0 0 0 P 89 -323 -8.1116466091627526e-01 1.0534532017480058e+00 -8.4500355663205268e-02 1.6198712899609433e+00 9.2146130170505902e-01 2 0 0 -41 0 P 90 211 -8.9799083863894580e-01 2.3005438883367976e-01 4.0876039776347678e-01 1.0226814830536783e+00 1.3957000000000000e-01 1 0 0 0 0 P 91 331 3.8608499147221492e-01 -6.2301749856969058e-01 1.4524261016864801e-02 1.2064351176701817e+00 9.5815568402303219e-01 2 0 0 -42 0 P 92 113 -4.2308470357622924e-01 -1.7764392720888758e-01 -1.4921992585509802e+00 1.8764952260107282e+00 1.0411616948133349e+00 2 0 0 -43 0 P 93 -213 -5.9228690859513926e-02 -3.6096116901355901e-01 5.0680556828157078e-03 8.5602583207208316e-01 7.7392088525231784e-01 2 0 0 -44 0 P 94 223 4.4519376696515300e-01 -3.6599579577299851e-01 -9.3581058961126686e+00 9.4083900348679848e+00 7.8198892107010165e-01 2 0 0 -45 0 P 95 213 2.5449089999962965e-01 -5.2538580551351322e-01 -1.5990871713898519e+01 1.6022635374114184e+01 8.2223494126538865e-01 2 0 0 -46 0 P 96 -211 -3.9985126704558338e-01 6.0759733471177846e-01 -5.2292352414804952e+00 5.2814237240112059e+00 1.3957000000000000e-01 1 0 0 0 0 P 97 221 -5.4103870668604441e-02 -1.8671774238069413e-01 -6.7313154173464085e+00 6.7563377279741221e+00 5.4744999999999999e-01 2 0 0 -47 0 P 98 213 3.2263683737559473e-01 -3.9310173367445850e-01 -3.0380981895830683e+01 3.0395598885213076e+01 7.9356608680380858e-01 2 0 0 -48 0 P 99 -211 4.0901777019801971e-01 2.4457160340083145e-01 -2.4147552200210995e+00 2.4652856554661087e+00 1.3957000000000000e-01 1 0 0 0 0 P 100 211 -3.8554471983155963e-01 4.8755575017222624e-01 -1.2591851607058537e+01 1.2607956298290325e+01 1.3957000000000000e-01 1 0 0 0 0 P 101 313 -2.7509880964698280e-02 -4.0663952030180289e-01 -4.3936450704745784e+00 4.5023486881603016e+00 8.9493810481577130e-01 2 0 0 -49 0 P 102 3224 -9.2672852486645571e-02 6.5585209965268648e-02 -4.0204721714874072e+00 4.2506978129614730e+00 1.3752620615928364e+00 2 0 0 -50 0 P 103 -3224 3.3909533539442915e-01 3.1246322967426809e-01 -4.3825925655100573e+00 4.6089362027682723e+00 1.3500208922602861e+00 2 0 0 -51 0 P 104 -313 2.9239998644659210e-01 4.7617792020952156e-02 -2.8607764941309388e+00 3.0128119422957576e+00 8.9734522012261986e-01 2 0 0 -52 0 P 105 -211 3.3114193757278626e-01 4.8736178797093938e-01 -6.8654531220075832e-01 9.1542380665925804e-01 1.3957000000000000e-01 1 0 0 0 0 P 106 213 -6.5980063614748952e-01 -2.7824199752659268e-01 -8.6444920386959794e+00 8.7073410305708592e+00 7.6012481010450028e-01 2 0 0 -53 0 P 107 -211 6.7548772052830464e-01 2.8279401240234431e-01 -2.3109875521773585e+01 2.3121896170747007e+01 1.3957000000000000e-01 1 0 0 0 0 P 108 113 -3.8123255767312253e-01 -3.0685043734591605e-01 -1.1953401963161754e+01 1.2004205412817816e+01 9.8875358218105502e-01 2 0 0 -54 0 P 109 331 1.4931133481974440e-01 -1.1268304079557502e-01 -9.9766292699747137e+00 1.0024233320468472e+01 9.5766942641267616e-01 2 0 0 -55 0 P 110 221 1.9001747233615021e-01 1.1235252860039266e-01 -1.1311205093270679e+01 1.1326596659853676e+01 5.4744999999999999e-01 2 0 0 -56 0 P 111 3122 -1.6531213545598181e-02 1.7941481008998922e-01 -9.7845632368603006e+01 9.7852158782672305e+01 1.1156800000000000e+00 2 0 0 -57 0 P 112 -3212 2.1512032592093658e-01 -4.9536064251785050e-01 -8.8021694916783730e+01 8.8031429673989905e+01 1.1925500000000000e+00 2 0 0 -58 0 P 113 213 -3.0271802830700351e-01 -1.8199115940732644e-01 -9.3693985986604460e+01 9.3696228323527890e+01 5.4353749629009396e-01 2 0 0 -59 0 P 114 -213 -1.4424928218799363e-01 8.0356077501503209e-01 -1.5775355144448991e+02 1.5775717774879575e+02 6.9110067374553441e-01 2 0 0 -60 0 P 115 111 1.7128022450432756e-01 -3.6555194441179756e-01 -8.1007288706637596e+01 8.1008407022606633e+01 1.3497999999999999e-01 2 0 0 -61 0 P 116 111 1.5788168370261174e-02 -4.8321618446635503e-02 -1.0310912881680434e+01 1.0311921658889448e+01 1.3497999999999999e-01 2 0 0 -62 0 P 117 213 1.9689425293322910e-01 -1.5224892223532024e-01 -6.4658169287785782e+01 6.4660495121341583e+01 4.8869889289292329e-01 2 0 0 -63 0 P 118 -211 -7.1825664261600375e-01 -2.9746020738896345e-01 -7.9981103969115236e+02 7.9981142969252869e+02 1.3957000000000000e-01 1 0 0 0 0 P 119 211 -7.0721336506262444e-02 7.1538494473250414e-01 -1.9344004753605057e+02 1.9344143363731823e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2112 -9.2559101045397996e-01 2.0797149321907010e-01 -4.4406806478088056e+03 4.4406808485395886e+03 9.3957000000000002e-01 1 0 0 0 0 V -15 0 0 0 0 0 0 1 0 P 121 92 2.9874720503971322e+00 1.9223572236693229e+00 1.4048773091264587e+02 1.6069923890952060e+02 7.7941147044214631e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 23 0 P 122 321 -1.9596084643502856e+00 -3.0602237549375295e+00 9.0339720928884173e+00 9.7499398715542842e+00 4.9359999999999998e-01 1 0 0 0 0 P 123 111 -2.1221753418868241e+00 -3.0794768752118356e+00 9.7608878684791733e+00 1.0453705447739610e+01 1.3497999999999999e-01 2 0 0 -64 0 P 124 -213 -5.8801121921525645e+00 -8.8594710964628405e+00 3.2017570968426774e+01 3.3747254672951620e+01 8.2849245105086544e-01 2 0 0 -65 0 P 125 213 -1.1405902431970816e+00 -2.4992193557709950e+00 2.1111220865463821e+01 2.1310746560358947e+01 9.5772075174289650e-01 2 0 0 -66 0 P 126 -211 -5.9892796811931859e-01 2.1874519221366373e-01 6.1395360304544235e+00 6.1741352936472156e+00 1.3957000000000000e-01 1 0 0 0 0 P 127 213 -4.5559783483989907e-01 -3.2530999344707040e-01 6.7553426559176861e+00 6.8289650272447275e+00 8.2868146203666626e-01 2 0 0 -67 0 P 128 113 -5.7440792125096041e-01 -1.3510713832725041e+00 1.4285720978915283e+01 1.4384112737546413e+01 8.1580452090620947e-01 2 0 0 -68 0 P 129 -323 1.3411301224220290e-01 5.6031818823388205e-03 2.7919730682451793e+00 2.9745260344901774e+00 1.0171891762860905e+00 2 0 0 -69 0 P 130 313 1.2324498805479818e+00 3.7849258064035401e-01 4.8207774900212632e+00 5.0746247963754492e+00 9.2180902253684249e-01 2 0 0 -70 0 P 131 211 1.6120206802060957e-01 -7.1135203600750430e-02 1.1811311498599026e+00 1.2023297808816087e+00 1.3957000000000000e-01 1 0 0 0 0 P 132 223 1.2785603990255554e+00 8.1470418811002865e-01 4.2252255004056352e+00 4.5561557209133206e+00 7.7946444168590967e-01 2 0 0 -71 0 P 133 113 1.2567864011156424e+00 4.7197901755798238e-01 3.3548075691944046e+00 3.6963380307328726e+00 7.7839884382872360e-01 2 0 0 -72 0 P 134 -213 1.5702635608886917e+00 6.2797790528091013e-01 3.9810681837186714e+00 4.3848941954086769e+00 7.1993702595142928e-01 2 0 0 -73 0 P 135 -313 2.9950025276104766e+00 1.4295147405663253e+00 7.2274828460366631e+00 8.0017007909111246e+00 8.8156379441532173e-01 2 0 0 -74 0 P 136 311 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -75 0 P 137 213 1.6729071976051537e+00 8.5620849094171136e-01 3.0695739662043788e+00 3.7282048788027744e+00 9.7237637392591791e-01 2 0 0 -76 0 P 138 -2212 5.6456212520249682e-01 1.0007903273826917e+00 2.0028501160208223e+00 2.4924026265313830e+00 9.3827000000000005e-01 1 0 0 0 0 P 139 -213 9.5986336228977864e-01 4.5552201652155105e-01 6.3324037919285980e-01 1.4469243010152428e+00 7.5083858000640402e-01 2 0 0 -77 0 P 140 2224 -7.8524718047965902e-02 1.4537681742328321e+00 2.1735353569266671e+00 2.8439842589241842e+00 1.1155189292169956e+00 2 0 0 -78 0 P 141 -213 4.3109300650004678e-01 9.7089208546243078e-01 9.3226226300081128e-01 1.6345673268370955e+00 8.2111192725543636e-01 2 0 0 -79 0 P 142 223 8.4775152594623793e-01 6.9685656413280006e-01 5.1616019999694440e-01 1.4417240686217714e+00 7.7965070208605758e-01 2 0 0 -80 0 P 143 213 -6.9411667715650036e-02 8.6435598231357802e-01 -4.6980410204834594e-02 1.0258343082727188e+00 5.4607657458456793e-01 2 0 0 -81 0 P 144 423 1.9798114286895228e+00 1.0463034435943911e+01 2.2730832830925096e+00 1.1071968903622894e+01 2.0066999999999999e+00 2 0 0 -82 0 V -17 0 -1.9844667492655856e+00 -5.1901213251491485e-01 6.3554592233402145e+00 7.3216415613673087e+00 0 2 0 P 145 2212 -5.6405112594990248e-01 -8.2328990329775781e-02 1.8320933095166183e+00 2.1358483614268189e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -211 -1.7366825112645196e-01 -1.1061216488770119e-01 5.3052900250340351e-01 5.8594924683603844e-01 1.3957000000000000e-01 1 0 0 0 0 V -18 0 0 0 0 0 0 2 0 P 147 211 -1.2405291990440502e-01 1.5180733255592282e-01 9.8520447119075288e-02 2.6003972111024848e-01 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 -4.6243788247848655e-01 -5.2068036913968629e-01 1.4559567172591938e+00 1.6199526503545698e+00 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 0 2 0 P 149 211 -1.6401757664718711e-01 -1.6181441769908414e-01 1.0378249140804121e+00 1.0722154673434461e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 111 3.7605568135484441e-01 1.8277255147829538e-01 5.7136475227701213e+00 5.7305157966722584e+00 1.3497999999999999e-01 2 0 0 -83 0 V -20 0 -2.1337750193070739e-05 2.1979230023625941e-05 2.7883875537992317e-04 2.8065038049059407e-04 0 2 0 P 151 22 -2.0299074029907288e-01 2.6252242577301055e-01 2.4946979827878186e+00 2.5166726624665596e+00 0 1 0 0 0 0 P 152 22 -1.2914350593857957e-01 7.9596819729807991e-02 1.8455862084682444e+00 1.8518105064302333e+00 0 1 0 0 0 0 V -21 0 0 0 0 0 0 1 0 P 153 310 5.2062948650005869e-01 2.0273215220406632e-01 4.3708293089914257e+01 4.3714696792388906e+01 4.9767000000000000e-01 2 0 0 -84 0 V -22 0 0 0 0 0 0 1 0 P 154 310 -1.0019787292837847e+00 -2.2173308032527811e-01 5.4900170399940038e+01 5.4912016101252377e+01 4.9767000000000000e-01 2 0 0 -85 0 V -23 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 3 0 P 155 333 2.3005001914978035e-01 -1.8891038012288625e-01 -8.2469504198468382e+00 8.3158471983839330e+00 1.0259206872019917e+00 2 0 0 -86 0 P 156 -211 6.7707841467988750e-01 -6.3633879806255356e-01 -5.9907253670076601e+00 6.0639617786851350e+00 1.3957000000000000e-01 1 0 0 0 0 P 157 111 2.6174363054109889e-01 8.0118897336403663e-02 -2.6289687122787009e+00 2.6466251824502018e+00 1.3497999999999999e-01 2 0 0 -87 0 V -24 0 0 0 0 0 0 2 0 P 158 211 2.6553185864339701e-01 3.5264117770652248e-01 -5.3710811805618999e+00 5.3909976628871830e+00 1.3957000000000000e-01 1 0 0 0 0 P 159 111 1.0917202325377394e-01 -2.4243836249403924e-01 -1.0080461856795997e+01 1.0084871131402181e+01 1.3497999999999999e-01 2 0 0 -88 0 V -25 0 0 0 0 0 0 2 0 P 160 -211 -2.4426207882457773e-01 2.0745765263264787e-01 -5.5682657854634128e+00 5.5792263158300033e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 111 3.2476693733771218e-02 1.8294315212863976e-01 -2.0352287163457397e+01 2.0353582861913512e+01 1.3497999999999999e-01 2 0 0 -89 0 V -26 0 0 0 0 0 0 2 0 P 162 -2212 6.7891220695115995e-01 -2.6938319910007968e-01 -2.5439516053421304e+01 2.5467289151338523e+01 9.3827000000000005e-01 1 0 0 0 0 P 163 -211 -3.9309664545499771e-02 2.2555222339993028e-01 -8.2571807542698359e+00 8.2615333231060397e+00 1.3957000000000000e-01 1 0 0 0 0 V -27 0 -1.7545294729911774e-05 -3.3525235594481608e-05 -6.2344953883797553e-04 6.2646373910703974e-04 0 2 0 P 164 22 -1.3943100255850547e-02 3.3588080481148697e-02 -2.5646016790007836e-01 2.5902584217504093e-01 0 1 0 0 0 0 P 165 22 -3.5059668338424207e-02 -1.2722169491705657e-01 -1.4847903469630739e+00 1.4906431210844178e+00 0 1 0 0 0 0 V -28 0 0 0 0 0 0 2 0 P 166 211 1.1741752767951077e-01 5.9244901067751467e-02 -2.4668746433273466e+01 2.4669491831169758e+01 1.3957000000000000e-01 1 0 0 0 0 P 167 111 -8.7929333228065698e-01 7.9988611198958082e-01 -9.8987449870979589e+01 9.8994678776772872e+01 1.3497999999999999e-01 2 0 0 -90 0 V -29 0 0 0 0 0 0 3 0 P 168 211 -6.7504817019198513e-02 2.1432555030263287e-02 -4.1979376582973444e+01 4.1979668344744397e+01 1.3957000000000000e-01 1 0 0 0 0 P 169 -211 4.4469542840321237e-02 -6.9910430478048916e-02 -1.2780395423055235e+02 1.2780405729771864e+02 1.3957000000000000e-01 1 0 0 0 0 P 170 221 1.6963927949529032e-02 2.7910085189436401e-01 -2.3577555222313160e+02 2.3577635359103664e+02 5.4744999999999999e-01 2 0 0 -91 0 V -30 0 0 0 0 0 0 2 0 P 171 -211 8.6386022358688364e-01 -7.0654186651049333e-02 7.4701973770997915e+02 7.4702025357721789e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 111 1.3098922531014681e-02 -5.9909752343464469e-02 2.7515729428691831e+01 2.7516128840256126e+01 1.3497999999999999e-01 2 0 0 -92 0 V -31 0 0 0 0 0 0 2 0 P 173 22 1.6926641057211625e-01 3.6123228903412097e-01 3.7191796379176452e+02 3.7191817773657777e+02 0 1 0 0 0 0 P 174 111 3.1368606162089585e-01 -3.8116407254366264e-01 6.1860727441748043e+02 6.1860748610635142e+02 1.3497999999999999e-01 2 0 0 -93 0 V -32 0 5.6436604519175483e-07 1.6280330993721719e-07 4.6485077123992365e-04 4.6485117693795790e-04 0 2 0 P 175 22 3.8185582995770503e-02 2.3989543116426159e-02 1.5021587931467392e+01 1.5021655621792634e+01 0 1 0 0 0 0 P 176 22 3.8657404609546286e-01 9.8541346423998935e-02 3.3483971725665060e+02 3.3483995490742092e+02 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 177 211 1.7502709826283822e-01 -7.2253309396830834e-02 1.9461599680901642e+01 1.9463021269844411e+01 1.3957000000000000e-01 1 0 0 0 0 P 178 -211 7.6679618148417103e-02 1.5178037043949286e-01 2.0653328151497104e+02 2.0653339867966116e+02 1.3957000000000000e-01 1 0 0 0 0 V -34 0 0 0 0 0 0 2 0 P 179 211 1.6296883721185318e-01 5.6243079477968649e-01 8.2798181701248907e+00 8.3016718771611888e+00 1.3957000000000000e-01 1 0 0 0 0 P 180 111 -3.0346790935347329e-01 -1.8757485659103824e-02 3.3896571054307092e+00 3.4059417945808343e+00 1.3497999999999999e-01 2 0 0 -94 0 V -35 0 0 0 0 0 0 3 0 P 181 -211 1.9357415831584032e-01 5.5271447718090408e-02 3.1876873772349965e+00 3.1970856240619940e+00 1.3957000000000000e-01 1 0 0 0 0 P 182 211 5.3124449692864362e-01 -7.7979213723395127e-02 5.6103361119600752e+00 5.6376992246264059e+00 1.3957000000000000e-01 1 0 0 0 0 P 183 111 9.1515323729524131e-02 -6.3060342559535007e-02 4.6102441180354975e-01 4.9306669930127561e-01 1.3497999999999999e-01 2 0 0 -95 0 V -36 0 5.6399558106351325e-04 -2.3323778348715264e-04 4.3201567705729998e-03 4.3637833118717051e-03 0 2 0 P 184 22 6.0152711440246365e-01 -2.5407154692728640e-01 4.1453379317665098e+00 4.1964525243187989e+00 0 1 0 0 0 0 P 185 22 3.5310786323411864e-01 -1.4071336575483961e-01 3.1670824143036311e+00 3.1898113476146417e+00 0 1 0 0 0 0 V -37 0 0 0 0 0 0 2 0 P 186 -211 1.1414130684189257e-01 2.6467084943073615e-01 6.4809866664659299e-01 7.2290425581473383e-01 1.3957000000000000e-01 1 0 0 0 0 P 187 111 3.2712363280611384e-01 -4.7470383007830586e-01 2.4134463527893710e+00 2.4850143853957061e+00 1.3497999999999999e-01 2 0 0 -96 0 V -38 0 -9.2152121994269624e-06 -1.1231324079235629e-04 2.5230505635093632e-04 2.8155770027142357e-04 0 2 0 P 188 22 4.4312363323561511e-02 -1.4226542374713172e-01 3.9594711711123376e-01 4.2305691802163847e-01 0 1 0 0 0 0 P 189 22 -6.7340218214903366e-02 -1.3839365988238528e-01 2.3453692387075067e-01 2.8052643145277134e-01 0 1 0 0 0 0 V -39 0 0 0 0 0 0 2 0 P 190 211 4.0322473881604282e-01 6.3687839440575356e-01 5.4420540727985800e-01 9.4012955993668912e-01 1.3957000000000000e-01 1 0 0 0 0 P 191 111 -1.7679511559657388e-01 1.0152183517950436e-02 2.6365183842505979e-01 3.4509632283451225e-01 1.3497999999999999e-01 2 0 0 -97 0 V -40 0 -1.1498802596763853e-04 6.7247069570746382e-05 3.2390857047193844e-04 3.5247329205758586e-04 0 2 0 P 192 22 -3.9541540899512673e-01 2.0790443889794896e-01 1.0051908558896452e+00 1.0999937536860889e+00 0 1 0 0 0 0 P 193 22 4.4753569250014945e-03 2.0724347954602883e-02 9.6044097407988055e-02 9.8356474442024944e-02 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 194 -311 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -98 0 P 195 -211 -1.3776347211087997e-01 1.0257146128803515e-02 -1.9611982330692460e-01 2.7753694040378146e-01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 196 22 1.1928310723212228e-01 6.2424229046454179e-02 9.2406209769038995e-03 1.3494677883904066e-01 0 1 0 0 0 0 P 197 223 2.6680188424009266e-01 -6.8544172761614486e-01 5.2836400399609018e-03 1.0714883388311411e+00 7.7913139842235690e-01 2 0 0 -99 0 V -43 0 0 0 0 0 0 2 0 P 198 -211 1.1668201970610442e-01 -4.4466239966254167e-01 -9.0124037193265960e-01 1.0212998268371851e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 211 -5.3976672328233366e-01 2.6701847245365407e-01 -5.9095888661832063e-01 8.5519539917354281e-01 1.3957000000000000e-01 1 0 0 0 0 V -44 0 0 0 0 0 0 2 0 P 200 -211 -2.8285333140334207e-01 -1.2677482532142470e-01 2.5528442376328292e-01 4.2512090672818953e-01 1.3957000000000000e-01 1 0 0 0 0 P 201 111 2.2362464054382813e-01 -2.3418634369213437e-01 -2.5021636808046721e-01 4.3090492534389380e-01 1.3497999999999999e-01 2 0 0 -100 0 V -45 0 0 0 0 0 0 3 0 P 202 -211 1.9376355805150766e-01 -3.8720878823476292e-03 -1.4890898146180365e+00 1.5081205423945816e+00 1.3957000000000000e-01 1 0 0 0 0 P 203 211 9.0701539973870052e-02 -4.3171555039072046e-01 -4.4139722644893755e+00 4.4381568271506877e+00 1.3957000000000000e-01 1 0 0 0 0 P 204 111 1.6072866893977533e-01 6.9591842500069612e-02 -3.4550438170052566e+00 3.4621126653227159e+00 1.3497999999999999e-01 2 0 0 -101 0 V -46 0 0 0 0 0 0 2 0 P 205 211 3.1601308074546486e-01 8.1951041368575422e-02 -4.1020722236496665e+00 4.1174089611455589e+00 1.3957000000000000e-01 1 0 0 0 0 P 206 111 -6.1522180745835209e-02 -6.0733684688208867e-01 -1.1888799490248854e+01 1.1905226412968625e+01 1.3497999999999999e-01 2 0 0 -102 0 V -47 0 0 0 0 0 0 2 0 P 207 22 1.3142818429080874e-01 -6.7188657540822996e-02 -5.0545426544338246e-01 5.2656594818030733e-01 0 1 0 0 0 0 P 208 22 -1.8553205495941319e-01 -1.1952908483987112e-01 -6.2258611519030262e+00 6.2297717797938148e+00 0 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 209 211 1.1527824663344002e-01 1.7618369235062545e-01 -4.4313150484662591e+00 4.4385090527406499e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 111 2.0735859074215474e-01 -5.6928542602508403e-01 -2.5949666847364426e+01 2.5957089832472430e+01 1.3497999999999999e-01 2 0 0 -103 0 V -49 0 0 0 0 0 0 2 0 P 211 321 -1.8049013031365618e-01 -1.0298015469208779e-01 -3.4192346740575754e+00 3.4609230438827532e+00 4.9359999999999998e-01 1 0 0 0 0 P 212 -211 1.5298024934895790e-01 -3.0365936560971507e-01 -9.7441039641700233e-01 1.0414256442775469e+00 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 2 0 P 213 3122 4.1566977743454060e-02 -9.0669325462081497e-03 -2.8301295872369461e+00 3.0423979630972817e+00 1.1156800000000000e+00 2 0 0 -104 0 P 214 211 -1.3423983023009964e-01 7.4652142511476796e-02 -1.1903425842504611e+00 1.2082998498641908e+00 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 215 -3122 1.4644010092526616e-01 2.9462648835286787e-01 -3.9129095753338130e+00 4.0821382482636706e+00 1.1156800000000000e+00 2 0 0 -105 0 P 216 -211 1.9265523446916299e-01 1.7836741321400194e-02 -4.6968299017624388e-01 5.2679795450460165e-01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 217 -311 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -106 0 P 218 111 -1.4885300802435425e-01 -1.4978228857165021e-01 -8.0617713874096109e-01 8.4423523463322847e-01 1.3497999999999999e-01 2 0 0 -107 0 V -53 0 0 0 0 0 0 2 0 P 219 211 -2.5375029447482039e-01 -3.8243313097061077e-01 -2.4079874229302018e+00 2.4553059942703834e+00 1.3957000000000000e-01 1 0 0 0 0 P 220 111 -4.0605034167266918e-01 1.0419113344401808e-01 -6.2365046157657771e+00 6.2520350363004749e+00 1.3497999999999999e-01 2 0 0 -108 0 V -54 0 0 0 0 0 0 2 0 P 221 211 -6.8803944468509970e-01 -3.0625630690087424e-01 -8.1868653584578439e+00 8.2226173074864803e+00 1.3957000000000000e-01 1 0 0 0 0 P 222 -211 3.0680688701197723e-01 -5.9413044504183564e-04 -3.7665366047039095e+00 3.7815881053313332e+00 1.3957000000000000e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 2 0 P 223 22 1.4803887835073931e-01 1.4431039886464253e-01 -3.9233262621300380e+00 3.9287695223623227e+00 0 1 0 0 0 0 P 224 113 1.2724564690050806e-03 -2.5699343966021754e-01 -6.0533030078446757e+00 6.0954637981061488e+00 6.6794787376515263e-01 2 0 0 -109 0 V -56 0 0 0 0 0 0 2 0 P 225 22 2.7486911490570909e-01 2.4665741492151072e-01 -5.0974148933587955e+00 5.1107760179546959e+00 0 1 0 0 0 0 P 226 22 -8.4851642569558877e-02 -1.3430488632111803e-01 -6.2137901999118847e+00 6.2158206418989801e+00 0 1 0 0 0 0 V -57 0 -5.1384144154367772e-01 5.5767693277105579e+00 -3.0413460358706184e+03 3.0415488970824849e+03 0 2 0 P 227 2212 -5.5781591737588045e-02 1.8546033000560758e-01 -7.5892828715246239e+01 7.5898875539197462e+01 9.3827000000000005e-01 1 0 0 0 0 P 228 -211 3.9250378191989864e-02 -6.0455199156183590e-03 -2.1952803653356771e+01 2.1953283243474850e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 2 0 P 229 -3122 1.5817021808919415e-01 -4.6711831736620663e-01 -7.8043803566704312e+01 7.8053335831090763e+01 1.1156800000000000e+00 2 0 0 -110 0 P 230 22 5.6950107831742425e-02 -2.8242325151643891e-02 -9.9778913500794122e+00 9.9780938428991330e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 231 211 -2.2057048299308663e-01 1.2058414904337308e-01 -3.1752686671178758e+01 3.1753988450239152e+01 1.3957000000000000e-01 1 0 0 0 0 P 232 111 -8.2147545313916867e-02 -3.0257530845069952e-01 -6.1941299315425702e+01 6.1942239873288742e+01 1.3497999999999999e-01 2 0 0 -111 0 V -60 0 0 0 0 0 0 2 0 P 233 -211 -7.4626039256974197e-02 5.5212060759843820e-02 -7.2841457685032779e+01 7.2841650550236082e+01 1.3957000000000000e-01 1 0 0 0 0 P 234 111 -6.9623242931019416e-02 7.4834871425518823e-01 -8.4912093759457122e+01 8.4915527198559630e+01 1.3497999999999999e-01 2 0 0 -112 0 V -61 0 3.7095050924952572e-05 -7.9169489839899478e-05 -1.7544170721174722e-02 1.7544412920692747e-02 0 2 0 P 235 22 1.3051674595057553e-02 -1.0381379811796879e-02 -7.9006772465227870e-01 7.9024371480813493e-01 0 1 0 0 0 0 P 236 22 1.5822854990927002e-01 -3.5517056460000063e-01 -8.0217220981985307e+01 8.0218163307798491e+01 0 1 0 0 0 0 V -62 0 1.5640011215518141e-06 -4.7868165371285921e-06 -1.0214154633381629e-03 1.0215153944162522e-03 0 2 0 P 237 22 6.9792978338652722e-02 -1.5039179832264731e-02 -7.2497788692693597e+00 7.2501304050382371e+00 0 1 0 0 0 0 P 238 22 -5.4004809968391555e-02 -3.3282438614370767e-02 -3.0611340124110744e+00 3.0617912538512102e+00 0 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 239 211 -1.0358361896008007e-01 -4.6590364867594776e-02 -3.1691643432288359e+01 3.1692154288599902e+01 1.3957000000000000e-01 1 0 0 0 0 P 240 111 3.0047787189330916e-01 -1.0565855736772548e-01 -3.2966525855497423e+01 3.2968340832741681e+01 1.3497999999999999e-01 2 0 0 -113 0 V -64 0 -5.1181826233904744e-04 -7.4269664342761776e-04 2.3540942018907534e-03 2.5211853382997506e-03 0 2 0 P 241 22 -5.8725538308890379e-01 -9.5414217075973340e-01 2.8620591107837323e+00 3.0735384364945171e+00 0 1 0 0 0 0 P 242 22 -1.5349199587979205e+00 -2.1253347044521020e+00 6.8988287576954406e+00 7.3801670112450930e+00 0 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 243 -211 -4.1839656186445389e+00 -5.7883022373468282e+00 2.0736168567910838e+01 2.1932126612587918e+01 1.3957000000000000e-01 1 0 0 0 0 P 244 111 -1.6961465735080259e+00 -3.0711688591160131e+00 1.1281402400515939e+01 1.1815128060363703e+01 1.3497999999999999e-01 2 0 0 -114 0 V -66 0 0 0 0 0 0 2 0 P 245 211 -7.9207809269603291e-01 -2.3846094897531902e+00 1.8521407113532455e+01 1.8691595741767490e+01 1.3957000000000000e-01 1 0 0 0 0 P 246 111 -3.4851215050104867e-01 -1.1460986601780454e-01 2.5898137519313642e+00 2.6191508185914563e+00 1.3497999999999999e-01 2 0 0 -115 0 V -67 0 0 0 0 0 0 2 0 P 247 211 -4.5509931606842358e-01 -3.3463298989938156e-01 2.3300753748670862e+00 2.4016297930524053e+00 1.3957000000000000e-01 1 0 0 0 0 P 248 111 -4.9851877147551659e-04 9.3229964523111226e-03 4.4252672810506004e+00 4.4273352341923227e+00 1.3497999999999999e-01 2 0 0 -116 0 V -68 0 0 0 0 0 0 2 0 P 249 211 1.2633607542023662e-01 -4.9385416405376997e-02 1.6813651929675688e+00 1.6925922191505520e+00 1.3957000000000000e-01 1 0 0 0 0 P 250 -211 -7.0074399667119702e-01 -1.3016859668671270e+00 1.2604355785947714e+01 1.2691520518395860e+01 1.3957000000000000e-01 1 0 0 0 0 V -69 0 0 0 0 0 0 2 0 P 251 -321 -1.2669965574403158e-01 -3.0792559741866704e-01 1.6866098932232190e+00 1.7886209403419544e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 111 2.6081266798623448e-01 3.1352877930100587e-01 1.1053631750219604e+00 1.1859050941482230e+00 1.3497999999999999e-01 2 0 0 -117 0 V -70 0 0 0 0 0 0 2 0 P 253 321 7.1130158276548627e-01 3.9730596402338592e-01 2.1769947433776453e+00 2.3762889225401733e+00 4.9359999999999998e-01 1 0 0 0 0 P 254 -211 5.2114829778249550e-01 -1.8813383383031970e-02 2.6437827466436179e+00 2.6983358738352758e+00 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 3 0 P 255 -211 8.5658487028361097e-01 4.6170671721684930e-01 2.1597437012294618e+00 2.3729482448258929e+00 1.3957000000000000e-01 1 0 0 0 0 P 256 211 1.8317520616048497e-01 2.8065561972304365e-01 6.9972896405861429e-01 7.8830269635248829e-01 1.3957000000000000e-01 1 0 0 0 0 P 257 111 2.3880032258145939e-01 7.2341851170135779e-02 1.3657528351175596e+00 1.3949047797349405e+00 1.3497999999999999e-01 2 0 0 -118 0 V -72 0 0 0 0 0 0 2 0 P 258 -211 1.2763369501819466e+00 4.7616414147585207e-01 2.7105047171436283e+00 3.0367884197923716e+00 1.3957000000000000e-01 1 0 0 0 0 P 259 211 -1.9550549066303984e-02 -4.1851239178697201e-03 6.4430285205077642e-01 6.5954961094050124e-01 1.3957000000000000e-01 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 260 -211 1.4406480739443299e+00 5.7294582521730630e-01 3.8418712804254009e+00 4.1452609702949896e+00 1.3957000000000000e-01 1 0 0 0 0 P 261 111 1.2961548694436184e-01 5.5032080063603842e-02 1.3919690329327078e-01 2.3963322511368726e-01 1.3497999999999999e-01 2 0 0 -119 0 V -74 0 0 0 0 0 0 2 0 P 262 -321 2.3467978243028602e+00 8.7581671916669590e-01 5.0381757927884312e+00 5.6481298880925079e+00 4.9359999999999998e-01 1 0 0 0 0 P 263 211 6.4820470330761637e-01 5.5369802139962943e-01 2.1893070532482319e+00 2.3535709028186163e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 1 0 P 264 310 7.8246190627328216e-01 4.5982000318974092e-01 2.2472884903883994e+00 2.4741992761365044e+00 4.9767000000000000e-01 2 0 0 -120 0 V -76 0 0 0 0 0 0 2 0 P 265 211 1.9538542758906119e-01 2.1777184809530614e-01 1.2671323496382063e+00 1.3079389204151113e+00 1.3957000000000000e-01 1 0 0 0 0 P 266 111 1.4775217700160925e+00 6.3843664284640522e-01 1.8024416165661723e+00 2.4202659583876627e+00 1.3497999999999999e-01 2 0 0 -121 0 V -77 0 0 0 0 0 0 2 0 P 267 -211 1.2488741767569310e-01 3.8090232697473647e-01 3.5516549082212417e-01 5.5344896834251345e-01 1.3957000000000000e-01 1 0 0 0 0 P 268 111 8.3497594461408564e-01 7.4619689546814610e-02 2.7807488837073568e-01 8.9347533267272949e-01 1.3497999999999999e-01 2 0 0 -122 0 V -78 0 0 0 0 0 0 2 0 P 269 2212 -9.2232292670682794e-02 1.1379748418494542e+00 1.6324744945112593e+00 2.2020029756163755e+00 9.3827000000000005e-01 1 0 0 0 0 P 270 211 1.3707574622716890e-02 3.1579333238337798e-01 5.4106086241540785e-01 6.4198128330780868e-01 1.3957000000000000e-01 1 0 0 0 0 V -79 0 0 0 0 0 0 2 0 P 271 -211 -2.0630679887456405e-01 4.2374710124254417e-01 3.2449594031169304e-01 5.8898344734983732e-01 1.3957000000000000e-01 1 0 0 0 0 P 272 111 6.3739980537461083e-01 5.4714498421988667e-01 6.0776632268911834e-01 1.0455838794872583e+00 1.3497999999999999e-01 2 0 0 -123 0 V -80 0 0 0 0 0 0 3 0 P 273 -211 1.5334866236891118e-01 4.5158223115453339e-01 2.8003428162375815e-01 5.7038698050479297e-01 1.3957000000000000e-01 1 0 0 0 0 P 274 211 4.0722086739074048e-01 2.6508251451934939e-01 6.3393595605261185e-02 5.0950574796181791e-01 1.3957000000000000e-01 1 0 0 0 0 P 275 111 2.8718199618658619e-01 -1.9808181541082735e-02 1.7273232276792508e-01 3.6183134015516061e-01 1.3497999999999999e-01 2 0 0 -124 0 V -81 0 0 0 0 0 0 2 0 P 276 211 2.0154978183196928e-01 4.3429865194117984e-01 -1.4862327560746878e-02 4.9893717772377255e-01 1.3957000000000000e-01 1 0 0 0 0 P 277 111 -2.7096144954761930e-01 4.3005733037239829e-01 -3.2118082644087727e-02 5.2689713054894660e-01 1.3497999999999999e-01 2 0 0 -125 0 V -82 0 0 0 0 0 0 2 0 P 278 421 1.9143744857938487e+00 9.9772993986181735e+00 2.0368651444011325e+00 1.0527892136035650e+01 1.8645000000000000e+00 2 0 0 -126 0 P 279 22 6.5436942895674158e-02 4.8573503732573614e-01 2.3621813869137712e-01 5.4407676758724466e-01 0 1 0 0 0 0 V -83 0 9.3158625679084489e-05 4.5277443080327440e-05 1.4154168577331435e-03 1.4195955612927864e-03 0 2 0 P 280 22 6.0133077554468027e-02 8.1120094621999247e-02 9.5951376230901608e-01 9.6481247754579591e-01 0 1 0 0 0 0 P 281 22 3.1592260380037640e-01 1.0165245685629615e-01 4.7541337604611051e+00 4.7657033191264624e+00 0 1 0 0 0 0 V -84 0 2.3194919718120641e+01 9.0320585302742025e+00 1.9472780077286959e+03 1.9475633034498369e+03 0 2 0 P 282 -211 3.2899014348052175e-01 2.5432521102866373e-01 1.8344247268080039e+01 1.8349490550008031e+01 1.3957000000000000e-01 1 0 0 0 0 P 283 211 1.9163934301953689e-01 -5.1593058824597436e-02 2.5364045821834221e+01 2.5365206242380879e+01 1.3957000000000000e-01 1 0 0 0 0 V -85 0 -1.8278419990207519e+02 -4.0449265532861070e+01 1.0015066615449587e+04 1.0017227546588516e+04 0 2 0 P 284 211 -8.6303227058914667e-01 -6.9112908356443833e-02 4.6000283128253848e+01 4.6008641894307154e+01 1.3957000000000000e-01 1 0 0 0 0 P 285 -211 -1.3894645869463809e-01 -1.5262017196883429e-01 8.8998872716861932e+00 8.9033742069452231e+00 1.3957000000000000e-01 1 0 0 0 0 V -86 0 2.1926820945961098e-01 -1.3977866994696173e-01 -3.1640066108583338e+00 3.1939814847482957e+00 0 2 0 P 286 321 9.3860133353128899e-02 -9.0077769540969452e-02 -3.0078943519050432e+00 3.0509003788096396e+00 4.9359999999999998e-01 1 0 0 0 0 P 287 -321 1.3618988579665145e-01 -9.8832610581916808e-02 -5.2390560679417950e+00 5.2649468195742948e+00 4.9359999999999998e-01 1 0 0 0 0 V -87 0 2.1932548233008348e-01 -1.3976113890248107e-01 -3.1645818630019038e+00 3.1945606003544724e+00 0 2 0 P 288 22 6.9273239458605015e-02 2.1583735867047225e-02 -2.8692066721167769e-01 2.9595288245303841e-01 0 1 0 0 0 0 P 289 22 1.9247039108249386e-01 5.8535161469356438e-02 -2.3420480450670231e+00 2.3506722999971634e+00 0 1 0 0 0 0 V -88 0 4.7888732563644145e-05 -1.0634653053609607e-04 -4.4218337957882582e-03 4.4237679412416622e-03 0 2 0 P 290 22 1.1627593184832767e-01 -2.5688553754755078e-01 -9.4705633195358434e+00 9.4747601479439059e+00 0 1 0 0 0 0 P 291 22 -7.1039085945537291e-03 1.4447175053511545e-02 -6.0989853726015519e-01 6.1011098345827497e-01 0 1 0 0 0 0 V -89 0 2.7989665861191741e-06 1.5766745659670319e-05 -1.7540385172393157e-03 1.7541501855240888e-03 0 2 0 P 292 22 -2.4564334390896319e-02 1.2586614939719518e-01 -1.6225936999026789e+01 1.6226443762897485e+01 0 1 0 0 0 0 P 293 22 5.7041028124667534e-02 5.7077002731444601e-02 -4.1263501644306082e+00 4.1271390990160279e+00 0 1 0 0 0 0 V -90 0 -1.6659800060248923e-04 1.5155286873553658e-04 -1.8754959952295668e-02 1.8756329599042085e-02 0 2 0 P 294 22 -7.3974616708617480e-01 6.0254421213368348e-01 -8.0148472874392638e+01 8.0154151408498777e+01 0 1 0 0 0 0 P 295 22 -1.3954716519448215e-01 1.9734189985589731e-01 -1.8838976996586958e+01 1.8840527368274092e+01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 3 0 P 296 211 2.0476936133392874e-02 9.1316000922192136e-02 -1.0448603186185416e+02 1.0448616698844991e+02 1.3957000000000000e-01 1 0 0 0 0 P 297 -211 -1.9264491139159019e-02 2.5079280640141448e-05 -2.3844985149394361e+01 2.3845401394838909e+01 1.3957000000000000e-01 1 0 0 0 0 P 298 111 1.5751482955295177e-02 1.8775977169153174e-01 -1.0744453521188308e+02 1.0744478520774781e+02 1.3497999999999999e-01 2 0 0 -127 0 V -92 0 1.8997502130095858e-06 -8.6887730274279145e-06 3.9906345517734896e-03 3.9906924788436415e-03 0 2 0 P 299 22 -5.9917957432297005e-02 -4.1537240124929473e-02 1.3919329915478281e+01 1.3919520853817806e+01 0 1 0 0 0 0 P 300 22 7.3016879963311687e-02 -1.8372512218535003e-02 1.3596399513213550e+01 1.3596607986438331e+01 0 1 0 0 0 0 V -93 0 6.4369338304830161e-05 -7.8216032323622550e-05 1.2694010285012669e-01 1.2694014628932984e-01 0 2 0 P 301 22 1.5868264013653646e-01 -1.2420659115557327e-01 1.9071826028136354e+02 1.9071836674061441e+02 0 1 0 0 0 0 P 302 22 1.5500342148435939e-01 -2.5695748138808933e-01 4.2788901413611688e+02 4.2788911936573703e+02 0 1 0 0 0 0 V -94 0 -1.1974657226291926e-04 -7.4015885789501519e-06 1.3375378648329906e-03 1.3439637031044875e-03 0 2 0 P 303 22 -2.5535126102248640e-01 -5.4301076686487849e-02 2.3261202389401259e+00 2.3407238708232878e+00 0 1 0 0 0 0 P 304 22 -4.8116648330986854e-02 3.5543591027384025e-02 1.0635368664905835e+00 1.0652179237575472e+00 0 1 0 0 0 0 V -95 0 8.3865667897269084e-06 -5.7789204376488588e-06 4.2248793575951405e-05 4.5185184698705130e-05 0 2 0 P 305 22 -7.4386887816514299e-03 1.7096912439986470e-02 2.1711601026946792e-01 2.1791512205696625e-01 0 1 0 0 0 0 P 306 22 9.8954012511175554e-02 -8.0157254999521477e-02 2.4390840153408183e-01 2.7515157724430922e-01 0 1 0 0 0 0 V -96 0 1.9704238135533929e-04 -2.8593707007579293e-04 1.4537354349718756e-03 1.4968443215194493e-03 0 2 0 P 307 22 1.0883558779781551e-01 -8.7138402176381469e-02 4.1970802411082808e-01 4.4225910031130433e-01 0 1 0 0 0 0 P 308 22 2.1828804500829832e-01 -3.8756542790192439e-01 1.9937383286785431e+00 2.0427552850844024e+00 0 1 0 0 0 0 V -97 0 -2.2019531221933132e-05 1.2644372056884850e-06 3.2837388455731629e-05 4.2981160591385249e-05 0 2 0 P 309 22 -1.9271554372318800e-01 -1.4442293172495155e-02 2.3252199710018881e-01 3.0234804408175781e-01 0 1 0 0 0 0 P 310 22 1.5920428126614140e-02 2.4594476690445590e-02 3.1129841324870962e-02 4.2748278752754561e-02 0 1 0 0 0 0 V -98 0 0 0 0 0 0 1 0 P 311 310 -6.7340118880539535e-01 1.0431960556192024e+00 1.1161946764371933e-01 1.3423343495571620e+00 4.9767000000000000e-01 2 0 0 -128 0 V -99 0 0 0 0 0 0 3 0 P 312 -211 3.3708344961490527e-02 -3.8195038478618437e-01 1.8532978879020140e-01 4.4816209620111541e-01 1.3957000000000000e-01 1 0 0 0 0 P 313 211 -5.3442209570627876e-02 -2.2146634310668603e-01 -1.0876039161808590e-01 2.8846493474555740e-01 1.3957000000000000e-01 1 0 0 0 0 P 314 111 2.8653574884923000e-01 -8.2024999723274442e-02 -7.1285757132154612e-02 3.3486130788446838e-01 1.3497999999999999e-01 2 0 0 -129 0 V -100 0 8.3231665057211033e-05 -8.7162663612360094e-05 -9.3128936459144842e-05 1.6038006514177639e-04 0 2 0 P 315 22 -5.1661193948099992e-03 -2.4810046140043979e-02 8.8078615708871242e-03 2.6829193139646452e-02 0 1 0 0 0 0 P 316 22 2.2879075993863815e-01 -2.0937629755209039e-01 -2.5902422965135435e-01 4.0407573220424731e-01 0 1 0 0 0 0 V -101 0 4.9023823157233946e-05 2.1226195690003698e-05 -1.0538223093779641e-03 1.0559783775649671e-03 0 2 0 P 317 22 1.6469980756415120e-02 6.1084307068275619e-02 -1.6820717405300594e+00 1.6832610888171657e+00 0 1 0 0 0 0 P 318 22 1.4425868818336021e-01 8.5075354317939913e-03 -1.7729720764751975e+00 1.7788515765055497e+00 0 1 0 0 0 0 V -102 0 -1.0248114430443839e-05 -1.0116769966893501e-04 -1.9803878233773521e-03 1.9831241532949758e-03 0 2 0 P 319 22 -5.1903991300502862e-02 -6.1200428464747358e-01 -1.1631967535653756e+01 1.1648172046258704e+01 0 1 0 0 0 0 P 320 22 -9.6181894453323483e-03 4.6674377653848969e-03 -2.5683195459509767e-01 2.5705436670992060e-01 0 1 0 0 0 0 V -103 0 8.8741246029353963e-05 -2.4363156535258678e-04 -1.1105427375059752e-02 1.1108604118040998e-02 0 2 0 P 321 22 4.7274198055564369e-02 -9.7976794113359938e-02 -2.8800431704285150e+00 2.8820969736493010e+00 0 1 0 0 0 0 P 322 22 1.6008439268659036e-01 -4.7130863191172406e-01 -2.3069623676935912e+01 2.3074992858823126e+01 0 1 0 0 0 0 V -104 0 2.1527444674318521e+00 -4.6957440581547205e-01 -1.4657177744896254e+02 1.5756510909227748e+02 0 2 0 P 323 2212 -3.4840977164562907e-02 -5.2186920231660723e-02 -2.5431382500112334e+00 2.7114276903327603e+00 9.3827000000000005e-01 1 0 0 0 0 P 324 -211 7.6407954908016967e-02 4.3119987685452575e-02 -2.8699133722571285e-01 3.3097027276452179e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 1.3265726186690680e+01 2.6689645098168672e+01 -3.5446292847168172e+02 3.6979302742572571e+02 0 2 0 P 325 -2212 1.5958067549103055e-01 3.2060398680402924e-01 -3.1567066142395404e+00 3.3126122848332966e+00 9.3827000000000005e-01 1 0 0 0 0 P 326 211 -1.3140574565764420e-02 -2.5977498451161360e-02 -7.5620296109427276e-01 7.6952596343037361e-01 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 1 0 P 327 310 4.4125299447094640e-01 1.9740008059260236e-01 -2.0545993553899780e+00 2.1685767076625293e+00 4.9767000000000000e-01 2 0 0 -130 0 V -107 0 -1.5337379937032414e-06 -1.5433130295128232e-06 -8.3066141810159461e-06 8.6987537045143330e-06 0 2 0 P 328 22 -3.7307630759296821e-02 -1.2225377224602654e-01 -3.1814608849567771e-01 3.4286262229405373e-01 0 1 0 0 0 0 P 329 22 -1.1154537726505742e-01 -2.7528516325623684e-02 -4.8803105024528337e-01 5.0137261233917474e-01 0 1 0 0 0 0 V -108 0 -7.8865836476704740e-05 2.0236704785591708e-05 -1.2112959964202977e-03 1.2143124194609939e-03 0 2 0 P 330 22 -1.5131833213718898e-01 1.0698233076824459e-01 -2.5065299923812407e+00 2.5133712538031645e+00 0 1 0 0 0 0 P 331 22 -2.5473200953548020e-01 -2.7911973242265094e-03 -3.7299746233845359e+00 3.7386637824973112e+00 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 332 211 3.7300131581517355e-02 -3.3225499072101472e-01 -1.6566492137336521e+00 1.6958039630037867e+00 1.3957000000000000e-01 1 0 0 0 0 P 333 -211 -3.6027675112512272e-02 7.5261551060797169e-02 -4.3966537941110237e+00 4.3996598351023630e+00 1.3957000000000000e-01 1 0 0 0 0 V -110 0 2.6405701837519837e+00 -7.7982993007320696e+00 -1.3029010341796770e+03 1.3030601704154778e+03 0 2 0 P 334 -2212 1.7220395755946979e-01 -3.8237278977060402e-01 -7.1908607895458388e+01 7.1915951660316892e+01 9.3827000000000005e-01 1 0 0 0 0 P 335 211 -1.4033739470275641e-02 -8.4745527595602610e-02 -6.1351956712459277e+00 6.1373841707738768e+00 1.3957000000000000e-01 1 0 0 0 0 V -111 0 -7.1427905328503207e-06 -2.6309149475094311e-05 -5.3858423237354690e-03 5.3859241059454428e-03 0 2 0 P 336 22 -3.5770985869032337e-02 -2.8953305563906762e-01 -5.0984607136736621e+01 5.0985441783327843e+01 0 1 0 0 0 0 P 337 22 -4.6376559444884530e-02 -1.3042252811631894e-02 -1.0956692178689083e+01 1.0956798089960902e+01 0 1 0 0 0 0 V -112 0 -1.7551842520711538e-05 1.8865680813227385e-04 -2.1406122941536796e-02 2.1406988502804772e-02 0 2 0 P 338 22 -8.0286668814878143e-02 5.7779065752968028e-01 -5.9525675858009009e+01 5.9528534118907011e+01 0 1 0 0 0 0 P 339 22 1.0663425883858725e-02 1.7055805672550797e-01 -2.5386417901448109e+01 2.5386993079652637e+01 0 1 0 0 0 0 V -113 0 6.7187333606529885e-05 -2.3625422722544653e-05 -7.3713680030589928e-03 7.3717738348789202e-03 0 2 0 P 340 22 -1.2335498355771022e-02 -7.4059523706035222e-03 -2.7159042999156084e+00 2.7159424108309609e+00 0 1 0 0 0 0 P 341 22 3.1281337024908018e-01 -9.8252604997121948e-02 -3.0250621555581812e+01 3.0252398421910719e+01 0 1 0 0 0 0 V -114 0 -8.1021390797921325e-04 -1.4670334287573128e-03 5.3888910717802690e-03 5.6438407084497396e-03 0 2 0 P 342 22 -4.8587594651029892e-01 -9.8067409406381123e-01 3.3872364013090688e+00 3.5596583477236079e+00 0 1 0 0 0 0 P 343 22 -1.2102706269977270e+00 -2.0904947650522021e+00 7.8941659992068693e+00 8.2554697126400942e+00 0 1 0 0 0 0 V -115 0 -9.8516456018675041e-05 -3.2397601657837485e-05 7.3208142735309983e-04 7.4037434865636194e-04 0 2 0 P 344 22 -1.0582060976970183e-01 2.7773008509941854e-02 7.5655810671428558e-01 7.6442757033536479e-01 0 1 0 0 0 0 P 345 22 -2.4269154073134683e-01 -1.4238287452774639e-01 1.8332556452170787e+00 1.8547232482560911e+00 0 1 0 0 0 0 V -116 0 -2.1261866108416613e-08 3.9762655619080825e-07 1.8873800909275420e-04 1.8882620746227122e-04 0 2 0 P 346 22 1.3701766050722928e-02 1.6877052404695968e-02 1.1492474511622532e-01 1.1696268777182300e-01 0 1 0 0 0 0 P 347 22 -1.4200284822198445e-02 -7.5540559523848460e-03 4.3103425359343746e+00 4.3103725464205001e+00 0 1 0 0 0 0 V -117 0 3.9659449652515547e-05 4.7675517195196901e-05 1.6808269140455216e-04 1.8032998066073807e-04 0 2 0 P 348 22 2.2189777329585378e-01 1.7090452012840207e-01 7.7175710376428419e-01 8.2100913758898786e-01 0 1 0 0 0 0 P 349 22 3.8914894690380696e-02 1.4262425917260380e-01 3.3360607125767611e-01 3.6489595655923507e-01 0 1 0 0 0 0 V -118 0 4.9824731096665069e-05 1.5093837573680184e-05 2.8495886026714965e-04 2.9104129678065308e-04 0 2 0 P 350 22 1.5711280955429704e-01 1.0490351873218232e-01 1.0622832091644729e+00 1.0789507864778676e+00 0 1 0 0 0 0 P 351 22 8.1687513027162359e-02 -3.2561667562046530e-02 3.0346962595308674e-01 3.1595399325707280e-01 0 1 0 0 0 0 V -119 0 3.3823228722222976e-05 1.4360649910993738e-05 3.6323504301105803e-05 6.2532414710160219e-05 0 2 0 P 352 22 1.5473104914365582e-01 6.3661750907534731e-02 1.2865456110435905e-01 2.1106044676979319e-01 0 1 0 0 0 0 P 353 22 -2.5115562199293982e-02 -8.6296708439308929e-03 1.0542342188911721e-02 2.8572778343894122e-02 0 1 0 0 0 0 V -120 0 4.8572525032297548e+01 2.8544033180682732e+01 1.3950388584931414e+02 1.5358972150787298e+02 0 2 0 P 354 111 5.1654591582856790e-01 4.5730537088227718e-01 1.8375361352708055e+00 1.9674111248600072e+00 1.3497999999999999e-01 2 0 0 -131 0 P 355 111 2.6591599044471420e-01 2.5146323074637399e-03 4.0975235511759373e-01 5.0678815127649712e-01 1.3497999999999999e-01 2 0 0 -132 0 V -121 0 6.6642964961977059e-04 2.8796401977340636e-04 8.1298330715980180e-04 1.0916502398589912e-03 0 2 0 P 356 22 1.0177129125649877e+00 3.7069054974771970e-01 1.2106855245682948e+00 1.6244723744874781e+00 0 1 0 0 0 0 P 357 22 4.5980885745110484e-01 2.6774609309868552e-01 5.9175609199787738e-01 7.9579358390018506e-01 0 1 0 0 0 0 V -122 0 1.7430972560220277e-04 1.5577619562966499e-05 5.8050962786920530e-05 1.8652206818066101e-04 0 3 0 P 358 22 2.8736228462862523e-01 6.2337796790484991e-02 1.5309029325025983e-01 3.3151126892328320e-01 0 1 0 0 0 0 P 359 11 3.9021046762354122e-01 1.2288367788971719e-02 8.4696183425568741e-02 3.9948581528354338e-01 5.1000000000000004e-04 1 0 0 0 0 P 360 -11 1.5740319236191927e-01 -6.4750326420938465e-06 4.0288411694907128e-02 1.6247824846590309e-01 5.1000000000000004e-04 1 0 0 0 0 V -123 0 8.1987514462796568e-05 7.0378209922122772e-05 7.8175816420573375e-05 1.3449144903824778e-04 0 2 0 P 361 22 3.4433217110872449e-01 2.7338575327507170e-01 3.9774502332559170e-01 5.9287900766893564e-01 0 1 0 0 0 0 P 362 22 2.9306763426588633e-01 2.7375923094481497e-01 2.1002129936352670e-01 4.5270487181832270e-01 0 1 0 0 0 0 V -124 0 1.1525069614002883e-05 -7.9493378491408561e-07 6.9320224489119165e-06 1.4520866346742673e-05 0 2 0 P 363 22 -5.5261422719354953e-03 -1.0875404177234163e-02 3.7191125654135376e-02 3.9140675669302898e-02 0 1 0 0 0 0 P 364 22 2.9270813845852167e-01 -8.9327773638485722e-03 1.3554119711378970e-01 3.2269066448585765e-01 0 1 0 0 0 0 V -125 0 -6.0138627269926064e-05 9.5449214414613208e-05 -7.1284583249102415e-06 1.1694235544052164e-04 0 2 0 P 365 22 1.4806878555669097e-02 3.6451249127863940e-02 1.1053419039329224e-03 3.9359357162795768e-02 0 1 0 0 0 0 P 366 22 -2.8576832810328845e-01 3.9360608124453439e-01 -3.3223424548020651e-02 4.8753777338615073e-01 0 1 0 0 0 0 V -126 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 3 0 P 367 -321 9.0973991892192296e-03 1.6695573778195438e+00 5.3498051780683975e-01 1.8213593041837060e+00 4.9359999999999998e-01 1 0 0 0 0 P 368 311 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 2 0 0 -133 0 P 369 211 9.0953373940276727e-01 4.8017960527329260e+00 6.6594685369729034e-01 4.9343147398603193e+00 1.3957000000000000e-01 1 0 0 0 0 V -127 0 1.7989748316348035e-06 2.1444019247280622e-05 -1.2271226473815835e-02 1.2271255025811223e-02 0 2 0 P 370 22 -2.3564685434985310e-02 1.2853845306975048e-01 -9.1298002518840178e+01 9.1298096044542277e+01 0 1 0 0 0 0 P 371 22 3.9316168390280487e-02 5.9221318621781253e-02 -1.6146532693042897e+01 1.6146689163205540e+01 0 1 0 0 0 0 V -128 0 -7.4110418624237212e+01 1.1480778126668004e+02 1.2284156326431871e+01 1.4772911339205135e+02 0 2 0 P 372 -211 -6.0577836167837174e-01 7.3827051501716001e-01 -4.4786304566678758e-02 9.6617616136922679e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 211 -6.7622827127023610e-02 3.0492554060204241e-01 1.5640577221039809e-01 3.7615818818793517e-01 1.3957000000000000e-01 1 0 0 0 0 V -129 0 2.8428750945630758e-05 -8.1381408700782695e-06 -7.0726429201931359e-06 3.3223389267859981e-05 0 2 0 P 374 22 1.9879161434333362e-01 -1.1717448571255196e-01 -6.6812368314700762e-02 2.4023292570971397e-01 0 1 0 0 0 0 P 375 22 8.7744134505896368e-02 3.5149485989277515e-02 -4.4733888174538494e-03 9.4628382174754361e-02 0 1 0 0 0 0 V -130 0 4.3587815190089977e+01 1.9499557712227041e+01 -2.0295725607435622e+02 2.1421615704265062e+02 0 2 0 P 376 -211 1.2645607786858875e-02 -5.9626725518012832e-02 -2.6911317671398299e-01 3.0921989679415995e-01 1.3957000000000000e-01 1 0 0 0 0 P 377 211 4.2860738668408754e-01 2.5702680611061518e-01 -1.7854861786759948e+00 1.8593568108683693e+00 1.3957000000000000e-01 1 0 0 0 0 V -131 0 4.8572822087881093e+01 2.8544296168172600e+01 1.3950494258086931e+02 1.5359085292802723e+02 0 2 0 P 378 22 1.0371190939819742e-01 1.6694820163323085e-01 5.7866817046209762e-01 6.1113395723486119e-01 0 1 0 0 0 0 P 379 22 4.1283400643037049e-01 2.9035716924904637e-01 1.2588679648087078e+00 1.3562771676251462e+00 0 1 0 0 0 0 V -132 0 4.8572620458929656e+01 2.8544034083083869e+01 1.3950403289307476e+02 1.5358990337390662e+02 0 2 0 P 380 22 5.8013958732285417e-02 2.7385983767221966e-02 2.0152939904897688e-01 2.1149399564936031e-01 0 1 0 0 0 0 P 381 22 2.0790203171242877e-01 -2.4871351459758224e-02 2.0822295606861682e-01 2.9529415562713685e-01 0 1 0 0 0 0 V -133 0 6.1741413436679693e-01 3.2178268762089854e+00 6.5691918654611170e-01 3.3954011914142410e+00 0 1 0 P 382 130 9.9574334720186219e-01 3.5059459680657041e+00 8.3593777289700244e-01 3.7722180919916251e+00 4.9767000000000000e-01 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testMass.sh.in0000755000175000017500000000131511657245323020343 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ # want to see this output ./testMass@EXEEXT@ OS=`uname` case "$OS" in CYGWIN*) cmd1=`sed 's/e-0/e-/g' testMass1.out | \ sed 's/e+0/e+/g' | sed 's/MEV/GEV/g' | \ sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testMass1.dat` cmd2=`@DIFF_Q@ testMass2.out testMass1.out` ;; *) cmd1=`sed 's/@HEPMC_DEFAULT_MOM_UNIT@/GEV/g' testMass1.out | \ sed 's/@HEPMC_DEFAULT_LEN_UNIT@/MM/g' | \ @DIFF_Q@ - @srcdir@/testMass1.dat` cmd2=`@DIFF_Q@ testMass2.out testMass1.out` esac if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi if [ -n "$cmd2" ] then echo $cmd2 exit 1; fi exit 0; hepmc-2.06.09.orig/test/testStreamIO.cc.in0000644000175000017500000002374711510652322021075 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testStreamIO.cc.in // // garren@fnal.gov, March 2006 // // The same as testHepMC, but using the IO stream directly ////////////////////////////////////////////////////////////////////////// // #include #include "HepMC/GenEvent.h" #include "HepMC/IO_AsciiParticles.h" #ifdef HEPMC_HAS_IO_GENEVENT #include "HepMC/IO_GenEvent.h" #endif #include "HepMC/Version.h" #include "HepMC/IO_Exception.h" // define methods and classes used by this test #include "IsGoodEvent.h" #include "testHepMCMethods.h" void read_testIOGenEvent(std::ostream & os); void read_variousFormats(std::ostream & os); void write_to_stream(std::ostream & os); void write_to_stream3(std::ostream & os); void read_from_stream4(std::ostream & os); int main() { std::ofstream os( "testStreamIO.cout" ); std::ofstream osv( "testStreamIOVarious.cout" ); write_to_stream(os); read_testIOGenEvent(os); read_variousFormats(osv); write_to_stream3(os); read_from_stream4(os); return 0; } void write_to_stream(std::ostream & os) { os << std::endl; os << "basic IO_GenEvent input with streaming output" << std::endl; // declare an input strategy to read the data produced with the // example_MyPythia - units are GeV and mm HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare an output stream const char outfile[] = "testStreamIO.out"; std::ofstream ascii_out( outfile ); if( !ascii_out ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_out.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_out ); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { ++num_good_events; particleTypes( evt, os ); ascii_out << (*evt); } // clean up and get next event delete evt; ascii_in >> evt; } HepMC::write_HepMC_IO_block_end( ascii_out ); //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void read_testIOGenEvent(std::ostream & os) { os << std::endl; os << "streaming input and output" << std::endl; // input units are GeV and mm const char infile[] = "@srcdir@/testIOGenEvent.input"; std::ifstream is( infile ); if( !is ) { std::cerr << "cannot open " << infile << std::endl; exit(-1); } // declare an output stream const char outfile[] = "testStreamIO2.out"; std::ofstream ascii_out( outfile ); if( !ascii_out ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_out.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_out ); // declare another output stream to test precision const char poutfile[] = "testStreamIOprecision.out"; std::ofstream pout( poutfile ); if( !pout ) { std::cerr << "cannot open " << poutfile << std::endl; exit(-1); } pout.precision(10); // declare an IO_AsciiParticle for output HepMC::IO_AsciiParticles particle_out("testStreamIOParticle.out",std::ios::out); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent evt; while ( is ) { // WARNING - we are not using pointers, so this could be an empty event is >> evt; // make sure this is a valid event if( evt.is_valid() ) { ++icount; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt.event_number() << std::endl; if ( is_good_event( &evt ) ) { ++num_good_events; particleTypes(&evt,os); ascii_out << evt; pout << evt; // We must explicitly create the pointer if we want to use this event // with any IO strategy (e.g., IO_AsciiParticles) HepMC::GenEvent* pevt= &evt; particle_out << pevt; } } } HepMC::write_HepMC_IO_block_end( ascii_out ); //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void read_variousFormats(std::ostream & os) { os << std::endl; os << "process varied input" << std::endl; // declare an input stream const char infile[] = "@srcdir@/testHepMCVarious.input"; std::ifstream is( infile ); if( !is ) { std::cerr << "cannot open " << infile << std::endl; exit(-1); } // set input units HepMC::set_input_units( is, HepMC::Units::GEV, HepMC::Units::MM ); // declare an output stream const char outfile[] = "testStreamIOVarious.out"; std::ofstream ascii_out( outfile ); if( !ascii_out ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_out.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_out ); //........................................EVENT LOOP int icount=0, ibad=0; HepMC::GenEvent evt; while ( is ) { // we have to do our own try/catch blocks try { is >> evt; } catch (HepMC::IO_Exception& e) { evt.clear(); ++ibad; } // WARNING - we are not using pointers, so this could be an empty event // make sure this is a valid event if( evt.is_valid() ) { icount++; double pim; os << "Processing Event Number " << icount << " its # " << evt.event_number() << std::endl; ascii_out << evt; // units should be unknown evt.write_units(os); pim = findPiZero(&evt); os << " pizero mass: " << pim << std::endl; // set units to GeV and mm evt.use_units(HepMC::Units::GEV, HepMC::Units::MM); evt.write_units(os); pim = findPiZero(&evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt.momentum_unit() ) << std::endl; // convert units to MeV evt.use_units(HepMC::Units::MEV, HepMC::Units::MM); evt.write_units(os); pim = findPiZero(&evt); os << " pizero mass: " << pim << " " << HepMC::Units::name( evt.momentum_unit() ) << std::endl; } } std::cout << "testSteamIO: the HeavyIon and PdfInfo input stream errors are intentional" << std::endl; HepMC::write_HepMC_IO_block_end( ascii_out ); //........................................PRINT RESULT os << icount << " valid events processed. " ; os << ibad << " invalid events processed. Finished." << std::endl; } void write_to_stream3(std::ostream & os) { os << std::endl; os << "basic IO_GenEvent input with streaming output using member function" << std::endl; // declare an input strategy to read the data produced with the // example_MyPythia - units are GeV and mm HepMC::IO_GenEvent ascii_in("@srcdir@/testIOGenEvent.input",std::ios::in); ascii_in.use_input_units( HepMC::Units::GEV, HepMC::Units::MM ); // declare an output stream const char outfile[] = "testStreamIO3.out"; std::ofstream ascii_out( outfile ); if( !ascii_out ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_out.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_out ); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { ++num_good_events; particleTypes( evt, os ); evt->write(ascii_out); } // clean up and get next event delete evt; ascii_in >> evt; } HepMC::write_HepMC_IO_block_end( ascii_out ); //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void read_from_stream4(std::ostream & os) { os << std::endl; os << "streaming input and output using member functions" << std::endl; // input units are GeV and mm const char infile[] = "@srcdir@/testIOGenEvent.input"; std::ifstream is( infile ); if( !is ) { std::cerr << "cannot open " << infile << std::endl; exit(-1); } // declare an output stream const char outfile[] = "testStreamIO4.out"; std::ofstream ascii_out( outfile ); if( !ascii_out ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_out.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_out ); // declare an instance of the event selection predicate IsGoodEvent is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent evt; while ( is ) { // WARNING - we are not using pointers, so this could be an empty event evt.read(is); // make sure this is a valid event if( evt.is_valid() ) { ++icount; if ( icount%50==1 ) os << "Processing Event Number " << icount << " its # " << evt.event_number() << std::endl; if ( is_good_event( &evt ) ) { ++num_good_events; particleTypes(&evt,os); evt.write(ascii_out); } } } HepMC::write_HepMC_IO_block_end( ascii_out ); //........................................PRINT RESULT os << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } hepmc-2.06.09.orig/test/testHepMCVarious.output0000644000175000017500000000311411374257600022257 0ustar sylvestresylvestre process varied input Processing Event Number 1 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GenEvent units are GeV pizero units are GeV Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 2 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GenEvent units are GeV pizero units are GeV Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 3 its # 1 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GenEvent units are GeV pizero units are GeV Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 4 its # 2 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GenEvent units are GeV pizero units are GeV Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV Processing Event Number 5 its # 3 Momenutm units: GEV Position units: MM pizero mass: 0.13498 GenEvent units are GeV pizero units are GeV Momenutm units: GEV Position units: MM pizero mass: 0.13498 GEV Momenutm units: MEV Position units: MM pizero mass: 134.98 MEV 5 events processed. Finished. hepmc-2.06.09.orig/test/testWeights.cc0000644000175000017500000000331111374257600020410 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testWeights.cc // // garren@fnal.gov, January 2010 // test WeightContainer ////////////////////////////////////////////////////////////////////////// #include #include #include #include #include "HepMC/WeightContainer.h" #include int main() { HepMC::WeightContainer w; // original functionality w.push_back(2.0); w.push_back(4.56); assert( w[0] == 2.0 ); assert( w[1] == 4.56 ); assert( w.size() == 2 ); assert( !w.empty() ); std::vector vec; for( int i = 0; i < 15; ++i ) { double x = (double)i + 0.14*(double)i; vec.push_back( x ); } double v1 = vec[0]; w = vec; assert( w.size() == 15 ); w.pop_back(); assert( w.size() == 14 ); // new functionality std::size_t vs = vec.size(); std::string nm = "tau"; w[nm] = 3.1; assert( w.size() == (vs) ); w["my_pdf"] = 11.3445; //w['PDF_SET_3'] = 10.33; assert( w[nm] == 3.1 ); assert( w[0] == v1 ); assert( w.size() == (vs+1) ); assert( w[vs-1] == 3.1 ); const HepMC::WeightContainer wc = w; assert( wc[nm] == 3.1 ); // lookup a nonexistent name try { double x = wc["bad"]; std::cout << "lookup of nonexistent name returns " << x << std::endl; } catch (std::exception& e) { std::cout << e.what() << std::endl; std::cout << "HepMC testWeights: the above error is intentional" << std::endl; } // another option for user code: if( wc.has_key("bad") ) { double x = wc["bad"]; std::cout << "lookup of nonexistent name returns " << x << std::endl; } w.write(); return 0; } hepmc-2.06.09.orig/test/testHepMC.dat0000644000175000017500000127471211763464675020153 0ustar sylvestresylvestre HepMC::Version 2.06.09 HepMC::IO_GenEvent-START_EVENT_LISTING E 9 51 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 309 1 2 0 4 2.3000000000000001e-01 3.4000000000000002e-01 1.1000000000000000e-01 6.5000000000000002e-02 N 4 "0" "1" "2" "3" U GEV MM V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -9.5802904850995474e-01 3.4892974578914365e-01 1.5677975928920182e+01 1.5711094833049845e+01 0 3 0 0 -3 0 P 12 2101 2.5787537037233477e-01 -1.1110299643709216e-01 1.2403958218239170e+03 1.2403959888942973e+03 5.7933000000000001e-01 2 0 0 -9 0 P 25 2 7.0015367813761997e-01 -2.3782674935205150e-01 2.3333682308044050e+00 2.4698753078332274e+00 3.3000000000000002e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 2.7745239600449745e-01 -1.8469236508822412e-01 -1.2668437617555701e+03 1.2668438056011901e+03 0 3 0 0 -4 0 P 116 2203 -2.7745239600449745e-01 1.8469236508822412e-01 -1.8910900158159372e+03 1.8910902024916190e+03 7.7132999999999996e-01 2 0 0 -15 0 V -3 0 0 0 0 0 0 3 0 P 5 -2 2.1641937170955747e-01 2.1585758680319689e+00 6.7210685943817223e+00 7.0625101892235298e+00 0 3 0 0 -5 0 P 11 2 -7.8613112624186288e-01 -1.2686604299929187e+00 7.9479243119334866e+00 8.0935716653711971e+00 3.3000000000000002e-01 2 0 0 -9 0 P 26 21 -3.8825477811099457e-01 -5.4115869652245197e-01 6.3755964759046990e-01 9.2199610182667313e-01 0 2 0 0 -15 0 V -4 0 0 0 0 0 0 3 0 P 6 1 2.5842389710676084e-01 1.0209235102430092e+00 -7.2160803882991831e+02 7.2160880729913856e+02 0 3 0 0 -5 0 P 114 21 -5.2865744956173000e-01 -6.9649191122955012e-01 -4.4717703814957508e+02 4.4717789304471205e+02 0 2 0 0 -15 0 P 115 21 5.4762343259355273e-01 -5.0895095982937877e-01 -9.7687261399730332e+01 9.7690122132601928e+01 0 2 0 0 -15 0 V -5 0 0 0 0 0 0 2 0 P 7 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 3 0 0 -6 0 P 8 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 -3.5847331975499770e+01 -6.1228439365007388e+00 -3.8384322852098660e+02 3.8556211498155102e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.6322175244316092e+01 9.3023433147757153e+00 -3.3104374171454987e+02 3.4310920250681096e+02 8.2025190709107306e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 6 0 P 13 3 2.3630480898948672e+01 -3.3485870839025779e+01 -1.8716832175387171e+02 1.9160358514788896e+02 5.0000000000000000e-01 2 0 0 -11 0 P 14 21 2.1678474294330585e+00 -5.7647767925118565e-01 -9.1238201043902460e+00 9.3955299099758065e+00 0 2 0 0 -11 0 P 15 21 -6.7346922259594131e-03 2.1414349995112662e-02 -6.6107589858462634e-01 6.6145693295524743e-01 0 2 0 0 -11 0 P 16 21 3.3764665257654020e-01 7.3229494210984691e-01 -9.2744676446560570e-01 1.2289909052362948e+00 0 2 0 0 -11 0 P 17 21 7.9505379403523882e-02 2.0787135033438138e+00 -5.1470482330796514e+00 5.5515291990573523e+00 0 2 0 0 -11 0 P 18 -4 1.0113429576180263e+01 4.0532269037603918e+01 -1.2801602896015814e+02 1.3466811041169737e+02 1.5000000000000000e+00 2 0 0 -11 0 V -9 0 0 0 0 0 0 1 0 P 124 92 -5.2825575586952811e-01 -1.3797634264300109e+00 1.2483437461358506e+03 1.2484895605596685e+03 1.9023446289477928e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 4 0 P 125 321 -5.8300296905006943e-01 -8.3754713871767816e-01 5.2130254825213198e+00 5.3348526983331048e+00 4.9359999999999998e-01 1 0 0 0 0 P 126 -321 -5.6024842041286405e-01 9.9682405893232934e-02 2.0270147074255881e+01 2.0284139573730606e+01 4.9359999999999998e-01 1 0 0 0 0 P 127 2214 4.7811432563610745e-01 -6.6583676148553717e-01 1.1617906836670844e+02 1.1618877689694931e+02 1.2585779083646447e+00 2 0 0 -21 0 P 128 223 1.3688130795729797e-01 2.3938067879971422e-02 1.1066815052123648e+03 1.1066817913906555e+03 7.8364979506277710e-01 2 0 0 -22 0 V -11 0 0 0 0 0 0 1 0 P 129 92 3.6322175244316099e+01 9.3023433147757260e+00 -3.3104374171454992e+02 3.4310920250681102e+02 8.2025190709107449e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 14 0 P 130 -321 8.4774237942142285e+00 -1.1575249821477136e+01 -6.6017595908298702e+01 6.7560489437893608e+01 4.9359999999999998e-01 1 0 0 0 0 P 131 113 8.1166531719425414e+00 -1.1935464788455144e+01 -6.6411749488034161e+01 6.7968219806545932e+01 9.0722388608265891e-01 2 0 0 -23 0 P 132 213 4.4640857480875296e+00 -6.2464911552612126e+00 -3.4037849594606975e+01 3.4900217244072529e+01 7.0939787097003992e-01 2 0 0 -24 0 P 133 -213 2.6219761201134175e+00 -1.5905307818721801e+00 -1.5758999082365960e+01 1.6091483712895801e+01 1.0886914447407658e+00 2 0 0 -25 0 P 134 211 1.0991665653485541e+00 -1.7747942066025924e+00 -6.2642892043534646e+00 6.6044576336630119e+00 1.3957000000000000e-01 1 0 0 0 0 P 135 221 -1.0539935670700662e-01 -1.9008242486428576e-02 -2.2895443225905412e+00 2.3565196891354958e+00 5.4744999999999999e-01 2 0 0 -26 0 P 136 -211 3.7094048605218444e-01 1.0848859760136005e+00 -4.5535756686736004e+00 4.6977766635271028e+00 1.3957000000000000e-01 1 0 0 0 0 P 137 213 3.5612107659123227e-01 -2.2610769118583549e-01 -2.1425609141914284e+00 2.3142161217116470e+00 7.6621281493029081e-01 2 0 0 -27 0 P 138 -211 -1.2806866025349489e-01 9.3356523387269782e-02 -6.4814017320824868e-01 6.8167623636481678e-01 1.3957000000000000e-01 1 0 0 0 0 P 139 111 1.3741706190609260e+00 2.0556848430328345e+00 -6.8256340665829400e+00 7.2609699817216429e+00 1.3497999999999999e-01 2 0 0 -28 0 P 140 111 -2.7368763101259033e-02 1.1354557010925908e+00 -6.7655318092670651e+00 6.8615340093117556e+00 1.3497999999999999e-01 2 0 0 -29 0 P 141 2214 2.0766566444824259e+00 7.3115436382185655e+00 -2.1956232593249634e+01 2.3269209316796356e+01 1.2683766583146068e+00 2 0 0 -30 0 P 142 -323 1.2897259685408347e+00 4.2009194012475897e+00 -1.2360417564658022e+01 1.3146440715478059e+01 8.5899023461601665e-01 2 0 0 -31 0 P 143 -4314 6.3360918299439941e+00 2.6788143919123808e+01 -8.5011621324469345e+01 8.9395991937693410e+01 2.6299999999999999e+00 2 0 0 -32 0 V -13 0 0 0 0 0 6 1 0 P 19 2 -1.3422716221329383e+00 2.2458209152218909e+00 1.2243765530778314e+00 2.8886852778657341e+00 0 2 0 0 -13 0 P 20 21 -3.1136850524464815e-01 1.1424832197198764e+00 4.2154796869102973e-01 1.2569490615404091e+00 0 2 0 0 -13 0 P 21 21 -1.0366767212476704e+00 6.4496905084407596e-01 1.1318981087915423e+00 1.6648955011079218e+00 0 2 0 0 -13 0 P 22 21 -1.9193652015049112e+00 1.6799815126144066e+00 3.7499482821555006e+00 4.5352412039841017e+00 0 2 0 0 -13 0 P 23 21 1.6385288267246378e+00 -1.7821619094090042e+00 3.0468215298537345e+01 3.0564244163161977e+01 0 2 0 0 -13 0 P 24 -2 1.3422716221329383e+00 -2.2458209152218909e+00 8.7851492924509799e+01 8.7890444382515369e+01 0 2 0 0 -13 0 P 144 92 -1.6288816012725915e+00 1.6852718737693544e+00 1.2484747913576305e+02 1.2880045959017551e+02 3.1578029506702293e+01 2 0 0 -14 0 V -14 0 0 0 0 0 0 10 0 P 145 321 -1.1010053635793597e+00 1.9303424342721458e+00 1.3214859368578387e+00 2.6321855492148107e+00 4.9359999999999998e-01 1 0 0 0 0 P 146 333 -2.2742645850539889e+00 1.8224975026383272e+00 2.4028292558239515e+00 3.9128320814196207e+00 1.0212198170763180e+00 2 0 0 -33 0 P 147 333 -4.5546778245550490e-01 1.0958084876084577e+00 1.4565589353781194e+00 2.1380684792764288e+00 1.0205516878021945e+00 2 0 0 -34 0 P 148 -313 2.9421386514592190e-01 -7.1874852810811476e-02 5.9218326847841043e+00 5.9968596558591178e+00 8.9582118337464256e-01 2 0 0 -35 0 P 149 313 2.7548192965343210e-01 -2.2221641303721607e-01 3.6869876420023866e+00 3.8215580130646662e+00 9.4082801146210371e-01 2 0 0 -36 0 P 150 -311 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -37 0 P 151 113 7.6713384223317649e-01 -1.4337349851236222e-01 1.7498595349866797e+01 1.7536011090934025e+01 8.3773233852236728e-01 2 0 0 -38 0 P 152 223 3.0597082946051074e-01 -8.1635843373088079e-01 4.6141761958922793e+01 4.6156652536640770e+01 7.8378407325468757e-01 2 0 0 -39 0 P 153 113 2.6009135348849310e-01 -7.6182406810884840e-01 1.6415535872747945e+01 1.6450982214462886e+01 7.1900932413296093e-01 2 0 0 -40 0 P 154 -213 1.0999640936951034e+00 -1.2737984655891550e+00 2.3070773839530055e+01 2.3159199511647177e+01 1.1204610333156111e+00 2 0 0 -41 0 V -15 0 0 0 0 0 87 1 0 P 27 21 5.2847330830817318e-01 3.9482837243296416e+00 7.0850922196230783e+01 7.0962817055566134e+01 0 2 0 0 -15 0 P 28 21 -5.7917808217076661e-01 2.0509273516155622e+00 4.7843281643543889e+01 4.7890722991785530e+01 0 2 0 0 -15 0 P 29 21 -3.6941404946741234e+00 1.8687682072877096e+00 1.6063205049313078e+02 1.6068539017046533e+02 0 2 0 0 -15 0 P 30 21 -7.8285328618851413e-01 2.2745788741529469e+00 1.7376288796631704e+02 1.7377953792871381e+02 0 2 0 0 -15 0 P 31 21 -1.6385288267246378e+00 1.7821619094090042e+00 4.5366984237005170e+02 4.5367630173269453e+02 0 2 0 0 -15 0 P 32 21 -2.6531228347646882e+00 -5.5253588200530759e+00 2.7403897665525697e+03 2.7403966211621473e+03 0 2 0 0 -15 0 P 33 21 6.3759445235574630e-01 2.0594842167424357e-01 2.7690485029478161e+01 2.7698590263871175e+01 0 2 0 0 -15 0 P 34 21 8.8753932067569985e-01 9.5420023664512799e-02 3.9744074807287475e+01 3.9754098069430839e+01 0 2 0 0 -15 0 P 35 21 1.6843215363312323e+00 -2.7821864416007021e+00 1.0736410900449084e+02 1.0741335765519001e+02 0 2 0 0 -15 0 P 36 21 5.2725985674785902e-01 -9.3860440241317822e-01 3.4755869739806450e+01 3.4772538914366905e+01 0 2 0 0 -15 0 P 37 21 7.8285328618851413e-01 -2.2745788741529469e+00 6.8500764443718325e+01 6.8542988683717482e+01 0 2 0 0 -15 0 P 38 21 -5.6362905336703299e+00 -6.2420799417268809e+00 2.6598779293208821e+02 2.6612071945239870e+02 0 2 0 0 -15 0 P 39 21 -1.3897196033319998e+00 -1.5471710640558063e+00 5.5330799198385002e+01 5.5369869051762613e+01 0 2 0 0 -15 0 P 40 21 -1.5858347610022412e+00 -2.7473769215456776e+00 3.2616100677436002e+01 3.2770001147984203e+01 0 2 0 0 -15 0 P 41 21 -2.0185257136541477e+00 -2.1264412338423813e+00 2.5855386277297548e+01 2.6021091405356817e+01 0 2 0 0 -15 0 P 42 21 -2.8599757261838490e+00 -2.5688235222694822e-01 2.8305965682677051e+01 2.8451241500611840e+01 0 2 0 0 -15 0 P 43 21 -1.8535663224563970e+00 5.7728168876603392e-01 2.0409299686710998e+01 2.0501426193363006e+01 0 2 0 0 -15 0 P 44 21 -2.4247486989411180e+00 3.2791812337924786e-01 1.9996455113056196e+01 2.0145598865189601e+01 0 2 0 0 -15 0 P 45 21 -7.7619559597960892e+00 1.2490160387269378e+00 5.1477609326338026e+01 5.2074487643585080e+01 0 2 0 0 -15 0 P 46 21 -1.6843215363312323e+00 2.7821864416007021e+00 2.0364105336307141e+01 2.0622179481853728e+01 0 2 0 0 -15 0 P 47 21 4.2114615912387715e-01 1.0217234629964247e+00 1.3173009510357799e+01 1.3219283735594725e+01 0 2 0 0 -15 0 P 48 21 1.4624059777523883e+00 2.2397226244353168e+00 2.1481799152918637e+01 2.1647694646878897e+01 0 2 0 0 -15 0 P 49 21 1.3897196033319998e+00 1.5471710640558063e+00 1.2560810093045554e+01 1.2731810910899199e+01 0 2 0 0 -15 0 P 50 21 1.9372001777844456e+00 -1.2827480084352952e-01 2.9200030987296010e+01 2.9264500826297837e+01 0 2 0 0 -15 0 P 51 21 7.7619559597960892e+00 -1.2490160387269378e+00 7.1494086453218344e+01 7.1925047091865494e+01 0 2 0 0 -15 0 P 52 21 1.0346584559188690e+00 2.4641502772336282e-01 8.0203549012479822e+00 8.0905705131507784e+00 0 2 0 0 -15 0 P 53 21 5.6362905336703299e+00 6.2420799417268809e+00 3.0354535817447225e+01 3.1498082126877776e+01 0 2 0 0 -15 0 P 54 21 8.5200287437891176e-01 4.8496411120420584e+00 1.8643195705153385e+01 1.9282470638230155e+01 0 2 0 0 -15 0 P 55 21 1.7037463727801377e-01 2.3431367096279225e+00 5.4376283413198969e+00 5.9234381177960280e+00 0 2 0 0 -15 0 P 56 21 1.5858347610022412e+00 2.7473769215456776e+00 7.6104127916923217e+00 8.2450794234015081e+00 0 2 0 0 -15 0 P 57 21 2.0185257136541477e+00 2.1264412338423813e+00 3.0983765767253653e+00 4.2656928849682192e+00 0 2 0 0 -15 0 P 58 21 2.6531228347646882e+00 5.5253588200530759e+00 7.0764229453390852e+00 9.3618594610264054e+00 0 2 0 0 -15 0 P 59 21 -5.4958283952121656e-01 2.9060742837279863e+00 4.0558675757773539e+00 5.0196982810009008e+00 0 2 0 0 -15 0 P 60 21 -2.4973477455846362e+00 3.3661783072244771e+00 -4.0445481404606944e-02 4.1916032726596830e+00 0 2 0 0 -15 0 P 61 21 -1.3441969160771789e+00 1.3112345489852457e+00 -7.9560756534537536e-01 2.0394099121262346e+00 0 2 0 0 -15 0 P 62 21 -8.8753932067569985e-01 -9.5420023664512799e-02 9.9640965813476101e-01 1.3377829545504945e+00 0 2 0 0 -15 0 P 63 21 -5.9163429359758224e+00 -7.3953762176103388e-02 5.3728533689185758e+00 7.9922547643897532e+00 0 2 0 0 -15 0 P 64 21 -3.4026097992283950e+00 -1.0490545054749216e+00 7.6673137586059559e-01 3.6422720661685082e+00 0 2 0 0 -15 0 P 65 21 -2.6407486104449145e+00 -3.9050172412465817e-01 -5.7600510296339077e-03 2.6694714829529347e+00 0 2 0 0 -15 0 P 66 21 -6.3759445235574630e-01 -2.0594842167424357e-01 -1.0647452673764712e-01 6.7843810543699712e-01 0 2 0 0 -15 0 P 67 21 -2.3111809738720206e+00 -1.5156191657255100e+00 -8.7350441149539659e-01 2.8985632486465485e+00 0 2 0 0 -15 0 P 68 21 -1.4624059777523883e+00 -2.2397226244353168e+00 9.1784142594430213e-02 2.6764553063716825e+00 0 2 0 0 -15 0 P 69 21 -1.7037463727801377e-01 -2.3431367096279225e+00 1.0043874402615933e+00 2.5550168858911322e+00 0 2 0 0 -15 0 P 70 21 6.1363209212199210e-01 -1.4727619173352384e+00 5.0948147557915768e-01 1.6748562277381591e+00 0 2 0 0 -15 0 P 71 21 -8.5200287437891176e-01 -4.8496411120420584e+00 2.6976624699897158e+00 5.6144733159531066e+00 0 2 0 0 -15 0 P 72 21 5.4958283952121656e-01 -2.9060742837279863e+00 2.4806170017111224e+00 3.8601515189458055e+00 0 2 0 0 -15 0 P 73 21 5.7917808217076661e-01 -2.0509273516155622e+00 3.9498846714721818e+00 4.4881331498076946e+00 0 2 0 0 -15 0 P 74 21 1.8535663224563970e+00 -5.7728168876603392e-01 1.3239861314488808e+00 2.3498726638262908e+00 0 2 0 0 -15 0 P 75 21 3.6941404946741234e+00 -1.8687682072877096e+00 1.3698292678439965e+00 4.3606651820568061e+00 0 2 0 0 -15 0 P 76 21 3.4026097992283950e+00 1.0490545054749216e+00 8.5365778392455860e-01 3.6615571022882216e+00 0 2 0 0 -15 0 P 77 21 8.0027583532907598e-01 7.2225688798810728e-01 -5.5235642504880245e-01 1.2112778562949993e+00 0 2 0 0 -15 0 P 78 21 2.5249116086388907e+00 1.2712899341906045e+00 -2.0235598552540077e+00 3.4765142335404589e+00 0 2 0 0 -15 0 P 79 21 2.8599757261838490e+00 2.5688235222694822e-01 -2.5145198343890223e+00 3.8168389663152258e+00 0 2 0 0 -15 0 P 80 21 4.5243527644201125e+00 -1.4453032263767607e+00 -1.4282200794269138e+00 4.9596856703191596e+00 0 2 0 0 -15 0 P 81 21 1.9193652015049112e+00 -1.6799815126144066e+00 -1.1030943101881863e+00 2.7790497866435802e+00 0 2 0 0 -15 0 P 82 21 4.4842555716047272e-01 -7.5493427251315082e-01 -2.8765951844044063e-01 9.2399092781207914e-01 0 2 0 0 -15 0 P 83 21 1.3441969160771789e+00 -1.3112345489852457e+00 -6.9608922544577423e-01 2.0026835999292643e+00 0 2 0 0 -15 0 P 84 21 5.8282497851138615e+00 -7.7105256426171707e+00 -6.2054388130251672e+00 1.1485998959835227e+01 0 2 0 0 -15 0 P 85 21 3.1136850524464815e-01 -1.1424832197198764e+00 -4.9383638733881891e-01 1.2830014149873872e+00 0 2 0 0 -15 0 P 86 21 -5.2847330830817318e-01 -3.9482837243296416e+00 -1.2977179899770348e+00 4.1895465610147555e+00 0 2 0 0 -15 0 P 87 21 -6.1363209212199210e-01 1.4727619173352384e+00 -1.8903676382598003e+00 2.4736737491866050e+00 0 2 0 0 -15 0 P 88 21 -4.4842555716047272e-01 7.5493427251315082e-01 -2.2310748267761786e+00 2.3976459535978192e+00 0 2 0 0 -15 0 P 89 21 6.7732806682179603e-01 2.7745959877202684e+00 -9.9674458406715871e+00 1.0368564644727797e+01 0 2 0 0 -15 0 P 90 21 -5.2725985674785902e-01 9.3860440241317822e-01 -5.7793854616152487e+00 5.8787989840355044e+00 0 2 0 0 -15 0 P 91 21 -1.9372001777844456e+00 1.2827480084352952e-01 -1.4544901177980950e+01 1.4673900273293777e+01 0 2 0 0 -15 0 P 92 21 -1.3461311705244356e+00 2.2615002471675072e-01 -1.0101494546248885e+01 1.0193301968931992e+01 0 2 0 0 -15 0 P 93 21 -1.9314754602611099e+00 2.2368463567760051e+00 -2.3796213393013595e+01 2.3979029399107308e+01 0 2 0 0 -15 0 P 94 21 -5.8282497851138615e+00 7.7105256426171707e+00 -8.0893963492787165e+01 8.1469344116762841e+01 0 2 0 0 -15 0 P 95 21 -1.1595476048730318e+00 7.1533408734022323e+00 -8.3670200783024256e+01 8.3983434886712317e+01 0 2 0 0 -15 0 P 96 21 2.3111809738720206e+00 1.5156191657255100e+00 -2.0500855447634013e+01 2.0686317531989296e+01 0 2 0 0 -15 0 P 97 21 5.9163429359758224e+00 7.3953762176103388e-02 -6.3289088211230968e+01 6.3565063277747043e+01 0 2 0 0 -15 0 P 98 21 2.4247486989411180e+00 -3.2791812337924786e-01 -1.6499642496191235e+01 1.6680082105636558e+01 0 2 0 0 -15 0 P 99 21 1.0366767212476704e+00 -6.4496905084407596e-01 -3.4799418378807259e+00 3.6879098275250999e+00 0 2 0 0 -15 0 P 100 21 2.4973477455846362e+00 -3.3661783072244771e+00 -2.6779995437190731e+01 2.7106015158528219e+01 0 2 0 0 -15 0 P 101 21 -6.7732806682179603e-01 -2.7745959877202684e+00 -1.9384033357688871e+01 1.9593312772912416e+01 0 2 0 0 -15 0 P 102 21 -4.2114615912387715e-01 -1.0217234629964247e+00 -2.4391922343815637e+01 2.4416944087025197e+01 0 2 0 0 -15 0 P 103 21 1.9314754602611099e+00 -2.2368463567760051e+00 -4.5510256054231363e+01 4.5606112366645718e+01 0 2 0 0 -15 0 P 104 21 3.6613162463384313e-01 -2.5172544962865279e-01 -1.1495383306573240e+01 1.1503966943345695e+01 0 2 0 0 -15 0 P 105 21 2.1489368818706622e+00 3.4062409825483048e-01 -6.9569518582389307e+01 6.9603533461197117e+01 0 2 0 0 -15 0 P 106 21 2.6407486104449145e+00 3.9050172412465817e-01 -1.7282354599157296e+02 1.7284416129543237e+02 0 2 0 0 -15 0 P 107 21 5.8857977426890551e-01 2.1863311847542044e-01 -8.9377764843706004e+01 8.9379970211720149e+01 0 2 0 0 -15 0 P 108 21 1.3461311705244356e+00 -2.2615002471675072e-01 -7.9117499390447946e+01 7.9129273488131233e+01 0 2 0 0 -15 0 P 109 21 1.1595476048730318e+00 -7.1533408734022323e+00 -5.2797615538703258e+02 5.2802588524955013e+02 0 2 0 0 -15 0 P 110 21 -3.6613162463384313e-01 2.5172544962865279e-01 -1.6292945304739521e+03 1.6292945910578617e+03 0 2 0 0 -15 0 P 111 21 -5.8857977426890551e-01 -2.1863311847542044e-01 -3.8687281312035248e+02 3.8687332262414571e+02 0 2 0 0 -15 0 P 112 21 -2.1489368818706622e+00 -3.4062409825483048e-01 -2.3501688939757997e+02 2.3502696070156060e+02 0 2 0 0 -15 0 P 113 21 -4.5243527644201125e+00 1.4453032263767607e+00 -1.3300985226359649e+02 1.3309462599420328e+02 0 2 0 0 -15 0 P 155 92 6.0421399882133819e+00 -1.2450459757124852e+00 -1.5395010229486406e+03 1.1011830204374652e+04 1.0903683001294694e+04 2 0 0 -16 0 V -16 0 0 0 0 0 0 163 0 P 156 221 1.8165572807868086e-01 -6.0160239653196425e-02 1.2915962211331227e+00 1.4158179116412846e+00 5.4744999999999999e-01 2 0 0 -42 0 P 157 213 -5.3597162004113172e-02 -9.9845238084615928e-02 3.3191484434642105e+00 3.4115809658474312e+00 7.8057451241923836e-01 2 0 0 -43 0 P 158 2114 4.4149662418739066e-01 -6.3222835626578738e-02 5.7512007177449558e+00 5.8910422717021103e+00 1.1954718545735590e+00 2 0 0 -44 0 P 159 -213 -7.8704970943413013e-02 5.8871372637053498e-01 6.5088177272712837e+00 6.5913624637824535e+00 8.5356464198742310e-01 2 0 0 -45 0 P 160 -1114 -7.4630965933767657e-01 2.2606487064529914e+00 5.1016155635761841e+01 5.1088038448627401e+01 1.2930684415561233e+00 2 0 0 -46 0 P 161 313 2.2073358893449499e-01 6.4393754468203523e-01 1.7403603859317190e+01 1.7437593555878546e+01 8.4903642397834189e-01 2 0 0 -47 0 P 162 -321 -1.8000749627380799e-01 1.7259669392466912e+00 4.5963975898605860e+01 4.5999370495059033e+01 4.9359999999999998e-01 1 0 0 0 0 P 163 2224 -1.6345542144489289e+00 1.4994653481876703e+00 1.0873485569765424e+02 1.0876350393474506e+02 1.1448933414195375e+00 2 0 0 -48 0 P 164 -2224 -1.4132855118930063e+00 1.1461356416346355e+00 1.8173523469621284e+02 1.8174891982765669e+02 1.2896998043202212e+00 2 0 0 -49 0 P 165 321 -5.4435213182232578e-01 1.5277767401501612e+00 7.3178574446850774e+01 7.3198209131401896e+01 4.9359999999999998e-01 1 0 0 0 0 P 166 -311 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 2 0 0 -50 0 P 167 -211 -4.7228145882501238e-02 4.2962468283138122e-01 1.3805262834679914e+02 1.3805337547887126e+02 1.3957000000000000e-01 1 0 0 0 0 P 168 2224 -1.2377390866873145e-01 7.7858231979998655e-03 2.6821955586202665e+02 2.6822236050000436e+02 1.2203051962378006e+00 2 0 0 -51 0 P 169 111 -2.7863633177704455e-01 3.5148613196916430e-02 1.3824363250696737e+02 1.3824398367362045e+02 1.3497999999999999e-01 2 0 0 -52 0 P 170 -2224 -2.0076223782297234e-01 -8.3155972687518265e-01 3.7131743420163679e+02 3.7132010358255786e+02 1.1182957654914161e+00 2 0 0 -53 0 P 171 211 -9.0159311494263239e-01 4.0222294603082764e-01 2.5721020011470176e+02 2.5721213263816520e+02 1.3957000000000000e-01 1 0 0 0 0 P 172 -213 -2.1390170311781478e-01 -4.7293062190977475e-01 4.0647663068551151e+02 4.0647787660817539e+02 8.6224192288579649e-01 2 0 0 -54 0 P 173 213 -1.6394981974144815e-01 -3.6390764273644982e-01 3.1530768998372338e+02 3.1530860269396891e+02 6.4518341228499854e-01 2 0 0 -55 0 P 174 -211 -6.8922251856284578e-01 -5.5121725590629100e-01 2.2874450224070739e+02 2.2874624729878568e+02 1.3957000000000000e-01 1 0 0 0 0 P 175 321 -4.1772769247750424e-01 -1.5798410967589427e+00 5.1081385101672851e+02 5.1081670335436024e+02 4.9359999999999998e-01 1 0 0 0 0 P 176 -311 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -56 0 P 177 113 -5.2643273927719736e-01 -4.3391462681262000e-01 3.0178378185602827e+02 3.0178561155077705e+02 7.9933373333579127e-01 2 0 0 -57 0 P 178 311 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -58 0 P 179 -321 7.2317674462283765e-01 -1.2226574062176467e+00 4.4456491915052922e+01 4.4481919811200910e+01 4.9359999999999998e-01 1 0 0 0 0 P 180 213 3.9201411601302034e-02 -5.3432434859259026e-01 1.7917308663988145e+01 1.7935856599788213e+01 6.1478691216654369e-01 2 0 0 -59 0 P 181 331 1.2599340251930209e+00 -2.7659863369956459e+00 1.2307250247953787e+02 1.2311375362021128e+02 9.5778375322348541e-01 2 0 0 -60 0 P 182 -213 -1.5530659506175648e+00 -2.2616086947259535e+00 8.0747599468933487e+01 8.0796786087538621e+01 6.4725137708597513e-01 2 0 0 -61 0 P 183 213 -1.6396015234384054e+00 -1.8820239306898225e+00 8.4482738305729626e+01 8.4522463821248692e+01 6.9534994682336593e-01 2 0 0 -62 0 P 184 -211 -1.4900955021410117e-01 -5.5436673909137790e-01 2.4068021231383486e+01 2.4075270551059063e+01 1.3957000000000000e-01 1 0 0 0 0 P 185 321 -2.3490349330881353e+00 -2.9247785702907758e+00 9.3533148652207558e+01 9.3609646044401075e+01 4.9359999999999998e-01 1 0 0 0 0 P 186 333 -6.9519406392065963e-01 -6.6028658822733255e-01 2.6147485254333493e+01 2.6184991534611676e+01 1.0215299197743888e+00 2 0 0 -63 0 P 187 -313 -2.1592410406662772e+00 -2.1385722289257187e+00 3.5777276528790495e+01 3.5916418958711979e+01 8.6012903110637817e-01 2 0 0 -64 0 P 188 223 -1.6953630936206241e+00 -1.9669557779668789e+00 3.2090263544607552e+01 3.2204688649761835e+01 7.8344471026469786e-01 2 0 0 -65 0 P 189 113 -7.9987358115612073e-01 -1.7550273094835359e-01 1.0517749031625208e+01 1.0574965987068071e+01 7.3229910623443761e-01 2 0 0 -66 0 P 190 113 -2.9543327199843792e+00 7.0888064205805207e-02 2.5974406783582687e+01 2.6151198016211328e+01 6.9443717214128031e-01 2 0 0 -67 0 P 191 -211 -2.4949348211979636e+00 5.2980481463842022e-01 1.5372612213153992e+01 1.5583391124673458e+01 1.3957000000000000e-01 1 0 0 0 0 P 192 213 -1.3898104129259063e+00 -3.3134373125214639e-01 1.2047036725250917e+01 1.2157769658158903e+01 7.9931692662395637e-01 2 0 0 -68 0 P 193 111 -2.2799119642017178e+00 4.3752770426735177e-01 2.3246460482696069e+01 2.3362482180420418e+01 1.3497999999999999e-01 2 0 0 -69 0 P 194 313 -2.4419822723539255e+00 7.5246315720506707e-01 2.0137219005222946e+01 2.0317671494227596e+01 8.7789945984415341e-01 2 0 0 -70 0 P 195 -311 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406863e+01 4.9767000000000000e-01 2 0 0 -71 0 P 196 311 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251241e+00 4.9767000000000000e-01 2 0 0 -72 0 P 197 3122 -1.9236510625059072e-01 8.2977576326676017e-01 1.4477039072603571e+01 1.4544928130571776e+01 1.1156800000000000e+00 2 0 0 -73 0 P 198 -211 6.3338164498712834e-01 3.5399408796871440e-01 5.6360731374143551e+00 5.6843015681530389e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 -1114 2.8418767416834040e-01 1.9009231667892663e+00 1.4825560697947701e+01 1.4996992817447840e+01 1.1909122712715725e+00 2 0 0 -74 0 P 200 331 -1.6773077680880741e-01 2.3066748177860730e-01 7.9825334923997175e+00 8.0448349089223949e+00 9.5769862372992598e-01 2 0 0 -75 0 P 201 -211 1.2745143823559155e+00 8.7315785472443819e-01 1.4945371702992986e+01 1.5025658277613747e+01 1.3957000000000000e-01 1 0 0 0 0 P 202 223 1.3935469391089825e+00 1.2208505817155041e-01 9.7353675813556713e+00 9.8665054363242177e+00 7.8337076022504715e-01 2 0 0 -76 0 P 203 111 1.3973791152251329e+00 9.4387948276398770e-01 2.5238089010764789e+01 2.5294721453009451e+01 1.3497999999999999e-01 2 0 0 -77 0 P 204 223 1.9819196620715647e+00 2.7256017120108078e-01 1.2901543418614215e+01 1.3078424181843234e+01 7.7010512529335406e-01 2 0 0 -78 0 P 205 111 5.0694484478662449e-01 1.0981187792552677e-01 7.2324938379395425e+00 7.2523264157387963e+00 1.3497999999999999e-01 2 0 0 -79 0 P 206 2214 2.6231820800260413e+00 -2.1009869920493901e-01 3.3031506472103509e+01 3.3159857071285359e+01 1.2531861326555973e+00 2 0 0 -80 0 P 207 -2114 2.3006062341126947e+00 1.2299131996010686e+00 1.2138140113143205e+01 1.2475417039766334e+01 1.2231555039343724e+00 2 0 0 -81 0 P 208 -211 7.6302633964084460e-02 1.5294205975419628e-01 1.0724296502066093e+00 1.0948965728021911e+00 1.3957000000000000e-01 1 0 0 0 0 P 209 211 1.1560279240236406e+00 4.6289713561619972e-01 8.6267685373819454e+00 8.7172982914287811e+00 1.3957000000000000e-01 1 0 0 0 0 P 210 331 1.1556392388883838e+00 -2.5755365958322113e-01 7.8237588787425363e+00 7.9706004239347426e+00 9.5782680443949475e-01 2 0 0 -82 0 P 211 -211 4.0447479049561608e+00 4.8918526123536763e+00 2.6712656438317385e+01 2.7456796997685622e+01 1.3957000000000000e-01 1 0 0 0 0 P 212 213 7.7822367947735926e-01 3.3900130568191416e+00 8.2081009398129634e+00 8.9417149654048735e+00 6.9535952117122202e-01 2 0 0 -83 0 P 213 223 1.1445980353394032e+00 4.3636285502617325e+00 1.5423787965164273e+01 1.6089060175042317e+01 7.8311131687929891e-01 2 0 0 -84 0 P 214 -213 7.5834067266838456e-01 1.5923984093401140e+00 3.8430376052075017e+00 4.3410912392275440e+00 9.8250793501480560e-01 2 0 0 -85 0 P 215 221 1.6837706068490421e+00 1.9558629699116810e+00 2.7880387003202403e+00 3.8384039274865156e+00 5.4744999999999999e-01 2 0 0 -86 0 P 216 111 8.3865023530752991e-01 2.5156120799758663e+00 3.5029630868211119e+00 4.3955213959362291e+00 1.3497999999999999e-01 2 0 0 -87 0 P 217 211 5.3811991830180717e-01 4.3516930755823646e-01 9.7424349476318306e-01 1.2031523364488135e+00 1.3957000000000000e-01 1 0 0 0 0 P 218 -213 -1.2664119511626293e-02 2.0289922277049239e+00 2.5027726718674566e+00 3.3278210192726152e+00 8.3279760401676484e-01 2 0 0 -88 0 P 219 213 7.9782984590529493e-01 1.4807864674439419e+00 1.7275967053669015e+00 2.5231282680978273e+00 7.4318561322013754e-01 2 0 0 -89 0 P 220 -211 -1.7206740038871476e-01 1.3579752606481117e+00 4.3740045976586339e-01 1.4437807818059591e+00 1.3957000000000000e-01 1 0 0 0 0 P 221 111 -6.7844388624597163e-01 9.5974588766622640e-02 9.6285525260314364e-01 1.1894566265059532e+00 1.3497999999999999e-01 2 0 0 -90 0 P 222 323 -5.1707067933979345e-01 2.3286957007650688e+00 1.3434126861683076e+00 2.8809638889100553e+00 8.9722323289757167e-01 2 0 0 -91 0 P 223 -321 1.5948369342205113e-01 3.4592572994388832e-01 2.1793282552963544e-01 6.6048113943403508e-01 4.9359999999999998e-01 1 0 0 0 0 P 224 213 -7.3609700918726173e-01 2.2196956683538419e-01 4.4047036829215229e-02 8.9044876371975390e-01 4.4704537109904641e-01 2 0 0 -92 0 P 225 -213 -1.1297770832448866e+00 8.3254897042943654e-01 1.0200247749153839e+00 1.8955811807234102e+00 7.6370375492277087e-01 2 0 0 -93 0 P 226 113 -1.6995621736599003e+00 1.4685684665883294e+00 -2.0508783389087765e-01 2.4313022385442888e+00 9.0772497616142289e-01 2 0 0 -94 0 P 227 213 -1.6133273961280552e+00 3.8441715104224972e-01 1.6498158834705128e+00 2.4577948404164869e+00 7.5383101230550731e-01 2 0 0 -95 0 P 228 -211 -1.9628702716387874e+00 -7.3483760608346527e-01 4.5330462307682795e-01 2.1489092295396355e+00 1.3957000000000000e-01 1 0 0 0 0 P 229 111 -1.5606454837837023e+00 -1.6798349234264481e-01 2.0745900868571594e+00 2.6049906734267005e+00 1.3497999999999999e-01 2 0 0 -96 0 P 230 2212 -3.9697249978842710e+00 -1.1210073588914939e+00 -2.4957019805628813e-01 4.2376892210465380e+00 9.3827000000000005e-01 1 0 0 0 0 P 231 -2112 -1.4701127234394118e+00 -3.3130613402121328e-01 7.1818390386388109e-01 1.9156134993071257e+00 9.3957000000000002e-01 1 0 0 0 0 P 232 221 -1.1000387119379464e+00 1.2047991748431918e-02 2.3597353472712018e-01 1.2512455128626347e+00 5.4744999999999999e-01 2 0 0 -97 0 P 233 313 -1.8638580036210914e+00 -2.0849135666065326e+00 1.1058371658996702e+00 3.1375648291712075e+00 8.9476588104641208e-01 2 0 0 -98 0 P 234 -311 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 2 0 0 -99 0 P 235 -211 1.8567812528727759e-01 -4.3364559606164149e-01 1.0788064812559593e-01 5.0362971351366170e-01 1.3957000000000000e-01 1 0 0 0 0 P 236 111 1.7230464101786414e-01 -4.3405194404859709e-01 4.3813477170707515e-01 6.5442467712294616e-01 1.3497999999999999e-01 2 0 0 -100 0 P 237 323 -1.1716969209035828e+00 -3.7853144588899852e+00 1.9043310292409132e+00 4.5060519066309812e+00 9.8820437622307189e-01 2 0 0 -101 0 P 238 -313 -1.6410076009926275e-01 -1.4570587045948526e+00 1.4852836485052954e+00 2.2646186615896742e+00 8.7890900427872454e-01 2 0 0 -102 0 P 239 -213 2.9859903663276971e-01 -4.4692505472942984e-01 4.5483781888333707e-01 8.3920055178797315e-01 4.5659252667095346e-01 2 0 0 -103 0 P 240 113 2.0016506456433403e-01 -1.6011853898426920e+00 1.4138708387925774e+00 2.2452471327698023e+00 6.6199942047199278e-01 2 0 0 -104 0 P 241 213 -2.3003149142417012e-01 -2.1132565309966589e+00 9.9307006781204110e-01 2.4679901291257655e+00 7.6551908208165509e-01 2 0 0 -105 0 P 242 313 7.8845462100362285e-01 -2.7171349343182998e+00 1.5555868003253859e+00 3.3321395556195985e+00 8.2390581021335585e-01 2 0 0 -106 0 P 243 -323 6.0139418868086758e-01 -8.5371777867186660e-01 2.5315930098409281e+00 2.8823457853053944e+00 8.9913571989593200e-01 2 0 0 -107 0 P 244 2224 3.9634867640488403e+00 -3.9023657068966511e-01 1.2944872592527801e+00 4.4053619303472136e+00 1.3674811015479447e+00 2 0 0 -108 0 P 245 111 5.2320674801323763e-01 -5.6791094765218242e-01 1.5001282470688018e-01 7.9811753119845985e-01 1.3497999999999999e-01 2 0 0 -109 0 P 246 -2214 8.3297739830777207e-01 -4.7410979366851758e-01 3.8046826545214280e-01 1.5927212525905523e+00 1.2138259532953917e+00 2 0 0 -110 0 P 247 313 2.6284615862436369e+00 6.0363541092985762e-01 -2.9923948889033092e-01 2.8507710309611904e+00 8.7416541888209409e-01 2 0 0 -111 0 P 248 -321 4.4240074925043749e-01 -2.1249433327407575e-02 -3.4740324441317399e-01 7.4866543634849603e-01 4.9359999999999998e-01 1 0 0 0 0 P 249 213 1.4537845118565145e+00 2.2536052458945438e-01 -1.6664223186205686e-03 1.6484904677325376e+00 7.4380190392642742e-01 2 0 0 -112 0 P 250 313 1.0031861708363126e+00 5.9899961604393381e-01 -8.0983003889045202e-01 1.6663566341385945e+00 8.6933118365234718e-01 2 0 0 -113 0 P 251 -321 3.7542620166599701e+00 3.7190791184469779e-01 -1.8249241162302015e+00 4.2198089737127971e+00 4.9359999999999998e-01 1 0 0 0 0 P 252 223 1.5743038305878552e+00 -6.6745849204711316e-01 -1.2041977792193024e+00 2.2336983203172096e+00 7.8446319550494170e-01 2 0 0 -114 0 P 253 111 5.2731372264649645e-01 -5.6678153196328673e-01 -9.8680125732414192e-02 7.9199648653294008e-01 1.3497999999999999e-01 2 0 0 -115 0 P 254 321 1.4899047689225020e+00 -1.8809308091704732e-01 -1.1434221997793363e+00 1.9509614333694805e+00 4.9359999999999998e-01 1 0 0 0 0 P 255 -313 3.1052134391028487e+00 -3.5657054276055744e+00 -2.5280934294163124e+00 5.4387420809940288e+00 9.1216957682030386e-01 2 0 0 -116 0 P 256 -211 1.2618409992918820e+00 -7.8480952235684842e-01 -9.4767655723319455e-01 1.7679760563721671e+00 1.3957000000000000e-01 1 0 0 0 0 P 257 223 1.1709311169445527e+00 -1.8646477719970616e+00 -7.0979192653750589e-01 2.4425339235323915e+00 7.8369406938300235e-01 2 0 0 -117 0 P 258 323 3.4106114137506363e+00 -3.4158924657143168e+00 -2.0092476388205687e+00 5.3050049247467328e+00 8.9744616805193944e-01 2 0 0 -118 0 P 259 -313 -4.3502962198863682e-02 -2.6662449307525620e+00 -1.3432122691050827e+00 3.1423548809952644e+00 9.7950010707325930e-01 2 0 0 -119 0 P 260 313 3.6920573172873611e-01 2.3888315855645803e-01 -1.5368886029575397e+00 1.8477927043744620e+00 9.2678652593542199e-01 2 0 0 -120 0 P 261 -313 6.9940661833834539e-01 -9.0010452164849564e-01 -9.4850223978499193e-01 1.7314727607553249e+00 8.9385885613612015e-01 2 0 0 -121 0 P 262 -211 -7.0474633150104674e-02 -4.2047661255068347e-01 -3.0125961647395372e-01 5.4037431197066821e-01 1.3957000000000000e-01 1 0 0 0 0 P 263 213 -5.3596663719210880e-01 -7.7738508685707131e-01 -6.0080544106670308e-01 1.3427313454637180e+00 7.4187093124387660e-01 2 0 0 -122 0 P 264 313 -3.5040429490065950e-01 -1.6292595689125591e-01 -1.7293537519727651e+00 1.9724781187916283e+00 8.6641646587292043e-01 2 0 0 -123 0 P 265 221 4.4271297585370617e-01 7.8838628116886092e-02 -1.1070645363442759e-01 7.1705490002433458e-01 5.4744999999999999e-01 2 0 0 -124 0 P 266 -313 -1.7820965573683964e-01 3.6297589758039939e-01 -2.1940742894976419e+00 2.4004974357213138e+00 8.8595472087905380e-01 2 0 0 -125 0 P 267 313 -1.0396082963222222e+00 1.1121991439442469e+00 -8.5679143107978817e+00 8.7473029042015877e+00 8.8790771767458732e-01 2 0 0 -126 0 P 268 -321 3.2912897810216402e-01 4.1537724024442807e-01 -3.1899781715514406e+00 3.2711566503171818e+00 4.9359999999999998e-01 1 0 0 0 0 P 269 213 -1.0438824976090404e+00 5.9520783524058085e-01 -4.9427476983163094e+00 5.1363639180054683e+00 7.1240189010911914e-01 2 0 0 -127 0 P 270 223 2.1254945277292651e-02 1.5109947998573003e+00 -7.6200163263667164e+00 7.8070210467847216e+00 7.7548162644240393e-01 2 0 0 -128 0 P 271 -213 -8.2219215832088577e-01 1.1362848530341856e+00 -1.1282600740130793e+01 1.1391832628618344e+01 7.1388231860324336e-01 2 0 0 -129 0 P 272 213 -9.7351598645880755e-01 7.1555250722650965e-01 -8.9429352701951412e+00 9.0490871372354711e+00 6.7092324739213716e-01 2 0 0 -130 0 P 273 -213 -3.7930638808420949e+00 3.3946186517059886e+00 -4.7693776986657603e+01 4.7970601025530172e+01 7.5592995899535609e-01 2 0 0 -131 0 P 274 221 -4.1631208965072786e-01 2.5053579526899976e+00 -2.0059935753462330e+01 2.0227477800324802e+01 5.4744999999999999e-01 2 0 0 -132 0 P 275 213 -1.0048000360083025e+00 2.5979660555292576e+00 -2.7575400521401797e+01 2.7723889100912139e+01 6.7250444303650447e-01 2 0 0 -133 0 P 276 -213 -1.8897596138514399e+00 2.0488860322336140e+00 -2.7462631029994004e+01 2.7616803608220788e+01 8.5006651164553226e-01 2 0 0 -134 0 P 277 323 -8.9696983610258751e-01 1.4423053243558148e+00 -1.8143005004609364e+01 1.8240245626033762e+01 8.0816481315406463e-01 2 0 0 -135 0 P 278 -311 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -136 0 P 279 -211 5.1454959247626297e-01 1.3714370366104331e+00 -7.0417532310864175e+00 7.1938424489920747e+00 1.3957000000000000e-01 1 0 0 0 0 P 280 113 -1.5522679982297477e-01 1.5797034356125750e+00 -2.7936808333457513e+01 2.7993820487850048e+01 8.1802649209089873e-01 2 0 0 -137 0 P 281 2212 1.4724695105171033e+00 6.4391110390161321e-01 -1.8512991776106723e+01 1.8606289341623853e+01 9.3827000000000005e-01 1 0 0 0 0 P 282 -2112 2.4631015040795057e+00 3.1782396234435648e-03 -2.4002839143825927e+01 2.4147172875305465e+01 9.3957000000000002e-01 1 0 0 0 0 P 283 111 2.7925940523902619e-02 -5.5472408808229241e-02 -2.4619485436848509e-01 2.8755617366116737e-01 1.3497999999999999e-01 2 0 0 -138 0 P 284 311 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 2 0 0 -139 0 P 285 -323 1.2149894988745846e+00 2.8126001053118044e-01 -1.5867995640197217e+01 1.5939009753910748e+01 8.3871307492165326e-01 2 0 0 -140 0 P 286 111 1.4701215289329348e+00 2.0257739530499569e-01 -1.0246762632681136e+01 1.0354547742988640e+01 1.3497999999999999e-01 2 0 0 -141 0 P 287 221 2.4742944322276328e+00 -2.1889539237695113e+00 -2.5489290973132327e+01 2.5708312041696626e+01 5.4744999999999999e-01 2 0 0 -142 0 P 288 211 1.0920348541005535e-01 2.7899557451340989e-01 -5.5127425853781209e-01 6.4276513972849081e-01 1.3957000000000000e-01 1 0 0 0 0 P 289 223 1.1034186693568511e+00 -4.1280946986221387e+00 -3.0890263315788975e+01 3.1196321959364010e+01 8.6222820230003172e-01 2 0 0 -143 0 P 290 -213 4.8751681044854056e-02 -2.3693416705232451e-01 -4.0466609114571508e+00 4.1088518321851835e+00 6.6983902589715094e-01 2 0 0 -144 0 P 291 2212 8.0410663991472264e-01 -2.2749831680509103e+00 -3.8548531817409440e+01 3.8635369698942938e+01 9.3827000000000005e-01 1 0 0 0 0 P 292 -2212 3.8701868692076369e-01 -1.0146124093407376e+00 -2.2846150079256496e+01 2.2891180525303312e+01 9.3827000000000005e-01 1 0 0 0 0 P 293 211 8.7412050987943168e-01 -1.2452971111903675e-01 -8.9355965003826583e+00 8.9801981557922250e+00 1.3957000000000000e-01 1 0 0 0 0 P 294 -211 8.6892355883605532e-01 -1.2082322036524880e-02 -6.1745104569172916e+01 6.1751377249229058e+01 1.3957000000000000e-01 1 0 0 0 0 P 295 213 1.7081611541563861e+00 -5.7932635894194628e-01 -1.2477442885938915e+02 1.2478940072257220e+02 6.9498341937365571e-01 2 0 0 -145 0 P 296 -213 6.9617780643707183e-01 2.6210426802024800e-01 -4.6550497074325975e+01 4.6564405009410663e+01 8.6120486999776258e-01 2 0 0 -146 0 P 297 223 6.3889112496883238e-01 -3.6058594501588370e-01 -4.4738186984386196e+01 4.4751035320656143e+01 7.8203806007384802e-01 2 0 0 -147 0 P 298 221 1.5692289495223868e+00 -1.0193024182541098e-01 -9.1874706839159060e+01 9.1889794468994964e+01 5.4744999999999999e-01 2 0 0 -148 0 P 299 213 1.0531408697158957e+00 -3.1242044722714932e+00 -2.0346999410597067e+02 2.0349839635146830e+02 8.3009448831115984e-01 2 0 0 -149 0 P 300 313 7.3621987424404223e-01 8.6893003089341225e-02 -1.4720006889004748e+02 1.4720458551476847e+02 8.8325831037160563e-01 2 0 0 -150 0 P 301 -313 3.7255610227274127e-01 -8.5161418207003303e-01 -8.6674628809694639e+01 8.6684221906256170e+01 8.9386991798089355e-01 2 0 0 -151 0 P 302 -213 9.4170324307306083e-02 -7.1957469828364529e-01 -1.4329891754246052e+02 1.4330287884534638e+02 7.8016711461893740e-01 2 0 0 -152 0 P 303 211 -4.5120026787354511e-01 -1.5894556763202117e-01 -6.0764575775260319e+01 6.0766619079124787e+01 1.3957000000000000e-01 1 0 0 0 0 P 304 3212 3.0514676584537620e-01 -3.2892463865811306e-01 -2.1879895037475299e+02 2.1880266032789169e+02 1.1925500000000000e+00 2 0 0 -153 0 P 305 -3322 -9.4097277055493167e-01 -5.8894171144694929e-01 -5.4165333361151420e+02 5.4165606712799843e+02 1.3149000000000000e+00 2 0 0 -154 0 P 306 -313 2.0649051041945177e-01 -7.5848415393842872e-01 -2.4148146439685010e+02 2.4148469113781218e+02 9.6977839462858995e-01 2 0 0 -155 0 P 307 2112 4.2778927057065519e-01 5.7125015057551069e-02 -3.1787588628924232e+02 3.1787756785102590e+02 9.3957000000000002e-01 1 0 0 0 0 P 308 221 -1.3190068515466569e+00 -4.6578333167382737e-03 -3.5394622875142039e+02 3.5394910983024829e+02 5.4744999999999999e-01 2 0 0 -156 0 P 309 -2112 -2.3989354435229902e+00 9.8281899945084195e-01 -8.7756585665258584e+01 8.7799897174522030e+01 9.3957000000000002e-01 1 0 0 0 0 P 310 -211 -3.9662298283597591e-01 -6.0413446470482035e-01 -4.6774529481667196e+02 4.6774587394349317e+02 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -4.2672931306698003e-01 -2.3090676102758495e-01 -5.6274245176992679e+01 5.6276509894129916e+01 1.3957000000000000e-01 1 0 0 0 0 P 312 313 -1.7865835516067197e+00 6.2968574057666271e-01 -6.7387947123314731e+01 6.7420716824772796e+01 9.1063425851607227e-01 2 0 0 -157 0 P 313 -321 -2.3041265158966925e-01 5.1032141117892726e-01 -8.3700840329905716e+01 8.3704168539118115e+01 4.9359999999999998e-01 1 0 0 0 0 P 314 213 -7.8760798121659548e-01 -5.6618594630365937e-01 -1.3811232527239807e+02 1.3811810805796154e+02 8.1023978190677848e-01 2 0 0 -158 0 P 315 -213 3.2088574587708457e-01 -4.8175169867612921e-01 -1.6802059835364230e+02 1.6802338629388333e+02 7.7576941578643599e-01 2 0 0 -159 0 P 316 331 -2.1624890421805518e-01 -1.0258729185735911e-01 -2.4700316793464120e+02 2.4700514452338271e+02 9.5873016411597090e-01 2 0 0 -160 0 P 317 2224 -2.8190748331736332e-01 4.8138431144231691e-02 -5.2424415849457421e+02 5.2424545547994126e+02 1.1305248998194504e+00 2 0 0 -161 0 P 318 223 1.8038463663845153e-01 -8.6773010817760621e-02 -1.2449355926405819e+03 1.2449358522978935e+03 7.7874588461348127e-01 2 0 0 -162 0 V -17 0 0 0 0 0 4 1 0 P 117 21 1.1046570476529272e+00 2.8533800296792613e+00 1.0622002836134497e+02 1.0626408833595492e+02 0 2 0 0 -17 0 P 118 21 -1.1046570476529272e+00 -2.8533800296792613e+00 1.2677472698946275e+01 1.3041486066366435e+01 0 2 0 0 -17 0 P 119 21 -8.0027583532907598e-01 -7.2225688798810728e-01 5.8653299018286402e+00 5.9635720237239598e+00 0 2 0 0 -17 0 P 120 21 -2.5249116086388907e+00 -1.2712899341906045e+00 8.4958119689861782e+00 8.9537800810932691e+00 0 2 0 0 -17 0 P 319 92 -3.3251874439679669e+00 -1.9935468221787118e+00 1.3325864293110607e+02 1.3422292650713857e+02 1.5585152672686750e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 14 0 P 320 -213 -2.8480004165306860e-01 5.9576816893411100e-02 5.2376360130968678e+00 5.3018150371256416e+00 7.6925367816187462e-01 2 0 0 -163 0 P 321 111 6.5183842329488442e-02 -7.2012445035361494e-01 4.2344957846876685e+00 4.2979067356371941e+00 1.3497999999999999e-01 2 0 0 -164 0 P 322 111 1.2502523672386964e-01 1.0021852270277111e-01 7.9973630980928678e-01 8.2672415456303261e-01 1.3497999999999999e-01 2 0 0 -165 0 P 323 213 -5.7951255899824528e-01 -6.1566977336730366e-01 1.3722141760877589e+01 1.3769789640887952e+01 7.7139365618962863e-01 2 0 0 -166 0 P 324 111 -9.2424961714341142e-02 9.6321817969330384e-02 2.0534940757776016e-01 2.7965737207760372e-01 1.3497999999999999e-01 2 0 0 -167 0 P 325 -213 -1.1067600447339856e+00 -1.6218532971014071e-01 6.0389272983154685e+00 6.2006422649470814e+00 8.5328758675814831e-01 2 0 0 -168 0 P 326 211 -2.0498004014864751e-01 -4.5270767112597400e-03 1.0122361628257261e+00 1.0421799966968472e+00 1.3957000000000000e-01 1 0 0 0 0 P 327 111 -3.8255127661839133e-01 -1.9081742065836602e+00 1.2677249287337471e+01 1.2826470417679680e+01 1.3497999999999999e-01 2 0 0 -169 0 P 328 -211 -8.1729685617042191e-01 2.1791621288724021e-02 1.1939970820232670e+00 1.4538080487617762e+00 1.3957000000000000e-01 1 0 0 0 0 P 329 223 -2.7131083404504175e-01 2.2030189280282422e-01 2.3163028516552117e+01 2.3179612650792340e+01 8.0399632432182300e-01 2 0 0 -170 0 P 330 211 -9.9126330579208961e-03 7.5749306203032651e-01 1.5234962660263182e+01 1.5254424310469131e+01 1.3957000000000000e-01 1 0 0 0 0 P 331 113 2.2031514708745323e-01 -1.2504058092678683e-01 1.2349971029631249e+01 1.2362771509823645e+01 5.0215641035580594e-01 2 0 0 -171 0 P 332 -213 -1.3587985301966357e-01 5.2511456700412673e-01 1.4701157426952882e+01 1.4737191883200287e+01 8.7554912327975243e-01 2 0 0 -172 0 P 333 211 1.4971743005094948e-01 -2.3864370521745951e-01 2.2687754191155520e+01 2.2689932484476365e+01 1.3957000000000000e-01 1 0 0 0 0 V -19 0 0 0 0 0 3 1 0 P 121 21 -1.7526455339572602e+00 -1.6402911423441666e+00 1.1232651365346609e+02 1.1235216059756776e+02 0 2 0 0 -19 0 P 122 21 1.7526455339572602e+00 1.6402911423441666e+00 6.0230130902450367e+02 6.0230609259248740e+02 0 2 0 0 -19 0 P 123 21 -1.0346584559188690e+00 -2.4641502772336282e-01 3.3310302304817554e+01 3.3327278288582555e+01 0 2 0 0 -19 0 P 334 92 -1.0346584559188690e+00 -2.4641502772336282e-01 7.4793812498278737e+02 7.4798553147863765e+02 8.3537572460591214e+00 2 0 0 -20 0 V -20 0 0 0 0 0 0 8 0 P 335 -313 4.8542659709619368e-01 2.1568580876425061e-01 8.8452633747117673e+01 8.8458036504785539e+01 8.2075948423400813e-01 2 0 0 -173 0 P 336 313 -6.4832044132540001e-01 1.5477146596683491e-01 6.5132897050042757e+01 6.5143350318356681e+01 9.5788254361141645e-01 2 0 0 -174 0 P 337 -313 2.0698906709717108e-01 -9.4320638447488919e-02 2.1680836829305770e+02 2.1681088551026144e+02 1.0196925952559621e+00 2 0 0 -175 0 P 338 -213 -4.9985847065148958e-01 7.0337786165625538e-01 9.1704333136889161e+01 9.1710638387419195e+01 6.4177756229868965e-01 2 0 0 -176 0 P 339 223 1.6532552377892859e-01 -6.4894137994897416e-01 5.1310672477646385e+01 5.1320679500312195e+01 7.6064237460428186e-01 2 0 0 -177 0 P 340 223 -5.0062651592458085e-01 -2.6584103501101658e-02 9.7772110140335585e+01 9.7776755163349847e+01 8.1055250091657272e-01 2 0 0 -178 0 P 341 223 -2.1942864235462733e-01 -3.8082064426386303e-01 1.0447815140000758e+02 1.0448199912859234e+02 7.8156807258233552e-01 2 0 0 -179 0 P 342 321 -2.4165573635064514e-02 -1.6958339794927593e-01 3.2278958737690516e+01 3.2283186965560510e+01 4.9359999999999998e-01 1 0 0 0 0 V -21 0 0 0 0 0 0 2 0 P 343 2212 4.2703213642904175e-01 -7.9813291226967820e-01 1.0311535374488091e+02 1.0312359526857088e+02 9.3827000000000005e-01 1 0 0 0 0 P 344 111 5.1082189207065733e-02 1.3229615078414103e-01 1.3063714621827531e+01 1.3065181628378417e+01 1.3497999999999999e-01 2 0 0 -180 0 V -22 0 0 0 0 0 0 3 0 P 345 211 2.1776891658702804e-01 1.4667198137665299e-01 2.6957894967833710e+02 2.6957911366690013e+02 1.3957000000000000e-01 1 0 0 0 0 P 346 -211 -1.5210313885320217e-01 -1.9229827923117676e-01 4.8175528836764261e+02 4.8175537097573539e+02 1.3957000000000000e-01 1 0 0 0 0 P 347 111 7.1215530223472059e-02 6.9564365734495190e-02 3.5534726716638522e+02 3.5534730674802006e+02 1.3497999999999999e-01 2 0 0 -181 0 V -23 0 0 0 0 0 0 2 0 P 348 -211 6.9351459176469330e+00 -9.9571581001823137e+00 -5.4470746165444318e+01 5.5806118965004615e+01 1.3957000000000000e-01 1 0 0 0 0 P 349 211 1.1815072542956082e+00 -1.9783066882728300e+00 -1.1941003322589840e+01 1.2162100841541307e+01 1.3957000000000000e-01 1 0 0 0 0 V -24 0 0 0 0 0 0 2 0 P 350 211 3.0186545477769307e+00 -4.5886947121995734e+00 -2.5167158245603247e+01 2.5759924852078239e+01 1.3957000000000000e-01 1 0 0 0 0 P 351 111 1.4454312003105978e+00 -1.6577964430616390e+00 -8.8706913490037280e+00 9.1402923919942918e+00 1.3497999999999999e-01 2 0 0 -182 0 V -25 0 0 0 0 0 0 2 0 P 352 -211 9.1455216081853052e-01 -9.8289000639705093e-01 -4.9483535427792180e+00 5.1291481737973488e+00 1.3957000000000000e-01 1 0 0 0 0 P 353 111 1.7074239592948872e+00 -6.0764077547512907e-01 -1.0810645539586742e+01 1.0962335539098452e+01 1.3497999999999999e-01 2 0 0 -183 0 V -26 0 0 0 0 0 0 3 0 P 354 111 -5.2101895132735616e-02 -2.7951792743423822e-02 -1.4584156859397457e+00 1.4658416775317493e+00 1.3497999999999999e-01 2 0 0 -184 0 P 355 111 5.1409819858218207e-02 -1.1826177758111430e-02 -4.4319556981907693e-01 4.6628826016261354e-01 1.3497999999999999e-01 2 0 0 -185 0 P 356 111 -1.0470728143248921e-01 2.0769728015106678e-02 -3.8793306683171846e-01 4.2438975144113289e-01 1.3497999999999999e-01 2 0 0 -186 0 V -27 0 0 0 0 0 0 2 0 P 357 211 3.4684553451869282e-01 1.6291744491796858e-01 -6.6296555978386895e-01 7.7836176488423159e-01 1.3957000000000000e-01 1 0 0 0 0 P 358 111 9.2755420725394548e-03 -3.8902513610380407e-01 -1.4795953544075593e+00 1.5358543568274154e+00 1.3497999999999999e-01 2 0 0 -187 0 V -28 0 2.1102570769762575e-04 3.1568303294152541e-04 -1.0481844389672740e-03 1.1150371778514147e-03 0 2 0 P 359 22 3.1320131910570148e-01 4.8679418852937290e-01 -1.7680141049283331e+00 1.8603595145834197e+00 0 1 0 0 0 0 P 360 22 1.0609692999552245e+00 1.5688906545034618e+00 -5.0576199616546074e+00 5.4006104671382227e+00 0 1 0 0 0 0 V -29 0 -1.1851815173083341e-05 4.9169964520442955e-04 -2.9297572657699215e-03 2.9713302198317989e-03 0 2 0 P 361 22 1.1841076177942948e-02 1.0169469996359737e+00 -6.1418145836920681e+00 6.2254484008468207e+00 0 1 0 0 0 0 P 362 22 -3.9209839279201984e-02 1.1850870145661702e-01 -6.2371722557499676e-01 6.3608560846493456e-01 0 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 363 2212 1.4882630359469244e+00 4.5861111788280926e+00 -1.3721630598223710e+01 1.4574321235506892e+01 9.3827000000000005e-01 1 0 0 0 0 P 364 111 5.8839360853550149e-01 2.7254324593904724e+00 -8.2346019950259244e+00 8.6948880812894629e+00 1.3497999999999999e-01 2 0 0 -188 0 V -31 0 0 0 0 0 0 2 0 P 365 -311 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 2 0 0 -189 0 P 366 -211 2.8966372111981192e-01 6.5671604788001436e-01 -1.5189103093889327e+00 1.6857488993750240e+00 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 2 0 P 367 -4132 6.1932746264626175e+00 2.6422707217778360e+01 -8.4052347087424351e+01 8.8359580919728643e+01 2.4702999999999999e+00 2 0 0 -190 0 P 368 22 1.4281720348137575e-01 3.6543670134544759e-01 -9.5927423704498971e-01 1.0364110179647501e+00 0 1 0 0 0 0 V -33 0 0 0 0 0 0 2 0 P 369 22 -9.2275782543600859e-01 6.2896337763484900e-01 1.3580062462352611e+00 1.7581973437652592e+00 0 1 0 0 0 0 P 370 221 -1.3515067596179804e+00 1.1935341250034783e+00 1.0448230095886901e+00 2.1546347376543618e+00 5.4744999999999999e-01 2 0 0 -191 0 V -34 0 0 0 0 0 0 3 0 P 371 -211 -1.6576177375707235e-01 2.7787931788032871e-01 -3.2018964475850183e-02 3.5383453750423144e-01 1.3957000000000000e-01 1 0 0 0 0 P 372 211 -2.2270823658959865e-01 1.7465271223669632e-01 3.8269392481484193e-01 4.9602112205698540e-01 1.3957000000000000e-01 1 0 0 0 0 P 373 111 -6.6997772108833897e-02 6.4327645749143270e-01 1.1058839750391278e+00 1.2882128197152116e+00 1.3497999999999999e-01 2 0 0 -192 0 V -35 0 0 0 0 0 0 2 0 P 374 -321 2.3088659145579091e-01 2.3884583942541135e-01 4.0077372094797328e+00 4.0516607031405405e+00 4.9359999999999998e-01 1 0 0 0 0 P 375 211 6.3327273690130970e-02 -3.1072069223622284e-01 1.9140954753043713e+00 1.9451989527185771e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 376 321 2.0739891592609752e-01 -1.5008835806955192e-01 3.5726648215625678e+00 3.6156763838576635e+00 4.9359999999999998e-01 1 0 0 0 0 P 377 -211 6.8083013727334607e-02 -7.2128054967664168e-02 1.1432282043981888e-01 2.0588162920700304e-01 1.3957000000000000e-01 1 0 0 0 0 V -37 0 0 0 0 0 0 1 0 P 378 310 -8.0099978386037574e-01 1.2606918103969758e-01 6.9311176598490540e+00 6.9961104576560125e+00 4.9767000000000000e-01 2 0 0 -193 0 V -38 0 0 0 0 0 0 2 0 P 379 211 1.4276982042613318e-02 2.1777535620317029e-01 2.4591674133331107e+00 2.4727745731637416e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 -211 7.5285686019056319e-01 -3.6114885471553254e-01 1.5039427936533686e+01 1.5063236517770283e+01 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 381 211 -3.2564748328028643e-02 -4.4951821422832400e-01 1.2129972911179671e+01 1.2139145344652947e+01 1.3957000000000000e-01 1 0 0 0 0 P 382 -211 3.3570438762405375e-01 -2.2475947898224130e-01 2.2843365525610821e+01 2.2847364018215043e+01 1.3957000000000000e-01 1 0 0 0 0 P 383 111 2.8311901644856694e-03 -1.4208074052031550e-01 1.1168423522132302e+01 1.1170143173772781e+01 1.3497999999999999e-01 2 0 0 -194 0 V -40 0 0 0 0 0 0 2 0 P 384 211 4.1170657522114390e-01 -5.8600038434651192e-01 8.6485618301443488e+00 8.6792857004055559e+00 1.3957000000000000e-01 1 0 0 0 0 P 385 -211 -1.5161522173265082e-01 -1.7582368376233651e-01 7.7669740426035965e+00 7.7716965140573295e+00 1.3957000000000000e-01 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 386 -211 8.8968567793816111e-01 -2.0505212342513832e-01 1.0841477853633208e+01 1.0880749460150653e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 2.1027841575694231e-01 -1.0687463421640166e+00 1.2229295985896846e+01 1.2278450051496520e+01 1.3497999999999999e-01 2 0 0 -195 0 V -42 0 0 0 0 0 0 3 0 P 388 211 2.0477302601016806e-01 2.9926708139069717e-02 6.9643984775708101e-01 7.3982149636605465e-01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 -1.7942048213989335e-02 -2.6279955290552579e-02 4.3046327500712783e-01 4.5364189530294569e-01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -5.1752497174978492e-03 -6.3806992501713566e-02 1.6469309836891391e-01 2.2235451997228423e-01 1.3497999999999999e-01 2 0 0 -196 0 V -43 0 0 0 0 0 0 2 0 P 391 211 -9.6998340142361542e-02 -3.5415583248679028e-01 1.0026780585523312e+00 1.0768835153706535e+00 1.3957000000000000e-01 1 0 0 0 0 P 392 111 4.3401178138248377e-02 2.5431059440217435e-01 2.3164703849118795e+00 2.3346974504767779e+00 1.3497999999999999e-01 2 0 0 -197 0 V -44 0 0 0 0 0 0 2 0 P 393 2112 3.7203063582527385e-01 -1.7583068964110157e-01 3.9902577890296973e+00 4.1199844942941706e+00 9.3957000000000002e-01 1 0 0 0 0 P 394 111 6.9465988362116801e-02 1.1260785401452283e-01 1.7609429287152587e+00 1.7710577774079406e+00 1.3497999999999999e-01 2 0 0 -198 0 V -45 0 0 0 0 0 0 2 0 P 395 -211 4.5659270866253085e-02 2.5304423324417319e-02 4.3542211986285642e+00 4.3567702618272390e+00 1.3957000000000000e-01 1 0 0 0 0 P 396 111 -1.2436424180966610e-01 5.6340930304611758e-01 2.1545965286427187e+00 2.2345922019552154e+00 1.3497999999999999e-01 2 0 0 -199 0 V -46 0 0 0 0 0 0 2 0 P 397 -2112 -7.7577062635964089e-01 2.1836498478976050e+00 4.9526950996446381e+01 4.9590037442133948e+01 9.3957000000000002e-01 1 0 0 0 0 P 398 211 2.9460967021964348e-02 7.6998858555386393e-02 1.4892046393154574e+00 1.4980010064934481e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 399 321 3.3381760456813248e-01 3.6762918413813089e-01 1.4157483297276345e+01 1.4174786054216423e+01 4.9359999999999998e-01 1 0 0 0 0 P 400 -211 -1.1308401563363750e-01 2.7630836054390440e-01 3.2461205620408458e+00 3.2628075016621292e+00 1.3957000000000000e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 2 0 P 401 2212 -1.4693914225262659e+00 1.3718629277384442e+00 1.0163868586425282e+02 1.0166289359373096e+02 9.3827000000000005e-01 1 0 0 0 0 P 402 211 -1.6516279192266309e-01 1.2760242044922626e-01 7.0961698334014214e+00 7.1006103410141126e+00 1.3957000000000000e-01 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 403 -2212 -9.1390721957133725e-01 7.0795529763213272e-01 1.0302908485290651e+02 1.0303984231029150e+02 9.3827000000000005e-01 1 0 0 0 0 P 404 -211 -4.9937829232166903e-01 4.3818034400250272e-01 7.8706149843306349e+01 7.8709077517365202e+01 1.3957000000000000e-01 1 0 0 0 0 V -50 0 0 0 0 0 0 1 0 P 405 130 -1.4233772920310794e+00 -2.3546801277391011e-01 1.4526487424276738e+02 1.4527289083754212e+02 4.9767000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 406 2212 4.9754496854899223e-02 -1.3733105716182045e-01 1.9316292574205696e+02 1.9316525973154057e+02 9.3827000000000005e-01 1 0 0 0 0 P 407 211 -1.7352840552363066e-01 1.4511688035982032e-01 7.5056630119969697e+01 7.5057100768463812e+01 1.3957000000000000e-01 1 0 0 0 0 V -52 0 -6.1881305703396353e-05 7.8060246645409220e-06 3.0702013732928451e-02 3.0702091722223220e-02 0 2 0 P 408 22 -1.0641333515515250e-02 -2.6841500845066445e-02 6.5167008755383504e+00 6.5167648419586923e+00 0 1 0 0 0 0 P 409 22 -2.6799499826152934e-01 6.1990114041982874e-02 1.3172693163142904e+02 1.3172721883166176e+02 0 1 0 0 0 0 V -53 0 0 0 0 0 0 2 0 P 410 -2212 -2.0509311894932511e-01 -7.5844595228929157e-01 3.0014973307008194e+02 3.0015222790458233e+02 9.3827000000000005e-01 1 0 0 0 0 P 411 -211 4.3308811263527832e-03 -7.3113774585891050e-02 7.1167701131554878e+01 7.1167875677975545e+01 1.3957000000000000e-01 1 0 0 0 0 V -54 0 0 0 0 0 0 2 0 P 412 -211 -9.0600469820506457e-02 -6.6602013092826295e-01 2.2393397044676266e+02 2.2393502269876501e+02 1.3957000000000000e-01 1 0 0 0 0 P 413 111 -1.2330123329730834e-01 1.9308950901848823e-01 1.8254266023874885e+02 1.8254285390941035e+02 1.3497999999999999e-01 2 0 0 -200 0 V -55 0 0 0 0 0 0 2 0 P 414 211 -2.8174637945878134e-01 -8.2458417284482555e-02 7.7885956018908786e+01 7.7886634316660604e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 1.1779655971733316e-01 -2.8144922545196727e-01 2.3742173396481462e+02 2.3742196837730833e+02 1.3497999999999999e-01 2 0 0 -201 0 V -56 0 0 0 0 0 0 1 0 P 416 310 1.1773109684832386e+00 2.2740271422880634e-01 1.2887128236520311e+02 1.2887782147053758e+02 4.9767000000000000e-01 2 0 0 -202 0 V -57 0 0 0 0 0 0 2 0 P 417 211 -2.1124342068482702e-01 -4.0228384217061497e-01 2.5877969129574996e+02 2.5878012783631783e+02 1.3957000000000000e-01 1 0 0 0 0 P 418 -211 -3.1518931859237037e-01 -3.1630784642005007e-02 4.3004090560278321e+01 4.3005483714459146e+01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 0 0 0 0 0 1 0 P 419 310 1.0418018662707209e+00 -8.1375431937164666e-01 3.9654583847483352e+01 3.9679733400904404e+01 4.9767000000000000e-01 2 0 0 -203 0 V -59 0 0 0 0 0 0 2 0 P 420 211 1.3608658690979444e-01 -2.5282171118196906e-01 3.4211693972318886e+00 3.4360323348649877e+00 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -9.6885175308492402e-02 -2.8150263741062120e-01 1.4496139266756256e+01 1.4499824264923223e+01 1.3497999999999999e-01 2 0 0 -204 0 V -60 0 0 0 0 0 0 3 0 P 422 -211 2.5205438547994158e-01 -5.8887644427160113e-01 2.6311317594760464e+01 2.6319483662053653e+01 1.3957000000000000e-01 1 0 0 0 0 P 423 211 1.2907148587371026e-01 -1.3161144221356708e-01 1.1123105810374851e+01 1.1125508692814092e+01 1.3957000000000000e-01 1 0 0 0 0 P 424 221 8.7880815383936906e-01 -2.0454984505104776e+00 8.5638079074402569e+01 8.5668761265343520e+01 5.4744999999999999e-01 2 0 0 -205 0 V -61 0 0 0 0 0 0 2 0 P 425 -211 -1.5303794146600642e+00 -2.0392859333538551e+00 7.1862357021913098e+01 7.1907708799548004e+01 1.3957000000000000e-01 1 0 0 0 0 P 426 111 -2.2686535957500534e-02 -2.2232276137209814e-01 8.8852424470203903e+00 8.8890772879906255e+00 1.3497999999999999e-01 2 0 0 -206 0 V -62 0 0 0 0 0 0 2 0 P 427 211 -1.4567424831221007e-01 -7.3919574209108385e-02 1.1251435733221703e+01 1.1253487056632304e+01 1.3957000000000000e-01 1 0 0 0 0 P 428 111 -1.4939272751261954e+00 -1.8081043564807144e+00 7.3231302572507929e+01 7.3268976764616397e+01 1.3497999999999999e-01 2 0 0 -207 0 V -63 0 0 0 0 0 0 2 0 P 429 130 -2.4475005945396067e-01 -3.8069210975122858e-01 1.3098865230824227e+01 1.3116126518077866e+01 4.9767000000000000e-01 1 0 0 0 0 P 430 310 -4.5044400446669897e-01 -2.7959447847610397e-01 1.3048620023509267e+01 1.3068865016533811e+01 4.9767000000000000e-01 2 0 0 -208 0 V -64 0 0 0 0 0 0 2 0 P 431 -321 -1.4681054948386378e+00 -1.0884780864011612e+00 2.1136007562234159e+01 2.1220616742200743e+01 4.9359999999999998e-01 1 0 0 0 0 P 432 211 -6.9113554582763925e-01 -1.0500941425245576e+00 1.4641268966556334e+01 1.4695802216511233e+01 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 3 0 P 433 211 -4.3018667221439905e-01 -7.6358381810188447e-01 9.5552365537666510e+00 9.5963610917657913e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 -211 -8.8064940984377915e-01 -1.0586598586157425e+00 1.6649598390478797e+01 1.6707031765949232e+01 1.3957000000000000e-01 1 0 0 0 0 P 435 111 -3.8452701156244590e-01 -1.4471210124925199e-01 5.8854286003621024e+00 5.9012957920468052e+00 1.3497999999999999e-01 2 0 0 -209 0 V -66 0 0 0 0 0 0 2 0 P 436 211 -8.1639098647959640e-01 -7.8935342042376108e-02 6.4220344622251169e+00 6.4757031625867105e+00 1.3957000000000000e-01 1 0 0 0 0 P 437 -211 1.6517405323475644e-02 -9.6567388905977478e-02 4.0957145694000898e+00 4.0992628244813609e+00 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 2 0 P 438 -211 -2.6062580481261710e+00 -6.3972279868279566e-02 2.1191598909602646e+01 2.1351815323208143e+01 1.3957000000000000e-01 1 0 0 0 0 P 439 211 -3.4807467185820817e-01 1.3486034407408479e-01 4.7828078739800386e+00 4.7993826930031780e+00 1.3957000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 440 211 -1.3822909515300794e+00 -3.1701713614728161e-01 9.4159258935073957e+00 9.5231490777061776e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -7.5194613958268972e-03 -1.4326595104864758e-02 2.6311108317435226e+00 2.6346205804527285e+00 1.3497999999999999e-01 2 0 0 -210 0 V -69 0 -3.2894213052368456e-04 6.3125812515849269e-05 3.3539629417182757e-03 3.3707023707118793e-03 0 2 0 P 442 22 -4.8186379190428402e-01 1.4824942523018392e-01 4.9461812084873484e+00 4.9718084389106165e+00 0 1 0 0 0 0 P 443 22 -1.7980481722974337e+00 2.8927827903716785e-01 1.8300279274208723e+01 1.8390673741509801e+01 0 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 444 311 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 2 0 0 -211 0 P 445 111 -1.4620556163168672e+00 2.4813037811528996e-01 1.0592684088258299e+01 1.0696838369527132e+01 1.3497999999999999e-01 2 0 0 -212 0 V -71 0 0 0 0 0 0 1 0 P 446 130 -2.0746161299646531e+00 3.2986449827994707e-01 1.4486416888178093e+01 1.4646391786406864e+01 4.9767000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 1 0 P 447 310 -6.4382814295624979e-01 8.7639487725768606e-01 7.0160190251079380e+00 7.1172172264251250e+00 4.9767000000000000e-01 2 0 0 -213 0 V -73 0 -1.9472591318257961e+00 8.3995921291674325e+00 1.4654708998628274e+02 1.4723431227236318e+02 0 2 0 P 448 2212 -9.3545545269659622e-02 7.5649194101478967e-01 1.3035061116275278e+01 1.3090996895721572e+01 9.3827000000000005e-01 1 0 0 0 0 P 449 -211 -9.8819560980931087e-02 7.3283822251970498e-02 1.4419779563282928e+00 1.4539312348502051e+00 1.3957000000000000e-01 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 450 -2112 2.9133267477638297e-01 1.6172779667688766e+00 1.1317897326733288e+01 1.1475105857139834e+01 9.3957000000000002e-01 1 0 0 0 0 P 451 211 -7.1450006080425775e-03 2.8364520002038962e-01 3.5076633712144134e+00 3.5218869603080050e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 3 0 P 452 211 -8.9225259645836996e-02 -5.9408438952089790e-02 1.6800231451730891e+00 1.6892152209812905e+00 1.3957000000000000e-01 1 0 0 0 0 P 453 -211 1.1630693744121963e-01 8.7192875310218548e-02 1.7971980900530726e+00 1.8084608541498020e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 221 -1.9481245460419003e-01 2.0288304542047858e-01 4.5053122571735562e+00 4.5471588337913031e+00 5.4744999999999999e-01 2 0 0 -214 0 V -76 0 0 0 0 0 0 2 0 P 455 22 1.0022458329071902e+00 -1.9223542467573798e-01 5.0271274686520160e+00 5.1296648773731528e+00 0 1 0 0 0 0 P 456 111 3.9130110620179237e-01 3.1432048284728842e-01 4.7082401127036553e+00 4.7368405589510640e+00 1.3497999999999999e-01 2 0 0 -215 0 V -77 0 4.0153636320777204e-05 2.7122341438058723e-05 7.2521553852361901e-04 7.2684286962158178e-04 0 2 0 P 457 22 6.3762516781812406e-01 5.1208879147255471e-01 1.2209129422220263e+01 1.2236488141354586e+01 0 1 0 0 0 0 P 458 22 7.5975394740700897e-01 4.3179069129143305e-01 1.3028959588544526e+01 1.3058233311654865e+01 0 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 459 -211 3.9200224519627397e-01 6.7036711704883095e-02 3.4972968056970180e+00 3.5226019379137474e+00 1.3957000000000000e-01 1 0 0 0 0 P 460 211 1.2860876453298151e+00 -1.1186266750594271e-02 7.4847706976630288e+00 7.5957500449612549e+00 1.3957000000000000e-01 1 0 0 0 0 P 461 111 3.0382977154547536e-01 2.1670972624679194e-01 1.9194759152541676e+00 1.9600721989682317e+00 1.3497999999999999e-01 2 0 0 -216 0 V -79 0 1.2364522635710453e-04 2.6783415676147990e-05 1.7640249169410100e-03 1.7688621366039612e-03 0 2 0 P 462 22 2.0036052118735095e-01 8.2793776830612023e-02 2.2819925965955972e+00 2.2922672965536681e+00 0 1 0 0 0 0 P 463 22 3.0658432359927351e-01 2.7018101094914749e-02 4.9505012413439449e+00 4.9600591191851287e+00 0 1 0 0 0 0 V -80 0 0 0 0 0 0 2 0 P 464 2112 1.9496405700625017e+00 -2.5711196714691569e-03 2.6746309193694472e+01 2.6833727885493200e+01 9.3957000000000002e-01 1 0 0 0 0 P 465 211 6.7354150996353956e-01 -2.0752757953346984e-01 6.2851972784090346e+00 6.3261291857921558e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 466 -2112 1.3462739229625320e+00 7.7425325317696203e-01 7.6486544610351199e+00 7.8610831585040799e+00 9.3957000000000002e-01 1 0 0 0 0 P 467 111 9.5433231115016270e-01 4.5565994642410657e-01 4.4894856521080859e+00 4.6143338812622563e+00 1.3497999999999999e-01 2 0 0 -217 0 V -82 0 0 0 0 0 0 3 0 P 468 -211 3.1549491408771663e-01 4.6567377454487337e-02 1.4474850154494627e+00 1.4887572724621485e+00 1.3957000000000000e-01 1 0 0 0 0 P 469 211 9.5243535602676552e-02 -1.5209731860964573e-01 1.1476132120066047e+00 1.1699148664216805e+00 1.3957000000000000e-01 1 0 0 0 0 P 470 221 7.4490078919799063e-01 -1.5202371842806270e-01 5.2286606512864680e+00 5.3119282850509109e+00 5.4744999999999999e-01 2 0 0 -218 0 V -83 0 0 0 0 0 0 2 0 P 471 211 8.1894668694024209e-01 2.3325557372599750e+00 5.9305418993343562e+00 6.4266863116333273e+00 1.3957000000000000e-01 1 0 0 0 0 P 472 111 -4.0723007462882800e-02 1.0574573195591666e+00 2.2775590404786064e+00 2.5150286537715449e+00 1.3497999999999999e-01 2 0 0 -219 0 V -84 0 0 0 0 0 0 2 0 P 473 22 9.7849810237617163e-01 2.9329241145962222e+00 1.1451736197173155e+01 1.1861777452303665e+01 0 1 0 0 0 0 P 474 111 1.6609993296323144e-01 1.4307044356655101e+00 3.9720517679911169e+00 4.2272827227386527e+00 1.3497999999999999e-01 2 0 0 -220 0 V -85 0 0 0 0 0 0 2 0 P 475 -211 2.8137841195477081e-01 1.2848410923924741e-01 1.4733443763819121e+00 1.5119211002421380e+00 1.3957000000000000e-01 1 0 0 0 0 P 476 111 4.7696226071361375e-01 1.4639143001008668e+00 2.3696932288255899e+00 2.8291701389854058e+00 1.3497999999999999e-01 2 0 0 -221 0 V -86 0 0 0 0 0 0 3 0 P 477 22 5.7680613643623646e-01 8.5068187069240031e-01 9.5896780536495674e-01 1.4056970569371274e+00 0 1 0 0 0 0 P 478 211 2.0358806942319194e-01 2.0701396234629021e-01 3.5019977835089117e-01 4.7583878811503688e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 -211 9.0337640098961369e-01 8.9816713687299043e-01 1.4788711166043924e+00 1.9568680824343512e+00 1.3957000000000000e-01 1 0 0 0 0 V -87 0 3.2474631983916332e-05 9.7410783509234710e-05 1.3564348080823553e-04 1.7020556806749825e-04 0 2 0 P 480 22 3.9001811079315468e-02 1.5271838292545140e-01 1.6207399367084319e-01 2.2607968766620315e-01 0 1 0 0 0 0 P 481 22 7.9964842422821447e-01 2.3628936970504149e+00 3.3408890931502686e+00 4.1694417082700257e+00 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 482 -211 -1.1441099565012297e-01 1.3904297631243436e+00 2.1816410435693205e+00 2.5933419037978593e+00 1.3957000000000000e-01 1 0 0 0 0 P 483 111 1.0174687613849669e-01 6.3856246458058019e-01 3.2113162829813596e-01 7.3447911547475564e-01 1.3497999999999999e-01 2 0 0 -222 0 V -89 0 0 0 0 0 0 2 0 P 484 211 3.9779167190723447e-01 1.5889195636751455e-01 4.5397661523884070e-01 6.3957753253281457e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 111 4.0003817399806046e-01 1.3218945110764273e+00 1.2736200901280608e+00 1.8835507355650123e+00 1.3497999999999999e-01 2 0 0 -223 0 V -90 0 -8.4995179063576421e-05 1.2023658143504478e-05 1.2062612143230178e-04 1.4901465103862350e-04 0 2 0 P 486 22 -4.6194329145719348e-01 1.1785630989943167e-01 5.9984472343393835e-01 7.6622151270827321e-01 0 1 0 0 0 0 P 487 22 -2.1650059478877809e-01 -2.1881721132809034e-02 3.6301052916920529e-01 4.2323511379768003e-01 0 1 0 0 0 0 V -91 0 0 0 0 0 0 2 0 P 488 311 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 2 0 0 -224 0 P 489 211 -3.8198541151957377e-01 6.4838416885081673e-01 2.2544827281917265e-01 7.9788570211985288e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 490 211 -3.8355905440942223e-01 2.2046827761504406e-01 1.6759697766551432e-01 4.9324673488692167e-01 1.3957000000000000e-01 1 0 0 0 0 P 491 111 -3.5253795477783950e-01 1.5012892203401249e-03 -1.2354994083629908e-01 3.9720202883283229e-01 1.3497999999999999e-01 2 0 0 -225 0 V -93 0 0 0 0 0 0 2 0 P 492 -211 -1.0903142327166899e+00 5.2865137402408924e-01 9.6701452576942848e-01 1.5565520483656223e+00 1.3957000000000000e-01 1 0 0 0 0 P 493 111 -3.9462850528196543e-02 3.0389759640534730e-01 5.3010249145955493e-02 3.3902913235778781e-01 1.3497999999999999e-01 2 0 0 -226 0 V -94 0 0 0 0 0 0 2 0 P 494 211 -1.2361325495235732e-02 1.4230680560034584e-01 -1.9723024651120868e-01 2.8068413622263361e-01 1.3957000000000000e-01 1 0 0 0 0 P 495 -211 -1.6872008481646645e+00 1.3262616609879836e+00 -7.8575873796689465e-03 2.1506181023216553e+00 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 496 211 -1.0885790322625848e-01 2.2612266225162836e-01 1.5295726796725564e-01 3.2535705340838750e-01 1.3957000000000000e-01 1 0 0 0 0 P 497 111 -1.5044694929017968e+00 1.5829448879062136e-01 1.4968586155032573e+00 2.1324377870080999e+00 1.3497999999999999e-01 2 0 0 -227 0 V -96 0 -3.2554406769056885e-04 -3.5040648225571856e-05 4.3275074492165266e-04 5.4339007092584282e-04 0 2 0 P 498 22 -1.5542977715021760e+00 -1.6533880291179975e-01 2.0752910663201551e+00 2.5980784230259841e+00 0 1 0 0 0 0 P 499 22 -6.3477122815262799e-03 -2.6446894308450376e-03 -7.0097946299553786e-04 6.9122504007164713e-03 0 1 0 0 0 0 V -97 0 0 0 0 0 0 3 0 P 500 111 -6.2353150947055946e-01 -9.0116747774047601e-02 1.5221604244427969e-01 6.6204372628203678e-01 1.3497999999999999e-01 2 0 0 -228 0 P 501 111 -3.5805485482381427e-01 3.4710721190687049e-02 9.8967965370352393e-02 3.9676488226407791e-01 1.3497999999999999e-01 2 0 0 -229 0 P 502 111 -1.1845234764357272e-01 6.7454018331792445e-02 -1.5210473087511882e-02 1.9243690431652011e-01 1.3497999999999999e-01 2 0 0 -230 0 V -98 0 0 0 0 0 0 2 0 P 503 321 -1.6678250697673029e+00 -1.5086562075239927e+00 7.6560955002661513e-01 2.4264136001384720e+00 4.9359999999999998e-01 1 0 0 0 0 P 504 -211 -1.9603293385378842e-01 -5.7625735908253983e-01 3.4022761587305511e-01 7.1115122903273542e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 1 0 P 505 130 -1.7765768308979912e+00 -1.1633220020928325e+00 -7.4949260207436275e-01 2.3062866053682542e+00 4.9767000000000000e-01 1 0 0 0 0 V -100 0 2.4784462981138953e-05 -6.2434443295398604e-05 6.3021721098028584e-05 9.4133066226671541e-05 0 2 0 P 506 22 3.1410186598358023e-02 -1.4480480589819336e-01 6.5194531758202029e-02 1.6188069250076839e-01 0 1 0 0 0 0 P 507 22 1.4089445441950610e-01 -2.8924713815040376e-01 3.7294023994887310e-01 4.9254398462217774e-01 0 1 0 0 0 0 V -101 0 0 0 0 0 0 2 0 P 508 321 -1.0257296027806273e+00 -3.6848502762598798e+00 1.7505002102640654e+00 4.2353435188432540e+00 4.9359999999999998e-01 1 0 0 0 0 P 509 111 -1.4596731812295549e-01 -1.0046418263010555e-01 1.5383081897684797e-01 2.7070838778772827e-01 1.3497999999999999e-01 2 0 0 -231 0 V -102 0 0 0 0 0 0 2 0 P 510 -321 6.2500809318834630e-02 -7.1273415170284204e-01 1.0469390988621148e+00 1.3607419883634428e+00 4.9359999999999998e-01 1 0 0 0 0 P 511 211 -2.2660156941809736e-01 -7.4432455289201060e-01 4.3834454964318059e-01 9.0387667322623122e-01 1.3957000000000000e-01 1 0 0 0 0 V -103 0 0 0 0 0 0 2 0 P 512 -211 2.0360668152390449e-01 -7.7249685061133971e-02 3.2219910915490019e-01 4.1317701466009982e-01 1.3957000000000000e-01 1 0 0 0 0 P 513 111 9.4992355108865181e-02 -3.6967536966829589e-01 1.3263870972843683e-01 4.2602353712787333e-01 1.3497999999999999e-01 2 0 0 -232 0 V -104 0 0 0 0 0 0 2 0 P 514 -211 2.9481347638730043e-01 -1.5034953496218688e+00 1.1685860468671678e+00 1.9319643852894353e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -9.4648411822966391e-02 -9.7690040220823046e-02 2.4528479192540964e-01 3.1328274748036694e-01 1.3957000000000000e-01 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 516 211 -4.8823976241588701e-01 -1.3475917088973037e+00 6.2437563827297571e-01 1.5696197635292004e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 111 2.5820827099171689e-01 -7.6566482209935494e-01 3.6869442953906528e-01 8.9837036559656480e-01 1.3497999999999999e-01 2 0 0 -233 0 V -106 0 0 0 0 0 0 2 0 P 518 311 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -234 0 P 519 111 4.3122583000365111e-01 -9.4305119800959158e-01 7.6444474015925989e-01 1.2953364967014640e+00 1.3497999999999999e-01 2 0 0 -235 0 V -107 0 0 0 0 0 0 2 0 P 520 -311 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -236 0 P 521 -211 3.5535698437635393e-01 -7.0098858679047649e-01 1.5780827514139777e+00 1.7684706784015041e+00 1.3957000000000000e-01 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 522 2212 2.4512438852886342e+00 -5.1337536525883387e-01 9.8873679260435876e-01 2.8513333527963920e+00 9.3827000000000005e-01 1 0 0 0 0 P 523 211 1.5122428787602060e+00 1.2313879456916881e-01 3.0575046664842115e-01 1.5540285775508218e+00 1.3957000000000000e-01 1 0 0 0 0 V -109 0 1.0971462260821673e-04 -1.1908893670300572e-04 3.1457163944474797e-05 1.6736245100994987e-04 0 2 0 P 524 22 3.1853088413534097e-01 -3.3413156370193076e-01 2.2283367807392554e-02 4.6217136918115015e-01 0 1 0 0 0 0 P 525 22 2.0467586387789666e-01 -2.3377938395025166e-01 1.2772945689948761e-01 3.3594616201730970e-01 0 1 0 0 0 0 V -110 0 0 0 0 0 0 2 0 P 526 -2212 7.5978565726629566e-01 -1.9014739034781902e-01 2.7137807095332911e-01 1.2519692190058080e+00 9.3827000000000005e-01 1 0 0 0 0 P 527 111 7.3191741041476452e-02 -2.8396240332069861e-01 1.0909019449881370e-01 3.4075203358474421e-01 1.3497999999999999e-01 2 0 0 -237 0 V -111 0 0 0 0 0 0 2 0 P 528 321 1.8281708448208533e+00 6.3811732635462859e-01 -3.7858685294090250e-01 2.0338071012922216e+00 4.9359999999999998e-01 1 0 0 0 0 P 529 -211 8.0029074142278345e-01 -3.4481915424770984e-02 7.9347364050571564e-02 8.1696392966896858e-01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 530 211 1.1403325962761759e+00 -1.1350723537513931e-01 -9.5876406440765255e-02 1.1584102869123987e+00 1.3957000000000000e-01 1 0 0 0 0 P 531 111 3.1345191558033864e-01 3.3886775996459373e-01 9.4209984122144680e-02 4.9008018082013888e-01 1.3497999999999999e-01 2 0 0 -238 0 V -113 0 0 0 0 0 0 2 0 P 532 311 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -239 0 P 533 111 3.5757720671230186e-01 1.3540099758327029e-01 -5.6804795938670838e-01 6.9792046357025561e-01 1.3497999999999999e-01 2 0 0 -240 0 V -114 0 0 0 0 0 0 3 0 P 534 211 3.8846428976296371e-01 -5.8515519060278111e-02 -4.8557609063497448e-01 6.3999413676086325e-01 1.3957000000000000e-01 1 0 0 0 0 P 535 -211 3.4136747847378457e-01 6.4763654972160275e-03 -1.9050995828055373e-01 4.1514759757664699e-01 1.3957000000000000e-01 1 0 0 0 0 P 536 111 8.4447206235110672e-01 -6.1541933848405095e-01 -5.2811173030377401e-01 1.1785565859796994e+00 1.3497999999999999e-01 2 0 0 -241 0 V -115 0 8.5814370191757743e-05 -9.2237311704393624e-05 -1.6059079209375197e-05 1.2888850937693450e-04 0 2 0 P 537 22 -8.2210746879714906e-03 -5.9756489793695300e-03 8.5154693932728513e-04 1.0198999065581039e-02 0 1 0 0 0 0 P 538 22 5.3553479733446796e-01 -5.6080588298391720e-01 -9.9531672671741483e-02 7.8179748746735900e-01 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 539 -321 2.1312527234463374e+00 -1.9889389125683865e+00 -1.5254584753989664e+00 3.3269777109702261e+00 4.9359999999999998e-01 1 0 0 0 0 P 540 211 9.7396071565651121e-01 -1.5767665150371877e+00 -1.0026349540173458e+00 2.1117643700238022e+00 1.3957000000000000e-01 1 0 0 0 0 V -117 0 0 0 0 0 0 3 0 P 541 -211 4.9111497523019360e-01 -8.2946656483207570e-01 -4.4635437474071360e-01 1.0714106186798089e+00 1.3957000000000000e-01 1 0 0 0 0 P 542 211 5.3315892504720708e-01 -4.6847413534888277e-01 -2.6511382769233804e-01 7.7038404798000548e-01 1.3957000000000000e-01 1 0 0 0 0 P 543 111 1.4665721666715198e-01 -5.6670707181610314e-01 1.6762758955457706e-03 6.0073925687257679e-01 1.3497999999999999e-01 2 0 0 -242 0 V -118 0 0 0 0 0 0 2 0 P 544 311 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 2 0 0 -243 0 P 545 211 1.3800726882087853e+00 -1.7691735401852144e+00 -8.8733395516209135e-01 2.4169023507198029e+00 1.3957000000000000e-01 1 0 0 0 0 V -119 0 0 0 0 0 0 2 0 P 546 -321 -3.1195537120779965e-01 -1.1031140689059398e+00 -6.2055739697654777e-01 1.3938827947807961e+00 4.9359999999999998e-01 1 0 0 0 0 P 547 211 2.6845240900893597e-01 -1.5631308618466222e+00 -7.2265487212853508e-01 1.7484720862144680e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 548 321 1.3929316808297021e-01 -3.4255715454587804e-02 -1.2981052658220242e+00 1.3961712938858055e+00 4.9359999999999998e-01 1 0 0 0 0 P 549 -211 2.2991256364576590e-01 2.7313887401104586e-01 -2.3878333713551556e-01 4.5162141048865656e-01 1.3957000000000000e-01 1 0 0 0 0 V -121 0 0 0 0 0 0 2 0 P 550 -311 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -244 0 P 551 111 3.8999362575834590e-01 -1.9929949933398994e-01 -6.9151628053952960e-02 4.6348340491265927e-01 1.3497999999999999e-01 2 0 0 -245 0 V -122 0 0 0 0 0 0 2 0 P 552 211 -1.5536671083745418e-01 -7.2973955177834704e-01 -2.3183190520181396e-01 7.9365259744778438e-01 1.3957000000000000e-01 1 0 0 0 0 P 553 111 -3.8059992635465462e-01 -4.7645535078724238e-02 -3.6897353586488912e-01 5.4907874801593359e-01 1.3497999999999999e-01 2 0 0 -246 0 V -123 0 0 0 0 0 0 2 0 P 554 321 -1.5321551811203027e-01 -6.3670986621277445e-02 -1.5968430735118158e+00 1.6796064273961109e+00 4.9359999999999998e-01 1 0 0 0 0 P 555 -211 -1.9718877678862928e-01 -9.9254970269978496e-02 -1.3251067846094938e-01 2.9287169139551761e-01 1.3957000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 3 0 P 556 211 7.3701270062135935e-02 2.3440173600653293e-02 -9.3517261011000462e-03 1.5983916487604236e-01 1.3957000000000000e-01 1 0 0 0 0 P 557 -211 3.2057533662789278e-01 4.5639136669046503e-02 -1.7727187754385837e-01 3.9466008249873386e-01 1.3957000000000000e-01 1 0 0 0 0 P 558 111 4.8436369163677419e-02 9.7593178471862916e-03 7.5917150010530829e-02 1.6255565264955840e-01 1.3497999999999999e-01 2 0 0 -247 0 V -125 0 0 0 0 0 0 2 0 P 559 -321 -3.9684362250671479e-01 2.7377417853337127e-01 -1.7126579727948870e+00 1.8464223388308987e+00 4.9359999999999998e-01 1 0 0 0 0 P 560 211 2.1863396676987515e-01 8.9201719047028172e-02 -4.8141631670275498e-01 5.5407509689041534e-01 1.3957000000000000e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 561 311 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -248 0 P 562 111 -8.0485031244081850e-01 6.3442935549394852e-01 -5.0100165855366425e+00 5.1155420455999367e+00 1.3497999999999999e-01 2 0 0 -249 0 V -127 0 0 0 0 0 0 2 0 P 563 211 -2.5648980130092658e-01 2.7079627430371095e-01 -6.8642645852325646e-01 7.9358598035054739e-01 1.3957000000000000e-01 1 0 0 0 0 P 564 111 -7.8739269630811382e-01 3.2441156093686990e-01 -4.2563212397930528e+00 4.3427779376549207e+00 1.3497999999999999e-01 2 0 0 -250 0 V -128 0 0 0 0 0 0 3 0 P 565 -211 1.1064791628146634e-01 3.6783581785418351e-01 -1.1705761568557398e+00 1.2398687326378708e+00 1.3957000000000000e-01 1 0 0 0 0 P 566 211 1.9601539694647892e-02 8.6425514861375141e-01 -3.9289817684673118e+00 4.0253818084887678e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 111 -1.0899451069882157e-01 2.7890383338936536e-01 -2.5204584010436650e+00 2.5417705056580830e+00 1.3497999999999999e-01 2 0 0 -251 0 V -129 0 0 0 0 0 0 2 0 P 568 -211 -3.4479822045339553e-01 2.8801578257251337e-01 -1.8778933266544979e+00 1.9359240778068190e+00 1.3957000000000000e-01 1 0 0 0 0 P 569 111 -4.7739393786749029e-01 8.4826907046167233e-01 -9.4047074134762951e+00 9.4559085508115253e+00 1.3497999999999999e-01 2 0 0 -252 0 V -130 0 0 0 0 0 0 2 0 P 570 211 -1.0146392264150319e+00 5.7709586525715317e-01 -7.2572446439651097e+00 7.3518441227175968e+00 1.3957000000000000e-01 1 0 0 0 0 P 571 111 4.1123239956224314e-02 1.3845664196935642e-01 -1.6856906262300306e+00 1.6972430145178741e+00 1.3497999999999999e-01 2 0 0 -253 0 V -131 0 0 0 0 0 0 2 0 P 572 -211 -2.4719131510665512e-01 3.7533207946098579e-01 -3.3887167587110185e+00 3.4212364390386081e+00 1.3957000000000000e-01 1 0 0 0 0 P 573 111 -3.5458725657354400e+00 3.0192865722450031e+00 -4.4305060227946583e+01 4.4549364586491564e+01 1.3497999999999999e-01 2 0 0 -254 0 V -132 0 0 0 0 0 0 3 0 P 574 111 -3.9553579765962431e-02 4.6132811797115725e-01 -3.9094286650084178e+00 3.9390659051725212e+00 1.3497999999999999e-01 2 0 0 -255 0 P 575 111 -1.4022200828605086e-02 4.6580852717875432e-01 -3.2668051470350230e+00 3.3026367761537201e+00 1.3497999999999999e-01 2 0 0 -256 0 P 576 111 -3.6273630905616033e-01 1.5782213075400859e+00 -1.2883701941418890e+01 1.2985775118998561e+01 1.3497999999999999e-01 2 0 0 -257 0 V -133 0 0 0 0 0 0 2 0 P 577 211 3.8100751365880502e-02 3.3494356918345564e-01 -2.9936548703032515e+00 3.0158063812490310e+00 1.3957000000000000e-01 1 0 0 0 0 P 578 111 -1.0429007873741831e+00 2.2630224863458022e+00 -2.4581745651098544e+01 2.4708082719663107e+01 1.3497999999999999e-01 2 0 0 -258 0 V -134 0 0 0 0 0 0 2 0 P 579 -211 -4.2929060271745229e-01 2.5422565295510141e-01 -7.9782186368012722e+00 7.9950217951988796e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 111 -1.4604690111339875e+00 1.7946603792785125e+00 -1.9484412393192731e+01 1.9621781813021908e+01 1.3497999999999999e-01 2 0 0 -259 0 V -135 0 0 0 0 0 0 2 0 P 581 311 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 2 0 0 -260 0 P 582 211 -2.4445528601288491e-01 2.4975364963508259e-01 -2.2299522763905060e+00 2.2614823042077701e+00 1.3957000000000000e-01 1 0 0 0 0 V -136 0 0 0 0 0 0 1 0 P 583 310 2.0711075633535487e-02 8.5321688684284558e-01 -1.5833929459378142e+01 1.5864722044779437e+01 4.9767000000000000e-01 2 0 0 -261 0 V -137 0 0 0 0 0 0 2 0 P 584 -211 -2.9967223315772812e-01 2.0862329553960912e-01 -5.0554832516896031e+00 5.0705737170246952e+00 1.3957000000000000e-01 1 0 0 0 0 P 585 211 1.4444543333475335e-01 1.3710801400729660e+00 -2.2881325081767912e+01 2.2923246770825354e+01 1.3957000000000000e-01 1 0 0 0 0 V -138 0 8.7103622244021213e-07 -1.7302363505580758e-06 -7.6790479357282175e-06 8.9691461969131791e-06 0 2 0 P 586 22 -3.7330375548358934e-02 -6.4597192447063162e-02 -8.3231111894584861e-02 1.1177554382705249e-01 0 1 0 0 0 0 P 587 22 6.5256316072261553e-02 9.1247836388339276e-03 -1.6296374247390022e-01 1.7578062983411483e-01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 1 0 P 588 130 1.6123887095864724e+00 2.8818248298274635e-01 -1.1379558501749385e+01 1.1507600689020137e+01 4.9767000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 589 -321 1.1804077913916842e+00 2.5432481593847861e-01 -1.2468626407813948e+01 1.2536679349956099e+01 4.9359999999999998e-01 1 0 0 0 0 P 590 111 3.4581707482900445e-02 2.6935194592701807e-02 -3.3993692323832683e+00 3.4023304039546467e+00 1.3497999999999999e-01 2 0 0 -262 0 V -141 0 4.7813783231145052e-05 6.5885652825406035e-06 -3.3326257571074819e-04 3.3676814569143449e-04 0 2 0 P 591 22 5.0031277022003218e-01 1.2474131327401576e-01 -3.7798245607535468e+00 3.8148324961075692e+00 0 1 0 0 0 0 P 592 22 9.6980875871290273e-01 7.7836082030979942e-02 -6.4669380719275891e+00 6.5397152468810686e+00 0 1 0 0 0 0 V -142 0 0 0 0 0 0 3 0 P 593 211 1.4765586212938988e+00 -1.2287157083785445e+00 -1.5048198279817107e+01 1.5170949835383547e+01 1.3957000000000000e-01 1 0 0 0 0 P 594 -211 6.3388671792337425e-01 -6.1184057820052018e-01 -6.0484572541297492e+00 6.1138757105642245e+00 1.3957000000000000e-01 1 0 0 0 0 P 595 111 3.6384909301035945e-01 -3.4839763719044642e-01 -4.3926354391854696e+00 4.4234864957488531e+00 1.3497999999999999e-01 2 0 0 -263 0 V -143 0 0 0 0 0 0 3 0 P 596 211 2.7403696569266053e-02 -5.8737576679686765e-01 -4.9964233153207394e+00 5.0328408463596936e+00 1.3957000000000000e-01 1 0 0 0 0 P 597 -211 6.3313694644344165e-01 -1.2579374520113713e+00 -1.0217288689588599e+01 1.0314830923355927e+01 1.3957000000000000e-01 1 0 0 0 0 P 598 111 4.4287802634414347e-01 -2.2827814798139006e+00 -1.5676551310879637e+01 1.5848650189648389e+01 1.3497999999999999e-01 2 0 0 -264 0 V -144 0 0 0 0 0 0 2 0 P 599 -211 -2.1889466677890226e-01 -9.7573203754683979e-02 -2.9615072609576862e+00 2.9744647328284626e+00 1.3957000000000000e-01 1 0 0 0 0 P 600 111 2.6764634782375629e-01 -1.3936096329764053e-01 -1.0851536504994650e+00 1.1343870993567216e+00 1.3497999999999999e-01 2 0 0 -265 0 V -145 0 0 0 0 0 0 2 0 P 601 211 8.6337712446234738e-01 -2.6367366432140288e-01 -8.2966721302920419e+01 8.2971749815233323e+01 1.3957000000000000e-01 1 0 0 0 0 P 602 111 8.4478402969403887e-01 -3.1565269462054341e-01 -4.1807707556468742e+01 4.1817650907338887e+01 1.3497999999999999e-01 2 0 0 -266 0 V -146 0 0 0 0 0 0 2 0 P 603 -211 8.7452626824318952e-02 3.7856557858886258e-01 -1.0165811398854835e+01 1.0174190928089452e+01 1.3957000000000000e-01 1 0 0 0 0 P 604 111 6.0872517961275285e-01 -1.1646131056861458e-01 -3.6384685675471133e+01 3.6390214081321204e+01 1.3497999999999999e-01 2 0 0 -267 0 V -147 0 0 0 0 0 0 3 0 P 605 211 2.0641916258513257e-01 1.2592649415801263e-01 -1.3498926563830947e+01 1.3501813378698953e+01 1.3957000000000000e-01 1 0 0 0 0 P 606 -211 -2.8769692802774584e-03 -1.2157472425517003e-01 -4.9109042297012939e+00 4.9143920100789700e+00 1.3957000000000000e-01 1 0 0 0 0 P 607 111 4.3534893166397720e-01 -3.6493771491872629e-01 -2.6328356190853949e+01 2.6334829931878211e+01 1.3497999999999999e-01 2 0 0 -268 0 V -148 0 0 0 0 0 0 2 0 P 608 22 -8.2706559572206014e-03 -5.9321617721436126e-02 -8.1286488242441344e+00 8.1288694888012927e+00 0 1 0 0 0 0 P 609 22 1.5774996054796075e+00 -4.2608624103974854e-02 -8.3746058014914937e+01 8.3760924980193678e+01 0 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 610 211 -8.6387955802294428e-02 -4.7459259601925996e-01 -2.4954090132624273e+01 2.4959142516183125e+01 1.3957000000000000e-01 1 0 0 0 0 P 611 111 1.1395288255181901e+00 -2.6496118762522336e+00 -1.7851590397334641e+02 1.7853925383528519e+02 1.3497999999999999e-01 2 0 0 -269 0 V -150 0 0 0 0 0 0 2 0 P 612 321 7.7811070249969116e-01 2.2597030472746757e-01 -1.2516984843507953e+02 1.2517344413678464e+02 4.9359999999999998e-01 1 0 0 0 0 P 613 -211 -4.1890828255649049e-02 -1.3907730163812634e-01 -2.2030220454967942e+01 2.2031141377983822e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 614 -321 2.4875219142127142e-01 -3.9989688858790529e-01 -3.1288850806598013e+01 3.1296287654157773e+01 4.9359999999999998e-01 1 0 0 0 0 P 615 211 1.2380391085146980e-01 -4.5171729348212764e-01 -5.5385778003096625e+01 5.5387934252098397e+01 1.3957000000000000e-01 1 0 0 0 0 V -152 0 0 0 0 0 0 2 0 P 616 -211 -1.7160566534893104e-01 5.1350245553554733e-02 -4.0610989314430611e+01 4.0611624176260122e+01 1.3957000000000000e-01 1 0 0 0 0 P 617 111 2.6577598965623711e-01 -7.7092494383720001e-01 -1.0268792822802989e+02 1.0269125466908623e+02 1.3497999999999999e-01 2 0 0 -270 0 V -153 0 0 0 0 0 0 2 0 P 618 3122 2.5665947751140833e-01 -3.1011370428576662e-01 -2.1579684862941454e+02 2.1580010812056105e+02 1.1156800000000000e+00 2 0 0 -271 0 P 619 22 4.8487288333967843e-02 -1.8810934372346415e-02 -3.0021017453384418e+00 3.0025522073306337e+00 0 1 0 0 0 0 V -154 0 -7.7492381941262678e+01 -4.8501399267561105e+01 -4.4607036804293253e+04 4.4607261918887496e+04 0 2 0 P 620 -3122 -6.9235537172918693e-01 -4.1701401614409078e-01 -4.0893541102044969e+02 4.0893773167192211e+02 1.1156800000000000e+00 2 0 0 -272 0 P 621 111 -2.4861739882574477e-01 -1.7192769530285856e-01 -1.3271792259106454e+02 1.3271833545607635e+02 1.3497999999999999e-01 2 0 0 -273 0 V -155 0 0 0 0 0 0 2 0 P 622 -321 -2.3411617728133400e-02 -6.5232230856388274e-01 -1.1568864861813621e+02 1.1569154304679614e+02 4.9359999999999998e-01 1 0 0 0 0 P 623 211 2.2990212814758515e-01 -1.0616184537454590e-01 -1.2579281577871387e+02 1.2579314809101602e+02 1.3957000000000000e-01 1 0 0 0 0 V -156 0 0 0 0 0 0 3 0 P 624 111 -4.3927707335301913e-01 9.8569205808876362e-02 -1.0808464474333476e+02 1.0808566662203083e+02 1.3497999999999999e-01 2 0 0 -274 0 P 625 111 -2.2207926295417768e-01 2.9408095632049314e-02 -5.3039822882697464e+01 5.3040467711582643e+01 1.3497999999999999e-01 2 0 0 -275 0 P 626 111 -6.5765051523946005e-01 -1.3263513475766395e-01 -1.9282176112538815e+02 1.9282297549663477e+02 1.3497999999999999e-01 2 0 0 -276 0 V -157 0 0 0 0 0 0 2 0 P 627 321 -1.2897257610442938e+00 1.6839958820118497e-01 -4.9003144009236280e+01 4.9022887661886635e+01 4.9359999999999998e-01 1 0 0 0 0 P 628 -211 -4.9685779056242585e-01 4.6128615237547776e-01 -1.8384803114078451e+01 1.8397829162886165e+01 1.3957000000000000e-01 1 0 0 0 0 V -158 0 0 0 0 0 0 2 0 P 629 211 -4.8378664284063333e-01 -8.0413758485326461e-02 -9.9398903073761019e+01 9.9400210904907951e+01 1.3957000000000000e-01 1 0 0 0 0 P 630 111 -3.0382133837596209e-01 -4.8577218781833292e-01 -3.8713422198637055e+01 3.8717897153053585e+01 1.3497999999999999e-01 2 0 0 -277 0 V -159 0 0 0 0 0 0 2 0 P 631 -211 8.5805581558979674e-02 8.3027654605316289e-02 -1.0962875129040640e+01 1.0964413667364697e+01 1.3957000000000000e-01 1 0 0 0 0 P 632 111 2.3508016431810488e-01 -5.6477935328144557e-01 -1.5705772322460166e+02 1.5705897262651862e+02 1.3497999999999999e-01 2 0 0 -278 0 V -160 0 0 0 0 0 0 2 0 P 633 22 -1.1826159119951234e-01 -1.6186743966905534e-01 -3.6712014271588117e+01 3.6712561593401077e+01 0 1 0 0 0 0 P 634 113 -9.7987313018542840e-02 5.9280147811696236e-02 -2.1029115366305308e+02 2.1029258292998162e+02 7.6681860694569770e-01 2 0 0 -279 0 V -161 0 0 0 0 0 0 2 0 P 635 2212 -3.5302386687277360e-01 7.8037839027768764e-04 -4.5012253740932857e+02 4.5012365374512910e+02 9.3827000000000005e-01 1 0 0 0 0 P 636 211 7.1116383555410306e-02 4.7358052753954001e-02 -7.4121621085245621e+01 7.4121801734812138e+01 1.3957000000000000e-01 1 0 0 0 0 V -162 0 0 0 0 0 0 3 0 P 637 211 -2.4548359173950322e-02 -2.0581985447976094e-02 -5.3648734582717566e+02 5.3648736493855336e+02 1.3957000000000000e-01 1 0 0 0 0 P 638 -211 6.1716837644396998e-02 1.5323336215082284e-01 -1.4280631838436983e+02 1.4280648213479046e+02 1.3957000000000000e-01 1 0 0 0 0 P 639 111 1.4321615816800487e-01 -2.1942438752060736e-01 -5.6564192842903651e+02 5.6564200522454962e+02 1.3497999999999999e-01 2 0 0 -280 0 V -163 0 0 0 0 0 0 2 0 P 640 -211 9.7855876042737558e-02 -1.6373976034273754e-01 3.3446785750497643e+00 3.3530196893084465e+00 1.3957000000000000e-01 1 0 0 0 0 P 641 111 -3.8265591769580620e-01 2.2331657723614864e-01 1.8929574380471039e+00 1.9487953478171953e+00 1.3497999999999999e-01 2 0 0 -281 0 V -164 0 2.8431227347185748e-05 -3.1409658029638097e-04 1.8469594312437588e-03 1.8746173768069280e-03 0 2 0 P 642 22 8.0474890970902282e-02 -3.9610817574688773e-01 2.6384796414490626e+00 2.6692607053848221e+00 0 1 0 0 0 0 P 643 22 -1.5291048641413833e-02 -3.2401627460672716e-01 1.5960161432386062e+00 1.6286460302523722e+00 0 1 0 0 0 0 V -165 0 4.9518262439976248e-05 3.9693163065173995e-05 3.1674847022588156e-04 3.2743744162256743e-04 0 2 0 P 644 22 -2.0840241077519799e-03 8.0365993919266188e-02 2.8112048781632437e-01 2.9238974811918661e-01 0 1 0 0 0 0 P 645 22 1.2710926083162161e-01 1.9852528783504918e-02 5.1861582199296241e-01 5.3433440644384600e-01 0 1 0 0 0 0 V -166 0 0 0 0 0 0 2 0 P 646 211 -5.9255362752556828e-01 -5.9212017658873661e-01 7.8082688359773718e+00 7.8543152537196139e+00 1.3957000000000000e-01 1 0 0 0 0 P 647 111 1.3041068527323001e-02 -2.3549596778567120e-02 5.9138729249002173e+00 5.9154743871683380e+00 1.3497999999999999e-01 2 0 0 -282 0 V -167 0 -1.8899636156857891e-05 1.9696489777446890e-05 4.1991135470968582e-05 5.7186094349548713e-05 0 2 0 P 648 22 -1.8243290188374818e-02 7.3279362659785088e-02 1.8431000302853914e-01 1.9918047054142049e-01 0 1 0 0 0 0 P 649 22 -7.4181671525966317e-02 2.3042455309545299e-02 2.1039404549221000e-02 8.0476901536183282e-02 0 1 0 0 0 0 V -168 0 0 0 0 0 0 2 0 P 650 -211 -8.0533756546595370e-01 2.7160722614549743e-01 3.7685258388601572e+00 3.8656960385811159e+00 1.3957000000000000e-01 1 0 0 0 0 P 651 111 -3.0142247926803184e-01 -4.3379255585563814e-01 2.2704014594553108e+00 2.3349462263659646e+00 1.3497999999999999e-01 2 0 0 -283 0 V -169 0 -7.6711134932358558e-05 -3.8263683323609167e-04 2.5421067451362371e-03 2.5720293279743512e-03 0 2 0 P 652 22 -2.4796545140232665e-02 -1.1981409363355952e-01 6.0650430944957090e-01 6.1872268672243125e-01 0 1 0 0 0 0 P 653 22 -3.5775473147815867e-01 -1.7883601129501008e+00 1.2070744977887900e+01 1.2207747730957248e+01 0 1 0 0 0 0 V -170 0 0 0 0 0 0 3 0 P 654 211 -3.1317702558067601e-01 2.4649858180520168e-01 1.0350445771567724e+01 1.0359056368957923e+01 1.3957000000000000e-01 1 0 0 0 0 P 655 -211 1.4953891873198336e-01 1.9344874000060928e-02 1.0106431063785744e+01 1.0108519414054614e+01 1.3957000000000000e-01 1 0 0 0 0 P 656 111 -1.0767272719634909e-01 -4.5541563002438383e-02 2.7061516811986510e+00 2.7120368677798039e+00 1.3497999999999999e-01 2 0 0 -284 0 V -171 0 0 0 0 0 0 2 0 P 657 -211 1.4541589324493778e-01 1.4556811293786326e-01 5.6458157753451461e+00 5.6512875888197929e+00 1.3957000000000000e-01 1 0 0 0 0 P 658 211 7.4899253842515445e-02 -2.7060869386465009e-01 6.7041552542861025e+00 6.7114839210038530e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 0 0 0 0 0 2 0 P 659 -211 1.7028538573734212e-01 -7.3687049697008650e-02 1.4660710025635930e+00 1.4843418957054952e+00 1.3957000000000000e-01 1 0 0 0 0 P 660 111 -3.0616523875700569e-01 5.9880161670113530e-01 1.3235086424389289e+01 1.3252849987494791e+01 1.3497999999999999e-01 2 0 0 -285 0 V -173 0 0 0 0 0 0 2 0 P 661 -311 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 2 0 0 -286 0 P 662 111 -5.5261957942046398e-03 3.9843570042760463e-04 3.6538160709534502e+01 3.6538410451657057e+01 1.3497999999999999e-01 2 0 0 -287 0 V -174 0 0 0 0 0 0 2 0 P 663 311 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -288 0 P 664 111 -6.2777541923746638e-01 1.9448482545552981e-02 3.2186440271673021e+01 3.2192850715381624e+01 1.3497999999999999e-01 2 0 0 -289 0 V -175 0 0 0 0 0 0 2 0 P 665 -321 -6.4351916287137684e-02 -3.5002433531645633e-01 1.5786338280768058e+02 1.5786455565024323e+02 4.9359999999999998e-01 1 0 0 0 0 P 666 211 2.7134098338430873e-01 2.5570369686896743e-01 5.8944985485377110e+01 5.8946329860018210e+01 1.3957000000000000e-01 1 0 0 0 0 V -176 0 0 0 0 0 0 2 0 P 667 -211 -4.5421763141989729e-01 6.2425330852400984e-01 5.1503199604186612e+01 5.1509174475072726e+01 1.3957000000000000e-01 1 0 0 0 0 P 668 111 -4.5640839231592317e-02 7.9124553132245534e-02 4.0201133532702542e+01 4.0201463912346462e+01 1.3497999999999999e-01 2 0 0 -290 0 V -177 0 0 0 0 0 0 3 0 P 669 -211 1.0370774191255924e-01 -3.1397961181753531e-01 8.8675221091625804e+00 8.8747826245918198e+00 1.3957000000000000e-01 1 0 0 0 0 P 670 211 -3.4119362058425258e-02 -1.5865509427344407e-01 2.7056259978793161e+01 2.7057106633835605e+01 1.3957000000000000e-01 1 0 0 0 0 P 671 111 9.5737143924794599e-02 -1.7630667385799484e-01 1.5386890389690647e+01 1.5388790241884777e+01 1.3497999999999999e-01 2 0 0 -291 0 V -178 0 0 0 0 0 0 2 0 P 672 22 -3.5658524969334016e-01 -3.5750914631672842e-01 3.7303429147365428e+01 3.7306846449177542e+01 0 1 0 0 0 0 P 673 111 -1.4404126623124075e-01 3.3092504281562679e-01 6.0468680992970157e+01 6.0469908714172291e+01 1.3497999999999999e-01 2 0 0 -292 0 V -179 0 0 0 0 0 0 3 0 P 674 211 -6.4088371711647524e-02 -1.6853907306660940e-01 1.3645855447586628e+01 1.3647760381098008e+01 1.3957000000000000e-01 1 0 0 0 0 P 675 -211 1.0120490930013099e-01 -1.7321198751651401e-01 6.1470833901023184e+01 6.1471319695434936e+01 1.3957000000000000e-01 1 0 0 0 0 P 676 111 -2.5654517994311077e-01 -3.9069583680739609e-02 2.9361462051397748e+01 2.9362919052059368e+01 1.3497999999999999e-01 2 0 0 -293 0 V -180 0 2.7874310402828541e-06 7.2190797405105633e-06 7.1285518893231389e-04 7.1293523991798461e-04 0 2 0 P 677 22 -2.0472067600532211e-02 1.1710557708470458e-01 9.2661389801761018e+00 9.2669015545475180e+00 0 1 0 0 0 0 P 678 22 7.1554256807597943e-02 1.5190573699436449e-02 3.7975756416514295e+00 3.7982800738309006e+00 0 1 0 0 0 0 V -181 0 6.8699890293909516e-06 6.7107052061940235e-06 3.4279486783242566e-02 3.4279490601586637e-02 0 2 0 P 679 22 4.7209951929092032e-02 1.0543355578252174e-01 3.0210765287072019e+02 3.0210767495724076e+02 0 1 0 0 0 0 P 680 22 2.4005578294380023e-02 -3.5869190048026550e-02 5.3239614295665028e+01 5.3239631790779363e+01 0 1 0 0 0 0 V -182 0 2.2064386563502137e-04 -2.5306124259287359e-04 -1.3541036264325438e-03 1.3952580004988353e-03 0 2 0 P 681 22 7.5279082376440476e-01 -8.0679834100198666e-01 -4.6814294843943811e+00 4.8097192854411448e+00 0 1 0 0 0 0 P 682 22 6.9264037654619304e-01 -8.5099810205965243e-01 -4.1892618646093469e+00 4.3305731065531452e+00 0 1 0 0 0 0 V -183 0 1.8858877061785453e-05 -6.7115273977681676e-06 -1.1940598237464134e-04 1.2108143212847695e-04 0 2 0 P 683 22 1.3501778070345933e+00 -4.9390965344496285e-01 -8.8793476233960753e+00 8.9949842175228074e+00 0 1 0 0 0 0 P 684 22 3.5724615226029388e-01 -1.1373112203016625e-01 -1.9312979161906665e+00 1.9673513215756446e+00 0 1 0 0 0 0 V -184 0 -3.0922713758710697e-06 -1.6589517211335248e-06 -8.6557639952703560e-05 8.6998375960077397e-05 0 2 0 P 685 22 -1.2378422738514841e-04 -2.0255687437457568e-02 -1.2720232401748697e+00 1.2721845116731587e+00 0 1 0 0 0 0 P 686 22 -5.1978110905350462e-02 -7.6961053059662540e-03 -1.8639244576487590e-01 1.9365716585859055e-01 0 1 0 0 0 0 V -185 0 2.4651623082129744e-05 -5.6707935837792154e-06 -2.1251757288745076e-04 2.2359079391547974e-04 0 2 0 P 687 22 6.0640802277366547e-02 4.6535683630569633e-02 -3.2839784071453820e-01 3.3717653912717349e-01 0 1 0 0 0 0 P 688 22 -9.2309824191483363e-03 -5.8361861388681067e-02 -1.1479772910453874e-01 1.2911172103544014e-01 0 1 0 0 0 0 V -186 0 -1.4832730474643106e-05 2.9422192369530004e-06 -5.4954216591198518e-05 6.0118634666164664e-05 0 2 0 P 689 22 -1.2640580876616897e-01 4.7177821781676815e-02 -3.3746011804611964e-01 3.6343294653841440e-01 0 1 0 0 0 0 P 690 22 2.1698527333679749e-02 -2.6408093766570138e-02 -5.0472948785598819e-02 6.0956804902718556e-02 0 1 0 0 0 0 V -187 0 9.7712690300578037e-07 -4.0981640044293525e-05 -1.5586716280811184e-04 1.6179373662674135e-04 0 2 0 P 691 22 7.9394382566176040e-03 -2.9018871046713950e-02 -3.1018489693273164e-02 4.3211992079839966e-02 0 1 0 0 0 0 P 692 22 1.3361038159218500e-03 -3.6000626505709010e-01 -1.4485768647142860e+00 1.4926423647475755e+00 0 1 0 0 0 0 V -188 0 1.9176385299722858e-04 8.8824797196092515e-04 -2.6837460223185948e-03 2.8337582456032834e-03 0 2 0 P 693 22 5.0314286580798862e-01 2.4241644791864827e+00 -7.1865354125248873e+00 7.6010537033385850e+00 0 1 0 0 0 0 P 694 22 8.5250742727512957e-02 3.0126798020398959e-01 -1.0480665825010369e+00 1.0938343779508795e+00 0 1 0 0 0 0 V -189 0 0 0 0 0 0 1 0 P 695 130 1.0000622474210228e+00 3.5442033533675752e+00 -1.0841507255269089e+01 1.1460691816103035e+01 4.9767000000000000e-01 1 0 0 0 0 V -190 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 4 0 P 696 -211 2.0725484551154222e-01 1.1124373119939290e+00 -3.5934346215628152e+00 3.7699765925600368e+00 1.3957000000000000e-01 1 0 0 0 0 P 697 -211 3.1337716993121384e-01 1.0537898241530332e+00 -3.0351918280270906e+00 3.2311836007792887e+00 1.3957000000000000e-01 1 0 0 0 0 P 698 -3112 3.1991115434626538e+00 1.3444156387045226e+01 -4.2430664477738212e+01 4.4640506339006059e+01 1.1974400000000001e+00 2 0 0 -294 0 P 699 323 2.4735310675572069e+00 1.0812323694586169e+01 -3.4993056160096224e+01 3.6717914387383253e+01 8.1642998283846813e-01 2 0 0 -295 0 V -191 0 0 0 0 0 0 2 0 P 700 22 1.8983806908161149e-02 1.7362657703381851e-01 7.3873501760517088e-02 1.8964141804882165e-01 0 1 0 0 0 0 P 701 22 -1.3704905665261415e+00 1.0199075479696598e+00 9.7094950782817302e-01 1.9649933196055396e+00 0 1 0 0 0 0 V -192 0 -4.6997728532604423e-06 4.5124683058843886e-05 7.7575765897137122e-05 9.0365805440288039e-05 0 2 0 P 702 22 1.3324926704386489e-02 3.4288906286411369e-01 6.7035004936878473e-01 7.5307347038136963e-01 0 1 0 0 0 0 P 703 22 -8.0322698813220392e-02 3.0038739462731900e-01 4.3553392567034310e-01 5.3513934933384222e-01 0 1 0 0 0 0 V -193 0 -9.7600780826877997e+00 1.5361365577876793e+00 8.4454766310167997e+01 8.5246695089912620e+01 0 2 0 P 704 -211 -7.9285124718928887e-02 -8.9100832825820486e-02 1.5225500634850293e+00 1.5335786807758569e+00 1.3957000000000000e-01 1 0 0 0 0 P 705 211 -7.2171465914144683e-01 2.1517001386551807e-01 5.4085675963640245e+00 5.4625317768801551e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 1.2716116432762454e-06 -6.3814690442655613e-05 5.0162287104313008e-03 5.0170010813853404e-03 0 2 0 P 706 22 -5.3124113350063948e-04 2.0691351623261963e-02 3.1445633804797661e+00 3.1446314995724811e+00 0 1 0 0 0 0 P 707 22 3.3624312979863087e-03 -1.6277209214357746e-01 8.0238601416525359e+00 8.0255116742002990e+00 0 1 0 0 0 0 V -195 0 5.6424540710598678e-05 -2.8677941706789788e-04 3.2815180137927033e-03 3.2947076489035468e-03 0 2 0 P 708 22 2.2129278247067530e-01 -8.4449592202847690e-01 9.6857270744122257e+00 9.7249911474457598e+00 0 1 0 0 0 0 P 709 22 -1.1014366713732959e-02 -2.2425042013553978e-01 2.5435689114846194e+00 2.5534589040507631e+00 0 1 0 0 0 0 V -196 0 -1.2570459193487190e-07 -1.5498444312552478e-06 4.0003245939914675e-06 5.4008957487570616e-06 0 2 0 P 710 22 -2.5331579215445051e-02 -9.9973730546892750e-02 1.4086450724835456e-01 1.7458306076860042e-01 0 1 0 0 0 0 P 711 22 2.0156329497947201e-02 3.6166738045179184e-02 2.3828591120559357e-02 4.7771459203683843e-02 0 1 0 0 0 0 V -197 0 9.4412890987401761e-06 5.5321536087690306e-05 5.0391412239911271e-04 5.0787915290754126e-04 0 2 0 P 712 22 5.7975534397695254e-02 2.0617575857106443e-01 1.3467179724438043e+00 1.3636417796893010e+00 0 1 0 0 0 0 P 713 22 -1.4574356259446879e-02 4.8134835831109918e-02 9.6975241246807509e-01 9.7105567078747701e-01 0 1 0 0 0 0 V -198 0 3.4005524300272399e-06 5.5124661814798012e-06 8.6203031103025443e-05 8.6698180947031910e-05 0 2 0 P 714 22 9.9388352207220837e-02 1.2139537353315158e-01 1.5288395993128989e+00 1.5368687002138293e+00 0 1 0 0 0 0 P 715 22 -2.9922363845104029e-02 -8.7875195186287360e-03 2.3210332940235986e-01 2.3418907719411133e-01 0 1 0 0 0 0 V -199 0 -3.1751718579696859e-05 1.4384531578524084e-04 5.5009496005256153e-04 5.7051883808736752e-04 0 2 0 P 716 22 -8.4245225274086843e-02 1.1851795814052958e-01 5.6722523277629699e-01 5.8556658808491291e-01 0 1 0 0 0 0 P 717 22 -4.0119016535579248e-02 4.4489134490558802e-01 1.5873712958664217e+00 1.6490256138703019e+00 0 1 0 0 0 0 V -200 0 -2.1860320961568040e-05 3.4233223209356850e-05 3.2363351406028681e-02 3.2363385742285575e-02 0 2 0 P 718 22 -4.5483352791465939e-02 9.3532564159593795e-02 1.3004722086957409e+02 1.3004726245859899e+02 0 1 0 0 0 0 P 719 22 -7.7817880505842402e-02 9.9556944858894450e-02 5.2495439369174754e+01 5.2495591450811361e+01 0 1 0 0 0 0 V -201 0 2.2199023141811921e-05 -5.3039731245512057e-05 4.4742652750651611e-02 4.4742696926206353e-02 0 2 0 P 720 22 6.6205091243347419e-02 -2.6727801909111137e-01 2.1146345735761838e+02 2.1146363663356138e+02 0 1 0 0 0 0 P 721 22 5.1591468473985748e-02 -1.4171206360855906e-02 2.5958276607196254e+01 2.5958331743746964e+01 0 1 0 0 0 0 V -202 0 1.2999308436397550e+02 2.5108727436240727e+01 1.4229354800096778e+04 1.4230076817044011e+04 0 2 0 P 722 -211 2.6685586729241118e-01 -8.1108204032047090e-02 4.0488586354586793e+01 4.0489787544174661e+01 1.3957000000000000e-01 1 0 0 0 0 P 723 211 9.1045510119082751e-01 3.0851091826085342e-01 8.8382696010616314e+01 8.8388033926362922e+01 1.3957000000000000e-01 1 0 0 0 0 V -203 0 2.7363225273066167e+01 -2.1373490947568285e+01 1.0415390354526505e+03 1.0421995956974124e+03 0 2 0 P 724 -211 7.2489758038794805e-01 -3.7887502919494193e-01 1.9820686504652318e+01 1.9838047184398125e+01 1.3957000000000000e-01 1 0 0 0 0 P 725 211 3.1690428588277286e-01 -4.3487929017670479e-01 1.9833897342831033e+01 1.9841686216506282e+01 1.3957000000000000e-01 1 0 0 0 0 V -204 0 -3.7161138508547294e-06 -1.0797274676986123e-05 5.5601183299288683e-04 5.5615317425263119e-04 0 2 0 P 726 22 -1.0203530149602461e-01 -2.6159332671702568e-01 1.4267316207454684e+01 1.4270078977876521e+01 0 1 0 0 0 0 P 727 22 5.1501261875322099e-03 -1.9909310693595528e-02 2.2882305930157293e-01 2.2974528704670483e-01 0 1 0 0 0 0 V -205 0 0 0 0 0 0 3 0 P 728 22 1.3398938831493382e-01 -2.8168125127713017e-01 6.4585134479593540e+00 6.4660415588653537e+00 0 1 0 0 0 0 P 729 -11 2.8592288824210077e-01 -7.2276444124703509e-01 3.2320127085609279e+01 3.2329471932365159e+01 5.1000000000000004e-04 1 0 0 0 0 P 730 11 4.5889587728233433e-01 -1.0410527579863120e+00 4.6859438540833928e+01 4.6873247774113004e+01 5.1000000000000004e-04 1 0 0 0 0 V -206 0 -4.1784848742943209e-06 -4.0948177251253058e-05 1.6365147697675645e-03 1.6372210840774910e-03 0 2 0 P 731 22 -2.4716554148417149e-03 1.8669719255098305e-02 5.2483838463482613e-01 5.2517615852554422e-01 0 1 0 0 0 0 P 732 22 -2.0214880542658818e-02 -2.4099248062719644e-01 8.3604040623855642e+00 8.3639011294650789e+00 0 1 0 0 0 0 V -207 0 -6.6357726067545197e-04 -8.0312941323564240e-04 3.2528107603266763e-02 3.2544841843021095e-02 0 2 0 P 733 22 -1.6978077908428943e-01 -2.2914579108914412e-01 7.6881637487780461e+00 7.6934514448682423e+00 0 1 0 0 0 0 P 734 22 -1.3241464960419060e+00 -1.5789585653915703e+00 6.5543138823729876e+01 6.5575525319748152e+01 0 1 0 0 0 0 V -208 0 -1.9185409250505920e+01 -1.1908548988451217e+01 5.5576966908853410e+02 5.5663194824553909e+02 0 2 0 P 735 211 -3.1372636994174885e-01 4.4975243109516228e-02 6.7182563856611566e+00 6.7271759049445476e+00 1.3957000000000000e-01 1 0 0 0 0 P 736 -211 -1.3671763452495014e-01 -3.2456972158562020e-01 6.3303636378481105e+00 6.3416891115892637e+00 1.3957000000000000e-01 1 0 0 0 0 V -209 0 -1.4539267113275475e-04 -5.4716777529803165e-05 2.2253265940689157e-03 2.2313261033700717e-03 0 2 0 P 737 22 -3.8468416547776196e-01 -1.4929627784085295e-01 5.3644270119134116e+00 5.3802740127146613e+00 0 1 0 0 0 0 P 738 22 1.5715391531603848e-04 4.5841765916009442e-03 5.2100158844869027e-01 5.2102177933214522e-01 0 1 0 0 0 0 V -210 0 -2.8363000894961221e-06 -5.4039140357384783e-06 9.9244074737718947e-04 9.9376460557048423e-04 0 2 0 P 739 22 -4.3026960238468220e-02 4.7754327164595239e-02 1.3072049332033679e+00 1.3087843720267780e+00 0 1 0 0 0 0 P 740 22 3.5507498842641323e-02 -6.2080922269460000e-02 1.3239058985401544e+00 1.3258362084259505e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 741 130 -9.7992665603705831e-01 5.0433277908977725e-01 9.5445349169646487e+00 9.6208331247004679e+00 4.9767000000000000e-01 1 0 0 0 0 V -212 0 -8.8538078053875373e-05 1.5026095136142807e-05 6.4146389517578928e-04 6.4777119277904729e-04 0 2 0 P 742 22 -7.7983274945426995e-01 1.9647554485541990e-01 5.8880896098635800e+00 5.9427553382779514e+00 0 1 0 0 0 0 P 743 22 -6.8222286686259725e-01 5.1654833259870067e-02 4.7045944783947178e+00 4.7540830312491806e+00 0 1 0 0 0 0 V -213 0 -6.3534965157973911e-02 8.6485374397461928e-02 6.9236259580253534e-01 7.0234914930299941e-01 0 2 0 P 744 111 -1.6505271178654668e-01 2.4278520744795476e-01 1.0958430706822513e+00 1.1424879389236215e+00 1.3497999999999999e-01 2 0 0 -296 0 P 745 111 -4.7877543116970306e-01 6.3360966980973132e-01 5.9201759544256864e+00 5.9747292875015034e+00 1.3497999999999999e-01 2 0 0 -297 0 V -214 0 0 0 0 0 0 3 0 P 746 111 -9.8576060081403155e-02 -3.4742542340549541e-02 6.5130757674160544e-01 6.7330932251861741e-01 1.3497999999999999e-01 2 0 0 -298 0 P 747 111 -7.8036095414182050e-03 5.8506008690904859e-02 1.2294543013758501e+00 1.2382492999983463e+00 1.3497999999999999e-01 2 0 0 -299 0 P 748 111 -8.8432784981368667e-02 1.7911957907012327e-01 2.6245503790561009e+00 2.6356002112743395e+00 1.3497999999999999e-01 2 0 0 -300 0 V -215 0 1.2483117079168445e-04 1.0027314836518818e-04 1.5020022083302700e-03 1.5111261978453612e-03 0 2 0 P 749 22 7.9080599247424721e-02 1.1552153501489100e-01 1.7374338802173952e+00 1.7430649598786627e+00 0 1 0 0 0 0 P 750 22 3.1222050695436765e-01 1.9879894783239740e-01 2.9708062324862601e+00 2.9937755990724022e+00 0 1 0 0 0 0 V -216 0 1.2803321640575294e-04 9.1321015503690144e-05 8.0886304851986559e-04 8.2597023571746430e-04 0 2 0 P 751 22 1.7736451536358298e-02 -9.7427532151740594e-04 3.2879122276151196e-01 3.2927070791449675e-01 0 1 0 0 0 0 P 752 22 2.8609332000911708e-01 2.1768400156830933e-01 1.5906846924926556e+00 1.6308014910537347e+00 0 1 0 0 0 0 V -217 0 6.2931424959365278e-04 3.0047531022833670e-04 2.9604963189529009e-03 3.0428248419687057e-03 0 2 0 P 753 22 5.8170899209270899e-01 2.3538083525002693e-01 2.4177051293440934e+00 2.4978165628286746e+00 0 1 0 0 0 0 P 754 22 3.7262331905745372e-01 2.2027911117407961e-01 2.0717805227639920e+00 2.1165173184335808e+00 0 1 0 0 0 0 V -218 0 0 0 0 0 0 3 0 P 755 22 2.7296384981771588e-01 4.1193242995714828e-02 1.5089012072781871e+00 1.5339455661467860e+00 0 1 0 0 0 0 P 756 -211 1.4881621464025929e-01 -2.0539802718801009e-01 1.2405600104643622e+00 1.2738930644979274e+00 1.3957000000000000e-01 1 0 0 0 0 P 757 211 3.2312072474001546e-01 1.2181065764232569e-02 2.4791994335439189e+00 2.5040896544061981e+00 1.3957000000000000e-01 1 0 0 0 0 V -219 0 -2.4671788581451044e-06 6.4065414239974683e-05 1.3798454148966445e-04 1.5237149485754223e-04 0 2 0 P 758 22 -3.0908596580837319e-02 3.0216712382390964e-01 7.9697772075333473e-01 8.5289729712304263e-01 0 1 0 0 0 0 P 759 22 -9.8144108820454826e-03 7.5529019573525691e-01 1.4805813197252715e+00 1.6621313566485028e+00 0 1 0 0 0 0 V -220 0 4.0567384792548925e-06 3.4942781932908585e-05 9.7011329031475023e-05 1.0324495728616244e-04 0 2 0 P 760 22 1.8068605299296200e-01 1.0776192675902039e+00 2.9492644755356836e+00 3.1451663997767412e+00 0 1 0 0 0 0 P 761 22 -1.4586120029730540e-02 3.5308516807530621e-01 1.0227872924554335e+00 1.0821163229619100e+00 0 1 0 0 0 0 V -221 0 2.0675182460147988e-05 6.3457211929768438e-05 1.0272057962666369e-04 1.2263781362242262e-04 0 2 0 P 762 22 5.9120950754609006e-02 9.1366976056781901e-02 2.0661266069486495e-01 2.3352088277347030e-01 0 1 0 0 0 0 P 763 22 4.1784130995900476e-01 1.3725473240440851e+00 2.1630805681307250e+00 2.5956492562119360e+00 0 1 0 0 0 0 V -222 0 1.5377275143954877e-06 9.6507638240328226e-06 4.8533474374632963e-06 1.1100377598591108e-05 0 2 0 P 764 22 7.7472181555053917e-03 2.5065186328143901e-01 1.8907486681031971e-01 3.1406318029171515e-01 0 1 0 0 0 0 P 765 22 9.3999657982991286e-02 3.8791060129914118e-01 1.3205676148781625e-01 4.2041593518304071e-01 0 1 0 0 0 0 V -223 0 5.4954268885320472e-05 1.8159203576425541e-04 1.7496045487644607e-04 2.5874819032116849e-04 0 2 0 P 766 22 2.2627081669604437e-01 8.2327951744218397e-01 7.0174352480374225e-01 1.1051839760565256e+00 0 1 0 0 0 0 P 767 22 1.7376735730201609e-01 4.9861499363424333e-01 5.7187656532431863e-01 7.7836675950848699e-01 0 1 0 0 0 0 V -224 0 0 0 0 0 0 1 0 P 768 130 -1.3508526782021973e-01 1.6803115319142521e+00 1.1179644133491349e+00 2.0830781867902020e+00 4.9767000000000000e-01 1 0 0 0 0 V -225 0 -1.8082820781383619e-04 7.7006017492616700e-07 -6.3372791706959298e-05 2.0373786720105999e-04 0 2 0 P 769 22 -2.1264881636648886e-02 3.5330874902066163e-02 -3.0983967508055987e-02 5.1579764975292451e-02 0 1 0 0 0 0 P 770 22 -3.3127307314119059e-01 -3.3829585681726032e-02 -9.2565973328243095e-02 3.4562226385753986e-01 0 1 0 0 0 0 V -226 0 -1.2297308265662378e-06 9.4699758739430153e-06 1.6518912502826024e-06 1.0564735430515539e-05 0 2 0 P 771 22 -7.7408455670575693e-02 1.9416267633283169e-01 -5.3166459872710410e-03 2.0909203862076006e-01 0 1 0 0 0 0 P 772 22 3.7945605142379144e-02 1.0973492007251560e-01 5.8326895133226531e-02 1.2993709373702780e-01 0 1 0 0 0 0 V -227 0 -2.3608690580570848e-04 2.4840155444158006e-05 2.3489257883266889e-04 3.3463000834060537e-04 0 2 0 P 773 22 -2.5052439834052270e-01 3.2445645815808749e-02 1.8343834876288742e-01 3.1219356478495913e-01 0 1 0 0 0 0 P 774 22 -1.2539450945612740e+00 1.2584884297481261e-01 1.3134202667403698e+00 1.8202442222231403e+00 0 1 0 0 0 0 V -228 0 -2.6089566168031577e-04 -3.7706303822482873e-05 6.3689652421221289e-05 2.7700979566584223e-04 0 2 0 P 775 22 -1.4059160255266409e-01 3.4741577955301153e-02 2.1745791104954771e-02 1.4644403496875816e-01 0 1 0 0 0 0 P 776 22 -4.8293990691789540e-01 -1.2485832572934877e-01 1.3047025133932491e-01 5.1559969131327865e-01 0 1 0 0 0 0 V -229 0 -2.6501319287119539e-05 2.5691032884143488e-06 7.3250833332978362e-06 2.9366429990093739e-05 0 2 0 P 777 22 -3.0331334702049934e-01 -2.0932356712419369e-02 9.5306405529795538e-02 3.1862275652144439e-01 0 1 0 0 0 0 P 778 22 -5.4741507803314937e-02 5.5643077903106422e-02 3.6615598405568602e-03 7.8142125742633448e-02 0 1 0 0 0 0 V -230 0 -2.8564513768493680e-05 1.6266382842630464e-05 -3.6679709315757982e-06 4.6405721053801357e-05 0 2 0 P 779 22 -2.6786843097393261e-02 -3.7865117055441037e-02 -2.4592819968008901e-02 5.2498655665888391e-02 0 1 0 0 0 0 P 780 22 -9.1665504546179458e-02 1.0531913538723349e-01 9.3823468804970205e-03 1.3993824865063176e-01 0 1 0 0 0 0 V -231 0 -5.4623174923645008e-05 -3.7595214407808302e-05 5.7565815702264965e-05 1.0130316710327741e-04 0 2 0 P 781 22 -7.1958126703669398e-02 2.5472642242451462e-02 6.0038356493111136e-02 9.7115558752998862e-02 0 1 0 0 0 0 P 782 22 -7.4009191419286108e-02 -1.2593682487255700e-01 9.3792462483736821e-02 1.7359282903472953e-01 0 1 0 0 0 0 V -232 0 6.6156749195451250e-05 -2.5745777843756999e-04 9.2375284759031441e-05 2.9670105836229993e-04 0 2 0 P 783 22 4.0549566629202595e-02 -1.4443016568080131e-02 2.9336346243940083e-02 5.2091163284633139e-02 0 1 0 0 0 0 P 784 22 5.4442788479662593e-02 -3.5523235310021578e-01 1.0330236348449674e-01 3.7393237384324013e-01 0 1 0 0 0 0 V -233 0 1.0181494648366103e-04 -3.0191179619094551e-04 1.4538110444009777e-04 3.5423935238176570e-04 0 3 0 P 785 22 1.1764545742433479e-03 -1.1680143638895212e-01 2.1305382893816848e-02 1.1873448921075895e-01 0 1 0 0 0 0 P 786 -11 1.8768868087602619e-01 -4.6968018883035584e-01 2.4818429153344063e-01 5.6340236365554708e-01 5.1000000000000004e-04 1 0 0 0 0 P 787 11 6.9343135541447359e-02 -1.7918319688004694e-01 9.9204755111807819e-02 2.1623351273025873e-01 5.1000000000000004e-04 1 0 0 0 0 V -234 0 0 0 0 0 0 1 0 P 788 310 3.5722879099997173e-01 -1.7740837363087081e+00 7.9114206016612587e-01 2.0368030589181343e+00 4.9767000000000000e-01 2 0 0 -301 0 V -235 0 1.1400149726289859e-04 -2.4931078123903997e-04 2.0209328590582162e-04 3.4244307694182959e-04 0 2 0 P 789 22 1.6471041977504419e-01 -2.5778262260651164e-01 1.7103424549907614e-01 3.5047698360063639e-01 0 1 0 0 0 0 P 790 22 2.6651541022860692e-01 -6.8526857540308006e-01 5.9341049466018381e-01 9.4485951310082783e-01 0 1 0 0 0 0 V -236 0 0 0 0 0 0 1 0 P 791 310 2.4603720430451365e-01 -1.5272919188139014e-01 9.5351025842695036e-01 1.1138751069038904e+00 4.9767000000000000e-01 2 0 0 -302 0 V -237 0 9.6400603553581464e-06 -3.7400595582401066e-05 1.4368233958943263e-05 4.4880339273613988e-05 0 2 0 P 792 22 9.9977700365546998e-02 -2.7020529430595508e-01 8.0295871654573484e-02 2.9908839604056625e-01 0 1 0 0 0 0 P 793 22 -2.6785959324070546e-02 -1.3757109014743554e-02 2.8794322844240220e-02 4.1663637544177935e-02 0 1 0 0 0 0 V -238 0 4.9214316492429608e-05 5.3204795884247146e-05 1.4791678547409143e-05 7.6946287218869109e-05 0 2 0 P 794 22 2.4581610879340962e-01 2.8121587286393135e-01 1.2824843499334984e-01 3.9491212639168188e-01 0 1 0 0 0 0 P 795 22 6.7635806786929029e-02 5.7651887100662380e-02 -3.4038450871205155e-02 9.5168054428457063e-02 0 1 0 0 0 0 V -239 0 0 0 0 0 0 1 0 P 796 310 6.4560896412401081e-01 4.6359861846066353e-01 -2.4178207950374370e-01 9.6843617056833886e-01 4.9767000000000000e-01 2 0 0 -303 0 V -240 0 1.1279258363679956e-05 4.2710296008058427e-06 -1.7918255349085802e-05 2.2014896582157827e-05 0 2 0 P 797 22 1.7312205521361410e-01 5.7123939550538558e-02 -1.5682251056273419e-01 2.4047388691988597e-01 0 1 0 0 0 0 P 798 22 1.8445515149868780e-01 7.8277058032731717e-02 -4.1122544882397422e-01 4.5744657665036964e-01 0 1 0 0 0 0 V -241 0 6.5399807658158475e-04 -4.7660909295107020e-04 -4.0899405822526817e-04 9.1272852559190693e-04 0 2 0 P 799 22 2.5469071716046998e-01 -1.1258865883322625e-01 -1.3219763816046462e-01 3.0825279080777884e-01 0 1 0 0 0 0 P 800 22 5.8978134519063674e-01 -5.0283067965082473e-01 -3.9591409214330936e-01 8.7030379517192058e-01 0 1 0 0 0 0 V -242 0 3.1857498697690236e-05 -1.2310249855162448e-04 3.6412771476850070e-07 1.3049511321972345e-04 0 2 0 P 801 22 9.9050131199567043e-02 -2.2979514999698891e-01 5.5326538858207985e-02 2.5627673588294908e-01 0 1 0 0 0 0 P 802 22 4.7607085467584936e-02 -3.3691192181911422e-01 -5.3650262962662211e-02 3.4446252098962760e-01 0 1 0 0 0 0 V -243 0 0 0 0 0 0 1 0 P 803 130 2.0305387255418510e+00 -1.6467189255291019e+00 -1.1219136836584773e+00 2.8881025740269299e+00 4.9767000000000000e-01 1 0 0 0 0 V -244 0 0 0 0 0 0 1 0 P 804 310 3.0941299257999955e-01 -7.0080502231450581e-01 -8.7935061173103901e-01 1.2679893558426658e+00 4.9767000000000000e-01 2 0 0 -304 0 V -245 0 6.4965936568868685e-06 -3.3199718602483327e-06 -1.1519419767570312e-06 7.7208014427745386e-06 0 2 0 P 805 22 9.7374705017344854e-02 -2.1443819351663635e-02 -6.8644774646092407e-02 1.2105278043818127e-01 0 1 0 0 0 0 P 806 22 2.9261892074100104e-01 -1.7785567998232629e-01 -5.0685340786055071e-04 3.4243062447447803e-01 0 1 0 0 0 0 V -246 0 -2.2469514871277152e-04 -2.8128540886888134e-05 -2.1783126525091215e-04 3.2416015452797986e-04 0 2 0 P 807 22 7.5040267329632955e-03 -4.9708818776737530e-03 -3.2283997862810970e-02 3.3515318913249173e-02 0 1 0 0 0 0 P 808 22 -3.8810395308761791e-01 -4.2674653201050482e-02 -3.3668953800207813e-01 5.1556342910268438e-01 0 1 0 0 0 0 V -247 0 4.4830817241213456e-06 9.0328445827070299e-07 7.0265957922959573e-06 1.5045518236167562e-05 0 2 0 P 809 22 6.7417540520481947e-02 4.7308195042312748e-02 8.6223522757306686e-02 1.1923793844524530e-01 0 1 0 0 0 0 P 810 22 -1.8981171356804521e-02 -3.7548877195126451e-02 -1.0306372746775861e-02 4.3317714204313074e-02 0 1 0 0 0 0 V -248 0 0 0 0 0 0 1 0 P 811 310 -2.3475798388140365e-01 4.7776978845029838e-01 -3.5578977252612387e+00 3.6317608586016510e+00 4.9767000000000000e-01 2 0 0 -305 0 V -249 0 -3.4082685073129327e-04 2.6865934684020671e-04 -2.1215723576991949e-03 2.1662588163728230e-03 0 2 0 P 812 22 -2.4417377576979460e-01 2.5875852985578829e-01 -1.9194596956287622e+00 1.9521532554310552e+00 0 1 0 0 0 0 P 813 22 -5.6067653667102391e-01 3.7567082563816023e-01 -3.0905568899078801e+00 3.1633887901688817e+00 0 1 0 0 0 0 V -250 0 -3.5066053650164268e-04 1.4447471069879404e-04 -1.8955267129949741e-03 1.9340296762540333e-03 0 2 0 P 814 22 -4.6809727571721355e-01 2.0409707477442379e-01 -2.8705134147554303e+00 2.9155819212905398e+00 0 1 0 0 0 0 P 815 22 -3.1929542059090027e-01 1.2031448616244612e-01 -1.3858078250376222e+00 1.4271960163643809e+00 0 1 0 0 0 0 V -251 0 -3.0610493066481829e-05 7.8328567222722323e-05 -7.0785651419358266e-04 7.1384189846980962e-04 0 2 0 P 816 22 -5.1128943322413717e-02 6.1370396501252297e-02 -3.1959967490815711e-01 3.2943048828757066e-01 0 1 0 0 0 0 P 817 22 -5.7865567376407863e-02 2.1753343688811308e-01 -2.2008587261355079e+00 2.2123400173705123e+00 0 1 0 0 0 0 V -252 0 -3.1595202136812678e-05 5.6140706074658872e-05 -6.2242858192481298e-04 6.2581720954536378e-04 0 2 0 P 818 22 -1.5560660365060733e-01 3.1238322669717611e-01 -3.9926092799943222e+00 4.0078330252292442e+00 0 1 0 0 0 0 P 819 22 -3.2178733421688299e-01 5.3588584376449622e-01 -5.4120981334819724e+00 5.4480755255822810e+00 0 1 0 0 0 0 V -253 0 8.2670086277064431e-06 2.7833951190187880e-05 -3.3887453823001315e-04 3.4119691588673190e-04 0 2 0 P 820 22 -9.1812336919902763e-03 1.4428471142650589e-02 -9.0507229751793461e-01 9.0523385904749176e-01 0 1 0 0 0 0 P 821 22 5.0304473648214588e-02 1.2402817082670582e-01 -7.8061832871209613e-01 7.9200915547038275e-01 0 1 0 0 0 0 V -254 0 -2.9932024793535637e-03 2.5486917215391401e-03 -3.7399543740989902e-02 3.7605770106477469e-02 0 2 0 P 822 22 -2.8581195043282608e+00 2.4839794409922482e+00 -3.6355592283186461e+01 3.6552265199650492e+01 0 1 0 0 0 0 P 823 22 -6.8775306140717929e-01 5.3530713125275498e-01 -7.9494679447601255e+00 7.9970993868410662e+00 0 1 0 0 0 0 V -255 0 -6.7191018409440153e-06 7.8367384825347102e-05 -6.6410801488824998e-04 6.6914259421394960e-04 0 2 0 P 824 22 -8.7737849848401814e-02 3.4919304490414788e-01 -2.9680208188315538e+00 2.9897794724566187e+00 0 1 0 0 0 0 P 825 22 4.8184270082439383e-02 1.1213507306700937e-01 -9.4140784617686379e-01 9.4928643271590196e-01 0 1 0 0 0 0 V -256 0 -1.0166947831838920e-05 3.3773949277570250e-04 -2.3686322791022234e-03 2.3946123879619134e-03 0 2 0 P 826 22 1.4865786985915693e-03 4.6900792525798518e-01 -3.1797381757151806e+00 3.2141414887916078e+00 0 1 0 0 0 0 P 827 22 -1.5508779527196656e-02 -3.1993980792308662e-03 -8.7066971319842257e-02 8.8495287362112221e-02 0 1 0 0 0 0 V -257 0 -8.8938464324596629e-05 3.8696037852455615e-04 -3.1589246427167401e-03 3.1839517255756061e-03 0 2 0 P 828 22 -2.4999787180030134e-01 7.9860978746036337e-01 -6.7874761436946081e+00 6.8388675180731191e+00 0 1 0 0 0 0 P 829 22 -1.1273843725585900e-01 7.7961152007972256e-01 -6.0962257977242826e+00 6.1469076009254415e+00 0 1 0 0 0 0 V -258 0 -1.4802412875733451e-04 3.2120210853710468e-04 -3.4890101986592226e-03 3.5069418511523716e-03 0 2 0 P 830 22 -3.5118457102437489e-01 8.7996114299297690e-01 -8.9161133568262390e+00 8.9663113713431990e+00 0 1 0 0 0 0 P 831 22 -6.9171621634980818e-01 1.3830613433528252e+00 -1.5665632294272305e+01 1.5741771348319908e+01 0 1 0 0 0 0 V -259 0 -1.7868539407029648e-05 2.1957302390465356e-05 -2.3838779735576340e-04 2.4006848408915227e-04 0 2 0 P 832 22 -6.2197838045647003e-01 8.6890930820452361e-01 -8.8741517570603534e+00 8.9382565357555652e+00 0 1 0 0 0 0 P 833 22 -8.3849063067751761e-01 9.2575107107398880e-01 -1.0610260636132377e+01 1.0683525277266343e+01 0 1 0 0 0 0 V -260 0 0 0 0 0 0 1 0 P 834 130 -6.5251455008970261e-01 1.1925516747207323e+00 -1.5913052728218860e+01 1.5978763321825994e+01 4.9767000000000000e-01 1 0 0 0 0 V -261 0 1.8873150902798748e+00 7.7750143658049794e+01 -1.4428808303284700e+03 1.4456868319154903e+03 0 2 0 P 835 -211 -1.8859357892682854e-01 4.3023155444858407e-01 -7.0435719255908014e+00 7.0605985570861192e+00 1.3957000000000000e-01 1 0 0 0 0 P 836 211 2.0930465456036404e-01 4.2298533239426150e-01 -8.7903575337873399e+00 8.8041234876933192e+00 1.3957000000000000e-01 1 0 0 0 0 V -262 0 1.3947021024975306e-05 1.0863134085613558e-05 -1.3709870797775638e-03 1.3721813389732671e-03 0 2 0 P 837 22 3.3616722167114178e-02 -4.8125144015729558e-02 -9.5060532242121420e-01 9.5241618660716609e-01 0 1 0 0 0 0 P 838 22 9.6498531578626781e-04 7.5060338608431365e-02 -2.4487639099620542e+00 2.4499142173474806e+00 0 1 0 0 0 0 V -263 0 1.0780920313932128e-05 -1.0323090633636669e-05 -1.3015465353012292e-04 1.3106877641458204e-04 0 2 0 P 839 22 2.1830435080113278e-03 -1.7139312219983723e-02 -4.3819330445397577e-02 4.7102605267807671e-02 0 1 0 0 0 0 P 840 22 3.6166604950234810e-01 -3.3125832497046265e-01 -4.3488161087400723e+00 4.3763838904810459e+00 0 1 0 0 0 0 V -264 0 4.2854331215892163e-05 -2.2088942735991985e-04 -1.5169145503672566e-03 1.5335674026514853e-03 0 2 0 P 841 22 1.1475161950229236e-01 -3.5679017599192719e-01 -2.6721909446520997e+00 2.6983460876143059e+00 0 1 0 0 0 0 P 842 22 3.2812640684185113e-01 -1.9259913038219734e+00 -1.3004360366227537e+01 1.3150304102034083e+01 0 1 0 0 0 0 V -265 0 1.6814293329160212e-05 -8.7550461068270593e-06 -6.8172392169991289e-05 7.1265375345077396e-05 0 2 0 P 843 22 1.0968956376357341e-02 -1.6074597892518031e-02 -2.7427689497955537e-01 2.7496640853205806e-01 0 1 0 0 0 0 P 844 22 2.5667739144739893e-01 -1.2328636540512249e-01 -8.1087675551990968e-01 8.5942069082466377e-01 0 1 0 0 0 0 V -266 0 1.1551216755063298e-05 -4.3161004075825854e-06 -5.7166077369144184e-04 5.7179673483314828e-04 0 2 0 P 845 22 4.7333165389760246e-01 -1.3982624625537882e-01 -2.0141913981453921e+01 2.0147960022543529e+01 0 1 0 0 0 0 P 846 22 3.7145237579643647e-01 -1.7582644836516459e-01 -2.1665793575014817e+01 2.1669690884795351e+01 0 1 0 0 0 0 V -267 0 9.3043479648438978e-05 -1.7801079933336813e-05 -5.5613893995878072e-03 5.5622344149320506e-03 0 2 0 P 847 22 3.9580953748357922e-01 -3.3466911524511089e-02 -2.0095039346034426e+01 2.0098964937100661e+01 0 1 0 0 0 0 P 848 22 2.1291564212917369e-01 -8.2994399044103509e-02 -1.6289646329436707e+01 1.6291249144220551e+01 0 1 0 0 0 0 V -268 0 4.3057210299589143e-04 -3.6093346726380151e-04 -2.6039470569485027e-02 2.6045873277943304e-02 0 2 0 P 849 22 1.8756957728983165e-01 -2.1208705518794599e-01 -1.0605788090201759e+01 1.0609566639574327e+01 0 1 0 0 0 0 P 850 22 2.4777935437414558e-01 -1.5285065973078030e-01 -1.5722568100652190e+01 1.5725263292303884e+01 0 1 0 0 0 0 V -269 0 5.4473263963224242e-05 -1.2666025106433589e-04 -8.5336533319827473e-03 8.5347695329637263e-03 0 2 0 P 851 22 9.0519872288476333e-01 -2.1314399596635889e+00 -1.3994761345912491e+02 1.3996677082055655e+02 0 1 0 0 0 0 P 852 22 2.3433010263342685e-01 -5.1817191658864448e-01 -3.8568290514221495e+01 3.8572483014728633e+01 0 1 0 0 0 0 V -270 0 1.5684118308229876e-05 -4.5494245140606384e-05 -6.0598762786608362e-03 6.0600725804228614e-03 0 2 0 P 853 22 8.9993522781378898e-02 -4.6370871294303867e-01 -5.9912700506580229e+01 5.9914562558661657e+01 0 1 0 0 0 0 P 854 22 1.7578246687485821e-01 -3.0721623089416134e-01 -4.2775227721449660e+01 4.2776692110424591e+01 0 1 0 0 0 0 V -271 0 6.4264702668150537e+00 -7.7649051546743326e+00 -5.4033151038721280e+03 5.4033967179357942e+03 0 2 0 P 855 2112 2.1443340026434654e-01 -1.5625284761175928e-01 -1.8063827215395455e+02 1.8064091052468316e+02 9.3957000000000002e-01 1 0 0 0 0 P 856 111 4.2226077247061802e-02 -1.5386085667400737e-01 -3.5158576475460016e+01 3.5159197595877906e+01 1.3497999999999999e-01 2 0 0 -306 0 V -272 0 -1.3251752657357954e+02 -8.1643709544901299e+01 -7.7107297588689515e+04 7.7107707137734804e+04 0 2 0 P 857 -2112 -6.1757359492483122e-01 -4.5449380058941408e-01 -3.4777952924375683e+02 3.4778164372858140e+02 9.3957000000000002e-01 1 0 0 0 0 P 858 111 -7.4781776804355687e-02 3.7479784445323287e-02 -6.1155881776692887e+01 6.1156087943340694e+01 1.3497999999999999e-01 2 0 0 -307 0 V -273 0 -7.7492383577918346e+01 -4.8501400399366197e+01 -4.4607037677979257e+04 4.4607262792576214e+04 0 2 0 P 859 22 -1.6833817595152048e-01 -1.5278137566466343e-01 -1.1453001020463921e+02 1.1453023582165977e+02 0 1 0 0 0 0 P 860 22 -8.0279222874224301e-02 -1.9146319638195151e-02 -1.8187912386425317e+01 1.8188099634416581e+01 0 1 0 0 0 0 V -274 0 -5.1883992298091892e-05 1.1642228163605630e-05 -1.2766117823086330e-02 1.2766238519452277e-02 0 2 0 P 861 22 -3.7353977013517270e-01 2.9641474255999962e-02 -8.5631810076762349e+01 8.5632629923409269e+01 0 1 0 0 0 0 P 862 22 -6.5737303217846446e-02 6.8927731552876403e-02 -2.2452834666572414e+01 2.2453036698621581e+01 0 1 0 0 0 0 V -275 0 -1.1920018931715163e-04 1.5784682100284478e-05 -2.8468920712647720e-02 2.8469266822069052e-02 0 2 0 P 863 22 -1.3739525262877536e-01 -1.5612861198574154e-02 -4.2018804897122976e+01 4.2019032428167186e+01 0 1 0 0 0 0 P 864 22 -8.4684010325402334e-02 4.5020956830623474e-02 -1.1021017985574492e+01 1.1021435283415459e+01 0 1 0 0 0 0 V -276 0 -5.9085767758302491e-05 -1.1916433709519678e-05 -1.7323824025977080e-02 1.7323933129605510e-02 0 2 0 P 865 22 -3.0781796945104134e-01 1.2091668385156247e-04 -7.9160671740163636e+01 7.9161270216380956e+01 0 1 0 0 0 0 P 866 22 -3.4983254578841871e-01 -1.3275605144151550e-01 -1.1366108938522451e+02 1.1366170528025384e+02 0 1 0 0 0 0 V -277 0 -1.5989814324876999e-05 -2.5565706243426140e-05 -2.0374488380101021e-03 2.0376843504024016e-03 0 2 0 P 867 22 -6.8388798473445520e-02 -7.0058844393298098e-02 -1.0231171894658548e+01 1.0231640318516156e+01 0 1 0 0 0 0 P 868 22 -2.3543253990251659e-01 -4.1571334342503485e-01 -2.8482250303978507e+01 2.8486256834537429e+01 0 1 0 0 0 0 V -278 0 3.1728354452903333e-05 -7.6227271495126877e-05 -2.1197803423741977e-02 2.1197972053311340e-02 0 2 0 P 869 22 2.3625020922498387e-02 -1.1858128734633575e-02 -3.1487189993181333e+00 3.1488299562691000e+00 0 1 0 0 0 0 P 870 22 2.1145514339560648e-01 -5.5292122454681203e-01 -1.5390900422528352e+02 1.5391014267024951e+02 0 1 0 0 0 0 V -279 0 0 0 0 0 0 2 0 P 871 211 -2.2682609437294937e-01 1.3669907563566838e-01 -3.4209413114697526e+01 3.4210722911848954e+01 1.3957000000000000e-01 1 0 0 0 0 P 872 -211 1.2883878135440655e-01 -7.7418927823972167e-02 -1.7608174054835555e+02 1.7608186001813266e+02 1.3957000000000000e-01 1 0 0 0 0 V -280 0 6.7337505139416272e-06 -1.0316916059882883e-05 -2.6595404282509800e-02 2.6595407893288313e-02 0 2 0 P 873 22 5.8620549340157688e-02 -1.8170113597611967e-01 -3.0075020770068483e+02 3.0075026830191973e+02 0 1 0 0 0 0 P 874 22 8.4595608827847196e-02 -3.7723251544487676e-02 -2.6489172072835169e+02 2.6489173692263000e+02 0 1 0 0 0 0 V -281 0 -6.4429183937020525e-05 3.7600633272765823e-05 3.1872420448974192e-04 3.2812583868084284e-04 0 2 0 P 875 22 -3.5134981217224825e-01 1.4971859696988479e-01 1.5073768992703573e+00 1.5550072235349974e+00 0 1 0 0 0 0 P 876 22 -3.1306105523557989e-02 7.3597980266263852e-02 3.8558053877674675e-01 3.9378812428219800e-01 0 1 0 0 0 0 V -282 0 1.1207701133734363e-06 -2.0238896986174594e-06 5.0824761902214233e-04 5.0838525122950669e-04 0 2 0 P 877 22 -5.0071123477724307e-02 -3.5032085498748908e-02 4.1231987469852216e+00 4.1236515700967287e+00 0 1 0 0 0 0 P 878 22 6.3112192005047307e-02 1.1482488720181786e-02 1.7906741779149959e+00 1.7918228170716093e+00 0 1 0 0 0 0 V -283 0 -8.2859234777522517e-06 -1.1924697626291465e-05 6.2411976712909128e-05 6.4186273708971813e-05 0 2 0 P 879 22 -5.4529905096834183e-03 -5.4436188084502866e-02 3.9659826274296861e-01 4.0035386308790732e-01 0 1 0 0 0 0 P 880 22 -2.9596948875834839e-01 -3.7935636777113524e-01 1.8738031967123421e+00 1.9345923632780577e+00 0 1 0 0 0 0 V -284 0 -1.5678020198773831e-05 -6.6312200241192554e-06 3.9403757872139055e-04 3.9489450950131415e-04 0 2 0 P 881 22 -2.3570358772930459e-02 -5.5643209794369673e-02 4.2090544495396509e-01 4.2522126263958182e-01 0 1 0 0 0 0 P 882 22 -8.4102368423418630e-02 1.0101646791931288e-02 2.2852462362446859e+00 2.2868156051402222e+00 0 1 0 0 0 0 V -285 0 -1.6813379206574424e-04 3.2883807097044721e-04 7.2681839319340569e-03 7.2779389754447201e-03 0 2 0 P 883 22 -6.4921929949543780e-02 1.1057861743330907e-01 3.7038362870560779e+00 3.7060552787209193e+00 0 1 0 0 0 0 P 884 22 -2.4124330880746189e-01 4.8822299926782625e-01 9.5312501373332115e+00 9.5467947087738718e+00 0 1 0 0 0 0 V -286 0 0 0 0 0 0 1 0 P 885 130 4.9095279289039834e-01 2.1528737306382301e-01 5.1914473037583171e+01 5.1919626053128482e+01 4.9767000000000000e-01 1 0 0 0 0 V -287 0 -3.8038450459167854e-06 2.7425515157775186e-07 2.5150303532066168e-02 2.5150475437002405e-02 0 2 0 P 886 22 1.0529793067655197e-02 6.4706887245832984e-02 1.4188459323642903e+01 1.4188610778947609e+01 0 1 0 0 0 0 P 887 22 -1.6055988861859837e-02 -6.4308451545405376e-02 2.2349701385891599e+01 2.2349799672709448e+01 0 1 0 0 0 0 V -288 0 0 0 0 0 0 1 0 P 888 310 -2.0545022087933604e-02 1.3532298342128193e-01 3.2946456778369729e+01 3.2950499602975057e+01 4.9767000000000000e-01 2 0 0 -308 0 V -289 0 -4.6486154383588651e-05 1.4401410670670431e-06 2.3833743496114428e-03 2.3838490366838785e-03 0 2 0 P 889 22 -1.6865108008256671e-01 -1.3645704997106036e-02 6.0859581203726316e+00 6.0883097518939895e+00 0 1 0 0 0 0 P 890 22 -4.5912433915489964e-01 3.3094187542659019e-02 2.6100482151300390e+01 2.6104540963487629e+01 0 1 0 0 0 0 V -290 0 -7.6733232239886483e-06 1.3302741171269238e-05 6.7587778130431429e-03 6.7588333578104415e-03 0 2 0 P 891 22 -7.8945623805223158e-02 1.9993694539028198e-03 1.9598744442085753e+01 1.9598903543698135e+01 0 1 0 0 0 0 P 892 22 3.3304784573630841e-02 7.7125183678342715e-02 2.0602389090616789e+01 2.0602560368648327e+01 0 1 0 0 0 0 V -291 0 4.4979176954494166e-05 -8.2832313108760350e-05 7.2290611276326121e-03 7.2299537152378385e-03 0 2 0 P 893 22 1.0099680549739821e-01 -1.6055518792352039e-01 1.5194665281581971e+01 1.5195849148448479e+01 0 1 0 0 0 0 P 894 22 -5.2596615726036256e-03 -1.5751485934474459e-02 1.9222510810867460e-01 1.9294109343629703e-01 0 1 0 0 0 0 V -292 0 -3.0017737324045102e-05 6.8963716225881009e-05 1.2601478936352042e-02 1.2601734789507995e-02 0 2 0 P 895 22 -3.4861181404083038e-03 1.7136340832012836e-01 2.4550627991649026e+01 2.4551226290250177e+01 0 1 0 0 0 0 P 896 22 -1.4055514809083244e-01 1.5956163449549843e-01 3.5918053001321127e+01 3.5918682423922114e+01 0 1 0 0 0 0 V -293 0 -6.0089343615353204e-06 -9.1510806760094115e-07 6.8771940390648968e-04 6.8775353053222605e-04 0 2 0 P 897 22 -3.4333016589369889e-03 1.4269097782557709e-02 3.5450228848659221e-01 3.5480595718510782e-01 0 1 0 0 0 0 P 898 22 -2.5311187828417375e-01 -5.3338681463297316e-02 2.9006959762911155e+01 2.9008113094874265e+01 0 1 0 0 0 0 V -294 0 3.0172165798551441e+02 1.2679839093659461e+03 -4.0018577847538872e+03 4.2102779230643928e+03 0 2 0 P 899 -2112 2.2433504297897615e+00 9.2990747662889905e+00 -2.8954924633877429e+01 3.0508619519707747e+01 9.3957000000000002e-01 1 0 0 0 0 P 900 211 9.5576111367289240e-01 4.1450816207562351e+00 -1.3475739843860779e+01 1.4131886819298311e+01 1.3957000000000000e-01 1 0 0 0 0 V -295 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 2 0 P 901 311 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 2 0 0 -309 0 P 902 211 9.5907365410764833e-01 3.5533099932890289e+00 -1.1009113140839961e+01 1.1608871009496410e+01 1.3957000000000000e-01 1 0 0 0 0 V -296 0 -6.3542480825888759e-02 8.6496429611121028e-02 6.9241249496818302e-01 7.0240117244065481e-01 0 2 0 P 903 22 -1.6332316298713009e-01 1.3223849371523858e-01 7.8182884949936748e-01 8.0957879461958515e-01 0 1 0 0 0 0 P 904 22 -1.7295487994165946e-03 1.1054671373271617e-01 3.1401422118288380e-01 3.3290914430403634e-01 0 1 0 0 0 0 V -297 0 -6.3635987780062450e-02 8.6619067369276395e-02 6.9361176536973812e-01 7.0360982973812103e-01 0 2 0 P 905 22 -1.7793407499752598e-02 7.6165807755422407e-02 7.7855022268054364e-01 7.8246935074634849e-01 0 1 0 0 0 0 P 906 22 -4.6098202366995045e-01 5.5744386205430896e-01 5.1416257317451430e+00 5.1922599367551543e+00 0 1 0 0 0 0 V -298 0 -1.4533882853552200e-05 -5.1223800179794811e-06 9.6027656351618218e-05 9.9271555483239679e-05 0 2 0 P 907 22 -1.2312509430800810e-01 -1.7818593130385213e-03 5.5677807040586080e-01 5.7023221897385012e-01 0 1 0 0 0 0 P 908 22 2.4549034226604937e-02 -3.2960683027511019e-02 9.4529506335744695e-02 1.0307710354476726e-01 0 1 0 0 0 0 V -299 0 -7.0722287233100335e-06 5.3022626638857538e-05 1.1142256641670921e-03 1.1221963656161281e-03 0 2 0 P 909 22 5.8390923454788482e-02 5.3573450783977454e-02 5.7440019651630847e-01 5.7984066805354395e-01 0 1 0 0 0 0 P 910 22 -6.6194532996206687e-02 4.9325579069274070e-03 6.5505410485954152e-01 6.5840863194480259e-01 0 1 0 0 0 0 V -300 0 -4.4576067352408903e-05 9.0288306790825817e-05 1.3229497916552486e-03 1.3285196497717468e-03 0 2 0 P 911 22 -4.4869857889043414e-02 2.5558475405449053e-02 1.3649296386073730e+00 1.3659060941956764e+00 0 1 0 0 0 0 P 912 22 -4.3562927092325260e-02 1.5356110366467421e-01 1.2596207404487278e+00 1.2696941170786631e+00 0 1 0 0 0 0 V -301 0 4.4216848208305670e+00 -2.1959145862124011e+01 9.7925501154733610e+00 2.5211017128348697e+01 0 2 0 P 913 211 2.0940276717338838e-01 -1.5453334033939878e+00 7.1620579293458486e-01 1.7217245335065001e+00 1.3957000000000000e-01 1 0 0 0 0 P 914 -211 1.4782602382658336e-01 -2.2875033291472027e-01 7.4936267231541009e-02 3.1507852541163428e-01 1.3957000000000000e-01 1 0 0 0 0 V -302 0 8.2642611624942131e+00 -5.1300937694053594e+00 3.2027911465799008e+01 3.7414482951373842e+01 0 2 0 P 915 -211 3.3809492791803003e-01 -1.7785263753722091e-01 6.7266449280062446e-01 7.8606427583090521e-01 1.3957000000000000e-01 1 0 0 0 0 P 916 211 -9.2057723613516385e-02 2.5123445655830780e-02 2.8084576562632596e-01 3.2781083107298525e-01 1.3957000000000000e-01 1 0 0 0 0 V -303 0 3.6427544455342655e+00 2.6157876085759240e+00 -1.3642201299943590e+00 5.4642598873152712e+00 0 2 0 P 917 211 5.3899441789760905e-01 1.6646556459765430e-01 -2.2405964135415515e-01 6.2282282754034546e-01 1.3957000000000000e-01 1 0 0 0 0 P 918 -211 1.0661454622640182e-01 2.9713305386300926e-01 -1.7722438149588546e-02 3.4561334302799351e-01 1.3957000000000000e-01 1 0 0 0 0 V -304 0 6.6673336398945082e+00 -1.5101178723373868e+01 -1.8948538217380435e+01 2.7323054590385826e+01 0 2 0 P 919 -211 2.6070712297237070e-01 -5.5080873379264950e-01 -8.5031250318031415e-01 1.0554002099467124e+00 1.3957000000000000e-01 1 0 0 0 0 P 920 211 4.8705869607628884e-02 -1.4999628852185634e-01 -2.9038108550724868e-02 2.1258914589595349e-01 1.3957000000000000e-01 1 0 0 0 0 V -305 0 -3.0953682088713720e+01 6.2995660035799247e+01 -4.6912157478541900e+02 4.7886069381214571e+02 0 2 0 P 921 -211 2.9048817697976771e-02 3.3314350502044077e-01 -1.2970331913412130e+00 1.3467008996387158e+00 1.3957000000000000e-01 1 0 0 0 0 P 922 211 -2.6380680157938041e-01 1.4462628342985762e-01 -2.2608645339200257e+00 2.2850599589629352e+00 1.3957000000000000e-01 1 0 0 0 0 V -306 0 6.4264747537197922e+00 -7.7649215037896635e+00 -5.4033188397906333e+03 5.4034004539202988e+03 0 2 0 P 923 22 4.5821044601333891e-02 -1.7296783165094021e-01 -3.3887806926761776e+01 3.3888279326994429e+01 0 1 0 0 0 0 P 924 22 -3.5949673542720862e-03 1.9106974976932853e-02 -1.2707695486982380e+00 1.2709182688834759e+00 0 1 0 0 0 0 V -307 0 -1.3251754549370838e+02 -8.1643700062345786e+01 -7.7107313061405075e+04 7.7107722610502533e+04 0 2 0 P 925 22 -5.1199629974816488e-02 1.4148846571079097e-02 -7.1989735928065892e+00 7.1991695619630649e+00 0 1 0 0 0 0 P 926 22 -2.3582146829539196e-02 2.3330937874244190e-02 -5.3956908183886291e+01 5.3956918381377626e+01 0 1 0 0 0 0 V -308 0 -1.5487673078074202e-01 1.0201196758067184e+00 2.4836378830859363e+02 2.4839426476441406e+02 0 2 0 P 927 -211 -9.0674855235478663e-02 -1.1538687304506388e-01 1.7884263157970235e+01 1.7885409823324558e+01 1.3957000000000000e-01 1 0 0 0 0 P 928 211 7.0129833147545048e-02 2.5070985646634580e-01 1.5062193620399494e+01 1.5065089779650497e+01 1.3957000000000000e-01 1 0 0 0 0 V -309 0 1.4093767723766790e-01 6.0129014232518174e-01 -1.9127429799834261e+00 2.0107608410113640e+00 0 1 0 P 929 130 1.5144574134495588e+00 7.2590137012971407e+00 -2.3983943019256262e+01 2.5109043377886842e+01 4.9767000000000000e-01 1 0 0 0 0 E 18 40 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 219 1 2 0 5 2.3000000000000001e-01 1.4000000000000000e-02 3.5400000000000000e+00 1.3400000000000001e+00 1.2000000000000000e-01 N 5 "0" "3" "4" "p 2" "p1" U GEV MM V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 2 -3.1410233325201048e-01 4.1184766785753961e+00 7.1390134753684538e+02 7.1391329622395415e+02 0 3 0 0 -3 0 P 54 2101 3.1410233325201048e-01 -4.1184766785753961e+00 2.8196940829706500e+03 2.8196971677244655e+03 5.7933000000000001e-01 2 0 0 -10 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 21 -7.6780376358711888e-01 -1.2934196904331927e+00 -1.5345071570435563e+01 1.5418614678912338e+01 0 3 0 0 -4 0 P 58 1 4.4388699579991542e-01 2.7387929144970635e-01 -6.2316178603176073e+00 6.2621088052152736e+00 3.3000000000000002e-01 2 0 0 -12 0 P 60 2203 3.2391676778720346e-01 1.0195403989834864e+00 -2.6457158393169570e+03 2.6457161680246991e+03 7.7132999999999996e-01 2 0 0 -14 0 V -3 0 0 0 0 0 0 1 0 P 5 2 -3.1020025913426502e-01 4.0673130941294575e+00 7.0503259466256543e+02 7.0504439491186349e+02 0 3 0 0 -5 0 V -4 0 0 0 0 0 0 6 0 P 6 -1 1.6285067613798643e+00 -1.9071492713409388e+00 -1.1991323138172993e+01 1.2250758475258626e+01 0 3 0 0 -5 0 P 13 1 -5.3412244936010811e-01 -1.4542908888535993e+00 2.1666373129408201e+00 2.6839273511293951e+00 3.3000000000000002e-01 2 0 0 -10 0 P 55 -1 4.5991111564601900e-01 -1.0793343291424645e-01 3.7323134613524288e-02 5.7746071434583257e-01 3.3000000000000002e-01 2 0 0 -12 0 P 56 21 -4.2425764127993371e-01 6.3379673462519126e-01 8.4509759231255621e-01 1.1383684761703687e+00 0 2 0 0 -12 0 P 57 21 -1.3518050980022980e+00 9.2098641435326034e-01 4.8286364260132686e+00 5.0981685665570602e+00 0 2 0 0 -12 0 P 59 1 -5.4993852608840832e-01 6.7233433814307830e-01 -2.3626900238629132e+00 2.5388324075416864e+00 3.3000000000000002e-01 2 0 0 -14 0 V -5 0 0 0 0 0 0 2 0 P 7 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033562e+01 0 3 0 0 -6 0 P 8 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 2.3785858145687346e+01 3.4509766209647083e+01 4.2017440763286523e+01 5.9347757665033583e+01 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 24 -2.2467551643441745e+01 -3.2349602386858564e+01 6.5102383076110573e+02 6.5794739572208834e+02 8.6668677543706394e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 -15 1.0850533131842932e+01 2.2987430442201006e+01 2.9604459103757250e+02 2.9713921592274522e+02 1.7769999999999999e+00 2 0 0 -9 0 P 12 16 -3.3318084775284674e+01 -5.5337032829059574e+01 3.5497923972353345e+02 3.6080817979934341e+02 0 1 0 0 0 0 V -9 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 99 -16 3.7779982345953385e+00 8.8172237174551213e+00 1.0425857679604805e+02 1.0469893762728306e+02 0 1 0 0 0 0 P 100 213 7.0725348972475919e+00 1.4170206724745883e+01 1.9178601424152444e+02 1.9244027829546215e+02 7.5494588540254526e-01 2 0 0 -30 0 V -10 0 0 0 0 0 40 1 0 P 14 21 1.3929204664533565e+00 2.8407328198885767e-01 -3.9781910974353806e+01 3.9807302920780963e+01 0 2 0 0 -10 0 P 15 21 2.9568382149066377e+00 1.0292741166592101e+00 -7.2809186542315942e+01 7.2876470430380465e+01 0 2 0 0 -10 0 P 16 21 1.2650634913664724e+00 1.3778845565554025e+00 -4.8035446572798911e+01 4.8071853292093920e+01 0 2 0 0 -10 0 P 17 21 1.9942637464441160e+00 -1.5967219838243523e+00 -4.6774523100972125e+01 4.6844237855977383e+01 0 2 0 0 -10 0 P 18 21 2.8124816225447402e+00 -7.9134419118784982e-01 -3.4910351676410329e+01 3.5032398328928664e+01 0 2 0 0 -10 0 P 19 21 2.5183687095674840e+00 3.1396150922964710e+00 -8.5129580891689933e+00 9.4164653301040815e+00 0 2 0 0 -10 0 P 20 21 -4.8604162704783915e-01 4.4805287193126347e-01 -1.5205429797645378e+00 1.6580225549070144e+00 0 2 0 0 -10 0 P 21 21 -1.7909508627676911e+00 1.0886553103426566e-01 -2.6329276379508761e+00 3.1861677048424948e+00 0 2 0 0 -10 0 P 22 21 -1.5527611081126074e+00 -3.5633050659470139e-01 -2.0423671050618739e+00 2.5902320128969043e+00 0 2 0 0 -10 0 P 23 21 -8.1858222642740464e-01 -9.3508705088232957e-01 -2.7624164052919555e+00 3.0290937671813314e+00 0 2 0 0 -10 0 P 24 21 -4.3510641327334225e+00 -5.1953278002191912e+00 -1.6233808380677498e+01 1.7591467379938621e+01 0 2 0 0 -10 0 P 25 21 -2.5183687095674840e+00 -3.1396150922964710e+00 -2.2406827729750205e+00 4.6065196378840501e+00 0 2 0 0 -10 0 P 26 21 -3.9998383868616751e+00 -2.3334229478203432e+00 3.1757234065285198e+00 5.6150502160888900e+00 0 2 0 0 -10 0 P 27 21 -2.8360382924746732e+00 7.3613381622880194e+00 4.6561222236585903e-01 7.9024810963112770e+00 0 2 0 0 -10 0 P 28 21 -3.7287934837490419e-02 1.3170726275440601e+00 3.0109250586432484e-01 1.3515647943764730e+00 0 2 0 0 -10 0 P 29 21 -4.9995236867785348e-01 2.0507226444561018e+00 1.3306012526188160e-01 2.1149753502975703e+00 0 2 0 0 -10 0 P 30 21 -1.5127652223692316e+00 3.3862903404124922e+00 -2.7622519106447081e+00 4.6244412100751289e+00 0 2 0 0 -10 0 P 31 21 -1.0031830177760117e+00 1.8935131419854179e+00 -2.3617684265267416e+00 3.1889995745632009e+00 0 2 0 0 -10 0 P 32 21 1.3299732528289634e+00 3.2515719337466917e+00 -6.4332977281482917e-01 3.5714733780555656e+00 0 2 0 0 -10 0 P 33 21 3.9998383868616751e+00 2.3334229478203432e+00 9.0305395860629323e-01 4.7179525460289744e+00 0 2 0 0 -10 0 P 34 21 2.5993650469852851e+00 4.8539935980158577e-01 1.1857519188066898e+00 2.8979852999865874e+00 0 2 0 0 -10 0 P 35 21 1.5455237168893123e+00 9.4820344049031013e-01 3.2730835552882112e+00 3.7417655303243058e+00 0 2 0 0 -10 0 P 36 21 4.3510641327334225e+00 5.1953278002191912e+00 2.0066857517307266e+01 2.1180225698957997e+01 0 2 0 0 -10 0 P 37 21 3.7287934837490419e-02 -1.3170726275440601e+00 2.4420841180840294e-01 1.3400404638324328e+00 0 2 0 0 -10 0 P 38 21 8.8522632601036022e-01 -3.3748367869032077e+00 2.5292441676367368e+00 4.3093183969186377e+00 0 2 0 0 -10 0 P 39 21 1.5127652223692316e+00 -3.3862903404124922e+00 1.0104000223774685e+01 1.0763189183955639e+01 0 2 0 0 -10 0 P 40 21 4.1823331179364909e-01 -2.1216008959167789e+00 8.4439069477434519e+00 8.7164025840250687e+00 0 2 0 0 -10 0 P 41 21 1.0885105597808160e+00 -8.9890075088024568e-01 9.3956793709183373e+00 9.5011403862793138e+00 0 2 0 0 -10 0 P 42 21 1.0031830177760117e+00 -1.8935131419854179e+00 2.3484295314524928e+01 2.3581855198559829e+01 0 2 0 0 -10 0 P 43 21 4.9995236867785348e-01 -2.0507226444561018e+00 2.3541942986559114e+01 2.3636380757591283e+01 0 2 0 0 -10 0 P 44 21 -1.9756779591267767e-01 -2.6145170257635817e+00 5.6547783834784617e+01 5.6608538127543248e+01 0 2 0 0 -10 0 P 45 21 -2.4698490047492405e+00 -2.1129646240121569e+00 7.3367288852546594e+01 7.3439252768404415e+01 0 2 0 0 -10 0 P 46 21 -7.1751238809425899e-01 -5.2235835518124177e-02 2.1769629426330660e+01 2.1781513215783306e+01 0 2 0 0 -10 0 P 47 21 -1.0885105597808160e+00 8.9890075088024568e-01 8.7800519323714141e+01 8.7811867485622855e+01 0 2 0 0 -10 0 P 48 21 2.4698490047492405e+00 2.1129646240121569e+00 1.1214366175799709e+02 1.1219075561783443e+02 0 2 0 0 -10 0 P 49 21 5.7548395374757400e-01 3.7837025068570346e-01 3.0029956120090755e+01 3.0037852959261272e+01 0 2 0 0 -10 0 P 50 21 2.0173726863664050e+00 -5.9209092629134409e-02 8.5980073616271000e+01 8.6003757809363933e+01 0 2 0 0 -10 0 P 51 21 2.8360382924746732e+00 -7.3613381622880194e+00 5.7465038669001149e+02 5.7470453220391062e+02 0 2 0 0 -10 0 P 52 21 1.9756779591267767e-01 2.6145170257635817e+00 8.9980556439700217e+02 8.9980938450991914e+02 0 2 0 0 -10 0 P 53 21 -6.3314715763410501e-01 -4.9505380802813853e-01 1.3344525639164242e+03 1.3344528059458357e+03 0 2 0 0 -10 0 P 101 92 1.3573730350144873e+01 -7.0434923760203176e+00 5.9216311885040304e+03 6.5266868286012177e+03 2.7443926776306075e+03 2 0 0 -11 0 V -11 0 0 0 0 0 0 91 0 P 102 223 -2.0748164925503010e-01 -5.8626181783009357e-01 9.5456731384514981e-01 1.3810122684773649e+00 7.8054120659989479e-01 2 0 0 -31 0 P 103 -213 -4.9257000459653066e-01 -1.2748800340129449e-01 -6.1113728432809510e-02 9.6611792377233841e-01 8.1900583294121942e-01 2 0 0 -32 0 P 104 223 3.3086974401874941e-01 -7.1401668620527645e-02 -3.9660042157565983e-01 9.3898572672508673e-01 7.8091568995034399e-01 2 0 0 -33 0 P 105 111 1.1391885908489846e-01 -6.4826447391926029e-02 -1.2379388613706153e-01 2.2522100564019076e-01 1.3497999999999999e-01 2 0 0 -34 0 P 106 213 2.9852534732093487e-02 -5.0798993676476556e-01 -2.7217211611674497e+00 2.9457142743137661e+00 1.0052470129600175e+00 2 0 0 -35 0 P 107 -211 -1.1388382351648388e-01 2.1432779589139200e-01 -2.8767179819663075e-01 4.0142343943531583e-01 1.3957000000000000e-01 1 0 0 0 0 P 108 111 -1.9599035438555143e-01 -7.1282012524033794e-02 1.0610699831870526e-01 2.7013263374471486e-01 1.3497999999999999e-01 2 0 0 -36 0 P 109 223 8.2316738601997497e-01 -2.2080300031358368e-03 -2.6921217906279531e+00 2.9196354496806687e+00 7.7404263619954250e-01 2 0 0 -37 0 P 110 2212 7.4955613574521962e-01 6.4919700042379916e-02 -2.2646869845526815e+01 2.2678781126004473e+01 9.3827000000000005e-01 1 0 0 0 0 P 111 -2112 4.1350142857250616e-01 7.3610295881520099e-02 -2.0186093444576702e+01 2.0212312144956904e+01 9.3957000000000002e-01 1 0 0 0 0 P 112 -211 1.3917633448255307e+00 1.0962910634503154e+00 -3.7727789733950814e+01 3.7769623473075590e+01 1.3957000000000000e-01 1 0 0 0 0 P 113 113 1.6066471334474972e+00 -6.7439777317844563e-02 -5.9877604437566710e+01 5.9907691672478400e+01 1.0090318171599266e+00 2 0 0 -38 0 P 114 223 6.2132283911471697e-01 1.0830526508889199e-01 -1.7737943734308050e+01 1.7765503279164623e+01 7.6202804389301848e-01 2 0 0 -39 0 P 115 2212 2.1451243362106545e+00 2.8214099617659722e-04 -3.4495106316809157e+01 3.4574474238927657e+01 9.3827000000000005e-01 1 0 0 0 0 P 116 -2212 1.5621157128965870e+00 -4.6964766713982103e-01 -2.3072626809080184e+01 2.3149238278952364e+01 9.3827000000000005e-01 1 0 0 0 0 P 117 213 7.9679418597883689e-02 -4.1196652321288030e-01 -7.5954324935795370e+00 7.6461235174999853e+00 7.7236316221474233e-01 2 0 0 -40 0 P 118 -211 5.8385464407250764e-01 7.5976102923402927e-02 -6.1976821347634061e+00 6.2271504110697329e+00 1.3957000000000000e-01 1 0 0 0 0 P 119 211 1.1227002128604000e+00 6.7572817127988472e-01 -8.4617806861184519e+00 8.5637769993318624e+00 1.3957000000000000e-01 1 0 0 0 0 P 120 223 3.3063977614282025e-01 4.1163687917442521e-01 -1.1149629123163751e+00 1.4658424435107005e+00 7.9169703264075575e-01 2 0 0 -41 0 P 121 -211 9.1955776670667111e-01 1.7587314188637599e+00 -3.8793537358085524e+00 4.3597692464671640e+00 1.3957000000000000e-01 1 0 0 0 0 P 122 223 -1.0617299367722848e+00 1.1318728789250672e-01 -2.6333877711447315e+00 2.9473095837641861e+00 7.8218975226901910e-01 2 0 0 -42 0 P 123 211 -3.2954695847980436e-01 2.8756788992051779e-01 -6.0211144176106335e-01 7.5717531811081451e-01 1.3957000000000000e-01 1 0 0 0 0 P 124 223 -1.0267775286850447e+00 -6.3605273017002473e-01 -3.1919891705004231e+00 3.5039545824899605e+00 7.9376802819911751e-01 2 0 0 -43 0 P 125 2114 -1.2592359502665480e+00 -1.5362654268390121e+00 -4.5371030949712834e+00 5.0952900236058127e+00 1.1961978473958392e+00 2 0 0 -44 0 P 126 -213 -1.4238617093304717e+00 -7.2563517196796889e-01 -4.1561726629699347e+00 4.5211526483207001e+00 7.8302074998325488e-01 2 0 0 -45 0 P 127 -1114 -3.2660167272524698e+00 -3.0182597803527762e+00 -8.0627747388887823e+00 9.2833433326579851e+00 1.1812576253952995e+00 2 0 0 -46 0 P 128 -213 -2.5131127353271937e-01 -1.2464200136185575e+00 -1.8013930339428830e+00 2.3056037788013777e+00 6.7384843661741511e-01 2 0 0 -47 0 P 129 211 -3.5890312335702512e-01 -9.0730774541786768e-02 -4.0876101696176864e-01 5.6886631056163073e-01 1.3957000000000000e-01 1 0 0 0 0 P 130 -211 -8.4695249730381494e-01 -7.5548711333791696e-01 -9.7897652699873472e-01 1.5053119731216289e+00 1.3957000000000000e-01 1 0 0 0 0 P 131 213 -3.8027283316423138e-01 -2.0152358516946922e-01 3.1706069617718452e-01 1.0499592183931830e+00 9.0369668152879434e-01 2 0 0 -48 0 P 132 223 -1.7520779495751202e+00 -1.4734533106028989e+00 -6.8994641425270486e-01 2.5171249411851924e+00 7.8679737867026334e-01 2 0 0 -49 0 P 133 313 -7.0050574067036986e-01 -9.5920825624524553e-01 4.9194533517634220e-01 1.5447374357767283e+00 8.5639638084657499e-01 2 0 0 -50 0 P 134 333 -1.1135052236137697e+00 -2.4250958763589278e-01 5.1647240051368815e-01 1.6213477009634201e+00 1.0311740123841930e+00 2 0 0 -51 0 P 135 -323 -9.1455740622984327e-01 -2.2264069624092109e-01 4.9963951575127846e-01 1.4086411127513092e+00 9.2121984885290742e-01 2 0 0 -52 0 P 136 323 -1.1631054682627238e+00 1.4982581655588041e+00 5.3966262060463532e-01 2.1573167774586151e+00 8.7475029194638099e-01 2 0 0 -53 0 P 137 -311 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521394e-01 4.9767000000000000e-01 2 0 0 -54 0 P 138 111 -4.2683779844818148e-01 1.0831703099617001e+00 -1.4210131280919769e-01 1.1806188250526557e+00 1.3497999999999999e-01 2 0 0 -55 0 P 139 221 -7.8495502539906492e-01 1.3662062215293831e+00 2.1685209199656871e-01 1.6820820919170760e+00 5.4744999999999999e-01 2 0 0 -56 0 P 140 -211 -7.8445825130098693e-02 4.5841878119012303e-01 -4.6933439479007230e-02 4.8783609857154864e-01 1.3957000000000000e-01 1 0 0 0 0 P 141 221 -6.5523912092518888e-01 3.2243594649372209e+00 4.2669822350934122e-01 3.3626782690538626e+00 5.4744999999999999e-01 2 0 0 -57 0 P 142 113 -1.3072427183672559e+00 2.5331067891371437e+00 -1.0519254502916864e+00 3.1567755117109670e+00 8.5625402099480863e-01 2 0 0 -58 0 P 143 323 -5.7057868564338654e-01 1.2046694907051487e+00 -9.0184918985162799e-01 1.7650583916806721e+00 7.2478310304530957e-01 2 0 0 -59 0 P 144 -323 -5.9007929479415289e-01 2.5822897905475206e+00 -1.5740710791246635e+00 3.2148786163000507e+00 9.1724076386514519e-01 2 0 0 -60 0 P 145 2212 -1.5764521534060036e-01 2.0300708033813919e+00 -8.7336311190774019e-01 2.4060659173851646e+00 9.3827000000000005e-01 1 0 0 0 0 P 146 -2212 7.2365141780465592e-01 1.2430021913724214e+00 -1.0531920479450281e+00 2.0145197703179702e+00 9.3827000000000005e-01 1 0 0 0 0 P 147 211 2.2241991878269509e+00 1.1843112947233121e+00 7.9923449495463117e-01 2.6472458957876688e+00 1.3957000000000000e-01 1 0 0 0 0 P 148 -211 6.4749064233649767e-01 4.5496979398408177e-01 8.4575817056419178e-01 1.1666311813625316e+00 1.3957000000000000e-01 1 0 0 0 0 P 149 211 7.4930102238880791e-01 6.3840903930251058e-01 -4.2849557911211827e-01 1.0826386146053979e+00 1.3957000000000000e-01 1 0 0 0 0 P 150 113 1.3435253011165857e+00 9.9939041499436132e-01 1.7611070260073296e+00 2.5002366990309786e+00 5.8808516203516847e-01 2 0 0 -61 0 P 151 313 1.5062269049378567e+00 7.7912652310414487e-01 2.4412884596394493e+00 3.1092733123682219e+00 9.1210391933894797e-01 2 0 0 -62 0 P 152 221 1.7561036050702450e-01 1.9617870342530644e-01 2.9124035317355462e-01 6.7368206760436955e-01 5.4744999999999999e-01 2 0 0 -63 0 P 153 -313 9.5917686540083469e-01 2.0310537413449883e-01 1.6350355071088831e+00 2.1224962192571186e+00 9.3293999760513857e-01 2 0 0 -64 0 P 154 313 1.7407526781137117e+00 1.8494300859639754e+00 6.6863027514660720e+00 7.2181922776954472e+00 9.7213360413609928e-01 2 0 0 -65 0 P 155 -323 9.0427674707556271e-01 9.1029036267049834e-01 2.0362099856102240e+00 2.5725590348822687e+00 9.0860547146891735e-01 2 0 0 -66 0 P 156 321 8.6382831146018524e-01 6.8773613355695284e-01 2.2142691125827949e+00 2.5230554896827417e+00 4.9359999999999998e-01 1 0 0 0 0 P 157 -311 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 2 0 0 -67 0 P 158 -213 -1.6602513881248579e-01 -1.9784274193529106e-01 2.2646584205545799e+00 2.4207488753579938e+00 8.1525533331837119e-01 2 0 0 -68 0 P 159 331 5.1620771162131607e-01 -6.4002033012468196e-01 9.4032750164386014e-01 1.5740156532052576e+00 9.5771240029414251e-01 2 0 0 -69 0 P 160 211 -8.4799439646089533e-02 -9.8831134457310066e-01 1.0927606558186655e+00 1.4824155606918801e+00 1.3957000000000000e-01 1 0 0 0 0 P 161 113 5.0126111132881723e-01 -4.3179711117534747e-01 1.5371815355241629e+00 1.9236481447149212e+00 9.4856927240911548e-01 2 0 0 -70 0 P 162 2114 6.4711665824334352e-01 -1.0448010103200167e+00 2.6382163035971300e+00 3.1323556191604474e+00 1.1580575718756674e+00 2 0 0 -71 0 P 163 221 -1.3981216061220206e-01 -1.4326992519303943e+00 1.7533934277153054e+00 2.3337233344148127e+00 5.4744999999999999e-01 2 0 0 -72 0 P 164 -2114 7.0262469379130088e-01 -1.5351082564629341e+00 3.3250980913109447e+00 3.9095704221752330e+00 1.1739781725917031e+00 2 0 0 -73 0 P 165 221 5.6327815323546571e-01 -1.6312680393081156e+00 6.6999903819016007e+00 6.9403090935530001e+00 5.4744999999999999e-01 2 0 0 -74 0 P 166 -213 7.0423490553950796e-01 -1.0006986557040105e+00 3.9967597953351519e+00 4.2482885757863542e+00 7.5929069521581427e-01 2 0 0 -75 0 P 167 211 7.6418744823686524e-01 -1.0704977293789804e+00 8.4438415583385531e+00 8.5468057127720858e+00 1.3957000000000000e-01 1 0 0 0 0 P 168 -211 5.2372258404576174e-03 -2.3482517504405259e-01 4.8057016549318456e+00 4.8134622126369342e+00 1.3957000000000000e-01 1 0 0 0 0 P 169 2212 2.0003033394174879e-01 -1.5010801108721556e+00 1.4698718944362916e+01 1.4806280519834349e+01 9.3827000000000005e-01 1 0 0 0 0 P 170 213 6.3159966958329494e-01 -9.1749176770289220e-01 1.2733709180813570e+01 1.2804106985966232e+01 7.4638925508959320e-01 2 0 0 -76 0 P 171 -2212 4.7361667833955118e-01 -1.5840762027944670e+00 3.6337015602613633e+01 3.6386709986913459e+01 9.3827000000000005e-01 1 0 0 0 0 P 172 -213 -6.0952058896008998e-01 -1.8069308779011817e+00 1.8612817522071094e+01 1.8724460299567959e+01 7.2933041503898699e-01 2 0 0 -77 0 P 173 213 -4.7321050360378542e-01 -1.4611884798605018e-01 2.9941318100501928e+01 2.9956088506777341e+01 7.9964375316480341e-01 2 0 0 -78 0 P 174 223 -1.7560572926702317e-01 -1.3404016943138539e+00 4.6968532063610319e+01 4.6994150414073992e+01 7.6135067869491690e-01 2 0 0 -79 0 P 175 113 -4.3134179050242744e-01 1.0973587207868786e-02 1.2871076482854550e+01 1.2890720525938937e+01 5.6558791582026013e-01 2 0 0 -80 0 P 176 -213 -1.2501268431343457e+00 -1.1745115211022394e+00 6.2507076325949292e+01 6.2535966680650212e+01 8.1868396113299058e-01 2 0 0 -81 0 P 177 213 -4.6281070091042303e-01 5.8393261537029106e-01 3.1213144798142149e+01 3.1232240006769871e+01 7.9827101069615036e-01 2 0 0 -82 0 P 178 223 1.0031372976855530e+00 7.8370618483776744e-01 5.2661003312281423e+01 5.2682258696146789e+01 7.8653140398757571e-01 2 0 0 -83 0 P 179 -213 1.8609393907630062e-01 4.7087974756006179e-01 4.7345711458362551e+01 4.7354375164417895e+01 7.5106259598804104e-01 2 0 0 -84 0 P 180 213 1.3380931368508377e+00 6.3715354177187031e-02 6.1408852998635467e+01 6.1428565438091873e+01 7.9175266634869734e-01 2 0 0 -85 0 P 181 113 8.2448148830641443e-01 4.8703237968489921e-01 1.1982262412103316e+02 1.1982867466157809e+02 7.3010248356707108e-01 2 0 0 -86 0 P 182 223 1.3736434430544133e+00 -3.2854396964776109e+00 2.0083136786729793e+02 2.0086443786783431e+02 7.7657594818138642e-01 2 0 0 -87 0 P 183 113 8.1937534954823310e-01 2.6671720877831295e-01 1.0843040649543882e+02 1.0843677941065161e+02 7.9972630025099722e-01 2 0 0 -88 0 P 184 2112 4.1284275122129448e-02 2.1785557114613488e-01 6.8470889871054808e+01 6.8477695032472198e+01 9.3957000000000002e-01 1 0 0 0 0 P 185 -211 4.9692799164784396e-01 -4.5143707676763412e-01 6.2609785685328688e+01 6.2613540677802696e+01 1.3957000000000000e-01 1 0 0 0 0 P 186 -2112 1.4651936158971004e+00 -2.7185979355670793e+00 2.5540781641928450e+02 2.5542821505644039e+02 9.3957000000000002e-01 1 0 0 0 0 P 187 221 -1.5613844695571832e-01 5.6548206245058699e-02 8.2576614295373119e+01 8.2578595936862271e+01 5.4744999999999999e-01 2 0 0 -89 0 P 188 223 1.0600406665999704e-01 2.5492099931411084e-02 3.7240084764324325e+02 3.7240161638693974e+02 7.4878267209803262e-01 2 0 0 -90 0 P 189 2212 -2.6959746734500439e-01 1.3575454822855444e+00 9.0043408955781308e+02 9.0043564212048580e+02 9.3827000000000005e-01 1 0 0 0 0 P 190 -2112 1.9580022939934716e-01 -4.8950229014925795e-01 5.9384678292044839e+02 5.9384776022729341e+02 9.3957000000000002e-01 1 0 0 0 0 P 191 113 -1.5736385716531065e-01 -1.4804920438155920e+00 9.6701055914748656e+02 9.6701203983749474e+02 8.0440528513598242e-01 2 0 0 -91 0 P 192 2112 -1.0790175788540123e-01 -2.3833877274373352e+00 1.9804652392727123e+03 1.9804668992283500e+03 9.3957000000000002e-01 1 0 0 0 0 V -12 0 0 0 0 0 0 1 0 P 193 92 -8.7226462783629732e-01 1.7207290075139114e+00 -5.2056070737825788e-01 1.3076106562288535e+01 1.2922531697774431e+01 2 0 0 -13 0 V -13 0 0 0 0 0 0 8 0 P 194 211 2.9311158783897240e-03 5.3752555149700273e-02 -2.1995324781658038e-01 2.6600215177790593e-01 1.3957000000000000e-01 1 0 0 0 0 P 195 331 3.1759291946618406e-01 3.9967604905194953e-01 1.2655854117268379e+00 1.6672042491491539e+00 9.5773554143321526e-01 2 0 0 -92 0 P 196 -321 -6.0173090597412993e-01 1.0800519107475366e+00 2.5983670579928191e+00 2.9195452627380361e+00 4.9359999999999998e-01 1 0 0 0 0 P 197 321 -6.5221812347676422e-01 -4.0707566782054477e-01 1.5727573506906443e+00 1.8188748511303765e+00 4.9359999999999998e-01 1 0 0 0 0 P 198 -211 -4.0663638488017689e-01 4.2709903090390200e-01 -1.2559795267689029e+00 1.3945361552394793e+00 1.3957000000000000e-01 1 0 0 0 0 P 199 111 2.2986081111496354e-01 -4.9818705056104168e-02 1.6232187692062083e-01 3.1604728758040185e-01 1.3497999999999999e-01 2 0 0 -93 0 P 200 211 -1.2037434346537397e-01 4.5842844064854220e-02 -2.6226988656582737e+00 2.6295666323069034e+00 1.3957000000000000e-01 1 0 0 0 0 P 201 -211 3.5831028350061028e-01 1.7120099047261800e-01 -2.0209607644654231e+00 2.0643299723662785e+00 1.3957000000000000e-01 1 0 0 0 0 V -14 0 0 0 0 0 0 1 0 P 202 92 -2.2602175830120486e-01 1.6918747371265646e+00 -2.6480785293408198e+03 2.6482550004322406e+03 3.0524354744471182e+01 2 0 0 -15 0 V -15 0 0 0 0 0 0 7 0 P 203 -213 -5.4948297913438748e-01 9.5903886946949701e-01 -8.9799152358473773e+00 9.0973357600802771e+00 9.4918554093485974e-01 2 0 0 -94 0 P 204 211 2.9889740077264110e-01 -2.5277391376300806e-01 -1.7162699519135116e+00 1.7658699387012955e+00 1.3957000000000000e-01 1 0 0 0 0 P 205 -211 -4.2451348704537578e-01 3.4001512028456304e-02 -1.8315587197478209e+02 1.8315642027084709e+02 1.3957000000000000e-01 1 0 0 0 0 P 206 2224 3.9747452716477527e-01 -1.8937081086197274e-04 -1.3634046587949891e+02 1.3634617772235450e+02 1.1830288337409314e+00 2 0 0 -95 0 P 207 -2214 -3.5552241237768090e-01 6.7454950182330650e-02 -3.9843850756557049e+02 3.9844071052458770e+02 1.2745767545025275e+00 2 0 0 -96 0 P 208 2114 2.1613866127831893e-01 7.8391954525838436e-01 -1.1219864055512307e+03 1.1219873516270043e+03 1.2090175490814592e+00 2 0 0 -97 0 P 209 211 1.9098653104050403e-01 1.0042314476176620e-01 -7.9746109318197693e+02 7.9746113458866546e+02 1.3957000000000000e-01 1 0 0 0 0 V -16 0 0 0 0 0 9 1 0 P 61 1 -8.6065710259298001e-01 3.7912432933034372e+00 -4.1189328693785676e+01 4.1372394837644798e+01 0 2 0 0 -16 0 P 62 21 -8.8522632601036022e-01 3.3748367869032077e+00 -1.7300727107672188e+01 1.7649031345675610e+01 0 2 0 0 -16 0 P 63 21 -1.5621497140726917e-01 4.8573435420028033e-01 -2.0282804347019647e+00 2.0914737631481128e+00 0 2 0 0 -16 0 P 64 21 -1.5358120632735701e+00 1.2830740326538903e+00 -9.9218846240528435e+00 1.0121699074759315e+01 0 2 0 0 -16 0 P 65 21 -2.8124816225447402e+00 7.9134419118784982e-01 -1.1404262529845585e+01 1.1772573310696293e+01 0 2 0 0 -16 0 P 66 21 -2.5993650469852851e+00 -4.8539935980158577e-01 -8.2753623994528347e+00 8.6875735408836903e+00 0 2 0 0 -16 0 P 67 21 -5.7548395374757400e-01 -3.7837025068570346e-01 -3.1084297450257559e+00 3.1838155265947474e+00 0 2 0 0 -16 0 P 68 21 -1.3299732528289634e+00 -3.2515719337466917e+00 -3.5154601680047463e+01 3.5329698104800805e+01 0 2 0 0 -16 0 P 69 -1 8.6065710259298001e-01 -3.7912432933034372e+00 -1.6244622152453920e+02 1.6249273566518880e+02 0 2 0 0 -16 0 P 210 92 -9.8945572367977626e+00 1.8196478207112481e+00 -2.9082909873912354e+02 2.9270099516939217e+02 3.1481653683343659e+01 2 0 0 -17 0 V -17 0 0 0 0 0 0 14 0 P 211 -213 -4.0151496016342902e-01 3.7692035091442104e+00 -3.4327358400619815e+01 3.4544630232420268e+01 7.7190269688648883e-01 2 0 0 -98 0 P 212 331 -1.9103546610924991e+00 2.0569511421273083e+00 -1.7160035389899534e+01 1.7414493202784929e+01 9.5773482498096330e-01 2 0 0 -99 0 P 213 211 -7.3583794373030598e-01 1.5449679177345517e+00 -1.1611060732749708e+01 1.1737316323196051e+01 1.3957000000000000e-01 1 0 0 0 0 P 214 -213 -5.2657313727511046e-01 7.3211451499706859e-01 -2.6863684280968041e+00 2.9409800321932509e+00 7.8709420421889431e-01 2 0 0 -100 0 P 215 111 -1.9886352915998822e+00 2.8516872474544769e-01 -1.0273752022868901e+01 1.0469202059009671e+01 1.3497999999999999e-01 2 0 0 -101 0 P 216 211 -1.2236169289295014e+00 1.1387515839325153e+00 -6.8336246496330801e+00 7.0364692279327503e+00 1.3957000000000000e-01 1 0 0 0 0 P 217 223 -1.2950663359447676e+00 -7.6465123341031382e-01 -7.8257531534250715e+00 8.0066894906056429e+00 7.7638640983667129e-01 2 0 0 -102 0 P 218 223 -1.0194062682557754e+00 -1.0740229285285248e-01 -5.4002943803493828e+00 5.5515999730020722e+00 7.7869022950995559e-01 2 0 0 -103 0 P 219 111 -4.3302487932554351e-01 -1.1282303182206530e+00 -9.0705608394909572e+00 9.1517051821162863e+00 1.3497999999999999e-01 2 0 0 -104 0 P 220 223 -2.3738449997160477e-02 7.3895439371345073e-02 -7.8045195328321135e+00 7.8437923405874406e+00 7.8008274813128187e-01 2 0 0 -105 0 P 221 2112 -4.1253808300065847e-01 -1.2531578894324771e+00 -1.9164148162278675e+01 1.9232471472393811e+01 9.3957000000000002e-01 1 0 0 0 0 P 222 -2214 -1.6527631246943678e-01 -1.3041024854301384e+00 -2.7767373839325042e+01 2.7821954935539765e+01 1.1428591122286682e+00 2 0 0 -106 0 P 223 321 -1.4905537012243913e-01 -1.6963072750784520e+00 -6.0114990459445579e+01 6.0141128978213231e+01 4.9359999999999998e-01 1 0 0 0 0 P 224 -311 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -107 0 V -18 0 0 0 0 0 11 1 0 P 70 1 -5.2814132470876707e-01 -3.7790259024332915e+00 -1.9544912358720660e+02 1.9548636750688598e+02 0 2 0 0 -18 0 P 71 21 -1.2650634913664724e+00 -1.3778845565554025e+00 -8.5462912591169356e+01 8.5483380724291877e+01 0 2 0 0 -18 0 P 72 21 4.4236034888581199e-01 -1.4189626612674393e+00 -1.6214455942675107e+02 1.6215137153107139e+02 0 2 0 0 -18 0 P 73 21 1.5358120632735701e+00 -1.2830740326538903e+00 -1.7580058451842277e+02 1.7581197488989787e+02 0 2 0 0 -18 0 P 74 21 1.7909508627676911e+00 -1.0886553103426566e-01 -6.7699524182289360e+02 6.7699761949916399e+02 0 2 0 0 -18 0 P 75 21 -2.9568382149066377e+00 -1.0292741166592101e+00 -3.3213907999518472e+02 3.3215383598188970e+02 0 2 0 0 -18 0 P 76 21 -1.3929204664533565e+00 -2.8407328198885767e-01 -8.3922590765229089e+01 8.3934630313140232e+01 0 2 0 0 -18 0 P 77 21 -1.9942637464441160e+00 1.5967219838243523e+00 -2.9782333053268803e+02 2.9783428751331968e+02 0 2 0 0 -18 0 P 78 21 -4.1823331179364909e-01 2.1216008959167789e+00 -4.1139307264994937e+02 4.1139875587297439e+02 0 2 0 0 -18 0 P 79 21 -4.4236034888581199e-01 1.4189626612674393e+00 -1.5106009013227225e+02 1.5106740207100455e+02 0 2 0 0 -18 0 P 80 -1 5.2814132470876707e-01 3.7790259024332915e+00 -1.1688392700829701e+02 1.1694619430708735e+02 0 2 0 0 -18 0 P 225 92 -4.7005563049229702e+00 -3.6484863915049548e-01 -2.6890745130300643e+03 2.6892658202107268e+03 3.1728327748096785e+01 2 0 0 -19 0 V -19 0 0 0 0 0 0 18 0 P 226 -211 1.9949917944299295e-01 -1.3749025677242002e+00 -5.6317918871676987e+01 5.6335225417273548e+01 1.3957000000000000e-01 1 0 0 0 0 P 227 213 -1.3609081538419352e+00 -4.4320243975493412e+00 -3.0800857953830581e+02 3.0804434845210523e+02 7.3527737181296549e-01 2 0 0 -108 0 P 228 2114 6.9668643918452122e-01 -9.2490570707507003e-01 -1.2951269679632762e+02 1.2952376562880053e+02 1.2354791157414682e+00 2 0 0 -109 0 P 229 211 -7.2906435289257290e-02 1.1685305944877628e-01 -8.9625240121129135e+00 8.9646687857616740e+00 1.3957000000000000e-01 1 0 0 0 0 P 230 -2224 7.7062045499559184e-01 -1.2284044122682334e+00 -2.4708811747772657e+02 2.4709520529528140e+02 1.1831516997934051e+00 2 0 0 -110 0 P 231 321 4.5803316039516617e-01 3.0198686173057687e-01 -1.1914265633812468e+02 1.1914494194343779e+02 4.9359999999999998e-01 1 0 0 0 0 P 232 -321 -1.6491069397593583e-01 -7.6302358422499372e-01 -1.8525743880335440e+02 1.8525974110277082e+02 4.9359999999999998e-01 1 0 0 0 0 P 233 2212 6.1225979015057819e-01 3.0418751195681504e-01 -2.6175878723717318e+02 2.6176136162268421e+02 9.3827000000000005e-01 1 0 0 0 0 P 234 -211 -6.0720435157590313e-01 -3.6692773639914572e-01 -7.5939756336117725e+01 7.5943198545110960e+01 1.3957000000000000e-01 1 0 0 0 0 P 235 -1114 -8.7484216173256701e-01 -3.5010515751792939e-02 -1.5931011873468503e+02 1.5931750180844546e+02 1.2593159573434576e+00 2 0 0 -111 0 P 236 -213 -2.1712612685434944e+00 -3.2823806221932161e-01 -2.1291580519543123e+02 2.1292812390016576e+02 6.5094539229835768e-01 2 0 0 -112 0 P 237 211 -5.1053935921726790e-01 9.2482005992371052e-01 -1.0321182185381051e+02 1.0321732215451127e+02 1.3957000000000000e-01 1 0 0 0 0 P 238 1114 -5.2623977286571588e-01 9.2029791209866507e-01 -2.2125572499479415e+02 2.2126133210857773e+02 1.1650609189207797e+00 2 0 0 -113 0 P 239 -1114 -1.2537659450274838e+00 1.4775347844706543e+00 -2.8708343490117772e+02 2.8709237032908857e+02 1.1728036628335905e+00 2 0 0 -114 0 P 240 313 1.0067805419488426e-01 1.0460617989003338e+00 -4.2788632014641685e+01 4.2810592006916174e+01 8.8055490487576349e-01 2 0 0 -115 0 P 241 -313 -3.9173806062460098e-01 1.4220257261643379e+00 -1.5962915455210754e+02 1.5963842383939780e+02 8.8530618012404305e-01 2 0 0 -116 0 P 242 -211 7.6871957408836122e-01 1.9251793035913369e+00 -8.1537911820692656e+01 8.1564378186794968e+01 1.3957000000000000e-01 1 0 0 0 0 P 243 211 -3.7273675468090528e-01 6.4964132577639710e-01 -2.9353433551803132e+01 2.9363319083602732e+01 1.3957000000000000e-01 1 0 0 0 0 V -20 0 0 0 0 0 7 1 0 P 81 2 1.8488247010320389e+00 -1.6008342585849420e+00 7.0399918993020938e+00 7.4526712688031873e+00 0 2 0 0 -20 0 P 82 21 1.5527611081126074e+00 3.5633050659470139e-01 1.4438586644885602e+01 1.4526211577375086e+01 0 2 0 0 -20 0 P 83 21 7.1751238809425899e-01 5.2235835518124177e-02 1.0831306326871731e+01 1.0855171548902975e+01 0 2 0 0 -20 0 P 84 21 6.3314715763410501e-01 4.9505380802813853e-01 6.3261757921053512e+00 6.3770254624458786e+00 0 2 0 0 -20 0 P 85 21 -1.5455237168893123e+00 -9.4820344049031013e-01 1.4517992048568290e+01 1.4630783521271754e+01 0 2 0 0 -20 0 P 86 21 -2.0173726863664050e+00 5.9209092629134409e-02 6.9514804891213959e+00 7.2385343311324162e+00 0 2 0 0 -20 0 P 87 -2 -1.8488247010320389e+00 1.6008342585849420e+00 4.9193045353882958e-01 2.4945578104594666e+00 0 2 0 0 -20 0 P 244 92 -6.5947574941474607e-01 1.4625802279788491e-02 6.0597463654393287e+01 6.3574955520390759e+01 1.9216847969841190e+01 2 0 0 -21 0 V -21 0 0 0 0 0 0 11 0 P 245 111 2.4054182034315141e-01 1.6817783133907804e-01 1.5024392890041587e+00 1.5367783079648263e+00 1.3497999999999999e-01 2 0 0 -117 0 P 246 223 1.5682006719996129e+00 -1.1011446231514121e+00 9.9834273520692971e+00 1.0195555671111880e+01 7.8023132463450573e-01 2 0 0 -118 0 P 247 211 -1.8417357799866718e-03 1.4365836300598361e-03 2.2648518148254004e-01 2.6604657128854065e-01 1.3957000000000000e-01 1 0 0 0 0 P 248 111 1.6243441749863650e+00 -1.5551870214874833e-01 6.9439000540971643e+00 7.1343288140665875e+00 1.3497999999999999e-01 2 0 0 -119 0 P 249 331 2.8820561273211375e-02 -1.3102248921275680e-01 8.7919471241252012e+00 8.8449856661032378e+00 9.5783071715555534e-01 2 0 0 -120 0 P 250 113 2.8206140318432488e-01 2.4555021207596181e-01 1.5814260176302563e+01 1.5839299583756057e+01 8.0791883154731026e-01 2 0 0 -121 0 P 251 111 8.6230201664537001e-02 2.4224115023465881e-01 6.2379615320978810e-01 6.8808259947875927e-01 1.3497999999999999e-01 2 0 0 -122 0 P 252 111 -1.1161104965547421e+00 -3.5821412312951101e-01 4.1793640298044643e+00 4.3427322381828386e+00 1.3497999999999999e-01 2 0 0 -123 0 P 253 221 2.6877585511991986e-01 -5.4721732157604386e-01 1.9792203094410024e+00 2.1421255315998735e+00 5.4744999999999999e-01 2 0 0 -124 0 P 254 -211 -1.6570630102597235e+00 4.4995918179559341e-01 1.0065893431001440e+01 1.0212248108738404e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 111 -1.9834351953914149e+00 1.2003781024229085e+00 4.8673055385567743e-01 2.3727724280997657e+00 1.3497999999999999e-01 2 0 0 -125 0 V -22 0 0 0 0 0 2 1 0 P 88 1 2.3497909442372764e+00 -5.4846848995548543e-02 -3.6728179136005600e+01 3.6803310561754920e+01 0 2 0 0 -22 0 P 89 -1 -2.3497909442372764e+00 5.4846848995548543e-02 -7.4108419020636703e+01 7.4145682918135776e+01 0 2 0 0 -22 0 P 256 92 0 0 -1.1083659815664231e+02 1.1094899347989070e+02 4.9927610861951086e+00 2 0 0 -23 0 V -23 0 0 0 0 0 0 4 0 P 257 -213 1.8256691796405293e+00 5.6273475595900277e-02 -3.1485274250821060e+01 3.1546713134329167e+01 7.3237986912236286e-01 2 0 0 -126 0 P 258 213 4.5058259894467330e-02 6.2491642775392466e-02 -1.1813081671562822e+01 1.1821298498454530e+01 4.3389417874450209e-01 2 0 0 -127 0 P 259 -211 -1.1915895614269676e+00 -4.6821900866330639e-02 -4.7247582704814576e+01 4.7262835602685712e+01 1.3957000000000000e-01 1 0 0 0 0 P 260 213 -6.7913787810802906e-01 -7.1943217504962104e-02 -2.0290659529443822e+01 2.0318146244421271e+01 8.0610085340163251e-01 2 0 0 -128 0 V -24 0 0 0 0 0 4 1 0 P 90 1 7.5769167851755326e-01 1.2556996586281193e+00 -5.8789782529126677e+00 6.0591471025709227e+00 0 2 0 0 -24 0 P 91 21 8.1858222642740464e-01 9.3508705088232957e-01 -6.6895240298497542e+00 6.8039838624211884e+00 0 2 0 0 -24 0 P 92 21 4.8604162704783915e-01 -4.4805287193126347e-01 -4.8593638405727352e-01 8.2044013103932334e-01 0 2 0 0 -24 0 P 93 -1 -7.5769167851755326e-01 -1.2556996586281193e+00 -1.6210048017782981e+00 2.1859860200289072e+00 0 2 0 0 -24 0 P 261 92 1.3046238534752441e+00 4.8703417895106593e-01 -1.4675443468597994e+01 1.5869557116060342e+01 5.8766449926265576e+00 2 0 0 -25 0 V -25 0 0 0 0 0 0 6 0 P 262 -211 -1.2605936402499596e-01 1.5057371897507288e-01 -1.9934474466451280e+00 2.0079531656740279e+00 1.3957000000000000e-01 1 0 0 0 0 P 263 211 8.4095744167351105e-01 -1.1469816322793629e-01 -1.8247275765362030e+00 2.0172941284863750e+00 1.3957000000000000e-01 1 0 0 0 0 P 264 2112 -3.2022114448484328e-03 3.5485340289505374e-01 -1.9776757554839368e+00 2.2180902529954225e+00 9.3957000000000002e-01 1 0 0 0 0 P 265 113 4.2082129723615885e-01 8.6963761258957373e-01 -5.0332734567012771e+00 5.1794887343703202e+00 7.4826580711497215e-01 2 0 0 -129 0 P 266 -2212 2.9848035908897141e-01 7.6144801945563514e-02 -2.6579725499699327e+00 2.8354994665700217e+00 9.3827000000000005e-01 1 0 0 0 0 P 267 213 -1.2637366905355291e-01 -8.4947719422626133e-01 -1.1883466832615162e+00 1.6112313679641745e+00 6.6806951266502279e-01 2 0 0 -130 0 V -26 0 0 0 0 0 3 1 0 P 94 1 -4.8287486780671490e-01 1.2761023729390071e+00 -1.1383200487310590e+00 1.7769012177166736e+00 0 2 0 0 -26 0 P 95 21 1.5621497140726917e-01 -4.8573435420028033e-01 -2.3619765661507044e+00 2.4164590373493215e+00 0 2 0 0 -26 0 P 96 -1 4.8287486780671490e-01 -1.2761023729390071e+00 -2.2017850240909422e+02 2.2018272985980460e+02 0 2 0 0 -26 0 P 268 92 1.5621497140726920e-01 -4.8573435420028033e-01 -2.2367879902397598e+02 2.2437609011487061e+02 1.7668173121411101e+01 2 0 0 -27 0 V -27 0 0 0 0 0 0 6 0 P 269 313 -2.8543117315447136e-01 2.2482482489894967e-01 -9.0341200093274154e-01 1.3217361221462267e+00 8.9376505674459228e-01 2 0 0 -131 0 P 270 221 4.1238714735209003e-01 2.2411899452297654e-01 -9.6698372983086163e+00 9.6966874426923582e+00 5.4744999999999999e-01 2 0 0 -132 0 P 271 -313 -7.1452535519722837e-01 1.2615975732829462e-01 -3.4389877916850984e+00 3.6634749075678412e+00 1.0334159856665626e+00 2 0 0 -133 0 P 272 223 2.9518440687517600e-01 -6.7587691309211138e-03 -6.1846089388196880e+01 6.1851744831168652e+01 7.8255129680869040e-01 2 0 0 -134 0 P 273 223 -7.1475168838994643e-02 -2.6715068557088228e-01 -1.7827325999504673e+01 1.7843612536382814e+01 7.1026605394107112e-01 2 0 0 -135 0 P 274 113 5.2007511437069753e-01 -7.8692847624869777e-01 -1.2999314654534800e+02 1.2999883427491272e+02 7.6748258910931000e-01 2 0 0 -136 0 V -28 0 0 0 0 0 2 1 0 P 97 3 2.7933547404477370e-03 4.5160821789481753e-01 -6.9749067594193650e+02 6.9749082215017336e+02 0 2 0 0 -28 0 P 98 -3 -2.7933547404477370e-03 -4.5160821789481753e-01 -8.5705274275953133e-02 4.5967725562567846e-01 0 2 0 0 -28 0 P 275 92 0 0 -6.9757638121621244e+02 6.9795049940579906e+02 2.2849332377506720e+01 2 0 0 -29 0 V -29 0 0 0 0 0 0 7 0 P 276 -313 7.4754027829760331e-02 6.7622667534388892e-01 -5.6128142380157919e+02 5.6128242301330602e+02 8.1167005533660608e-01 2 0 0 -137 0 P 277 111 3.1985609755234451e-01 -2.4118651425109322e-01 -5.4722554391411123e+01 5.4724187134932819e+01 1.3497999999999999e-01 2 0 0 -138 0 P 278 -211 -5.7660524700388271e-01 1.8519245211609431e-01 -1.1572207736933230e+01 1.1588884396128494e+01 1.3957000000000000e-01 1 0 0 0 0 P 279 323 4.7016327779864553e-01 1.2608243070388506e-01 -5.0242507469607531e+01 5.0252637084772871e+01 8.8375723657481486e-01 2 0 0 -139 0 P 280 -323 -2.9340181810227189e-01 -1.0902889962350583e-01 -1.6654982782813086e+01 1.6682011254030524e+01 8.9614510877530373e-01 2 0 0 -140 0 P 281 321 -1.7091842733929916e-01 -3.0692804215831166e-02 -6.8335184307022190e-01 8.6067755777773114e-01 4.9359999999999998e-01 1 0 0 0 0 P 282 221 1.7615208926470335e-01 -6.0659334007343801e-01 -2.4193531907980739e+00 2.5596789648505904e+00 5.4744999999999999e-01 2 0 0 -141 0 V -30 0 4.3552063811353620e-01 9.2267359153047313e-01 1.1882690705801794e+01 1.1926626955080303e+01 0 2 0 P 283 211 5.6975865540499546e+00 1.1330876234577410e+01 1.5021801775047430e+02 1.5075252430871902e+02 1.3957000000000000e-01 1 0 0 0 0 P 284 111 1.3749483431976381e+00 2.8393304901684724e+00 4.1567996491050160e+01 4.1687753986743168e+01 1.3497999999999999e-01 2 0 0 -142 0 V -31 0 0 0 0 0 0 2 0 P 285 22 -4.8425593179708420e-01 -3.7941731719233979e-01 6.9555917814895751e-01 9.2858164873819682e-01 0 1 0 0 0 0 P 286 111 2.7677428254205411e-01 -2.0684450063775386e-01 2.5900813569619241e-01 4.5243061973916815e-01 1.3497999999999999e-01 2 0 0 -143 0 V -32 0 0 0 0 0 0 2 0 P 287 -211 1.2086441549120626e-01 -6.6626754639345240e-02 2.0268340549126157e-01 2.8214832823771546e-01 1.3957000000000000e-01 1 0 0 0 0 P 288 111 -6.1343442008773696e-01 -6.0861248761949253e-02 -2.6379713392407106e-01 6.8396959553462333e-01 1.3497999999999999e-01 2 0 0 -144 0 V -33 0 0 0 0 0 0 3 0 P 289 211 1.5650772444410885e-01 1.2556032321315094e-01 -2.8281242327341727e-01 3.7379501633093848e-01 1.3957000000000000e-01 1 0 0 0 0 P 290 -211 2.8637689616156098e-01 -6.1545467400357816e-02 -2.1606036427427738e-02 3.2518637259694833e-01 1.3957000000000000e-01 1 0 0 0 0 P 291 111 -1.1201487658692037e-01 -1.3541652443332075e-01 -9.2181961874814866e-02 2.4000433779720101e-01 1.3497999999999999e-01 2 0 0 -145 0 V -34 0 3.2060726993416450e-05 -1.8244415792794160e-05 -3.4839902881546210e-05 6.3385020118851183e-05 0 2 0 P 292 22 9.1312929032954696e-02 2.4513449271720920e-02 -7.6611343405081037e-02 1.2168918662767823e-01 0 1 0 0 0 0 P 293 22 2.2605930051943775e-02 -8.9339896663646945e-02 -4.7182542731980512e-02 1.0353181901251253e-01 0 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 294 211 2.3521656847716066e-01 -5.7442171875550820e-02 -2.1861578301465836e+00 2.2039492463319497e+00 1.3957000000000000e-01 1 0 0 0 0 P 295 111 -2.0536403374506718e-01 -4.5054776488921472e-01 -5.3556333102086606e-01 7.4176502798182520e-01 1.3497999999999999e-01 2 0 0 -146 0 V -36 0 -9.1559870712433641e-05 -3.3300474767159021e-05 4.9569495795866960e-05 1.2619656257276831e-04 0 2 0 P 296 22 -8.4024681070091131e-02 5.0886996525857696e-03 1.0502499963480008e-01 1.3459677723249733e-01 0 1 0 0 0 0 P 297 22 -1.1196567331546031e-01 -7.6370712176619573e-02 1.0819986839051790e-03 1.3553585651221753e-01 0 1 0 0 0 0 V -37 0 0 0 0 0 0 3 0 P 298 211 2.6686053765618595e-01 -2.7853579602186887e-02 -2.9605080343987927e-01 4.2322125604960115e-01 1.3957000000000000e-01 1 0 0 0 0 P 299 -211 7.1975412359191374e-02 -6.6361870680359092e-02 -8.8395747329463348e-01 9.0024716459309384e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 111 4.8433143600459772e-01 9.2007420279410140e-02 -1.5121135138934403e+00 1.5961670290379748e+00 1.3497999999999999e-01 2 0 0 -147 0 V -38 0 0 0 0 0 0 2 0 P 301 -211 1.3700899235692003e+00 2.0647988874548268e-01 -5.3617076847975170e+01 5.3635158150691581e+01 1.3957000000000000e-01 1 0 0 0 0 P 302 211 2.3655720987829679e-01 -2.7391966606332724e-01 -6.2605275895915451e+00 6.2725335217867562e+00 1.3957000000000000e-01 1 0 0 0 0 V -39 0 0 0 0 0 0 3 0 P 303 -211 7.6058597263690339e-02 9.5331259892183606e-02 -1.5955122519410254e+00 1.6062416039700482e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 211 1.2718162954678505e-01 -1.6596692473159425e-01 -7.0263617142971331e+00 7.0308576227967796e+00 1.3957000000000000e-01 1 0 0 0 0 P 305 111 4.1808261230424149e-01 1.7894092992830260e-01 -9.1160697680698899e+00 9.1284040523977996e+00 1.3497999999999999e-01 2 0 0 -148 0 V -40 0 0 0 0 0 0 2 0 P 306 211 -2.9122588501405933e-01 -3.3684082652828878e-01 -4.6635582309991701e+00 4.6868464256191062e+00 1.3957000000000000e-01 1 0 0 0 0 P 307 111 3.7090530361194302e-01 -7.5125696684591542e-02 -2.9318742625803669e+00 2.9592770918808839e+00 1.3497999999999999e-01 2 0 0 -149 0 V -41 0 0 0 0 0 0 3 0 P 308 -211 1.4504900297074907e-01 3.5879574393377839e-01 -5.5188056275372821e-01 6.8834986712657509e-01 1.3957000000000000e-01 1 0 0 0 0 P 309 211 -9.8582801360054262e-02 1.2670073071007715e-01 -2.1199629453041532e-01 3.0032292233709035e-01 1.3957000000000000e-01 1 0 0 0 0 P 310 111 2.8417357453212544e-01 -7.3859595469430273e-02 -3.5108605503223167e-01 4.7716965404703654e-01 1.3497999999999999e-01 2 0 0 -150 0 V -42 0 0 0 0 0 0 2 0 P 311 22 -1.0730730754671272e-01 -1.8672610568622816e-01 -1.3883704539384237e-01 2.5623665227941311e-01 0 1 0 0 0 0 P 312 111 -9.5442262922557208e-01 2.9991339357873487e-01 -2.4945507257508890e+00 2.6910729314847739e+00 1.3497999999999999e-01 2 0 0 -151 0 V -43 0 0 0 0 0 0 3 0 P 313 211 -6.3323774426540858e-01 -1.1255111736749875e-01 -1.4589519703761096e+00 1.6005244239146581e+00 1.3957000000000000e-01 1 0 0 0 0 P 314 -211 -4.2660195365594117e-01 -3.9901435866671309e-01 -1.3159947460453554e+00 1.4465557859288571e+00 1.3957000000000000e-01 1 0 0 0 0 P 315 111 3.3062169236304978e-02 -1.2448725413581298e-01 -4.1704245407895840e-01 4.5687437264644720e-01 1.3497999999999999e-01 2 0 0 -152 0 V -44 0 0 0 0 0 0 2 0 P 316 2212 -1.2343932503498354e+00 -1.3486551019384820e+00 -4.2743490607469745e+00 4.7426793868553325e+00 9.3827000000000005e-01 1 0 0 0 0 P 317 -211 -2.4842699916712615e-02 -1.8761032490053006e-01 -2.6275403422430921e-01 3.5261063675048676e-01 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 2 0 P 318 -211 -5.4010433013124859e-01 -6.4877349465559186e-01 -2.4200749546584195e+00 2.5668779296762643e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 111 -8.8375737919922326e-01 -7.6861677312377114e-02 -1.7360977083115159e+00 1.9542747186444511e+00 1.3497999999999999e-01 2 0 0 -153 0 V -46 0 0 0 0 0 0 2 0 P 320 -2112 -2.6766242311314188e+00 -2.6825556264374533e+00 -6.6946110588537957e+00 7.7499052237971684e+00 9.3957000000000002e-01 1 0 0 0 0 P 321 211 -5.8939249612105094e-01 -3.3570415391532266e-01 -1.3681636800349863e+00 1.5334381088608311e+00 1.3957000000000000e-01 1 0 0 0 0 V -47 0 0 0 0 0 0 2 0 P 322 -211 -1.5413501151578968e-01 -8.7100911742999540e-02 -5.3553172868274723e-01 5.8104921299952383e-01 1.3957000000000000e-01 1 0 0 0 0 P 323 111 -9.7176262016929679e-02 -1.1593191018755580e+00 -1.2658613052601357e+00 1.7245545658018560e+00 1.3497999999999999e-01 2 0 0 -154 0 V -48 0 0 0 0 0 0 2 0 P 324 211 -5.9509985910772289e-01 -2.4537451572840885e-01 2.2934680228601213e-02 6.5905863148597865e-01 1.3957000000000000e-01 1 0 0 0 0 P 325 111 2.1482702594349154e-01 4.3850930558939641e-02 2.9412601594858329e-01 3.9090058690720431e-01 1.3497999999999999e-01 2 0 0 -155 0 V -49 0 0 0 0 0 0 2 0 P 326 22 -1.4729585917556347e+00 -8.9874920679701553e-01 -2.8534654522184699e-01 1.7489367628976895e+00 0 1 0 0 0 0 P 327 111 -2.7911935781948527e-01 -5.7470410380588333e-01 -4.0459986903085787e-01 7.6818817828750319e-01 1.3497999999999999e-01 2 0 0 -156 0 V -50 0 0 0 0 0 0 2 0 P 328 321 -3.0593436265306406e-01 -6.2947238346167100e-01 5.9462952582352520e-02 8.5849176963012552e-01 4.9359999999999998e-01 1 0 0 0 0 P 329 -211 -3.9457137801730585e-01 -3.2973587278357458e-01 4.3248238259398969e-01 6.8624566614660343e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 330 321 -7.6312948724507468e-01 -9.8292277421156843e-02 2.8732408547725447e-01 9.5824009319111092e-01 4.9359999999999998e-01 1 0 0 0 0 P 331 -321 -3.5037573636869501e-01 -1.4421731021473594e-01 2.2914831503643365e-01 6.6310760777230970e-01 4.9359999999999998e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 2 0 P 332 -321 -6.1284827128046937e-01 1.6452355202546848e-01 3.5949133910142839e-01 8.8063953219888724e-01 4.9359999999999998e-01 1 0 0 0 0 P 333 111 -3.0170913494937390e-01 -3.8716424826638957e-01 1.4014817664985008e-01 5.2800158055242186e-01 1.3497999999999999e-01 2 0 0 -157 0 V -53 0 0 0 0 0 0 2 0 P 334 321 -4.1090121515246270e-01 8.6110473017422617e-01 1.3300828011507695e-01 1.0824386021947703e+00 4.9359999999999998e-01 1 0 0 0 0 P 335 111 -7.5220425311026118e-01 6.3715343538457803e-01 4.0665434048955834e-01 1.0748781752638450e+00 1.3497999999999999e-01 2 0 0 -158 0 V -54 0 0 0 0 0 0 1 0 P 336 310 1.4965274933847961e-01 6.4215383414718319e-01 1.5954303282423224e-01 8.4136014899521350e-01 4.9767000000000000e-01 2 0 0 -159 0 V -55 0 -2.0392913757103350e-04 5.1750334191608572e-04 -6.7891358905529012e-05 5.6406105473422305e-04 0 2 0 P 337 22 -6.1262135287171917e-03 6.2046980428774039e-02 1.7479980352246530e-02 6.4752667787845081e-02 0 1 0 0 0 0 P 338 22 -4.2071158491946425e-01 1.0211233295329261e+00 -1.5958129316144423e-01 1.1158661572648105e+00 0 1 0 0 0 0 V -56 0 0 0 0 0 0 3 0 P 339 111 -1.4339050666386671e-01 2.7065318764901369e-01 6.5930004188256536e-02 3.4114564519887419e-01 1.3497999999999999e-01 2 0 0 -160 0 P 340 111 -2.4164224281110458e-01 2.3923226942222706e-01 1.2253120834007535e-01 3.8581932256040363e-01 1.3497999999999999e-01 2 0 0 -161 0 P 341 111 -3.9992227592409368e-01 8.5632076445814231e-01 2.8390879468236811e-02 9.5511712415779881e-01 1.3497999999999999e-01 2 0 0 -162 0 V -57 0 0 0 0 0 0 3 0 P 342 211 -2.4471078018673106e-01 1.1262759358575185e+00 1.9667685510391394e-01 1.1775153586535054e+00 1.3957000000000000e-01 1 0 0 0 0 P 343 -211 -3.4371558545151815e-01 1.8125521817847505e+00 2.0244398499703575e-01 1.8611687637977430e+00 1.3957000000000000e-01 1 0 0 0 0 P 344 111 -6.6812755286939696e-02 2.8553134729495211e-01 2.7577383408391491e-02 3.2399414660261450e-01 1.3497999999999999e-01 2 0 0 -163 0 V -58 0 0 0 0 0 0 2 0 P 345 -211 -6.5742788697386811e-01 1.5736712111710887e+00 -2.2396981487714127e-01 1.7257736729698094e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 211 -6.4981483139338791e-01 9.5943557796605505e-01 -8.2795563541454520e-01 1.4310018387411592e+00 1.3957000000000000e-01 1 0 0 0 0 V -59 0 0 0 0 0 0 2 0 P 347 311 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 2 0 0 -164 0 P 348 211 -5.4408604599649928e-03 7.8852405375660795e-02 -6.5848956842328984e-02 1.7338735482524456e-01 1.3957000000000000e-01 1 0 0 0 0 V -60 0 0 0 0 0 0 2 0 P 349 -321 -5.4942812877044434e-01 1.7387252193230223e+00 -7.6676258835511502e-01 2.0387747506517533e+00 4.9359999999999998e-01 1 0 0 0 0 P 350 111 -4.0651166023708565e-02 8.4356457122449835e-01 -8.0730849076954858e-01 1.1761038656482961e+00 1.3497999999999999e-01 2 0 0 -165 0 V -61 0 0 0 0 0 0 2 0 P 351 211 1.2851692555344616e+00 9.4793127548327738e-01 1.6759754690659709e+00 2.3191824585877794e+00 1.3957000000000000e-01 1 0 0 0 0 P 352 -211 5.8356045582124039e-02 5.1459139511083926e-02 8.5131556941358835e-02 1.8105424044319968e-01 1.3957000000000000e-01 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 353 321 1.1422211627213763e+00 3.6857937973079874e-01 1.3086573151746401e+00 1.8430260096622104e+00 4.9359999999999998e-01 1 0 0 0 0 P 354 -211 3.6400574221648024e-01 4.1054714337334614e-01 1.1326311444648089e+00 1.2662473027060110e+00 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 3 0 P 355 -211 3.0563832193197818e-02 9.2061879970179963e-02 4.3649550299795219e-02 1.7548391870297442e-01 1.3957000000000000e-01 1 0 0 0 0 P 356 211 -7.2872017997011734e-02 9.1957200922732126e-03 7.2495685068559662e-02 1.7358082131540922e-01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 2.1791854631083843e-01 9.4921103362853254e-02 1.7509511780519976e-01 3.2461732758598588e-01 1.3497999999999999e-01 2 0 0 -166 0 V -64 0 0 0 0 0 0 2 0 P 358 -311 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 2 0 0 -167 0 P 359 111 4.1104135675830361e-01 3.7329422097730236e-01 8.9565830231595311e-01 1.0624156283151398e+00 1.3497999999999999e-01 2 0 0 -168 0 V -65 0 0 0 0 0 0 2 0 P 360 321 9.1246343574899591e-01 8.1459452796934884e-01 2.5265770799552967e+00 2.8501555163765890e+00 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 8.2828924236471579e-01 1.0348355579946267e+00 4.1597256715107758e+00 4.3680367613188578e+00 1.3957000000000000e-01 1 0 0 0 0 V -66 0 0 0 0 0 0 2 0 P 362 -311 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 2 0 0 -169 0 P 363 -211 4.3159119413565189e-01 4.0336422123606865e-02 4.7466589796963654e-01 6.5778832872018422e-01 1.3957000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 1 0 P 364 130 1.1159017329372403e+00 9.5892737679535200e-01 3.9990811542763147e+00 4.2901170029415203e+00 4.9767000000000000e-01 1 0 0 0 0 V -68 0 0 0 0 0 0 2 0 P 365 -211 1.3272235991429066e-01 1.6818792182867751e-01 2.9346844832497537e-01 3.8923760986386785e-01 1.3957000000000000e-01 1 0 0 0 0 P 366 111 -2.9874749872677647e-01 -3.6603066376396853e-01 1.9711899722296045e+00 2.0315112654941259e+00 1.3497999999999999e-01 2 0 0 -170 0 V -69 0 0 0 0 0 0 3 0 P 367 211 2.7848348520160093e-01 -3.3423424484720043e-01 3.8549778481142249e-01 5.9779085720101344e-01 1.3957000000000000e-01 1 0 0 0 0 P 368 -211 3.5899433419374238e-02 -1.2781310195533430e-01 1.1729520868379965e-01 2.2552806750259019e-01 1.3957000000000000e-01 1 0 0 0 0 P 369 221 2.0182479300034090e-01 -1.7797298332214723e-01 4.3753450814863803e-01 7.5069672850165425e-01 5.4744999999999999e-01 2 0 0 -171 0 V -70 0 0 0 0 0 0 2 0 P 370 211 6.8983184216840976e-01 -4.1143035497139790e-01 7.7094495687011755e-01 1.1220422536093815e+00 1.3957000000000000e-01 1 0 0 0 0 P 371 -211 -1.8857073083959253e-01 -2.0366756203949593e-02 7.6623657865404549e-01 8.0160589110553970e-01 1.3957000000000000e-01 1 0 0 0 0 V -71 0 0 0 0 0 0 2 0 P 372 2212 6.5675069035641587e-01 -9.7147107194644045e-01 2.5255427405922277e+00 2.9383318805693981e+00 9.3827000000000005e-01 1 0 0 0 0 P 373 -211 -9.6340321130723439e-03 -7.3329938373576167e-02 1.1267356300490225e-01 1.9402373859104938e-01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 374 22 1.5114081988176223e-01 -1.0421467584987865e+00 1.1928799948306383e+00 1.5911870084157937e+00 0 1 0 0 0 0 P 375 22 -2.9095298049396429e-01 -3.9055249343160792e-01 5.6051343288466704e-01 7.4253632599901898e-01 0 1 0 0 0 0 V -73 0 0 0 0 0 0 2 0 P 376 -2112 7.6964311807977337e-01 -1.3732545698925434e+00 3.0166237874413904e+00 3.5300126774270302e+00 9.3957000000000002e-01 1 0 0 0 0 P 377 111 -6.7018424288472503e-02 -1.6185368657039093e-01 3.0847430386955427e-01 3.7955774474820320e-01 1.3497999999999999e-01 2 0 0 -172 0 V -74 0 0 0 0 0 0 2 0 P 378 22 2.2640706598129223e-01 -9.7084278252676171e-01 2.8430472060192771e+00 3.0127584177236284e+00 0 1 0 0 0 0 P 379 22 3.3687108725417347e-01 -6.6042525678135389e-01 3.8569431758823236e+00 3.9275506758293717e+00 0 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 380 -211 3.4851583694759375e-01 -5.0471081241815048e-02 1.5589876174455641e+00 1.6043480903138185e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.5571906859191427e-01 -9.5022757446219552e-01 2.4377721778895882e+00 2.6439404854725366e+00 1.3497999999999999e-01 2 0 0 -173 0 V -76 0 0 0 0 0 0 2 0 P 382 211 4.5431790825533552e-01 -3.9623843775284906e-01 3.5975213639881711e+00 3.6503492176181767e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 111 1.7728176132795945e-01 -5.2125332995004325e-01 9.1361878168253998e+00 9.1537577683480578e+00 1.3497999999999999e-01 2 0 0 -174 0 V -77 0 0 0 0 0 0 2 0 P 384 -211 -3.1360534094101078e-01 -1.4326321398964859e+00 1.5775650170230223e+01 1.5844286075318005e+01 1.3957000000000000e-01 1 0 0 0 0 P 385 111 -2.9591524801907926e-01 -3.7429873800469604e-01 2.8371673518408707e+00 2.8801742242499566e+00 1.3497999999999999e-01 2 0 0 -175 0 V -78 0 0 0 0 0 0 2 0 P 386 211 -5.1234342909888853e-01 1.6481351159925531e-01 1.3854720010185996e+01 1.3865871975050640e+01 1.3957000000000000e-01 1 0 0 0 0 P 387 111 3.9132925495103138e-02 -3.1093235958530552e-01 1.6086598090315931e+01 1.6090216531726703e+01 1.3497999999999999e-01 2 0 0 -176 0 V -79 0 0 0 0 0 0 3 0 P 388 211 -2.2010665653869918e-01 -3.7840520821899098e-01 1.0356827592199917e+01 1.0367014758420739e+01 1.3957000000000000e-01 1 0 0 0 0 P 389 -211 1.8014414327519915e-01 -5.0257743408370981e-01 1.6312098132895112e+01 1.6321429510668075e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 111 -1.3564321600352311e-01 -4.5941905201115307e-01 2.0299606338515286e+01 2.0305706144985173e+01 1.3497999999999999e-01 2 0 0 -177 0 V -80 0 0 0 0 0 0 2 0 P 391 -211 -3.6013316151179109e-01 1.3581563341815253e-01 1.1230011184642867e+01 1.1237471814087240e+01 1.3957000000000000e-01 1 0 0 0 0 P 392 211 -7.1208628990636291e-02 -1.2484204621028375e-01 1.6410652982116831e+00 1.6532487118516974e+00 1.3957000000000000e-01 1 0 0 0 0 V -81 0 0 0 0 0 0 2 0 P 393 -211 -5.1257537386430607e-01 -8.8186007329528260e-01 4.2945534614920597e+01 4.2957872780772185e+01 1.3957000000000000e-01 1 0 0 0 0 P 394 111 -7.3755146927003945e-01 -2.9265144780695673e-01 1.9561541711028688e+01 1.9578093899878024e+01 1.3497999999999999e-01 2 0 0 -178 0 V -82 0 0 0 0 0 0 2 0 P 395 211 -6.3436402900425559e-01 5.8402474956215134e-01 2.5205975701515957e+01 2.5221106111344689e+01 1.3957000000000000e-01 1 0 0 0 0 P 396 111 1.7155332809383256e-01 -9.2134191860241137e-05 6.0071690966261970e+00 6.0111338954251865e+00 1.3497999999999999e-01 2 0 0 -179 0 V -83 0 0 0 0 0 0 2 0 P 397 22 9.0896224106974899e-01 2.6426185446286166e-01 3.5422143972163397e+01 3.5434789829602288e+01 0 1 0 0 0 0 P 398 111 9.4175056615804026e-02 5.1944433037490578e-01 1.7238859340118029e+01 1.7247468866544502e+01 1.3497999999999999e-01 2 0 0 -180 0 V -84 0 0 0 0 0 0 2 0 P 399 -211 1.7998652190564260e-01 -1.4562572699266582e-01 1.6405261095718068e+01 1.6407488333197456e+01 1.3957000000000000e-01 1 0 0 0 0 P 400 111 6.1074171706580428e-03 6.1650547455272764e-01 3.0940450362644491e+01 3.0946886831220446e+01 1.3497999999999999e-01 2 0 0 -181 0 V -85 0 0 0 0 0 0 2 0 P 401 211 1.3838395600779609e+00 7.7675880220554036e-02 5.2136695552433721e+01 5.2155302207757046e+01 1.3957000000000000e-01 1 0 0 0 0 P 402 111 -4.5746423227123197e-02 -1.3960526043366997e-02 9.2721574462017475e+00 9.2732632303348321e+00 1.3497999999999999e-01 2 0 0 -182 0 V -86 0 0 0 0 0 0 2 0 P 403 211 7.2857996074761644e-01 4.1553357159059978e-01 6.2819157675742417e+01 6.2824911840630620e+01 1.3957000000000000e-01 1 0 0 0 0 P 404 -211 9.5901527558797967e-02 7.1498808094299482e-02 5.7003466445290741e+01 5.7003762820947479e+01 1.3957000000000000e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 405 -211 5.5026146329129742e-02 -4.6602149520370451e-01 2.1850271128066328e+01 2.1855755124581734e+01 1.3957000000000000e-01 1 0 0 0 0 P 406 211 8.8140392276748003e-01 -1.5355520998161576e+00 9.7032872564722794e+01 9.7049124834142390e+01 1.3957000000000000e-01 1 0 0 0 0 P 407 111 4.3721337395780346e-01 -1.2838661014577484e+00 8.1948224174508795e+01 8.1959557909110188e+01 1.3497999999999999e-01 2 0 0 -183 0 V -88 0 0 0 0 0 0 2 0 P 408 -211 7.7031758809808171e-01 1.2716369997181484e-01 1.0215387523999424e+02 1.0215695407619754e+02 1.3957000000000000e-01 1 0 0 0 0 P 409 211 4.9057761450151387e-02 1.3955350880649811e-01 6.2765312554445902e+00 6.2798253344540997e+00 1.3957000000000000e-01 1 0 0 0 0 V -89 0 0 0 0 0 0 3 0 P 410 111 -2.1677261634769962e-02 2.1837712318713929e-02 2.0777508768179796e+01 2.0777969992314929e+01 1.3497999999999999e-01 2 0 0 -184 0 P 411 111 6.9883225600702974e-03 -8.7477035247187127e-02 1.3332849320704190e+01 1.3333821345636443e+01 1.3497999999999999e-01 2 0 0 -185 0 P 412 111 -1.4144950788101865e-01 1.2218752917353191e-01 4.8466256206489128e+01 4.8466804598910905e+01 1.3497999999999999e-01 2 0 0 -186 0 V -90 0 0 0 0 0 0 3 0 P 413 -211 6.9092256790205822e-02 -7.3852907243934229e-02 8.5719036118345215e+01 8.5719209403930748e+01 1.3957000000000000e-01 1 0 0 0 0 P 414 211 1.5804983505946495e-02 1.4777288371142786e-02 1.8221189996498669e+01 1.8221737371588869e+01 1.3957000000000000e-01 1 0 0 0 0 P 415 111 2.1106826363844720e-02 8.4567718804202538e-02 2.6846062152839943e+02 2.6846066961142020e+02 1.3497999999999999e-01 2 0 0 -187 0 V -91 0 0 0 0 0 0 2 0 P 416 211 -8.7858801090971057e-03 -5.9160013497779995e-01 6.1462034723411580e+02 6.1462064786490976e+02 1.3957000000000000e-01 1 0 0 0 0 P 417 -211 -1.4857797705621353e-01 -8.8889190883779212e-01 3.5239021191337071e+02 3.5239139197258504e+02 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 3 0 P 418 211 1.9173187324304894e-01 1.4177184931694289e-01 4.1974107468740074e-01 5.0251639093244382e-01 1.3957000000000000e-01 1 0 0 0 0 P 419 -211 2.4777939303405997e-02 1.4976450907929015e-01 3.7345849962036537e-01 4.2660800542720539e-01 1.3957000000000000e-01 1 0 0 0 0 P 420 221 1.0108310691972915e-01 1.0813969065571651e-01 4.7238583741907175e-01 7.3807985278950483e-01 5.4744999999999999e-01 2 0 0 -188 0 V -93 0 8.8614260160638382e-05 -1.9205743115992772e-05 6.2577143800353726e-05 1.2184024074772208e-04 0 2 0 P 421 22 1.4937475289244201e-01 -7.2625272438234315e-02 1.6253872286247756e-01 2.3239208985714457e-01 0 1 0 0 0 0 P 422 22 8.0486058222521528e-02 2.2806567382130150e-02 -2.1684594185671696e-04 8.3655197723257274e-02 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 423 -211 -7.8204128223218805e-01 7.5614889943791963e-01 -7.4861984916674462e+00 7.5661084691392366e+00 1.3957000000000000e-01 1 0 0 0 0 P 424 111 2.3255830309780054e-01 2.0288997003157741e-01 -1.4937167441799306e+00 1.5312272909410396e+00 1.3497999999999999e-01 2 0 0 -189 0 V -95 0 0 0 0 0 0 2 0 P 425 2212 4.5647545228043396e-01 -1.1140433831688563e-01 -1.2126566885452833e+02 1.2127020893069391e+02 9.3827000000000005e-01 1 0 0 0 0 P 426 211 -5.9000925115658708e-02 1.1121496750602367e-01 -1.5074797024970575e+01 1.5075968791660573e+01 1.3957000000000000e-01 1 0 0 0 0 V -96 0 0 0 0 0 0 2 0 P 427 -2212 -1.3072230570276372e-01 -1.7892225551353019e-01 -2.9712410467673669e+02 2.9712566875320618e+02 9.3827000000000005e-01 1 0 0 0 0 P 428 111 -2.2480010667491718e-01 2.4637720569586083e-01 -1.0131440288883377e+02 1.0131504177138149e+02 1.3497999999999999e-01 2 0 0 -190 0 V -97 0 0 0 0 0 0 2 0 P 429 2112 2.9357461669539409e-01 8.3186522226129234e-01 -1.0235777711237882e+03 1.0235785824822296e+03 9.3957000000000002e-01 1 0 0 0 0 P 430 111 -7.7435955417075167e-02 -4.7945677002907923e-02 -9.8408634427442522e+01 9.8408769144774695e+01 1.3497999999999999e-01 2 0 0 -191 0 V -98 0 0 0 0 0 0 2 0 P 431 -211 7.8595314844738667e-02 2.1843479597838567e-01 -1.8052883068822703e+00 1.8254962721067158e+00 1.3957000000000000e-01 1 0 0 0 0 P 432 111 -4.8011027500816772e-01 3.5507687131658252e+00 -3.2522070093737547e+01 3.2719133960313556e+01 1.3497999999999999e-01 2 0 0 -192 0 V -99 0 0 0 0 0 0 2 0 P 433 22 -6.1183810521068949e-01 3.8868096624442550e-01 -3.0994279392832174e+00 3.1830602117016138e+00 0 1 0 0 0 0 P 434 113 -1.2985165558818097e+00 1.6682701758828831e+00 -1.4060607450616317e+01 1.4231432991083315e+01 6.0310237416879398e-01 2 0 0 -193 0 V -100 0 0 0 0 0 0 2 0 P 435 -211 -3.7918697642735721e-01 6.7511573006078118e-01 -1.1669516784687082e+00 1.4074160780837193e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -1.4738616084775324e-01 5.6998784936287329e-02 -1.5194167496280955e+00 1.5335639541095309e+00 1.3497999999999999e-01 2 0 0 -194 0 V -101 0 -4.9275822512791998e-05 7.0661138953492902e-06 -2.5457034950437956e-04 2.5941334979290564e-04 0 2 0 P 437 22 -1.8229556149851037e-01 -1.2849175469491584e-02 -9.3033545487038249e-01 9.4811435578266867e-01 0 1 0 0 0 0 P 438 22 -1.8063397301013717e+00 2.9801790021493929e-01 -9.3434165679985188e+00 9.5210877032270034e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 439 211 -6.7102305857259514e-01 -4.0575526931628320e-01 -4.6805218233447254e+00 4.7478072420244990e+00 1.3957000000000000e-01 1 0 0 0 0 P 440 -211 -6.1718875130524686e-01 -3.1552968940478576e-01 -2.4896427087015871e+00 2.5881038506065761e+00 1.3957000000000000e-01 1 0 0 0 0 P 441 111 -6.8545260669255689e-03 -4.3366274689244914e-02 -6.5558862137875962e-01 6.7077839797456795e-01 1.3497999999999999e-01 2 0 0 -195 0 V -103 0 0 0 0 0 0 3 0 P 442 211 -4.1476258190075632e-01 -9.3001270880391340e-02 -2.8739040796315165e+00 2.9085188119647816e+00 1.3957000000000000e-01 1 0 0 0 0 P 443 -211 -6.4231756251543967e-02 -3.6009712601321874e-02 -2.2291965308975625e-01 2.7312153804935418e-01 1.3957000000000000e-01 1 0 0 0 0 P 444 111 -5.4041193010347521e-01 2.1608690628860755e-02 -2.3034706476281102e+00 2.3699596229879365e+00 1.3497999999999999e-01 2 0 0 -196 0 V -104 0 -4.6906263753148636e-05 -1.2221253652488468e-04 -9.8254428195633362e-04 9.9133402619271073e-04 0 2 0 P 445 22 -2.4212067568491508e-01 -5.5171204703804555e-01 -4.9784026847355571e+00 5.0147284967207586e+00 0 1 0 0 0 0 P 446 22 -1.9090420364062843e-01 -5.7651827118260746e-01 -4.0921581547554000e+00 4.1369766853955277e+00 0 1 0 0 0 0 V -105 0 0 0 0 0 0 2 0 P 447 -211 -2.5193142070019092e-01 2.3805514906495040e-01 -6.0423533634480142e+00 6.0538957414547436e+00 1.3957000000000000e-01 1 0 0 0 0 P 448 211 2.2819297070303043e-01 -1.6415970969360533e-01 -1.7621661693840995e+00 1.7898965991326967e+00 1.3957000000000000e-01 1 0 0 0 0 V -106 0 0 0 0 0 0 2 0 P 449 -2112 -2.6308173180292155e-01 -1.1419800220779119e+00 -2.4648583485377404e+01 2.4694306833538640e+01 9.3957000000000002e-01 1 0 0 0 0 P 450 -211 9.7805419333484772e-02 -1.6212246335222635e-01 -3.1187903539476376e+00 3.1276481020011224e+00 1.3957000000000000e-01 1 0 0 0 0 V -107 0 0 0 0 0 0 1 0 P 451 310 3.9008138510874518e-01 -1.5275535169163128e+00 -7.0789258748108878e+01 7.0808561719397048e+01 4.9767000000000000e-01 2 0 0 -197 0 V -108 0 0 0 0 0 0 2 0 P 452 211 -2.1972790853334513e-02 -3.2624597759583773e-01 -1.7206669552161703e+01 1.7210342126280462e+01 1.3957000000000000e-01 1 0 0 0 0 P 453 111 -1.3389353629886009e+00 -4.1057784199535039e+00 -2.9080190998614410e+02 2.9083400632582476e+02 1.3497999999999999e-01 2 0 0 -198 0 V -109 0 0 0 0 0 0 2 0 P 454 2112 5.8846751214971771e-01 -7.4027463896910151e-01 -1.2091036663083530e+02 1.2091771520807804e+02 9.3957000000000002e-01 1 0 0 0 0 P 455 111 1.0821892703480351e-01 -1.8463106810596860e-01 -8.6023301654923312e+00 8.6060504207224948e+00 1.3497999999999999e-01 2 0 0 -199 0 V -110 0 0 0 0 0 0 2 0 P 456 -2212 7.9081465387851435e-01 -9.9785310864047527e-01 -2.2194887736288482e+02 2.2195451248370915e+02 9.3827000000000005e-01 1 0 0 0 0 P 457 -211 -2.0194198882922419e-02 -2.3055130362775828e-01 -2.5139240114841765e+01 2.5140692811572286e+01 1.3957000000000000e-01 1 0 0 0 0 V -111 0 0 0 0 0 0 2 0 P 458 -2112 -7.7491382199421210e-01 1.0558817986814673e-01 -1.0827771937645640e+02 1.0828462007804612e+02 9.3957000000000002e-01 1 0 0 0 0 P 459 211 -9.9928339738354868e-02 -1.4059869561993965e-01 -5.1032399358228631e+01 5.1032881730399339e+01 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 460 -211 -1.7336432491089007e+00 -2.2414381816314603e-02 -1.6316635351593828e+02 1.6317562446883034e+02 1.3957000000000000e-01 1 0 0 0 0 P 461 111 -4.3761801943459389e-01 -3.0582368040300700e-01 -4.9749451679492942e+01 4.9752499431335430e+01 1.3497999999999999e-01 2 0 0 -200 0 V -113 0 0 0 0 0 0 2 0 P 462 2112 -3.0637156620669509e-01 8.0125595836388264e-01 -1.9162861096553587e+02 1.9163283436565089e+02 9.3957000000000002e-01 1 0 0 0 0 P 463 -211 -2.1986820665902077e-01 1.1904195373478234e-01 -2.9627114029258273e+01 2.9628497742926839e+01 1.3957000000000000e-01 1 0 0 0 0 V -114 0 0 0 0 0 0 2 0 P 464 -2112 -8.8617158525268902e-01 9.6898483102912891e-01 -2.1553676080218526e+02 2.1554280846403714e+02 9.3957000000000002e-01 1 0 0 0 0 P 465 211 -3.6759435977479488e-01 5.0854995344152532e-01 -7.1546674098992469e+01 7.1549561865051444e+01 1.3957000000000000e-01 1 0 0 0 0 V -115 0 0 0 0 0 0 2 0 P 466 321 7.9718700036665910e-02 9.9199918773705331e-01 -4.1153373238873421e+01 4.1168363914025413e+01 4.9359999999999998e-01 1 0 0 0 0 P 467 -211 2.0959354158218355e-02 5.4062611163280497e-02 -1.6352587757682648e+00 1.6422280928907671e+00 1.3957000000000000e-01 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 468 -321 -5.3554684720145317e-02 6.4237427019267368e-01 -9.6145960796342720e+01 9.6149388615940410e+01 4.9359999999999998e-01 1 0 0 0 0 P 469 211 -3.3818337590445563e-01 7.7965145597166419e-01 -6.3483193755764816e+01 6.3489035223457392e+01 1.3957000000000000e-01 1 0 0 0 0 V -117 0 5.2318908866169861e-05 3.6579421485158085e-05 3.2678718455786247e-04 3.3425607292410947e-04 0 2 0 P 470 22 1.8266412630151260e-01 1.5932520980673923e-01 1.3792066253718847e+00 1.4003433939527687e+00 0 1 0 0 0 0 P 471 22 5.7877694041638790e-02 8.8526215323388273e-03 1.2323266363227396e-01 1.3643491401205765e-01 0 1 0 0 0 0 V -118 0 0 0 0 0 0 3 0 P 472 -211 5.8240180193788149e-01 -7.5473666151519558e-01 4.6725645894455701e+00 4.7708656357705408e+00 1.3957000000000000e-01 1 0 0 0 0 P 473 211 5.3111079302644382e-01 -2.3403290644079899e-01 3.4379787548848668e+00 3.4894165385786211e+00 1.3957000000000000e-01 1 0 0 0 0 P 474 111 4.5468807703528752e-01 -1.1237505519541752e-01 1.8728840077388604e+00 1.9352734967627176e+00 1.3497999999999999e-01 2 0 0 -201 0 V -119 0 3.5077352219168098e-04 -3.3583918826718676e-05 1.4995198168166006e-03 1.5406424852077560e-03 0 2 0 P 475 22 1.5939966107531871e+00 -1.3355826438208993e-01 6.8043520657159329e+00 6.9898404873995581e+00 0 1 0 0 0 0 P 476 22 3.0347564233177846e-02 -2.1960437766658396e-02 1.3954798838123139e-01 1.4448832666703018e-01 0 1 0 0 0 0 V -120 0 0 0 0 0 0 2 0 P 477 22 8.1526290073245911e-02 4.0771981638271351e-02 1.8785239564833603e-01 2.0879993537029071e-01 0 1 0 0 0 0 P 478 113 -5.2705728800034539e-02 -1.7179447085102814e-01 8.6040947284768645e+00 8.6361857307329455e+00 7.2178019164331098e-01 2 0 0 -202 0 V -121 0 0 0 0 0 0 2 0 P 479 -211 -1.1492326116213154e-01 1.3553570072240281e-01 1.3712950593471820e+00 1.3897867486835682e+00 1.3957000000000000e-01 1 0 0 0 0 P 480 211 3.9698466434645641e-01 1.1001451135355901e-01 1.4442965116955381e+01 1.4449512835072490e+01 1.3957000000000000e-01 1 0 0 0 0 V -122 0 1.9686373992394057e-06 5.5303707840317438e-06 1.4241279888082432e-05 1.5708940869343237e-05 0 2 0 P 481 22 5.2347122365422195e-02 1.1036021575484060e-01 1.4146929533133645e-01 1.8690414645732278e-01 0 1 0 0 0 0 P 482 22 3.3883079299114813e-02 1.3188093447981819e-01 4.8232685787845164e-01 5.0117845302143660e-01 0 1 0 0 0 0 V -123 0 -1.0796146644315501e-04 -3.4650083619040744e-05 4.0427024998893838e-04 4.2007287114622017e-04 0 2 0 P 483 22 -9.2458993266648781e-01 -3.0798553088771941e-01 3.6391071529418921e+00 3.7673362607308167e+00 0 1 0 0 0 0 P 484 22 -1.9152056388825436e-01 -5.0228592241791631e-02 5.4025687686257207e-01 5.7539597745202176e-01 0 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 485 22 5.4439475698488553e-02 -3.0736169358088400e-01 1.6594688086673335e+00 1.6885708732934530e+00 0 1 0 0 0 0 P 486 22 2.1433637942143127e-01 -2.3985562799515983e-01 3.1975150077366887e-01 4.5355465830642044e-01 0 1 0 0 0 0 V -125 0 -5.2216246139961579e-05 3.1601354358726787e-05 1.2813749833128471e-05 6.2466003138217694e-05 0 2 0 P 487 22 -2.9465078976023806e-01 1.2446978490510306e-01 7.2947601427002712e-02 3.2807494237537743e-01 0 1 0 0 0 0 P 488 22 -1.6887844056311767e+00 1.0759083175178057e+00 4.1378295242867474e-01 2.0446974857243863e+00 0 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 489 -211 1.3952162275891509e+00 -1.1200017921607484e-01 -1.8920237025580249e+01 1.8972454275894574e+01 1.3957000000000000e-01 1 0 0 0 0 P 490 111 4.3045295205137857e-01 1.6827365481197512e-01 -1.2565037225240808e+01 1.2574258858434590e+01 1.3497999999999999e-01 2 0 0 -203 0 V -127 0 0 0 0 0 0 2 0 P 491 211 1.8725300200231912e-01 6.5108299074054105e-02 -7.1054858346587348e+00 7.1096210524051937e+00 1.3957000000000000e-01 1 0 0 0 0 P 492 111 -1.4219474210785180e-01 -2.6166562986616455e-03 -4.7075958369040869e+00 4.7116774460493360e+00 1.3497999999999999e-01 2 0 0 -204 0 V -128 0 0 0 0 0 0 2 0 P 493 211 1.5061846814412688e-01 3.2693588382798254e-02 -4.4353266663800088e+00 4.4401978802829305e+00 1.3957000000000000e-01 1 0 0 0 0 P 494 111 -8.2975634625215589e-01 -1.0463680588776036e-01 -1.5855332863063813e+01 1.5877948364138343e+01 1.3497999999999999e-01 2 0 0 -205 0 V -129 0 0 0 0 0 0 2 0 P 495 211 2.0801151128511147e-02 -8.8401138894077413e-02 -9.1822740812415726e-01 9.3320351862626882e-01 1.3957000000000000e-01 1 0 0 0 0 P 496 -211 4.0002014610764774e-01 9.5803875148365114e-01 -4.1150460485771196e+00 4.2462852157440514e+00 1.3957000000000000e-01 1 0 0 0 0 V -130 0 0 0 0 0 0 2 0 P 497 211 -6.6620043579804306e-02 -3.8671234659421558e-02 -5.3881783861967358e-01 5.6190581302513298e-01 1.3957000000000000e-01 1 0 0 0 0 P 498 111 -5.9753625473748587e-02 -8.1080595956683976e-01 -6.4952884464184257e-01 1.0493255549390417e+00 1.3497999999999999e-01 2 0 0 -206 0 V -131 0 0 0 0 0 0 2 0 P 499 321 -9.9178269242689854e-02 4.0401998341760498e-01 -7.5268094976009992e-01 9.9158360626953856e-01 4.9359999999999998e-01 1 0 0 0 0 P 500 -211 -1.8625290391178151e-01 -1.7919515851865531e-01 -1.5073105117264160e-01 3.3015251587668815e-01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 501 22 4.7425473385707850e-01 7.9323364794636100e-02 -4.7379618395365597e+00 4.7622990395073739e+00 0 1 0 0 0 0 P 502 22 -6.1867586504988442e-02 1.4479562972834045e-01 -4.9318754587720566e+00 4.9343884031849843e+00 0 1 0 0 0 0 V -133 0 0 0 0 0 0 2 0 P 503 -311 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 2 0 0 -207 0 P 504 111 8.6409255727351850e-02 -9.5414871722545147e-02 -1.3258601716960836e+00 1.3389157376441405e+00 1.3497999999999999e-01 2 0 0 -208 0 V -134 0 0 0 0 0 0 3 0 P 505 -211 1.4225854778794583e-01 1.7041821011440441e-02 -5.5083339604025987e+00 5.5119643252026496e+00 1.3957000000000000e-01 1 0 0 0 0 P 506 211 -1.4107720881536270e-02 8.5127213061654231e-02 -3.9087883622364373e+01 3.9088228042859569e+01 1.3957000000000000e-01 1 0 0 0 0 P 507 111 1.6703357996876647e-01 -1.0892780320401577e-01 -1.7249871805429915e+01 1.7251552463106442e+01 1.3497999999999999e-01 2 0 0 -209 0 V -135 0 0 0 0 0 0 3 0 P 508 211 -2.5817525732431779e-01 3.3706163801431002e-02 -7.1403369450109677e+00 7.1464454130820343e+00 1.3957000000000000e-01 1 0 0 0 0 P 509 -211 1.1734115969327032e-01 -1.7309197020497577e-01 -7.3396762323509277e+00 7.3439809884384033e+00 1.3957000000000000e-01 1 0 0 0 0 P 510 111 6.9358928792052854e-02 -1.2776487916733750e-01 -3.3473128221427770e+00 3.3531861348623742e+00 1.3497999999999999e-01 2 0 0 -210 0 V -136 0 0 0 0 0 0 2 0 P 511 -211 -1.2047649407579651e-01 -4.2771179832827311e-01 -5.4212052512571177e+01 5.4214053246171595e+01 1.3957000000000000e-01 1 0 0 0 0 P 512 211 6.4055160844649406e-01 -3.5921667792042467e-01 -7.5781094032776821e+01 7.5784781028741136e+01 1.3957000000000000e-01 1 0 0 0 0 V -137 0 0 0 0 0 0 2 0 P 513 -321 -4.8377072580336111e-03 3.5469088021954326e-01 -2.2965032716714978e+02 2.2965113158432914e+02 4.9359999999999998e-01 1 0 0 0 0 P 514 211 7.9591735087793936e-02 3.2153579512434560e-01 -3.3163109663442941e+02 3.3163129142897691e+02 1.3957000000000000e-01 1 0 0 0 0 V -138 0 1.7527944554182279e-06 -1.3216893100866474e-06 -2.9987669660695124e-04 2.9988564395488004e-04 0 2 0 P 515 22 4.2687248114623806e-03 -1.2493951962920221e-02 -7.8910727507023308e+00 7.8910837961413147e+00 0 1 0 0 0 0 P 516 22 3.1558737274088211e-01 -2.2869256228817300e-01 -4.6831481640708795e+01 4.6833103338791503e+01 0 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 517 311 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -211 0 P 518 211 2.2872942692541226e-01 2.9508018390042912e-01 -1.4610750785719796e+01 1.4616186498980641e+01 1.3957000000000000e-01 1 0 0 0 0 V -140 0 0 0 0 0 0 2 0 P 519 -311 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 2 0 0 -212 0 P 520 -211 -9.8727393571171440e-02 -7.9162813741766619e-02 -9.8295384096922744e-01 1.0008455863403845e+00 1.3957000000000000e-01 1 0 0 0 0 V -141 0 0 0 0 0 0 3 0 P 521 111 -4.7809061756595085e-02 -1.1744692207374245e-01 -6.7080065987515902e-01 6.9589698345343498e-01 1.3497999999999999e-01 2 0 0 -213 0 P 522 111 2.7383748699990303e-03 -2.5570859930017142e-01 -6.5590826218892662e-01 7.1681910916261293e-01 1.3497999999999999e-01 2 0 0 -214 0 P 523 111 2.2122277615129943e-01 -2.3343781869952412e-01 -1.0926442687339883e+00 1.1469628722345426e+00 1.3497999999999999e-01 2 0 0 -215 0 V -142 0 4.3553295221904181e-01 9.2269902071506338e-01 1.1883062990838523e+01 1.1927000312671099e+01 0 2 0 P 524 22 2.8931379374386579e-01 5.5117985952323578e-01 8.8785811440121361e+00 8.9003766684114201e+00 0 1 0 0 0 0 P 525 22 1.0856345494537722e+00 2.2881506306452364e+00 3.2689415347038022e+01 3.2787377318331743e+01 0 1 0 0 0 0 V -143 0 7.4549140510790131e-05 -5.5713556911073003e-05 6.9763829659713370e-05 1.2186216700677129e-04 0 2 0 P 526 22 -8.2019968566538447e-03 2.0234355144485333e-03 -6.3406266212371505e-03 1.0562698029747521e-02 0 1 0 0 0 0 P 527 22 2.8497627939870795e-01 -2.0886793615220239e-01 2.6534876231742960e-01 4.4186792170942063e-01 0 1 0 0 0 0 V -144 0 -1.0446871824117720e-05 -1.0364753656648250e-06 -4.4925011630097772e-06 1.1648095480396876e-05 0 2 0 P 528 22 -2.2244031186969035e-01 -1.2533908917936615e-02 -2.7281509057465479e-02 2.2445728313846441e-01 0 1 0 0 0 0 P 529 22 -3.9099410821804659e-01 -4.8327339844012634e-02 -2.3651562486660557e-01 4.5951231239615881e-01 0 1 0 0 0 0 V -145 0 -4.9209201804216552e-06 -5.9489768515649160e-06 -4.0496413537414356e-06 1.0543619073119500e-05 0 2 0 P 530 22 -1.3747186497283917e-01 -1.1834859580333407e-01 -1.0163655706251823e-01 2.0793002072633451e-01 0 1 0 0 0 0 P 531 22 2.5456988385918800e-02 -1.7067928629986677e-02 9.4545951877033560e-03 3.2074317070866158e-02 0 1 0 0 0 0 V -146 0 -1.3827182148201422e-05 -3.0335428740758462e-05 -3.6059535814902079e-05 4.9943117916170825e-05 0 2 0 P 532 22 -1.0291102724851901e-01 -1.7471342736489895e-01 -3.1251663828659632e-01 3.7253471037862934e-01 0 1 0 0 0 0 P 533 22 -1.0245300649654818e-01 -2.7583433752431574e-01 -2.2304669273426975e-01 3.6923031760319242e-01 0 1 0 0 0 0 V -147 0 1.7866387459979162e-04 3.3940399026452637e-05 -5.5779996742632101e-04 5.8880626925412994e-04 0 2 0 P 534 22 9.0156284313061538e-02 7.3364227371896754e-02 -3.6696477417450074e-01 3.8493325518062893e-01 0 1 0 0 0 0 P 535 22 3.9417515169153622e-01 1.8643192907513383e-02 -1.1451487397189395e+00 1.2112337738573453e+00 0 1 0 0 0 0 V -148 0 1.5526811023645269e-04 6.6455334941560720e-05 -3.3855388481017429e-03 3.3901195720121634e-03 0 2 0 P 536 22 2.5818611403193403e-01 1.7033042577315605e-01 -6.6000404199358647e+00 6.6072843187053891e+00 0 1 0 0 0 0 P 537 22 1.5989649827230745e-01 8.6105041551465412e-03 -2.5160293481340248e+00 2.5211197336924069e+00 0 1 0 0 0 0 V -149 0 7.2529715193879701e-05 -1.4690664520602360e-05 -5.7332155452730202e-04 5.7868011744165789e-04 0 2 0 P 538 22 3.0671920491466848e-01 -2.1415875940039346e-02 -1.9799760299708333e+00 2.0037066625793365e+00 0 1 0 0 0 0 P 539 22 6.4186098697274596e-02 -5.3709820744552196e-02 -9.5189823260953343e-01 9.5557042930154579e-01 0 1 0 0 0 0 V -150 0 3.4977500751212862e-05 -9.0910073544654049e-06 -4.3213422549400324e-05 5.8732420705780224e-05 0 2 0 P 540 22 2.8122996468926652e-02 2.3139561216032611e-02 -6.4180389790431582e-03 3.6980176419242311e-02 0 1 0 0 0 0 P 541 22 2.5605057806319881e-01 -9.6999156685462884e-02 -3.4466801605318848e-01 4.4018947762779376e-01 0 1 0 0 0 0 V -151 0 -1.0775534259433855e-04 3.3860545091989095e-05 -2.8163746315440030e-04 3.0382503180355569e-04 0 2 0 P 542 22 -4.1748328940694612e-01 2.0120342520193288e-01 -1.1243106915250403e+00 1.2160796217043304e+00 0 1 0 0 0 0 P 543 22 -5.3693933981862596e-01 9.8709968376802001e-02 -1.3702400342258485e+00 1.4749933097804426e+00 0 1 0 0 0 0 V -152 0 2.2637848897208109e-05 -8.5237106755244250e-05 -2.8555125925595285e-04 3.1282439270862881e-04 0 2 0 P 544 22 3.3322368581920503e-02 2.1747731258736615e-02 -7.5544789244305063e-02 8.5383600561103321e-02 0 1 0 0 0 0 P 545 22 -2.6019934561552401e-04 -1.4623498539454957e-01 -3.4149766483465338e-01 3.7149077208534353e-01 0 1 0 0 0 0 V -153 0 -1.5980756545795372e-04 -1.3898698689719089e-05 -3.1393406685190805e-04 3.5338645240572673e-04 0 2 0 P 546 22 -5.3506827370041254e-01 -4.6631344643884895e-02 -1.1907466742080999e+00 1.3062733947997545e+00 0 1 0 0 0 0 P 547 22 -3.4868910549881071e-01 -3.0230332668492219e-02 -5.4535103410341612e-01 6.4800132384468989e-01 0 1 0 0 0 0 V -154 0 -6.3130523609729116e-05 -7.5315123686702683e-04 -8.2236634091199269e-04 1.1203562523700783e-03 0 2 0 P 548 22 1.1015665929753610e-02 -6.3897991812966881e-01 -6.6253692779380602e-01 9.2052803398882310e-01 0 1 0 0 0 0 P 549 22 -1.0819192794668329e-01 -5.2033918374588917e-01 -6.0332437746632972e-01 8.0402653181303152e-01 0 1 0 0 0 0 V -155 0 3.2143381626660110e-05 6.5611725966495973e-06 4.4008451615632758e-05 5.8488296283302674e-05 0 2 0 P 550 22 1.0544295108123020e-01 -3.4498365327997006e-03 2.3557776238824138e-01 2.5812206305674928e-01 0 1 0 0 0 0 P 551 22 1.0938407486226136e-01 4.7300767091739339e-02 5.8548253560341892e-02 1.3277852385045502e-01 0 1 0 0 0 0 V -156 0 -3.5452259046247017e-05 -7.2995864286289443e-05 -5.1390127431563749e-05 9.7571184262060991e-05 0 2 0 P 552 22 -1.9798126262379626e-01 -2.6504570114930182e-01 -1.7509571553794673e-01 3.7430510769635916e-01 0 1 0 0 0 0 P 553 22 -8.1138095195689000e-02 -3.0965840265658151e-01 -2.2950415349291114e-01 3.9388307059114364e-01 0 1 0 0 0 0 V -157 0 -1.3345338878477742e-05 -1.7125229223215404e-05 6.1990993773087014e-06 2.3354811653370376e-05 0 2 0 P 554 22 -4.4316209452028396e-02 -8.6217726714066106e-02 8.3541828664441375e-02 1.2797132474322642e-01 0 1 0 0 0 0 P 555 22 -2.5739292549734549e-01 -3.0094652155232349e-01 5.6606347985408700e-02 4.0003025580919543e-01 0 1 0 0 0 0 V -158 0 -2.5727603064668183e-04 2.1792525911790159e-04 1.3908777321292520e-04 3.6764002492298324e-04 0 2 0 P 556 22 -1.4865321497905377e-02 1.5943997275793709e-02 3.5712994186855307e-02 4.1840253179886044e-02 0 1 0 0 0 0 P 557 22 -7.3733893161235586e-01 6.2120943810878437e-01 3.7094134630270303e-01 1.0330379220839589e+00 0 1 0 0 0 0 V -159 0 3.0627117761726698e+01 1.3141971120815964e+02 3.2651209389538309e+01 1.7218819217960470e+02 0 2 0 P 558 -211 -2.6612427220895882e-02 4.6849662704332645e-01 -4.4504203352452962e-02 4.9158694027567257e-01 1.3957000000000000e-01 1 0 0 0 0 P 559 211 1.7626517655937549e-01 1.7365720710385671e-01 2.0404723617668519e-01 3.4977320871954093e-01 1.3957000000000000e-01 1 0 0 0 0 V -160 0 -3.0530269283521600e-06 5.7626651119506302e-06 1.4037615380282384e-06 7.2635690152330765e-06 0 2 0 P 560 22 -9.0960275379681418e-02 8.8826735685521838e-02 8.1907555029945775e-02 1.5123758871615420e-01 0 1 0 0 0 0 P 561 22 -5.2430231284185287e-02 1.8182645196349184e-01 -1.5977550841689239e-02 1.8990805648271983e-01 0 1 0 0 0 0 V -161 0 -2.2844142250951500e-05 2.2616310501518673e-05 1.1583737681535141e-05 3.6474216532683863e-05 0 2 0 P 562 22 -2.3283718133738132e-01 2.3881311161042698e-01 8.0819077585636820e-02 3.4318592423347427e-01 0 1 0 0 0 0 P 563 22 -8.8050614737232667e-03 4.1915781180006394e-04 4.1712130754438539e-02 4.2633398326929202e-02 0 1 0 0 0 0 V -162 0 -7.0456826195412692e-06 1.5086342247262502e-05 5.0018000512883158e-07 1.6826899941382884e-05 0 2 0 P 564 22 -3.8761452320086198e-01 7.9971159026074501e-01 -4.0777907404131487e-03 8.8870708029750911e-01 0 1 0 0 0 0 P 565 22 -1.2307752723231700e-02 5.6609174197397277e-02 3.2468670208649957e-02 6.6410043860289328e-02 0 1 0 0 0 0 V -163 0 -2.3109962223415762e-05 9.8762857799358292e-05 9.5387817199204668e-06 1.1206681203967465e-04 0 2 0 P 566 22 -2.2336516007126720e-02 4.3719835493910252e-02 -4.6077346222812135e-02 6.7331016611128794e-02 0 1 0 0 0 0 P 567 22 -4.4476239279812979e-02 2.4181151180104188e-01 7.3654729631203633e-02 2.5666312999148572e-01 0 1 0 0 0 0 V -164 0 0 0 0 0 0 1 0 P 568 130 -5.6513782518342159e-01 1.1258170853294880e+00 -8.3600023300929904e-01 1.5916710368554281e+00 4.9767000000000000e-01 1 0 0 0 0 V -165 0 -1.9613561677516819e-06 4.0700691677651203e-05 -3.8951391621231090e-05 5.6745200604099134e-05 0 2 0 P 569 22 1.4775738055481847e-02 5.5526797721820642e-01 -5.9375573838335094e-01 8.1307239888108473e-01 0 1 0 0 0 0 P 570 22 -5.5426904079190410e-02 2.8829659400629187e-01 -2.1355275238619759e-01 3.6303146676721182e-01 0 1 0 0 0 0 V -166 0 7.8237635988022883e-05 3.4078800809782420e-05 6.2863066600044894e-05 1.1654488679843942e-04 0 2 0 P 571 22 1.1175372484247184e-01 1.1034915211480543e-01 6.2319827408693455e-02 1.6896624300987670e-01 0 1 0 0 0 0 P 572 22 1.0616482146836660e-01 -1.5428048751952181e-02 1.1277529039650631e-01 1.5565108457610918e-01 0 1 0 0 0 0 V -167 0 0 0 0 0 0 1 0 P 573 130 5.4813550864253102e-01 -1.7018884684280353e-01 7.3937720479293001e-01 1.0600805909419793e+00 4.9767000000000000e-01 1 0 0 0 0 V -168 0 1.5493882988471805e-04 1.4071034179404914e-04 3.3761140346509285e-04 4.0046927540475497e-04 0 2 0 P 574 22 3.3370271180238198e-01 2.4852931957147076e-01 5.7497661222605501e-01 7.0973405382429888e-01 0 1 0 0 0 0 P 575 22 7.7338644955921618e-02 1.2476490140583157e-01 3.2068169008989816e-01 3.5268157449084070e-01 0 1 0 0 0 0 V -169 0 0 0 0 0 0 1 0 P 576 130 4.7268555293991088e-01 8.6995394054689157e-01 1.5615440876405875e+00 1.9147707061620847e+00 4.9767000000000000e-01 1 0 0 0 0 V -170 0 -2.0276210216922056e-05 -2.4842767607923537e-05 1.3378609837657492e-04 1.3788014846235198e-04 0 2 0 P 577 22 -5.4717313373058546e-02 -1.1285578451512142e-01 3.2899766715906870e-01 3.5209356352736459e-01 0 1 0 0 0 0 P 578 22 -2.4403018535371790e-01 -2.5317487924884713e-01 1.6421923050705356e+00 1.6794177019667613e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 579 22 -1.6086181504354044e-01 -6.0677298924980222e-02 2.9941127658110411e-01 3.4526130783489201e-01 0 1 0 0 0 0 P 580 22 3.6268660804388131e-01 -1.1729568439716702e-01 1.3812323156753387e-01 4.0543542066676214e-01 0 1 0 0 0 0 V -172 0 -9.2393718058419983e-06 -2.2313660821585120e-05 4.2527242564390301e-05 5.2327030406155359e-05 0 2 0 P 581 22 1.3943816139045334e-02 -1.3432906142987217e-01 1.7522874901361241e-01 2.2123255012322540e-01 0 1 0 0 0 0 P 582 22 -8.0962240427517831e-02 -2.7524625140518767e-02 1.3324555485594183e-01 1.5832519462497774e-01 0 1 0 0 0 0 V -173 0 2.6315961380831131e-04 -7.0297474497312863e-04 1.8034545840499604e-03 1.9559771137467982e-03 0 2 0 P 583 22 2.2926720213869609e-01 -4.6947447537701975e-01 1.1323030197722768e+00 1.2470284125040818e+00 0 1 0 0 0 0 P 584 22 1.2645186645321813e-01 -4.8075309908517572e-01 1.3054691581173115e+00 1.3969120729684543e+00 0 1 0 0 0 0 V -174 0 6.2468250889524703e-05 -1.8367249709394737e-04 3.2192915302746285e-03 3.2254826022247982e-03 0 2 0 P 585 22 7.5341761928015019e-02 -3.0457864354941522e-01 6.1426509764610753e+00 6.1506589524875315e+00 0 1 0 0 0 0 P 586 22 1.0193999939994444e-01 -2.1667468640062801e-01 2.9935368403643245e+00 3.0030988158605263e+00 0 1 0 0 0 0 V -175 0 -1.3941300077281751e-08 -1.7634140383110248e-08 1.3366597931759887e-07 1.3569213957008366e-07 0 2 0 P 587 22 -2.1704839426217112e-01 -2.9359709181515714e-01 2.4444473847419288e+00 2.4715647421311382e+00 0 1 0 0 0 0 P 588 22 -7.8866853756908106e-02 -8.0701646189538859e-02 3.9271996709894169e-01 4.0860948211881826e-01 0 1 0 0 0 0 V -176 0 8.9381173201513184e-06 -7.1018199468698127e-05 3.6742435990725561e-03 3.6750700656205180e-03 0 2 0 P 589 22 5.4003005372682156e-02 -3.1523884214362824e-01 1.5767194633722832e+01 1.5770438119148228e+01 0 1 0 0 0 0 P 590 22 -1.4870079877579013e-02 4.3064825583227374e-03 3.1940345659309782e-01 3.1977841257847550e-01 0 1 0 0 0 0 V -177 0 -4.8092656890535008e-05 -1.6288822610025237e-04 7.1972785032300363e-03 7.1994412055626572e-03 0 2 0 P 591 22 -6.5003819847065353e-02 -6.5064487704687091e-02 2.7845648367790230e+00 2.7860833107394996e+00 0 1 0 0 0 0 P 592 22 -7.0639396156457757e-02 -3.9435456430646598e-01 1.7515041501736263e+01 1.7519622834245673e+01 0 1 0 0 0 0 V -178 0 -3.3351555116958019e-04 -1.3233491218248413e-04 8.8455906296782214e-03 8.8530754122556499e-03 0 2 0 P 593 22 -5.7146156102573520e-01 -2.4377032932303166e-01 1.6463137954116490e+01 1.6474856709102486e+01 0 1 0 0 0 0 P 594 22 -1.6608990824430428e-01 -4.8881118483925054e-02 3.0984037569121963e+00 3.1032371907755381e+00 0 1 0 0 0 0 V -179 0 3.3392512947562540e-06 -1.7933736575040648e-09 1.1692834762585951e-04 1.1700552164323406e-04 0 2 0 P 595 22 8.3092113277213012e-02 1.3864082624491623e-02 1.1273307696862198e+00 1.1304738724788010e+00 0 1 0 0 0 0 P 596 22 8.8461214816619546e-02 -1.3956216816351865e-02 4.8798383269399777e+00 4.8806600229463850e+00 0 1 0 0 0 0 V -180 0 3.7881267448364677e-06 2.0894290176796522e-05 6.9342123555268668e-04 6.9376754781931517e-04 0 2 0 P 597 22 -1.7008055498074472e-02 2.1241870150833311e-01 5.6731806420242963e+00 5.6771814816633714e+00 0 1 0 0 0 0 P 598 22 1.1118311211387850e-01 3.0702562886657264e-01 1.1565678698093732e+01 1.1570287384881127e+01 0 1 0 0 0 0 V -181 0 4.2848433363917432e-07 4.3252807212474440e-05 2.1707209259958326e-03 2.1711724959265731e-03 0 2 0 P 599 22 6.2604039713167900e-02 4.2970682649130676e-01 2.0251891721644245e+01 2.0256546732543637e+01 0 1 0 0 0 0 P 600 22 -5.6496622542509860e-02 1.8679864806142088e-01 1.0688558641000245e+01 1.0690340098676810e+01 0 1 0 0 0 0 V -182 0 -1.0856455606341898e-05 -3.3130859319539594e-06 2.2004510645548892e-03 2.2007134871773401e-03 0 2 0 P 601 22 -1.4129831260776927e-02 5.9980859085423562e-02 3.4478178746791981e+00 3.4483685204086680e+00 0 1 0 0 0 0 P 602 22 -3.1616591966346273e-02 -7.3941385128790560e-02 5.8243395715225486e+00 5.8248947099261628e+00 0 1 0 0 0 0 V -183 0 5.9270025063243236e-05 -1.7404494131186669e-04 1.1109159943447154e-02 1.1110696380285313e-02 0 2 0 P 603 22 3.6979185162852352e-01 -9.9396790785838718e-01 6.0977798410630506e+01 6.0987020071674877e+01 0 1 0 0 0 0 P 604 22 6.7421522329279962e-02 -2.8989819359936131e-01 2.0970425763878296e+01 2.0972537837435311e+01 0 1 0 0 0 0 V -184 0 -1.2619145634172405e-06 1.2712549984865108e-06 1.2095365802126941e-03 1.2095634297965084e-03 0 2 0 P 605 22 4.7447799774845589e-02 4.0539640970956494e-03 3.6257585026865802e+00 3.6260712138804458e+00 0 1 0 0 0 0 P 606 22 -6.9125061409615551e-02 1.7783748221618281e-02 1.7151750265493217e+01 1.7151898778434482e+01 0 1 0 0 0 0 V -185 0 2.1214523662777376e-06 -2.6555494802208933e-05 4.0474669704353063e-03 4.0477620490575192e-03 0 2 0 P 607 22 4.2587000092977084e-02 1.8428580378439384e-02 2.8648434219497414e+00 2.8652192058270840e+00 0 1 0 0 0 0 P 608 22 -3.5598677532906783e-02 -1.0590561562562652e-01 1.0468005898754448e+01 1.0468602139809358e+01 0 1 0 0 0 0 V -186 0 -2.3477925341504178e-05 2.0280803592558862e-05 8.0444758122121419e-03 8.0445668349136638e-03 0 2 0 P 609 22 -1.3371682069126956e-01 1.4021119136715113e-01 4.7189657976406295e+01 4.7190055724660112e+01 0 1 0 0 0 0 P 610 22 -7.7326871897490787e-03 -1.8023662193619217e-02 1.2765982300828291e+00 1.2767488742507889e+00 0 1 0 0 0 0 V -187 0 1.0965398689753128e-05 4.3934542170654282e-05 1.3947041098515944e-01 1.3947043596520542e-01 0 2 0 P 611 22 7.8628750911548986e-02 5.4202122757459600e-02 1.6496580741708874e+02 1.6496583506024089e+02 0 1 0 0 0 0 P 612 22 -5.7521924547704266e-02 3.0365596046742941e-02 1.0349481411131067e+02 1.0349483455117931e+02 0 1 0 0 0 0 V -188 0 0 0 0 0 0 3 0 P 613 111 -1.0007671194680588e-01 6.5324508566010589e-02 2.3756431331142164e-01 2.9822649622828962e-01 1.3497999999999999e-01 2 0 0 -216 0 P 614 111 1.4811202823700551e-01 8.9489737385213403e-02 1.3342491717846466e-01 2.5684118620235763e-01 1.3497999999999999e-01 2 0 0 -217 0 P 615 111 5.3047790629529530e-02 -4.6674555295507486e-02 1.0139660692918552e-01 1.8301217035885767e-01 1.3497999999999999e-01 2 0 0 -218 0 V -189 0 7.1575932317251089e-05 6.2444722761509646e-05 -4.5973060156706368e-04 4.7127545857880032e-04 0 2 0 P 616 22 1.3413135534606807e-01 9.4576119148161025e-02 -1.0797231129539018e+00 1.0921253881523698e+00 0 1 0 0 0 0 P 617 22 9.8426947751732469e-02 1.0831385088341638e-01 -4.1399363122602895e-01 4.3910190278866984e-01 0 1 0 0 0 0 V -190 0 -6.0334114165957099e-05 6.6125193071370409e-05 -2.7191778691592217e-02 2.7191950161317667e-02 0 2 0 P 618 22 -2.3270893257734387e-01 2.4966336221171562e-01 -9.1711157820598530e+01 9.1711792884211263e+01 0 1 0 0 0 0 P 619 22 7.9088259024267075e-03 -3.2861565158548230e-03 -9.6032450682352355e+00 9.6032488871702260e+00 0 1 0 0 0 0 V -191 0 -2.5000937051640845e-05 -1.5479719287917333e-05 -3.1772166578265156e-02 3.1772210073041235e-02 0 2 0 P 620 22 -5.7857561140387904e-02 3.0993497743476657e-02 -2.3836856533279331e+01 2.3836946899349861e+01 0 1 0 0 0 0 P 621 22 -1.9578394276687262e-02 -7.8939174746384580e-02 -7.4571777894163191e+01 7.4571822245424826e+01 0 1 0 0 0 0 V -192 0 -3.3885487787946758e-05 2.5060811261695470e-04 -2.2953606001899132e-03 2.3092690824530623e-03 0 2 0 P 622 22 -4.4140050050192048e-01 3.0499956332031197e+00 -2.8291877298078887e+01 2.8459227480976235e+01 0 1 0 0 0 0 P 623 22 -3.8709774506247206e-02 5.0077307996270559e-01 -4.2301927956586605e+00 4.2599064793373209e+00 0 1 0 0 0 0 V -193 0 0 0 0 0 0 2 0 P 624 -211 -8.3440250211859313e-01 6.9414865635304823e-01 -7.9088417535738627e+00 7.9841923549368348e+00 1.3957000000000000e-01 1 0 0 0 0 P 625 211 -4.6411405376321657e-01 9.7412151952983472e-01 -6.1517656970424541e+00 6.2472406361464801e+00 1.3957000000000000e-01 1 0 0 0 0 V -194 0 -7.4236737301190179e-05 2.8709641390097327e-05 -7.6531298084143464e-04 7.7243876725580107e-04 0 2 0 P 626 22 -1.0828373806067951e-01 8.5871616229304837e-02 -7.5090700056749005e-01 7.6351858255283578e-01 0 1 0 0 0 0 P 627 22 -3.9102422787073723e-02 -2.8872831293017501e-02 -7.6850974906060543e-01 7.7004537155669517e-01 0 1 0 0 0 0 V -195 0 -9.3906586457413829e-07 -5.9411530187208128e-06 -8.9815238796829471e-05 9.1896228868551310e-05 0 2 0 P 628 22 -1.3320942921857294e-02 3.5555959758585776e-02 -6.8037915792382997e-02 7.7915542608987476e-02 0 1 0 0 0 0 P 629 22 6.4664168549317252e-03 -7.8922234447830683e-02 -5.8755070558637668e-01 5.9286285536558037e-01 0 1 0 0 0 0 V -196 0 -1.5939618486369118e-04 6.3735507198752916e-06 -6.7941585432267201e-04 6.9902698504997296e-04 0 2 0 P 630 22 -4.1061900666324386e-01 6.2097683569687978e-02 -1.8747789158167412e+00 1.9202239645751809e+00 0 1 0 0 0 0 P 631 22 -1.2979292344023130e-01 -4.0488992940827223e-02 -4.2869173181136894e-01 4.4973565841275553e-01 0 1 0 0 0 0 V -197 0 2.0643820895390459e+01 -8.0840928111842871e+01 -3.7462971438793988e+03 3.7473186924516558e+03 0 2 0 P 632 -211 1.9795272173451232e-02 -2.9044275379573697e-01 -9.3415415783931603e+00 9.3471186839464622e+00 1.3957000000000000e-01 1 0 0 0 0 P 633 211 3.7028611293529395e-01 -1.2371107631205758e+00 -6.1447717169715723e+01 6.1461443035450593e+01 1.3957000000000000e-01 1 0 0 0 0 V -198 0 -3.4382591530053092e-04 -1.0543249975194654e-03 -7.4675175244422784e-02 7.4683417280351883e-02 0 2 0 P 634 22 -6.5579686232794987e-01 -2.1359617010724024e+00 -1.5414485687642863e+02 1.5416104989058601e+02 0 1 0 0 0 0 P 635 22 -6.8313850066065096e-01 -1.9698167188811015e+00 -1.3665705310971549e+02 1.3667295643523875e+02 0 1 0 0 0 0 V -199 0 2.2362966388621159e-05 -3.8153200031461547e-05 -1.7776337802061094e-03 1.7784025546243075e-03 0 2 0 P 636 22 5.7763677263542090e-02 -1.9136128225376486e-01 -7.2721877316519059e+00 7.2749343768274146e+00 0 1 0 0 0 0 P 637 22 5.0455249771261416e-02 6.7302141477962457e-03 -1.3301424338404253e+00 1.3311160438950789e+00 0 1 0 0 0 0 V -200 0 -3.3049270089520947e-05 -2.3096054011827400e-05 -3.7571192052041915e-03 3.7573493739114544e-03 0 2 0 P 638 22 -3.9424131655850264e-01 -2.9923501467436614e-01 -4.7757460552618383e+01 4.7760025190996181e+01 0 1 0 0 0 0 P 639 22 -4.3376702876091230e-02 -6.5886657286408756e-03 -1.9919911268745627e+00 1.9924742403392508e+00 0 1 0 0 0 0 V -201 0 9.3367098934036936e-05 -2.3075451999006639e-05 3.8458397146173416e-04 3.9739522798756203e-04 0 2 0 P 640 22 9.9017072473670226e-02 -8.1128339776451522e-02 5.8291298957693749e-01 5.9680293361683656e-01 0 1 0 0 0 0 P 641 22 3.5567100456161727e-01 -3.1246715418965992e-02 1.2899710181619228e+00 1.3384705631458809e+00 0 1 0 0 0 0 V -202 0 0 0 0 0 0 2 0 P 642 211 -2.4576207637755104e-01 1.5574702289929518e-01 2.9481866443683988e+00 2.9657950718584045e+00 1.3957000000000000e-01 1 0 0 0 0 P 643 -211 1.9305634757751650e-01 -3.2754149375032332e-01 5.6559080841084652e+00 5.6703906588745410e+00 1.3957000000000000e-01 1 0 0 0 0 V -203 0 4.7947559207063651e-05 1.8743769763073063e-05 -1.3996021247504021e-03 1.4006293097225057e-03 0 2 0 P 644 22 1.8835468060241567e-01 5.9945266369590633e-02 -7.1479463080354080e+00 7.1506788029684287e+00 0 1 0 0 0 0 P 645 22 2.4209827144896290e-01 1.0832838844238450e-01 -5.4170909172053996e+00 5.4235800554661626e+00 0 1 0 0 0 0 V -204 0 -4.9660074040994333e-05 -9.1384072016398563e-07 -1.6440801843321086e-03 1.6455056450021364e-03 0 2 0 P 646 22 -1.7136842177076752e-02 -3.2810632171762479e-02 -2.5384196567090056e+00 2.5386895364557631e+00 0 1 0 0 0 0 P 647 22 -1.2505789993077504e-01 3.0193975873100833e-02 -2.1691761801950813e+00 2.1729879095935729e+00 0 1 0 0 0 0 V -205 0 -4.7084066677389482e-04 -5.9375578958587187e-05 -8.9970212712279281e-03 9.0098543127026358e-03 0 2 0 P 648 22 -4.0907063650597941e-01 -4.3870732628050670e-02 -6.5450530036438286e+00 6.5579708940601300e+00 0 1 0 0 0 0 P 649 22 -4.2068570974617642e-01 -6.0766073259709688e-02 -9.3102798594199854e+00 9.3199774700782108e+00 0 1 0 0 0 0 V -206 0 -1.0627626530457704e-05 -1.4420786786789068e-04 -1.1552353395938867e-04 1.8663035118524687e-04 0 2 0 P 650 22 -1.5229367191954694e-02 -7.4079450504613986e-01 -5.9116431297389904e-01 9.4788378890322045e-01 0 1 0 0 0 0 P 651 22 -4.4524258281793891e-02 -7.0011454520699914e-02 -5.8364531667943483e-02 1.0144176603582128e-01 0 1 0 0 0 0 V -207 0 0 0 0 0 0 1 0 P 652 130 -8.0093461092458029e-01 2.2157462905083977e-01 -2.1131276199890148e+00 2.3245591699237007e+00 4.9767000000000000e-01 1 0 0 0 0 V -208 0 2.6428534901832397e-06 -2.9182930072095719e-06 -4.0551838489598011e-05 4.0951146963461157e-05 0 2 0 P 653 22 9.2096994972170346e-02 -6.1082785226852163e-02 -1.2561510057633618e+00 1.2610028994472136e+00 0 1 0 0 0 0 P 654 22 -5.6877392448184943e-03 -3.4332086495692984e-02 -6.9709165932721667e-02 7.7912838196926931e-02 0 1 0 0 0 0 V -209 0 9.3781386746660198e-05 -6.1157765053290885e-05 -9.6849801065021085e-03 9.6859237156110122e-03 0 2 0 P 655 22 6.7540719358148787e-02 -1.2295956317095448e-01 -1.0196066521405267e+01 1.0197031593158272e+01 0 1 0 0 0 0 P 656 22 9.9492860610617684e-02 1.4031759966938716e-02 -7.0538052840246479e+00 7.0545208699481705e+00 0 1 0 0 0 0 V -210 0 1.5298275171739444e-05 -2.8180687228403756e-05 -7.3830599074793321e-04 7.3960144838718632e-04 0 2 0 P 657 22 4.6247397676361457e-03 1.3829320064062008e-02 -4.7162264777538591e-02 4.9365144892922992e-02 0 1 0 0 0 0 P 658 22 6.4734189024416716e-02 -1.4159419923139951e-01 -3.3001505573652383e+00 3.3038209899694513e+00 0 1 0 0 0 0 V -211 0 0 0 0 0 0 1 0 P 659 310 2.4143385087323330e-01 -1.6899775319654403e-01 -3.5631756683887737e+01 3.5636450585792232e+01 4.9767000000000000e-01 2 0 0 -219 0 V -212 0 0 0 0 0 0 1 0 P 660 130 -1.9467442453110048e-01 -2.9866085881739220e-02 -1.5672028941843859e+01 1.5681165667690140e+01 4.9767000000000000e-01 1 0 0 0 0 V -213 0 -7.3342785183459024e-06 -1.8017262961502671e-05 -1.0290599081116587e-04 1.0675596025517438e-04 0 2 0 P 661 22 4.3335705601751880e-02 -1.0322778658087705e-02 -1.6117016656036340e-01 1.6721353332885724e-01 0 1 0 0 0 0 P 662 22 -9.1144767358346965e-02 -1.0712414341565475e-01 -5.0963049331479560e-01 5.2868345012457774e-01 0 1 0 0 0 0 V -214 0 2.3289013549293327e-06 -2.1747208897570036e-04 -5.5782926481562258e-04 6.0963201673284323e-04 0 2 0 P 663 22 4.1351835940388942e-03 -1.7996740470468281e-01 -2.7659605885261906e-01 3.3001628182908943e-01 0 1 0 0 0 0 P 664 22 -1.3968087240398643e-03 -7.5741194595488615e-02 -3.7931220333630755e-01 3.8680282733352339e-01 0 1 0 0 0 0 V -215 0 6.1129297576019006e-06 -6.4504614457150077e-06 -3.0192450257694374e-05 3.1693406956216335e-05 0 2 0 P 665 22 4.1122060335194123e-03 1.6913040658006116e-02 -5.3825317938393985e-02 5.6569656477043206e-02 0 1 0 0 0 0 P 666 22 2.1711057011778001e-01 -2.5035085935753026e-01 -1.0388189507955945e+00 1.0903932157574994e+00 0 1 0 0 0 0 V -216 0 -1.6851219132982025e-10 1.0999538126165820e-10 4.0001796860742436e-10 5.0216278507187129e-10 0 2 0 P 667 22 -9.2566380960936570e-02 9.0685254050486871e-02 1.1633093648067099e-01 1.7414142806603056e-01 0 1 0 0 0 0 P 668 22 -7.5103309858693089e-03 -2.5360745484476279e-02 1.2123337683075065e-01 1.2408506816225907e-01 0 1 0 0 0 0 V -217 0 1.6393039358514227e-05 9.9047241780487354e-06 1.4767469899292045e-05 2.8427182615886741e-05 0 2 0 P 669 22 9.8940591396890376e-02 1.2133965356437675e-01 7.3234360240121477e-02 1.7284624286593350e-01 0 1 0 0 0 0 P 670 22 4.9171436840115122e-02 -3.1849916179163336e-02 6.0190556938343173e-02 8.3994943336424072e-02 0 1 0 0 0 0 V -218 0 7.3548058078630191e-07 -6.4711892105781862e-07 1.4058122773641915e-06 2.5373704681975370e-06 0 2 0 P 671 22 2.6853549766319547e-02 -1.4033837957733747e-03 1.2338045730684905e-01 1.2627675901121962e-01 0 1 0 0 0 0 P 672 22 2.6194240863209987e-02 -4.5271171499734107e-02 -2.1983850377663518e-02 5.6735411347638029e-02 0 1 0 0 0 0 V -219 0 2.5678622015421473e+00 -1.7974403382515305e+00 -3.7897519685896702e+02 3.7902512065065866e+02 0 2 0 P 673 -211 -6.7514417930739964e-02 -1.0120446765128294e-02 -1.8254475337189451e+01 1.8255136544025881e+01 1.3957000000000000e-01 1 0 0 0 0 P 674 211 3.0894826880397325e-01 -1.5887730643141576e-01 -1.7377281346698286e+01 1.7381314041766348e+01 1.3957000000000000e-01 1 0 0 0 0 E 56 41 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 267 1 2 0 0 U GEV MM V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 6.3025125034486240e-01 -1.5608419695341000e+00 1.9452414252898802e+01 1.9525108567144983e+01 0 3 0 0 -3 0 P 16 2101 -1.7880188390121066e-01 3.6145160557737538e-01 3.8899755288348720e+03 3.8899755928764857e+03 5.7933000000000001e-01 2 0 0 -9 0 P 21 2 -4.5144936644365175e-01 1.1993903639567247e+00 1.0087534688187022e+01 1.0173966771175884e+01 3.3000000000000002e-01 2 0 0 -13 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 7.9350883045900622e-01 1.2907195919618031e+00 -2.1409034301832048e+03 2.1409039663150570e+03 0 3 0 0 -4 0 P 108 2203 -7.9350883045900622e-01 -1.2907195919618031e+00 -1.1968432930191095e+03 1.1968445005965161e+03 7.7132999999999996e-01 2 0 0 -13 0 V -3 0 0 0 0 0 0 14 0 P 5 -2 1.0003614864163026e+01 -1.0257720694460053e+00 -3.0805747333149420e+00 1.0517340889050738e+01 0 3 0 0 -5 0 P 13 2 -1.0499899244979101e+00 -5.4262234289970435e-01 7.0635962817166409e-01 1.4158961024283889e+00 3.3000000000000002e-01 2 0 0 -9 0 P 14 21 4.9535803854359983e-01 4.0039251959885136e-01 1.2898926301649314e+00 1.4385815074073083e+00 0 2 0 0 -9 0 P 15 21 -6.3453392564729386e-02 -6.0242936340307540e-01 3.3113481667761038e+00 3.3662997716379435e+00 0 2 0 0 -9 0 P 22 21 -2.7574400668731508e-01 3.4891572569002499e-01 1.1026196358497136e+00 1.1889268279499483e+00 0 2 0 0 -13 0 P 23 21 4.6321719747654339e-01 -1.2959977708520807e+00 8.2530843986248943e+00 8.3670533932153930e+00 0 2 0 0 -13 0 P 24 21 -5.5943765103619141e-02 2.8844957927574533e+00 -1.9970005919302466e+01 2.0177328418308132e+01 0 2 0 0 -13 0 P 25 21 -1.3045988663419938e-01 9.3723958840172750e-01 -2.6174323016129932e+00 2.7832336735558405e+00 0 2 0 0 -13 0 P 26 21 -1.9495747437559372e+00 6.9982049704316884e-01 -1.6444493586568179e+01 1.6574436935481540e+01 0 2 0 0 -13 0 P 27 21 -3.0163843268160900e-01 1.7425856925080294e-01 -9.5580536458100731e+00 9.5643996826361857e+00 0 2 0 0 -13 0 P 28 21 -2.1272170451727654e+00 6.3116866731662902e-01 -1.3476371482465675e+01 1.3657818807455673e+01 0 2 0 0 -13 0 P 29 21 -4.2861007759990706e+00 -6.0393247141214168e-01 -2.8860821117946031e+01 2.9183597960054986e+01 0 2 0 0 -13 0 P 30 21 -3.0076073060719022e-01 -1.9639985518539025e+00 -8.3041820572937326e+01 8.3065586805828787e+01 0 2 0 0 -13 0 P 31 21 3.1703176079971879e-01 -1.2966020696646954e+00 -1.9474288849505118e+01 1.9519979822181526e+01 0 2 0 0 -13 0 V -4 0 0 0 0 0 0 3 0 P 6 1 1.1653713200998055e+00 2.6752250866964773e+00 -1.7756452256670705e+03 1.7756476233627661e+03 0 3 0 0 -5 0 P 106 21 -1.4490091404178268e-01 -1.0765343811603139e+00 -1.4289350967582706e+02 1.4289763829407536e+02 0 2 0 0 -13 0 P 107 21 -3.3504948253253491e-01 -6.1374980363618858e-01 -2.1051722837873946e+01 2.1063332628524677e+01 0 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 3 0 0 -6 0 P 8 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 22 7.9231597912895166e+00 -5.7389819579211363e+01 -5.3097799313952419e+02 5.3412919509318090e+02 0 1 0 0 0 0 V -7 0 0 0 0 0 0 1 0 P 10 -24 3.2458263929733167e+00 5.9039272596461821e+01 -1.2477478072608610e+03 1.2520357691586357e+03 8.4987090964905946e+01 2 0 0 -8 0 V -8 0 0 0 0 0 0 2 0 P 11 11 3.8889381082532978e+01 9.9574802708035470e+00 -6.4348808273781026e+02 6.4473905419182495e+02 5.1000000000000004e-04 1 0 0 0 0 P 12 -12 -3.5643554689559657e+01 4.9081792325658270e+01 -6.0425972452305109e+02 6.0729671496681112e+02 0 1 0 0 0 0 V -9 0 0 0 0 0 0 1 0 P 111 92 -7.9688716242025026e-01 -3.8320758112655301e-01 3.8952831292599849e+03 3.8961963702579596e+03 8.4348779698580927e+01 2 0 0 -10 0 V -10 0 0 0 0 0 0 11 0 P 112 221 -1.9396974754442750e-01 1.2598924306987255e-01 3.1949337287330484e-03 5.9431411091551523e-01 5.4744999999999999e-01 2 0 0 -17 0 P 113 223 -5.4564597509654456e-01 -1.1334947568334210e+00 6.5349495577190488e+00 6.7003799684583347e+00 7.7909313042627482e-01 2 0 0 -18 0 P 114 213 -3.9441813280558591e-01 -3.2653899542578857e-02 8.4058736532943872e+00 8.4541143666159542e+00 8.1037393099259503e-01 2 0 0 -19 0 P 115 -211 6.2067640778002942e-01 3.3800632674824665e-01 3.5205742917886478e+00 3.5935234254140744e+00 1.3957000000000000e-01 1 0 0 0 0 P 116 223 3.7718586716942831e-01 2.2730629852546597e-01 2.5481311947971516e+01 2.5497026924395573e+01 7.7922144591589504e-01 2 0 0 -20 0 P 117 113 -8.2504205999324987e-01 -2.0374545284331191e-01 6.1077079632131792e+01 6.1090023896303194e+01 9.2690703461292867e-01 2 0 0 -21 0 P 118 213 7.4462068175255380e-01 -3.7022949926663090e-01 2.1669260651856166e+02 2.1669576065528562e+02 8.2184933097928414e-01 2 0 0 -22 0 P 119 -211 -3.1322325275422336e-01 -1.0448531114927263e-01 1.5631336659839113e+02 1.5631377764961803e+02 1.3957000000000000e-01 1 0 0 0 0 P 120 2214 -9.5049730367357463e-02 7.5361195990320451e-01 1.5066331994641766e+03 1.5066338836070302e+03 1.2184168838635854e+00 2 0 0 -23 0 P 121 -2214 8.3769597141783364e-02 -5.9740141289930782e-01 4.6550780342107242e+02 4.6550993878808310e+02 1.2744248818855703e+00 2 0 0 -24 0 P 122 2212 -2.5579081770265655e-01 6.1388892316118060e-01 1.4451131692411484e+03 1.4451136268658397e+03 9.3827000000000005e-01 1 0 0 0 0 V -11 0 0 0 0 0 4 1 0 P 17 2 -2.4510261161848934e+00 -9.3852038831382611e-01 -1.0162161541263165e+01 1.0495612260951207e+01 0 2 0 0 -11 0 P 18 21 -1.5118186265680786e+00 -5.7158301477300355e-01 -1.0920106164589825e+01 1.1039067956504656e+01 0 2 0 0 -11 0 P 19 21 9.1795879951363357e-01 -2.2917706231768326e-01 -2.7228504205467079e+01 2.7244937360005721e+01 0 2 0 0 -11 0 P 20 -2 2.4510261161848934e+00 9.3852038831382611e-01 -5.9015137999255117e+01 5.9073470040388067e+01 0 2 0 0 -11 0 P 123 92 -5.9385982705444507e-01 -8.0076007709068675e-01 -1.0732590991057519e+02 1.0785308761784965e+02 1.0603946641482150e+01 2 0 0 -12 0 V -12 0 0 0 0 0 0 7 0 P 124 221 -1.4327812970501628e+00 -3.1715631974414271e-01 -9.7617879944391799e+00 9.8866403154563738e+00 5.4744999999999999e-01 2 0 0 -25 0 P 125 211 -4.5475281739552614e-01 -9.4300196253977286e-01 -4.8048456252358624e+00 4.9195603557158680e+00 1.3957000000000000e-01 1 0 0 0 0 P 126 111 -1.0455551102232519e+00 5.2607524903311782e-02 -4.8048601601660819e+00 4.9194363294326351e+00 1.3497999999999999e-01 2 0 0 -26 0 P 127 113 -5.4292307192056422e-01 -2.2148993427114952e-01 -6.1087963704559840e+00 6.1875058882484737e+00 7.8994478820119496e-01 2 0 0 -27 0 P 128 311 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389745e+01 4.9767000000000000e-01 2 0 0 -28 0 P 129 -321 1.6809372678608958e+00 -2.1519884311027904e-01 -2.9657299043359608e+01 2.9709777652278355e+01 4.9359999999999998e-01 1 0 0 0 0 P 130 223 1.1498121463644551e+00 4.9551508984439335e-01 -3.5090282720025776e+01 3.5121271722328203e+01 7.7986078634625899e-01 2 0 0 -29 0 V -13 0 0 0 0 0 74 1 0 P 32 21 2.2919498513335910e+00 -5.3931438577433810e-01 5.4911357009882424e+00 5.9746519073832962e+00 0 2 0 0 -13 0 P 33 21 3.8275082768368374e+00 3.6553705284511260e+00 1.5564529802174704e+01 1.6439773151485639e+01 0 2 0 0 -13 0 P 34 21 2.6293041569352962e+00 2.5667889340332115e+00 7.9396237158021936e+00 8.7486725010187243e+00 0 2 0 0 -13 0 P 35 21 5.7644642234917343e-01 9.8089113377593973e-01 1.9821416854542029e+00 2.2854591563566911e+00 0 2 0 0 -13 0 P 36 21 -5.3890140962706091e-02 2.7404738935971873e-01 5.4609241298814792e-01 6.1337023275593960e-01 0 2 0 0 -13 0 P 37 21 -2.5645263155703646e-02 1.3041663402810690e+00 3.3087988598539289e+00 3.5566356880646492e+00 0 2 0 0 -13 0 P 38 21 3.3716652055867755e-02 -2.2187543183966403e+00 9.1906635303119355e+00 9.4547503227444061e+00 0 2 0 0 -13 0 P 39 21 2.5213698438065348e+00 -1.3044207475783756e+00 2.3154239373566323e+01 2.3327614973339621e+01 0 2 0 0 -13 0 P 40 21 1.1374896133187604e+00 -1.0709938123047886e+00 1.6755976217700258e+01 1.6828655602113315e+01 0 2 0 0 -13 0 P 41 21 2.4633426515889321e+00 -3.3125263080737302e+00 4.1258546615875410e+01 4.1464545776062494e+01 0 2 0 0 -13 0 P 42 21 1.8765359236492645e+00 1.1871959259510274e+00 2.6203848599061335e+01 2.6297766115049953e+01 0 2 0 0 -13 0 P 43 21 -5.7644642234917343e-01 -9.8089113377593973e-01 3.4456282820570408e+01 3.4475061475003855e+01 0 2 0 0 -13 0 P 44 21 -1.4127517917197032e+00 -1.1361949925331560e+00 8.8030640521746875e+01 8.8049307080493747e+01 0 2 0 0 -13 0 P 45 21 2.5645263155703646e-02 -1.3041663402810690e+00 2.3173135613390048e+02 2.3173502739805923e+02 0 2 0 0 -13 0 P 46 21 -2.5245419624345616e-01 -2.6719005480120606e-01 6.6202681689115320e+02 6.6202691894414613e+02 0 2 0 0 -13 0 P 47 21 1.4127517917197032e+00 1.1361949925331560e+00 1.3896332854063241e+03 1.3896344680223863e+03 0 2 0 0 -13 0 P 48 21 2.5245419624345616e-01 2.6719005480120606e-01 5.4687024989630231e+01 5.4688260402604023e+01 0 2 0 0 -13 0 P 49 21 9.3132849782446436e-01 6.8669548972004613e-01 1.2771682076240751e+02 1.2772206242119404e+02 0 2 0 0 -13 0 P 50 21 -3.3716652055867755e-02 2.2187543183966403e+00 4.0215320953119857e+01 4.0276494967914857e+01 0 2 0 0 -13 0 P 51 21 -1.8282763906214214e+00 4.0115474249900318e+00 7.0294034634439413e+01 7.0432140479267105e+01 0 2 0 0 -13 0 P 52 21 -4.2493496184377975e+00 2.1968843743290272e+00 9.3448641803408776e+01 9.3570999396371136e+01 0 2 0 0 -13 0 P 53 21 -1.8016928865495392e+00 2.3419894882116729e-01 1.8537995702078970e+01 1.8626814839241050e+01 0 2 0 0 -13 0 P 54 21 -9.3132849782446436e-01 -6.8669548972004613e-01 8.6339478491838637e+00 8.7111410807590808e+00 0 2 0 0 -13 0 P 55 21 -6.3280387971454042e+00 -1.4769041269268166e+00 2.7628974104691839e+01 2.8382838668745645e+01 0 2 0 0 -13 0 P 56 21 -2.6293041569352962e+00 -2.5667889340332115e+00 8.3053441710776710e+00 9.0818713700209628e+00 0 2 0 0 -13 0 P 57 21 -2.5213698438065348e+00 1.3044207475783756e+00 9.1650012017673657e+00 9.5945852648442909e+00 0 2 0 0 -13 0 P 58 21 -3.4767577075515682e-01 5.7011883976277411e-01 2.3272311839395439e+00 2.4211400034949024e+00 0 2 0 0 -13 0 P 59 21 2.3088839059774262e-02 3.2892297985008279e-01 2.2607665199560172e+00 2.2846856849283728e+00 0 2 0 0 -13 0 P 60 21 -4.2663340640220210e-01 5.3288846869669737e-01 2.4668070541485823e+00 2.5595162093500137e+00 0 2 0 0 -13 0 P 61 21 -2.7235874873859904e+00 2.7064803100231232e+00 7.4578779428432176e+00 8.3882601223576625e+00 0 2 0 0 -13 0 P 62 21 -2.2919498513335910e+00 5.3931438577433810e-01 3.9475559527521433e+00 4.5964216655829242e+00 0 2 0 0 -13 0 P 63 21 -2.2907802242727042e+00 -4.0226783466691823e-01 2.5056031540007084e+00 3.4187045224857924e+00 0 2 0 0 -13 0 P 64 21 -1.8765359236492645e+00 -1.1871959259510274e+00 1.3113427535256532e+00 2.5788449074275790e+00 0 2 0 0 -13 0 P 65 21 -1.1374896133187604e+00 1.0709938123047886e+00 7.6791084132077247e-01 1.7408611164079646e+00 0 2 0 0 -13 0 P 66 21 -2.0100594716904077e+00 1.1950825638901958e+00 5.5888075633528878e-01 2.4043521193969468e+00 0 2 0 0 -13 0 P 67 21 -9.1795879951363357e-01 2.2917706231768326e-01 -3.9283776468404602e-01 1.0244471645033884e+00 0 2 0 0 -13 0 P 68 21 -2.2202915482781052e+00 2.2931386178317714e-01 -9.0567087128387347e-01 2.4088418656385873e+00 0 2 0 0 -13 0 P 69 21 -6.9209919897388739e-01 -1.8276976386733144e+00 1.0625486119189624e+00 2.2245200633672018e+00 0 2 0 0 -13 0 P 70 21 1.0974082109116090e+00 -1.4793290650290782e+00 8.1104693157102148e-01 2.0125894735953467e+00 0 2 0 0 -13 0 P 71 21 2.7235874873859904e+00 -2.7064803100231232e+00 2.0440120821380905e+00 4.3498218195593807e+00 0 2 0 0 -13 0 P 72 21 1.5118186265680786e+00 5.7158301477300355e-01 3.4903819535779795e-01 1.6535205968580542e+00 0 2 0 0 -13 0 P 73 21 2.2907802242727042e+00 4.0226783466691823e-01 -1.0274911734027061e+00 2.5426819616591811e+00 0 2 0 0 -13 0 P 74 21 4.2493496184377975e+00 -2.1968843743290272e+00 -3.2115415473152611e+00 5.7617074070123167e+00 0 2 0 0 -13 0 P 75 21 1.8016928865495392e+00 -2.3419894882116729e-01 -2.5067821150723426e+00 3.0959494468609656e+00 0 2 0 0 -13 0 P 76 21 4.2663340640220210e-01 -5.3288846869669737e-01 -3.3458622009045778e+00 3.4147884342913959e+00 0 2 0 0 -13 0 P 77 21 3.4767577075515682e-01 -5.7011883976277411e-01 -1.8164162637576227e+00 1.9352731012097093e+00 0 2 0 0 -13 0 P 78 21 5.3890140962706091e-02 -2.7404738935971873e-01 -6.5426318239873249e-01 7.1138346252241114e-01 0 2 0 0 -13 0 P 79 21 -2.3088839059774262e-02 -3.2892297985008279e-01 -3.1922325539690849e-01 4.5894107241429810e-01 0 2 0 0 -13 0 P 80 21 -9.3297002321780897e-01 -8.3566416332879623e+00 -1.4491781841706969e+01 1.6754570522667912e+01 0 2 0 0 -13 0 P 81 21 -4.0422079593563165e+00 -9.5648883823126116e+00 -2.8793930127679420e+01 3.0609099090800875e+01 0 2 0 0 -13 0 P 82 21 -3.8275082768368374e+00 -3.6553705284511260e+00 -1.3732826537603481e+01 1.4717407313159134e+01 0 2 0 0 -13 0 P 83 21 -1.8396918775672468e+00 3.5076898330315426e-01 -4.7612002809216607e+00 5.1163007338391404e+00 0 2 0 0 -13 0 P 84 21 -2.4633426515889321e+00 3.3125263080737302e+00 -1.6624719714693128e+01 1.7129570722961045e+01 0 2 0 0 -13 0 P 85 21 -4.3170938568895023e-01 3.1672682924854845e-01 -2.3097535125758859e+00 2.3710019331317325e+00 0 2 0 0 -13 0 P 86 21 -2.2293456748496046e+00 1.4724864523063381e+00 -1.5591261313224100e+01 1.5818521670100365e+01 0 2 0 0 -13 0 P 87 21 -2.5681698473071308e+00 2.4884971888383181e+00 -4.9706974962155648e+01 4.9835443958209524e+01 0 2 0 0 -13 0 P 88 21 -1.0974082109116090e+00 1.4793290650290782e+00 -5.4666161612356085e+01 5.4697184065473152e+01 0 2 0 0 -13 0 P 89 21 -1.8242550257676140e+00 1.3243641552904142e-01 -2.2644655520464190e+02 2.2645394191722988e+02 0 2 0 0 -13 0 P 90 21 -1.4428508959266808e+00 -1.5871315338421952e+00 -7.5192118504893884e+01 7.5222705950182345e+01 0 2 0 0 -13 0 P 91 21 -1.9589249265875797e+00 -2.4473705025324115e+00 -1.2473946486162077e+02 1.2477884878138681e+02 0 2 0 0 -13 0 P 92 21 1.8282763906214214e+00 -4.0115474249900318e+00 -6.8494543017015289e+01 6.8636269788015184e+01 0 2 0 0 -13 0 P 93 21 2.5681698473071308e+00 -2.4884971888383181e+00 -5.4222757300156495e+01 5.4340551376068575e+01 0 2 0 0 -13 0 P 94 21 2.0100594716904077e+00 -1.1950825638901958e+00 -2.2156419752345965e+01 2.2279486027653178e+01 0 2 0 0 -13 0 P 95 21 4.3170938568895023e-01 -3.1672682924854845e-01 -4.6618003043369205e+00 4.6924482901331555e+00 0 2 0 0 -13 0 P 96 21 1.8396918775672468e+00 -3.5076898330315426e-01 -2.5983872810484662e+01 2.6051279264471418e+01 0 2 0 0 -13 0 P 97 21 2.2202915482781052e+00 -2.2931386178317714e-01 -2.6446956727484729e+01 2.6540983394592047e+01 0 2 0 0 -13 0 P 98 21 1.4428508959266808e+00 1.5871315338421952e+00 -1.7131009215502147e+01 1.7264769965314109e+01 0 2 0 0 -13 0 P 99 21 6.9209919897388739e-01 1.8276976386733144e+00 -1.6242077004503077e+01 1.6359234254079251e+01 0 2 0 0 -13 0 P 100 21 4.0422079593563165e+00 9.5648883823126116e+00 -1.7237771059692227e+02 1.7269018977807937e+02 0 2 0 0 -13 0 P 101 21 9.3297002321780897e-01 8.3566416332879623e+00 -1.4482319119673554e+02 1.4506708999927463e+02 0 2 0 0 -13 0 P 102 21 6.3280387971454042e+00 1.4769041269268166e+00 -3.3575882534388273e+02 3.3582169989016830e+02 0 2 0 0 -13 0 P 103 21 2.2293456748496046e+00 -1.4724864523063381e+00 -7.4254174078206188e+02 7.4254654736396492e+02 0 2 0 0 -13 0 P 104 21 1.8242550257676140e+00 -1.3243641552904142e-01 -7.1381127856972205e+02 7.1381362193442658e+02 0 2 0 0 -13 0 P 105 21 1.9589249265875797e+00 2.4473705025324115e+00 -5.5170479271759041e+02 5.5171369868510976e+02 0 2 0 0 -13 0 P 131 92 -9.7782391947879663e+00 -4.6548535903390897e-01 -2.0286046800342438e+03 8.1903714067458041e+03 7.9351654678364484e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 164 0 P 132 111 -9.5378886780884922e-02 9.2016129485517639e-01 3.7281450095512794e+00 3.8435762973089558e+00 1.3497999999999999e-01 2 0 0 -30 0 P 133 113 1.7111059602166162e-01 -8.8303316087832129e-01 9.3511847499636431e+00 9.4248957009459957e+00 7.5827194757295746e-01 2 0 0 -31 0 P 134 221 -5.9237764754734812e-01 6.6245614510044482e-01 5.0432351371495123e+00 5.1501147145063220e+00 5.4744999999999999e-01 2 0 0 -32 0 P 135 221 5.5949257037198585e-01 -3.7844598157706683e-01 1.3356639670320541e-01 8.7965605898075816e-01 5.4744999999999999e-01 2 0 0 -33 0 P 136 213 1.7643180981315237e-01 3.0573422024266106e-01 4.4575534532322197e-01 9.4402442716508184e-01 7.5357991895936527e-01 2 0 0 -34 0 P 137 113 -6.1006547629510433e-01 7.8421187115020008e-01 -4.3211779756747069e+00 4.5111053994124450e+00 8.3085779946503613e-01 2 0 0 -35 0 P 138 -211 1.3778881272259097e-01 3.9013610545415672e-01 -4.4811341333903005e+00 4.5023588088940754e+00 1.3957000000000000e-01 1 0 0 0 0 P 139 211 -5.1471806676339016e-01 3.9306527626725007e-01 -3.5166835082200163e+00 3.5785440728802449e+00 1.3957000000000000e-01 1 0 0 0 0 P 140 311 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300324e+00 4.9767000000000000e-01 2 0 0 -36 0 P 141 -321 -8.6621862706943487e-01 9.4605578613282582e-01 -1.4267764152839385e+01 1.4333809372996630e+01 4.9359999999999998e-01 1 0 0 0 0 P 142 223 -1.4823278846344665e-01 7.0068809158244638e-01 -5.0938869159078699e+00 5.2029198299935979e+00 7.8086752014802596e-01 2 0 0 -37 0 P 143 223 -1.5127336842276602e+00 -1.6932258679773229e-01 -8.9042401749900222e+00 9.0676146742845045e+00 7.8683508411640057e-01 2 0 0 -38 0 P 144 211 -1.1052020216926355e+00 1.7888768218666659e-01 -2.0680044964895078e+01 2.0710799401437260e+01 1.3957000000000000e-01 1 0 0 0 0 P 145 -211 -1.1836048869607055e-01 1.6870905370595057e-01 -1.2760479751112799e+00 1.3000962155826516e+00 1.3957000000000000e-01 1 0 0 0 0 P 146 113 -1.1965349864064070e+00 1.6293335719855687e-01 -1.2531649205245573e+01 1.2615527799632281e+01 8.0688698550683258e-01 2 0 0 -39 0 P 147 111 -2.3673624416023592e-01 -2.4200729240265403e-01 -4.6805328292745960e+00 4.6947011348106509e+00 1.3497999999999999e-01 2 0 0 -40 0 P 148 113 -2.0503896461125839e+00 5.3360163757153500e-01 -1.5414376149219221e+01 1.5590345801569375e+01 9.8339297047964802e-01 2 0 0 -41 0 P 149 213 -1.1279683274631416e+00 -1.0629888103991101e+00 -2.0170403482798850e+01 2.0237874087779595e+01 5.6930938436242173e-01 2 0 0 -42 0 P 150 331 -1.2585005341064656e-01 -2.0679762452408088e-01 -2.0539292866478739e+01 2.0563041993890913e+01 9.5788365373064077e-01 2 0 0 -43 0 P 151 313 -2.5891868332793694e-01 -1.0976812115405470e+00 -2.3427568915158162e+01 2.3473181595386592e+01 9.3130339243749294e-01 2 0 0 -44 0 P 152 -321 -5.8152469734450962e-01 -4.0236864860739080e-01 -2.5693310184079895e+01 2.5707778991549375e+01 4.9359999999999998e-01 1 0 0 0 0 P 153 221 3.7558069010983147e-01 -6.0121950718713923e-01 -4.1464817357575745e+00 4.2421148072720607e+00 5.4744999999999999e-01 2 0 0 -45 0 P 154 211 3.7166412348551842e-01 2.5263117957493336e-01 -1.3386359820979408e+00 1.4189372118057229e+00 1.3957000000000000e-01 1 0 0 0 0 P 155 2112 4.8656919045718644e-01 -2.1099169578659491e-01 7.1963271134692353e-01 1.2968924770132602e+00 9.3957000000000002e-01 1 0 0 0 0 P 156 -2112 2.7693644967545605e-01 3.0404244051744694e-01 4.8921693944190998e-02 1.0268012075533515e+00 9.3957000000000002e-01 1 0 0 0 0 P 157 313 1.8047452413869469e+00 5.7464973658489826e-01 5.7315708504760536e+00 6.1264646927334088e+00 1.0465837334949950e+00 2 0 0 -46 0 P 158 -321 1.3041552224063184e+00 9.4508609836262170e-01 5.2668349808775874e+00 5.5296654739001863e+00 4.9359999999999998e-01 1 0 0 0 0 P 159 3222 8.3075042829696188e-01 1.8296383599183643e+00 4.4084598082256141e+00 4.9886713341170283e+00 1.1893700000000000e+00 2 0 0 -47 0 P 160 -3322 1.8542265179893243e+00 9.8944077685311804e-01 6.6420463292861696e+00 7.0896326055232510e+00 1.3149000000000000e+00 2 0 0 -48 0 P 161 -311 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425931e+00 4.9767000000000000e-01 2 0 0 -49 0 P 162 -211 1.4298062467162460e+00 1.3474966941410549e+00 6.6461866500901925e+00 6.9319095505211950e+00 1.3957000000000000e-01 1 0 0 0 0 P 163 321 7.6410158396290562e-01 6.9909897553263511e-01 1.8606876457340611e+00 2.1859529004973464e+00 4.9359999999999998e-01 1 0 0 0 0 P 164 3224 3.2395285587733541e-01 1.5676247251179283e-02 4.1571351898734719e+00 4.4023116848350057e+00 1.4118725105304402e+00 2 0 0 -50 0 P 165 -211 6.7709439517060932e-01 -7.0060770228368074e-01 9.2688784337453249e+00 9.3209921777093996e+00 1.3957000000000000e-01 1 0 0 0 0 P 166 -2112 9.2167164365202447e-01 1.7289840255036981e-01 5.9304801504111522e+00 6.0772328469162167e+00 9.3957000000000002e-01 1 0 0 0 0 P 167 313 2.4368048812152451e-01 -2.7189249717698005e-01 5.9901665861521334e+00 6.0642794212361464e+00 8.7182765421982122e-01 2 0 0 -51 0 P 168 -311 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645047e+00 4.9767000000000000e-01 2 0 0 -52 0 P 169 -211 8.2675932128159796e-02 -3.9746599663937121e-01 1.3273593382207474e+00 1.3950545243464900e+00 1.3957000000000000e-01 1 0 0 0 0 P 170 111 1.3786554306129115e+00 -1.9488201490323926e+00 2.0080262669134132e+01 2.0222110652240410e+01 1.3497999999999999e-01 2 0 0 -53 0 P 171 221 8.1577905188286604e-01 3.1773786874613397e-01 1.6663022606641665e+01 1.6694983579107749e+01 5.4744999999999999e-01 2 0 0 -54 0 P 172 211 2.2723467062803587e-01 2.2022509676426130e-01 7.0122979398662952e+00 7.0208216663816030e+00 1.3957000000000000e-01 1 0 0 0 0 P 173 113 1.3167927918971483e+00 -1.1762731205460377e+00 1.6526735514980462e+01 1.6636723078691851e+01 7.2801531855450885e-01 2 0 0 -55 0 P 174 311 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280085e+01 4.9767000000000000e-01 2 0 0 -56 0 P 175 -313 2.3671732340945112e-01 -1.2818661158563485e-01 9.0995186506478944e+00 9.1482919540292045e+00 9.0417869034536813e-01 2 0 0 -57 0 P 176 111 6.3669604849360489e-02 3.2443801829702268e-01 2.8213067643071827e+01 2.8215327736520177e+01 1.3497999999999999e-01 2 0 0 -58 0 P 177 223 -5.9529930597106151e-01 -6.6909166784838903e-01 4.9008447852470091e+01 4.9022843881333117e+01 7.8051033408005732e-01 2 0 0 -59 0 P 178 113 1.7439300796065513e-01 4.5153278989565365e-02 2.1139860425192904e+01 2.1149444202864011e+01 6.1060589056441528e-01 2 0 0 -60 0 P 179 111 -7.9604417957461746e-02 -9.6209230235598897e-01 4.3259944128694286e+01 4.3270924927481758e+01 1.3497999999999999e-01 2 0 0 -61 0 P 180 113 5.9714359549159754e-02 -3.3812967846350012e-01 1.2082496526331296e+02 1.2082716193306055e+02 6.4259818942612779e-01 2 0 0 -62 0 P 181 313 -7.0125682803178158e-01 1.2932329278298590e-01 2.1123998264694384e+02 2.1124305884618306e+02 8.8946970601160780e-01 2 0 0 -63 0 P 182 -323 3.7591087000047047e-01 3.2172473610928232e-01 3.3853664827469237e+02 3.3853822148893727e+02 9.0574170822959221e-01 2 0 0 -64 0 P 183 213 3.5865522298360386e-01 -4.7339465582558199e-01 2.9925170177958864e+02 2.9925289532902849e+02 6.0133913684443618e-01 2 0 0 -65 0 P 184 311 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 2 0 0 -66 0 P 185 221 2.5994388602780161e-01 -2.1971917570972543e-01 2.4042429868065742e+02 2.4042516287803269e+02 5.4744999999999999e-01 2 0 0 -67 0 P 186 333 1.9401697942219695e-01 4.9437006858390177e-02 3.9568878893459038e+02 3.9569013623563654e+02 1.0129852159978843e+00 2 0 0 -68 0 P 187 -321 1.8767593486739167e-01 3.2317846264445632e-01 4.7583526931697583e+02 4.7583567209016002e+02 4.9359999999999998e-01 1 0 0 0 0 P 188 223 4.1211719745933267e-01 2.6963666964811467e-01 4.6095379421228202e+01 4.6104611526514589e+01 7.8016376855931513e-01 2 0 0 -69 0 P 189 3212 4.6113282985353568e-02 7.5510760968410517e-01 1.7324197899084831e+02 1.7324773526400020e+02 1.1925500000000000e+00 2 0 0 -70 0 P 190 -3112 2.7241775814165076e-01 5.5060609804795047e-01 6.2317676746792522e+01 6.2332207374530590e+01 1.1974400000000001e+00 2 0 0 -71 0 P 191 -213 -1.1185640412266291e+00 1.8677657111647226e+00 4.4372768731290904e+01 4.4431414791525569e+01 6.8431076992887618e-01 2 0 0 -72 0 P 192 223 1.9568918983671615e-01 1.2729495677269613e+00 3.0872829065873162e+01 3.0909303763703615e+01 7.7122614406223777e-01 2 0 0 -73 0 P 193 323 -6.0023605285414339e-01 9.0108152680739173e-01 2.7246443724479708e+01 2.7282237203205870e+01 8.8291559259718566e-01 2 0 0 -74 0 P 194 -323 -3.0703714755842770e+00 2.3060980355854404e+00 6.5480404290779745e+01 6.5599237691837274e+01 9.1179521735205749e-01 2 0 0 -75 0 P 195 111 -8.2657351272765955e-01 7.8848798350730487e-01 1.2765680916774796e+01 1.2817400904293603e+01 1.3497999999999999e-01 2 0 0 -76 0 P 196 213 -7.9433878678597092e-01 4.3574366466307551e-01 1.7578414382623187e+01 1.7616247407695436e+01 7.1461449218151363e-01 2 0 0 -77 0 P 197 111 -9.3314735858685560e-01 -6.2790142045255470e-01 7.8946953041036680e+00 7.9755537570553985e+00 1.3497999999999999e-01 2 0 0 -78 0 P 198 223 -1.4873893292554239e+00 2.3891052157349510e-01 1.6881736267763948e+01 1.6966975143136498e+01 7.8474253062634569e-01 2 0 0 -79 0 P 199 -213 -8.6327166983079384e-01 1.3232007939613391e-01 5.2690952433733145e+00 5.3557217283060572e+00 3.9704403781757419e-01 2 0 0 -80 0 P 200 323 -1.6613365377513465e+00 -7.6011701606238102e-01 1.0124147137273564e+01 1.0324922914625303e+01 8.7627676336584359e-01 2 0 0 -81 0 P 201 -311 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696917e+00 4.9767000000000000e-01 2 0 0 -82 0 P 202 3112 -1.8441967940919355e+00 -1.3213630468256885e+00 1.0038364402446758e+01 1.0360969286064202e+01 1.1974400000000001e+00 2 0 0 -83 0 P 203 221 -1.4583744633757945e+00 1.7279417687409573e-01 7.4072308360005090e+00 7.5712273815600772e+00 5.4744999999999999e-01 2 0 0 -84 0 P 204 -3112 -2.7871596910270373e+00 -4.3261702294956333e-01 1.0276470718751812e+01 1.0723578209664675e+01 1.1974400000000001e+00 2 0 0 -85 0 P 205 -211 -2.3463548895022307e-01 3.8275857104720590e-01 3.7780705689810018e-01 6.0313837013326677e-01 1.3957000000000000e-01 1 0 0 0 0 P 206 211 -6.4460098550996059e-01 2.0472505911299932e-01 3.1021058469222291e+00 3.1780439346803107e+00 1.3957000000000000e-01 1 0 0 0 0 P 207 311 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 2 0 0 -86 0 P 208 -321 -1.6835957314647925e+00 5.7502921006996155e-01 2.5030946983757643e+00 3.1103500138211153e+00 4.9359999999999998e-01 1 0 0 0 0 P 209 111 -1.4014985911539006e+00 9.9159072173989193e-01 6.3981511675636975e+00 6.6258590706295362e+00 1.3497999999999999e-01 2 0 0 -87 0 P 210 213 -9.6646484642001329e-01 1.0297103343557248e+00 3.9278503494105834e+00 4.2807800120428974e+00 9.5011129458422561e-01 2 0 0 -88 0 P 211 113 -1.5844201907951090e+00 3.2761292509146417e-01 1.6301442665538992e+00 2.4279522150855071e+00 7.8731446022150242e-01 2 0 0 -89 0 P 212 -213 -1.1710739363307439e+00 -5.2844511866246523e-03 1.8497534609192328e+00 2.2276480672007817e+00 4.1156525040772202e-01 2 0 0 -90 0 P 213 113 -6.2093468371241456e-01 -8.6668736080996303e-02 9.5906356420507188e-01 1.3134358278937774e+00 6.4205872204835146e-01 2 0 0 -91 0 P 214 2224 -2.0185366513081511e+00 1.9186110978437379e-01 2.2501044345770262e+00 3.2526963087490626e+00 1.1856485197243571e+00 2 0 0 -92 0 P 215 111 -9.2642973855978927e-01 4.5143517373897674e-01 1.1576608301212377e+00 1.5557840385393122e+00 1.3497999999999999e-01 2 0 0 -93 0 P 216 -2224 -3.1032735478718187e+00 -8.5363516668582565e-02 -3.5868877264797472e-01 3.3600610247344354e+00 1.2344062586590931e+00 2 0 0 -94 0 P 217 213 -9.2680052695863313e-01 4.6310995514766951e-01 1.1674412209241978e+00 1.7497123530220562e+00 7.9066065203557612e-01 2 0 0 -95 0 P 218 113 -1.6876829116224674e+00 -7.0622510073982764e-02 -4.1776953565468920e-02 1.9645158264640727e+00 1.0021556612956735e+00 2 0 0 -96 0 P 219 111 -1.8969189782821572e-02 1.8792948360487647e-02 -8.6176548071781031e-02 1.6235455924200173e-01 1.3497999999999999e-01 2 0 0 -97 0 P 220 2112 1.2311947456161887e-01 -1.8395851082529507e-01 -4.4092232421181160e-01 1.0612273175949323e+00 9.3957000000000002e-01 1 0 0 0 0 P 221 -3122 7.1199729324989025e-02 -1.9503849061399534e-01 5.8922097304292043e-01 1.2786839452149945e+00 1.1156800000000000e+00 2 0 0 -98 0 P 222 333 4.7572441015108302e-01 -2.1474214213958498e+00 1.2670522471103023e+00 2.7350441383951600e+00 1.0184854277696322e+00 2 0 0 -99 0 P 223 -311 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679957e-01 4.9767000000000000e-01 2 0 0 -100 0 P 224 111 1.2940890778630012e+00 -9.2518979500341925e-01 1.1728881721895412e-01 1.6008182174336356e+00 1.3497999999999999e-01 2 0 0 -101 0 P 225 -213 1.2261900383170972e+00 -5.2838540579492410e-01 5.2201528021316679e-01 1.6417319868511671e+00 8.0003175983775732e-01 2 0 0 -102 0 P 226 223 6.6024216925665991e-01 9.4027839869779237e-02 -2.4006983269977769e-01 1.0578426798937934e+00 7.8526215628735507e-01 2 0 0 -103 0 P 227 331 1.4946045294379426e+00 -1.0732848342928707e+00 9.5876268473866905e-02 2.0767748473918295e+00 9.5813280549378643e-01 2 0 0 -104 0 P 228 223 9.9420282128298698e-01 -3.7546557748686166e-01 -1.0613068048478145e+00 1.6955343449694420e+00 7.8679789732185013e-01 2 0 0 -105 0 P 229 213 9.2827556121699073e-01 1.2565483393623539e-01 -5.9530845933283794e-01 1.2728415388191838e+00 6.2309611324906244e-01 2 0 0 -106 0 P 230 -211 1.5554644844482319e+00 -1.6863632900265141e-01 -1.7007854817912444e+00 2.3151801255650000e+00 1.3957000000000000e-01 1 0 0 0 0 P 231 3212 1.3099515119184744e+00 -9.1416401295275251e-01 -1.2311207243195397e+00 2.3429687463780744e+00 1.1925500000000000e+00 2 0 0 -107 0 P 232 -3212 1.3242055177125795e+00 -6.8638328788203096e-01 -1.9338349209273054e+00 2.7178181092416955e+00 1.1925500000000000e+00 2 0 0 -108 0 P 233 213 4.4600368878850227e-01 -8.0727387354407465e-01 -1.6343381049089423e+00 2.0195652366821699e+00 7.4630577294963429e-01 2 0 0 -109 0 P 234 223 5.9193869189485193e-01 -1.0175355777714485e+00 -3.4830928743747203e+00 3.7577959153385119e+00 7.7673940470532832e-01 2 0 0 -110 0 P 235 113 -1.7673372205386045e-02 -2.9141556480679931e+00 -4.8090909785285803e+00 5.6572316424831532e+00 6.1991800078394799e-01 2 0 0 -111 0 P 236 -211 -3.2654834478515110e-01 -6.7351702809598046e-01 -2.7714904742543802e+00 2.8741778376433031e+00 1.3957000000000000e-01 1 0 0 0 0 P 237 211 -1.4113547946701910e-01 8.1332088206809740e-03 -2.5848972391342706e-01 3.2600934790116970e-01 1.3957000000000000e-01 1 0 0 0 0 P 238 113 -5.6972190284160862e-01 -3.5003862791043274e+00 -6.6608917286834028e+00 7.5771878863400373e+00 6.8484340847811531e-01 2 0 0 -112 0 P 239 -213 -8.6042664087407350e-01 -2.8563772686369608e+00 -9.5358671015221450e+00 1.0019230517937205e+01 7.4363545407684173e-01 2 0 0 -113 0 P 240 211 -1.7150384319993699e+00 -3.7363227332416113e+00 -9.2359168317705915e+00 1.0110544193981660e+01 1.3957000000000000e-01 1 0 0 0 0 P 241 -213 -8.1549856648566732e-01 -1.3430766565358121e+00 -4.4625495466393730e+00 4.8342640599841600e+00 9.9341216429620149e-01 2 0 0 -114 0 P 242 111 -1.9899595175840767e+00 -2.8105357529960577e+00 -9.9097800936532590e+00 1.0491949828580909e+01 1.3497999999999999e-01 2 0 0 -115 0 P 243 211 1.5907968441241596e-01 2.5791089111383038e-02 -3.3179660333165167e-01 3.9438597484282650e-01 1.3957000000000000e-01 1 0 0 0 0 P 244 221 -6.1327225553376563e-01 -1.9053975470304130e-01 -3.2725294108080534e+00 3.3795796343086031e+00 5.4744999999999999e-01 2 0 0 -116 0 P 245 -211 -6.4329156172857138e-01 -6.8687745213541831e-02 -1.4702607017873401e+00 1.6123549100163732e+00 1.3957000000000000e-01 1 0 0 0 0 P 246 113 -4.5403661687550312e-01 -8.6902816474020469e-02 -2.8367549097601654e+00 2.9740262594884488e+00 7.6416779904912269e-01 2 0 0 -117 0 P 247 2212 -3.7022331340018594e-01 9.6636894054778391e-02 -3.4626391076266749e+00 3.6078558970173993e+00 9.3827000000000005e-01 1 0 0 0 0 P 248 -2212 -5.2882150793671845e-01 -4.3613633431824639e-01 -3.8558104386500678e+00 4.0270947122052956e+00 9.3827000000000005e-01 1 0 0 0 0 P 249 213 -1.6059435270807487e+00 -5.4791989963380516e-01 -4.7447532838858999e+00 5.0922126184455179e+00 7.3394468314884231e-01 2 0 0 -118 0 P 250 113 -1.4939629446410834e+00 2.2898207276010285e-01 -7.3349343404515981e+00 7.5318728112929723e+00 8.0217716070205192e-01 2 0 0 -119 0 P 251 223 -1.8797596367186018e+00 1.8505823868378783e+00 -1.0122234129684928e+01 1.0489907890746126e+01 7.8764987009991638e-01 2 0 0 -120 0 P 252 223 -1.8133470483218717e+00 1.7186906924022449e+00 -1.7262417226371358e+01 1.7459919314773000e+01 7.8460739688900027e-01 2 0 0 -121 0 P 253 -211 -2.5838464734318373e-01 3.8031641369989722e-01 -1.4854522860686203e+01 1.4862292299778700e+01 1.3957000000000000e-01 1 0 0 0 0 P 254 211 -1.7649897167754627e+00 1.4636054011096398e+00 -3.7881886874393018e+01 3.7951471149610136e+01 1.3957000000000000e-01 1 0 0 0 0 P 255 311 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -122 0 P 256 -311 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 2 0 0 -123 0 P 257 1114 -1.1721384161292434e+00 7.9620984340023501e-02 -5.7798059416760822e+01 5.7824385184096379e+01 1.2898068101919591e+00 2 0 0 -124 0 P 258 223 -2.5658458888797053e-01 1.1741062227357534e-01 -6.6069309686689479e+01 6.6074625560155994e+01 7.8920183328603977e-01 2 0 0 -125 0 P 259 -1114 -1.1118756984451283e+00 4.7098036284291449e-03 -7.5095286699551011e+01 7.5113186769820999e+01 1.2051773642106405e+00 2 0 0 -126 0 P 260 -211 -8.8366504358488751e-01 -5.7185408679097882e-01 -5.3190507796194645e+01 5.3201104127713144e+01 1.3957000000000000e-01 1 0 0 0 0 P 261 213 -7.5457908692256526e-01 -1.8550274055557001e-03 -6.0851918697939290e+01 6.0861347878563521e+01 7.6043627962360516e-01 2 0 0 -127 0 P 262 313 -5.2356689018349933e-01 -1.3194785611780053e+00 -6.2402774114210409e+01 6.2425474597775633e+01 9.0471854543684183e-01 2 0 0 -128 0 P 263 -313 -1.1166248071558116e+00 -1.3816476856172815e+00 -4.8281968538343975e+01 4.8322766889805884e+01 8.8629152187922478e-01 2 0 0 -129 0 P 264 -213 7.4932935392847599e-01 -1.7881148332235097e+00 -5.4211638245296051e+01 5.4258059505359093e+01 1.1298012704852716e+00 2 0 0 -130 0 P 265 2224 2.1305547501532636e+00 -2.8875932717779862e+00 -4.6292857887869758e+01 4.6449002697402115e+01 1.2663734481366959e+00 2 0 0 -131 0 P 266 -213 2.9501615734955484e+00 -2.0611191424768478e+00 -5.7704459572170741e+01 5.7822650963053867e+01 8.3823889772115534e-01 2 0 0 -132 0 P 267 -2112 1.3366857100925198e+00 -8.2706876300639198e-01 -1.9515446600578798e+01 1.9601179026559830e+01 9.3957000000000002e-01 1 0 0 0 0 P 268 -213 1.4454688220488716e+00 -7.3744816474676456e-01 -1.7258252555606354e+01 1.7343707648671078e+01 5.6894975021936267e-01 2 0 0 -133 0 P 269 223 1.5333538260086685e+00 1.6892059317215538e+00 -2.2561208053669169e+01 2.2689639384113832e+01 7.7912508924065293e-01 2 0 0 -134 0 P 270 213 1.1917981052355211e+00 2.4088605343486744e-01 -1.9862858981540064e+01 1.9913265186034764e+01 7.2564084395440487e-01 2 0 0 -135 0 P 271 2212 1.0148440736041775e+00 9.6779805550273279e-01 -2.5790979365897766e+01 2.5846112063810075e+01 9.3827000000000005e-01 1 0 0 0 0 P 272 -211 8.3949500658127896e-01 2.3400794756034817e+00 -3.4751319161058518e+01 3.4840413129537779e+01 1.3957000000000000e-01 1 0 0 0 0 P 273 -2214 1.7983847562803692e+00 7.3664058181282535e+00 -1.1993075545251776e+02 1.2017692097077203e+02 1.2681120591629913e+00 2 0 0 -136 0 P 274 223 1.1509038263009055e+00 3.5319809372778194e-01 -2.0722945499304867e+01 2.0772678532097942e+01 7.8382059166358686e-01 2 0 0 -137 0 P 275 113 1.2596345802193534e+00 4.5750511743499249e+00 -7.3766824680073668e+01 7.3923106188787401e+01 7.5062153873152426e-01 2 0 0 -138 0 P 276 2214 1.5190503581519559e+00 1.6381843012732062e+00 -9.0013673850423800e+01 9.0049028670783741e+01 1.1725709810594909e+00 2 0 0 -139 0 P 277 213 2.0578233862762640e-01 1.2216377008536984e-01 -2.0912759884649834e+01 2.0924960597890376e+01 6.7318620947914676e-01 2 0 0 -140 0 P 278 -2224 3.0556014846562324e-01 1.5957522138898375e+00 -5.1694021773796713e+01 5.1734448116246725e+01 1.2415484728318067e+00 2 0 0 -141 0 P 279 331 6.1159455107455185e-01 9.8642666529095557e-01 -4.3395578927702907e+01 4.3421661426494119e+01 9.5777090459737735e-01 2 0 0 -142 0 P 280 113 1.7370568052796040e+00 2.4297024488596281e-01 -8.8460462398386383e+01 8.8479856883274010e+01 5.9604149490845026e-01 2 0 0 -143 0 P 281 223 1.0381032329670323e+00 -1.9541194859645697e-01 -6.0129467008396098e+01 6.0143779295091235e+01 7.7816516942080050e-01 2 0 0 -144 0 P 282 223 6.0277948289184857e-01 4.2525395145953201e-02 -1.4154617604409043e+02 1.4154968951817088e+02 7.9340939728978999e-01 2 0 0 -145 0 P 283 113 1.3576402747404808e+00 2.1290308839209571e-01 -3.0819349617131866e+02 3.0819771455210758e+02 8.4359824629068492e-01 2 0 0 -146 0 P 284 321 1.9707904859542941e-01 -1.8041953679716968e-01 -1.6127321181959451e+02 1.6127418852044630e+02 4.9359999999999998e-01 1 0 0 0 0 P 285 -311 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -147 0 P 286 2112 1.1564324061673690e+00 4.0927520449593802e-01 -2.1981471572107174e+02 2.1982014666864256e+02 9.3957000000000002e-01 1 0 0 0 0 P 287 -2212 9.0904909410333434e-01 -3.5196262463989575e-02 -3.5959413299945447e+02 3.5959650783517719e+02 9.3827000000000005e-01 1 0 0 0 0 P 288 321 7.1688243292429099e-01 -1.5260811464153853e-01 -2.1460689020507988e+02 2.1460870945540515e+02 4.9359999999999998e-01 1 0 0 0 0 P 289 333 8.0097651661225422e-01 9.8596548019314847e-02 -2.9490839976680940e+02 2.9491126732797227e+02 1.0198329819226979e+00 2 0 0 -148 0 P 290 -321 5.0418828950498273e-01 5.3523060479821194e-01 -2.0070252973120446e+02 2.0070448365469218e+02 4.9359999999999998e-01 1 0 0 0 0 P 291 223 -4.8590448068744879e-01 -5.8809670963273808e-01 -7.4207865814018902e+01 7.4215919884725380e+01 7.8323352858977313e-01 2 0 0 -149 0 P 292 211 3.9242950286129108e-01 -2.0840078293561953e-01 -1.8648424078664419e+02 1.8648482236728285e+02 1.3957000000000000e-01 1 0 0 0 0 P 293 221 -1.7063816599739356e-01 -6.0097669642154050e-01 -5.0431125538651315e+01 5.0437966007473435e+01 5.4744999999999999e-01 2 0 0 -150 0 P 294 2214 1.6431277093737304e-02 -5.3759544996054023e-02 -3.2489795453959999e+02 3.2490020742516401e+02 1.2086193871872084e+00 2 0 0 -151 0 P 295 111 -5.7351337967272420e-01 -8.2647110166747562e-01 -8.0206852911437488e+02 8.0206917132338140e+02 1.3497999999999999e-01 2 0 0 -152 0 V -15 0 0 0 0 0 2 1 0 P 109 21 5.1387124488148161e-01 -3.2205039602836177e-01 7.0657442164984490e+00 7.0917220367749429e+00 0 2 0 0 -15 0 P 110 21 -5.1387124488148161e-01 3.2205039602836177e-01 1.2307516868381542e+01 1.2322449090152261e+01 0 2 0 0 -15 0 P 296 92 0 0 1.9373261084879992e+01 1.9414171126927204e+01 1.2596807066429270e+00 2 0 0 -16 0 V -16 0 0 0 0 0 0 2 0 P 297 -211 -2.0317271556976602e-01 2.5215155745021967e-01 6.9362772865471038e+00 6.9452344770386132e+00 1.3957000000000000e-01 1 0 0 0 0 P 298 213 2.0317271556976602e-01 -2.5215155745021967e-01 1.2436983798332886e+01 1.2468936649888589e+01 8.3123740210821184e-01 2 0 0 -153 0 V -17 0 0 0 0 0 0 3 0 P 299 211 -1.3311297140433123e-01 8.2070871348664379e-02 -5.7585411632740287e-02 2.1737192922024559e-01 1.3957000000000000e-01 1 0 0 0 0 P 300 -211 -4.2938482434311713e-03 -2.7874120168555949e-02 -7.8442671347478413e-02 1.6256826657142293e-01 1.3957000000000000e-01 1 0 0 0 0 P 301 111 -5.6562927896665088e-02 7.1792491889764123e-02 1.3922301670895176e-01 2.1437391512384674e-01 1.3497999999999999e-01 2 0 0 -154 0 V -18 0 0 0 0 0 0 3 0 P 302 -211 -3.3900975360586688e-01 -8.4631353862517522e-01 4.2709349160994501e+00 4.3693865772162566e+00 1.3957000000000000e-01 1 0 0 0 0 P 303 211 -2.5033979406491824e-01 -8.4753424823063292e-02 1.4403521465048290e+00 1.4710361132048297e+00 1.3957000000000000e-01 1 0 0 0 0 P 304 111 4.3703572574240603e-02 -2.0242779338518258e-01 8.2366249511477030e-01 8.5995727803724942e-01 1.3497999999999999e-01 2 0 0 -155 0 V -19 0 0 0 0 0 0 2 0 P 305 211 -4.4526015143556819e-01 -1.8172716722569746e-01 2.8014743515334413e+00 2.8458776665492875e+00 1.3957000000000000e-01 1 0 0 0 0 P 306 111 5.0842018629982250e-02 1.4907326768311860e-01 5.6043993017609459e+00 5.6082367000666684e+00 1.3497999999999999e-01 2 0 0 -156 0 V -20 0 0 0 0 0 0 3 0 P 307 211 -2.6929065983679287e-03 1.1285645195543136e-01 1.7468123181512798e+00 1.7560116429679400e+00 1.3957000000000000e-01 1 0 0 0 0 P 308 -211 2.0154960412591191e-01 1.2413227727648309e-02 1.7424304682299983e+01 1.7426033678885940e+01 1.3957000000000000e-01 1 0 0 0 0 P 309 111 1.7832916964188436e-01 1.0203661884238632e-01 6.3101949475202526e+00 6.3149816025416952e+00 1.3497999999999999e-01 2 0 0 -157 0 V -21 0 0 0 0 0 0 2 0 P 310 -211 -4.4685271127191584e-01 -5.1144332797634284e-01 2.5860721786668751e+01 2.5870014741698281e+01 1.3957000000000000e-01 1 0 0 0 0 P 311 211 -3.7818934872133403e-01 3.0769787513303087e-01 3.5216357845463044e+01 3.5220009154604917e+01 1.3957000000000000e-01 1 0 0 0 0 V -22 0 0 0 0 0 0 2 0 P 312 211 1.2991520945383486e-01 -4.4532952738337911e-01 6.3737149545197269e+01 6.3738990486838958e+01 1.3957000000000000e-01 1 0 0 0 0 P 313 111 6.1470547229871897e-01 7.5100028116748221e-02 1.5295545697336439e+02 1.5295677016844670e+02 1.3497999999999999e-01 2 0 0 -158 0 V -23 0 0 0 0 0 0 2 0 P 314 2212 -1.2219673877438203e-01 7.9464546996402807e-01 1.1677973569188712e+03 1.1677980106040429e+03 9.3827000000000005e-01 1 0 0 0 0 P 315 111 2.7147008407024571e-02 -4.1033510060823578e-02 3.3883584254530552e+02 3.3883587300298723e+02 1.3497999999999999e-01 2 0 0 -159 0 V -24 0 0 0 0 0 0 2 0 P 316 -2112 2.0383755609826110e-01 -2.5760982211119121e-01 2.8949200422010205e+02 2.8949371532336625e+02 9.3957000000000002e-01 1 0 0 0 0 P 317 -211 -1.2006795895647772e-01 -3.3979159078811655e-01 1.7601579920097041e+02 1.7601622346471694e+02 1.3957000000000000e-01 1 0 0 0 0 V -25 0 0 0 0 0 0 3 0 P 318 211 -2.2537908639659168e-01 -9.1510707193303495e-02 -1.5674323812313566e+00 1.5923234585813844e+00 1.3957000000000000e-01 1 0 0 0 0 P 319 -211 -9.0395642249094277e-01 -7.5107488114054516e-02 -6.0381441426750193e+00 6.1074907139638022e+00 1.3957000000000000e-01 1 0 0 0 0 P 320 111 -3.0344578816262824e-01 -1.5053812443678469e-01 -2.1562114705328037e+00 2.1868261429111868e+00 1.3497999999999999e-01 2 0 0 -160 0 V -26 0 -4.1412397752595289e-04 2.0836814097827171e-05 -1.9031113535077952e-03 1.9484927384605410e-03 0 2 0 P 321 22 -1.1382747632865017e-01 4.0426905399940288e-02 -4.4421580483599166e-01 4.6034629390672083e-01 0 1 0 0 0 0 P 322 22 -9.3172763389460167e-01 1.2180619503371494e-02 -4.3606443553300904e+00 4.4590900355259144e+00 0 1 0 0 0 0 V -27 0 0 0 0 0 0 2 0 P 323 -211 1.4254201284684628e-01 -2.0005022368394540e-01 -1.6107380024488089e+00 1.6353271889304617e+00 1.3957000000000000e-01 1 0 0 0 0 P 324 211 -6.8546508476741042e-01 -2.1439710587204105e-02 -4.4980583680071753e+00 4.5521786993180120e+00 1.3957000000000000e-01 1 0 0 0 0 V -28 0 0 0 0 0 0 1 0 P 325 130 5.1403055309709067e-02 3.4796436782695223e-01 -1.7098037996892700e+01 1.7108895354389741e+01 4.9767000000000000e-01 1 0 0 0 0 V -29 0 0 0 0 0 0 3 0 P 326 211 2.5167538714079141e-01 7.4449632190263848e-02 -1.0977353280090194e+01 1.0981377330236525e+01 1.3957000000000000e-01 1 0 0 0 0 P 327 -211 5.3309548495712133e-01 -1.9899962064743846e-02 -1.1139730934144831e+01 1.1153370426674401e+01 1.3957000000000000e-01 1 0 0 0 0 P 328 111 3.6504127426654226e-01 4.4096541971887332e-01 -1.2973198505790748e+01 1.2986523965417277e+01 1.3497999999999999e-01 2 0 0 -161 0 V -30 0 -3.0542603647347061e-05 2.9465768231238892e-04 1.1938413123666275e-03 1.2308051750146046e-03 0 2 0 P 329 22 -1.2899026002081496e-01 6.5304148426829556e-01 2.6509678462506225e+00 2.7332640174725600e+00 0 1 0 0 0 0 P 330 22 3.3611373239930027e-02 2.6711981058688078e-01 1.0771771633006568e+00 1.1103122798363956e+00 0 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 331 -211 7.4338762428573388e-02 -9.1962591215722234e-01 8.7346102008974533e+00 8.7843117668051978e+00 1.3957000000000000e-01 1 0 0 0 0 P 332 211 9.6771833593088247e-02 3.6592751278901069e-02 6.1657454906619036e-01 6.4058393414079928e-01 1.3957000000000000e-01 1 0 0 0 0 V -32 0 0 0 0 0 0 3 0 P 333 -211 -2.6433657073505956e-01 2.1069054534130133e-01 1.4428354141759185e+00 1.4884616709288756e+00 1.3957000000000000e-01 1 0 0 0 0 P 334 211 -2.2718123810590876e-01 1.2236106234764597e-01 1.4061006963613412e+00 1.4363782571920345e+00 1.3957000000000000e-01 1 0 0 0 0 P 335 111 -1.0085983870637980e-01 3.2940453741149744e-01 2.1942990266122524e+00 2.2252747863854112e+00 1.3497999999999999e-01 2 0 0 -162 0 V -33 0 0 0 0 0 0 3 0 P 336 111 1.1452527962241617e-01 -2.1564067455358379e-01 8.3943073226767542e-02 2.9134683821396057e-01 1.3497999999999999e-01 2 0 0 -163 0 P 337 111 2.1798140389722739e-01 -1.6157765338157687e-01 1.0065385695279425e-01 3.1933372799749282e-01 1.3497999999999999e-01 2 0 0 -164 0 P 338 111 2.2698588685234231e-01 -1.2276536419061545e-03 -5.1030533476356360e-02 2.6897549276930482e-01 1.3497999999999999e-01 2 0 0 -165 0 V -34 0 0 0 0 0 0 2 0 P 339 211 1.2060933333105567e-01 -1.4039999345637508e-01 4.1279361792102048e-01 4.7343122557076578e-01 1.3957000000000000e-01 1 0 0 0 0 P 340 111 5.5822476482096692e-02 4.4613421369903616e-01 3.2961727402201504e-02 4.7059320159431600e-01 1.3497999999999999e-01 2 0 0 -166 0 V -35 0 0 0 0 0 0 2 0 P 341 -211 1.5862968892975057e-01 3.2887229730958190e-01 -1.3134574465456359e+00 1.3703906796727032e+00 1.3957000000000000e-01 1 0 0 0 0 P 342 211 -7.6869516522485493e-01 4.5533957384061818e-01 -3.0077205291290707e+00 3.1407147197397411e+00 1.3957000000000000e-01 1 0 0 0 0 V -36 0 0 0 0 0 0 1 0 P 343 310 2.1769949027712782e-01 6.1318587680774661e-01 -1.3816936318745681e+00 1.6062822631300331e+00 4.9767000000000000e-01 2 0 0 -167 0 V -37 0 0 0 0 0 0 3 0 P 344 -211 1.2005336521129144e-01 3.1092501659564013e-02 -5.0581641834251301e-01 5.3917491421880326e-01 1.3957000000000000e-01 1 0 0 0 0 P 345 211 -1.8221207856344207e-02 2.3427491252188562e-01 -2.3629269615407358e+00 2.3786803815412054e+00 1.3957000000000000e-01 1 0 0 0 0 P 346 111 -2.5006494581839389e-01 4.3532067740099673e-01 -2.2251435360246208e+00 2.2850645342335896e+00 1.3497999999999999e-01 2 0 0 -168 0 V -38 0 0 0 0 0 0 3 0 P 347 -211 -5.9016838819195361e-01 1.7141108689545579e-02 -4.7192997852929928e+00 4.7581364831617305e+00 1.3957000000000000e-01 1 0 0 0 0 P 348 211 -1.1034022836323337e-01 -3.0323389382045547e-02 -5.3715563395821642e-01 5.6666606915529982e-01 1.3957000000000000e-01 1 0 0 0 0 P 349 111 -8.1222506767247327e-01 -1.5614030610523233e-01 -3.6477847557388130e+00 3.7428121219674733e+00 1.3497999999999999e-01 2 0 0 -169 0 V -39 0 0 0 0 0 0 2 0 P 350 -211 2.5084824323340603e-02 1.7172563836451307e-01 -1.9557957883483599e+00 1.9684348843444670e+00 1.3957000000000000e-01 1 0 0 0 0 P 351 211 -1.2216198107297476e+00 -8.7922811659562079e-03 -1.0575853416897214e+01 1.0647092915287814e+01 1.3957000000000000e-01 1 0 0 0 0 V -40 0 -4.1813923581260875e-05 -4.2744931037189045e-05 -8.2670671209264686e-04 8.2920921206708917e-04 0 2 0 P 352 22 -1.7905707402183735e-01 -2.2906237901470136e-01 -4.2758823563526276e+00 4.2857555850287161e+00 0 1 0 0 0 0 P 353 22 -5.7679170138398558e-02 -1.2944913387952650e-02 -4.0465047292196826e-01 4.0894554978193431e-01 0 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 354 211 -5.9718795198551451e-02 2.6452495283792704e-01 -1.4674440599005480e+00 1.4988034023884778e+00 1.3957000000000000e-01 1 0 0 0 0 P 355 -211 -1.9906708509140325e+00 2.6907668473360791e-01 -1.3946932089318674e+01 1.4091542399180899e+01 1.3957000000000000e-01 1 0 0 0 0 V -42 0 0 0 0 0 0 2 0 P 356 211 -6.2484684743194474e-01 -3.3409804107312108e-01 -1.1050184857881687e+01 1.1073758181487090e+01 1.3957000000000000e-01 1 0 0 0 0 P 357 111 -5.0312148003119694e-01 -7.2889076932598906e-01 -9.1202186249171646e+00 9.1641159062925084e+00 1.3497999999999999e-01 2 0 0 -170 0 V -43 0 0 0 0 0 0 2 0 P 358 22 8.1110939178376681e-02 7.1308275250644287e-02 -4.8974168720692255e+00 4.8986075443335881e+00 0 1 0 0 0 0 P 359 113 -2.0696099258902326e-01 -2.7810589977472516e-01 -1.5641875994409514e+01 1.5664434449557323e+01 7.6553658047847217e-01 2 0 0 -171 0 V -44 0 0 0 0 0 0 2 0 P 360 321 1.0329203360506498e-01 -8.7387326781869390e-01 -1.7137062043677236e+01 1.7166737027788869e+01 4.9359999999999998e-01 1 0 0 0 0 P 361 -211 -3.6221071693300189e-01 -2.2380794372185306e-01 -6.2905068714809262e+00 6.3064445675977261e+00 1.3957000000000000e-01 1 0 0 0 0 V -45 0 0 0 0 0 0 3 0 P 362 111 1.6889257592659648e-01 -9.4484418283927146e-02 -1.7355837553971882e+00 1.7515486233331292e+00 1.3497999999999999e-01 2 0 0 -172 0 P 363 111 2.9925921186909250e-02 -2.0438383490219006e-01 -8.4333768920500407e-01 8.7869583540713725e-01 1.3497999999999999e-01 2 0 0 -173 0 P 364 111 1.7676219299632576e-01 -3.0235125400102209e-01 -1.5675602911553823e+00 1.6118703485317942e+00 1.3497999999999999e-01 2 0 0 -174 0 V -46 0 0 0 0 0 0 2 0 P 365 311 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 2 0 0 -175 0 P 366 111 3.7898161351632903e-01 -2.1799505613207515e-01 1.2846742739940369e+00 1.3637288948114183e+00 1.3497999999999999e-01 2 0 0 -176 0 V -47 0 2.6817846767744381e+01 5.9063419656930051e+01 1.4231157227461964e+02 1.6104165445601933e+02 0 2 0 P 367 2112 5.8115766378682054e-01 1.6774805152241707e+00 3.8726477300170425e+00 4.3625539921978111e+00 9.3957000000000002e-01 1 0 0 0 0 P 368 211 2.4959276451014145e-01 1.5215784469419352e-01 5.3581207820857168e-01 6.2611734191921709e-01 1.3957000000000000e-01 1 0 0 0 0 V -48 0 5.5561167844417639e+02 2.9648203464623077e+02 1.9902630414974558e+03 2.1243805076085168e+03 0 2 0 P 369 -3122 1.5246765486763587e+00 6.8901077612516815e-01 5.2717372079757707e+00 5.6422805212127161e+00 1.1156800000000000e+00 2 0 0 -177 0 P 370 111 3.2954996931296582e-01 3.0043000072794990e-01 1.3703091213103993e+00 1.4473520843105354e+00 1.3497999999999999e-01 2 0 0 -178 0 V -49 0 0 0 0 0 0 1 0 P 371 310 1.9767262296736329e-01 -1.8664352920988220e-01 9.7853555438834050e-01 1.1309807836425934e+00 4.9767000000000000e-01 2 0 0 -179 0 V -50 0 0 0 0 0 0 2 0 P 372 3122 4.0008082281271762e-01 1.7226597706454996e-01 3.7675672439506922e+00 3.9533587026383934e+00 1.1156800000000000e+00 2 0 0 -180 0 P 373 211 -7.6127966935382194e-02 -1.5658972981337069e-01 3.8956794592278010e-01 4.4895298219661400e-01 1.3957000000000000e-01 1 0 0 0 0 V -51 0 0 0 0 0 0 2 0 P 374 311 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -181 0 P 375 111 3.2308081006429989e-01 1.4648299619720992e-02 1.7578846612369856e+00 1.7924770194135893e+00 1.3497999999999999e-01 2 0 0 -182 0 V -52 0 0 0 0 0 0 1 0 P 376 130 -5.4531781025742567e-03 -4.7321762813838658e-01 3.3468501377670887e+00 3.4165839568645051e+00 4.9767000000000000e-01 1 0 0 0 0 V -53 0 2.3332650498310875e-04 -3.2982236468777218e-04 3.3984253089612997e-03 3.4224319558740653e-03 0 2 0 P 377 22 5.4748163446670128e-01 -7.7073006323284021e-01 7.4008500562631090e+00 7.4609880395118520e+00 0 1 0 0 0 0 P 378 22 8.3117379614621023e-01 -1.1780900857995524e+00 1.2679412612871024e+01 1.2761122612728558e+01 0 1 0 0 0 0 V -54 0 0 0 0 0 0 3 0 P 379 -211 2.5687463659686677e-01 6.5879190823043429e-02 5.2726859506992803e+00 5.2811950888328152e+00 1.3957000000000000e-01 1 0 0 0 0 P 380 211 2.4344618234348475e-01 -2.6033907415343182e-02 5.2831048139718035e+00 5.2906162276567530e+00 1.3957000000000000e-01 1 0 0 0 0 P 381 111 3.1545823294251452e-01 2.7789258533843370e-01 6.1072318419705818e+00 6.1231722626181826e+00 1.3497999999999999e-01 2 0 0 -183 0 V -55 0 0 0 0 0 0 2 0 P 382 -211 4.1775258590954462e-01 -7.2867077866813867e-01 9.3546085054334149e+00 9.3932772982354855e+00 1.3957000000000000e-01 1 0 0 0 0 P 383 211 8.9904020598760359e-01 -4.4760234187789893e-01 7.1721270095470473e+00 7.2434457804563630e+00 1.3957000000000000e-01 1 0 0 0 0 V -56 0 0 0 0 0 0 1 0 P 384 310 1.2574509690993827e+00 -1.5956570669947141e+00 2.6106191095929276e+01 2.6189849052280088e+01 4.9767000000000000e-01 2 0 0 -184 0 V -57 0 0 0 0 0 0 2 0 P 385 -321 7.1424613341219384e-02 -2.0219924047183085e-01 8.2801006520162108e+00 8.2975715589416641e+00 4.9359999999999998e-01 1 0 0 0 0 P 386 211 1.6529271006823174e-01 7.4012628886196002e-02 8.1941799863168385e-01 8.5072039508754027e-01 1.3957000000000000e-01 1 0 0 0 0 V -58 0 8.4540998512518928e-06 4.3079133421901049e-05 3.7461531531249770e-03 3.7464532500979474e-03 0 2 0 P 387 22 3.6906006137794822e-02 2.7604572388385823e-01 1.8433548845177015e+01 1.8435652587377820e+01 0 1 0 0 0 0 P 388 22 2.6763598711565674e-02 4.8392294413164484e-02 9.7795187978948146e+00 9.7796751491423581e+00 0 1 0 0 0 0 V -59 0 0 0 0 0 0 3 0 P 389 -211 -2.7048272019072223e-01 -3.3337801697846353e-01 2.0863152665314590e+01 2.0868035861701252e+01 1.3957000000000000e-01 1 0 0 0 0 P 390 211 -3.6903342906120246e-01 -1.0185232158680115e-01 1.1405057272625475e+01 1.1412334149679658e+01 1.3957000000000000e-01 1 0 0 0 0 P 391 111 4.4216843280863220e-02 -2.3386132928312431e-01 1.6740237914530020e+01 1.6742473869952200e+01 1.3497999999999999e-01 2 0 0 -185 0 V -60 0 0 0 0 0 0 2 0 P 392 -211 3.6535041280299030e-01 2.8363138994268199e-02 1.4670351021381544e+01 1.4675590763824106e+01 1.3957000000000000e-01 1 0 0 0 0 P 393 211 -1.9095740484233517e-01 1.6790139995297170e-02 6.4695094038113599e+00 6.4738534390399041e+00 1.3957000000000000e-01 1 0 0 0 0 V -61 0 -5.5865219181540288e-07 -6.7518234192367481e-06 3.0359197674457219e-04 3.0366903838848478e-04 0 2 0 P 394 22 -8.9078266023006322e-02 -9.5497267321269530e-01 4.3017933459134625e+01 4.3028624273134682e+01 0 1 0 0 0 0 P 395 22 9.4738480655445784e-03 -7.1196291432936137e-03 2.4201066955966205e-01 2.4230065434707967e-01 0 1 0 0 0 0 V -62 0 0 0 0 0 0 2 0 P 396 211 9.3430636949675128e-02 4.8614313543461886e-02 7.8310333940595754e+01 7.8310529140773440e+01 1.3957000000000000e-01 1 0 0 0 0 P 397 -211 -3.3716277400515381e-02 -3.8674399200696202e-01 4.2514631322717214e+01 4.2516632792287105e+01 1.3957000000000000e-01 1 0 0 0 0 V -63 0 0 0 0 0 0 2 0 P 398 311 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -186 0 P 399 111 -4.2885849112531471e-01 -1.5673053900609951e-01 6.7992945942717043e+01 6.7994613033952248e+01 1.3497999999999999e-01 2 0 0 -187 0 V -64 0 0 0 0 0 0 2 0 P 400 -311 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -188 0 P 401 -211 1.2172230641498865e-02 3.7825020894308725e-01 1.1158794225620269e+02 1.1158867128047673e+02 1.3957000000000000e-01 1 0 0 0 0 V -65 0 0 0 0 0 0 2 0 P 402 211 4.3187380787425550e-01 -3.8323959647493888e-01 2.6988168414236554e+02 2.6988233788612160e+02 1.3957000000000000e-01 1 0 0 0 0 P 403 111 -7.3218584890651639e-02 -9.0155059350643107e-02 2.9370017637223118e+01 2.9370557442906950e+01 1.3497999999999999e-01 2 0 0 -189 0 V -66 0 0 0 0 0 0 1 0 P 404 130 4.3601814498344840e-02 9.2504688262059251e-02 7.8009886886480444e+01 7.8011541362198145e+01 4.9767000000000000e-01 1 0 0 0 0 V -67 0 0 0 0 0 0 3 0 P 405 111 6.5309564888249233e-03 -6.6103335182406145e-02 9.7992131137707318e+01 9.7992246615813144e+01 1.3497999999999999e-01 2 0 0 -190 0 P 406 111 1.2000194664104810e-01 4.1020079997362527e-02 6.8020962999834879e+01 6.8021215147477818e+01 1.3497999999999999e-01 2 0 0 -191 0 P 407 111 1.3341098289792858e-01 -1.9463592052468182e-01 7.4411204543115218e+01 7.4411701114741675e+01 1.3497999999999999e-01 2 0 0 -192 0 V -68 0 0 0 0 0 0 2 0 P 408 130 1.5093662397629165e-01 1.0034531946336880e-01 2.1097599386832690e+02 2.1097665869760286e+02 4.9767000000000000e-01 1 0 0 0 0 P 409 310 4.3080355445905313e-02 -5.0908312604978634e-02 1.8471279506626348e+02 1.8471347753803366e+02 4.9767000000000000e-01 2 0 0 -193 0 V -69 0 0 0 0 0 0 3 0 P 410 211 -8.8986611946982638e-02 6.9570257664758217e-02 7.3060465880930776e+00 7.3082525387498647e+00 1.3957000000000000e-01 1 0 0 0 0 P 411 -211 3.2612733257024029e-01 -9.3180200276067285e-02 1.7277474714617092e+01 1.7281367245849093e+01 1.3957000000000000e-01 1 0 0 0 0 P 412 111 1.7497647683607498e-01 2.9324661225942372e-01 2.1511858118518035e+01 2.1514991741915633e+01 1.3497999999999999e-01 2 0 0 -194 0 V -70 0 0 0 0 0 0 2 0 P 413 3122 7.9052202219132631e-02 6.3510108851245561e-01 1.6014488825012842e+02 1.6015005331610672e+02 1.1156800000000000e+00 2 0 0 -195 0 P 414 22 -3.2938919233779070e-02 1.2000652117164945e-01 1.3097090740719890e+01 1.3097681947893477e+01 0 1 0 0 0 0 V -71 0 1.2757481431566603e+01 2.5785202550200765e+01 2.9183729040974845e+03 2.9190533818123808e+03 0 2 0 P 415 -2112 3.3471436843346714e-01 4.2790066680758426e-01 4.3607026156806192e+01 4.3620530197538514e+01 9.3957000000000002e-01 1 0 0 0 0 P 416 211 -6.2296610291816372e-02 1.2270543124036619e-01 1.8710650589986333e+01 1.8711677176992062e+01 1.3957000000000000e-01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 417 -211 -5.3966998199939242e-01 4.8812533848599660e-01 1.8762747152632105e+01 1.8777371235986347e+01 1.3957000000000000e-01 1 0 0 0 0 P 418 111 -5.7889405922723680e-01 1.3796403726787261e+00 2.5610021578658795e+01 2.5654043555539207e+01 1.3497999999999999e-01 2 0 0 -196 0 V -73 0 0 0 0 0 0 3 0 P 419 -211 8.4195936056102455e-03 2.0789552799372421e-01 3.9004499495231943e+00 3.9084883310241265e+00 1.3957000000000000e-01 1 0 0 0 0 P 420 211 3.4367819715696907e-01 6.4192760786830705e-01 1.3652165927200944e+01 1.3672282181321119e+01 1.3957000000000000e-01 1 0 0 0 0 P 421 111 -1.5640860092586314e-01 4.2312643186493037e-01 1.3320213189149028e+01 1.3328533251358381e+01 1.3497999999999999e-01 2 0 0 -197 0 V -74 0 0 0 0 0 0 2 0 P 422 311 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 2 0 0 -198 0 P 423 211 -2.0753747025873301e-01 -4.8462844466245950e-02 5.2824018809414319e+00 5.2885413740963330e+00 1.3957000000000000e-01 1 0 0 0 0 V -75 0 0 0 0 0 0 2 0 P 424 -311 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -199 0 P 425 -211 -4.1519813495381386e-01 6.1074003971623614e-01 1.3946591518839895e+01 1.3966828117566944e+01 1.3957000000000000e-01 1 0 0 0 0 V -76 0 -4.4604980650574202e-05 4.2549743859432887e-05 6.8888361593526519e-04 6.9167461880071085e-04 0 2 0 P 426 22 -2.3131739921367450e-01 1.5252274105477401e-01 2.7591004671769230e+00 2.7729778783275121e+00 0 1 0 0 0 0 P 427 22 -5.9525611351398500e-01 6.3596524245253083e-01 1.0006580449597873e+01 1.0044423025966090e+01 0 1 0 0 0 0 V -77 0 0 0 0 0 0 2 0 P 428 211 -3.2420035273119030e-01 1.8115415106660560e-01 2.8463603409524980e+00 2.8738771147366253e+00 1.3957000000000000e-01 1 0 0 0 0 P 429 111 -4.7013843405478062e-01 2.5458951359646992e-01 1.4732054041670690e+01 1.4742370292958812e+01 1.3497999999999999e-01 2 0 0 -200 0 V -78 0 -1.3983035899499822e-05 -9.4089835037750707e-06 1.1830050938585944e-04 1.1951215794275435e-04 0 2 0 P 430 22 -4.7587767431975525e-01 -4.0016980423991849e-01 4.2600418017949506e+00 4.3051773002028346e+00 0 1 0 0 0 0 P 431 22 -4.5726968426710041e-01 -2.2773161621263621e-01 3.6346535023087179e+00 3.6703764568525643e+00 0 1 0 0 0 0 V -79 0 0 0 0 0 0 3 0 P 432 -211 -6.2150685489726676e-01 7.8100740241283148e-02 5.0205055395510092e+00 5.0613561575799917e+00 1.3957000000000000e-01 1 0 0 0 0 P 433 211 -7.7339441987470581e-01 1.6872379521568628e-01 7.8500433457686851e+00 7.8910878187428972e+00 1.3957000000000000e-01 1 0 0 0 0 P 434 111 -9.2488054483451543e-02 -7.9140138834743121e-03 4.0111873824442554e+00 4.0145311668136143e+00 1.3497999999999999e-01 2 0 0 -201 0 V -80 0 0 0 0 0 0 2 0 P 435 -211 -4.8881373301361830e-01 -1.8868727647097155e-02 3.4599769991687270e+00 3.4971725027716833e+00 1.3957000000000000e-01 1 0 0 0 0 P 436 111 -3.7445793681717549e-01 1.5118880704323107e-01 1.8091182442045874e+00 1.8585492255343738e+00 1.3497999999999999e-01 2 0 0 -202 0 V -81 0 0 0 0 0 0 2 0 P 437 311 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 2 0 0 -203 0 P 438 211 -2.3124155086897880e-01 -3.3684822055876906e-01 2.8743198814706590e+00 2.9065673817166879e+00 1.3957000000000000e-01 1 0 0 0 0 V -82 0 0 0 0 0 0 1 0 P 439 310 -1.2350681809510533e+00 -4.8544707901892276e-01 4.2614112058510951e+00 4.4909189674696908e+00 4.9767000000000000e-01 2 0 0 -204 0 V -83 0 -2.1481408161251331e+01 -1.5391382865966664e+01 1.1692797845173176e+02 1.2068571580492544e+02 0 2 0 P 440 2112 -1.6685242240378610e+00 -9.6565662968149657e-01 8.3457714687441840e+00 8.6169112218969399e+00 9.3957000000000002e-01 1 0 0 0 0 P 441 -211 -1.7567257005407436e-01 -3.5570641714419182e-01 1.6925929337025740e+00 1.7440580641672592e+00 1.3957000000000000e-01 1 0 0 0 0 V -84 0 0 0 0 0 0 2 0 P 442 22 -6.9369290055963195e-01 -7.3844423871074344e-02 2.3778260423066357e+00 2.4780475230905736e+00 0 1 0 0 0 0 P 443 22 -7.6468156281616251e-01 2.4663860074517008e-01 5.0294047936938737e+00 5.0931798584695036e+00 0 1 0 0 0 0 V -85 0 -6.6124195948730431e+01 -1.0263657618316149e+01 2.4380496232626649e+02 2.5441240022602068e+02 0 2 0 P 444 -2112 -2.6292253938341017e+00 -3.1653082360471818e-01 9.7026808524626684e+00 1.0101377403281182e+01 9.3957000000000002e-01 1 0 0 0 0 P 445 211 -1.5793429719293592e-01 -1.1608619934484518e-01 5.7378986628914297e-01 6.2220080638349406e-01 1.3957000000000000e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 1 0 P 446 130 -3.6590665777119402e-01 3.6753394980499376e-01 2.0984100076084844e+00 2.2181002852423028e+00 4.9767000000000000e-01 1 0 0 0 0 V -87 0 -1.4785007413585779e-04 1.0460714170320036e-04 6.7496830209288431e-04 6.9899018164531828e-04 0 2 0 P 447 22 -1.1609632116846085e+00 8.6534513767992827e-01 5.5108258561418211e+00 5.6978820102659693e+00 0 1 0 0 0 0 P 448 22 -2.4053537946929221e-01 1.2624558405996367e-01 8.8732531142187587e-01 9.2797706036356664e-01 0 1 0 0 0 0 V -88 0 0 0 0 0 0 2 0 P 449 211 -6.4642357927476746e-01 1.1410649784545004e+00 3.3132734348513795e+00 3.5661117996901934e+00 1.3957000000000000e-01 1 0 0 0 0 P 450 111 -3.2004126714524589e-01 -1.1135464409877557e-01 6.1457691455920416e-01 7.1466821235270495e-01 1.3497999999999999e-01 2 0 0 -205 0 V -89 0 0 0 0 0 0 2 0 P 451 211 -1.4766341798580660e+00 9.1994134776747574e-02 1.4809242821358144e+00 2.0979818722472086e+00 1.3957000000000000e-01 1 0 0 0 0 P 452 -211 -1.0778601093704292e-01 2.3561879031471655e-01 1.4921998441808487e-01 3.2997034283829840e-01 1.3957000000000000e-01 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 453 -211 -8.7329616946689381e-01 7.5263142472155542e-02 1.1650286431975723e+00 1.4646099359867493e+00 1.3957000000000000e-01 1 0 0 0 0 P 454 111 -2.9777776686384994e-01 -8.0547593658780198e-02 6.8472481772166038e-01 7.6303813121403208e-01 1.3497999999999999e-01 2 0 0 -206 0 V -91 0 0 0 0 0 0 2 0 P 455 -211 -9.2323025441794174e-02 2.1477743632714319e-01 2.6616411783798294e-01 3.8075715450462372e-01 1.3957000000000000e-01 1 0 0 0 0 P 456 211 -5.2861165827062040e-01 -3.0144617240813948e-01 6.9289944636708889e-01 9.3267867338915345e-01 1.3957000000000000e-01 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 457 2212 -1.9226228964946190e+00 2.5105496858605597e-01 1.9639306251800579e+00 2.9149410787865397e+00 9.3827000000000005e-01 1 0 0 0 0 P 458 211 -9.5913754813531829e-02 -5.9193858801682174e-02 2.8617380939696824e-01 3.3775522996252194e-01 1.3957000000000000e-01 1 0 0 0 0 V -93 0 -8.5110838608413631e-05 4.1473221999532737e-05 1.0635397372811340e-04 1.4292944052024268e-04 0 2 0 P 459 22 -5.5038113910546993e-01 2.6249674384585009e-01 5.8411685220637644e-01 8.4440300558690229e-01 0 1 0 0 0 0 P 460 22 -3.7604859945431929e-01 1.8893842989312667e-01 5.7354397791486122e-01 7.1138103295240995e-01 0 1 0 0 0 0 V -94 0 0 0 0 0 0 2 0 P 461 -2212 -3.0034647518820718e+00 -1.6340168897528362e-01 -3.6167654414129125e-01 3.1715392387987253e+00 9.3827000000000005e-01 1 0 0 0 0 P 462 -211 -9.9808795989746471e-02 7.8038172306701056e-02 2.9877714933164998e-03 1.8852178593570948e-01 1.3957000000000000e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 2 0 P 463 211 -2.0619999689447668e-01 5.0362776002960541e-01 5.9809251368635086e-01 8.2058137879151127e-01 1.3957000000000000e-01 1 0 0 0 0 P 464 111 -7.2060053006415647e-01 -4.0517804881935883e-02 5.6934870723784692e-01 9.2913097423054491e-01 1.3497999999999999e-01 2 0 0 -207 0 V -96 0 0 0 0 0 0 2 0 P 465 -211 -2.0385821111055416e-01 -3.6220140979609450e-01 -7.8664292450954840e-02 4.4543898269267251e-01 1.3957000000000000e-01 1 0 0 0 0 P 466 211 -1.4838247005119132e+00 2.9157889972211171e-01 3.6887338885485912e-02 1.5190768437714002e+00 1.3957000000000000e-01 1 0 0 0 0 V -97 0 -5.4731838131263985e-06 5.4223328431606724e-06 -2.4864535247821415e-05 4.6844190806467883e-05 0 2 0 P 467 22 -1.9705846225357582e-03 1.5069638392957595e-02 -1.2178071002327252e-01 1.2272537854421744e-01 0 1 0 0 0 0 P 468 22 -1.6998605160285816e-02 3.7233099675300502e-03 3.5604161951491492e-02 3.9629180697784289e-02 0 1 0 0 0 0 V -98 0 3.7976633007273047e-01 -1.0402996262150903e+00 3.1427968709405993e+00 6.8202662257423352e+00 0 2 0 P 469 -2212 7.1289145041890822e-02 -1.5445558513177707e-01 6.0981027764510254e-01 1.1318824309974957e+00 9.3827000000000005e-01 1 0 0 0 0 P 470 211 -8.9415716901796184e-05 -4.0582905482218282e-02 -2.0589304602182137e-02 1.4680151421749890e-01 1.3957000000000000e-01 1 0 0 0 0 V -99 0 0 0 0 0 0 2 0 P 471 -321 1.0038375018802244e-01 -9.5747959943768235e-01 5.8014328305206309e-01 1.2276201649987597e+00 4.9359999999999998e-01 1 0 0 0 0 P 472 321 3.7534065996306060e-01 -1.1899418219581674e+00 6.8690896405823920e-01 1.5074239733964006e+00 4.9359999999999998e-01 1 0 0 0 0 V -100 0 0 0 0 0 0 1 0 P 473 310 3.4266828334073823e-01 3.0469670658098944e-02 1.9668660772617352e-01 6.3616900568679946e-01 4.9767000000000000e-01 2 0 0 -208 0 V -101 0 1.1488333490807863e-05 -8.2134136583885698e-06 1.0412367046470049e-06 1.4211335104077831e-05 0 2 0 P 474 22 1.4435757764459331e-01 -1.5555736336425940e-01 -9.6165086740462012e-04 2.1222188457519126e-01 0 1 0 0 0 0 P 475 22 1.1497315002184079e+00 -7.6963243163915995e-01 1.1825046808635874e-01 1.3885963328584443e+00 0 1 0 0 0 0 V -102 0 0 0 0 0 0 2 0 P 476 -211 6.4291291426941599e-01 -4.9454709508610400e-01 6.2481354543056222e-01 1.0333371163594225e+00 1.3957000000000000e-01 1 0 0 0 0 P 477 111 5.8327712404768117e-01 -3.3838310708820062e-02 -1.0279826521739548e-01 6.0839487049174457e-01 1.3497999999999999e-01 2 0 0 -209 0 V -103 0 0 0 0 0 0 3 0 P 478 -211 1.9367344517678403e-01 -1.3441370752915358e-01 7.4193503682874140e-02 2.8383253694232846e-01 1.3957000000000000e-01 1 0 0 0 0 P 479 211 3.3161504232253403e-01 -5.0838567942118260e-02 -2.1167271648523855e-01 4.2052136698296505e-01 1.3957000000000000e-01 1 0 0 0 0 P 480 111 1.3495368175734179e-01 2.7928011534105107e-01 -1.0259061989741322e-01 3.5348877596849970e-01 1.3497999999999999e-01 2 0 0 -210 0 V -104 0 0 0 0 0 0 3 0 P 481 -211 1.8298976692532751e-01 -1.4862546174945823e-01 -1.0669585020692001e-02 2.7416857519442145e-01 1.3957000000000000e-01 1 0 0 0 0 P 482 211 2.7086816075914885e-02 -5.0652211916194179e-02 -9.4710643744833831e-03 1.5122442969811159e-01 1.3957000000000000e-01 1 0 0 0 0 P 483 221 1.2845279464367001e+00 -8.7400716062721828e-01 1.1601691786904229e-01 1.6513818424992961e+00 5.4744999999999999e-01 2 0 0 -211 0 V -105 0 0 0 0 0 0 3 0 P 484 211 2.4242331910144835e-01 -2.8879973733053099e-01 -2.4863283611991935e-01 4.7272870234774300e-01 1.3957000000000000e-01 1 0 0 0 0 P 485 -211 5.3606262164470220e-01 -1.7527092030547467e-01 -3.2520793996948161e-01 6.6582506632636862e-01 1.3957000000000000e-01 1 0 0 0 0 P 486 111 2.1571688053683633e-01 8.8605080149143992e-02 -4.8746602875841349e-01 5.5698057629533038e-01 1.3497999999999999e-01 2 0 0 -212 0 V -106 0 0 0 0 0 0 2 0 P 487 211 -3.3784735675481313e-02 -9.4428454817126785e-03 -8.6200214725578900e-02 1.6775231030954402e-01 1.3957000000000000e-01 1 0 0 0 0 P 488 111 9.6206029689247208e-01 1.3509767941794806e-01 -5.0910824460725901e-01 1.1050892285096399e+00 1.3497999999999999e-01 2 0 0 -213 0 V -107 0 0 0 0 0 0 2 0 P 489 3122 1.2861282209344809e+00 -8.7616170010251626e-01 -1.1087966059631398e+00 2.2126809307277004e+00 1.1156800000000000e+00 2 0 0 -214 0 P 490 22 2.3823290983993460e-02 -3.8002312850236149e-02 -1.2232411835639999e-01 1.3028781565037384e-01 0 1 0 0 0 0 V -108 0 0 0 0 0 0 2 0 P 491 -3122 1.3328849122824100e+00 -6.2435441660021751e-01 -1.8753445922776306e+00 2.6321207854320132e+00 1.1156800000000000e+00 2 0 0 -215 0 P 492 22 -8.6793945698304606e-03 -6.2028871281813447e-02 -5.8490328649674642e-02 8.5697323809682271e-02 0 1 0 0 0 0 V -109 0 0 0 0 0 0 2 0 P 493 211 1.6352498208888305e-01 -5.7698647102462766e-02 -3.4427479907372972e-02 2.2524340149579661e-01 1.3957000000000000e-01 1 0 0 0 0 P 494 111 2.8247870669961922e-01 -7.4957522644161190e-01 -1.5999106250015693e+00 1.7943218351863734e+00 1.3497999999999999e-01 2 0 0 -216 0 V -110 0 0 0 0 0 0 3 0 P 495 -211 1.9545074995621259e-01 -6.5403151837277684e-01 -1.9204953951975325e+00 2.0429734630088499e+00 1.3957000000000000e-01 1 0 0 0 0 P 496 211 2.8530693106995164e-01 -2.5403511663583600e-01 -1.3820998203697235e+00 1.4406989913811832e+00 1.3957000000000000e-01 1 0 0 0 0 P 497 111 1.1118101086868773e-01 -1.0946894276283572e-01 -1.8049765880746443e-01 2.7412346094847867e-01 1.3497999999999999e-01 2 0 0 -217 0 V -111 0 0 0 0 0 0 2 0 P 498 211 5.2489225794783434e-02 -7.1433658617988982e-01 -8.0907252155347420e-01 1.0895457802279682e+00 1.3957000000000000e-01 1 0 0 0 0 P 499 -211 -7.0162598000169468e-02 -2.1998190618881033e+00 -4.0000184569751065e+00 4.5676858622551855e+00 1.3957000000000000e-01 1 0 0 0 0 V -112 0 0 0 0 0 0 2 0 P 500 -211 -6.9126424432539562e-03 -1.9094039395394029e+00 -3.7142119420282071e+00 4.1786027956912930e+00 1.3957000000000000e-01 1 0 0 0 0 P 501 211 -5.6280926039835466e-01 -1.5909823395649245e+00 -2.9466797866551953e+00 3.3985850906487438e+00 1.3957000000000000e-01 1 0 0 0 0 V -113 0 0 0 0 0 0 2 0 P 502 -211 -4.5125981166231938e-01 -2.2885562268996611e+00 -7.8060779803421063e+00 8.1483408275172575e+00 1.3957000000000000e-01 1 0 0 0 0 P 503 111 -4.0916682921175401e-01 -5.6782104173729964e-01 -1.7297891211800389e+00 1.8708896904199468e+00 1.3497999999999999e-01 2 0 0 -218 0 V -114 0 0 0 0 0 0 2 0 P 504 -211 -7.4464548608927983e-01 -3.6972942406954323e-01 -1.6269637249242004e+00 1.8323993817110846e+00 1.3957000000000000e-01 1 0 0 0 0 P 505 111 -7.0853080396387519e-02 -9.7334723246626897e-01 -2.8355858217151724e+00 3.0018646782730749e+00 1.3497999999999999e-01 2 0 0 -219 0 V -115 0 -4.4271586228711654e-04 -6.2527340299215362e-04 -2.2046764270680914e-03 2.3341945272698796e-03 0 2 0 P 506 22 -1.3167327456731837e+00 -1.9679441103467479e+00 -6.8025667273536978e+00 7.2028815917711775e+00 0 1 0 0 0 0 P 507 22 -6.7322677191089320e-01 -8.4259164264931008e-01 -3.1072133662995611e+00 3.2890682368097313e+00 0 1 0 0 0 0 V -116 0 0 0 0 0 0 2 0 P 508 22 -6.3304411189734389e-01 -3.2192633161853706e-01 -2.8083682316781022e+00 2.8967764040905983e+00 0 1 0 0 0 0 P 509 22 1.9771856363578318e-02 1.3138657691549580e-01 -4.6416117912995120e-01 4.8280323021800525e-01 0 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 510 -211 1.2905330776752127e-01 -1.9241956541400762e-01 -1.1309582654954131e+00 1.1628527114782197e+00 1.3957000000000000e-01 1 0 0 0 0 P 511 211 -5.8308992464302445e-01 1.0551674893998715e-01 -1.7057966442647523e+00 1.8111735480102293e+00 1.3957000000000000e-01 1 0 0 0 0 V -118 0 0 0 0 0 0 2 0 P 512 211 -1.0702332936833268e+00 -1.2362155306792325e-01 -3.5129628615751138e+00 3.6771006843703913e+00 1.3957000000000000e-01 1 0 0 0 0 P 513 111 -5.3571023339742208e-01 -4.2429834656588200e-01 -1.2317904223107861e+00 1.4151119340751270e+00 1.3497999999999999e-01 2 0 0 -220 0 V -119 0 0 0 0 0 0 2 0 P 514 -211 -3.0625466188265321e-01 3.7393789633251995e-01 -2.3822328467080025e+00 2.4347760860237151e+00 1.3957000000000000e-01 1 0 0 0 0 P 515 211 -1.1877082827584302e+00 -1.4495582357241707e-01 -4.9527014937435956e+00 5.0970967252692567e+00 1.3957000000000000e-01 1 0 0 0 0 V -120 0 0 0 0 0 0 3 0 P 516 211 -5.7282502290046045e-01 6.2193140407372827e-01 -4.0846424054614676e+00 4.1735728750829395e+00 1.3957000000000000e-01 1 0 0 0 0 P 517 -211 -3.3406291594068510e-01 2.9216957663837884e-01 -1.0712142160796640e+00 1.1678787501067960e+00 1.3957000000000000e-01 1 0 0 0 0 P 518 111 -9.7287169787745642e-01 9.3648140612577135e-01 -4.9663775081437977e+00 5.1484562655563915e+00 1.3497999999999999e-01 2 0 0 -221 0 V -121 0 0 0 0 0 0 3 0 P 519 -211 -1.6747337785881769e-01 3.5532788349039501e-01 -3.9408681763983484e+00 3.9628559153376308e+00 1.3957000000000000e-01 1 0 0 0 0 P 520 211 -6.5606740246757667e-01 4.1021848185040549e-01 -5.1552311937230400e+00 5.2148434382124345e+00 1.3957000000000000e-01 1 0 0 0 0 P 521 111 -9.8980626799547733e-01 9.5314432706144425e-01 -8.1663178562499699e+00 8.2822199612229355e+00 1.3497999999999999e-01 2 0 0 -222 0 V -122 0 0 0 0 0 0 1 0 P 522 310 -5.9679186355341508e-02 2.7105019642252920e-01 -5.8977286821168011e+00 5.9251927269100628e+00 4.9767000000000000e-01 2 0 0 -223 0 V -123 0 0 0 0 0 0 1 0 P 523 130 -2.1581550677124442e-01 5.1984550254271611e-01 -2.7147094024752363e+01 2.7157488932099785e+01 4.9767000000000000e-01 1 0 0 0 0 V -124 0 0 0 0 0 0 2 0 P 524 2112 -1.0025411444960000e+00 2.4762507505735337e-01 -4.0375055415801917e+01 4.0399186854913061e+01 9.3957000000000002e-01 1 0 0 0 0 P 525 -211 -1.6959727163324345e-01 -1.6800409071732988e-01 -1.7423004000958901e+01 1.7425198329183317e+01 1.3957000000000000e-01 1 0 0 0 0 V -125 0 0 0 0 0 0 2 0 P 526 22 -1.3535102538818325e-01 2.7952478983467072e-01 -1.0071553705504458e+01 1.0076341005100328e+01 0 1 0 0 0 0 P 527 111 -1.2123356349978728e-01 -1.6211416756109540e-01 -5.5997755981185016e+01 5.5998284555055655e+01 1.3497999999999999e-01 2 0 0 -224 0 V -126 0 0 0 0 0 0 2 0 P 528 -2112 -1.1057290404247513e+00 6.2289478049111918e-02 -6.1903745329327961e+01 6.1920779987602771e+01 9.3957000000000002e-01 1 0 0 0 0 P 529 211 -6.1466580203770856e-03 -5.7579674420682771e-02 -1.3191541370223055e+01 1.3192406782218230e+01 1.3957000000000000e-01 1 0 0 0 0 V -127 0 0 0 0 0 0 2 0 P 530 211 -1.1448623887606267e-01 2.2926459753080367e-01 -3.0975827552287125e+01 3.0977201966744886e+01 1.3957000000000000e-01 1 0 0 0 0 P 531 111 -6.4009284804650257e-01 -2.3111962493635937e-01 -2.9876091145652161e+01 2.9884145911818635e+01 1.3497999999999999e-01 2 0 0 -225 0 V -128 0 0 0 0 0 0 2 0 P 532 321 -4.2042955560296735e-01 -1.2490778497195061e+00 -5.9513329992444312e+01 5.9529967614937071e+01 4.9359999999999998e-01 1 0 0 0 0 P 533 -211 -1.0313733458053201e-01 -7.0400711458499202e-02 -2.8894441217660987e+00 2.8955069828385667e+00 1.3957000000000000e-01 1 0 0 0 0 V -129 0 0 0 0 0 0 2 0 P 534 -311 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 2 0 0 -226 0 P 535 111 -3.0204755368595976e-01 -1.6351430669869163e-01 -5.2367869292747669e+00 5.2497739566771697e+00 1.3497999999999999e-01 2 0 0 -227 0 V -130 0 0 0 0 0 0 2 0 P 536 -211 8.3272019658133953e-02 -5.8888391597143805e-02 -1.6303543496742719e+01 1.6304459893139811e+01 1.3957000000000000e-01 1 0 0 0 0 P 537 111 6.6605733427034197e-01 -1.7292264416263661e+00 -3.7908094748553331e+01 3.7953599612219286e+01 1.3497999999999999e-01 2 0 0 -228 0 V -131 0 0 0 0 0 0 2 0 P 538 2212 1.8283077509902117e+00 -2.1301051224982039e+00 -3.4175830882779856e+01 3.4303758164179229e+01 9.3827000000000005e-01 1 0 0 0 0 P 539 211 3.0224699916305181e-01 -7.5748814927978214e-01 -1.2117027005089897e+01 1.2145244533222879e+01 1.3957000000000000e-01 1 0 0 0 0 V -132 0 0 0 0 0 0 2 0 P 540 -211 2.9089982035438711e+00 -2.0049546659832567e+00 -5.4478784483466150e+01 5.4593402095323952e+01 1.3957000000000000e-01 1 0 0 0 0 P 541 111 4.1163369951677076e-02 -5.6164476493590937e-02 -3.2256750887045871e+00 3.2292488677299129e+00 1.3497999999999999e-01 2 0 0 -229 0 V -133 0 0 0 0 0 0 2 0 P 542 -211 5.0717790540492147e-01 -2.4060572472866068e-01 -8.6236125848834497e+00 8.6429910529609675e+00 1.3957000000000000e-01 1 0 0 0 0 P 543 111 9.3829091664395015e-01 -4.9684244001810385e-01 -8.6346399707229047e+00 8.7007165957101105e+00 1.3497999999999999e-01 2 0 0 -230 0 V -134 0 0 0 0 0 0 3 0 P 544 211 4.5954362992296782e-01 8.6416140913779915e-01 -8.7890621302093646e+00 8.8444925350427077e+00 1.3957000000000000e-01 1 0 0 0 0 P 545 -211 9.4305394931758113e-01 6.6626012771725274e-01 -1.1950069870091166e+01 1.2006535844866745e+01 1.3957000000000000e-01 1 0 0 0 0 P 546 111 1.3075624676811948e-01 1.5878439486650184e-01 -1.8220760533686400e+00 1.8386110042043819e+00 1.3497999999999999e-01 2 0 0 -231 0 V -135 0 0 0 0 0 0 2 0 P 547 211 7.9758207878700105e-01 -1.6524061860885875e-01 -1.0614913456712763e+01 1.0647032878358276e+01 1.3957000000000000e-01 1 0 0 0 0 P 548 111 3.9421602644851994e-01 4.0612667204372616e-01 -9.2479455248273013e+00 9.2662323076764856e+00 1.3497999999999999e-01 2 0 0 -232 0 V -136 0 0 0 0 0 0 2 0 P 549 -2212 1.4529231513669718e+00 6.7132069972024366e+00 -1.0693024923461154e+02 1.0715473244724242e+02 9.3827000000000005e-01 1 0 0 0 0 P 550 111 3.4546160491339739e-01 6.5319882092581749e-01 -1.3000506217906223e+01 1.3022188523529621e+01 1.3497999999999999e-01 2 0 0 -233 0 V -137 0 0 0 0 0 0 3 0 P 551 211 6.2755527675323730e-01 6.0114867548809129e-03 -1.0298936787768188e+01 1.0318984470707317e+01 1.3957000000000000e-01 1 0 0 0 0 P 552 -211 6.4967361087830230e-02 2.2450897404247538e-01 -2.6190259359222110e+00 2.6331353317605108e+00 1.3957000000000000e-01 1 0 0 0 0 P 553 111 4.5838118845983800e-01 1.2267763293042569e-01 -7.8049827756144694e+00 7.8205587296301156e+00 1.3497999999999999e-01 2 0 0 -234 0 V -138 0 0 0 0 0 0 2 0 P 554 211 -1.0986898001611440e-02 8.1246665145864017e-01 -1.4137328085179032e+01 1.4161346967875335e+01 1.3957000000000000e-01 1 0 0 0 0 P 555 -211 1.2706214782209646e+00 3.7625845228912844e+00 -5.9629496594894640e+01 5.9761759220912069e+01 1.3957000000000000e-01 1 0 0 0 0 V -139 0 0 0 0 0 0 2 0 P 556 2212 1.3696519165972645e+00 1.5331848955082423e+00 -7.6247102479807822e+01 7.6280584616635380e+01 9.3827000000000005e-01 1 0 0 0 0 P 557 111 1.4939844155469140e-01 1.0499940576496405e-01 -1.3766571370615983e+01 1.3768444054148370e+01 1.3497999999999999e-01 2 0 0 -235 0 V -140 0 0 0 0 0 0 2 0 P 558 211 -9.5122343388916453e-02 -8.7062377719035661e-02 -1.3923673280689432e+01 1.3924969857421980e+01 1.3957000000000000e-01 1 0 0 0 0 P 559 111 3.0090468201654286e-01 2.0922614780440552e-01 -6.9890866039604012e+00 6.9999907404683954e+00 1.3497999999999999e-01 2 0 0 -236 0 V -141 0 0 0 0 0 0 2 0 P 560 -2212 7.9956755782367109e-03 1.0612947857400963e+00 -3.6475219951094530e+01 3.6502718140252128e+01 9.3827000000000005e-01 1 0 0 0 0 P 561 -211 2.9756447288738652e-01 5.3445742814974107e-01 -1.5218801822702183e+01 1.5231729975994600e+01 1.3957000000000000e-01 1 0 0 0 0 V -142 0 0 0 0 0 0 2 0 P 562 22 2.1051712033551939e-02 -4.1142823590531133e-02 -4.3854423292326006e+00 4.3856858448294718e+00 0 1 0 0 0 0 P 563 223 5.9054283904099991e-01 1.0275694888814868e+00 -3.9010136598470304e+01 3.9035975581664637e+01 7.8229935560695696e-01 2 0 0 -237 0 V -143 0 0 0 0 0 0 2 0 P 564 -211 5.5342689869080886e-01 1.2598230811957775e-01 -1.8747614937148573e+01 1.8756724087394630e+01 1.3957000000000000e-01 1 0 0 0 0 P 565 211 1.1836299065887952e+00 1.1698793676638504e-01 -6.9712847461237814e+01 6.9723132795879394e+01 1.3957000000000000e-01 1 0 0 0 0 V -144 0 0 0 0 0 0 3 0 P 566 -211 1.6167866862186708e-01 -7.6602039724113113e-02 -5.0244923477493657e+00 5.0296134048124577e+00 1.3957000000000000e-01 1 0 0 0 0 P 567 211 1.2373747540626116e-01 -5.1837954297145016e-02 -1.9259599320002913e+01 1.9260572262741373e+01 1.3957000000000000e-01 1 0 0 0 0 P 568 111 7.5268708893890413e-01 -6.6971954575198819e-02 -3.5845375340643820e+01 3.5853593627537407e+01 1.3497999999999999e-01 2 0 0 -238 0 V -145 0 0 0 0 0 0 2 0 P 569 22 5.7542487605413273e-01 -1.2096342722600081e-01 -5.3106277786432571e+01 5.3109532913295787e+01 0 1 0 0 0 0 P 570 111 2.7354606837715813e-02 1.6348882237195400e-01 -8.8439898257657859e+01 8.8440156604875085e+01 1.3497999999999999e-01 2 0 0 -239 0 V -146 0 0 0 0 0 0 2 0 P 571 -211 1.3701553450210049e+00 3.7342467181524917e-02 -2.7565341951921630e+02 2.7565686258925479e+02 1.3957000000000000e-01 1 0 0 0 0 P 572 211 -1.2515070280524206e-02 1.7556062121057078e-01 -3.2540076652102378e+01 3.2540851962852820e+01 1.3957000000000000e-01 1 0 0 0 0 V -147 0 0 0 0 0 0 1 0 P 573 310 4.1309064102801807e-01 -3.1286603382623498e-02 -6.6699268768942005e+01 6.6702411893946675e+01 4.9767000000000000e-01 2 0 0 -240 0 V -148 0 0 0 0 0 0 2 0 P 574 321 4.4507323458190218e-01 7.5445245304814473e-02 -1.2675932461029535e+02 1.2676108945093289e+02 4.9359999999999998e-01 1 0 0 0 0 P 575 -321 3.5590328203035199e-01 2.3151302714500381e-02 -1.6814907515651404e+02 1.6815017787703940e+02 4.9359999999999998e-01 1 0 0 0 0 V -149 0 0 0 0 0 0 2 0 P 576 22 -6.2488058438212302e-01 -3.9913499111879353e-01 -6.4564091652279743e+01 6.4568349176433586e+01 0 1 0 0 0 0 P 577 111 1.3897610369467420e-01 -1.8896171851394453e-01 -9.6437741617391612e+00 9.6475707082917896e+00 1.3497999999999999e-01 2 0 0 -241 0 V -150 0 0 0 0 0 0 3 0 P 578 22 -7.0510358622244140e-02 -2.3984238285756929e-01 -1.7296971614689348e+01 1.7298778081663933e+01 0 1 0 0 0 0 P 579 211 4.4442497368725929e-02 -1.1202593090239153e-01 -5.3243783371714128e+00 5.3275706853130664e+00 1.3957000000000000e-01 1 0 0 0 0 P 580 -211 -1.4457030474387536e-01 -2.4910838266157978e-01 -2.7809775586790558e+01 2.7811617240496428e+01 1.3957000000000000e-01 1 0 0 0 0 V -151 0 0 0 0 0 0 2 0 P 581 2112 1.5135906528403212e-01 -8.1915487259626052e-02 -2.2054600688888851e+02 2.2054807540790796e+02 9.3957000000000002e-01 1 0 0 0 0 P 582 211 -1.3492778819029480e-01 2.8155942263572029e-02 -1.0435194765071148e+02 1.0435213201725607e+02 1.3957000000000000e-01 1 0 0 0 0 V -152 0 -7.6107868220902204e-05 -1.0967652355379499e-04 -1.0643818972942594e-01 1.0643827495352039e-01 0 3 0 P 583 22 -2.9848077808674555e-02 -1.0943146180779233e-02 -3.8510412641130742e+01 3.8510425763036686e+01 0 1 0 0 0 0 P 584 -11 -1.4612629056746559e-02 -2.2408250516419068e-02 -2.0295894596065654e+01 2.0295912233090835e+01 5.1000000000000004e-04 1 0 0 0 0 P 585 11 -5.2905267280730306e-01 -7.9311970497027717e-01 -7.4326222187717838e+02 7.4326283332725382e+02 5.1000000000000004e-04 1 0 0 0 0 V -153 0 0 0 0 0 0 2 0 P 586 211 3.4978552860815242e-02 1.8567160807331137e-01 1.2859771199358374e+00 1.3072545211638158e+00 1.3957000000000000e-01 1 0 0 0 0 P 587 111 1.6819416270895077e-01 -4.3782316552353101e-01 1.1151006678397048e+01 1.1161682128724772e+01 1.3497999999999999e-01 2 0 0 -242 0 V -154 0 -3.9518943049119740e-06 5.0159415430707511e-06 9.7271245903310129e-06 1.4977708647744207e-05 0 2 0 P 588 22 -7.3570786528157350e-02 4.7245302883753497e-02 1.7664704815864921e-02 8.9201014967212944e-02 0 1 0 0 0 0 P 589 22 1.7007858631492252e-02 2.4547189006010627e-02 1.2155831189308684e-01 1.2517290015663379e-01 0 1 0 0 0 0 V -155 0 4.3034828652643780e-06 -1.9933028102143615e-05 8.1105896513745365e-05 8.4679837205665857e-05 0 2 0 P 590 22 3.4544082384907332e-02 -1.5912937123738349e-01 3.7132451585401793e-01 4.0545942644417715e-01 0 1 0 0 0 0 P 591 22 9.1594901893332706e-03 -4.3298422147799082e-02 4.5233797926075231e-01 4.5449785159307227e-01 0 1 0 0 0 0 V -156 0 6.2460713030626959e-07 1.8314030095968984e-06 6.8851470875687138e-05 6.8898614289897788e-05 0 2 0 P 592 22 -1.1905794839662887e-02 -1.8038359156136623e-03 2.0955746201951566e+00 2.0956092170490295e+00 0 1 0 0 0 0 P 593 22 6.2747813469645142e-02 1.5087710359873224e-01 3.5088246815657897e+00 3.5126274830176381e+00 0 1 0 0 0 0 V -157 0 6.2320570835968663e-06 3.5658666191288826e-06 2.2052194377702260e-04 2.2068922267700857e-04 0 2 0 P 594 22 1.9969103128953214e-01 8.8321847428489531e-02 5.8653626914591763e+00 5.8694255902151014e+00 0 1 0 0 0 0 P 595 22 -2.1361861647647789e-02 1.3714771413896799e-02 4.4483225606107607e-01 4.4555601232659331e-01 0 1 0 0 0 0 V -158 0 1.4963861996038181e-04 1.8281705748204211e-05 3.7234162584095648e-02 3.7234482257026351e-02 0 2 0 P 596 22 4.3719971301913485e-01 2.8414829815181421e-02 9.2958461081091031e+01 9.2959493531087674e+01 0 1 0 0 0 0 P 597 22 1.7750575927958404e-01 4.6685198301566797e-02 5.9996995892273368e+01 5.9997276637359001e+01 0 1 0 0 0 0 V -159 0 3.0267893068320052e-06 -4.5750819984181511e-06 3.7778921699606616e-02 3.7778925095523538e-02 0 2 0 P 598 22 -2.8880351668452143e-02 -3.5672285499681128e-02 2.7948926382703689e+02 2.7948926759567303e+02 0 1 0 0 0 0 P 599 22 5.6027360075476713e-02 -5.3612245611424489e-03 5.9346578718268603e+01 5.9346605407314222e+01 0 1 0 0 0 0 V -160 0 -7.9428014042315717e-05 -3.9403889353905348e-05 -5.6439601945601904e-04 5.7240951881053269e-04 0 2 0 P 600 22 -3.1183871604522373e-01 -1.2787034177636744e-01 -2.0712750306150651e+00 2.0985172054525014e+00 0 1 0 0 0 0 P 601 22 8.3929278825955016e-03 -2.2667782660417246e-02 -8.4936439917738707e-02 8.8308937458685302e-02 0 1 0 0 0 0 V -161 0 4.3386218508710943e-05 5.2410024299715175e-05 -1.5419024225686259e-03 1.5434861922512385e-03 0 2 0 P 602 22 3.6535943004552857e-01 4.4161945641701744e-01 -1.2973139031867646e+01 1.2985794222825843e+01 0 1 0 0 0 0 P 603 22 -3.1815577898629705e-04 -6.5403669814412257e-04 -5.9473923101441055e-05 7.2974259143281496e-04 0 1 0 0 0 0 V -162 0 -2.5379822510312859e-05 8.2889570326734013e-05 5.5216150000097673e-04 5.5995607210468108e-04 0 2 0 P 604 22 -8.4858668313497851e-02 7.7630147160151680e-02 5.6833238796444774e-01 5.7985268521014766e-01 0 1 0 0 0 0 P 605 22 -1.6001170392881951e-02 2.5177439025134579e-01 1.6259666386478049e+00 1.6454221011752639e+00 0 1 0 0 0 0 V -163 0 5.4311071975335773e-07 -1.0226280376788801e-06 3.9808139363472970e-07 1.3816477158749319e-06 0 2 0 P 606 22 1.1110258333579513e-01 -6.7137755390032888e-02 2.9342271065216259e-02 1.3308730628412244e-01 0 1 0 0 0 0 P 607 22 3.4226962866210379e-03 -1.4850291916355091e-01 5.4600802161551283e-02 1.5825953192983808e-01 0 1 0 0 0 0 V -164 0 4.4144968595203476e-05 -3.2722242845905029e-05 2.0384130364910097e-05 6.4670550523130544e-05 0 2 0 P 608 22 1.8246810056267390e-01 -1.5407946942974535e-01 1.3067263014575828e-01 2.7223230317490249e-01 0 1 0 0 0 0 P 609 22 3.5513303334553492e-02 -7.4981839518315132e-03 -3.0018773192964032e-02 4.7101424822590304e-02 0 1 0 0 0 0 V -165 0 5.6380051062987950e-05 -3.0493162362714481e-07 -1.2675255378498870e-05 6.6809669214768023e-05 0 2 0 P 610 22 1.5629447797873078e-01 5.9272811617123743e-02 -5.4638072284284134e-02 1.7585945805268952e-01 0 1 0 0 0 0 P 611 22 7.0691408873611514e-02 -6.0500465259029898e-02 3.6075388079277754e-03 9.3116034716615323e-02 0 1 0 0 0 0 V -166 0 1.6795846570804687e-06 1.3423270115360811e-05 9.9175126408736319e-07 1.4159191260131311e-05 0 2 0 P 612 22 8.8762006613232747e-02 3.5139103501920521e-01 -7.3169086190899872e-03 3.6250226269861546e-01 0 1 0 0 0 0 P 613 22 -3.2939530131136062e-02 9.4743178679830939e-02 4.0278636021291489e-02 1.0809093889570057e-01 0 1 0 0 0 0 V -167 0 5.8194757435905009e+00 1.6391496056570528e+01 -3.6935008738567987e+01 4.2938642877598774e+01 0 2 0 P 614 111 4.6037197571210636e-02 -2.2999289523593373e-02 -2.9058014755777606e-01 3.2450703140841131e-01 1.3497999999999999e-01 2 0 0 -243 0 P 615 111 1.7166229270591718e-01 6.3618516633134004e-01 -1.0911134843167920e+00 1.2817752317216218e+00 1.3497999999999999e-01 2 0 0 -244 0 V -168 0 -3.6846001179087060e-05 6.4142641585785472e-05 -3.2786539146331803e-04 3.3669449449266921e-04 0 2 0 P 616 22 -1.4196815812055172e-01 1.4866334818016907e-01 -1.0952678736333827e+00 1.1143910731990234e+00 0 1 0 0 0 0 P 617 22 -1.0809678769784217e-01 2.8665732922082771e-01 -1.1298756623912380e+00 1.1706734610345657e+00 0 1 0 0 0 0 V -169 0 -4.7321224760593346e-04 -9.0969249946531208e-05 -2.1252439646961239e-03 2.1806080692367510e-03 0 2 0 P 618 22 -3.1901381769645237e-01 -4.1561351663143989e-03 -1.2453043607719190e+00 1.2855232554482801e+00 0 1 0 0 0 0 P 619 22 -4.9321124997602084e-01 -1.5198417093891795e-01 -2.4024803949668945e+00 2.4572888665191939e+00 0 1 0 0 0 0 V -170 0 -9.5333233258119936e-05 -1.3811279480163778e-04 -1.7281312049733308e-03 1.7364490167361942e-03 0 2 0 P 620 22 -2.4221196715545883e-02 -3.4353108747470454e-02 -8.3476022029741836e-01 8.3581781976812553e-01 0 1 0 0 0 0 P 621 22 -4.7890028331565110e-01 -6.9453766057851862e-01 -8.2854584046197459e+00 8.3282980865243808e+00 0 1 0 0 0 0 V -171 0 0 0 0 0 0 2 0 P 622 211 -1.9152017635186680e-01 -4.9525486530404544e-01 -1.2450101878820432e+01 1.2462201809370013e+01 1.3957000000000000e-01 1 0 0 0 0 P 623 -211 -1.5440816237156476e-02 2.1714896552932031e-01 -3.1917741155890820e+00 3.2022326401873098e+00 1.3957000000000000e-01 1 0 0 0 0 V -172 0 2.0935869646649089e-06 -1.1712258244503818e-06 -2.1514240673094736e-05 2.1712140664967733e-05 0 2 0 P 624 22 -1.7164290433487467e-03 -5.1934534500188846e-02 -6.2216004565596528e-01 6.2432624837743689e-01 0 1 0 0 0 0 P 625 22 1.7060900496994524e-01 -4.2549883783738307e-02 -1.1134237097412230e+00 1.1272223749556924e+00 0 1 0 0 0 0 V -173 0 1.1182305473968963e-05 -7.6371332449317781e-05 -3.1512679591386145e-04 3.2833894030721318e-04 0 2 0 P 626 22 2.9881587566890418e-02 -1.9446701291353726e-02 -3.5038349332988750e-01 3.5219266866970445e-01 0 1 0 0 0 0 P 627 22 4.4333620018828024e-05 -1.8493713361083633e-01 -4.9295419587511657e-01 5.2650316673743280e-01 0 1 0 0 0 0 V -174 0 5.5692103202238959e-05 -9.5261192202459821e-05 -4.9388802000534108e-04 5.0784869930261341e-04 0 2 0 P 628 22 1.8691804702625456e-01 -2.5306053184774174e-01 -1.1865181766825594e+00 1.2275191944247863e+00 0 1 0 0 0 0 P 629 22 -1.0155854029928794e-02 -4.9290722153280307e-02 -3.8104211447282282e-01 3.8435115410700788e-01 0 1 0 0 0 0 V -175 0 0 0 0 0 0 1 0 P 630 130 1.4257636278706178e+00 7.9264479271697341e-01 4.4468965764820165e+00 4.7627357979219882e+00 4.9767000000000000e-01 1 0 0 0 0 V -176 0 5.2250133594461580e-05 -3.0054943035758407e-05 1.7711783381455315e-04 1.8801708156602681e-04 0 2 0 P 631 22 7.1381752921829675e-02 -2.5802625999512854e-02 1.0504833828474659e-01 1.2960047660039858e-01 0 1 0 0 0 0 P 632 22 3.0759986059449940e-01 -1.9219243013256229e-01 1.1796259357092902e+00 1.2341284182110204e+00 0 1 0 0 0 0 V -177 0 7.1039891327504233e+02 3.6643134481150577e+02 2.5254569656684307e+03 2.6971924924040927e+03 0 2 0 P 633 -2112 1.1422147066867083e+00 5.9541899629508177e-01 4.2255011488959902e+00 4.5162849734645594e+00 9.3957000000000002e-01 1 0 0 0 0 P 634 111 3.8246184198965044e-01 9.3591779830086430e-02 1.0462360590797810e+00 1.1259955477481565e+00 1.3497999999999999e-01 2 0 0 -245 0 V -178 0 5.5561168031183911e+02 2.9648203634886158e+02 1.9902630492634262e+03 2.1243805158111140e+03 0 2 0 P 635 22 7.1289868399566497e-02 1.5230009407052197e-01 4.8621509421616277e-01 5.1447320808177111e-01 0 1 0 0 0 0 P 636 22 2.5826010091339929e-01 1.4812990665742792e-01 8.8409402709423657e-01 9.3287887622876431e-01 0 1 0 0 0 0 V -179 0 5.5209363211154461e-01 -5.2128970822942033e-01 2.7330200827139302e+00 3.1587949778593916e+00 0 2 0 P 637 111 5.4473612168521028e-02 -2.0135342999722378e-01 1.7584087262199635e-01 3.0438493898154434e-01 1.3497999999999999e-01 2 0 0 -246 0 P 638 111 1.4319901079884229e-01 1.4709900787341600e-02 8.0269468176634418e-01 8.2659584466104896e-01 1.3497999999999999e-01 2 0 0 -247 0 V -180 0 7.9538906338402043e+01 3.4247698549261749e+01 7.4901910077430466e+02 7.8595576103995711e+02 0 2 0 P 639 2212 2.8113737551741153e-01 1.6173787011823723e-01 3.4071838954093634e+00 3.5488660234756857e+00 9.3827000000000005e-01 1 0 0 0 0 P 640 -211 1.1894344729530607e-01 1.0528106946312728e-02 3.6038334854132892e-01 4.0449267916270770e-01 1.3957000000000000e-01 1 0 0 0 0 V -181 0 0 0 0 0 0 1 0 P 641 310 -7.9400321942775354e-02 -2.8654079679670102e-01 4.2322819249151475e+00 4.2718024018225575e+00 4.9767000000000000e-01 2 0 0 -248 0 V -182 0 2.2857299422344308e-05 1.0363369163570521e-06 1.2436670579055224e-04 1.2681404362039812e-04 0 2 0 P 642 22 3.3064429514652588e-01 -2.9385785503240722e-03 1.6837507302587995e+00 1.7159110719393005e+00 0 1 0 0 0 0 P 643 22 -7.5634850822259448e-03 1.7586878170045065e-02 7.4133930978186227e-02 7.6565947474288729e-02 0 1 0 0 0 0 V -183 0 3.3042510594032325e-05 2.9107716129004940e-05 6.3969886268683274e-04 6.4136853386075846e-04 0 2 0 P 644 22 2.7490091490234275e-01 2.6115949324123056e-01 4.7049954255147108e+00 4.7202496489103742e+00 0 1 0 0 0 0 P 645 22 4.0557318040171764e-02 1.6733092097203136e-02 1.4022364164558709e+00 1.4029226137078079e+00 0 1 0 0 0 0 V -184 0 1.6510356519907546e+01 -2.0951009388828552e+01 3.4277481425724073e+02 3.4387324490704015e+02 0 2 0 P 646 111 1.1584217849857776e+00 -1.2621767385808140e+00 2.1450577286789734e+01 2.1519305673935758e+01 1.3497999999999999e-01 2 0 0 -249 0 P 647 111 9.9029184113605215e-02 -3.3348032841390018e-01 4.6556138091395436e+00 4.6705433783443295e+00 1.3497999999999999e-01 2 0 0 -250 0 V -185 0 1.3791437503772767e-05 -7.2942427999000018e-05 5.2213574707276333e-03 5.2220548755439458e-03 0 2 0 P 648 22 2.1473331500103339e-02 2.1415622482539296e-03 4.5633340839199754e-01 4.5684337564337524e-01 0 1 0 0 0 0 P 649 22 2.2743511780759881e-02 -2.3600289153137824e-01 1.6283904506138022e+01 1.6285630494308823e+01 0 1 0 0 0 0 V -186 0 0 0 0 0 0 1 0 P 650 310 -2.7239833690646681e-01 2.8605383178908539e-01 1.4324703670422679e+02 1.4324844581223081e+02 4.9767000000000000e-01 2 0 0 -251 0 V -187 0 -6.4898479034697910e-05 -2.3717785260807778e-05 1.0289265266013758e-02 1.0289517544300922e-02 0 2 0 P 651 22 -3.7076014040847560e-01 -1.2245226039503190e-01 4.9333140644562064e+01 4.9334685805160788e+01 0 1 0 0 0 0 P 652 22 -5.8098350716839123e-02 -3.4278278611067622e-02 1.8659805298154975e+01 1.8659927228791460e+01 0 1 0 0 0 0 V -188 0 0 0 0 0 0 1 0 P 653 310 3.6373863935897160e-01 -5.6525472833804942e-02 2.2694870601848964e+02 2.2694955020846061e+02 4.9767000000000000e-01 2 0 0 -252 0 V -189 0 -3.8156288164306583e-05 -4.6982366965856362e-05 1.5305551971952054e-02 1.5305833280055125e-02 0 2 0 P 654 22 -1.5408943224027936e-02 -5.5379560032673752e-03 1.9517334687879231e+01 1.9517341556246379e+01 0 1 0 0 0 0 P 655 22 -5.7809641666623703e-02 -8.4617103347375724e-02 9.8526829493438850e+00 9.8532158866605712e+00 0 1 0 0 0 0 V -190 0 5.7259152975389607e-06 -5.7955078829102164e-05 8.5913088485572914e-02 8.5913189729219838e-02 0 2 0 P 656 22 -6.4140966160402851e-02 -3.6653323657850727e-02 4.7909740780391559e+01 4.7909797736725935e+01 0 1 0 0 0 0 P 657 22 7.0671922649227781e-02 -2.9450011524555422e-02 5.0082390357315759e+01 5.0082448879087224e+01 0 1 0 0 0 0 V -191 0 7.2852717417934541e-06 2.4903131825419027e-06 4.1295263407232592e-03 4.1295416485090863e-03 0 2 0 P 658 22 8.7393068341428085e-02 8.5525989547457659e-02 5.4895167875559508e+01 5.4895304064456596e+01 0 1 0 0 0 0 P 659 22 3.2608878299620024e-02 -4.4505909550095132e-02 1.3125795124275372e+01 1.3125911083021251e+01 0 1 0 0 0 0 V -192 0 7.8972404442270773e-05 -1.1521440214880167e-04 4.4047585982568103e-02 4.4047879927297903e-02 0 2 0 P 660 22 1.0358314056572004e-01 -1.0958195529204297e-01 2.7762783353347977e+01 2.7763192849470158e+01 0 1 0 0 0 0 P 661 22 2.9827842332208532e-02 -8.5053965232638862e-02 4.6648421189767241e+01 4.6648508265271531e+01 0 1 0 0 0 0 V -193 0 1.2260988875696963e+00 -1.4488883577432832e+00 5.2570632300147599e+03 5.2570826536678287e+03 0 2 0 P 662 111 -4.0794161306335473e-02 -1.0598500749054776e-01 1.6055890388883756e+02 1.6055900078964987e+02 1.3497999999999999e-01 2 0 0 -253 0 P 663 111 8.3874516752240794e-02 5.5076694885569120e-02 2.4153891177425916e+01 2.4154476748383797e+01 1.3497999999999999e-01 2 0 0 -254 0 V -194 0 3.3274369359114265e-05 5.5765187790187018e-05 4.0907985209178380e-03 4.0913944258317405e-03 0 2 0 P 664 22 5.7109002705339050e-02 2.1821668015513598e-01 1.4321259070863738e+01 1.4323035339357533e+01 0 1 0 0 0 0 P 665 22 1.1786747413073592e-01 7.5029932104287753e-02 7.1905990476542971e+00 7.1919564025580964e+00 0 1 0 0 0 0 V -195 0 1.9210083408778569e+01 1.5433276418424106e+02 3.8916014663914379e+04 3.8917269800969007e+04 0 2 0 P 666 2212 1.3829406545060660e-01 6.2138776432242016e-01 1.4044115540962187e+02 1.4044573233596188e+02 9.3827000000000005e-01 1 0 0 0 0 P 667 -211 -5.9241863231473957e-02 1.3713324190035391e-02 1.9703732840506547e+01 1.9704320980144828e+01 1.3957000000000000e-01 1 0 0 0 0 V -196 0 -7.2295112924534088e-05 1.7229621715448068e-04 3.1983043745524428e-03 3.2038020536856158e-03 0 2 0 P 668 22 -5.4899348331959485e-01 1.2966001182389595e+00 2.3465244512513383e+01 2.3507451281314708e+01 0 1 0 0 0 0 P 669 22 -2.9900575907641967e-02 8.3040254439766731e-02 2.1447770661454109e+00 2.1465922742245089e+00 0 1 0 0 0 0 V -197 0 -7.3128842317440605e-05 1.9783276580076606e-04 6.2278657578791734e-03 6.2317558030159327e-03 0 2 0 P 670 22 -8.1206401551535773e-02 1.2067788807765223e-01 5.8741685648858937e+00 5.8759691933346128e+00 0 1 0 0 0 0 P 671 22 -7.5202199374327358e-02 3.0244854378727820e-01 7.4460446242631342e+00 7.4525640580237669e+00 0 1 0 0 0 0 V -198 0 0 0 0 0 0 1 0 P 672 130 -3.9269858259541035e-01 9.4954437127363756e-01 2.1964041843538272e+01 2.1993695829109530e+01 4.9767000000000000e-01 1 0 0 0 0 V -199 0 0 0 0 0 0 1 0 P 673 310 -2.6551733406304634e+00 1.6953579958692044e+00 5.1533812771939850e+01 5.1632409574270341e+01 4.9767000000000000e-01 2 0 0 -255 0 V -200 0 -9.7427874271153141e-05 5.2759173308814661e-05 3.0529576077170549e-03 3.0550954683143693e-03 0 2 0 P 674 22 -2.5971657690663985e-01 2.0988432958907718e-01 9.6143360259585613e+00 9.6201331254911349e+00 0 1 0 0 0 0 P 675 22 -2.1042185714814071e-01 4.4705184007392727e-02 5.1177180157121285e+00 5.1222371674676772e+00 0 1 0 0 0 0 V -201 0 -7.0949290365020413e-05 -6.0709858381969450e-06 3.0770557332510887e-03 3.0796208118384211e-03 0 2 0 P 676 22 -5.9974481706348774e-02 -5.8889056441193813e-02 1.3249310257300573e+00 1.3275944721060642e+00 0 1 0 0 0 0 P 677 22 -3.2513572777102775e-02 5.0975042557719501e-02 2.6862563567141984e+00 2.6869366947075481e+00 0 1 0 0 0 0 V -202 0 -9.0676759332457125e-05 3.6611084242323768e-05 4.3808653390564861e-04 4.5005647967767969e-04 0 2 0 P 678 22 -9.6101124843582741e-02 9.7320276959662208e-02 4.5712311657598281e-01 4.7714589614901520e-01 0 1 0 0 0 0 P 679 22 -2.7835681197359274e-01 5.3868530083568851e-02 1.3519951276286046e+00 1.3814033293853587e+00 0 1 0 0 0 0 V -203 0 0 0 0 0 0 1 0 P 680 130 -1.4300949868823678e+00 -4.2326879550361196e-01 7.2498272558029040e+00 7.4183555329086124e+00 4.9767000000000000e-01 1 0 0 0 0 V -204 0 -1.5617632826542147e+01 -6.1385552261550727e+00 5.3886219856013092e+01 5.6788381863814713e+01 0 2 0 P 681 211 -3.1253019405652588e-01 -1.3387584005324293e-01 6.7600374586473966e-01 7.6945351521071803e-01 1.3957000000000000e-01 1 0 0 0 0 P 682 -211 -9.2253798689452748e-01 -3.5157123896567982e-01 3.5854074599863557e+00 3.7214654522589727e+00 1.3957000000000000e-01 1 0 0 0 0 V -205 0 -4.7033923026387570e-05 -1.6364907581732757e-05 9.0319487705483434e-05 1.0502911074260955e-04 0 2 0 P 683 22 -1.3134421016177045e-01 -6.3046120503593719e-02 1.4165829437904479e-01 2.0320725188819683e-01 0 1 0 0 0 0 P 684 22 -1.8869705698347544e-01 -4.8308523595181854e-02 4.7291862018015934e-01 5.1146096046450795e-01 0 1 0 0 0 0 V -206 0 -1.2475372964072763e-04 -3.3745342469147750e-05 2.8686485122108262e-04 3.1967414400876036e-04 0 2 0 P 685 22 -1.4122446350123194e-01 1.4579009360950178e-02 2.0355345039157621e-01 2.4817514736869475e-01 0 1 0 0 0 0 P 686 22 -1.5655330336261800e-01 -9.5126603019730374e-02 4.8117136733008420e-01 5.1486298384533746e-01 0 1 0 0 0 0 V -207 0 -2.0001326775327693e-04 -1.1246312233359236e-05 1.5803110138651555e-04 2.5789395729432983e-04 0 2 0 P 687 22 -7.0207213810202518e-01 -1.9330174967431394e-02 5.2610327802955259e-01 8.7753267854642392e-01 0 1 0 0 0 0 P 688 22 -1.8528391962131234e-02 -2.1187629914504486e-02 4.3245429208294342e-02 5.1598295684120915e-02 0 1 0 0 0 0 V -208 0 4.7633184300895532e+00 4.2354881049835102e-01 2.7340754574658801e+00 8.8431748625724733e+00 0 2 0 P 689 -211 3.1133600199242017e-01 1.3748590257612459e-01 2.5574478144335300e-01 4.4801524268634463e-01 1.3957000000000000e-01 1 0 0 0 0 P 690 211 3.1332281348318079e-02 -1.0701623191802564e-01 -5.9058173717179453e-02 1.8815376300045492e-01 1.3957000000000000e-01 1 0 0 0 0 V -209 0 1.9693409568809412e-04 -1.1424958813418978e-05 -3.4708173120874380e-05 2.0541469689418581e-04 0 2 0 P 691 22 -3.7246149657566559e-03 -7.8668898931835100e-03 6.3408665058492693e-03 1.0768811507293322e-02 0 1 0 0 0 0 P 692 22 5.8700173901343777e-01 -2.5971420815636553e-02 -1.0913913172324474e-01 5.9762605898445120e-01 0 1 0 0 0 0 V -210 0 8.3401651552009946e-05 1.7259568291705629e-04 -6.3401213081193151e-05 2.1845678707663307e-04 0 2 0 P 693 22 8.4072036537419487e-02 1.5385487131507988e-01 -1.2629159823963515e-01 2.1607636738165140e-01 0 1 0 0 0 0 P 694 22 5.0881645219922306e-02 1.2542524402597122e-01 2.3700978342221936e-02 1.3741240858684825e-01 0 1 0 0 0 0 V -211 0 0 0 0 0 0 2 0 P 695 22 9.1509746572344053e-01 -7.4754699403113933e-01 -1.3173196811594412e-01 1.1889420471503884e+00 0 1 0 0 0 0 P 696 22 3.6943048071325946e-01 -1.2646016659607895e-01 2.4774888598498643e-01 4.6243979534890800e-01 0 1 0 0 0 0 V -212 0 1.4244979165104253e-05 5.8510836866631591e-06 -3.2190078987230427e-05 3.6780509179205760e-05 0 2 0 P 697 22 1.3116895313702617e-01 1.2093923917139338e-01 -3.0677341841587580e-01 3.5488240881308963e-01 0 1 0 0 0 0 P 698 22 8.4547927399810166e-02 -3.2334159022249391e-02 -1.8069261034253767e-01 2.0209816748224077e-01 0 1 0 0 0 0 V -213 0 4.0284161411361974e-04 5.6569185336429397e-05 -2.1317789298508214e-04 4.6273183706920461e-04 0 2 0 P 699 22 4.1459782968447439e-01 1.1752860089682196e-01 -1.8797307177866096e-01 4.7014700692628730e-01 0 1 0 0 0 0 P 700 22 5.4746246720799763e-01 1.7569078521126099e-02 -3.2113517282859805e-01 6.3494222158335234e-01 0 1 0 0 0 0 V -214 0 2.5775259491430116e+01 -1.7559131981557996e+01 -2.2221361584890410e+01 4.4344276280483690e+01 0 2 0 P 701 2212 9.8874773635934465e-01 -7.5860679142754572e-01 -8.3638486145038160e-01 1.7700272821397691e+00 9.3827000000000005e-01 1 0 0 0 0 P 702 -211 2.9738048457513627e-01 -1.1755490867497051e-01 -2.7241174451275818e-01 4.4265364858793127e-01 1.3957000000000000e-01 1 0 0 0 0 V -215 0 2.1366239082526384e+01 -1.0008445301153683e+01 -3.0061905984150741e+01 4.2193081696247596e+01 0 2 0 P 703 -2112 1.1138096031339999e+00 -4.3333735457616673e-01 -1.6267397659040195e+00 2.2265280473818545e+00 9.3957000000000002e-01 1 0 0 0 0 P 704 111 2.1907530914841028e-01 -1.9101706202405075e-01 -2.4860482637361125e-01 4.0559273805015911e-01 1.3497999999999999e-01 2 0 0 -256 0 V -216 0 1.0064770204298328e-05 -2.6707508304306029e-05 -5.7005120761825609e-05 6.3932029265871922e-05 0 2 0 P 705 22 1.8449153725946318e-01 -5.1031539840655460e-01 -9.3716531909840206e-01 1.0829301771083906e+00 0 1 0 0 0 0 P 706 22 9.7987169440156063e-02 -2.3925982803505724e-01 -6.6274530590316727e-01 7.1139165807798288e-01 0 1 0 0 0 0 V -217 0 9.1119881088432618e-06 -8.9716732825958346e-06 -1.4792926488770253e-05 2.2466154040167701e-05 0 2 0 P 707 22 6.2273253671259486e-02 -1.2515149232949954e-01 -7.9493077164483422e-02 1.6081045821769283e-01 0 1 0 0 0 0 P 708 22 4.8907757197428250e-02 1.5682549566663803e-02 -1.0100458164298101e-01 1.1331300273078584e-01 0 1 0 0 0 0 V -218 0 -2.3331096522134937e-05 -3.2377716340285340e-05 -9.8634283299402673e-05 1.0667997704883603e-04 0 2 0 P 709 22 -1.5238624859306366e-01 -1.9018507153879224e-01 -7.7683907844499023e-01 8.1416883015486674e-01 0 1 0 0 0 0 P 710 22 -2.5678058061869036e-01 -3.7763597019850736e-01 -9.5295004273504869e-01 1.0567208602650799e+00 0 1 0 0 0 0 V -219 0 -2.4480660100889405e-05 -3.3630411867545293e-04 -9.7973175336847564e-04 1.0371832593098619e-03 0 2 0 P 711 22 -4.7094707206962204e-02 -1.6528578372743810e-01 -6.2090325920157818e-01 6.4425007492156738e-01 0 1 0 0 0 0 P 712 22 -2.3758373189425315e-02 -8.0806144873883090e-01 -2.2146825625135942e+00 2.3576146033515077e+00 0 1 0 0 0 0 V -220 0 -6.3258699571216450e-06 -5.0102760710309347e-06 -1.4545449274972692e-05 1.6710179331387082e-05 0 2 0 P 713 22 -1.3303041365068499e-01 -1.8331038855147769e-01 -4.3345890352421845e-01 4.8906687738118582e-01 0 1 0 0 0 0 P 714 22 -4.0267981974673711e-01 -2.4098795801440431e-01 -7.9833151878656761e-01 9.2604505669394122e-01 0 1 0 0 0 0 V -221 0 -6.1183284580906027e-05 5.8894722192789365e-05 -3.1233233434574355e-04 3.2378315201801971e-04 0 2 0 P 715 22 -4.1394488840273475e-01 4.2578747014621565e-01 -2.4287588634468973e+00 2.5003029730694908e+00 0 1 0 0 0 0 P 716 22 -5.5892680947472162e-01 5.1069393597955570e-01 -2.5376186446969005e+00 2.6481532924869016e+00 0 1 0 0 0 0 V -222 0 -6.1292718703627152e-05 5.9022466326513542e-05 -5.0569069866692742e-04 5.1286781538861976e-04 0 2 0 P 717 22 -9.3424140243224429e-01 9.3422010705446545e-01 -7.7562824549205622e+00 7.8680043039484895e+00 0 1 0 0 0 0 P 718 22 -5.5564865563233042e-02 1.8924220006978795e-02 -4.1003540132940813e-01 4.1421565727444615e-01 0 1 0 0 0 0 V -223 0 -1.6903411194691762e+00 7.6771705586798840e+00 -1.6704606600191198e+02 1.6782395201303450e+02 0 2 0 P 719 111 -2.0910470929011304e-01 2.6488679320180425e-01 -3.4082945121141575e+00 3.4276202932016142e+00 1.3497999999999999e-01 2 0 0 -257 0 P 720 111 1.4942552293477154e-01 6.1634032207249058e-03 -2.4894341700026432e+00 2.4975724337084482e+00 1.3497999999999999e-01 2 0 0 -258 0 V -224 0 -2.6068411886855723e-05 -3.4858819378717637e-05 -1.2040993644963105e-02 1.2041107302278574e-02 0 2 0 P 721 22 -4.7659294313653179e-03 2.3024557546644706e-02 -7.1972739351880284e+00 7.1973123415946398e+00 0 1 0 0 0 0 P 722 22 -1.1646763406842196e-01 -1.8513872510774010e-01 -4.8800482045996986e+01 4.8800972213461009e+01 0 1 0 0 0 0 V -225 0 -1.5577947031839606e-04 -5.6247609800128191e-05 -7.2709477508733199e-03 7.2729080402450597e-03 0 2 0 P 723 22 -1.2406154375219754e-01 -1.0436814170996277e-01 -7.3656698222499077e+00 7.3674538278868882e+00 0 1 0 0 0 0 P 724 22 -5.1603130429430499e-01 -1.2675148322639662e-01 -2.2510421323402252e+01 2.2516692083931748e+01 0 1 0 0 0 0 V -226 0 0 0 0 0 0 1 0 P 725 130 -8.1457725346985199e-01 -1.2181333789185900e+00 -4.3045181609069211e+01 4.3072992933128717e+01 4.9767000000000000e-01 1 0 0 0 0 V -227 0 -1.8789777367814162e-04 -1.0171899695354876e-04 -3.2577009587721065e-03 3.2657799301321778e-03 0 2 0 P 726 22 -9.8742975301253269e-02 -1.2958951465171503e-01 -2.3164490981717019e+00 2.3221714066578940e+00 0 1 0 0 0 0 P 727 22 -2.0330457838470647e-01 -3.3924792046976605e-02 -2.9203378311030650e+00 2.9276025500192757e+00 0 1 0 0 0 0 V -228 0 2.5680124126781640e-04 -6.6671061753152347e-04 -1.4615627341137078e-02 1.4633171935080992e-02 0 2 0 P 728 22 3.9488384293166995e-01 -9.0894745383209852e-01 -2.1326824337540682e+01 2.1349837354124130e+01 0 1 0 0 0 0 P 729 22 2.7117349133867197e-01 -8.2027898779426756e-01 -1.6581270411012650e+01 1.6603762258095156e+01 0 1 0 0 0 0 V -229 0 4.2228774081899641e-06 -5.7618144288484923e-06 -3.3091630919049152e-04 3.3128293686761383e-04 0 2 0 P 730 22 -3.2736646243361221e-02 -2.0419438010375442e-02 -2.1851403038440043e+00 2.1854809056451145e+00 0 1 0 0 0 0 P 731 22 7.3900016195038304e-02 -3.5745038483215488e-02 -1.0405347848605828e+00 1.0437679620847982e+00 0 1 0 0 0 0 V -230 0 2.0021810869478633e-04 -1.0601920139601617e-04 -1.8425109457332314e-03 1.8566107698380972e-03 0 2 0 P 732 22 3.7482875608027388e-01 -2.6224906363708034e-01 -3.4106175623845778e+00 3.4411601713098636e+00 0 1 0 0 0 0 P 733 22 5.6346216056367626e-01 -2.3459337638102351e-01 -5.2240224083383273e+00 5.2595564244002473e+00 0 1 0 0 0 0 V -231 0 3.5027927508939576e-06 4.2536310198609524e-06 -4.8811088946560889e-05 4.9254039148600072e-05 0 2 0 P 734 22 2.2103473072237936e-02 8.2751909090109807e-02 -1.1731799816906168e+00 1.1763025594716305e+00 0 1 0 0 0 0 P 735 22 1.0865277369588155e-01 7.6032485776392031e-02 -6.4889607167802310e-01 6.6230844473275119e-01 0 1 0 0 0 0 V -232 0 6.4309717389651207e-05 6.6252738983817758e-05 -1.5086468414144969e-03 1.5116300226098219e-03 0 2 0 P 736 22 3.5481334459866376e-01 2.8788857028233866e-01 -7.1377630606681404e+00 7.1523726027551948e+00 0 1 0 0 0 0 P 737 22 3.9402681849856215e-02 1.1823810176138751e-01 -2.1101824641591613e+00 2.1138597049212908e+00 0 1 0 0 0 0 V -233 0 6.3882138645046598e-05 1.2078835114433230e-04 -2.4040302275451738e-03 2.4080396805039924e-03 0 2 0 P 738 22 2.8243820302205580e-01 4.6793477037071962e-01 -1.0384138176070101e+01 1.0398512391085790e+01 0 1 0 0 0 0 P 739 22 6.3023401891341618e-02 1.8526405055509784e-01 -2.6163680418361217e+00 2.6236761324438316e+00 0 1 0 0 0 0 V -234 0 3.7188408530402123e-04 9.9528210271637450e-05 -6.3321727710414985e-03 6.3448095230672725e-03 0 2 0 P 740 22 1.0690837274370636e-01 7.0264089256418694e-02 -1.4433400690182150e+00 1.4489986187830710e+00 0 1 0 0 0 0 P 741 22 3.5147281571613159e-01 5.2413543674007003e-02 -6.3616427065962542e+00 6.3715601108470459e+00 0 1 0 0 0 0 V -235 0 7.0438810368322106e-06 4.9505424250073509e-06 -6.4907029826131470e-04 6.4915859208743826e-04 0 2 0 P 742 22 1.4433243584258459e-01 3.5067455891633161e-02 -7.4278565617346404e+00 7.4293414701575875e+00 0 1 0 0 0 0 P 743 22 5.0660057121067938e-03 6.9931949873330901e-02 -6.3387148088813436e+00 6.3391025839907806e+00 0 1 0 0 0 0 V -236 0 2.9872774276008541e-05 2.0771247041135075e-05 -6.9385230271726338e-04 6.9493482760984787e-04 0 2 0 P 744 22 2.6595339129699630e-01 1.1806897499546447e-01 -4.9124064458151855e+00 4.9210170268030415e+00 0 1 0 0 0 0 P 745 22 3.4951290719546543e-02 9.1157172808941048e-02 -2.0766801581452152e+00 2.0789737136653552e+00 0 1 0 0 0 0 V -237 0 0 0 0 0 0 3 0 P 746 211 4.0716413945063162e-01 6.5720178265344942e-01 -2.0453752726074384e+01 2.0468834289814179e+01 1.3957000000000000e-01 1 0 0 0 0 P 747 -211 1.5826736729557286e-01 1.0134390427953499e-01 -3.5457128517341818e+00 3.5534319408619939e+00 1.3957000000000000e-01 1 0 0 0 0 P 748 111 2.5111332294795449e-02 2.6902380194850234e-01 -1.5010671020661738e+01 1.5013709350988467e+01 1.3497999999999999e-01 2 0 0 -259 0 V -238 0 5.8903333867336597e-05 -5.2410509733231833e-06 -2.8051658415803133e-03 2.8058089833371256e-03 0 2 0 P 749 22 5.4891653572885640e-02 -4.1198549231600635e-02 -3.6787475394676590e+00 3.6793877035765208e+00 0 1 0 0 0 0 P 750 22 6.9779543536601840e-01 -2.5773405343598180e-02 -3.2166627801176162e+01 3.2174205923960876e+01 0 1 0 0 0 0 V -239 0 1.4693022594664131e-06 8.7815005908772063e-06 -4.7503860358099432e-03 4.7503999124542768e-03 0 2 0 P 751 22 -1.0608406023043717e-02 1.6744162506424523e-01 -6.0624531977538545e+01 6.0624764137534385e+01 0 1 0 0 0 0 P 752 22 3.7963012860759530e-02 -3.9528026922912261e-03 -2.7815366280119310e+01 2.7815392467340683e+01 0 1 0 0 0 0 V -240 0 1.7544549980818637e+01 -1.3287867655642611e+00 -2.8328132820646224e+03 2.8329467750762365e+03 0 2 0 P 753 211 3.3395522795578292e-01 6.5363911138751535e-02 -5.7809835809678958e+01 5.7811005826417670e+01 1.3957000000000000e-01 1 0 0 0 0 P 754 -211 7.9135413072235108e-02 -9.6650514521375047e-02 -8.8894329592630523e+00 8.8914060675290063e+00 1.3957000000000000e-01 1 0 0 0 0 V -241 0 1.4102817339079698e-05 -1.9175185729306621e-05 -9.7861705607419280e-04 9.7900231656954172e-04 0 2 0 P 755 22 6.1092134047216619e-02 -9.3224802538886639e-02 -2.2430251534172858e+00 2.2457927222950689e+00 0 1 0 0 0 0 P 756 22 7.7883969647457585e-02 -9.5736915975057901e-02 -7.4007490083218750e+00 7.4017779859967225e+00 0 1 0 0 0 0 V -242 0 3.3969430748175402e-05 -8.8425207282220679e-05 2.2521194733120887e-03 2.2542755467736910e-03 0 2 0 P 757 22 1.7035851339353436e-01 -4.1092918385679900e-01 1.0927832676777681e+01 1.0936883094779835e+01 0 1 0 0 0 0 P 758 22 -2.1643506845835945e-03 -2.6893981666731962e-02 2.2317400161936557e-01 2.2479903394493703e-01 0 1 0 0 0 0 V -243 0 5.8194933746022386e+00 1.6391487248459587e+01 -3.6935120022969791e+01 4.2938767155087014e+01 0 2 0 P 759 22 2.1264245317034271e-02 -1.7847415052051872e-03 8.9981171120764522e-03 2.3158573848707790e-02 0 1 0 0 0 0 P 760 22 2.4772952254176361e-02 -2.1214548018388187e-02 -2.9957826466985249e-01 3.0134845755970330e-01 0 1 0 0 0 0 V -244 0 5.8194889795431610e+00 1.6391545109374213e+01 -3.6935092868438311e+01 4.2938741708367139e+01 0 2 0 P 761 22 5.0555801579855085e-02 3.8498334704217291e-01 -5.5316611598883214e-01 6.7584082330926543e-01 0 1 0 0 0 0 P 762 22 1.2110649112606210e-01 2.5120181928916713e-01 -5.3794736832795975e-01 6.0593440841235591e-01 0 1 0 0 0 0 V -245 0 7.1039895655604471e+02 3.6643135540274807e+02 2.5254570840649353e+03 2.6971926198265191e+03 0 2 0 P 763 22 1.9372940901322067e-01 -1.0401068480301538e-03 6.3248572780355294e-01 6.6149101400854815e-01 0 1 0 0 0 0 P 764 22 1.8873243297642975e-01 9.4631886678116589e-02 4.1375033127622796e-01 4.6450453373960826e-01 0 1 0 0 0 0 V -246 0 5.5214858287883606e-01 -5.2149282539082475e-01 2.7331974638437493e+00 3.1591020290220215e+00 0 2 0 P 765 22 6.7943750918057849e-02 -4.3972019132378519e-02 2.1946814010010467e-02 8.3854364230988812e-02 0 1 0 0 0 0 P 766 22 -1.3470138749536818e-02 -1.5738141086484525e-01 1.5389405861198588e-01 2.2053057475055549e-01 0 1 0 0 0 0 V -247 0 5.5211131230527322e-01 -5.2128789205838533e-01 2.7331191881295291e+00 3.1588970342534082e+00 0 2 0 P 767 22 1.5734271138854929e-02 -1.1710027817708276e-02 4.5354650614759229e-01 4.5397040132419475e-01 0 1 0 0 0 0 P 768 22 1.2746473965998736e-01 2.6419928605049874e-02 3.4914817561875189e-01 3.7262544333685410e-01 0 1 0 0 0 0 V -248 0 -2.3221937203653706e-01 -8.3803594578539853e-01 1.2378008386335120e+01 1.2493592556593743e+01 0 2 0 P 769 111 -2.1007566335191094e-01 -2.6535313856906168e-01 3.3332599205886893e+00 3.3531157706056187e+00 1.3497999999999999e-01 2 0 0 -260 0 P 770 111 1.3067534140913559e-01 -2.1187658227639329e-02 8.9902200432645851e-01 9.1868663121693905e-01 1.3497999999999999e-01 2 0 0 -261 0 V -249 0 1.6510511898734837e+01 -2.0951178684282088e+01 3.4277769141786280e+02 3.4387613128618381e+02 0 2 0 P 771 22 3.4608057484918514e-01 -4.1856277200663949e-01 6.1115559126115606e+00 6.1356403277388365e+00 0 1 0 0 0 0 P 772 22 8.1234121013659244e-01 -8.4361396657417442e-01 1.5339021374178174e+01 1.5383665346196919e+01 0 1 0 0 0 0 V -250 0 1.6510371730223042e+01 -2.0951060609497006e+01 3.4277552933285705e+02 3.4387396227575277e+02 0 2 0 P 773 22 1.1179296245496410e-01 -3.4049150293053171e-01 4.5015911093763892e+00 4.5158337708599170e+00 0 1 0 0 0 0 P 774 22 -1.2763778341358891e-02 7.0111745166315294e-03 1.5402269976315447e-01 1.5470960748441195e-01 0 1 0 0 0 0 V -251 0 -2.5634079793228746e+00 2.6919131858569605e+00 1.3480280425796320e+03 1.3480413030082466e+03 0 2 0 P 775 111 -2.9420682174197654e-01 2.5131457931322942e-01 1.3022820225659302e+02 1.3022884703189320e+02 1.3497999999999999e-01 2 0 0 -262 0 P 776 111 2.1808484835509710e-02 3.4739252475855999e-02 1.3018834447633772e+01 1.3019598780337631e+01 1.3497999999999999e-01 2 0 0 -263 0 V -252 0 2.2905751564047588e+01 -3.5595845413983285e+00 1.4291664715640214e+04 1.4291717876903973e+04 0 2 0 P 777 111 1.8279443920262844e-01 -2.3695624301270182e-01 1.1222317832130916e+02 1.1222365853154521e+02 1.3497999999999999e-01 2 0 0 -264 0 P 778 111 1.8094420015634316e-01 1.8043077017889689e-01 1.1472552769718048e+02 1.1472589167691538e+02 1.3497999999999999e-01 2 0 0 -265 0 V -253 0 1.2260791437956435e+00 -1.4489396529280316e+00 5.2571409381626672e+03 5.2571603618626341e+03 0 3 0 P 779 22 -6.5038995644094280e-02 -2.1360384467465116e-03 7.9702064854890466e+01 7.9702091420280709e+01 0 1 0 0 0 0 P 780 -11 1.9922626937671800e-02 -8.5263438659147581e-02 6.6352679615537539e+01 6.6352737390308974e+01 5.1000000000000004e-04 1 0 0 0 0 P 781 11 4.3222074000870093e-03 -1.8585530384653683e-02 1.4504159418409575e+01 1.4504171979060221e+01 5.1000000000000004e-04 1 0 0 0 0 V -254 0 1.2261085393293176e+00 -1.4488820198585435e+00 5.2570660094948762e+03 5.2570854332153285e+03 0 2 0 P 782 22 1.1096562081050221e-01 1.3153255323044396e-02 1.9443964258454457e+01 1.9444285342001692e+01 0 1 0 0 0 0 P 783 22 -2.7091104058261421e-02 4.1923439562524728e-02 4.7099269189714574e+00 4.7101914063821031e+00 0 1 0 0 0 0 V -255 0 -1.1507078111758497e+02 7.3473986000586351e+01 2.2333894359704686e+03 2.2376624568261132e+03 0 2 0 P 784 111 -1.0351969009330031e+00 4.2956798630949328e-01 1.8495213885591919e+01 1.8529633497529179e+01 1.3497999999999999e-01 2 0 0 -266 0 P 785 111 -1.6199764396974605e+00 1.2657900095597112e+00 3.3038598886347934e+01 3.3102776076741165e+01 1.3497999999999999e-01 2 0 0 -267 0 V -256 0 2.1366291327530174e+01 -1.0008490854836426e+01 -3.0061965271343563e+01 4.2193178421863180e+01 0 2 0 P 786 22 1.7223250489391898e-01 -6.1733530835467343e-02 -1.4176713115907519e-01 2.3145838513331476e-01 0 1 0 0 0 0 P 787 22 4.6842804254491312e-02 -1.2928353118858341e-01 -1.0683769521453605e-01 1.7413435291684440e-01 0 1 0 0 0 0 V -257 0 -1.6904111902783872e+00 7.6772593220176963e+00 -1.6704720811848748e+02 1.6782510060566270e+02 0 2 0 P 788 22 -1.4765727126762232e-01 2.2163974408978340e-01 -3.0457199071246519e+00 3.0573414265622647e+00 0 1 0 0 0 0 P 789 22 -6.1447438022490718e-02 4.3247049112020826e-02 -3.6257460498950556e-01 3.7027886663934978e-01 0 1 0 0 0 0 V -258 0 -1.6903407351458315e+00 7.6771705745321945e+00 -1.6704607240475167e+02 1.6782395843680584e+02 0 2 0 P 790 22 6.6490143301456972e-02 -6.3655958838597301e-02 -1.0203698210398104e+00 1.0245133439544478e+00 0 1 0 0 0 0 P 791 22 8.2935379633314571e-02 6.9819362059322210e-02 -1.4690643489628326e+00 1.4730590897540004e+00 0 1 0 0 0 0 V -259 0 1.0227575525429421e-06 1.0957050069130500e-05 -6.1136848395340474e-04 6.1149223187933316e-04 0 2 0 P 792 22 -4.4839716115330150e-02 1.8339547998973249e-01 -8.4706454259079571e+00 8.4727491662197423e+00 0 1 0 0 0 0 P 793 22 6.9951048410125602e-02 8.5628321958769876e-02 -6.5400255947537813e+00 6.5409601847687231e+00 0 1 0 0 0 0 V -260 0 -2.3242766873055079e-01 -8.3829905185217557e-01 1.2381313419439236e+01 1.2496917277403941e+01 0 2 0 P 794 22 -4.6739801355008818e-02 -2.0328069699797665e-02 2.1397317976128771e-01 2.1995990795047599e-01 0 1 0 0 0 0 P 795 22 -1.6333586199690212e-01 -2.4502506886926398e-01 3.1192867408274014e+00 3.1331558626551428e+00 0 1 0 0 0 0 V -261 0 -2.3220808822769526e-01 -8.3803777533856949e-01 1.2378086016837798e+01 1.2493671885135917e+01 0 2 0 P 796 22 1.4429995742686419e-01 -2.2664260392563140e-02 5.4011178679036131e-01 5.5951486900922776e-01 0 1 0 0 0 0 P 797 22 -1.3624616017728595e-02 1.4766021649238105e-03 3.5891021753609725e-01 3.5917176220771113e-01 0 1 0 0 0 0 V -262 0 -2.5634185835077368e+00 2.6919222440638433e+00 1.3480327364338493e+03 1.3480459968857037e+03 0 2 0 P 798 22 -3.0676729493944860e-01 2.2671315406546047e-01 1.2319050457185693e+02 1.2319109513960890e+02 0 1 0 0 0 0 P 799 22 1.2560473197472043e-02 2.4601425247768944e-02 7.0376976847360835e+00 7.0377518922842679e+00 0 1 0 0 0 0 V -263 0 -2.5634046502484154e+00 2.6919184888185841e+00 1.3480300299102319e+03 1.3480432904555221e+03 0 2 0 P 800 22 -1.1820245590838951e-02 -4.1861740319001306e-02 2.1364089748912685e+00 2.1368517570258176e+00 0 1 0 0 0 0 P 801 22 3.3628730426348660e-02 7.6600992794857298e-02 1.0882425472742504e+01 1.0882747023311813e+01 0 1 0 0 0 0 V -264 0 2.2905774555094453e+01 -3.5596143446686681e+00 1.4291678830557295e+04 1.4291731991881452e+04 0 2 0 P 802 22 1.1897890058568597e-02 1.6410341096972033e-02 4.3399220988415381e+00 4.3399694334287542e+00 0 1 0 0 0 0 P 803 22 1.7089654914405983e-01 -2.5336658410967383e-01 1.0788325622246762e+02 1.0788368909811645e+02 0 1 0 0 0 0 V -265 0 2.2905765438350556e+01 -3.5595707064637567e+00 1.4291673512477737e+04 1.4291726673769404e+04 0 2 0 P 804 22 1.7934073718150681e-01 1.1571090940544328e-01 9.9105850367145678e+01 9.9106080182346176e+01 0 1 0 0 0 0 P 805 22 1.6034629748363427e-03 6.4719860773453625e-02 1.5619677330034813e+01 1.5619811494569175e+01 0 1 0 0 0 0 V -266 0 -1.1507097050537887e+02 7.3474064589435670e+01 2.2333928196434226e+03 2.2376658467960856e+03 0 2 0 P 806 22 -4.3063881229938067e-01 1.5901999326194144e-01 6.5454577753714780e+00 6.5615359965549676e+00 0 1 0 0 0 0 P 807 22 -6.0455808863362237e-01 2.7054799304755184e-01 1.1949756110220441e+01 1.1968097500974212e+01 0 1 0 0 0 0 V -267 0 -1.1507107976724249e+02 7.3474219354444827e+01 2.2333955267789524e+03 2.2376685594659393e+03 0 2 0 P 808 22 -1.1283681298247601e+00 8.2396220903032336e-01 2.1714939205414947e+01 2.1759841751565688e+01 0 1 0 0 0 0 P 809 22 -4.9160830987270043e-01 4.4182780052938780e-01 1.1323659680932987e+01 1.1342934325175468e+01 0 1 0 0 0 0 HepMC::IO_GenEvent-END_EVENT_LISTING hepmc-2.06.09.orig/test/testHepMCMethods.cc0000644000175000017500000000607411374257600021267 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testHepMCMethods.cc // // garren@fnal.gov, March 2009 // // various methods used by the test jobs ////////////////////////////////////////////////////////////////////////// #include "testHepMCMethods.h" double findPiZero( HepMC::GenEvent * evt ) { for ( HepMC::GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if ( (*p)->pdg_id() == 111 ) { return (*p)->generated_mass(); } } return 0.; } void particleTypes( HepMC::GenEvent * evt, std::ostream & os ) { int numDecayed = 0, numUndecayed = 0, numBeam = 0; int numDecayed2 = 0, numUndecayed2 = 0, numBeam2 = 0; for ( HepMC::GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if ( (*p)->is_undecayed() ) { ++numUndecayed; } if ( (*p)->has_decayed() ) { ++numDecayed; } if ( (*p)->is_beam() ) { ++numBeam; } if ( (*p)->status() == 1 ) { ++numUndecayed2; } if ( (*p)->status() == 2 ) { ++numDecayed2; } if ( (*p)->status() == 4 ) { ++numBeam2; } } if( numUndecayed != numUndecayed2 ) { std::cerr << "ERROR: incorrect count of undecayed particles: " << numUndecayed << " does not match " << numUndecayed2 << std::endl; } if( numDecayed != numDecayed2 ) { std::cerr << "ERROR: incorrect count of undecayed particles: " << numDecayed << " does not match " << numDecayed2 << std::endl; } if( numBeam != numBeam2 ) { std::cerr << "ERROR: incorrect count of undecayed particles: " << numBeam << " does not match " << numBeam2 << std::endl; } int ndcy = numUndecayed + numDecayed; if( ndcy > evt->particles_size() ) { std::cerr << "ERROR: count does not add up: " << ndcy << " is greater than the number of particles in the event: " << evt->particles_size() << std::endl; } os << "Event " << evt->event_number() << " has " << evt->particles_size() << " particles, " << numDecayed << " decayed particles, " << numUndecayed << " undecayed particles, and " << numBeam << " beam particles " << std::endl; return; } void repairUnits(HepMC::GenEvent* evt, HepMC::Units::MomentumUnit from, HepMC::Units::MomentumUnit to ) { // const double factor = HepMC::Units::conversion_factor( from, to ); // multiply all momenta by 'factor', // loop is entered only if particle list is not empty for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { HepMC::FourVector mom = (*p)->momentum(); double gm = (*p)->generatedMass(); (*p)->set_momentum( HepMC::FourVector( factor*mom.px(), factor*mom.py(), factor*mom.pz(), factor*mom.e() ) ); if( gm > 0. ) (*p)->set_generated_mass( factor*gm ); } } hepmc-2.06.09.orig/test/testPrintBug.sh.in0000755000175000017500000000104011657245323021165 0ustar sylvestresylvestre#! /bin/bash # @configure_input@ ./testPrintBug@EXEEXT@ OS=`uname` case "$OS" in CYGWIN*) cmd1=`sed 's/e-0\([0-9][0-9]\)/e-\1/g' testPrintBug.out | \ sed 's/e+0\([0-9][0-9]\)/e+\1/g' | \ @DIFF_Q@ - @srcdir@/testPrintBug.output` ;; Darwin*) # MacOSX fix cmd1=`sed 's/e-0\([0-9][0-9]\)/e-\1/g' testPrintBug.out | \ sed 's/e+0\([0-9][0-9]\)/e+\1/g' | \ @DIFF_Q@ - @srcdir@/testPrintBug.output` ;; *) cmd1=`@DIFF_Q@ testPrintBug.out @srcdir@/testPrintBug.output` esac if [ -n "$cmd1" ] then echo $cmd1 exit 1; fi exit 0; hepmc-2.06.09.orig/test/testWithWeight.output0000644000175000017500000052204211374257600022043 0ustar sylvestresylvestre________________________________________________________________________________ GenEvent: #1 ID=20 SignalProcessGenVertex Barcode: 0 Momenutm units: GEV Position units: MM Entries this event: 357 vertices, 1046 particles. Beam Particle barcodes: 1 2 RndmState(0)= Wgts(3)=(0,0.3456) (1,0.98563) (2,0.98596) EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ GenVertex: -1 ID: 0 (X,cT):0 I: 1 1 2212 +0.00e+00,+0.00e+00,+7.00e+03,+7.00e+03 3 -1 O: 3 3 -1 +7.25e-02,+4.09e-01,+2.33e+02,+2.33e+02 3 -3 11 2214 -1.17e-01,-8.59e-03,+6.34e+02,+6.34e+02 2 -25 91 1 +4.43e-02,-4.01e-01,+6.45e+02,+6.45e+02 2 -26 GenVertex: -2 ID: 0 (X,cT):0 I: 1 2 2212 +0.00e+00,+0.00e+00,-7.00e+03,+7.00e+03 3 -2 O: 2 4 2 +7.85e-02,+3.22e-01,-1.50e+01,+1.50e+01 3 -4 95 2103 -7.85e-02,-3.22e-01,-3.02e+03,+3.02e+03 2 -28 GenVertex: -3 ID: 0 (X,cT):0 I: 1 3 -1 +7.25e-02,+4.09e-01,+2.33e+02,+2.33e+02 3 -3 O: 1 5 -1 +4.59e-02,+2.59e-01,+1.48e+02,+1.48e+02 3 -5 GenVertex: -4 ID: 0 (X,cT):0 I: 1 4 2 +7.85e-02,+3.22e-01,-1.50e+01,+1.50e+01 3 -4 O: 5 6 2 -2.78e+00,-2.29e+01,-1.44e+00,+2.31e+01 3 -5 12 -5 +3.79e+00,+3.68e+00,+1.65e+01,+1.80e+01 2 -26 92 5 -8.13e-01,+1.56e+01,+4.82e+01,+5.09e+01 2 -9 93 -1 -5.37e-01,+1.09e+00,+2.60e+00,+2.89e+00 2 -9 94 1 +4.44e-01,+2.98e+00,+4.72e+00,+5.61e+00 2 -28 GenVertex: -5 ID: 0 (X,cT):0 I: 2 5 -1 +4.59e-02,+2.59e-01,+1.48e+02,+1.48e+02 3 -5 6 2 -2.78e+00,-2.29e+01,-1.44e+00,+2.31e+01 3 -5 O: 2 7 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 3 -6 8 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 3 -7 GenVertex: -6 ID: 0 (X,cT):0 I: 1 7 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 3 -6 O: 1 9 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 2 -8 GenVertex: -7 ID: 0 (X,cT):0 I: 1 8 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 3 -7 O: 1 10 22 +2.19e-01,-1.51e+00,-1.01e+00,+1.83e+00 1 GenVertex: -8 ID: 0 (X,cT):0 I: 1 9 24 -2.96e+00,-2.11e+01,+1.47e+02,+1.69e+02 2 -8 O: 9 96 2 +2.72e-01,-1.98e+00,+7.89e+00,+8.14e+00 2 -30 97 21 -1.90e+00,-3.77e+00,+9.26e+00,+1.02e+01 2 -30 98 -2 -3.96e+00,-1.68e+01,+3.58e+01,+3.97e+01 2 -30 99 -1 +5.96e+00,+2.37e+01,+3.17e+01,+4.01e+01 2 -32 100 21 +2.07e+00,+3.84e+00,+6.69e+00,+7.99e+00 2 -32 101 21 +4.61e-01,+5.32e-01,+2.00e+00,+2.12e+00 2 -32 102 21 +4.80e-01,-9.35e-02,+4.55e-01,+6.68e-01 2 -32 103 21 -1.08e+00,-2.89e+00,+6.76e+00,+7.43e+00 2 -32 104 2 -5.26e+00,-2.37e+01,+4.67e+01,+5.26e+01 2 -32 GenVertex: -9 ID: 0 (X,cT):0 I: 2 92 5 -8.13e-01,+1.56e+01,+4.82e+01,+5.09e+01 2 -9 93 -1 -5.37e-01,+1.09e+00,+2.60e+00,+2.89e+00 2 -9 O: 1 155 91 -1.35e+00,+1.67e+01,+5.08e+01,+5.38e+01 2 -10 GenVertex: -10 ID: 0 (X,cT):0 I: 1 155 91 -1.35e+00,+1.67e+01,+5.08e+01,+5.38e+01 2 -10 O: 2 156 -513 -1.28e+00,+1.58e+01,+4.81e+01,+5.09e+01 2 -42 164 21 -7.23e-02,+8.95e-01,+2.72e+00,+2.88e+00 2 -43 GenVertex: -11 ID: 0 (X,cT):0 I: 1 107 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -11 O: 1 157 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -43 GenVertex: -12 ID: 0 (X,cT):0 I: 1 108 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -12 O: 1 158 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -43 GenVertex: -13 ID: 0 (X,cT):0 I: 1 109 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -13 O: 1 159 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -43 GenVertex: -14 ID: 0 (X,cT):0 I: 1 110 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -14 O: 1 160 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -43 GenVertex: -15 ID: 0 (X,cT):0 I: 1 111 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -15 O: 1 161 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -43 GenVertex: -16 ID: 0 (X,cT):0 I: 1 112 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -16 O: 1 162 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -43 GenVertex: -17 ID: 0 (X,cT):0 I: 1 113 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -17 O: 1 163 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -43 GenVertex: -18 ID: 0 (X,cT):0 I: 1 114 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -18 O: 1 165 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -43 GenVertex: -19 ID: 0 (X,cT):0 I: 1 115 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -19 O: 1 166 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -43 GenVertex: -20 ID: 0 (X,cT):0 I: 1 116 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -20 O: 1 167 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -43 GenVertex: -21 ID: 0 (X,cT):0 I: 1 117 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -21 O: 1 168 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -43 GenVertex: -22 ID: 0 (X,cT):0 I: 1 118 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -22 O: 1 169 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -43 GenVertex: -23 ID: 0 (X,cT):0 I: 1 119 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -23 O: 1 170 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -43 GenVertex: -24 ID: 0 (X,cT):0 I: 1 120 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -24 O: 1 171 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -43 GenVertex: -25 ID: 0 (X,cT):0 I: 1 11 2214 -1.17e-01,-8.59e-03,+6.34e+02,+6.34e+02 2 -25 O: 2 172 2112 -1.34e-01,-3.50e-02,+6.13e+02,+6.13e+02 1 173 211 +1.72e-02,+2.65e-02,+2.08e+01,+2.08e+01 1 GenVertex: -26 ID: 0 (X,cT):0 I:80 12 -5 +3.79e+00,+3.68e+00,+1.65e+01,+1.80e+01 2 -26 13 21 -1.19e+00,-2.65e+00,-1.23e+01,+1.26e+01 2 -26 14 21 +1.78e+00,-1.36e+00,-1.46e+01,+1.47e+01 2 -26 15 21 +2.86e+00,-1.59e+00,-2.14e+01,+2.16e+01 2 -26 16 21 +1.18e+00,+2.21e-01,-5.80e+00,+5.93e+00 2 -26 17 21 +5.15e-01,-4.90e-02,-1.50e+00,+1.59e+00 2 -26 18 21 +1.72e+00,-1.62e-01,-8.88e+00,+9.04e+00 2 -26 19 21 +7.40e+00,-8.43e-01,-5.45e+01,+5.50e+01 2 -26 20 21 +7.08e-01,+1.28e-01,-4.16e+01,+4.16e+01 2 -26 21 21 +2.32e+00,-1.84e+00,-1.64e+02,+1.64e+02 2 -26 22 21 +4.28e+00,-8.42e+00,-4.59e+02,+4.59e+02 2 -26 23 21 -4.87e-01,-1.64e+00,-9.91e+01,+9.91e+01 2 -26 24 21 -1.34e+00,-2.58e+00,-1.14e+02,+1.14e+02 2 -26 25 21 -5.52e-01,-6.40e-01,-3.64e+01,+3.64e+01 2 -26 26 21 -4.09e+00,-1.53e+00,-1.81e+02,+1.81e+02 2 -26 27 21 -7.08e-01,-1.28e-01,-7.24e+01,+7.24e+01 2 -26 28 21 -4.19e-01,+1.01e+00,-8.68e+01,+8.68e+01 2 -26 29 21 -4.28e+00,+8.42e+00,-5.32e+02,+5.32e+02 2 -26 30 21 +1.19e+00,+2.65e+00,-8.18e+01,+8.18e+01 2 -26 31 21 +3.56e+00,+3.80e+00,-1.01e+02,+1.01e+02 2 -26 32 21 +3.23e+00,+6.31e+00,-7.59e+01,+7.63e+01 2 -26 33 21 +3.93e-01,+1.09e+00,-1.13e+01,+1.13e+01 2 -26 34 21 -4.82e-01,+1.27e+00,-6.63e+00,+6.77e+00 2 -26 35 21 +4.96e-01,+2.22e+00,-6.61e+00,+6.99e+00 2 -26 36 21 +2.55e+00,+2.31e-01,-2.49e+00,+3.57e+00 2 -26 37 21 +4.09e+00,+1.53e+00,-2.39e+00,+4.98e+00 2 -26 38 21 +5.57e+00,+1.82e+00,-2.31e+00,+6.30e+00 2 -26 39 21 +4.78e+00,+1.45e+00,+3.06e+00,+5.86e+00 2 -26 40 21 +1.10e+00,+2.56e-01,+1.01e+00,+1.51e+00 2 -26 41 21 +3.14e+00,+1.02e+00,+1.26e+01,+1.30e+01 2 -26 42 21 +7.17e-01,+4.25e-01,+2.95e+00,+3.07e+00 2 -26 43 21 +3.20e+00,+2.32e+00,+9.40e+00,+1.02e+01 2 -26 44 21 +6.97e-01,+3.43e-01,+1.27e+00,+1.49e+00 2 -26 45 21 +2.10e+00,+3.38e+00,+2.30e+00,+4.60e+00 2 -26 46 21 +3.13e+00,+3.61e+00,-5.41e-01,+4.81e+00 2 -26 47 21 +9.15e-01,+1.42e+00,+1.42e-01,+1.70e+00 2 -26 48 21 +5.60e-01,+2.29e+00,+1.94e-01,+2.36e+00 2 -26 49 21 +6.45e-02,+5.36e+00,-7.89e-01,+5.42e+00 2 -26 50 21 -2.09e+00,+2.72e+00,+2.39e-01,+3.44e+00 2 -26 51 21 -2.32e+00,+1.84e+00,+1.28e+00,+3.22e+00 2 -26 52 21 -1.15e+00,+7.00e-01,+1.19e+00,+1.80e+00 2 -26 53 21 -1.67e+00,+1.02e+00,+1.44e+00,+2.43e+00 2 -26 54 21 -2.86e+00,+1.59e+00,-4.53e-01,+3.30e+00 2 -26 55 21 -1.72e+00,+1.62e-01,-1.35e-01,+1.73e+00 2 -26 56 21 -4.78e+00,-1.45e+00,-3.97e-01,+5.02e+00 2 -26 57 21 -1.82e+00,-1.01e+00,-5.53e-01,+2.16e+00 2 -26 58 21 -2.10e+00,-3.38e+00,+4.98e-01,+4.01e+00 2 -26 59 21 -3.23e+00,-6.31e+00,-3.25e+00,+7.80e+00 2 -26 60 21 -4.96e-01,-2.22e+00,-6.25e-01,+2.36e+00 2 -26 61 21 -6.45e-02,-5.36e+00,-3.21e+00,+6.24e+00 2 -26 62 21 +6.17e-01,-2.22e+00,-1.09e+00,+2.55e+00 2 -26 63 21 +4.82e-01,-1.27e+00,-3.87e-01,+1.41e+00 2 -26 64 21 +7.68e-01,-1.81e+00,-1.82e+00,+2.68e+00 2 -26 65 21 +1.74e+00,-1.13e+00,-9.48e-01,+2.28e+00 2 -26 66 21 +1.67e+00,-1.02e+00,+3.06e+00,+3.64e+00 2 -26 67 21 +2.25e+00,-5.09e+00,+1.11e+01,+1.24e+01 2 -26 68 21 +2.09e+00,-2.72e+00,+1.65e+01,+1.68e+01 2 -26 69 21 -5.60e-01,-2.29e+00,+2.24e+01,+2.25e+01 2 -26 70 21 -3.56e+00,-3.80e+00,+2.58e+01,+2.63e+01 2 -26 71 21 -7.40e+00,+8.43e-01,+6.26e+01,+6.31e+01 2 -26 72 21 -1.07e+00,+2.35e-01,+2.17e+01,+2.17e+01 2 -26 73 21 -3.14e+00,-1.02e+00,+5.20e+01,+5.21e+01 2 -26 74 21 -7.60e-01,-1.41e-01,+1.74e+01,+1.74e+01 2 -26 75 21 -5.57e+00,-1.82e+00,+1.33e+02,+1.33e+02 2 -26 76 21 -3.13e+00,-3.61e+00,+1.47e+02,+1.47e+02 2 -26 77 21 -3.93e-01,-1.09e+00,+7.76e+01,+7.76e+01 2 -26 78 21 -4.17e-01,-6.93e-01,+6.82e+01,+6.83e+01 2 -26 79 21 -3.20e+00,-2.32e+00,+2.74e+02,+2.74e+02 2 -26 80 21 -1.94e+00,-1.94e+00,+3.76e+02,+3.76e+02 2 -26 81 21 -6.97e-01,-3.43e-01,+2.16e+02,+2.16e+02 2 -26 82 21 -1.04e+00,-6.03e-01,+2.80e+02,+2.80e+02 2 -26 83 21 -6.19e-01,+7.60e-01,+8.91e+01,+8.91e+01 2 -26 84 21 -2.25e+00,+5.09e+00,+5.45e+02,+5.45e+02 2 -26 85 21 +4.17e-01,+6.93e-01,+9.31e+01,+9.31e+01 2 -26 86 21 +1.94e+00,+1.94e+00,+5.95e+02,+5.95e+02 2 -26 87 21 +1.82e+00,+1.01e+00,+5.01e+02,+5.01e+02 2 -26 88 21 +9.18e-01,-2.42e+00,+9.16e+02,+9.16e+02 2 -26 89 21 +6.97e-01,-6.00e-01,+2.30e+02,+2.30e+02 2 -26 90 21 +7.60e-01,+1.41e-01,+1.35e+02,+1.35e+02 2 -26 91 1 +4.43e-02,-4.01e-01,+6.45e+02,+6.45e+02 2 -26 O: 1 174 92 +1.07e+01,-6.50e+00,+3.40e+03,+7.89e+03 2 -27 GenVertex: -27 ID: 0 (X,cT):0 I: 1 174 92 +1.07e+01,-6.50e+00,+3.40e+03,+7.89e+03 2 -27 O:132 175 -5114 +2.97e+00,+3.13e+00,+1.50e+01,+1.67e+01 2 -45 176 1114 +6.25e-01,+7.46e-01,+7.57e-01,+1.75e+00 2 -46 177 223 -6.85e-02,-3.39e-01,-1.74e+00,+1.93e+00 2 -47 178 113 -6.77e-02,-1.28e+00,-3.82e+00,+4.10e+00 2 -48 179 -313 +2.01e-01,-6.42e-01,-7.05e+00,+7.13e+00 2 -49 180 323 +1.18e+00,-1.70e+00,-1.21e+01,+1.24e+01 2 -50 181 -2214 +7.61e-01,-3.78e-01,-7.05e+00,+7.19e+00 2 -51 182 111 +4.48e-01,-2.60e-01,-6.04e+00,+6.07e+00 2 -52 183 3122 +3.99e+00,-6.60e-01,-2.59e+01,+2.62e+01 2 -53 184 323 +2.96e+00,-9.29e-01,-1.97e+01,+2.00e+01 2 -54 185 -213 +1.15e+00,+1.85e-01,-7.15e+00,+7.28e+00 2 -55 186 211 +1.50e+00,-3.95e-01,-9.24e+00,+9.37e+00 1 187 -2224 +1.73e+00,-1.28e-01,-4.01e+01,+4.02e+01 2 -56 188 213 +6.91e-01,-5.69e-01,-1.92e+01,+1.93e+01 2 -57 189 2114 +7.32e-01,-1.04e-02,-4.16e+01,+4.16e+01 2 -58 190 223 +1.05e+00,-1.58e+00,-6.13e+01,+6.14e+01 2 -59 191 -2112 +1.18e+00,-1.48e+00,-1.09e+02,+1.09e+02 1 192 113 +1.89e-01,-1.12e+00,-6.39e+01,+6.40e+01 2 -60 193 2112 +1.44e+00,-1.65e+00,-1.34e+02,+1.34e+02 1 194 211 +8.92e-01,-2.51e+00,-1.31e+02,+1.31e+02 1 195 -213 +9.39e-01,-7.81e-01,-7.57e+01,+7.57e+01 2 -61 196 211 -8.19e-01,-2.56e+00,-1.03e+02,+1.03e+02 1 197 -213 -1.57e-01,-1.15e+00,-7.89e+01,+7.90e+01 2 -62 198 211 -1.87e+00,-3.14e-01,-8.13e+01,+8.13e+01 1 199 -213 -7.59e-01,-9.29e-01,-8.85e+01,+8.85e+01 2 -63 200 211 +7.06e-02,-3.57e-01,-1.38e+01,+1.38e+01 1 201 -321 +3.60e-01,+1.93e-01,-1.53e+01,+1.53e+01 1 202 331 -2.38e+00,-1.40e-01,-1.58e+02,+1.58e+02 2 -64 203 313 -9.05e-01,+1.29e+00,-8.10e+01,+8.10e+01 2 -65 204 223 -6.04e-01,+2.55e-02,-6.38e+01,+6.38e+01 2 -66 205 111 -1.63e+00,+1.91e+00,-1.16e+02,+1.16e+02 2 -67 206 213 -6.82e-01,+9.06e-01,-1.09e+02,+1.09e+02 2 -68 207 111 -7.18e-01,+3.10e+00,-1.77e+02,+1.77e+02 2 -69 208 111 -4.76e-01,+2.92e-01,-2.30e+01,+2.30e+01 2 -70 209 -211 +2.84e-01,+1.11e+00,-5.18e+01,+5.18e+01 1 210 -2112 +1.87e+00,+2.35e+00,-5.26e+01,+5.27e+01 1 211 2212 +1.33e+00,+1.80e+00,-4.90e+01,+4.91e+01 1 212 113 +1.97e-01,+1.12e+00,-2.41e+01,+2.41e+01 2 -71 213 -213 +1.65e+00,+3.01e+00,-4.51e+01,+4.53e+01 2 -72 214 -1114 +8.75e-02,+8.50e-01,-1.67e+01,+1.68e+01 2 -73 215 1114 +1.62e+00,+3.63e+00,-4.43e+01,+4.45e+01 2 -74 216 213 +9.92e-01,+1.25e+00,-8.87e+00,+9.05e+00 2 -75 217 -211 +2.42e-01,+1.38e+00,-4.14e+00,+4.37e+00 1 218 -313 -1.59e-02,-2.78e-01,-4.06e+00,+4.17e+00 2 -76 219 313 +2.44e+00,+2.14e+00,-4.58e+00,+5.69e+00 2 -77 220 223 +1.56e+00,+2.32e-01,-1.40e-01,+1.77e+00 2 -78 221 213 +2.22e+00,+8.42e-01,-1.50e+00,+3.04e+00 2 -79 222 -213 +2.08e+00,+7.28e-01,-8.57e-01,+2.46e+00 2 -80 223 111 +1.84e-01,+1.52e-01,-5.80e-01,+6.42e-01 2 -81 224 213 +3.55e+00,+5.20e-01,-9.76e-01,+3.81e+00 2 -82 225 -3224 +1.87e+00,+5.94e-01,+1.41e+00,+2.76e+00 2 -83 226 211 +2.94e-01,+8.36e-02,+4.76e-01,+5.83e-01 1 227 3114 +1.60e+00,+2.09e-01,+1.82e+00,+2.80e+00 2 -84 228 221 -9.46e-02,+5.18e-02,+7.92e-01,+9.69e-01 2 -85 229 211 +2.62e-01,-7.29e-02,+2.71e-01,+4.08e-01 1 230 223 +7.63e-01,+6.36e-01,+1.60e+00,+2.04e+00 2 -86 231 -213 +1.93e+00,+1.18e+00,+4.85e+00,+5.41e+00 2 -87 232 211 +1.32e+00,+7.37e-01,+7.01e-01,+1.67e+00 1 233 221 +2.30e+00,+1.13e+00,+4.74e+00,+5.42e+00 2 -88 234 -321 +9.63e-01,+2.19e-01,+6.13e+00,+6.23e+00 1 235 311 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -89 236 211 +6.26e-01,+1.56e+00,+1.81e+00,+2.47e+00 1 237 -211 +3.28e-01,+1.61e-01,+1.16e+00,+1.22e+00 1 238 211 +5.24e-01,+4.80e-01,+2.10e-02,+7.24e-01 1 239 -213 +4.26e-01,+3.32e-01,+2.61e-01,+9.44e-01 2 -90 240 213 +1.97e+00,+3.54e+00,+6.95e-01,+4.18e+00 2 -91 241 -211 +1.12e+00,+2.16e+00,+4.43e-01,+2.48e+00 1 242 -311 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 2 -92 243 221 +5.60e-01,+2.26e+00,-9.49e-01,+2.57e+00 2 -93 244 331 -1.78e-01,+3.39e+00,-1.29e-01,+3.53e+00 2 -94 245 323 -1.46e+00,+1.76e+00,+7.60e-02,+2.46e+00 2 -95 246 113 -7.13e-02,+1.10e+00,+2.52e-01,+1.37e+00 2 -96 247 -321 -1.36e+00,+1.68e+00,+1.30e+00,+2.57e+00 1 248 313 -3.34e+00,+2.53e+00,+4.36e-01,+4.30e+00 2 -97 249 211 -2.27e-01,-5.21e-02,+5.20e-01,+5.86e-01 1 250 113 -1.73e+00,+2.43e-01,+3.22e-01,+1.90e+00 2 -98 251 111 -1.23e+00,+5.03e-01,+4.32e-01,+1.40e+00 2 -99 252 -213 -1.37e+00,+4.96e-01,-6.17e-01,+1.79e+00 2 -100 253 -313 -4.14e+00,-9.70e-01,-1.83e-01,+4.34e+00 2 -101 254 323 -1.82e+00,-2.06e+00,+3.82e-01,+2.98e+00 2 -102 255 223 -1.77e+00,-1.17e+00,-1.29e+00,+2.61e+00 2 -103 256 221 -1.62e+00,-2.23e+00,-7.74e-01,+2.92e+00 2 -104 257 -213 -9.37e-01,-1.60e+00,-2.97e-02,+2.02e+00 2 -105 258 -311 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -106 259 313 +5.28e-01,-3.04e+00,-2.11e+00,+3.83e+00 2 -107 260 -2112 +4.85e-02,-1.10e+00,-1.11e+00,+1.82e+00 1 261 -213 -3.88e-01,-3.68e+00,-1.68e+00,+4.11e+00 2 -108 262 2212 +1.40e+00,-3.56e+00,-1.39e+00,+4.17e+00 1 263 221 +3.86e-01,-2.43e-01,-5.22e-01,+8.83e-01 2 -109 264 213 +6.60e-01,+7.54e-03,+3.09e-01,+1.06e+00 2 -110 265 -211 +5.44e-02,-4.37e-01,-2.76e-01,+5.39e-01 1 266 113 +1.88e+00,-2.26e+00,+3.80e+00,+4.88e+00 2 -111 267 211 +3.05e-01,-1.72e+00,+5.15e+00,+5.44e+00 1 268 -213 +1.75e+00,-1.09e+00,+4.84e+00,+5.30e+00 2 -112 269 211 -5.10e-02,-7.65e-01,+1.28e+00,+1.50e+00 1 270 -213 +2.75e-01,-7.46e-01,+3.58e+00,+3.71e+00 2 -113 271 211 +8.48e-01,-1.43e+00,+6.38e+00,+6.60e+00 1 272 -213 +5.49e-01,-8.59e-01,+4.94e+00,+5.10e+00 2 -114 273 213 -1.23e-01,-9.83e-01,+1.02e+01,+1.03e+01 2 -115 274 -2212 -9.17e-01,-2.39e+00,+1.40e+01,+1.43e+01 1 275 -213 -8.17e-01,-4.40e-01,+6.33e+00,+6.43e+00 2 -116 276 2214 -1.47e+00,-8.16e-01,+1.57e+01,+1.58e+01 2 -117 277 -2114 -1.63e+00,-2.92e-01,+1.75e+01,+1.77e+01 2 -118 278 2114 -2.08e+00,-5.72e-01,+1.79e+01,+1.80e+01 2 -119 279 213 -1.31e+00,-2.14e-01,+1.54e+01,+1.55e+01 2 -120 280 -213 -4.14e+00,+3.06e-01,+4.39e+01,+4.41e+01 2 -121 281 331 -1.14e+00,-1.65e-01,+2.04e+01,+2.04e+01 2 -122 282 213 -3.10e+00,-7.17e-01,+6.54e+01,+6.55e+01 2 -123 283 -211 -2.68e-01,-1.16e-01,+5.23e+00,+5.24e+00 1 284 223 -3.06e+00,-1.62e+00,+8.97e+01,+8.98e+01 2 -124 285 213 -2.34e+00,-1.51e+00,+7.21e+01,+7.21e+01 2 -125 286 111 +2.41e-01,-6.95e-02,+9.09e+00,+9.09e+00 2 -126 287 -213 -2.43e+00,-2.24e+00,+1.15e+02,+1.15e+02 2 -127 288 -311 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -128 289 323 -2.24e+00,-1.25e+00,+1.78e+02,+1.78e+02 2 -129 290 -213 -2.82e-01,-1.33e+00,+1.30e+02,+1.30e+02 2 -130 291 211 -1.00e+00,-1.07e+00,+2.28e+02,+2.28e+02 1 292 -211 -2.29e-01,-2.35e-01,+1.43e+01,+1.43e+01 1 293 211 -7.18e-01,-4.35e-01,+7.77e+01,+7.78e+01 1 294 -323 -1.36e+00,-9.45e-01,+2.00e+02,+2.00e+02 2 -131 295 -3224 -1.00e+00,+4.60e-01,+2.91e+02,+2.91e+02 2 -132 296 111 -5.26e-01,+2.28e-01,+5.25e+01,+5.25e+01 2 -133 297 2214 -1.35e+00,+1.56e+00,+2.21e+02,+2.21e+02 2 -134 298 111 +2.16e-01,+1.76e-01,+1.84e+02,+1.84e+02 2 -135 299 223 -1.42e+00,+2.20e+00,+2.31e+02,+2.31e+02 2 -136 300 -2112 +2.46e+00,+2.14e+00,+7.52e+02,+7.52e+02 1 301 311 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 2 -137 302 3224 +1.84e+00,+1.04e+00,+5.97e+02,+5.97e+02 2 -138 303 111 +1.87e-01,-8.63e-01,+4.77e+02,+4.77e+02 2 -139 304 -213 +1.83e+00,-9.66e-01,+5.25e+02,+5.25e+02 2 -140 305 223 +2.24e-01,-1.03e+00,+5.52e+02,+5.52e+02 2 -141 306 111 -2.24e-01,+1.74e-01,+1.69e+02,+1.69e+02 2 -142 GenVertex: -28 ID: 0 (X,cT):0 I: 2 94 1 +4.44e-01,+2.98e+00,+4.72e+00,+5.61e+00 2 -28 95 2103 -7.85e-02,-3.22e-01,-3.02e+03,+3.02e+03 2 -28 O: 1 307 92 +3.66e-01,+2.65e+00,-3.02e+03,+3.03e+03 2 -29 GenVertex: -29 ID: 0 (X,cT):0 I: 1 307 92 +3.66e-01,+2.65e+00,-3.02e+03,+3.03e+03 2 -29 O: 8 308 3112 +5.26e-01,+2.21e+00,+3.28e+00,+4.17e+00 2 -143 309 -3212 -5.78e-01,+7.66e-01,+9.85e-01,+1.82e+00 2 -144 310 113 +4.47e-01,+1.09e-01,-1.69e+01,+1.69e+01 2 -145 311 111 -3.27e-01,-4.99e-01,-4.05e+00,+4.10e+00 2 -146 312 2212 +5.81e-01,+2.30e-01,-8.68e+01,+8.68e+01 1 313 -2112 +5.12e-02,+5.07e-01,-1.37e+02,+1.37e+02 1 314 331 -2.68e-01,-4.02e-01,-1.57e+03,+1.57e+03 2 -147 315 2112 -6.74e-02,-2.69e-01,-1.20e+03,+1.20e+03 1 GenVertex: -30 ID: 0 (X,cT):0 I: 3 96 2 +2.72e-01,-1.98e+00,+7.89e+00,+8.14e+00 2 -30 97 21 -1.90e+00,-3.77e+00,+9.26e+00,+1.02e+01 2 -30 98 -2 -3.96e+00,-1.68e+01,+3.58e+01,+3.97e+01 2 -30 O: 1 316 92 -5.59e+00,-2.26e+01,+5.29e+01,+5.81e+01 2 -31 GenVertex: -31 ID: 0 (X,cT):0 I: 1 316 92 -5.59e+00,-2.26e+01,+5.29e+01,+5.81e+01 2 -31 O: 4 317 323 -3.37e-01,-2.39e+00,+7.93e+00,+8.34e+00 2 -148 318 -313 -1.44e+00,-3.44e+00,+8.45e+00,+9.29e+00 2 -149 319 313 -1.28e+00,-6.78e+00,+1.54e+01,+1.69e+01 2 -150 320 -323 -2.53e+00,-9.96e+00,+2.12e+01,+2.36e+01 2 -151 GenVertex: -32 ID: 0 (X,cT):0 I: 6 99 -1 +5.96e+00,+2.37e+01,+3.17e+01,+4.01e+01 2 -32 100 21 +2.07e+00,+3.84e+00,+6.69e+00,+7.99e+00 2 -32 101 21 +4.61e-01,+5.32e-01,+2.00e+00,+2.12e+00 2 -32 102 21 +4.80e-01,-9.35e-02,+4.55e-01,+6.68e-01 2 -32 103 21 -1.08e+00,-2.89e+00,+6.76e+00,+7.43e+00 2 -32 104 2 -5.26e+00,-2.37e+01,+4.67e+01,+5.26e+01 2 -32 O: 1 321 92 +2.63e+00,+1.44e+00,+9.43e+01,+1.11e+02 2 -33 GenVertex: -33 ID: 0 (X,cT):0 I: 1 321 92 +2.63e+00,+1.44e+00,+9.43e+01,+1.11e+02 2 -33 O:14 322 -311 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 2 -152 323 323 +4.15e+00,+1.53e+01,+1.94e+01,+2.50e+01 2 -153 324 111 +2.37e-01,+1.23e+00,+3.40e+00,+3.63e+00 2 -154 325 -321 +1.02e+00,+2.00e+00,+2.51e+00,+3.40e+00 1 326 321 +1.31e-01,+2.90e-01,+7.60e-01,+9.60e-01 1 327 223 +6.45e-01,+5.98e-01,+2.79e+00,+3.02e+00 2 -155 328 -213 -5.74e-01,-4.18e-01,+1.17e+00,+1.54e+00 2 -156 329 -311 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 2 -157 330 313 -1.54e-01,-5.69e-01,+2.78e+00,+2.98e+00 2 -158 331 211 -5.09e-01,-8.23e-01,+8.70e-01,+1.31e+00 1 332 -211 -2.07e-01,-4.09e+00,+8.09e+00,+9.07e+00 1 333 -2112 -7.35e-01,-2.39e+00,+5.25e+00,+5.89e+00 1 334 223 -4.42e-01,-3.12e+00,+6.81e+00,+7.55e+00 2 -159 335 2212 -3.11e+00,-1.27e+01,+2.51e+01,+2.83e+01 1 GenVertex: -34 ID: 0 (X,cT):0 I: 2 105 1 +1.03e+00,-8.55e-02,+5.10e+01,+5.10e+01 2 -34 106 -1 -1.03e+00,+8.55e-02,-1.56e-01,+1.05e+00 2 -34 O: 1 336 92 +0.00e+00,+0.00e+00,+5.08e+01,+5.21e+01 2 -35 GenVertex: -35 ID: 0 (X,cT):0 I: 1 336 92 +0.00e+00,+0.00e+00,+5.08e+01,+5.21e+01 2 -35 O: 5 337 -211 +9.05e-01,+1.23e-01,+3.72e+01,+3.72e+01 1 338 321 +1.30e-01,+2.37e-01,+9.06e+00,+9.07e+00 1 339 -313 +2.23e-01,-3.92e-01,+3.24e+00,+3.39e+00 2 -160 340 -211 -5.56e-01,-3.09e-01,+6.93e-01,+9.51e-01 1 341 213 -7.02e-01,+3.41e-01,+6.17e-01,+1.39e+00 2 -161 GenVertex: -36 ID: 0 (X,cT):0 I:12 121 21 +9.48e-01,+2.64e+00,-2.58e+02,+2.58e+02 2 -36 122 21 +5.52e-01,+6.40e-01,-1.87e+02,+1.87e+02 2 -36 123 21 +2.87e-01,+6.69e-01,-1.77e+02,+1.77e+02 2 -36 124 21 -6.17e-01,+2.22e+00,-6.64e+02,+6.64e+02 2 -36 125 21 +4.19e-01,-1.01e+00,-2.68e+02,+2.68e+02 2 -36 126 21 -9.82e-01,-9.83e-01,-1.20e+01,+1.21e+01 2 -36 127 21 -7.17e-01,-4.25e-01,-1.14e+01,+1.15e+01 2 -36 128 21 -1.10e+00,-2.56e-01,-8.42e+00,+8.50e+00 2 -36 129 21 -4.79e-01,-1.12e+00,-2.60e+00,+2.87e+00 2 -36 130 21 +1.00e-01,-3.07e-01,-8.77e-01,+9.34e-01 2 -36 131 21 -2.87e-01,-6.69e-01,-8.89e-01,+1.15e+00 2 -36 132 21 -9.48e-01,-2.64e+00,-5.08e+00,+5.81e+00 2 -36 O: 1 342 92 -2.82e+00,-1.24e+00,-1.59e+03,+1.60e+03 2 -37 GenVertex: -37 ID: 0 (X,cT):0 I: 1 342 92 -2.82e+00,-1.24e+00,-1.59e+03,+1.60e+03 2 -37 O:20 343 323 -3.56e-01,+1.54e-01,-4.40e+01,+4.41e+01 2 -162 344 3312 +1.93e-01,+1.13e+00,-7.54e+01,+7.54e+01 2 -163 345 -3112 +3.25e-01,+3.05e-02,-5.56e+01,+5.56e+01 2 -164 346 313 +1.81e-01,+1.27e-01,-1.52e+02,+1.52e+02 2 -165 347 3122 +1.78e-01,+1.80e+00,-2.11e+02,+2.11e+02 2 -166 348 -2212 +1.50e-01,+8.62e-01,-2.57e+02,+2.57e+02 1 349 211 +4.61e-01,+8.56e-01,-2.11e+02,+2.11e+02 1 350 113 +3.21e-01,+1.00e-01,-2.82e+02,+2.82e+02 2 -167 351 313 -6.62e-02,+3.82e-01,-1.53e+02,+1.53e+02 2 -168 352 -313 -1.95e-01,-7.59e-01,-9.20e+01,+9.20e+01 2 -169 353 -213 -9.56e-01,-5.98e-01,-1.82e+01,+1.82e+01 2 -170 354 211 -1.17e+00,-2.57e-01,-9.07e+00,+9.15e+00 1 355 113 +8.60e-04,-9.71e-01,-6.38e+00,+6.50e+00 2 -171 356 -213 -7.28e-01,-1.83e+00,-5.39e+00,+5.81e+00 2 -172 357 321 -3.12e-01,-3.34e-01,-1.55e+00,+1.69e+00 1 358 -323 -9.54e-01,-6.81e-01,-3.54e+00,+3.85e+00 2 -173 359 213 +2.75e-01,-3.52e-01,-5.09e+00,+5.16e+00 2 -174 360 223 -2.27e-01,+3.89e-02,-4.86e+00,+4.93e+00 2 -175 361 111 +9.80e-02,-6.51e-01,-6.55e+00,+6.59e+00 2 -176 362 -211 -3.97e-02,-2.85e-01,-2.40e-01,+4.00e-01 1 GenVertex: -38 ID: 0 (X,cT):0 I:15 133 21 +1.69e+00,-2.11e+00,+5.72e+01,+5.73e+01 2 -38 134 21 +4.80e-01,-8.43e-01,+2.89e+01,+2.89e+01 2 -38 135 21 +1.07e+00,-2.35e-01,+5.27e+01,+5.27e+01 2 -38 136 21 +6.19e-01,-7.60e-01,+6.51e+01,+6.51e+01 2 -38 137 21 +1.52e+00,-3.02e-01,+9.95e+01,+9.96e+01 2 -38 138 21 +4.79e-01,+1.12e+00,+4.35e+01,+4.36e+01 2 -38 139 21 +4.87e-01,+1.64e+00,+1.81e+01,+1.82e+01 2 -38 140 21 +1.04e+00,+6.03e-01,+1.09e+01,+1.09e+01 2 -38 141 21 +5.59e-02,+3.64e-01,-2.57e-01,+4.49e-01 2 -38 142 21 -1.69e+00,+2.11e+00,-2.31e+00,+3.56e+00 2 -38 143 21 -5.15e-01,+4.90e-02,-6.10e-01,+8.00e-01 2 -38 144 21 -1.78e+00,+1.36e+00,-5.33e+00,+5.78e+00 2 -38 145 21 -4.80e-01,+8.43e-01,-2.69e+00,+2.86e+00 2 -38 146 21 -7.68e-01,+1.81e+00,-5.69e+00,+6.02e+00 2 -38 147 21 +1.15e+00,-7.00e-01,+1.68e+01,+1.69e+01 2 -38 O: 1 363 92 +3.35e+00,+4.94e+00,+3.76e+02,+4.13e+02 2 -39 GenVertex: -39 ID: 0 (X,cT):0 I: 1 363 92 +3.35e+00,+4.94e+00,+3.76e+02,+4.13e+02 2 -39 O:26 364 331 +1.50e-01,-7.24e-01,+1.85e+00,+2.21e+00 2 -177 365 -213 +5.38e-01,-3.87e-01,+1.13e+01,+1.13e+01 2 -178 366 213 +1.14e+00,-8.39e-01,+3.72e+01,+3.72e+01 2 -179 367 -211 -1.89e-02,+1.17e-01,+2.41e+00,+2.42e+00 1 368 113 +5.80e-01,-5.07e-01,+4.90e+01,+4.90e+01 2 -180 369 213 +1.41e+00,-1.69e+00,+6.99e+01,+7.00e+01 2 -181 370 113 +7.98e-01,-3.28e-01,+4.63e+01,+4.63e+01 2 -182 371 311 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 2 -183 372 333 +7.88e-01,-1.35e-01,+8.26e+01,+8.26e+01 2 -184 373 -311 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -185 374 -213 +1.71e-01,+1.06e+00,+2.95e+01,+2.95e+01 2 -186 375 113 +3.21e-01,-4.01e-01,+6.30e+00,+6.35e+00 2 -187 376 223 +7.41e-01,+1.31e+00,+1.59e+01,+1.59e+01 2 -188 377 213 +5.16e-01,+3.01e-01,+1.29e+00,+1.54e+00 2 -189 378 -211 -5.64e-01,+3.80e-01,+8.43e-01,+1.09e+00 1 379 213 -2.56e-01,+6.07e-01,-6.71e-01,+1.20e+00 2 -190 380 113 +1.27e-01,+4.85e-01,-4.72e-01,+9.84e-01 2 -191 381 223 -1.71e+00,+1.18e+00,-2.61e+00,+3.43e+00 2 -192 382 313 -1.23e+00,+1.01e+00,-3.51e+00,+3.96e+00 2 -193 383 -313 -6.29e-01,+4.19e-01,-1.97e+00,+2.30e+00 2 -194 384 221 -7.02e-02,-6.45e-03,-9.32e-01,+1.08e+00 2 -195 385 111 -2.89e-01,+1.47e+00,-2.61e+00,+3.01e+00 2 -196 386 111 -5.37e-01,+3.07e-01,-1.09e+00,+1.26e+00 2 -197 387 223 +2.28e-01,+3.89e-01,-1.03e-01,+9.08e-01 2 -198 388 -211 -3.32e-01,+2.86e-01,+1.14e-01,+4.74e-01 1 389 213 +9.33e-02,+2.48e-01,-1.45e+00,+1.54e+00 2 -199 GenVertex: -40 ID: 0 (X,cT):0 I: 7 148 21 -5.25e-01,+6.81e-01,-4.06e+01,+4.06e+01 2 -40 149 21 -2.86e-01,+7.12e-01,-1.53e+01,+1.54e+01 2 -40 150 21 +5.25e-01,-6.81e-01,-7.52e+00,+7.57e+00 2 -40 151 21 +5.12e-01,-1.79e-01,-8.96e+00,+8.98e+00 2 -40 152 21 -1.38e-01,-4.86e-01,-9.49e+00,+9.50e+00 2 -40 153 21 -5.59e-02,-3.64e-01,-5.56e+00,+5.57e+00 2 -40 154 21 +2.86e-01,-7.12e-01,-1.16e+01,+1.16e+01 2 -40 O: 1 390 92 +3.19e-01,-1.03e+00,-9.90e+01,+9.91e+01 2 -41 GenVertex: -41 ID: 0 (X,cT):0 I: 1 390 92 +3.19e-01,-1.03e+00,-9.90e+01,+9.91e+01 2 -41 O: 5 391 211 -1.74e-01,+3.56e-01,-3.27e+01,+3.27e+01 1 392 -2112 +2.75e-01,-7.82e-02,-1.39e+01,+1.40e+01 1 393 -211 -7.58e-02,+3.06e-01,-5.07e+00,+5.08e+00 1 394 2212 +7.14e-01,-1.67e+00,-2.27e+01,+2.28e+01 1 395 -211 -4.20e-01,+5.38e-02,-2.46e+01,+2.46e+01 1 GenVertex: -42 ID: 0 (X,cT):0 I: 1 156 -513 -1.28e+00,+1.58e+01,+4.81e+01,+5.09e+01 2 -42 O: 2 396 -511 -1.22e+00,+1.57e+01,+4.76e+01,+5.04e+01 2 -200 397 22 -5.75e-02,+1.72e-01,+5.26e-01,+5.56e-01 1 GenVertex: -43 ID: 0 (X,cT):0 I:15 157 21 -1.81e+00,-2.89e+00,+1.66e+01,+1.69e+01 2 -43 158 21 -9.15e-01,-1.42e+00,+2.38e+00,+2.92e+00 2 -43 159 21 +1.81e+00,+2.89e+00,+1.53e+00,+3.74e+00 2 -43 160 21 +9.82e-01,+9.83e-01,+7.09e-01,+1.56e+00 2 -43 161 21 +1.34e+00,+2.58e+00,+1.32e+00,+3.20e+00 2 -43 162 21 +1.38e-01,+4.86e-01,+3.67e-01,+6.24e-01 2 -43 163 21 -1.00e-01,+3.07e-01,+4.23e-01,+5.33e-01 2 -43 164 21 -7.23e-02,+8.95e-01,+2.72e+00,+2.88e+00 2 -43 165 21 -9.18e-01,+2.42e+00,+4.65e+00,+5.32e+00 2 -43 166 21 -6.97e-01,+6.00e-01,+1.81e+00,+2.03e+00 2 -43 167 21 -1.74e+00,+1.13e+00,+8.51e+00,+8.76e+00 2 -43 168 21 -1.18e+00,-2.21e-01,+5.00e+00,+5.14e+00 2 -43 169 21 -5.12e-01,+1.79e-01,+2.34e+00,+2.41e+00 2 -43 170 21 -1.52e+00,+3.02e-01,+5.49e+00,+5.71e+00 2 -43 171 21 -2.55e+00,-2.31e-01,+5.29e+00,+5.87e+00 2 -43 O: 1 398 92 -7.74e+00,+8.01e+00,+5.91e+01,+6.76e+01 2 -44 GenVertex: -44 ID: 0 (X,cT):0 I: 1 398 92 -7.74e+00,+8.01e+00,+5.91e+01,+6.76e+01 2 -44 O:18 399 333 +8.18e-01,+5.20e-01,+9.12e-01,+1.68e+00 2 -201 400 -311 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 2 -202 401 223 +4.99e-01,+1.27e+00,+5.22e-01,+1.67e+00 2 -203 402 -213 +2.13e-01,+8.72e-01,+8.27e-01,+1.37e+00 2 -204 403 223 +7.28e-01,+1.30e+00,+1.53e+00,+2.27e+00 2 -205 404 2224 +5.22e-01,+1.37e+00,+2.42e+00,+3.06e+00 2 -206 405 223 -2.53e-01,+1.28e+00,+2.00e+00,+2.51e+00 2 -207 406 -2212 +3.42e-01,+1.60e+00,+1.20e+00,+2.24e+00 1 407 -211 -5.48e-01,+6.70e-01,+2.61e+00,+2.76e+00 1 408 2114 -2.21e+00,+9.88e-01,+8.99e+00,+9.40e+00 2 -208 409 213 -1.20e+00,+5.02e-01,+4.41e+00,+4.67e+00 2 -209 410 -2114 -3.70e+00,+9.29e-01,+1.30e+01,+1.36e+01 2 -210 411 -211 -9.14e-01,-1.46e+00,+8.48e+00,+8.66e+00 1 412 221 -6.28e-01,-4.17e-01,+1.39e+00,+1.67e+00 2 -211 413 223 -7.07e-01,-1.43e+00,+4.89e+00,+5.20e+00 2 -212 414 211 -9.64e-01,+7.37e-02,+4.24e+00,+4.36e+00 1 415 -211 -7.96e-02,-2.43e-01,+1.21e-01,+3.16e-01 1 416 321 -7.83e-02,-3.98e-01,+7.59e-01,+9.92e-01 1 GenVertex: -45 ID: 0 (X,cT):0 I: 1 175 -5114 +2.97e+00,+3.13e+00,+1.50e+01,+1.67e+01 2 -45 O: 2 417 -5122 +2.88e+00,+2.97e+00,+1.43e+01,+1.60e+01 2 -213 418 211 +9.11e-02,+1.55e-01,+6.68e-01,+7.06e-01 1 GenVertex: -46 ID: 0 (X,cT):0 I: 1 176 1114 +6.25e-01,+7.46e-01,+7.57e-01,+1.75e+00 2 -46 O: 2 419 2112 +7.00e-01,+6.74e-01,+7.98e-01,+1.57e+00 1 420 -211 -7.48e-02,+7.23e-02,-4.13e-02,+1.79e-01 1 GenVertex: -47 ID: 0 (X,cT):0 I: 1 177 223 -6.85e-02,-3.39e-01,-1.74e+00,+1.93e+00 2 -47 O: 3 421 211 +3.05e-03,-7.66e-03,-1.12e+00,+1.13e+00 1 422 -211 -6.63e-02,-3.31e-02,-3.45e-01,+3.79e-01 1 423 111 -5.20e-03,-2.98e-01,-2.69e-01,+4.24e-01 2 -214 GenVertex: -48 ID: 0 (X,cT):0 I: 1 178 113 -6.77e-02,-1.28e+00,-3.82e+00,+4.10e+00 2 -48 O: 2 424 -211 -2.54e-01,-1.83e-01,-1.33e+00,+1.37e+00 1 425 211 +1.86e-01,-1.09e+00,-2.49e+00,+2.73e+00 1 GenVertex: -49 ID: 0 (X,cT):0 I: 1 179 -313 +2.01e-01,-6.42e-01,-7.05e+00,+7.13e+00 2 -49 O: 2 426 -311 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 2 -215 427 111 -6.92e-02,-4.91e-01,-2.96e+00,+3.00e+00 2 -216 GenVertex: -50 ID: 0 (X,cT):0 I: 1 180 323 +1.18e+00,-1.70e+00,-1.21e+01,+1.24e+01 2 -50 O: 2 428 311 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -217 429 211 +8.89e-01,-6.87e-01,-5.63e+00,+5.74e+00 1 GenVertex: -51 ID: 0 (X,cT):0 I: 1 181 -2214 +7.61e-01,-3.78e-01,-7.05e+00,+7.19e+00 2 -51 O: 2 430 -2112 +4.96e-01,-1.97e-01,-4.83e+00,+4.95e+00 1 431 -211 +2.65e-01,-1.80e-01,-2.22e+00,+2.25e+00 1 Vertex: -52 ID: 0 (X,cT)=+1.34e-04,-7.77e-05,-1.81e-03,+1.81e-03 I: 1 182 111 +4.48e-01,-2.60e-01,-6.04e+00,+6.07e+00 2 -52 O: 2 432 22 +2.92e-01,-9.68e-02,-3.73e+00,+3.75e+00 1 433 22 +1.56e-01,-1.63e-01,-2.31e+00,+2.32e+00 1 Vertex: -53 ID: 0 (X,cT)=+1.42e+02,-2.35e+01,-9.23e+02,+9.35e+02 I: 1 183 3122 +3.99e+00,-6.60e-01,-2.59e+01,+2.62e+01 2 -53 O: 2 434 2112 +3.42e+00,-4.75e-01,-2.17e+01,+2.20e+01 1 435 111 +5.77e-01,-1.85e-01,-4.18e+00,+4.23e+00 2 -218 GenVertex: -54 ID: 0 (X,cT):0 I: 1 184 323 +2.96e+00,-9.29e-01,-1.97e+01,+2.00e+01 2 -54 O: 2 436 321 +2.46e+00,-7.37e-01,-1.43e+01,+1.46e+01 1 437 111 +4.99e-01,-1.92e-01,-5.37e+00,+5.40e+00 2 -219 GenVertex: -55 ID: 0 (X,cT):0 I: 1 185 -213 +1.15e+00,+1.85e-01,-7.15e+00,+7.28e+00 2 -55 O: 2 438 -211 +7.38e-01,+3.77e-01,-5.50e+00,+5.57e+00 1 439 111 +4.16e-01,-1.92e-01,-1.65e+00,+1.72e+00 2 -220 GenVertex: -56 ID: 0 (X,cT):0 I: 1 187 -2224 +1.73e+00,-1.28e-01,-4.01e+01,+4.02e+01 2 -56 O: 2 440 -2212 +1.17e+00,+9.29e-02,-2.62e+01,+2.62e+01 1 441 -211 +5.63e-01,-2.21e-01,-1.40e+01,+1.40e+01 1 GenVertex: -57 ID: 0 (X,cT):0 I: 1 188 213 +6.91e-01,-5.69e-01,-1.92e+01,+1.93e+01 2 -57 O: 2 442 211 -5.25e-02,+1.22e-01,-2.97e+00,+2.97e+00 1 443 111 +7.44e-01,-6.91e-01,-1.63e+01,+1.63e+01 2 -221 GenVertex: -58 ID: 0 (X,cT):0 I: 1 189 2114 +7.32e-01,-1.04e-02,-4.16e+01,+4.16e+01 2 -58 O: 2 444 2212 +8.34e-01,+9.03e-02,-3.59e+01,+3.59e+01 1 445 -211 -1.02e-01,-1.01e-01,-5.71e+00,+5.71e+00 1 GenVertex: -59 ID: 0 (X,cT):0 I: 1 190 223 +1.05e+00,-1.58e+00,-6.13e+01,+6.14e+01 2 -59 O: 3 446 211 +6.31e-01,-6.22e-01,-2.45e+01,+2.45e+01 1 447 -211 +2.72e-02,-6.12e-02,-5.55e+00,+5.56e+00 1 448 111 +3.87e-01,-9.01e-01,-3.13e+01,+3.13e+01 2 -222 GenVertex: -60 ID: 0 (X,cT):0 I: 1 192 113 +1.89e-01,-1.12e+00,-6.39e+01,+6.40e+01 2 -60 O: 2 449 -211 +9.17e-02,-8.32e-01,-2.20e+01,+2.20e+01 1 450 211 +9.71e-02,-2.93e-01,-4.20e+01,+4.20e+01 1 GenVertex: -61 ID: 0 (X,cT):0 I: 1 195 -213 +9.39e-01,-7.81e-01,-7.57e+01,+7.57e+01 2 -61 O: 2 451 -211 +4.33e-01,-7.16e-01,-5.20e+01,+5.20e+01 1 452 111 +5.06e-01,-6.51e-02,-2.37e+01,+2.37e+01 2 -223 GenVertex: -62 ID: 0 (X,cT):0 I: 1 197 -213 -1.57e-01,-1.15e+00,-7.89e+01,+7.90e+01 2 -62 O: 2 453 -211 -1.21e-01,-1.55e-01,-5.31e+00,+5.32e+00 1 454 111 -3.59e-02,-9.94e-01,-7.36e+01,+7.36e+01 2 -224 GenVertex: -63 ID: 0 (X,cT):0 I: 1 199 -213 -7.59e-01,-9.29e-01,-8.85e+01,+8.85e+01 2 -63 O: 2 455 -211 -6.33e-01,-8.15e-01,-8.24e+01,+8.24e+01 1 456 111 -1.26e-01,-1.13e-01,-6.14e+00,+6.15e+00 2 -225 GenVertex: -64 ID: 0 (X,cT):0 I: 1 202 331 -2.38e+00,-1.40e-01,-1.58e+02,+1.58e+02 2 -64 O: 2 457 22 -1.02e+00,-2.60e-01,-6.72e+01,+6.72e+01 1 458 113 -1.36e+00,+1.20e-01,-9.07e+01,+9.07e+01 2 -226 GenVertex: -65 ID: 0 (X,cT):0 I: 1 203 313 -9.05e-01,+1.29e+00,-8.10e+01,+8.10e+01 2 -65 O: 2 459 311 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -227 460 111 -6.21e-01,+9.95e-01,-5.43e+01,+5.43e+01 2 -228 GenVertex: -66 ID: 0 (X,cT):0 I: 1 204 223 -6.04e-01,+2.55e-02,-6.38e+01,+6.38e+01 2 -66 O: 3 461 -211 -2.08e-01,-2.54e-03,-7.18e+00,+7.19e+00 1 462 211 -2.25e-01,+1.98e-01,-3.50e+01,+3.50e+01 1 463 111 -1.72e-01,-1.70e-01,-2.16e+01,+2.16e+01 2 -229 Vertex: -67 ID: 0 (X,cT)=-4.16e-04,+4.87e-04,-2.96e-02,+2.96e-02 I: 1 205 111 -1.63e+00,+1.91e+00,-1.16e+02,+1.16e+02 2 -67 O: 2 464 22 -4.85e-01,+4.78e-01,-3.07e+01,+3.07e+01 1 465 22 -1.15e+00,+1.43e+00,-8.52e+01,+8.53e+01 1 GenVertex: -68 ID: 0 (X,cT):0 I: 1 206 213 -6.82e-01,+9.06e-01,-1.09e+02,+1.09e+02 2 -68 O: 2 466 211 -5.66e-02,+2.04e-01,-9.14e+00,+9.14e+00 1 467 111 -6.25e-01,+7.02e-01,-9.98e+01,+9.98e+01 2 -230 Vertex: -69 ID: 0 (X,cT)=-5.45e-05,+2.36e-04,-1.35e-02,+1.35e-02 I: 1 207 111 -7.18e-01,+3.10e+00,-1.77e+02,+1.77e+02 2 -69 O: 2 468 22 -6.34e-01,+2.67e+00,-1.50e+02,+1.50e+02 1 469 22 -8.44e-02,+4.33e-01,-2.71e+01,+2.71e+01 1 Vertex: -70 ID: 0 (X,cT)=-5.73e-05,+3.51e-05,-2.76e-03,+2.76e-03 I: 1 208 111 -4.76e-01,+2.92e-01,-2.30e+01,+2.30e+01 2 -70 O: 2 470 22 -4.46e-01,+2.34e-01,-2.12e+01,+2.12e+01 1 471 22 -3.01e-02,+5.80e-02,-1.78e+00,+1.78e+00 1 GenVertex: -71 ID: 0 (X,cT):0 I: 1 212 113 +1.97e-01,+1.12e+00,-2.41e+01,+2.41e+01 2 -71 O: 2 472 -211 -7.59e-02,+7.61e-01,-1.19e+01,+1.20e+01 1 473 211 +2.73e-01,+3.54e-01,-1.21e+01,+1.21e+01 1 GenVertex: -72 ID: 0 (X,cT):0 I: 1 213 -213 +1.65e+00,+3.01e+00,-4.51e+01,+4.53e+01 2 -72 O: 2 474 -211 +1.02e-01,+4.79e-01,-4.04e+00,+4.07e+00 1 475 111 +1.55e+00,+2.53e+00,-4.11e+01,+4.12e+01 2 -231 GenVertex: -73 ID: 0 (X,cT):0 I: 1 214 -1114 +8.75e-02,+8.50e-01,-1.67e+01,+1.68e+01 2 -73 O: 2 476 -2112 -1.13e-01,+7.65e-01,-1.49e+01,+1.50e+01 1 477 211 +2.00e-01,+8.54e-02,-1.81e+00,+1.83e+00 1 GenVertex: -74 ID: 0 (X,cT):0 I: 1 215 1114 +1.62e+00,+3.63e+00,-4.43e+01,+4.45e+01 2 -74 O: 2 478 2112 +9.24e-01,+1.98e+00,-2.55e+01,+2.56e+01 1 479 -211 +6.97e-01,+1.65e+00,-1.88e+01,+1.89e+01 1 GenVertex: -75 ID: 0 (X,cT):0 I: 1 216 213 +9.92e-01,+1.25e+00,-8.87e+00,+9.05e+00 2 -75 O: 2 480 211 +4.61e-01,+1.11e+00,-6.98e+00,+7.09e+00 1 481 111 +5.31e-01,+1.46e-01,-1.88e+00,+1.97e+00 2 -232 GenVertex: -76 ID: 0 (X,cT):0 I: 1 218 -313 -1.59e-02,-2.78e-01,-4.06e+00,+4.17e+00 2 -76 O: 2 482 -321 -2.46e-01,-3.39e-01,-2.72e+00,+2.80e+00 1 483 211 +2.30e-01,+6.05e-02,-1.34e+00,+1.37e+00 1 GenVertex: -77 ID: 0 (X,cT):0 I: 1 219 313 +2.44e+00,+2.14e+00,-4.58e+00,+5.69e+00 2 -77 O: 2 484 321 +2.39e+00,+2.02e+00,-4.21e+00,+5.27e+00 1 485 -211 +4.17e-02,+1.22e-01,-3.73e-01,+4.18e-01 1 GenVertex: -78 ID: 0 (X,cT):0 I: 1 220 223 +1.56e+00,+2.32e-01,-1.40e-01,+1.77e+00 2 -78 O: 3 486 -211 +4.53e-01,+2.27e-01,+1.28e-01,+5.41e-01 1 487 211 +9.31e-01,-9.95e-02,-1.71e-01,+9.62e-01 1 488 111 +1.78e-01,+1.05e-01,-9.65e-02,+2.65e-01 2 -233 GenVertex: -79 ID: 0 (X,cT):0 I: 1 221 213 +2.22e+00,+8.42e-01,-1.50e+00,+3.04e+00 2 -79 O: 2 489 211 -1.88e-02,+2.55e-01,-3.28e-01,+4.39e-01 1 490 111 +2.24e+00,+5.88e-01,-1.17e+00,+2.60e+00 2 -234 GenVertex: -80 ID: 0 (X,cT):0 I: 1 222 -213 +2.08e+00,+7.28e-01,-8.57e-01,+2.46e+00 2 -80 O: 2 491 -211 +1.11e+00,+7.20e-01,-4.49e-01,+1.41e+00 1 492 111 +9.62e-01,+7.53e-03,-4.08e-01,+1.05e+00 2 -235 Vertex: -81 ID: 0 (X,cT)=+4.71e-05,+3.90e-05,-1.48e-04,+1.64e-04 I: 1 223 111 +1.84e-01,+1.52e-01,-5.80e-01,+6.42e-01 2 -81 O: 2 493 22 +6.13e-02,+7.01e-02,-8.86e-02,+1.29e-01 1 494 22 +1.23e-01,+8.23e-02,-4.91e-01,+5.13e-01 1 GenVertex: -82 ID: 0 (X,cT):0 I: 1 224 213 +3.55e+00,+5.20e-01,-9.76e-01,+3.81e+00 2 -82 O: 2 495 211 +1.43e+00,-1.15e-01,-1.61e-01,+1.45e+00 1 496 111 +2.12e+00,+6.35e-01,-8.15e-01,+2.36e+00 2 -236 GenVertex: -83 ID: 0 (X,cT):0 I: 1 225 -3224 +1.87e+00,+5.94e-01,+1.41e+00,+2.76e+00 2 -83 O: 2 497 -3122 +1.69e+00,+5.99e-01,+1.41e+00,+2.54e+00 2 -237 498 -211 +1.75e-01,-5.00e-03,-1.57e-03,+2.24e-01 1 GenVertex: -84 ID: 0 (X,cT):0 I: 1 227 3114 +1.60e+00,+2.09e-01,+1.82e+00,+2.80e+00 2 -84 O: 2 499 3122 +1.56e+00,+1.41e-01,+1.49e+00,+2.44e+00 2 -238 500 -211 +4.02e-02,+6.85e-02,+3.26e-01,+3.63e-01 1 GenVertex: -85 ID: 0 (X,cT):0 I: 1 228 221 -9.46e-02,+5.18e-02,+7.92e-01,+9.69e-01 2 -85 O: 3 501 111 -1.36e-01,-2.12e-02,+3.53e-01,+4.02e-01 2 -239 502 111 -7.31e-02,-1.45e-03,+1.22e-01,+1.96e-01 2 -240 503 111 +1.14e-01,+7.44e-02,+3.18e-01,+3.71e-01 2 -241 GenVertex: -86 ID: 0 (X,cT):0 I: 1 230 223 +7.63e-01,+6.36e-01,+1.60e+00,+2.04e+00 2 -86 O: 2 504 22 -1.11e-01,+2.55e-01,+2.06e-01,+3.46e-01 1 505 111 +8.74e-01,+3.81e-01,+1.39e+00,+1.69e+00 2 -242 GenVertex: -87 ID: 0 (X,cT):0 I: 1 231 -213 +1.93e+00,+1.18e+00,+4.85e+00,+5.41e+00 2 -87 O: 2 506 -211 +1.33e+00,+9.17e-01,+2.61e+00,+3.07e+00 1 507 111 +5.98e-01,+2.64e-01,+2.24e+00,+2.34e+00 2 -243 GenVertex: -88 ID: 0 (X,cT):0 I: 1 233 221 +2.30e+00,+1.13e+00,+4.74e+00,+5.42e+00 2 -88 O: 2 508 22 +2.18e-01,-5.08e-02,+3.35e-01,+4.03e-01 1 509 22 +2.08e+00,+1.18e+00,+4.41e+00,+5.01e+00 1 GenVertex: -89 ID: 0 (X,cT):0 I: 1 235 311 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -89 O: 1 510 310 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -244 GenVertex: -90 ID: 0 (X,cT):0 I: 1 239 -213 +4.26e-01,+3.32e-01,+2.61e-01,+9.44e-01 2 -90 O: 2 511 -211 +3.12e-01,-7.56e-02,-1.09e-01,+3.66e-01 1 512 111 +1.15e-01,+4.08e-01,+3.69e-01,+5.78e-01 2 -245 GenVertex: -91 ID: 0 (X,cT):0 I: 1 240 213 +1.97e+00,+3.54e+00,+6.95e-01,+4.18e+00 2 -91 O: 2 513 211 +4.83e-01,+5.52e-01,+3.39e-01,+8.20e-01 1 514 111 +1.49e+00,+2.99e+00,+3.56e-01,+3.36e+00 2 -246 GenVertex: -92 ID: 0 (X,cT):0 I: 1 242 -311 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 2 -92 O: 1 515 130 +1.24e+00,+1.50e+00,+7.83e-01,+2.16e+00 1 GenVertex: -93 ID: 0 (X,cT):0 I: 1 243 221 +5.60e-01,+2.26e+00,-9.49e-01,+2.57e+00 2 -93 O: 2 516 22 +6.34e-02,+5.85e-01,-7.24e-03,+5.89e-01 1 517 22 +4.97e-01,+1.67e+00,-9.42e-01,+1.98e+00 1 GenVertex: -94 ID: 0 (X,cT):0 I: 1 244 331 -1.78e-01,+3.39e+00,-1.29e-01,+3.53e+00 2 -94 O: 3 518 211 +6.75e-02,+6.97e-01,-7.57e-02,+7.18e-01 1 519 -211 +9.73e-03,+9.04e-01,+8.27e-02,+9.19e-01 1 520 221 -2.55e-01,+1.79e+00,-1.36e-01,+1.90e+00 2 -247 GenVertex: -95 ID: 0 (X,cT):0 I: 1 245 323 -1.46e+00,+1.76e+00,+7.60e-02,+2.46e+00 2 -95 O: 2 521 311 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 2 -248 522 211 -9.96e-01,+1.16e+00,+1.91e-01,+1.55e+00 1 GenVertex: -96 ID: 0 (X,cT):0 I: 1 246 113 -7.13e-02,+1.10e+00,+2.52e-01,+1.37e+00 2 -96 O: 2 523 -211 +1.46e-01,+1.69e-01,+2.96e-01,+3.96e-01 1 524 211 -2.17e-01,+9.35e-01,-4.44e-02,+9.71e-01 1 GenVertex: -97 ID: 0 (X,cT):0 I: 1 248 313 -3.34e+00,+2.53e+00,+4.36e-01,+4.30e+00 2 -97 O: 2 525 321 -2.79e+00,+1.93e+00,+1.41e-01,+3.43e+00 1 526 -211 -5.51e-01,+5.98e-01,+2.94e-01,+8.76e-01 1 GenVertex: -98 ID: 0 (X,cT):0 I: 1 250 113 -1.73e+00,+2.43e-01,+3.22e-01,+1.90e+00 2 -98 O: 2 527 -211 -1.68e+00,+2.03e-01,+3.54e-01,+1.74e+00 1 528 211 -5.17e-02,+4.04e-02,-3.26e-02,+1.58e-01 1 Vertex: -99 ID: 0 (X,cT)=-8.46e-04,+3.47e-04,+2.97e-04,+9.66e-04 I: 1 251 111 -1.23e+00,+5.03e-01,+4.32e-01,+1.40e+00 2 -99 O: 2 529 22 -1.05e-01,+1.98e-02,+6.74e-02,+1.27e-01 1 530 22 -1.12e+00,+4.83e-01,+3.64e-01,+1.28e+00 1 GenVertex: -100 ID: 0 (X,cT):0 I: 1 252 -213 -1.37e+00,+4.96e-01,-6.17e-01,+1.79e+00 2 -100 O: 2 531 -211 -5.34e-02,-1.48e-01,-4.71e-02,+2.16e-01 1 532 111 -1.31e+00,+6.44e-01,-5.69e-01,+1.58e+00 2 -249 GenVertex: -101 ID: 0 (X,cT):0 I: 1 253 -313 -4.14e+00,-9.70e-01,-1.83e-01,+4.34e+00 2 -101 O: 2 533 -311 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 2 -250 534 111 -1.17e+00,-3.29e-01,+1.98e-01,+1.24e+00 2 -251 GenVertex: -102 ID: 0 (X,cT):0 I: 1 254 323 -1.82e+00,-2.06e+00,+3.82e-01,+2.98e+00 2 -102 O: 2 535 311 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 2 -252 536 211 -8.94e-01,-1.48e+00,+3.81e-01,+1.78e+00 1 GenVertex: -103 ID: 0 (X,cT):0 I: 1 255 223 -1.77e+00,-1.17e+00,-1.29e+00,+2.61e+00 2 -103 O: 3 537 211 -5.39e-01,-5.28e-01,-4.68e-01,+8.99e-01 1 538 -211 -1.14e+00,-5.86e-01,-6.03e-01,+1.43e+00 1 539 111 -8.87e-02,-5.53e-02,-2.23e-01,+2.81e-01 2 -253 GenVertex: -104 ID: 0 (X,cT):0 I: 1 256 221 -1.62e+00,-2.23e+00,-7.74e-01,+2.92e+00 2 -104 O: 3 540 -211 -9.36e-01,-1.13e+00,-4.27e-01,+1.54e+00 1 541 211 -4.22e-01,-7.92e-01,-2.63e-01,+9.46e-01 1 542 111 -2.65e-01,-3.05e-01,-8.44e-02,+4.34e-01 2 -254 GenVertex: -105 ID: 0 (X,cT):0 I: 1 257 -213 -9.37e-01,-1.60e+00,-2.97e-02,+2.02e+00 2 -105 O: 2 543 -211 -4.16e-01,-1.55e-01,-1.17e-01,+4.80e-01 1 544 111 -5.21e-01,-1.44e+00,+8.75e-02,+1.54e+00 2 -255 GenVertex: -106 ID: 0 (X,cT):0 I: 1 258 -311 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -106 O: 1 545 310 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -256 GenVertex: -107 ID: 0 (X,cT):0 I: 1 259 313 +5.28e-01,-3.04e+00,-2.11e+00,+3.83e+00 2 -107 O: 2 546 311 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -257 547 111 -3.27e-02,-9.96e-01,-4.58e-01,+1.10e+00 2 -258 GenVertex: -108 ID: 0 (X,cT):0 I: 1 261 -213 -3.88e-01,-3.68e+00,-1.68e+00,+4.11e+00 2 -108 O: 2 548 -211 -3.82e-01,-1.96e+00,-6.74e-01,+2.11e+00 1 549 111 -6.33e-03,-1.72e+00,-1.00e+00,+2.00e+00 2 -259 GenVertex: -109 ID: 0 (X,cT):0 I: 1 263 221 +3.86e-01,-2.43e-01,-5.22e-01,+8.83e-01 2 -109 O: 2 550 22 +4.52e-01,+7.24e-03,-3.51e-01,+5.73e-01 1 551 22 -6.69e-02,-2.50e-01,-1.71e-01,+3.10e-01 1 GenVertex: -110 ID: 0 (X,cT):0 I: 1 264 213 +6.60e-01,+7.54e-03,+3.09e-01,+1.06e+00 2 -110 O: 2 552 211 +1.37e-01,+4.30e-02,-2.26e-01,+3.02e-01 1 553 111 +5.23e-01,-3.55e-02,+5.35e-01,+7.61e-01 2 -260 GenVertex: -111 ID: 0 (X,cT):0 I: 1 266 113 +1.88e+00,-2.26e+00,+3.80e+00,+4.88e+00 2 -111 O: 2 554 -211 +4.34e-01,-1.10e+00,+1.41e+00,+1.84e+00 1 555 211 +1.45e+00,-1.16e+00,+2.39e+00,+3.03e+00 1 GenVertex: -112 ID: 0 (X,cT):0 I: 1 268 -213 +1.75e+00,-1.09e+00,+4.84e+00,+5.30e+00 2 -112 O: 2 556 -211 +4.68e-01,-5.62e-01,+1.63e+00,+1.79e+00 1 557 111 +1.28e+00,-5.31e-01,+3.22e+00,+3.51e+00 2 -261 GenVertex: -113 ID: 0 (X,cT):0 I: 1 270 -213 +2.75e-01,-7.46e-01,+3.58e+00,+3.71e+00 2 -113 O: 2 558 -211 +2.35e-01,-2.89e-01,+9.58e-01,+1.04e+00 1 559 111 +3.99e-02,-4.57e-01,+2.63e+00,+2.67e+00 2 -262 GenVertex: -114 ID: 0 (X,cT):0 I: 1 272 -213 +5.49e-01,-8.59e-01,+4.94e+00,+5.10e+00 2 -114 O: 2 560 -211 +3.07e-01,-5.30e-01,+1.35e+00,+1.49e+00 1 561 111 +2.42e-01,-3.29e-01,+3.59e+00,+3.62e+00 2 -263 GenVertex: -115 ID: 0 (X,cT):0 I: 1 273 213 -1.23e-01,-9.83e-01,+1.02e+01,+1.03e+01 2 -115 O: 2 562 211 +2.69e-01,-3.93e-01,+2.88e+00,+2.93e+00 1 563 111 -3.91e-01,-5.91e-01,+7.32e+00,+7.35e+00 2 -264 GenVertex: -116 ID: 0 (X,cT):0 I: 1 275 -213 -8.17e-01,-4.40e-01,+6.33e+00,+6.43e+00 2 -116 O: 2 564 -211 -5.70e-01,-4.26e-04,+3.07e+00,+3.12e+00 1 565 111 -2.47e-01,-4.39e-01,+3.26e+00,+3.31e+00 2 -265 GenVertex: -117 ID: 0 (X,cT):0 I: 1 276 2214 -1.47e+00,-8.16e-01,+1.57e+01,+1.58e+01 2 -117 O: 2 566 2112 -1.44e+00,-6.33e-01,+1.36e+01,+1.38e+01 1 567 211 -3.42e-02,-1.83e-01,+2.04e+00,+2.06e+00 1 GenVertex: -118 ID: 0 (X,cT):0 I: 1 277 -2114 -1.63e+00,-2.92e-01,+1.75e+01,+1.77e+01 2 -118 O: 2 568 -2112 -1.32e+00,-2.89e-01,+1.63e+01,+1.64e+01 1 569 111 -3.11e-01,-2.39e-03,+1.19e+00,+1.24e+00 2 -266 GenVertex: -119 ID: 0 (X,cT):0 I: 1 278 2114 -2.08e+00,-5.72e-01,+1.79e+01,+1.80e+01 2 -119 O: 2 570 2212 -1.67e+00,-5.85e-01,+1.41e+01,+1.43e+01 1 571 -211 -4.05e-01,+1.24e-02,+3.72e+00,+3.74e+00 1 GenVertex: -120 ID: 0 (X,cT):0 I: 1 279 213 -1.31e+00,-2.14e-01,+1.54e+01,+1.55e+01 2 -120 O: 2 572 211 -8.83e-01,-4.65e-01,+1.09e+01,+1.09e+01 1 573 111 -4.27e-01,+2.51e-01,+4.52e+00,+4.55e+00 2 -267 GenVertex: -121 ID: 0 (X,cT):0 I: 1 280 -213 -4.14e+00,+3.06e-01,+4.39e+01,+4.41e+01 2 -121 O: 2 574 -211 -1.53e+00,+3.79e-01,+1.36e+01,+1.37e+01 1 575 111 -2.62e+00,-7.39e-02,+3.03e+01,+3.04e+01 2 -268 GenVertex: -122 ID: 0 (X,cT):0 I: 1 281 331 -1.14e+00,-1.65e-01,+2.04e+01,+2.04e+01 2 -122 O: 3 576 211 -2.91e-01,-2.10e-01,+4.42e+00,+4.44e+00 1 577 -211 -1.83e-01,-5.78e-02,+3.40e+00,+3.41e+00 1 578 221 -6.68e-01,+1.03e-01,+1.25e+01,+1.26e+01 2 -269 GenVertex: -123 ID: 0 (X,cT):0 I: 1 282 213 -3.10e+00,-7.17e-01,+6.54e+01,+6.55e+01 2 -123 O: 2 579 211 -3.29e-01,-2.20e-01,+1.21e+01,+1.21e+01 1 580 111 -2.77e+00,-4.97e-01,+5.33e+01,+5.34e+01 2 -270 GenVertex: -124 ID: 0 (X,cT):0 I: 1 284 223 -3.06e+00,-1.62e+00,+8.97e+01,+8.98e+01 2 -124 O: 3 581 -211 -7.82e-01,-6.51e-01,+3.10e+01,+3.10e+01 1 582 211 -1.37e+00,-6.38e-01,+3.60e+01,+3.61e+01 1 583 111 -9.11e-01,-3.32e-01,+2.27e+01,+2.27e+01 2 -271 GenVertex: -125 ID: 0 (X,cT):0 I: 1 285 213 -2.34e+00,-1.51e+00,+7.21e+01,+7.21e+01 2 -125 O: 2 584 211 -6.69e-02,-1.47e-01,+9.52e+00,+9.52e+00 1 585 111 -2.27e+00,-1.36e+00,+6.26e+01,+6.26e+01 2 -272 Vertex: -126 ID: 0 (X,cT)=+7.10e-05,-2.05e-05,+2.68e-03,+2.68e-03 I: 1 286 111 +2.41e-01,-6.95e-02,+9.09e+00,+9.09e+00 2 -126 O: 2 586 22 +2.37e-01,-3.61e-02,+6.79e+00,+6.80e+00 1 587 22 +4.40e-03,-3.34e-02,+2.29e+00,+2.29e+00 1 GenVertex: -127 ID: 0 (X,cT):0 I: 1 287 -213 -2.43e+00,-2.24e+00,+1.15e+02,+1.15e+02 2 -127 O: 2 588 -211 -1.12e+00,-6.92e-01,+3.67e+01,+3.67e+01 1 589 111 -1.31e+00,-1.55e+00,+7.85e+01,+7.85e+01 2 -273 GenVertex: -128 ID: 0 (X,cT):0 I: 1 288 -311 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -128 O: 1 590 310 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -274 GenVertex: -129 ID: 0 (X,cT):0 I: 1 289 323 -2.24e+00,-1.25e+00,+1.78e+02,+1.78e+02 2 -129 O: 2 591 311 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -275 592 211 -7.07e-01,-5.18e-01,+7.14e+01,+7.14e+01 1 GenVertex: -130 ID: 0 (X,cT):0 I: 1 290 -213 -2.82e-01,-1.33e+00,+1.30e+02,+1.30e+02 2 -130 O: 2 593 -211 -6.60e-02,-9.00e-01,+5.65e+01,+5.65e+01 1 594 111 -2.16e-01,-4.31e-01,+7.35e+01,+7.35e+01 2 -276 GenVertex: -131 ID: 0 (X,cT):0 I: 1 294 -323 -1.36e+00,-9.45e-01,+2.00e+02,+2.00e+02 2 -131 O: 2 595 -311 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -277 596 -211 -3.95e-01,+5.07e-02,+4.07e+01,+4.07e+01 1 GenVertex: -132 ID: 0 (X,cT):0 I: 1 295 -3224 -1.00e+00,+4.60e-01,+2.91e+02,+2.91e+02 2 -132 O: 2 597 -3122 -9.54e-01,+3.16e-01,+2.74e+02,+2.74e+02 2 -278 598 -211 -5.06e-02,+1.44e-01,+1.69e+01,+1.69e+01 1 Vertex: -133 ID: 0 (X,cT)=-6.43e-05,+2.79e-05,+6.42e-03,+6.42e-03 I: 1 296 111 -5.26e-01,+2.28e-01,+5.25e+01,+5.25e+01 2 -133 O: 2 599 22 -2.29e-02,+4.72e-02,+6.05e+00,+6.05e+00 1 600 22 -5.03e-01,+1.81e-01,+4.65e+01,+4.65e+01 1 GenVertex: -134 ID: 0 (X,cT):0 I: 1 297 2214 -1.35e+00,+1.56e+00,+2.21e+02,+2.21e+02 2 -134 O: 2 601 2112 -1.13e+00,+1.34e+00,+1.99e+02,+1.99e+02 1 602 211 -2.29e-01,+2.20e-01,+2.28e+01,+2.28e+01 1 Vertex: -135 ID: 0 (X,cT)=+5.70e-07,+4.65e-07,+4.84e-04,+4.84e-04 I: 1 298 111 +2.16e-01,+1.76e-01,+1.84e+02,+1.84e+02 2 -135 O: 2 603 22 +8.67e-02,+1.17e-01,+1.27e+02,+1.27e+02 1 604 22 +1.29e-01,+5.95e-02,+5.70e+01,+5.70e+01 1 GenVertex: -136 ID: 0 (X,cT):0 I: 1 299 223 -1.42e+00,+2.20e+00,+2.31e+02,+2.31e+02 2 -136 O: 3 605 211 -3.15e-01,+7.60e-01,+5.46e+01,+5.46e+01 1 606 -211 -8.89e-01,+9.70e-01,+1.22e+02,+1.22e+02 1 607 111 -2.17e-01,+4.70e-01,+5.44e+01,+5.44e+01 2 -279 GenVertex: -137 ID: 0 (X,cT):0 I: 1 301 311 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 2 -137 O: 1 608 130 -9.41e-03,+9.76e-02,+8.13e+01,+8.13e+01 1 GenVertex: -138 ID: 0 (X,cT):0 I: 1 302 3224 +1.84e+00,+1.04e+00,+5.97e+02,+5.97e+02 2 -138 O: 2 609 3122 +1.36e+00,+6.24e-01,+4.24e+02,+4.24e+02 2 -280 610 211 +4.86e-01,+4.18e-01,+1.73e+02,+1.73e+02 1 Vertex: -139 ID: 0 (X,cT)=+5.46e-05,-2.52e-04,+1.40e-01,+1.40e-01 I: 1 303 111 +1.87e-01,-8.63e-01,+4.77e+02,+4.77e+02 2 -139 O: 2 611 22 +1.51e-01,-5.29e-01,+2.66e+02,+2.66e+02 1 612 22 +3.59e-02,-3.34e-01,+2.11e+02,+2.11e+02 1 GenVertex: -140 ID: 0 (X,cT):0 I: 1 304 -213 +1.83e+00,-9.66e-01,+5.25e+02,+5.25e+02 2 -140 O: 2 613 -211 +3.59e-01,-1.16e-02,+1.52e+02,+1.52e+02 1 614 111 +1.47e+00,-9.55e-01,+3.73e+02,+3.73e+02 2 -281 GenVertex: -141 ID: 0 (X,cT):0 I: 1 305 223 +2.24e-01,-1.03e+00,+5.52e+02,+5.52e+02 2 -141 O: 3 615 -211 +2.02e-02,-4.58e-01,+1.67e+02,+1.67e+02 1 616 211 -5.79e-03,-7.26e-02,+2.90e+01,+2.90e+01 1 617 111 +2.09e-01,-5.03e-01,+3.56e+02,+3.56e+02 2 -282 Vertex: -142 ID: 0 (X,cT)=-3.45e-05,+2.69e-05,+2.61e-02,+2.61e-02 I: 1 306 111 -2.24e-01,+1.74e-01,+1.69e+02,+1.69e+02 2 -142 O: 2 618 22 -7.06e-02,+1.39e-01,+7.75e+01,+7.75e+01 1 619 22 -1.53e-01,+3.54e-02,+9.18e+01,+9.18e+01 1 Vertex: -143 ID: 0 (X,cT)=+2.38e+01,+9.98e+01,+1.48e+02,+1.88e+02 I: 1 308 3112 +5.26e-01,+2.21e+00,+3.28e+00,+4.17e+00 2 -143 O: 2 620 2112 +2.80e-01,+1.88e+00,+2.56e+00,+3.32e+00 1 621 -211 +2.46e-01,+3.28e-01,+7.24e-01,+8.44e-01 1 GenVertex: -144 ID: 0 (X,cT):0 I: 1 309 -3212 -5.78e-01,+7.66e-01,+9.85e-01,+1.82e+00 2 -144 O: 2 622 -3122 -5.18e-01,+6.36e-01,+8.61e-01,+1.63e+00 2 -283 623 22 -5.94e-02,+1.30e-01,+1.25e-01,+1.90e-01 1 GenVertex: -145 ID: 0 (X,cT):0 I: 1 310 113 +4.47e-01,+1.09e-01,-1.69e+01,+1.69e+01 2 -145 O: 2 624 -211 +4.04e-01,+2.64e-01,-1.44e+01,+1.44e+01 1 625 211 +4.26e-02,-1.55e-01,-2.46e+00,+2.47e+00 1 Vertex: -146 ID: 0 (X,cT)=-2.92e-05,-4.45e-05,-3.61e-04,+3.65e-04 I: 1 311 111 -3.27e-01,-4.99e-01,-4.05e+00,+4.10e+00 2 -146 O: 2 626 22 -8.84e-02,-6.44e-02,-5.28e-01,+5.39e-01 1 627 22 -2.39e-01,-4.35e-01,-3.52e+00,+3.56e+00 1 GenVertex: -147 ID: 0 (X,cT):0 I: 1 314 331 -2.68e-01,-4.02e-01,-1.57e+03,+1.57e+03 2 -147 O: 3 628 -211 +3.38e-02,-4.15e-02,-1.10e+02,+1.10e+02 1 629 211 -5.30e-03,+3.03e-02,-2.10e+02,+2.10e+02 1 630 221 -2.96e-01,-3.90e-01,-1.25e+03,+1.25e+03 2 -284 GenVertex: -148 ID: 0 (X,cT):0 I: 1 317 323 -3.37e-01,-2.39e+00,+7.93e+00,+8.34e+00 2 -148 O: 2 631 321 -3.08e-01,-2.31e+00,+6.87e+00,+7.27e+00 1 632 111 -2.89e-02,-8.45e-02,+1.06e+00,+1.07e+00 2 -285 GenVertex: -149 ID: 0 (X,cT):0 I: 1 318 -313 -1.44e+00,-3.44e+00,+8.45e+00,+9.29e+00 2 -149 O: 2 633 -311 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 2 -286 634 111 +4.95e-02,-2.69e-01,+7.54e-01,+8.14e-01 2 -287 GenVertex: -150 ID: 0 (X,cT):0 I: 1 319 313 -1.28e+00,-6.78e+00,+1.54e+01,+1.69e+01 2 -150 O: 2 635 321 -4.35e-01,-3.89e+00,+8.91e+00,+9.74e+00 1 636 -211 -8.42e-01,-2.89e+00,+6.45e+00,+7.12e+00 1 GenVertex: -151 ID: 0 (X,cT):0 I: 1 320 -323 -2.53e+00,-9.96e+00,+2.12e+01,+2.36e+01 2 -151 O: 2 637 -311 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -288 638 -211 -1.55e+00,-5.05e+00,+1.10e+01,+1.22e+01 1 GenVertex: -152 ID: 0 (X,cT):0 I: 1 322 -311 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 2 -152 O: 1 639 130 +2.09e+00,+7.64e+00,+1.13e+01,+1.38e+01 1 GenVertex: -153 ID: 0 (X,cT):0 I: 1 323 323 +4.15e+00,+1.53e+01,+1.94e+01,+2.50e+01 2 -153 O: 2 640 321 +2.14e+00,+7.62e+00,+1.01e+01,+1.29e+01 1 641 111 +2.01e+00,+7.64e+00,+9.24e+00,+1.22e+01 2 -289 Vertex: -154 ID: 0 (X,cT)=+3.19e-05,+1.66e-04,+4.58e-04,+4.89e-04 I: 1 324 111 +2.37e-01,+1.23e+00,+3.40e+00,+3.63e+00 2 -154 O: 2 642 22 +2.38e-01,+9.34e-01,+2.63e+00,+2.80e+00 1 643 22 -7.49e-04,+2.95e-01,+7.76e-01,+8.30e-01 1 GenVertex: -155 ID: 0 (X,cT):0 I: 1 327 223 +6.45e-01,+5.98e-01,+2.79e+00,+3.02e+00 2 -155 O: 3 644 -211 +3.28e-01,+6.54e-01,+1.90e+00,+2.04e+00 1 645 211 +1.35e-01,-2.37e-02,+3.56e-01,+4.06e-01 1 646 111 +1.82e-01,-3.30e-02,+5.33e-01,+5.80e-01 2 -290 GenVertex: -156 ID: 0 (X,cT):0 I: 1 328 -213 -5.74e-01,-4.18e-01,+1.17e+00,+1.54e+00 2 -156 O: 2 647 -211 -1.27e-01,-3.99e-01,+8.97e-01,+1.00e+00 1 648 111 -4.47e-01,-1.94e-02,+2.68e-01,+5.39e-01 2 -291 GenVertex: -157 ID: 0 (X,cT):0 I: 1 329 -311 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 2 -157 O: 1 649 130 +9.12e-02,-1.44e+00,+4.16e+00,+4.43e+00 1 GenVertex: -158 ID: 0 (X,cT):0 I: 1 330 313 -1.54e-01,-5.69e-01,+2.78e+00,+2.98e+00 2 -158 O: 2 650 311 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -292 651 111 +7.53e-02,-4.99e-01,+1.22e+00,+1.33e+00 2 -293 GenVertex: -159 ID: 0 (X,cT):0 I: 1 334 223 -4.42e-01,-3.12e+00,+6.81e+00,+7.55e+00 2 -159 O: 3 652 211 -2.73e-01,-1.94e+00,+4.28e+00,+4.71e+00 1 653 -211 -2.18e-01,-1.07e+00,+2.09e+00,+2.37e+00 1 654 111 +4.98e-02,-1.22e-01,+4.33e-01,+4.72e-01 2 -294 GenVertex: -160 ID: 0 (X,cT):0 I: 1 339 -313 +2.23e-01,-3.92e-01,+3.24e+00,+3.39e+00 2 -160 O: 2 655 -311 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 2 -295 656 111 +3.27e-01,-3.10e-01,+1.21e+00,+1.29e+00 2 -296 GenVertex: -161 ID: 0 (X,cT):0 I: 1 341 213 -7.02e-01,+3.41e-01,+6.17e-01,+1.39e+00 2 -161 O: 2 657 211 -2.11e-01,-3.05e-01,+3.43e-01,+5.24e-01 1 658 111 -4.91e-01,+6.46e-01,+2.74e-01,+8.67e-01 2 -297 GenVertex: -162 ID: 0 (X,cT):0 I: 1 343 323 -3.56e-01,+1.54e-01,-4.40e+01,+4.41e+01 2 -162 O: 2 659 311 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -298 660 211 -2.95e-01,+1.24e-02,-9.58e+00,+9.58e+00 1 Vertex: -163 ID: 0 (X,cT)=+1.97e+01,+1.15e+02,-7.73e+03,+7.73e+03 I: 1 344 3312 +1.93e-01,+1.13e+00,-7.54e+01,+7.54e+01 2 -163 O: 2 661 3122 +2.03e-01,+9.00e-01,-5.74e+01,+5.74e+01 2 -299 662 -211 -1.00e-02,+2.26e-01,-1.81e+01,+1.81e+01 1 Vertex: -164 ID: 0 (X,cT)=+2.12e+01,+1.99e+00,-3.63e+03,+3.63e+03 I: 1 345 -3112 +3.25e-01,+3.05e-02,-5.56e+01,+5.56e+01 2 -164 O: 2 663 -2112 +8.60e-02,-5.87e-02,-4.45e+01,+4.46e+01 1 664 211 +2.39e-01,+8.91e-02,-1.10e+01,+1.10e+01 1 GenVertex: -165 ID: 0 (X,cT):0 I: 1 346 313 +1.81e-01,+1.27e-01,-1.52e+02,+1.52e+02 2 -165 O: 2 665 321 +3.22e-01,+1.11e-01,-8.01e+01,+8.01e+01 1 666 -211 -1.41e-01,+1.62e-02,-7.22e+01,+7.22e+01 1 Vertex: -166 ID: 0 (X,cT)=+1.17e+01,+1.18e+02,-1.39e+04,+1.39e+04 I: 1 347 3122 +1.78e-01,+1.80e+00,-2.11e+02,+2.11e+02 2 -166 O: 2 667 2212 +2.05e-01,+1.67e+00,-1.87e+02,+1.87e+02 1 668 -211 -2.70e-02,+1.27e-01,-2.39e+01,+2.39e+01 1 GenVertex: -167 ID: 0 (X,cT):0 I: 1 350 113 +3.21e-01,+1.00e-01,-2.82e+02,+2.82e+02 2 -167 O: 2 669 211 -5.22e-02,-7.11e-02,-2.05e+02,+2.05e+02 1 670 -211 +3.73e-01,+1.71e-01,-7.73e+01,+7.73e+01 1 GenVertex: -168 ID: 0 (X,cT):0 I: 1 351 313 -6.62e-02,+3.82e-01,-1.53e+02,+1.53e+02 2 -168 O: 2 671 321 -2.98e-01,+2.98e-01,-8.18e+01,+8.18e+01 1 672 -211 +2.32e-01,+8.43e-02,-7.08e+01,+7.08e+01 1 GenVertex: -169 ID: 0 (X,cT):0 I: 1 352 -313 -1.95e-01,-7.59e-01,-9.20e+01,+9.20e+01 2 -169 O: 2 673 -311 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 2 -300 674 111 -2.02e-01,-4.65e-01,-2.52e+01,+2.52e+01 2 -301 GenVertex: -170 ID: 0 (X,cT):0 I: 1 353 -213 -9.56e-01,-5.98e-01,-1.82e+01,+1.82e+01 2 -170 O: 2 675 -211 -1.88e-01,-5.45e-01,-9.62e+00,+9.64e+00 1 676 111 -7.69e-01,-5.33e-02,-8.53e+00,+8.56e+00 2 -302 GenVertex: -171 ID: 0 (X,cT):0 I: 1 355 113 +8.60e-04,-9.71e-01,-6.38e+00,+6.50e+00 2 -171 O: 2 677 211 +2.13e-01,-2.96e-01,-3.74e+00,+3.76e+00 1 678 -211 -2.12e-01,-6.75e-01,-2.65e+00,+2.74e+00 1 GenVertex: -172 ID: 0 (X,cT):0 I: 1 356 -213 -7.28e-01,-1.83e+00,-5.39e+00,+5.81e+00 2 -172 O: 2 679 -211 -2.05e-01,-1.53e+00,-3.82e+00,+4.12e+00 1 680 111 -5.23e-01,-3.01e-01,-1.57e+00,+1.69e+00 2 -303 GenVertex: -173 ID: 0 (X,cT):0 I: 1 358 -323 -9.54e-01,-6.81e-01,-3.54e+00,+3.85e+00 2 -173 O: 2 681 -311 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 2 -304 682 -211 +2.39e-02,-1.47e-01,-1.09e+00,+1.11e+00 1 GenVertex: -174 ID: 0 (X,cT):0 I: 1 359 213 +2.75e-01,-3.52e-01,-5.09e+00,+5.16e+00 2 -174 O: 2 683 211 +8.02e-02,+1.64e-03,-3.76e+00,+3.77e+00 1 684 111 +1.95e-01,-3.54e-01,-1.32e+00,+1.39e+00 2 -305 GenVertex: -175 ID: 0 (X,cT):0 I: 1 360 223 -2.27e-01,+3.89e-02,-4.86e+00,+4.93e+00 2 -175 O: 2 685 -211 -3.85e-01,+2.53e-01,-3.64e+00,+3.67e+00 1 686 211 +1.59e-01,-2.14e-01,-1.22e+00,+1.25e+00 1 Vertex: -176 ID: 0 (X,cT)=+6.67e-06,-4.43e-05,-4.46e-04,+4.49e-04 I: 1 361 111 +9.80e-02,-6.51e-01,-6.55e+00,+6.59e+00 2 -176 O: 2 687 22 +6.05e-02,-2.93e-01,-2.35e+00,+2.37e+00 1 688 22 +3.75e-02,-3.58e-01,-4.21e+00,+4.22e+00 1 GenVertex: -177 ID: 0 (X,cT):0 I: 1 364 331 +1.50e-01,-7.24e-01,+1.85e+00,+2.21e+00 2 -177 O: 2 689 22 +1.37e-01,+6.06e-03,+2.18e-01,+2.58e-01 1 690 223 +1.24e-02,-7.30e-01,+1.63e+00,+1.95e+00 2 -306 GenVertex: -178 ID: 0 (X,cT):0 I: 1 365 -213 +5.38e-01,-3.87e-01,+1.13e+01,+1.13e+01 2 -178 O: 2 691 -211 +7.17e-01,-3.22e-01,+8.82e+00,+8.86e+00 1 692 111 -1.79e-01,-6.51e-02,+2.43e+00,+2.44e+00 2 -307 GenVertex: -179 ID: 0 (X,cT):0 I: 1 366 213 +1.14e+00,-8.39e-01,+3.72e+01,+3.72e+01 2 -179 O: 2 693 211 +8.78e-01,-2.74e-01,+1.90e+01,+1.90e+01 1 694 111 +2.62e-01,-5.65e-01,+1.82e+01,+1.82e+01 2 -308 GenVertex: -180 ID: 0 (X,cT):0 I: 1 368 113 +5.80e-01,-5.07e-01,+4.90e+01,+4.90e+01 2 -180 O: 2 695 -211 +3.12e-01,+7.97e-02,+2.48e+01,+2.48e+01 1 696 211 +2.69e-01,-5.87e-01,+2.42e+01,+2.43e+01 1 GenVertex: -181 ID: 0 (X,cT):0 I: 1 369 213 +1.41e+00,-1.69e+00,+6.99e+01,+7.00e+01 2 -181 O: 2 697 211 +1.19e-02,-3.00e-01,+1.13e+01,+1.13e+01 1 698 111 +1.39e+00,-1.39e+00,+5.86e+01,+5.87e+01 2 -309 GenVertex: -182 ID: 0 (X,cT):0 I: 1 370 113 +7.98e-01,-3.28e-01,+4.63e+01,+4.63e+01 2 -182 O: 2 699 211 -1.01e-02,-1.59e-01,+1.93e+01,+1.93e+01 1 700 -211 +8.09e-01,-1.70e-01,+2.69e+01,+2.69e+01 1 GenVertex: -183 ID: 0 (X,cT):0 I: 1 371 311 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 2 -183 O: 1 701 130 +9.37e-01,+4.82e-01,+2.58e+01,+2.58e+01 1 GenVertex: -184 ID: 0 (X,cT):0 I: 1 372 333 +7.88e-01,-1.35e-01,+8.26e+01,+8.26e+01 2 -184 O: 2 702 130 +4.97e-01,-2.77e-02,+4.86e+01,+4.86e+01 1 703 310 +2.91e-01,-1.08e-01,+3.39e+01,+3.39e+01 2 -310 GenVertex: -185 ID: 0 (X,cT):0 I: 1 373 -311 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -185 O: 1 704 310 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -311 GenVertex: -186 ID: 0 (X,cT):0 I: 1 374 -213 +1.71e-01,+1.06e+00,+2.95e+01,+2.95e+01 2 -186 O: 2 705 -211 +7.18e-02,+9.17e-04,+8.15e+00,+8.16e+00 1 706 111 +9.93e-02,+1.06e+00,+2.13e+01,+2.14e+01 2 -312 GenVertex: -187 ID: 0 (X,cT):0 I: 1 375 113 +3.21e-01,-4.01e-01,+6.30e+00,+6.35e+00 2 -187 O: 2 707 211 -1.07e-01,-3.52e-02,+1.26e+00,+1.27e+00 1 708 -211 +4.29e-01,-3.66e-01,+5.04e+00,+5.08e+00 1 GenVertex: -188 ID: 0 (X,cT):0 I: 1 376 223 +7.41e-01,+1.31e+00,+1.59e+01,+1.59e+01 2 -188 O: 3 709 211 +1.16e-01,+9.89e-02,+1.20e+00,+1.22e+00 1 710 -211 +4.34e-01,+4.24e-01,+7.57e+00,+7.59e+00 1 711 111 +1.92e-01,+7.83e-01,+7.09e+00,+7.14e+00 2 -313 GenVertex: -189 ID: 0 (X,cT):0 I: 1 377 213 +5.16e-01,+3.01e-01,+1.29e+00,+1.54e+00 2 -189 O: 2 712 211 +3.77e-02,+2.94e-01,+3.27e-01,+4.63e-01 1 713 111 +4.78e-01,+7.25e-03,+9.61e-01,+1.08e+00 2 -314 GenVertex: -190 ID: 0 (X,cT):0 I: 1 379 213 -2.56e-01,+6.07e-01,-6.71e-01,+1.20e+00 2 -190 O: 2 714 211 +6.14e-02,-1.12e-01,-7.76e-02,+2.05e-01 1 715 111 -3.17e-01,+7.19e-01,-5.93e-01,+9.94e-01 2 -315 GenVertex: -191 ID: 0 (X,cT):0 I: 1 380 113 +1.27e-01,+4.85e-01,-4.72e-01,+9.84e-01 2 -191 O: 2 716 211 +1.78e-01,+4.85e-01,-5.12e-02,+5.38e-01 1 717 -211 -5.14e-02,-2.75e-04,-4.21e-01,+4.47e-01 1 GenVertex: -192 ID: 0 (X,cT):0 I: 1 381 223 -1.71e+00,+1.18e+00,-2.61e+00,+3.43e+00 2 -192 O: 3 718 211 -8.74e-01,+3.77e-01,-1.31e+00,+1.63e+00 1 719 -211 -1.01e-01,+9.06e-02,-3.45e-01,+3.96e-01 1 720 111 -7.32e-01,+7.13e-01,-9.57e-01,+1.41e+00 2 -316 GenVertex: -193 ID: 0 (X,cT):0 I: 1 382 313 -1.23e+00,+1.01e+00,-3.51e+00,+3.96e+00 2 -193 O: 2 721 311 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -317 722 111 -4.37e-03,+2.86e-01,-5.78e-01,+6.59e-01 2 -318 GenVertex: -194 ID: 0 (X,cT):0 I: 1 383 -313 -6.29e-01,+4.19e-01,-1.97e+00,+2.30e+00 2 -194 O: 2 723 -321 -7.31e-01,+3.68e-01,-1.85e+00,+2.08e+00 1 724 211 +1.02e-01,+5.06e-02,-1.20e-01,+2.16e-01 1 GenVertex: -195 ID: 0 (X,cT):0 I: 1 384 221 -7.02e-02,-6.45e-03,-9.32e-01,+1.08e+00 2 -195 O: 3 725 211 -1.92e-02,-5.58e-02,-2.81e-01,+3.20e-01 1 726 -211 -1.17e-01,-1.25e-02,-1.46e-01,+2.34e-01 1 727 111 +6.57e-02,+6.19e-02,-5.04e-01,+5.30e-01 2 -319 Vertex: -196 ID: 0 (X,cT)=-2.61e-04,+1.33e-03,-2.36e-03,+2.73e-03 I: 1 385 111 -2.89e-01,+1.47e+00,-2.61e+00,+3.01e+00 2 -196 O: 2 728 22 -2.51e-01,+1.42e+00,-2.50e+00,+2.88e+00 1 729 22 -3.76e-02,+5.27e-02,-1.13e-01,+1.30e-01 1 Vertex: -197 ID: 0 (X,cT)=-2.11e-04,+1.20e-04,-4.28e-04,+4.95e-04 I: 1 386 111 -5.37e-01,+3.07e-01,-1.09e+00,+1.26e+00 2 -197 O: 2 730 22 -1.40e-02,+2.11e-02,-1.15e-01,+1.18e-01 1 731 22 -5.23e-01,+2.85e-01,-9.77e-01,+1.14e+00 1 GenVertex: -198 ID: 0 (X,cT):0 I: 1 387 223 +2.28e-01,+3.89e-01,-1.03e-01,+9.08e-01 2 -198 O: 2 732 22 +3.58e-01,+2.48e-01,-3.57e-01,+5.63e-01 1 733 111 -1.29e-01,+1.41e-01,+2.54e-01,+3.45e-01 2 -320 GenVertex: -199 ID: 0 (X,cT):0 I: 1 389 213 +9.33e-02,+2.48e-01,-1.45e+00,+1.54e+00 2 -199 O: 2 734 211 -4.31e-02,-3.71e-02,-2.76e-01,+3.14e-01 1 735 111 +1.36e-01,+2.85e-01,-1.18e+00,+1.23e+00 2 -321 Vertex: -200 ID: 0 (X,cT)=-4.99e-02,+6.40e-01,+1.95e+00,+2.06e+00 I: 1 396 -511 -1.22e+00,+1.57e+01,+4.76e+01,+5.04e+01 2 -200 O: 3 736 -12 +5.28e-01,+2.03e+00,+8.27e+00,+8.54e+00 1 737 11 -5.64e-01,+8.72e+00,+2.09e+01,+2.26e+01 1 738 413 -1.19e+00,+4.90e+00,+1.85e+01,+1.92e+01 2 -322 GenVertex: -201 ID: 0 (X,cT):0 I: 1 399 333 +8.18e-01,+5.20e-01,+9.12e-01,+1.68e+00 2 -201 O: 2 739 130 +3.84e-01,+2.42e-01,+5.77e-01,+8.87e-01 1 740 310 +4.35e-01,+2.78e-01,+3.35e-01,+7.91e-01 2 -323 GenVertex: -202 ID: 0 (X,cT):0 I: 1 400 -311 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 2 -202 O: 1 741 130 +4.16e-01,+5.83e-01,+8.07e-01,+1.19e+00 1 GenVertex: -203 ID: 0 (X,cT):0 I: 1 401 223 +4.99e-01,+1.27e+00,+5.22e-01,+1.67e+00 2 -203 O: 3 742 211 +1.64e-01,+1.38e-01,+3.42e-01,+4.27e-01 1 743 -211 +1.31e-01,+5.50e-01,-2.72e-02,+5.83e-01 1 744 111 +2.04e-01,+5.81e-01,+2.07e-01,+6.64e-01 2 -324 GenVertex: -204 ID: 0 (X,cT):0 I: 1 402 -213 +2.13e-01,+8.72e-01,+8.27e-01,+1.37e+00 2 -204 O: 2 745 -211 +1.89e-01,+8.94e-01,+6.02e-01,+1.10e+00 1 746 111 +2.40e-02,-2.14e-02,+2.24e-01,+2.64e-01 2 -325 GenVertex: -205 ID: 0 (X,cT):0 I: 1 403 223 +7.28e-01,+1.30e+00,+1.53e+00,+2.27e+00 2 -205 O: 3 747 -211 +1.20e-01,+9.60e-02,+2.45e-01,+3.21e-01 1 748 211 +4.63e-01,+5.53e-01,+4.00e-01,+8.36e-01 1 749 111 +1.45e-01,+6.48e-01,+8.85e-01,+1.11e+00 2 -326 GenVertex: -206 ID: 0 (X,cT):0 I: 1 404 2224 +5.22e-01,+1.37e+00,+2.42e+00,+3.06e+00 2 -206 O: 2 750 2212 +3.05e-01,+9.75e-01,+1.63e+00,+2.14e+00 1 751 211 +2.17e-01,+3.96e-01,+7.96e-01,+9.26e-01 1 GenVertex: -207 ID: 0 (X,cT):0 I: 1 405 223 -2.53e-01,+1.28e+00,+2.00e+00,+2.51e+00 2 -207 O: 3 752 211 +1.09e-01,+5.34e-01,+9.91e-01,+1.14e+00 1 753 -211 -3.42e-01,+6.52e-01,+7.31e-01,+1.05e+00 1 754 111 -1.99e-02,+8.89e-02,+2.74e-01,+3.19e-01 2 -327 GenVertex: -208 ID: 0 (X,cT):0 I: 1 408 2114 -2.21e+00,+9.88e-01,+8.99e+00,+9.40e+00 2 -208 O: 2 755 2212 -2.06e+00,+6.62e-01,+7.47e+00,+7.84e+00 1 756 -211 -1.45e-01,+3.26e-01,+1.51e+00,+1.56e+00 1 GenVertex: -209 ID: 0 (X,cT):0 I: 1 409 213 -1.20e+00,+5.02e-01,+4.41e+00,+4.67e+00 2 -209 O: 2 757 211 -8.56e-01,-4.23e-02,+2.24e+00,+2.40e+00 1 758 111 -3.47e-01,+5.44e-01,+2.17e+00,+2.27e+00 2 -328 GenVertex: -210 ID: 0 (X,cT):0 I: 1 410 -2114 -3.70e+00,+9.29e-01,+1.30e+01,+1.36e+01 2 -210 O: 2 759 -2112 -3.12e+00,+9.02e-01,+1.03e+01,+1.08e+01 1 760 111 -5.80e-01,+2.69e-02,+2.75e+00,+2.81e+00 2 -329 GenVertex: -211 ID: 0 (X,cT):0 I: 1 412 221 -6.28e-01,-4.17e-01,+1.39e+00,+1.67e+00 2 -211 O: 3 761 -211 -2.04e-01,-1.98e-01,+7.75e-01,+8.37e-01 1 762 211 -2.25e-01,-8.97e-02,+2.19e-01,+3.55e-01 1 763 111 -2.00e-01,-1.30e-01,+3.93e-01,+4.79e-01 2 -330 GenVertex: -212 ID: 0 (X,cT):0 I: 1 413 223 -7.07e-01,-1.43e+00,+4.89e+00,+5.20e+00 2 -212 O: 3 764 -211 -5.16e-01,-5.07e-01,+1.99e+00,+2.12e+00 1 765 211 -1.38e-01,-7.41e-01,+1.79e+00,+1.95e+00 1 766 111 -5.33e-02,-1.82e-01,+1.11e+00,+1.13e+00 2 -331 Vertex: -213 ID: 0 (X,cT)=+1.55e-01,+1.60e-01,+7.74e-01,+8.62e-01 I: 1 417 -5122 +2.88e+00,+2.97e+00,+1.43e+01,+1.60e+01 2 -213 O: 3 767 14 +1.35e+00,+1.17e+00,+6.20e+00,+6.45e+00 1 768 -13 -5.12e-01,+3.42e-01,-6.17e-02,+6.27e-01 1 769 -4122 +2.04e+00,+1.46e+00,+8.21e+00,+8.88e+00 2 -332 Vertex: -214 ID: 0 (X,cT)=-1.10e-06,-6.32e-05,-5.72e-05,+8.99e-05 I: 1 423 111 -5.20e-03,-2.98e-01,-2.69e-01,+4.24e-01 2 -214 O: 2 770 22 +2.42e-02,-1.62e-01,-2.24e-01,+2.77e-01 1 771 22 -2.94e-02,-1.36e-01,-4.56e-02,+1.47e-01 1 GenVertex: -215 ID: 0 (X,cT):0 I: 1 426 -311 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 2 -215 O: 1 772 130 +2.70e-01,-1.52e-01,-4.09e+00,+4.13e+00 1 Vertex: -216 ID: 0 (X,cT)=-6.62e-06,-4.69e-05,-2.83e-04,+2.87e-04 I: 1 427 111 -6.92e-02,-4.91e-01,-2.96e+00,+3.00e+00 2 -216 O: 2 773 22 -1.08e-01,-3.76e-01,-2.17e+00,+2.20e+00 1 774 22 +3.90e-02,-1.15e-01,-7.92e-01,+8.01e-01 1 GenVertex: -217 ID: 0 (X,cT):0 I: 1 428 311 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -217 O: 1 775 310 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -333 Vertex: -218 ID: 0 (X,cT)=+1.42e+02,-2.35e+01,-9.23e+02,+9.35e+02 I: 1 435 111 +5.77e-01,-1.85e-01,-4.18e+00,+4.23e+00 2 -218 O: 2 776 22 +3.63e-01,-1.28e-01,-3.06e+00,+3.09e+00 1 777 22 +2.14e-01,-5.71e-02,-1.12e+00,+1.14e+00 1 Vertex: -219 ID: 0 (X,cT)=+2.98e-05,-1.15e-05,-3.21e-04,+3.23e-04 I: 1 437 111 +4.99e-01,-1.92e-01,-5.37e+00,+5.40e+00 2 -219 O: 2 778 22 +4.09e-02,-1.84e-02,-9.73e-01,+9.74e-01 1 779 22 +4.58e-01,-1.73e-01,-4.40e+00,+4.43e+00 1 Vertex: -220 ID: 0 (X,cT)=+2.76e-05,-1.27e-05,-1.10e-04,+1.14e-04 I: 1 439 111 +4.16e-01,-1.92e-01,-1.65e+00,+1.72e+00 2 -220 O: 2 780 22 +1.92e-01,-3.75e-02,-8.67e-01,+8.89e-01 1 781 22 +2.24e-01,-1.54e-01,-7.82e-01,+8.28e-01 1 Vertex: -221 ID: 0 (X,cT)=+1.42e-04,-1.32e-04,-3.11e-03,+3.12e-03 I: 1 443 111 +7.44e-01,-6.91e-01,-1.63e+01,+1.63e+01 2 -221 O: 2 782 22 +1.88e-03,-1.06e-02,-5.89e-02,+5.99e-02 1 783 22 +7.42e-01,-6.81e-01,-1.62e+01,+1.62e+01 1 Vertex: -222 ID: 0 (X,cT)=+5.32e-05,-1.24e-04,-4.30e-03,+4.31e-03 I: 1 448 111 +3.87e-01,-9.01e-01,-3.13e+01,+3.13e+01 2 -222 O: 2 784 22 +1.86e-01,-5.99e-01,-1.97e+01,+1.97e+01 1 785 22 +2.00e-01,-3.02e-01,-1.15e+01,+1.15e+01 1 Vertex: -223 ID: 0 (X,cT)=+4.57e-05,-5.88e-06,-2.14e-03,+2.14e-03 I: 1 452 111 +5.06e-01,-6.51e-02,-2.37e+01,+2.37e+01 2 -223 O: 2 786 22 +5.08e-01,-7.15e-02,-2.25e+01,+2.25e+01 1 787 22 -2.51e-03,+6.42e-03,-1.18e+00,+1.18e+00 1 Vertex: -224 ID: 0 (X,cT)=-4.53e-06,-1.25e-04,-9.29e-03,+9.29e-03 I: 1 454 111 -3.59e-02,-9.94e-01,-7.36e+01,+7.36e+01 2 -224 O: 2 788 22 -8.31e-02,-7.05e-01,-5.36e+01,+5.36e+01 1 789 22 +4.73e-02,-2.89e-01,-2.00e+01,+2.00e+01 1 Vertex: -225 ID: 0 (X,cT)=-2.28e-05,-2.04e-05,-1.11e-03,+1.11e-03 I: 1 456 111 -1.26e-01,-1.13e-01,-6.14e+00,+6.15e+00 2 -225 O: 2 790 22 -6.38e-02,-1.21e-01,-5.16e+00,+5.16e+00 1 791 22 -6.25e-02,+7.72e-03,-9.84e-01,+9.86e-01 1 GenVertex: -226 ID: 0 (X,cT):0 I: 1 458 113 -1.36e+00,+1.20e-01,-9.07e+01,+9.07e+01 2 -226 O: 2 792 211 -1.02e+00,+3.17e-01,-5.84e+01,+5.84e+01 1 793 -211 -3.36e-01,-1.97e-01,-3.24e+01,+3.24e+01 1 GenVertex: -227 ID: 0 (X,cT):0 I: 1 459 311 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -227 O: 1 794 310 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -334 Vertex: -228 ID: 0 (X,cT)=-5.20e-05,+8.34e-05,-4.55e-03,+4.55e-03 I: 1 460 111 -6.21e-01,+9.95e-01,-5.43e+01,+5.43e+01 2 -228 O: 2 795 22 -1.78e-01,+2.11e-01,-1.48e+01,+1.48e+01 1 796 22 -4.42e-01,+7.83e-01,-3.95e+01,+3.95e+01 1 Vertex: -229 ID: 0 (X,cT)=-3.50e-06,-3.46e-06,-4.40e-04,+4.40e-04 I: 1 463 111 -1.72e-01,-1.70e-01,-2.16e+01,+2.16e+01 2 -229 O: 2 797 22 +6.92e-03,-4.60e-02,-7.00e+00,+7.00e+00 1 798 22 -1.78e-01,-1.24e-01,-1.46e+01,+1.46e+01 1 Vertex: -230 ID: 0 (X,cT)=-2.12e-05,+2.38e-05,-3.38e-03,+3.38e-03 I: 1 467 111 -6.25e-01,+7.02e-01,-9.98e+01,+9.98e+01 2 -230 O: 2 799 22 -2.25e-01,+3.36e-01,-3.87e+01,+3.87e+01 1 800 22 -4.00e-01,+3.66e-01,-6.11e+01,+6.11e+01 1 Vertex: -231 ID: 0 (X,cT)=+3.14e-04,+5.13e-04,-8.33e-03,+8.35e-03 I: 1 475 111 +1.55e+00,+2.53e+00,-4.11e+01,+4.12e+01 2 -231 O: 2 801 22 +1.02e+00,+1.78e+00,-2.84e+01,+2.85e+01 1 802 22 +5.31e-01,+7.49e-01,-1.27e+01,+1.27e+01 1 Vertex: -232 ID: 0 (X,cT)=+3.24e-04,+8.92e-05,-1.15e-03,+1.20e-03 I: 1 481 111 +5.31e-01,+1.46e-01,-1.88e+00,+1.97e+00 2 -232 O: 2 803 22 +1.13e-01,+3.51e-02,-6.30e-01,+6.41e-01 1 804 22 +4.18e-01,+1.11e-01,-1.25e+00,+1.33e+00 1 Vertex: -233 ID: 0 (X,cT)=+3.23e-05,+1.90e-05,-1.75e-05,+4.80e-05 I: 1 488 111 +1.78e-01,+1.05e-01,-9.65e-02,+2.65e-01 2 -233 O: 2 805 22 +4.44e-02,-2.61e-02,+5.82e-03,+5.18e-02 1 806 22 +1.34e-01,+1.31e-01,-1.02e-01,+2.13e-01 1 Vertex: -234 ID: 0 (X,cT)=+1.17e-03,+3.08e-04,-6.14e-04,+1.36e-03 I: 1 490 111 +2.24e+00,+5.88e-01,-1.17e+00,+2.60e+00 2 -234 O: 2 807 22 +1.15e+00,+3.70e-01,-5.93e-01,+1.35e+00 1 808 22 +1.09e+00,+2.18e-01,-5.80e-01,+1.25e+00 1 Vertex: -235 ID: 0 (X,cT)=+1.17e-04,+9.13e-07,-4.95e-05,+1.28e-04 I: 1 492 111 +9.62e-01,+7.53e-03,-4.08e-01,+1.05e+00 2 -235 O: 2 809 22 +3.28e-01,+4.79e-02,-1.89e-01,+3.81e-01 1 810 22 +6.35e-01,-4.04e-02,-2.19e-01,+6.73e-01 1 Vertex: -236 ID: 0 (X,cT)=+1.55e-04,+4.64e-05,-5.95e-05,+1.72e-04 I: 1 496 111 +2.12e+00,+6.35e-01,-8.15e-01,+2.36e+00 2 -236 O: 2 811 22 +6.62e-01,+1.37e-01,-2.71e-01,+7.28e-01 1 812 22 +1.46e+00,+4.98e-01,-5.44e-01,+1.63e+00 1 Vertex: -237 ID: 0 (X,cT)=+4.21e+01,+1.49e+01,+3.51e+01,+6.32e+01 I: 1 497 -3122 +1.69e+00,+5.99e-01,+1.41e+00,+2.54e+00 2 -237 O: 2 813 -2112 +1.40e+00,+3.97e-01,+1.12e+00,+2.06e+00 1 814 111 +2.90e-01,+2.01e-01,+2.89e-01,+4.76e-01 2 -335 Vertex: -238 ID: 0 (X,cT)=+9.34e+01,+8.41e+00,+8.92e+01,+1.46e+02 I: 1 499 3122 +1.56e+00,+1.41e-01,+1.49e+00,+2.44e+00 2 -238 O: 2 815 2212 +1.33e+00,+2.18e-01,+1.29e+00,+2.09e+00 1 816 -211 +2.37e-01,-7.75e-02,+1.98e-01,+3.48e-01 1 Vertex: -239 ID: 0 (X,cT)=-3.26e-05,-5.08e-06,+8.47e-05,+9.65e-05 I: 1 501 111 -1.36e-01,-2.12e-02,+3.53e-01,+4.02e-01 2 -239 O: 2 817 22 +2.73e-02,-8.34e-03,+6.34e-02,+6.95e-02 1 818 22 -1.63e-01,-1.28e-02,+2.90e-01,+3.33e-01 1 Vertex: -240 ID: 0 (X,cT)=-2.55e-05,-5.04e-07,+4.23e-05,+6.82e-05 I: 1 502 111 -7.31e-02,-1.45e-03,+1.22e-01,+1.96e-01 2 -240 O: 2 819 22 -6.59e-02,-6.30e-02,+6.59e-02,+1.12e-01 1 820 22 -7.22e-03,+6.16e-02,+5.57e-02,+8.34e-02 1 Vertex: -241 ID: 0 (X,cT)=+9.20e-06,+5.99e-06,+2.56e-05,+2.99e-05 I: 1 503 111 +1.14e-01,+7.44e-02,+3.18e-01,+3.71e-01 2 -241 O: 2 821 22 +5.03e-02,+2.40e-02,+1.51e-02,+5.77e-02 1 822 22 +6.39e-02,+5.04e-02,+3.03e-01,+3.13e-01 1 Vertex: -242 ID: 0 (X,cT)=+3.52e-05,+1.53e-05,+5.60e-05,+6.81e-05 I: 1 505 111 +8.74e-01,+3.81e-01,+1.39e+00,+1.69e+00 2 -242 O: 2 823 22 +1.96e-01,+6.81e-02,+4.03e-01,+4.53e-01 1 824 22 +6.78e-01,+3.13e-01,+9.86e-01,+1.24e+00 1 Vertex: -243 ID: 0 (X,cT)=+1.35e-05,+5.93e-06,+5.04e-05,+5.25e-05 I: 1 507 111 +5.98e-01,+2.64e-01,+2.24e+00,+2.34e+00 2 -243 O: 2 825 22 +2.17e-01,+1.45e-01,+7.20e-01,+7.66e-01 1 826 22 +3.81e-01,+1.19e-01,+1.52e+00,+1.57e+00 1 Vertex: -244 ID: 0 (X,cT)=+5.59e+01,+3.39e+01,+1.24e+02,+1.41e+02 I: 1 510 310 +1.86e+00,+1.13e+00,+4.12e+00,+4.69e+00 2 -244 O: 2 827 -211 +1.27e+00,+6.38e-01,+2.33e+00,+2.73e+00 1 828 211 +5.90e-01,+4.88e-01,+1.80e+00,+1.96e+00 1 Vertex: -245 ID: 0 (X,cT)=+8.25e-05,+2.93e-04,+2.65e-04,+4.15e-04 I: 1 512 111 +1.15e-01,+4.08e-01,+3.69e-01,+5.78e-01 2 -245 O: 2 829 22 +8.41e-02,+8.42e-02,+1.12e-01,+1.64e-01 1 830 22 +3.08e-02,+3.24e-01,+2.57e-01,+4.14e-01 1 Vertex: -246 ID: 0 (X,cT)=+1.28e-04,+2.57e-04,+3.06e-05,+2.89e-04 I: 1 514 111 +1.49e+00,+2.99e+00,+3.56e-01,+3.36e+00 2 -246 O: 2 831 22 +3.67e-01,+8.38e-01,+1.39e-01,+9.26e-01 1 832 22 +1.12e+00,+2.15e+00,+2.18e-01,+2.44e+00 1 GenVertex: -247 ID: 0 (X,cT):0 I: 1 520 221 -2.55e-01,+1.79e+00,-1.36e-01,+1.90e+00 2 -247 O: 3 833 111 -1.60e-01,+7.21e-01,-2.08e-02,+7.51e-01 2 -336 834 111 -5.09e-02,+4.26e-01,-1.73e-01,+4.82e-01 2 -337 835 111 -4.38e-02,+6.46e-01,+5.75e-02,+6.64e-01 2 -338 GenVertex: -248 ID: 0 (X,cT):0 I: 1 521 311 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 2 -248 O: 1 836 130 -4.69e-01,+5.97e-01,-1.15e-01,+9.15e-01 1 Vertex: -249 ID: 0 (X,cT)=-1.53e-04,+7.50e-05,-6.64e-05,+1.84e-04 I: 1 532 111 -1.31e+00,+6.44e-01,-5.69e-01,+1.58e+00 2 -249 O: 2 837 22 -1.01e+00,+5.58e-01,-4.57e-01,+1.24e+00 1 838 22 -2.99e-01,+8.56e-02,-1.13e-01,+3.31e-01 1 GenVertex: -250 ID: 0 (X,cT):0 I: 1 533 -311 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 2 -250 O: 1 839 130 -2.97e+00,-6.41e-01,-3.80e-01,+3.10e+00 1 Vertex: -251 ID: 0 (X,cT)=-1.03e-03,-2.90e-04,+1.75e-04,+1.09e-03 I: 1 534 111 -1.17e+00,-3.29e-01,+1.98e-01,+1.24e+00 2 -251 O: 2 840 22 -9.20e-01,-2.55e-01,+2.11e-01,+9.78e-01 1 841 22 -2.48e-01,-7.37e-02,-1.32e-02,+2.59e-01 1 GenVertex: -252 ID: 0 (X,cT):0 I: 1 535 311 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 2 -252 O: 1 842 130 -9.30e-01,-5.77e-01,+1.03e-03,+1.20e+00 1 Vertex: -253 ID: 0 (X,cT)=-2.44e-05,-1.52e-05,-6.14e-05,+7.73e-05 I: 1 539 111 -8.87e-02,-5.53e-02,-2.23e-01,+2.81e-01 2 -253 O: 2 843 22 +2.35e-04,-6.35e-02,-3.44e-02,+7.22e-02 1 844 22 -8.89e-02,+8.20e-03,-1.88e-01,+2.08e-01 1 Vertex: -254 ID: 0 (X,cT)=-1.47e-05,-1.70e-05,-4.70e-06,+2.42e-05 I: 1 542 111 -2.65e-01,-3.05e-01,-8.44e-02,+4.34e-01 2 -254 O: 3 845 22 -1.18e-01,-5.74e-02,-1.47e-02,+1.32e-01 1 846 11 -1.17e-02,-6.20e-02,-2.70e-02,+6.86e-02 1 847 -11 -1.35e-01,-1.86e-01,-4.27e-02,+2.33e-01 1 Vertex: -255 ID: 0 (X,cT)=-2.46e-04,-6.82e-04,+4.14e-05,+7.29e-04 I: 1 544 111 -5.21e-01,-1.44e+00,+8.75e-02,+1.54e+00 2 -255 O: 2 848 22 -2.63e-01,-6.95e-01,+1.09e-01,+7.51e-01 1 849 22 -2.58e-01,-7.48e-01,-2.15e-02,+7.91e-01 1 Vertex: -256 ID: 0 (X,cT)=-2.25e+02,-6.91e+02,-2.38e+02,+7.67e+02 I: 1 545 310 -1.76e+00,-5.41e+00,-1.87e+00,+6.01e+00 2 -256 O: 2 850 211 -1.53e-01,-7.37e-01,-2.99e-01,+8.22e-01 1 851 -211 -1.61e+00,-4.67e+00,-1.57e+00,+5.19e+00 1 GenVertex: -257 ID: 0 (X,cT):0 I: 1 546 311 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -257 O: 1 852 310 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -339 Vertex: -258 ID: 0 (X,cT)=-1.66e-05,-5.07e-04,-2.33e-04,+5.63e-04 I: 1 547 111 -3.27e-02,-9.96e-01,-4.58e-01,+1.10e+00 2 -258 O: 2 853 22 +3.89e-02,-6.86e-01,-3.27e-01,+7.61e-01 1 854 22 -7.15e-02,-3.11e-01,-1.30e-01,+3.44e-01 1 Vertex: -259 ID: 0 (X,cT)=-2.02e-06,-5.48e-04,-3.20e-04,+6.36e-04 I: 1 549 111 -6.33e-03,-1.72e+00,-1.00e+00,+2.00e+00 2 -259 O: 2 855 22 +2.12e-02,-4.34e-02,-3.30e-02,+5.85e-02 1 856 22 -2.75e-02,-1.68e+00,-9.70e-01,+1.94e+00 1 Vertex: -260 ID: 0 (X,cT)=+2.28e-05,-1.55e-06,+2.33e-05,+3.32e-05 I: 1 553 111 +5.23e-01,-3.55e-02,+5.35e-01,+7.61e-01 2 -260 O: 2 857 22 +3.37e-01,+2.78e-02,+2.79e-01,+4.38e-01 1 858 22 +1.86e-01,-6.32e-02,+2.56e-01,+3.23e-01 1 Vertex: -261 ID: 0 (X,cT)=+6.70e-04,-2.78e-04,+1.68e-03,+1.83e-03 I: 1 557 111 +1.28e+00,-5.31e-01,+3.22e+00,+3.51e+00 2 -261 O: 2 859 22 +6.09e-01,-2.77e-01,+1.71e+00,+1.84e+00 1 860 22 +6.74e-01,-2.54e-01,+1.51e+00,+1.67e+00 1 Vertex: -262 ID: 0 (X,cT)=+3.11e-06,-3.57e-05,+2.05e-04,+2.08e-04 I: 1 559 111 +3.99e-02,-4.57e-01,+2.63e+00,+2.67e+00 2 -262 O: 2 861 22 -4.44e-02,-2.15e-01,+1.34e+00,+1.36e+00 1 862 22 +8.43e-02,-2.43e-01,+1.28e+00,+1.31e+00 1 Vertex: -263 ID: 0 (X,cT)=+9.93e-06,-1.35e-05,+1.47e-04,+1.48e-04 I: 1 561 111 +2.42e-01,-3.29e-01,+3.59e+00,+3.62e+00 2 -263 O: 2 863 22 +9.11e-02,-1.47e-01,+9.93e-01,+1.01e+00 1 864 22 +1.51e-01,-1.82e-01,+2.60e+00,+2.61e+00 1 Vertex: -264 ID: 0 (X,cT)=-3.41e-04,-5.14e-04,+6.37e-03,+6.40e-03 I: 1 563 111 -3.91e-01,-5.91e-01,+7.32e+00,+7.35e+00 2 -264 O: 2 865 22 -1.05e-01,-7.79e-02,+1.63e+00,+1.63e+00 1 866 22 -2.87e-01,-5.13e-01,+5.69e+00,+5.72e+00 1 Vertex: -265 ID: 0 (X,cT)=-2.08e-04,-3.70e-04,+2.75e-03,+2.78e-03 I: 1 565 111 -2.47e-01,-4.39e-01,+3.26e+00,+3.31e+00 2 -265 O: 2 867 22 -1.85e-01,-2.10e-01,+1.55e+00,+1.58e+00 1 868 22 -6.23e-02,-2.29e-01,+1.71e+00,+1.73e+00 1 Vertex: -266 ID: 0 (X,cT)=-3.19e-05,-2.46e-07,+1.22e-04,+1.27e-04 I: 1 569 111 -3.11e-01,-2.39e-03,+1.19e+00,+1.24e+00 2 -266 O: 2 869 22 -9.35e-02,-5.85e-02,+4.89e-01,+5.01e-01 1 870 22 -2.17e-01,+5.61e-02,+7.03e-01,+7.38e-01 1 Vertex: -267 ID: 0 (X,cT)=-1.62e-05,+9.51e-06,+1.72e-04,+1.73e-04 I: 1 573 111 -4.27e-01,+2.51e-01,+4.52e+00,+4.55e+00 2 -267 O: 2 871 22 -2.75e-01,+1.46e-01,+2.23e+00,+2.26e+00 1 872 22 -1.52e-01,+1.05e-01,+2.29e+00,+2.30e+00 1 Vertex: -268 ID: 0 (X,cT)=-6.04e-05,-1.70e-06,+6.99e-04,+7.01e-04 I: 1 575 111 -2.62e+00,-7.39e-02,+3.03e+01,+3.04e+01 2 -268 O: 2 873 22 -2.76e-01,+2.50e-02,+2.92e+00,+2.93e+00 1 874 22 -2.34e+00,-9.88e-02,+2.74e+01,+2.75e+01 1 GenVertex: -269 ID: 0 (X,cT):0 I: 1 578 221 -6.68e-01,+1.03e-01,+1.25e+01,+1.26e+01 2 -269 O: 2 875 22 -7.28e-01,+1.63e-01,+9.62e+00,+9.65e+00 1 876 22 +6.01e-02,-6.06e-02,+2.91e+00,+2.91e+00 1 Vertex: -270 ID: 0 (X,cT)=-1.20e-03,-2.16e-04,+2.32e-02,+2.32e-02 I: 1 580 111 -2.77e+00,-4.97e-01,+5.33e+01,+5.34e+01 2 -270 O: 2 877 22 -1.75e+00,-2.49e-01,+3.37e+01,+3.37e+01 1 878 22 -1.02e+00,-2.48e-01,+1.97e+01,+1.97e+01 1 Vertex: -271 ID: 0 (X,cT)=-4.32e-05,-1.57e-05,+1.07e-03,+1.08e-03 I: 1 583 111 -9.11e-01,-3.32e-01,+2.27e+01,+2.27e+01 2 -271 O: 2 879 22 -8.44e-01,-3.43e-01,+2.11e+01,+2.12e+01 1 880 22 -6.72e-02,+1.10e-02,+1.52e+00,+1.53e+00 1 Vertex: -272 ID: 0 (X,cT)=-2.73e-04,-1.63e-04,+7.51e-03,+7.52e-03 I: 1 585 111 -2.27e+00,-1.36e+00,+6.26e+01,+6.26e+01 2 -272 O: 2 881 22 -9.40e-01,-5.68e-01,+2.44e+01,+2.44e+01 1 882 22 -1.33e+00,-7.93e-01,+3.82e+01,+3.82e+01 1 Vertex: -273 ID: 0 (X,cT)=-7.46e-04,-8.82e-04,+4.48e-02,+4.48e-02 I: 1 589 111 -1.31e+00,-1.55e+00,+7.85e+01,+7.85e+01 2 -273 O: 2 883 22 -6.20e-01,-6.50e-01,+3.63e+01,+3.63e+01 1 884 22 -6.88e-01,-8.96e-01,+4.21e+01,+4.22e+01 1 Vertex: -274 ID: 0 (X,cT)=-2.30e+01,-2.72e+01,+2.15e+03,+2.15e+03 I: 1 590 310 -4.47e-01,-5.28e-01,+4.16e+01,+4.16e+01 2 -274 O: 2 885 -211 -4.70e-01,-4.75e-01,+3.69e+01,+3.69e+01 1 886 211 +2.26e-02,-5.30e-02,+4.72e+00,+4.72e+00 1 GenVertex: -275 ID: 0 (X,cT):0 I: 1 591 311 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -275 O: 1 887 310 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -340 Vertex: -276 ID: 0 (X,cT)=-2.07e-05,-4.13e-05,+7.05e-03,+7.05e-03 I: 1 594 111 -2.16e-01,-4.31e-01,+7.35e+01,+7.35e+01 2 -276 O: 2 888 22 -1.64e-01,-3.52e-01,+6.54e+01,+6.54e+01 1 889 22 -5.25e-02,-7.90e-02,+8.14e+00,+8.14e+00 1 GenVertex: -277 ID: 0 (X,cT):0 I: 1 595 -311 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -277 O: 1 890 310 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -341 Vertex: -278 ID: 0 (X,cT)=-7.61e+01,+2.52e+01,+2.19e+04,+2.19e+04 I: 1 597 -3122 -9.54e-01,+3.16e-01,+2.74e+02,+2.74e+02 2 -278 O: 2 891 -2112 -7.73e-01,+2.86e-01,+2.47e+02,+2.47e+02 1 892 111 -1.81e-01,+3.09e-02,+2.74e+01,+2.74e+01 2 -342 Vertex: -279 ID: 0 (X,cT)=-4.92e-06,+1.06e-05,+1.23e-03,+1.23e-03 I: 1 607 111 -2.17e-01,+4.70e-01,+5.44e+01,+5.44e+01 2 -279 O: 2 893 22 -2.06e-01,+4.59e-01,+5.39e+01,+5.39e+01 1 894 22 -1.18e-02,+1.13e-02,+4.59e-01,+4.59e-01 1 Vertex: -280 ID: 0 (X,cT)=+9.68e+01,+4.45e+01,+3.03e+04,+3.03e+04 I: 1 609 3122 +1.36e+00,+6.24e-01,+4.24e+02,+4.24e+02 2 -280 O: 2 895 2112 +1.10e+00,+5.12e-01,+3.28e+02,+3.28e+02 1 896 111 +2.53e-01,+1.12e-01,+9.64e+01,+9.64e+01 2 -343 Vertex: -281 ID: 0 (X,cT)=+2.08e-05,-1.35e-05,+5.27e-03,+5.27e-03 I: 1 614 111 +1.47e+00,-9.55e-01,+3.73e+02,+3.73e+02 2 -281 O: 2 897 22 +3.51e-01,-1.63e-01,+8.47e+01,+8.47e+01 1 898 22 +1.12e+00,-7.92e-01,+2.89e+02,+2.89e+02 1 Vertex: -282 ID: 0 (X,cT)=+1.02e-05,-2.46e-05,+1.74e-02,+1.74e-02 I: 1 617 111 +2.09e-01,-5.03e-01,+3.56e+02,+3.56e+02 2 -282 O: 2 899 22 +1.31e-01,-3.48e-01,+2.78e+02,+2.78e+02 1 900 22 +7.86e-02,-1.54e-01,+7.75e+01,+7.75e+01 1 Vertex: -283 ID: 0 (X,cT)=-2.86e+01,+3.51e+01,+4.74e+01,+8.99e+01 I: 1 622 -3122 -5.18e-01,+6.36e-01,+8.61e-01,+1.63e+00 2 -283 O: 2 901 -2212 -5.28e-01,+5.39e-01,+8.17e-01,+1.45e+00 1 902 211 +9.39e-03,+9.67e-02,+4.39e-02,+1.76e-01 1 GenVertex: -284 ID: 0 (X,cT):0 I: 1 630 221 -2.96e-01,-3.90e-01,-1.25e+03,+1.25e+03 2 -284 O: 3 903 211 -1.77e-01,-1.37e-01,-3.83e+02,+3.83e+02 1 904 -211 -7.48e-02,+3.86e-03,-2.14e+02,+2.14e+02 1 905 111 -4.44e-02,-2.57e-01,-6.57e+02,+6.57e+02 2 -344 Vertex: -285 ID: 0 (X,cT)=-5.10e-06,-1.49e-05,+1.87e-04,+1.89e-04 I: 1 632 111 -2.89e-02,-8.45e-02,+1.06e+00,+1.07e+00 2 -285 O: 2 906 22 -6.45e-02,-5.69e-02,+3.34e-01,+3.45e-01 1 907 22 +3.56e-02,-2.76e-02,+7.24e-01,+7.26e-01 1 GenVertex: -286 ID: 0 (X,cT):0 I: 1 633 -311 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 2 -286 O: 1 908 130 -1.49e+00,-3.17e+00,+7.70e+00,+8.47e+00 1 Vertex: -287 ID: 0 (X,cT)=+1.14e-05,-6.20e-05,+1.74e-04,+1.88e-04 I: 1 634 111 +4.95e-02,-2.69e-01,+7.54e-01,+8.14e-01 2 -287 O: 2 909 22 -1.10e-02,+1.82e-03,+1.30e-01,+1.30e-01 1 910 22 +6.05e-02,-2.71e-01,+6.25e-01,+6.83e-01 1 GenVertex: -288 ID: 0 (X,cT):0 I: 1 637 -311 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -288 O: 1 911 310 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -345 Vertex: -289 ID: 0 (X,cT)=+1.75e-03,+6.65e-03,+8.04e-03,+1.06e-02 I: 1 641 111 +2.01e+00,+7.64e+00,+9.24e+00,+1.22e+01 2 -289 O: 2 912 22 +4.74e-01,+2.03e+00,+2.41e+00,+3.19e+00 1 913 22 +1.53e+00,+5.61e+00,+6.83e+00,+8.97e+00 1 Vertex: -290 ID: 0 (X,cT)=+1.51e-05,-2.74e-06,+4.43e-05,+4.82e-05 I: 1 646 111 +1.82e-01,-3.30e-02,+5.33e-01,+5.80e-01 2 -290 O: 2 914 22 +2.43e-02,-6.36e-02,+1.47e-01,+1.62e-01 1 915 22 +1.58e-01,+3.06e-02,+3.87e-01,+4.19e-01 1 Vertex: -291 ID: 0 (X,cT)=-1.17e-05,-5.06e-07,+6.99e-06,+1.40e-05 I: 1 648 111 -4.47e-01,-1.94e-02,+2.68e-01,+5.39e-01 2 -291 O: 2 916 22 -4.07e-01,-2.08e-02,+2.83e-01,+4.96e-01 1 917 22 -4.02e-02,+1.42e-03,-1.48e-02,+4.29e-02 1 GenVertex: -292 ID: 0 (X,cT):0 I: 1 650 311 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -292 O: 1 918 310 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -346 Vertex: -293 ID: 0 (X,cT)=+4.76e-06,-3.16e-05,+7.75e-05,+8.42e-05 I: 1 651 111 +7.53e-02,-4.99e-01,+1.22e+00,+1.33e+00 2 -293 O: 2 919 22 +3.74e-02,-5.48e-02,+2.66e-01,+2.75e-01 1 920 22 +3.79e-02,-4.44e-01,+9.57e-01,+1.06e+00 1 Vertex: -294 ID: 0 (X,cT)=+2.51e-05,-6.15e-05,+2.18e-04,+2.38e-04 I: 1 654 111 +4.98e-02,-1.22e-01,+4.33e-01,+4.72e-01 2 -294 O: 2 921 22 -4.60e-02,-2.63e-02,+1.10e-01,+1.22e-01 1 922 22 +9.58e-02,-9.56e-02,+3.23e-01,+3.50e-01 1 GenVertex: -295 ID: 0 (X,cT):0 I: 1 655 -311 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 2 -295 O: 1 923 130 -1.04e-01,-8.20e-02,+2.04e+00,+2.10e+00 1 Vertex: -296 ID: 0 (X,cT)=+2.74e-05,-2.60e-05,+1.01e-04,+1.08e-04 I: 1 656 111 +3.27e-01,-3.10e-01,+1.21e+00,+1.29e+00 2 -296 O: 2 924 22 +2.86e-01,-2.03e-01,+8.18e-01,+8.90e-01 1 925 22 +4.12e-02,-1.07e-01,+3.87e-01,+4.04e-01 1 Vertex: -297 ID: 0 (X,cT)=-1.90e-04,+2.51e-04,+1.06e-04,+3.36e-04 I: 1 658 111 -4.91e-01,+6.46e-01,+2.74e-01,+8.67e-01 2 -297 O: 2 926 22 -3.20e-03,+1.46e-02,+2.86e-02,+3.22e-02 1 927 22 -4.87e-01,+6.32e-01,+2.45e-01,+8.35e-01 1 GenVertex: -298 ID: 0 (X,cT):0 I: 1 659 311 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -298 O: 1 928 310 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -347 Vertex: -299 ID: 0 (X,cT)=+5.14e+01,+2.56e+02,-1.67e+04,+1.67e+04 I: 1 661 3122 +2.03e-01,+9.00e-01,-5.74e+01,+5.74e+01 2 -299 O: 2 929 2212 +1.03e-01,+8.32e-01,-5.15e+01,+5.15e+01 1 930 -211 +9.93e-02,+6.80e-02,-5.86e+00,+5.86e+00 1 GenVertex: -300 ID: 0 (X,cT):0 I: 1 673 -311 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 2 -300 O: 1 931 130 +7.80e-03,-2.95e-01,-6.68e+01,+6.68e+01 1 Vertex: -301 ID: 0 (X,cT)=-8.00e-06,-1.84e-05,-9.97e-04,+9.97e-04 I: 1 674 111 -2.02e-01,-4.65e-01,-2.52e+01,+2.52e+01 2 -301 O: 2 932 22 -1.34e-01,-1.77e-01,-8.88e+00,+8.88e+00 1 933 22 -6.80e-02,-2.88e-01,-1.63e+01,+1.63e+01 1 Vertex: -302 ID: 0 (X,cT)=-5.52e-04,-3.83e-05,-6.12e-03,+6.15e-03 I: 1 676 111 -7.69e-01,-5.33e-02,-8.53e+00,+8.56e+00 2 -302 O: 2 934 22 -4.81e-01,+5.70e-03,-4.71e+00,+4.73e+00 1 935 22 -2.87e-01,-5.90e-02,-3.82e+00,+3.83e+00 1 Vertex: -303 ID: 0 (X,cT)=-1.36e-05,-7.83e-06,-4.08e-05,+4.38e-05 I: 1 680 111 -5.23e-01,-3.01e-01,-1.57e+00,+1.69e+00 2 -303 O: 2 936 22 -4.68e-01,-3.04e-01,-1.48e+00,+1.58e+00 1 937 22 -5.49e-02,+2.93e-03,-8.81e-02,+1.04e-01 1 GenVertex: -304 ID: 0 (X,cT):0 I: 1 681 -311 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 2 -304 O: 1 938 130 -9.78e-01,-5.34e-01,-2.45e+00,+2.73e+00 1 Vertex: -305 ID: 0 (X,cT)=+8.43e-05,-1.53e-04,-5.72e-04,+6.01e-04 I: 1 684 111 +1.95e-01,-3.54e-01,-1.32e+00,+1.39e+00 2 -305 O: 2 939 22 +1.67e-03,-6.89e-02,-3.75e-01,+3.82e-01 1 940 22 +1.93e-01,-2.85e-01,-9.50e-01,+1.01e+00 1 GenVertex: -306 ID: 0 (X,cT):0 I: 1 690 223 +1.24e-02,-7.30e-01,+1.63e+00,+1.95e+00 2 -306 O: 3 941 211 +1.19e-01,-3.99e-01,+4.41e-01,+6.22e-01 1 942 -211 +9.37e-02,-3.00e-01,+7.86e-01,+8.58e-01 1 943 111 -2.01e-01,-3.13e-02,+4.05e-01,+4.73e-01 2 -348 Vertex: -307 ID: 0 (X,cT)=-4.54e-06,-1.65e-06,+6.17e-05,+6.19e-05 I: 1 692 111 -1.79e-01,-6.51e-02,+2.43e+00,+2.44e+00 2 -307 O: 2 944 22 -1.38e-01,-1.55e-02,+9.88e-01,+9.98e-01 1 945 22 -4.07e-02,-4.96e-02,+1.45e+00,+1.45e+00 1 Vertex: -308 ID: 0 (X,cT)=+8.43e-05,-1.82e-04,+5.87e-03,+5.88e-03 I: 1 694 111 +2.62e-01,-5.65e-01,+1.82e+01,+1.82e+01 2 -308 O: 2 946 22 +1.29e-01,-2.85e-01,+1.11e+01,+1.11e+01 1 947 22 +1.32e-01,-2.81e-01,+7.15e+00,+7.16e+00 1 Vertex: -309 ID: 0 (X,cT)=+3.57e-04,-3.55e-04,+1.50e-02,+1.50e-02 I: 1 698 111 +1.39e+00,-1.39e+00,+5.86e+01,+5.87e+01 2 -309 O: 2 948 22 +1.25e+00,-1.21e+00,+5.27e+01,+5.28e+01 1 949 22 +1.46e-01,-1.80e-01,+5.91e+00,+5.92e+00 1 Vertex: -310 ID: 0 (X,cT)=+1.89e+01,-7.00e+00,+2.21e+03,+2.21e+03 I: 1 703 310 +2.91e-01,-1.08e-01,+3.39e+01,+3.39e+01 2 -310 O: 2 950 211 +8.06e-02,-7.39e-02,+2.67e+01,+2.67e+01 1 951 -211 +2.10e-01,-3.36e-02,+7.23e+00,+7.23e+00 1 Vertex: -311 ID: 0 (X,cT)=+2.65e+01,-5.53e+00,+6.50e+02,+6.51e+02 I: 1 704 310 +4.53e-01,-9.46e-02,+1.11e+01,+1.11e+01 2 -311 O: 2 952 -211 -4.39e-02,-7.12e-02,+2.81e+00,+2.81e+00 1 953 211 +4.97e-01,-2.34e-02,+8.31e+00,+8.33e+00 1 Vertex: -312 ID: 0 (X,cT)=+3.13e-05,+3.33e-04,+6.72e-03,+6.73e-03 I: 1 706 111 +9.93e-02,+1.06e+00,+2.13e+01,+2.14e+01 2 -312 O: 2 954 22 +2.26e-03,+3.05e-01,+7.28e+00,+7.28e+00 1 955 22 +9.70e-02,+7.53e-01,+1.41e+01,+1.41e+01 1 Vertex: -313 ID: 0 (X,cT)=+8.62e-05,+3.52e-04,+3.19e-03,+3.21e-03 I: 1 711 111 +1.92e-01,+7.83e-01,+7.09e+00,+7.14e+00 2 -313 O: 2 956 22 +1.26e-01,+3.38e-01,+2.71e+00,+2.73e+00 1 957 22 +6.53e-02,+4.45e-01,+4.38e+00,+4.40e+00 1 Vertex: -314 ID: 0 (X,cT)=+3.70e-04,+5.62e-06,+7.44e-04,+8.38e-04 I: 1 713 111 +4.78e-01,+7.25e-03,+9.61e-01,+1.08e+00 2 -314 O: 2 958 22 +1.25e-01,+6.19e-02,+2.81e-01,+3.14e-01 1 959 22 +3.53e-01,-5.46e-02,+6.80e-01,+7.68e-01 1 Vertex: -315 ID: 0 (X,cT)=-2.97e-05,+6.74e-05,-5.56e-05,+9.31e-05 I: 1 715 111 -3.17e-01,+7.19e-01,-5.93e-01,+9.94e-01 2 -315 O: 2 960 22 -2.87e-01,+5.18e-01,-4.70e-01,+7.56e-01 1 961 22 -2.97e-02,+2.01e-01,-1.23e-01,+2.38e-01 1 Vertex: -316 ID: 0 (X,cT)=-4.82e-04,+4.70e-04,-6.31e-04,+9.27e-04 I: 1 720 111 -7.32e-01,+7.13e-01,-9.57e-01,+1.41e+00 2 -316 O: 2 962 22 -2.26e-01,+3.09e-01,-3.39e-01,+5.11e-01 1 963 22 -5.06e-01,+4.04e-01,-6.19e-01,+8.96e-01 1 GenVertex: -317 ID: 0 (X,cT):0 I: 1 721 311 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -317 O: 1 964 310 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -349 Vertex: -318 ID: 0 (X,cT)=-8.68e-08,+5.68e-06,-1.15e-05,+1.31e-05 I: 1 722 111 -4.37e-03,+2.86e-01,-5.78e-01,+6.59e-01 2 -318 O: 2 965 22 -1.71e-02,+2.19e-01,-5.34e-01,+5.77e-01 1 966 22 +1.28e-02,+6.74e-02,-4.36e-02,+8.13e-02 1 Vertex: -319 ID: 0 (X,cT)=+3.19e-06,+3.01e-06,-2.45e-05,+2.58e-05 I: 1 727 111 +6.57e-02,+6.19e-02,-5.04e-01,+5.30e-01 2 -319 O: 2 967 22 +9.31e-02,+8.33e-02,-3.51e-01,+3.72e-01 1 968 22 -2.75e-02,-2.14e-02,-1.54e-01,+1.58e-01 1 Vertex: -320 ID: 0 (X,cT)=-1.07e-05,+1.17e-05,+2.11e-05,+2.87e-05 I: 1 733 111 -1.29e-01,+1.41e-01,+2.54e-01,+3.45e-01 2 -320 O: 2 969 22 -1.41e-01,+1.50e-01,+2.58e-01,+3.30e-01 1 970 22 +1.15e-02,-8.81e-03,-4.52e-03,+1.52e-02 1 Vertex: -321 ID: 0 (X,cT)=+1.22e-05,+2.56e-05,-1.06e-04,+1.10e-04 I: 1 735 111 +1.36e-01,+2.85e-01,-1.18e+00,+1.23e+00 2 -321 O: 2 971 22 +1.17e-01,+2.84e-01,-9.55e-01,+1.00e+00 1 972 22 +1.94e-02,+8.60e-04,-2.23e-01,+2.24e-01 1 Vertex: -322 ID: 0 (X,cT)=-4.99e-02,+6.40e-01,+1.95e+00,+2.06e+00 I: 1 738 413 -1.19e+00,+4.90e+00,+1.85e+01,+1.92e+01 2 -322 O: 2 973 421 -1.10e+00,+4.52e+00,+1.72e+01,+1.79e+01 2 -350 974 211 -8.14e-02,+3.81e-01,+1.28e+00,+1.35e+00 1 Vertex: -323 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 740 310 +4.35e-01,+2.78e-01,+3.35e-01,+7.91e-01 2 -323 O: 2 975 111 +4.56e-01,+9.41e-02,+1.97e-01,+5.24e-01 2 -351 976 111 -2.19e-02,+1.84e-01,+1.38e-01,+2.68e-01 2 -352 Vertex: -324 ID: 0 (X,cT)=+5.52e-05,+1.58e-04,+5.62e-05,+1.80e-04 I: 1 744 111 +2.04e-01,+5.81e-01,+2.07e-01,+6.64e-01 2 -324 O: 2 977 22 +9.55e-02,+2.12e-01,+1.34e-02,+2.33e-01 1 978 22 +1.08e-01,+3.70e-01,+1.94e-01,+4.31e-01 1 Vertex: -325 ID: 0 (X,cT)=+6.96e-07,-6.21e-07,+6.50e-06,+7.64e-06 I: 1 746 111 +2.40e-02,-2.14e-02,+2.24e-01,+2.64e-01 2 -325 O: 2 979 22 +4.29e-02,-2.22e-02,+2.37e-01,+2.41e-01 1 980 22 -1.89e-02,+7.41e-04,-1.21e-02,+2.25e-02 1 Vertex: -326 ID: 0 (X,cT)=+3.99e-05,+1.79e-04,+2.44e-04,+3.08e-04 I: 1 749 111 +1.45e-01,+6.48e-01,+8.85e-01,+1.11e+00 2 -326 O: 2 981 22 +4.42e-02,+1.93e-01,+3.73e-01,+4.22e-01 1 982 22 +1.00e-01,+4.55e-01,+5.12e-01,+6.92e-01 1 Vertex: -327 ID: 0 (X,cT)=-5.22e-07,+2.33e-06,+7.17e-06,+8.34e-06 I: 1 754 111 -1.99e-02,+8.89e-02,+2.74e-01,+3.19e-01 2 -327 O: 2 983 22 -5.57e-02,+7.22e-02,+2.62e-01,+2.78e-01 1 984 22 +3.58e-02,+1.67e-02,+1.19e-02,+4.12e-02 1 Vertex: -328 ID: 0 (X,cT)=-2.27e-04,+3.56e-04,+1.42e-03,+1.48e-03 I: 1 758 111 -3.47e-01,+5.44e-01,+2.17e+00,+2.27e+00 2 -328 O: 2 985 22 -1.23e-01,+3.17e-01,+1.08e+00,+1.13e+00 1 986 22 -2.24e-01,+2.27e-01,+1.09e+00,+1.13e+00 1 Vertex: -329 ID: 0 (X,cT)=-1.02e-04,+4.72e-06,+4.83e-04,+4.94e-04 I: 1 760 111 -5.80e-01,+2.69e-02,+2.75e+00,+2.81e+00 2 -329 O: 2 987 22 -2.56e-01,-5.48e-02,+1.24e+00,+1.27e+00 1 988 22 -3.24e-01,+8.17e-02,+1.51e+00,+1.54e+00 1 Vertex: -330 ID: 0 (X,cT)=-5.95e-05,-3.86e-05,+1.17e-04,+1.42e-04 I: 1 763 111 -2.00e-01,-1.30e-01,+3.93e-01,+4.79e-01 2 -330 O: 2 989 22 -8.60e-02,-5.17e-02,+5.61e-02,+1.15e-01 1 990 22 -1.14e-01,-7.79e-02,+3.37e-01,+3.64e-01 1 Vertex: -331 ID: 0 (X,cT)=-6.82e-06,-2.33e-05,+1.42e-04,+1.45e-04 I: 1 766 111 -5.33e-02,-1.82e-01,+1.11e+00,+1.13e+00 2 -331 O: 2 991 22 -8.38e-02,-1.76e-01,+8.37e-01,+8.60e-01 1 992 22 +3.05e-02,-5.70e-03,+2.69e-01,+2.71e-01 1 Vertex: -332 ID: 0 (X,cT)=+2.15e-01,+2.03e-01,+1.01e+00,+1.12e+00 I: 1 769 -4122 +2.04e+00,+1.46e+00,+8.21e+00,+8.88e+00 2 -332 O: 2 993 -2224 +1.91e+00,+6.26e-01,+6.45e+00,+6.87e+00 2 -353 994 321 +1.24e-01,+8.31e-01,+1.76e+00,+2.01e+00 1 Vertex: -333 ID: 0 (X,cT)=+2.18e+01,-7.52e+01,-4.84e+02,+4.92e+02 I: 1 775 310 +2.93e-01,-1.01e+00,-6.51e+00,+6.61e+00 2 -333 O: 2 995 -211 +2.40e-01,-5.99e-01,-4.92e+00,+4.96e+00 1 996 211 +5.32e-02,-4.11e-01,-1.59e+00,+1.65e+00 1 Vertex: -334 ID: 0 (X,cT)=-3.23e+00,+3.36e+00,-3.03e+02,+3.03e+02 I: 1 794 310 -2.84e-01,+2.96e-01,-2.67e+01,+2.67e+01 2 -334 O: 2 997 -211 -2.88e-01,+2.94e-01,-1.34e+01,+1.34e+01 1 998 211 +3.84e-03,+2.11e-03,-1.33e+01,+1.33e+01 1 Vertex: -335 ID: 0 (X,cT)=+4.21e+01,+1.49e+01,+3.51e+01,+6.32e+01 I: 1 814 111 +2.90e-01,+2.01e-01,+2.89e-01,+4.76e-01 2 -335 O: 2 999 22 +7.26e-02,+2.98e-02,+1.42e-01,+1.62e-01 1 1000 22 +2.17e-01,+1.72e-01,+1.47e-01,+3.14e-01 1 Vertex: -336 ID: 0 (X,cT)=-1.19e-05,+5.36e-05,-1.55e-06,+5.58e-05 I: 1 833 111 -1.60e-01,+7.21e-01,-2.08e-02,+7.51e-01 2 -336 O: 2 1001 22 +2.45e-02,+9.74e-02,-2.67e-03,+1.00e-01 1 1002 22 -1.85e-01,+6.23e-01,-1.81e-02,+6.50e-01 1 Vertex: -337 ID: 0 (X,cT)=-5.00e-05,+4.19e-04,-1.70e-04,+4.74e-04 I: 1 834 111 -5.09e-02,+4.26e-01,-1.73e-01,+4.82e-01 2 -337 O: 2 1003 22 -3.86e-02,+4.28e-01,-1.49e-01,+4.55e-01 1 1004 22 -1.22e-02,-1.85e-03,-2.43e-02,+2.73e-02 1 Vertex: -338 ID: 0 (X,cT)=-1.52e-06,+2.24e-05,+2.00e-06,+2.30e-05 I: 1 835 111 -4.38e-02,+6.46e-01,+5.75e-02,+6.64e-01 2 -338 O: 2 1005 22 -9.85e-03,+5.21e-01,+9.37e-02,+5.29e-01 1 1006 22 -3.40e-02,+1.26e-01,-3.61e-02,+1.35e-01 1 Vertex: -339 ID: 0 (X,cT)=+2.19e+01,-7.96e+01,-6.45e+01,+1.07e+02 I: 1 852 310 +5.60e-01,-2.04e+00,-1.65e+00,+2.73e+00 2 -339 O: 2 1007 211 +5.39e-01,-1.46e+00,-1.33e+00,+2.06e+00 1 1008 -211 +2.16e-02,-5.75e-01,-3.19e-01,+6.72e-01 1 Vertex: -340 ID: 0 (X,cT)=-3.68e+02,-1.77e+02,+2.56e+04,+2.56e+04 I: 1 887 310 -1.53e+00,-7.36e-01,+1.07e+02,+1.07e+02 2 -340 O: 2 1009 -211 -1.33e+00,-6.43e-01,+8.34e+01,+8.34e+01 1 1010 211 -2.01e-01,-9.34e-02,+2.35e+01,+2.35e+01 1 Vertex: -341 ID: 0 (X,cT)=-4.08e+01,-4.22e+01,+6.77e+03,+6.77e+03 I: 1 890 310 -9.61e-01,-9.96e-01,+1.59e+02,+1.60e+02 2 -341 O: 2 1011 211 -3.82e-01,-1.85e-01,+6.13e+01,+6.13e+01 1 1012 -211 -5.79e-01,-8.10e-01,+9.82e+01,+9.82e+01 1 Vertex: -342 ID: 0 (X,cT)=-7.61e+01,+2.52e+01,+2.19e+04,+2.19e+04 I: 1 892 111 -1.81e-01,+3.09e-02,+2.74e+01,+2.74e+01 2 -342 O: 2 1013 22 -6.12e-02,+7.07e-02,+8.23e+00,+8.23e+00 1 1014 22 -1.20e-01,-3.99e-02,+1.92e+01,+1.92e+01 1 Vertex: -343 ID: 0 (X,cT)=+9.68e+01,+4.45e+01,+3.03e+04,+3.03e+04 I: 1 896 111 +2.53e-01,+1.12e-01,+9.64e+01,+9.64e+01 2 -343 O: 2 1015 22 +1.70e-01,+1.40e-01,+6.76e+01,+6.76e+01 1 1016 22 +8.25e-02,-2.80e-02,+2.88e+01,+2.88e+01 1 Vertex: -344 ID: 0 (X,cT)=-8.33e-05,-4.82e-04,-1.23e+00,+1.23e+00 I: 1 905 111 -4.44e-02,-2.57e-01,-6.57e+02,+6.57e+02 2 -344 O: 2 1017 22 -2.75e-02,-1.03e-02,-1.73e+02,+1.73e+02 1 1018 22 -1.69e-02,-2.47e-01,-4.85e+02,+4.85e+02 1 Vertex: -345 ID: 0 (X,cT)=-2.19e+02,-1.10e+03,+2.27e+03,+2.53e+03 I: 1 911 310 -9.83e-01,-4.92e+00,+1.02e+01,+1.13e+01 2 -345 O: 2 1019 -211 -7.67e-01,-2.80e+00,+5.86e+00,+6.54e+00 1 1020 211 -2.16e-01,-2.11e+00,+4.30e+00,+4.80e+00 1 Vertex: -346 ID: 0 (X,cT)=-8.52e+00,-2.62e+00,+5.79e+01,+6.14e+01 I: 1 918 310 -2.29e-01,-7.05e-02,+1.56e+00,+1.65e+00 2 -346 O: 2 1021 211 -2.53e-01,-7.58e-02,+4.77e-01,+5.63e-01 1 1022 -211 +2.41e-02,+5.25e-03,+1.08e+00,+1.09e+00 1 Vertex: -347 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 928 310 -6.10e-02,+1.42e-01,-3.45e+01,+3.45e+01 2 -347 O: 2 1023 111 -1.28e-01,+2.53e-01,-2.58e+01,+2.58e+01 2 -354 1024 111 +6.71e-02,-1.12e-01,-8.69e+00,+8.69e+00 2 -355 Vertex: -348 ID: 0 (X,cT)=-1.70e-05,-2.65e-06,+3.42e-05,+4.00e-05 I: 1 943 111 -2.01e-01,-3.13e-02,+4.05e-01,+4.73e-01 2 -348 O: 2 1025 22 -1.85e-01,+1.30e-02,+3.71e-01,+4.15e-01 1 1026 22 -1.61e-02,-4.43e-02,+3.37e-02,+5.79e-02 1 Vertex: -349 ID: 0 (X,cT)=-2.14e+01,+1.26e+01,-5.10e+01,+5.73e+01 I: 1 964 310 -1.23e+00,+7.26e-01,-2.93e+00,+3.30e+00 2 -349 O: 2 1027 211 -4.71e-01,+2.27e-01,-6.97e-01,+8.83e-01 1 1028 -211 -7.59e-01,+4.99e-01,-2.24e+00,+2.42e+00 1 Vertex: -350 ID: 0 (X,cT)=-7.49e-02,+7.42e-01,+2.34e+00,+2.47e+00 I: 1 973 421 -1.10e+00,+4.52e+00,+1.72e+01,+1.79e+01 2 -350 O: 4 1029 -321 -6.95e-01,+2.72e+00,+9.26e+00,+9.69e+00 1 1030 211 -2.07e-01,+4.47e-01,+1.75e+00,+1.82e+00 1 1031 111 +3.28e-01,+6.48e-01,+2.52e+00,+2.63e+00 2 -356 1032 111 -5.30e-01,+6.97e-01,+3.65e+00,+3.76e+00 2 -357 Vertex: -351 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 975 111 +4.56e-01,+9.41e-02,+1.97e-01,+5.24e-01 2 -351 O: 2 1033 22 +2.23e-01,+7.37e-02,+3.18e-02,+2.37e-01 1 1034 22 +2.34e-01,+2.04e-02,+1.65e-01,+2.87e-01 1 Vertex: -352 ID: 0 (X,cT)=+1.92e+01,+1.23e+01,+1.48e+01,+3.50e+01 I: 1 976 111 -2.19e-02,+1.84e-01,+1.38e-01,+2.68e-01 2 -352 O: 2 1035 22 -4.04e-03,+1.10e-01,+1.55e-01,+1.90e-01 1 1036 22 -1.79e-02,+7.42e-02,-1.63e-02,+7.80e-02 1 Vertex: -353 ID: 0 (X,cT)=+2.15e-01,+2.03e-01,+1.01e+00,+1.12e+00 I: 1 993 -2224 +1.91e+00,+6.26e-01,+6.45e+00,+6.87e+00 2 -353 O: 2 1037 -2212 +1.52e+00,+2.54e-01,+5.07e+00,+5.38e+00 1 1038 -211 +3.88e-01,+3.72e-01,+1.38e+00,+1.49e+00 1 Vertex: -354 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 1023 111 -1.28e-01,+2.53e-01,-2.58e+01,+2.58e+01 2 -354 O: 2 1039 22 -9.73e-02,+8.94e-02,-7.58e+00,+7.58e+00 1 1040 22 -3.08e-02,+1.64e-01,-1.82e+01,+1.82e+01 1 Vertex: -355 ID: 0 (X,cT)=-7.34e-01,+1.70e+00,-4.15e+02,+4.15e+02 I: 1 1024 111 +6.71e-02,-1.12e-01,-8.69e+00,+8.69e+00 2 -355 O: 2 1041 22 +3.77e-02,-1.24e-01,-4.39e+00,+4.39e+00 1 1042 22 +2.94e-02,+1.21e-02,-4.30e+00,+4.30e+00 1 Vertex: -356 ID: 0 (X,cT)=-7.48e-02,+7.43e-01,+2.34e+00,+2.47e+00 I: 1 1031 111 +3.28e-01,+6.48e-01,+2.52e+00,+2.63e+00 2 -356 O: 2 1043 22 +3.41e-02,+8.93e-03,+1.27e-01,+1.32e-01 1 1044 22 +2.94e-01,+6.39e-01,+2.39e+00,+2.50e+00 1 Vertex: -357 ID: 0 (X,cT)=-7.50e-02,+7.42e-01,+2.34e+00,+2.47e+00 I: 1 1032 111 -5.30e-01,+6.97e-01,+3.65e+00,+3.76e+00 2 -357 O: 2 1045 22 -3.24e-01,+3.17e-01,+1.93e+00,+1.99e+00 1 1046 22 -2.06e-01,+3.80e-01,+1.72e+00,+1.77e+00 1 ________________________________________________________________________________ ________________________________________________________________________________ GenEvent: #39 ID=20 SignalProcessGenVertex Barcode: 0 Momenutm units: GEV Position units: MM Entries this event: 133 vertices, 382 particles. Beam Particle barcodes: 1 2 RndmState(0)= Wgts(3)=(0,0.3456) (1,0.99223) (2,0.99256) EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ GenVertex: -1 ID: 0 (X,cT):0 I: 1 1 2212 +0.00e+00,+0.00e+00,+7.00e+03,+7.00e+03 3 -1 O: 2 3 1 +1.51e+00,-1.30e+00,+2.72e+03,+2.72e+03 3 -3 13 2203 -1.51e+00,+1.30e+00,+4.24e+03,+4.24e+03 2 -9 GenVertex: -2 ID: 0 (X,cT):0 I: 1 2 2212 +0.00e+00,+0.00e+00,-7.00e+03,+7.00e+03 3 -2 O: 3 4 21 +2.59e+00,-2.17e+00,-4.34e+01,+4.35e+01 3 -4 16 2 -9.07e-01,+1.46e+00,-7.69e+02,+7.69e+02 2 -11 31 2101 -1.68e+00,+7.10e-01,-6.09e+03,+6.09e+03 2 -13 GenVertex: -3 ID: 0 (X,cT):0 I: 1 3 1 +1.51e+00,-1.30e+00,+2.72e+03,+2.72e+03 3 -3 O: 6 5 -3 +1.91e+00,-4.08e-01,+1.51e+02,+1.51e+02 3 -5 11 3 -2.38e+00,-1.57e+00,+3.32e+00,+4.40e+00 2 -9 12 21 -1.79e-01,+2.74e-01,+1.82e-01,+3.74e-01 2 -9 17 1 +1.15e+00,+3.44e-01,+1.06e+03,+1.06e+03 2 -13 18 21 +1.20e+00,-9.86e-01,+1.50e+03,+1.50e+03 2 -13 19 21 -2.41e-01,+9.77e-01,+8.69e+00,+8.75e+00 2 -13 GenVertex: -4 ID: 0 (X,cT):0 I: 1 4 21 +2.59e+00,-2.17e+00,-4.34e+01,+4.35e+01 3 -4 O: 8 6 4 -5.91e-01,-1.69e+00,-1.59e+01,+1.60e+01 3 -5 14 -4 +1.29e+00,-8.18e-02,-1.51e+01,+1.53e+01 2 -11 15 21 +4.88e-01,-5.08e-01,-1.92e+00,+2.05e+00 2 -11 26 21 +7.32e-01,+2.49e-01,-7.83e-01,+1.10e+00 2 -13 27 21 +3.85e-01,+1.64e-01,-4.19e+00,+4.21e+00 2 -13 28 21 -4.96e-01,-4.44e-02,-1.40e-01,+5.17e-01 2 -13 29 21 +6.49e-03,+1.49e-01,+1.79e-01,+2.33e-01 2 -13 30 21 +8.07e-01,-3.38e-01,-4.12e+00,+4.21e+00 2 -13 GenVertex: -5 ID: 0 (X,cT):0 I: 2 5 -3 +1.91e+00,-4.08e-01,+1.51e+02,+1.51e+02 3 -5 6 4 -5.91e-01,-1.69e+00,-1.59e+01,+1.60e+01 3 -5 O: 2 7 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 3 -6 8 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 3 -7 GenVertex: -6 ID: 0 (X,cT):0 I: 1 7 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 3 -6 O: 1 9 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -8 GenVertex: -7 ID: 0 (X,cT):0 I: 1 8 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 3 -7 O: 1 10 22 -1.67e+00,-4.02e+00,-5.03e+00,+6.65e+00 1 GenVertex: -8 ID: 0 (X,cT):0 I: 1 9 24 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -8 O:13 32 -3 -1.82e+00,-2.61e+00,+7.50e+00,+8.16e+00 2 -15 33 21 -7.71e+00,-1.21e+01,+4.11e+01,+4.35e+01 2 -15 34 21 -8.67e-01,-2.38e-01,+4.15e+00,+4.25e+00 2 -15 35 21 -2.74e+00,-4.91e+00,+4.57e+01,+4.60e+01 2 -15 36 21 -8.18e-03,-2.41e-02,+6.87e+00,+6.87e+00 2 -15 37 21 +6.44e+00,+4.00e+00,+1.60e+01,+1.77e+01 2 -15 38 21 +4.38e+00,+1.45e+00,+9.46e+00,+1.05e+01 2 -15 39 21 +1.58e+00,+6.33e-01,+4.94e+00,+5.22e+00 2 -15 40 21 +2.17e-01,-2.86e-01,+9.31e-01,+9.98e-01 2 -15 41 21 +4.47e-01,+3.78e-01,+7.65e-01,+9.64e-01 2 -15 42 21 +7.09e-01,+9.44e-01,+5.31e-01,+1.30e+00 2 -15 43 21 +1.16e+00,+6.43e+00,+1.42e+00,+6.68e+00 2 -15 44 4 +1.18e+00,+8.24e+00,+1.21e+00,+8.54e+00 2 -15 GenVertex: -9 ID: 0 (X,cT):0 I: 3 11 3 -2.38e+00,-1.57e+00,+3.32e+00,+4.40e+00 2 -9 12 21 -1.79e-01,+2.74e-01,+1.82e-01,+3.74e-01 2 -9 13 2203 -1.51e+00,+1.30e+00,+4.24e+03,+4.24e+03 2 -9 O: 1 45 92 -4.06e+00,+4.87e-03,+4.25e+03,+4.25e+03 2 -10 GenVertex: -10 ID: 0 (X,cT):0 I: 1 45 92 -4.06e+00,+4.87e-03,+4.25e+03,+4.25e+03 2 -10 O:14 46 3122 -7.38e-01,-1.93e-01,+2.36e+00,+2.72e+00 2 -17 47 113 -5.86e-01,-3.69e-01,+1.55e+00,+1.88e+00 2 -18 48 -2112 -8.35e-01,-4.59e-01,+3.22e+00,+3.48e+00 1 49 -211 -4.70e-01,-1.28e-01,+9.73e-01,+1.10e+00 1 50 321 +2.12e-01,-1.53e-02,+2.18e+00,+2.24e+00 1 51 -321 -2.71e-01,-6.99e-02,+6.38e+00,+6.41e+00 1 52 213 +2.12e-01,+2.10e-02,+6.75e+00,+6.80e+00 2 -19 53 111 -3.32e-01,+3.42e-01,+4.34e+00,+4.37e+00 2 -20 54 -211 +3.11e-01,-7.70e-01,+4.31e+01,+4.31e+01 1 55 211 -1.67e-01,+2.90e-01,+2.39e+01,+2.39e+01 1 56 311 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -21 57 -311 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -22 58 2112 -4.91e-01,+1.56e+00,+3.63e+03,+3.63e+03 1 59 211 -4.27e-01,-1.84e-01,+4.24e+02,+4.24e+02 1 GenVertex: -11 ID: 0 (X,cT):0 I: 3 14 -4 +1.29e+00,-8.18e-02,-1.51e+01,+1.53e+01 2 -11 15 21 +4.88e-01,-5.08e-01,-1.92e+00,+2.05e+00 2 -11 16 2 -9.07e-01,+1.46e+00,-7.69e+02,+7.69e+02 2 -11 O: 1 60 92 +8.69e-01,+8.70e-01,-7.86e+02,+7.87e+02 2 -12 GenVertex: -12 ID: 0 (X,cT):0 I: 1 60 92 +8.69e-01,+8.70e-01,-7.86e+02,+7.87e+02 2 -12 O: 9 61 -411 +1.17e+00,-7.45e-01,-1.69e+01,+1.70e+01 2 -23 62 213 +3.75e-01,+1.10e-01,-1.55e+01,+1.55e+01 2 -24 63 -213 -2.12e-01,+3.90e-01,-2.59e+01,+2.59e+01 2 -25 64 211 -1.05e-01,-5.69e-02,-2.48e+00,+2.49e+00 1 65 -2224 +6.40e-01,-4.38e-02,-3.37e+01,+3.37e+01 2 -26 66 111 -4.90e-02,-9.36e-02,-1.74e+00,+1.75e+00 2 -27 67 2212 -1.80e-01,+2.19e-01,-1.61e+02,+1.61e+02 1 68 213 -7.62e-01,+8.59e-01,-1.24e+02,+1.24e+02 2 -28 69 331 -6.07e-03,+2.31e-01,-4.06e+02,+4.06e+02 2 -29 GenVertex: -13 ID: 0 (X,cT):0 I:15 17 1 +1.15e+00,+3.44e-01,+1.06e+03,+1.06e+03 2 -13 18 21 +1.20e+00,-9.86e-01,+1.50e+03,+1.50e+03 2 -13 19 21 -2.41e-01,+9.77e-01,+8.69e+00,+8.75e+00 2 -13 20 21 +2.75e+00,-3.24e+00,+2.54e+01,+2.58e+01 2 -13 21 21 -2.06e-01,+2.42e+00,+4.94e+00,+5.51e+00 2 -13 22 21 -2.75e+00,+3.24e+00,+6.70e-01,+4.31e+00 2 -13 23 21 +2.06e-01,-2.42e+00,-1.42e-01,+2.44e+00 2 -13 24 21 +1.26e+00,-2.67e-01,-5.83e+01,+5.83e+01 2 -13 25 21 -1.26e+00,+2.67e-01,-3.61e+01,+3.61e+01 2 -13 26 21 +7.32e-01,+2.49e-01,-7.83e-01,+1.10e+00 2 -13 27 21 +3.85e-01,+1.64e-01,-4.19e+00,+4.21e+00 2 -13 28 21 -4.96e-01,-4.44e-02,-1.40e-01,+5.17e-01 2 -13 29 21 +6.49e-03,+1.49e-01,+1.79e-01,+2.33e-01 2 -13 30 21 +8.07e-01,-3.38e-01,-4.12e+00,+4.21e+00 2 -13 31 2101 -1.68e+00,+7.10e-01,-6.09e+03,+6.09e+03 2 -13 O: 1 70 92 +1.87e+00,+1.22e+00,-3.60e+03,+8.80e+03 2 -14 GenVertex: -14 ID: 0 (X,cT):0 I: 1 70 92 +1.87e+00,+1.22e+00,-3.60e+03,+8.80e+03 2 -14 O:50 71 -213 +8.77e-01,-1.31e-01,+7.75e+02,+7.75e+02 2 -30 72 223 +4.83e-01,-1.99e-02,+9.91e+02,+9.91e+02 2 -31 73 211 +1.39e-01,-4.36e-01,+6.87e+01,+6.87e+01 1 74 111 +4.25e-01,+1.23e-01,+3.50e+02,+3.50e+02 2 -32 75 113 +2.52e-01,+7.95e-02,+2.26e+02,+2.26e+02 2 -33 76 -211 -1.92e-02,-5.31e-01,+1.38e+02,+1.38e+02 1 77 213 -1.40e-01,+5.44e-01,+1.17e+01,+1.17e+01 2 -34 78 223 +8.16e-01,-8.58e-02,+9.26e+00,+9.33e+00 2 -35 79 -211 -1.42e-01,-3.84e-01,+1.50e+00,+1.56e+00 1 80 111 +9.55e-01,-3.95e-01,+7.31e+00,+7.39e+00 2 -36 81 211 +7.25e-02,+1.32e-01,+3.67e+00,+3.67e+00 1 82 -213 +4.41e-01,-2.10e-01,+3.06e+00,+3.21e+00 2 -37 83 111 -2.30e-02,-2.81e-01,+6.30e-01,+7.04e-01 2 -38 84 213 +2.26e-01,+6.47e-01,+8.08e-01,+1.29e+00 2 -39 85 111 -3.91e-01,+2.29e-01,+1.10e+00,+1.20e+00 2 -40 86 2112 +3.73e-01,-2.80e-01,+4.17e+00,+4.30e+00 1 87 -2212 -4.45e-01,-2.18e-01,+1.75e+00,+2.05e+00 1 88 321 -5.04e-02,+1.88e+00,+2.73e+00,+3.35e+00 1 89 -323 -8.11e-01,+1.05e+00,-8.45e-02,+1.62e+00 2 -41 90 211 -8.98e-01,+2.30e-01,+4.09e-01,+1.02e+00 1 91 331 +3.86e-01,-6.23e-01,+1.45e-02,+1.21e+00 2 -42 92 113 -4.23e-01,-1.78e-01,-1.49e+00,+1.88e+00 2 -43 93 -213 -5.92e-02,-3.61e-01,+5.07e-03,+8.56e-01 2 -44 94 223 +4.45e-01,-3.66e-01,-9.36e+00,+9.41e+00 2 -45 95 213 +2.54e-01,-5.25e-01,-1.60e+01,+1.60e+01 2 -46 96 -211 -4.00e-01,+6.08e-01,-5.23e+00,+5.28e+00 1 97 221 -5.41e-02,-1.87e-01,-6.73e+00,+6.76e+00 2 -47 98 213 +3.23e-01,-3.93e-01,-3.04e+01,+3.04e+01 2 -48 99 -211 +4.09e-01,+2.45e-01,-2.41e+00,+2.47e+00 1 100 211 -3.86e-01,+4.88e-01,-1.26e+01,+1.26e+01 1 101 313 -2.75e-02,-4.07e-01,-4.39e+00,+4.50e+00 2 -49 102 3224 -9.27e-02,+6.56e-02,-4.02e+00,+4.25e+00 2 -50 103 -3224 +3.39e-01,+3.12e-01,-4.38e+00,+4.61e+00 2 -51 104 -313 +2.92e-01,+4.76e-02,-2.86e+00,+3.01e+00 2 -52 105 -211 +3.31e-01,+4.87e-01,-6.87e-01,+9.15e-01 1 106 213 -6.60e-01,-2.78e-01,-8.64e+00,+8.71e+00 2 -53 107 -211 +6.75e-01,+2.83e-01,-2.31e+01,+2.31e+01 1 108 113 -3.81e-01,-3.07e-01,-1.20e+01,+1.20e+01 2 -54 109 331 +1.49e-01,-1.13e-01,-9.98e+00,+1.00e+01 2 -55 110 221 +1.90e-01,+1.12e-01,-1.13e+01,+1.13e+01 2 -56 111 3122 -1.65e-02,+1.79e-01,-9.78e+01,+9.79e+01 2 -57 112 -3212 +2.15e-01,-4.95e-01,-8.80e+01,+8.80e+01 2 -58 113 213 -3.03e-01,-1.82e-01,-9.37e+01,+9.37e+01 2 -59 114 -213 -1.44e-01,+8.04e-01,-1.58e+02,+1.58e+02 2 -60 115 111 +1.71e-01,-3.66e-01,-8.10e+01,+8.10e+01 2 -61 116 111 +1.58e-02,-4.83e-02,-1.03e+01,+1.03e+01 2 -62 117 213 +1.97e-01,-1.52e-01,-6.47e+01,+6.47e+01 2 -63 118 -211 -7.18e-01,-2.97e-01,-8.00e+02,+8.00e+02 1 119 211 -7.07e-02,+7.15e-01,-1.93e+02,+1.93e+02 1 120 2112 -9.26e-01,+2.08e-01,-4.44e+03,+4.44e+03 1 GenVertex: -15 ID: 0 (X,cT):0 I:13 32 -3 -1.82e+00,-2.61e+00,+7.50e+00,+8.16e+00 2 -15 33 21 -7.71e+00,-1.21e+01,+4.11e+01,+4.35e+01 2 -15 34 21 -8.67e-01,-2.38e-01,+4.15e+00,+4.25e+00 2 -15 35 21 -2.74e+00,-4.91e+00,+4.57e+01,+4.60e+01 2 -15 36 21 -8.18e-03,-2.41e-02,+6.87e+00,+6.87e+00 2 -15 37 21 +6.44e+00,+4.00e+00,+1.60e+01,+1.77e+01 2 -15 38 21 +4.38e+00,+1.45e+00,+9.46e+00,+1.05e+01 2 -15 39 21 +1.58e+00,+6.33e-01,+4.94e+00,+5.22e+00 2 -15 40 21 +2.17e-01,-2.86e-01,+9.31e-01,+9.98e-01 2 -15 41 21 +4.47e-01,+3.78e-01,+7.65e-01,+9.64e-01 2 -15 42 21 +7.09e-01,+9.44e-01,+5.31e-01,+1.30e+00 2 -15 43 21 +1.16e+00,+6.43e+00,+1.42e+00,+6.68e+00 2 -15 44 4 +1.18e+00,+8.24e+00,+1.21e+00,+8.54e+00 2 -15 O: 1 121 92 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -16 GenVertex: -16 ID: 0 (X,cT):0 I: 1 121 92 +2.99e+00,+1.92e+00,+1.40e+02,+1.61e+02 2 -16 O:23 122 321 -1.96e+00,-3.06e+00,+9.03e+00,+9.75e+00 1 123 111 -2.12e+00,-3.08e+00,+9.76e+00,+1.05e+01 2 -64 124 -213 -5.88e+00,-8.86e+00,+3.20e+01,+3.37e+01 2 -65 125 213 -1.14e+00,-2.50e+00,+2.11e+01,+2.13e+01 2 -66 126 -211 -5.99e-01,+2.19e-01,+6.14e+00,+6.17e+00 1 127 213 -4.56e-01,-3.25e-01,+6.76e+00,+6.83e+00 2 -67 128 113 -5.74e-01,-1.35e+00,+1.43e+01,+1.44e+01 2 -68 129 -323 +1.34e-01,+5.60e-03,+2.79e+00,+2.97e+00 2 -69 130 313 +1.23e+00,+3.78e-01,+4.82e+00,+5.07e+00 2 -70 131 211 +1.61e-01,-7.11e-02,+1.18e+00,+1.20e+00 1 132 223 +1.28e+00,+8.15e-01,+4.23e+00,+4.56e+00 2 -71 133 113 +1.26e+00,+4.72e-01,+3.35e+00,+3.70e+00 2 -72 134 -213 +1.57e+00,+6.28e-01,+3.98e+00,+4.38e+00 2 -73 135 -313 +3.00e+00,+1.43e+00,+7.23e+00,+8.00e+00 2 -74 136 311 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -75 137 213 +1.67e+00,+8.56e-01,+3.07e+00,+3.73e+00 2 -76 138 -2212 +5.65e-01,+1.00e+00,+2.00e+00,+2.49e+00 1 139 -213 +9.60e-01,+4.56e-01,+6.33e-01,+1.45e+00 2 -77 140 2224 -7.85e-02,+1.45e+00,+2.17e+00,+2.84e+00 2 -78 141 -213 +4.31e-01,+9.71e-01,+9.32e-01,+1.63e+00 2 -79 142 223 +8.48e-01,+6.97e-01,+5.16e-01,+1.44e+00 2 -80 143 213 -6.94e-02,+8.64e-01,-4.70e-02,+1.03e+00 2 -81 144 423 +1.98e+00,+1.05e+01,+2.27e+00,+1.11e+01 2 -82 Vertex: -17 ID: 0 (X,cT)=-1.98e+00,-5.19e-01,+6.36e+00,+7.32e+00 I: 1 46 3122 -7.38e-01,-1.93e-01,+2.36e+00,+2.72e+00 2 -17 O: 2 145 2212 -5.64e-01,-8.23e-02,+1.83e+00,+2.14e+00 1 146 -211 -1.74e-01,-1.11e-01,+5.31e-01,+5.86e-01 1 GenVertex: -18 ID: 0 (X,cT):0 I: 1 47 113 -5.86e-01,-3.69e-01,+1.55e+00,+1.88e+00 2 -18 O: 2 147 211 -1.24e-01,+1.52e-01,+9.85e-02,+2.60e-01 1 148 -211 -4.62e-01,-5.21e-01,+1.46e+00,+1.62e+00 1 GenVertex: -19 ID: 0 (X,cT):0 I: 1 52 213 +2.12e-01,+2.10e-02,+6.75e+00,+6.80e+00 2 -19 O: 2 149 211 -1.64e-01,-1.62e-01,+1.04e+00,+1.07e+00 1 150 111 +3.76e-01,+1.83e-01,+5.71e+00,+5.73e+00 2 -83 Vertex: -20 ID: 0 (X,cT)=-2.13e-05,+2.20e-05,+2.79e-04,+2.81e-04 I: 1 53 111 -3.32e-01,+3.42e-01,+4.34e+00,+4.37e+00 2 -20 O: 2 151 22 -2.03e-01,+2.63e-01,+2.49e+00,+2.52e+00 1 152 22 -1.29e-01,+7.96e-02,+1.85e+00,+1.85e+00 1 GenVertex: -21 ID: 0 (X,cT):0 I: 1 56 311 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -21 O: 1 153 310 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -84 GenVertex: -22 ID: 0 (X,cT):0 I: 1 57 -311 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -22 O: 1 154 310 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -85 Vertex: -23 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 61 -411 +1.17e+00,-7.45e-01,-1.69e+01,+1.70e+01 2 -23 O: 3 155 333 +2.30e-01,-1.89e-01,-8.25e+00,+8.32e+00 2 -86 156 -211 +6.77e-01,-6.36e-01,-5.99e+00,+6.06e+00 1 157 111 +2.62e-01,+8.01e-02,-2.63e+00,+2.65e+00 2 -87 GenVertex: -24 ID: 0 (X,cT):0 I: 1 62 213 +3.75e-01,+1.10e-01,-1.55e+01,+1.55e+01 2 -24 O: 2 158 211 +2.66e-01,+3.53e-01,-5.37e+00,+5.39e+00 1 159 111 +1.09e-01,-2.42e-01,-1.01e+01,+1.01e+01 2 -88 GenVertex: -25 ID: 0 (X,cT):0 I: 1 63 -213 -2.12e-01,+3.90e-01,-2.59e+01,+2.59e+01 2 -25 O: 2 160 -211 -2.44e-01,+2.07e-01,-5.57e+00,+5.58e+00 1 161 111 +3.25e-02,+1.83e-01,-2.04e+01,+2.04e+01 2 -89 GenVertex: -26 ID: 0 (X,cT):0 I: 1 65 -2224 +6.40e-01,-4.38e-02,-3.37e+01,+3.37e+01 2 -26 O: 2 162 -2212 +6.79e-01,-2.69e-01,-2.54e+01,+2.55e+01 1 163 -211 -3.93e-02,+2.26e-01,-8.26e+00,+8.26e+00 1 Vertex: -27 ID: 0 (X,cT)=-1.75e-05,-3.35e-05,-6.23e-04,+6.26e-04 I: 1 66 111 -4.90e-02,-9.36e-02,-1.74e+00,+1.75e+00 2 -27 O: 2 164 22 -1.39e-02,+3.36e-02,-2.56e-01,+2.59e-01 1 165 22 -3.51e-02,-1.27e-01,-1.48e+00,+1.49e+00 1 GenVertex: -28 ID: 0 (X,cT):0 I: 1 68 213 -7.62e-01,+8.59e-01,-1.24e+02,+1.24e+02 2 -28 O: 2 166 211 +1.17e-01,+5.92e-02,-2.47e+01,+2.47e+01 1 167 111 -8.79e-01,+8.00e-01,-9.90e+01,+9.90e+01 2 -90 GenVertex: -29 ID: 0 (X,cT):0 I: 1 69 331 -6.07e-03,+2.31e-01,-4.06e+02,+4.06e+02 2 -29 O: 3 168 211 -6.75e-02,+2.14e-02,-4.20e+01,+4.20e+01 1 169 -211 +4.45e-02,-6.99e-02,-1.28e+02,+1.28e+02 1 170 221 +1.70e-02,+2.79e-01,-2.36e+02,+2.36e+02 2 -91 GenVertex: -30 ID: 0 (X,cT):0 I: 1 71 -213 +8.77e-01,-1.31e-01,+7.75e+02,+7.75e+02 2 -30 O: 2 171 -211 +8.64e-01,-7.07e-02,+7.47e+02,+7.47e+02 1 172 111 +1.31e-02,-5.99e-02,+2.75e+01,+2.75e+01 2 -92 GenVertex: -31 ID: 0 (X,cT):0 I: 1 72 223 +4.83e-01,-1.99e-02,+9.91e+02,+9.91e+02 2 -31 O: 2 173 22 +1.69e-01,+3.61e-01,+3.72e+02,+3.72e+02 1 174 111 +3.14e-01,-3.81e-01,+6.19e+02,+6.19e+02 2 -93 Vertex: -32 ID: 0 (X,cT)=+5.64e-07,+1.63e-07,+4.65e-04,+4.65e-04 I: 1 74 111 +4.25e-01,+1.23e-01,+3.50e+02,+3.50e+02 2 -32 O: 2 175 22 +3.82e-02,+2.40e-02,+1.50e+01,+1.50e+01 1 176 22 +3.87e-01,+9.85e-02,+3.35e+02,+3.35e+02 1 GenVertex: -33 ID: 0 (X,cT):0 I: 1 75 113 +2.52e-01,+7.95e-02,+2.26e+02,+2.26e+02 2 -33 O: 2 177 211 +1.75e-01,-7.23e-02,+1.95e+01,+1.95e+01 1 178 -211 +7.67e-02,+1.52e-01,+2.07e+02,+2.07e+02 1 GenVertex: -34 ID: 0 (X,cT):0 I: 1 77 213 -1.40e-01,+5.44e-01,+1.17e+01,+1.17e+01 2 -34 O: 2 179 211 +1.63e-01,+5.62e-01,+8.28e+00,+8.30e+00 1 180 111 -3.03e-01,-1.88e-02,+3.39e+00,+3.41e+00 2 -94 GenVertex: -35 ID: 0 (X,cT):0 I: 1 78 223 +8.16e-01,-8.58e-02,+9.26e+00,+9.33e+00 2 -35 O: 3 181 -211 +1.94e-01,+5.53e-02,+3.19e+00,+3.20e+00 1 182 211 +5.31e-01,-7.80e-02,+5.61e+00,+5.64e+00 1 183 111 +9.15e-02,-6.31e-02,+4.61e-01,+4.93e-01 2 -95 Vertex: -36 ID: 0 (X,cT)=+5.64e-04,-2.33e-04,+4.32e-03,+4.36e-03 I: 1 80 111 +9.55e-01,-3.95e-01,+7.31e+00,+7.39e+00 2 -36 O: 2 184 22 +6.02e-01,-2.54e-01,+4.15e+00,+4.20e+00 1 185 22 +3.53e-01,-1.41e-01,+3.17e+00,+3.19e+00 1 GenVertex: -37 ID: 0 (X,cT):0 I: 1 82 -213 +4.41e-01,-2.10e-01,+3.06e+00,+3.21e+00 2 -37 O: 2 186 -211 +1.14e-01,+2.65e-01,+6.48e-01,+7.23e-01 1 187 111 +3.27e-01,-4.75e-01,+2.41e+00,+2.49e+00 2 -96 Vertex: -38 ID: 0 (X,cT)=-9.22e-06,-1.12e-04,+2.52e-04,+2.82e-04 I: 1 83 111 -2.30e-02,-2.81e-01,+6.30e-01,+7.04e-01 2 -38 O: 2 188 22 +4.43e-02,-1.42e-01,+3.96e-01,+4.23e-01 1 189 22 -6.73e-02,-1.38e-01,+2.35e-01,+2.81e-01 1 GenVertex: -39 ID: 0 (X,cT):0 I: 1 84 213 +2.26e-01,+6.47e-01,+8.08e-01,+1.29e+00 2 -39 O: 2 190 211 +4.03e-01,+6.37e-01,+5.44e-01,+9.40e-01 1 191 111 -1.77e-01,+1.02e-02,+2.64e-01,+3.45e-01 2 -97 Vertex: -40 ID: 0 (X,cT)=-1.15e-04,+6.72e-05,+3.24e-04,+3.52e-04 I: 1 85 111 -3.91e-01,+2.29e-01,+1.10e+00,+1.20e+00 2 -40 O: 2 192 22 -3.95e-01,+2.08e-01,+1.01e+00,+1.10e+00 1 193 22 +4.48e-03,+2.07e-02,+9.60e-02,+9.84e-02 1 GenVertex: -41 ID: 0 (X,cT):0 I: 1 89 -323 -8.11e-01,+1.05e+00,-8.45e-02,+1.62e+00 2 -41 O: 2 194 -311 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -98 195 -211 -1.38e-01,+1.03e-02,-1.96e-01,+2.78e-01 1 GenVertex: -42 ID: 0 (X,cT):0 I: 1 91 331 +3.86e-01,-6.23e-01,+1.45e-02,+1.21e+00 2 -42 O: 2 196 22 +1.19e-01,+6.24e-02,+9.24e-03,+1.35e-01 1 197 223 +2.67e-01,-6.85e-01,+5.28e-03,+1.07e+00 2 -99 GenVertex: -43 ID: 0 (X,cT):0 I: 1 92 113 -4.23e-01,-1.78e-01,-1.49e+00,+1.88e+00 2 -43 O: 2 198 -211 +1.17e-01,-4.45e-01,-9.01e-01,+1.02e+00 1 199 211 -5.40e-01,+2.67e-01,-5.91e-01,+8.55e-01 1 GenVertex: -44 ID: 0 (X,cT):0 I: 1 93 -213 -5.92e-02,-3.61e-01,+5.07e-03,+8.56e-01 2 -44 O: 2 200 -211 -2.83e-01,-1.27e-01,+2.55e-01,+4.25e-01 1 201 111 +2.24e-01,-2.34e-01,-2.50e-01,+4.31e-01 2 -100 GenVertex: -45 ID: 0 (X,cT):0 I: 1 94 223 +4.45e-01,-3.66e-01,-9.36e+00,+9.41e+00 2 -45 O: 3 202 -211 +1.94e-01,-3.87e-03,-1.49e+00,+1.51e+00 1 203 211 +9.07e-02,-4.32e-01,-4.41e+00,+4.44e+00 1 204 111 +1.61e-01,+6.96e-02,-3.46e+00,+3.46e+00 2 -101 GenVertex: -46 ID: 0 (X,cT):0 I: 1 95 213 +2.54e-01,-5.25e-01,-1.60e+01,+1.60e+01 2 -46 O: 2 205 211 +3.16e-01,+8.20e-02,-4.10e+00,+4.12e+00 1 206 111 -6.15e-02,-6.07e-01,-1.19e+01,+1.19e+01 2 -102 GenVertex: -47 ID: 0 (X,cT):0 I: 1 97 221 -5.41e-02,-1.87e-01,-6.73e+00,+6.76e+00 2 -47 O: 2 207 22 +1.31e-01,-6.72e-02,-5.05e-01,+5.27e-01 1 208 22 -1.86e-01,-1.20e-01,-6.23e+00,+6.23e+00 1 GenVertex: -48 ID: 0 (X,cT):0 I: 1 98 213 +3.23e-01,-3.93e-01,-3.04e+01,+3.04e+01 2 -48 O: 2 209 211 +1.15e-01,+1.76e-01,-4.43e+00,+4.44e+00 1 210 111 +2.07e-01,-5.69e-01,-2.59e+01,+2.60e+01 2 -103 GenVertex: -49 ID: 0 (X,cT):0 I: 1 101 313 -2.75e-02,-4.07e-01,-4.39e+00,+4.50e+00 2 -49 O: 2 211 321 -1.80e-01,-1.03e-01,-3.42e+00,+3.46e+00 1 212 -211 +1.53e-01,-3.04e-01,-9.74e-01,+1.04e+00 1 GenVertex: -50 ID: 0 (X,cT):0 I: 1 102 3224 -9.27e-02,+6.56e-02,-4.02e+00,+4.25e+00 2 -50 O: 2 213 3122 +4.16e-02,-9.07e-03,-2.83e+00,+3.04e+00 2 -104 214 211 -1.34e-01,+7.47e-02,-1.19e+00,+1.21e+00 1 GenVertex: -51 ID: 0 (X,cT):0 I: 1 103 -3224 +3.39e-01,+3.12e-01,-4.38e+00,+4.61e+00 2 -51 O: 2 215 -3122 +1.46e-01,+2.95e-01,-3.91e+00,+4.08e+00 2 -105 216 -211 +1.93e-01,+1.78e-02,-4.70e-01,+5.27e-01 1 GenVertex: -52 ID: 0 (X,cT):0 I: 1 104 -313 +2.92e-01,+4.76e-02,-2.86e+00,+3.01e+00 2 -52 O: 2 217 -311 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -106 218 111 -1.49e-01,-1.50e-01,-8.06e-01,+8.44e-01 2 -107 GenVertex: -53 ID: 0 (X,cT):0 I: 1 106 213 -6.60e-01,-2.78e-01,-8.64e+00,+8.71e+00 2 -53 O: 2 219 211 -2.54e-01,-3.82e-01,-2.41e+00,+2.46e+00 1 220 111 -4.06e-01,+1.04e-01,-6.24e+00,+6.25e+00 2 -108 GenVertex: -54 ID: 0 (X,cT):0 I: 1 108 113 -3.81e-01,-3.07e-01,-1.20e+01,+1.20e+01 2 -54 O: 2 221 211 -6.88e-01,-3.06e-01,-8.19e+00,+8.22e+00 1 222 -211 +3.07e-01,-5.94e-04,-3.77e+00,+3.78e+00 1 GenVertex: -55 ID: 0 (X,cT):0 I: 1 109 331 +1.49e-01,-1.13e-01,-9.98e+00,+1.00e+01 2 -55 O: 2 223 22 +1.48e-01,+1.44e-01,-3.92e+00,+3.93e+00 1 224 113 +1.27e-03,-2.57e-01,-6.05e+00,+6.10e+00 2 -109 GenVertex: -56 ID: 0 (X,cT):0 I: 1 110 221 +1.90e-01,+1.12e-01,-1.13e+01,+1.13e+01 2 -56 O: 2 225 22 +2.75e-01,+2.47e-01,-5.10e+00,+5.11e+00 1 226 22 -8.49e-02,-1.34e-01,-6.21e+00,+6.22e+00 1 Vertex: -57 ID: 0 (X,cT)=-5.14e-01,+5.58e+00,-3.04e+03,+3.04e+03 I: 1 111 3122 -1.65e-02,+1.79e-01,-9.78e+01,+9.79e+01 2 -57 O: 2 227 2212 -5.58e-02,+1.85e-01,-7.59e+01,+7.59e+01 1 228 -211 +3.93e-02,-6.05e-03,-2.20e+01,+2.20e+01 1 GenVertex: -58 ID: 0 (X,cT):0 I: 1 112 -3212 +2.15e-01,-4.95e-01,-8.80e+01,+8.80e+01 2 -58 O: 2 229 -3122 +1.58e-01,-4.67e-01,-7.80e+01,+7.81e+01 2 -110 230 22 +5.70e-02,-2.82e-02,-9.98e+00,+9.98e+00 1 GenVertex: -59 ID: 0 (X,cT):0 I: 1 113 213 -3.03e-01,-1.82e-01,-9.37e+01,+9.37e+01 2 -59 O: 2 231 211 -2.21e-01,+1.21e-01,-3.18e+01,+3.18e+01 1 232 111 -8.21e-02,-3.03e-01,-6.19e+01,+6.19e+01 2 -111 GenVertex: -60 ID: 0 (X,cT):0 I: 1 114 -213 -1.44e-01,+8.04e-01,-1.58e+02,+1.58e+02 2 -60 O: 2 233 -211 -7.46e-02,+5.52e-02,-7.28e+01,+7.28e+01 1 234 111 -6.96e-02,+7.48e-01,-8.49e+01,+8.49e+01 2 -112 Vertex: -61 ID: 0 (X,cT)=+3.71e-05,-7.92e-05,-1.75e-02,+1.75e-02 I: 1 115 111 +1.71e-01,-3.66e-01,-8.10e+01,+8.10e+01 2 -61 O: 2 235 22 +1.31e-02,-1.04e-02,-7.90e-01,+7.90e-01 1 236 22 +1.58e-01,-3.55e-01,-8.02e+01,+8.02e+01 1 Vertex: -62 ID: 0 (X,cT)=+1.56e-06,-4.79e-06,-1.02e-03,+1.02e-03 I: 1 116 111 +1.58e-02,-4.83e-02,-1.03e+01,+1.03e+01 2 -62 O: 2 237 22 +6.98e-02,-1.50e-02,-7.25e+00,+7.25e+00 1 238 22 -5.40e-02,-3.33e-02,-3.06e+00,+3.06e+00 1 GenVertex: -63 ID: 0 (X,cT):0 I: 1 117 213 +1.97e-01,-1.52e-01,-6.47e+01,+6.47e+01 2 -63 O: 2 239 211 -1.04e-01,-4.66e-02,-3.17e+01,+3.17e+01 1 240 111 +3.00e-01,-1.06e-01,-3.30e+01,+3.30e+01 2 -113 Vertex: -64 ID: 0 (X,cT)=-5.12e-04,-7.43e-04,+2.35e-03,+2.52e-03 I: 1 123 111 -2.12e+00,-3.08e+00,+9.76e+00,+1.05e+01 2 -64 O: 2 241 22 -5.87e-01,-9.54e-01,+2.86e+00,+3.07e+00 1 242 22 -1.53e+00,-2.13e+00,+6.90e+00,+7.38e+00 1 GenVertex: -65 ID: 0 (X,cT):0 I: 1 124 -213 -5.88e+00,-8.86e+00,+3.20e+01,+3.37e+01 2 -65 O: 2 243 -211 -4.18e+00,-5.79e+00,+2.07e+01,+2.19e+01 1 244 111 -1.70e+00,-3.07e+00,+1.13e+01,+1.18e+01 2 -114 GenVertex: -66 ID: 0 (X,cT):0 I: 1 125 213 -1.14e+00,-2.50e+00,+2.11e+01,+2.13e+01 2 -66 O: 2 245 211 -7.92e-01,-2.38e+00,+1.85e+01,+1.87e+01 1 246 111 -3.49e-01,-1.15e-01,+2.59e+00,+2.62e+00 2 -115 GenVertex: -67 ID: 0 (X,cT):0 I: 1 127 213 -4.56e-01,-3.25e-01,+6.76e+00,+6.83e+00 2 -67 O: 2 247 211 -4.55e-01,-3.35e-01,+2.33e+00,+2.40e+00 1 248 111 -4.99e-04,+9.32e-03,+4.43e+00,+4.43e+00 2 -116 GenVertex: -68 ID: 0 (X,cT):0 I: 1 128 113 -5.74e-01,-1.35e+00,+1.43e+01,+1.44e+01 2 -68 O: 2 249 211 +1.26e-01,-4.94e-02,+1.68e+00,+1.69e+00 1 250 -211 -7.01e-01,-1.30e+00,+1.26e+01,+1.27e+01 1 GenVertex: -69 ID: 0 (X,cT):0 I: 1 129 -323 +1.34e-01,+5.60e-03,+2.79e+00,+2.97e+00 2 -69 O: 2 251 -321 -1.27e-01,-3.08e-01,+1.69e+00,+1.79e+00 1 252 111 +2.61e-01,+3.14e-01,+1.11e+00,+1.19e+00 2 -117 GenVertex: -70 ID: 0 (X,cT):0 I: 1 130 313 +1.23e+00,+3.78e-01,+4.82e+00,+5.07e+00 2 -70 O: 2 253 321 +7.11e-01,+3.97e-01,+2.18e+00,+2.38e+00 1 254 -211 +5.21e-01,-1.88e-02,+2.64e+00,+2.70e+00 1 GenVertex: -71 ID: 0 (X,cT):0 I: 1 132 223 +1.28e+00,+8.15e-01,+4.23e+00,+4.56e+00 2 -71 O: 3 255 -211 +8.57e-01,+4.62e-01,+2.16e+00,+2.37e+00 1 256 211 +1.83e-01,+2.81e-01,+7.00e-01,+7.88e-01 1 257 111 +2.39e-01,+7.23e-02,+1.37e+00,+1.39e+00 2 -118 GenVertex: -72 ID: 0 (X,cT):0 I: 1 133 113 +1.26e+00,+4.72e-01,+3.35e+00,+3.70e+00 2 -72 O: 2 258 -211 +1.28e+00,+4.76e-01,+2.71e+00,+3.04e+00 1 259 211 -1.96e-02,-4.19e-03,+6.44e-01,+6.60e-01 1 GenVertex: -73 ID: 0 (X,cT):0 I: 1 134 -213 +1.57e+00,+6.28e-01,+3.98e+00,+4.38e+00 2 -73 O: 2 260 -211 +1.44e+00,+5.73e-01,+3.84e+00,+4.15e+00 1 261 111 +1.30e-01,+5.50e-02,+1.39e-01,+2.40e-01 2 -119 GenVertex: -74 ID: 0 (X,cT):0 I: 1 135 -313 +3.00e+00,+1.43e+00,+7.23e+00,+8.00e+00 2 -74 O: 2 262 -321 +2.35e+00,+8.76e-01,+5.04e+00,+5.65e+00 1 263 211 +6.48e-01,+5.54e-01,+2.19e+00,+2.35e+00 1 GenVertex: -75 ID: 0 (X,cT):0 I: 1 136 311 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -75 O: 1 264 310 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -120 GenVertex: -76 ID: 0 (X,cT):0 I: 1 137 213 +1.67e+00,+8.56e-01,+3.07e+00,+3.73e+00 2 -76 O: 2 265 211 +1.95e-01,+2.18e-01,+1.27e+00,+1.31e+00 1 266 111 +1.48e+00,+6.38e-01,+1.80e+00,+2.42e+00 2 -121 GenVertex: -77 ID: 0 (X,cT):0 I: 1 139 -213 +9.60e-01,+4.56e-01,+6.33e-01,+1.45e+00 2 -77 O: 2 267 -211 +1.25e-01,+3.81e-01,+3.55e-01,+5.53e-01 1 268 111 +8.35e-01,+7.46e-02,+2.78e-01,+8.93e-01 2 -122 GenVertex: -78 ID: 0 (X,cT):0 I: 1 140 2224 -7.85e-02,+1.45e+00,+2.17e+00,+2.84e+00 2 -78 O: 2 269 2212 -9.22e-02,+1.14e+00,+1.63e+00,+2.20e+00 1 270 211 +1.37e-02,+3.16e-01,+5.41e-01,+6.42e-01 1 GenVertex: -79 ID: 0 (X,cT):0 I: 1 141 -213 +4.31e-01,+9.71e-01,+9.32e-01,+1.63e+00 2 -79 O: 2 271 -211 -2.06e-01,+4.24e-01,+3.24e-01,+5.89e-01 1 272 111 +6.37e-01,+5.47e-01,+6.08e-01,+1.05e+00 2 -123 GenVertex: -80 ID: 0 (X,cT):0 I: 1 142 223 +8.48e-01,+6.97e-01,+5.16e-01,+1.44e+00 2 -80 O: 3 273 -211 +1.53e-01,+4.52e-01,+2.80e-01,+5.70e-01 1 274 211 +4.07e-01,+2.65e-01,+6.34e-02,+5.10e-01 1 275 111 +2.87e-01,-1.98e-02,+1.73e-01,+3.62e-01 2 -124 GenVertex: -81 ID: 0 (X,cT):0 I: 1 143 213 -6.94e-02,+8.64e-01,-4.70e-02,+1.03e+00 2 -81 O: 2 276 211 +2.02e-01,+4.34e-01,-1.49e-02,+4.99e-01 1 277 111 -2.71e-01,+4.30e-01,-3.21e-02,+5.27e-01 2 -125 GenVertex: -82 ID: 0 (X,cT):0 I: 1 144 423 +1.98e+00,+1.05e+01,+2.27e+00,+1.11e+01 2 -82 O: 2 278 421 +1.91e+00,+9.98e+00,+2.04e+00,+1.05e+01 2 -126 279 22 +6.54e-02,+4.86e-01,+2.36e-01,+5.44e-01 1 Vertex: -83 ID: 0 (X,cT)=+9.32e-05,+4.53e-05,+1.42e-03,+1.42e-03 I: 1 150 111 +3.76e-01,+1.83e-01,+5.71e+00,+5.73e+00 2 -83 O: 2 280 22 +6.01e-02,+8.11e-02,+9.60e-01,+9.65e-01 1 281 22 +3.16e-01,+1.02e-01,+4.75e+00,+4.77e+00 1 Vertex: -84 ID: 0 (X,cT)=+2.32e+01,+9.03e+00,+1.95e+03,+1.95e+03 I: 1 153 310 +5.21e-01,+2.03e-01,+4.37e+01,+4.37e+01 2 -84 O: 2 282 -211 +3.29e-01,+2.54e-01,+1.83e+01,+1.83e+01 1 283 211 +1.92e-01,-5.16e-02,+2.54e+01,+2.54e+01 1 Vertex: -85 ID: 0 (X,cT)=-1.83e+02,-4.04e+01,+1.00e+04,+1.00e+04 I: 1 154 310 -1.00e+00,-2.22e-01,+5.49e+01,+5.49e+01 2 -85 O: 2 284 211 -8.63e-01,-6.91e-02,+4.60e+01,+4.60e+01 1 285 -211 -1.39e-01,-1.53e-01,+8.90e+00,+8.90e+00 1 Vertex: -86 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 155 333 +2.30e-01,-1.89e-01,-8.25e+00,+8.32e+00 2 -86 O: 2 286 321 +9.39e-02,-9.01e-02,-3.01e+00,+3.05e+00 1 287 -321 +1.36e-01,-9.88e-02,-5.24e+00,+5.26e+00 1 Vertex: -87 ID: 0 (X,cT)=+2.19e-01,-1.40e-01,-3.16e+00,+3.19e+00 I: 1 157 111 +2.62e-01,+8.01e-02,-2.63e+00,+2.65e+00 2 -87 O: 2 288 22 +6.93e-02,+2.16e-02,-2.87e-01,+2.96e-01 1 289 22 +1.92e-01,+5.85e-02,-2.34e+00,+2.35e+00 1 Vertex: -88 ID: 0 (X,cT)=+4.79e-05,-1.06e-04,-4.42e-03,+4.42e-03 I: 1 159 111 +1.09e-01,-2.42e-01,-1.01e+01,+1.01e+01 2 -88 O: 2 290 22 +1.16e-01,-2.57e-01,-9.47e+00,+9.47e+00 1 291 22 -7.10e-03,+1.44e-02,-6.10e-01,+6.10e-01 1 Vertex: -89 ID: 0 (X,cT)=+2.80e-06,+1.58e-05,-1.75e-03,+1.75e-03 I: 1 161 111 +3.25e-02,+1.83e-01,-2.04e+01,+2.04e+01 2 -89 O: 2 292 22 -2.46e-02,+1.26e-01,-1.62e+01,+1.62e+01 1 293 22 +5.70e-02,+5.71e-02,-4.13e+00,+4.13e+00 1 Vertex: -90 ID: 0 (X,cT)=-1.67e-04,+1.52e-04,-1.88e-02,+1.88e-02 I: 1 167 111 -8.79e-01,+8.00e-01,-9.90e+01,+9.90e+01 2 -90 O: 2 294 22 -7.40e-01,+6.03e-01,-8.01e+01,+8.02e+01 1 295 22 -1.40e-01,+1.97e-01,-1.88e+01,+1.88e+01 1 GenVertex: -91 ID: 0 (X,cT):0 I: 1 170 221 +1.70e-02,+2.79e-01,-2.36e+02,+2.36e+02 2 -91 O: 3 296 211 +2.05e-02,+9.13e-02,-1.04e+02,+1.04e+02 1 297 -211 -1.93e-02,+2.51e-05,-2.38e+01,+2.38e+01 1 298 111 +1.58e-02,+1.88e-01,-1.07e+02,+1.07e+02 2 -127 Vertex: -92 ID: 0 (X,cT)=+1.90e-06,-8.69e-06,+3.99e-03,+3.99e-03 I: 1 172 111 +1.31e-02,-5.99e-02,+2.75e+01,+2.75e+01 2 -92 O: 2 299 22 -5.99e-02,-4.15e-02,+1.39e+01,+1.39e+01 1 300 22 +7.30e-02,-1.84e-02,+1.36e+01,+1.36e+01 1 Vertex: -93 ID: 0 (X,cT)=+6.44e-05,-7.82e-05,+1.27e-01,+1.27e-01 I: 1 174 111 +3.14e-01,-3.81e-01,+6.19e+02,+6.19e+02 2 -93 O: 2 301 22 +1.59e-01,-1.24e-01,+1.91e+02,+1.91e+02 1 302 22 +1.55e-01,-2.57e-01,+4.28e+02,+4.28e+02 1 Vertex: -94 ID: 0 (X,cT)=-1.20e-04,-7.40e-06,+1.34e-03,+1.34e-03 I: 1 180 111 -3.03e-01,-1.88e-02,+3.39e+00,+3.41e+00 2 -94 O: 2 303 22 -2.55e-01,-5.43e-02,+2.33e+00,+2.34e+00 1 304 22 -4.81e-02,+3.55e-02,+1.06e+00,+1.07e+00 1 Vertex: -95 ID: 0 (X,cT)=+8.39e-06,-5.78e-06,+4.22e-05,+4.52e-05 I: 1 183 111 +9.15e-02,-6.31e-02,+4.61e-01,+4.93e-01 2 -95 O: 2 305 22 -7.44e-03,+1.71e-02,+2.17e-01,+2.18e-01 1 306 22 +9.90e-02,-8.02e-02,+2.44e-01,+2.75e-01 1 Vertex: -96 ID: 0 (X,cT)=+1.97e-04,-2.86e-04,+1.45e-03,+1.50e-03 I: 1 187 111 +3.27e-01,-4.75e-01,+2.41e+00,+2.49e+00 2 -96 O: 2 307 22 +1.09e-01,-8.71e-02,+4.20e-01,+4.42e-01 1 308 22 +2.18e-01,-3.88e-01,+1.99e+00,+2.04e+00 1 Vertex: -97 ID: 0 (X,cT)=-2.20e-05,+1.26e-06,+3.28e-05,+4.30e-05 I: 1 191 111 -1.77e-01,+1.02e-02,+2.64e-01,+3.45e-01 2 -97 O: 2 309 22 -1.93e-01,-1.44e-02,+2.33e-01,+3.02e-01 1 310 22 +1.59e-02,+2.46e-02,+3.11e-02,+4.27e-02 1 GenVertex: -98 ID: 0 (X,cT):0 I: 1 194 -311 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -98 O: 1 311 310 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -128 GenVertex: -99 ID: 0 (X,cT):0 I: 1 197 223 +2.67e-01,-6.85e-01,+5.28e-03,+1.07e+00 2 -99 O: 3 312 -211 +3.37e-02,-3.82e-01,+1.85e-01,+4.48e-01 1 313 211 -5.34e-02,-2.21e-01,-1.09e-01,+2.88e-01 1 314 111 +2.87e-01,-8.20e-02,-7.13e-02,+3.35e-01 2 -129 Vertex: -100 ID: 0 (X,cT)=+8.32e-05,-8.72e-05,-9.31e-05,+1.60e-04 I: 1 201 111 +2.24e-01,-2.34e-01,-2.50e-01,+4.31e-01 2 -100 O: 2 315 22 -5.17e-03,-2.48e-02,+8.81e-03,+2.68e-02 1 316 22 +2.29e-01,-2.09e-01,-2.59e-01,+4.04e-01 1 Vertex: -101 ID: 0 (X,cT)=+4.90e-05,+2.12e-05,-1.05e-03,+1.06e-03 I: 1 204 111 +1.61e-01,+6.96e-02,-3.46e+00,+3.46e+00 2 -101 O: 2 317 22 +1.65e-02,+6.11e-02,-1.68e+00,+1.68e+00 1 318 22 +1.44e-01,+8.51e-03,-1.77e+00,+1.78e+00 1 Vertex: -102 ID: 0 (X,cT)=-1.02e-05,-1.01e-04,-1.98e-03,+1.98e-03 I: 1 206 111 -6.15e-02,-6.07e-01,-1.19e+01,+1.19e+01 2 -102 O: 2 319 22 -5.19e-02,-6.12e-01,-1.16e+01,+1.16e+01 1 320 22 -9.62e-03,+4.67e-03,-2.57e-01,+2.57e-01 1 Vertex: -103 ID: 0 (X,cT)=+8.87e-05,-2.44e-04,-1.11e-02,+1.11e-02 I: 1 210 111 +2.07e-01,-5.69e-01,-2.59e+01,+2.60e+01 2 -103 O: 2 321 22 +4.73e-02,-9.80e-02,-2.88e+00,+2.88e+00 1 322 22 +1.60e-01,-4.71e-01,-2.31e+01,+2.31e+01 1 Vertex: -104 ID: 0 (X,cT)=+2.15e+00,-4.70e-01,-1.47e+02,+1.58e+02 I: 1 213 3122 +4.16e-02,-9.07e-03,-2.83e+00,+3.04e+00 2 -104 O: 2 323 2212 -3.48e-02,-5.22e-02,-2.54e+00,+2.71e+00 1 324 -211 +7.64e-02,+4.31e-02,-2.87e-01,+3.31e-01 1 Vertex: -105 ID: 0 (X,cT)=+1.33e+01,+2.67e+01,-3.54e+02,+3.70e+02 I: 1 215 -3122 +1.46e-01,+2.95e-01,-3.91e+00,+4.08e+00 2 -105 O: 2 325 -2212 +1.60e-01,+3.21e-01,-3.16e+00,+3.31e+00 1 326 211 -1.31e-02,-2.60e-02,-7.56e-01,+7.70e-01 1 GenVertex: -106 ID: 0 (X,cT):0 I: 1 217 -311 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -106 O: 1 327 310 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -130 Vertex: -107 ID: 0 (X,cT)=-1.53e-06,-1.54e-06,-8.31e-06,+8.70e-06 I: 1 218 111 -1.49e-01,-1.50e-01,-8.06e-01,+8.44e-01 2 -107 O: 2 328 22 -3.73e-02,-1.22e-01,-3.18e-01,+3.43e-01 1 329 22 -1.12e-01,-2.75e-02,-4.88e-01,+5.01e-01 1 Vertex: -108 ID: 0 (X,cT)=-7.89e-05,+2.02e-05,-1.21e-03,+1.21e-03 I: 1 220 111 -4.06e-01,+1.04e-01,-6.24e+00,+6.25e+00 2 -108 O: 2 330 22 -1.51e-01,+1.07e-01,-2.51e+00,+2.51e+00 1 331 22 -2.55e-01,-2.79e-03,-3.73e+00,+3.74e+00 1 GenVertex: -109 ID: 0 (X,cT):0 I: 1 224 113 +1.27e-03,-2.57e-01,-6.05e+00,+6.10e+00 2 -109 O: 2 332 211 +3.73e-02,-3.32e-01,-1.66e+00,+1.70e+00 1 333 -211 -3.60e-02,+7.53e-02,-4.40e+00,+4.40e+00 1 Vertex: -110 ID: 0 (X,cT)=+2.64e+00,-7.80e+00,-1.30e+03,+1.30e+03 I: 1 229 -3122 +1.58e-01,-4.67e-01,-7.80e+01,+7.81e+01 2 -110 O: 2 334 -2212 +1.72e-01,-3.82e-01,-7.19e+01,+7.19e+01 1 335 211 -1.40e-02,-8.47e-02,-6.14e+00,+6.14e+00 1 Vertex: -111 ID: 0 (X,cT)=-7.14e-06,-2.63e-05,-5.39e-03,+5.39e-03 I: 1 232 111 -8.21e-02,-3.03e-01,-6.19e+01,+6.19e+01 2 -111 O: 2 336 22 -3.58e-02,-2.90e-01,-5.10e+01,+5.10e+01 1 337 22 -4.64e-02,-1.30e-02,-1.10e+01,+1.10e+01 1 Vertex: -112 ID: 0 (X,cT)=-1.76e-05,+1.89e-04,-2.14e-02,+2.14e-02 I: 1 234 111 -6.96e-02,+7.48e-01,-8.49e+01,+8.49e+01 2 -112 O: 2 338 22 -8.03e-02,+5.78e-01,-5.95e+01,+5.95e+01 1 339 22 +1.07e-02,+1.71e-01,-2.54e+01,+2.54e+01 1 Vertex: -113 ID: 0 (X,cT)=+6.72e-05,-2.36e-05,-7.37e-03,+7.37e-03 I: 1 240 111 +3.00e-01,-1.06e-01,-3.30e+01,+3.30e+01 2 -113 O: 2 340 22 -1.23e-02,-7.41e-03,-2.72e+00,+2.72e+00 1 341 22 +3.13e-01,-9.83e-02,-3.03e+01,+3.03e+01 1 Vertex: -114 ID: 0 (X,cT)=-8.10e-04,-1.47e-03,+5.39e-03,+5.64e-03 I: 1 244 111 -1.70e+00,-3.07e+00,+1.13e+01,+1.18e+01 2 -114 O: 2 342 22 -4.86e-01,-9.81e-01,+3.39e+00,+3.56e+00 1 343 22 -1.21e+00,-2.09e+00,+7.89e+00,+8.26e+00 1 Vertex: -115 ID: 0 (X,cT)=-9.85e-05,-3.24e-05,+7.32e-04,+7.40e-04 I: 1 246 111 -3.49e-01,-1.15e-01,+2.59e+00,+2.62e+00 2 -115 O: 2 344 22 -1.06e-01,+2.78e-02,+7.57e-01,+7.64e-01 1 345 22 -2.43e-01,-1.42e-01,+1.83e+00,+1.85e+00 1 Vertex: -116 ID: 0 (X,cT)=-2.13e-08,+3.98e-07,+1.89e-04,+1.89e-04 I: 1 248 111 -4.99e-04,+9.32e-03,+4.43e+00,+4.43e+00 2 -116 O: 2 346 22 +1.37e-02,+1.69e-02,+1.15e-01,+1.17e-01 1 347 22 -1.42e-02,-7.55e-03,+4.31e+00,+4.31e+00 1 Vertex: -117 ID: 0 (X,cT)=+3.97e-05,+4.77e-05,+1.68e-04,+1.80e-04 I: 1 252 111 +2.61e-01,+3.14e-01,+1.11e+00,+1.19e+00 2 -117 O: 2 348 22 +2.22e-01,+1.71e-01,+7.72e-01,+8.21e-01 1 349 22 +3.89e-02,+1.43e-01,+3.34e-01,+3.65e-01 1 Vertex: -118 ID: 0 (X,cT)=+4.98e-05,+1.51e-05,+2.85e-04,+2.91e-04 I: 1 257 111 +2.39e-01,+7.23e-02,+1.37e+00,+1.39e+00 2 -118 O: 2 350 22 +1.57e-01,+1.05e-01,+1.06e+00,+1.08e+00 1 351 22 +8.17e-02,-3.26e-02,+3.03e-01,+3.16e-01 1 Vertex: -119 ID: 0 (X,cT)=+3.38e-05,+1.44e-05,+3.63e-05,+6.25e-05 I: 1 261 111 +1.30e-01,+5.50e-02,+1.39e-01,+2.40e-01 2 -119 O: 2 352 22 +1.55e-01,+6.37e-02,+1.29e-01,+2.11e-01 1 353 22 -2.51e-02,-8.63e-03,+1.05e-02,+2.86e-02 1 Vertex: -120 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 264 310 +7.82e-01,+4.60e-01,+2.25e+00,+2.47e+00 2 -120 O: 2 354 111 +5.17e-01,+4.57e-01,+1.84e+00,+1.97e+00 2 -131 355 111 +2.66e-01,+2.51e-03,+4.10e-01,+5.07e-01 2 -132 Vertex: -121 ID: 0 (X,cT)=+6.66e-04,+2.88e-04,+8.13e-04,+1.09e-03 I: 1 266 111 +1.48e+00,+6.38e-01,+1.80e+00,+2.42e+00 2 -121 O: 2 356 22 +1.02e+00,+3.71e-01,+1.21e+00,+1.62e+00 1 357 22 +4.60e-01,+2.68e-01,+5.92e-01,+7.96e-01 1 Vertex: -122 ID: 0 (X,cT)=+1.74e-04,+1.56e-05,+5.81e-05,+1.87e-04 I: 1 268 111 +8.35e-01,+7.46e-02,+2.78e-01,+8.93e-01 2 -122 O: 3 358 22 +2.87e-01,+6.23e-02,+1.53e-01,+3.32e-01 1 359 11 +3.90e-01,+1.23e-02,+8.47e-02,+3.99e-01 1 360 -11 +1.57e-01,-6.48e-06,+4.03e-02,+1.62e-01 1 Vertex: -123 ID: 0 (X,cT)=+8.20e-05,+7.04e-05,+7.82e-05,+1.34e-04 I: 1 272 111 +6.37e-01,+5.47e-01,+6.08e-01,+1.05e+00 2 -123 O: 2 361 22 +3.44e-01,+2.73e-01,+3.98e-01,+5.93e-01 1 362 22 +2.93e-01,+2.74e-01,+2.10e-01,+4.53e-01 1 Vertex: -124 ID: 0 (X,cT)=+1.15e-05,-7.95e-07,+6.93e-06,+1.45e-05 I: 1 275 111 +2.87e-01,-1.98e-02,+1.73e-01,+3.62e-01 2 -124 O: 2 363 22 -5.53e-03,-1.09e-02,+3.72e-02,+3.91e-02 1 364 22 +2.93e-01,-8.93e-03,+1.36e-01,+3.23e-01 1 Vertex: -125 ID: 0 (X,cT)=-6.01e-05,+9.54e-05,-7.13e-06,+1.17e-04 I: 1 277 111 -2.71e-01,+4.30e-01,-3.21e-02,+5.27e-01 2 -125 O: 2 365 22 +1.48e-02,+3.65e-02,+1.11e-03,+3.94e-02 1 366 22 -2.86e-01,+3.94e-01,-3.32e-02,+4.88e-01 1 Vertex: -126 ID: 0 (X,cT)=+6.17e-01,+3.22e+00,+6.57e-01,+3.40e+00 I: 1 278 421 +1.91e+00,+9.98e+00,+2.04e+00,+1.05e+01 2 -126 O: 3 367 -321 +9.10e-03,+1.67e+00,+5.35e-01,+1.82e+00 1 368 311 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 2 -133 369 211 +9.10e-01,+4.80e+00,+6.66e-01,+4.93e+00 1 Vertex: -127 ID: 0 (X,cT)=+1.80e-06,+2.14e-05,-1.23e-02,+1.23e-02 I: 1 298 111 +1.58e-02,+1.88e-01,-1.07e+02,+1.07e+02 2 -127 O: 2 370 22 -2.36e-02,+1.29e-01,-9.13e+01,+9.13e+01 1 371 22 +3.93e-02,+5.92e-02,-1.61e+01,+1.61e+01 1 Vertex: -128 ID: 0 (X,cT)=-7.41e+01,+1.15e+02,+1.23e+01,+1.48e+02 I: 1 311 310 -6.73e-01,+1.04e+00,+1.12e-01,+1.34e+00 2 -128 O: 2 372 -211 -6.06e-01,+7.38e-01,-4.48e-02,+9.66e-01 1 373 211 -6.76e-02,+3.05e-01,+1.56e-01,+3.76e-01 1 Vertex: -129 ID: 0 (X,cT)=+2.84e-05,-8.14e-06,-7.07e-06,+3.32e-05 I: 1 314 111 +2.87e-01,-8.20e-02,-7.13e-02,+3.35e-01 2 -129 O: 2 374 22 +1.99e-01,-1.17e-01,-6.68e-02,+2.40e-01 1 375 22 +8.77e-02,+3.51e-02,-4.47e-03,+9.46e-02 1 Vertex: -130 ID: 0 (X,cT)=+4.36e+01,+1.95e+01,-2.03e+02,+2.14e+02 I: 1 327 310 +4.41e-01,+1.97e-01,-2.05e+00,+2.17e+00 2 -130 O: 2 376 -211 +1.26e-02,-5.96e-02,-2.69e-01,+3.09e-01 1 377 211 +4.29e-01,+2.57e-01,-1.79e+00,+1.86e+00 1 Vertex: -131 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 354 111 +5.17e-01,+4.57e-01,+1.84e+00,+1.97e+00 2 -131 O: 2 378 22 +1.04e-01,+1.67e-01,+5.79e-01,+6.11e-01 1 379 22 +4.13e-01,+2.90e-01,+1.26e+00,+1.36e+00 1 Vertex: -132 ID: 0 (X,cT)=+4.86e+01,+2.85e+01,+1.40e+02,+1.54e+02 I: 1 355 111 +2.66e-01,+2.51e-03,+4.10e-01,+5.07e-01 2 -132 O: 2 380 22 +5.80e-02,+2.74e-02,+2.02e-01,+2.11e-01 1 381 22 +2.08e-01,-2.49e-02,+2.08e-01,+2.95e-01 1 Vertex: -133 ID: 0 (X,cT)=+6.17e-01,+3.22e+00,+6.57e-01,+3.40e+00 I: 1 368 311 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 2 -133 O: 1 382 130 +9.96e-01,+3.51e+00,+8.36e-01,+3.77e+00 1 ________________________________________________________________________________ hepmc-2.06.09.orig/test/testFlow.cc0000644000175000017500000001721311551647712017717 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testFlow.cc // // garren@fnal.gov, June 2009 // based on example_BuildEventFromScratch.cc ////////////////////////////////////////////////////////////////////////// #include #include #include #include "HepMC/GenEvent.h" #include "HepMC/IO_GenEvent.h" typedef std::vector FlowVec; int main() { // // In this example we will place the following event into HepMC "by hand" // // name status pdg_id parent Px Py Pz Energy Mass // 1 !p+! 3 2212 0,0 0.000 0.000 7000.000 7000.000 0.938 // 2 !p+! 3 2212 0,0 0.000 0.000-7000.000 7000.000 0.938 //========================================================================= // 3 !d! 3 1 1,1 0.750 -1.569 32.191 32.238 0.000 // 4 !u~! 3 -2 2,2 -3.047 -19.000 -54.629 57.920 0.000 // 5 !W-! 3 -24 1,2 1.517 -20.68 -20.605 85.925 80.799 // 6 !gamma! 1 22 1,2 -3.813 0.113 -1.833 4.233 0.000 // 7 !d! 1 1 5,5 -2.445 28.816 6.082 29.552 0.010 // 8 !u~! 1 -2 5,5 3.962 -49.498 -26.687 56.373 0.006 // open an output file const char outfile[] = "testFlow.out"; std::ofstream os( outfile ); if( !os ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } // declare several IO_GenEvent instances for comparison HepMC::IO_GenEvent xout1("testFlow.out1",std::ios::out); HepMC::IO_GenEvent xout2("testFlow.out2",std::ios::out); HepMC::IO_GenEvent xout3("testFlow.out3",std::ios::out); // output streams for copy test std::ofstream xout4( "testFlow.out4" ); std::ofstream xout5( "testFlow.out5" ); int numbad = 0; // build the graph, which will look like // p7 # // p1 / # // \v1__p3 p5---v4 # // \_v3_/ \ # // / \ p8 # // v2__p4 \ # // / p6 # // p2 # // // define a flow pattern as p1 -> p3 -> p6 // and p2 -> p4 -> p5 // // First create the event container, with Signal Process 20, event number 1 // HepMC::GenEvent* evt = new HepMC::GenEvent( 20, 1 ); evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // // create vertex 1 and vertex 2, together with their inparticles HepMC::GenVertex* v1 = new HepMC::GenVertex(); evt->add_vertex( v1 ); HepMC::GenParticle* p1 = new HepMC::GenParticle( HepMC::FourVector(0,0,7000,7000), 2212, 3 ); p1->set_flow(1,231); v1->add_particle_in( p1 ); HepMC::GenVertex* v2 = new HepMC::GenVertex(); evt->add_vertex( v2 ); HepMC::GenParticle* p2 = new HepMC::GenParticle( HepMC::FourVector(0,0,-7000,7000), 2212, 3 ); p2->set_flow(1,243); v2->add_particle_in( p2 ); // // create the outgoing particles of v1 and v2 HepMC::GenParticle* p3 = new HepMC::GenParticle( HepMC::FourVector(.750,-1.569,32.191,32.238), 1, 3 ); p3->set_flow(1,231); v1->add_particle_out( p3 ); HepMC::GenParticle* p4 = new HepMC::GenParticle( HepMC::FourVector(-3.047,-19.,-54.629,57.920), -2, 3 ); p4->set_flow(1,243); v2->add_particle_out( p4 ); // // create v3 HepMC::GenVertex* v3 = new HepMC::GenVertex(); evt->add_vertex( v3 ); v3->add_particle_in( p3 ); v3->add_particle_in( p4 ); HepMC::GenParticle* p6 = new HepMC::GenParticle( HepMC::FourVector(-3.813,0.113,-1.833,4.233 ), 22, 1 ); p6->set_flow(1,231); v3->add_particle_out( p6 ); HepMC::GenParticle* p5 = new HepMC::GenParticle( HepMC::FourVector(1.517,-20.68,-20.605,85.925), -24, 3 ); p5->set_flow(1,243); v3->add_particle_out( p5 ); // // create v4 HepMC::GenVertex* v4 = new HepMC::GenVertex(HepMC::FourVector(0.12,-0.3,0.05,0.004)); evt->add_vertex( v4 ); v4->add_particle_in( p5 ); HepMC::GenParticle* p7 = new HepMC::GenParticle( HepMC::FourVector(-2.445,28.816,6.082,29.552), 1,1 ); v4->add_particle_out( p7 ); HepMC::GenParticle* p8 = new HepMC::GenParticle( HepMC::FourVector(3.962,-49.498,-26.687,56.373), -2,1 ); v4->add_particle_out( p8 ); // // tell the event which vertex is the signal process vertex evt->set_signal_process_vertex( v3 ); // the event is complete, we now print it out evt->print( os ); // look at the flow we created os << std::endl; FlowVec result1 = p1->flow().dangling_connected_partners( p1->flow().icode(1) ); FlowVec result2 = p1->flow().connected_partners( p1->flow().icode(1) ); FlowVec::iterator it; os << "dangling partners of particle " << p1->barcode() << std::endl; for( it = result1.begin(); it != result1.end(); ++it ) { os << (*it)->barcode() << " " ; os.width(8); os << (*it)->pdg_id() << " " << (*it)->flow(1) << std::endl; } os << "all partners of particle " << p1->barcode() << std::endl; for( it = result2.begin(); it != result2.end(); ++it ) { os << (*it)->barcode() << " " ; os.width(8); os << (*it)->pdg_id() << " " << (*it)->flow(1) << std::endl; } FlowVec result3 = p2->flow().dangling_connected_partners( p2->flow().icode(1) ); FlowVec result4 = p2->flow().connected_partners( p2->flow().icode(1) ); os << "dangling partners of particle " << p2->barcode() << std::endl; for( it = result3.begin(); it != result3.end(); ++it ) { os << (*it)->barcode() << " " ; os.width(8); os << (*it)->pdg_id() << " " << (*it)->flow(1) << std::endl; } os << "all partners of particle " << p2->barcode() << std::endl; for( it = result4.begin(); it != result4.end(); ++it ) { os << (*it)->barcode() << " " ; os.width(8); os << (*it)->pdg_id() << " " << (*it)->flow(1) << std::endl; } // write event xout1 << evt; // testing bug #73987 - flow not copied // call the write method directly evt->write(xout4); // make a copy and write it HepMC::GenEvent(*evt).write(xout5); // try changing and erasing flow p2->set_flow(2,345); xout2 << evt; FlowVec result5 = p2->flow().connected_partners( p2->flow().icode(1) ); if ( result4 != result5 ) { std::cerr << "ERROR: list of partners has changed after adding flow" << std::endl; ++numbad; } // the flow method returns a copy, // so we must set the flow again to change it HepMC::Flow f2 = p2->flow(); if( f2.erase(2) ) { p2->set_flow( f2 ); } else { std::cerr << "ERROR: first erase was NOT successful" << std::endl; ++numbad; } f2 = p2->flow(); if( f2.erase(2) ) { std::cerr << "ERROR: second erase was successful" << std::endl; } xout3 << evt; FlowVec result6 = p2->flow().connected_partners( p2->flow().icode(1) ); if ( result4 != result6 ) { std::cerr << "ERROR: list of partners has changed after removing flow" << std::endl; ++numbad; } // now clean-up by deleteing all objects from memory // // deleting the event deletes all contained vertices, and all particles // contained in those vertices delete evt; if( numbad > 0 ) std::cerr << numbad << " errors in testFlow" << std::endl; return numbad; } hepmc-2.06.09.orig/test/testPrintBug.output0000644000175000017500000001326111014622251021475 0ustar sylvestresylvestre________________________________________________________________________________ GenEvent: #0 ID=0 SignalProcessGenVertex Barcode: 0 Momenutm units: GEV Position units: MM Entries this event: 10 vertices, 60 particles. Beam Particles are not defined. RndmState(0)= Wgts(0)= EventScale -1 [energy] alphaQCD=-1 alphaQED=-1 GenParticle Legend Barcode PDG ID ( Px, Py, Pz, E ) Stat DecayVtx ________________________________________________________________________________ Vertex: -1 ID: 0 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10001 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -1 10002 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -1 10003 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -1 O: 3 10004 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10005 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10006 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -2 ID: 1 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10007 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -2 10008 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -2 10009 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -2 O: 3 10010 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10011 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10012 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -3 ID: 2 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10013 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -3 10014 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -3 10015 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -3 O: 3 10016 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10017 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10018 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -4 ID: 3 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10019 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -4 10020 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -4 10021 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -4 O: 3 10022 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10023 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10024 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -5 ID: 4 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10025 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -5 10026 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -5 10027 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -5 O: 3 10028 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10029 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10030 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -6 ID: 5 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10031 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -6 10032 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -6 10033 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -6 O: 3 10034 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10035 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10036 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -7 ID: 6 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10037 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -7 10038 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -7 10039 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -7 O: 3 10040 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10041 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10042 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -8 ID: 7 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10043 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -8 10044 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -8 10045 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -8 O: 3 10046 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10047 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10048 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -9 ID: 8 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10049 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -9 10050 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -9 10051 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -9 O: 3 10052 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10053 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10054 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 Vertex: -10 ID: 9 (X,cT)=+1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 I: 3 10055 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -10 10056 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -10 10057 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 -10 O: 3 10058 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10059 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 10060 1 +1.00e+00,+1.00e+00,+1.00e+00,+1.00e+00 2 ________________________________________________________________________________ hepmc-2.06.09.orig/test/testSimpleVector.cc0000644000175000017500000001034411211271503021402 0ustar sylvestresylvestre// // First pass - simply exercise all the vector methods // #include #include "HepMC/SimpleVector.h" int main() { // ThreeVector HepMC::ThreeVector vector3; HepMC::ThreeVector v3(1.1,2.2,3.3); HepMC::ThreeVector vx(1.34); HepMC::ThreeVector v3copy( v3 ); double eps = 1.e-15; // allowed differnce between doubles int numbad = 0; double x = v3.x(); double y = v3.y(); double z = v3.z(); double p2 = v3.perp2(); double pt = v3.perp(); double r = v3.r(); double th = v3.theta(); double ph = v3.phi(); double mag = std::sqrt(x*x + y*y + z*z); double pperp = std::sqrt(x*x + y*y); vx.set(1., 2., 3.); vx.setX(1.1); vx.setY(2.3); vx.setZ(4.4); vx.setPhi(0.12); vx.setTheta(0.54); vector3 = v3; if( fabs( mag - r ) > eps ) { std::cout << "different ThreeVector magnitude: " << mag << " " << r << std::endl; std::cout << "difference is : " << ( mag - r ) << std::endl; ++numbad; } if( fabs( pperp - pt ) > eps ) { std::cout << "different ThreeVector Pt: " << pperp << " " << pt << std::endl; std::cout << "difference is : " << ( pperp - pt ) << std::endl; ++numbad; } if( v3 == vector3 ) { } else { ++numbad; std::cout << "vectors v3 and vector3 are different" << std::endl; } if( v3 != v3copy ) { ++numbad; std::cout << "vectors v3 and v3copy are different" << std::endl; } // FourVector HepMC::FourVector vector; HepMC::FourVector v4(1.1,2.2,3.3,4.4); HepMC::FourVector vt(1.34); HepMC::FourVector vectorcopy( v4 ); vector = v4; double px = v4.px(); double py = v4.py(); double pz = v4.pz(); double e = v4.e(); x = vectorcopy.x(); y = vectorcopy.y(); z = vectorcopy.z(); double t = vectorcopy.t(); p2 = v4.perp2(); pt = v4.perp(); th = v4.theta(); ph = v4.phi(); r = v4.rho(); double masssq1 = v4.m2(); double mass1 = v4.m(); double pr1 = v4.pseudoRapidity(); double eta1 = v4.eta(); double masssq2 = vector.m2(); double mass2 = vector.m(); double pr2 = vector.pseudoRapidity(); double eta2 = vector.eta(); vt.set(1., 2., 3., 5.5); vt.setX(1.1); vt.setY(2.3); vt.setZ(4.4); vt.setT(6.5); vt.setPx(3.1); vt.setPy(2.2); vt.setPz(-1.1); vt.setE(5.4); mag = std::sqrt(x*x + y*y + z*z); pperp = std::sqrt(x*x + y*y); if( fabs( mag - r ) > eps ) { std::cout << "different FourVector magnitude: " << mag << " " << r << std::endl; std::cout << "difference is : " << ( mag - r ) << std::endl; ++numbad; } if( fabs( pperp - pt ) > eps ) { std::cout << "different FourVector Pt: " << pperp << " " << pt << std::endl; std::cout << "difference is : " << ( pperp - pt ) << std::endl; ++numbad; } if( px != x ) { std::cout << "different X values: " << px << " " << x << std::endl; ++numbad; } if( py != y ) { std::cout << "different Y values: " << py << " " << y << std::endl; ++numbad; } if( pz != z ) { std::cout << "different Z values: " << pz << " " << z << std::endl; ++numbad; } if( e != t ) { std::cout << "different E values: " << e << " " << t << std::endl; ++numbad; } if( fabs( masssq1 - masssq2 ) > eps ) { std::cout << "different mass sq values: " << masssq1 << " " << masssq2 << std::endl; std::cout << "difference is : " << ( masssq1 - masssq2 ) << std::endl; ++numbad; } if( fabs( mass1 - mass2 ) > eps ) { std::cout << "different mass values: " << mass1 << " " << mass2 << std::endl; std::cout << "difference is : " << ( mass1 - mass2 ) << std::endl; ++numbad; } if( fabs( pr1 - pr2 ) > eps ) { std::cout << "different pseudorapidity values: " << pr1 << " " << pr2 << std::endl; std::cout << "difference is : " << ( pr1 - pr2 ) << std::endl; ++numbad; } if( fabs( eta1 - eta2 ) > eps ) { std::cout << "different eta values: " << eta1 << " " << eta2 << std::endl; std::cout << "difference is : " << ( eta1 - eta2 ) << std::endl; ++numbad; } if( v4 == vector ) { } else { std::cout << "vectors v and vector are different" << std::endl; ++numbad; } if( v4 != vectorcopy ) { std::cout << "vectors v and vectorcopy are different" << std::endl; ++numbad; } return numbad; } hepmc-2.06.09.orig/COPYING0000644000175000017500000004311011003432527015634 0ustar sylvestresylvestre GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. hepmc-2.06.09.orig/depcomp0000755000175000017500000003710011763470444016175 0ustar sylvestresylvestre#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2005-07-09.11 # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test -f "$tmpdepfile"; then : else stripped=`echo "$stripped" | sed 's,^.*/,,'` tmpdepfile="$stripped.u" fi if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mecanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: hepmc-2.06.09.orig/CMakeLists.txt0000644000175000017500000000624511763464675017377 0ustar sylvestresylvestre#------------------------------------------------------------------------------ # Top Level CMakeLists.txt for HepMC # cmake -Dmomentum:STRING=[MEV|GEV] -Dlength:STRING=[MM|CM] # [-DCMAKE_INSTALL_PREFIX=/install/path] # [-DCMAKE_BUILD_TYPE=Debug|Release|RelWithDebInfo|MinSizeRel] # [-Dbuild_docs:BOOL=ON] # /path/to/source # make # make test # make install # # The default HepMC build type is CMAKE_BUILD_TYPE=RelWithDebInfo, # which matches the default HepMC autoconf flags #------------------------------------------------------------------------------ # use cmake 2.6 or later cmake_minimum_required (VERSION 2.6) # project name and version project(HepMC) set( version 2.06.09 ) if ( momentum ) set( HEPMC_DEFAULT_MOM_UNIT ${momentum} ) else() message(FATAL_ERROR "You must specify the momentum units with -Dmomentum:STRING=[MEV|GEV]") endif() if ( length ) set( HEPMC_DEFAULT_LEN_UNIT ${length} ) else() message(FATAL_ERROR "You must specify the length units with -Dlength:STRING=[MM|CM]") endif() message(STATUS "default momentum and length are ${HEPMC_DEFAULT_MOM_UNIT} ${HEPMC_DEFAULT_LEN_UNIT}") # find the HepMC cmake modules set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules ${CMAKE_MODULE_PATH}) # make sure we are not building from within the source code directory string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" in_source) string( REGEX MATCH "${CMAKE_SOURCE_DIR}/" in_source_subdir "${CMAKE_BINARY_DIR}") if (in_source OR in_source_subdir) message(FATAL_ERROR " ERROR: In source builds of this project are not allowed. A separate build directory is required. Please create one and run cmake from the build directory. Also note that cmake has just added files to your source code directory. We suggest getting a new copy of the source code. Otherwise, delete `CMakeCache.txt' and the directory `CMakeFiles'. ") endif () # build_docs is OFF (false) by default if ( build_docs ) message(STATUS "documents WILL be built and installed" ) else() message(STATUS "documents WILL NOT be installed" ) endif() # various handy macros include(HepMCVariables) #include(HepMCParseVersion) # because we want to move these libraries about, # do not embed full path in shared libraries or executables set (CMAKE_SKIP_RPATH) ENABLE_TESTING() # include search path include_directories ("${CMAKE_CURRENT_SOURCE_DIR}") #build all libraries in a single directory to facilitate testing SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib) # parse the version STRING( REGEX REPLACE "^([0-9]+)[.][0-9]+[.][0-9]+.*" "\\1" VERSION_MAJOR "${version}" ) STRING( REGEX REPLACE "^[0-9]+[.]([0-9]+)[.][0-9]+.*" "\\1" VERSION_MINOR "${version}" ) STRING( REGEX REPLACE "^[0-9]+[.][0-9]+[.]([0-9]+)+.*" "\\1" VERSION_PATCH "${version}" ) message(STATUS "${project} version ${version} parses to ${VERSION_MAJOR} ${VERSION_MINOR} ${VERSION_PATCH}" ) # set our preferred compiler flags and other variables include(CMakeDetermineFortranCompiler) hepmc_set_compiler_flags() add_subdirectory(HepMC) add_subdirectory(src) add_subdirectory(fio) add_subdirectory(test) add_subdirectory(examples) add_subdirectory(doc) # Packaging utility include(HepMCUseCpack) hepmc-2.06.09.orig/Makefile.in0000644000175000017500000004552311763470445016676 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ ChangeLog INSTALL NEWS config.guess config.sub depcomp \ install-sh ltmain.sh missing subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno configure.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-exec-recursive install-info-recursive \ install-recursive installcheck-recursive installdirs-recursive \ pdf-recursive ps-recursive uninstall-info-recursive \ uninstall-recursive ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = $(prefix)/include infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ SUBDIRS = HepMC src fio test examples examples/fio examples/pythia8 doc # list all subdirectories - for distribution and cleaning DIST_SUBDIRS = HepMC src fio test examples examples/fio examples/pythia8 doc all: all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ cd $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) $(mkdir_p) $(distdir)/examples $(distdir)/examples/fio $(distdir)/examples/pythia8 $(distdir)/src $(distdir)/test @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -755 -exec chmod a+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-exec-am: install-info: install-info-recursive install-man: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-info-am uninstall-info: uninstall-info-recursive .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ check-am clean clean-generic clean-libtool clean-recursive \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-generic distclean-libtool distclean-recursive \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-exec install-exec-am \ install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/NEWS0000644000175000017500000000011011002121701015255 0ustar sylvestresylvestre Please see the ChangeLog and https://savannah.cern.ch/projects/hepmc/ hepmc-2.06.09.orig/doc/0000755000175000017500000000000011763470506015363 5ustar sylvestresylvestrehepmc-2.06.09.orig/doc/buildDoc.sh0000755000175000017500000000134311374257600017444 0ustar sylvestresylvestre#! /bin/sh # this script builds the pdf documents # the bootstrap process executes this script set -x # run doxygen if present if [ `whereis doxygen | wc -w` -gt 1 ]; then doxygen doxygen.conf if [ `whereis latex | wc -w` -gt 1 ]; then cd latex pdflatex refman.tex pdflatex refman.tex pdflatex refman.tex pdflatex refman.tex makeindex refman.idx pdflatex refman.tex mv refman.pdf ../HepMC2_reference_manual.pdf cd .. rm -rf latex html fi fi # now run latex if [ `whereis latex | wc -w` -gt 1 ]; then latex HepMC2_user_manual.tex latex HepMC2_user_manual.tex dvipdf HepMC2_user_manual # cleanup latex files rm -f *.aux *.dvi *.log *.toc *.lot *.lof fi hepmc-2.06.09.orig/doc/CMakeLists.txt0000644000175000017500000000713711702646343020130 0ustar sylvestresylvestre# build HepMC documentation # for documentation if ( build_docs ) find_package(LATEX) find_package(Doxygen) macro( hepmc_latex package main_tex_file ) IF(LATEX_COMPILER) FOREACH(arg ${ARGN}) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/${arg} ${CMAKE_CURRENT_BINARY_DIR}/${arg} COPYONLY) set( depend_list ${arg} ${depend_list} ) ENDFOREACH(arg) ##message(STATUS "${package} ${main_tex_file} depends on ${depend_list}" ) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.aux COMMAND ${LATEX_COMPILER} -interaction=batchmode ${CMAKE_CURRENT_SOURCE_DIR}/${main_tex_file} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${main_tex_file}.tex ${depend_list} COMMENT "Latex - first pass" ) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.dvi COMMAND ${LATEX_COMPILER} -interaction=batchmode ${CMAKE_CURRENT_SOURCE_DIR}/${main_tex_file} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.aux COMMENT "Latex - second pass" ) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.log COMMAND ${LATEX_COMPILER} -interaction=batchmode ${CMAKE_CURRENT_SOURCE_DIR}/${main_tex_file} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.dvi COMMENT "Latex - third pass" ) ADD_CUSTOM_TARGET(${main_tex_file} ALL echo DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.log ) IF(DVIPS_CONVERTER) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.ps COMMAND ${DVIPS_CONVERTER} ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.dvi -o ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.ps DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.dvi COMMENT "dvi2ps" ) IF(PS2PDF_CONVERTER) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.pdf COMMAND ${PS2PDF_CONVERTER} ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.ps DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.ps COMMENT "ps2pdf" ) ADD_CUSTOM_TARGET( ${package}${main_tex_file}Document ALL echo DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.pdf ) ENDIF(PS2PDF_CONVERTER) ENDIF(DVIPS_CONVERTER) ENDIF(LATEX_COMPILER) INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/${main_tex_file}.pdf DESTINATION share/HepMC/doc ) endmacro( hepmc_latex ) # use the macro to build the user manual hepmc_latex( HepMC HepMC2_user_manual graph_interpretation.eps HepMC_basic_properties.eps physicist_visualization.eps ) # now try doxygen IF (DOXYGEN_FOUND) SET(DOXYGEN_INPUT doxygen.conf) SET(DOXYGEN_OUTPUT ${CMAKE_BINARY_DIR}/html/index.html ) ADD_CUSTOM_COMMAND( OUTPUT ${DOXYGEN_OUTPUT} COMMAND ${CMAKE_COMMAND} -E echo_append "Building HepMC Documentation..." COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_INPUT} COMMAND ${CMAKE_COMMAND} -E echo "Done." WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS ${DOXYGEN_INPUT} ) ADD_CUSTOM_TARGET(hepmcdoc ALL DEPENDS ${DOXYGEN_OUTPUT}) ADD_CUSTOM_TARGET(hepmcdoc_forced COMMAND ${CMAKE_COMMAND} -E echo_append "Building API Documentation..." COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_INPUT} COMMAND ${CMAKE_COMMAND} -E echo "Done." WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) ENDIF (DOXYGEN_FOUND) else( build_docs ) # look for existing pdf files FILE( GLOB pdf_files *.pdf ) INSTALL (FILES ${pdf_files} DESTINATION share/HepMC/doc ) endif( build_docs ) hepmc-2.06.09.orig/doc/Makefile.in0000644000175000017500000002277311763470443017443 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # documents are already built - this is just used to install them srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = doc DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ doc_srcdir = $(top_srcdir)/doc doc_installdir = $(pkgdatadir)/doc HEPMC2_DOCS = HepMC2_user_manual.pdf HEPMC2_REF = HepMC2_reference_manual.pdf DOCUMENTS = $(HEPMC2_DOCS) $(HEPMC2_REF) EXTRA_DIST = $(DOCUMENTS) # Identify generated file(s) to be removed when 'make clean' is requested: CLEANFILES = *.aux *.log *.toc *.dvi all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am install-data-local: $(mkinstalldirs) $(DESTDIR)$(doc_installdir) list='$(DOCUMENTS)'; for file in $$list; do \ if test -f $(doc_srcdir)/$$file; then \ ($(INSTALL_DATA) $(doc_srcdir)/$$file $(DESTDIR)$(doc_installdir)/$$file); \ fi; done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/doc/HepMC2_user_manual.pdf0000644000175000017500000075717011763470506021510 0ustar sylvestresylvestre%PDF-1.4 %Çì¢ 5 0 obj <> stream xœ¥YKsÇ ¾ó7ä°ÇÙ’wÔï‡oñ#Q9–Ëq'UqäîJTL‘k>äèßçºg=;KÑqùàa«@€½¿¬T¯WŠþ«ÿß¾?{ùC\½½?ãÕ•^ýeüúùì—3]ÿPu÷ê‹sH+ßç}Z¿9Óu{J}¶1¯°ÜëdWçïÏþÕ}»Þ¨>Ÿµû÷ù78 I®ÏI[Ãgû”´ñ0'*c[ïpètÈe¯´-‡}¶1‡¼Ú´‡Î׸“rÚe:c¡#j½ÚèÞ¤MÙó5 öÞ» ë¦õ«fÏ?!ÇY“­í6´Ýf£r·§Oã­1¾Û­7NÇ^;ÝÝÒ²Ž>×ÝвïƒKÝ7­Õ&t¼C«#í oe¢'$ĪÐy!ä3Z½‚#–Uù¶>éN‹u¹§g¯Eìª^ÃÍŒë#üÀ®v¶÷Ú­6É`M‡rÛW,ÀÙ¤l¹£VÉ:ßÈ›:éìº×_®76º>áË*älµ¯:ÜÊ ÀÁÒ±ÑÓiµq ʲ.J. @!Ô9t_²› ~Áß!(ø÷EÙâc@ØIŸÖ¾ˆ¶Ýðg®{¨Ò\è~ sRtÖá[†rˆR0ÝÝ®lË*uoh› *AQ»©Šò±{ÍÆdJ·{ªbèÝ»ss‹Fâ5éòwõ$§Ü;u¦K…“¡«ÐŸ;\ì®9ÿÐÚw¿®nHAÜ%—PâÛ*„2“Öçâ嫵I½ 6ÃCàÏÕO­àL ©5dÌç f$pø’}“!F7ß÷ô Z7„d•€÷kïi ­M{oFÉüÜëÔl¸7ôBõ–¿­Ë)Ôü*ßwü­• Iˆ®'a…ÅIû=B²4þ0™!…Á·0ߘ »ÿ¬Ù…äd©Zš$¼(ñrñ^Uˆ‰HÜÉÑïŸÊ‡ÐÞ–e ã©i¥]o]࢈„JÞ¢v9ÂŽ«áýû= €ï¬¯ê”B9 ßûäaÎ_ÔZö¾qH$G²8¡î\å†k’€zfR÷ã:! ³©ù# ™ü)”@FÄ ×ˆºÚ‹ÍjZãçºLÑ5D£`ygËõ_—T7Hš‚G­u÷Z-vYƒª8…%ŠïÏê\Ɉe%¾õ ¹¼\ßRo¸÷ jŸÓ`ÛT;Úlj´|E¢ gEè²”ȧáR–³c 5C[äF|°|›<šŽHÃw"m>pÚ˜N¦›º<ùÀµ“.¿>|C˰+†&CÞHwQ–¤iŠ÷R©¶ûn à’{6¼)»êÊT–û-]ÓB”%ŒàÛi¡¹Æà”Hý#½••èîîù·Ûx J¢ò¬NüiˆçèÓ-¥e*$Ž@Æ` Í­؈6 3âv*7KÀâªÊ8$Ë$8Õÿ®òO]â„…³d¢”Œ(˜Ì±®ÐœDµAEˆÔO¥áóÛ?¤jïÓv,:|: ÷.DïoE·Ë9"¿—QÔ¤QÉ¿•WËe£û’ËÖDûaÕ{0è–z`yL©é÷ŠäzeSéñBtÐÒ©Cb*uÅ.£V¹ÏèV®Pþám´T•£¦+œ?Q¼äœW¾gÖm€…î᎖mŒÊ—v¦£Æ­*^Ëö‡©5 …rŸB`O(k¦ÉÌ!Ú9vW<ö ‰"m^‘Æœ£ÑÝþÀ-Ô…&HäšF#âÙ‡ žÆ0~zb¡Ôö&jU6øç·Ó'+É=Uµw´Jó¡è“j"JâØM5È{V]½d¦¨i2!¦<’»}(’¹›À)`‘P¸gæ…FΜB6wÕ6 ût#£¨¨ßðåàð‡bOtTnÕÕYÔ‚vþÊnÆL B¯Õ““9t}ÃÄDZ>8¢¾œ‚÷âÅ´üfòJ± ‘-£ ! Ñ ÊyiÁÛiïUuðu©+Á»›ý#Ë&èÑRBâÜGƬOŽSqã”…!”{˜õ|EÜ÷,Ð8ÊS=ˆƒ¥ :›¤u[ª8@n„ È[ ŽSô‡åCÍÎ*×o¢q=i»-ç²/Ͱ:`O˜ö ¤Ž O@¡^ å5ñv¨µ!ûá"¨ÉUX™ië->#þûÿN9öCDúdt›„…4Ml~_ö*$wHr9H|?}ŠÕ§½çΉ ¢È%TÐÑâ+އa‚2€èÇÜ@:VÊœÖG«°ûŸÏÝT¹ÉIp7–³5Ä+¤ÓFˤ¬ÝŲA»ÏF€0¼Óx_@¡5 Ý7äFÿãá@ÿP’à;|ôaBë~÷y-rÖ·^eáe ¤BŒÄx|OŸÇ“1…û€Ñ8ûÝW}oŠ?+wUÁ©z_eéY)7 y ˆ{¼)%¶¼ŸRq©îáèÉLß4Þ:ˆÝ7EM€šÝÉDàÑ §QÚî|Ú—2øÄe·ûz±Œºm¡W"«?!ÑËxk0Ï8÷™:ÿ€sêEƒØ_Ÿv×U‰‚‡'ö®ڒÑ|®Ö®UÃų(*}A·?:Q{è ÔtHßýtwËÞõ‘,D§*½å°äS)Mú—âF‰ZýÔ »«Ã@#M÷¸-}Ú$nJlkq$ €¾^¬†R÷Oëj4(ÀvF:è #aOCèYë‰xNJ,¦0W)Ks ±—OOR+Nç5z{n‰{FY‘9’hÍú3™áßP—Có—¼ÙPò`!ƒJ&àÛJˆ¶ÛOÕçü”€—UBSFŸªcD3¹Žcrù[4‹°K1e° ¢ !|_¢±Ì‘CËÊøy%ÀT®Ÿ® È¡"è|o²žC§hIÝ\wÑrÜØ—KµãØ[³ÅEnrn ªÐLæóÖRB2ë,$á;Å©éß=ÄþÊR5uËwƒ- )ô @–g8ëhš‹ç¼<“cŒ[ Šm ½½ô>îö»¾þQPZU̸,=½iNµ}ÉeE[d0fÂlX¢yF‰.²1Æڧh–7î)2b=8a¸6Ê><•f†ÔýᢖÒk?˜=ŸYXa 'Ž¢$™¸'Ä®ª¸h—“Gž{ÜŽËM&Q"ño Ž2à¨ã‘ƒÙ¹ “°Dô¼ÅÕ6„ScË2Õ¹.¨¥d‰q@mË:±)¾·C|„Óx%ÿÌ!ŠÎb‡l¤b:£|¬­Ÿ‘ÝjlËfÏVÃͱ)A»õ@«¡´õÁM™Glys_ÄiqžšI£,„5S ´þIŸ`Ú§ßFÉ÷eZ ç¹ÙìR~FQ½åg:´ïvóœ©`6KÔýæëÍFß7Å÷DºOUYú÷ˆaì÷´K5›gÙ³<ÏÒÛY†Ã@ ++-dT|ä ó'#Þ( ÿàøº+±ã¾(ªíB¸t¥»¬£©×³jgô;£“d„úéŒfPd/“ÉGâ|O<æ0‘—Ûfèä„ÂË-è¦âIéÄTPvº5èf¹J55"s×OÐΆÓUMVñRÀnñ1cAF0ÅúÑéµgµø¶Âúý >—¾)Æÿ’FÅYN$âWKe©¾ž1XÀ=•iiç‘ߘË|Yà›r)oãB= [W½Áöè}a»Ý/À‡Ç&®¹Öö–XÏÀ¤ëσz„ƒx/YÇ}yöž¿ ðS8ÿ`y ´ßQBH,¿Y^~4¯äŸ}° ÄpV½é4ŽFtmÇç“ÏÖýh Í!»lfÝð©WsþÖÒ/ðlGj½y_VCž“z¶5´æLT±¦ŸóXm|”1©V蹋ýºðŒtáYfåâ1ñ˜8øaÅ-4Øÿûœ vq@9À$P¾ô¼ú Z ŒÝWìÅéQ$êåe[Z$#úúüì¯øï²t½endstream endobj 6 0 obj 3055 endobj 25 0 obj <> stream xœí\K“·¾óWð8LÇèÆÛ·8–ã<-[›ä ÊÁµ+­iµv6–œüzw˜™žÉå.ERQé YƒiÌ|_¿ÐÀOKUÃRñ¿òÿåÍâ³ïüòún‘Z—°üS{õzñÓʪô^~qA7.ÁÔÚ8\^¼\@éïqém¨!èåÅÍâyõ»•ªU&¢«nWkU#¥cõv¥¡¶|õêF…Õ ºíbÔåw£üýŽ/ÁEïÿyñGY¨:ª,šÚ8ðË‹?/.~ó¼‚Õ:RSЮú?X£Rx`¬M´˜VNû¡ú7_[Md)©xj½¢V­­‹¦ú9]ºººL£EpF÷ÆxÅÒ;çé!·oÛ;YR«öèé]\-*\]ü‹ßŸ“¯±µvv¹Mó6‘»ò$h|}4®ªÓë3>XÓ…$¦©¾Zºè©/R­ƒóÕ÷ùFÔ’¢ÍÓÀyÆÜÀÐ'7ÞÑôµ®¹ó­ãen€e8PÞU?¤i*#¡5áÁûêk¾Ï“ÔàzCÿØ>ü/ ô¦”!„ÐXGz›O¸³¢ÛÀøêÝ =}=ÛŠgbpôù0Ô:0,Z¾cX(þ4²ç¥¸–3)Wô1é¯Ct5=š^®Ui˜Á¥‰‘žgç;´/t]}¿q⊡¦½«ƒ µç[oÙ66~ݦÒÝ œ¢ÞZG]+ÔËu"!B~:vü:Z§¢* PÑÓh˜Q‘Iư •CH¨ \úü¸sHoçÕ±‘b+‡¾áfˆAÙXp‡¶O I—wY¡#¬¿*"‰/û¿Ï¨&ÖiD`O3¤ymÑKI޾횯E³ù]fáèYK®"©B›‡H­’/2w¬-T%¢ë›? I?ËU•· Q0½mKÖ•#$Y¬=iî3ãTb’Ëf¬cÒ®<Ü•Tf©‚!S`3©¬.¤Ò©ž²-SÚj‚ͺý`—l:}t±z½rºFÒĽ߯ùóºÑgÐdîeKf¢R54A³—:³§,šžÙ]„•Ó×܃¾z;}¿L+òô-ΚÈ챨4 b]µ™ép)šçÈN,ttãý}y\&œBß{Y¸hkk]³;m6ú>×Í@}‡lØ¡ñ¯Âý‘êü&)Re³ô0S¾ºèÝ‘% ¤[É÷$‚?VçƒsÀÝdÇFˆôÉã¤76‹»rOÖ‚FoÆîp÷”—蜛u\^2ºX±Ã”GœºH&Z²/ÆŽDƒEMâR÷ ‹'‚ÅNÚëÀ‘Gb Ô„’â‘9Oã›Î#ù†=x…ŒÒwì†D¥±ïîw¾Ev£F'Cç^ç÷9 V·/óµöBÙÿŽƒW·ÝxÅ­ !öz¼éÆ–^Ð]rù5Ù~·×åùÁø”ph;1a'¦¡¯ÙîÄì5Íù=|.¼yý{ž¸!^Ϲ6%Ü&¹ln£:B]¸íè àœqN¡ïÉ80a`H´÷Ä80"èh‘Èh™ˆçJûš,}y||„>•ì<ñl¦Œv˜3w¨‰6(Lèp»Z²@ñAÞÐYöý  çubt˜8Ä]¹§ÆÝwx@ÜMd=JÒ”fDš14)Matõß| Ö†‚G.ÆìBåLÇÛÕÚ#Ðlÿ?ÔãÑ¡y6öÀ£6Ápoõ§ÑFo‚Psy^ûè%­¥ëžcGðÖéÞõ³.7—i|™1”£¬{|ú|aýp¨6¹@ÂÐ$· ¾TËðƒª9 Tÿ&4fÐW"ï›áD˜3ì5Gj¿iYådrºÀ»BÙk¤!º ð ùüÖï¬à1ƒ•¿ó2§Q8›ÜúLvù…¢Büø“‚Ç)ô}$ÝHvÖiÿXº†º± ?©7¥Ã¢ÿ`‚Å~öV® ÈUºRäìÄ¥xÈm/·Æ]©DeúWêÙNûJÃNDp^Õñ“:¾ê–Åõc-‹ïÜòÈÉ0h\sLÝš3ÇQÛêÆÊ5•H0Jòh§çXg þöøX9…¾Šƒ‚%­³¹{àGN(k¤°£:ïœÎ ýjÅo(únÀ–šoY}‚r–ÓÅFiŽàÿÉO¡ïIú ƒR¢usפº3î™.ÊêÑ›~p,õÝ÷]*HFêRUþO¨Êqq^2ù²û ×jOfâè:]¨ NBõ~qú\û!SJ¹U¿äqTõ™Ð™#*ðnKŠ(as°^샫 ~ÄÖý0ª³±çVM×ÜŽTíìèaÚz˜2-.j)YÊ'‹o†´ãòý‚~·µ‹K£IçÓ+¸Y€§yÛ¶¼Y<›/8ï-´6ç4¯<óµR>W‘z³ÌRÙÊR9q1Å‘ZŸÌ´®‹u€xH>/†ì£¦·ÕQÝÍé×QÚ\µ 7!ÈúÉ‰ç¤ JY¬ û‹Š‡ay‚µ4¿bý*˜)²Ô‘ž†¥ag”ÆÕ'´Y–σåu!'­AæNvù¥[ lêè÷¥Žôr’&CV@1¶-÷×d4«@ +±™ìúœô3NåÐpó;0gæHžŽª± ÖÔÄÿG8Ǧ£&ÐÏMìVZ/ÙTZög“gÿÂfFÍm Êo©”…uf¾{ ¤Žå‘‚zˆd"(…vQÛ¾¤á>ùgôÅÎn3Ʊ¨Í‘”æoç¨}È…‡Mm±ùg",È=*ØnÚ;*q5e æ8 ôŒDúhj‡mË>¤¼ýŒF0ôKéé0ÜïñÉxÞ‹a€½’[¾™_G]9o~Y°µ’_¥åü"‚jëͪzË>ÕÞ%ùQÉœb¡õ ªÀïTÇOLßdK#ù8Ã’Ð9®2SuÈ:“Ư"~¢oVàGk÷{9͆·ðÂ’Ïù€ÄoçjômË>üvµc¯Y“œêq¨Q–èy¤ùHf#|Ç8Ô}¬ë¤ÞlXGËm†5 8mX£§).5S¬•EÒomü³dí<ò5Z@ÞYÂØs(Ì<²¹mùeR·üõú‡_¸.¿üÛ”§­ ¿×Lž$#’ɯòF6 ÌL‹}ör¯¾8>cÔ#%Œ'2Ã~{f¸Õ!n{fx—ÕY&w™O‘ð°}á,I®ÃEt#ÜPK̾¦e#Ò•ôÈ–¹–µ–Fœ8( 铸¨½óc;>Ú+×MÓÊ!()YÛ-ÍÎ,¼N¯Ý¾àíxÖû"“Ï“õÃ}Ù^ÕÆh3ðaçè!R½[±%wHC(¹ô¦=²e"ÕƒÃjúHä@*ö˜&¬qo+]W’ZÄ@§\ÙÎ翘=*W@)’ðøÀ: Àv¥¨xÈRÔÑŽ¼òÈÝ4»He–wqÖ*¾í>:] kh« tœ8ÐàñÊR[¢ñ&Šv6\p2ûر+JQ‡[TfN3gËwÎVöF,ëå©}Ù¿²ÝÊÄ ÂëNï«®Wé&C6·a&b¥­G˜©rÁØCÅ>غiì—&„n6O²»è6P*=Å7é:üØMX̲'ìÆ¢„±XéLE+vb}97ÿÞq ÜÃß°çéÎ6ô†¼ÊuZ¹G8Ìa—‰› ßIc¸àz¾|9i+T¯»/#°sËÇsæ€+B¦¦Ðïº÷Wþ¨¢êŸ¥•ϯ´›Êw·ÃÜFþ>Ò!Àrmù,0ƒ½'þ%/üÛů\Ãzendstream endobj 26 0 obj 2822 endobj 30 0 obj <> stream xœí™KsÜ6 €ïú:jb‰AòÚNúî4ivzéôƱ'SÛMj'íô×”(‰Òîz7ÝL»Ûñä ‚}èmm Ô6ýËÿ¿¼©>ùÁ×WwU'­¡þf|úµz[AþÃfíúÓµ¬ ±`½¾¬ ë{¬½ Õë›ê§æÛ•5è„Ø¼ÖGš»$04÷«–¼3ޤùmÕªƒ¥Ø\&1'±ù\•ÁqÌ&@‚sÍU¡ý.©#bó{7¡Ê]ó*IÉæ<¡Dï^/ºm„nñbHêuCŽb½¾Ð¥Ãª…`Õ6ßuóŠ‘Ò*uÙ*!²6ö“†šënIì1ró" áˆä@×”ä¼naÒI«²Ñ yÒÅ&9Q¯Æ["4ч™øý ½ ha&½]a0¸;I"€ôl¦É³.Ç ª›V a&Îë³$a¶îû¤`½ ËðNO`R¹]µ¢Ke³jÚ9F]«;]˜Tý\¸å)AE^Œ¨3Øžž}CöÙN¯•œ;ÍÒÓ´@ƬâÄê“ô¦¬×1n@†ôi2ï{wBñ#£UÞ3ª¯]¨ ½£ÄYr õvI÷_ÅŒSÕ©/¨rlMP•Sbât?ˆË­Š¬‘Œ†­°&-ÁÌ&;0™3˜4ùeà9zoFªÊ0ûY¦×¼,”w…Ø2”ÞõCQ×[„éêß«º´~Ó§®`»TÒ2FãÁŸ-§Ká®0Êš—Åî £„²€p=޼#:þYļÍ×m(|o&‚Jö^õŒ9½q”ë2gî¶ÐÙÑ’æ×óÐÙYdQ+:§e½“ôÆ3©™N+3"çÁµõA&>@çù`ö_!ÙhQ¡Ä=ÆcBÒE½7N¯#,ùÌFû 騷íù<Žùøã§<òy:=ò9ÆÏá’é'>¿ê‰ÐR?6ß§gˆ bLƒŸ¬«g+ õ•Bà ×â´<"®oTƒ%×ÕóÝyó w>Ô‚ Ö' Æöí/R ‚ 1. °áÊÛû“D-ë†j eÿ¶j­üýp/ì ÿ²\S3ÞzƒË2ëù<îW`Çì+l<¾KêY „° >LÔ?Ÿ‚lQ]—ÕL Ì.HÊjüv²x•°S¿ ´©Ñ1\„ø©C0Àjy¬ä£ä* XK¶ÃX]GN ŸsÀò¨p\4 6šQÛ¯ ñðp<Äat©[Æá,9"£Z¦Ü†.{³+ÌÓòÙ/?vCôEit\çk‰²W:Oá$¹]$ï™"ëõ#ïY¯.aÜ3jñªn\lõfcèˆ=«½JÁ|Ï›¹gÙÎûQÜL>Y{™|pöûQþÌÌ&èáý_ýƒÝΖÀµcÎ^qk¬:%Çó; Ò¥ãeÉŽ`‚f«ÝñÊ*¡OƒŠϾn”èîjð•EÅ”ä†,èeV°” oœqêh¾›Ø¿ï DÒRÆD\&Äóv•®=- u·§ ¸Íi]éågÊ–Q”&¬[}z澟à#|¥\¯¢º¥×å¼èÜM¯ôè›_¦“×½a5Áùˤ¤>÷|™,|~L°OSÔŽ"ó–zyóë‹aÇfà–*%lek|¢¿,ºSéÑ88 ó¹ˆ—÷Š}7=jHÜêGC Ý/Ò j-^Ó 3i"áãL«Ë!Ϫ¿Zu^Íendstream endobj 31 0 obj 1287 endobj 35 0 obj <> stream xœå=ÛrÇqï´+ßpìÊå 1ç~ñ›¢Èvâ»Ìr$=€Ú š EÓqþ=}™Ùé™Ý9*å*—´\Ìöôôô}zúüi§z§ð¿òÿg/=þ<î.oÑÛÞý|yúæÑŸéòUFïþý | ÍN»ƒuÁìž|ýH—ñÑì¢OìîÉ‹G_ìõɩ֯TÜÿçÉ©:¨ä³Û¿<±úàuöû7'ê`œJÊì_ãc4&ùýõÉ)ÈÎíÏá­Î³ÛŸ‰ïþp‚`·Áá‡ðÞ$e3LR‡õä¿áK8d•5"lwoóîÉ/=ù×/öO`°u&‡¸Ž&åš‹P¾A”ÒÁMxX«TÎðæÎ*Øh÷4ÚÚ0^ãèxH6î_zʇà÷gøì•õNzÀ¥`%<ಱ^ï¯FF2­‰o}÷º€:#i¬Ö*†¥—m–óe…e€‰.Á[Z!À’XÔéœ×4Ài ?çr @ó6š ô‡{µÌ"á1Úè…¼ÉiÛyÉóh•ÊZ`¼cžÀÙ³|û\.…Hõ¬¸â邎¾›úe"B²‚D0/PVéØ-úí 2•Uî“ÎrÌ.W!óÞÄÂîsIñš1ó*øuݘ›mÜÅCŽJ7; Wˆig9(`tBGÃ'Þ¨èÜ–æÀïqwÚ}ó# ÑÝl× ›h[öA¥dS‡ê¥x– &†?oðÊ|ÇbÍþ ¤ .t$é`DnŒë?µ>B»SmžD,EäϬ=¬±¡[=ï«É{ÁÕWBú$”˜ˆÈëN=ß”¨÷<…Ùé…‹Ô’îDY·âŒœ|€ß¶]”B'4›DsÔH7—GÝou>¢;yàúŸ!°h“7¡[ÿ«†Ò/IöÁV€tÙ*ûŸ2eS{ùìÛX]2Jo(„äú $Š”šgB>äJåøó†ÜáäÔ£k0ŸTF4S‘ä]   º×öh’”®ìçmY"H×DáPЀ½0KÑoòNÂZ©KÂê\Öjð’g;hí×|&pñàk x´c^&¥V.íé¶"gXsˆ& Ö–^g˜èsôD@;ôK—wI㎠¢>ì¿´˜û+ñþÐ&GBèpÈ@·AiÞÊ"å „›¹–¯Ãþ3ò»"L[ôã˜ð™@wmÃYÛ½@Ê¢ªjªiI‘7ÄÒTð{œ8ÜÜàS ypˆ¥Àê§5K‘Ôœóú¼üÜü·˜Ù³crB¨ß0¬–æ×8@ç‹x Âã€àÞìÿØÔ£Äa­Ž‰SdC›VV@ê<‚ÕZý!ÞÛ×z»•}’!F˜Þñ¾Ûc!aUÝ%Fjfþ'®¼ôI¡¦ùÁ…“(Ú•Áä÷?jÅžC!wo1ß5‹9“±ËÓú¼zøÖ­œ| âÁz ìG¬º 2wϸç΂乣’çÐ+Œk×f؉ÇQ×få°K>§Ã Pÿ^Œ‹¹ÄIàºp’¶ø‹»¯ƒŒ_¹¸å ¯Äpî E2Õ¥±RPû•–=Žƒ|PŸ…üÒæø¸¥ìHÍo[æøH夬Tkö<Í‘ðñ ͳ=úóÊ—zfÇØ'´zðp;DÄÏ&ŠÄDN$žÙÆšÎÝ{^,¿Fª‰%¬”˜Y’m1¶lÓ’‡«„’iÝóˆïš V‚¢ü‘uLR§rfBýr{úÞžÖ*¸yl‹«ŠÍsQN„oÍ‚J¡z]‚£X&{µÿòµœlQ\í}ï7u$m¬ ºäh6õ”ÉûBeÕg›¾WŒ,ü%ê-#;Óç OzOé}¡8nƒwCC–‘¶Éë3' (ê[†ö%”#ã87’ßO ì«&ç¿“ZS×Çù¬euLƒ®è’3Í®ÔìÅs0Q‹YœyÁr|%¶=ƒCù´ñ©œg4ŸÎ0æ¹–eÉÃwRl%ÑÀô¾~^ã|7¦“0õàlgŽft™›åp¡ø+×Y;•á…m%ˆÊ&¶3‚³tjΆ ;~§¤DÉ98`àŽ†Í2£&›33*8ü6öÇ7ü:x3è{#Yâu*a¯KãDˆ¼aÇÒø-7aå®%ö‰‡Q— ~©ß«;87ð•3æÁÎM™¼¸¹N¥»pÁd1…Ø£&®{ˆÚ¦!ø¿µîˆSƒ#À›`^ˆè$ÁNO˜ƒ-;ÑeHع(ßÖˆŒÀ,¬“¹„ëÂWàÖþ†kÁPîT¸Pσ[¤¶R¡:Øž¿ò²ÑMt”Ê}f6šU(Ù‰|ð5¼Y²%ǧ•Áy9ê ÐŽ}Ø#á£î1 аîbr¦ð¹´‰KNBžhHi‘r&Ç¥3çŸÿˆð( O“ÚtÔÀˆ ü]ÍÂm²:Ü’( ½•NÇuSwÕD»rœÄo¸b50Þš»º].bÖÅNë =t`r%Š‚úŒ¼Žxžr-žÁxî*s•„6UöúƒÎ7I­4qÙôÿ(GQSY>wzu­£˜ÿ7RYEF[*‹æÄ€nT0ˆŠê¥ÛÝŸÚG:)™ÊᇶàräÁ›Ð[Õ"5Ê–.XÐz¾‹”nøµ÷q >BAèWð±ŒqÍo;Vü°hšbí#¢ $地œ_¤¬Í­)wÂh@ÿå—ëÈte0 ë=KeLK¤£D+ˆ})ÀJ,X‰H?M>ÿ° ®ã+Y癤`f,Õ¯“ärUɾ¬“›ûù)ËÌ7 À†Ø¯ËÍJs-…Âw bó¢‰Â/Qì’ÊÜÑŸq´ðJ/y &o(ɳG$X̰)™X6&`Yß³¬8+”¢³®@è"ÑæÝâ%Í\Úo„ñþaÁ%¬ò—ˆ—¦#´Ûòœ+WÆ0´¤ï™Ðëx Ñ1½< ~?¡íàà[ˆ5D2AªõûìÉ£ß>Â}Û½ƒI Þ†ùxJ°G»ËO•HywõèwÓ»ýìõî@@Ùß9ƒe†/ üs"cÜi¬t¯xþ#±t ž.e‹h4ë›GÐ¥„¢Ô#øO“ƒ«âÎà@ ‰ÁÉCv‡—78yåS®ªopNŒÓÿ|y:r§#lÒÕâ±=@µX¨ ý»W¥:,‚Îz†w0œ>×ûï?cMcÂþW'˜Î<Ý_Ð*mP*ðiæ1ìþ§øD+¾/^^#;¥Sæô¿³¶Vò.棼C²ÝçúŠÓÛKÕ öØô¼Ô¿à2ŒR1µ ÂaÈÆ‚GŸp<ð•E6Nêöæ—Lp×[1„†Ãÿ.8ì  ¡“bF z†yãƒÑ0èa3„†ÆÿÐÜ1˜¸\)j@ÃÚ!FÝÂK&R;*lp¶¹UB4°ÿ {Ë®|8à2¨Èm>F·vqC\cW¦šå öã3“Þ}þÓòðúrN?» À6ùŽ~.a]äÎkŒ‘Óï³oñæ“ÊÕx z3öV(`,nÿ9áä¨õnì3ñ|MÄò*–$p»!2Ç8J<™r[Äùn‹Aµcñ…?¼„…»´ÿÁNžü±®ü¡¯x‹v&óÒ?!.H¼™ÏYå0K~S{/‡üíeˆœ_µ×ŸÔþˆBOÕfÁnýÂé4“EE”lRfV†Hè(6„æfaïuõ¨a$S$ú!XDLë{ÉzÀ@°¤½¬ã±Ø(.][ä«,ø>aÿL¼?/^)è|ô9±ªV  lÙ˜o°üͪ^–/Û#pUr]Ö“þV%—.o}|Éuàš$ÐZ "Ťyí?kØiÕwm³…pYìw ¡.ûƒ÷îV L5¸«(,ÆåÍÈ…DZŸû À*­¡á”S(šŽ@À{I=·ˆ( µ¶-sL»)E‘6Öæì\g_òÎZæx«À)&“p›O-^+©¾Uî‘ëIJå§.á¼ŽL=þøä4$pÂT쮥ީDáùاêÅUÔö]­±Òó“pqwÓ™'ˇ½ê•Ýôn¿; ç7kÓ‡+±Ü‚'ÔîRÆÎûNDýÕö躮`§× Ö ïuY°¼Ý(»”Tê<ž#”†«R…NZ"l›v‡\•…¥ý)?i=Üô]mmš¤êŠd¦&ùôÕr½§Iò]ÚÍSÑB^ÖܘÍ#¿6æ©U³ÎY¾xÇP‡¹pšgýviãx—KƒWí&Ð Ò ó-œ¤Sè[i̘­@e¹úS} Ü'ÝÀäë aÂ×ÒÚ_•6iˆõ}´—AŠØÌÆn$©–<Ÿ¡ï”ÚR¸å¾=!•Rß"üºÀèãñ!}ë°´¾?;¸[=ìŒß{ží·$ÔþÈqçrg®y£S»LàB–_°=j…šé.‰òº—†þRØuÍd‚•×;‹¦Özã@ai†TQ«h _GÛŸAŠ&³>³³&aOG",íoi~ßwÝ´k*ϳæá‚7“\á$ž/¡îFIÅ1ý{Ó-Kf7Ý_5Io6`è(ã-@>z²éä¢GÙ‡aßùï¼ñØUxÒXæu°ÞwlTaÍÚÙYuÜÁïT<Þ6 Ç=ì•ã8kP1¤­Àž@L¿îó¯C¼c,€D¹o? úÊå°r0àuίŠíNàÉ-?µ!‹®Ë:†~Á“.>Íw9]¿.}37%bh²_xð“‚´ïå[¸ùO¥Aß6Ìo7YîH²Ž8uhzvïnLÚ>d.ÉœrEü©sÊ»°AÊÄØ1L™1QÈ °¶”Ï"«0B»<õoÅèÉ!Ö$÷&‡P‹´pðqÓ[O¶pîyë­¶ÑÈL«ÀÍ•±wzØò"Ç^—c÷Ž>"<(Ęà(é&]ôüÌ’Þ0ˆ˜eÈ:ÓTÚ¬0ÚFO©¡?ð·BN%2Ôjú¨ïRvb¸ÖŽoußoJ¶¤šµW™¤ÁÆÛ»ÈM)Θâö²9Í÷gÓÔÑíV*Ö4¾{Ú¼^Þõó@æúÏc…Žiç9FŸd#žAâé·$AÏ-?Û¥°ëНé_wX¸lâ߉5”þMõºz¸‰Åȸ¸›¬|É^–ÇWÔÌMþø‹]a{üøªýãÙ »—h÷—gò ù|Øþà_S‚$æh¨9Üö—ÈCx£ð¹ðXÎ#¡À6zêµf÷¤! ¨Î *Ôu¨ð²v‘~Lµº\wÌå™;8öClÈh,Äü?#P!SñǼ å↯ §©OA­€ç—Ïn—O—­ŠøµJõ:÷Ý÷7ª}BŠ íˆ·)¿hUZÈ^ Ì ü,á[¬¢u‹1§R Ðë) &„Tk-À¨ä'A Éy9\ ¼ýÎGÇùf‡¿HGa,ñ.rí%¼Æ Ÿ''‘t *ä”;rwxáô•«…»hk™þXÇm±î«’ ¤vm¢rƒ…U(VIql…íJòÀ£L1‹¿æ!XªÖ‰pÑ%{ï%ˆ^9¹cŽÜ9< ðËÉÜ×Â^KFa"y¥@âÄ4ÞuI™::ARcó"Ya‘,úpMéÒ¯›R¸õZYõJ¸âµd<ù\å4€U­}æÁ¯« Ø:ìú5¿¶üþŒÉŠjM1À)g†ª˜Ä„ßÒ½»—›sÙ-tsQR Ú*Ÿ›z ìŲX ”}#5€ÕQË)VñÊñÁu¤F﯅”o;*/…Ì í œõ§á˜“U ±wÜK*gq1)²”ñ]vö”•™CŸí­ðšÞ0‘Él e $ÿwêúœ‡«ì¶´Qu {!nmÐn Ž1Jþ¾.¨˜cR‰ßá¯YIpr/žŠgÉ׌‰Âî–bm•ë¾#ŠøY.üÆNa^w3JÅ~Y¦erŒZV†—˜5™OÞ’N†‹@lÙ0°Ë=@ ˆ3,5Xì}ÿS‡?L±äñåDß”ý—lò³ú2žüb$«í,Ö2Z‘N'èÔ{ËßWÖ½ž­»ŽÒc#‘ ÂtïùçŸ"žµ-Û©\ ÒÒ¿áx5ŠÜü¤³ø]Ú,òHFX`8úc6r+ß UB&AˆòuÅÐ¥ŽE0Èò¥9ŸI®#p!ùÇ5&h¬ŽµÉPIÿè1¼¤üYcö÷<@éN1¯d„6ï즀3¾3VxQ¨ „]s$j’Kº`é‡ýó ÇÙÎ…‘“\”±¦“f)­½ï³ !:iüÁÕA›Ð.êÿ¡[½£ð×yk lšù«¹ÞÈh!¯½æñN2hü1¢• FÈJ÷Š{â¯$z”£/y&ÎÎ#Óªˆ—tÖ…š)-ø™J½gýåka¹;¢F‡ËijDsX™H§2z ÌHÃD,ÚïQj5þ8ÉšwH~å¦ ð°>Ûƒ¸i‘'Ñ\G1)+<|oÖ¦öŽnjÆ\Å#xÂ-•¼°7 “#Þ,ÎI¿ÆÚDõíŠ=h•W¼J¥îi®p l_sÜ©¹ÍOf[Š©Ð­è›wÆSpý¹`ºl¢O|ÞúÁM–"w(t±5¨!™  ¦¼¦ƒ‚Þ':8‹4eŽ39Å|Ùs©µ…¾`:#ÿW|f).†’©Úû¿…Á‚MÒ Êý2w¶!»zêÆ^–Óÿ¤¥z,Gû&òÅ‘Bì3†×"V|y4¿¸¥°@ÏŒi›ñ§7z#r+GK [ÔD¡*çWz' —…' gWÝëEÆ—•÷§ì€ßÈ 2s ò~ÛŸ×ò1S…/›é…³7> stream xœå}I—eÇqÞ¾ŽõÊ+UËêâÍ9S;›’%Ëâ±HâØ R à u’‚½ã‹)3ï{¯ÐɰèÊx‘1ä9Ü~<žÃãÿõßËËÃ~Ò?ýú¡áñø_ÿôðÏA ‡b?þרB¨yÇüâ!(~‹­ôçÐÓã/?{úÍ›ã9å8j{úüÍÛã9æÖK~úàjªOŸáÏØGú’þ:òh#×§_9ô›7osÏ5vAMÇ1ÆÓ‡ob>F|ú5S±6çÐsHO_LÜO…ÂA2(ߣUâ&PÁ$‹#S="œú±á~Â)u"ñÿBîíé—“É ^ÑYüþÜ|p½š®1•ðô‚¿{ìGÎB‘õ~·(£cËýé_„ QY?\È©$¤Xß*ªf½¨f)…üôƒ¥âåMlÏ=æ²ô‰6M ­l}¬jÍYù±Š+:ËWBnimÖµ¿¾œ_¼ù‡þö!öðœK£QõÁÇ4¾ÆïƒÄ¨éŽx¿´–§–~Kj ª½Þ*ç×R/P}¹7#ÆGŠõn‹¾e¡ú(4ÜI(4ï(QÆn 1ô§?B«Ç8xO9´ ŽÞ“iFþD9æq—ãÊÐFÖœ9,÷/&…k¸ÏôZŒíüÖúmHÏ¥¤!í½Žá_óÀ£lPO ãémJ‰0ÒÝipYþ–®>RÉaßÝó<'$Dü«~ ;D­ñœêc¥qò_ШqH»ÇwqdÕnA´Ò»‡Ïþ÷ãdß>}ˆ4jžS{¬é¨Ï½Á ‰ã¹ôÇJ¥–¤rÆ¢rÊÏq–/T#„ç²`#=‡2)xYxP ƒÄžŸC{t ±–çÖ&-ƒ‡Já*¥SØõ¸<üâÏHÁ¿¾kº‰["êfº©iD"KcZ•ì÷Ó/~þô/þã7ü£ÔŠÏ¹µQ‹´¥±BµžûA ƒæ):âJžDk-ÑðZ0þ¨Ü¯™fDI¿ypÅÃA¨ƒ»#×犦¢&#‰Þ=ü”`‘~m–5؆՞©b@[GFb›IÞŸI°w@Ï Äá"CR}.8í9w‚P;Ò$”A·ðS 6~ŠUÈ'¶¼J•ˆ|l»ìùè0+aØ$¡Þ»)hNå9v+>8 ʈXõÖØ*ñ•aN¦Ú:¢ã3‡ø\ó¿©ç‘מj£™»`äN^bRð²pƒØø4 6~Çá&…a˜”Fá¤ðßnt““ Á[þØ£›4ËÏ-¬Ã'¦i>›XÞF Võ¹­ƒ:Ñ@­}°„’Ÿs^u>Š`£Ç¨/üµO—Ä­‘3Q­h²虌XB < k.<éVª62ä™*w•³¢èNÜQpÅ; ƒk†Çc»Íë°ã UÚé4š eãÕhämâPå±KÜ{ý©TèÖ…lLÏšNÇØ8Q§ä]¾-nÓÔmÓjt(ŠSh˜‰÷1:…Fs¯+¯B6.n­\v ‹Ì:ö½(tÖi4q*¦ÚJ‡†X¯xÀž®òDv[«Ì‘½â¢W‰ˆü7rQ!oth¦­ y׺µsɇ)—9Gú®W¦±’v²Îa£SÞÆ«DÞ¡s:Ù†£‘4Ÿ¡uÂ,Ø1ÐôƒF•`Uœ6y)RºRmüf1¬n%ñ‹„…©•¦CTË:ÍyjÉvPöÆ»b(I)xûWeJ„Dv›È'LZ˜šâÔ'iÚ©´‰I6žô$’’›M¬U#YêXeÚ jb,¨©dỘI Nêhj& ÒÈX•!‚±@‚D! –¿Q‹4îÝ@ýà³Ñ¨•ù@k‚gFɰ‰‹µÊÂHÉ’¿HM‘ ¬8Dò.ZÓˆ0œ^Ø8Ñ 5­‘tâ9$ÑEúœ¦≖80¤â·ÚhXm ž^ :ô­IšÆÉ:½^J™&žLr‹i‰mÞÉBÞ‰–>:É’°±:Øf‘8Mü$V˜hêë"ž‰ «µt–9aõqoŒÊžnmB²ì2ú¼y ýR·Z“—QÖ‘FÌ3ûÀVȯr›ƒM1AšN胼/|àdE bŽ9ñW2Ôd® èôŠáÎ?[Û8ÔÑxó Y)zRä4òà km¿…‘’mM-þ1 Òe=qdÑȉc<ΕÓA®­ ±(äëB˜y$yíGÖ‰v4v‘µS3ÊØ6ÊFr×– £É‚–]ÚVëêÀ¬m:ÅfyXû-¼Œ2µQ–V'Ó ¿SÈì;*»~‚ðr•!ˆVVUâøNk™j2tªÔ±ð2ü… m'œyL-ͳB¤ {";¶òÖ| ¥JKÅ(8•;„ ]bàxÐ@Œ¨Eëñ·¡ZW>XX ­è_™fAeé—<`¦k‡²Ò›4 àT:Mª¢B;D[þŸhò)­m79]šRâZšìpÌzP¨Ñ &oâ­2Ð!o¬ 0˜œ‡Î2²+°­|ŽZtpzÑàÍ)cȇ­-ˆ6 FfÝZcloÓÉË(cÔ óÌÑ@G7‹d$aê{¤d‚ÊÆˆŒ&LÇÚ¹¬Ã#ŒL¢2ÈËè°Æø¨€ ­qVˆ4à '±¤CHk®¼”2­Štòø¬¶æ¨˜Ç€`võ…ÕЄA¦€õ¡V9xmtÝ\NC£†pkqúdÒ`1*yÎÊëN[-Uò®’†Ù£å‹‚Ô€03&ŠäjØ ÔCÈ~ÐOÇ/ý‘ˆNEcq­€`åE!BFlEÝ ¡ªñº!ÓÁR7/ÑÏԂ抸(ê„ðê˜3 i°­©HD0¯Ì’"­.á„Ä“B¦ë%j:¸kjC[d Mû¼-/=d$H’Ƙ8.NÒQoKÐŒºäot•eAÎOWPÖ`dúeXy£Ž¢Þ»bTŒu$¸†4öò®šN^ÖÉd&’„Âɲ[ò¶€£™ÊWd†{±+ⶤÙk°F=ÂÚ73’3WHçÄY‹‡:Zh¯‘¨#LF´JâXó-­½7cÜ)ŒÓ!Ë81Ù:L5 ‘¼µÃŒÙ¬­™DXÚ/-wÃÑ^hdHub‘­á wÖ¢©!ÁiTç‰iˆ/íßF¾M'–öÝ-y’OРAÛaË´ ‘¬k743bôöò ÍÛ”lleªã¹oJN6Öu-ÚÄ»!Š“1iÉÙØWaS:_Í…}œ·1lNi¿Ì É\!•×mý8lNÑ‚‚ 4ïÚŠÒh²¦½{-Rõž›(.f~gÀf:ÌÒš¢ÃÕµWzÌ@r¯ÌÉ:aÀ­ š€CÖ[j‚D]îEPXã,Œ¤w{è6£´ëVY¤ë:ý«3J§w§¥’Î(‡h|fÓeÆgÖX3F²ö쥎v¡‰ƒE쌣"M¬?;â—¶é9yY÷欫D›vV¯q3« SÔ#4×ÁqØ:†&PÜìXǺ l}C+ C&áÉœzŸ±–¥^:Bæ¶áL^ÖÇZÿÝGC6³¼3Îs°&É[[Œqë3l²¾™¡•õÄ ‘dÑŒ›bih…h'+ëb¬á¶Þ[¤‘Þ›TtŽÏxqBºÍ*̘5üÚRƒH­1G*–±SÙHበÉ&U¡F]ÛÐr ''íÉAí6NH‚¬FuÄá3S5$ÝÕ?²ø48±åÖ9Öê󯹣3jŒƒ çk3Ì´]ƒ™[JØ‹àx£jÛæƒëDµ–Ø>À>ØLðäd©ïI LvŽ#"êFY˜b㜣&mlcFD¶ù°@tƒ‚ä×afòLÊi4^ÏôR¢ÑÄ‹{°‘¡n‘U%¶EŽ-c2{hÉÔ5)”c¿+‘s¦aÇaÇ5™¬ˆ„$ áx''ˆ6-{RÝE²ûâ[·æv÷­;ÎÇ” ÖËwæl\T°¡WÆC‘–ç~2@P<¬Éd Z^X¶E5k§YÉű¼S¦¦s°JZ[Û£‘Ù'άsòäKì9¥œqÇf ë@‹RY„:ÄD™l2‡o-?«âMBt¼¹<"ñîö$RŽY¢.Ohy³{D’iô°Ç÷ñš1@ÎyMÙdjHö!X‰2€:ˆM¿§‹&ÄÒEØ:b÷I‹.)¹Š‹] ÒX3±_(§$Þœb—m”ÌØ"S$1Ó<ÎÆÜ¿e³g¦(—!î-±b€T9‘13NbyŸLK¾år)ÔXàãMåшuv§VÖYK>†[ÆÝ¿´·G؇+kªÈùPÀ*ËÔ\£ä>hy)«É\»¤G&äP×”ŽCh’Jƒ7f”9ÎèxÔƒí<öüžsòÎöHÄ;Û]¿7º¦b~z½,jyfÈ;ÆÜo&ýjYœ-6üH»JãÐôqM¡db˜J³i 8yÎÎÂ[YÍHdJcÉ"“xá®JÍ´ãà0Æ6ܦ‡uµ†É›^îî]/w÷¦×ô÷ŽcÞÝÉLæÆŠŒ¢DïS;2à"O榖¹é‰C_¶ÎØÛXÑ›4 òÒÈ‘…¢ëTý†Cc²í}>Y§kaŠŸz0¹é$™±…Ì÷±wÅcï*¤Àö®"›Zö®¢—ö®¢×÷®ê]M¼‘™ÌUofÐ]œ`žÂDžÌE-Û¾ÛÃ3¨–èë:…‘ qNÃ.]/w°f˜v=‘Í2zØ ‹g^±1/I_Ç!¿µ­L2­ 8smËÃhI×é¹5Éûš#ÓoœžŸ8ÆÚ×@>³¯Å£0®ÇÝ®˜¡Þãhf^dXÀ8X¹§à”ÊjÊ‘e‹Ä šb,Œ©#ÃØLýVûŽ#¬ç"$wVn/°¼ƨã¬í2ñM:7ç¡6)«@X¹‡"ˆ°.päÀ†ßŠáœq¤åÀÉ6%[9[pŒ56 rpH|K¼¦ÎTêí¥Èõ(¾+ýûºÛ}+ ”Ma™7¡#—:¶uÌ.ÿ {ð‚µß™ 4²H>ªÕÄä­\øÛ Ûƒ†¼õ!X{=ÁÊl|Zè|ÂbeÆo8&ÊQó™ ʃŒ~b!–Éú i¨‘#ò aÒ¼G+ŠJ8°8S"H? ÚÛjííð:C‡5ŽD€Eá,¤‰ÍÛìgB€“$>‡QÊñ ôeÙ±û)ö>q̨…Ül·D6^I¨®ÎùDÁ§Š-DãgÔ_ç§ûÐ-"++–“Và£D ™´,ÇR¬VI²u¿SzçÛò„£G“X,YÆcå_Æ]~ð¶MŠ«r:—&“Þé0 À>7ì½;P«)©–.v‘84š(¥d‡µ62ïp8Žw%&ÊrÐqᦧ`6v©óBkiKœ¬°xÐÔ͈UаñNK€œr`‡ÝñoÀò9zñ¯Áç¡¡ Z6—‡ ‘1d,ÔQV¤ *ƒ#˜ÌZW¾„D¡øúâÅ!ÔÛlÞÒÞ râì sí¯¬ ÍÒ!g9¢–'-ÖL!ä:é®tùi,´Èб ö» ­ÕOJ¨f8:—|-õâ†ó‘5“Ðå v< N7&/³fœšœ—w Z6¨a‡ӂ£ÆÃʬ›­¢ÃåV '=L9Þü§Q`–¾,òs4zòDÅ!ZðÍÈÛi‘U«2^õw¡¬º—…ÁÅ£,^¥£W•€í=+C3Á1TD§pRÂ4+ì-4Å9­ET9±D—`[‘Ô"+Öe¼êïÇü^ÝËLŸõjr,¦ò «o›ÆÀʬWÖýÁP ®‚©%öÕW ’9e°¤áÑIö3öǶK’ÂæƒF¬ªQð²ð`݆lo5®iHò!óNxX™u«2ÚC¥t '=T9l×£K°}_Y9ƒd$–x¢X»,øÙøJ™uË2\ #$=Wļ(PA $X–©)hñ•dj +³j²V7 •Ñ)œ´0Õ"²-¬XϾ,‚5`UX•‚µñ͈ò¬ÌªUt×İ£ÛBÀ‹Âáâ+¬K¿ жç™',¬ ÕDÇPÂI S­p@†ƒb=‹j ¡¸–|b€¹ÍÜm[ÄŸ¼Ìºu´†A‘›T¥àeáÁÊ51wèŸG#À>*$gaeÖÍ’v‚¡B“¦ZwMaUM!•Ë›Ý68¨ È/ay£eZø˜àĈ‡T¡àeáÁþ!@…„<ù„…•Y5Ie† iNZ¨jH‘ šHƒÐ’ SI6?‚g4)nGy‘5Ë2d !&õðBÀË‚5Kb)tàn –$UV„f"ƒ#¨ŒNà¤ÅEî`_…¹D½¡Bc›Ì!(÷Rå½V #». †(ÆI.­È\ÔêZ6—‡ I|ÛÇ(p‚ŒÜ63°ÂåÁøûÏ.±V?i j¥¦ùÙ.YN4=wJTùT7§3Í⢤ ÅÈÚ²ýTŒÒ‚d‡”‚–•륀ÌW”Œ@ßs0VfÕäh¹a¸ÔJa×Â4+2 ,x4‡4­iÁ¦ G¦ «ÔX™Uã;uŽQpòqL Zž±Ý„ä&Í%øØÄ‡•ÁC¤p —[)œô0å"GË’®1y$ûûýÜd‡"³•%–Y5NjB©M"% eãÀš)¤p®E ðÙàZƒ•Y1Ù}6 “Yëï*˜Z‡´7ŽvÑK!rš:âH&÷@ç 5´Âj¬ÌŠEY"(F¡ùÆÁ¥Rð²ð`ÍŠ‡…¯„^©pc +³jršÀ0TJ§pÒC•‹’™9Y‡lˆG e+ÏGæâQÊttqXŠ›R³º•,øQG´ØR›“Üm8}+³Z‡¬ÙAÅs'L«"žq§L3ƒ¾+«÷QÄ¢æÑHVf½8FtŒ‚sÀeRð²ð@ h|=È(p4Ÿ£ó°òåÁ¤p •Ò)œô0å¢F™€—"—7"û"ɆmY*Q`:ºY3M0ÊïãcV¶¢Pgµw[©ÊÛ•ÜŒBÛʬRáþUMjŸ$7ut-l‘Ç„H^—Hò‰†ÛQ™6L"+³F|iË1JÉÒ»JÁ˄㽠S#ÈÀñ{ÆÃʬ˜œ2 •Ò)œôPå ÄþTc‘K4Dötvà[jÄ8sN˵óÓ1JáÝv§àeáÁÊ1„Œx’æ $z/ãaeVNŽR†JéNz˜rYVO‰çìË阳œØêH.ž£Ä—ã*-²jUö!¡ÐÚ%¯ïEa€ aŸÚбB€C]g ¥Ëƒ `?«x^û¤€hhÌÌ”ÆË`6?ʽG¤'cÀ”ŒI^¾ÈŽ÷—bèÝ"#àEË™LÍ™BlœäN“…–/.„c¨ˆJ`WÁÔJœ:Ö­¯—2x9/7<1i–&P‘[ŽV¾è}¶01äJ”°¢p¸<8 qÐîÕu¹è |ùè"8†‰¨NJ˜fw'p¥L®ü;dpö:†’$LA9¢Ü“.z/ΟACm­îeaÀŠ)$ñ¦¸S8h‰}te ~BFøûÏ&ŸV?i juÖœnzYƒSü0M‡Çæ¨DLR¾È3%}L ÃÒ.BÁ˚⚀Ä'&œ€úg1}ž á&¤Rص0ÍØÈXjùeB°esƒ­«ÄªUDkv•×ÊàKÁwžzÁÐ XYY\&Dvh€®ïƒ¯÷]Ç0©À®…©¦AgÛ ‚˪d*;mx#ġ¬|‘k­­O ßðT VV—¹%zàõ£8Ȫ–ùn’•Y7Â1Ll%°k¡ª!Ô÷´áËàÞpÂx¬|?ºáiŸƒÙ6N¾iù"×›CGÚ6BÁÊ–™œ€ÌGLœ€Îb+&„c˜ÔFaÓÂ4kºš,8õ÷2!áà¼MP¾Ø0J"›J~qÁÊú²#†qt>ã鬬yBpCàÑ äyÄ+ -_\Ãp±…ÀI S ×ÒÖuÿSxåªód•-¼®PÕ¹+‚'N%ÿ]ïÄ{u++ýËÄàmL%pà"Lœ´Ìjé.b˜ÈJ`×àâgØ;eÞ¨}Y ïÄTd7U{ÂsSr´Ll#r`mbà¦ÎBÀŠÂáò`^Ðܪ#Þ¢¨Ðhog©Ž¡"…“ªÙàÍ ƒ‚-b(&®nå¦cp”£eVŒ·p·Xø@ð¢p¸<8Ovl•.¤ÈŠ©÷ÓßU@«~RÁôjâ™òGø²@ÄõÅT9y§(¦À×@¬ÌŠéùÅÀùöÓJÁËÂãòàL5˜£€ü8V;ÆCËüDšHá*¥Q8éqÑw¬dg–D9IiÎ+Èg¥ +Ã{rĸÉ)*)CÔÆÁ†càÂ;j¥àeáqyp2äð Fá(|×yh™•) ä4 '=L¹¢î‰/–¿,¹ÿ©QùÔŽ¢‘Hè«—Y7¶îŽÃ9¥9/ ‡ËƒCB”b c²Ð2«&B†ÉhNZ˜j]ý“Ÿ—5ˆDšüòbܦäîœr³2Dí²a¸y6ʤàeáqyp<ÂK£€ƒ<”‡–/.…a˜”Fᤇ*‡e`Ô^& 2<š¸\&Eçã@>"eV-=/¸É†ªð²p¸<8ލ!ð^çÈ“ƒ–Y1uŠ¡"Zý]S«.êe4>TK4 ¸‹8Pß^³2ëÕ@Öp=µð²ù@o+Z}œ ía2Ð2«%"†‰hvL/~:Ã⇗" :òz0ðÑqâÛ¼)1Òûü9–,‡Ç´º—=d1‚G,M6}ëPZ€VÊß~6ù¬úIU+ò³+ð½,Öd¸w>—×p1ƒ9!%æEVŒ“µŽ‹ì/{”i$È+j($È‘mSZ¼<¸ †`2“¦Zã kÒ_ÅÌ<àŽN‘ଖ¤‡¢)5xñÁ¿Å*©,­fE_(©î&©Š)/”µ u„¯!˜XZÿ$·(ƒgÖÄwÚ«Ži8 Kâ÷HÖØÐñV¾ÈÍì[^Å xQ8 ‚A$Dœ4•l<Õl"XªYÔê'L¯¬\ ï/ ¤ñcpD5Ih?’l"è!H-CήnQ1p›Cf–Pð²ð¸Wð[¾æ7Ãïã…ÞÈïÿý‡_}óåx›·Ûñ¾ù÷ðô—ŸýÍWŸô«o>ÿò‹¯ßü©¼[Ž7@j³üä! o實'ùó÷—² †×¹ë}¬ÎNí–B6Zxº{äï¢u¥`}ÏF+ü"Úìo>üêci±Xk–ûé¯>úû¯¾¼|òõl.½Q7%8ÇêòTóO' §Ÿ8F¹%ÉôX Ùhe~êûUB'”¬o϶ÁÉ[ :ï¨~øõåÃ?ñ¶±Ôȇ´²v”B¶N×»¦÷°´Ó¯±üŽêBKŸ“þZ×Xþ õ÷n$2U•ÖÏ2‚>þêË/>ÿ?b‚ù‡üæ<\®ý³ßùTïO…»XÒÑ7°²}­àuZ×Xëã߯UðÈÌSô—Ÿ\>üv6†‘y‹Íºb½.6av©ì6–të-,»B¶Ðò«˜¯ÒºÆZ®Fþ–¢€máw…hAdýgÿ´M´Î¦ 6¥ðü•}YâGŸñù˯ˆþç~:uâÕ™v_¾{÷ù׫ÿñýwõÇ€3B5n¢ ¼m°§å ^#Ÿñ¡!øƒSëoíéGôw8úù釸“VB%ák=?ø ò|¸+S‡+#Ëù–_˜)òy¡ÿ¢G8¢²|â'ᡜ²Oü€Æ`å;ô—ón®>ðó}¼&^ é8®ùÝCî÷gZÏôïÓ9‡ÝRK¸$ÄŸ—:`'©Ìö˜†î¨HÎÓÚ1á¬yòâ…* ÜÙ¬,,PC!È Q$ép­6g¡ETPAet»•aèÖBQñãüŠenfUA—ËühŒžù:òÛ£1¢IÚª<½pU5 9îO(Ežü"ÞiȽüš%³t“%!%ù,„|\HdŠ:€¢È«NgB€`ë>,©à0Mû3Ç"oõyNˆtGŽ8Ã\½»2nKö¼thƳl5.ò±IÁÊÖÚÑþp Ú_ÎÃ{Ô¥p •Ò)ìzpf¤ùsHÚSö½#3Þä K?²@8Ðít]uŠ`}Í,+§ŠgGÞâIX‰O{Of|"¦¥—Δiò`²÷öÖ“8µ„‹úé…—ÂÇ>rôuÅ‚‹êg|Ï ±Ž–©•±’ÆIGÇ8øi'`Å iXà©—ð8«Ë7.&ƒ¢‡®§†a"…] éF#ãߊ™„×e|ºÀS˜S`¦#³Ê¯í\×ÍH¯–¾àÜl×…»A°CÚf»êwj¦¼R^ÚÕ1¤Ýœ€…ÃlWä±GšíŠçâúÒqZ^ÚÕ1LD£°+q£³™˜—«†öfEbsÆæù«æÕñ3$×3²¼x°»’cØäاÂmŽ9HLcÜ.%‡…Ò nÈ?âø±K´¨WqzõΠIM^?£ ²™I]k Nnr.];zÄÞgêò¸Ï™ ÅžHÂmT ŸÈMJãë’’Ü6Q¬’"’“Y“ƒÝJx‘qE§g'+ Tp?­(ü¯Ø>3VF‘ab¸ÔJ`×â²uòkíž³Ý0ýOÕ|è!#S×ÆÏ°Ë5öwWÄéYÎc[m3{r-ؘ;DÚ.ãCGm¶íä`Ÿ‘†M B/zfPxÙZfpÛ)kZã0ßdpŒ)µ8i¡SZkü ÀŸâŒÎôPîR\¢3GÐˆÆ X¹ËY™ÀÏNLHåÉAŠKpæ.³Øt½º\ó«øf§¯ç)Gd¸ý.còVIÂ'*øµA}ÞïL d(Ë {ÛTíí ÊÎzBظ2‹È¯"ðûU“ƒ”/à‰m…‰ùÄÜ$àå sÛ!?Cì>˜09Hùò0e0 “ÑìZH«^[¿«ÆÑvmEoÚËónl¯†_³åÏܲò.¤ áÕ,ÏÓÌ·x&Üçœ1Þ¤b~ØÎÇ3N„f¤+ÇrÏ‘® «…ñ„ðÝ0˜ Çh‡¯\¬8çÆD¡? xYÏ8OHå‡á'ÑÆYHqNމ`2] 1¹@Æ…•Šƒëì¡ øŽŒ/­À¥V٩̇l [™¬ ¿^P y.jR°2³@à ôþ8 ~|²2j˜†aB…M ÕŒZšG\©‡jF—±fˆ‚kEó!knƒ!OØÛngb ir?Ú²E›ŸÀ®çÎÛüòRÆ8ßvœô¥ •›¾lgØÅi /ë’8É>)È“‡=‚1¥0 ÒlJ\nNÁë–±VÅþÇ|$ŽçL•+ãx›=ßš†·Qä Z|.ÿŽf!Në4ÞÔóhw›Ùr+>Ë*¥è³t xwE‹!z†þ˜Ÿï\)8O–WÞÉü•’Œç1üxÅä`Ç-2¶’JY0j•c#FÁÊvXmB(DÇðv ²#4yØÑ”Â0LJ£°ëaËxý¸‹E”˜Ä“³ÌXÒ¢O08†& œ‚•5æX”L´LÖL! Ã¥V ›¢BüM,ùžÁý08ަï!y¿1㈿«lŸÓ:cH’Ç„s÷wç˜I8Væ¯!e$pâüäÁä e(MË<¬+ _ä•hK(Ì2óà iIzÂ(T~@`òòåaJa&¥R8é±µìã_56­Á5AÓŽ*oKØó»gj€„,µ çV ¢ UÊÎÁWÚ0Ž¡ ç¼ìKŒ ‘‚5­­ \S_cXÓ:†Ë-NzܳsWÍcvNO%†Pu)8¢œ¤ÀU‚vÛÐá#Q¼)È;ðÜ›vWê5–9Ù ?3«)W97ifõD‡!I»iVù˜kßøD"Î÷òñ5šÎÁÍjªrÄ×LH#`e·ªQ›hÔd:7ª.ƒa˜ŒF`×â²6éÝÜ ÈÕ-»˜‡Kù䨻+b€ÈÎùŽî­v]™;D"#ÕÉ#'çౕ4ËDV›¼l¡•C42279¬\Ã0À®ÅåÞP=7޵«aüz`–!—£m#ôÖ€m]_#ȾX½‘N¹Á4#ÛÜçlç\ (‰ç;?à|+—bµìõï/¹”*ßdYBÕ«®®ŽkÔkRü.¨óÏßžé’ô<³Ü8—u1¶ñäzœÛì,ÆózXÑ"–…Êið&3M _‰æs†Qä!1§`e3"¦eRÓ3y˜qšR†Iiv=¤éùu!>±ÌYä—«Öñ¦/òy?¾D9áSä8öâò»+jÜ%QNeõ!æHUŽÜ¾Æ4Õ¬OòÊË©ÀÊzsLJôïF ùtÌöÞê$ÿ:Cƒá•_ÞfÆGK^¶õÏ”‘¯L^÷ɵJ“ôåzñ†Ô ¾#5=ð•%î¢*ﳟ ’åV}xzKõ¼Æîze¸`¤±öUYµ¾“—â²2t]÷9+ ‹eeˆÛë¡Í•!îé‡8YHqY:‚K­v-t½M> Ä#‘ôÔ,s7¹F¹CfIÏzøŽì&/”ÞùFu÷¿ÛeÁ-uŽZë&Ã|HÖð‘Αו½BÞ]bHä³ì6Ì8Ìò܆(wÐaG]©þ@5°È-¾’^É Èš£Ý6^㣋¶ù4vÆ}<¾Ý&w;SÙ_zfwšøË„³¯ý0Üihòº´=2žñÁ)~v\^Ê~wE ¼t·¾ö¾ ¯2¼Kt‡TÈä!a”±É@Ê3,u :€—‹2 ùEk'€Ït- ¸¸¥ö» hµw4v"æÜ¸Šº5ƒ·ŸÅN¹I/⽺ Ai”ެIüMFÔÒÎ>ä@ý«Lsêrsga¨˜;SÃQä©j Kìòþ¾GˆWA×ÚÙ%ñ¥½Ý!º„(x°¢Ï%†3ð5H‰AøW ,ÈÆBÁʾqˆ®!œ‚®1œ‡¯B\ Ã0)®‡ôxÕ;èæÏã-WFÔÏgxþÔ~"À‘Ôadÿ~Åäð:Ï«æŸè ‰ráÖ×Yïä´¼4¿chã:klá±6ÿàçËgóKÂzŠ,åµù ÃåV »Òü¸¿ÃoˆM=57>žµOiµ«¸W³ºRâbÚÏ'®«”ûÜ<_8¼‡4)mdÀ*ð}§) +òx}}3çÖËø25ßÏKX8Û)=6)R¹M4óÛ¯^¬yÇØŽîµøXp4™~ås‹ÿí N-òzOŸó ÆÜzÉOŸâc‚«§_Ñß)öÑŸ¾bŒroOŸ¼y›hhм~Š‚L-<ýÅ›·øVµÝÓ_ñáE,GJ{úõ›—^¸"I©×öôÅ<_ÚóÓ7àÂÑêÓ×B¸¶â‘Y#Tã›9ýéoÀ¯‘t$ôJí—.(N]½ãÄÛÓµ"Éüá"¨êrÉ]P7wB,פB¥òÓ—÷k‚}¦8çéãÉHï9¤)x%þü' f |Ep‘õI!†þô™Ô¬Ô¬w$\‰Ì»,ò-ÈW]:›]:ž~þt›òªØ§op$5X¤7\|bõ³½G™ÀÏßÌÞýsðÀÃmSd¥ûÂw”Zm”£Rs¼[þ>õ$÷^ÂߩǴ­›5;-“÷&å§sK|ú– ãfy¡ú(¡§¹6dl¹oðáþ§¢O%í|@SÍ_/œîQùÕqÕrÕ~­ú–{á­uÃ[y!“#½!M|TZÐ1žÒËt[çØ:Ê1lq `” ü €q– s³&œ¬Ö:< ¿¼Zˆ¯¯Ý}o0r¤’UÜÕÚ'¼2_÷ŒŠÊêã™5^Yçï/¸û(‹÷ïóìU9ÂM‘Nš–Â6–?öšpùƒ?ûÙSàãÞ†1ÕC÷Fd]ü6àJV"Ó‹äÖE 2«©r/‘Ðæ„ü]à1jA³|ƒ«y­†1†#àU:‘ø¥pg5¼!^VbŸMbŸBkƒjÊé ?º¿œ¸?4•W›Úð¶¡V¾·hþýú ÞG=\#rúŸmdú¿v%¥§ŸpSnz0ò ޼«" /J§šaeM"?E¿º9|Ó™ë[1–Q¦ÁŸÌ¡¯ý¶ûFüIáóq=iÖÙ±Ú%±#Ç1† §ní‰Ë扦¥LŽ>¶±¹Îèuàkˆ²Î«Õ­$Wq¿–O¼Nq˜Bœ*®gÇä†fú÷VkJ3ñÇ¥;ÖàÀ‡TÜ ê€Uí*ëgÜNµetä[Áí4¡?ž¤Oskþ¼Åd踆‚/÷ï3®ý·Ep>gvwñÕ hž^lÈFž¡{°÷–ØŸF\¿c_™3Â:»VA×ñ!³‹Éo¶—éÎíEÖñû4ØxáBËœ¤P¸59_[úÃÅ]^ÏÉÛUæäªºŽéH¶|µ+›1™DNëoLíý*æÉZ×Èá{ÄÁ ò6vä?·é—Û¥¡cËסãȰíZy_GtÒ8ïüo'Ë×Cd1ÆŸ‹½Á«©4ÊtH­ôαrм¸Ú,œôGN7‚:v8×AÝuL~/ ]áWnA]²gVÔ…Ö7¨u¡/QömÖ±Úο‹»ÑIW,»¬@‘Îo$n*±ÉäÁW+Ò6yÔRaù±N’{Öç?œ-ëÿºË½½SÛ¶x/z_‡ÐŠrÃÉðÈÕØ'Ûœ?j°a®œ#,ð1-,nzÀEÝÏŒÈXX/Õî8üeýÁŒøïaМ£°ieÙeoŠÕ-rÄÓÚµ¿]µUžÅáÞzï¯Â½AµÚ«i.Wcè~ç†>‚{ÖïŠX™.±Þ{ħ7WúÚ÷¿ï°©éÿÝasÝHìÓט↹ZVLðSó¯¤ ® =ÝÍË}tsÝéQ6ä–6ð·êñzV†5Âj·Ð¶DŽ˜±™ÇÕ[éd&aH|úùWNm.d~£ÚµºL„; Œ÷XšÌ¹üõ›ï‹¿»Ûûè*V_G%wü ÿf_}ÉråÖ ´~°Rèµ×F1Þwk÷Hß±6üO)«¥c_]©©SscµûP™1ýcßmºZ Þ2“ᅵ-½M¶£‡4#ÿ¼%÷„….xëÉp:h4 ÏßÓ7Ôá%ì¾®ž±£fß@çæ°OG Bù½yî‹ãþÊhâ‰ÛqËhrÍk–pè·²špíe5Wì«<îq.yÜNfÕ\ÿйïJ¸B²Lk±ïXðÿOCº$/ï ¢;öbñÙ3z[}óõ¢üÕÈk:ø9¶–¾º D¯ÅX‚Ÿeãä*ô]þߪÄ}‹|#Èù£¤Jÿ( ”‹£r÷ék~Ȧ†šÞrÃøV”ËÂëƒK൬·ŽÁ·=zÃÙŸS°+øÞÊcÙ|6[ò¿ms|ßV¸½Ùb¡Îi3}%~'_øc­ük5ÏæÞ±“w‚ˆOt³—q÷£ÙXW»d72‰ß½‘±ñù»øñ;#ÿýÇ)ëuÜØeÐ=¼·¸¶Òãxm5Ï/¤»{íÒ¨#Ý9j³J}o‡ó&Ø%ÿPFq´ ªóR„:h›ï3ü×Äû··Éü‹øKÞ›XަìÑ· —¥ìÊg™•+ËO´)k8Ÿ¹Á0®û9š%0ûådøË¹r¸g÷Tÿ[kI>ãR²æÛÖÊwSë4…IÙÀï’äÞž×Õ´¼ág̼ÌÀ?Ô*äk½pù ¼f¼ðto¼— ^V$ç…@ ´Ø[MÍÚß7W 3ß¶ <ô >¦ø{4fæöé¿,¶l&ÖbµŸ£f¥R\vzÖíº=--›ëok‚ð…¹SúælyÐ#sOJ·'%hxTsH×ûšklùí½?Š R–'„3/÷»› îèpx ÇÏ&éU¯…ˆ/mT1^IþûÆ'éº!gYÿ¼‡ŸK†ý—Wù˜÷öþw Æ{žøv®ÌþÖlÙ¶šsÝåV_jRC÷í=öL^K&û~Øž~5£âûŸïu‚wŸ”«Ý9–ÿÓJƒEùT‡Éúß…5pÜìÛÿ< ’ ÏcŒó[´c¬c<¾åÝ¡¤¢\<šÄo#ôQíãÀ^ÅIk9,˜i <ýè‡rÔï( 1:ú‘Æ­ŽÆW¸y>ȱɟžÛ+{™ÔJxy'Zÿ–ƒE=ò½/vx‰BNäWßÝIß‚ ÞXÞδKŸ ¼.ãœ>iK|~ëãéˆkÂh‹]?eÝùéÑÜï%[÷U7Iªû0›Žr9LcS&ÞÚX"°ë4þÇÒNG¬·E­çõ&«ØŸþ4”Èhÿp:´¿¡KÛWœWÞã»öÈø<:¾}SÛ–#‘tð;-)ÝÙ’»HH¤þéMÁ—POCéF>ƒMý3î<à±@K(•qPu÷ h€¶/ØþãbØuTó^ÈêcOÛÃ,?¡ÿÆЫ ›xÜ?Æ~Û Ë rm¸ÝA­gÓ8 ˆ1–ù¨[ž±ð–çÀ—†fÞ‘XLçòçïýÅ2ËW#õƒm\M[ÌùÀƒŒÅì·:iqQËŸ+ÆœfÏ ï“]¹é9¿8×dÛ+Æzz¡¼J¿Ì¸=œ|‹·—"ÍÔœÞè=’Pë¼þÁM½ÖA1‡úËõxcÒ?˜S„¬X&Ó[¸nS?Å3ð}È]º=4– ô`Óðê0ÈÕ©·sjZ¡ö¸‘À<íÜÛò¼Þsð¸ÑÇFt»Ž–s|­ÿ÷¾¤ÝùXæN<¶+*÷n¼,DÞ;¯hä–5{kÝ´_Y¯ŠÜÌíV†£$›†§ëU7’Ðü÷œõÕ!z|ñ¼u¯Aî6è×xli‹Õbü`Aù^³\í;‡qg’/ç„×¥ÚŠòn³s´¯neÅu!õ¾ÇEî8]&ýš[ žã•†°suÛ§ë0¸'‰#ïoqßsȧ~¶¦×ü ?~ø¿›[ñÉendstream endobj 55 0 obj 14410 endobj 60 0 obj <> stream xœÍ=IwÇqwX?/§yĨ÷%7[ñ’ÄŠd‰Ï9H>PY$H ”)éåǧªº§§z HBÎÓA=½T×¾Í÷çb‘çÿËÿüòìã/üù³›3zz.Ïÿ«üúîìû3™ÿ!òèóß=„¤ƒ'KQž?|z&óø–¨}<÷6,2èó‡/Ͼ:ýéB,Â#•<}{q)e|°ætƒÏ£pÚëÓø­a@´§WøØD¥­<ý@Ã¥4Á—WU4§Çô[ëàüéÿ‚É¿ƒ‘úôóEа–³§—ÆŠÅÁ„y_ÑKwzÂ&|{Q!†Ó§8"£>}/*¿}zŽ×BÄX­}ƒàüŸ~,3¤3Jo^×01¸ÓÕ:›…‰a°QF„ÓŸqÌ¥mÌ»ÓÁ*wú=>°Oiüéó´ŽÒòôõ‰À¦µ4§/à§AÖë<ÅÂh§NKzÏÈxúŠÆ±#ü-=w°ßÓ×y‹^Vû\Ð.T«^_ÀBðÐä{¥ þ’×îô‹tv_½õ˜ýfコøÛÃÿ<ÓÂ-&ZÀ²‡W€S|ec8¤‡E<òKº&À©Píù%Ý©°áÉ ’|ei4Í¢^÷ç•2Íšô¦€ŸoéþŒ3.£¨ŽÐa›åù69ŸpE›ñQ 7›ð(äöM!h.µÒ‹ÑêüRêÅZˆÁ<Þ->„|f邓ד4\Ù B°`£ã9¡ðׯÓëV,Êì-Vfi‘E ïY¼_¤=²Ð[Sd©Ä9„eÍ ö1M¬âé» kñ©®þüŒýæh (¼Y<<þ-n]*ƒ[Oǯ0þyYöIÚJˆ¦ÂÖG^ª `¶õ.Lu¶oÕ6£Ë怽Y©ât#elM½DdZ-BÈ•ÈÞÒÍ:>gqB¯— ¼©iìšÖsÞ¨jÈŒ˜VÜÇ|¡o÷üâQ<ðÉQ¼I[ÑN¤@"Cþû]pÃÍ^oS³ÛO4–AC4fL¦±«°Y€ÐÆQÕˆ¾¿v½Q—o\îñáp:áÃjØÓcjɘ¨ x#ÈBàk¡÷ýVpižÓáœÜ+в ˜4ÂZGµD#?8Å9`qѺÓÃMXAêV:wH~¡’ Â┟Rиþ*;Qö-ª7Df Õ¤¸R'ëî"Õ‚27¢å¨!D ¼Z 5>äª<´gµ°!$rq ¢Ú×1sbªïµ"rBU µçýFxŸld˜…œvUÌê†êSþAT™!Y ¾;È-Šüñª‘?ðW˜t_üÐoö­g…¶¦^ï&M'ãÊz´U5e³Iž§Ái‡~)íªæï1¦Ñˇ!^äsð¹£V¹¡|žÐFþ³I ‚f hÕ«Ž!X¾:?§¬–ràpü mâìÞåßÀ¢T’øüÏlª Á[B(bOª['MrçuÐ\€Âh´ê¸H‚ÿ}± ‚™ßa{C0û@m°=Múž@ô.‹£‹M…Æ`xÁ35Õ‘2žÉè®Nj5EéÈ)ûe²0@ÏÚ0¨¯í‚Z™ìÈÏ´™y(˜¬h 5,ˆ«Ž¿pªò÷h³3á§ Ü k^Õ€ôRã$2 Âù02áïQvÜä+SŠßÞ»Ód•¬…cš×í0'xI×Òõ](¢Q"PtuÛɦM…b¬¹ãy¤‰uË#JmçÜtÙH*]rÀÖq¶š"lˆ±†ßBïC°@&5AwWT5®Ñ8=²¾WEb úµ‚¡³LxY 8í7•”׸аzæ#É&ïª*qqN*ã5³ T²¹Fû=ƒ9£‰ž-%½¢¾m<‰ô•7¶uT! UmqàÐ{ a²™ùˆ^q¦é~ìð¹g±I·°‹×…Ñ£ç+FÐ'*åöÎ^øÅMÚ?(Ô­ÿž þb"b’~ÊÛ'gàÍÄ«àf>Ô7i'ä„›e-ìœNSÏÇôȺ7ÖÐ1 "¦W‰nÂÌyµÚÈUW¦ûsâ zµÕ;þI6ã¤çÖî'›iùÇlp’Ïa£A.àˆ¤÷\ßàA“w³º|°þ* ˜ÝßÇèZŸ 0€®w sìBæðl§M˜£œlÙžg¡â¬ kIh¨'1ðóÏgÿõ+ÒuáŠAׄÉëÑ¿$/.¥[EŸ>í+àÆÿq¡%n)ß= †Fò…¿v T&“NlñŠ6_} p@Ð%ð²Åè¤@ÂÊF£bñ𥠡\òl CÁ“<–oˆMñÂ]¦3á&¨XJ((|ä¿Þ^û4¡k4Ý?éH`DÉmC [Om]ù9è`•بÔz7_¶ür•/D5ÊwdœNWduçà á¾³œst—U&.¬gY[j‡µé`Ì… š»—jÅt•؎ιç˵㘖1¶];C‡òr&¢‡ì\çù#á (´±Ñ+Ö“gÑÁ«Îgæ,}ë‘'íÂ;*øÅ©êö^­:ÑÛôgôQe…NÊ‘bâÓ»¹ 'ˆº5ª€bêUÿ"Óx0Í„ýÜ SèjêU:Jð¤›âOaìDÿx”$ˆV™'¾âÓ¿§;¶4ó‡|`©g^§9Ô,/Û‘G¥÷5$ÒxÔ© CóŠ-ë¸Ù̧Εþ›Ní–V@³S\elŒŽ_áL czÚÌx줨ñáWe–¬7ô6z§ZGÚô)®­ <´2µ¯z?<åôn½ä•¼N3zQ§p“¥»ƒ²™í7y¥À^€WÙ=r?IXt Ùfzø-vÈ–€¢jA£ÈãcdkÈsîM öŶÑZýć³èV‰¥uîèN:°Ðcäx‡®5/àÀÄ)ö`€´ê—ù+!P5œ±ü‰Tø)(í^° `ö¥ -oîÙ•ŸO3ÃMÏñØMHMû˜åBˆeœ‡j#ˆr­§)KimÍ|œDwQ²²¼i{ ÍÄž;íÖýóÀ0JOL„0²Út2ÐeëVRd†ÚX[ü!UM Ùšha`3—)87if«Â޾„K›_‘f?ecFT¶Ym'eXÖ²² ×tNež¾Ä‰3o\ɡµŸ«¤1"fßÏ.ªû•½d%œØù­z@–†F¾‹8¤3èYÖOkøX0áì0ñ­%™qÀä:­èue¸ÕDnÁŽ~Ìf ÷„ÍpñöTy,Øn±Zm¤¹J#0GºÅèûbã5BôÅ„*S‰œJº *ƒ> ÇR3y@¥œ @kn!4ž>W&ŸÄx8ȘÖÃ#_W2Á²Ãô±Fó6Q.R÷Å}VSUEØøÁhI0}jË!ýÕ—üå-™²žœn+9,œ¿Ý^x,y~oÞiGJ`t¬kV¡Ú‰‰&KÉЂGþ±¾êÓ„º¤më1§‰®è?Æ3Ìn®«Ñå1—=<>5qŽ¢4‰ât}%B~sæ:Á hGrùHt+‚ö:Ëc¿IG·M°–ë|T¿b0Ý2«•VWÅëv(Ùé¹×>LJ@kqI3kÕšBôÔ©©)D·õn„íÕ_þJ¯¤Ú‡y%rM’kSFØÆ¸”f{­‹&±œNVáÖZ:\"„…äEAß1X˜ÅÕQÚ›T¯«d•*²LH`Ú×[…[—ÂÁtCmA¾‡F6ÔƒKíà_ÿÅ®ý>–^£f‰î´i¹äì7ؾ)|´ÊTNLëðéKdò?I“{ï焉ûPÎN °´<庶%6.Q×)H;=.Z†«´¼M±§°¦BSb/¬‰À«ÛT™P.ó"Ú q$#z5a˜ñXKe´³üNn\Óc*óÌÿ7ñçU‰ì elœëk ç%Ùu .!𥪮o#ÐÉ­fë-³ÓÌVå± j,õÍ@Þ#ŽScÉkSCª< “«òË7\šù9™óùúl–.a½á Û¢€Íõ[&%8rÌâ€x”î`yþLjß<·ÑÄ©%ØS¥YH$fGL1?範XÕ%·È¸ŠA¼Q1_ø®žÎäL4‹‘¬üùC¸<7…Žp¢u5V `DeFŒe²t>ø77m%éøÔ³eZ£î $âˆHº¸ÀõzˆY$dÌtr„ ¿/;Õ„%jw±ø•lBÂÛ«í¸U™Å4N)ÕAe–ö@WJŽƒª3§9hDC•&9 ¢¦µí],u1|ëxé<9£’3ä4mYå5>MàŠá÷«õ"ç¥Þl£3æ2¡¿ÖK‹«k¬óIÞStµTAû¡°Í€” dò%NÓÁ<¤2R!w€07EÚ§ÝMyŒ‹•óâîV¢Âð}«Aã2èE¿_ÅaG¡Î7PKë^ìwÑ/×€Ú¬¡C‰ Ý=Ñí™oæ"?%@ªžo1ŠúYñï­ÅqM¾~•¹.Ûlyh³c„Uì»r—Cu(S—„ñØ\/1 ø<þŒ ˜7BîÒß?<ûËÀÙž¿=“ÊbªË¹‘(Ï_“àÊ“g_Þ±]#̰8‰ s:ukLÚR*|âü}Ð’ŠWôŸÎñöÆÙðì<¬7øÑèýšxÑ.^ÉiaâNÛ„ WgÆ™M7é­h(9â^pk[¹é_†Ž<£Z Çyµ˜7qÿ ÂoæÛà"qÒáf;Ò£¼y×R(R>F÷øli[ €¹¢Z hF³úˆ¥)EÎ0FÞ°cZÛÌ¢Sœ¥²P% ©u c3[êÿX÷زô‡¼z¬JÖÜ<-¨ö*ëV”Jö™Á¬·¶ÇÀ,™²íáCÅsµ$(IÃ$Š®AëÚ8lìQº ¸:c$ùÿ•h=¤[-\J@µå£Õ˜Ð`ž•–,èïä·¶}çZR­æ|‰Û _”GšÿpKh¢S1±Â¥Cî!ÄúžòKa­ºU€ ˆÈîµu€ šAÄüòä](¥6à p”wƛũ÷À‹ÜDÓMÂŽâŠðꨩ¿ ˆèº±ñ,ÁI#zQqUnË'¿Z'—‡b°´oº|!š#ªÊèÈø@ _`ã K8¾h~î÷Á˜Ö®ñå}Ë©¸‡²fÔÔÔë¢Ú††EIç&Wðû¤§$2 ¨NcÏPm„GzšËâËOò;v*AiÂàªîˬV6"¹ÎÎÈìA€)³r'7î,˜¢6žkì,lÜ6l —Ë“»ßv@ËIÓ ¸‘Ùu¿g}5ˆ“õ<|ÒX«ïh1)_@÷ X+­›¦É¯ÄõuÓf|;L’=Ö95\f.½cI¸Cßõ›£ÇAìDÂpמëœ+üªêÍcy]JƒòfŽd§ä|·†üÃ¯ŠŽ¨M ³-Zì &ÂÁ¶ „)»ÕÏ4 ê]5ëé}“F‹yW¬™^3G ·®×…”ÜÑcè6UÝw®;à€èRjBôBòõ­qÃkt:ò¨ùÞSPa­Ü™„oJ¦ª©_êçnWv46é1ç½'IÙ12,ÛƒwÐuŒÄÀ+Ì€½cåýp3lÌ+Ìm±ÖØCêÁëåN¬¤–oÔ®×ü³2ɨu¯ª®øVy0{§u&¡:ÎGCu !l&¬»Š®é©Ãñ€7”ð%¦ru%Á%*?è—ìÊþv:¿NM…õ>%¢YÞÒ{æ ŽÐšg ºdÃíphfxS×ÍïòêbÄîåõìôc¨=Ž!Dòz£ö}™F·Ìârœìó£}ÓðÓ€8PŠóƒ=+‚9UòßÉ9é”ZɳxÆco’Ý­cï‡DË´Ž0r¢›µÿv­´Ž| ·(k âvËs+4dù{G zOWBÅÑ?f°ýl-ãï²}Ö‡÷äÁÖAX kMë®ÊFðZ?¯es”{R[}꼤FL¿ó1”6 º±G×®I›ò6áî«ÛßÝ)•wîpËíB•é’6°´Ô—táè­SoªC ºnóhc,ƺsÐG@<[êvk–'w—ê½HJŸcó°ŠgR=*²]‡¢fµ¶š6›°5¶ÚÔד.9p â(ÿv½ sç>dbMÌ­´²VS˜)ÓÔhÄ)èëêß0ýæ:¬yF7†ˆŒÇä•â@ÜÞŽ¢-Ÿ@Ò’•ÙÄî@/O>_¡l¾»±S½JÌ\Ûܵ7g*²ŽÀLým½’K'Ùy%ãŠmÚ5X]Þ“>1M÷æ$)o6T&KÝŽºìÂ0ìr{~IáIáÓatî(0Oû"â·¨~8†¦FÖôøáwô)cõ÷géþ‚È-ûЯ'lîYh”J÷Ž×$Tî²£-ݵtV “`Ùà'øT_ÐÃdgìΉé©ßàÊF„µªô\)ÝÝ—Ìš5{s‡>Ñà_–È4ƒÙ‹Ó73š6Z·»üiZ3W©f}ïj5·ÉÛíAƒ+I7'õ&¯¸¯n<–A­•R±zÖ/.V©C)Íâ`49Û7ä¡ô¹Bì7¹™5Ô]³¤BúlÙí_;8°£.#,»;(‡.¥Ur²7V€cP*:îJ²ÛTï&µ:y’› êö#k¥=â¬hgngߘóºó1§Ë5­éšj#ª Ðaõ oɲdí]gYn:øú5  Ìä¼éÚQîAC6iÜËÔÀ=[7+Ëÿ5 Šé3æýúB¶¿dÒ¤$°¯slŸïx2YòEš#6_«bsðó¬ð4{IÔðõsPp‹ÛR.oO´¬üšéÓrú¥Ô>rϤlŒSÈî…í–¸‘áNÔ^ú¬S“ÉEŸ6´Ûé‚5ØCãÆÅ“³+YÖW³34A}ÚÈ®é ìãâúL¶ûèô“Rt.½[Rð˜rW™ÙÙU%CÝotPùAÆŽâœyqROTX¿ï'æ}ò.âÁrž;ʾšL=ìÕï$8ì¨DbSt=~Õ_ÑÇ[ܤ}&ç åÐFMCÇJáz\ºåoµ Ç“Ò]í¹ð .Þ“Le´‰À»¸´:u«r2 `Vµì' .> M$ýàK‘OŸò¹×³äØ)ÝE-ª'V˜7¬×ªs¡~‘ÕÙ;Óç[Í]ÓgÒgu§Ÿôy1e ÌÝVg6À4ªjë—?"+u›©šwóNb\-oöT’Ò`€uñnJ)Ò|ØÄã4`,4íbq!ë»àíb nݹIlºfßdÏ­Ÿ^37ú–ñ‘ïõ‡%’ûiXŸÁ†×iâý¨´ù;/,=÷ÛšéÁÆþ³ NP×^mBUYcüÏ›«e„Q ~o!1"‡ÿ7'K;jÌæôæT¬ò1L ËA¢`È_„™£"°¾äbàè>͆ßâÖ \)'ú*óÙFÁÏËW_ߤM?r¼w$â`*Š.bëÖžëƒ%g'sÚ£‡™Ó;ãö>©E·?û0ù»™Óë'n´ô=«=½ö罚Ô6qÂJ®KúxK†å+ÖŸ·+SóI&IT[¯ð‰ðý¨{oå)„Z®î¿*ª¶ÑùNjÿxMÇ—Fb½ kd画NÊ”ž1²š% ý/Ñ,XBXtŠÞKÛM3ó}]­[­†§Æô‰ˆƒ‰.¥`ãuúúk6ä›ZÕîÍíö3rú:=ñÿ²MÁÁpÌ•°Ëûó´Í­¦¦Ñî•j£ðCó?‹J©¸êy¸4 I3ø ò…h±Ð{ö¾%ãw+ÿìK塟¬þHjb:+Z7uKŽëv¾þ%1,ë#~™ñˆY–j—$”¡ZËäÎú#ší+;:›v¯;70ÆèM#‰k9Ë“ù¨jdâÅâËpÒ$a(lÛönÛ‚qÈ"Ã]â$•iI‚D'ìÑb{} >„YJ<ßÜ݇–d•ÞÍ]ÉsïDõè^ƒB%lǬ$dU0ý ÍnàÌã»ñE¾âÏyE=úNãËŸñˆK^ñ7qpM>”2Éýå‚•ÉÛ¤É) ÌÞ,+Mþ2>Ö±šp\I,cÙFƒZ®1M<ÈtqvK‰äÿåìÿï‡endstream endobj 61 0 obj 7276 endobj 69 0 obj <> stream xœµYÉrG ½³ò<’³Óû’c\©ìU‰ÃœâlŠ¢\ÑæÈ±­¿z›y=3-K•¤t09Ähïh¿]s&Ö<þ•W«/^¸õén•ž®Åú‡áÓŸ«·+Q¾ð"½þjO/KOXàA¬÷ç+Qä\;ã™ðj½¿Zý¾9nwœI¥¼u›÷[é˜Á4O¯·Ò3å•Ù¼Ûî”QÌ ½yµåŒë •$À™Rœ‡°9ËÆ»ÍTÜ4ÒQ]P¤^‚;Ûh{“ÞÓNšï¢fÍ,i»Ÿþ•„…Ð>Ù‘f.¼hlãQî¢À­r*+”,YMz- *RøÍ³(á™ U‡Þ– I.š§%HzŒ‘*Ϭ ›¿£Réƒß\Åg‚޽yMî:æ×¢r"®lq 0 h¸D¿«]Þ¤ÏãG®••M>ÐàU|î¥çºÍ0¤êÍöý÷+é- NSEíϨˆn¦Õ<÷?¤P¸±²ÒYÑÑSTa„¦Ì\daé‹]ò_WeÁø…ÚKçjÏ7gêJG7­Óm4®²¯ý4}ùµœ?zo!Òéd:Ö)Ud®6 a-Ÿ„{¯üB`Ó‹'¥ŽÞÕïɨ#]ÑáMA‡ ô[É­ò\ÕÓ¸ mœ[n¬5ÙÃÉÑInÇ|܀ȘR6‚3:)ÈEÊjöQëâãÏQˆSdŒ‘›Kp¡ˆQ@X#Š ³¡á•›åbLÂŽ¾9|z1¾×Æ: [):ÂI›e† ôzYÆóI¿Iµ‘ÂÙ+¬ô»l›K³¤/Õépp?p"áj¥0O5¸lú¬›PØg€Eñ4Ëèýèžï²DTZ °œmáŒUC©P> Äâ«ÄÒ2ÜàÅÅ ¬XRG>$kŽàÛhÃ)-#:oGÔÿè|^Þ4“²ŒÎÑ£ô£¤º"¸5e ·ôÎÛ“ d9q’(•¥©œPz  ˆXßûlö^¥žšÄ DŒ(w ó"¨T¡563GG¦˜cðŒ<ÄÜCÇœURCÇÆ| ÏÛ&<1Z=4e„ØFeéÆÊ´}þ‰ž´H«“ØŽ8)¶ëÍoPP(ÒÖ_­ÊSvP‹å¢=æ†L33Ô ®Ã2)o¡ÈMu@v¸âOëàDä´¨÷˜‘Iß(^™“ªØ`ÑpÛy“ +¦Œöä‘ÄÙØz¡ÑN"¹L†¡2‹Ôú²Ó)6KË6¯GoÐØÚ+0¸m¬Ÿg3JY„ñÅ"äsÃ/n›é¬Df½´S‰øP¸¥ö5¥¢NO;ó]LšÒŒƒ‚ë¡¶¢/Ù#¦xÀ$á¨ø°Q¨vÒ0°©F-‘˜Ûr^ø Ö–{Ñ|úIÓèuõµ¥#•—ÇßS¤ë7¿Å^šeTThltj6pCæù. qã'ÃÑ”g1ˆ÷»  ¤^uÉþ˜EâÖ×ÝÍ"ÄÈ׉6Enaíªå:ø‡Å™õrÖ™“O²Ét6â¥"X¤Ð»lÄOæÌólÄÛÎèq̯ÅUvÖ…f9íŒPkäÌ*e¦ËN(Û¼÷é%´ºŽÈ¸„€¿*ã–`ÚšJêX .›æ{ÙÈMM…ç;Ù!ºéö¢x4©¢Kàeüœê…xE‘ü¢4ͬ3[ ß×€zœ®þ'3÷0ua§ÂF£5º]_ðÍhÄWÑGø\ˆŸ:5ŸͲt(¸ùäþ7é¿ÚÿvÊq&„šÜÎ$·ä؆¾C¯‘½ç©PhÊw›Ï£È‘?SX Jþu¨@JC^{SÓY¶¨3ì·^1km‹dÛAs‹Þ–Ï+ãÇ(M?+šÈÁÄУ]|~_‚@…ñr3²Q†&_nkVÚ®ò.›²Á.hîaZ»€bL¨ÕЖÀ8­¿¥¡KY¬Y6íÈY€«gyé´çx¿ã­`¦?.¥ÈS }CO…Vr¼™+{Ó ü‚>Jꇡô £œ¸³À‹NóUâØîPM˜^i¤m¶‹“‘¦ÑS™ÿãzTS‹Õjz›2X)=C›¥É QÄ„™“«Ö7&ž/fZ𕤩ÿIúÓ0=²+)M6OìJÑ"‚iWÐr;º‡€Ç#´ˆ©¤b¸¯ÇU¤.µ]­ô¾¢é LJ´r¾/Pm»£E½d¢s›|šWÎdU-œ“2š(%ÆCÛ…É}¸dMS lY@ YwFò¨[,m À³1«\ÏæÆÔ] žTô·Èñجd¥íÃï·ÆNïº öd¼RÁ©?o*\ã€<þ× EVï+ÒR%þ<Žó~iðec‹÷S¹h ‘÷0ªßæò’ºÏÏŠƒÊ.Lxù<ØyÊ„'®[‚S‰ž ýëZ´ÈéÇ-Z5Ž“û’hB·ÂóKêù­0]I‚¡"O2Ð 3Ü/Í×ÕëIǾ¾(+hðóìdãùí)Žy8$ø•*azð²f»Þÿh,¿„NŸqÓÓïsÈ,b—ºvµŽ9sëÑœÀ›ÃmG-Qèëýêúûþˆ(endstream endobj 70 0 obj 1917 endobj 74 0 obj <> stream xœ½ZYsY®iÙ‘"«,Ù'C T‹"=w_x„¦Ø &x@#[KÁwŽFáôÀüéugm»sÜ |Ö¶·÷CaB9 Q:™Ón7°Î µàÂÙ…"B…!íiÛÞ$¿]6mÛÛÝ)ݱBdÙ ‹È¾'ä\¹óòbЂDZ%2_ì|Œã£3ô‘eÿümä[°¨7sêbDþ=Û–?¿€9BpKtyñ c†*¥”R•/‚«Ð’ƒ1+€§ÀS,(w±W“ƒÃ{ÅtVÜß\ ÿM›ëãÙr1 #ן~Œ8N˜v®$QHÙ¶‘P ËH¬»d†S8s3Ê g ›¹õ¬­¦³åñIqz¸œ 0’¾]l®g-6þ×0=~Û¶ˆÆ)•3«lÍÅN© 'âI À]Yæ "—ܹToAJ€eª˜{ e¸ÈEµÁ¸M)Ç>ùŒ~ï]PC¤¤  ä“DŽ¡§ «’0+™[$™Ät²Óˆ Ø1ŒÈ %¶¶ÀÀm ɹ׽i1÷*fGwm+n˜°1»Jâƒq\v9 üdbŒpJ-@Ä Ù—$V÷çÐ;¢4Z¸Æ„ ö‡ž.Ï&«“CˆAÇÅ)xãÁæêÃÍÕrÒñºŽú 0#¯,ÐP$ â¾€„PàY7âb‰ §¸WLf‡“Íõùƒb:Ž%è™aq3gÆCùÒ“$t{W€æf0X#…ÃyX,Ï>š:ßYLf«å¤˜>:€ øà¤x<Œ*hÜ RFvœ´/ipîJBµBoD¥Œ­U8¢éjr°8?<­fEÛÉbröøÿáÄʈŽGI׉#[£¸…wYE…HÇ{3j,7;±Â:9؉¯—³bºš-¦ßýxÐ4¢’— ¼Ú¾ì$h·ˆF”ßlðJêä½.ñŸ;¡¼‡&-Ï—\PL~±! )k·ÍÚè”PÅ í9!…F òÁ*$•¾óéIâ¬[®¤at,…ríZ9Bè¢Ø\Çwí|‘?ImhrtËÿºœe,«\©|GÙ—$^÷gÑ:Ѹ0®Ãö9zàÑât‰¼ gŸ@€ž~¯8ûmWòý3Dpr^[n¨ïvû’„q_DÌX#FÓhD6]qG%ÐÕ8à ¬l÷’„êýgψâîmòçÝYºˆ|²tÑ\³´8 |eœrÞ}IbyN%Sã}[àZ•‡hèÍš]†‡ï¯&g…ãúãa“ ªgðRÛ.ñþbX’ïïÈJù.ðÝ™Jo÷Þ3ah4\[ç( ML…2ʱÉÜ–nœlêï( · A"ŒW\’j¼ë âœ[… B©ÑÌ$1lsØÔ¤Ôä¦å rÓÉéYqç>ëièÜ]HÆÜmV\vXŒe,bVp I"vï~H3~=2ª«›¨óÅ9´DÐ禎þ"ÉÂmj¼‰$Œ{#"Œß›$©jÍ<¤³b‚^Yž¯N}xA}SÐ7ÃÄU°d®ŒGЗ$”{câÜšñÀ0A_,Â1œíê¾»Zg8¨ –ÄÙ%IÈöÅA-ç7Ѐƒ‰š…³Á¶ns}:$(™!<P >=A¶ðQDŒtÑÉk~p²xØ©>q¢Ù§GÅÁ܇åä ¸ÿxcÐ`äFG·°[çcxÿ«^g+^@°ÿ?×î=§¢z•ÀÀV |„ ¡35ªú÷ 3¶¤Wkæc,åPÁ^AK(YMkè³ìùu•ÿܯ"`>ü²GŽId•j©ÚÏù®mBdµ©¸_¬ñ6“C¼ïÀ‰,|ŽR¢©‚ûß.~=w§‘ƒ”ÏÁ¢vжø)ìŒm Q£»qʨ©þ¼ÆßMÙ¤;Ó´˜q cx"U3&ªÿø!–3¿DÓÈQ 7Ûä¹?Yè–4rËeƒÿ€çm oò•‚õBÒ—ñàÜzþà$Q’¶mÖÁ\`£ÊâQ(-rÿ$’ÿ„b®ÜŸ§›­‚[·¸‡„õ®~å#ÒT¿G)§ªíŽÙ=ÿ “  Ñ-×ü&sü|Ì[Ü”Cä¤1"¹léõª‰ ¯×îWJTß6¡æÊOÓ–¶bGC˜ÝéÝn7`øO¸›æF2UýÎ…Í (ú[?D –ùCî±ÙÂ_ ‹s^ŸoÝ qÎÅ¡ÍÓÎWÖšbKŽç«›¹8(d‡ÿ˜‚Çendstream endobj 75 0 obj 2638 endobj 85 0 obj <> stream xœ½]K—5’Þ×™?0»»¼5C%©·Ô»iOwÝM›À\Í— †fì_?¡WHJÝW¤UJ¥ŠÇéþ¸[±[ñ¿ôÿg/¯ÞêvÏß\QëNì>,Oß_ýx%Ò?ÖÔ{÷Ç[xAXhYÂÄîöÛ+‘ú{¿åÂο¯v·/¯¾Øß^¯‹Ò2X·j]CØÿóúF)µíñq]¤RzüëZºÅËU4­÷×Ò/ÊëýÏñ-/Ôþ'ú»Ú»¦ï3öü ¾·šU-šþw8Œ\‚±M÷èY;ôþk|U©ŒØ¿Áç°Zå<Ó«*¸­èàmÆk˜% c„†7ÆÅ ±:»ÿŽõxU{ÜcéƒO_ÎX‰F­é5 íû׬/ÌHãͤÓìVe}$¶\œP“‘_!×Sû5î–^=L‡¶Â4¾Oă•þ:Ã^iÑ.é9›Æ/´åB ?ζ_Ù½b½—:ÊW·ÿ{% ‡QawûÑÕí|±ÿ¤Ìwda[6à›ÃÉ› ˆÃæ)ÓvWÒ¿®<úKiŒ{'E0û÷Ù`¯†…Ò{l§'£ÁÔ"¡‘³{“ŠÏžuá÷¼òßÞ¹d0?È%H)wñ‰K”šc«Y· WÞõ;Dß®­°¿XJ€ôÜVF{ÁßÂY*ã:–#ùy#€¡tó>Ëo±Ëª••°Rä"é°>(¨Û;PGÏØkåsš¿õª¥õÐͧ_l.“‹VÙÉØìƒ…ÇX½WþÈó:)u#S‘4fµ¦¨Ié´/{lš¹Uú¸QùØÿV›£X§e3ò]d çåþÚ «Âþ-6ÊEXÓ,ྌ†Ä¿‘`¬ö»f­CÜ…ô‚ Úˆ­Úk¤Á*;•e®»Q¦<ü Øé›*s3-ŽÛãÂâä% >¿ÄuÑ ŽÄW……¯þŸEð« H‚?Ý^ýã ôî×+á¥X´Ü9 Ðâíî%´_Z~¸úäL« #,z 80šŽV÷8¥•‘îÊ?©â8دæÕÈßü„Úx±x ÂL¨§2‚›`šVÆÿ¿„Oªn{-èǬºQ¼ûë*/¼¹òñíç#«©F±|›… ¦+C¿®¢ÈŒ(Ó ƒ%2ʉdˆâ{Œ–³Ñ@jäbV×MŽô¦` ³ÞäÌ’L®óMk§¥ã$ ÅÝDInAÉ2Õ&é ª&¸) gÅÙ9.<Àß`çFjlH@ÃÉÙ¦¢Eþß&T"ER•C××702)ˆ –Þw¢ò!øŸ\Þà¼ô6ã8Ýl×}Z£WS#EË­,X›ZG¬-{ù(}¹€tV³ôOX[(ÑtŸ€ä:¦†6:­Q™{´fÆZ3Btûï¯ÁÖVí=gNDK9ú gÓG8sr°9}oâàÐuþuÿ9¯³Wùó—×…ˆ):ÀùÌ=Î*‘w¸Û 1çúä_Jž^Ò«@-'!Î=\Íq|ð3±â·8œ]DÈ‹üÔ.H€3Äx×|^Ë(ïÄùK|U{™Ø T™•ÙÝ¤æ ›Át@ÓÉun]|>“0sزÒr>ŸÁ‹ À»Î.³Æ¨.£Ô/U‘$ +w`H‚1SƒõÈñwEìè—‹¨¥[áYÀØ µÿoDA­:y¶ ·À À¥)*ÙäVôe‰…5¨cîêãÐA«€.ºÒ)ô¤ñÃÂú:}ã ñ¡Z]ØBìrÍ!|^Hï(V/d‰$`,„m´~ ‹ÿ•¦áU%ý$%DÖÉè3KõXÎ&E#Üéшªz·(§‰t;è‚V„9r 8çÂ@‹'þgq¦ð1vÐ,™Ã†BDý*f(ö.çªl.Hµ¶ kDŸ P¢Ölg¡Î†#C)eg‹Ë÷¡£Lp Vû¦*…™ÈóöÏ"}ÁtH`Ý¿ª©»h®#Xü¤’„yz|ZIÌi K¯8xìR%„dÔ±ðÉêt…Î À. JPCà£×%Ua]Ûé¦,^—ŠíÜù9˜P¦àÚò¦ùûYÃ)Ëit…ûü¼}름ŒYœ6œW_%:ÅÄ‹Aœâ^‚ŸJZÜ3'æNÌ€1`’ ЬÖÈ­ ñ3k`nÎ]ƒáÖ6.r®À£o"aÀåå)½6‹É£.‘`Bð)¶“¼àË=”(sÊ›Ñǯ“Ä®²zÞh–JØp4È…áí%,,†4f-~ˆúÜ4B<º²±{šû.*¢%3gˆç)Ó¼,Pãc>Ì žB,ØŠ‡{¹<ë„íëê’ÂŒs·½ÂÄÊ‚ÿ!~ÒHÒ\€š<ýn@&œÚ<]¥ûu/vlP¶âÀ °“&”¿›9›L—fôØ•Óð7)¼Œ‰(yˆKðëâ@®;xøÊŸÑÊ!æÿy÷q<é³ï‚‰ÿ™ÝàC4´XÄC,=€ïfÎÀø}éÍ׉¦áAf‘߯MÕF’¼¨\¤A@ûJ‘¬ìöy·, Æ'÷,blÖÿ»ùéuMg Ñ+}®4»µÖK;ÆùZ˜t)°Q°f+•Ý韂£»ßD`[ajê4 ¢ ùøZ @ž¶‰Ëÿ„8 ÀŠEÓ7Þ}ˆqblß6öVZ*a±ÿÇ(«Z¬É!RkMÀáÓØë¼GÉ\ó"T4 C®µ6ÝêèKƒ<‹-O˜ºðÁ¿f fÃÓç%8Ù£„Y e渂’³á|¡‘×6Gøñ¥ðÐê@\¬t|G[Ó—ÒÕ²3!›¸ä> ?2kñK‰á³nÉU\VXU03Ôù¯8;§Lkzˆ´Úr~R%WH³dßàüŒ“bøæyâp@ÿC âðsB&‘4mB€'ô×ð±¬RA £œzפÚÌâ]!òç K”Û,÷_ÒêV,nçè…PR,Ìg಄̓lëkÙ”¤‰¬w>£to ½ŽCã†ÐٞǷ¶K(Ÿ§×`î DÛ€¢’MÝ!/ßp¹Ëð`Õ§춖ȉ3W~£xk‹"8Ó©zÃyºà¦Z*žõ ‹ :3WW8º^Ý–ºòÔU&´)<õ(&q+ùØ,BöWæeшVóë¿xç%À‚¹Y"Rb:ì”ÖÓ¢ƒdàñPeýqNZ  Öi¾5ÔçtÁØÆïYý°²"š^P›‡1hR-àéF‰Û1©Êf˜R`ŒîòºÆÃøcàJˆÍód`“7ŽaOª:ŠC Ãùl vê°ÇƒØ:^½ìËœ5° 4? –=œ@ˆ4SóÀ ºi%•„ó€‰Ãé …í\EÚ‰94ÀÖº‡@ƒ(˜c´ÇRZ'¢¡TÇ %÷q²È á}•ú‚`žoÉJzŽ,Q2![;®˜dê´ú±D³ÒU HÒb0{§…‚Dåv¨4 F€Nxô|láðÔkn±ðº‹HþйeÖ«´°^g–Õp¬ÿ‡ð‹ 5*ùÓœÃS¼h†KóFw˜Õ¾Z a°%”–‹— A)8%Ú% 7/ çfѬZŒ÷~·Mâg[f«É-l5…ŒÄÊGÆ©¡á€l€[9Ì–\B¡°ª&£a•*¦1ÉÆ‚¸5Î ÇòÍeȰ–zg,óf\zἕ ‹sº·d‚² Ïa‹­ŒÌWæÊر̵laíU·¹ô*»#1=/ù~á{î¢sêÎ.+ Ÿ qÙ©6´9*û?ýKzøéùÙçá=,Ú7ß95uÙˤêå8… i&I¤¹ô Âlòü†ý@Þ(“n¸%MºpBíŹ%õ*r³ÈÀ>54 "·¸†ÀäÁüÂ@Ô‘þˆ}çèRÖ÷}kõ–ä.1 #Õ|æèi‡gȾžš >Ó¢Mi¹à´À7®™Ç1¯ŸsÿF½.¡*¦Ý raÑ*Ú•E,Èlþö¹LºŠö¥r…iìÐm9Ÿ*³LÓÞÔÓ‘ùÍŠÇn¿){ðq#ØæØ¸+“mqG]cQLuYŸÈ€!´Rà{þ"H‘5Ì*kÙ¹ŠÁÎ$eñárÃ?ÄâíÌáýœ>ï€^Šžø9OVy ë–¯4k„ ÑìÁ,ÏÅ3ȇñ|u#í´–XÝÍu–:±iÞFÿ6ŒÎÆYß·XLz¢‹Õ³þåØogZµmÜeqØ\AØ\é ¸Q¼ÖqVÌûޱB®¦Ù˜ã(º;ôtNà£~û½TXó®n‹y?¬Ç—†2ҬϡÒÒÎf8x"• za&—E¥ôê…çróÐðŠf«öû cûÀÙ ‡©Ð £¢Ôôï doQ³‡­ÙOÑp'Çhxô0ûò~*n³´¹vD¨ƒÎš8-ЙÏá ‡.Ì›å½fÙ…É-e‡B‹T_dbf}+qË·ÎTgfa©`ÉSMbÕwŽÌÌ®›Ô—–29 ÔÅÈhXt-œluPœœóôD%«•Þ%*Í®Ò8š¨à! –w|y]îý€’ìTgÓ>È1œ(a´Ü!³YPüGJàð<÷ɵ8"Êmë ±5ˆp¤ì·/£ËÃy{²CW¢¼°ÝK_zxV´¿ì½Ê[–ÌÉKœZK°sb%~Çès_óã€}†`Žß™à•Áˆ¡”Æâu#`¾¼õ‹v¥å‚@šÇh8€ùµ‹}DÜY“AÉ£ÞÔù6ó[>%êÅXÞ„la}srv3Ô¤,y–x¸‹£[Ý•+4Å?ï?Ò1êÞ(œêÏÍ|„®G00©ôøy}|Z?¨·ñÑ{„”ùq«üGä¬ÏŠq™wtêU3^bd“Œ˜i V7Ô_Ãè ™ÞttMnÞXÅna¢RÚÙÙ»û8+Z[:»Šmž¬çL½¥{f·å³·"Ž}Ž>6[:A’…€w|’ºèÖcóë®TjŽ:¥B"Øux•÷+ð3³:„VˆˆóGú³ÒMŠŽ{¼`c­y.E@MÏØ«·‰taäqáã\ÖŸ;ÂaŒL¸o8þ–ŠÖV d1À—ÿ>­GÈ.=Ùfü T-»\üÙ†CÁé°©¨EÞÔ…±ö¤ú•†Õx1éÒh#¹ìñ "ßLÔ¥V‘¬5´û¤2Ê-á,ã²@S!€¿_b¬Å;¸ª `ûá VwÊ©¢H~ó°#ªuýx­MÀ«—|)“ARÄãw¨õÛ,WE’«Æ0ÍóøHÓžû|U‡8;c¿æ“¦ïÕ­ÞN›ÇH øH»öîÂ_+Î=„òƒþ­/bñ“¦ïä¢ZÄê§w¡4b  {øÐÓ¡C"ºÕkßçÎCÜZM0§Äðf·ìÝ1æŠã™ùí/´V¼›rv-}, vlTæ×ÌΰÝÅ+åbáô‘¸w”.“»Û&éóM¹d"«ÿŒ+q¶§\ž¡J­ô »ãýÚÊ/bó†I’Q#7|Ôˆ[òI›âí\>‰7*M/¹Y8Ø“Ž~·F1®5ŠY]®X%ozô½< ­¾Ž?Kà¶âå@ö(çBOu8·l?Ïß;QÖ©ó*{£Š‡Þ`´©÷³±8ÛáSñ@ÃÌòð|ï;H¼úÍÿQÿOêãçõñi}ü >žî3Šz{»J–a²‡!õ€¬^©ó’5®× ôsÎõi"²ž_‡9+Fß´L0ˆE¶ø7_²ù·¹snK‹Éc]¬\Cä¶D- ÝDÀâo?àO¸¾ì\08ÚeY´Qt ?G>¨Õ¾œ·>äW*¾\ ^Tʃ­æ®i™]Û>ÞX~ôž\¥–[熇[egÙ£GÒ»s™H íMs%ζ¸<+*üE|­¿-ªKN *@{ÔÉY&ŸWY~W¿«¯J¸” âê½k_^㜠~zÍV[a‘î÷hæ0W¾®ÊLñÁ5?žÒUßQ??Ðñn"P´]x°û±brªÖ¥¡míoÝT Woe-Õ0S^+/ŠRëHsg\;7S·€Aâ¢räúï,|¯é3ùZ2¾îx4 €|žC„2¸i4èû g‘Ce9Œ¢Ôh€K¬WèìÃïG_ZÃÇ8XŒ!_lDËúOZL# ¸ŠÃ?oD;yÜÜ?Ý‚ÛäÌáã†ùö{B»Xn/ã÷DàËx« ¿‘AÈɽ‘,my‘¶d€¿‰'N¼e7¤^OF3>rÑu9Ž%èlöîD!È59‘,‹Z¢æÿ¸ú°˜Óendstream endobj 86 0 obj 6089 endobj 92 0 obj <> stream xœí]I“\·‘¾÷(bþB«'ÔOØßlJöxlÑžƒ5’ÍE!6I±©…3~rÞK¼TWW±)Å„BUƒ(,‰Ì/W ¾=W“>Wø_ùÿ“ë³ÏþÏŸßœQë¹>ÿÃü雳oÏtùC•Þç¿y_ÐZ¦¬²>øìL—þÑœGŸ&ìùÃë³îÞ\¨Éš”ÓîíÅ¥šŒÖ.ÅÝë‹K“&¥cØ];›?=¡®Ö¦wOÅç«‹KëÒ¼Ý=‚ÎÊec½Þ=†Ñâm´0ðÒLãY¥rÞ½Ã/æÉe½ó¢‡ÂÏ^YïÊçÒþæõó rJ¹™wØEk›ùšš]4ÙÕM¸œÂî%·}ݵßàZƒÝ}u³Æ)ÁbÊ8ðÑBÚtÞ91Ÿ'1¸)Ùý »¤h’r@! ·ÙïÞSgŸCY¸µÚ cÑ&­òî÷Ü%»`v¯ÊAXW‰¯aI|1ö‹ÒÙå†&’œrÊv)ÿýð?΀üSŠÀ^¯€£®i_¸­vF9Æ»2eÒ»¸gœJ»¿àÈ*±º¸û;wIÙòZUJ6Â{`@žHùèÐ#Œ2M—z6ÐLÓ§ìóiˆ&Êçº]ªá)$æõE·ûÖç‚ •©” íB6ëã³~Eòc˜Ýs^^ôÍfuŒ—…Ž—ÚNÞÛÌäüd–º—‚y¥Ô!Ø8y­wÿŽ#Fç´ÑM—EÊ™ë’Í@×°*˜+ƒì.‘ß{µH—l^ÖÄld4p.ÒZ;àݼ{F{t8±E•Eœ¯Koß2Ú‚6ô ‡N Ç]ñ÷”²•$„’ÑžÓ4ÀC¶‘Ó'¼[¸r¦Äs/æ å,¯ê,©B2HW4%‡l•Zeo1H;KýâóB¤ÜŠ«X1þ³a5EJor•J)Ù’Xò‹WL!½‚ïWâL˜a`ŒíÓrèkîí¬¯·!)“’„áæ×Í¢ø„t+ð¯®ÁšœSݰ·Q·û%‰AeÕ2áAÓ×yfÉEb“è:WD·°Y‰Y­UA@•¤t ¶ÀœÙ4n¸ä«À§ ¨E…F“2%em­–­™rŒ=p¯:Îé Ë!¯æ±ÖÁ~ZT$äiÚ9Oôþž­C™ˆÕB)~ÊãE›oί/ÞoË͠ÑÉh R^Wª;·Óñ¾ÒÃ}¿çM…„°e²Ÿ´ Uz;¦Íš^+¨»Õ´™–þÄÂ&&PŸi¥},,\´3,ÓvvÆOÁ„‘yµÒÎØ;ÛØ°ñ#„S`?ä :`P–q …Ì¢ÏÜàÙÁêá3±ÞÄfv©^roÔ‰­š£5™1>KªK2Êþè¿ÒSÀ)“·æ mƒK±!n“7ípo\“vãüfk>¬MRœ<‘,FûȆ»ªc¬uÝ<£ü¦ìr%wüâ{RDÆL@·ÊÊCƒ‹H\!ºí<›S²y/l쬦{a#Ÿãî’?F•‡JI¤ÈW4fæ#½R`¼¬Wæè<4« ›¡OZ©ª,gÁ¦oG~–\ÿxd+Zƒ2š[ÅA­)%Ù:šÎ¡棡¬Á°C~c2°Ü^ñ<(«ÈÃ,Fõ“Œ%ôÎûºx³Õ]³dˆ3†‹oešº«ÐšAÏÊ*ÁašZ8‹Ó®»TþL ÉjCë±ÚhÔ%©dÀcš]±ùt\np$2d^ÔSÛ¯õX¾^,ßÛú÷ÔŒlbôä\ì Éñ¥”» Ù9È¿ smŸ…L fT}Oy!8p´¹ŽÊÞY¯¸¥ò'«ÎBuVÎ2ñ…T1eЪl]í[­œuöMkÁGGë@#*å¡‘'M¸‘Q¸ö´àn᳿isæ´uÁ`´ˆV¨âùÃ?ž=ü·îÜÅ¥Ö€g*îþŒ_ÔȆ‹¶z àlÂB°1 SùÍn@Æäáßá#U&¼ Nvþö’ M€¤l&iŒ  /& |hºˆi¤&€ìý’>AÈÒÀUG¥#Ÿ¯ÑA›P>ÆdR]”vV´2iŒ’4Ы–ΘIóŸl1WþQáú¡€ý/` M`·û5-D[XÉî7øÆŠºùæß‰¹2ZYñ‹]ÙÚLIQày{s~I<¤óýâáÙ_ÏÀ[òç?œEØO° ü¼p~}f€lø©¶¼<ûòŽEaB^ À Q+þêâ0kŽ1i²ºxÁ®s÷«ÒìÌÂçH˜ Lû-„ /o áð- \}0…‚áü¾‡A˱“"ø£Y›ˆkó/ÿø°Pdå ˆ³…‹K‰Crë€,1‚~»Ÿrë°@œß!Z:k–õk–†”ŒHKôÓ⟀ãktÏÕ,_™Å»Fò^ó ö‹¡m4O@âw‹Qón¡ÒQ·À®Gko÷ÃnËìì‘b´Q€ß^$ Óx$ƒ‹l~$º£\ù£æ¡717oF,r±ƒuä™ÆÇ Õæa‘\¢U^.e4¶$ï(T GÏ£›äVqn]»ß…ZfèÉh$Æú †;ª¡&§ä’‰™?²¥¢aä½X‚+k°!Fk°n}•±+^$˜f#Q€ÁÚ*+Çs%÷¨DœÌÖb]xåŒk }† ^ü.ø\[¸ÉrPiHà¡ÙFôÇZ»‘™H­‚Û(…"NÕÃOÞ5Þ~'ñªõ‡â$¤ïv£Ý¢Zÿ 9]0þÑ4RɾJ*òVƒY ã0‹ùp‘ÒÂuÊ Ù¼0Ý—ü5Ô©2bK¡D«Û 3vÌ~az½ðØâÓ"ÐhU)˜Á]^‰#­!ÞÙ(‚9¿ Á Çu«x zoë€-MÎW†@3pà»Fªj³”²—ÂnÜnÏš È€ LTõáákçÂàÄä„+Ý딟’oHºIró’ž2IctEÝßJL&èZ)ª”vº•E>gòõ¿¹ðÇÌuÂ<Ž RB¤àH}7g}\#ý;Vþ»\¯ù'_",5œ Æ1M¦ÈÈ&î•'pkî8£;zXîØª  ÓˆáIJš‚ '`F$†Ÿòè&è‘‚'Þh¡H‰ë» ¤(°eâ0#Úê›­}ÛOÕÒ™i YHsS.‚¥ cÛlûœ–‚ÃpÊ®Mç­÷ôˆ7‚¾¯h}]Z£Yê£XøÓBq‡Ž¡ˆ6¨œ¶ÎØ}'VËéž&ë—Í!Fú¢—­"68H0ß’˜w-¬ŽWLg07âZ}NÌ "ž–B+ìÖ;Ú„ð))l)ðcᾯ›¾³§àðÜÊ,XùŸ.Jˆ`üÈ+•æ¬4ödžqt{`î÷ˆ¦úX4gê/%(Ï»ÔÛP"€\«én_RÉσß3ÒôD_Œ/ý¯XÅv`ò6aîr㤱Er]T9–ï©r†)¬f ^öK?Àvj9fc•è\gñTï4˜‹L]JÝqåê3”¹o9JN¹t±…•é·N}+W—*ßn틊mw¯6óÍøCl ï'—ZŠ *ÊJ%\]Õéýr ÉÞ¥MÆ @€i£jaQ¨o†C˜/øš¡ËÈ^WmW0d®~«Ay`Êl 7‡J·¸o‰8o˜ï—«4&TYˆÆÅf jÀÀ!7ÁGVÏš¼èå…N% AkÜÏȳ±C ¶BÙ…Xz+O`ü^íǯµ!ùÃŒ Ü•'7˜†ùGµN..ž½dà6Œ½`Zq>Ò!‚'¬€U‰' 5‚çLX†5[‘$DC=±á‹dG̲ë’;´ •/›´œ»ùõOäð0Š8“Æl~%F“ŸGÝA;Û |µ ÈžØ6€¹”¬´Ù¤¶/&­¢ç&µñN³;Ï Mp”êJX$kêNÏ6]R¸Æ?œ…?KJ+«Äõ ÐlÀÑ@¤Æ8¼"¤`ÅaPïC$dñÊWŒ°±°ûËwò¿$š(är:iD â=úˆ1SúN³Â~W}˜ ®/b¦P®ÆÜâ±Ãzýœ;Ĥ¡ JOÁPÒ0[ð»ç–}ICçJ–¤aJh}î°hF¢¤!&øȉsâU~•È<Ã>ˆU–¶ZˆñŠö¡`¿ NI |ø.¤‰®Ðà‡ÿUɯkä_sÊ$ÐïnˆC4œ#f7çvùÕMQ'ÖHÎm2suʺ2½$ 8½ÂüwË”¥s©Û»&o1~²Ã£·¯_ÐõÓx\±Ï¼ÒyÄç´- €½{‡ ©s¿Ìžbdl-­ÍôŸŠ?&1ç4hÿê⢀N\Ì‚§P¹ñÀÕå wfÓ„:WQþZšît_‘‚²½gØÐ´¢ÎÀ`Ì_:i/,Κ{³´ñy?àoÚLw<æ.Q1x †ÍnÝ .Ǧ‹üŒÇŒÁ Œ-ÍWƒÏ_/“¾cd/Ír3O$÷üŠÕSˆ¦œ ›d<¹€È{ ‚¡0Õ´öTÛŽèR.XbœO.k1 Ó¢ñBŠìÑVHz²PZv—£Ë¯–ôަÊ5Ù–rŸjv`¦éðý2Í£5á°"B×í;½|Ó訩ÄNMª3ŒE¦dq"*èºnÒÏVLœTÃBLž€é49ùã¥ÇfdddvH¢¡—ƒðqgE9H΋0ifÊ¿AzXv7ê J‹>Y†-g«t³Ê²»˜Uó½öø)õ’ƒe•¸ÿÕrJ­^°Y„spR’rŒJÙq­di§©;œÕ¨‡s‡Cë_lv TÑܲO•µàRUŒ€^Ž€ê†UÙAG5³É ï]eä¯z@OûüP(MšúRà€qʤa$lõ.¸Æ`­Zt¶j&ú4.Q°or1TõcøãLf žÑ¹3˜ú¶@fPÔaJynÙGæÕ" ™a„)ä„#P0žÈLz¬ì,õ:•†Ùà"@5«ŒaÍÙ`È)õô ÚÎÇV¯€ºÔ=½|§Ñ”„iq˜°B ÅÑ.‘âòn T͹4¿_¥šE¬o˧ õÓY¨©.7ÒÕ†Ìtõx/PJ½àËyeÁ¥ êA³3±i.{²6ÇeOIŽ÷ý2{/©Ž4Pî£qæWenÛªJI8ùYÊéõż_1û èÉŽGµ’M\ý{{$³@[:G ÙÇÙšaŒ³R‡Ké¨ö÷Ll~¶Ñòoë™4–ÂcPß—fZÇÆ€àÉÅžžóÈyfîÜåà´å5ú¸å5¤å54=Áeµ}€³˜¯p pÞp8œ‹è‚ZfQdf‹< þqéÆ9X˜¶…øžØ”íÜrþá]ep˜.ý¤ø—0O¤ÝB7’ ]‡¬£ëÅ—ÂÐ?ÿNåæ°0°¬ñƒ f…±bð¤<:8ýÏ–éŠ ê[ÓèºÔ.h}ÈFóâÐ]Ð ¬.wÈ,§m¼±¤kQª:Ð !‰ðŽ‘/‚$Yt$*ñifÆ~*°dxâÇ0Sf J+³‘øÏûž5KQ0Ì„•Ã(­.°âô]d')¨\oô»p7ª˜Ò@ ÆxÍPÜ´Iî êCrËkaÈ“B»2‘ÆZÛÆ/zÏ3Úrc§ã ”/bÁ~džU\b½Ø°ÍQ’y¯cdz†×Šº’/_Ný¾Ö…YépÕ(.Õ(dÜÏ“Å;ëÎXÝÁ¨O/Ô$)U1iMJ‚ÝÖ¹,dIæî^[厮z5!£Ñ{Šz=^Y¥ Ô(pE$ê01·£QݦŽËr¬Q›˜UÒz÷z ˆ-]º ¤;ä|¨ƒa`ôùÔ…˜s›4d"ð8m&=7;N£ LÞ™ÿ¿°#Ú=ÃNñü*|êÌ‹(õyÍéb)½3Á¶“ýù@PߟïAÃÖÎŽäÆ4ù™"PBÓþ”èè±n¢ÂÊ iÝ”–¬›¨@^ež4ŽÃŒ "¿'’„|œ¼¸€Ñ[/×ð,í)ëã«wÍú>. ޲†+Ü—ã"™íä¸hÊ*â=èÛ˜Krì}éPEʯS™ìœí©|/…Ü·ǰdY,Ö|ZÁ.£öù0vdY>ãVìÒͦl!g¬ž:‰EÜmßò$ÊŸâ};Åga¦ðßÇ[)à,OÅ“X\Ô€Ná„ÕEéðvy'ÃGŒÊÿ |`is:Ä˺7lÁÏ‘þòãmñCXh€(žÞ„Z³ÐÇ…¼; xx‚ëóAì—ð1Niw”–ìLï‡RÙ5À~aQ‹n› §µ.:СyÓMu]Έð~Æ8ÇVÛ´}ýô|5V5¯gQþj'Ä“ž—ÅhGJûr›(ú6¼¹ÎîàXm6ÕV{;X±…Q u.w‰#Ðe”oš&ò;»½ú‘  é=ƒr›—<4?‹”)/Ûf={%ßP“µ)Α½=ÝûéBÑ*©$šºm×'Pùmœå•xCî­1„Z8 éABÞÇNI¬ìZ!ï³M»­ÚÜEC§‘1~îh« 0s±°JÃñ&–ÅJnó RÞ )ó”R¾/¤ŒàúpH™è*÷À;û)OGʼª¬u¡9ß )3P0÷…($ã¤ÔxÙ%´B~:R;eO‰W ¤˜#Á‘ Ô­ª‡ºÁ;KÃKíÈÂNác_†:ܰ¤+.B­ágË×F…Á"‰.«we» iSXÑ™E³›ìCÔÈŒ+|·ãC5Gf´úeÉÌ÷ká8cØK¢™Œoš>Œ+ÜþWÞÕ"àÜó¢iSoç’¼¾Ð1£¨rÛªS6ëð'N´Ç·š$mXå¤Nc¹·¨±íÚ#Ì:ð³4P4S™Ã{{~n9Æ 1xAG˜b*Q6&Y&÷6..“«€ÁzÊäØz5ù½Øs›ð¾q i ‡»TlvKB%ÿIÞèÚ.ÞÄ#Tª4µ_B*RRn‡ž6DŲf{'áðêÜÙábÑËsKu“Ò”éÄ`ŠCx—z`íµ¢ˆ6ˆöÖ²Š\_€ê¬Ã4&îrýAÛ´0—c;+,äΚˆb9œ«õ˜kfð}±”mù3Ý.•vÂFéceð ,î›9&˜ußX©<^Ø’XYZNÀJÔÖ€•Ëä+Ÿ¼b¥œü'*DŒIQ·ÅÀÇ"¢§˜»,Çû0ˆHùîí}…ƒÍ¡“.K œõG„¾b1î@b9ÅÝ*î}mœ•&pá¾q)~òâHìÇÃZ_Ý?öÇšO* —€ÅUãEfÅí*ô®Í¹Á«k‘J’töÓÒpžèL¿_ƒ— ÜbV‰;Å<sŒ±ˆAˆ¾¦‚ȬÞxlÄ ÖH³«Õø‚²î™›©LFòDZfáŽÝ{ ©„Ÿº 5HËmL©&lA@T³uÆ~Å0òÏŸ-SÖ‹:dm•Q•éÑÍ @ëß^àËî%ùz4ÿ½AêLß³\Áu×½™ïødÛ6¢cÍN˜F²ËtÆ lÙYÅÜD£FÆð{ø0(2²'‚ýJý‹™]‰Ôà͆㪥bï¨3Ïtƒ¡$ÌkMÆ1œ¯kÀÏËVÁoü3‡Sîå’®Ht¥‡Ñ ¬„©¤Õ£\Ïþ(Víï‹R ÓÈИùË›¿¡… ÂïnÉ6x¼v~gIëDñ†õ§¥î Ïh·„Ÿhž[Ø£N÷v7¥ožl¤Z$þæµú@kÀ¹ È};”ðX°ëo4 _r 6kãŽß©Á_Ó(­ô"Î÷ Ÿ1Ðá¶·oP3ÅÝçøÞTL¤dùõs×>Ÿƒù¸GoÞ”gyÀÅÉ»ÇbÄ_åU~èf®ú™ºí.SÊèÒÖ¿åÆ8·ñŽxåFX‚EA› ›fdÑÔ_9Á—¦Dôk1ññep9|‰hn8¦Ú(£Ý`?³Pœõ0ÿ’ðÖÙ'{míÊRC†¿‘åâ#ÝË>eõd+¬–/1o¿6…Y]ZLÛ0£±úôËXÍ17±CñFc*Ê߯g÷¬šÝã/ öïtüRÑoxÝA…ÖEg\øKspl­cbˆBÊb޼îcy½¨o™àu÷¬O±L„¡[žñÊõ+žñ§XY‡’m5>³GP§¨^°¶ƒu Ÿo†þê £Ï®‹XÍÊ׉~ÒcB=grìåզԇ魫³6žûiN‘„ítO3¼ÚqRÚù´ÓúBGyš¥å„Óå‘ð©ØëVÝÊT’t°6i¥98³±ˆ­|ßèNÚ¡"³‡<##Î~Pf,Óàò÷\ðrwD½S8àŽ ïÖiâÚÅïô"þDz i«}.uQ‹fø.ÊöÖü­wܸðd f·ïÅd?zôU$wõ1µEL˸]ÙÅçr:)ú0að½X>ÊÞÅfO/b?XÍϱÕY°ñ{âãé™ãaÐO6çüDòc2z ~Ÿüü‘7ÓÜ MkrÑ7}ÞTçc³ {e—» V¥ƒ-?/˦Kè\åJ߈¹·/uÌ8C×îÃ}\¨[dNI±Aeƒ'=Çþ¥ñ4Àï çøs-øŠ8t¦§ÆHh&n¯çï 7ëèùÇ Cž0õAïüƒSéƒíñ§1`“%sÞŒ3|j¤F$¯˜J°Å=elÔC»CŒ¸>Pc;÷â×ù™Mòƒ™‘ |1Gš³¤8´ i?v^ƒY–Ý»–—ÝA‹(Û¾>)ŽÜò Éþa×h¢¨¬ l]„Åq»[Ñò§FØ/.æÇ-‹Ôh àï4™¤"€¥…ü^€¥w•è`î °ôÛT+õþ¬üQ¾å %¬Øh„©µ~ê•ëAðïíÌû_ĉ¹-oý¦þ V¾`ƺ‚¥~t`Æ‹ýN7À> stream xœí=ks]·qß5žé_àäK/;æ1ÞL&3nãÔiã4v”ôCÜéH$%*‘HF$e«¿¾ûÀÁY\^‘–ëÎdüÁG îb±Ø7ÀߎԤþWþúæÉgßÄ£—7O¨õHý{ýúë“¿=Ñåªô>úç§ðçò”ƒ îèé‹'ºôOiJ6ë£èÓ¤“=zúæÉŸwÿp¬&g­¶ñ¿žþüÔ¨æ§øG•áçOÏ óóã«'grÜãï´r!º!«”woèÛ%ã3Âûâ铯Ÿ¸Iù£ïžhrÆáí”ÂÑ›'Ú*7ÙX[^?ùÃpJ+¼Ê”Âä\h§t ¨¥² jo±Ùóîö¶[oRÒ»Sü6Êè¨w¯Eû2Ã:Rž\’Sˆ†¾1…h&›VS08¶·Ö;^äOý£Bײ*?ÇÎNk¥¹s0²sœÌÜñÛMÏ…èÝMdº$¸¥oBŒ»WD‚ 4hº_B³ÕAÃ.ÍD<­L6n÷í1°Š“(×Ç^OVù†-À•ÁcV†è‰ÙÀÒ0àÞæÞyƒðp e›Ö ÅZâRêáa^7 ³ü–B5iŠÁéC5jÈa¡Œh‚T´Ô¨h¶ªFïÔŒkc§MM0“ú£kSÝÄaÙã-âÝ$?à醯§ï!ôÚר>–%º8VÒš×PãoqÐ;Òô&ý¯Ÿ‹í1¨‚’¥ã)Ö†@<˜¹å!±6ª a²¹ªÒ—öp1˜[ö00ñÇ _†„¯KìdMÖ„¯Ï Ûƒný"Y”¡°Éfkäp_²W•­±a$¼[›‚×»ßÐÏR Ù®æMBbW¼°.Y¦Âãe¥R¿]âðy1(žþŸ&¶^鱘j ®ckËšÑze"j >rÚR9ËxVÒWpÆiSFÁªå%£×K:L¸…/Ž1ÔhâÃ8dpA1Ô+Á×Üò1ÔÐè,Bdt/†ÂY}±ˆä¦‚ßmú» Þ'ˆ¿L&YUð§:1ºè1ƒù¿?œÉOFüPÄX’KÞ<$¹tÚ8ç5pfh {vmJ©IˆÃ ÈbÌaJ(œ€û\_ ›¨5ÀLKŸ‘%W@+× û +j:­Fm ½¦/ÁƒLp@ð#H𾤰í_ Óò_§£Ï\Z–ŸZÊÈü±üþƒtáIhcX í*%»áMR†:ýÄ óvì†WõÞ^t9! \¼GGp$7ëˆ˜Ó¦Š°£?ý -ò2ƒtô®/Ñ»Ž3wÇ"µ‘Û`oËBÛDºÃgÌ¢Ô–(``ÂäAÔIyÜ7²VådÑ·Ç›)ø;;lÚEÚBÆpÜlÁy郪NFÛØ™C>«›fñË>C@nø‡ Bû†£¿¢oÐ{)フõ'Ö29·24›yø: üP¹hñ‡Õɾ×jÁmícXr{‹Q®®Ø¹]Â@‘WÔ¼ˆ£à#ÊÛ¹8ÙÚðÐÎMÑ%„0yñ~LÖÓVpñ¨7¬‚ÌA;ty*ÿÜ÷³–Qy‹ãØx6*„¹ýeÏfÙµlUÙ ýÅXœ#r1UHJÙ¢•€¯0÷…Þ6²…nÎxQˇ0Ûáaj Ã±Žž“;—òhB€âî×4è\°œÜ²ÖšÈ®¡Í8aLÓÄ"”›ÎwCèh« nâ^mý$fÞÙ5˜7?½a“£òU"ðqÀüºÅMxT ‰(-û`iDLñJ#„u)a¡.YÂ"àƒ­…[ñCî2Oô³oR”ºñÿ­í~ùËã§Ùʬ¸|p@׈^É…i?؆ž7ÂmØÚ>"á\o±\½b°Ú ü»ëAl1;5¾ñB F9¨,Px^ÒÏ‹50LS®²Ãl¿Âz›çäTS#!ÝÂ~?!$3 íbt71ÃÂ?ÂèüØÜù‹_üÀÜ)7J¾-?²5ü^EÖh¹`Å•ÕLìå\°à^~4Ög-¶¸tÉÈÙ °ú@6]-ÜH0ie´~ǪÜÃh­uf€í ø`´Ç‹VCˆ±©:ãNN'2±:x7o£9l^u'ÿ±Ø°•õûaŒ’ÏQ´¢S–¢¯-7J>ô÷ÒJÂZ±UE 7AÝN h|!šo¹98\j‚Áõ¿D kÌаë_$LüîF¸7 ÃS’—ƒl<ëœïØ€3ñ5Ñ”)—à‰×°†õ7$åN¿„"€[_X]£—Zv:¹¦ËÊŠ^nÃCÔ¾¯$|5 k›¡æÙR0[~U¨h1Œ>¡¹fv’ UgRºµU"óB†[›è¾Yˆs~V‚\~GÍ6»¸kV³ tÁTÊ\kdAñ"gËE“Ä{I~<cº¸„)õïóRžw¸’FÁRŸ—Eem‡Kâ-hs79_͸ð:hs¿ Ÿh*¨ŸÂÏž8ã´t-£jXÓO$Ax\+t[æŽïF.e)4ëf¯ö»…悸¯åç‰Å‰ he5R[¹(àN’šÖÍø1ô¦Î ï„ÇâìœÙÀ9ÓHáÝëõÊFþŽ{u…Ýs!ô=_*0±„ô´;/P~½I.O0‹_麈ßÏO¼ÅÚJ»c¶Ó>Uñ!$n—Þçß„:=Ý&wwýlNrÓ§+ÞaŠd_*\Xtï1)37—*Vh7ü3ತŠ!^³5Óhå®¶p*`© Ø{Øk·ÖD@†Ý©„|Þ­ÓòŒi™Tš96—wXýSëÐ…¯ƒ$~aÀ–ÿßò/ÁçˆV£·Ü¦SðïÐÞç œß}q\·ôÿ“y×… Y¨ fT‹õ›Õ1š ÉO[Ì9ÐËÓ1øåu»ÿ¸< Ë”}ÆŸ0Ü˵(ËĵÎ+tT¿ÝÍ#^¯­ ÍÙ9#WHhï†[1³àȳ\Û,ü<9ų3\hD6Ë5¸âÎÖɩ̊œÛFñsO#°ç޽ÈMAƒ)£G™ ¸i€nÅÌ€K°¸^KÌç!¬Ìçg Ÿ<[>Ï®–ïkÁJçg?+òZö¿<›07rszEœîÐÊéÒ&ß0<ìݲ,1âüÆ%/œKA¹&=InŒÔƒ½Ù&¡y¾m›±B›haªÅÚ@)!¿(6H'!³Ã4Ztü;Ä)_t¶žÊ·AÕ`Ål·~e¼{Ñl6ä®Ã¦ßüƒ‰]2UÔ?–þœ4`ަYu¡S.Ä ß 'uk²Si>Ìã8Átš‡»»ìt5tÃmùí¸f „͸ÝŸƒ£t~*hú ½©<\·Á¤¬|"&|× ‚n&(lÛðÏù2Þl²€I‹ÉÌa Ö¾?´úhšùTxrÀjÊ/J‚¾ïyèÁùùå©ÐWw}´Bí›e:Yª:Zçª ü,p´wÝh‡YŸùäëFzG`·FlCœ¯|él£íö1ma»Cœ’|_|ûõßiµ Ga[‘ ö¼¾î‰ÿ ÛÅš\$. è˜Ó‘®Þd‹»Óg¸F·Ùj¹ö…´[ëB¯ÜHì±2å³VÝX·`jê¾=†Aà΀÷eÞ@ x¸ÎÕ–}é‹•¾*é €€1!B@м§Ô3C¨²D’·V u¥Êš( ?…µµyòVúô˜¼ 7ÌÔìõBt‡%q¸÷§5´ N™›B)ø5 TÜœÜÉà}F´ˆÓª3X>òáÃ9Wd\4ÙñÉ P0†eÒ€Ö[øÄRýÁpqÁ•Ëí4‘m`1iþLü½Œ—0ßµ _°t9ñöâÌ<5¿?$€!DKµ)@Úèƒ]ðw”–€ï™IçÑl&‘õq=8šj“œÄZ"%*1ßÚ¡ÀÛ~^5&§P ]*{æ_ ÂË. ©^x´UFå  F!Ž_ÊèïºxÊóÌåØ(hÊâ¶Äˆà²c!‚Á’òòÓXŒ$‚Æ Bvœ…®§Jʇà7ƒ»3…Ä *«dÓ Ò„HåÒ Vg…Ç-bë\p-RöwVÙµ­ÈùÚèfŽ%é¢@Yãþ&Ö$»Ì´—ÂVD0û-´^.4v†„Mäj’$šï8Ëmx«x%B,œÄiòªá~p€.|¦‚–U–k´„•b½±ÆÔ.ÁÜð Î9¡+ný0“]¾gÈ1oè ^“±ŒWØÌl&)×j¡”µŠl–8æ8¹”7´0á*ú=åq“mÇ;H­0GtêÍ‘,µ($sW²ëá0ç3ýìÖÚ‡h2þÆ@Â4‚~ÆK þ'Xl°t¨`+Å\þîÙšÄL¶þ¥‰­5yQF‰z,—ØÁÿwœF”ê(Ï Óe8…ìu"…>÷'ù7¸9–Ë¿·EþÙG­ÐùžE„ ‘Îz³ôž­m!u ¼«¦’†^·ªÇ˜w 1ARF$U²p·àSè¦]Š+á'Œ¼xNæäµZ1’äͦT6и‘ÉtŸ²×ççê²~ï½În¬#D¿:‰&+Ìò¹¨ÐqËŒ‰¶Úp(ü¸ÙG °G.dQ†²,ýù@û.KÀWR4Öáš]¤D%±87DÙוŸ^‹³³*6½{%Š×}†· kßøABsž²rvžNBW,˜ÛާZ=èÛ8~/Êp¶†Ô,1:ž€X,h4…tƒÒܲæäjÕŸ-zú®v-TQQ´I-';㉤²KÑ.sçý=‰BºòdÙoô.ƒ<-VÜ"!>ÑSŽÝ˜?…9ä÷<žJ¾pAqhI“hHÿœ×9¢¼n¿i^a%=ÔèL3¢„!§0‚½r"dšcxVWŒ« fà‰uÖz°³Ä¤n}¥BÍXÎŒ£É©ŠDœ«0{”Ü{?œÞgªZob#Ska$®¸ÒÂäXÌi £À¨$û1YÛû`Å|¯Ýò–±WÞü(Ñ0kh$µðÒ‘@Ô’ÞŠ²[ãÐW(µ‘—ÕÄtÛÒ‰ÛGüœ¶B‘Ùt:âuE¬}zóŠÍ…ƹgÛ?cÈkY¯8…=‚ÎÌmÃuJj†—ü::áѳ\ÀÆYßaÝØýã;P½}þ®ô^XÇô¢lù˜MŹ‹> £qU —©E§ÉÕ*$5+/£®V\e{jóšÈ®úÒÅq­{RšÍ´ÇU~ r2–à |Eâ•3­3²­æ¸ÏÝÊÀcåÓXÇðÂJå±:Z’¼Dp©˜ØuP:ë` nMðÝÌú«$XlÜå=4Kb¼‘E£¡/·L é ã‚^K¡êµ”î‘.è3/eæ“×Ù²# ¤Ñ—\+#«V?BN· ¹©ÜÖš¹V wÜàÞªÙY"s‚ ³”’‚§èDÁ‰ñËÒ¸"·4s=+–BÈΤ#a@à¼2‰êxÕ>çÇ^~HF¶níGP]û’=†¸Æ8M‡ŠW •–Þ›¡¦Ã¿ç¤Y„©±ìi8±ß2³ÎB2ÓÆJK¸°¸¢R¾Ï:Í0'ÂhÌÈ-é:K.‹0Î^Úç»%°é½Ë%:êóáƒh·ÏÀs÷AZ6·³lÕ‹‰à’è´ †„z‘qQ‘¸`ü”kü,©V¤*]")ÃRrºÁ<÷ÂÒå,»¤Êäƒ&ÂOû÷UVDÌ5/z=z±OM¼^>¯—Ï÷õsKLÀÊÜån¨í¢1m¢Kdï÷­¨ûz‹ÊòV‰ì½XhaÙe,7&œBº-þæ£×O»:qÕj%ù³åS,Ï_—Ïÿ^>_-Ÿ—ËçÍòyNŸÌ“µñ¶6ž/oçÆ­…¦Ã_5ÑÞï»°öê¨ÛtzÉ!ÒíYáõÐx,¯{©ÞH…—8#¬#Ä f°ÏÕû`MV{Ù± `_ÌÊ#‘Z`a¦å«õÑ—¾íŽ9-±Ù¹Æ=§¨6äØ7Âuh4Àžm,ðžL¦ñßåÏn¸¯Î羬ô‘>ÈöîÏÆ&*q@+ù"“bñø¨Î«TˆŸÃþðK†‘¡Õ÷ÜOø7ò^ÖfPžoé†ñ*Áˆ!¸IÍ{UÀJË-He1L·ƒOQpÕïŒâ.Ø}&À—@ÊÚ¡Ì|ð¦P9½a÷è Ò£!­Ä—)ár“©é·,êž­uvÃóÀ‰8D9ˆ¨.eëPœ 3{Έ4Ý WíÚt<ê¨×Ž#6G§òè3û&“Ùʃä1è1Ð1޳YÝ@_óA‰Èi%ÏÅ©yÍÀ|Zïo†Kmî(€çª~<¶&•Šg0øXvñ¬Šù·µóÚD?»Ž°‹L )Zè˜s^º7ŕ碃IÉY7ŒÌh“w ¥héuÑý=ƃ2½/v<ϸ8ïj²(IɹòÖ½ÖŸ˜Hy±AÐÓn§×.#-´`îXÓÆ FUãJ.k²hì#8Ûûr7EJŒð ¶ƒà)¤¥¸‚F£c™(vXì•™…Ê­üV õ½1p"¶10듊xTKÅ}ÕqŠ Æº¬%Âá”#póž”#·ëM¨§¢;±ŸÒí.n»”´çk±ž“H‡fSe­µ‘Ãö. 4¯ös æ%3^\råSÚJ‹®7÷W{LD›÷„hÔ¡!HÁBùv8)eRú>Y?exÕ:ÔMš,åµxSÉL)y¦(T!æh·ƒ„j¸^üû~Y:Ÿ~JîɉAYuøÒ6ô´cLÎ*&9D˜”ñ]¶’ÑJ7ÁMJU‰_“òVÞVæ©waü8/q2o'`ÝsQRoÌÙP]4J·{-©T /B ¦1ߥç‹èK±;¶·…I=Ý\=Óf”µâ²ÊGÒttçµbs^ùe3ÃÂ^Ñ‘”¯ö,f­Pï£GJXƒ&©±¿Vb]`@™#0]qË“˜wø°Þ0®`%Éñm9å=ð¶ßt¾dxÑï³µ6ÃÒ¿µÆ#«®ª“½½kö–QÃó'Ÿ¬I;;øL,»Çx!Áôb\+bÖÙ7¼äErôõò) ˆôÜ—O‘“ÛNÚ½¤O ´~³4îÏÔI —žW[=ÅðSméÅÓ¹qËåÓ.LI^&Y¥ì‘[\Vù×ï’Xâ}Òì´kmeKòÌéU½‘,eêö/ ÃQ ¥mE¹(Ãwªo§Ä.Þ^`±¦1è]FT^ôÃH½ JÕ¬¼cš…ó£B!¡Àûý* 7£”ÂF|ØÅÛBñ°צûÚ‰ˆh¤dt.ý äó€íÊ*§U.Uå)Ó¥`…Ý׬gÀÁsF¯â¾á‘$LY³•Ë¥U}ÙaØm &„)á»9“ç·F2¸«sÇ@jÞÇD8Öò²Úfý ß‘ÚãSÍFã#‚H ÙÿH”T3Ii¬´ƒ¥‹>7Í7ܬÃ(çú@'vÎ&™/„Ì'>mXÏ í¹Ú!·ÂØÕyu–šGpM)Ë¥Lýöð,‰ÐäA9ÏJ»ÑàÁ‚ùA9ñKþ!Öbuiþ¾@Xzˆ£(u^¨ä¢X ø /¬Vr»øžSQLaº:ŽÐV¹!p£}˺áæ×fÇëÃÚö ÖÛ*ñH¥Þ2tÏ÷`CÇw?ãkëóM0¦­¥†Û<Ù±„Ð6v‡ 'J1ÿhi”-ÏÏ1z©ËEA³JnOU.ÉgÙ®*0F©bÖºmJwd÷¥±=žéæÕ^öO˜0j’U&y9ÝP÷õáÞýÆ{K™™œ?Hú6S—ŒlÊaÏ‘($»Ö ¯÷™ˆÍÂX°k^ ¯ %é??®!UÉ3u[™Ý¨L+•½Uö2Ñ, XÆ¥iF¹Ð±¨åG û8|i>I@°òXø>Q(ODÒw[¤_UÓ{á`wõuõ/ hcØ63sx¸§xu;l[ŠÞó=t£Á©¾˜ýÐÀݸ‹bbXÚ}!o¤ó4ok&BÚû qê,ï;úeñCë 4ó1";i][vŒÈ€Iû¸ÿìWpÔíd俘EQ”¨nbÍÑæÕ*ÿDÌeÚ3s' FUÝõg öZë:;ßè¹i÷ÙÖ# z•ÃêÜÖÙÒ«¥Œ´ÜÑê•æ ”¶ýaSRjnü0+ÝWb,Çž8Då'å3eyÜ`P°RjeL¹ÄÊãÍõ |¥*û‘1{_½âíz•³ùЄß#×øhu[&-ðÆÆ6Aã"Ašw2ãa?ЩŸrÑ#Lß–ôr˜Ür€Zh"×û†åÅó/Ñ'™àß;L-é4 ¡å÷ñ >ˆ‚»«_rvQl1¨ŒW¦Ï‡<Öp`~@§˜é²P’µ ænÖÁã-ºüPqòc=ÆËžfyA°C„H9rfÁ"SÏLjû>WÇ[×ÜbJÎæèéoŸ<ý§?ï¾!@YÏo“”kl)¨µ º´ÒåìïŽÁ̃ (wI¯aÇK·âîW¸¬Àèúã%,™*—ÄMîxm ¾6òU™*o:óý¶å†xºÊç¹ÀBÞè>ºÆÖèˆg¥èÛà§P~‹­QxijzÀÕêòÉñΖFã·­øÆ\yŠ8.Ï1ÓüÒ=s(ßÅO%Îÿûö%Ôò Aû _*º·?ù¢t_^ĤÛÑåm×[¯1Ò•Þ‡= N·<À3†¨J”}ÔiƒµÛÿ¾ýÿﵓ‹ô°‡æÂëyð“w:9N£xònnyø“w:Qõ}ÿäÝÇÖ ¿EøÜÂ4¿ÉèñnÔÏùþa›'â~ÅË£c¤·4è•mVŒQy²>«ÚÜDVZm÷Ú:_Ÿ6tÄüb¯·»3[›ÆSÞÒExÆíp–Šà„{ùŠâÜò–³®ú^–ú(Êê'ÉR’w>Tu!àü£°ÙÃ4×÷ì¢yŽÐSŒ:ðŠŠçËK ®}W¸ßá·‹lùóö{ ô¬æYûg½Ä‹{Öëtsl¹äò[°ãòÝÌ?Ã÷)Wut‡(÷ç•m_}¢;†!РË–ÀĮ•BáLðI¬'›ÙH vïsdxëšÜsdB,îÑs‹ŸšX> stream xœí][s]µ’~÷P5ÁÛ^è~¡jÎ0 à 00Ìœ‡`ïÄaÛ$NçüùùZ—¥ÖºlÛÛNHÕPTеe­VKúºÕÝjiýz(y(è¿òÿÓç럼ü×¼`ìa¢SΞ<>¥~CÐQzôáÉóƒ7ÿ|$£µÔþo'ÿ‰W•è^¥?Šˆ×OÎPùêèXËÁ¨è7gxO Û<–DÃjmM¦!§¡Ô œ«$>¡ºFJ!s]§x]š!†Zù¯GÇ¡¢2›£g¥¤÷nóïàÃúAF·ùiCåÚ8oÍæ)WBy þŽGe~Æ»róQ~U µùŠURÅZ%U¯U´Ú|“ˆ idÜütDåaÁmNÐðÚJ7çìÕÄ€Œ/kí@Ä¢µª¯}Éž_E‚Ôvó,wÛjo¨ÄŒÐ~ó󑕃ó(ÜæBk|GãqnRɰ¹Î£eѽڤ֘¶ô¦ø~ÜxåD^¤gi‰›ç™ Q¾–ˆBo>ìÚ©Ô©Hýäõiäêò¬÷=Öø!l<<&¼Eòì?4Õ{Mu34ÕŸÐ|—ÐŒ¦ƒ&8òÆ4Ý£Ryö¿¦·„³xÍf²Ò+tÍG „F@8Jã}pAy”ßBcô/ø³\É`ˆ>Å«ÒY#u%îtœTÍä¶”ˆ}ÆÍÓDG¦c¸«ŸÐ À…°4Ÿ|s`0÷‡o<¤Ï«¨­Ãç2*=x;–<;ønßÅHÆAC£^Z'’$J@çØQàãõe¨F‡Üæ?hcôJnþÒÿJc%•Ád$ÁÕÐ&¹UPÂ÷ã¨623ä ‰áøø·\£TäòÑß^!fiË4Î^æb€³?I`6B†¨6Û\Cé £*}B¡„h\)È+ÚÿÌ_Ïi€q³­y^zQ†8X¤ÿA¢¦c4Fu]J=’)¶ÓËÆû³FúÕó6 µM°+?ÎíD¨‰óÔ ‰ª#ãÃÕ'èÇímöxÅû [CÊÂm~9µÂö4ÓƒÞŒ¥#*ho7Ã! ÐBÏlEÐùöêq{÷²½ÉzÒŠ·C›Õ›kÜŸµ÷εb¬YÊC«@1FØ‹«ÚAP Va¼+=+ô“ÞçrÆ7æÅÙö·´TZRL­ÎòmÈiZ¢ƒUËKô]Vk3(î#±èÞàÕLñDöÄT©6Æ/ ;ÁPJ>ì£ÂSRªAz¬ÐØPv`bâÇ’]Ên2EÙ-} ­dVvL>Ïdæ.(ÍUÄÅY%S™˜ÙE¦à`9×. D݇k?Áëu®Õ"×ÅF5`8ü}ËuÌe™$`:Tð{®,5L‹mî£8íWL’FÍ1Œ,-"Wz¬0ÚÜ`\îDîi]DŸ Â¿JÏNÄ`90ÿûÛ£€y˜ƒ'GAÂdþ:=]‘å•‚Éy C4Ìl9C±‡QÈÕn^·cßËÊ Mhe´X;D,è5 šv Jä)‹¹ŠvŠÁÄ‹ k/ªÅ§ëjÌ,W9Œ^UÜÔ¥Ú"ïÓe(Pø™½UèZ¹ad?乄 Xh±ª0ÿJáG¤‹á@`Èß°™xZÿ~:Žóy^7.± /ócn7LŸ¼ÆÍ¯Wl9¸˜¬Ž©5qM‡¥IR Sít?Ìì½WüSbï¸òw,å«/<ÿžõÐî>Zy\šnXRªeÁ4ò}L‡€U„·qqõŠL"ŒbÚ¯¦p/Ú¡–É.¦L$ï§òLb%MO@h'ª4wTÙé$ÿd$XGB²îÀ–ózº|P±‡0]òµ¦Z;wÀíWÓðmn+®Ô³Ø‹+1ïW•\ý=WÀÍ„„Z¶k–Ïçe¬GÆÃ°<Y® “I1ÜÆ“€eàÏ'$•I'Å­ÉJ?“LUJLm¹MrÕú}ʨ³ÑgË{,â…]™Lé6ÿRÖT¸OÂ<•©ØA‚ 6QÀÛ*bR`7 v”ºÎž=A„Æ^§q#ªEšÓ*–Ñ4€[þ»5AÖ9’¼"‹ÂiŸ f|†‚°Bñ­¾<jòü ?:¸ä*:•ÎPž¦•œ%öø4³ÈQfí”b8§&·Yˆ\´79ígULÂ8 NV­&°v’HÊS›®ÕLRR\ƒ o´t:5lÈWAƒŽs0çÝIo'¼àïj(ËÉuDç 0‚ü>¥bf!•ŒïÏxŸ!'~Ò‡ImàWSÕd¯ G@¾<¦ûÓ$QÀ K•(ÞoNkÞïDŽê¬ßÐVÂwo2þÏJ ™#U¥4AJZ=ê³:ÒË‹Å+Ö"MËûH#ódlëMѼ4s¼x2ÿÐ!T k/¦ß;’ŒÝÃiÏ¡Kíäu\ÐêOK'-h&æ!¯¸0òŠ¿CŒ:žbbW£ä.È ½w;yÅkhÓ6i™²!ØxxòåÁɇ?n i&éœÄXHöŒIJK ÀÔH`·˜Î)˜©2ç7ýŠ^ ž ÜOs01ê(SüÆ Æ·:Òð j9–¦œÂ’ø{{ü"k|!@å2…Z-… ¡KcŒªvôÛl E™£1 ø,Y£XÔd)ªýõQ€1€Ø$§ÖC i% ªšÖç°æ{KçIªûQ":ÌêW™})”añÁçiÏkÚÏŒ‹l½Z RüÏ]œK‰5ipcÁþá?¬Þ`\í±Ev[æ¶9\‹ðÏ8ÕV‘YÊžÇ.Iå$tñ)²Ô--¦b,ÙÕ¯ s¥_ t}¿ÎFöÒK‡1'“‹zàŒlËbq›BôR £˜#Oµd̬Æ22äSŒL§Óƒðb9ZDFÆhóþ íj†.ºº¿40l3¸Ð¹Ó†Ž'œ²•¶ïÒÆNÍìÙ ªö8T¹Ü –‡®4QS´ªrr ³œ“eЪÁ{£nÀ¾]ÐÚ¼ëÃ@[Jö­U)Ƙ@{½ÂÊ“Q§¯`ÖÜa÷­C–#îÛß,Ê1tªjÛ€s]TfŠÐ½Ï0„mtSÐæí­Ü³ÙwXgõ;^i–Â|þCÚL㔿Î{Ú1ê>€ >oœé­^A#Öš®IFãxzΪ5z9Ÿ€’2|Y²ikŸW9ÛëSî“ ÆeŸ¯´xì Ô 4{Ñ~æ~KvSlP4 C x›„B³n,ÙC±ÑDað’fcC^œÍÿꨔòÈY¶i1€S[1÷ÃaY‡ûÁúá"\¯ûtÃÅÆ¹ëÆnq®ݧì™üqI^^_̨°ŽçÊÊ«EsØ`é¡°ù¶ý3yΉØ{¡ÍmžڟIë/‰}Vûœò1ÿñ&y\ž\/o¼y& <;h;ʳ§ß”Z !ØZÞŠPX ˜ÂÄ€Û; (po,ÙC*(…ÁOE›‹£$o˜¤‘„iÿ†«8¶†ÿÆÛ ã½å/ø¾ôøëÜPðúA„ñ!$ðÞÁ[•@Ô e–I`)¹‡Ê„‘w²¼*)0Û‘õ£¦„ìß”blßÝ"rI¤Sy“Ò®øO‘¾µHFûõäÀÝš:E_o½`ÇÑ6÷ð0JžpJ>( €vuYi¡‘vd3i“´U^I‚ïÔ}B^lѨÉÖ^qÉ)èM¹Ì+ÍPØÜú¦& -—êÐÄ)Ì5a°^Ú±`-A{÷.…Á«’ºt±(ïL7\¿hzd—àåí¢àhJZ ‡·õE¥‡r|ë‚ךXH©3”+Á²µíZBöËšø.¹p0Ny¯xC9.„Ý{!¤÷èîcо}l‡híüûȆçŠÙí9»Þ΋ž»Ã¶Ãœï^ip¦ðÊBx-x÷p¾1½Fï.3qŸð7äŸçÑÇz×"½ y¨—ò|WO»ù9ÔëÁÚX°O¤×S¨Š_O»óåż;L&¯Ùs/zS$cÎ`À¨[#™ôI»À€ÀÌÑ›ƒªÞö`=ø’ƒìÎ Í·ËÂ$ÎËÙΰœ0ƂƲÝ!vø…Ì=À:Ä5ùz'á… Ó/÷ )0D¼&Gxè s‘¶ü•óæ•s´‹m\0C†¼À¼¨Z°ä)wRJŽ˜ažñè‹ s§¼%l|:Å@߃O'èPSÏç Cm¦c¿çs!:O™ w Îÿ…­_´‚3¦Szøš]ÁÏ–=ꡜbò&®í‡°ý™Ù>a ¬™ZL^_7e¥ý¦K2Ü‚í˜gs]‘z0³©ˆôŠ%ÆÜ'.°bøp÷t&TÞ΀æë'Â˯éM‡.¥¬©b‹êÛÓá©[ÂÈ N« [Wša0b;y€aVùŠ"øq~žxÏp2EÏJ9üRŽ6e¹Ì sÊÇ¿w²Ë·B¢{Î%S{ë]¤ý›‡('qjÓ©T­ k9ý`]\ñVÄ–¯@¯Ï+Y$,I$·© dì¥\F ýhÍîÊäW®6ÍéØÕ—¹_²Î[;4—Æ£×k‡q›Õ|9%m#çi÷$¦pÃ1r.Öa63â‚=[ö,Wêðg½R¿ž»]‹Whh¤0út÷W“bâlãv%[õ˜a,…ëñfð9YG  ö± à«&ƒr±©jq9F±˜½fá2Ç™³†ã}¸³tÚW÷ì±àj¿×1[ì%•¾µšQ5qªzJÞãµFšx³êy  ñcíCzEun—©Md~ÔI+©H§õļê-øå6WzÀ;É’«:?e<™°VùŸ¨X ²3,qeÝÕYêØ²nwhN£5r¹2|,zÌž·Ya:€6f͘ӂһæaTR™‹&4r< jPÑ¡(AxW²;ÀÎöÛ%©f„÷%«8?—sÐ5qšé­4¤³žcÞ5?&q¹D™çͳ““#ZÓ¥z¯#7¤ç×|òDÚJãu²°5¹TnóG• ‹t šò½QÁuÝYk”7ô„=oK¬œô(«p÷cùÄÙÌêæ/Ž'.R_håZ4bÂÔ“¹‰BMÑ1Ê‚I*t`<º|¼ˆÎ‰î†$YB³ÑIg8Ÿ„¼¯ *;h±6üä2±š|Ôt'†6Æ5™-I—CŽBQü6ޠܰ4º… Ÿ­â]g|Uþtº|rö‰8+5B=w"àòѧrúÙš^f—³\¡;„q¾,ƒ/Ë‘LÛjZ9€5Ф7î+I:ƒœ1E‡K\W{z¸dYsd1QýÑ’Tyh<­-qᦣ%úm-ù¼£’¡á°êt¯¾H}6óåËlo&-Qž­‚þ®µ_(ã…Ên3h¸rBI8/uÈÇŽ 7žK*4¥¿yÝÎ¥Ô‚ýÏ¥P„µÇ¹$YÞŒi».ÌGaN‡±€=q@fG:•âãë¹–ìs*ÅSNDß+æ%W–…1û×7&-nÁuþöA?lÏv[I´Mád_³~)‰vÜ¢Ñ]ñv¬]Ke¿ôóHzÑ} ‚î¶÷‰Á=Ž Â9Z\a” î"ŽÆ?,ŠJ✦¥›ñì(4–ñ:üÄžåÅm£•1nÍE×¢ïwˆoóÒ>§œpôÑÎö%ÓEkfÝ·ìóÉR\QÌ£”Ò ñÁrÜŠ¥ÆÔäž ÃhLbw©¶V«!½éås´eîìþ%·±I{*þC¤}z¢^’UÄ1X5w ’7Ö Ÿ¹E[ܼfqk’?·ìé²ç[‡?V´Æëð€.gr_^fÊÎÏ=ÎÔõ³æ=ÃI§ÏéœþÃ9|Ôè§.,Š=Ö7õàëShgòqñ SŒ¶j‹éAÿ@W؉k’gSÚ®‰Ü°S·-5œ¯cL¯%˜'£Zç f¨û¡w°fX§Å½86&œá«æ:òÚì>ï5ÑŽ4žvêLÑŒ8¥VñN½Réôˆ&µ“£ó\r„Ñ×l™&ŒÇ°['üÔãÛ!ŒJF»àå 1.2E0ÿ&é,˜~Í)ä'ð·ù=Q‡ÒâlÚ‹òé.rHÚ!uE“aÒÍÎÄɦ6¤ôéºõA˜e+qž'e˜àÀ,¦Ëw2ã¼:S(ðÝkê•%“—÷[i|½™¹²Ä¡ê¹úÅIò5}žî9åUNÙóu‘Y2gýR<‡VÔFw·=œ/:Á×yB”tËu·ùïü u›b&5õ/:]žÅgf NÄãqz›ÆHæ´ ¿]á„„qY@ž?~çųþ9¡N„ÔQóYžË çhÑmógrÓn5DReD Ÿã:”·Þ_LÃenMä—%—×X»ö†]ÆÆ/fA"²VûÓóu~QµP¤Ê/IJÊr\BY6‡²R!_IoÉš u)eâ¾C(«hƒwÞATë¸6y\ã[ÔðZt˼ÍèÖ÷i:b´ÅfÍ$ž¶ 9$¥}¨Y™9œµ‡ c´î‹C BhY#?øY®§É~Iñ Š(ÁÅ´}DiWPŠîÑ^‹5±k‘Ïù‹¼É| ĸšW°vBESN[z¥ÑÌX²ÜI,vå:äÛæì´,7–ÜNf“ì‚>'.î†Ïˆiè÷L,%ñðº'ðÜùæ5?ƒr½xÕem;;¹jbý”I&b;‹“̮ŠQ¶ûX½H·tqI¶këõå;y˜>c”(ùcN.9éôøyÖF 6EyQrø!¥ø/'n)8ÑÜ' ø ør"%rsÑ&9gJ¤;è¯Ù6»æ»du-Í7!<ê½¢‚yºS¨äÝL÷W¹XI³6Å´H×[öÙ›«¹Ý„:ŸpÍŽ­}ÂF?³Èà5‹k­$š‘è6ŽîlÀ-°Ú­I"@\ª§kçKž !¤‡äXùfUòÓѲ2ñbðÖï¥LJÌMù…tëAâØâdc°ÈÜæ›+§Çú˜ZÊõvr¦ŒÃy)=„å«2Êka¾bÒMƒŒõ{fw:ùX?çó+æ·49y~EaÕ)£—EZãö@i_ÜVßæó:·Ô·»…Âøt.êO¡x§B1Ëõº»TL¾A‚µ³ÿ¿ABÖ¶„+ʾ<’~îogƒ¯ŽwºrúÛ,à‚îÆ)·ÔC2ý¢8ÑŽ}dã²82ó¨7ø¾ºènõ.‰&vü̇KŸÕ(ovW:ó[…?ª»kÎÙuË/²Ç °ußé¿ïQå×FŸn?j绿ÓõØÛ«|Ŷ¥¨8ÁÃPhÍ3[Žé˜¤¶ Â@²»îŠñ–ú!‰ºBáóT#KÈgMX~9z[·ŠÿOꦣ Ìæ|{±-—GÕ&ÙŽ÷ÐÓuülÐÛ÷Uòè«õéÎ÷¹æOŠ}¼d›Ô6EŸê7+BwWôò÷Ê]ä®ÿF÷eŒ³Šaêeéä¢\ÖÙ—\‰åË$c‡ø—^¾o¨˜uÎÖùåÖiJßä.K“SÒP!òο,)háI{¿ÜómeJ0л>Z#ø‡!nuöèn}ÔÒ:[4‡ï MBçšn‰×]TL»'&K}LßÈZ¹M7‡´„uÎv1>~k‰UüMÏ% 1d÷§amòp5Û:k¤yƒ- øŒ…ÓnqkCö¤Œ5]ÔŽÅgÙoeÓ§|‡oÖ‘V;"”]°•­ß™2I»mQc‘È~O2,–ªÕèc¾Q>¥öÇq ‰«Fy:°9Ò½ÏeÐ9ÔOqcGŸà2õºråœêv½ø ð†ØeÙœ—ë:x‘×`M>í*ÌŽ3´s 5´è·ø~BÛCÈ™œtÚB…Il¿Ïä,hÙí·ñm»> stream xœí]Ks$7r¾Óá¿Àð©ékñ~Ø·]¯×kËïjB‡´’Í*4lŽf8£áÅ¿ÝùªU…fó¥•׊9L‰Ì/HTÿp¬}¬ð_ùÿâúè׊Ço>Që±>þ·ñÓ÷G?éò‡*½ó ÐæXë!{¯_½>Ò¥4ÇѧA'{üêúè›;Y\ò!lø¨’‰ >›“S­ìæ_ Õ:£|Ú\žœBgílؼÃÇ‚wÚnþ[mPÎÆÍo¡ÙhçŒÛüƒM~þ=uWÆÀ(bÀÝ4à×'Ù Î'-¿#G ÓlnOjcùÞX6Ÿñ³:½þó«…õgwœ‡Lp´þ<(Óñ«/^ýý7›?`o’RVo®ñgáO^˜Í*¿¹¡fãu40}ƒWÚÃì!Ú{³9ã1`ˆ”€~ñÇíÉ©V6ÿùQ~qþ–¤¢K›ïhx­\È›‹ò€ …ÐxxIÄ•iÍ&ÇèìæJ(iÜbØ'7ˆèõȌ߽:úã‘”?þñ(uq²äޝ`l;$?¶¼=úª+PÎ7 -•ÒlFÁ CÖ‘¥êoO¡VÛÈ{sÊG‰Ûµ…ÎÄG€é¹¬AeÄÇq Z'3xœ+êÁùÚè0¤\öQ?#¡P !§–úw’6A\„í Í³Þ$Ò b¶2:êÍ[ÑŽ»Çû;- (#¨6 6=ú`‡`gÔKÒv ‚&Þ%‚²¨¥Îi­Š#;ƒÐgÊfÓÆš°í …ÖÃs)¢F vzzsÅ]¬Í5»xx’dÖ:Ь ;à5¨OÎÐ>|`3ìDÒ€E°DälÖn~…*¢ƒ6¦vUD„õyˆÁÔ‘|Cð{ú¬}p¹R³jÆåÙl̆÷–žI#™^Û.醛³5‡¬ôb\Ó j7­DÒ$éôíäºGƼÇI@!¡ƒú5Ï ý;C0EÞ·]ŸŒ\ZNKaa˜Ã0Ð;c…£_ èIP†@ŽÇ‹B,¼‘Éfp]àQßLùfðf>;8š°˜9GB8üà²y<òàpYû<Z>)0{«à²Ÿ'Ö€/¨óæÓ‰½U!¯ê:PɨM[Ýîº3v€ÏûÔ `l€€éyq"pêùqWä*çØ™9}˜y¥¯Ûœ¯"‡œúJ´ÿZ|¾\]uŸ›#Õïyve)ØlÂê eʺ%säP)ޏ³ÕF€]S94±=ãšäR÷CœUÖÛ½ÇXÔBœÃ°vÿˆ›˜ñdÃE³;å3Àâƒáµï³.åÑè³´ èQ÷­Å(¾EkB§á €tn?›±g{ ãAüc÷jFHÑ7cš–,q°Á<2‚MÓ] €@+×2S|ΪÖ¹¼ñÍŽ±êgcÈ…€ wÊ#çÜ7îRÌ>pwаyóK…{)›…™†'Aº Ý­,1IÆ ÍÂØÚ‚&M`,»á3žW Þ]Îk3ô™.%Hq&&®#OUJu"X€Í³ Àú^OÊ]ƦtJ}ÐææA9ý”ˆqA©ÅÖñb¶su`mdœ ªc$PH¡¹c~À½EëÙúÌK¤•ps0À^9ã êþ5˜ð:Ί‹­ÛøŽ ·²ÒpÞªŸµÚ·6ßð5&Zuݪö×mÍkÜ jV°•Ž3—Ú䔄æÝ1Ø};XrÖ\ÂØ¬4<ÆWsÈ1­ä‰nש”>Ü­å¦.«þÄø!çCã8픃&÷q±é1ô7]x °ö ðì0`±¢‡´ìPÝû],Ôáàç.#á“m£&š.»7NƒUòÒI(RŸÚxìø,Ç@jš£CÐñiZ  y¤N’ úÏ[pdÀ§Ü´.úsUY<ØB¶)rf¶ÖM±š¤Qn¨€dölC be‚ÜÆ,\J lνèá…|pd…Ó½”mîܱxì²A`”Ý ž¥3ÅËI¦néÓÏ._0Í…Ñà †E4uÚ zlxš:Ø$þ³?'0 Äó*=˜¸µ` ó Úˆ¦Øù>¯üQñªTk¢H»²b« {s}ÖùŸ„¬&AØiÓC‘\ŠVϘŠý3#+N!˜}?zM‡ +Á)µ6ºJÐ)S˜`„DÖJn‹¬´‡ÑìCÖº‡/¬À~AV„´¸BÐÅè×ðÊ4’;f¢S²¿¢Rg7ûb‰a)U“н™vi‘š Åøv#òÛ <ôE"õÛÖ¬{nu]vŸ[\{(òo3q¤ÁƒK„ÌzL‚ûnÞ}_*€ž4M4ÛÏÑÕs±bŠeœWˆ9m6cƒäzÞò¢½`‰¤» ‘9K§†üJ&™ª¢ÀõU覱3[Y¶rq¾,oº—C˜a —d$Lé‚sbœ–¸äÁËœZöy'­.UïF¼±8Fÿ재‹M»¬Ú¼~š‘à›+H„¥?;$bwÓ¼ù8htÖ3y{ ¤±å1îX'q€¶Ÿ´Èâ/ŠsC¨è_'(&ÐÊ´19ø³ÀÄ8$$Â0Ù6ëÑõ(I¼£{<&2k~jP|à:ìr6ƒ²ép3À{v­?†<ƒ¢·?G÷¬Ee<ØH Š¥å  ¨Àß»ð“{ü‰¿ø‰]?ñPLü¿æ'ze½Ð`¯‚ÁzÞC4xa€ÄÐjðÃ!±­²>uÖѨ§xJicÄ?»2ÐjJM³Æ.†6ëÒJeןNR\Ðá¾k<›:1iˆÉb¢:„!æèÚmLbÊa½°ºÔ~k<(;TÐ6@ÜðRª©a5a*–QûdU©žËÁalx|µXQEýü@ HœFž¬A›¢”ˆîû]Y›H׃ì÷œëüωKè-§]Ào²þ'§s?Él.Æ’õ¹Ø RÍ€L¾È0Bi«åEm¦™Òb6È„Ëz¹rÇTW7gy¨OnÐï¨É­çSdW  l´VŒ:—Šƒ"BÊÇeg…•¾+–C‘cPg{Ø1ck=iÍ©¥øŽäЫԈ™hõì !i€0ó)’ö#žugfûè†Jñ{3ÌöMtò–¡Iû*g‹"?ÝÇšy‘ƒ<&­ÃtÄãüË,9&äµhOþí&Md4%u%³Í¥ç"lÝ·lz Hƒ¯u13ƒÜ90”¾áɃÇ/Ëê²ùS·…d°¢UbŸPÂóñÄ¡_Ç…,Ò ³r¨wt¾ªNRÒ×6äw<Ë©wxÄ+L>b ¹†Q!V1ê;|Á%x9…ŽxI~É"›má.Õì¤¢Š•·t7¬wþÄj¼kMZ•³ö[!ÆZ?kJš=EÍT¥‚n>ÊžÀ³=Ü¿)¸N§›µâ¶W-5–æ¯ÄL¤£cÌ”: /Lö6ºî…° BG[o—4Ã,ñýðJMf™ùÑ]GÅhJp>{qhKß8^Güïj¶f±<Œµ*3ý-ÌÉQ÷¢Âõ-dÔŠ;¡z¬dø0ÚŽÏž«ðLˆ³¯$ß$7Äð”öù½éš Á”rɵ òÑ}ÅíœÏ}1ð4 =R7«Š@ÍvzÖ›«¨ÜÑy•$±(AÆz¡‡H•Èq´’ ¢FTi=`¸[A2c ÛbaäJ¹‰k›¦sׄ‹õ¯f<¦r wÅŒÞ[ Á¦S)º6PL§]ê蔾áÊ,½5Ú5¹ñ²ðù«! ¶õYkœ#”[P2…O ˜¼`&ûÂiê†QTWK§¬ƒâÄR(àýœòÞ›ö¾¾¸//N8”jRn5·´åN|Ay)A<€·Ý?É?¦¼Ò,]5RSnýƒáp ÁMÿ^ÂÉeì¨)ád,D cËã3Nx^l”[Ï8Írö­1ÜÝœ”ÊWv’Óe·4ˆÃ²¦³éãnË€0g§HÌfû‡ $—«]J% ´¹ø(¿(Ÿ5^_¸Üa&ÚM¡ Ê0–hë®b‚Oº½üÕîr[ÆÛôzr1n¨vØçi¼«J‰Å<¥Áó1|/†$cì{ù¹ÔªÚâv9‹ÉíÉ¥>=çdï~Úw¥PÀ˜ xÍÁy{×a°Ø²ï&–]ö]r,ÿ‰uër’[·Ý^n¿(²ažÎ¼s,´Ã[_ysy!y=‚ËQ†’äõíÔ¹aãÃhКSq›v—¥ü;Z#—²Û>Öú]X¬»Á¢ OiÁ6xUGÙfg¤¦NžÏymñhq)𔍮´zОKùàÈ¿ïê‡Ý^@Ô•4‚Ü  ”.˜r¼ç¶º-]áÅÅWe=ž†„YÌ ‘’.¹¥Wˆ‘Îä€×¸ˆ[œL‹‰Ú¦ÉÒÎ>jB ûVnÛ™,ÿú$åèÉÈï‹a˜‘å\1CÓ…JPê‚ÃÆE“ ¼pnkŒ|p¸Xü{wD9@bÖ¤ÊRLIþÆfgâû2_B[2­¤ç0™ð¾LâL„šßŠi@¦ÌRbø .Šèçc0øŒ{%©c¿'?k;PòÁ†$W ©^! pÊ7køÀ öÚ4£O Þ2!y/©#%¨á KI9Ü$rTÁl™ §ÍHê•d*ïVß0ˆèH¡<• …ôhL#?’„ºàªPgæ…W(¢' Ú1£"•Ùr _:ÈλiŒï«– qëÞP)ÙùäDµÁD‘œs±Þˆ–”Ò¤›±÷‹ç 8ŸQmaoóè¹"`˜âØÁQ$EHëä:XÌ2,x=œù(ôu®,ÔÕ8»!ù¢+Æ©ÔLÒ(&‘Nz3„\#©S3Çñ²F…ØÍ%×€Jvù\vPå‡Q×ä-ž„@9ãÕ‚Ñ n5jI wˆUà—êLÂ1žÖ”'Db’kDäumæê•²‡`ª£Â ‡¾8ÍX¢ãeÀ€Ù¥f@I-hðžÝÃN!Rr<9ÈíȆ;AØcÈ™Á C¿ÉûFT–¨¡ðúU•{L9KM“j"Á‚΃…?ð£‘QÂÀ “-h†`xæ‘ÐÞ;Ž À16r&´lç-W"Ë¥3@CoyÆäÉÂtÍx‚ÀÕN'djÅqU¡¥ÐtØ=÷'ð=A>tü Öhðà¾?ñ[móõŒ:+¸Ù7SMX$ŽmYth¤8 £p7Õ ,vÆDì*¿SÓ}Z\«IÜÙ…çR\ Ú–zåCX‘zVõ¥z/½‚¹'€²r 4'–/ëˆð½ñ²l~]žJ™·ÒŠ~Zá-u˜d ãHem멳à©9½4'û‚9^NhlíÒÒ×e½-³cŒµî³P, ˜”*„ *6²61O ñ&okj®ß—áâZœvw7ç"iþrÕ4ïÍ|I [æ³þ0Wžz+µ0mÄ¢pÀšXµýàCn‚ÔØ’Ã%O¶¡eæÈ_ÍYD6R2cŸå–’–ŸÂnÞÉñD€!ûø\¦Iz†Œ8¸l*ªÉülï·ß ÿ­0­7œÓH¹®Œz|/d÷Tx瓆ÿg¢n!îr¡ÍFüOû?ÍW.`;›ü-†ô=÷È3õÝN|') õqIÄÞË…º,‚ãIE(߀©¦ïPÂ÷øª“ÉàÉä°d¢8à/á…i´_Ú*›1%T°zä‘^±ÿò¹º]` Où#–ôì›ü\¤ÞÙž"6Bϳ€¤îqi‘Om ,‡ûZØê]ÙR #K6”¼5;úËQøJ›ùØZÉð“ “ÿÏ©êI•dBé):è,ˆ¥ÃteÓfq¥Z‰(RB¿\LÏ(ŒÕ¡ß4+q Q¨’[ŽR@ï–œ}Aî·­²}o*•ë6‰¬ËðRç¾[€_ã&‡(|¶‹wW®ŽE|%æX¼<¦,D7Œó›ß`sѱÓu§C2ìŒt˃ïxŒ¤u/;#Më®3JõPM-ºXñùÏØ/1Ú®–þ xนW%Å_ ÿJÆ ÷3ßÂf|˜H/‡ÍÍÖÝÝÄ·ù–ÃæÎÏ›Øûy“ÿ:Év¾89Üw¢Ã¦HyÏ—!b9_‡‡˜FNqC=3jäŽzâyÿôã'g$&•’‡ªôâ‡T?ŸbÃzu•†íÎiüq”¿ÒëzxÒ‡/î¯ëÕ†ÇO™ä‡äü#®ëýÅ/Í´/Ðo¯$•ª?z‹©Ê½wÉÝ÷ïÌͧ|ÃêEãìB ØC(ò\b¨†Ñ‡^ˆ!Î@¤Ñ¾àuí‚Ê›iQ²WVÅŠ‚ÇÕ*0ê㽿G•¨OW8›uùÖøƒ_æbgÜoZ_—§Î¥½wõ²…ï‰Kï‚çâ2ƒ,F¥ë"bêU¨»×àåç"[ªy9­Øà‰¯jNÑÈ«„‡_ç[Lõ¹UéÜ'dûæ:9IßxõdþŠ´fÚöÏ>÷ÔLg„e·B`-s ú0»k¥rös½¬av2>8ËëØÀ”õÃ|†ËF¬e]è„a¬(§ºÐvUòÁë¢kø+R£®õª¾?0ïðe2ÍæœéMa%ß6£çR꼫¥¡[U´‘¢¾‚ª='UDŠéW^ f»ùjjeóEÙ»/90·>Ç’^f†µéåZbd‰_)Y v¥œÎ‚"¶5Ͻ3!©ò3Þ¹‰jq¯ªº€Ýèͬb9JY÷*5øàc!s¹ x¡4¿\%Òž­ýSI\5cºÔØæ|ÎQtÈL³’aóLÝJÉåzJyQéè.O¯°+'çn­®©“ÖÆ VúY½ùoÄ èóÌ´íø¢ ¹“Ò¬-ç,K¥aýißÍÜk—7c¤NÉrGW/„M•³R’ã3NÛmûJ^G.…Ìò¶ôé^CZ­»BoyaÝÛº`áÏ?Ï]ÜpßTT”;˜fJ¿ONí¢bRЍÓjŽ&è7Pl÷ÊÀoí<ü„‰¦Z,/8ÃNÀÌy%ºo§ç¦ÅÈIøÒg—çHµêÉ®Ýæ’ iZùbþ’ä˜+»èL²é n£j›{Þu‡¬%Tҹ̞c”S|}¢‡À-âOÄò†y4d¦ÏczáGÿ 1•endstream endobj 112 0 obj 6712 endobj 116 0 obj <> stream xœí]I“7r¾3áÿGßæµÍ.v`|²g¤ñ2ãÐxºH:ì&©Š­á¢íàßî\€B¼~ÝÍ–ÇT¬Æ‰Ì/7ð—³uQg+þ—ÿÿüÛGÿø_áìå»GôöLýÇöôçGy¤ò?ÖÜúì_žÀ”>SjIΩ³'/©Ü>è³à⢢9{òí£/öF±ÑyXàq:¬ðlÏ/”Òn1‡…·ÆêÕÅÃÕù4VÖøÃwø3ï¬2‡?à[ãWkÂá7ðZ+kµ=üZô&ŸGÍW­¡Ñá›ÚáççF-n êðÇ6:úxx‹=ÃÞŸ—}Cýš C8<Ç·fõ)^Ókå£semTüúÉ¿[’=KKòÚ[bKZÖ5ij'¿ôäï¿<ü¶^}\W£ßâ?,ty¾&­Ñ»Ã5½ÖN Ty¤*Dù°(ç4M}@1´Ä?ÞŸ_˜`òþðùù‡g¯‰ok°æ„Ý«ÕúsâhŸ¹ m€µWDŒ^±B§¬9¼’J/± ,Ÿ ‡wøZ[ ×!3>}òè첺³½ž,Ú³oAßf‰n{óúÑŸ¦rf]ÃÐ,g1.Ñ$”7¿$XØþæj” ¼0¦ü)q;ÁÏŸ\BãklìŒq¸"aA iî™;$ÆÛ˜çÊÃOÄßž_8¯çŸ'·›¼ì÷±fMÖËξ8OtÂ9Øsbݪˆe;BùOIùvJæäË”P¬5 %ÜØënþ:U??wjñ°¶¼š™NÔ£¼Òúð=J|T œDh~|K•ó6ñz ã%Ò º ú‘û3žA@ÝŠ`ša¾ÃÁuZMÛ5¾ô1ËxnúžžuH«nºBl)q¼ÀÇËrIÙ±¤Svñš–u…æv?[ý{Ž0“L‡³ ƒ¯Ä ¯˜ tЬÌêú%Ãä\ˆa*Áê3¶ð€’¤+ܤ¶ÃLS"6 êÖ࢙ ­2Höóú’É0«qfÏR˜íÚ®KŠ×‚(X´‹Ô#Ùr?€>\Š·6Ë-L ›à†j¬Ò^.a€Ã³M®¶§—]_,ˆBt¾:±ݤÞX )Ú¢ý%Kv23+$évQ‰TŠÎˆSçÞˆ)ÌtìŠ;š>^ð(ZÅFv¿ô ,?P0`ÁP6üéü%žp?ÒÝŠˆ?A é< þt0…}Gí™#ì00Ù†xymqr`ü N“-Ò$ü“½+L¾Ju9+kÄ[É%•yÞ+ÄFÝ °¼)Ir›")1ïIwÀ!tœ5P=s’w±@Öat÷„¬ŦV«Ù& ¸ûxC¿((eÀï ˜ß܃Z”öÌÐqHø~hÃü@Ö­møÿCâ/‰©9‰øKýW‰~A·ìV˜èÝÝ1€DÿÒèVÌÛ8¡Ánõ3N§hð¡€Dßjðí!±Í^Xc©× …K²ŸøÛs— ¦"½_m%ÑGš‚é1ñÙ8;—ˆJƒOûŒ_S‘8eŒÈ)9èg­°‡¹8ïȘ§¿½¸{*Î[@{£îŠûÈÁÓVAl´v«1t°“¥ñŸ»DSÙÕ9˜–?üÓù(.ßáù§( @´ó#˜Öì—ÝⲬ$°°¶É7 2)k¢W0Ríb&Â?žÏ΃)ðmZGj¢/°5@€cì²D ?šˆ0eåÁWçHýUåB„éG±;mV&…zà4 †ÛÞÜÁöƒ"ßqæ5þ1;SRˆï”}Ñá ê4qÒƒf_Ò¼¾{ ?1г4«°¢Eà£ÿø×ÂŽ±dÛ%:ÀÈ{ûTjÐ0#‘¡«ò^TE\Ì3¯ÐÇ'çTkµ¸°½¹ƒ€‚»«‚ð,µØ[Eù˜»Ì¥ ùŽè_ºSn|Å¢L6ždlYB£ñÉ›³†Àr*Å©}2`†Yü¬mä6 eŒø(ÄIˆõOW&žñKÌc±ñhIbkŸ ¤@y²›Á‰h¾ƒÊ•™`ÔMÊà`‚ËÊàÌ]”¡ßá}ƒÝ"JºÓãzûŒçG%€ÀRöÌö|.3Ô÷E}dö«¬yüõÈÌ6é_í@8…ØèŒ$o–îâ'$[Ç.dd-õQ²l1GÁÖRÕÈc‚žX[QKÙ$Ò^Š,ø›)›J~b8z´Ø c7CÝÇ=úêmÕësÖLëçí°¢ËíÉЭA ciÜ–À5X»"!Vu6ù–Å…˜DHûÐð»Fù^5KÊ‚ ¿¼ã,éùŠ¥Ûi|ÿPTÁ5m~à6(¬C“rp»à}siÌíÕx ÝÄIA_j²,Ì ñ>6ßm-¥\sÀïÑÜ_HZIwƹ[DUìpçï]çÜ€@ƒ…ÁÎ3€ ÃÕ(›sxèAIªîM1 E!‰,ÅXCLÍß«(Ü<ÐÊÌä$«)½±Ÿ…Z5æQ6âîµÒ%>ÂæÃ8A»[@À]£ÕÍַߧ㺠ºÔ/j´Ö "‡™²ÀD5¿¤n L%‚;JÞ9–ܳ wM<ÈtIñ“Œ™C 6e˜mÓ–ÄýT8j[`¡œmØæR¯F€”ÚU!†<-¯;ˆá-/æÄlü¾yÛ¸ìd\ú‰1²pŸÄɳŠ“øKzCÙu²^bPø¡:ã~íƒ,È€ n”gyÃa= ÈÇIUbg}Dÿª )÷¥¨?\UjìfŸ¿çßõùûÜXÐÑIªõ ð²Éf”ý¼IáÅ?©-ÚM,8ÈjÓQ"coôáwÔVY&cçècµÁÜL@Øæƒó'îÙèn¼OVê 3,GµÌWLr¬³b³‡$c9¿0˜…¹Þûl¡l8¾•íדöœL‚«~mQƒõÉ~{EuiülM› #Ø­;¨dVmàOî·L¥è'] ì³&˜ùº­ùà´ŠÛ™¯رLn›•Ïf5󾯯¦V‡æ_¼šÅn“ÑàáðN|ô>|ÆøÿÄVï ‡öû8ñ}ï™ãÄ}WŽ|,wɬŠôUaþ60wîA¦ÛæßËÔ-8Ý÷w5ù+;°/¶!¸i?Û›ãc€wè½&m–à¶7wßœC=oÎé?*klæûœõ9¼B1(އïžrÁ&^j»®`‹rc¬\ÉâBèó×õ¹t?¤,.H%Xƒ›XK9‰·/½º®ã|½\R@1¯µ*•»6˜Ènú€àÄ*%x}õœ©ÂOäŸ\]ò ÐÿAÌçùóënr&%D»Kñã7/™‚@ûô2‡®™€¨TÏ5  láçPKýr‚ûwÜÂo_ª1Ý[‚¶7—{Æ«˜xGޤ}Y©Tµ±­_w^ɱ€mêgÝ^fös#9yZÅÛï2SMa=pGµÝäÇŸ.(,YR¸6{IáE¼›¤€T¬êtIÉcøƒßáŠïéC6;ú Z¥ˆŸ¢~ZåMˆžxûEmû$Ëó–¶ !í5|_y™ìâ¢Û–)`ht%:ÙjMªHü„,A,µæ¬À“súAcV0‡õg¾]›7Um3ºCø”ÆûVf%`ÌIjåÏBöeû½°e²%Y䓤*ƒÔ‹œ%õ膡 2 °¾}–Š(ß/µ\Xˆˆ¸ë¼°X¦…-Ô …ë?Ž#ªÐ¥aüÓ-u墖‰ó9Oܪo€XÖ9Jƒ€Ršl&ÈzÇÜY•—ÜóGÒB¿Jt±õ¨šäS!t(•žêåõ«*Ì·K™{kpg(–[‚Ê©ÔIæUت¬ ^Ññéå½T‡gÛÊK´ ïð=VÏdVi¢®x¼A€™Ò§`ë`U+¼¦màƒnD²§áïÂ4z­'YŽ™ÆîÂõ}ƺá—™mf·ƒúŒR+OYG'Ù>ÞÑ÷¸vž÷ÞXiÃéc®àÎäÞé”böaòãÛúø¾>~SŸ×Ç×õñj{U>pËjÒÍNùˆ2ö8ŽlŠG(à®…¦ î _Ú7Ëü] Xþ Tô7~-0C>7 öa‚S„¼ßýDWãÆ¼:ÍçNyu’3ܲVâ½.-Ò/þ…ŽTNìà‚ôÆ&¦æÇ«úø]}ü}}¼JL•Þ´º“£ŸëãýÏbðAJ—øÙx4ú8#??€0oãH˜ñȃh·Ý«³X ·Ã,5}â !b_£/_Ujm#¼Uô±^›Ïغ«šò”Œ¡2ºu ±×àR󣫨È$û$«Û'X°CÓfê¥äÿ™G§-qôéj2nVÊ{ÇóÓÑ\yÖåènuÞ»AÔÇï[¥§Ü`Ábî[¬§üb™”¶’îØ:ò;ò†Ì Ašmþ¸É…P‡BýÉú[H©l—‘Ö_Ý\fwy¿dWß !W?Ý> Š¥™hû ¿»8ÅÈÝN…‡ñ ¨sݹµÞ¥¹vYÍ·Ü<‹ÐDŠ·lLH“ \j›]”´Áê?c:?.I7™ÞY°qDûð~¬ö.uEÜ€çzç ‹‡„Ÿ™ÔƒÙeªOª2ïr'3~wõ)dCLm–æ=–¥{ßàL u¾åÙ„]·^;å'¢Ó">U_ƒ§Ý½È›5Íf.Éß8iØ&@P¸mûàQJ¶ ÕÂÁ£möÄdËÉüÌÛ]òeŸykÒ0±«¶ÖÞ¼µɲ¹)lI|ô>ªpzd¤IÚ¤rUäÜ@öò[_ˆWΘ#q],yÜ~Ò'3™£Í±ùæƒ*ô»í4 Nï²°ðCó/Åk'úþZ¼GC‚ç꺦?Á·Ûqþ‚ÅØ ÞŒF»LƒXÐË2ôzŽ×‚r:NŸ–A¡5°©Q9Új‚I‰¾05Œ¥nY»eëHæ2ˆ"z)£R²äÐÒkxS½³´ËQo¹Uâ‚—/ÛŒž >¼ý³pV&êü²Ì¦OäIfU±²úú¯¹ò­ÔÌçµÁÐÅyÎ~0ã[»+õB:7³¬H1ì˜C¥‚ZÄze—®ò =/¸jjöå¥&‡YÄ*¬v·±7âc1z’mœks2•7bÿݬÚû˜ vfT,­>šÂoÌÕñŠk€`¨MLάÚk%6à~å‰_v™G |$r0¦Û_BÏ ä¤J%'£Ç½0E¡OÙ‚ÈòÑÚý®ì …–…³  ,Š SÜ`6åÄMä J W›J¶×ÞÎK*HÚ z©}p¹7³¿ kú¢ƒÜñ¹i˜±0–kÔ>o¨Ö*t–™÷~4žò‡±Js U}ùz·WtÓ9 Lì|+lõïå"•ˆÆÒ'0D³ñ¡‹(c(@¦Ðq½²:ï7®ÏSæ Í?€'öE’ÔÊ9ôû²=Üo;Îlkžås³å’X·šVY‹uÖÊ ¬ó«! ŒrqMë "]êÄŸø£F•Î]1tàÔD† Je£˜ÔxÆñ”žŽ8/¿®y7 ™N¼}¢|DV"\*¯á%)Ò¿™ïÄŠ±É'űg'z–ìz³µ´µ©HU.d‹™íÞx]íÑy2'l2è䌓kݶ'ì¬ú+EU³ 8,9PWs›ü$GxÇÔ~–ô¥èN 2c¥ãëÌfúÜ!œªµ¤4ã.Ú—˜3«¥Œ\fbdÇ.3³RÎŒHÓÞŸ”ßoJæ6Ÿì}ü‰›ydÏ*­F }½iŒÖL|b!(\°wDúS¦üãsùâÛjƒùŽVáʯVüúå ¡}ø‹3‹ß¢L´|rÅ»ˆߪP_sÊ:ћǬXÐȘíwñ‡DÖŸâä.x–£ÓñÙ¸¢]ES6Ý«ù7B†f@û†'î¢n4j¿'ª+?NjÞLî^7ÒC£E ¾3̤ÃÊý}N¯!`9ø€1±Ø=0„xæN·G¹›,îˆ]vxå^qG´‘2¾ßÄ· ¶î.¥;áÓ‹Fßæš4ËI½ª#ÊšÇ8œXzÉñíTÿb©rL¥JFŽB‰¯í±2Úø¸ÛP ÂÝ&oÆiTáGf|€¿û²¯N»unŽF¥&ÇAïnà õ߆ÌvÑÈ9ìwÐðRþß«&8â3eÞ!Ä;mG:\Áva;É­CzÝPæ¡%fæ“7…§°Û¥Lî´µ;÷BÄrlRgÚÞ„R>Çç;R‡ñ™.oÇÕ3‚¢¶Üã&bR"„FÞ¨L ÊÔo·jâë]Vù>&RÛ.3Ùš˜fQmœd „PW}ÌÏ·žr|½iþî4t­á¬9s¥9³ÃÉî$&>¸Jñöç:®8˜CJš¼-·¹ „­ÞÍCßv×[['øL®hœÈ2éd8´_ëéÐù´»£Ç `ê<Ðûœ§n†ÛÜŠ ^vs&z„VɆö—.Õ{Çò‰Ø³SsÒžÏpb‡Õ¿ExwŸŠý™9DŠÀ£Ç9ZQÍÝóƒ¥ñÞ¾†I•‡8LÍžÍTµc­†iúÎ1˜Íç”VPÜýÎ}¬ÃâÚƒ>¾Í'^ë%ª8†)1›Mؾþgw¤øîð5CŸøïãér:ñ—áÝÐDp«œPR¹™n–oY­ÁS ±Gˆ 拞ýý€ ›hÓme² Éõñ¡Lœ³Ã(’ë"“É$7(.iú³ªR­¦]‹Æäøi¨÷Óa”v¼hKûÞ3ØÆ‘¤RêðmGJ>$µÐvGÓâ(ÁÅÎ|å¶E,n9šžÝ<94RÅý˜; q—¿js^ÑDS{ˆÖ žêj]§u¬Ú†ÎjÞÎO¤. ïBØt‘¹åô‰Wm!X,•‡h ðŽÔàbfÒ’SO4îåÌÿ?ʆyc¥åOµÅ‘Kþ,®ôŸÇš$ .gäkõ¶Qò6iÅs*ÛðäM©Í-”Pc¯¥Žç[6Rê@€”'áûýªB‡„‰×ËöxÂaOwºë@ßà}yQï©Þ—?néðÛ£ ݡӢŒ÷ ´! íîìL¹“ÛFeÆMè›»¶ ²˜ogŒAÅćê´ó4¤0ïÈÑ`v>ظúÕH÷A7´¹‡ ¤ÉÍïáùÀMb²³_6ˆBoÓªf:8ˆ‡ °'gÕ>æõ@grçi^\wà ýùŸM[N¢€µ)’Ôß}[î’ß9®» ŠúkUqíüÄM9zç £Ý.@Oz‰Í€ûŠÉðüñC‹pì¸Íº«êG½crªmqôðeŽ’G·Ì¼Ø¨ÞŽ¡Ð®«’·±?™²"”Ä@°7ž6Éï2 Òﵓ§Çíüü­Ü³›ØîÎ+lÇÆMŽÉ`Áæ… ·ë~Ú’Cò”û>Í›ã)Rø×ÜIˆýUÏ';mX¶‹Gâ+b@sp®+_Ö §,+C^™žä¦\áë¬ËÂ{_·!UkÜr¬ í¬zÖ³ØÇÖp7i鵌ÔP4~Yõ§ópR«I§ùF´ÀÇ&ÿ§ã «»‹k”Ù݆Kÿ§}#=óòåYš˜UÖºh¶ÜÝ^Ê7û6…IÎϺ¸£?gxMq¢»âÌøaîqq=ØÞÂnï;r&üæIè-‚g÷¥‘¶ôP4t¼˜ M÷:nß>Ô"´“ç‚Íøœ|Ö<2PòLTtÆ?{yžomUh¤mßæ¦æxæö#ÜFÜ}zíâ4¬ÞDb¼©©ðR¨3õy;åþ‚ùaendstream endobj 117 0 obj 8118 endobj 121 0 obj <> stream xœå]ËoGr¿3¹äb¹äû‚ål¿I.›M6ïÀk+ Ö,’µ¦HZeËÈŸzt÷TÏôŸ()Nbìa? {ª««ëñ«êêñwÇjÒÇ ÿWþÿôÕÑ/¿ŒÇ/nèé±>þ—öëÛ£ïŽtù‡*£ÿö ¼àüqžr0Á?y~¤Ëø”¦d³>Ž>M:Ùã'¯Ž¾Þýñ^MÎZmãïŸü3¼jT÷*þQexýÉ ö8Ø[ëÝî~Z¥tv;=?Uí'SÓAR3nJF7j…ƒÖJóà`äà8™:𪠔Miw…óê ÙíOÔd”ÑQïÎá±NƇ¸ûlÁƒ]Êx=…l]}Mev¿ØŸXŸ'­óî50Y{IëÇZ"¬kë ŒEÚ—woçÇ5¿{C£MÌÊtÏ™ÏD  ïŸÞ›\_ôΛÝ7<¥µ µäˆ“o:®vLÝA›÷©×®g`ËM<>eÉAGÞ³÷Ò+¡Az¨bf¤bh›¾`sÓ¶0e°TK¡\˜µ›²s»—H4NH³<„¥î% )úÝ«=þtθ E”¿jÝ“>ü Ø=݉ý–d˜xˆawʺ]·–w´+)x]†&ÓóñKñû™Tø¢½`šNç¡+vüB¡äÓ¬üãŸO÷ûçÇînœU~¡³³-J›y9Ó`îlÌfw‰#´2Ù°ýÀÆ­;›¹6#'zƒÃíu/±köÊ=Ô,ƒö }Õ¤[ž$*'åu½¦@Í7\dš½›/ƒajŸÆŸ¨6Ú²«¬·‹½ i,0rºz2–Xð9tDX¥ƒq¶Œ6ʃþ°ÆjÇRÂÙ}·¬ç<_†¡ÅƒÄœ: á¶çré$>3e…F_W=èU¿. wáÄ$ Ñ΃WÒÀƒáÍ0Kן`íq÷=>v"Œ‘†(ï‚}­2däº!f¼˜­]D±ÏçKB=Y¯›ç¸†/ÇÉF »‘ =¼šõc,…ç¢0£Ô ©n’WdäoaiŸI—0r@*犙²`–K}±uù¢4Ü[~QÅÎÔ¶f_ÇÔlºmœÐ0ìÕÆaÏèG„½qTFÀ §–N •Ù‡¥ºwŽÃØJ½±$Jº©‘âz­94@†·K&³¯¶M3m:æŠ}€ÈÂ]4µÜÀk¿(z¤œÔ#¡t!Ê œ·· K(P{cD±–·ó4÷uòô n\¬K˜ý·óÏN0ð Žo°a1èªLc°mÞ©<3š¸ïP3=4MÚ+,öÄCd˜’N̽C#×!€£í~ë=Ä ›èvÿˆtÁ§ä¨Éà9Z¯ ( ˆô÷¿àÒî×¼ô ™™$Ô rù n9í~ƒÚá¡  mÄõ+,2qû“QÊ!™RT¸r'Ë%‚I± ÷å/%tˆ|¢H%ç:[ìÒ›—%di@î±jH¡æsÆ• Ìîékö[ ´>¥ùžY0)ŽwC²~@5Cõ!ÀC‚´ÑÀ<[²°Þ³«"í°Þ€å°C/¿‡£…S2äz‚·À®E§ä@Õ£iOᔜø¢‘@IvJÿþ5áP.âì˜á–9tKYù×^¸zÏ[>ð¯Qð`]Å¿šhÂÁþÕB ßð¯ @ÂÇö¯AO°.²ìbúŸÖ¿,CÚ•…¹—yì¿Âÿ§õ¯0I0ùôé\cÙ*Š þÅ*)åËÒËxðŸ³<¢-¹-E<;!½â½Ò`÷¹^YÝ*å(•v³þss>eÙ1¯ƒ^Ù”íùºRŽS@×ä¾”³Ê9‡A€J""Sýl¿_!å‘ëGÍ•å˜æùÍ}žŸsçu9Xæ TÑ™µx„ïO Ì2.B¢ÅóI¬öySдv0ÃpØ]žà»HëBEÛÐÒlPˆ¿ÛCV“Åê3d1G×gé1LŽ!}É:´-x&¸`iZg©°k—¼Ñ°vMÞüoh>Ń¢hí‾24Êà"Ãçæà‚Ĩ[d)NjÈ÷ڃDŽI0çÅj)‰TтƶBÈC`}xxj¢=:) aŸ‹6ø@Ç8p_A-x¡L á.gÁ—§T)ÙÔM#¥*ÅT×±óé뙕¢Îª¨³ IåTkŪ˜Qü”“ÈÉi½&Ä’ÁÃOZ¡¼·Yà4ÐþTêxãc!æ9‘·IÙº¶(€9À¢X^ù<3é•…"Mãeg¶ó Ùà–ç…ÂcHqù€š~æÜ™í¹0sÉ‹´a9†(ˆƒkÛêÎëîÍ+Ü U^j“´¨‚ÆÒ„ë²µ¤’eg-W.h½¹3(+{&íº ¨ì÷bºjcÏ Ý…ÕEŸénYu?ßl‘` A…)€k+žÚŽ^z„‚2°—¬,7aÍ#êM(ÔãBZ‹Bi^TÄJFÑBgƒ©$¢1nàˆi§îš¾ßkƒ¨V¡3 ÁÇ9/Oèofw}½_D‘âäoéužÍåcéiäó7¤w¾ `T$¿Ô×*n«*B'Kv.WÙÏvR„ŒazàšV&3kÔ p€üD¬áƒ"ßÚ‹Òã“S!ÚÕ˜‘ï[ Nɘ~Äs¢bwYX!£¢<ÿžE ØÐ‹ c^»Jf˜+zº“l^ÇÁN‰s,É^nt\z4¢æY%V\JÞ1gÜB”DA¥êž˜ Aø~ó–S/‹Åà—-šd­Ö+ç•Á~C®+ï.Yfd"µ¼¬D¯_Íöñøb„D R•¯fþÏ"¸`º8ƒn¶_ÁŒgÑ6ß mLšçÓýÌ8¸6€U˜¢INä䜂:ÇÑ"´Þú¤êþPmlèdÇTuHÞ ­•pu»—•V± ³…”±+©(¬$÷BÄß…%â4.oÛ¥±Ù[± Çú‘ú8¯{k›šÒfgi…©‹Î˜¼H&h*„tª‰ ¢{±eá"i ÊŽ|1Rü•ó›îd/q¿¢J#"J׎å„Ggí°,Ö-A4ä^ÊäMR7Àn zÆ$½7˜fmWäÞϪڅ¥Q×Ç_î—ÛI)ä<î@ž_ N,æ÷=¯›Èa/8Ö©XgJ#-‘”K#-lF¶J#aÌ*ŠÖr yái Èž1‘è:Û½.¤Aß¿%]±>vÔ[MÎE*Ì–Jž6þ¶ˆ)Úµë6yÏ"Ç:~ü苄ѹ}?ƒÎ¤RbÑÙܯ*ï”CXì`up]B.»%’’y‘|]”…‚Ã>aºn†³dk¹sü^ÄÈÇJåÒú„ž­4ôˆ*%"ò…Þäù£‡¸gq®@,ÕZ ’«åÎU|'<Î<öœ `Ýì£Å3 —èøy;^57ÑF`O² q»Î¶xô“¶6Þ«†­rr9(áÑ8ÁŠ€žbxÀ²J jeݹ¯5hüJgš×uûÁíö´åàì†ùo–8e¤Jyß³ÙU˜ÈŽ«Xb »jóܳfI¿(«¦8‡ˆX$~Ò6h¥1óQD]iŸ°•Çq˼·LPFFù O`ÉžÚN°@nB0=[DŸt ¹£³•ì² åZ@$SòGÞ¾´öôúc–„æ’¥FЛwlÈÏÃJ–ŒÕËxÅ÷\4#Å ´ï‡€á;?¯ŒºdÄ”¶!mÿj©å-{D¾mgî’KÓg—7ãÒ}fê)D¶1›±âʤ¬ýø5pQ  V¨ä«So6íÕ©HØÛ…Z¥y+ üš_U9>¸Ê»OëÍ… 1v¾eºÁ…û¥CI TæøE¼²© 8ðÓ…o¾Ñt»§Žq¤`±ý‡® ¨äßg…ŠÛN1Kt\—bï…ã•tIYH}]!u2Ù+RGe–åÚUͰ¡Éˆå$½D“Øû’ÂÒÛ‹b´­rôU!j3Rªp}@"ß['fâ`[ž-¾üÅ""â|ÚF¥Èžy¿¨´r +? 3RP"3x·û>Ž6yšh|O¥Vòp\#Ö–å@B@‚*Ù*@]nä'|×vQÆ–såȈ‚7K\Á ¨IȰ2)cÚ:ø¸)$¬^%E4÷RÆ&vÎÕ´Ó¡+äô¹ÓK -ÊEmÔˆÄÞ³dö‰ågM/¶*4ÓlŒ£ÛNxÇIåzChë–“ù”·œ¾ N4À:»ëËù)µ¹¼&­t¤fmÀ4 ëàl7÷O—%eó¥)ö½1ÛaKƒÎ“R1ýŒ¯JaKCß$®IÕ'oi°Iã™ê#z,e{VMˆ%ÁWO>Á›°CÓ ˆöä’Í(¢ ˜îzÀÚž|6?÷MöV}“~ÊïÑ ftÌí^Êð $²ìþÎ{ê7›ä›²ùX~M¥ÞíµI60Õû·æ ‹œ_àã¾ý¯¶Ù¯‘¯?9@“²ásÇê½7ƹÓéZ0sÅ«ðtH8¿¹jàâ»á²‡qÐÍxÅMm¸øî­Õfd?yìû‡-ŽÁã"ô‡|0…í|wé5æ;-oö³asptÇ6b"ëÉŠÀ®´iOcEqÂ{H@¼jù~ÐÝÐ^>‰m¹„—ÐïI–¶µþOµ.¾bÝ·"¯šsÛ=wêL›¾ÒBn¼O‘òâµú¥¢ö!‰þ‚Îúâ;uhJã‘,o]ð&#ÿuÝi—û{jÔÏX%PûoĈ^ÐÜšjõHºÊ“XW»=¿iÇâjLᚢhyŸ/¶À¦Û¦xUi¢•·¿Y»>º¬#ɉ‹€Ë6èe+&ìC(˜&ýÿ¾0ûdæ õÁ ‡÷­Ò#ÐÉ› òAí[+ÕµŠ~ðá·8Ö¶\SŠŸâø¸Ú;±¹’U-ÃZÛÅ|ñš¢xNsi‰ï#ä¾[¼}¤aÆ’°üØÌú«TË>åÕÇÁz±`2ºµ¯Ýœ£À¹¥k =»?Ý?ùÃJt°YÞÌ]+ñ­jÈ¢&¸û3²üÒK0“ÎñC.âŠ{E{éñ*¶–Ôæý•êsv>†0R*ìñ†$õ”*!ŸF©êõѬ·”ÊÇ«TBΟcÉ _s»¿Ù÷Ñ¡k4‹ù{âØu²ïláìuôxMráíf}÷V+lÜ}÷õÉãÃD#ˆ¢ú}÷oh0À <+p~Â#pÙDÿbþ}Ù “Úâqt(õ¿qC½s"sì‹F÷gw·"j¾áñÊÐ]ç°|[€·È?ç)AêØÇ…‡Î>Irwe®È¾Ð½»¹Œ¿ãYL¿Èª ‡,Ø/×Mþfþ-¯ ˆ+ gUÂ1.ÅîèJ·¼]°ÁÇù/JÞt¢)²›ŸÒ„·ü4â’¤Íl„¹)Í^xN+‡\Vþª¼Êzy­œïÌñ8ß/¿’ d'†jx‚UûËc±’IˆâÁIsW y$@wxÙ{¤ÞN^´Xܸ~Æ2Á&ºsy[ãÕìÏÛå“(¼2÷¿ÕÒÃ.hð¥Z976X=h Üê-ýQL×ÙF/βmâ0¤÷=Å[| Ù_ÒÀí4ä¡‹ô^Œ£þ>:ÿ9¤id–5n|ì ñûi.càì¿UGòȪjßDÆÂKÛ71 ºbyð€”c^Öü+õ9Rxƒ¾k.åãùÄe}£hÒ™ê5 ŠGŽ„„¬ûãõ÷¿†A*cî9è ø\:€ÛÁ9±0›L†/ó´MÌÜÿz€5Е®Ï91öÚŽ,r¬C#Z¥5Z½Õ.ÏE¶ôGöCû7Îóâ·»%» §`GŒ[œ^þdHJ'·s€ïúÿz³Ás0eør*ö²fÝ>öÇÈÜÐýÂpc«ŸŠ{ â"²Ie|ÎxVYZöpó¯á·Xne^ÄØêX¿·O€×µí;jOÇìÚaÝ6{ß·K3çîIöLóó­#3 ©êgföÓ~0C&@pðn&ÁçdÔ.ò;àsŒý|§œñÑ¡™<(»ž_Ýü`ú¹ŸŽÁŸ‘£žŽÕ'Ow¹ÄùÕi»\í×bä„•Þ‰§—<=ö@?çŒRŸèœÄ;-#i7¬ÏÎEn!¨ ÕBÊ3§ÃZ5d°À£ýy«5^ß1âsEõÁ8‹€_Ð{ÌQ:õøÀ2R¹–A*ÍÕヿ=ü~<@ÛøFºx¼úžw¤ø×ï^ÄÕ§{ùô(”ÿPBùNÀ\3ïý¶ÇêËÞ¯J½’Am›‘ç¼ÊÊhõIåãÞø·xÿ’ï»ÿc{ó®ìMJ?ñÞÌÿЇ·æqÕøçÙ†ô\)àÿ¢½ù±t/$ÿ‰öfÕ^²±7¢Ic˜R&¼@cŽO$kæÿºKEïâÂUs«¿=úoÐ;÷Hendstream endobj 122 0 obj 6139 endobj 126 0 obj <> stream xœÍ=Ûr%·qò çñ0%Žq¿È.WÙŠl+‰"9¢7R*ÅÕRܵ¸äz/’Ö_Ÿ¾˜ÆÌàð\U\zЋK£Ñ÷nàüm§&½Sø_ùÿw/O~õ_qwõæ„Zwz÷ïí뇓¿èò‡*½w¿?‡Îïò”ƒ nwþý‰.ýSš’Íz}št²»ó—'ßìÿùTMÎZmãÿœÿ 5ªŠÿ¨2 ?v²{zþW袃ìâ&ç½JÜå›ý'8ŸÓZiž/Ù9N¦v|{z¦&cBˆqÿe¢Þ¿„O£}pyyzfTòþ–:+•]Ø¿Ææ8)ø¼„Î:âþ>­v)GÙúúÔëÉDöWsã{ÚrtÆ3ˆ°ØgV€ñÌè)§¨wg:MÞ¥ÄàþÇ;k ÁÀX›ê²&å´ÿêÔDèãþÚ”ËÆzÀâ~°;FÎ6ŒÍ.9m÷߉鮹=šìhûÑNÚBŠJʇàðí•õNwí=T&M6Áú¼¦V1ìßá§fSãÁ¥Øy3Ïxm›ÒÆÆ]NûânÒþÉi‚®Ùvÿ^6®lHèíº.?ó"9èý«Ó3À^ÔÊñþ @oð;k8?[Qà/¹+‰IFvÑxezë8ªŠ_›»u°·ã‘m„)3-0ù†ç:ìÿpŠTfrr•øåÌïÖå„TØ”©«™èR¥•hŒc@UJ6 ¥}¥ìÛ÷ÓépP´`n¯¸|¢ :^c÷Ïç©·°=D3¢ëÌ™ u.W™ÑÎ]’;³É{ ¤ŠMÉKrÕÁ$xv #9òvÉÌAL1*ürBÉî‚ßä„¢·då×¼<¢Hôx>ÏÑoaa÷öpƩԱµà–ë2µëEÓLw’g´š¤Ü©û†#®Ý¯`½Ÿw,‡öG9’åG® Äþ³™)¤¥HâI°–IHo~‹Ŷž7Ô,–#€•À#·1#¦m'ç‚«BÌ«PÁ`nz^9¡¬Dmicûo÷s—oOçu>FvR€‚€¸½O÷¿ Î^wçoÑ}¥3˜µ yå&x>^RÌG\^Oƒ¸ÜÛÂåeúˆÊ^rŽü–œ[¤·Î$ñÎL tÂP9 5<Ÿó-) œ2ìB09L†j)õ\Ë­¥¯\•©&mÈTšLІ"S€G>âA ƒZž<¨ÏóYÌ[’ ³îĆý÷t¨°£Ýƒo+§Kœ.AÿØI€Š|c'uëBq"H(ô§-ð{cƒúz¥ˆ bïŒl+{#66eÙl ]Ì‚˜“Sô"³ô^ðq㑊9°iÿ„ã¢`¯ì?Ãùê_É?ºy"†œüEWqBì»à1 žZ›+þeŽ,d½ë-ãñé¦REF@Ù8Ôî(BÇ•M¥_ò®Ùf§Á°öžŒlÊÑ»¸;ÿ“óùfïÈÆL $¥|ûÓ3­Á°„+ å ]Á"¨ë‰ðÀ¾ÀVàtâþSr!y#u6ùý9u·!{»ÿ»;¯ùzèƒõ®>Ì0Os‰yöÁ~Ä-«P]Œ7 ÞWÌrÏbs×ÂìÙ7ò!d'±30· ôtrΆ›p£BRÊA“ ˆbŸL+`n¢ l60¼HÖD³<ÄI{oP0â0èãùêé3Âþ«wòž^ÓÎ1±¢ðÙN4$:2ô1Žœ<›ÊÄh@¶Ñ¡)&”0¢PGêq¨-ˆ2^ßÎ;‚× 'úšpÊ0©’o-‡Nù°§,ü£Ï÷ö´¿)"P‰ŠI%88O‹õ&‘ú1À8jûfI€ €\i¤S X“Á(Š­åÐ^UŠ5ˆ3ô{™×k5H¡œeã 6&CÚ¶9Ùbrà«h•¾wÐà':S'ÜdpHÑË‚Œ+ˆHÀ&(–[-˜ðŽLpÀ§õDšX®NÐ0Qe-…¨‹šé¨Ñ+ 3XE8€/X…2®­Aj1t:cÄâ#Ò7AS»‚NCÃÉç)’Jn£~¤O0áºÖ›y‚·¼¥”|ïmÙ†=fpCcD¿º_>wÈ«rü”K„2‰œœ±a;Wó&ß/è¡ç²³Â7„r ºáÑÆ½øK0• [Rq¹ˆ „W°†„€­ÉÊñÄ^ÞL)·–‡°—ŽM8ØB†Ù릭-¡#Ø‘¤è ”K —@y :Ó>(8ïLÔÿÏ3 eísIjzÆßF3S—Ç£XøF2c#>B3Ø™9;g—ïÏ™èNX2 ïÏÁHÉu/K”Ó†c@¢D¬w‡"øœC jðg ÉŠDÊ~ÞÅÙ‚½ýrVý‹H/ΡÀ†ºK$¥°ŠHˆæ"­b°x- ð‰¼) \È )(ÞŠÜ%FUBË)v¡rs4ý7¿ápú(þ~…éc¡ð×ð¡¦ú ð…I>-ðýö·[áþ>fb T5`bÐk"è9í3) **ȃ< 0õ²AMDªüã1‰DšÈÔcbÓyK+fÛ‘± ÝŽ©™%cº¯!pÑ1vŸÉ u5#‘M”û–SHþ•81'W|Ã@éºfÁ••mU/ƒ¾çЩ,c•õ¶n¸ ¸mXÎý”ðLŸ.ãÒeÉå‚÷G Þ²MEæ¹ö¼)Ý\û‚²˜ÓfÇ© žB^$q>/¶?¸‘_js Z˜ÏÊà?ïÀ¼]•Q•*p럽½nù¦G*w35…êíäÀÕq ŸCÊ2,ôéië> iË¡HÀÈ" LÝ©RçA|ù’;xßOýtîq8æM±9²gÑä`©Î¡„õlÎ…b؇”e™†r¢G†—ÊÖ-%°¶âH͘9³Šûp‡+œ,÷uA¢.>Åøò‹(õ¦‡Y/‰.Qa®.ã§9‚í@²‡Ê}Îqlt—÷‘¡àOï´råŸËj XlË6Á£»¨µ@g`B„£)¥JN üv”–@¿š[ßÍëÍ(ç$’Ž ø–Á¬ 2¶OÝl¤‹°‹äÊ+ÑEòY˜>³}÷{nNÚt½9Xi@àm¤rä¸6¯ßÀ%±ê3îkÔfBZ'¦WéÔ î£`ò%OŽif³Aüøû:ð©ûÆ…|‘¡EZZ2Œ” ÓÜOXƒ„½È|½ä}^½ÈŒNsfÖL¸¿( °¦2j Ü:pLÅç÷YÇ{’Ñè/ ¸ºˆs^ðË*CJѰÓ×ÞŸô¸'\ª\"ÛǤwg·-Lð’Ìi6¸Ô”ø›=ÉqY°L¢¸,Ú>Ò×`Bë5èÕˆúYÇ ‡ÚZîpu·T4Ȉ þÌ —€ì *GÀsqì@\–(¯]ð)° À‚š{cRþ¢#GúHzÓFáhTs?Dªhd ~ÃŒzG*,Z€:c¯G*z”ô‘ÙÞºóՀøùHÎd&Í4 dñºì`âZ,SÕ‹„šñ`/µö¦&–íOYKz6—q—Vn§Ïý+ɧ‡vè»b 'LÄoÃ8AXʧ2/¹êøé€f×%nT×$vÛea‹%—<0þ…ÄzCöéé™wSö@÷$”¼#8 )ÌQô«PÕŒˆ¤ò€[K‰c¨/¤Õp*ø°ÊÆ!×;sMÐÌ@ã&H—ƹèÊ =)´ùvÞ‡™.0r_n-ðÒJ_œóFlüÁŽ`·èÐ!BnAÖ Þ‚·Õ1• ƒaÆàAm,ÔFŽAÍ´Y&Ùi:^F…Çs(M(¥¢ÇÂÒ-†X–Y,<—2—Àè×6äi“ÊÀ¨¿Ÿv*‹ZƒÖ:ÜéÚJQ#ô•dázFÀ¡Çg ;•{j õÎ¥Î[£ê¦b¯b×6YW„‚‚•)Ę¢K]ñm?ÚfÂK¶ŠTîJg%ú®›®‹¥6T¯ô hn‘‘F‘*i vsólÉ&Íj›M=!~7ú–4$Û¡—j]ÚJ. ¸Å‚/‰ ÒéIƒÁLqíÏ#ô1«“$ ‡*HX2LÇ~Üì·iiÔSŽ=ÊÒAa^H0^5¢us%ÿµ j guÀ>–µ‚_w”}—N“,Ã6ð ·O}ßžV÷b| kG,Êà(æá fçïiî¿énWÏùLS4î—ó¶˜:˜ãž½íÚòpof:nºõ¼¶J—êí¼«v¸Í:8K‰òŠÏ¯Ð×VXéA9‰V½Žôä1ë)\ð2ΕëÌÊ—*ª2]çÇ H¶¼÷ò!¤–Ž¢O*Ø#„M**ˆ’Í+7æN5™*Í–¦.Î ŒÅeªvigЄXZ»q/ã <–ÑÃE § ª39n ¸‹JHÈÞôí_t«Ô9¼ùLJ•¹èVƒÓ鎲Åyi—·›ñÀØ…JózöbºÂAw[؉ K—ˆ@ŽwŸ8 »¦P/\4ßüy¯&ëí¡m |Ãr/ØUl² Áµ‰» L‹„“4"6L€b\ „Þ¢év¼JÁý‰NÏÞŠ¥å¢Óƒ+ˆÿ„¢óOÌ ì§Èà$qŽ6ΨXÛI¦>²öœiRÇM‡ùê$Špîu ¨Maú È]Yý}ÑI«$ÿpÑÉÄ^þÌÿjÓ<8Tÿ¢Œ& -J17¸„5¨MåX‘å ›–rrðÍLx`99ˆd99äK¦·Úïl_´æjŒ*J4UÓ­–£ŒGQ \„T+£oç6iúì´xHf‚¿ö[µÃ°äIÒØ" ab˜Ì"‚sÃÍXp‰úLÌÈ/’«F_µ_ºN8ŸOé!†0>üàù$gW¢I/¬†‡]îØÛ“ÃÂw؇‚k-÷²À  Hp®X~ÿ< Ìa÷‚C A-|2ÆaܾF"¢³˜3FQéøBÒKËNUÙÿݹåm‘žóÇ=m–f,ž³9p·¤@÷H&*;–Û6ëÒAäþ ™¤ ¬$žÚ×§²Ò{ 3g SåÙ6~´ˆ'¬: ©Þج]qSš‡÷1/¹^¿H€n\Jœ<œÐE®:Àç/ÀçÁcvhçD.6àÒÀ^[Ëø<`Ú€fÀû’ÏÛ@Q ˆŠwh')ÍFŒÂ {»ÃpEŽ‘)oÕd¶e÷8°šýî¬!¯M¢Z‘κv— &Ë ³ ú ¶ÁG‚=úÑÍóšÖU„ŽÞQXç}¥¨,™œ%}DÎrøáÝ?Äf¸å¬êÌÔº­Aµ(}Xlƒ°¨ùT_H«–önñbÀFÀ¿È‡zàtCýº®²WÒzûjèàeˆQAÊ ¯â{CåNS—Óšô}—g½b·®7£Ò¢þ„¼e’Z5™–ñ`µ˜7ÙN\êôùcÃä›Ã0E±½Á¥§ž Éb¹ŽM ĵӳ LΩ&ƒ8(*ßZ¸äU PÊ ²`Ã(>ˆ•zý=ãÀ….Ñ[è[»|Ÿñ¡’>ÈZ¹Ï‘»‘p‹ÚLÑ…yºà¿Wø÷LúG ŒÓ—Ç%ýašv¼YÅÿÁlñ–î=âgÒq‹áæc:K`U‰qÃáŽPbŽr"Â%}‘gZåiš¯äeí}¬ßb‘s¿ç¹Ã°àªúlUq¶¡;„T˳;tÈË’Þr:½I_Kg`•_·>†xã¢üApýû £< >¸‚S€ö;áhßÌ`ÊÞ«,ÍF PTÖ.­Xß$K?Jƒ ’Ú$åN8£©÷£ïÌÔk°AÛdòD×Ò´~mx@ž^{|+'¬¦[ÀTØ}³Šùî_žCÃÄ¾Í åm=( wTiçl H}ðν^eè)ƒ‡Ç¬6 HÁrF?.–Ns˜#4ÛíÜWú+rSÂ,ý‚ˆ1¢dØÊ#㢢ð 7k°6je©KÁ]X½'«Ý€ÌË…%')Í…yß‚¼—¤Žñˆî37¾œ_µÆë¹qþ¿sã­ñýÜøÕVãÛÖø|n|Ñ/æÆ©5~77~W7ïÇX¬]ÕËpy«…¨ýëmuð”Ѻ Uä¸Ö}‘ÐmCÑzŒÎÓM>YEüŸÌån£ò¥Ú{˜°UǾŸ×iý•ÖÊ×¥ …fß‚¬,mVÅOÄ8LÒÉfPTŸ2Hx­Êˆù¤ûªfËÔ—Õó"ôÍ‹³b ìÒþˆ·ÓFº{X|Ϙ´KΆ֠WOÁlš Ï*Ü ¢96Ü?Ààõç××ð‘ñô`'M5=ßö‹˜ÓˆÜ‘o=!:LÜŽ¢Ý#ká@¹±ÆxWèT¸Lt|ÉÞœ†)±Ù)/* ©Ñ#M…QQÝq·"òåâæíŽbqåaÛé^ß¾ ùÆá·vfuÇLx£~P~¿®~¥.W¥Äcu;Í `4cÓßÍØY¾”Š16jN·–ÄØ@M g˜“åÎÂé]ï4.b‹;7ü²C3Øp6ÕY‚0š2«o÷€™Âh±Czti"8]®ýÚ€r’n%W%O7GMÒÁñ›à5x[n9—Î?±†eZ|嬛ÙÚu`pæò€Mò%Ô€rEµõZ¹_”ŽJGfc‚Û÷3‹ÞHºšÍ BüÁUt+|§š÷Æn™÷‡ž.\æ¥H»"clVÖÜŸŒi¾°ʬ‚ܺGF;8p¬µKñSHSë¥á¬62£‹J7Š«ê£²Ç‡=îƒO¯µsX•³H M°ý€«#ŒqïY˜¤Ã‹K€¼éo™¸&øÜ›¸d0®l\ú\¹ôy—•û—ÖøfËv½™¯Zãç[¦¯€ïõ–é;÷¼Ýê)V¿¿‘¬]˜æ§"ïYëXÂÑÎÑ[5 ;û†3¨˜$tçÂpÆé±ª÷/Â.ÝÞ¢׬ÉD8‚:ye¸¶î@8¢+6Þ¾ºh¨b\:«ª!PÍ‹-Ò •·Ún‹eb|¾²ðßiGÖÛ ´vX…ŒÈ,#Ù±KÓ‰°{Àù¶•Ë+܃êñ6³Wf‡1ì^\m/ßíl¯#|ª7R‰€Ï¦ýyÈwI;?å}ê^Ftøô~† °:•=Ç68¨ ú¶SÜáÕ½`'ä5lý І˜Ì§ þ+k9o](¯ÿY§ìþŸH¡këÊËMÁ¤TÒ… byv§4ßГýÖÆ}yJßÜùŽETŠXüÅ=Ÿtâìëb¸+­ÎA¹ú!8®GãÆ¼M®HÆ09ähs9erÒr\zNñt†,Oš8ùQ‰à|Íó¥B6¶aÊEà_ò»vôbO y5²!C.›/(xêJ.15*d[ì ´–ãÉ ²À5ølþ|"zŸ]Ái0ørÒ-Y”ìO‰ÏÛd0*ö¶‹kO*;Òà¿bÚÃX釃˜pQŸºB’¢ð¡ò{øög:ká PžUà<åsÔ‰ãÉf.Ë>@¦}ûZ€v{±:wƒÛ߈>WLXp„%IàkÅÛõÆÕ1ì]^kâ­”ðæy²—\ø"`™‹¨ÉGW#D€¥\£·(‘Ì÷ìLäw °9mOU$‹™€HéM58ÛXß)舫Œ•K•ª5*Ÿ•. ä?æ$TŽLTm$%ëX×ÑàsÑã’{`fæ 6Ö;h<ã¾KÁM©°»ø·àÐãeDÁ’bwox2—‚döÚŠf¼d7ÁœÝÒ¼}od‡‹HÈ(“V}xþmí¼wJ)ž…¸ªn¬8¥œ¦ÚÒóSº (HeÓà± É“Jß4ÖxËC1"·’C¸.8!×3U_3 ¹Ä§+Ý¿aþCÑâÚFRÜ ÆRà…œ¹}ŠÖmN¼Q~kÂÛ°ApM^"ÁQ’zn–L%æc”)P°¼ U¦ñƒ7^K0nëÖçðËêCiÂìW°ÄìgÊ5B¸ã"†ÆgÈ.·’/Tߨ³h1®«®)Sý@¶ºCÛ‡Øç²w«ÍãØÎá/º„Ž\IUá"fµ&ãë¡À©tlõ¶"`MψÞìéUzÉ1ósÄEgJ:¹Té?…M<ßTP–JψÔÝuòB˜ò¼ˆB5ùqë@¯%Eü-%]ã“ÍÓ&ÆA„€Nï=V# j¬ÚJ®F}Ëö'¢ÿùŒ˜¹8ÀcQÜŸ€Dbu@Ð`åäÖrðÑíÎ>låŸãÁ'Ö^Œ®…§<Ð#vëx¼Ê#Ñã'3v>é~“ZYÕã)|:ÛŠÍ0çÀ5|ÄfapÙ|·Y©èÙ°ôQàÜÐÝç,ÁÀ_.²ú1`XØãü¾¶ËÊDõÉXéa$Ämu8b ¼GÜáD|&YûŦ8•2¦Hx‰JšBvåï_·Ñœêö˜mf ïkæäãµ€ÕH’Õ¸áœð©ÀøÈju¯Óº×Æhr¯ò¸…þ»ÐKB {Ði0Æ7©- uø+ ö:<ÓC:ð|/„U é5b%ükÿÉáâEAÌt2-uÖT n±3½ç -øX¡sk™·¼®'çBrRßHX¥N¾.ù%Où¦ÀÒJ#"º½›Î®g¨Ð)–bgDÞr+¾fþH~Ä$mÄGU¥[øŒ§·ä"ŸL‡bÞaéèèa9a,Ê?κ‹4±éè;Cêš1›¬QœEÊvALBjÊÞèÚ„EZrù·ÜªÈÀ¯…ÖpèÂ1 ,%3’µÉ0‡m¶­%Þ+¾G›evèiµ°-ÿfÏÐu~†€ˆWáÇM·zÔ›x[þζg³$€Š§µª¢îWÏY)˸F‰µåN–$Ý–$.MžBM‰‡(%N¿b¦2–Ié¡‘ª™<,à,r:ßcà°‚³ôÒ˯¹(Óƒ,ÏÙwßãF:ht½V¾¿;õø'Úu“”÷²]°¾ö¶¾ÛÅÍéf¸DÓh“lŸ­Óû¯—gÈb«¹¯ˆÈÞf6p©Ì‚mV÷¬¶£Ñ˜~Dt‚  _røtYky€âŽävÀ°‚Uf\Ààñ®ü2ªràŒtÒM4@0õŬ+ö}ŒÞ\1¶S8kœöäÀ ·à*:MøCH©y³i#:^ÊÙê(ÚQöBÐësZš|½J\åŽÇû²g&O)U©Oç@¾Ÿ¿Û‘ÿùäÿ{¶endstream endobj 127 0 obj 7486 endobj 131 0 obj <> stream xœí=ÛndÇqüÂ<Ã`ç¤ï!Ž“Øbgá—8 Ií æ’«¥´öþ}ªªoÕçÆ3Ce„ö°§OuuuÝ«úèûäNàùß«ÿð{¿{÷pA£;¹ûu}úÓÅ÷2ÿ!òìÝ¿¼…¤ÚI9Dkåîí·2Ï÷jçmdл·.þgo/a¬sûEP^À³¼„Á8Æ|:( úæƒL&Ìw:yiú=›Ó´ vˆ‘íÁ(oŸ°€0„¡íu¯{üÞ±ç7Œ£z¶ÂÁøÒó?ÑÞ¼8jÀŒE£öÿž€H#¬I¬ Z/oýê· ÚŸ’vÑ>º*AÂs¼I µTdYæ…éÇ6…ï,‰²óF!ápdD ƒÔƒ5&&5œóôümÖÁ|†was>kNmÕÕɵÊ›Î_}@Øvððf¯„hI]¥Œ¦ý Isk@Å0Éš]È%Û@o)e–ôzw:iåMàhÜ26ù’•RvÇД(‡Áå9ƨÁTŽÑ@v•0„Õ ÝC¶qYþ_]’ñ@¯®F€ùݦ׉8Øim>wAù½¹D¦R 8‚U €œ™–×øXû!ŠQK8Ê&ß1Š7U{ÃHûk¦2ŒJðI 3~P´àÕcÑæ‚K¸„/˜–|µûŒCe‘$×÷´\Œ.vçõ±,Qölu/ß!6R›‡Bi’^kôãÒ‹þb8ðÔ v"¼Á€Y‘]øÝwœìVX ;6Â(°ç¿^"R…±]¥œíd®—mò"-b–ÐÕ¾›† š,û=h ^@uG¸F8|lªdj„Ó¾s‹J¨AœDi¡”MƵ˷ Û°ªà4ª%Ϭܒ[¿¥¹ÃQ`+ÿ\^ùHop32Ê "…& ÙIÉ^ê8ê »û\µïÍtŸ4ã *vàeŸ=nEÆ’à‰êÂWVÇ£R^­¦fK ሆ œNÏìIdŽírüÝp{ÇF9 Ð8v0tffƒÙU,I'ÍÌ­×ߥ5¸–¨ƒ”± ®~ì}*ªIZØÍðÑ‚cD;#Â"›}lØe^6ŽW_“;#ž¤N>; ´c ñgv[—Â÷qÊhÞ2%ÝËuvbµjH¡šß90tÙþ@ ¾J9Áþ`¢Òz„€[ãA{ÒÓSìÆžåT=§vz¶¾Á” 35|Ir°|uø>s±åü0ãô‹0ãô'`S‹8vٓͱ‘èÐÛœbõzázÇ Mñ^Ñ_žú1Ng?FDÔ S?¦Y œaôT•‹.–h©:8ŽÁ»Þu_ŠÍnÊô8±[0 ò›BDÂdò^ð-î3ó>c=r›ÿÂNpƒQjÔNª‘’o²™<§‹j§†‡,„(KåÝÍîviúáF˜«ÕZ!‹z(›6c׃(kŒ_Ñb³æ”íšG$u«˜&Ðn»5£ýHÃlÖ~Ù-Ñ,“ñ¯™¤ñ¬jVznYil×zV( özç¼À\/¨=+¬£«#Ç«=€0¥vÎEbR{K:mÞUíÐÎRI RY¶FªÅ _¤ÔÆ”÷Eï“S¥À‹^Íy¨¢ýÈgàÌ|=ï¶>dÀÒ.ø¡ã ’ÆÒÒT¦h.SS<Ü_ÈÌ纸wÃ}¹^ƒ zx/{xàÛŒ<¼qõJE,öÁão.Þþýb)Q½–Ÿ”XjˆNy‚Ìjˆeäô"@°€‡2w…i°ž×èH@©Ç†}ÖÙâXƞГ°„ÛÐcù’…N¥<­Ÿ €#©‹.ª@wB6ó.ij}A5£œÜÅPU»ie²pÈËR ¥e&±/ ƒÙD1Ж}äÓ”Üo›{Fr–Š%;8kœŸº÷]˜Ù7åpžæÓOýæâ°¤Yé…‘xÅa0¶Žœ•Xt!ƒññYKq ®É›t¼˜Ø¾Ÿóñ¢ð‚똘B­œ³nŸvjç&y¯t¦NGînô¡FóN–ªk¬n—’èl®‡ ™Kã±B¹–~HF5ó.@´•wÕ8Rx™ü㑆8TNRÉ×p‹Ì@'ê{ï|â'Ì•¥zÕVg“jó¦©6»!AÌ!/ÆÄãrÄã,«wtž"0Y¦Õ¿SJù`:Ý·Îçj1us¤§;4/Îã:`A@‡æ«ø^×ËM\úçây1D™ùgNAñÁ¼Ÿ[9gÍÕqÞ aÜ tÕèéxi uäOÇC\Á@¼ú)Zº"­žŽò'jéZ¨ L%HŽK´ÓŠ· :ä5{À€ó»³ âñ]ã¦9œÐëå°äƒïR…s¶z)Ty}LÈÅ“z½4HÍÖ^/š_{½Žìõ 7ÈØXøÀ‚28õ¬å½“‰;›4.ÓY \ TVu3Fö2áôÍl¥Ð±ßÌÙ[¾„§Î¥qË—’T3<¾å‹Dã<_˜kÓñˆžÌ­Å0-`Òä#›FôjÊ›‚¯9î@…Q,7uêoT_…˜H‹Ú†æ/;êy¤ùkœd7!™æÝG›¿ÀÇzÒû…j=q½‘HF/òÀ¦Þ/â.Wº0`DtSóy¼B(gŠÇKu9¸Ç×xþæ/ØK²SÆnmþ¢s‹Í_L5nþB”ßÚü…K(u|÷W¦úöÞM^ñK2…%SIe¸Ö(ع#»8+,$3È`W:ÁpÓ·q-w‚!ººoK8® WΞ¥ñ£Ž/´…9 ÄÎJ±›J}aaˆ¦ŽœÖ‚CÀÙñ¹ûÂÖ«}at/@ÊVBÎ=éËÀv)´¯åœNJƒqzúœ”'´ˆÍŽïjPkÊQR¯õËö‡i"HßÇóÚöÚöŒýaÕ>ž«?ì¿.‹yþ´Ã“úưÕ?@˜rξ1\ÃêÔ7–®L“Æ0¬<õÑã3öQ¾Zi¸ ôžÖ6–:Ä,,à‹›»±ÂDÂø±)ÈÍâÝ•4H«s’©åf®Œó Lv&D™Í•EgÌבÌ•èËp!ôÊÊ=Š#ʈ½WÊÚ‡ËdnÐmVcsSâ ¥û&°IœQ¼\Œíx¹SKɛʸÔ.U&å?ö‚0è7v&.«6†f(;U\u•ÁÆྕ®2]¿Ë•®2J"ÚIÝ„`p»Êh¿­©Œv+{Q}¦¦2Bß»gê*K!°¼¯Ý££3ì”Uà­-5˜QXalݵ–#âçŒÐš’áIôªª³Q[&¯â\éòÜme/£­Â*¦Úo±_Î`MgêÈ gÊÑq„…ó6œÙÄZɱdì^Ξ»áLûGÎÌkÙóȲ§!U=óÀéEOá—Ž.4-4^ÞjHÂ<1„x:’˜ a„ä‹6¡aŽ9”Ò¬zmBû+lBcìº1ä*‘ÌèL€ 2LsKøãEE…&5*Ã:rJrPS\„—…²¯íiÏÚž¦°™j­üÕu§?û±àVµôǨk-Lkg?eÛZÊ>gÛZ´f)Ù¸˜çHYÄ>5R91é³zà㮵eµæ¹ŸÖÎFoޤgÚΆõS°À›ÚÙìOè×ýá2šÁØÖûß‚m­ÿcǾì%Jÿ · €Ìp ;íYéVA”Øë\FN¹UÑì"8È—ð•¢ÙÅ!:åLncó„ÀA`ðÛØþ“ÄÄYk•ŸJ`"Fú”ØWÑ{ºì'°Æ§‰>Z„YzS0îùܹµ«´Í_Ý\çrâ)§yh,:¹gsïúÅó\Ž>…ö¹‚~dD›'ÕÝAA 2b¦4ã%£Ðÿ~ÐÕÍCšòׄ2ÔLS‰*ü¼\à<4:ûß ÝŒŒl,èH ɨ-Kþžy 1cRºÏ¹Mzìm—4¯ûE ”÷SÒº|{3/øAsG¿ï gŒ)k€ß\IØà‡³ýŽˆQQf;¹o#~„oê‚)I7r@ éDvû®oø+W7w×ý“E6íHólcAW¾)îAÏä¹r©ŒéäàævY}>ãy(°Ê{Ž]’ì^!Šhã„rÙú¥îîçX÷kìþ«æÕ©ª½‚ŸÚ“¢M 2˜Ë6Ñø”zv‚í€Ýr–Ib/‘W7³B{?/6 ˆ‰õu6ÆM'ÍÀŸòK–4™Ã‚Â%øíƒP•ÀLÎÒ)~, o²c!ÏÐIjcB“ÂLù"r|jöl=¨–PÅõP~&K¾ [Æršpÿ’H 0þ>û’`‰ì¸ÖZÊEr fGX}ê³Cîòª"][çÔc0½ª«ê¤jBu*V`àorߟ{}Hg…E}öZR„MâI¥èÑz  é¶LŽ‹–!#væeV¤zú€ ñ2Ut§´™ð›Y?2ëØë«ÝVKŒ³0÷WwŒ_çTÓ†æo/à¯x«;u¥ÜØ,@—wt•ݼ•µþuZ`›'o7ðS¿Âí€7à_Lü€=x±ŒœpgÁGê@DÏtia¶ÙŽÅDÖßÅ”ƒ“­fùçC‚ÄÜv;fƒ8[ÛÄ‹\Fµ‘®©´C‡]Ó=•Ó àE•¹3æ£|æýEÆ^Æ.ÇÆê™=èƒN·®G †WK/>¤E_ÞŸ$Ëâ„©§fRzĨ¾o#s·6”9Wºæï¤iîcýÀ O öµ!NŒ‰ »—ç.ƒ¶®6¬\ÐÆ46lëEÙeïÍ$gHì±Öl5¨ÿ¸{I´cãv8Q³ÚRnØç)BmSËõÜ‘ölFÉ;ᕦŸaÕ–>¥·œNÄ„ 9¿eFÃ2ým첓ÓrÚöB ¨ŒµZ¤[«ÓSìÖjÙ@¯$)¸…Ó‰Cœ1uø±å­zgŸÐöƒ‡âÖ:Y3öçéU‚Íbò}þbÏøcT…´}#âôSSÅUƯiþdMæºSÈì.Ütã²È ûo2±Æùë^Уq­Õêån˜Ï\170kÚ}El¥ó¥ÐÃ,ÇJó£»Ý«ˆÍg°µ½Té¾ö›û’BËYN$ï-íLALó¯©}¸5Bl¿¯»Z‡8]ôU³#@¯.UÓ®/óWôæšyÐ1–š9Ùì%ßµ¿Äv‚¸v#wåãóU@`³v.ØŽùáé’3V·õƒr¦Üš÷Ýõ„ŸŒË­s|:뺫™¹®AÄ9l‘;(üÈ]ly¹lrÒ;Jtñ>úPðOí Ö‘ù9Tuÿ‰ÎÒ„Œ½ˆÐÄ"° •"9?hí‚ÌÕˆÔs1£L.´t ›k†ŠÍÆ?+~ä_¤úsÂ/Jgt’#Flt W[‘µ’õôýÓ{6ûs›qÓÑ!°n ¦Í²ÅË42傚¡—à )_Êž‰NÁ ¬¦¬™Nn*×%,U,T÷&¡ŠŸ­e‚‰ÒÄô!‘ýá4zƒsA—d2ãK§Xé¸NôdßÚ„û´-G§Ø†ß³µoò›È¡4ÕâM/t‡æ™HÞuDâø¦à¡ºa¶ÁLRòÊ QËh¼X|ï]>o²Ê»o²œâmº*§é „ut?{rPd8E“¹èØvl"] ŸHm,¦ © Ò¬OÉ+jý‹*ëµ$œ˜“Îy([™¯Û„E‰Å.ÔFÉ^4 –oÂvÑŒxãëU4Ž¢ÉßüŸˆ¶"ï>*ž`ØbO¹´™OLÀ¾¼xBø)TO{’Åü–ÄËy©ƒ/6“|Øiíïeqµ{1qýBX;gsÙàÄ`¶Ë¢·OD8se¶J¢'·sNÖ‚ˆÃf]A¡ÅmrèèȪ¢à»s™È”ªÃŸ²F@Ë>â’ N=ªt²ÔñêS Àñx!ÁÇ+X: ¾ò§È=õfU3r•%šåe^qç-ß'KMeG> stream xœå=ËrÇ‘w„"ö&|X6ˆV½¼y ïÃvØ^†/æh$Š %ñï7UÝYÕ݃™†!kC5ÕU™Yù®¬œ6jÐ…ÿ•ÿ_¾;ûú¯qóæþŒÞnôæ¿Ç§ïÏ~8Ó媌Þüû øÀyx3d•õæÅë3]Ƨ4Ø`ô&ú4èd7/Þý}û/çjP.ÇìÂÿ¾ø/øÖ¨æ[|Œ ¾q£¯`´µ>d·½>¿€/s´^›í=þC;ïBÜ^â³ÍÊ›nÐíô1Ï’¶ÛW4Üj£Œ°fðÆl?"TÁÆ/ÅÜ ¡Âà}ð96.šìxp0rp$ è:ú'Vupv{C+æ¬cÚ~Oï½dò`’ÙÞ‰Ñ?Ò³Ë0ã[ž?àðÄMî5€¡5>â„Úú“!’WÖÿH¸ù”Ý~GÏ0( ¸WCÌÑ4_´q@â2ÀånÚŽ”òüÈo¯qlR6—}äÉäÒÆÁkWa àijø^;PNÙ ®fÌ‚t*aU¾Aµû²¶5Í—o[ýDC²iÈ#YU2šT ’ ­#á˜f <Ãuü`y¹õå;—Ö÷Jì1èA[ä ¿ŸXöu õéh¯G"A•¼vAÏуT¾ X?°¸ ºhÔ¼__–aVs$h„¯tÌÈtÚp1tUrØ´6õÂD\@J@Å›ÈXfL‰m½K¶5“7¨ŠBˆ&5¶‘M¢ËJ% ñAeЉVÄkyÉh:ØjõÞVlv6G[Mk<ü#.XÍ^s|ÀÁnÈ1í°™Ö D:ÍÄåjÅ ¿Ë’ߤšouõ¢‘j‡Iro63Ã.³ÉfÞ`«½÷¦!2•G§4³UJö!T‡}ÙaI•¯wzCÕ~ʵH#DÉU®’ƒFÈ-Hg%g£U—LÍ÷Â~¾e”õ•@1¶T–pHàR¬#ÇË1¼>ê·ëÂ(14 Œ¼î¶‡4ÙÚÂ4V…ÎÚîáÕÙ—ÄûB£Ú0› cHIÑœ/Éࢿ%÷[©Ì˜X!Vn%-@ÚÆj­b1ÀK ä)tÅ\Š€8);вZ¿#­¦€ä[k—s3úF,ôF¼ï>W*€%§mY‰”aaRNÀô´N  ea¬n@M'àçÏMÝÚèZp¹{Pû`›1÷L)¶¬ŠÙ ® wƒT Æôþýù¨Úßò—I£ói0JÕð¹lŒ/–°@q'¦¸¥ÁÙXRóv„þMÁ.ôäf_ì…EULv7}öªl‚ r€¢¦s¢8g/·8vœKÆ?ƒRø¿|)¾d\µ)\L¼ë î²3’ÆŒ”WÁ¿‡_Ëú ¯˜HŒ‰UFYiQ¹š”ÓÉ!ÄS)oX–zeÏRï\®NÑè> „C¬<¸V¸˜Û2è Æˆ$8#CÔÊ5dÒÌŒ’ò4m`+ŠÒôê`QØËj::ÞgàÛʘ4Z µ„ƒÅ ƒyÛÌ~ÅÄ :4üý™žÁñÊíû2}@›0òNÞ!"© $´µkåYøž‘ ÉθPÖ®áÛ‚‚ Kêä‡i¨0Ñ!W—ïFø>"‡bF ¾¨Kå´ §Ù€ÿКԲâHîµ…ò³êåyQZ&v4 UxÍ®k!gŸ&)’£o÷aÞ£w‰-¸ŒÆÏQ'(f¨ór½ËVuAu/ØuØœ;ËQe1yGL¾ :°Urue]’|)0ypÖ-wKɼzXx1¬vŠìË‹5©G?ÄÚ=`0ø‹Kl@Œõƒ`¬Oý†KAšJ.—\JäúªdÀP¹%jÕO ×H©M*Ük[»¬ÆeëßëÜ5µÃS rçíïÑ]w€An°ìým‘lÒQ%›ùXÇÔ}EjÞÉUŸ ä3ÏÐ-»[óÐÙëÛg9óï7?9Va›u›wð\|?¾¸9ûŸÕŒuë¿ÖŒ5LDÕ8¨Ík)–BZ×zÆ¡<¼cÚ»S•ÑŽºVÇTgE0m‰!sh}^©@.=W¼„¹Çà=‘¢õ„ÈIÁeIÐÚÎp!8±ÑB”ííL£oZ#ØiÐU ¾R±Wè¬âÁ1½·2i#êÞ­ç+JL@,ô¤/”ÀìÓ+ÆÆ§Ô[mÐk¿ª=ÄèO£x¶æ‡àÆÈmæ^Œ²ŒˆD±«”Œò¹ ‡.0jQ~®ñpëÀû‘:Lz ß3$ÖWðtìô{õlÕ˜Žš‡”)¶9 gü˜0º¥X4dãO!³ÉMÂn•Z%¸H#ñ~ «!N¹$j¯ô  ¬êh©:F p;ÜJ‰VÅŠQ™ôw$À®´Œx§…X@ZÞy]XÊæÓ»#@F`¸>» ㌡ÖÄKŽï¼U3„¼.—B‰–£o—½—+v.#¼^Œˆ×• Eàñ7fÙHT ²ìE€ó;N9Lr‡$×aÈàÇtzznæ „Iüí<ùhí5«° € ÄÊ`æuÌà\šñÍávfÀÜ6Î0Dwaçá‰.m!úQ>¦ÕxM†™l•‘ú OU3l± «®þÝ# ÊZFé¶­!º+KØ6Ú[±ï'ß6±C&[÷±ÎüеkÖ(‰ò­[(ce¹ÈW“2¼¬¤-I—™OÜ*5ZY¶SŒŒJà‰ÎútBG²aC6µ¾T–7B‰JÅùµ˜»ˆ‹µûhåÎ7f"„Ã3€5øeµ –9y»#=4iŽª*§ øÇ8@ÈŽ\½Íq,¯ÌÚh‰ÃB’«×ö+ò:»å+¬¯‰°Þ%½ïÊ(o%úü®â._ƒhúæËb¾mlÁO‚‚ãwóT4IÖ0½.nˆÙh=dïIϬ_çýÅÎ^üÛß·ž¬Aò­a<‡ó pÙ!ÎÛþ+œÑóÌm ~ÑÁãÒdÿKaÈòÍ9ÒÆáÆs1›|þ= WÆÔótžðvšðoçÒ¤åßñ¬ÄDJÔÃ/Ëß¶-öAše=˜g~¡ P¿bSOmƒ bêïÄ—øÖª#ˆÖÙ&èFƒd"Ð,›ö,Ø#(U[_ì4GÍ6Us   p‚A™TÍуœ2srNÓ ½;ÚöÌgu(³Kv› 1šH‡ËÊì"ÌÂòÿ'\ 4—÷Æóiºä‘eÖäé„Έ ÜŠÌE>£RA)< ¼•ÿ¸âA6ó›i£ÊäàtuÔÿൌÊí I‹JQ89ÜŒ¿/Ìθ§Ñ¨÷hÑ¿y¢¯/ví§ó’Ž¢ð ¢%ØO—†ÌTøæ@xít@.?Å?ªÑ„|¤ÁÁlߢé48ÂvJO¿&UåH»$°D,'F,hÑHåñOsqeæßݾ™žëÒÑrìÕ/ÛO|Î ž8ŸCP”%†±cñŠá¥‹õИDz­ÏÙÀF^2*“¿º¾*·„ðºãw9è­{Û.^ÆJðÏ9‚þ(ˆ6#Oà3ëh5•Üè€à4‹wî&º¼¾ç±`䬅¦àøÂÄϱ† RÅÇûWu’fD6Wp ‚­$3 ~¸H&&ˆõsHÃÆ½€ÜûamƱf²]¤NÈØíƒËhZíĬÀÛfæñg ]4à\,uùü–ˆ1‚,0¹›%Dr Ÿ ²R¹ Y´ÐÕµüâòúöªÝoä©à¦-£eù¬t¶<^Î&Œs\ßìæAžq; ÕèvƒjõûÄgìç-ø\bv:öî²ÒãJ2w' ˜·d4Dë‡á(Ö„y?¾9"pK˜5â Ãd(O·Rpn)ÕBQ‰ÌÃSÖÒš•tÜ=Ï¥»PLmD|°rJ(£Äϸ¨÷KÇC‘ωÿÂr³qlâˆÊBöŸ Z>?8lò)ÿ¯"ªc¡eT|cÁ ƒOy±ž8ñ?†Ó Â>Ž÷:r+k¾åM—t=yh*&4ðɽY;õ ³ª dù »¨ìDtk~Ë-È·ÈÎ7ÇåµVO”ã#ŸTãÇý•Þìtc¥Ç ¦(›®’¨œ#ø&Ô[?òCúÁ^]Œ#•M«²¦ šàÿ`‡o£MÞ„[ÍU8‘ró{%bä¦Ôê[—,ŠG™¬LKˆEbh¹ú¢òÏ‹TÔ~ÏÞŸY²€^›6Û³R=Pq1¶©CÚ#9<ålfY@͹5Õ°Â6â5W0É9äK!ÁrÅ@[^À¥>MB„Š54(7Ý'^àµÀŠïȨk¬sô'–×…ü›>Æ×Ó¹ûQù7äRtQÁ椺\Q óæõ=¿vºu˳¯S>i%‰$_—ãy¥Ç-±uxa`¾=DEØ`ð#e§õë‰l\ zûTzdò>º#¾êD8 ò]Vx(ÇN^ßçDDgqàñ“–©B^,u…LÂöDhÍ'—VváŒ$ØVX‹ºÑ¦–J"yšj>R :ÙYíM"©¯³Àó÷Õƒtç#îÎŽ*E˜ÙuçØ’VØe’¯…úÙåc¢8hÝ\¢?©=dòÚªÿYÕq,L— Á·!ØÕ2é(°XbØ>æ)»B t´+‡Ø«º‹H”Óº˜ŒÑ|¬; ×>§¹¿ðU‚–´²h¯)™k¤¸Šzd¹ä T üƒnèJ²¡ˆ4“¿éåô#Þ´¶zðjª2GxÇ€Ìöôóž§q[2Äô]ôG´F5¸ý3¥…Ch«˜%GÉ"D)2Ó1¶4+× ³±»ÕuáÊ1›×ç±Ù€[?çWñdž¹W¼•6ÒÅû0»L@c•ïTW©é$QÊw•d¼Œ:Vï¼Jß-@aÖõÔ\kHˆsêϲøŠ˜óYIsýñ|ª{ýæ|̽=“Ëçÿdt('5O›üëùöDz˜`,λÒ:ÒlÛ¦kxÓÝ1¾…7 ñ“•Æ “°•îsóòuŸECnë1¿>»FÜõ! ܤÜJtÇÜ™fN=DÊåè’nTKW©¹ŸˆVõöô^ Ež¿¥ýïF7å¾ÃïFcû·ïÝhlÍ w]†Ù0<í}ßûR›š/Åçr»ºžúϯ&ï¸ôà1%oFÃë Ú×ýÍhl9Âáwg»›ý‹ur~ÌÍþK¼”1«÷vâW¾´O÷úÅÑQg•‰U镳ȭ¬ÓþÜšMŽÿO¹UBÍ÷ºUöîÁÎ,³6 =Çú![‡å‹"„¥›âYw@(«îâÿŒ±!É£Ù8lÒã™­ÏÇð1¡¤BÔ6ŦÅ;zÖ }\ÑŒBð5ßã &/žÂ[;ääögÚ)ypË‚Z0n_–…¸ÏÚEžýâ«|<¡‚½k§×À¿á•Tõ-Æ£š¸´í˪¦®MÐ*¼j±SštJîXû{ì8ò€ƒ˜†ÉÙPx€(ùøŽgàŸ–¶}ÄÇd@4ìRù0ž=Ÿ€¯aæ¨âMŒ¿ âžæ ºN²¾Ò§!!ÖDù™ï…”¥*R>G<ãØ h¾²‰•+¨™JéÃBQg7±ªm[>ð"¦öÁã/%Þû58k{úŒëÓŽÙÔ¨†×…µÕ­Z0”Íá­ZÈjÄxL3´ûƒJIç×Å ½!Ú˼Ê4“yM âÞæõt½Fw¦¨Nßkm­?ÞÖþrz²Ë‰…ë£ËùD&¸Ç¶ÙŽ™„—í`c4}Z­íNÑh4™!#쯺Ï(˜6mÒñÖÖacP½g¬êŒ§†Êë¶§‹æ X#‡= Ó©[ŽuÜ,ºÃ׺3VÚ¢/}ë^®÷åuÖCˆ§!Û×BN×{ŽÖ€5鼤=äàŸrK-‘î9мdB8yÏQZ§íü=-YbTì×·Ÿx;Û¦Ò×q¡K«•Ám}ÂtÚy^ú|¶µ„õµÎÍŒòü´tD¢Û»µËm‡,ti˜.­j]Ô·q¡»lFv¾ü]ë±@s¬¿¾ÁÓÍ;x“±?ñøæðŠ\˜ak‚3 t!^\ëË¡×PØïÂ÷MäâÞ¤µú±'—³-¶u•òjÆ\ì=‹á²lhÞ<Š*dÇ/YN4/Ü·¬áá{BS#[³V/j3Ú«nÀºZ9;/u0 œ™¾–éËܪäâ¢+Éyy’«AT*Í j±q_]Äo%þ܂’1TkúB:á_'¯²9jrÈ¥2@á`H¹,Z\+Õ”´¡ï:ÒLe2°[CC‡EÆøìºZæ{&X2ÕéOØI34Î ÷àÙã>ÇJ#›¼4öÅãN#ån{ƒ–¶m õ›mSëBú`Åýj‘ÓI $GïÆsÆ 8Êèxp ЄŒo×ñ0&­q`ÿðîn’ rx˜ç]—ÿ©sAäý›r9 M¦Òý8C§®â®S[òˆÙÔ/”_éÅJ.¾\Z¸¾L¤¨Ì㔫 âþÕéÄÆÛ¹QãáWeDwÍYš½‘¿æSÔò;D§Ž]+ŹÏ6ºR8²=©}’{jJ‹×˜c`1µ^ )Ó•©›çƒQi (»û„ÇÝïª×UFÉù3>×ûK·”jwoçb tFj¯û c ‹{‡M=Öƒ…jö¡Ë¯…jcŸN7–îC¾åR:¸l;þ^Ëî8÷”WBD[ o#÷,`N³¬–€;¯¦âhl'÷p¼ù0‰«rŲƒÔW*О¥X Ç·…ku}ë‚’Á#%43‡öÉ=R2‘êYb-‡M$A¨~A)¤V-”öÓ$IiÄ¢å6ëR?Cs¦3]"ºÖûe_ëž&Yøº˜†E0m¦ß(šÝïøÅêÚHnªŠq^ê–u¸lÌ<¥J”i¾O‰Xã·âý=CÍ¿Å:.Úû¤u’â9ñ>ô“g„„M’XËrtŰ·ÂlkŽIÁ‚·€M:lOâ2»®– Øëå(8jK-\D;ßûVø:4¡I£x—B›¯–†®GOÆã¯5¥[Èêt7¦g™—„ÝÎÖ*è﾿ ºOJ?Œ¶Í¤PŠC'üµM‘âÁ¼)„kòÙò<ýÀxŽ?•Õèò9Í€UÙ2Ö,/@^‹oÈPYcê-“1NpðV5¨ý4èñÅ­erÀ;š8ÃÖ–“œkîFK¨eí4ŠïDHáü‰;å\hlŠÜæÂ㉼)Y-æŒÓóˆÿ_ÎþÀÁiQendstream endobj 137 0 obj 6549 endobj 141 0 obj <> stream xœÕ=i%·qßòþ¼ 4-Þ‡°Év|KkÒÚµ÷òîÚòæ×§6»H6ß¼7³#%нía“ź«X¬þë¥Zô¥ÂÿÊÿ¾¸øø‹xùíÛ zz©/Yýå⯺üC•Ñ—?}/èO–¬²¾|ðäB—ñÑ\FŸìåƒ<¼»R‹ÕZÅpxŠ?Mö6_][çáåxø9V‹±6…xxM£SN‡_㈔lÎöð)>uÖ›xø„»h²k~ÿ‚ë³\]Îý†~kíR<|³{e½Órø+|ì²±^7ÿ€çF%m›_V`¿Oi—a‰6ž1PÉÁ‹oñ±[¢ ‡¿Õ÷h HHðw˜"ëèƒ,\›¸Dmê\NáðPü–Sÿh›ET—ù×ΰƒÜ¼÷Žéa}cå Oð© w]ð²Aÿ¼™ ‘P8ÞiXœ‘_ñZÁšÃG$+påÿ~ð&àlõàpRY#b(Ñž‰!¿Ä%“›mHÔÊÅ—«k—Ôâ-?ƒÇÚY³½i¢kèóÕU²‹Í*5$ü²lq‡ð ;g†õ*Àâò÷ëm™¯'È“?o>°<Ï%´ý”=H'"ø³¿¿pÀ®—ß]¸€þ(»vIáò<Èiì¯Ož_|y¦*€–˜R«$ȧ:0«è=ìbð5±ÇµCÉ€ù¯µ]æ¹+§ôĉ(”º”yª(c‘™ŒsEÁ<Rý\øRÚWõŠüýzsv@ši'œý”U™ýU°qcmµ_<°* „»¶ÀöÀ´ë“óÙfX’28˜';µ¹C¤× »Ã]ß—–ܳMIZ4ae.–¢VŸ'S<*{1?´øî(WúÝ)W¯]´;k¾Ò kÎu«ðP2— Ê,ñ.Ì3,&è–¹NÒ­D ŸY0ûf'Œ™@Õ=(1⳨‘Ï €-wIWM¸gä%›°o¤O(!yu…Ó¡úwaw¥õ¨‰çä&ŸnžíÃÁz0%"IëhqHà,`¹ cè—TX… è”HëÕ®”ɸJ2£T0ïpï6ºÃ{tUT ]øõÏ4°—¹Ô‚Å`½@e!I.üêâÁ¿üñ®®µ6"ÏÃOP–µ šyÜ€~/éá3B‚ñ6|Úƒë¿%Ë €´mœ1ÌgÆ)ЊD®ò”xUX‹èæ7ío^¡CÖ˜X(õÆE•ˆDøÁ’Â.¢ƒ×ÛS)J0ƒ[rû–\»544Ú‚°}STÕš"©m[Ë@Z5ufñÜ‚¤AµV- S€=ü…b<ÐBÍÐ÷BÞò`Ç>ŧ)MÂ]¡È%B[m‚`Xã›:…ôKa ”OE*BQcà4 ±\ãIÁmÕo g•îàD9H(ÈV¡ã‹kÄ,£]ŸÁí…-?@x2cIÉ”ÝÓ~À±âŒŒ «ózÓq¿šêÓB0]`äN£­Ù4) E§ÓD³rû²Fë°dPŒ]2†âE¹t3J_dÈ/\àl/Àé7Ï÷>U@©šMoF¢×l0/8æ:Oò#'˜ò»)\³}ÅÝBˆ2ã3i§Z3@1§· ](ëtó£u¿4ÀüÝ{~è)%Ï+ƒ 9c©t*ú+ƒ³hÀäàrËU·iVƒà©„¸ªÁ6ßÁ *7Ïá<•”¤‹Ûô˜Ê!7G5R»Lò©’+‚¿Ç£"”þGT¹Ääz m.^d]¡­ë2OœrÒÙŒÔ5$7™=¼`1Xè€áœ)?$OȤöAm«˜ÛáåqVm\Î: Šë!­r­ØÉ€ô~?jÔ —XèÂÓ€ õ$ágûŠžìsiáïÆ®˜FéܰÿŸi˜uæ}¼a‡Lj<•(§‹ã6¼•ÂÕŸi7®]qïÛLìÙäDäzsÏã$iö¸ $˜>½\åK$O9FyÎ+ºnø`fÊÜ$.%"q™º+¨èMÎ)ÛÍ J ÆzèQpÝZYü7B$4û™= ‹½ePpÂM"‹=…€ã»²[ØÀLæ ¹éßÿÑßÏy*gâ™ÞÚºÁì;PX‚DšÒÐÒ"6Œ¶³¶ü=ÚÎë}¿á…Õt®y‘@š$Væ‹éˆè§öæ´×Íõ ËKaDý_|]çK°ßæ…¯A­Ô)cð€Ô¬•U9êV(f•U4_„˜O¤ÕJ<÷"XøÉ“é\»MA0(~0¨¸˜ÎZݤÚ=ÌØ@òàSY¬pÉ´ö”Vô]‘Ñ~NáÑ öÞ OqüSÙÈ{ÌDåPº3SJuB¦†1ÕHX™íïa ú¯A¿©Þã"~A=3M!H9!\$?—àMh\J1xf ‰|ëNãqB®ƒåAóÇb–ßòÐ;… Å!ÇQ]ì¤Ukdæñ¾tq¥©êNé?þ"Åæ(H- ª ‘þ ßÔ@C!×ß`‰ö‘t^|¬Ô¯¬?'‹ƒ“Qÿ×mAù{¶x¨µzûÁ®4ª“€^mZP=ö΢£ê„ï:Sòü^˰ÝóyUÂÔcm`xT„—˜ ¨vùž8…Uë“óµaØÇ§kß\FPü$>Œ¼À©¢X¶›­€M(änh»Iø¾¯‰¤  ª÷qA9œ…Hü»\XN'âV¶?]²?Hm½wîuÔó¥×Àœ~³M,£ÚYžŒ0Lœ'qllj»Cޔ͂³>J®,lÛL ¹3)æYÎq¢‡Hñ€i'Njô¢ªshSŠÒë…ß°.:9VÁàu ½æÖƒ7ª¾–mrî0ñÉ_–UTë'îVKðÎŒA¤§8V\°%ëíÀ•C›ýGucôtÚçø.±†S`цtâ%?ç2%õÌ®b­‡èé!Þ2ÉL”^ÍÖ‰Q(`Q˜mrì»VZ'gVí}ó o O³f ¦Ú˜˜Ê.üÊãai}ÎûÄùÎ;æ"³Õ6ƒ†Ïü‚]: «š!à\|®OnQÕì2Fˆ0C©Ô'}d¾îlŒþ%¤Y¹Å…»@ 1—ó®…TúFdû@Ûÿ*èÒƒ€¦Àñ€ ÑŒ9µ€œ©­U9ÝÅò(ÝJçVwöžÐð·€öÉ0"íx'\R"9©KS¶n¢,Mo+[è %Hu~‚¦êu+üÔIƒ¹ô!;1€k®N}r‹ÂOLä g«³dýÓ£ÌÕ‚l€zàÓÎ`°–é.p‚Ø[žatàüÍ™e8¢·àGH@€KHw$‚îõ¹äô#ö5üy¦ /i£Q1..ÞFƒÎ®M-ŒóÒ+:7lýUY÷ÿºë&}4dž¤¯>G±´-¶(h©èàF>UXuETòê;! L‡É1?´ O‰½`ý F¸–ÉÌÓýbl3'ßîŸP*»Â§ú˜}óÝorxeúœ3|v«ð¨Cý]*œóiXÞUKX·âïÄU=£E„<+®oNvf깘 ÛÃo[Éò^1–‹T6ó¡NgK>k‹nRÚöy·HzSÉ] –KTø·Ï:³œR½JØ”š Žq)0G\  ?å­*ådöo¶Þ¬…ŸƒEqM‰÷[žÜØc?¡ËL+ZN*ña§ÓZõPêµ>ÏíÚƒ„v Þ‘‚"—Ã9Ó£ ÝýÁÞ¶ –ê}gÀc·(ü„IòIwqjÖ ZݹC«ŠTÞogˆ¦‹IkØÆLìÖ|ë%{ÏÙ,àNpn·šo2ù€/Rt±HQ—Rp{ø)<51bý××¹I…ÁeQk8¶ô!Ö„‡ÐÂÆÈÚ€u¿Å9œW^:8ãÇK0rÏèXx¸”©OŽÚ¢fKÕ± ;•gâ†Õ! ,qqÅ@+Y¶E:xäsFtN²€g«ÑètcáaŒ>’^ˆxuȾÜ&@äóÈ7„,Ê~ùûCü ®WŽb¨ø;¿¥Ã*ó€y˸‘Ýe†ðÛ ãýäâ¯yÁ¯uZðÜ’9…Hä4º’ϯHï‚VG× ¬½ñ˜†FLF T¤1]î¿D²KÈTŠ.ïÏ…â*(eY+âÛ¨|¥\4 â=< à‹S\-SŸ£šór/+ÕÕÕ'€ KxñO!±‘±KÊ7ñÀ!µ’ôèqA¤}8Ðï: ”/B²“R)¤Æ ŠI&²»HV§>$²'˜ì`Q±¢ŸjÀ>¹â•i_ šnÌ0]U XO55,ö0ž«É…OpUò«yl0r,hémðÏibç|².¨ĉ܈§o®<0n¦‹‰×RåaV9BÌÄ$5έ“Ѽ£Ä3Û~W®Y”¨Ân±ðdSY¯@%õÁe:c*?%ÌEĬ Ï=β­³oŠð¬š’Ö`мշ0E¿¹’œ7¸„ðÓm­}Î"ªÀQÙµÑQKdÞüâÝP@nnƒ·?P¨¬ÙG[ÒÔ­Ð&ðój†¶#¦…öܪ[^0jË=g¹”¹¸¯"YÌ E¬ò  lJ: ì 1<•o>¹ºæÊkåÁ#±^B-ø^ÎW–ôÞä­ué.äŽm…ž‚°ÅmðY¼QIç‡Õ™OnŠrù[X·"?Ýü¯•“Â#ÅœäÏ/k„3°­À„´ { ¢]YØ(É…J¡V©ƒð?Ú–~¹…|m!ôŸÃ¾@O†nò¡õ3· Ä~~oÖ¯‡ˆi(+¼íN¸ï æ„_鍸Æ6XáVbRô;bKá¸Òø ¶«PN`–Šéë}@WüêpøŸÍøŒŽg´º0Ú`N­4ó}V£›ï©°"MÆ3ã-ÏRæ‚\vY‹4{tÂåö^õcZ­$Œ¨þWlã•–/dxÔ謘‹Hëê0€Š+ln´­lnüq65` ÆÙ™`£dr‰ão¶)þ¼ÁÉËù˜fšk©c'y „îà>¿zðç8D#Ÿ˜@é”Æï„ˆ<údÛµÔSégn8±|Ÿš"þÐxTexM Ýða4ÍæR‚•öv©eåG4EÂÔáMš‚~0U¡tÜcnzñIµò;ÌMÞ`ÿunïIC€Ë–îe|uµf|ö „NßO”ñ*¾mSÿ.…\J³àÞ°g§Õ¬?f€îâóýîj=åÜOc%`øÛ©ïI"E@âeF!j‚ƒ‹ztÚåMÆû"Ö9é©¶ ÓSÏïñÒ ÄD[Æi½w¤iÖÙ„¦Š@â´E\¡áòd°¨Úi®³~´®bV˜¨šg}œ<%yšÇa‰Á”Ô•ш9ä=Š:Ç‘¦4ààsþ©Õm.rD6ßXšÒÜnÛ©L©}†¨ÒåÌ[oû³²$qás¿‡Û›‚+ëÓRjš¦=^À_…íh_Ÿ°k§ÖG\¯Ýëh¦d=~ŠÔÑâÆV }å3„›Ý^íŠâˆ©\W½LS¸ž–{‹sµÞ¦Œ“Š—ñT¯ô¾ÚÐõ8ÃÁ쀲 Þ)íï€àmŒHeŠs¡T{%{e>ô[N» .f¡%ñϼbvcÝy^¹,Pæ;Šèª„^{¾âèl ç-™£W<ׂÒBØÓÚ-ÒÄÍ'^Õ˧>ÕsÝweVïî§‚RÛSå›­ÄukdÓÜÞ^™²í­´^š{_ð ÁFw?ª¼vë2Wy5¶ À¤y!®.Ævñ§´r`”·E¯“›b¢G+Öhªú]±|0@›8½ñöÜ0äM™Dݹ7Ò-{`­ë ôY¼æ­1i·«=ßl1>†Xñýã@˜:{Žƒ­ìy™cnÏa6ÙžãE}{N7pì)—µL2·k°¡Ä5|ÌÓš<íV÷®6™ù® ƒdé¶T´ðܱ^+Dª¨Ç•sÕ{,q“‹á톳ëÍ“Wúf&Ûµ"­5¡_á)¾Åªj’w9x̃µÛu^~SFl.Ö „¥Sbˆ$Ý¿ïpÛØJ68pE÷¦ÍÑâ@À÷Ò€cS¤ÇÎ…!Uü9ÿÄêÔó…!rg×_òÜNµÖc«ž_”m a×€…¶¢{ç“§Öýaºm¸a!bÆ÷×*HM^B¬aýàöv‚(e,Üžz›L´©zÚ5hšÄØ™ÞÜ|èƒx×,pIíõhié2–†ëbÿX ݺÔܰ¼m—TÛ‘èÏܶÿ•6Jþn_¬&òŽƒayìÿÕtߣ‡œ>§Ãâ_•Ÿø™˜Ã†ãÝ&ùåêtX˜÷ø›¶{ ëác{gj§=”¦L¦Å6»a§=Ô`3nŽ™ÔÚ€ÌHË¢nê®|Õ}[KÞß¡ç¸o8v@m¯?úï1öÞMk!Ocw–zel5ᬩátJaß}ÎP‚nmÆLg +nmêOúTJÿYS>•‚Ljº¿Ÿ Rï¢xÄS¿md£ý{ùØ ƒÒõ§¼¯Z5® àxm”oˆqppíÓUô»\66ÂNwf>®Fö5uJ‘µ¦kVŸãe?á2D/e÷¯ÇÉ…×ð?¶èÈýL¦PRSt“ËøÔe%ð‡ï»Ë'-dç“?.øqßo—S%ïЯ4=©ãIÇj ´å®ÖtÚ²Ó2öœf‚”óo/z>áÇQ¹ÝYçxÏ 7× Ë`»x€– 1ï‹Óúš›'ƒúH¡ÖCû8~ÜJÉîuRÙAžö_BøøúΞøð߀«‘}ÌÍ…ñbÓñ£gõ@fðsKÄÑÙåAË é…!jÁ¨FG``Ó÷•a¶é¿6Åd®·‰gZ¶EÛãÜÔ#m•‚{Ñ+,¦þ¶¬éšKñû}Êgˆ.mçÃ6çLc²óÓÞó(‰áÀ£ÅLOl=6 K¡ô&¼ëpc“ÙÞàv¢mÖÚÎmäYv¹Ž4xS^sáNîrõòÑDe·ÄpÂÚ/«1øNŠ$mMïF 8³'ï½§rC¯È’%&yaq^:ñ_ƒhÝ9‚[Çþ´G·ß¯ A{ZÍšlf nnÿgÆrÎi$}7á'¼æ{r*˜+w¾·¦ÙZ›^¨ÑÚt)æRZÁ`#¶’vfÜLßò3ˆJÙÕlÒ_ c—”œ:áliï#Hç¸ÆP¿ãV5ô©Î‡hò¿[{Fà©÷e±R± umX{~]ÿí{jô1D¿ÀÓ$Wûõ„ ÝSCbûY:nmÇ”Ûï oyf—wN!‡Ïõ¼/`¨;?ÊfeÓ‰cK©Ý\³±ôù^îÂ)ébÏüêg¼$-ϲâCžz̬íÈ:ï`Ù›iÀêRo+ Ú ¾ãq² ¦kü,[û½îÑ¿O°‹ßù æŒv¾="Š4,–‡Ê¾KcÄ̺¥3ã85îyë«éI”¬"FHç6 žØà—e¾0~S?ea¸Ÿ‡A²ðiÅÀÈ“ÁÄA1ÀcÓ}„ièU›Øÿ%/wJ>¨K%DÝ5ª•#¤_6‰¶—OÚÅÅ¥zèäÄ{È”ÑЦ¿Üõ;êNÍsûI`0éŒ\Q;ïC+.=’¬ëa*½©Y¯cÑy¥wµIú∨Òk…Qךر /ÅÊ]Z%VZäÑÉèª0ÀÀ–OÞŒá#KÞôë“ÔöªG\+Zã1)M_×ó­Ìmæ½oâYwðNŽQª¬ß:šyÆÂ9H96F#  u,?)¥Æ«ŸÐvL·µ_½9W8HñëÃM³ÝÊ8úH´ê·¦âNÐõ}ž =Á°w@xyí-š­ijñrÚ~×ûÓ¿¿ø_ ä¹yendstream endobj 142 0 obj 7321 endobj 146 0 obj <> stream xœí][sݶ~×ôGœñÓq;bˆ;˜·Æ“[›¸¹¨yét2®íØ™Äv9qóï‹ /  )ö”£AÔX,v‹>òçCÛ°Cëúß_\¼÷•9<»¾Oìð÷±ôÃÅϬÿ£í©\¹ LÚƒj:c”=\}wÁú †Œ Óüpõââ_ÇOî_¶ Êjs|ËÒJuü‰<ÿœ<@ž¿Ož¿OžÚü%–µµöxMÊßšWäùËû—ŠÛÆvääqCÊ-©ª—iæå_ýíB;©ÃÕgW¾Q|JÊÿ 4ßž>&eÚïKòüCRþ-§Ä5Ö}Mž_’òפ|EÊ%u¿4ßæüúoŸ—Û u?#Ï?­àóSR÷aY†~^ýt:V”`iõ±óE÷ÿV™)tg Ç>Rz´VÞZ÷Öú¢ºò\WqÕεa¹iÝ¥HjÊܺÙÝZwE$CYqÓpÎH¼r1c+7½zâhA4geñ­ÓÖ%ºìª/FË ‘n Žö‰ù`¼fhÍeBP;êå¼SÀ­󹦉%b*fM#L7èØ%®T3.‡¼5­:¯h™'â(¯c™¼Ï2ÐÙ;(dŒëÊ€!•ÔŒ®Œ5RÛAÏÞfqlÕ BïGê‡n܇KóiÝò8â‡S@œË½X7Dtɺ7º*JA•ë^lÄÙï@’1Ÿ5’ù­{S—C0óωÏI׳0lèúsBòyÞØ'ScœPоNCšGIô1¨U"5ù~19n5ɶ-zv²N –d¬Ô­uõåP·K¹Ë6Ÿ¯@oÈsjY&ç¶“Õ­TÚކ˲™m_üd~”L&Yl‡§‚LÝh$|G¡êcF±Qžë>‘jÕMZÔª3Ї8ѰS¤H»,†¾œG¹5lÝby±_¤k="%(ßD ”k&™“~éh(×HALJ!Ô-ˆ!¶Ä.*š¶`¶´Ÿ¢ó£cT–<¯–G¦³íİÀ.Pÿ|)¤n˜ŠA‡O4ù~3¹æYÖaX}Û‰b^lÖPVpÿ¦´d|15šn¹Ffèú—-ú®¦œ¯JCoÈÍžè*ë 0Û,g~QS( ]ôÉd€6,ƒw™+¨î K!nZYÓÊqÉ ¦ò`F¨¿3w#ƒjy ?[µG_6àYÆm¯çNe3u*_$ñ^ɤA²“W!:̦mÉh;”¦S1fôËëFn¤( _™šÁ9 ÉΕüI ·€µ‚¨¿É6,5«Š$ÑPÊ3Z·ihºõÊ£@z4À^Qü£*$Y#mj¯ ÔEyäÅ+²Ih`é7² ÊÈ®hî|× )ËÛöã78/ߣ >ˆã9ÞMrš$z¿yN3 ei–Óä÷‹ “sšTD…üæ­¡ŠÑW–²,±!¿9¬/CºäÄç[*ØÔªÖMAôÿ}~3:MnIäþ@1Á)Ê‹¬JRˤdMF®°ÜgVª—囵"ªÂš—%_Ï¿ßG)¢Bt@%’Ř(çØ‚¾ ­&: Ü¢•nEÆ"ÉcÆBxXD±aMjíP ¥H¿(ÓX³Ë[ÛõV¦@4IPXŒòÈhX4±ÚS 7JpÊs$8é⬳æ,p¡ÉÎY)«¶‡èŠ#ÌÌ~Å.ž­8ÂEÇ\}¢ã·‡ê¶]­x¿ê´-D[JÚþvï—g8++¢¡"¨>˨ÉA¡ìh&3uä]·ï fÏù1d^¨F …¼HöD!×MêwcêÅòéÉV!ÅYØÕg|-—‡k@§Ô].×Ì,eJ}Ö.ÙŽ9zïÙrðÞWLXÛtmÇ</n¡ew¸ª‘Ú?ôòüè¾ï–I¦{Dœ4VÉã3÷¸•é¤>þêÊN:Ûcé“6€Õ„TMǽ Än…`‡æo´ÒñžpkÜ”9þ7ÊžkcŽý _¶­ÒÚcÞ\G¢m»îøcÏ w»ø¾§Ö ÷©ùÝý0$Çüñµ¯ÈXkôñùÔÆÓH`„#u[)4OZè‡Ó:™õ|8uw åïuì\(q|ã[‘\¶6©Ù‹ÍJ&zF„`’|]gµÇËÅ\†¦¯âSéž>Šj®ß‹C3£’ÖœéH·oáBD ë´ØËy½ÀÛï±akíùùH;Š‹‘Žé@¯½X:Ç‚öõ:&o´L“H™òø¦— OÙ‰bS­vB »ÆØh7ÜÈ×ô5ÕLe(O£êÈží³¢×‚Ðà«ûÜ:¶Çù“ZjÚa!wb‘LJ¾Ã4“&Ñ".ÊõãȪñ ÿÀ3‘Ú)«°”GóöEÌmE)^2Ñ(é 4s®ÒÜ KLÔKGȦ5Bøøì·ûΣXoôéK/aePgÁ›ÎvÔR(sC³ÌôR ^A…p]?v™œw³•y0‰™ú‹WI^“Z-œmÒò×TG5xL”‰ˆ…Ú]h\¹yÁÀÿÚ©1¥ 3~#o0ï>˜$mfD3Qô9EG+ç¼´½M ðމŸï˜hØÎb¢If]“ óþ;&šÔÝ1Ñå·]Í)˜èY®¯-Ê­¡#àBêí­ÄD§ûú“0ÑèT¦p 9Û?¢çÔ~ö§2[Å@C†•có;Ñ„š$rŒïµrqe—$f ˜ØÒ6ðuÎW ~LžÏ¢¸±ü¤ïÔùÒ7`x4|Fž?'å×}3"iü)¿ ­ÐÖï 5m‚H.0ª~Ož/03–’ºv²ÁÞ&úy¼‡£ÛÉÔ• —ª²D<™ +ø]¢jëÖX I®¬ÜïJÌ—-i5b Ëd¶ÚA{§-^;hï¶Ê;hoƒ<Þ%Ð^æ_ân]„¦Vî±lEr ³GŠAW"Á"À_õk1–±êmÅP4–¬4eITÙU t(¸ù Øæò=hd£è`ÙòÐ+Τ >5ž›(EÍËÀ¶Š¡»ˆðŠHTô{“+àÅWÆÜ=PDB51Ép‡ovw¥¢†Oá¢Ræ¨@¸—\ A:¿ZD“l¼»r šAí häì rH(%Púâ9´m¹ÇB®¬¡X™:ÍqÕÜDBÙtÙùöˆ¦}m3õsI¡ÁTƒW\QœÅËS[_ÔBüþVðbñ Ú ld¤‰9.t ]|D²D‹Áæ×Õ{ýY°®®LWUÊK@W^ȽlI(¨ÿ¢›6„Fï7¢òS…)È–¤¶È½oÝFU½C¬99ZqÅÙÊS£‰(¹LãVâFáÍF_êÄòÀuI7|(ê€EäØjòý´_äü¶"׈†¬¼¡î$1 `¡¬‘ÐË>P_[/cO+Ûà³ÉéÍ&ßìÞþ;à›¥åÉú²cùv,߉ýîX¾w ËWñÒKž£—€¡ÕåI悪ÿÖÍ"M'l}eíúRHGR@’dÜõÅDGáu/}A YÈX“ÜÛøê ´á[{emMœRã~ÑéUá-7™8PB¾¢Y{AÙ~é+JJ£¡ ”ì*Oá€.‹œo,†?¿G7½é[kÆÇèe³WXƒ¡º+/s +o³·âð2>78¼ÏRÞ³àý=ÞŠ÷[ÄŽ®x¿¬Œ’{Û½_~o†bF CaË‘eÞV˜¬¼‚ÓCâËÄÄtÒk«cþ`ƒèÐ3‘lx Û¢HP‚“j JÿnÍìø½…£ÑÓ’ öÅïëšçÎüž²±š¿çzb-Ïð{¦k˜éð{žCÎn àóÝtì|>Ç•fàsO5cÀç‹ã÷°(;ÏçÀ§©+/!S@]õ#ªéAyp9ì*ø®{Ÿõ¸©Á8+ñWÜF¡p)ªçZ$ó@X}ÒS(EŸ"­êY 0»'½ð…ŸÌi›A)SÏHƒÏµá–Žà:ò!ºE|áÐvÕ‹KÁz“…õ"fÝT7ÀãžPT˜”¬Ñm7@6Ý8;е›ƒ69k:§øØH¸h´èÕ->¥†NvÞ8o¸å´fà›Øž}bÃ9”nè}TëȪVb­éºw^)ÑÅIû{°¦ÑÔ8^f²=TSXÅõ2T3²LU¸gÂr€ƒ;' Ö*Œ™ Ò×ÇOGT,âœÆF¸˜ÓäN»y æ×:>Ú171UΕÀe‚ht‚•­,h£Oy™rä[µÄBæøNDzh;j|¯æƒvJb: ™Í=f´2bO¹Ç FûrP){üÏýK·`ÖÊ’‡ Ô”×_')ºwœA8‰¦Ú 7˜ª½©>&FùŠ,’!Û±d1zDèêš[@oä$kº 9+gc<ÁhGCTÒ²ÒÚL˜ºÃÀ“j…’%8*AÃF’ Žê{¯€£î ½ÍÚÛ*’¡¼ƒöDs‡ ½Š|Ó91/ŽaÿZ\Õ&rÿZÜþµ¸™×Ü¿·-n&ÛüZÜôºüzv&G»CÏÎTÞ¡gä±CÏŠÃÜ¡g”åz–I ÙÐ=ËXÞ¡g;ôl‡žå<ïгz¶CÏVd¹CÏŠóµCÏj\ñ=ËivèYVÞ¡g±¼CÏÞ:èÙŽ7Ë¢€ovR¿;ÞlÇ›åó´ãÍŠF½ãÍv¼YN¿ãÍÀwÒwÄ™îqVÏŽ8Ûg¹¶ ¬ïŽ8{‹gÅÜ'Ø(‹i=8q£LXò”²4Û(«Õ[(ûJOãQN }P–†“h¥*¤,37ŽŒ«ŒÜ4ûŠˆ‘ТXnï£[ƒ¨\8Û\<¤C>cÝF¶Ò…SýÅÓû„²Žh·‹óL§G(â¢b@Ê‚ØD—$ÑŸQ°}úQâ©ôgt†Ôëóu[Þ0íSæé‡6y×p­Î Ôõ=uN·õ¸>³AlEãÊ3¬áH\@Töظ9¿›¡ ƒPžEöL›ÂÕ&©üÙOãC‚!{åFÝü€¡GÒ ÌÔ}~3L#Fz!²ôë›%èxfðTég8C£N•–¾¾é);åë›nÞ­Ò‹xNGâ↛|}Ó™‰ÕÝM¿¾7(W~}³—nÍç7]?’uû]Ðt®ç0@)jZbøÌ÷c=V4×ôhs„?bÌÔœwhÝ´ë=±ˆ~:˜M¿z»c ¼‡â&ˆPO`ŒÎá™sË£õ*L¡t)9U\Фÿ½Ÿn7BûŸÆñ¨XoœçnøÎ¡sÏ|°qg{Au>¼ºøò€õðæB(Ý5NyœëÓ¦B;äj|òãÅ×?_°öàú__>¸ÊÖI®7í[h˜‡«N1×_ЯÑâç`Ã3êés°ab-GÐ\ ¢OF_³[@ù •º•¨aÚH>Rx\ðXíGÒI¯¯mÐð][g? “'Ú*6ù¨f"n€[„¢…¯¢ZuÎHRWí¼¾0,þ¯Lmë—ˆ VœÍP¼Ü¿ÃÙäï=HW"bÕ9Ê7¸‹ì£³ù·|éâ>_‹BŸf«tEüDÇáû#žNlÏ^ƒÀÎiì1½ý`€H[`ykÝ9÷ydïÍó\îšõ´›{=ÿ&û:wøø±ÀkwPÏ\±µ|+ö¶Å¼ØUV²¨—SÀPo®çΗ(fÄáR9†…à¢iªÝMåÑË}yñ?v”Éæendstream endobj 147 0 obj 4626 endobj 153 0 obj <> stream xœí]KsǾ£R•¿€[®`3ï‡o‰£DNl—3¹X9ð)9!EItèØ¿>Ý3³»=»3H±tÐb4;¯îþú9«sÖò9Ã?éïÓ«Ùïþfçonf¡uÎçíŸþ=û0ãéK½ç8‚¸˜sÞz­ùüèbÆS+æV»–;9?ºš}ߘÌ¢œ6¦iá‘9a<‹Å’s¡[Ùüy±d­dBHÓœã3ç ßá{F+.iëGh–¦šcx”R8ãšËÅRZÕ:ášØ—9ç¤ln’·Š‰|Xh³ÖØæG|I·ZŠæË°i¼–tÞ lN;ï›ë° Ïl·i”i®ðQYâr`{Fîfû!ìXZa-a˜ãŸG“ôjî[o„Qá$}˘uó£¯fGŸ};’Ö¶6·ÄG×Já›7amžIÛƒ©=sFÃȸ}Øt޶Œ;”f?¦}.ãèÒ#!°»WªQ0Ÿøâ¶2|Ö+¬o9s°hWœ¯ò> !Z¥ vFz×­2âUh—@W<[cZëu8YáæùÐi éa¼4 ‡ÃÄÃ}q4{5S-ÓóŸfV°¹ÅÝ:5¿š Íá%Ó·\ξ«²ºÒ«;×:é‘åMë¹üþëEX6—6Ò椯â?2¯Aç° ©…sÑ}=ÕT%$½;h÷©j½ÿL`å@6 þVPõèm®Û¡399b­ŽL®ž"#‰Dªy+s#*´JÎ3cè-±€H8î2Þ¸(OZËæÙzb6žîSÔOˆ –f½Jf18îkl*†ƒ;nbpÛôhßaúÑÒN<Ú=ÈV=™X'¾j$|®‘˜¼£Oì@ 5ò˜6£1ÙÓÁÛë1›1…Í40…êcò*m|`Z#]Æ9šÓë_7¤øýté?ÇîÂÙŒÓ#OCß_È™îêrºÉ׋»8Öp[ð)õEˆãònðVÞô­%Þ0³7~+…îõ=±È*ÚûºÌ"[δ^©,C¡f"¡mEr½oþDœòuBA¹d讲8׆i…±Ï¨÷Ш÷S´ñaÑ™aH¨ýf àÛœM¢5O ºžJLð Óæ€Æ¬Ÿò·šÛX¯G¨ äy¯¥±­H Ì'lÒJߤô—31ýeai=ÌrfŒ¤‰¨”B"u)28—”%¨`_r””Êc)ÿÄ…÷$¶ `L÷Ù%L+i~5ㆠàë¾eû´’ÖªZRZ óºÞ©ÝáT1Õz9ÑŸŠÉV:s_pª˜ÆXîÈ?ǹ¥;ñ4.ó5SñKj¼_Üyœ¼ð ±·—v±Ô¿…“Ç–I•ÙHÿ㪌²ÕÈÃqþjØ„òÕîaDÑÚi"0e«È6¡Ï1>ÀÉ‘µ„ÓÀ¢:O‹@XÉ"™Ô²â2Úw¬b„’‘âªå¶P'?s¤t<“=Y¸/˜haî³t@Ì·g ºº|ÂîÜ^Ä1ƒ:â[àêİpô–N8¬Ïg)™Eˆ8Ä" 1 ÎŽ6Ѷƒå9øÉi¢Ô#b“†ò‚¼u6=T𮓮®¬î‰èƘ¤€¡™r:ºÐ‘©¢"FÅ î öî Ë‚ÕÅ0ôV%zw&y0{ÆöshUõpÞÖ븞ÒÒ$ã e¢íWW´:]°ƒ…tƒs®Aš$ÖÒçD­ÐçØ tL(Ž‘B~¤…6ô 5kñ›û…™?º«Û6ÕI'i@*ñÄÀÞD#ŒM~æøÃ•>]?eºó>P}–RÇfÂÌÑ—ø0 L1¡ \ÆEë¬8Àu.Á¶Í͸¿͸dd1lNE<šví,%MÊeFhÝúHØAn¸áð=ètíÙËg]%ØÛýðtÄÐËŒJ2k¡)¼ú.–Nê†ÅHiþ{‡wIQSÕ¼äÚ±hIzôëv0.Ý/·0.!8á»&z¨,“ÓˆIÐN¹›‚Í<ò&:*F½¼›Üµþ:<; Öu–8ÿGŠKy]Œ‹Ãc(Úã0%ï^dÊJ|±7×úÔ1÷ kŒ2ùI˜rÂÛÎPPSŒ©}±Ëú:ñ¿ŽÛ¯FðXŸ"5@Göæ”Êáò Œ Hu)r•bŒé:üâ:¸QÜaÙ¦—Ws^EPúü]80+3ÇýtÀÕM!ÖµÚäHººÄ4¼ùP%¦ˆÒ nÜ5„i%-Øÿ}Ëö8­À÷ÎlÓ‡æ"v´wv%Sf(rÁð­ÌšÏûÚ·Š1“¬ïLQ ®ÒŽ“Ì[S®´UúäðˆS®ß%™¶"å1…ýúç”þe™ëGÈ@CJËDl§{ç Üuj¤OÕlçžUn\ƒu2±¶ƒ:Qµµ{å|`Ð êb»¸BdÐq¸j]H•6éó—E üeÄ2 k× „}“•üÿL|8õ¢3̤ý–è®)P ¡³´*‡~žŸáE¼ øÌ$Þüè[vÀgÂRv”óJ±C¥\¼z„Ƀ¬xËÔ¦œDGJ*µëë—©œÇ5‹QrŽ“øçiF0¥, þèIX«DZÿ5 ô3^¯zóbôXç£ï£2‡´†Ñ„ÓªÑy^W|ôÜ@i9 4£±F<""–]ô+TÂ>Sø€)Lþ&¥ˆÁçéÜрΕ¤^õ*®Ck52fú1–•ÜÑÊñ0‚Yý\„.2-0:ÃpЬÓÅÐu·ª9¶Ý5¥OT‘Põž0Àw¶0Ò§¢1j†±4 ±ø¡¡†C„-Çô½öEŒý¶r¢l>Só^ð™~hÇ\æTÓw+Î}Úº¨– G%³åz†µñCIEõ´ÀPeˆ,< 7´™„96 K¸Ñm\½`T‚1}ÇÛÀ¤|°ì¼VB_Ó&·Æ'øK‚áC "†ëB)®’­b})îî²#ïTP²wÙÙ8ì•@¬ÎA¬–äy:Å#/‡½‚Xq.ó¤u) R Ú$eYICžvÕ»êÎÐþy9ÍZÆïœÍ•ð(­© hyÑU°¸ÄVŠÙFLV“¼æ·1î²ñ;n\38»,gYHHÊX"†Å%@èÃJ_-à$Þ1ñZØö-Û§/f°Å6å%ûr˜^ÇCÆ×™ýA>æPsqº“ÖÍ&WÑMÁôŒ ~5-(Ý¢ºkä.fèã hÝjµC%G¢|`/´|*7ɇ’ H·úcq«o7FûIÚš]¹Ñw!<Œà UÀħ•Ü{bÖÔ’ŒyȦ¯>-ÎM™¤Rºô>Ëj%†êžx9™h|;{HĪãÚ'ùɳg®}0®­•Æm‚¿`£¨ ¾wyœüT>‚H¿À·œÖ\Y™Ç'e:èºLO(F¦ ÝËå´åu'©ÃBt~"l`óËÊ·LâL_"dZst`g¶©›ßdÁÂâÂ¥@`Jrÿ‚l9]¿¡·µ×/rH}"†½ûùYF—ž[²ªÚ?F‚Áž4YÿÊ—¡ÊŸ@ì¾³ŒËß&f`ýT†w€É§¸ú.RQz¦×Þè%ÖÓKܽ»>ç+$»•`úe„§‘üšáwUC¿ÃÕ²iš&ø§ã¯†FG§X¬y¾5»sGÏ·ÇÔ vW>Æõ÷ѹ­X •Õ$ E—Zøw8jºì}|¤æSæ¸ÿ«Íîßi@›m¸°d#Žù½p!p2óñ?äpx™ÃÌ—wÍÒ$ެ¼`±á¹4¾šýßó endstream endobj 154 0 obj 3575 endobj 158 0 obj <> stream xœíÉŽEòÞBš_xâToÄ+ç¾Xš 0šÉ@ψpp/n3î Ú` ??™U‘UYݯ·q»A(gGEFDÆžQïû•èåJàùÿû';O¾ð«£‹´º’« O¯v¾ß‘ù"C¯>Þ…¤ZIÙGkåj÷ÅŽÌð^­¼ ½ zµ{²óuçÖ°‹ Ö¹®‡G”ð¬×)•íu÷ïu4½q^w‡ë ÀJ£]÷€*/0ÝkD ªûŽ!ØÇe-½ ü½‹õF{× ç»ç µ .t§묑º;@Ûï»gk-{+æ ³+í«½‚·h_á¢ïŽÓ²tÁÚBƒÒ@Ï¢3ZøøíîßAPѬbr& *öBø°ÚýçÎî¿ö ߻ຠ=廿 #„°0¶(‚³Àl"œ:|ÿááoH‰ 8\¢_Eïæ8~ÆMb'l²¦Fýb­ToŒñÝYQVz˜7(&­¼ëNÒºF HvôQ{¾#Ç‘èó>„ÂùóîÎç;¦võfÇ+±ò(€`V'; @z?,ï|¹¨ˆÆVòÍŠBtD…t}”ž´ñ(W­¥öt4°%5ñáõÝN3  ¼ÆÅÿZ÷ʸ­ùW"ÄP€N†bAõc“i+úlfÚêÇÁôÛD>¸&y5ÏíøðüKÚ‚ž5¿ƒN‘3(ë0P u+N­ø<¡<‘—ƒÐÊð }æZB Sœ+œÀ,DgeŠÛ—:{ð$²ÚÆÞ;Ea3ŸÐ \ö€Ðv¦òAÉ‘D—¢³’֙سõ— 5£ïÃŒÖDÎ@¢HIAÀQò0ãCS²vÁgÖâFþã½W¾œ0[`EÛÊ F„\­XHžœ,$ùòðr²7s’ïýÉ2`ÚÄX»W~ì0k9ãaÊr>å´Óª–²{“ÒD+þ;Ì£ñ0³¿Ñšè@B£sÕ³ÙÐpßtlù®co \Ïèì˜û CÁ¨Îiµ–•H¿Y_Ë<’|“K€Ç ®?L%88ÓhUŽéP‚NÜÈZñ.ÆÔ§œ8ÊsýpæþVª‡,XȦ玤.È7Î÷^Y8ZP>íóÑ>Ëu¹ T—ƒ)€"mQ—?[xÍØnËr®Ëe\ª’÷Çåã¤ñP[§Þî-Œ‡R®cî@zHİN‡BÂjY¹y¡ncèüÿ÷BýÁ'·Ï˜7ÿ”,Mzг¿Až›×ò¤Ä;gÿ›¬ë¹¨Æ÷à™î«¬{Øü_«Þ,hç¦Uz›§u¼ø¸ŽªXõ8|cŸ%9,Åšå¯Qè*ñŒí0E¡(bºì€D*¸FÒ5žŒ]Un½G½—IŽ9m5Í$Ækâ a2˜wΞ¦òÀÏÛ<Ùo4\ð–gÌ.Êbáç™´ˆôËÙÁ¤’€7ØF¿×ò Œ‡D~`c9÷¾{ž[W©á£¡¦|і楥b»ŸšQƒ`èŸsçd´™ Mθôe–@ŠÓôª*¼yA^7}Š‹½óî!µ|h’kªOsµ"ü»ì{£V)8ôà\uºe›´i1*J8 ÿ{kô¾[£ßP—EÁ Õmö7¥;©Yëó.oP>’ƒîuð×R7màq3u»§–§ë£¹f˜zi2Õw6€ý4!¨õ°rY?­æ´ôÓ¨†E ½-cXí{œ6u @í£™øKþbRX· ixU¤)¤‘ò7CšÎ¥Ë4|̰2.TJ<üpû~›{ÊBÖN{°ä¥¸uHÇë\¼Cc/;eíV+i0»RÉÞ¤Šéü6¨ç^fçíóÀ«SS6&§)Qj³Ú™<›FÏSYËSqÂë±¼…Ýb÷W„ˆ2€Z‘ˆµ‹Qƒ­ 8>û$P3˜'ú†Ô¼}±£€l«cpûrdCJ‰…‰¾\CÒj>%pÏ8\‡ÏZG‚G?²æË w €8/­á"ßeˆò‹Ñ§t;C$£LÀ!ÀÓqù9Ѥ´•%¨/ZAX {ó€ $˜À ÄiebÒ ÈûåœI¡S˜h51¸I«å)“ G†¥ p¼ÑZä§=ö†·8Ä1É|¸-ÏID?¬‚ féaƒaD’ÑRÉT%$šÓÁ÷æ;Œí^‘ÖƒŠ¹r‰ŽÓa“#öÞG”¬ìØP%Äöæ‚ë×cL/SbK2IÇ‚C¦Ï× ï$¬†dÛZ„ÖÕkĈn@AÏfo”NÞ'¿¨…ÑNU¤ž1$'mC>}‚à§Ô‡Y_£% öà/"Sx•tž$í<8ÌÏ’ˆ2Ë­Yã¨øÚ™o ©ƒÌW“èß  0èV–¶GºDA>U8~¤üÅ‹¬D€ïk’¼Wl$wìù[·NUØ_Ïä9]lC ïøãùh¶ÜVŸ²½Ÿ0Äü™Û©C—ÚV‡Q—OÇ“á/€ž™ÀÄ! Ï\N§o&U%ó‚}fNüùHF­Y ²ÙýwÔ=¾õ~ÛÔ¸0ž4ùª.±pr¾ñIR=a«Oè,è¬æ’JZ¨/T$•„ü–]Wè¤/ ,Æ šÉíKNê6èÓÜnR3þ|A¸m"Lt—íSvÅ –ÁÀFìtªSÀ×°ž8`bJÎLã@š¼2‚ë|/NÚ⻵ñ2ƒ§Säêôý؃ÑÍL5Q>5Õ„÷)#hÉ:+c7dtpò²F,Æ{š;³Éü&Ú¤ô•{ž%ùá–Q‚dæFé•]²-fÞ*;vœNPêRæ^wƒ¨FÐH{2Ò–ƒ‘µ³aÇ7#,s‹<.«[“Ö~|•üC„Šß‡‰ø˜Rn¨)}I8|°&ŸÄôK“?…Ã æ ²ý¨ÌPBÌòA®Š< œ3”ãÐFC¡&¬ºÔø‘ »e2÷0³h|Ùx> JKuäÉ•³¿ wÜ&>˜æ')âPZ飛Ô,#w¹g fÊŒz¡È<¢DÕÈ*)=ÃU“ꌅԂk;áÐ=ÌÃR] ’ óÍÛ©Ø_ ª4_ ,3e¤pìþ±’;ÛOñÑ€àe÷7ªä ÔÝãsK2hgÕvZ‡Á5÷³D_ð2ÔÍïWëáF¤ôæÈ)–Æ`{nâÍØäíIÖ££ö¸‘µ!Yë‘7'íËY—qÒO<+ÝRU ´.ayUز Lý°ÚÔ0L‡ð:æÙ\QÈà¼þÿë§é–/–&|{¨xncVA\Kü.ÓìwÒ$YÛ/L/XhJ¤³gaR9%itVëOF7ÚðNÉó±†wBÄ=UÓ;áíœðKÞéÒé‘£ñB®\‰Ûz0jü¥uA½¶•ç „E¾èе3Þ-¶Å\îa`Ëñ“Âɧ/iGGqˆGÁ:ùgÄŽv¾îêç[UßéÖWHjðõýÊF+!zA¶òNÂS²ÛÀ< ¦·vÛ,´¿¾"¦.imÔH‡¸õ_•)Ày"YX[]æ~0ªg"†O™î/.0lóÛåè·¹Ûßããj 3WÒVŸp™éLD뎯báR«2a2P \Ñט!šŽx,\½^eFjj£î!ö]×H HK»è½Ñ7ºÀÆRWx¨ ªÌf¨†OlðhÅô»›2Ê0wÓoÅÓ¡ œ*ßµog 1TrÛå6­x¦z aÁ-*ñäiƒ®Ð'¼v&ÜÆ-÷L-øó“±DÚäúyÐ`rî"CžU0 í1Äœl@àÏ]ÿìΣ­®Ã†åÓ±²ú`¤óhøqø³·Ó…ª»_GXÆ)ÁZ•?ÂÊŸ-±-X–ö§TB[È2bKÊ)bœ|Ç–gMyÈX[­¤aÊ:N2«’9Þ×/G¶Ùñäè¡–/¨:7º Àø¦i‰™ÉÓ c pÊÜHØÑÝW¸aú¡˜¯^½†L³À;_¢Ù—þI–V"9ËIÑÆ–îHÐ4Üш™ãàýg hxj¦±8¶úÙÀž½VÌ¡HÑ;¿25å³?Ù¡èjÀŒ²…43†ã0ÒôA×ãc ¸D9Q֢ϕx?ZbÖ³Ê D‹z–öŒœ®®?ŒÌ¸­ö†pÈÂêïsçsÐ|ôKø²¡ ³ °á¯4ÝU¬Ç]Øo=4óØR‰Åƒ÷¦ôã- R¾¥§“©“|yôf"%$Ú)I>O3šx9( ß› 'O DëCõÀyì°X:ȉ≗ÙkBèRo#>(_¾›ÁßyàORåóÐB[Ý(¥œ¤=^,ÛxÐ󬔨ÍûÍL€cftL‡Á%JGrˆ¢Ëx ßæ63à‡QÊîŸÔô×5ZR÷6¥œ«~ £=J ¡(FuWu¯ÐsÏzËó)×ßlÖñ¦ ÌÜ ²d‘;±a®ÔC’16h®­|¬ŸwíøþW¤YëIy«/ ·r*xÓµ?.)×±Ä2ú3:ó±Šn Ž”ë-››“£ùb­l省’î2˜F«–ö'M“ö¯fT•ÕÔGa8ñòr‚ëãÜKh¬JQ÷XÎgþ`ÛÂnVSÐÏ,Ô½ebÚ/ÎVæ˜&ÓûU©1 æÎãm™!wÍڇϻ6mеŒeF5õªçS·9 &l¶Ñ*r6¶Åƒ«Ä+°[ d_ÃXî¯ÇãÐSˆí{<Ü€RVð‡/OSf?2•{†ÑšÒ3ľ-Ëæ~OmþaÍ´~l¤7Wu]Àò&ýa y±s9jþPš×šŸ¿4‰ U1ÛŽõÁ2(݉”ï)ÞIÙ]K¼–˜¾‹:˜ÃZW£lTp¦ÿ|çAî»|endstream endobj 159 0 obj 4165 endobj 163 0 obj <> stream xœÝ[[o·~?(пpЧ=Ïš÷‹ƒh‚4IÛÀ‰£´I¨’m Ñ-–[-úß;Cr—C.w%ÙjQä!+š’Ãùf¾òü²f=_3ü/ýÿàtõô…]¿¾\…Ö5_ÿyüúyõËŠ§?Xê½þtp±æª—ʈõÞ«Oý­X[ízîäzïtõCç6[Î…î™í>ß°žI«¤Ý;øŽ¥»ýÍb¼¶;Åfe óÝÅ[•¢;ÁÐÙiݽÄfi¼—Ý%væÖ ÷÷½?á‚ ,±÷Ìs\€µié×{Yí}ôL³0Ë™Ö8;ü!„ÒÀôЮ¼š‡é‡‰p~)œw0ý6¬JxÓã·”ÎX˜«¸ï™…7¡ çÊYì®,XË(O2æ}Ñã|#\Ï@#¿Æ5 cmwgtŠËî0£“ÆÉ ãCï°¾3lv½u¼»Â\J®º£q/iAÞ›AšòÎŒ ±>)DseeÒÓÆ$}H.ø¨°<*ePqÕaÆ´:í6ΤqÅÀò—Í™5 ›Z«p8²»‰ÓH%Н˜Å­s+ÈÙÒƒ;ØÛ;ở7Zc+ž+š–d NÌ{ï,ú5ò2-Œ”J:åÆIkÚÈ ˆ C'©™dD}_†cð@·Æœ“åÚOÈÈ¢ñ¤e+„LF»z¢d2TöQž˜ÌûYß6(u›´ºå²×¨¨ÜkN«a¼õª° jîç…Òa&ñ3J2G,ï8‘à^7Ì/½‰9λë<=ó&bßÄa6C/4¿#¸Ÿú¢{`º{8r#»§DÌ—øm¥ÓbœVXå¾Yá˜ê>ÃV%s]?ìRv{'{c Ÿ‘Ž6?Jõ^j@'Ú…’¦íuÞYÑ3ËãxÖ·E° ð·v@+é9¿ø8ùÝVÔÑ'±û†Ý„¡7 HÁë—~+lK/PôFIj ÏsPוÿ½rYã¢ÃùÈ^T¦GÁJ±MVU ¬T‚p¶¬VœÓC  Á÷˜ÀýäV‡0Œ,3ÒÊ@IJHï“$ÃËÑ6H™ ýy-Ím¯3{>R“9šìÆßÍG?w‰ãlïZ ØEiCÐCmë*v°`¬%’Jß=|j sî'^P‡ëáp©c¡‹ª°(ø Ïz§åß÷FLp.,u8Ô´G“sÝWQ0Rß=¬ƒÃ_¸¸Ï÷Vß® jéõÛ•& Aqm™A°>])Å`'zl9Y}7Ož ®:gÐ[cP¨$è/ð*`¾ð=äjk@5€.tÀŠ  Ÿ!ú¤ã…ŸNJÊ%¢„€T]º·ã(*«=5Ë'ÙD?a\ØVê°|!OˆsÄ£\CN!!ÞÂÑp®¡—[î4 Ù iâÑ|‹ÕŒž…é¨ME¢-3©ï¾7FÆ5¸JÐóœÓJVË´‹FË=üƒÇ3ç¤4¾¥½åeˆƒúõ¸Ä™¨O¿p@3.¦—ˆ¬Ù4dÖÇÓ …¡4^_ÅÍñ!"LŽh—šI$ÆqÞ¹Ù " ³wRÝØôÔÐ+¢S>ðá­|^v寓š eç+ ‹‚ß=k6¾ØÉÅf+ЫæP9éä”–É u–}‰ï§/”¦Ù ¯{p y?ðw·õÛLçã(Á  á§uƒ¾Kòˆ¬Ë`ÏJ+ƒ™1V •äµ'€zr â`„ÆeôZ{ÆÅh ÄZtu´°ž1ƒ%jž²Â(Cw-á³8Òiô­’Ã"Í8Î) ¹î›€eí•O³+Ϙ+û¼‹R`ÞXï œÌ]bÆz§J ­´sœG"fã<–K7¨DcÍ$BzŽTñ$7‡Íƒ]ÃIçÆZÀL–ÌC§§ýÏÉžéñ<Å7K2ÉŽø½ rˆ=C´_ƒ¡8àÅ›9„TçÆ–b3´ !ü?D€ïIܤ™I”)§4ƒàïõHY2hÂlüÒ{`îRûÇ€±Ð¦×Îï‚RH Àu{`-Á”<à€ÎS:†Ð²ªùÐòã XO‰Ž£ŒG‚Ÿý(2š;Òùð~ÖAd;Ÿq 3ø"¾àÇ é1eÁ41Åtï¼üð˜’àÁ:Ö°*×+˜’Ê;cËý1B¥$`z1EÓ†²…o(ÍMÿÀµvS¶ö3a[ %=! ”@À7°70P5-åE‰‡±‡ª*)5Ï¥”@ •(’k"&û.Ë@)–èYYH ¼|€žA,Eµô¬™ƒž9Ú^KÍaoíâõtt÷$s¢:¤»§ÂS‰©òh4-™¯‚:¿&Ž.V¯”QfwŸç¼B<Èçý!¸.·X³ Q=&iÉûá¼’¥g;Û‘ÓðW °s¥”DwWt>Éž­hO€i8Uêòˆ'…è·! ¨ªŠü3©¹,» z®ÇR¯Ô`Ê×Z8Ž7ä§+e„ï[v¨WBÚëÁ¨5x·tÓ ;÷ÈZ~¤+=Ì])§bâöçÄ’¤V² çç3 û.ÏGj&w¹Á‰o·`(¥VÂâ°«ÜJÖð$’-_U¢„gõÁÕ[>o {F%„—Ó6äa§˜ÑÙ&²¾XXÉÀ??JrfßDá¿ß€ÇTx}KM½Æ[´—ñÖg oš`!6åžµüEéUsØËü7ÍUÛ?L§ÈÕÒ1Ç“9k {G÷5ªx7ƒûÂÍ,1ÈÚ¥N"ZÝá,EUî»Orë'ÙçÞSñ[êz‚ ïù÷è Û¯[,¨ÃÙL¯Ä&§Uä{¼^úvõ@ž¶}endstream endobj 164 0 obj 3945 endobj 168 0 obj <> stream xœÍY[sS7~÷ôGxx:nëƒîÒIà¥LJÚ”R/ÐÉ„8!â¡þ÷êv´+Ù±›–vòർZí]û)ïǤ¥câþâçÑbtÿ¹¿¹ùÕ1ÿ”¨·£÷#¿È=þnf7PeWÚŽtt<;ÑÈO•i;FÇšè–tãÙbô²ù~BZF˜ä²9›L--Œ ¼yc—‰$\ Ú|°4g¦3Í•ç TÝO¦œóVrÑÇ,:Æ%mv&S!DÛYϽhc©c¿‹Î¨æ1ÏdN5ÙáéÀ7á&x³ïöin$S™¼w ã©c1š"šGa§V:ãþ8aº5ŒÐlõbÂLËh–NµâDs툖°®9q«DpÅz®Ls‰,YDE9Ë ¼ˆZ>40èü.Ù n^†]†p«…ÖQ-Êc¸ÉÔˆ†0-LvöÂ{ƒH¥dÓzI”¤¿Í~´ ¢Ä¸k;Åì§M©–m×):ž2nCÇlnÌmnÜ·(ïˆê,9•L´š•¨u–Ô^yË  ³Z¤Õ# Ï€áV?;a²UL{…ãêE\µ u†W“„w°úÈeÜFÖl Û®)˜jTÒ¯¹H¤ó ¥m'Ùxöd4ûúeé]€DÎá ’ô Èd÷50,aõªêD䘅³Pµ’fr‘°WMŒÍ=à@ÖÞ”‚ Ãq$ÏK}®º¿WêZÃEÑâ M§öùÁ±GѶóêm0‡z8.Ž@.ÛÖöºÁÍâ±.cê1G"7T% L@W8ÒM-VÐmsEô´+FË«·Í•“Õ» ’#¤Vvó¬V/Þ1‰á÷aì™Þ´ÿn¸ÚÒíh è;ËÛÞ·–?‡,}÷ñ}x\ CwŽÊ@¬…$q„=Qa‹!"m¤xLtºj ªÕB7Ý$ÇcšZ´Ñù«• .™Î K?5EpÄe‚LÜ(≰à‘ÈŒe€ªüjª(ÑÊ£*+€ VAUþˆU9î8wEdvšì?¿K;ax¸çÄMµÎx†¿d¿¼ð[l2Û¢ŸïQ«â†¹2O9p)2låy¤È=Üsî±]÷uRò<„QYgyíhÝGÝ„ç}Ƹm›!r¤ÃV^†U!ÕfÐ×¥˜äJ÷óç£ ¢Ó;Û„q$¶ ãÈsQ@ÛtøÜsøæÍ…P6E±Ü3ÀžÂö±S¯ž‚Ôh©fL¤DfF–ø"ìÍŸRû)E¬ÂÃ𫿫2(šu"ËÙj®”û’Ý&£ èâ\T.`‚]mèhdDG¼…û«~0CêS1/ÐDxVÜ·Ôxc`d-õ´Ô¼ÄVpØ¿@Ý ~uVr@­¾r]À8Oêú®»ñ«^änòâzÀñdPÒ}(-@R2ŸT­Eø.á 7f<ùRâq5tw„˜B`ߢ;ªz‘H3”e‚ñ`w¯Z›7@–h.ˆ¸õ)¨|# Û }:|[m0HwÔvªd½L®AÂNx…±óNÇT îlã¾IQ~èõ&JͦÀÈK$û 0yzš#|>_Â({¼æRض ExÃâ•q¾[÷`u‹7ìîÝt  È|ƒÉè‡Û€àv¾¸ßéfËž=*.¸uC8¿MìWÏÿ> stream xœ¥XYSÜF~ß_¡ò“äDbî‘ ÎC\$8‰+޳å;E–«`Ìb°“ÊOÏ!uk4,×>lo«§¯¯Y},Xà æ>ñûp9Ûzk‹“õÌs ^ü2Pç³3°(]ü0‡ܧéXÇ‹ùñŒGy+ m@±6Å|9{_þX±F0®¸)Ϫhe[­Ê`3ÕÙN™òÐR´][^{ ÎUkË£ª–\6VÊ’a!5/™£5“Zñr»ª•Ô ¢|étÀaËK"½ªDÛH+Úò¶¶i¥öŠÁˆ”­±#ƒ7Πmc‘pBqƒâVÁ)0Ì9³¦\;.SÒˆÞ“¦¹¶ ñ)É£ ‡ËÓ‹£ Mƒâ=wÌÊV Sî:uÌrÕ-ßУ'ïüÃ:fÊy°ÄÁ™Ã‚êZ“8t+Z¦T¤™6F %Dìµt-ÿœ¼)5Ü:Ù0aŒK0ã1²ÒK”}(cz`š>ËÊçTq.MåEê'÷;R·_²8“ÖcÏêì]~¨üÊ­h”èú•½3*§ºZûYÄe:Æ »¤>²Ëzÿc¿L _ø{f/û"ráZÃñØv2‘ý^`.H-0v‘{›…s•Å{v†ORó %#Âaýå?#dÝò„yÝ/Ü>¢-Œè$Û«”›ö%iÆ*ôò÷”1ä%?žˆ4.NE«8-Ý~ F̦¶œlÌ´-ù-ú»—M'餼g'‰2·¼ÚÉä!*îëçnƒx‘–Dnf¥ç3þU—–˜ñ{×Uè£ ¹Í´*t¼o÷²žüÏ;ÉOy²û+ Á@>wq[˜cšÊŽ®CÇHŽ»bÛd!?åþÒ † ëc2Ð÷“0'>|Îú°Ÿ˜Çž2ú`˜#]Ñ9˜v@¾œG˜›OH’)ð÷tj‰S+¬žM•}™Þ|l;ÃUws;ßeç3Y‹™ù ]Œôi½7èÍWí}c=Mñ¦;»çÖH~ Ò»öM6˜XzdNwž>jY³)—¤i´%å# ò0 =mÞpÁ[¤;ù±Ér~œn œIý5uØÉù±K”½Ì*ÃÎn‰¯GùÁ²羦×+_î~õo8 ×Öð:cüFT0 s÷>C5œÛpFTøEU£÷;»óÙïðù²I…Mendstream endobj 174 0 obj 1367 endobj 178 0 obj <> stream xœÍ\[“·q~ßäGlù霘g8¸¬J¥$Ù‰ãKÅ–X¹”¨Š”–±È]Ú”,1ùíé0ƒ·³‡¤ä¸ô á,.n4æO×ë"®Wþ/ÿÿÙ««‡Ÿºë›7Wñíµ¸þÍþôÍÕŸ®DþÇš[_ü˜~ äµÐ‹ÒV^?þúJäöN^;ãáÕõãWWŸÂñ$„4Ëê¿8®‹ ÊwøŠ…²!¨Ãk~´fuêðgnà¤ô<{z›+{¥›²S4š¦ÔâeHÿ¯Ã)o²zÑoœ±ªZë§í´ô~f9®ÞU"¸Ý×úI+vdfEk‰2¤[ê`Î5Ùe¸7§&š–H|\)’ÔÂ^T®ôG¦Bvçí÷7ïn*Š»$ ¡Í{ãKÖ‘¨^ìØÔí†%£v÷»kÜGRŸ¹wx½óæC¢a¡ÁíúžŒuÓÒÓÛ4?íÅýxE$… 6Ar^~À&P¬–õ&ü “­¤ Õü‹©~Q9CZ²R— /nwä@y@« ´ZeÈ<™¡hK¦ÿ¢tŒÐòŒûu¤ñ¢O:‚ŒÖd¾Û7&+Žeë¢Á2l.Ëâ†" ÝUêRèJò0b%r6ƒ‹§@’:¶‘Ö2cÙm3EGŠ`ú¾ó´ž§þé_ƒ+üÚ yøû‚3WŠöèÀ"$PåZØ -2±"ÄÙó[;òüQX°¶çïX$®?{~åZïûò4ÍEÒ´~Ù€ARhÛF¤L`”6Ž I›€Œè¶Ì%m‚ LÍûh%šj+»Ñ “<–U0PXq2¿,§ÚÎ(ú;ˆgÒ ëIÍ|ÚÛ׋Rr ~‰øTïb“þ!‹Ýsé(+ q¹oŽÆðÛ:\¹ 3 K¢i´‘$Zdm ì#h½M ´AM|iG#;›¼+6ù:9pÞ»÷ŒRÔ¤Þu*«  /‹Œ€PJùM­ÀúÂÑxó„„ ŸŒî/G±n³<œñƒ<Ÿ[ ™ÍÛGXñ"“À ºdsM Š“'V>±ãß#sÏX)­•žP;uOð9˜²€¡<mÀ¬£Ñ 4^hz¶æ•ü{Ž1½aoÄÊ1ˆ¾¶ä7È}Px#Vò}Û?ß=¶¡Ÿ3ÜÃb”L±MŽ\h„¢?€ÿV95Ñ‘~^¤à•ì_ØÊr"0@]c=f—#†ÍO¢‘»¨w¤ðæ:Ú0ÄÊR$àºzME¨7‰ž,Vèß• R狯œd«Ê4©`ô_•oÓ‚Ã:•Cíã¢9»@Á{ØÌùÉq욃Š3,’÷FW-:zgYÃ6~`TÏöÌ]^Ë@ØBu0 d§gᤦ[DŸÝ(¡½m0à’L î…8ÈÛÌcÙKÁGK{»ƒOþ瀵Vj–X)u=¡ùHgy•Ü8"‚fµÄ¨3ÉФGz4¡<ÍOzyO⣳2¹jGRâ²nÒ8«°³@¶ñ¯ñi[ V•‚N\?Îtb÷- Î 6g€q›‡_ÕERج¬ø¾lÛ±š”­é’ˆM@­Ss@Ù;)”1;èà”0i|¸G¼œÆÛ§Q¥!£&ÔüÒ1äë°ãM¤(÷¥2ͺrˆæF„ŒÌU~€ÅQuÖ÷>G/´‹¶g›´#¶i%âXu„~Æx³.žvРšû«+’æb¥Øß¼û¢½çc_îAêùŠã¹qZ•ýÿæ8 P·§õ'B‘nBp—¤*ÒüJjºn÷:N„–b»|ÞK¡Ó7ôRRÐEfÍ‹¢bw´“ôw!i–ßGèâáØþ†ƒ× r4uò¸x&Ë=½ú\ ¬¹ä >jL:¨ÿ#é€Ð)øR+Q9òªxdß&0Å%̰²¦ñÕkü7‰h» "¶4XR. Xý¢‡‘#Ùt•è)°‰‡`9¤d~ÌøÌÒ¹7ÐñWi<Ždº¬}—ZIœµÐôeú=ÓâqÐtS(Y3.lù!ˆ—Pømê¾$ˆ \Gê~—°rš«Žq«ÀfÔ¡&°®?=nÉ¥· }„1ØEˆ ys<̘¥”qþ|lÈa qølïoFcÿgʇ–²lÊÔjºOVœ1@Z¸ðáðqÎÖJšúœîõçηiU†`~ó*5û²Ämù€Eú:yŽÃÞ†QcÓVìow Éé#'”/jF ÿ¬³8W‘FœôÌÊþœ»[[so”‰W³‡›$¯:Üü-÷¨Ì*Gç€é€¸I±jK$Äq6Œ¹™uÝnAm4ä§éWÔF¤ÙËÚŠE‚ÕT˜pÏÌqꂽ‚9´ÑJ4—/Qƒ÷uªñ÷~–‰üijœ’ëIÒ³µ_msvA¾kò{_G2»•ä½§jgh’©‘}ê8®rRD…˜Ðd’SÆ_’yy­c–7a{[9ÑÃJ4ôÄÜDP2ÉØ.^;ûnÓ^ ŽYœ6Vô‘_AŸ;ÀÌBœ¹D<'IÜ”(Aõ­§F×͸µŠ,•è—÷ˆ ‹0JÎùcênµþ2[SôÖ4@Ñ,µðNnÖ¬§œëU«Úµèy«[mÚäf›…›Úÿ=H )‡À¶)îlÜU-‡Ø’S˜è5±IÚVZÓ>ñÅoÑ"%díÇ–—ÐSè5vÛí#.Yب<õ)-Øêmƒn1+¾%mYTëÅÒcÖ’5ÔFAÒ"™V–FyH?ˆ•:XÙ”õÕ*»AíÆPýÙÄ0fõQ¨ì`ßæ38êñßÖk¥p¯Í9c<#û¤pÙŸç´ÊJ,Ÿ›r¦6³ó «ÛbîOck· ³ØÚÙ¯#QÚ{[Õúo¤üB¼"ð ^ç2þàÜ(ø7 m=žb¹¾Î»÷9l™ü‚ëÉ©g/«=c¦e8×ÕÔHá>}Y¤ú%:Y®Ïµ©6€i¸(Z~».Cî›÷qäT%¶à©‚a$2¦¸3.RZp˜j¸0ž<>r!çYêÜ#O6e~‚'ú%̬\±ë¬P–÷ç©P¡ú]mæ‘xyÓäYát:#˜÷½KRdO1(¬ls°°2â£fÿ¹Á#PõY±÷$±™6ŸLŽöûÌáyË4ØFBõ"÷ç›zÑÛj ‘ñïSÁnÞç˜P­‹ß–€\@ÎóæµwÂ=(¦èpÛü &ñ g"Žzÿ“ê=Újh[“äk,Hà‹¾ Ï›5Dv0¨ Œ*„^q/>u¨ˆý\“Ó~•’xUt;4+¿šæ§Jói,VUxò‰Oå— ·âº 'šBÀ¸Äe†Õç0¥†BBá!GJ%jÑë~¼R˜×“cš%hù:þˆDV|<Ç›bîp‚0Î@ÿ|Üá—'<:žtâóiö<·ï‹4JÞŠIº"à8QoÖл"<«WTYÚ×øŒ±Í»°fR\2(ˆÆ(¶&v» ϵGÁÚð¬âü`S0˜t©Uä\>Ö÷íPE‹>{}áó÷Å ÇX׊ñ\úe\ßwã&3ü0aSòÌqéÎd“ìv ͵º/˜2Ó´wÆÒV(›×©„‚8ĹsµY]â Ÿ ˆýÝÕÞlãIa}tç*«b̈%µqÛz_düòŒAn²‹)|ojlȼfÁ-РAbñ_íc±õ2»—õ7a¨.üÈ–:‹ÔÓ YòB ñ³ª#˜ÇäÊÅཹ[4'`5GJé8ì‡Ùl’MÞLÄ0™þЫÓ(ìq¿j†Úi›ÓT×õX׫£íe#e® J¶B~i¡kÜ‹šQlˆ¡YDíÞ§v“?%”n€î¾skÞs&b?þ¹õ¹L ºÎkAª"®¸.·6™öÿøƒjHd-xó÷£4¦"G×V®ÿ^UsžÎšb~¨fû2ѳ¢S“›$‰ÑÇÈÍM²m]|Ðч°9sïjßÀí'ŲgÕÆ9Vóšv9ðòÕ¹¢=é@dÎäÔÝèÁññûÏM‰‰P°ðGËê¯#)€xŸËh~ùX&*Ó%U®¸ƒé$f5â&…Á,öë“æ¯" U}`¨u¹ûG8þpõ´ R’endstream endobj 179 0 obj 5717 endobj 183 0 obj <> stream xœÍZ[s· ~ׯ8ã§=5ï÷Ém“´IÓicu:ØŠ/’[v"_&ýõAîòã.÷Xrœ¶£Sk.€À‡Xý´£Ü‰ôSþ}üòäî·~wq}ÂOwr÷õ¼úñä§Y~e÷î÷gô‚tôdŒ"ÊÝÙ³Yö{µó6Œ2èÝÙË“ï†ïö1*ãƒ5ƒÜ‹Q˜è£qÍúÑþ`í’×ôT­TÆýAY7e‡?ÐSm´U~x•_SÚÊág-¥ ~xÌk­¼ ÃÓ¼ÖÁùáE>>©§µWÑ çUΣ³¯È§ÐFcL²éì ÁµÊ oH­àI@2ÒÓ()²e ²æé|'…Ͳ[O)=šÂ$û”z9ºà†‡Áº?¥µ'I×X„V¿gÇG>|†^d×YiïíF¸QjæWi·EÐÓ9¤žÞí•'ï Ù<½Ú«0êýÞòŽŽ«ÂÚ½¤–J†æq1@h=Þ¤íR&‰‹[N9á‡gi‡0Ú©î ì4¬rì'U<þUÇ ÎŸ§-‚/^¦=AaLãäëôPjßDÇÛù½×)ïGO¡µ™øâ/ü\IkC IaÅ*†'ÊlB‘E[GB“™É¯ž‚üõ¬V›„u£3¼²d.ëG ãïêš³—r|t^çì5¦dïåDX¯jhe;rzÔ½l†ÚšVuµTý{ÐŽ±ægÖ0RQ”¤Å[V}‹¥¨.K™ê4?†D»¬ö‘(Uí¨Ýð—JÐ/׼̪©ô_+s-nyÄBE¶îC Ä´Å5Ÿb)t“ïOXŠc›kÃùg¢aø¢l¢j›ë„&/¨eÈ)¾lPÈ;Eo…2§€Á„2¸tÂä|Rq²¶Ñ7‚ÞèÙ¤œSÉ&’/$U¼‚P9ÃÇrEvòj~õÝ>y:Ñ Tþ9¶D°Œóº¼€$ÂÍß×4Æ-Oëà¢-Æe ×Ô`FA¥´­©—|1ŽHD*,!)ïA)CtÁ5lG&J¥‚œB¿Øá‡ª9’€Ç®p|®ÂiŠEHÕc`’O_’Á’ú¨Ô1!ž: ;úbÃþP@«Žç‡¸°ka%dm)Q豆&C“îBÓ}À¯µ©ždÆ)‚œyU_X1{3•AmSL™¡}JæIÕeÀ±¶}γò7ßÚ餈i[œ³ýÜ×µU0©"‰ˆ6åÿ]Ö\ûèc€¶ÍŸéÈä×ÝkʘJoýÈéœØ%þ÷ÂÖŸ–Û-ïP®Ó ä@{™òPJrSÅu ¦V [K‰ÉG^ª ë~f4"}Œ×P3„]ÔˆÍ&(Qû'$)H”Ï“}"Ú9Äø¢Ø…ØÒÝÉ‹²4÷ÜÃn€r¡·• ­¬É’¯êŽÙKn±#‡†ž¸fŽ/Ü‚·_C3'ipÉSçbtví©ÂZ…)±Õ¹ã¿$}ÔèÈE¥DÑÿX?#wl’{ÄWÜsZnÑ5sàP`!瀪¨.ÞÒ$œh’ÎÔ…×ý`Fë[ÇHWyš}äéñ? ¤?¨‘q?ߪ þ‰²Þ¸±°ÆåWá³éâsiÄ)àUSîßp¼²–ë åWb!ÿöAFŠØd7¼îôŠØ¹íÏ®tÔD$õGÏ®(mœhš§ R®·ÀžËMT¦MDp¼hÄí÷Ùv»´gåq”›€Wk÷Gàœ×cS)rîEªX+4k±}ꤻí&_ycÛvwÅø×cª«®Å/ŠÚÖ®=•bÆ´„w…&7±ˆ‘0¼ÛvE8^ºî/µî6Ý*ñ:n,¥ _,þm›k·ÊÚ™µ'D ¸›°ö ú·'ë“‹2ý6ž‚^-è÷šÇ¾Œ¥ŽA”â.é‘u¦¢ÊIäzæˆAˆÔß×í86Gæ|õá“¡U“ã¹µç6ó(”~¨ ·](>š¾b¯Á"ìÀû×OP¶ÓPÞ™¤K lê¸ð- ÛÆ…4ô„üq²få~ s› òÔÍæÂàÓ„o1Ü䆛LnnJà1AE.öʈmœD|•ß$x0£ ^1~Þ´pëŒÕ ”cçß qü ñ]ÎÑ“'—/Np§çÒmý_á^p&P‚Hj'´æïwé_¤l¥Üži3W-T{Pøv­R-Ddyk¢‡¼E¶‘”–"üwQOùäc¿þOQIìÆðà|ßÏAÐûª¿»ƒ†¼n2·zr +ÍÀò‹“|4÷¬@‡ïg5+a"ROùT8ìº8ÜLC‰WFºU¡=vŸÃü,ï 6jjšr·“¿7j»Ääú½1½f ïê0w®æ›]0"!ÄÁt8ÒȳväàÛo¤îƒ¢ü#€7Ì‘QÆG|Ge­¶üp„£€¨4µÆ »dÄ@è˳³¬ »É<{HÌγ‡CKΊs¿5V¥ë6í´ðÆãT+©±•«7§b~ÜÂ[ÉÓ”@ññ®;žtÚª S[؈( ÛW9A¥Z~¼i&Ãoì<Nt=^}™€àEwÜí¶ŠE~Š“#ý©PÐwQpëÏ5ª^Íl§²žåáF´íéëR!e„áZ?ðµ?séPú©ùæÉÊâ/&ÞäÃÓ¬`Yžùv–!Ï&Þ\»E”y,ÊY2`àÑ _µã[ˆyµ|³Œ~}Œ3õé €jf0¿M´O-ai¥Ú wý½>ã-oö¡ö8¶‚‚¿1‚Jþ¿:%_øÄqþ¾Ò€þ#1ë&\£M`«Ï]¼,Foö¡Œƒ?¤ÑâÜ…-Á–Êj0Ñì:ºÑxŸwáÀ&;éÏÏNþN?ÿl¤_úendstream endobj 184 0 obj 2437 endobj 4 0 obj <> /Contents 5 0 R >> endobj 24 0 obj <> /Contents 25 0 R >> endobj 29 0 obj <> /Contents 30 0 R >> endobj 34 0 obj <> /Contents 35 0 R >> endobj 53 0 obj <> /Contents 54 0 R >> endobj 59 0 obj <> /Contents 60 0 R >> endobj 68 0 obj <> /Contents 69 0 R >> endobj 73 0 obj <> /Contents 74 0 R >> endobj 84 0 obj <> /Contents 85 0 R >> endobj 91 0 obj <> /Contents 92 0 R >> endobj 100 0 obj <> /Contents 101 0 R >> endobj 105 0 obj <> /Contents 106 0 R >> endobj 110 0 obj <> /Contents 111 0 R >> endobj 115 0 obj <> /Contents 116 0 R >> endobj 120 0 obj <> /Contents 121 0 R >> endobj 125 0 obj <> /Contents 126 0 R >> endobj 130 0 obj <> /Contents 131 0 R >> endobj 135 0 obj <> /Contents 136 0 R >> endobj 140 0 obj <> /Contents 141 0 R >> endobj 145 0 obj <> /Contents 146 0 R >> endobj 152 0 obj <> /Contents 153 0 R >> endobj 157 0 obj <> /Contents 158 0 R >> endobj 162 0 obj <> /Contents 163 0 R >> endobj 167 0 obj <> /Contents 168 0 R >> endobj 172 0 obj <> /Contents 173 0 R >> endobj 177 0 obj <> /Contents 178 0 R >> endobj 182 0 obj <> /Contents 183 0 R >> endobj 3 0 obj << /Type /Pages /Kids [ 4 0 R 24 0 R 29 0 R 34 0 R 53 0 R 59 0 R 68 0 R 73 0 R 84 0 R 91 0 R 100 0 R 105 0 R 110 0 R 115 0 R 120 0 R 125 0 R 130 0 R 135 0 R 140 0 R 145 0 R 152 0 R 157 0 R 162 0 R 167 0 R 172 0 R 177 0 R 182 0 R ] /Count 27 >> endobj 1 0 obj <> endobj 7 0 obj <>endobj 22 0 obj <> endobj 23 0 obj <> endobj 27 0 obj <> endobj 28 0 obj <> endobj 32 0 obj <> endobj 33 0 obj <> endobj 51 0 obj <> endobj 52 0 obj <> endobj 57 0 obj <> endobj 58 0 obj <> endobj 66 0 obj <> endobj 67 0 obj <> endobj 71 0 obj <> endobj 72 0 obj <> endobj 82 0 obj <> endobj 83 0 obj <> endobj 89 0 obj <> endobj 90 0 obj <> endobj 98 0 obj <> endobj 99 0 obj <> endobj 103 0 obj <> endobj 104 0 obj <> endobj 108 0 obj <> endobj 109 0 obj <> endobj 113 0 obj <> endobj 114 0 obj <> endobj 118 0 obj <> endobj 119 0 obj <> endobj 123 0 obj <> endobj 124 0 obj <> endobj 128 0 obj <> endobj 129 0 obj <> endobj 133 0 obj <> endobj 134 0 obj <> endobj 138 0 obj <> endobj 139 0 obj <> endobj 143 0 obj <> endobj 144 0 obj <> endobj 150 0 obj <> endobj 151 0 obj <> endobj 155 0 obj <> endobj 156 0 obj <> endobj 160 0 obj <> endobj 161 0 obj <> endobj 165 0 obj <> endobj 166 0 obj <> endobj 170 0 obj <> endobj 171 0 obj <> endobj 175 0 obj <> endobj 176 0 obj <> endobj 180 0 obj <> endobj 181 0 obj <> endobj 185 0 obj <> endobj 186 0 obj <> endobj 45 0 obj <> endobj 210 0 obj <> endobj 43 0 obj <> endobj 148 0 obj <> endobj 41 0 obj <> endobj 211 0 obj <> endobj 96 0 obj <> endobj 39 0 obj <> endobj 212 0 obj <> endobj 37 0 obj <> endobj 76 0 obj <> endobj 213 0 obj <> endobj 94 0 obj <> endobj 214 0 obj <>stream xœ]‘1n„0E{ŸÂ7`ŒÁl$4Ín³E¢(ÉÀ +Š5–—-rûÌ !EŠ7ÒÃþ–ý©Î×Ë5-›­ÞË?i³ó’¦BõY"Ù‘nK2®¶Ó·_ÓïC6ÕùuÈ_ß™,o y÷·áNÕGíýäöP\'zä!RÒL€ý<£¡4ý[rížçcëˆ;~tÈ:áŽ=««Qa=‰¾ >‚(¡ÂX=#ÔQ4¢¼,ÊVbmZTxš¾íPàiúàQrÀ¹ Ù ÙŽŸ'tr®A…µ=¡ÂzÒ Ž·JÒëQ£ÏR(mZ¾–+.‰þþO^³¤,c~礂  endstream endobj 87 0 obj <> endobj 215 0 obj <> endobj 78 0 obj <> endobj 216 0 obj <> endobj 64 0 obj <> endobj 20 0 obj <> endobj 217 0 obj <> endobj 62 0 obj <> endobj 218 0 obj <> endobj 18 0 obj <> endobj 219 0 obj <> endobj 16 0 obj <> endobj 220 0 obj <> endobj 80 0 obj <> endobj 221 0 obj <> endobj 14 0 obj <> endobj 56 0 obj <> endobj 12 0 obj <> endobj 49 0 obj <> endobj 10 0 obj <> endobj 47 0 obj <> endobj 222 0 obj <> endobj 8 0 obj <> endobj 46 0 obj <> endobj 187 0 obj <>stream xœcd`ab`dddwö Ž441UH3þaú!ËÜý[ö—ÓOÖnæn–%?~ }üÆÿ=@€‘ÑÍ':µ Ò9¿ ²(3=£DAÃYSÁÐÒÒ\Á17µ(391OÁ7±$#57±ÈÉQÎOÎL-©ÔSpÌÉQé(VJ-N-*KMØîœŸ[PZ’Z¤à›Ÿ’Z”—XT”_6:±  (¿"µ°41''µ¸Ì````áW”a`(aìbìfìa`ú„‰A¡ŽQ–±—ïGÇáßßÏg<üCœù‡ÿ÷>ÑoÆ”~3š))<6ùòñÁ“/r|¿j./ø.»ù»Ü|ÆŸï¾W‰:„dYt7s4Mî˜4½wb¯Ü¬µ«¯¼ß5}boO÷$ŽI­}]r¡K7$=oŸÒ9¡¡›£¥¹£©yŵù¿SÙj*»ËËçvÏ’çûÏÌyœáðệ71ã៺Ì?SDˆ.h™ÒÒØQÕØ%×îîšèÝíß·Ò}GÂò°uÞÝúŽ®z¥“š'Më›;A~Âý{+÷vïÞ‘{>n[þŒÓÝϯ^|!ÿ»ŽeAËÔ–†Îªš.¹¶ ßhÒ yyùʨó~½­·àǺùŒ÷~|gþiñã¹èÔþÉýÝ38¦5Mièèìnmûsà÷¬Æ¶¦öî:Éîú©mSÚìÿ=KbZkow7Ç´)S¦Mo髟(ÿgá÷Ö“ÿ”‹Îœ×=~EwüŸÍlµåÀà˜×=Sž¯táOû…l¿&°oæzÀ-ÇÅb>Ÿ‡só,ÍGm endstream endobj 44 0 obj <> endobj 188 0 obj <>stream xœ}”}PSWÆïÍ%÷^]D„Þ*c{×Uüè¨(Ðie,u¨l-ˆŸ©S‚ V> ææâ‚€"Á â ”]µÔ¶c‹ÛÕÝRº¶Û•±Ôi™iõ½Ìqǽ¬u÷ŸóÏ93çÌó¾Ïó{M©(š¦ÕñIÉ1“›yòlZ~A%¿È€}⃉D53ÔñÛ†©3pÕt\J14¸5Þ’»Ïj4dÙ´ âj£V®ŒÑ®1ë­Æô9Ú¤¶,½y§M9˜´)–t£Þ¶o‰vɤMž|‘¯MÖçë­{ô“Âñsîn›ÞªM²dè­9EM˱¼fµíIÏÐ'ÇF-§¨7© Ô|*…J¥6Sk©×¨jA…QáTˆR?ÅQÅÔw´ŽP±ª}ªaf3ÓT¬QëÔŸ<¡|O…&–”•Á~>»µèÄIoýiÿ®Óº­MqfÑõˆ%sÿ‡ÑG᳊KÐÝR—ÄìܨñkžJ(þM `l#!èõ3ø¶¬pY€,ÃõFÖ•¶`±“·Ü'Í ºk»öé•ëÃâUc*÷ú®ÌŒ¸ës¶¬ MòsZÎÁoß>w=()Y¥<É ¹éÎ=¸N ²Á å.GY!Q˜¥dÓîƒ5PÑì‡1ÀI°öP˜!Ã3ùâ*ÔJuF\NÆg-þ}Iœ€ŠcGk”Lë™Tè¹Ã <'<³6Ë loÚ¨¤A‚"I™ñ0ÿêíö4h’8\R­pëJ+{5òÜ+¿òt[Ò!ÒÛímöÓÅáh†;—z.^î=ÖïC×nŸ¡v?¸`ï»KkÅØ£Ýt‹‘×+á7U‚÷Ûm Ý ÉÌȹd: GfFàì>¤¼RuA‘tÐáÔ˜VÅ@;šÌç3{\7àïnjpνæó€Ó¡‚hÜVE†yue÷•ð²»aøò(þåÑÌðÙ…ß ÷šî Âÿ#™5B–ŠäÞ(õ<£”uÃC…ªN¸.õ)Tås«¥ê ~#X @wZ‡ ¬°!튾+k°Üü×Þ‘Ó•Pûn«ÄáÒ”¿•m5A2”øÒYŸÓ´¦6ð$¸N ÏãQ|îÊÖ#Un?4ÿ=¾d Š6Îùeþíg'˜6úâÐDü§ðÅù¾âÌXDTQñ/é¼F]ôì©<4˜•’¿ ~͹$d1ü§¤nf\{Ë/Ue5Vñ$fLÈ«³œ‚süÇ>÷ùCÛÖ.Ÿ»C’$wE™Ÿ \Ûu†u­}fØÀÿ6V÷òÒW¿º}õúçíâÓr”‰m t+ÓT9Âà·¡Â)ÉmßX¿Ì• Ñ'á&\õñ+¹l(ŠõÖãÆéGÎÁÀ0§WùÛô\$oÿ¥9ø<¼ ?~ˆ¥ù0&*Žs·cC‘£ôàj(Tð[Ïþ|¿Ã÷aÏíÁ¡`ŒÇisn“çHhLôÒ-]åÕ'Ûž²ŽÍâ™?}æíþÇWWE'%ì2hÈARâ( ,ò26ÄÞ8×HZê0§š%;k¸ÀÔá_‰Sƒbƒ§øª‚ƒ‡ëƒ§QÔ¿Ü@6ê endstream endobj 149 0 obj <> endobj 189 0 obj <>stream xœ­X TS×Ö¾1psE^«µÞK«U«Ï ç¶*HqÆ*E[ª@"3$„y£pe$„Á`Q+¨µ*>R‡ªÑgë«s[}UŸ¯ÿÎ[‡µÞWí¿þ­­,VçܽÏÞûÛûûn”Í J Ðn7.èþ6Ñc¸nøËá#êGüÛá=w‡‡“#‡LptpŒuüí­·.þg£ 5¬ç/2>6š+µæp!˜ÌgS›£P Eq(UŒí»ÊGE¢à`ÚÃÿNï1 ††ÎW<¶gºb¦mxÄ뛑(ˆÇ4Ìb±#]ÐÔòÜ£ŒšÖ(ó#ó¥L¿G8güj‚õ&¡y9eŸo>¶Ðõ •Š3ì(õç\éøn£zTÆ·àv?ËŠx,Ó÷\ ž÷úé­ƒ§Ž—F­ç°ÓÓã3ãc à=˜x÷ÕƒoOû¸”ð¹Ñ¹ñ ˆiBÕÚ>_Xf„©ý‰Ò˜„ˆe¬Uô[躰渣ˆáó_À†:ÿ†m¾ô‹“ð‡£òµ$v•['q°9–ýöüׯž_>wæòÕî®Ûïžâ*fïŸ#Mç‰×%p…‘tŠnê¾÷D¤EÕ ŠàðHð†4o:É{÷nˆ¨ ‚¹®!gú.y„ee~n(ÜÝÈ?ì3"áVâ=¢ßíFL1Û!(a5 ‚Û·ŸqqmZbjtåûkb[ÍØä%“ñ†^WX@'†õáτۗXVPdÁ{ô€#ø/L0ÊtDçûXõæèFd¾!:K<†.y˜Ub§Ó¥û‰Ë0”ÈñÈ(4»›z£ÈLÎØÁù•û#AÌâ¨ùÓÿÿ ‘?“z+ma$as<üu”\fYVq8b$HË;‹´¡°<×Pȵƒ*HåWþr¨:í d?ïoç»//Z[ˆ2Õ Ïå†Äª9MH *z V*#L1ÂA£ É{I/l?¶²¦/Qx˜%šÃ´j¶¿Ç:Ä,vyÀä[/M Qï•ñyáU6aœ¨; ˜ôô 8οN\@:Å+ðšáÑ`öpmy°÷$q +çŒÿ¬À_L¤ÞBˆ1 X˜C—Ö’{HQçÜ¡{ !‹å>^ Jïkí¿ãS¦ «Œ—¾?ŽR#ST².Û/ B‚Wt¶Š(µÔ^FÁO&“07˜[Y]oy»ØÑ=6÷›:ì…Åàõg»]r¥ev–SJ‚Kÿlwsf9Au4‰òr‡WˆàC½Ov£õU—|¼e‡,§Æ÷I/‚³‚LL’-½U²KѪèñøâx¸h[eA?ÙzlðO%’j¤Cct¨•41ÖöËÌ™B³?±_UÛK;ËÓ'hÜd›Cï¨IhWÕ'œÉ,ÛŽ$(+.Á[67[µ#žÉ¡¿€fÛVwëËd-ªâÏã»»$Úìj4æÊ+.=]s_]¬ÑnP'ï Ö-ݳ9/¡•£*´«ÙÂSÿúÄ(8m%©¡4²wWÝÀ㾜€Gh£ Z}ñA ‡v«Õ%š"õ^TŒ˜lßÈ;áÏex¸ë•Õ/îœ2”ðºÐÖ'£ß×s«DIjnžŠ_r•EJ¤ÇÆŠs’³Þ¯ñÐidFÍ[—î¿LLŠ·š¯Ý "s-åjè’[Væ¡ý3N‡* ‚£”dÆ%‹¬ÇÁ÷&~&4ÅVÆ(‘"•‹ÝêŸBºgûåûmõ¿ƒãþ½Ù9;ùÜuJÕ„ëâjcÐVêoG>xÙzÌÍÃöO'Â[ð~ýÓ½¯]øJè:„ÐF† ʉø(#””%£>³,ùÐJøjtjmZ‰?b6ô^Xöñ]rQd?‡ßé0Eòf±Z´S–›Rv GŽÎM+­GH»³P›_ò ¨éò{óƒrÑ>}z6ÐÑH†’%Ì@øFz( ¹“íª¯1þÚç ïÎ2I„“§aG<ìñ‡0ètkuí~^ŠbŽp7¬é} ¼Ízú|â²b­ñÁC£ñúù6ïœu:žt€Œ¤ãKóe6ñ°E!ÆýϺû•Uûš·«iÝ”]ñ¼Ó%½Ç¿íCLm¹º•7çèDÇ[ÛžC+/!Mô7–x;Áž øoPr[h^ëYm5jûå?cŸ2‰ˆ!Ï'À»0î胚n0Ä©r¢T|ôW[T!h)Zz2þoŒº“-½zþ”=BUîù›k-r®wЇÁ·,´*õx^[p«.ÖÁÚJ=´pXŒ5ì<$×¥OnC?¢oÑwè|ÑÉ’s o »HŸX²¡à+äŽ6¡ ÈEµ9esŒl²´àR#¤õ‚´9ÎÂp†\ÿùɯ.ñ`+ÿŒí ±*‚6Ëm^ÒÏ»oñò]ñþƒ¾±†c:aAçÉNØØ)è4ÁSÝ%!aŽÝ«jH<Œ˜g7nÜoLªKÖòE¤Å5ùòò-bªµÚê:Y­wĶ´È@>5_Rå˜)®®sBŠu‘|ZRr’¢ðbiq‚¯<| !ÕÙ@­#*ɨ î/iwÊãÂÔ®ÙáyÌVtB]œ»K³“ÔÂnÞÚzæÌÑÖSíG¶y}î»Õ‹×àeì°Aù¹ùNšøé‘ÃÍ[N[¡±n8¿QÊÂ*ѰÝ%ÿQ³ªŽÏû¤ÌHÂoKM-¦·“À çØcúCmèsoÑ]lÇáeÿ;ó§Oܤu¨"«bˆ(ñGËQ >°*´!ƒ$û¯úŽcÂPZZ8 ÉáÓ³eèøÉKhWZ%§ªŽ¯T–1xd#» ü®ÐZ=}||=gñVšî:PH'à¹b>ËäÕaaryXXµÜ`¨®6pØ;²êàv<ØŠ Oô¾Ut“‰p“îɨuœ¾ׄf¯>1—”Hfiɶý‹Éü,ZììÙ .Hå[|÷g܈;¬}>©xGuÔÞøRò†ÃxmÛäâ‹…¿ep9ÚœŠ€>©…{´VñÞܦBîD¨Qõ5ÑZvß?|Ø4¸‘—4‡îšW±}wø® µ¤È¿`Nž8~D{œCwr;#ªPák’«wéM0¢ûÓ«`Ä”å:4)c;ï*Øiƒ]ò/D–t¸üQb’<$‰i‚Ab[oÅý£¬š?¢'­ùÜËkMûséErê ßz2ûùó'÷íOµÎ\ghÍ)D/uûú 3¡WÜðŸâCI›”ó3·É¡3[•w“ÚÝ e´¡¦OLè-é>TGÆBWI¡¸éÑ=ªD…VlOô[ÐÝ¡YgØ*6³‚ý‚"¹˜ƒÒ’pÂØÁ¡µ ”€˜^÷Õ¨žÇí¢y_Ç<èÕrƒ›èî‘ã‡u… oljTý:òÚÿéÈ€rÎ0ÂF£à¼ JHŸÃlGEÇ1dd~˜‡ ò¡ó>Y8 „ÛK²¸¥Ñ+7 %Ì´Ç3aŒzüø—[+ιUp °.µ:{üæÍ³>›½7~åÂã 6ó×~Ûaì<{çNç¦k<<ô9„;:ØMDòð?¾‚Â|•=Y¦ˆ–&r¥x›:Z£0 1uHS­.eÀ Äl£tO´"2>ˆloÕ(ÕQuhŒiªÔÚÊ€¹F¨!I6öžÐüT±Ixø¢™3Q DÊRµzw1*cjb«ÂÂb”á[¼~†•± Ò°ÍµÉØvüB< Îúþéù»8ü~ ëâyáæÝ+g¾ÿG5¶KQ¡lM ¯ÎB™(‹Y»ÊgY?ÃX˜ c°Æ áü‡=Rè/ ô¯—6®­oäð×6ø_ï÷uðÉ-XD’}Kç ‚Ž.jFMÍ”Ìcxº5KÄH’Ìaó¢òUÜ„Šy +:‰›Èáâ>kPqKpÎó]=ׯõ¶j¦ËàiÜxÖ£+Jáûêè§[Öoò˜™4ðj5R«Õù…H£)$ß5(©‰© TÄ9?õx÷§Ÿ>ÖùI3wÔÐxšÞíŘÆCܾZR»O¯Óé÷fíÌÊçê÷]B»så˜Dœµ=0”—I³C²7dÅåènöÁøÒhfHVov›Aͦ&¡l¤dBw&5q ù`u¯²ÌØu/¯[^x–ÂKú@jAJËPFN’’ÁsºhBá±-~,^k„YFÁ½^Q5¯›R¬Þš*é`UZ +Dq(²±,?¯ €ÛSV×øbn[¶ÆuÙº~Þ{›cø¼¼Ý%¨”©“—Ë‘ sï­„Aàøâ!_~üÛ…úfEm KÒù¤ÿm÷@Kœ²ð «…Iÿøîª@å™E©™™É(™‘•+ ­nÿiñÙ©ø]<Ž ¶/p& Yþ lžß{:?Âô¯/3Ò¹B<›UkÔy(då“‹œ»øõõëç7,údµ§›Ëö΋ñ¯ÈQÓ×þ ‰–¨z~ ^Žðz&Iš©Ë8õ³ª_›ž…a·o64ìÎÍGÅLw:8|‡N/‹AiÝì,á·õÑcU57LUh†Bì¹›Æ1ù"£igg+µl´·7Ù¥¨ÿ¼Ñd endstream endobj 42 0 obj <> endobj 190 0 obj <>stream xœUOÍkAŸiRw­ký€Ðƒëf/z‘æ$¹Y£^l»ÿ,ÑוïÞ‡fk6@¥ŒyÑš"t¹%ü{{ vŽD»‘>ãôcõ†‘3Ò¸.3ÏÕ§P¯ŒÂ¸Àº{Âÿ"šB7¦×:'tYí(éá)c*\u´“Ûš6ªÓýÕÝÞu endstream endobj 97 0 obj <> endobj 191 0 obj <>stream xœm’_lSuÇwmï®[l¡Áê¸÷¢0ðA#[°!‘IW[K£PœJˆa¬ÕU×uëº.¥ÚÑ?k{{îÚ²2ZØJY²€0°°}Y$ãL}š¨1á—˜’Óëoïô…ßΟœs>ßsC´5„aÖb·ï3­YÛªO2Õæšêf Ю¿‡ôÐk/)7á‹Ø¶ŸÝ@4 cëÇÖ&°k±I¸½üà“ûÀ!÷‰j½©8Œ á"ä¦ s.Ç«šTªXa”ùû<ð½!æ–b{€ ŽÂð‡( ¨°èC7Å~liÁZjV ;²–> 3SYJBY— $’p÷²†üe9³ ÝÈ¢ö7möG¨y;eçÛ»:UQmfûÒò)rÙ³‚ a›W!p±‚³×å † '‹™;™Ì«ò ™ä%)ÜO·¾ù5© Úip ÏëPËÞ)„ß;‘:ž<.¤¢‰“äÑ©3rn:ËßDo¦ã 'cÙh8Œñ=žð À=Å~‰ÑÿxhbqÓ•ÖÁ¤B,=sV>5=Η°#s)>0®~úÿÊã©H:A7­–8ÓñG×WýŠò%NÕû˜Ð®·çPs±:=Ç|»‚ «m+šªëUÃþ¢í'lø÷ÎLŒMÄ"©h2ÍY÷¸¡ÓÁж„O£ÐÊáNªÃj¥1¢~:Lwa½Ù{îª\\ä©ù²á’yð øú<ï¡niy忝ê=˜_:hËöÃê?u>/„–^ÎqèHWPNgâšs†áØ;'p¡^¸6ãêBåB¨=#¬)+/•éìäd¥G'kçê~¬çë´¦²þ±¹¬^OÈ?ÜC¡ endstream endobj 40 0 obj <> endobj 192 0 obj <>stream xœUŽÝJAÇç舑¢Õ…7™ч…ÄÚ‚æ¥,AÁÚ…}(Á ƒ š¡»Á¾Bk7ÑíBû,Ýúû s±5SYÉœ›sÎïæG$Lã¼a˜§Í’¦ÚC¾ <á[Ñ,×T­Y17u“ø…ooÌ›ëó‹ôül ÅÌ›Û;Úé£gÜïö,R0H©Z­ɱ¦•HmÈÆý6½'ujõØZ²ËQ»Ï,çˆÔÒP¹ i° ?²ÎŸI¯X‹êeªW¨~Bõ*Bïìîí#x¦ðŒbñ2{}ÿ€ú5JeÓonn Í[18ÄáÌöß÷<_ð° !·ÇV³ü?<Î%~ã?kÁ…Ä÷ÏV³ÜžQÕJųʘü‡ç—d𯄔úÂq)%Ï¥‚Õ 1M¦úy¢¢| endstream endobj 38 0 obj <> endobj 193 0 obj <>stream xœcd`ab`ddduö ²1T~H3þaú!ËÜ]ö£ã§9k7s7˺o…¾[ ~7àÿ®%ÀÀÌÈèæéœ_PY”™žQ¢ á¬©`hii®à˜›Z”™œ˜§à›X’‘š›Xää(ç'g¦–Tê)8æä(t+¥§•¥¦€ìuÎÏ-(-I-RðÍOI-Êc```1426a`bfae`º‘!˜á£?ã²ÿŒIZ |ÿ™„º×üX½fû|Æïõ·˜¿Ÿû)(º¬³§@.)9¬X§›#‹}Y÷Áî£Ë8þLeOë¨×‘ËÈbÛÒ÷°{>êÞÒÁ±&ƒ]§cúy¨Yw¿¿ÿòv ã/ßK^1_÷=Atö¬­kfÏŸ‡sùžë³yxØÔQ endstream endobj 77 0 obj <> endobj 194 0 obj <>stream xœµW{XSç?1œ H°# äT%A­Ê¬Jk[×µÚV«ÕzÁK/ —  ¹ï$A.QP‚„F@ÄKÅÚŠUézuíZÝ|tíf­vÚ~'ûس}]«{Ö?¶?ržœœ¼ßûþÞ÷÷¾¿÷ˆˆ€Q„H$ ZZP¤Z½Y£JóßE cE¸QÂx1@ɾß>r<±Lû‘Dˆ&@°´Œóa¨õ xi ì{„‰ÖlÑœŸŸ“[¬Q¥oÙªœš¥|2:ú å¦bå³äÛ «6e/Ø ŽûͼûPÍ­ý»Ôg ÉÞ8ùzËë€yïÀ hš;ë‰íÛ¬µ¹Šøp K.ã~ï o “~|¿wœë}tÇWs;p€ÚrK.SIhÞHi^GƒQ6¥ăTuÚBFÚó@8”âmà†Ÿ‚Ç{ÕîP(¾.*4øÒeCU”ô‚ßÔcnáôÕ¬MgKYÌP& òL9¦ÆRmUž9Ã,¦Ä 7]Áïà·óq–ÊÝà" ·B%}T­ë]/|*UGsZ®Üœo2å6‹#‘’’N…Çá,úMª“³ùLë&yÅ"°#ä8qŽñŠßh—Î=¢=˜;ƒïÜü°hÿ3g9ÍÉíÙÍ;:ÁAöä¾ýG¶d,ˆÐõCšÞÔ’^—˜)ñ‰Óµª¿Z®Ø_4˜lßâØeyê5¯ewœ6Ep]\™H…ÀN­ÓÐ+¬:úÁpiÏB‰ }F#ÙµW#¤¹{ÓÖngzéâŠC`TÛ÷(ŽÐðÏPt‰`0ý«|rZl2í'ÍoãB™3ôýᎂ—äEpæýE¦>P†Zz,qÓ–ÂÔ±[@É>óYî þý¾4’¼žxéìÑŽó'"üäpû¦¹E¾%†4 •=¬ÝþÞ̰Xʪ vÖXg쌀‹Öfu[m »kÛxE^Ç“nÔý°cHz§PåA½^ÖAÁéBTëÀ®ŽÆF'ÏÖú­"ÕvÚ½§ªTo,-ÏQ”eNE͸i›K»+Z M š»í;Ûù^^ïFjªŽsp{U®%lˆ/íîÁ1Ã+„H¨Š$Û)*ÌØÕkïnjÞ˳v¿(u=Ýȹ8»”²À̦*J^™óþ9|äôU›µÇÆÖûÓ4—ÂÁ‘ŽZƒÎPU¢-Th6®š¾Â‹ eÕ¶°ÆÎj²éëÌÕ Ô×ÙöYœÃE©ò'ÉÉ5j+ÙÚÊ&MgÂWhŠ|& KY¹£ ¨lÇVŽ é‘qxoÆŸÕ˼;Ié±ÿ4ýॻ47x-éEåÿqÔÝËÔ…¡Y(–„!Ôi°ï߳箙te í=®•tëZõ#\Û5µ:7R©©Z®™Û§j[2\û~Aíy'ÏÉÖmϬÊLä’kpÿöÕK§ÚÓæ+°(Hé5{6ÔnÄ¢0éqD gѳß!N‡à”S¾ÚÔb¬tùƒÖž€7Œõˆ„'?•%i6—§€å`S»ætÑáª>óevÔQpNìE„¤Ï¢Qh.záËIpRÿQ{Û™ÔÉ,0¸çÓs€p&¡ E9Í’#Ú´åpÊ!¨é ý#éhƒ:7UÈÇÊî_á?¡ˆ–^8„DWè~štvô¦Ë¡‰Ç" @Çó:ù)HSé®ÌzÖ©ÔhŽBóJòGè÷ %NJöÀpоë u}óê íMºMWdÒn«mwØ›Ú[U»Ì€ùæ³+ߟ*îÛø†2…mgÑ ¥é ù;s;áÕ—õlgü'i meœ*?ä° »©ð`#õ-ÈTglxtá…õx *ožÿöÊkÝH!ý!I˜#{Ë7é±Ü¸ø¸¼·oýÍuò-…ÔçÒËÞ÷ä'.[•°à•õ}ƒ]õ.g‹âÞ^%ުϰÿõN…;+ú~~ 5ޯ㾙#Úpç܆Wª•XÂÑ<ŸÿLýÞçw¿Ôf¶˜ûX3®ãê+4L@¿#á‹~$…|¡e»½´™]ÿŠ„[n:6n±à­ÒC¹[Îu-3ê8y*—‘ÙC2xíc½s)X 6d',`¤'þ뮊_`pÖ¡öA‰èP"þC¾‘ ûî~ …§HpöËNÑCp9ÉÓB Œ!ñ]!Ò“wŸ÷ í²XüÅþZNâ»B¨÷O¹w¼bØ(Ùd˜}@À(nü2n)£ŸF/ PÂe4NœÁ`¸è†ø¤¯XöWØPÀR5ÑLž)_}ç `ü¯á4ñk¼_ BG?LÀŶ÷‹ñGÖÕPÝð%¿š¨¡¯§VL¯÷1FH†eÑ`YiŽÊÀ¨é>k§ÃÕÕì²µ€™;#ö¯ 1çD1‚é܉ )ví»àbå º9ÚS|sg°„ þ× {À endstream endobj 95 0 obj <> endobj 195 0 obj <>stream xœ¥X XSgÖ¾1rïU×´Ð%Áq—ZѺW\ŠkÝÅ¥¨( (kXÙ"$!ÉIB¾ˆ [t,vÜÚºT­+¶µ:µÚßé?Ý«ótÎe¾tú7Aj[§ó?Ï<—‡í¹7ç;ïyÏyßs%LÏŒD"á—Žó&“wöjîÞûë>³ú\òœæù‘׫^'¼Çx—õåúÖô{µŸ³ÿëýqÀ¾ƒ†ühP ÝO’´óŒ÷O="V3`ÂíäêñN½W zYN™vO<•l ÔCµšwöç’aM \Éí3¶›ª¡ŽìzÞÎÂéý ü'WœWœ Uf°‚o9ìUÏrûát‡ÜÎ¥6êw@„•&^ÉuÀšd9Áyÿ$íqƒ^¶a›C‚ïâ?¾“žíœ)‹©án™T‘ g ©WÍ'Å£X”õà‹O§Ý"}Ë_W}|nñFÜ!ÏÉÉ*r]†®ÉTð–_`™4wyñPø‘ÿ‘mÐ4)°C¸G'ÆÏ™½lºŸ‚¦nb2k…l»ää}ü×}©ð Êp$éƒýÈ2’ô&ýè÷ÑèEzãpzyao-'Õ$O6‡ô8ƒÁ¸ÙãW®¢G0YF‚I•sè§J<Ǥ8:Ç8$„Â:igHg€l¨òò ;W¾vƶæ¥ï _úÀt2l"¡Hâ: ø_À>ÅP¥Ínƒ"— #½^%=…,?…MøgÜÜzí§—÷+L™F]ð•`Þ'f2æ- FìÇ ZÃ^×0û¾W`– Ÿc¿ûôâG3¯NAj”ì‹f‹ÂÉr[´š´Ž Æ3&Øà]}£ÖqÖzD¡Ã%2\Á¶˜[ä×X3ÃÂa æ0‚–ªSBë4á¾ðòwÒ3O¯“7‹spŽ ‘!èOæ)ˆß~î2­]Eò`ß…wѾ¼dÌ„áiVo Y´=xšÒ_DVœw`S³Ç?ÀH»´s)–È”¬’ŒIšMæRjŽfÝ…­þ†û¶9«_&{ç±`7[ ÌuPü÷t~áÚ@òŒXþ÷2E¬Þrà17V¡+Îé2ç•ߦʶ˜?†68ŸÃAïØÆ½e- 4|Á}S3Ñ áÄ옑ò1hí‚ЗűP¿º’øQ½’\8ÇdÚ…\›ääI,8) FY%îÖ )r­vwFž&âPHéàýÎ:°­4[Ñ[÷¿©ogë÷§Zòê`¾z^âêü–PùÆÝqC¡0ר> Ôi ò<—¹ÅV£ÑV!·XŠ+ò­ ‰§’ßþë ·n_ ? FÅÖÖtó¤êTKT¡Æ\Þü±ÃǯàÀ*Òk{¾Ü¤M ðe`Ù+r7h3íKÌtÃ\­¹ê´s®“½Yän½>Ò [`!É. «²º‹í¦ #ŸªO0¤BÄÄø-º‚Tª©*]®VEþ@>÷!£Ð™[&È÷­k†=4ÓDÃ2ýNH„-î'Þ«º|.u.ö±f™ÔeP&«µœHi ©+dg¢0Q¶÷íÚÊ“+d" ™ !¦4ª7õE±° Ty*ƒŽ°äCÒ¿Õ–ÑV߆ØKCÆ‚õJz¬Mî­P¢+N/T•o=@Ÿ·›HÈyñ¹ï ùyEâs­®£þê¹£PšW‹¯8ƒ|òUæÜ2(sQ~1>#H}Pæd,™â?}ih«ELÀí:p¨¯WKðÁ*ÓTj­*ȽF›E&:Çù¨vm\¬§Ÿm35m°Žé«Åٺ٤kÚB`j~Àck *ÜQ ßøHØEGqñµ'ÍЦ¯o‚KV OâVö7¢ñ ËÄîXÔç ó„ÉTõpÖ¡æµç¾.Q·.VB4e×j°¤@ähUéä>9íƒ7ÿË™Íádq ©±æg€Ê7.vÊc¸óuzïAø“¾ÕÀ;¸ˆƒÈ“ü/\Z¼°X–S ȇ=åÅ{E¦) Kõ"Ó±b1ÎB¡¦>üü´ö%M£OLŒŠ‹Ø½PÄÒnj4ÖŠe¹Î“ª ªaOaI¥Íq¤ñOc2Ù'_kÖB.¨µiñâCõƳÔ(ÔÀaƒC4|q”`;+3ËÈxLPU–WÝA¦°¤åͶ=í®³èc Jz–¦"+õå¹´Swåf«s#£¢xoá-}ºªº{_ÆŠ»ÒcÕvî—šŠïp(½~õúû‹Þ™P¢¸Qq¦Îòç^"9BT2œî¶)_±ŸW$E&¾6DAz¦Èp{¯nææÛæû+F²QZóa±E=QïΞ.+¡úc&H?Æí$„F®Ê¿”79ØH?•ƒpxzQ…Vö%±_“ »(‡¾ÝTÞæîÃø'[ߦ/ȆtÈ  ¨H_òº‘ã&mºŠ}« ÔÕú õéô‰0w OA©¦*g’|òÜ¿1óó¬o*ðέ$t˜ªD3+ô­‘ ‡ºEY¿;WþFªmÝ‘YT•FéC^"/!ý‰£ñ™Ûÿ¬¨ÛtªO\6ø`2ºãQ‰ckÚoÞ[KîU˜ÔFMñÏjú—{ÑœT/œú‹+:ÇÈÔUH¥¾, Ûvè¸Ø0Tdµñ¸© šà¸¾EdõPx«Nt‚F#ýØ+?Ç’S ¾Å`)Ê/ÂÒÎ~>Fƒ‡³£»™¯Ò™ÛWàÐÏ $Ô’!),9%+ZüR2´ £iËŒ®;~óÓß4 pOöâÖ#kl«h/Ž$ÏÐ-s ‰ý‰7ú·|`y§MQ”Ùó„Ct«ä.ºÝ¹}R.=œVX*{º3rÕºÎ\œôo¼ÓÿcÄE˜KýÞÞGRl´B§mxÊ1@¬ÐÙG¯¡›’° ÿ&CφK—á*ÿ5ñ¾KèÆ|ë)U:h¾ájé®-ä±&Z麄ýÙ·áÀŽ=é­[©jÌ…yy4üÐöwsZ€¿³÷“z+”Ða•£¦rÀU*¬u{òªëyöíRmÛ÷†—ðCËdÄ KY¨3Õ˜‹Œªpügèd¤ßœPâ!šÀ—§t¿ôèâ2a‰ì¨ÅrƒmX«O¤l­)Zì†EKíwO.T«Cáh6ž2ÕB-ÀÍ"s´–£b™Â^·~ÿzIÇ%üü’uÂÙ„}©×à õÌÅ{(?=|X¹Ü”ÚÇ+ †¸¶5èÖ°uyB]HûhÊ ~ü+ƒ5o,ËP¼µ®Q}wGeÞ]eÞ¹Ìj­#ÚªnŒ†Õüœ5þ›]%ý¤î¦¡ÙP 1iïM¸] .)0™‹¬òCçëãÞ}¾Øÿ“︳þKÒ£®ëÅÇ©Š—]ÖgŸñ¨™f”¬Ïp©÷ZºâÐôKôV ¨ mWjz&I!Á>¨ü/˜År_ÝC_2¿8«t'dúîLÒçÒ[«—MUPCè.¶Aªy«hyÄ!KQ}Ö¥Ù‚—C”ít<|ÚðÕÄ«—Ë…¾ÿÁ…yräèE$8GÑ*|+G'çpOÖHÃz}4DÁzS¤{²nHÁ‘¬zº’ˆ5÷ÕÝã‰ð‹ÝãTà¸ð¡ ‚EúXJÓ`ñ3~ 0–ëÊa_ç`‡¤Ó_øTVûþeØ tòǸ¦J,¬0%ŠÑÏÊc! ´Ôüf‘`g– Šõùº"º4œ†zQ tshzë!Ô}Þ[P˜W&§ÓÇšiÒTR{l²X+D§øeããúÔ )7 ênqöêšÖä‹ß{›'xŠÚ¼ÌúKm^)Dº´Ùÿq•«©žµ@ Ô7uWY`»B¼¸.ažéœB…Y|݈ËÎJjñ€Ïâ2ÙYr`çbëœi#Aå(/a½;úÈ{÷œ\íÙËnõôìØãéÅ0ÿ4ü~f endstream endobj 88 0 obj <> endobj 196 0 obj <>stream xœeUkp×Þµ°|!@C¦j­»¢4Z ¡LBÓPqH ‰‹!I„-#ÉoY~Èi%­žgWZ½ec[’ߨØ81J bâ$ÄiÈ&3y‘†ÐIÓ¦Ì]²žÒí¿üؙݻsÎýÎù¾ï’˜“C$™WPX¸cÝCÙ×âbR\’#.U”Kåß¿ýb.ÌWÀü9Ç–Ì}ã>ì\„ÿÝKÌ%É'ŸÙ_|øˆ±º¾ ºÆb2Ñ›5+ ViÖ=úèÍÖJÉP¢­ÒjÍz]¥Ö,Thž­.1èÌ–µš­šÝÙˆ:Ín]ÎÔ +ý‚‚êÊšz³Î¤)¬.Õ™ªj r´Y«­¨Ñkkô†#ÚÊJmƒ®Ä\m"âÞªšm榒ç6nzL}ß=Ô+Aì$v+ˆ=Ä Äįˆ¥M, ý$É“2H,’«%òˆKdkNqΟ¬âŸs^ÍUåêrÇ”[”#y[ò>A/¢“wÈÂ=ÄÂ;9Ï?F0qM†ÄßMw\QÜxMåmu™Á,펎DW$¦8>q6Ô>9>Ê„2BO°32Ä;†/|ñ7@g¢eÆÂ}Ò[Ñ³ß :0¦?{k¯ˆÄൃ·ÕM5>e|v f6ÖÓífèî §pL¡·M¬Û÷´¹™r¿zx¸Š¡©Ôni1´ÙcÀÇ8.¢:ßMýñ TÜjlð2Öçè…wH¬!¤½Ãxõ]øâ#Wg¤…*§ÁÇdc É)x"C¤Ã¨w„TÜm/@8š8…7„ûèdÕ þ< Œð"¼?pk÷Ìæö)5Òö‹‡ÒewÑ8,ƒu'x¿¦³Ý©3{O3}…Q…»:Ɔ‡Â€&zõEEF)Ï¢£ ÛöËí°~â$dä9Ÿ­#`Oãã£äíçq›Šaà1›Ãçrù¨ßJ+˶K›I+”màgç¼D ¼Ðõ'ÜŸÿµòh0±`c+iŸÛƒ®h$ t©)lÍ ¹VNfóR ›-æ­QNcWtŒ ž5^¦Ä U=Z>O .?+Sî°Ñ8êæ©Þpƒ Ô³¼²ÑLºÇÁâŸÛBKù³ýöRŸs#¨›åFÛ䟴xTÙ>Šdj K²ªRã‚yåM>,þLuK™ŠÝí¿…^¯<*¤ „:m±foµ_ï J¥õ¹k²w5Ù"¢o( ¤qO3XО—t¿™ÊªÉ ‡ß˸©CË÷Ö5Ø“Ç{ùp°3ÛÓÇÜò•Éϱöód†º‰ß¾©ÀŸáKªPÏÍw@€^H[«Ý&¨C-ñ¦ÌH×Ä+Eí†]ú½fešÙ«´|·¤2eiŽø(O~;Ó7 ¨{̱«¢y{™¤¡[ õÚƒà34$û„LÑ@}¤µÒT[^|®ñổwB*Qv¢tп¦°ª/ë‡ÏÃúh£æ©ºr@¥-#£²‡â§³ ¿(cÆ£7&2äÉ÷pÕ— Q#Þ«j6hkkiõ5‹êº˜î¡Þ‰ÉãOH‹%µ´\Z¶îòÆã囹Â.·ÏçtQWJ$Ø=S39}2õÕèôðÔ¥ß_‚QxÉÚ^#S¢¯%êÓ·— “"|ªøn•xEÕwº÷Ä›B”‹t£ '쬫ö‚‰2@YÀÈe…&&êѽþ1'Tãv:Û¤žÙòü2‘õ§|ý×8u§LhŒá<%Z/”Ðf( ˜ï621h?v5ñth“š-Ô‰AH@ÏuN‹Ë°/r˜ÖÑ€L¤ÛzWDGÏqŽjž>3‹9 çlu¡h>+†óÇgy¾w'@„PLˆfKš;M”¦ÅÑù‘ˆ·7ˆnU" ŽâŽ(ãõk¥fÏKí2r7ØÔ`‹¸ãnQ>ÈO²¼l$FãqV°…èÙ ær¿Ÿ7©âBD¡'œ#ÌžÇíùÖ°¼€‡ƒq®v–37+?m¬Û5uÄ<„“”L°jšö¤ñ–oI¼#£À9ÕŒéåRc£©º&U{<‘ FcT€ç8ÇùÛ¶êw4ÃȆ÷"VðñßÇsåD9¿VLß¹LâÏ'¸Kœ«Â¹J£´Òq¶C+ÔD ±ƒqW‡{íb÷ ¯AúñoÊ`ßœõì{„¤MãÇSâƒiÜš"'ß©·âŽÛ¿TÉc>.'ç j³û½Íj—Ô"­wKHj–¨aõ;ñBÖYÁ–;+lìºìn ûçŠçC½öädâ\ò~XÀ÷ãÅ€ì½)Ñ1$-žÝ¦Ú(ƒžÿ)ÖàUIÔÿ£ëž©bXÒ¼‡åvüÜ&ó““{–ÊÓâëWIüŸ>ÅIV½Œó0ÉÅåm÷‹¸T°ñwîf¶‘®¼RBP‹$#™—âTÏDZ©à0Ÿä“ÁäÈ×W𪉉D‚(fŸ×¬—znuÉ%+üÃþë¥_Õ½^2ù¤¼¨m“VWØ££Š^1™¾<ñZŠGÅ›ª6«±Zäö˜=Â!Jtô žÎ„ƒ±¬µb¬À õL—³×õ$Ûµ¹¬Nw¤üh-ýUÙlÆÆ.g|}æöæŒ4'•’6ž7<ïê=Ô¼9Róçö…æÏ'ˆÿŒÎ] endstream endobj 79 0 obj <> endobj 197 0 obj <>stream xœµUkTT×¾ã̽碈Éà\3,PQcÚØh‘5h|@# 0 "(22ó¸çÎ0ÀŒ ¢ƒhð**êTÔøHªÑ˜XiÖò±Z›ª«Æ®•6k%kßÉ!]=w°Mk³’_ý1Ï{ö>ß÷íoï­b4ý•J5(eãórS±9gRRa~¶òW‚,ˆçY¨AmçŽaþLæÙFR„Ä4\`)/v V‘Í Ç‘U2yì^|2|¼æí÷æg$› Úàc’–|â g]ʤ4–xi1Ûa79•Q¡œ²ë!C·ê8L—×5ªC³þª›fZT>ód^"0ÿl÷½ö+ÆÎ[×ÛŸà§ø’ٳؽ^o}Qâ¾$ÿkô\1áÄE0†Œ‚º'=2Rz–ÛËòëO)ÁK”à"˜4L›"[4 ¯‚& õ.EiH4Ù«MN«¨Ï€…LŽÇ^+žPÈ\DÚÛÉƒŽ¶ÿÔ°^~íkÒÁ;ÉyFíHÊ€4bÔµzwÏQÌÔ±€ #úœyÉ›KëšÍƨÐ|qŒ„âÓ°téÝC¿†¸aÚª¶h8m2Œœ‰D«ë-W™ÅZ* ÚŽ_‰,QqYR¦äð8ή3,äS¢¿qµˆõ6\&ˆÈ…H²³UH²²7`j 'ZÅJÖŠœ"’\¬‰Õb…õ é4ÕD8¿æ:\.ªþZíT¢­lÒ¾D?rZ t½Î@~ñ¦]Ýkw:Û›‚\iâ§+Å!TÒÉK¨Mª¶°M‹tB—b‘µînK­Ý/Ø}ŽãøÕè๎@·a,z2Ý¥zzÅ-˜Ím÷Ø$ þ%^‘—þs^{ûïÿrÄóPCÐdÛíáD…ö–u‡âÃ~€§§Õ¹–ÁùÄ·«#ŽÖ[K´øsf€Š è>¨`Æ­«Û6´wîð–â5<õÈ4µ5É÷ &cð¸¼s¿¾n &,Oª¨SŒ }z×ß Œ^Fžné”Çóaà—Ø(øÌò¼¸[Õ±ê=r¹î2ù”#Q–}uø€wg‡áÚh³8·c~íÖ]îý¥{ ðˆÄ±SSe€ðè"\¨¾€xh§$Z¢áš¢YŠ×%¹ºí3´³¢tUÚÞ×Kׂ¨2|FìœçY9EÁÕ%I7kjàãnV+er§ëI2i‡dä¦ÏÝÊsß ÏûªøïÜQ²€¡Ù €xu×ÿÀ¡Wýh*'5D8•³: ‹U¸•ZÄ]Û× -«aZïö,£å±þ6··¦Ið·74ívó»8ŸÄI¼Rô]b³X_wx‡}ÛÖUÉ$Sÿ*d–wÚÚðNïòÕ$¾–«ë‹ð"z•宼0¨z—ö¯–VC¶u.Î.:D'Þ‚-b«xH/žfÁ‚€yã š²ÒR°Ð@TO|È}Ä}¶uß,\ÜU4Ù¸°‘Ÿ¾ò&é?õÔÇWºö½4\u¬ônÆOkORÿ¦+*)³nÁüšÒ£×ï?ÑcÜËQaó«°æ+¹j©\²yq½€k=~O]ã~}Ï룯z¡óÆÑ7ögÔoÆW9íÕÎN}•ÈZ3 E‘:Ëm>TxU˜ ãoß~¹¹­¹± }LdøPkC•ÅbÙ°1ט»xÝõ­Gmûp“€›|µû¤FIOk²_iân{½M¨¯j*jͼCFêçAé¯Z­kBm}¥[-wä%AU LRË“>Óe—åZ×a~úšÛ0Æu<¸Ö±oC†ÛèÎe­Jk~§.ƒvQÂOb¨£’žŽ…Ä®ÓõÍ—Qß$÷æ«9u[4ä+®ÌÒïqØGa‡esdsoÉ“óXâøA·-±ü2ƒ°"¨’g<Ó¥—äTšðLlºî„ÑEÆ“r²F‘8È…b:´cal£e<É7¦k`ðmIòHÁ|‘¡dð<ÚJy÷;ˆ„AtÛ@Ÿ\_Ш•T{Úñ+z™Ý›Üϧä1ÜÎÔ ‚·¿¼‰l?»¾ÝhîLj[f·‰ú,º3éÌ.ù1 ÞÓÁÃKèÙ¹ÕcIÄòŤŸ1 Ž„-úbë'Äé(†XË­ø¶AGW§ìg‡W ïgÙð#ãw Ívâ誂ʮê„YÑðÇ g£Trjì5ÎÎðh:ü]Çuv·É©×.)¿´ ÷-´KHÜ=$ù¤½R#nê¶ó¸¿öšáQïa9×;¶9·WT»Ì.½VW†½7úE¤¡ˆönûo¤9Ö@h~@ú™ÆÇtHbsvë*=x{³ç9°ËÛ~ÛxD’NÕ(vK¥ªzD7vc¾… ø«wˆ´[\ÆÊ|ûVWUu…@&õFD9bë)Û~ìêö<\-öâ:‰§ñ—9º0ÕU¤2Nñ~ý\d5Ï¿Ña1·G5W#;{z\TÙ¹£æîá.õ‡qº½‘‘0®6r Ãü±>ß endstream endobj 65 0 obj <> endobj 198 0 obj <>stream xœX TSWú1ðòŸ‚:ï9¶µ¶.u©V©mÅ­ÕJk¥Z‘°K„°„%ùDvHØWEmU¬V«Æ¥ÓX­3=Ug´ØZÛŽv¦ûÚËüÏÿ†Å¤Gg:ç„Cî{÷~ëïû¾ßˆrA‰D"ÉJ¿€€ùóì_gSDÂÔÂĹX)X~Yç £Å0Ú¥mª÷,tk<ŠvGóÆQb‘hÍú÷VÆïVÊ"#¤òi3W>7mþÒ¥/Mó —E†…ÆMó •KÃcCåd3Í?>,2\®œ;Í7&fÚFû‰ÄiÃÃeÉá;u¯ŒÝ$—Mó‹ß.‹£(ji\üÊÝ«e‰¯ËßHZ›œªØ±^æ—º3üí]"¤#ý¢7ÅlŽ œîóò²W^ùÜó³fÏ™ò‚j¾†¢Þ¦6POSïP3(*€šIm¢ž£6SÏSÔ»Ô j µ’šCm¥VQs©÷¨ÕÔjõ:5ŸzƒZK-¤ÖQ/R‹¨õÔbÊz‰z‹ZB‰©)ÔTêGñÔHjåF¦ÆPc)wj95Ž ¢<¨`ʇ’r¡ÔÔIÑlQýˆi#rÄSÅuâÿsѹüèêãZA¿@•øJ:$ýL.scdÚÈ[£ÞÕêææ¶Ûí“Ñmcø1çÆ>5ö²ûL÷®qcÇmwpü–ñÿöxÇñÙÏ'Ž™X:ñëI‘BÝX¡¬è‚5Àêñ½ Ø&yþùب ãVÐ*ÄÄ6Aÿ¾âX¡…tE´µË@Ň Õ´ç>?ðᩊø·9œ²S2°¯Ù¾oŽó>5ýðÝ#ËÞŽT(8¢7ÛŠþb}lC6±bX4~îß± v™;Çž÷g£hÄýï‡Cñ"Ö×ïú½¯/_þìê¥uóæú-÷剈t«PbõØÐ§çÅ‚Bø‚­‚ÆXeN†.‡Óç‚>MÕ²Íü.0˜%r'ãuøMDþ£‰ˆ¹Ýw·3Ò3å§çuÏù$îfÞ¢ŸÑóè¹;?÷?½Í§‚/HÍWµÓ³]–YÑ VôéP¬ŠH¬n TÍž;{êâçgW¼8kõºÕ¯H¿:Îá.‡BdvƒDßßGžÈ}Á|/XÉ{~ߪ¯ÿMdû[þSdéÁì$YQÈ€ÊI¶lADí¯ß[ÙØá3•¼ÀÓŦ¾OR u‘RHNáÖ`³Ä³%¡I’ êÚuµÜ½¡×ªž„B~3­€¤}v÷¸k’ö콑\ÿHZ±1v©m´6ÐZsg’çH†Þb¿=÷ëS©3W5›µ‡—¼û¦r}ïiÛ7(  Õ2"ªªøø‚c…*èJ»‹  æ±˜F‚ÇU+ÒZc¬“<¢Q +/L)í‰+|½ 2Mí÷oUÄ&pÆÔüÔö¡¤Ø$ö|'æjtz.Ä ’é—åK#^ø)õ ïy¯7ëË´Í“w튚ä_ú…ŒË©É-MÆ!þy‰ dm¦*cw×qJßB’µ ãÖñbÖ½g\h¡½o°¡&ÑM(œm¨‡ö¶ÃݦµØekÐf`|^CzÍùò_t]”cªšÏO-Ò6 ™‹ø{“sÒ#Õœ´-¬2”Ø;úi<¯Åëÿ‰½‘ÛLJÛêÍ|¤ fl04ŸZÿaÙ°À&F2fѺ²‘0‘`/¹I?ÊúÒK¯‘¤ï+œGÏú4âÚç7ŽôÕ€EeHNå ~3äÀ¼ 'ùÁì&[Q°Utdž¤ÄõÂ1¶ÑI¶“8KQðoߪ‡”5ökdŽrsì’¡d$ÅÉ2§ô;¿Ì~€eÃýG~í`Ѩæ]Õ8p ŒnÒÀúMSŠ$­g¾6ztvp¨^òø=Ë–xíС½-Ý܀˂Æ*B ÊÄ[D9añ€üˆê×`Êi}Àie·:÷$ºn5»Å ’“6§ÀŒt8ÛBc¾ŽEèºkËov< V$ø^Y¤,à] õPÚÉØÅ[¯ ‰­¢*!],l³k°H$‚’ÇZ™Hä×C-ßKoÁºèܦ´£ÚCÊ‹y¥RÈ už”§ Ã\n c ч®½tMQ.Å£ãhãÏã¾Byº¼{ ÀTcmüÊXQPÇé=ÝxdaVYj ”A7TÖ1éšo}`õ8mÛÞ‡üHº’…l]ÌqÃ`Zꈉ2P‡fì)ÈâQŒä³MÅOoVÄZT •-¦n#%F£9¿ÂX&`þ|2fïy ¯ÎÃî[fM^sqÝÝŠÛqé¤Ë¼$9$ïTF¤C0~;öì½Ýž)䇓¨Yˆ£$cfºöÐÍÃ9ÊA4ó¾3^{èÚ4dÚÀ›„¡ñÔC£Qx&‡¹†9ž¢‘ƒ™J†þ6rïÃî®ñIÃÐéÐ6^ BVäúh&¨ÉüôbѺDZØ_D§@2)ms#çÙzˆLˆ) ¼Ååšä±‰â@®È†² x×ðžqòw±QÝýš]Ž•0zx8„‘6‘’L†C¶Ä>ÏVaŸUtäÎï x%ŽLÛ•­ÔÅxèœÚL‹®v.Òy5>Îí4šŽ)Ì=¼A/[š&‹ ˆÐ« `ÜSåL£²F¶;U™º/¬÷ÁÈ«´ÐA®ÙPbŸXØ…DlKd«2ô):.;Mä Ìâ•W¾>Þ‚$hŠå dòFi­¦˜Kuëµ§ /O]ˆGû ò@ü¾ª‡ ò” µYEWΠÆ3btDpeµ™qÙq¤(2Ž-Deú¢Œh€ñô×|¿F<äÌÍa DóB‚QRºí(L+‘—‡ïÑe•éÊ *JJ* Šþ†ŠÊN1Æþú‰‡5’Ëþüé«ÉL`¸×† Œ—_X‹ÙXÕ̾$Ppø••Åo“<šÒM(_‚/ãÞäC¤zGÖA-'¸ÓuE`†Jæ¬cü‡ã:Ép¹~:ÎýÃàüõšιµ EOh­ hÏÞÖ¨UÛ§`Ñ¬ÙØ»ûüÏg7·¶ð(Úe•Ä?xÉ««Þþ¬ï»+—¯\êõÊãÔóh‚Utú*ªýL,,Cþ¬¥ºýæx"v›õ,vÇcÎ@,ò:v·ÑžeeVžBÇ'½»)3–ÃòªÛŒñ<[qíÜé+p.ÈLO3ˆÞj&‘’¢³,:œÜ‚ý°_òn|¶ìF~h}]3:ÌḄ]2‹ö„öC¸§á|Zz´ü\{ÙM¸]™•eADÓ[à«Ò7¥û'$/€GÉ@ãI‰­·}GŒŠì“v¬ÊÇ£¿ø´q¹¦]æúª–ó/ƒêåW·½Èm~Ö1vâ 3œÆFƒclÌâSë­(Ï*"ÍBOÊØé í¥síî½{¾w±„Çr' Ö¯q¢yˆu‹¥ËÏôwGÖlÞ¼}Í,þváXyù~|ú<ÚvÞ£õ¬Â>Nž}çê$Ï¥# ZÅn =vêã÷ß?ùÑá ÍCBùùR¶@@Þ Ì7×®öµe¶¦¶ð–²†ÂrcÑîzÝ^`ªëËZëí›Ò·"·ñªRií6`æ¬Z¾x{uT¥‚÷ÄTº*3)v2H+d&­o0¼éÌ¢ŸÞBЄŸ.ü­[yâÝf.­8´n>0«é,Hƒ¬|5dƒ¶"½Â`†|(̯(ÜË 7|‘}vù‘÷kLf¾±Ê×€éC®°(dùög‡ŠyÈ¢– ^CGYÇm½õ„n«ù/–ÿáºBÀn‹EÙ?„"­µ…Ṳ́ˆThé¾WéoÞßðÞÖàwæñ+iÍ~Ò]k…CÌí×nâQ^ý¿±£(ÚóÄ„ÁµAG|]2$A(¬ƒØÚèêØÕ>`.6|r ƒÜSk‹5ðYú]©ñpôÔE(ɬ紭r‹¦ôto<ð@áÖûî¡ Âdv…Ow£+¾€Ç8áé¸OÓiχ‚Þ¥%©.>>))>¾.©¥¥®®….=“—QÕåðËvὨ™mɾ•/2Û7,‹ßZØÆ…6ç6Ôª 5ÑC{ 0캢Š×kU]" ›¹úUߥˆÃÚr~GÏîâWjχ>5¡eá]pÌûÃÞ㟡Q•sbЏ‚¤Òló0ködù9©±YÜŽ®MeÁ„5‹—/[üÆÑµ·ùBÃ÷òŠ<æÑ€l²!oòæw^O¸äLl¬+õòî×JÕב£ÀG÷ äFšÃˆ3vÆQÂ"w$qírb…s&0ãÙ®è§A…ëÓ´·_³Õ‰ Ïu¨ÙzƒþòsR/¸F¤ #e”C|Ì Ò:®ÛPº}^÷Ú†›8ÑÏ:õ ü-=mm`àæu'ÿÅ¡oÛ$DÌ“výÆîw^xðàÎ7Èý1rü§!-pª¢‰„³Në›Níq¢ÝÂ,‹RÔêAûö[†ô>3¨Ö]ü«ø\ÚfÅkºív:Ñ•[Ùý¼àíÕõØÎý$óýÕ{ë ¼›¡LÝŒÓôÔäfÿØ/á"áVß–J`¢ÇñIDòPe5ÉdˆàÑëÏÞ¾CÇÕW¤®ã°F¢.ÿë¿Ùô»[r£Bô‚Øi;ã9õ¾øš(ˆ†XMb3D®oZE¥‚A,Ä“X”sµeNÁ·³ÞÒâI4²/¡­†¢Ìz9dŸ„Åá ?BX`¡V÷Q 0Í™y-d­-`âôÕ~óiáëÞ&Âöš Š?Bi…=„Í„•F}±¬ ŠÉûØÓe·ݰ "rµô¸ó¾Å —Ø‚c‘%iäú—^RŽC¼Œê‚äh„=5ÆjmDÛÿû{zÐx´¡ 4^Œ¾\ØîئèpYLÌ®¶„Žíí>çòØ3ûôâ-hÔïŸÞÐï¦m W¨³²ó4:P1êÊÔêºï>B.ŸÄv„G$ÄGÆWK{íÏX„³èŒ0O,lTliqy Ô2õŠ2Ufž!SÃá›8,3;- ÞV’¾W‡nãp¯ŠÌ¹™TÕ–Õ×’§Å<îAk]íÑ ¼róŠè€ üж¬ººvöDªH³ ¤ÒN(ãÑOx6[ÑMÞD–Ç¿ÒÚ(ò¦›ç·ölDM¬©Èn”g•fãÛ(ÜKcÊ3f£Rhå òTÇ£¼“¿tÝ€‘òZm•©Àhª°;·ÔòK"I¯ýÖ¾‰…J]¡² ûë6ä È@<šüuUiq!!†%9æ„8¼{av;:¿k wjÅuBŸ›ö˜Kx‡°ý¤îBçX@nÛîJOl¾¶üL"0²ì”,u©nO–`Q%^DÔ³»0§ÌSgd倚É*JilEÛ‘2ÙM»k&iêóba¥@±eÅåÅ$î…ÐÆáq+󛌟@+hgTDeÆ׿'p˜º¨1éAÞ)iJµ¢4»œx/Ú€© Z]Z6¤xçB\‡Æ]Õ'ÖBœw&DuvB§©Õð‰¾‰³Fî2_ mVåC 0æòšÊj­IoäeÕ¯w&TØAIpþÊô*1*å im¨EÓé².’&©=MÓÑSttI¥ Õrø)<]¢%_¥]ö„NÇOÑZv‘ÍeN(¡®KbÔUÀªý‚TÚÜŒó$†Uèèóè'8F Þ¶¾×´¾P L*éî µ¹džqzâLƒ‰Ia•ÑGäþÑú Èeð ÄA~F?à_L#Tß¹o¾QÉ‹à´0w%Ä“ÊýUû+Õ–hÌàxD¾þ 36½T@¥ØßDce±Ä:ÊæÆrQÆi=Ú6z Eý?·¼sY endstream endobj 21 0 obj <> endobj 199 0 obj <>stream xœyXT×ÖöGæ•ñXÎX±GM4–XQÔ(6Tl£‚ Ò»T™Y3CéET¤HXc7&côKn£IL¢7ÆhÖ!›|ùöõ&7ùþÿùÿç<Š2{f¯ò®w½k‚éÚ…Q(ì‚å&O’ÿ9J¨u‘+×󠮯¶+è¡„] µ³–”}1¼7NîÃ(ŠEN›ìñÜéå9ïe±F}\Qe£niy-{ØxÙTOo¸¤?làÄEèÉ¢â^ë{µ¥¡sR¾è¯rÙgëŽçâ¼!@PßA†%ó­´ìÕ ðЫìK'¥¢¢¶­I)…KCyœ…9yFcÙî€9W)ªÜt›À<`x™9-[D廓3è““ô:bKØ’á¸ÑêsQå®[a;Lozî1‹ä2ÙJŠbõz]˜>ÔœŸVÕdn¥Q8wÀ"+‚~¶wŽÑ”–n2ã Üc‹$ÉjºVÕH£ÕB£õUG´ÆÈ&¿ÑCP‹ Ek…6x‡GÙ¨%¬’^ã±—²OŠfm™³yùX ª"ydŠÿqîpßNù”LÚi‘i R?#ŒVòPáÌ/î?þaêuòZ–f*¹Æ'lAU ˆPëZãk Ž‹ÒŒzI%5Hj‹¢ûaöSJÇÐÇŸidú¤‘ÄŽô¹? ߯Y_=ÁÞÉ$N §ŠÊ6/<ÄkU!DØóYuçU?d»Î׈X«UÍOp+¬Ål¯Â©pС€ôäDÕnL²úM!CùsjV›5åÅÝùÓ÷ãðµçå>Ç^6´ìÏõ§àöFöúQ0"¢Às¯«¬¬.m8»®r½ãöNÁ‚º­X2óü@#Sgl1€z¸&—)5ÿ£|ù‚rË^˜?QÄÁÔÛ¶Y|ûO/¡÷ŽC+ ŽË(ˆå§Ø²^9”HÚˆe8Dv¨|N>éF¢ö_,`’,ÒÀjëú&·›Kÿ’í÷B‘ß‘±4DîêC(¾]ï·6M0F“K;iåšOYª)z÷ö{§oÎ—ÐØÛl/ñ/‰Ô4x×'ÝÙË©X’nǬ0o"„ ¸Õ+$ç%Ã^à‚ )XCl8$e˜ ¿T0BY¾ÙtÂç ”W…¯Ú7‡ÕyÖxTú¤ÏÞ/cD7šVŒW)zˆRwÑZ.›±8lS«:ºmèY¾Êÿr@py°?_ƒ[>YoÝZ·«)"ÖÑŠÄö¬Z„pðóˆöIò©0µrÓU×ó17áÀ®%¶6œºsôøå¯Õ‚>ìKÓáâ‚ìõ´4 d"E¶“Í8’LÄœš§¦«§he)ÎLc’ðwç–(žÒ’ê.*ÑW&z{‘Øã­Ê0jÓèÑ:ÎëŸä;ä«›Ÿ´\¸%œÕn`ûíY ×Ê…^¿ÚÒ´1WìLûÇ8LÙ¶Ö2¢ÊS7†6Wž²o É%c.}…ýÏW:*ˆ­§ÔLŸÇÄà1ü˜û»WØNbH²x¥ñU?¤oalÔÁÒÒøÙ,:¦[‰ìò}pL£n‘h‹[öo¯aglpq˜£«8'àwze/;ä³üîž Ü«høïЦÄ&Ù3•Ì£c` }Æ€»l¿ŠÚ¯Ò²ÔÊôy ²•*ÙÊ­O˜”R©¨8(VJf©Ÿž—šq ho Ôû!¶šB”´‹+u‰0$ÇkGÌD­Î‰ª]úÉÕ[MîôÐ5´÷È ÜûÁ®²ÍÙ¥\'Kw^RÑV*7ˆ|ÚþÔÌKò%Áz_CøƒÖ"_’ÕjˆÓé’ :Í0’ETXcõ®¨ò1¬×û‚¸™¢è™KléFЃRäs³ÈZÛa˜#s×»Üa7l3íì8†Ú»gD¦ÆW€]¤fg>Ç\Ûç$÷O¿“Éa¢Í”¯ˆ+à‹u5v›ƒ}qŠ,_B¥îwøÝ°ågᤪ$”Ç@Œf…‘zWÎQ4?Xø2Æ™ôJys[]ø¡ªêÒ¦#á…:“p8½Ú˜ Üí:·¹š´`êHF9`ö‰øðS±±©LˆÄÉüxvÜĘÀ ÛëŽ#ƒoä2 ¡}**ʤËJüxì†ý÷ç¥g|v´õë É4)M{äxåA®>w_JèSR¦M°ƒ¬Uƒ¨ 08é}À‡&e=t“ÅIĉØQ‘á^°ì(=šÎÓ .êK ²Š OK7‚1#SóØ…ô·òЪ¯˜j Zô5ôÌÂWö-•[põù?·ºHÜ%äñÄ¿{”‡¦ý‘ÈsêæÄÌÖu☧}mÂwd¤ÃF¿° M:9Ïc*{¨îdåyÚ÷zé騅µ?÷-q>àçâóå45Týëx™²·MGÿI\IÞ ‹AÛØ@QµMG° ¶ý«WºñîDk‘.Òð"Û‰÷Œ‹‚Ý^ÐÍY©åyPÇÕعÇ/Ücƒè~ùÎÅ«Éõúû ÊiRïE=bØW‰íÒ8>"J ÜKÝ#\új²x>½—#vßÇ×ñ­#Èeäí…øƒ>&YpÚ¾6\ à¨ïöG¾®P§ÛOi³ë‚Wa}Vú^!5£-OöIã*â „n “Ë*1öè‚tzê(7¿ TK4Á™z¤Ú6Òaò3hWá$ÑÈbEû㬰Üä°+ÌüÔ,¬–ˆ­±#¼*‹ù!4Òç»aLš F$lÄA\ ×é;4H]©•”Ò: —Ì“ ²¸Ò½!´+U±d•¨JZey Ü—*RÝÎ$ÄÑRO° ÙÅ‚ÔGU„[­´ªû¨Ä¸©ªW˜%e&å°¦½$ÚHé±Èw¬ôì¸$ëYuë±ëÓw $öÃÞ$C‰í·ãqô•“*ª4›X\–nE–ásž˜Ù˜÷µtJ"½{Þ8 çÓT6‰ÙUp|Êü¸ŽӉɳRÊY%žk›ÊÇ匡ôMÿ?q.a¥äöϳc†°;Yåé6 eFãaó³Ik*äÎåL»²¬ïà÷ :׊ô•:£B¸vyÚèÒ»ŸÜ=jpf§êOü^)¹SÑ_– ‡ª’nm<¥Ùaq)ZDÍœ2eéKü8§âÍÏ ‹Â!9RŸ•¤ Ýìì³”žj@»Óšš®¦cƦҚƒ ¹•€ÝÀDlŒÞ2¿o»ÇÄ5µ©:Tø|œ lkÀoyÜMFÒ 'D Mví8„Î[a‰ŽD7¡½+¹Â¯‡ÃîŸìºšxîÁ5ó—Ç?h¼r½âUnîix§~YêX Ž)o¸-Úêà²N£Šmî‰þtÖìöÓHd`oõ#ì&ò‹´ª?‰?*!Ÿ"+²tjêùD…]>ɪHK}†—áœk]øÁ#Õ¥M^-³ÇÆX öó´·åáÂz€|Mf#¶v lƒÈ Ê;Õ8A¾© )m9ª(—qQ‚î2úK2SÓ>õ%Û¨þ¢ÔÏhZy2[q  ÇÂÜ a§¡³ÙbÁñ?Ü´`p£uõwލą¨„ûŽ÷lÔ¿Äa&:óoÂõ–¸~ÿ>,Ùº–¼©!½âùA§õ”3Gœ¿{C ¬‰.Ð)(5åõÉúHâ #,,>PY·%Z«óÞ&D井Χù±v¶£{‰{u°fwÒ.…èÔM >œº‰Ñ9„: Øp~jÑñî¥Gß[R+¬9¼ÆAÉÆmqõPÙ©ùé™ÜU²Ž¶'UZÁr/u¤?é±éĉËïAž¦Ä'iøÚ"dpŒÂÞ¬£c‰ô ˆÇéךq4•ÚÜ_€âJcmÑe5ÆÌá0±*™õ¸Ÿê°û™P­ÙgÐ$y.7DB0ø‚Ç%ŽdÖð¤÷%އ»tèþþèÍ3?ÜËosp7ìä[õKÌSa>ɘqï„Ôx]܆-;7'ãLÉtLâã|“ý[»¯:÷PeqÍáÚ8§ÍËÆ j¡®³ßu,6žI¤ÿ¿V{†|¨ú˨µŸú›ÕÆÿy÷A£¶5މ³ŠXeÁªNÜaŽ‚¾9e£ŽB þÆcvgqªiöŠ50ÌÐà¸P¹#§ÿïsOH—/È*¡½Ï+(vNÎMŠÌŒU¬úÍZuªvV{S9ïïÀ¦;‡\M¡Ãç/û¿.(£½&ÔcÐ$kýB|a%$ÜLnÒç$~hHÛ{cm•k\ˆs:w>p’õ]ª2ºË´ûƒ%ž8È‘¸ôj"«2¶ššàœÖ[h–³ê'ÙÒuþ¸W­›«··«kws“¥ö¸Ðt:Óÿw³õµ[á‡æ´Ø¨oIöÒ<Yµ=kM-\±k>|õÇOŸì$ƒÊ…Ô Ð¿¨pYÇ„‘h0ÄÇ [·­>±4‹ê2~Á¸aKk¶”†hZ7ÕîCE§~xŸ*µ²Ðüè knsÀ¢ásÉø“(Š -äåpµ´c¸Ê2™22…'Þßô0©ìpÆU´z‚Ê™ŸM*ÖtÒ‘,*ÞíÃìÛD#ÑÑ€ž}.­àµl!”A¾¾,b ”kÊnŒ^°2*Ñ”-祕B>WpÈË3ÐßËùòÎÞûþÌsAŠcվݵٻÎõexšëêš…^mw/*šDÜGÙ(‘ª à¶iüoSU¡$‰vÏ,´Êþ Gw§ý.™ U3S&¹Dú㜜þ ÒÝOXÙogUÇôúJrâz*ꞎèÌ¡':ð•å™é%yµnµn5nY±a ã" FвGL_QiZC­ž#YWÐ¥ÆÙèe‹ýŸäåde\—Õª¿.Ò†?,5;ö>f]f"YMÆØJ[þ¤OQjM8 ';@²H&áàf ?vª>IsVž~áÿßbO–ÒŠbQz´yW¦üí7ž%v´Æ¸¿¤¤Þ[x qéÁyrÈ(1¸m)ÿ'Ã)´«'M2ןÐ×¾´ÚÓŸI,mSѱªí‚²-\úOߟšu ¸bj«a³Þ¶S[=äeXÖAlŠ.™Ž*kO!Ôr7¾Îhøâ”ûâM;·ù Çù–ªãp‘ûiR Qã¬qÛŠœînÔ¦íØæ<é‰ÌäqÊg÷± 2ÓÄM‡2w1_!úŸß}<ðh(læ¦Mˆrã|úîݳÍu%B‡ ¥Ø·Õ‚Ï©!8h;Wâ`Úô¥xaÁ!aUôÎH×­‹ ¼L¾%¹æ£yÐÂÕöð ð\|Ú™Š…þ8ù ÌÔ¿^Ì%ñdØè™dþ5{׉7ê¢tçÇÃíç¿\*w‰OÕäî‚Õ°“s 9í%ÈqÚâ$Åg8I‰ñRþ/ÜCÿ†~WÆøS®»‚Ó®(®µ¥+Û*ñKžÊÃ#U»!ZCi)z7ìö­„\MÛLÌçWAÕ?ˆÕü6Wë¾»« ÿÅ®‡˜Ju.Q óH)õ&!¼ß¡¥Wܰ_ÀÅ~ ÷7žÆÉ4²Êü|£Ò¸œxsb¤ÛŽÈL"ƒ‰ Ò·†t§¿OØo–—™mÎIÓ¥‚ñ?.Hz¤ÄoÐÌöÝ…]´Ÿ¿ƒì¤ëáÀ%Æëâ’A_¥AkÒ¯–8™ dã2™t!Êèh:÷%sqٺ̦£…E×Ärt‚çÜ«/?žŠ£ºØ"OƸ m†ËLúëÑþÿÁT.a¤ƒ·†|ðWöƱda½Ëz;2J¥nÌ~ñAý·•¥É1åBd’$lç<*,G++Ïl»FmëCFxnÂ(*[ÉS™~ä|—Rœß‘ÏÙJÜUÂ'ÅR—Ј¤dŽjÃøœøÌüg÷PóÁÎ «·ìövÝ~ÈótuI¡Ù,üÁª¯²/;(óI•”ù kSR`µ-Éä“@•G5ß`wÂj^Üþ¨·;þî÷,¹# å³??*z¯ìNOÖë…øØ¤½±©¡1i)tö‹âìe‡b×1èðH±/*ñ&íLÈű,- ̲(@º©”nboi¿éžBó $ßý+eÅm.ýuM‰âšä¬”Lm«ø´\H#W•³74yïÞ$¡½÷¿ž I`° +ˆË+MÛŸŸÞQ±é‹¢…jùpùk”ƒøÿÈ€‰$‰$H˜ÑF…I¸Ï„‘? $™ˆ¼¬)‹¹•p~†óðü#óLîƒÙh“k /ÞV¸ƒâv•¦“ö­ßûºÓ^_©‰6œ$ñ8…j,¾¦Ä_Ú”|dÄéa_‚0Çyì\˜¶DUç—Š¹ö<¢Ñ²ÇÍÏ¡•>Ï;7×CäèP„ãZ/*.à\„‚RÊÃ@^«Ò…%,Û»/.i5GA&;ÓÜRƒª/®‰ð=‡ìðéPÜsÂòÉ«NF¨n(;uÆ­ :U¨zq]NŠQ¨;|<³ ¸ÏÍËvňÍð$»^oH6Äôñ¼êö¸ˆl(Ž«Pc6haäð€õ©G6kj²** ‘kñ©Úææí¿aò£•”‘ßúñ›ó~÷¨v:B‹ Qr,±Æ[Ø—¨äfùDZ“øGâXi†ê>mO¨Á+ŸÚß±Òb# ]åï7_~~õâËOõCúÞI<¾gÕáøªÔGX¾Æ>ÖpÀô³¸ ‡ÉTž‡[xdg=$£ý\t>ZmÙÃÉ9úZ:¸Ù‹VúœXRâ4Î!.I®0\Š²Ì£¸½¥!-,U]eûM©™±粩Fo¾­Qÿê£H §´ n‚ÅTy€:Ö5?(z}Š·î¾…}pÊ㯱Wg§Á§–“Øç œW`ß!8ÈFÝŽNø=_̪J›3òˆç,WètW«+öJŽð_ngùžcǬ¿êöžÜygL%i´ÓÀ¬¬·‰s? ºAýÐüðO€Cìo‘ž!k`®›æy_þÇ ¢ªáqØ÷œxþ{˜7ÊæÛwØS*¥cß\ŠñuòŠªEzÈgç€ ê8⪠2*mojhª!KŸÍiUÞ$ƒJÛìOöïO5夅ôÎÙªˆðЈq¤ë2ÈhÎñ]H/ÓÞN°pÒ|2C̺^z©®‘ë—ÓæCÒ³pk©ŠlÉ`Åî¨zMèÞuZIn =z êpžÆ½æ(™mÛ endstream endobj 63 0 obj <> endobj 200 0 obj <>stream xœ­š|”e¶ÿßaÌðRD2À}_š4iŠ€¨”H7¡††tÒ†ÔI&™ÞÏô–dR'=“BB 1tAqua¯w÷^]÷™ì›ÿõ>“bÙeï_wïg>|>ò–ç<¿ó;ßsžaÏ !X,ÖÐ5[vlX¸À÷×Þ‰,ï¤!ÞcÇ2Æ¿Šzd~0’ #ŸñLzé¥1Þ!£QæshÁó›Åz{óÞ5Éü¬”¸±i“g­™=yá²eK'¯JŒN‰‹ Oš¼%<-6:1< ÿ0y{rd\tZÖüÉ«&oó]‘:y[tjtJFtTÿ³×$'òÓÓ¢S&oIŽŠNI""`UÒêä5üµ‡RÞN]—¶>}CFf¸ bsVä–ì¨w¢c‚lÝ·ýàŽø »_[>s߬ÙsFÎ}vžpþË .Z¼ä•©#b*HL#‚ˆåÄtb+ñ"±˜Al'f;ˆYÄNb6±‹˜C»‰ÕD±†˜Gì!Öó‰½Dñ2ñ6±€XG,$Ö‹ˆ Äbb#±„ØD¼Bl&^%¶K‰w1‘ ‰8b1œA$ÏIÄ("™xŽxžMŒ!Æ/\b‘ÉN¼ƒM %*Y»YÌlš]òÌŽgÎûÅq6s® uÏ“·†m¾dø#v¸62ïÙ9Ïþa”à¹gžkÞÿù?®>Ö¬d죄ܑܺqqã§ú?ã_ÎK›Àšpabɤµ“ºþm-µŒº@£7ÒÇ's''O1åÉÔÙÓ¦LÛ;M>­zÚ£é[¦_zQ?cñ 4³nÖ„Ùó~`EŸ'Fý0ä÷; ð =ïúRÖùžgÙhòㆽ¦ŽÕJtºlБ½ÌYYk„*Êõš: ÍùP┃\O+õ à»9Ï^TÞ^Ù^ÑN"ÇÉ,÷ËL‡IÄ ç±¹Õ-TÖ4iɃâ|9ƒ5¶*-ÖÃѹuF!ð„ V(%dÃæ–3÷ü˜h~¹EK ‰Û;ÏÍòŽ=W|‘²Ñ®Ùm)3»óO¾¨¶ ¢óö B3¶ìgFäFÒ¢8 2Èý5Ž?nD³Í9(D ÍQSr>öV 3t®‚JG•­‚.=Ó†žnò³î=Ëö D”âD\]€Ì4a¢ RZRês¾^ï6SÅ7JNx€¬‚$‰P#P é·˜3Z¥NžÄ–SšWd-±RøOá èntÄ3Æûðw _ŽûØËõör퇭Ð$ÎyàX—ðê/2šñç xªþø ø„¼t…aQÌŽP‚CgƒO5dk@«Î¥™‰½­~cÿ3N®”¯›Ø÷ßv(¤Ñç4 EC¿û|}×;ÍLfîr™ç9 `´ZŒ½…¾ýÐ[œÇ–WÍY1Búõä°¢!7PÞ ¶×‚<Ü?]_Â<Ïp™©ÌŒé—·|ŽžG\|ï™caJ¹Q1ž›'«»þ,Ý|ñxÝ OÔì KŸH'íØºÈA1õ°<,Ú³„Ýãý{ìý–²ã&»ÞPBêÁ!Nåk …J€xc"J,‰]g¡‹tJBv_«a’™Rÿ¹èŒÚÐóÊ;ôùN'”äIA©(*bŒñÅ"s(Ò¬ô÷Ì#ƒÊ 5TÌb•@´C§Y¥#s}±r‚±Å§Bú´kZ° ±„óä HàC‘-︵–Î;nop´›‹À`µù–rEO¤{zæá¥ÌyÄî9Õ³’«7é-`" :›T«‰ŒÚ¼*ìúÖÂà1L<“Έ™×þ2Q(±ÐÁã)¨” kèÝÌJfô¦×€\ºøšz©-¼‡†Ð×~ÿû®O€üþðKK©âACû¤æ4ê‹LTÿ1»#Ð,4û/'÷„ˆK¢ÅÝ¡y)¿BéxOÉôù4®­ñÒÝ÷€ìtl‹ç3#’6Ñâ”°€Ý@n•>´õFƒÕ£îßüžõŸ³Ñ[·¸ò8¬U ëÚŠ¶£8”ަ-ÿ/†K3WŸ¢ô»ãìMV=Δo8÷ï†2ヒ˜ÀWgÒ{¶­ _äôŸi{”7ì§ !âÛ+ó¾Âõ½ H»Ü ‘ˆMRâÚCM{dØÌpf.3ãÕ®€ÛmÍUÕ5tæJ=d¾. Ó©7éH~™Ec­o2B݀ݪþ—QµÌø™ZdÂûðΊ@¯;éAÊÛéÊ‹]'ÛÀåºâd‡Ð‘ÐèÔZ¥OIÕ}{ÁƒY—zÞd÷¼‰Ä\½Áh=éƒÛlšŒÚÊP±™Åø5Gýl…×Qß#Î5«¯ÐåÈ“hÐj• !±ê-N£¡ØD½‡øýëåå‰A-M†’¬¤/r9ç"ÒÙ|¡ä¡ÑDT&®åkEšTZ§ÒÉ|wq‚©@o*6På(ÀX¥„ àõàdK!Kd…ÒnËt PçÐ̄ކþÍäý¸™ÞTN)èõV^"«ªŽ”¡ëw]X«³°‘µámèDÜ/À 5Pš+ÑăŠÙUÅž‚#§7:¾} $]HIÎD•ü'-·ÎZk3ø,Wßí‹ð1êòEx1]GŸr?ç\µçð³ÕB|V¡S,gX‰¹/l&½Ì<߈tš,•µV˜‚“t%ç Ê Û0Î_Ü o§jš4Z'ô{jÄöþŠˆaÿim7B+ÝÇ4@Úó°®d ¤¥œÕ`Ë7Áäò9sþ#ìÌïßCó¯ÄŠžyŸíçÊWËù %%–슢ª¼Ž®ˆ#˜a/¿q5·FI•vJa'Ï_1=}«ù”:e†vœ%¢üŒ´äìÐwº|„æ´ Q]VGØ©dËte×îU7K£œ8ˆl?6<”ëñ¾8àyëQ4×Rnp2ß Å6µY–§x: Ba@ÊE)q‚‹¶qò¡H—¯+ÓØt jÐÊ“Ói%‰ÉaQ;ÄÑ@Î]öâuW Å÷ûó½‹HÝo²¼ÿÍd_ùn šúû[]͵´=Õ}À V0XŒNŸ7÷ñσ֔bË»ÀFùÞé܇œ"ç@´WpšÑ,S.+f^Y¶Yš"ÍÀdÅ,ö{•“=¨ì{œ5L«N­B./¤!òôžà1è²äTÖÞÈ·¶ɇÊB+Zkè!ê’5z°=ì¡×˵ÕÛl—,³C±SaPDGàÒEGB„1j týÂõÞa´~L5çRö_Çû•×ù¸ào”ÖÒf„#t+´ip™¶úxK™[Áf÷ɬ€þUú¡jΦô×^§kŸ<‡ø{Ááå‹®sl¯Ã;‘k°à<2’N¹+3Q‘$×R«™NUhe"ž 9)q?¡²£ ¾ª¼FÛÊÌNô„Íef)ûSÝP`¢lžê?tétj¥Jù¹Qô¡€C« ˜\ÒtöLc]]U¼³CYÍPVéò·äucy÷mŠN—®¤r· 6Çyª 7…%5 ÀÈûÞ ¶w¼á±Ø¯ãqôÃDd¸"è3F‰w·/‡kqdµØhfRo›ü L¾x2È’XµV_·ÑmСiÅêgˆÌ-`uêÁâ‹7l < .œCÃ~ÇöJ½#¹MbORZJZšÈª°(¨ŠCÆxL¨Éû3t§ädCwý£ê›”¹Ðâú•¡Ix53ö‘ ®$G¯w¡ÿWåóÀ|þàÖ,¼˜îáE´?ýyô:W‘¬Ë€\R’ðÚ®ø8ÿlÕÇžÏ(k‰ù×>-„™‡€q¶¸ªÔúäNMÔCS~Ý)WL+ÿ<\€ö¶ºê®Aóá ù´¥BdüÔìˆôàøˆw ¶µÛõΣt;zÝâv´âd÷I'IÁÇÒù›úêy¦w·?_I_¾Æ+âT:JÐ_ÿËz~øhÙ‰VÚ¹§9£éWK$¨Œ+ß²üi…œ|õdS'8¡SëŠÀûÖxö烿¾Îþëè_2ܹgÓÌ œt,XIó¸÷’ÿvo·Ö­Åòå1¼§õ­/ôæån‡jyr‰.ËGØuFðྥ©¯oÁu&O¡ÓÛ Ú*paÙZL…ˆç­ñ×s.ö~kÈ… xù`¶ZœÞa=,üÏÌ”ÞËSºšøš»\ºšŸ^ºúÈêŠÓòÜÎ+Xz3بµsÏw¿vŸK(qJ‰•ÔÁm"•²@êT‰ ³Ë±Ï¬ ›—)³jmyzCž™¶¹k+›¡ŠåniCÆÈÉ–I„Bæ5f©ÿö{WaJ“Ú1žë VUPVÝÙn°IŠS 3]¼ào΢qŽ~iŠÔtVÈÞ¸0È¡5Óž˜/6e‚ ä ÒYme•55äϱ/ƒ}¦xö7¤ïVF”ãáW‡ãÝùìÒe© ƒ*~cßóã0 ˆÒ¼÷¹…WÎkõ¤1O_ÔG“}4qÆ U¢¾I€>­µeâ¢!Ó*´rfHï&&Ð[¤,Ôé1k3£T˜õ,Èu ÕHiÆ¿·:wGŒèÝߤ0®7ÏÅ÷>1çèµÀÃ`¯7—ô»%â»Ñ œcœëHÕÂFr$äÖÁ‡Æã%wëá*XÉ®˜#›¦2Óf0 ¿ú‡§ç×FÉGGZÖjÚâæv ×¾5:€l-çÇMa–ÁAKý·‡H¯êy­’…f}å~Èî©õqÑk/~ÃŒa™HFÊä0/=™Œ&¡}(wÌJªwfïfî‚ퟡ]hò 4Š>óäë[€üôf 3añ†·k½‘a/ zËç´¬Eìnî’{^Íû´ÌÍJy€.áî¬Cñgœ"Ç@:¯ä|l,vݰ5;ÏÆ{Y¦Í&ªrS!“L/–VV–6uD”GÌNaÆÅ)¨ fˆßß.db¡¹èKœÕ½ÃÄ[¤Ê žÃÍX*Qf$Çñ"÷EBˆ øÎR[^‘ù²’CY ¹Q‘ÍYþ|çƒ;%by7š\VL}Í…8Mž¤¦Æþ¡6—_6‘y†ÊÌb¦¼zlÝíSmyyôUTÀ e6ÊãßY¹x;µwœÇëа²ctåÙ£x-ìKåBav=ù´=çöÖúäòðwnÔ‹Dgá¢e7ѳ(Ð:òiÒij²YË(y°6 àŽ²˜nD¶¡í«Ê¬”k• -•’qêÒ~M2kìܵ iŸÁM¸R‰^º†^|üð½üýùå̈Åû=óÊ‹´¶^ùñ w„oÛ+4* *ÍprSÅñl•’Dh=\ìèYx÷Ä:9ý·þõ°oŽû[„™ÕûH§ÕÉ@Ë“ØsJÊò‹œFÊäªGã¬5ý³`ûa½¡¸¾´¾ãòÿ‹YðúØØÄŸL?åén,Ô3ntÚ3Æ›…X_›†™¥—k­³¬øS%@^ù˜§TÏß¹“NL I[ä  Ì墩‡¯=‚[äÝ7¯3£)¦èWêy`Nùô|ú!‚3¶³ý´pM®F–»–ìSç‚€\u1þòƒºïmV­E$Ò©Ä*{{b<¶ÖDMu}•±ÂXEËÍG¡ ÎŶï.pˆþ­á݃^8wì½ðÏÆõ¢h÷gÁJâ¿„ƒ%ÏÕWWå7ä7Óî÷ËðÇQ‹÷¯„|/º2f^3[õÉØª÷‘Œ*-U’¤Ð’I’ên(qRî–‚‹`ü,‰v Öí’¯-/-·ÖèÍ´¹ ôת7ÛË Êʪ=§Ïé:‰ÍÂ*ÑëªX÷5Žîšâ–ª¬ÆÐ]aá‘qÔ¶ Balöy yeµ';º¯Ù»søŠ$­ ÓYþß¶¢%ý×ðþ=ØZº/ dÿþDJ~=¸$aÏÁ¸wÿ/8}õ<½¦ç¹JÖ7'/¿‡Þ8ïêd{§ ^îw“w6µ0CfNŸy  Ù!¢,r½®3’yãuÁl%—ÞØõ{(é;²¬—ÕgVSJkTcZ)9íKn–Kê† òƒÛ|ræÈÁ­S™Ñë”:XT1ãÏ­L/à¬X¼âåMû;®Ü:ÿå X*|’¿ƒü+±Æ}ˆR.sÝÂ²äøƒ‰gW5zꨱ×ï£O¹åÂÒ丄ø„´ÂÌšFO½gà^º ½õ= å#?6ú/ïw\I`ôÚ ;E8»AMjŒ k zÀt¦j‹L‰MŠ/—–ÛŸ‘á^ê{´ª”…ª‘ß ß=NyӹΠ-}p6?O¯Çõʨ±*¸-Á Ë0‡w´V6ÕÖ§92²³dR)…6ûõ¿ÜßË2Ʋ¿nÇœ{’*S§AáØù™ü!Ü4é¼w(R °‚|?#iU•fèrfêŠÂlH`vÀd²o.©\ß±µ÷H&“…þåžd{ÇxC¸p^v9ëdʇaݹ8•Ôj%vw«”>»Ìö*3)¨w(£`Ârsq¬4¤Â¤±8ÑÐûhê# A7ï²ësW[ñ©Óí¸Óí„JÁ!…(ó¯Ó--Êw˜)='ŒYë7ªïû1(ðë da£÷Q ·1Ï`±¸qŠöqŒ¹G j‘V©øŽ7mP<àÈæf=ö†²½åÈÆu9ÀÙ1½s99Rôu΃ÞåÛû©ž5ð=€þ„,õ>f{¿ïÙ˵惩ZíR¹R“#£zþ÷\Ô}#sØ,F—}ШÝ=þnv]½Äöžö*¸­*4Žá®Y±áR{æ‡1k`™ &|𤠽x•j{Ü‚Á}’9Ý«àÆ‡•~úÙmt¼é&Ý|û¬»ȶÉ›V0‡ÃæÒéûBvÃ@vc–Lö V)ËÚÛҤÄ&ž#¦Þ˜ HÒ¨|0MbÌ3¹NXšŽQÌðÞ$y¼\ºxò~m8ÁÔÑi„ú(ti޳HAHË9"ÈÖ‹ôéF¥ Å`×›ž~Ãê›ì¡#x­ËêÐH7šöÍý˜{ò‹[mžb4ÿÑ×—qqÙYyv%3kº1ÓÖy·l)–5‰”*•ÏÖôZÊ"6‰@L&ÅLyG,5×\½‚Ш¶cüט—,D…òÃSÖJpÊújgžÁ€ûQ[Mñá:¨‡šÌÊìª,Oz+n†v¡ÕÎÁa½šÎˆZ¿’!Ê&4°EÙÛ“V«\‚û»{h¢ç&Y¼ˆ½uÜ7nº/ø”÷-7W© ŠèNI·vy–lVp ÷nJ(„@Höãu~3¸ÈBIaÚnm`Öºã¾*;æÏhd‰úÖ›MÔwMÝ_ÃòáÆ+™3¦¾[’ÔÜÜÕt²DâûÖ®ÑkJJ¯³Š ‡Œ‹ONÊT–ßýúÉ7ÍdzÖ¥L³ìÇ/¥”¡h÷N)ë¨w5Û»sûFF²*U¯ITÊVSi43G§\]Õ&JrÄ8³1<Šqšˆt¨»ÑÐ÷æ$)Óø ê 3z?3r-C¾Î¼°(›³&>„¤Ú*²Y\y6'e·Ù­ç¡J¡I’¯ªºå1ÌluŽ/ñÈŒ"•£$ßYn¡šÑ ‹ÎàÕ\Í/4+óplA-¥³)}ü®•~0Ô5ˆüms#êŽËõ›lÔî}ktêqµÔãÅ84%Šrm)ÞÃ!_~î²* Z§UÑ¡™¡ò(ØQޤB¥QmPãûj•É›Ìûþ:NîÃ)Ü}[ F«•:uá={-N—ÒØ;’¦fDÒû—¥Ç`øz§T÷QgÀnB6–Ô–—Š Ò‚•Añ«;6|^ÀÍåD4÷îþ;KÞÈNŠ¡ðb€Oð¢û7! Æ‹ßÄ3Ñ;67üÄÝW _z€æ<@3°½á‚x¿ÿ¨Æ—•opЍ$ÅG§Zq[V…Yi*Rú<µ¢ªäpÇþò°ððÄ•¡8ÂŒ#™\NZk/´Z êëN‚ j5%9MR$ô]V]î®?\º™?{u.•9Ýoƒï[ƒ•cuïpÑzQ°:—§LÍ ŽýÇeða^®£.¢›~(—³Žù6wUö&I*O%=ðÎnÈ„LSNA¹¹¤*û®ã§¥Çïî¶\ï>ßæ¦*»Î8Σ°‹¾éfª(ÕÀaÂC=ï †?³´tä0·}äH‚øA\„Ý endstream endobj 19 0 obj <> endobj 201 0 obj <>stream xœ­WyTWº¯¢¡«TÔLœš`ÆWEÖQ㊻ñi#‚€Šb "ˆÐlB7K³*B³wÝ4 [/ì *( ¢¢ˆWB\&’q›Ä$MÔ8I&·x—÷òn&ù#™÷Ï;}8‡>çÖ­ïû~Û×4ekCÑ4-uñôžïdýïMñÏ´8ÍFü àÀ¡‡C[ìÀ^ö¶-Ó&ø"‚? ¯ÉhÎ ”„¦×®÷uQD'dž‡†)§»Ìpœ¿lÙÇÕQ²Øð @¹£g 2L¨$_"7+‚ÂeÊä9Ž«##½­OÄ9zËâd± ²à‘W»(¢¢ã•²XGOE°,VNQ/wV¸DÇÆ¹®‹wôHò”…†…oÞí¹uÚœyN‹)jõµ‘zÚDm¦¶PÓ©ÔVê-Ê™šMùRk¨9ÔZjåF¹S )j1åI-¡ôÔdêÔê%J ]S ¥¡%t8}Ç&ÈæŠDi;ζÉn’]ˆÝéjé_™yÌvæ¸Æ÷d¼y‚ë„“½ÜOœ6Ñ0iò¤âŸèµ»¨I?ÙCXÄi&Qý(¨_"nB¹<„FåAy›_a8ÌÙÒÌDVóOK·“3é³|\Ëø§ƒ;/gêu=Ðèz5kaÖ§A§€¼˜®õ^¾\¾Í‹Çi¿sò}ˆMKJ8&#% k&tÌB#~}öÉñ¡UœÜÄÜÌW…ÃLHžÊ…O”‹öRÄ}ùà›»Îwð„2ákõ«p‹ýlá}ü×âÒ1‡tE'xô¢ôÛÖE>nï-Åa:þ‚ Pm`¾9³dår¯Õ3„I?Ñô”ªZt2ÑMƒ¨iP" q3¾Ã,¶Ÿõ ~ÿñÛ·ü½ÈãìÏ…€¥¼+ºSsŽÁQ¸ÔÜÙxüDe ´Á±ä†àæà!ž1~Ší;’d`m¯w&•`šk¡{Šqõ’!Ç¡ÿä P ÊÖ¨UÙ¼ï ÿ^טŠ×c'òÙ‰ƒÐB<¹¡¥ÑkȦ ÓUšœ,!/Àì»3}o>†:Ñ1´ñÄ;rÂ3M‚. ò[ù&aS¼Õ‚æšÄÙÕô÷ý¨rP‚Ôx7 Ž3cˆí¾ ,bž=Fš2û ¦øyäæ  ¬_/Ì †#~¹Ub FЖV6uv{ëâÏO Ö3XŠ_ÊŒY7œFmõM'®?øÞ¿[ÏëÒA©˜_sJÞêu~á”!Í|H8µ€pÊýÆÝš«GÃîCz`õPXieË}[«üú-è‘ß´»¨û®D|$~ÏÉ/¹É›,Ò8õ2“–A)kL”X…»É;ÿí™_„+­ÕÝ#üi‚{P;K^ÉP76üû3£l&ðþ¹ý¹C¡Dgî99\™ÅþkÞY–sêþÎàW¬´„<'ÏdÀB›"jc:ÒδÂa‹¥¦ò(;ŸAB‰…qÍ,êÈL!Áté;1ÍBŸ}ŠÞº-_´¢2@P‰U»Ö"~Få +*ÃŒ“ßFŸ„ú¾(¾)§É­lힺpeLjÈš~ÏxÙðccB)ƺ{Mô‰hWÿ`µDü2qDMímaýË€]æáã.7¦ÖÔVUÕv„Â^¡æØiC;°'/Èæ A Þ‘·j ¬dW|{éÃÎöÓF~¿_sèq`Í}åw„ÞøÍŒw\fª ÎUðî]Ü çˆ¾»ZO#´ò@«Ž”aÔO0²X" b.^ªúË><»»P:bâa¦Uwàßd‘ÊÕ ˆ‹EÓoÃ)‚”Üi{Â;M†A1ÝBoIÄè×0pJkâîru*a²Ô°™ÜÀQ+!2Ô9¹ª7p– ºìr(íÔú0ß #x[è}NY$š1lãð ¨s3S¢¢eþÀF&@€–ý-µIeÉ) *¹ìHȹގ®+õV'hŸM YîõTÓ-ƒÈÿ¾ý(åÒB`W\UJm±Ü2ðîéåxܜ׬æþÍ d‡š}qqäehòÒò„ø5>Q>Àz-?‡f¡åŸvœ9z~opU»ªÅÏG(ÔŠUKPÊÐ,.˨!M²x®Ü$’–‰¿Y#¦yŽ˜f#œ»YpªAk”ýßã÷§çg–ÀÔbÐV Ü¡IÚá[ÒçB¨ÑÝ!B°À1Ÿ‚Øø\lx®44šÌ$,þÐá箣Èe$É2/KÄ)h/W­ã3ŸGx"–.x¿€þ9IЄND™ söggªsrÔBÌ’uÊ@`ßlD«#£5rz4ÿsC#ü…øm8;ÊahF>ç?3#™¾t ¹\kë"W!7îTd;”ûåÀGŸ4dÝ}Phk?°ßú§V忍 M-I«Ô ª ©aïïÞ›ÊGÕ„•‘pœ¿Îu¥wKHI†¶7YÁ°©%VŸ³cߎPx]ûÈMFžž»U—uaC3¿­þ}X^ÉFUI†ÌPUXURÎ>Uq àY:ª£¥©Ä ìçð¦2v¥D Iò(U° qo9w} ×µ­ªË‹á:°÷‘,ܸÊo®ð«E…·ÿî.´‚ÜS#Y ú§t4(GLhØüÿ· Ñ“‡­e°íhÊcÑW$ÈYæêj1ñ ÑQµIµÍ†újóØ‹xàÕâlâu¿äire)ôÁaë¥î¹m‚hËŒ6Gvù tOºÙ'AÁâ"n[™ÿ¸Ê^ï½ò7´´/ÞYÈ“="·d,®ÿH¢äå¾,>Âkûe·$Q$ËÞØ^p$Hh nɸ‘Ü’y>µ<û”²Ù6³ïl]³Ôß³ô¸/¿©;÷¦æFŸI=£þ#1Z¨Õ(â÷ëÍGô­AWÂ?#{ˆíݯ‘Í%egô!!¤Ó¿4¸„µ2éA×Nö :„ h³ô …ü+=zýµ‹'´f-i3QC¬*¶ÒêUš°‡MLLÖð˜èÜNL`~,ë´šÈç44þ Ö¿˜«½¼m”›äS+ŠÒ!•MNÍI ‡ët]dó8:8n= ‘ è`GÓ“LöåÑèüWƒÕ\S8ì8kÙì ¯µ#^üãÿ’“üb_ESpMû–'1—>È%úK”ƒÄXûü¢…ç ²k¥Ç;CîÜï´×5ÒÞ™_µ7V¯yèU mò”ˆH¼Ë×Uø›uÛÔj¢Áh d´¾ï¬¦B‰ êìT¼aXå€ß«rJÉtS-g ŽT§^EêS€ëHGÌe¨„Š ´oxØ¡ U—Så Í/ªó7Ì7LâBÓ€‰néGLjºœE#§½%­çi - #VÊÎ~Oqkpîß!¸â‰Uª4¡)åˆê0LEÒo£)wB®m=&àüŒÛÕ©¾nÝÃuOZNŸ4µ‘•¼9Ù¸‡­HáZvy·ÑlVìP†*¶Áv³äéžkì1ýà±ytq Js¬M»â+’êëª*,ݲ³ Iˆ:`GãFdïù)¢~þ„¦Îùâ/N+*MÆqÕ›aΨWuÁuövëÓ/Ï[BÂ+øÊB³D³þI²Øí¡)A¤mÂËUf\_%RXÊXÆ÷OàÇÛ.1Ù3ÛÛ÷WÚO¤¨ÿàF§› endstream endobj 17 0 obj <> endobj 202 0 obj <>stream xœ­YTTWúãȼgWÈ‹`yc‹]c/‰F±7b±Ò»ô6Òa(Ôofè½ Cw@@[ì=×c¬-‰Ñ4÷>¼ìæ qÏf³{ö¿‡s8 óÞ¼û•_ù¾QÝ»Q"‘H²ØfýÔ)Â_£ùÁ"~H7~¨Ø ë_)ÚÍ ·zw¯2q«9?wRõC“ûSb‘hÙê­‹ƒ"C¶{y‡ »xܰ©sçÎfíï²ÝÍ%`˜K˜·‡¿Kyá7Ì6Ðm»GXääaÖ~~ÃÖ w„[ïê²ÃýãÑ‹ýƒda!ÃlÝ=B(ŠÚl°yQà–ÅAK‚—†, ]¶B¶rǪp—Õ®k"Ýl¢Ü?öXëù‰—÷úí¶>|íü6úoš3÷£>=LœýØãÆo›Ð{b‡Iѓߟ25fÚôófŽ˜5»Wß~5‚ZKÍ¥FRŸPP£¨uÔ{Ôzj4eK¡6Pc);jµ‘Om¢&P›©EÔDj µ˜šDm¥–P“©mÔRê}j5…ZNM¥VP+©éÔ*jµššI­¡fQ6ÔlêcjeE ¢¢©ÁÔЦ8Š¡â©íTjÕ“êEÍ£zSþT*€úˆêKRý¨þÔÊœRSÔ;K9SïRáÔ@ÊRÔSÔKÔ›ÚBjD>D–¢Ön.ÝN‹mÄÇ»¯ìÞl6ìZÂJ”ôlú:#eõÒ# ÇÞK{þ½WNïå}zôÉèómßø¾÷úEöû¢¿SÿÇV0˜÷0·p°xøNÅ;¿±ûÞúnÆÀik~ké`5Òªu÷ ¶Á1ƒ[† òxè„¡²¡-Ü,.KúŽ4xX÷aï >t¸ãpR:Ò{dìÈg£T£½7é½Û£íG?óñØþãzûí7‘Õ·-Lh‹‰_iÕ¶Y‹ùmkØ”Kg[»yšƒ¤±¥ ³¡{Zt‹ÝWÀ ^¿ü€Xd1þ9î>ßÅI.µxv‘Æ£<\ÍP8IÛ½_ƒj—ö¨®ªàˆºþwøÍbÇßP]eàîó/Äõm X¿rúuï¼îœn4qh,ú­ÇƒÑT¼@ŠßùÛ0¶£yøÝ-ùBò\–Y²÷“¬™0°8b­×Öð õëFƒÐÕýξy|E¸Á|W+*$Lq‡ïŽÅËÿì¤ü)í1ÅÌâYuœëùcfÄxü.ðl4b®4ï­1JõÈÅÃið ”…ÆÅúÙ³è㇈F½®´~y»eÆF!å5Q¡³&T·K„†œ'tR{hì‰@NvýÄyK;u¯3¬bÁ=þ†²Å‡MyõBX2– ÀQ!„Õ 1F’W P§ÄMÁY–cQ­2W#hpÕ0Gh6«CÁ:£j„Buv\š"Ç?#b&N±œˆ )¹äT©¯¯ïÌ‚6j½„ëC®*×™ã¿Z¦Åê“„,èÒÓòD –?áÆT¹ð/«<Ðwd†˜c” ù–V=úÔhÞrcÛ4ûòµŠÑrtÿ+6Õ­Êå 0¥çòïHO†ØÒëBråþ4ÙÓÄmíñjtß³¥p0s—Ù¯ô7DUV*sSê´ÒªúC9Ä:å>MêI[–oV-U­ñ_¸=d81< 9ñ@ÓÁ.ÍaÇÐowÜêZøDK+š›N:OÜãì[Çâg³h²ÎÌ%æ{£ñí"Ë”¸XEœlCà²ÕBÆ¢ˆbSj¦ ™ÊˆÂ°pYœ¿c‹×áóͧN• {(Xªº'"bã6=#L¦-W•Ââ˜àâðêJCÑÎK ö|„¼)Ü¿ó|,iÍAµ¨wvv¨?*Ô\ÀäUñžÀlœ¾ÍD³ï¶Ë:¯ñª'Ì$Î2½Ò°j¾üŽ)ÚÆ±‰F9ƒç¿±2*:ìGu ‡ÈøU‡:]ã(8X%å´4Rü­[Z\éR«Ðg¦æ M[KmûUÉk 5ê/uŒÆßÄ—¿"ž/ Ð$GâÀö³–‘Cÿøb~ÿ›•#“—‘¾&‘ã™f’ôŸJQ7âg$\ÛÞ'QjH±ŠÍ U@­’"´Ö,D’ˆ{îp ‰¨§ä-Y´êèd’Ö’‹‚3é‚]I£1o„‘ÿåí®Æ~´Å¡†çJ»Á¸çˆq˜Å?ŒE’ ûwÕVHQiwìB“þPË£ü·9Êœ…¦­ Ýܬ:El_£îlÍþRÓîºã„ZbLŽ9Q䔑oMfCªù¹ÕbÓ6MÌÕh#ÈQ?ò«‘€AS )Si5Á´—üiŠè´­&UÁOlf™¯Õd“%Rþ]&Mé­Ùªöتóºøg°’¶/ ß´™)ZÔ1Š&^$GѬQ¥Ïíž\1ï"¿ý:žXý¾û‘¸$;I—’¨V$©¥Þ£¦Bl·aþŸÂEh`´¥l:w¯b0?gãÁîÒNÊ–U¶Í©f?§ŸÅmè ‹œñ2â­ÂËñ$<»Ÿ6OAËÐ*4MGŽþÃNÀƒ¾Aù(¾Ôú\‚³p1:û}ÁÈMí܉˜ÐŒ{™Fê~ñÉ1Z&ø8‰ ÷@Œä›O?ݧ/€ä.^!LXaxUM¡¼Ñ³nãÒY‡s˜žçw ßøwž¿s¨Ù]‰ÎwŒpèðÏbŽ.³h¾õFÔ?Œý•â—o-þTDT¨ˆEeÝC š÷ÚÁðta+€]ËÐúÓ÷Ê”™W ¿Ž]¯?:Ðâ¯(-dgÀ‹²*mmA…43·¬º ˜0&,Hã"MŠ tfl&»'°YUÌÓË—o4F7†”Iv5¤ ã<è5reŠ♨¼øÂì’Œ²¢øZ÷p'…« çR碗3yÙ²œŒ;¤q1‘>àÍX´_ž‡)|m”¯3¸1‹Ÿo@}QÏ_ŽÜ¬=²¹šÛX½>&Œè ÉZßÔ&¨…T(+20ÈÿÆŽ^väØÝûôÒ3’û¨;Ì´[²eœôÍF«‡¢N‡*æPûöj68­öb4èGÉÛ"Sô¿Zx‘c|=„ø?RÜcFtÔd.WƒÌüü}å@‹(†^²(—†2È5ê³u5`æê®Äï- ý•¾ˆcŸ•ß<7™ï±äÃá¿üAüãRäµH'ÖÑ’Bâ–ê·ïö?X«À­Ù£Ùë„b'07‹îV§CNœ“5RÅïÈØ IGbŸÆÝ¶Œ¼°µnC 9¿ˆí4-¨ÏKóë/—6{Š–ò³x˜¯Ï³„¾Œ¯³P«=®+'žÙ± è²’t n½¼(˜ÉBV£KI'þ(õêÙìÌóGZt¥‚E PÅA qÁ6ºXîK4ÙrˆƒðØx₇㾖|ý‡ˆª# X;¡IÓ¤~¨Ÿé 'n o±…H«ˆ(e¹ªZ{FWJŒe¦F¸ÊdàqL4Ò/;ÍY›I0gÑ,1þÉö¸gZÏñþõîCãáˆÁäýè)’qzdAƒ®Ñu°_Ð1/Í6õvð†m:¯7:öm"B%b’–¥m«ØÞ1]Tõl|C±KÛ†ç×¶MÜ&âï²ùU5—´];RÁ˜wíHjJƒ‰9JR)Ô ¼º}‡%¶åuŠüŽÁ³æTt¬I—‘¨¶sçñ>¼ŸŠie™‘¦Êƒ"Ð¥¥å [k»ÚèwLéõÿ«¥þÿwý/o”GìëÇ7_\ÿǯ~ë.&ÊÞ‘¼âW¡âWÃIòŠOíÍÞ#øfµŸ†Ìª°º3yÑ|ÈЮP%‘äowµÄ3ø8Mª:Ì·;OCeGò–w4…³ÎU¸ã”B®—q©%–¶[㙼\£'ÆFÿ/®¾©)¹žÈ¾½ÍRŸ¨OÈR—ŒÔ<4—O³D´§wþÓªó¿Â|+«nëWaÞr8lªÜvx Å 4›w`v*wAsîó–«×.lZ¼Þ}ÛZoÎÃ~Ñxè(\džL;5eÌÖ“#uŽ-ö\N|cHa±‡ëfÚŽ4ü§¿"³ïZÿÚ ßïÑÂE”Fg¯nbƸ°ÕQý?õ«Ž8è3Ö 7͹ø³ÖÓµ¾>Èuœ¤áɽ2~9Í£UOû#"ö¼]e}i7Òa]”nW·/³¦ÈZ ‹öOt_qÜõk2Tõ%@ñ•f3búÒ´ [#9WÇ0XÈàߌCÝÏ5·œ.ãpÿØhp¿ó‘pÁq8XÚXuxw^=aŸºíE޹¾©kÀ™³}ütaò¸1G`ÐKÑ׿'[w¾\Uñ͓ţã¬&7Q åxPDJ£i2]ajÔôÈhŸ@°aÖ×ÎGƒ^>8v{WX~˜@¤¡%! ©œÿf먭ÀÌ„S‡Îå”JÏ?Ìx_1kB±@¯€~‰_Šî¿£ |ß¾ßü#^nÄv¥háŸßÑ.f AÎ_mœDü¸ŠINS¦å|q15ê/í¼#ƒ‚ƒ‹‚Òt ÕrÚ]fÓåcMü`*4ŠZZwŸGƒ+ÐÙjqÛÔ‡UÍ[íãv°éˆïîÇš.¸µçbiýCF<Õv!ÿÙóúŠˆ„”dJºa¼ãrçq„ñ†:!úøÙK_‘;ÝºÄÆzÃp—ôÅõÓ¸p™«³¿¯£CpØ13î®yþõ™½uÜåµg¢?…¯àü)Ý}¦Ý5³A·U§ÁÄÜkª­? #Õ+?˜Ì9Èí ü÷Ú”6ljô\½Þ&9˜9aÏŽßÙÕpüh—9GVMhr“èdÛ$qÛbt›-(ƒ!b¥íßKb# <¼ ¤üwx#›ßùNŒ´ý[ILç;ù]üËK…¬‹Ð£¹ò÷Ù³¡û_'ÒŸN ‚N«Õ£ƒX¥oòâ56Òøøßsßúê)€ÿ⩨Ýó£Ú¦°{§°‚ì(.¨02#Š =B¶Ù¶0ÆR»ûà¾²Š˜„"®*º8¹ˆøëã‘“¬yî%²6ˆÐD#ZHNRÁÛ²•QU^á± §Qk4`ÔŸZ›ñÅùϤ¹ÂÂLÏd¤¤¦Èç,À=×–;î­/®ªäÐÆwÿ›Û:÷ËX_úÊÖ z~ZŒîád–¨³.ª@æ¾h I€íF‹P?4 ¯ës”zEÂÔåØân3îÅ„|ççà>'°ÙYÜïþªl`ÒSõÒNhÂË;¥èòãKFó“OJ 2Ÿµv"SÇ2vµ¾²ÊPÚ-Ìi·x¦l–¯Ú^[&,àö»@,g:vº …˜&,wÿ$:22Rºr±ì}ÂKŽt$(ró «˜#¸Ä3ÿ—¿G‡¢Ix-HÏÂM9ê³™­Eýf~žŒB©T¨@])ýaì)<°àžx îÍã:+®HU¦g?º„,ÎpGP·\$†{BíÐ¥ü ƒèsÞL(œ‰EÒ‹%Y©k•'/ˆNVCD0iãY€>²,ˆËŽ‹–ÇÇ%äaN'#,÷(6G °Š–ÇÄÉS“Š’¤høJ,]‘¨L†x+5×qhØ1ø#³˜¼„¼ÂœÜ¼ì8Ä©Üa¯ë¶iª4•^• LaNA^Ž23*³«±±¾éÕÄ&êÙ$F™XÏ65ñYú÷º>sJÑþ&tÀ âÍšÄü$Å¢ZIþk áZT'ɇ’ðpˆˆåp®£c_#‘W’Xˆ0 $Ÿûý{~S’Ñ„/´Ðš'‚{=ŒZÉd{ #ÎUŠËþÌÎðb›'Fk„޵RkÔ ŒE+î‰Ì$Ïï7}¶³!!ÌÀ¹ªÍøTÆ•”•î<³¡Åz28,ù‡‰øž€nÐoó¬­$8[^ÈjµšØÕ;ÙK òpe®soÝBô…Ðf·×TP˜›ž™ýv¨HiwêEÂ|Æ[0ÿüùüßi/…™Å%h´Jo¾+¡VfÙŽ”þg§G^&û„<ýêÀ—YUXÍ%*£ "3cŠÌ?–½)ûô¶Du{ö÷‰ãÝÐPáK9; ­=-ÊAÅbTƒÖ²§qñ:ZháL£x¥˜W¢LÖØ®”ѯŬSŒŽýªÈÈß ©“ü@1¿ªÍžMË8ƒÉIÌ’Ç*Tþöï‹Râˆìª­äY‰9ù©ÙÙúë`l³4Šö´¢ÌV1±p;å¶÷—ßÏ-tµ°(Øu²ï²”ùð!,LÚ¼`ï×Âùÿªtßwµ—ÓnÂ-{ák¬;|Rù½ü,<3p.f/A½®gU@\Œ,›m ` 1ëËå«c&®÷w­¤z¦}„‚¾£ƒmï°å  ãlVO_aûl u´’i/ N-~*ç+¬B@ùyб ñ¥§ªr¥}_ÅtäìU´øU´³¿GË„D ôë¯?šD‡ENżZĆHRü“b’“V’‰ƒÁ+$/FSwö8¼°B’©·q_lfýþ4Ûà/ªÏm®Œ¬ôNRƒFÅ•}~¼ñ40÷~0÷Ã-ó6ØHñì#ö…¡V<-éð`WƒF•¡ž?~F|ê>ë'ôá“?j¥Ð^ô+{·êô’®»ÓON½`ícDÉ`¬9l1œéÐż`šOȦƫ×;Iý·mW…h’4¡êdHÒ$k ±h—Ë3 ˆÛ'¹Û¸|²,ÀÉyaÑoi}ŠÉ»™† C@¨o¬Ó”§+‘õ}üø§»knŽ,å:™xƒ9:xcÉÕ?V£¹,*™!ìW­¹ yZÈϱŽA²koõàmñÔ4†ßF*‘¨¾ÅgÛ·›¡Šw±J‚T|³®N÷+åcˆÓë²K¶ÿÜ¢îx*«)ÐdÆC¨R4Qîíö–>U‘••UÅuœ&Ǭ#¨ÛDüÑÀVóÃÏ·™PÄCÁÆÚ!õšûSÛœ£½½8´‰6(ê’k‰õ»ò8/]•–L8J•" OܾÜÀ!þ4I¯&¥a )ZŠYJÊÏÐéÓS¹œÂÆãwà(T8dFzêÜa cñŠLƒkC]BÝ=ƒÈ ²þXÔ=™r€©+ª(/ªð‰õNv˜yy<ꎘŸ¾GÂŽíµYØé&ý—~…¸„ÿÒæÈªùe­›ÏÜŸ¬"ž¿Y¢;l9ÒQÿ†#å-ŠíF.Æ ýÊcŒ…;³öœuút~Æ,&¦³ä)÷-¹ÏbÚ÷X¼Üsó¶põÂ×Ù5àVQynC1s³öÅ£Â`câŠ=a3l%óé–(/ÿµ)a@–•òŸßÈ%@^òDÌñ/Ù,Á–”2X)Á}A§,aB$>ØÕ¬B¢/Ì:Ÿ—›‘~òHÝ$òèyX$ó™Šû`)¼GJæxàìÏæŽÐpB"óxjYþý}Ÿ ›¶åv]|Ÿf¶÷¼øô˜ß ¬ki‘'FòðÓƒûÿp]Ûà½Ëö'e Ðh›ÌDÌlÂÔÆöÈóßìw‰>¿d‘ýìnË燪#€‹V… Ë…6¤*Q‰Ï`šþ}dïç'u]šÕ¥ÏGäü/ÿ±@»«¶*“`›ÒÊâ¥Q‰üïõyúz·˜H.¬ÞŰ˜I¸ëÿ0^ÿVWvéá‹{ΔקVqîêÄPYntqÊ[ÛŠ·ÅºC¯Ÿ·ýOõºõm½^ v2OÿͶ9®ÀŒÃ’ÃþçÁ<»Óò—¢]ªèJ.Aœ>“eLR {09ƒvbÉŸ{¢¬ Œ¸ªäH°k.mêy¹׳ûlCïƬ޽/z÷¡¨ÿfM´ endstream endobj 81 0 obj <> endobj 203 0 obj <>stream xœµTkLWža™qP\«8ÀÝÙªX©Š¨UÓ4Fñ õ‰P|â ‚ÊKÀ²²P÷q—]XvY–DD(‚¸º¨¨U´­Tc05Q£V«±6¦é™õ’¦ƒÒjcÛ¤?úç&çÞ{îù¾ï|÷„»A’¤wxúÅÒøíŠãCR’ânHRlKï= üHa˜›0\‡#_wY©áD„ò»‚Ì“@žäénÖÏo< 7Áù÷w’\¾%ófhÊ֬튄Miò1±òIAAå²ä!Š„ø¤”LùhùÜ”¤-ñ©òyɱ⒚¶==6M‘’œ*ýÛÄÈ%+ÆŽ ìE)SÞ SÞ‡óÍö›ªÿK}‚ ö§$žd¿înÌ@Úƒ F£ˆÅÄ2"€øˆ!‰ÙDAø3 ©¨,áN”¿‘f7©ÛW?É÷÷Ч”ªƒÔ5Ù]3ìC+ŒÃŒ÷ñº[å-Hè{èLYûÁ®¶æËè2º³Ê‰=ê®Ô4V4`¼®j­=yîý á²’VÅPfºESµKŸ¥Éñ͞ܮŒÚµ^§[ æT:Êë.4Ãö}ÿìêþ³æb22§ä@iayQ /¾&ö4RèÛ­‰óåÁ3FòRׯ¬‹.™“|%®eOÙÀ³sæ ½\wÕO‡nñ0ôþUpGL÷·‰ñj]¾6—W'kUÔ]º¦V‡Yf OCxÀÊ)#B'Åa  ƒ—9RÝÚsèL*t*¯-± s'ŠìÁ¯¹Ï%kÖÕèÊT(‡CjZ“«ŠòÔ³8/J·{wœFä#²mqäéÓô¹´—CF½±°ÌÜák9EyÕ«Zj5u~ Ã`$À •_8oMrhïå[ñ€Â«h¯z˜Žy¶©õ í0bNTož'ãáS3ÓM[x©À)ÂfùüË`Œ¤¶†½¸­-ï(b€}qHgvõô.>µ2¥êó}¨Ž;×p¬µÚºkÇÚ mL›¯+@ùZ•ïuº<£öÄ™âD¤“?Å’ÕûcÏ­çS¥Y3P2ž¼iE|¦­Ùª/65Ëôf*„–º*‘“v²Êºh³C¥7dXt6ÎPnêh ôz¬Èím.Z°»OŒwnÞÂËœF›ÑRdâ EÕE-Æ,Þ¡p×k•#X¥ :Ï¢pݳ¬Î¢ £µ¸X̨z;ãŸÌõº>%êõÊ¿dÛŸ 3Jßù¯ÏöyV*h”v!ßAvB,^" «¥wëÔ: brTæòBT¢×óEõÅGO€ÒhÓ[Q÷}d+&—æ&‡ÉÒ1I=¤ fSƒ¥½~_;âÛ²7+µJU ¯œOm§q–|‚}Bœ1ÝgWŸ>ËÛVLë@6d7ì718ø9«*ÈÌNSe#ns¶½õÁÙ‹·ùJZúrÖk¶uÞ°åÛ­úìu)§+Ö"d¬ô-éx$¬ïž ÊIÃB`eTÞv¥šË{Õ®æ·U2–÷©$¶«ØôW•bi|³gö6QXÝÛ:Ë¿*¶HyÖ:`¹ƒ¼ þ0†J„ùOØ©±yqˆ‰HlºVkuÎþ˜MÀ>áãùèàEÃ3nÍ7ÀG=0OøÓ/9º#…d'+½ßùí†Â=âo‡!. G‰N2ëj5¥}CÛ;1zrÞš”î!Qø“?zƒ?}ü)<Šî+Fõ½‘?-Z.ô:¹3”4ôÞëT†–fÙ„F+„ÚèÎþ0z€³ÈÓ“ ~RRAÌ endstream endobj 15 0 obj <> endobj 204 0 obj <>stream xœ}VyTSW@Þ« u{ £}/žq­¢µµCÕVÛâ2–¡*b[—Êš  ‹D([ˆ!ùö-„‘ˆŠ¢µ¸Œ€¸ÔÊñØÚÒÎTÇéŒíTí¦Óùsétn@;mÏÏýçÝsÞ»ßý}¿å{,ãëð,« ˜â}š&ObåÉ>òc 8<á ðmŸ<‚‹š1ú(f,»"lc¨6Å OÜš¦š:K5áÂÕ Ij}b\L²*<&-A“F7Õ:m\¢:Í0Wõ‚F£Šð~‘ªŠP§ªõêø¡Ê¡Ú¤”ô4µ^®W듆Ÿ¬ ]¶\Ÿº2-#&6.<^ýF„f6ìfÖ0S™iÌtfÉÌdÖ3¯2/2¡Ì2f.³œYÁ¬džb™F °ŽÉe>g7°§}æú”+žVôùŽõµøI~¿›Jƒòkn-w‚OáòäG6ø&3êGö?×pË*'{·ã{òSxNèÊ¿AF<ûr\¶h½«$#òütÜ…JÓ&‰´qjó®0QÇ5Û;ÁM×qh¶ðn.Ì\rDÂHï½ß_±j“HŒ{“Ö½äbŒ.y“ÝÛ‡ž>…ŠÛ?÷[Âvî 2žŒ½5Ydo}‰cE²…D ›!®5íˆþxÑYè„cön÷ñ†Göwу;ôÍ m›ah Þ²:e“öõèL5ð£~ôqÖ0YîÙnöÄÇrjƒb€X,¸¬6“ÙjÍ-£B6¾»úÐ"KÉ<2›Ä’xœGÇç1øNB® J ŒPT`•ŒD5ãiÂ?„|€µèÀEï…~™E¤Ý’=,•ÀWƒÝE‘ùô–ÓŽø»Y ì“Ó¯èX*è¸÷ªa‹4ØÁmɃ¢¯rø4 8×àZ2Ÿ$! üašg)=(ɧ¹ƒöÒ£"ú*o`ðFÒB¦ÄFd¦H©šˆõs†p¥- 5ðŠßjeqâeÜàRÈÿÄ2Á L'3r“eÀI9tzns·+Ÿ‘\XkP>S,£]9\à1%ÎW¸ƒñ.e*êü‹uÊ᫺U¹ž£tŪîËä›.ä®(ðq̾|ëóÊË­Eå"¤êRwç×Õ4•·îßÞ¸tÛ ù’Y%áÿ¯xNPAx  öz%š ǽ’غ‘1:åglË!Ì;¤ÀwåEÈÊ΋ÌùEæí·ØvRpЏµkçßËð˜¤K9MæFCmnS:låcR×Ï[ ¹|Ó 9ÀfÞhµîÈTÎ`³–•Úl¥bYe]sYUCJ»î,ðßôœùsWÊÞœ)©-¡<¦"²f¹.ònGïÝ•ÍØnm»J­ÅÀWBq½—ÛB©ž0Û-Ï’ÔòËTR¸Iè(.}Wts©–õZxΦ¶ñº}Üßìy[¥Uñ! 4SÉsW©n~®ñçÊÁ|îaÊŒÁ9$—]ÿÄs®MªmÕ–Oyç%‡zItãÂöë] œ-ÏPå&* 7(-SæÿÎÂgýä2ø"áàù~ñœa·"åõ˜ä¸†ˆô˜ÏþÈåIn¶JŽWÈ“ð–PÙä‘Ã)‘ÙKcûѨù $oÍûúÓÎËå¥Ò‹ެðssk ÊNIò¿¹W¯ dHIÛ‘˜”¸+øäßÖá:| ù÷‰Ãº­{¤Ú (Ãÿzœ^‡Ë†N!tc0W()¡$Tñ÷ÖF”SB¦“GÉ„;³¿GßÎïËM`)´ZrÍbúÊÈÄW!¢›S:5]pNò¶:¡§þiÿQ¸'ÂlÄ×[cÜYoDŽrãò+ÕNö^×4&ƒ½6Tº #•7Žu¿][g.¬–ŒBÐóº£ÃÑPáîØº'.â¹ÍSDâ¿XwÜ|xLúxR™,'Mÿ‹N|Ç=–<õñW®‰ãräÉx[¸³ûZ\ãoOù”¨DÒô€äƒ‡óØ»¡®nðüÄ:¹q'ñå9ØŸæÈ9Om»~‰û;b»ÌMÀ÷Wߨ/ƒò£Õd–v½”œ®H0]2],j´ÔYšL§ÿCüÂJ(±qx¶|¨¼ñU2M„)úçéµ™–!1¦¡}ù••~ñ_ÑBQwþâoÁçJ?Öˆ­íèi`ñN»B‰Ùº”Žz¨weA¶D\ÞÔï4@V¶H\ÄŽ¹vœP'!Ý)ß„õ.pÖ‰£²œK¤©µJ]ɹGôø‹#| Ú€GœU=µ#æ¿_µÓ/ endstream endobj 13 0 obj <> endobj 205 0 obj <>stream xœX T×¶­¶¡«DœS*Q«Ág"cŒ¢8¢(** ‚€L "34C÷é™gh¡Qh$j4jbœ_5úÆ$Môé)Þ%/ÿhÌJò‡õÖ…µº«OÕ½gÚ{Ÿ’1f]™LÆ:8ÍY3q’ôq¤8P&ê"–Ù0È,¤ÍÙ,å`ivxUß>xµ7úôĉ½¹Læ¸ÄÍ!h[D°¯·O¨µ­Ã(ë‰Ó§Û[Ïð öÝìhíäêãàJ¿ø[»möõ o=Ûßßz…tGˆõ ¯¯à0/ÏÎÍ‚¶íõ ¶v òô dæÙs‚¶Íì2?tÁŽ…aáî;=–lvò\êµl‹³·Ï _—•~þ«\§Mw¼ÝÄI“§¼3Õža†0˘¡Œ33ŒYÎ gF0.ÌHf%cˬbF1«™ÑŒ+³†™Ã¬e˜qÌ\f<3™À82vÌ|f"³€YÈLf1S˜w˜%ŒcÏ,e¦1VÌÛÌ@¦'Ó›éÃôeÞbx¦ÓŸÀL¥Ñc̘Xæ;Ù2™±Ë„.†.¢|¥¼Þ¬«Ù~óEæ»fŠuŠ"E;[Ê âº¾Ýum× ‹ÓÝ6tûÔršežå/Ý÷Þ㓞½{6÷2ïeèu½÷ÔÞWúøôù¡¯g_CßSo{+ô­ùDþZ¿mýžõ÷»õøM¾\À íLâ¢2™¸±m:¯.Ñì`Ð$«#ˆ®ýåu$h‚RƒSS`p*ÅýY¨j¸ÎÄî/ÊM˽>½û @ƒâ<±3§RÔéCÔÁ/PE DzäžÉ#GÍI´¢G›9˜D £ å(Ã(“‹{ñ ÿ£Ç‡¤‹ƒ“Ͼ‚»(ÈÌDs{.<•䲣ЭÐ_…½tuî툾,27[/4„ÌHõ_ Xê¡ò´äáGF¬0Ép8öÄÿÂAòCmsxÕ‹öÇ6*q ‹ÓoÝôã´K¤{¶‡Uï½ Ç¸‡ö7ɬ"ŸóX Ùg†™kçy:®J2Š|ÃãGèÆb×bÂl\âû.a•=~ë2)ŽIªß6ÊjÑóÐR.Vc'*­W–>Rb‚ÓP¿­8¨Ì\Á›„#¼@½ÇĚе ÐÃ$;‡6¢®IÞß6…¯€´Â.ÇTÎ+’HÆ“ád ñÀQdjÐYìÅIº¨øxˆÓ*ÈX»N„E0¹Äå¼OƒßI@~*¼vìÔ…OsŽÃ ÀîîûÈ\}B6äWúJ%ÍYmÂáF±½ì9MYu1¼#®TTíh> ~ù Ž@aü}2ÐyM¸ßfå –Ìþ=…íYΣØÈ<ÞZt¸ÏÎ8“d¸ÃšÅ*Uù1Pùƹ4sâcš¶aØWDÓÖð&mÓY\‰¶4[1ŒŒÅžÄYIœíÏ‹q4{.ût­ñ(]„Ò5ÊÕg½Ï†['GuÏ_ªˆ&—=§ÓH®Æ Þ]FFm™IæGì°éŒâQŽÇ,eîsW|ï>FpÆ"´Sà80.*$<פÄxóöÒ=´Qµ™+zü&»ÍtÖõóçÏ“£'îà™8» Ñqê]ÁywUU‹[\÷º½çëèM+]® Óþ\é7hjàTÒBžB ¹Ë©±Ò±kèß«cO¦Ç¶h›É·ßï<¢F 8­p>¤w+¬9É>ÊÚ4§Ó‡9‰›Æ+±‡*p2TÍ) Ý©ôÐÇ[™$£h½OÖðF~!»‹³øRÈŒJÒ@B”’§NN *Ú’á \ ¤ßìµ£6YYlLJ‡Ã ‡ƒÁ{ßÂÖ,)z$$•iu»€ ƒÔP%aÙ .ÌÔCQ™°§ôˆÏÇPV'±wZßn /Qzì÷ÍX•³8wY.ç>»”gÌ Ö º˜,©ú V!Cèl©ÜLbŸÎꟄhùã.þ+“"Dc ~°ÂR=§B›á,„AÐæàðÿxwX¶N×<„| h ÏŠ/iýŸëÙÿ½Ÿ.~]ØÚ¨Üïw:$ ¸<È)¢‡“5u´>kÂYe²_hsto’£·8œÇa&2 ]ÜZ[7[ÛTnë-RËÚܽz½ùÔu¡ÕÝ•]è¿ .VH=T.%øˆ KL ¾)ùÒÖŸaRR½é²†@êã RBnbÉ û§ëRo°5ú—PO×K¨¡e`ƒGð&9ò×ë,mjšw®å ã q)ÿº×°³6.ùAJÕI±ÄñM…Ƴ#/¾¬¼·L‚î]ÎÎ07±Nj8¤Íh©Ê*ÈëÎJ]À½Ô43)¼5#Á®‘à-åɬý11S±õú§ÐD×S¨—ŠVz@—å­L²AäM21QìÁg¦gJ6Þ xÀ6ÐÀ ú¶ºÙ;õÉ`UYúì2®O;7hó»ó™Åi™ŸHjbh,= ¦ã„lö‡C7H‰W!ù„ÅóÓRµ9Ó篡‡XKmΰi‰»cÒÒ’rB 4©jmê,²|a°T²Õ̧Ö~àÖ8®½wfDºº¬riÕe•½À’/HQöé«U9¤ed–H(5ä.mJô¨Æ)FÙ~š ‰#Ux‚8ç±q!ÉöîuÕûj ¥ê’]¹‚1»Jû¢Ñkºr3K&‘É›ˆÜ¹ðK_~ØÔ\¦ÜªŸ……! Ê ­\¢ƒ"¨àˆì?Î>Âo‡ñèwÈÔþ´[èL­ÅÑ >@ ¬V¹ùÙY߀•‰u¡Ið¥ñUA£RC²šŠF9e”-v7ozís¬ê°¸Â¢YAÙodl´Z= ¬TìY½j)º5Á^ICì Û©]f–ò)š£œ 4wW)*õ)î£h&ÙÌ{U¬oqU WÌ•øÇ³mÿG‚ù¹‰-.-.-*kY}2î0%$áÅÊùƒÇ= ƒ×ïôóPîvã?QÒDë¤ï°"d‹Òßm}¼̇-ǣ˥ØWþô†yh rÜ vŒ¤A]œ5å+“bf¬†-@oZOü„í!¦R, ,Ù@eÀ|´‹>ؕϋƒøH­66YPïܶ`%À±GÎè°?öÏ<£IÖjµ­255& ‚9÷ý»ª ùÇn6cqœGUKý8GâÄZä2i†ÌÆØ¼>ãÈcâsiŸ}Ø—'jñ@MoE._z¦‹ Ø¡ÕnO‰Ð„k#€ U)*ô_uð×)”•º)$-0]«ƒrN<©c±ªýåøb°*†ŒœÝ¹¸¯­Ë䞢ZÿöÓõª%¿0_6  !Œûc†$ç3$@y*Qö+ØØÈî(ÝTãH2b2±&CŸLE«“ÇJ‡”®,:¾‘%²ö¼ûÒ51”sH/À¾ŸS‘TÞ ¬=u&£¡9¸‰{™™:&&“£©m*Ÿ«Õ…Óû¶ÿ0²bbû÷¹±:m>XUBF…R¼ÅB¹N·'½D_¦+¡Äú™ŽÁ1G^FAR¤65&I¹}ÑÂ07j1\‹O)kÌôºC†úÒºå&ŠáÙÄR·VŠÁ’‡LlC[¯ú^\„6ò¶ üžG"àLBÈ`2’xo´&6¸.k´Ao´“‹ü"XRëuÚíZòT‘}šv§ñ‹æËW«ÎPÝqVU³ñàò<'ŠÖ¶qÓÖ:û®TÍ”ô“Ìõ6`•ïæÏïK:'@b;…‰t{¦xþy‘1W¯ÕdQñ » ŒÛ\±§¼¾°¹Ñ»i®‘{N>[uüëouŽœQK/lÀÖNå‡Ç¨KTµ|Âãû œñýÝgÈŒ½K¦+ÛÇv6âϼ†o‹yœÓç/{2AI”تèTèdCNzx£cöËjocÈ‹ŒÛr쇋øãÛOA¡„'¿¼ÜX›£¬)ªL/Ö§&ÓÉ'† +عgOA©¡2¢Î]å&xTzf¯¡ÉV¾?Ï?Ç£ÉW¹kg„eUÅCdH’S(¬àœ?[€KðÝ;ßøvyMpžàV¹&Óéj$ëT™± °³t…¹ùvËà§À¥£GáÒ½{à¸a8NQž"nüµË1®>>Ë©6à}ªáÂy(T¾ž¤>û›ñiĺ¹’¨üIñGhüä?Ÿæ L¬1Ì„XoêÓ‘´éß7JÜ#ÙÀzãUø˜{:äqÚÍOÈóŽ„üó•9Èö=‚݇¡.¶|û>_:I. Ë£Å÷„Ïmm9p¿ä=((NL‹Ù©UÇh•ÉkýÂ`1¨/&>LjU_'Œ‘ÂeOºb=} Ú§Mw^©BfHÒkZœT-bËÏ8L*F9†´ÉùÆ­µžþ¾^^µ¾‡Œµ™KR:ó}}‰Î°{áBGÝ9‰c$~‰5µ±‡eçàµrÌ—ð¶å©W¡€k1žyüøÞzÒß ¤…¶ô•*EgVRÉêTm|‚ ZlX{h4…Ý¡³&Ù‚úõÑÊ®{“ž‡>Ý‘§)Ë© ‚5œ*ì=b6™(÷áˆDA[iᯕ²s§RÖé²s„ÜÜìüªªO6ÜŽ‘Æ*»Ï_¼øÁé‘UIJ¸‡·yßžáW9yÒ¡ýבŠpoÞ¤ÈFYÖ]Ü­öoÉ•â¦þEëOápSÒVcÄoo²ôç,ûlÒ¥CûÿNôè&ѪÇ>¿äåäf_’Ø~»&œrÜvpé€:6¯251%)…²=YDF˜‹*ö¯E&E¶.½*²·Ù¢¼ÂüòìNìd&R°Õrñá-¨ØJýçÔ°  I’‘qºè´”´¸îujÅÇ-y ø×wîu¥c¯+oêu¹†I0´u£ÂΧá3òÓs®WlRøk ‘BöÜN?Ê霴7.9zqo÷!þb¼ù÷&…Ÿf xQ­f ÁÔæ‹5¿vËÏÖIÊ1² Úî‹cþðæbS翼í.m¿‡ž'ˆÙˆõóý"…È»ó Ãpu sãþŸ¯2d·Nœ?X¾cæßöâÿi@7ÓZ¼rþ_µâo|f‰>㎤j×RŶ‚*¶9Ò‘Ão!Z š”%y¯}™/ú›ÿ(9?ž:ï£;Œî°„!ƒÛâHþAš?FQl󃱱¹Ãb¯\Æ®4IÇRÍš™Q„sD÷èÐîžÙqµv§g–r°{X¼_/;vÏÞ”ÆK3þ£=§ÂWܳ ÍDF¬æÎ½ªzÙuO˜¯Ýé®Tîicù ø ³¹ônp§ªTqZ3çsíåD©b›ôÿ„ct½èho2˜}õ´À hÕb’B+t–2¡G?*°SÃÔÎQñ‰ê™Eyu‚¢¡î»æ¢ü›/Zà‡ÖW( š^Úšnîaó3W;x¨”$€„Ç'P ‰°Ú%Nc_À!°Ï;øVS½ì+ì‚N’¬(À;t4…¡nÁ†0a Óö»)MÙ…µ°k ¬ñp tŸðtöÄé_÷ôÃàÉ„jáÛêOÏÁ×Ü ‡óDI̦;¿»öPäžš¥G+â÷¯Ïš¿€ àîƒc@@Ê:sl÷Ý®ñÒÄjõ)š¤TPC ·+Ê„×Q¥ºIzýŠ_J4>'òM£ÅÙŠ*mzp„¢bò¸}™¹ ‘ISüJ­ûáI‡M¥²Ä“+~÷ô öÆqÆŸÑ<>•9ŠAÒ>^,â÷'VS‘S §ábcmé‰#tüÛ y±Z $Ç "׏PœpË]_¬Ö§êS‹…ø]JÒL‰)®,G¯ËÉò ê›ïÒ`ø÷`(é¹eIÁi_ekþáòúíÕ[¶F¬Ÿòµ=vÃñïc/ì1í¼Ù-ÑO¥|}6$ÆÑb¯Ô†â³s¨|§Ã[¡2jw¬>8]“«ÉáÜ[ PR¥~_.ÎÍÎø†ÎË.TÐiÌ&&ÒßÙ™p a· ²ª ò33…ü":Ã7Ž+@³ó7¸±ymsòHf6n*S ™¬ÉeÝ 3û2Ë®û³--QVaÙ]gÙƒaþiÐ endstream endobj 50 0 obj <> endobj 206 0 obj <>stream xœ½WytSç}BD<ÀIˆ¨•¦ï9M 4,)BÚ4 &¦„x`³ccð"oØ–WYûf-?í»d[ò"ÛX6Þ7³a ¸¡m†„2IOÚ™Ò3'Oîç3O6IÚž´“™3gþÓrÞû{ïï=5{ÅápxÉ©i›ÖÅ?=û6'öĬØw¸"œõÄlédúCÀ…„ÙÑ'þèQ${½ù0Zù—ÃIÙ¼'¹¤T,ÊÏV$=›¼,iõºuk“^/ÎåÊ:œ”šU!Ì)Ϊ _Š’¶—ÊÏ©¯Hz½¨(i[üŠò¤m9å9¢ªœì鳓KŠK++rDI©%Ù9¢ÃE —$—ŠÊ+*³Ä‡²srßæ§íعjõ µ…z›zšÚJm§Ò¨tjµžÚCm Þ R¨Ôjjõ&õÔ[T*µ–z‰z„z”ZD=NxRs¨qÎbŽwÖ®Y·¸;¹ïÏ®zhîC=<>ïìœUsÞ§³æòçΫ˜Ÿ:ÿdBò‚ï,0.˜ZxâOœ’MÔÂ?Íz}9¥ŒÄž‰qÞ \å¢Ä~¾^F¨£ÅU°Ë>çgì¡ÀkÀÕÝxÓÑnówœnm »»ÏÝï.(ÜzÏ«Í`FTÑéý%C¿éCÏ8}rÐËL†*£Ê+y9hÜÜÞêër5³'†ÎÓ× ¼‘¼7³°ŒQç¶eAˆªÅ9¡l;èi¹A°…íLøv¨¯èzº¨JWfÒ³uÂÀÔˆûjø€kDüßlùÉJ¼ ?‰—®¸°þZŒCKГ öâ_˜ÙúÑ@øó«l÷ùS]Ã@öämÖ`^F [¸g_aÐäÆw\Tetòù(=÷ wòýÉòÍ6³ì´W:æµ5&ުߜ‡‹q%–á>Ç\ôì½ûgîß`»×Ÿ'íSV«ÙŠßÆIûS€~qå;héµv´æî°¿üÕÐ- ïŸX÷Ý|½t¬‚0 ˜mA3C ïÍŒd×Mî¯ð"¾¦P«ÏZ­qEãm‹Z¡ƒí†£†(Ðv?4ú• ÙN·w­±‡Ù¦œÎÚ ÍGËÐÒM¿”¼#'·¨•Ëô—|c™¯Tñ]M-ÍM]ÑgèsÖWå;‹0]ÉŠÒ3öfA%ÔzåMÒVÃQ°€Åì2[‰‚œ¾»”²)öA¿æÕ£A¾Å9ŠþÐMÒbU]9(èê "ÔÖÒÞ×’¾åP^~9£F~cpÉxhƦ‚¸M!GÔEäã´ž%¾8{­¸v’xcåô­‹ÜØ1?W E`¤ÕŽšÖæ¦†¾±CCÉxn抴W®Ë:µÌqÕ˜ v҇ˀ9eÛÇ%Ìq; ™n¯p(u™†··Ÿ9ø1z~-ëPµU71emö w±3Ï #tcýÄ'½ ¡'Ž }AÜ™‹£(9ÌA W¸¨1ö4ÿ_x ^2&HØðH:l¢˜MÐ ÷JJ••µz&¯zèE^­ÄrÔ³ÿÌÛ€ÀT'© #ºÿâïÏ¡%¯ r“A¦cJÞÈJß ´²Ö2à¶6“‰ã,ý݉X}Õ}‰ ÇåOc§ei¡¦Hmd6àAméÁ·¶€`—þtäLË£Ÿ±î›ÂôÉüîŒïåâ%j…ì³Ýgcœmíÿvh×X&RkkØýøaÕAȤ—MTî e‚™½’n8Mƒ®†Æ>ÿy°ÒñàKMú=S»I¼³èm}äK˜_wÖMnL›7ÒFǵWjJH_„Ëzwgãx ~nÉÅ´kh ±ÞÌÑÐ7>lsˆ¯ÎëG¤yÒ ·‚§:Ѭ`?ÛvùÄéQ /¹×jëÀdPHœ¯¢pV½òçê…âê§ÅÕ«­U—h™õxDu0c‰ÿîºñöÿµzOÞQt‡z¬]½L^¶>m;”Bi@sä¸Ýqmr÷ŽáüwЬ_#ê³–¸­~þÑ õÜš©<á/¸±ªßóõ~µCu`4jÕÛÖ¿\¹èÝEý׆Ã÷{¯°GNŒ²3ëŒ9$P‡ÛõÎP48vüÀÀFü^Œ¿‹—|ÿÌ+÷ýéø{ýÌŸåŽÌLèÊär¾Õo¶€üjK­ñ)u¢Ô¤2A-MŒÚp4jõ2f®ž™›àÿmn3’FÐZ¢ =LC\$EbþOá´«7p³Ãý4Ñc9C—àåÏãMxöåMwgˆ~lU?ëqAWýÖáCk~g ÑT\ü4þ>¼?îåq›4|GÑŠ"Ñ4A®—äû3ù&5Ìþúƒ«ÏôŒyŽõµ@½$Oe(]]¯hln'峿){W~–JË” eÀT‰ç$nœ ¿—„ÿ2ï)J±Œâ¶T–.©ZY}¯ÇÇ´A*Kks3‡+ï¢åè±H|rc©DQoºåL.ý”‹&Ðu>zž‡žE‹q>ÞxÏañù/ϹZ•>>;{j@-Ôi  ùSíÔ»ú­0ÀÀ¡Ÿ¬˜ÀLwm‡×[E‚Ø(ßÝë²€îñ®_¬Ü Ñ.Û“Æ*åV‘è xí¥Ï¦..ÄÝ0›ÿ¶›L ÓKüôÔÓõ®H½òPÔét2¾°x†¼#þÓ®ïP¸¿³óÿì)$-S”+df†<ƒùñÛ´øÝ¡K\ôñ$—_¯h¨*/¯•´è¼‘æ–VÆ7UÁÿÚ{78Z¼Q6Ж†aÏO[`ÀÝâí„ÐÓåÚêÚ}¬¢HY¤(Ò‰%Yµ¦J]Õ_1afN Ã}œØùâ;8­n³Órþmfc™v¿IÃšê ’øî €Õg³„¬LJ‹Å fA@µÌT¯Š8J'Þ‚œ&½L´Ü6›¬VÆJ6¹»u= £Ç!·¯”Ä&RüøTO¢Z¨U®ZƓȉ‹Èãg¬pŠ=g ã@»ü–œ”'…j³Ô\aÕ˜¡⦠Ð_FöòmÿŒ)޽wëÎSüÝŠùZSÔû<cs9ÛÇÐæsÚ“"ØE"­7Èôµ 5½y8ÿXoksgˆié^$kð«Î‘m¯N=´\bëk&t{X[£~úRóNW¤¡¥ùÊM‡óØ©ä'Á¡*®“—CÍô#K¨30Ü#j?´åÀÞû˜=;IJreœo!6ùèçÞ•ÿ¡G¦ô–üޣ΅ûBn¦±×ñ/ ²beM™è¯¶ècTeÓä“$éºØUþàÕîà€Íkv­i—ήÕW`7S ÖÃ@ÉÄ ¯ÉʺM]F(‰ZªUâñ)Iâ¶˜ßØliºdøÉàì—"/Û¹läY ®“O…oܬ©°°ïOý§¥Æ¬kAØ]N/a=›³õŒ?zbïñn¶ùGm³Íîiu5ØÉB¾µh|†õ˜† µ¤N=Sy‰e1©ÁÔqÃ,ðú ÑjòÈ…F[Bk1Á/%0|à´ê”VÖ¬³î!ãÕA§Äú©TrµÊ6µ_'î&ìÖÚ4œ/®.úŠÄ¨Y[jf»¦°¹¾ áð¢î˜=±mÊ`®-ùÑ ð„è™îª$ó$‹eÞutó 7v9¦âwz 3˜Ý€—fW3)ûð«°ŠÞáÃóÑ¢ŸÜEsÞeÎý¡ýnÓø)9¿xoãíO~†F:/±£Ÿ^ºw´"ùÅdì§³‡_Þ“²œER]Ò…¨0'–;¹ðwh¯ÆZ§1j&}ýÖ¼M:Ii ­·¨­£žÎ1ÏÊW ë”ë@ ž¤Îªõ·Â(;' d_:¿¤š— .¿}º¼Л°G'‚º ÇuÝ(!‚–Þâ¢~Î?ugbàH=Zq÷þe@‰ôçÉ×Vá¥/àí¯ïÔt|4ŠúZ•]rV§5šV-㔚e` KrŸJ‚7>D)háÀéò5øEÌymyƒ_[V†—“–QúÁ0[È‹Ž¯/ÔÜÝÐUÕ è®ìª"o+óN¢×ü>Ô‘N•ëÙª7÷g¤“×LO•ýŸ‡ÍPÁ¤3Ñ +›'_mÆí^Taæá,ïœè¼›ó™y³×†æF õ_ŒNÙ¡ endstream endobj 11 0 obj <> endobj 207 0 obj <>stream xœP¯þCMR5$øøø‹‹ú!ù`‹ ‹ ®÷¿÷0÷-÷*FJYCopyright (C) 1997 American Mathematical Society. All Rights ReservedCMR5Computer ModernA"ŠÿØ8ÿÔ’‹·÷G·øAŸø¡ùFƒˆ“s‹y‹ƒ‡‚wû–üáuYU‚Y‹_°ŽµŒ°‹˜‹Òйˆ·Sw¤ž‘ŽŽ“¿÷ ÷ÕÈû ‘‹‰‹ŠsR‹n_²ŒÖŽ»‹¾‹Á‰µ‰·qM‹|‘¦ûäø”÷"ûÖû¯u¡ù?¡û¦œ÷n–ûb—· ä  7Ÿ ¬– äœ õ넸 endstream endobj 48 0 obj <> endobj 208 0 obj <>stream xœ­X XTUß¿ÃÈÜ«¢är¬îà†[šf¦¨¹á–J*¸+ "› û.Û0l3óŸv¶AˆÅ=ÌIJ7ÍR3K˲E_Í^ÏÅCõ ê[}Öû½ÏóϨxÎ=÷¿ý–#¢úYQ"‘ÈÚÙÅÕIø‹#ÿ‚ˆÑŠI¼ ë•u+¬ÁF 6ý_|Ñ0}9Ø¢—Ÿ£Ä"Ѳ•[œCBãÂüü#&8Ot˜îä4ËaQOx€·W°ƒ‹W¤¿OW$ù‡ÌÁ-Ä;À'2nªÃ"™ÌÁUØáàêáí³K8Ù9$(4*Ò'ÜÁ%d—Ox0EQs‡8‡. [¾,"rETtŒWìÎÕqÞ.{vùø®õów pÛ½>P¶1hÓì9s'LÜfóò ÷)S_™6=áµ™)j4µ†ZK¥ÖQã(WÊ‘r£ÆSë© ÔDj#µ‰ÚL-¦¶PÎÔj+µ„šJm£–R˨åÔtjõ&5ƒZI½F­¢fR«)jõ5›²§^ ^¤úS¨yT5ˆ ¦æSƒ)[ê9j5”RQ,õ¼ˆüI%ES‘­(JtÛ*Ðê’xµøx¿Qý²­çZ§HFIR$èFÆ©?Õ?®ÿ¼œè>ðÍL›üAÔ àÁo î´UÚ~ñ\ös÷†xy4töÐúaÃ' ?8ü.»Œ­|žz~Ôó'žÿeDçGÜ·›b×`×m?ÄÞ䀑ïÿ&Ú˜G þMlµ Úfá——Šø)ݫ،|åÞxˆUzz<ìùÆ.yw¤ÿ|5#£誡 ¡\ýŽŠ±Ð®š=(ƒ6[›ÝŽX;d”œÄ“³R4JȰrƒ0NF·êŽC´‚®+ËÚ䆔7ðE,€?³ÆrÉà߬æ`òüófêw ù^ó»Q ס6¤1²Æ' L…ËCõf:Õ"ÅKþ®‘– ½,ÄAfBhø¯ÀÀ,Zý²FÌ…ë—¯´Í^/ä¸c‡0Dg,h_ƒ9ÜBž5âîé( ‘„ãWœñ`°ƒ¤7Tr›¾c”͔֠âÉÌdÙDn*J•ôƆFJÐ4¨ÙPˆ˜Iвî¹(«ôå©äiž¾” æɼX7‹^xø•-Cqìá<4I85­RÇ'CZ¶§¢¬ÂTWTç±ÆËË%’S?àÑÏžÚ|Í18•ê.s ½X™×$UrQªÝ‚Úú‚ÚZ#æèžÇöœþßï$iÕ%Sp¾F2èô´Lc“©nÑ?æ¾ÞëëòÀIÜt”ý8Ö¡4Ìn…˜#±þM”ëCÉÍü´rQÃ1”tLŒ~äçôŽF† ’“8•J¡HÏ•Ëô$—v»o,«ˆ’6ȤSK)R–ïÉM5Ç‚3ÃÇ…}y2™SæªõÉÀ$Bjœ§÷€Â¨×hJй,}^~vvóÎ6¥™t¾mËÅó­1ÕQÒ€}~9‹ ²çC'S_Ñü ¢rf‡k9M2¤“‘*€œ’QV“€Ã,hv©è_—ÐÈ1ZÁeÑ8 ‡V‡HÔ³üÇNR2á7q-û]‹Øûšîä5½É9Á ì"£2 ÿË.;Y—bdåeåÞGûì~Âû²R²ä&°7.7+÷ =™Q´¹ö»F³èãÛhd'£2–ðMƒÇaß}ÛL[€™µÔk•¬lOUuIiU‹g¶ZZ]Õa¨æX§Ï énzƒjaÆŠ@gÿ¨MàÍ8ýzþúS5\¶W­_ 0æ.ÓgÒwBÖÓrØâç…Ü¢vÒ Ïíž G?èüMÑs}uÀ‡4íiŦ@C¾µW¾ß»×ÒÐPùžÑ`e(‰Ó‡ foFMªüT’Ñx…<#}Õ<»7î¦TZR@0æ+„õ>ª0µPuWØ%¬ÿhUmk¬]TØÆ7£Â·¬qUEƒÐ DÔB=Ô«ëx×)‹ —”¦ÀT\i©ª3×]u´+‰"JyJR„ Zšµ•šR‡N8¨j AUÖàÉÉYÆo¸z‹Ä_9 ¼Éˆ»<{ÄùZÉcÞó2ó—-¢Ò/Åüô›WU|øœ–D¨”AÒ¿ç©M~ òÌ”ÌTG¬°Ãý)½²Ak_Õe¤Q·ªbÔ^¤•£JTÆPôjm'MOJÚ¼|%ÑM{ò•Ú½šš½ÐÀTÅF†ÇŇz4û¿åô©JÒ'¢÷Þ#(‰öSÛËÄž·Å<Å¿ÄFgÆ$B0VSUUVd9»ôÀ <|²‚ÙÑ$­Gƒ F9(å Ú“ÎE.s Û Ì*§ãDLû¬ýLþIU¸Oâô$ã,üþkbÝÙÔRµ6”ļ§•A‡Â¶q„æNi 4Gµ›Ô'…ÞÕR¾žÖhú*;)Kaû<È6d®ÛÆN£¶î9ÿ#ÏèΓÕÃ%èú7FòåOpÏ“DC¤ÅáÈžsv}±C ?Ø,âÇñcXCžŒ)öpøs‰϶®‘èï7!kB?ý$¸±‡Qx‰nŽ7@1‡nKŠ«uˆ$‹“6ã!$ þ’?µ,I©ù‚}(H©Ç˜@gè=N¼AVÛ:LÄ,òOG4ðãÖ–²bé*M~ ¿üzQÏAÓ(¢eî±Þ°¼+ÚÃZTï’éjן¨:T^ØršáPtµ1ÔKzWtv²PSÿJ4¿W(+?óc‰ø(φ²ŸÜ¾'*ÙfÊüñóx4 >ò°"'C¯HQ¦eª¥ã^U%À6ØYÙ°ûˆú 43šJÖ€¦Þ*¬SpÆKƒ‡ GÌéß/HKì€õ…Û_‹Ñj\ ˆ¬%ßimÉÍUeær)™Dè„3a%qæêâ’ª>ûÖ¿á´v<‡éy²«øÓÿ$oú4ÛþÔ%èÒ[èÌ}1J@çY4W‚îßüáîØ›X*Åøi'ýVU¢B•÷‰Ô$È °•‡ùÀs¤}øwV£Õ]ŸU£´jQí;(árÃ;b4-gÍñ–„6`¾¿øáÕ#! IÒCûÛÁÊÔ ˆcä9±…¹e%‰ï`¹Ÿ?Z¾«€Ø‰——ÏÛ\çW˜ U©Bü BúUÇmŽ÷ö…íÌ’»®h8²ýùÄåñoûVrnëàe‚Áª ÖÇV“2f› ùÌýLöU¸S^­m(ª”šJ«M5ÀÜ‚I‘‘0iº´ Ïgë‘­zŽë|)µŸ*Ìýà†ôw†MèÄ¿òl+`«¿ÌQ£$¿ÕÂÿGÓösUNªxÌŒŽY†wŽÜ¿S=bX¿}Ë~_}å]¸ÂÜŃ®aÒŸQÉvÝQžL>§tô°vd#¹õ>Y™u¾KH4ž>í¾g ˜/L7+õ`$^L‘ª–f¬–EÈHb奩EŠrŇ魩g籸‘Á"‹”+*­¡$Ë ­‡2`n a€'Îô\_ÄäK‰½ýÞŒl%4¼­á{غˆÊ YdxppE¸¥®²²ŽÃã± ™ôs†t2éeO2Óª-Ó¼ …dNì¶23û ”Ó}"NsZ¨óºvŽøÙn'¶ö&§©ÕÉi\R\nþîM{J7"€Ë¬iãÞhß–!mõ,Î@C®ÅTû4ê_XË,ߺpÚ|LpÙ)•SLêUÔ1R¼ŽTcŽFcÌáò‹S’ö?»æjÊiƒ¯ýóagôÛuÒ§<òVšf”ÙÍ- ;o3çOžû±Ç';pºXM†±WT >U˜û^ ëKĮ۷I&‚g"(""(¨2¢®/Óz3ñio7IéàÌñË•a`Œàês¡ô„ŒJCƒãbB7é¼Úõþ·ŸD÷‰?’gÜ$BWo ÆÛ‰ý…–Äà(ÅÈ©´M"d^ ¹ªâLM ÁÒ%0šÛ%“ì×!+Bï-@þØOò¼‹ ¦ÿ¡Jc(ÍÊÕVC1”`§^;óX%IêP˜ /ĨU±w¾l;ø¡ŽÔÉŸ(N_¢DÂ4N6©iDQÆÆ')Rñ(<ÐŽ£Ÿ92okÍšf8 fuëÓ‘¹GŸ;¹oG½g½§}aÔÞdHdR”ɲÞÞ¨Ôì•KµBoì†_ó¤ãºEÍ}ݶúO¢çóÙíP¤>òô°>ÛUÖ=Šˆh–ÿœ-;q¸ zC"–ðHŒf«Òuy$‘í©D¶§`·ž8;¼×‘rëAc_w j‰ÎðPn& å š%ÂŽ!/³ÀeôtÛéti…¤«uúìáþ`sÜﮇü„q·R@››P³»)ºÒÛèΰÕ+dcò»ÞûgÁ\غ)ÚQßù¯n‹uåè™SÅ»–þ5òüKŸ‚T?‡ öh.…5µV›ß4¯Ll„hÖ áw©+‚ 2T™ª4<­ÇÏÏæ“ÕYÊâ ,PÝ›°-DL®'BÃEfLj0ËÛcH*]AØY­$ ê™g‡gñ įh‰_yö¾N(…|äÕÓc—˜n„½Ä éKмÞÍïÑé÷hÓ ÀÞÙ}é¸+ª¦ÛÖ,ºÐj:ˆD¿²G+?> ט列š>Úiá+>~•Á\Q¬>ó´ï ¯µo3êçˆBÌÏõ㢎ðBN¾7¸89‡Áã¿eƒJ"«¡‰yÿ£ƒ\>»aéÒ5îÞ‘ÜüµlsXQÊy¯Š„£ð3oî¶y¯->{ýâÑ3íç÷-yd ‡¯%F›ùAOÑ!¸2œ ƒ¹–ßö«0“ß…?EŒ¾½xCZøx?Zlþ‹ýQ=ýXˆPÏ]휪 yÍd2ôi9†O.#3\]'‹Š - m,Õge fH¸ ÀÚ²G®¥¢{]bôV°­Ô¥ç` Ø…VrôJZ‹F¡‘YYZd39YiÉÓ±h·mrÄXÀÁÙ€%§ð€w±ííÅs²³r¤x8J&O?†²Xø<YmBâµÈvêÇÉÀ¤¨R•ZeNšôô&d…_|ð˜0¼ Ã/¨”™™Á(µ©¹Æ[‘è$×ñCåO€l£Öµc° ÄsA,²NynOþ!\5ž*ýú\q€®˜’©yëá XMÌµÑX²(%C©W“åm2 1—Ũ³{kVkÃ9—U¯%¨VïÁÉ*¦§€öU&OåÖþšPåa¸ÕËÙôT¥Qþýħ)”cÁ#£ø‘‘°ˆùWc8ýä 4ÒÂ{‘CÞ#‚vh7G$SNl²Z¨àðû=¾Ö2T5“ _ÈEÉ$]º ‡8狽¦0Š^(8‹÷-ãèE¼„í‘` Ÿ 'Ý!MŠF\7–ŠXPÊ-1z?ËÖ),áòâ×ù†ô¬ ±€ éöX÷T/B¥{ÝKR²U…˜dHÙ#ÅítÈ öê² z®®¹£ò80Oõ“Kˆ‡4ÔË+v¬…M—4 WåSZ›¿ßU’ì=íÓW úéz šy‹¶m÷óÄü&埆ữ…[sâ¹ú[° ñ\·:ÚZuFH7ýÙs5ù5¬‹tO÷óæ¢ÍÞEnÀŒÁ´Ûèÿ~^žéÑÈÀü, ̽Þ76¨ãë8…2"…T;ESA4(Ð`šUÞ½ W¡à< Þi¤-. äô›UjÓ߬·±¹Th3ˆ¢þ7Ñá endstream endobj 9 0 obj <> endobj 209 0 obj <>stream xœ}•yPÙÇ»fºUÑíx¬Û3n!êzâ¨]@QPƒBTäPpfAPkXÉ?Ž —7+ÌpµŠx®ŸñªŠGbmRê–Ñ-7ù5õØ2=«nþK½º»úý^¿Ïïó¾MSÎNMÓrÿÍ!ÞŽ OñSZœî$~&>òt$H.2pqnŸÎvMĽîèë†ó&P2šÚOOŽß³w¿j¶ÿ•׊ËU¾ºØäøÝêDÕfõþ½±:õ~éF« MÚ»?}ÊW«U…8f¤¨BbSb“Ób5Ž•ý“túÔý±ÉªÍIšØäDŠ¢&%nKZ—´I»uÞü‹¼/YºŒ¢‚©ÔÊ“ §æRó©uTµŒO¹Rn”;5‘šD}BqÔo¨O¤-Q •CûÑ NSœ8Ý—Í‘tvsÎtîs¾ëüùNùI…J!0.L×;º¶•r}çÔ0D *l4~þ¿~"{ñ ÷*´ÛsÉÖȈDþCæÊ5̲Ã;”äc€^Ôü¥è œ[&«…˜ô(q-ƒN/ºo|wT½™')ÿïU×w²Ü Žuh1MœÄáRŒ8uþjÅLIcÑÀø²(»€Õ0§,Õ©¹&c^.™L|¦/0$¿ÄRÅS«+ÛxÑZ¼Mjˆ€M…úBVSÇüªòN¤`i˜BB‰!5iÏÞY–©F( ¸·MGßSÝU`-*.+GTOÁ@r°4Ì`ž Ù©Ùqiùº‚E§á š›Í¬Êl„̲ôzVB·{:eh§ÚèsCø`H&þ ã9t'ÎH‘™Ä“ÈE܉+Ê=ÑCò7èÊ+ÙÂoÀ9çZávg·²­£§úœTýL¦=®cl€}l9Ä›—-6HŒ°OÀÚ×¼ÆôNÙH%žàâz² É„KV+v@i«K‘bÞÔ轔اð: ÷ä …éŠV(íçq™WBGÄ âÉv*´˜%ÿy²¦Iñr”£¥Lä¬â¿ÒŒÌV¼Â`åç‚ý¸¬bmÚºzžñ´Tóo ñv¨ñò¶(É"ÖCô™„®¤óÆÓ0—Û¯²+\l• ̺¼’~%3Ryý*Ív¢N ¢^ÊÄ8ñ×c…;R'÷˜×™!| ~_Äjf²÷)GØùÁQa™Á…½jþTqe Ô³]ºúqÙ‘k…¼yûöR0§»>H%Ñ’ü‚*‡Œ×Î *ú=*ñ8c‡Š—|§ 7úADWQŠdZóHÅG âóÿ™lÃèóôå!|$'Œ¬ùI4-ì8&ÕW‘±³ÈD2ežøéÀźS=ÊÍ zÿ @|ÉøŒrpL‡ì2„]}4^Ð ‡/ÃpZE{ÛùÜh¯Ê,<è°ìó É2ŒlÁÅ¿ˆÖq_&ÆcWW bpYIT3UÄ…LDÆg Ç¤êþh.ÏÈ6çç•:ß/FÂVØÙ˜Ô×· ™-láÊqÚ Ý€”® QZFá@7t–9 mćû9R‘J²äŠj *q.Ô‚¬–z# …µJ”²gðQEñ0\’Æ0ôY!Š™•v¥he ¬uÅÖ»4çAWV5Ù éçúŽŽ~@‘ðZôEu6êª9ðR‡Åë y&ä³_—å•V={„n|Õ¿S“–¨ÕÖ& 5U¥%%R—Á…îÒÍ8(Ãg¸»K×2ï«‚£"‹.2Ìàìú愽>!¡Yo·77Ûù÷g6Í6âd£†ð’tfûðw°‰˜‰H“Ÿ?Z4£°ö/=¼Î©a}MÊ“C×àÜ€ïàAÕåÆg­l‡³p+µnMux¬†à™š´Ô?;>$ƒ³Fè­¡±é2$#n\‹t|àÆ™°¤Ti’Z1ð ;Zè èÁÇhWŠ·ÒxW$Š1Œ‡ƒâ‡ZÏ𤞠ô=¤ÐúF&¶c°d¶9˘™{8%dIö+NÖß¹v²¾­ùéÍÖ–––î p—•âH~ŸL#œ—÷üm=ùå'wÔeÛ¢ùú ×»nûÓ·¿]¹v§ßºJb :ƒÁbíTq½â©ŽAdPiGú§Kvzèߘƒ2öá÷Ü÷WCf§À?½Ç‘kQJ¡øh“dV[J}‚^—¡žN¡8 g ß}@ƵðšnÞ„¿³çH¦ŽY¶"ÆžSÓÔ|¼½5õ¸¾˜ï»øÊ€½p3Åg«vî¬|eºEo΃%×™ì¡r8ƤŠî‚¸­†))™®£'1âï˜z(IN7›ròxòz4R®Á›«‡x9Ÿ¨QÔHÞ ½ðÂT#…~"³*ìÊÇŒèÉ‘wäæã^EÖ†nÏ+¤–M–÷µ W‹9{^»± ꤾ ¶³Þè†Z¶ÒPd4YÀ˜ËïÉÚ–$ý¨ÂÊ¢ŽŠ…F`³ ÷’\b2 çxYQqi ßhëm{,ºùbŸÆš°K©<Еr­¿àˆlsZƒ6Oý‡í ÿ¹'âgÈþ ÝQ±ð-á‚¶§é÷ñ®iµ#kjIS5&YD]ÎcŸŒãÇ:/¯qc+qqyrÌe>stream 2012-06-05T15:51:16-05:00 2012-06-05T15:51:16-05:00 dvips\(k\) 5.95a Copyright 2005 Radical Eye Software HepMC2_user_manual.dvi endstream endobj 2 0 obj <>endobj xref 0 224 0000000000 65535 f 0000152959 00000 n 0000248706 00000 n 0000152700 00000 n 0000148260 00000 n 0000000015 00000 n 0000003140 00000 n 0000153025 00000 n 0000165425 00000 n 0000244868 00000 n 0000164680 00000 n 0000238058 00000 n 0000163920 00000 n 0000228930 00000 n 0000163507 00000 n 0000226365 00000 n 0000162421 00000 n 0000215307 00000 n 0000161941 00000 n 0000211586 00000 n 0000160677 00000 n 0000195632 00000 n 0000153066 00000 n 0000153096 00000 n 0000148420 00000 n 0000003160 00000 n 0000006054 00000 n 0000153192 00000 n 0000153222 00000 n 0000148582 00000 n 0000006075 00000 n 0000007434 00000 n 0000153276 00000 n 0000153306 00000 n 0000148744 00000 n 0000007455 00000 n 0000015593 00000 n 0000157895 00000 n 0000175944 00000 n 0000157630 00000 n 0000175292 00000 n 0000157128 00000 n 0000173286 00000 n 0000156389 00000 n 0000166683 00000 n 0000156068 00000 n 0000165759 00000 n 0000164833 00000 n 0000238699 00000 n 0000164330 00000 n 0000234547 00000 n 0000153349 00000 n 0000153379 00000 n 0000148906 00000 n 0000015614 00000 n 0000030096 00000 n 0000163850 00000 n 0000153508 00000 n 0000153538 00000 n 0000149068 00000 n 0000030118 00000 n 0000037466 00000 n 0000161284 00000 n 0000202973 00000 n 0000160227 00000 n 0000190379 00000 n 0000153614 00000 n 0000153644 00000 n 0000149230 00000 n 0000037487 00000 n 0000039476 00000 n 0000153709 00000 n 0000153739 00000 n 0000149392 00000 n 0000039497 00000 n 0000042207 00000 n 0000158060 00000 n 0000176900 00000 n 0000159844 00000 n 0000187748 00000 n 0000163178 00000 n 0000224521 00000 n 0000153771 00000 n 0000153801 00000 n 0000149554 00000 n 0000042228 00000 n 0000048389 00000 n 0000159279 00000 n 0000185070 00000 n 0000153866 00000 n 0000153896 00000 n 0000149716 00000 n 0000048410 00000 n 0000056388 00000 n 0000158566 00000 n 0000180455 00000 n 0000157442 00000 n 0000174130 00000 n 0000153972 00000 n 0000154002 00000 n 0000149878 00000 n 0000056409 00000 n 0000064634 00000 n 0000154122 00000 n 0000154153 00000 n 0000150044 00000 n 0000064656 00000 n 0000071051 00000 n 0000154252 00000 n 0000154283 00000 n 0000150210 00000 n 0000071073 00000 n 0000077859 00000 n 0000154360 00000 n 0000154391 00000 n 0000150376 00000 n 0000077881 00000 n 0000086073 00000 n 0000154490 00000 n 0000154521 00000 n 0000150542 00000 n 0000086095 00000 n 0000092308 00000 n 0000154631 00000 n 0000154662 00000 n 0000150708 00000 n 0000092330 00000 n 0000099890 00000 n 0000154750 00000 n 0000154781 00000 n 0000150874 00000 n 0000099912 00000 n 0000105780 00000 n 0000154933 00000 n 0000154964 00000 n 0000151040 00000 n 0000105802 00000 n 0000112425 00000 n 0000155052 00000 n 0000155083 00000 n 0000151206 00000 n 0000112447 00000 n 0000119842 00000 n 0000155182 00000 n 0000155213 00000 n 0000151372 00000 n 0000119864 00000 n 0000124564 00000 n 0000156705 00000 n 0000168626 00000 n 0000155312 00000 n 0000155343 00000 n 0000151538 00000 n 0000124586 00000 n 0000128235 00000 n 0000155389 00000 n 0000155420 00000 n 0000151704 00000 n 0000128257 00000 n 0000132496 00000 n 0000155508 00000 n 0000155539 00000 n 0000151870 00000 n 0000132518 00000 n 0000136537 00000 n 0000155627 00000 n 0000155658 00000 n 0000152036 00000 n 0000136559 00000 n 0000138429 00000 n 0000155735 00000 n 0000155766 00000 n 0000152202 00000 n 0000138451 00000 n 0000139892 00000 n 0000155810 00000 n 0000155841 00000 n 0000152368 00000 n 0000139914 00000 n 0000145705 00000 n 0000155885 00000 n 0000155916 00000 n 0000152534 00000 n 0000145727 00000 n 0000148238 00000 n 0000155982 00000 n 0000156013 00000 n 0000165996 00000 n 0000166942 00000 n 0000169013 00000 n 0000173568 00000 n 0000174352 00000 n 0000175537 00000 n 0000176173 00000 n 0000177254 00000 n 0000180770 00000 n 0000185349 00000 n 0000188040 00000 n 0000190852 00000 n 0000196078 00000 n 0000203448 00000 n 0000211887 00000 n 0000215910 00000 n 0000224803 00000 n 0000226634 00000 n 0000229301 00000 n 0000234831 00000 n 0000238267 00000 n 0000239134 00000 n 0000245163 00000 n 0000156258 00000 n 0000157289 00000 n 0000157797 00000 n 0000158357 00000 n 0000158955 00000 n 0000159705 00000 n 0000160086 00000 n 0000161185 00000 n 0000161792 00000 n 0000162332 00000 n 0000162974 00000 n 0000163387 00000 n 0000165323 00000 n 0000247261 00000 n trailer << /Size 224 /Root 1 0 R /Info 2 0 R /ID [<130F926A5EDFA15624CE651A9EDE515B><130F926A5EDFA15624CE651A9EDE515B>] >> startxref 248923 %%EOF hepmc-2.06.09.orig/doc/doxygen.warnings0000644000175000017500000000000011763470446020603 0ustar sylvestresylvestrehepmc-2.06.09.orig/doc/HepMC2_user_manual.tex0000644000175000017500000022054511657311123021515 0ustar sylvestresylvestre\documentclass[11pt,letterpaper]{article} \usepackage{epsfig} \usepackage{graphicx} \usepackage{graphics} \usepackage{cite} % bibliographic sitations \usepackage{floatflt} \usepackage{fancybox} %allows for shadow boxes etc. \usepackage{color} %allows use of colors (RBG only, I think) \usepackage{html} % allows easy inclusion of links which are % interpretted properly by both latex and latex2html \topmargin -0.5in \setlength{\textwidth}{6.5in} \setlength{\textheight}{8.75in} \setlength{\oddsidemargin}{0in} \setlength{\evensidemargin}{0in} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \begin{document} % %%%%%%%%%%%%%%%%%%%%%%% % Define new commands % %%%%%%%%%%%%%%%%%%%%%%% % % choose one of the following definitions of mycomment (second = good copy) \newcommand{\mycomment}[1]{\marginpar{\it\tiny #1}} % used for margin comments %\newcommand{\mycomment}[1]{\typeout{#1}} \newcommand{\txt}[1]{{\mbox{\tiny #1}}} %facilitates sub/superscripts % that aren't italicized \newcommand{\order}{{\cal O}} \newenvironment{mylist} {\begin{list}{}{ \setlength{\leftmargin}{0.5cm} \setlength{\itemsep}{0pt} \setlength{\parsep}{0pt} \setlength{\topsep}{0pt} \renewcommand{\makelabel}{}}} {\end{list}} %%%% \vspace{-.2cm} {\bf \underline{\sc #1}} \vspace{-.2cm} \newenvironment{myitemize}[1] { \begin{small} {\bf \underline{\sc #1}} \vspace{-.2cm} \begin{itemize} \setlength{\itemsep}{-4pt} \setlength{\parsep}{0pt} \setlength{\topsep}{0pt} \setlength{\partopsep}{0pt} } {\end{itemize}\end{small}} \newcommand{\myitem}[2]{ \item {\bf #1}: {\it #2} } % from page 4 of fancybox.sty manual \newenvironment{fminipage}% {\begin{Sbox}\begin{minipage}}% {\end{minipage}\end{Sbox}\fbox{\TheSbox}} % % use % \begin{fminipage}{3in} % the text paragraph is 3 inchs wide % \end{fminipage} % to have a multi-line framed box % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \begin{titlepage} {\tiny \LaTeX-ed on \today.} \vspace{2cm} \begin{center} {\Huge\bf HepMC 2} \vspace{1cm} {\huge a C++ Event Record for Monte Carlo Generators } \vspace{2cm} \htmladdnormallink{http://savannah.cern.ch/projects/hepmc/} {http://savannah.cern.ch/projects/hepmc/} \vspace{1cm} {\Large User Manual Version 2.06} \\ May 17, 2010 \vspace{2cm} {\huge Matt Dobbs} \\ University of Victoria, Canada \vspace{.2cm} {\Large J$\o$rgen Beck Hansen} \\ CERN \vspace{.2cm} {\Large Lynn Garren} \\ Fermi National Accelerator Laboratory \vspace{.2cm} {\Large Lars Sonnenschein} \\ RWTH Aachen \vspace{1cm} \end{center} \begin{abstract} The HepMC package is an object oriented event record written in C++ for High Energy Physics Monte Carlo Generators. Many extensions from HEPEVT, the Fortran HEP standard, are supported: the number of entries is unlimited, spin density matrices can be stored with each vertex, flow patterns (such as color) can be stored and traced, integers representing random number generator states can be stored, and an arbitrary number of event weights can be included. Particles and vertices are kept separate in a graph structure, physically similar to a physics event. The added information supports the modularisation of event generators. The package has been kept as simple as possible with minimal internal/external dependencies. Event information is accessed by means of iterators supplied with the package. HepMC 2 is an extension to the original HepMC written by Matt Dobbs. \end{abstract} \end{titlepage} \setcounter{page}{1} \tableofcontents \listoffigures \listoftables \newpage % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Introduction} This user manual is intended as a companion to the \htmladdnormallinkfoot{online documentation} {http://lcgapp.cern.ch/project/simu/HepMC/}, and together with the examples should provide a friendly introduction to the HepMC event record. A general overview is available in Ref.~\cite{dobbs:2000CompPhysComm}. The HEP community has moved towards Object-Oriented computing tools (usually C++): most upcoming experiments are choosing OO software architecture, and Pythia 8~\cite{Torbjorn} and Herwig++~\cite{Richardson}, written in C++, are available. A standard event record must be simple for the end user to access information, while maintaining the power and flexibility offered by OO design. The HepMC event record has been developed to satisfy these criteria. HepMC is an object oriented event record written in C++ for Monte Carlo Generators in High Energy Physics. It has been developed independent of a particular experiment or event generator. It is intended to serve as both a ``container class'' for storing events after generation and also as a ``framework'' in which events can be built up inside a set of generators. This allows for the modularisation of event generators---wherein different event generators could be employed for different steps or components of the event generation process (illustrated in Figure~\ref{modularisation}). \footnote{ % At the {\it Physics at TeV Colliders Workshop 2001} in Les Houches, France, a group of Monte Carlo authors and experimentalists produced a document~\cite{Boos:2001cv} which outlines the information content necessary for two event generators to communicate information about a hard process to the subsequent stages of event generation. This was implemented in a set of Fortran common blocks, and many ideas from HepMC were used, such as the scheme for handling color flow information. Version 1.1 of HepMC supports the full event information content of Ref.~\cite{Boos:2001cv} (run information---pertaining to a collection of events---is also specified in that document and is not addressed in HepMC). } \begin{figure}[h] \begin{center} \Ovalbox{\begin{minipage}{5in}\begin{small} \begin{tabular}{rcl} $\overbrace{\mbox{Hard~Process~Generator}}^{ \mbox{\color{magenta}Specific NLO Generator}}$ & $\stackrel{\rm \color{blue}Event~Record}{\rightarrow\rightarrow}$ & $\overbrace{\mbox{Cascade~Package}}^{ \mbox{\color{magenta}ARIADNE}}$ \\ & $\stackrel{\rm \color{blue}Event~Record}{\rightarrow\rightarrow}$ & $\overbrace{\mbox{Hadronization~Package}}^{ \mbox{\color{magenta}Herwig}}$ \\ & $\stackrel{\rm \color{blue}Event~Record}{\rightarrow\rightarrow}$ & $\overbrace{\mbox{Decay~Package}}^{ \mbox{\color{magenta}EvtGen}}$ \\ & $\stackrel{\rm \color{blue}Event~Record}{\rightarrow\rightarrow}$ & $\overbrace{\mbox{Detector~Simulation}}^{ \mbox{\color{magenta}ATLfast}}$ \\ \end{tabular}\end{small} \end{minipage}}\end{center} \caption[Modularised event generation]{\label{modularisation} HepMC supports the concept of modularised event generation (illustrated above) by containing sufficient information within the event record to act as a messenger between two modular steps in the event generation process. } \end{figure} Physics events are generally visualised using diagrams with a graph structure (Figure~\ref{graph_structure}, left) which HepMC imitates by separating out particles from vertices and representing them as the edges and nodes respectively of a graph~\footnote{ Ref.~\cite{mc++} uses a similar structure.} (Figure~\ref{graph_structure}, right). Each vertex maintains a listing of its incoming and outgoing particles, while each particle points back to its production vertex and decay vertex. The extension to multiple collisions is natural - the super-position of graphs from several different initial processes - and so the event may contain an unlimited number of (possibly interconnected) graphs. The number of vertices/particles in each event is also open-ended. A subset of the event (such as one connected graph or a single vertex and its descendants) may be examined or modified without having to interpret complex parent/child relationship codes or re-shuffle the rest of the event record. \begin{figure}[h] \begin{center} \parbox[c]{55mm}{\includegraphics[height=45mm,clip=] {physicist_visualization.eps}} \mbox{\huge ${\stackrel{\rm HepMC}{\rightarrow}}$} \parbox[c]{45mm}{\includegraphics[height=45mm,clip=] {graph_interpretation.eps}} \end{center} \caption[Event visualization] {\label{graph_structure} Events in HepMC are stored in a graph structure (right), similar to a physicist's visualisation of a collision event (left).} \end{figure} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{Features of the HepMC Event Record} \begin{itemize}\setlength{\itemsep}{0pt} \item simple - easy access to information provided by iterators and range methods \item minimum dependencies \item information is stored in a graph structure, physically similar to a collision event \item allows specification of momentum and length units \item allows for the inclusion of spin density matrices \item allows for the tracing of an arbitrary number of flow patterns \item ability to store the state of random number generators (as integers) \item ability to store an arbitrary number of event weights \item ability to store parton distribution function information \item ability to store heavy ion information \item ability to store generated cross section information on an event by event basis \item strategies for conversion to/from HEPEVT (Ref.~\cite{Boos:2001cv}) which are easily extendible to support other event records \item strategies for input/output to/from Ascii files which are easily extendible to support other forms of persistency \item support for standard streaming I/O \end{itemize} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{HepMC 2} Since January 2006, HepMC has been supported as an LCG external package. The official web site is now \htmladdnormallink {http://savannah.cern.ch/projects/hepmc/} {http://savannah.cern.ch/projects/hepmc/}, and compiled libraries for supported platforms are available at /afs/cern.ch/sw/lcg/external/HepMC. Historically, HepMC has used CLHEP (Ref.~\cite{clhep}) Lorentz vectors. Some users wished to use a more modern Lorentz vector package. At the same time, there was concern about allowing dependencies on any external package. Therefore, the decision was made to replace the CLHEP Lorentz vectors with a minimal vector representation within HepMC. Because this is a major change, the versioning was changed from 1.xx.yy to 2.xx.yy. Normally, a version number change in \emph{xx} represents a change to the code and a version number change in \emph{yy} represents a bug fix. There have also been continuing requests for other features. Changes to HepMC must be approved by the LCG simulation project (Ref.~\cite{lcgsim}). % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{Overview of Changes Since HepMC 1.26} See the HepMC ChangeLog~\cite{changelog} for a complete listing. GenEvent now contains pointers to a heavy ion class, a PDF information class, and a generated cross section class. The pointers are null by default. In addition, GenEvent now has the capability to declare which momentum and position units are used. GenParticle momentum and GenVertex position are represented by a simple FourVector class instead of the CLHEP Lorentz vectors. The SimpleVector.h header contains the FourVector and ThreeVector classes. GenVertex will return the ThreeVector portion of the position. Polarization will accept or return a ThreeVector representation of the polarization. Both FourVector and ThreeVector have templated constructors. These constructors allow you to use the GenParticle and GenVertex constructors with \emph{any} Lorentz vector, as long as the Lorentz vector has \verb!x()!, \verb!y()!, \verb!z()!, and \verb!t()! methods. The generated mass, which has always been part of the HEPEVT common block, is now stored in GenParticle. When a particle has large momentum and small mass, calculating the mass from the momentum is unreliable. Also, different machine representations and roundoff errors mean that a calculated mass is not always consistent. If no generated mass is set, then the mass is calculated from the momementum and stored in GenParticle. The IO\_AsciiParticles class provides output in the Pythia style. This output is intended for ease of reading event output, not for persistency. The IO\_Ascii output class has been replaced with of IO\_GenEvent, described in Section~\ref{iogenevent}. IO\_GenEvent persists all information in the updated GenEvent object and uses iostreams for greater flexibility. IO\_GenEvent also has a constructor taking a file name and mode type for backwards compatibility. Output remains in Ascii format. Streaming I/O of GenEvent objects may also be done without using IO\_GenEvent. The new HepMCDefs.h header allows users to query which features are enabled. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Package Structure} Entries within the event record are separated into particles and vertices. Each particle is composed of momentum, flow, and polarization classes as well as id and status information. The vertices are the connection nodes between particles and are a container class for particles: thus each particle within an event belongs to at least one vertex. In addition the vertex is composed of position, id, and (spin density matrix) weight information. Particles and vertices are uniquely identified by an integer---referred to as a ``barcode''---which is meant to be a persistent label for a particular particle instance. The event is the container class for all (possibly inter-connected) vertices in the event and contains process id, event number, unit information, weight, and random number state information. Please note that the barcodes are intended for internal use within HepMC as a unique identifier for the particles and vertices. Using the barcode to encode extra information is an abuse of the barcode data member and causes confusion among users. Iterators are provided as methods of the vertex and event classes which allow easy directed access to information in the C++ Standard Template Library (STL) style. In addition, the GenRanges header contains several iterator classes which explicity provide begin() and end() methods for the various public iterator types, allowing the user to easily use such utilities as std::foreach. \begin{figure}[!ht] \begin{center} \includegraphics[width=\textwidth,clip=]{HepMC_basic_properties.eps} \end{center} \caption[HepMC class diagrams] {\label{UML_diagrams} Class diagrams for the event record classes (GenEvent, GenVertex, and GenParticle) and the IO strategies are shown in the UML notation.} \end{figure} \clearpage The event record class relationships are shown in Figure~\ref{UML_diagrams}. Several input/output strategies are provided. The interface for these strategies is defined by an abstract base class, IO\_BaseClass. These strategies are capable of input/output of events and as such they depend directly on the event record class. The package consists of about 5500~lines of code including $\approx$1500~comments. There are 7 core classes (GenEvent, GenVertex, GenParticle, Flow, Polarization, WeightContainer, IO\_BaseClass) and several utility classes (i.e.\ IO\_HEPEVT, IO\_GenEvent, HEPEVT\_Wrapper, PythiaWrapper, \ldots). \subsection{Dependencies} The HepMC 2 package depends only on the C++ Standard Template Library~\cite{stl} (STL). The HepMC 1 package dependencies were limited to STL and the vector classes from the Class Library for High Energy Physics~\cite{clhep} (CLHEP). Simple wrappers for the Fortran versions of Pythia~\cite{Sjostrand:2001yb} and Herwig~\cite{herwig} are supplied with the package to allow the inclusion of event generation examples. \subsection{Namespace} The HepMC package is written within the HepMC:: namespace. Outside of this namespace all class names will need to be prefixed by HepMC::. The units methods and enums are in the HepMC::Units:: namespace. \subsection{Performance} The CPU time performance of the HepMC event record has been quantified by generating 1000 LHC $W\gamma$ production events using Pythia 5.7 and transferring the event record to HepMC using the IO\_HEPEVT strategy. Results are summarised in Table~\ref{benchmarks}. Generation of events in Pythia required 29 seconds of CPU time. Generating the same events and transferring them into HepMC required 34 seconds. \begin{table}[h] \begin{center} \begin{tabular}{|l l l|c|c|} \hline &&&CPU Time & File Size \\ \hline Pythia & & & 29 sec & \\ & + {\color{red}HepMC} & & 34 sec & \\ \hline & + {\color{red}HepMC} & + {\color{red}IO\_Ascii} & 64 sec & 60.5 Mbytes \\ & + {\color{green}LCWRITE} & & 92 sec & 106 Mbytes \\ \multicolumn{3}{|l|}{HEPEVT raw size 1K events, 500K particles} && 48.2 Mbytes \\ \hline \end{tabular} \end{center} \caption[Performance]{\label{benchmarks} CPU time performance and file size using a dedicated 450 MHz Pentium~III.} \end{table} The time to write HepMC events as Ascii files using the IO\_Ascii strategy was compared to \verb!LCWRITE!, a simple Fortran routine used in NLC studies to write the HEPEVT common block in formatted Ascii to file. Generating the events with Pythia, transferring them to HepMC, and writing them to file took 64~seconds and produced a 60.5~Mbyte file. Generating the events with Pythia and writing them to file using the \verb!LCWRITE! subroutine took 92~seconds and produced a 106~Mbyte file. Compression algorithms (such as \verb!gzip!) can reduce the file sizes by a factor 3 or more. The raw size of the HEPEVT common block for these 1000~events (which in this case produced about 500K~particles) is 48.2~Mbytes. In both cases most CPU time is spent writing to file. HepMC benefits from added logic when interpreting the record and from position information which is stored once for each vertex, rather than with every particle. CPU time savings will be realized when HepMC is used inside event generators - since it is possible to target and modify one area of the particle/vertex graph without re-shuffling the rest of the event record. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Overview of Core Classes} \underline{\bf NOTE ABOUT UNITS}: HepMC does not define which units are used for the information stored in the event record. The HEPEVT standard uses GeV/mm, and so the output from most Fortran generators will normally be in these units. CLHEP and Geant4 use MeV/mm, and some collaborations such as ATLAS have adopted these units for their simulation. We also note that Fluka uses cm. As of HepMC 2.04.00, GenEvent contains member data to store information about units used. Default units are declared with configure switches --with-momentum and --with-length. These configure switches are required. HepMC users should refer to the code that fills the event record to determine which units are being used. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenEvent} \begin{myitemize}{Important Public Methods} \myitem{GenEvent(Units::MomentumUnit, Units::LengthUnit,...)}{As of HepMC 2.04.00, additional constructors are available to enable unit specification - see also use\_units below.} \myitem{add\_vertex}{adopts the specified vertex to the event and assumes responsibility for deleting the vertex} \myitem{remove\_vertex}{removes the specified vertex from the event, the vertex is not deleted - thus use of this method is normally followed directly by a delete vertex operation} \myitem{vertex\_iterator}{iterates over all vertices in the event - described in the iterator section} \myitem{particle\_iterator}{iterates over all particles in the event - described in the iterator section} \myitem{vertex\_const\_iterator}{constant version of the vertex\_iterator} \myitem{particle\_const\_iterator}{constant version of the particle\_iterator} \myitem{vertex\_range}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \myitem{particle\_range}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \myitem{print}{gives a formatted printout of the event to the specified output stream} \myitem{barcode\_to\_particle}{ returns a pointer to the particle associated with the integer barcode argument } \myitem{barcode\_to\_vertex}{ returns a pointer to the vertex associated with the integer barcode argument } \myitem{use\_units}{set both momentum and position units, and scale FourVectors if necessary} \myitem{read}{read ascii input directly from an istream} \myitem{write}{write ascii output directly to an ostream} \end{myitemize} \begin{myitemize}{Relevant Data Members} \myitem{signal\_process\_id}{an integer ID uniquely specifying the signal process (i.e.\ MSUB in Pythia).} \myitem{event\_number}{integer} \myitem{event\_scale}{(optional) the scale of this event. (-1 denotes unspecifed)} \myitem{alphaQCD}{(optional) the value of the strong coupling constant $\alpha_{QCD}$ used for this event. (-1 denotes unspecifed)} \myitem{alphaQED}{(optional) the value of the electroweak coupling constant $\alpha_{QED}$ (e.g.\ $\frac{1}{128}$) used for this event. (-1 denotes unspecifed)} \myitem{signal\_process\_vertex}{(optional) pointer to the vertex defined as the signal process - allows fast navigation to the core of the event} \myitem{beam\_particle\_1}{(optional) pointer to the first incoming beam particle } \myitem{beam\_particle\_2}{(optional) pointer to the second incoming beam particle } \myitem{weights}{a container of an arbitrary number of 8 byte floating point event weights and their associated names} \myitem{random\_states}{a container of an arbitrary number of 4 byte integers which define the random number generator state just before the event generation} \myitem{heavy\_ion}{(optional) a pointer to a HeavyIon object (zero by default)} \myitem{pdf\_info}{(optional) a pointer to a PdfInfo object (zero by default)} \myitem{cross\_section}{(optional) a pointer to a GenCrossSection object (zero by default)} \myitem{momentum\_unit}{momentum units (MEV or GEV)} \myitem{length\_unit}{position units (MM or CM)} \end{myitemize} \begin{myitemize}{Important Free Functions} \myitem{operator $>>$}{read ascii input directly from an istream} \myitem{operator $<<$}{write ascii output directly to an ostream} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item if hit and miss Monte Carlo integration is to be performed with a single event weight, the first weight will be used by default \item Memory allocation: vertex and particle objects will normally be created by the user with the NEW operator. Once a vertex (particle) is added to a event (vertex), it is "adopted" and becomes the responsibility of the event (vertex) to delete that vertex (particle). \item Although default units are specified with configure, the user is strongly encouraged to explicitly set units with either the appropriate constructor or a call to set\_units. \end{myitemize} The GenEvent is the container class for vertices. A listing of all vertices is maintained with the event, giving fast access to vertex information. GenParticles are accessed by means of the vertices. Extended event features (weights, random\_states, heavy\_ion, pdf\_info, cross\_section) have been implemented such that if left empty/unused performance and memory usage will be similar to that of an event without these features. Iterators are provided as members of the GenEvent class (described in Section~\ref{iterators}). Methods which fill containers of particles or vertices are {\it not provided}, as the STL provides these functionalities with algorithms such as \verb!copy! and iterator adaptors such as \verb!back_inserter! giving a clean generic approach. Using this functionality it is easy to obtain lists of particles/vertices given some criteria - such as a list of all final state particles. Classes which provide the criteria (called predicates) are also {\it not provided}, as the number of possibilities is open ended and specific to the application - and would clutter the HepMC package. Implementing a predicate is simple (about 4 lines of code). Examples are given in the GenEvent header file and in \verb!example_UsingIterators.cc! (Section~\ref{examples}). Useful examples can also be found in testHepMCIteration.cc. The signal\_process\_id is packaged with each event (rather than being associated with a run class for example) to handle the possibility of many processes being generated within the same run. A container of tags specifying the meaning of the weights and random\_states entries is envisioned as part of a run class - which is beyond the scope of an event record. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::PdfInfo} \begin{myitemize}{Relevant Data Members} \myitem{id1}{flavour code of first parton} \myitem{id2}{flavour code of second parton } \myitem{pdf\_id1}{LHAPDF set id of first parton} \myitem{pdf\_id2}{LHAPDF set id of second parton} \myitem{x1}{fraction of beam momentum carried by first parton ("beam side")} \myitem{x2}{fraction of beam momentum carried by second parton ("target side")} \myitem{scalePDF}{Q-scale used in evaluation of PDF's (in GeV)} \myitem{pdf1}{PDF (id1, x1, Q) This should be of the form x*f(x)} \myitem{pdf2}{PDF (id2, x2, Q) This should be of the form x*f(x)} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item The LHAPDF\cite{lhapdf} set ids are the entries in the first column of \htmladdnormallink {http://projects.hepforge.org/lhapdf/PDFsets.index} {http://projects.hepforge.org/lhapdf/PDFsets.index}. \item The LHAPDF set ids pdf\_id1 and pdf\_id2 are zero by default. \item IMPORTANT: The contents of pdf1 and pdf2 are expected to be x*f(x), which is the quantity returned by LHAPDF. \item IMPORTANT: Input parton flavour codes id1 and id2 are expected to obey the PDG code conventions, especially g = 21. \end{myitemize} PdfInfo stores additional PDF information for a GenEvent. Creation and use of this information is optional. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::HeavyIon} \begin{myitemize}{Relevant Data Members} \myitem{Ncoll\_hard}{Number of hard scatterings} \myitem{Npart\_proj}{Number of projectile participants} \myitem{Npart\_targ}{Number of target participants} \myitem{Ncoll}{Number of NN (nucleon-nucleon) collisions} \myitem{N\_Nwounded\_collisions}{Number of N-Nwounded collisions} \myitem{Nwounded\_N\_collisions}{Number of Nwounded-N collisons} \myitem{Nwounded\_Nwounded\_collisions}{Number of Nwounded-Nwounded collisions} \myitem{spectator\_neutrons}{Number of spectators neutrons} \myitem{spectator\_protons}{Number of spectators protons} \myitem{impact\_parameter}{Impact Parameter(fm) of collision} \myitem{event\_plane\_angle}{Azimuthal angle of event plane} \myitem{eccentricity}{eccentricity of participating nucleons in the transverse plane (as in phobos nucl-ex/0510031)} \myitem{sigma\_inel\_NN }{nucleon-nucleon inelastic (including diffractive) cross-section} \end{myitemize} HeavyIon provides additional information storage in GenEvent for Heavy Ion generators. Creation and use of this information is optional. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::GenCrossSection} \begin{myitemize}{Relevant Data Members} \myitem{cross\_section}{cross section in pb} \myitem{cross\_section\_error}{error associated with this cross section in pb} \end{myitemize} GenCrossSection provides additional storage in GenEvent for an event by event snapshot of the cross section while events are being generated. It is expected that the final cross section will be stored elsewhere. Creation and use of this information is optional. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::Units} \begin{myitemize}{Important Methods} \myitem{enum MomentumUnit}{values are MEV or GEV} \myitem{enum LengthUnit}{values are MM or CM} \myitem{std::string name(MomentumUnit)}{return the unit designation as a string} \myitem{std::string name(LengthUnit)}{return the unit designation as a string} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item Refer to a unit enum as, for instance, HepMC::Units::GEV \item Whenever both unit types are passed, MomentumUnit always goes first. \end{myitemize} Units is a namespace encapsulating methods used for unit manipulation. Default units are set at compile time by the configure switches --with-momentum and --with-length. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenVertex} \begin{myitemize}{Important Public Methods} \myitem{add\_particle\_in}{adds the specified particle to the container of incoming particles} \myitem{add\_particle\_out}{adds the specified particle to the container of outgoing particles} \myitem{remove\_particle}{removes the specified particle from both/either of the incoming/outgoing particle containers, the particle is not deleted - thus use of this method is normally followed directly by a delete particle operation} \myitem{vertex\_iterator}{iterates over vertices in the graph, given a specified range - described in the iterator section} \myitem{particle\_iterator}{iterates over particles in the graph, given a specified range - described in the iterator section} \myitem{particles}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \myitem{particles\_in}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \myitem{particles\_out}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \end{myitemize} \begin{myitemize}{Relevant Data Members} \myitem{position}{$\vec{x},ct$ stored as FourVector} \myitem{id}{integer id, may be used to specify a vertex type} \myitem{weights}{a container of 8 byte floating point numbers of arbitrary length, could be mapped in pairs into rows and columns to form spin density matrices of complex numbers} \myitem{barcode}{an integer which uniquely identifies the GenVertex within the event. For vertices the barcodes are always negative integers.} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item no standards are currently defined for the vertex id \item once a particle is added, the vertex becomes its owner and is responsible for deleting the particle \end{myitemize} The GenVertex is the container class for particles and forms the nodes which link particles into a graph structure. The weights container is included with each vertex with the intention of storing spin density matrices. It is envisioned that a generator package would assign spin density matrices to particle production vertices and provide the functional form of the frame definition for the matrix as a ``look-up'' method for interpreting the weights. The generator package would also provide a boost method to go from the frame of the density matrix to the lab frame and back without destroying correlations. This gives maximum freedom to the sub-generators - allowing for different form definitions. This implementation is consistent with the EvtGen B-decay package~\cite{evtgen} requirements. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::WeightContainer} \begin{myitemize}{Relevant Data Members} \myitem{weights}{a vector of 8-byte floating point weights} \myitem{names}{a map of strings associated with a position in the weights vector} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item methods are coded and names chosen in the spirit of the STL vector class \end{myitemize} The WeightContainer is a storage area for double precision weights used in GenEvent and GenVertex and their associated names. WeightContainer mimics both a map class and the STL vector class, and its member functions are chosen in that spirit. You might, for instance, use the GenEvent weights to include information about differential cross sections. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenParticle} \begin{myitemize}{Important Public Methods} \myitem{operator FourVector}{conversion operator - resolves the particle as a 4-vector according to its momentum} \myitem{generatedMass}{generated mass} \myitem{momentum().m()}{calculates mass from momentum} \myitem{particles\_in}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \myitem{particles\_out}{provides begin() and end() for ease of use with external fuctions, such as for\_each} \end{myitemize} \begin{myitemize}{Data Members} \myitem{momentum}{$\vec{p},cE$ stored as FourVector} \myitem{generated\_mass}{generated mass for this particle} \myitem{pdg\_id}{unique integer ID specifying the particle type} \myitem{status}{integer specifying the particle's status (i.e.\ decayed or not)} \myitem{flow}{allows for the storage of flow patterns (i.e. color flow), refer to Flow class} \myitem{polarization}{stores the particle's polarization as $(\theta,\phi)$, refer to Polarization class} \myitem{production\_vertex}{pointer to the vertex where the particle was produced, can only be set by the vertex} \myitem{end\_vertex}{pointer to the vertex where the particle decays, can only be set by the vertex} \myitem{barcode}{an integer which uniquely identifies the GenParticle within the event. For particles the barcodes are always positive integers.} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item the particle ID should be specified according to the PDG standard~\cite{Yao:2006tx} \item the status code should be specified according to the clarified HEPEVT status codes \end{myitemize} The particle is the basic unit within the event record. The GenParticle class is composed of the FourVector, Flow, and Polarization classes. Pointers to the particle's production and end vertex are included. In order to ensure consistency between vertices/particles - these pointers can only be set from the vertex. Thus adding a particle to the particles\_in container of a vertex will automatically set the end\_vertex of the particle to point to that vertex. The definition of a HepLorentzVector scope resolution operator allows for the use of 4-vector algebra with particles (i.e.\ preceding an instance, \verb!particle!, of the HepMC::GenParticle class by \verb!(HepLorentzVector)particle! causes it to behave exactly like its 4-vector momentum, examples are given in the particle header file). A second 4-vector for the particle's momentum at decay time has {\it not} been included (as for example in~\cite{mc++}, where the second momentum vector is included to facilitate tracking through material). If this is desirable, one can simply add a decay vertex with the same particle type going out. This is intuitive, since a change in momentum cannot occur without an interaction (vertex). After some discussion, the authors in MCnet~\cite{mcnet} have agreed to a clarification of the HEPEVT~\cite{stdhep5.05} status codes. The Fortran Monte Carlo generators will not change their behaviour, but Sherpa, Pythia8, and Herwig++ will go to the newer usage.\newline These are the accepted status code definitions: \begin{myitemize}{} \myitem{0 }{an empty entry with no meaningful information and therefore to be skipped unconditionally} \myitem{1 }{a final-state particle, i.e. a particle that is not decayed further by the generator (may also include unstable particles that are to be decayed later, as part of the detector simulation). Such particles must always be labelled '1'.} \myitem{2 }{decayed Standard Model hadron or tau or mu lepton, excepting virtual intermediate states thereof (i.e. the particle must undergo a normal decay, not e.g. a shower branching). Such particles must always be labelled '2'. No other particles can be labelled '2'.} \myitem{3 }{a documentation entry} \myitem{4 }{an incoming beam particle} \myitem{5-10 }{undefined, reserved for future standards} \myitem{11-200}{an intermediate (decayed/branched/...) particle that does not fulfill the criteria of status code 2, with a generator-dependent classification of its nature.} \myitem{201- }{at the disposal of the user, in particular for event tracking in the detector} \end{myitemize} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::Flow} \begin{myitemize}{Important Public Methods} \myitem{connected\_partners}{returns a container of all particles connected via the specified flow pattern} \myitem{dangling\_connected\_partners}{returns a container of all particles ``dangling'' from the ends of the specified flow pattern} \end{myitemize} \begin{myitemize}{Relevant Data Members} \myitem{particle\_owner}{points back to the particle to which the flow object belongs} \myitem{icode map}{container of integer flow codes - each entry has an index and an icode} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item code indices 1 and 2 are reserved for color flow \end{myitemize} The Flow class is a data member of the GenParticle---its use is optional. It stores flow pattern information as a series of integer flow codes and indices. This method features the possibility of storing non-conserved flow patterns (such as baryon number violation in SUSY models). Some examples of integer flow code representation for several events are provided in Ref.~\cite{Boos:2001cv}. The Flow class is used to keep track of flow patterns within a graph - each pattern is assigned a unique integer code, and this code is attached to each particle through which it passes. Different flow types are assigned different flow indices, i.e.\ color flow uses index 1 and 2. Methods are provided to return a particle's flow partners. An example is given at the top of the Flow header file. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::Polarization} \begin{myitemize}{Important Public Methods} \myitem{is\_defined}{returns true if the Polarization has been defined} \myitem{set\_undefined}{set this to undefined, resetting theta and phi to their default values} \end{myitemize} \begin{myitemize}{Relevant Data Members} \myitem{theta}{$\theta$ angle in radians $0\leq\theta\leq\pi$} \myitem{phi}{$\phi$ angle in radians $0\leq\phi<2\pi$} \end{myitemize} \begin{myitemize}{Notes and Conventions} \item the angles are robust - if you supply an angle outside the range, it is properly translated (i.e.\ $4\pi$ becomes 0) \end{myitemize} Polarization is a data member of GenParticle - its use is optional. It stores the $(\theta,\phi)$ polarization information which can be returned as a ThreeVector as well. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsubsection{HepMC::FourVector} \begin{myitemize}{Important Public Methods} \item A number of simple vector manipulations are available. Check the reference manual for details. \end{myitemize} \begin{myitemize}{Relevant Data Members} \myitem{x}{position x or momentum px} \myitem{y}{position y or momentum py} \myitem{z}{position z or momentum pz} \myitem{t}{time or energy} \end{myitemize} GenParticle momentum and GenVertex position are stored as FourVectors. FourVector has a templated constructor that will automatically convert any other vector with x(), y(), z(), and t() access methods to a FourVector. This feature is used when converting from the HEPEVT common block. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::IO\_BaseClass} \begin{myitemize}{Important Public Methods} \myitem{write\_event}{writes out the specified event to the output strategy} \myitem{read\_next\_event}{reads the next event from the input strategy into memory} \myitem{operator$<<$,operator$>>$}{overloaded to give the same results as any of the above methods} \end{myitemize} IO\_BaseClass is the abstract base class defining the interface and syntax for input and output strategies of events and particle data tables. Several IO strategies are supplied: \begin{itemize}\setlength{\itemsep}{0pt} \item {\bf IO\_GenEvent} uses iostreams for input and output thereby providing a form of persistency for the event record. This class handles all information found in a GenEvent object. This class replaces IO\_Ascii and reads both formats. Events may be contained within the same file together with an unlimited number of comments. The examples (Section~\ref{examples}) make use of this class. \item {\bf IO\_AsciiParticles} writes events in a format similar to Pythia 6 output. This is intended for human readability. \item {\bf IO\_HEPEVT} reads and writes events to/from the Fortran HEPEVT common block. It relies on a helper class HEPEVT\_Wrapper which is the interface to the common block (which is defined in the header file HEPEVT\_Wrapper.h\footnote{ Different conventions exist for the fortran HEPEVT common block. 4 or 8-byte floating point numbers may be used, and the number of entries is often taken as 4000 or 10000. To account for all possibilities the precision (float or double) and number of entries can be set for the wrapper at run time, \begin{tabbing} i.e.\ \hspace{1cm} \= HEPEVT\_Wrapper::set\_max\_number\_entries(4000);\\ \> HEPEVT\_Wrapper::set\_sizeof\_real(8); \hspace{1cm} . \end{tabbing} To interface properly to HEPEVT and avoid nonsensical results, it is essential to get these definitions right {\it for your application}. See example\_MyPythia.cc (Section~\ref{examples}) for an example. }). This IO strategy provides the means for interfacing to Fortran event generators. Other strategies which interface directly to the specific event record of a generator could be easily implemented in this style. An example of using IO\_HEPEVT to transfer events from Pythia into HepMC is given in \verb!example_MyPythia.cc! (Section~\ref{examples}). \end{itemize} Note that as of HepMC 2.05 it is possible to read and write events directly with streaming I/O operators instead of using IO\_GenEvent. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Overview of Iterators} \label{iterators} Examples of using the particle/vertex iterators are provided in \verb!example_UsingIterators.cc! (Section~\ref{examples}). Useful examples can also be found in testHepMCIteration.cc. As of HepMC 2.06.00, iterator range classes and methods are available for improved functionality. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenEvent::vertex\_iterator} GenEvent::vertex\_iterator inherits from std::iterator. It walks through all vertices in the event exactly once. It is robust and fast, and provides the best way to loop over all vertices in the event. For each event, vertices\_begin() and vertices\_end() define the beginning and one-past-the-end of the particle iterator respectively. GenEventVertexRange( GenEvent\& ) is a wrapper for GenEvent::vertex\_iterator which provides begin() and end() for ease of use with external fuctions, such as foreach. GenEvent::vertex\_range() also provides this functionality. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenEvent::vertex\_const\_iterator} A constant version of HepMC::GenEvent::vertex\_iterator, otherwise identical. ConstGenEventVertexRange is the constant version of GenEventVertexRange. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenEvent::particle\_iterator} GenEvent::particle\_iterator inherits from std::iterator. It walks through all particles in the event exactly once. It is robust and fast, and provides the best way to loop over all particles in the event. For each event, particles\_begin() and particles\_end() define the beginning and one-past-the-end of the particle iterator respectively. GenEventParticleRange( GenEvent\& ) is a wrapper for GenEvent::particle\_iterator which provides begin() and end() for ease of use with external fuctions, such as foreach. GenEvent::particle\_range() also provides this functionality. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenEvent::particle\_const\_iterator} A constant version of HepMC::GenEvent::particle\_iterator, otherwise identical. ConstGenEventParticleRange is the constant version of GenEventParticleRange. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenVertex::vertex\_iterator} \begin{myitemize}{Notes and Conventions} \item the iterator range must be specified to instantiate - choices are: parents, children, family, ancestors, descendants, and relatives \item note: iterating over all ancestors and all descendents is {\it not} necessarily equivalent to all relatives - this is consitent with the range definitions \end{myitemize} GenVertex::vertex\_iterator differs from GenEvent::vertex\_iterator in that it has both a starting point and a range. The starting point is the vertex - called the root - from which the iterator was instantiated, and the range is defined relative to this point. The possible ranges are defined by an enumeration called HepMC::IteratorRange and the possibilities are: \begin{itemize}\setlength{\itemsep}{0pt} \myitem{parents}{walks over all vertices connected to the root via incoming particles} \myitem{children}{walks over all vertices connected to the root via outgoing particles} \myitem{family}{walks over all vertices connected to the root via incoming or outgoing particles} \myitem{ancestors}{walks over all vertices connected to the root via any number of incoming particle edges - i.e. returns the parents, grandparents, great-grandparents, \ldots} \myitem{descendants}{walks over all vertices connected to the root via any number of outgoing particle edges - i.e. returns the children, grandchildren, great-grandchildren, \ldots} \myitem{relatives}{walks over all vertices belonging to the same particle/vertex graph structure as the root} \end{itemize} The iterator algorithm traverses the graph by converting it to a tree (by ``chopping'' the edges at the point where a closed cycle connects to an already visited vertex) and returning the vertices in post order. The iterator requires more logic than the GenEvent::vertex\_iterator and thus access time is slower (the required to return one vertex goes like $\log n$ where $n$ is the number of vertices already returned by the iterator). GenVertex::vertex\_iterator allows the user to step into a specific part of a particle/vertex graph and obtain targetted information about it. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{HepMC::GenVertex::particle\_iterator} \begin{myitemize}{Notes and Conventions} \item the iterator range must be specified to instantiate - choices are: parents, children, family, ancestors, descendants, and relatives \end{myitemize} GenVertex::particle\_iterator behaves exactly like GenVertex::vertex\_iterator, with the exception that it returns particles rather than vertices. As a particle defines an edge or line (rather than a point) in the particle/vertex graph, it is intuitive to define the particle\_iterator relative to a vertex (point in the graph) - thus the starting point (root) is still a vertex, and the range is defined relative to this root. The extension to particles can be made by using the particle's production or end vertex as the root. Possible ranges are defined by an enumeration called HepMC::IteratorRange. The possibilities are: \begin{itemize}\setlength{\itemsep}{0pt} \myitem{parents}{walks over all particles incoming to the root} \myitem{children}{walks over all particles outgoing from the root} \myitem{family}{walks over all particles incoming or outgoing from the root} \myitem{ancestors}{walks over all incoming particles or particles incoming to ancestor vertices of the root - i.e. returns the parents, grandparents, great-grandparents, \ldots} \myitem{descendants}{walks over all outgoing particles or particles outgoing to descendant vertices of the root - i.e. returns the children, grandchildren, great-grandchildren, \ldots} \myitem{relatives}{walks over all particles belonging to the same particle/vertex graph structure as the root} \end{itemize} The class is composed of a GenVertex::vertex\_iterator - and the same considerations apply. GenVertexParticleRange( GenVertex\&, IteratorRange ) is a wrapper for GenVertex::particle\_iterator which provides begin() and end() for ease of use with external fuctions, such as foreach. If the HepMC::IteratorRange is unspecified, it defaults to "relatives". GenVertex::particles( IteratorRange ) also provides this functionality. Also provided, are GenParticleProductionRange( GenParticle\&, IteratorRange ) and GenParticleEndRange( GenParticle\&, IteratorRange ), which iterate over the GenParticle's production or end vertex. If the vertex is undefined, begin() and end() will throw a std::range\_error. If the HepMC::IteratorRange is unspecified, it defaults to "relatives". GenVertex::particles\_in( GenParticle\&, IteratorRange ), GenVertex::particles\_out( GenParticle\&, IteratorRange ), GenParticle::particles\_in( IteratorRange ), and GenParticle::particles\_out( IteratorRange ) also provide this functionality. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Ascii Output} \label{iogenevent} Ascii output uses begin and end keys to denote blocks of events. The HepMC version is written immediately before the begin key, but is not part of the event block. Within a block of events, each line of information begins with a single character key denoting the information found on the line. General GenEvent information is followed by a list of vertices and associated particles. The count of vertices is expected to match the number of vertices specified in the general event information. Each vertex line specifies how many particle lines are associated with the vertex. As of HepMC 2.05, it is possible to read and write events directly with the streaming I/O operators $>>$ and $<<$ instead of using IO\_GenEvent. However, the HepMC event block header and footer will not be written automatically if this method is used. The user must call write\_HepMC\_IO\_block\_begin and write\_HepMC\_IO\_block\_end explicitly. IO\_GenEvent uses these operators internally. We describe the Ascii output here, which persists all information contained in a HepMC GenEvent. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{Basic IO\_GenEvent Structure} \begin{myitemize}{Block Keys} \myitem{begin event block}{HepMC::IO\_GenEvent-START\_EVENT\_LISTING} \myitem{end event block}{HepMC::IO\_GenEvent-END\_EVENT\_LISTING} \end{myitemize} \begin{myitemize}{Line Keys} \myitem{E}{general GenEvent information} \myitem{N}{named weights} \myitem{U}{momentum and position units} \myitem{C}{GenCrossSection information: This line will appear ONLY if GenCrossSection is defined.} \myitem{H}{HeavyIon information: This line will contain zeros if there is no associated HeavyIon object.} \myitem{F}{PdfInfo information: This line will contain zeros if there is no associated PdfInfo object.} \myitem{V}{GenVertex information} \myitem{P}{GenParticle information} \end{myitemize} Note that the E, N, U, C, H, and F lines contain event header information. There will be one and only one of these lines per event. Other lines with keys not specified above may be interspersed with the header information. The N, U, C, H, and F lines must lie between the E line and the first V line for each event. N, U, C, H, and F lines can appear in any order. The header information is followed immediately by a V (vertex) line. Each vertex line is immediately followed by the P (particle) lines for particles associated with that vertex. For purposes of IO, particles are associated with a vertex if they are in the list of outgoing particles. In addition, if an incoming particle is not an outgoing particle of some other vertex, then it is classified as an "orphan" incoming particle and associated with the vertex IO. In this way, each particle appears only once in the Ascii listing. An example of the basic format written to a file is shown in Figure~\ref{ascii_format}. See Figure~\ref{ascii_stream} for an example of streaming ouput and Figure~\ref{ascii_cross} for an example with GenCrossSection information. \begin{figure}[h] \begin{center} {\tiny \begin{verbatim} HepMC::Version 2.06.00 HepMC::IO_GenEvent-START_EVENT_LISTING E 9 51 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 309 1 2 0 4 2.3000000000000001e-01 3.4000000000000002e-01 1.1000000000000000e-01 6.5000000000000002e-02 N 4 "0" "1" "2" "3" U GEV MM H 23 11 12 15 3 5 0 0 0 1.4499999582767487e-02 0 0 0 F 2 3 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 21 -9.5802904850995474e-01 3.4892974578914365e-01 1.5677975928920182e+01 1.5711094833049845e+01 0 3 0 0 -3 0 P 12 2101 2.5787537037233477e-01 -1.1110299643709216e-01 1.2403958218239170e+03 1.2403959888942973e+03 5.7933000000000001e-01 2 0 0 -9 0 P 25 2 7.0015367813761997e-01 -2.3782674935205150e-01 2.3333682308044050e+00 2.4698753078332274e+00 3.3000000000000002e-01 2 0 0 -15 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 1 2.7745239600449745e-01 -1.8469236508822412e-01 -1.2668437617555701e+03 1.2668438056011901e+03 0 3 0 0 -4 0 P 116 2203 -2.7745239600449745e-01 1.8469236508822412e-01 -1.8910900158159372e+03 1.8910902024916190e+03 7.7132999999999996e-01 2 0 0 -15 0 \end{verbatim}} \end{center} \caption[Example of ascii format] {\label{ascii_format} Example of the format written to a file. Only the first few lines are shown. Notice that this event has no GenCrossSection information. } \end{figure} \begin{figure}[h] \begin{center} {\tiny \begin{verbatim} HepMC::Version 2.06.00 HepMC::IO_GenEvent-START_EVENT_LISTING E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 3 3.4560000000000002e-01 9.8595999999999995e-01 9.8563000000000001e-01 N 3 "0" "second weight name" "weightName" U GEV MM C 3.3260000000000000e-03 1.0000000000000000e-04 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 \end{verbatim}} \end{center} \caption[Example of ascii format] {\label{ascii_cross} Example of the format written to a file when GenCrossSection and named weights are used. Only the first few lines are shown. Notice that the HeavyIon line was not written because it contained no information. } \end{figure} \begin{figure}[h] \begin{center} {\tiny \begin{verbatim} E 1 65 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 20 0 357 1 2 0 0 U GEV MM F 2 3 3.5000000000000003e-01 6.4999999999999991e-01 8.4499999999999993e+00 2.4499999779912355e+03 4.5499999591265787e+03 230 230 V -1 0 0 0 0 0 1 3 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -1 0 P 3 -1 7.2521029125687850e-02 4.0916270130125820e-01 2.3327360517627892e+02 2.3327397528518750e+02 0 3 0 0 -3 0 P 11 2214 -1.1686660480579378e-01 -8.5929732056936881e-03 6.3364496390829606e+02 6.3364619182056367e+02 1.2419302372801875e+00 2 0 0 -25 0 P 91 1 4.4345575680105935e-02 -4.0056972809556451e-01 6.4508531915990204e+02 6.4508552945967551e+02 3.3000000000000002e-01 2 0 0 -26 0 V -2 0 0 0 0 0 1 2 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 9.3827000000000005e-01 3 0 0 -2 0 P 4 2 7.8470425410496383e-02 3.2223590540096692e-01 -1.4955117837986219e+01 1.4958794842314219e+01 0 3 0 0 -4 0 P 95 2103 -7.8470425410496383e-02 -3.2223590540096692e-01 -3.0233822815549665e+03 3.0233823981369064e+03 7.7132999999999996e-01 2 0 0 -28 0 V -3 0 0 0 0 0 0 1 0 P 5 -1 4.5914398456298945e-02 2.5904843777716324e-01 1.4768981337590043e+02 1.4769004769866316e+02 0 3 0 0 -5 0 \end{verbatim}} \end{center} \caption[Example of ascii format] {\label{ascii_stream} Example of the streaming output format. Only the first few lines are shown. Notice that the streaming output does not automatically write the IO\_GenEvent begin and end block lines. The user may optionally choose to add those "headers" to the output stream. } \end{figure} \clearpage % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{General Event Information} \begin{myitemize}{E - general GenEvent information} \myitem{int}{event number} \myitem{int}{number of multi paricle interactions} \myitem{double}{event scale} \myitem{double}{alpha QCD} \myitem{double}{alpha QED} \myitem{int}{signal process id} \myitem{int}{barcode for signal process vertex} \myitem{int}{number of vertices in this event} \myitem{int}{barcode for beam particle 1} \myitem{int}{barcode for beam particle 2} \myitem{int}{number of entries in random state list (may be zero)} \myitem{long}{optional list of random state integers} \myitem{int}{number of entries in weight list (may be zero)} \myitem{double}{optional list of weights} \end{myitemize} \begin{myitemize}{N - weight names} \myitem{int}{number of entries in weight name list. Note that the number of entries here and on the E line are required to be exactly the same and in the same order.} \myitem{std::string}{list of weight names enclosed in quotes} \end{myitemize} \begin{myitemize}{U - momentum and position units} \myitem{std::string}{momentum units (MEV or GEV)} \myitem{std::string}{length units (MM or CM)} \end{myitemize} \begin{myitemize}{C - GenCrossSection information} \myitem{double}{cross section in pb} \myitem{double}{error associated with this cross section in pb} \end{myitemize} \begin{myitemize}{H - HeavyIon information} \myitem{int}{Number of hard scatterings} \myitem{int}{Number of projectile participants} \myitem{int}{Number of target participants} \myitem{int}{Number of NN (nucleon-nucleon) collisions} \myitem{int}{Number of spectator neutrons} \myitem{int}{Number of spectator protons} \myitem{int}{Number of N-Nwounded collisions} \myitem{int}{Number of Nwounded-N collisons} \myitem{int}{Number of Nwounded-Nwounded collisions} \myitem{float}{Impact Parameter(fm) of collision} \myitem{float}{Azimuthal angle of event plane} \myitem{float}{eccentricity of participating nucleons in the transverse plane} \myitem{float}{nucleon-nucleon inelastic cross-section} \end{myitemize} \begin{myitemize}{F - PdfInfo information} \myitem{int}{flavour code of first parton} \myitem{int}{flavour code of second parton} \myitem{double}{fraction of beam momentum carried by first parton} \myitem{double}{fraction of beam momentum carried by second parton} \myitem{double}{Q-scale used in evaluation of PDF's (in GeV)} \myitem{double}{x*f(x) for id1, x1, Q} \myitem{double}{x*f(x) for id2, x2, Q} \myitem{int}{LHAPDF set id of first parton (zero by default)} \myitem{int}{LHAPDF set id of second parton (zero by default)} \end{myitemize} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{Vertices and Particles} \begin{myitemize}{V - GenVertex information} \myitem{int}{barcode} \myitem{int}{id} \myitem{double}{x} \myitem{double}{y} \myitem{double}{z} \myitem{double}{ctau} \myitem{int}{number of "orphan" incoming particles} \myitem{int}{number of outgoing particles} \myitem{int}{number of entries in weight list (may be zero)} \myitem{double}{optional list of weights} \end{myitemize} \begin{myitemize}{P - GenParticle information} \myitem{int}{barcode} \myitem{int}{PDG id} \myitem{double}{px} \myitem{double}{py} \myitem{double}{pz} \myitem{double}{energy} \myitem{double}{generated mass} \myitem{int}{status code} \myitem{double}{Polarization theta} \myitem{double}{Polarization phi} \myitem{int}{barcode for vertex that has this particle as an incoming particle} \myitem{int}{number of entries in flow list (may be zero)} \myitem{int, int}{optional code\_index and code for each entry in the flow list} \end{myitemize} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Building HepMC} Source code, binary and source code tarballs, bug tracking, etc. are all available from the HepMC web pages~\cite{LCGHepMC} at \htmladdnormallink {https://savannah.cern.ch/projects/hepmc/} {https://savannah.cern.ch/projects/hepmc/}. Source code tarballs are on the download page: \htmladdnormallink {http://lcgapp.cern.ch/project/simu/HepMC/download/} {http://lcgapp.cern.ch/project/simu/HepMC/download/}. Binary downloads are available for some releases. The following recipe is a guideline and should be modified according to taste. \begin{myitemize}{} \myitem{download source code tarball}{} \myitem{mkdir cleanDIR}{Make a new directory to work in.} \myitem{cd cleanDIR}{} \myitem{tar -xzf HepMCtarball}{Unwind the tarball you downloaded.} \myitem{mkdir build install}{Define directories for building and installation.} \myitem{cd build}{This is your real working directory.} \myitem{../../HepMC-release/configure --prefix=../install --with-momentum=XX --with-length=YY} {--prefix tells the tools where to install the library and headers. The default install location is /usr/local.} \myitem{make}{Compile HepMC.} \myitem{make check}{Run the tests. This is optional but strongly recommended.} \myitem{make install}{Install everything in your specified directory. } \end{myitemize} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Examples} \label{examples} Examples are provided in the examples directory of the package and are installed in the installation directory under examples/HepMC. Tests, found in the test directory of the package, also provide useful examples. The tests are not installed. Most examples use IO\_GenEvent. However, example\_PythiaStreamIO.cc illustrates explicit use of the streaming I/O operators. \begin{itemize}\setlength{\itemsep}{0pt} \item{\bf Using the HepMC vertex and particle iterators:} {example\_UsingIterators.cc} \item{\bf Using HepMC with Pythia (Fortran):} {example\_MyPythia.cc and example\_MyPythiaOnlyToHepMC.cc} \item{\bf An Event Selection with Pythia Events:} {example\_MyPythia.cc} \item{\bf Event Selection and Ascii IO} {example\_EventSelection.cc} \item{\bf Using HepMC with Herwig:} {example\_MyHerwig.cc} \item{\bf Write an event file and then read it:} {example\_MyPythia.cc} \item{\bf Write an event file and then read it with the streaming I/O operators:} {example\_PythiaStreamIO.cc} \item{\bf Building an Event from Scratch in the HepMC Framework:} {example\_BuildEventFromScratch.cc} \item{\bf Verify that copying generated events behaves as expected:} {testHerwigCopies.cc and testPythiaCopies.cc} \item{\bf Using the iterator range classes and methods:} {HepMC/test/testHepMCIteration.cc} \end{itemize} I/O examples are shown in Figures \ref{read_ascii}, \ref{write_ascii}. \ref{read_stream}, and \ref{write_stream}. \begin{figure}[h] \caption[IO\_GenEvent example]{\label{read_ascii} Reading HepMC events from a file. } {\small \begin{verbatim} // specify an input file HepMC::IO_GenEvent ascii_in("example.dat",std::ios::in); // get the first event HepMC::GenEvent* evt = ascii_in.read_next_event(); // loop until we run out of events while ( evt ) { // analyze the event ... // delete the created event from memory delete evt; // read the next event ascii_in >> evt; } \end{verbatim}} \end{figure} \begin{figure}[h] \caption[Streaming input example]{\label{read_stream} Reading HepMC events from an input stream. } {\small \begin{verbatim} // specify an input stream std::ifstream is( "example_PythiaStreamIO_write.dat" ); // create an empty event HepMC::GenEvent evt; // loop over the input stream while ( is ) { // read the event evt.read( is ); // make sure we have a valid event if( evt.is_valid() ) { // analyze the event ... } } \end{verbatim}} \end{figure} \begin{figure}[h] \caption[IO\_HEPEVT and IO\_GenEvent example] {\label{write_ascii} Convert events from the HEPEVT common block to HepMC format and write them to a file. } {\small \begin{verbatim} // common block conversion methods HepMC::IO_HEPEVT hepevtio; // specify an output file HepMC::IO_GenEvent ascii_out("example.dat",std::ios::out); for ( int i = 1; i <= maxEvents; i++ ) { // convert an event HepMC::GenEvent* evt = hepevtio.read_next_event(); // analyze the event ... // write the HepMC event ascii_out << evt; // delete the created event from memory delete evt; } \end{verbatim}} \end{figure} \begin{figure}[h] \caption[IO\_HEPEVT and streaming output example] {\label{write_stream} Convert events from the HEPEVT common block to HepMC format and write them to streaming output. } {\small \begin{verbatim} // common block conversion methods HepMC::IO_HEPEVT hepevtio; // specify an output stream std::ofstream os( "example_PythiaStreamIO_write.dat" ); for ( int i = 1; i <= maxEvents; i++ ) { // generate the event with Pythia, Herwig, etc. ... // convert an event HepMC::GenEvent* evt = hepevtio.read_next_event(); // analyze the event ... // write the HepMC event evt->write(os); // delete the created event from memory delete evt; } \end{verbatim}} \end{figure} \clearpage % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Deprecated Classes} \label{deprecated} Two major classes have been deprecated: IO\_Ascii and ParticleData. IO\_Ascii was deprecated in 2.02.00 and was removed as of HepMC 2.05.00. IO\_Ascii has been replaced by IO\_GenEvent, which uses iostreams instead of files. The ParticleData classes, deprecated since HepMC 2.02.00, had become outmoded and would need a lot of work. The ParticleData classes were removed as of HepMC 2.06.00. Instead, we recommend using packages already developed for this purpose, such as HepPDT~\cite{heppdt}. IO\_ExtendedAscii, introduced in 1.28.00, was deprecated in 2.02.00 and removed as of HepMC 2.04.00. IO\_GenEvent and the streaming input operator can read old files written by either IO\_Ascii or IO\_ExtendedAscii. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Acknowlegements} We would like to acknowlege useful suggestions, consultations, and comments from: Ian Hinchliffe, Pere Mato, H.T. Phillips, Anders Ryd, Maria Smizanska, and Brian Webber. R.D.\ Schaffer and Lassi Tuura provided many useful suggestions on the package architecture. Thanks to Witold Pokorski and Pere Mato for providing the fixes that make HepMC compile and run on Windows with Microsoft Visual C++. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \begin{thebibliography}{99} \bibitem{dobbs:2000CompPhysComm} M.~Dobbs and J.B.~Hansen, ``The HepMC C++ Monte Carlo Event Record for High Energy Physics'', Computer Physics Communications (to be published) \htmladdnormallink{[ATL-SOFT-2000-001]} {http://weblib.cern.ch/}. \bibitem{Torbjorn} Pythia 8.1 available at \htmladdnormallink {http://www.thep.lu.se/~torbjorn/pythiaaux/present.html} {http://www.thep.lu.se/~torbjorn/pythiaaux/present.html}. \bibitem{Richardson} Herwig++ 2.1 available at \htmladdnormallink {http://projects.hepforge.org/herwig/} {http://projects.hepforge.org/herwig/}. \bibitem{Boos:2001cv} E.~Boos {\it et al.}, ``Generic user process interface for event generators,'' arXiv:hep-ph/0109068. \bibitem{mc++} S.~Protopopescu, ``MC++ Interface''. Available from \htmladdnormallink {http://ox3.phy.bnl.gov/\~serban/mcpp/index.html} {http://ox3.phy.bnl.gov/\~serban/mcpp/index.html}. \bibitem{clhep} ``A Class Library for High Energy Physics,'' (CLHEP). Available from \htmladdnormallink {http://wwwasd.web.cern.ch/wwwasd/lhc++/clhep/} {http://wwwasd.web.cern.ch/wwwasd/lhc++/clhep/}. \bibitem{lcgsim} Generator Services Subproject information available at \htmladdnormallink {http://lcgapp.cern.ch/project/simu/generator/} {http://lcgapp.cern.ch/project/simu/generator/}. \bibitem{changelog} Latest HepMC ChangeLog available at \htmladdnormallink {http://simu.cvs.cern.ch/cgi-bin/simu.cgi/simu/HepMC/ChangeLog?view=markup} {http://simu.cvs.cern.ch/cgi-bin/simu.cgi/simu/HepMC/ChangeLog?view=markup}. \bibitem{stl} A.A.~Stepanov, M.~Lee, ``The Standard Template Library,'' Hewlett-Packard Laboratories Technical Report HPL-94-34, April 1994, revised July 7, 1995. %%``Public domain implementation of the standard template library'', Available from \htmladdnormallink{ftp://butler.hpl.hp.com/stl/} {ftp://butler.hpl.hp.com/stl/}. \bibitem{Sjostrand:2001yb} T.~Sjostrand {\it et al.}, ``High-energy physics event generation with PYTHIA 6.1,'' Comput.\ Phys.\ Commun.\ {\bf 135}, 238 (2001). \bibitem{herwig} G. Corcella {\it et al.}, ``Herwig 6: an event generator for Hadron Emission Reactions With Interfering Gluons (including supersymmetric processes)'' JHEP {\bf 0101}, 010 (2001) [hep-ph/0011363]; hep-ph/0210213. \bibitem{lhapdf} ``the Les Houches Accord PDF Interface,'' (LHAPDF). Available from \htmladdnormallink {http://projects.hepforge.org/lhapdf/} {http://projects.hepforge.org/lhapdf/}. \bibitem{evtgen} A.~Ryd, D.~Lange, ``The EvtGen package for simulating particle decays,'' Computing in High Energy Physics, Chicago, Illinois, USA (1998). \bibitem{Yao:2006tx} W.-M.~Yao {\it et al.}, ``Review of particle physics,'' Journal\ of\ Physics {\bf G33}, 1 (2006). Available from \htmladdnormallink{http://pdg.lbl.gov/}{http://pdg.lbl.gov/}. \bibitem{stdhep5.05} L.~Garren, ``StdHep 5.05 Monte Carlo Standardization at FNAL,'' Fermilab PM0091. Available from \htmladdnormallink {http://cepa.fnal.gov/psm/stdhep/} {http://cepa.fnal.gov/psm/stdhep/}. \bibitem{LCGHepMC} ``a C++ Event Record for Monte Carlo Generators,'' (HepMC). Available from \htmladdnormallink {https://savannah.cern.ch/projects/hepmc/} {https://savannah.cern.ch/projects/hepmc/}. \bibitem{heppdt} HepPDT is available at \htmladdnormallink {http://savannah.cern.ch/projects/heppdt/} {http://savannah.cern.ch/projects/heppdt/}. \bibitem{mcnet} MCnet is available at \htmladdnormallink {http://www.montecarlonet.org/} {http://www.montecarlonet.org/}. \end{thebibliography} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \end{document} hepmc-2.06.09.orig/doc/html.sty0000644000175000017500000011444610471447356017104 0ustar sylvestresylvestre% % $Id: html.sty,v 1.1 2006/08/18 23:36:14 garren Exp $ % LaTeX2HTML Version 99.1 : html.sty % % This file contains definitions of LaTeX commands which are % processed in a special way by the translator. % For example, there are commands for embedding external hypertext links, % for cross-references between documents or for including raw HTML. % This file includes the comments.sty file v2.0 by Victor Eijkhout % In most cases these commands do nothing when processed by LaTeX. % % Place this file in a directory accessible to LaTeX (i.e., somewhere % in the TEXINPUTS path.) % % NOTE: This file works with LaTeX 2.09 or (the newer) LaTeX2e. % If you only have LaTeX 2.09, some complex LaTeX2HTML features % like support for segmented documents are not available. % Changes: % See the change log at end of file. % Exit if the style file is already loaded % (suggested by Lee Shombert \ifx \htmlstyloaded\relax \endinput\else\let\htmlstyloaded\relax\fi \makeatletter % protect against the hyperref package being loaded already \ifx\undefined\hyperref \let\html@new=\newcommand \else \let\html@new=\renewcommand \fi \providecommand{\latextohtml}{\LaTeX2\texttt{HTML}} %%% LINKS TO EXTERNAL DOCUMENTS % % This can be used to provide links to arbitrary documents. % The first argumment should be the text that is going to be % highlighted and the second argument a URL. % The hyperlink will appear as a hyperlink in the HTML % document and as a footnote in the dvi or ps files. % \html@new{\htmladdnormallinkfoot}[2]{#1\footnote{#2}} % This is an alternative definition of the command above which % will ignore the URL in the dvi or ps files. \html@new{\htmladdnormallink}[2]{#1} % This command takes as argument a URL pointing to an image. % The image will be embedded in the HTML document but will % be ignored in the dvi and ps files. % \html@new{\htmladdimg}[1]{} %%% CROSS-REFERENCES BETWEEN (LOCAL OR REMOTE) DOCUMENTS % % This can be used to refer to symbolic labels in other Latex % documents that have already been processed by the translator. % The arguments should be: % #1 : the URL to the directory containing the external document % #2 : the path to the labels.pl file of the external document. % If the external document lives on a remote machine then labels.pl % must be copied on the local machine. % %e.g. \externallabels{http://cbl.leeds.ac.uk/nikos/WWW/doc/tex2html/latex2html} % {/usr/cblelca/nikos/tmp/labels.pl} % The arguments are ignored in the dvi and ps files. % \newcommand{\externallabels}[2]{} % This complements the \externallabels command above. The argument % should be a label defined in another latex document and will be % ignored in the dvi and ps files. % \newcommand{\externalref}[1]{} % Suggested by Uffe Engberg (http://www.brics.dk/~engberg/) % This allows the same effect for citations in external bibliographies. % An \externallabels command must be given, locating a labels.pl file % which defines the location and keys used in the external .html file. % \newcommand{\externalcite}{\nocite} % This allows a section-heading in the TOC or mini-TOC to be just % a hyperlink to an external document. % % \htmladdTOClink[]{}{}{<URL>} % where <section-level> is 'chapter' , 'section' , 'subsection' etc. % and <path_to_labels> is the path to find a labels.pl file, % so that external cross-referencing may work, as with \externallabels % \newcommand{\htmladdTOClink}[4][]{} %%% HTMLRULE % This command adds a horizontal rule and is valid even within % a figure caption. % Here we introduce a stub for compatibility. \newcommand{\htmlrule}{\protect\HTMLrule} \newcommand{\HTMLrule}{\@ifstar\htmlrulestar\htmlrulestar} \newcommand{\htmlrulestar}[1]{} %%% HTMLCLEAR % This command puts in a <BR> tag, with CLEAR="ALL" \newcommand{\htmlclear}{} % This command adds information within the <BODY> ... </BODY> tag % \newcommand{\bodytext}[1]{} \newcommand{\htmlbody}{} %%% HYPERREF % Suggested by Eric M. Carol <eric@ca.utoronto.utcc.enfm> % Similar to \ref but accepts conditional text. % The first argument is HTML text which will become ``hyperized'' % (underlined). % The second and third arguments are text which will appear only in the paper % version (DVI file), enclosing the fourth argument which is a reference to a label. % %e.g. \hyperref{using the tracer}{using the tracer (see Section}{)}{trace} % where there is a corresponding \label{trace} % % avoid possible confict with hyperref package \ifx\undefined\hyperref \newcommand{\hyperrefhyper}[4]{#4}% \def\next{\newcommand}% \else \let\hyperrefhyper\hyperref \def\next{\renewcommand}% \fi \next{\hyperref}{\hyperrefi[]}\let\next=\relax \def\hyperrefi[#1]{{\def\next{#1}\def\tmp{}% \ifx\next\tmp\aftergroup\hyperrefdef \else\def\tmp{ref}\ifx\next\tmp\aftergroup\hyperrefref \else\def\tmp{pageref}\ifx\next\tmp\aftergroup\hyperrefpageref \else\def\tmp{page}\ifx\next\tmp\aftergroup\hyperrefpage \else\def\tmp{noref}\ifx\next\tmp\aftergroup\hyperrefnoref \else\def\tmp{no}\ifx\next\tmp\aftergroup\hyperrefno \else\def\tmp{hyper}\ifx\next\tmp\aftergroup\hyperrefhyper \else\def\tmp{html}\ifx\next\tmp\aftergroup\hyperrefhtml \else\typeout{*** unknown option \next\space to hyperref ***}% \fi\fi\fi\fi\fi\fi\fi\fi}} \newcommand{\hyperrefdef}[4]{#2\ref{#4}#3} \newcommand{\hyperrefpageref}[4]{#2\pageref{#4}#3} \newcommand{\hyperrefnoref}[3]{#2} \let\hyperrefref=\hyperrefdef \let\hyperrefpage=\hyperrefpageref \let\hyperrefno=\hyperrefnoref \ifx\undefined\hyperrefhyper\newcommand{\hyperrefhyper}[4]{#4}\fi \let\hyperrefhtml=\hyperrefdef %%% HYPERCITE --- added by RRM % Suggested by Stephen Simpson <simpson@math.psu.edu> % effects the same ideas as in \hyperref, but for citations. % It does not allow an optional argument to the \cite, in LaTeX. % % \hypercite{<html-text>}{<LaTeX-text>}{<opt-text>}{<key>} % % uses the pre/post-texts in LaTeX, with a \cite{<key>} % % \hypercite[ext]{<html-text>}{<LaTeX-text>}{<key>} % \hypercite[ext]{<html-text>}{<LaTeX-text>}[<prefix>]{<key>} % % uses the pre/post-texts in LaTeX, with a \nocite{<key>} % the actual reference comes from an \externallabels file. % \newcommand{\hypercite}{\hypercitei[]} \def\hypercitei[#1]{{\def\next{#1}\def\tmp{}% \ifx\next\tmp\aftergroup\hypercitedef \else\def\tmp{int}\ifx\next\tmp\aftergroup\hyperciteint \else\def\tmp{cite}\ifx\next\tmp\aftergroup\hypercitecite \else\def\tmp{ext}\ifx\next\tmp\aftergroup\hyperciteext \else\def\tmp{nocite}\ifx\next\tmp\aftergroup\hypercitenocite \else\def\tmp{no}\ifx\next\tmp\aftergroup\hyperciteno \else\typeout{*** unknown option \next\space to hypercite ***}% \fi\fi\fi\fi\fi\fi}} \newcommand{\hypercitedef}[4]{#2{\def\tmp{#3}\def\emptyopt{}% \ifx\tmp\emptyopt\cite{#4}\else\cite[#3]{#4}\fi}} \newcommand{\hypercitenocite}[2]{#2\hypercitenocitex[]} \def\hypercitenocitex[#1]#2{\nocite{#2}} \let\hypercitecite=\hypercitedef \let\hyperciteint=\hypercitedef \let\hyperciteext=\hypercitenocite \let\hyperciteno=\hypercitenocite %%% HTMLREF % Reference in HTML version only. % Mix between \htmladdnormallink and \hyperref. % First arg is text for in both versions, second is label for use in HTML % version. \html@new{\htmlref}[2]{#1} %%% HTMLCITE % Reference in HTML version only. % Mix between \htmladdnormallink and \hypercite. % First arg is text for in both versions, second is citation for use in HTML % version. \newcommand{\htmlcite}[2]{#1} %%% HTMLIMAGE % This command can be used inside any environment that is converted % into an inlined image (eg a "figure" environment) in order to change % the way the image will be translated. The argument of \htmlimage % is really a string of options separated by commas ie % [scale=<scale factor>],[external],[thumbnail=<reduction factor> % The scale option allows control over the size of the final image. % The ``external'' option will cause the image not to be inlined % (images are inlined by default). External images will be accessible % via a hypertext link. % The ``thumbnail'' option will cause a small inlined image to be % placed in the caption. The size of the thumbnail depends on the % reduction factor. The use of the ``thumbnail'' option implies % the ``external'' option. % % Example: % \htmlimage{scale=1.5,external,thumbnail=0.2} % will cause a small thumbnail image 1/5th of the original size to be % placed in the final document, pointing to an external image 1.5 % times bigger than the original. % \newcommand{\htmlimage}[1]{} % \htmlborder causes a border to be placed around an image or table % when the image is placed within a <TABLE> cell. \newcommand{\htmlborder}[1]{} % Put \begin{makeimage}, \end{makeimage} around LaTeX to ensure its % translation into an image. % This shields sensitive text from being translated. \newenvironment{makeimage}{}{} % A dummy environment that can be useful to alter the order % in which commands are processed, in LaTeX2HTML \newenvironment{tex2html_deferred}{}{} %%% HTMLADDTONAVIGATION % This command appends its argument to the buttons in the navigation % panel. It is ignored by LaTeX. % % Example: % \htmladdtonavigation{\htmladdnormallink % {\htmladdimg{http://server/path/to/gif}} % {http://server/path}} \newcommand{\htmladdtonavigation}[1]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % based upon Eijkhout's comment.sty v2.0 % with modifications to avoid conflicts with later versions % of this package, should a user be requiring it. % Ross Moore, 10 March 1999 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Comment.sty version 2.0, 19 June 1992 % selectively in/exclude pieces of text: the user can define new % comment versions, and each is controlled separately. % This style can be used with plain TeX or LaTeX, and probably % most other packages too. % % Examples of use in LaTeX and TeX follow \endinput % % Author % Victor Eijkhout % Department of Computer Science % University Tennessee at Knoxville % 104 Ayres Hall % Knoxville, TN 37996 % USA % % eijkhout@cs.utk.edu % % Usage: all text included in between % \comment ... \endcomment % or \begin{comment} ... \end{comment} % is discarded. The closing command should appear on a line % of its own. No starting spaces, nothing after it. % This environment should work with arbitrary amounts % of comment. % % Other 'comment' environments are defined by % and are selected/deselected with % \includecomment{versiona} % \excludecoment{versionb} % % These environments are used as % \versiona ... \endversiona % or \begin{versiona} ... \end{versiona} % with the closing command again on a line of its own. % % Basic approach: % to comment something out, scoop up every line in verbatim mode % as macro argument, then throw it away. % For inclusions, both the opening and closing comands % are defined as noop % % Changed \next to \html@next to prevent clashes with other sty files % (mike@emn.fr) % Changed \html@next to \htmlnext so the \makeatletter and % \makeatother commands could be removed (they were causing other % style files - changebar.sty - to crash) (nikos@cbl.leeds.ac.uk) % Changed \htmlnext back to \html@next... \def\makeinnocent#1{\catcode`#1=12 } \def\csarg#1#2{\expandafter#1\csname#2\endcsname} \def\ThrowAwayComment#1{\begingroup \def\CurrentComment{#1}% \let\do\makeinnocent \dospecials \makeinnocent\^^L% and whatever other special cases %%RRM %% use \xhtmlComment for \xComment %% use \html@next for \next \endlinechar`\^^M \catcode`\^^M=12 \xhtmlComment} {\catcode`\^^M=12 \endlinechar=-1 % \gdef\xhtmlComment#1^^M{\def\test{#1}\edef\test{\meaning\test} \csarg\ifx{PlainEnd\CurrentComment Test}\test \let\html@next\endgroup \else \csarg\ifx{LaLaEnd\CurrentComment Test}\test \edef\html@next{\endgroup\noexpand\end{\CurrentComment}} \else \csarg\ifx{LaInnEnd\CurrentComment Test}\test \edef\html@next{\endgroup\noexpand\end{\CurrentComment}} \else \let\html@next\xhtmlComment \fi \fi \fi \html@next} } %%\def\includecomment %%RRM \def\htmlincludecomment #1{\expandafter\def\csname#1\endcsname{}% \expandafter\def\csname end#1\endcsname{}} %%\def\excludecomment %%RRM \def\htmlexcludecomment #1{\expandafter\def\csname#1\endcsname{\ThrowAwayComment{#1}}% {\escapechar=-1\relax \edef\tmp{\string\\end#1}% \csarg\xdef{PlainEnd#1Test}{\meaning\tmp}% \edef\tmp{\string\\end\string\{#1\string\}}% \csarg\xdef{LaLaEnd#1Test}{\meaning\tmp}% \edef\tmp{\string\\end \string\{#1\string\}}% \csarg\xdef{LaInnEnd#1Test}{\meaning\tmp}% }} %%\excludecomment{comment} %%RRM \htmlexcludecomment{comment} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % end Comment.sty %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \let\includecomment=\htmlincludecomment \let\excludecomment=\htmlexcludecomment % % Alternative code by Robin Fairbairns, 22 September 1997 % revised to cope with % and unnested { }, by Ross Moore, 4 July 1998 % further revised to cope with & and # in tables, 10 March 1999 % \def\raw@catcodes{\catcode`\%=12 \catcode`\{=12 \catcode`\}=12 \catcode`\&=12 \catcode`\#=12 } \newcommand\@gobbleenv{\bgroup\raw@catcodes \let\reserved@a\@currenvir\@gobble@nv} \bgroup \def\expansionhead{\gdef\@gobble@nv@i##1} \def\expansiontail{{\def\reserved@b{##1}\@gobble@nv@ii}} \def\expansionheadii{\long\gdef\@gobble@nv##1\end} \def\expansiontailii{{\@gobble@nv@i}} \def\expansionmidii{##2} \raw@catcodes\relax \expandafter\expansionhead\expandafter}\expansiontail \egroup \long\gdef\@gobble@nv#1\end#2{\@gobble@nv@i} %\long\def\@gobble@nv#1\end#2{\def\reserved@b{#2}% \def\@gobble@nv@ii{% \ifx\reserved@a\reserved@b \edef\reserved@a{\egroup\noexpand\end{\reserved@a}}% \expandafter\reserved@a \else \expandafter\@gobble@nv \fi} \renewcommand{\htmlexcludecomment}[1]{% \csname newenvironment\endcsname{#1}{\@gobbleenv}{}} \newcommand{\htmlreexcludecomment}[1]{% \csname renewenvironment\endcsname{#1}{\@gobbleenv}{}} %%% RAW HTML % % Enclose raw HTML between a \begin{rawhtml} and \end{rawhtml}. % The html environment ignores its body % \htmlexcludecomment{rawhtml} %%% HTML ONLY % % Enclose LaTeX constructs which will only appear in the % HTML output and will be ignored by LaTeX with % \begin{htmlonly} and \end{htmlonly} % \htmlexcludecomment{htmlonly} % Shorter version \newcommand{\html}[1]{} % for images.tex only \htmlexcludecomment{imagesonly} %%% LaTeX ONLY % Enclose LaTeX constructs which will only appear in the % DVI output and will be ignored by latex2html with %\begin{latexonly} and \end{latexonly} % \newenvironment{latexonly}{}{} % Shorter version \newcommand{\latex}[1]{#1} %%% LaTeX or HTML % Combination of \latex and \html. % Say \latexhtml{this should be latex text}{this html text} % %\newcommand{\latexhtml}[2]{#1} \long\def\latexhtml#1#2{#1} %%% tracing the HTML conversions % This alters the tracing-level within the processing % performed by latex2html by adjusting $VERBOSITY % (see latex2html.config for the appropriate values) % \newcommand{\htmltracing}[1]{} \newcommand{\htmltracenv}[1]{} %%% \strikeout for HTML only % uses <STRIKE>...</STRIKE> tags on the argument % LaTeX just gobbles it up. \newcommand{\strikeout}[1]{} %%% \htmlurl and \url % implement \url as the simplest thing, if not already defined % let \htmlurl#1 be equivalent to it % \def\htmlurlx#1{\begin{small}\texttt{#1}\end{small}}% \expandafter\ifx\csname url\endcsname\relax \let\htmlurl=\htmlurlx \else \let\htmlurl=\url \fi %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% JCL - stop input here if LaTeX2e is not present %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \ifx\if@compatibility\undefined %LaTeX209 \makeatother\relax\expandafter\endinput \fi \if@compatibility %LaTeX2e in LaTeX209 compatibility mode \makeatother\relax\expandafter\endinput \fi %\let\real@TeXlogo = \TeX %\DeclareRobustCommand{\TeX}{\relax\real@TeXlogo} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Start providing LaTeX2e extension: % This is currently: % - additional optional argument for \htmladdimg % - support for segmented documents % %\ProvidesPackage{html} % [1996/12/22 v1.1 hypertext commands for latex2html (nd, hws, rrm)] \ProvidesPackage{html} [1999/03/12 v1.37 hypertext commands for latex2html (nd, hws, rrm)] % % Ensure that \includecomment and \excludecomment are bound % to the version defined here. % \AtBeginDocument{% \let\includecomment=\htmlincludecomment \let\excludecomment=\htmlexcludecomment \htmlreexcludecomment{comment}} %%% bind \htmlurl to \url if that is later loaded % \expandafter\ifx\csname url\endcsname\relax \AtBeginDocument{\@ifundefined{url}{}{\let\htmlurl=\url}}\fi %%%%MG % This command takes as argument a URL pointing to an image. % The image will be embedded in the HTML document but will % be ignored in the dvi and ps files. The optional argument % denotes additional HTML tags. % % Example: \htmladdimg[ALT="portrait" ALIGN=CENTER]{portrait.gif} % \renewcommand{\htmladdimg}[2][]{} %%% HTMLRULE for LaTeX2e % This command adds a horizontal rule and is valid even within % a figure caption. % % This command is best used with LaTeX2e and HTML 3.2 support. % It is like \hrule, but allows for options via key--value pairs % as follows: \htmlrule[key1=value1, key2=value2, ...] . % Use \htmlrule* to suppress the <BR> tag. % Eg. \htmlrule[left, 15, 5pt, "none", NOSHADE] produces % <BR CLEAR="left"><HR NOSHADE SIZE="15">. % Renew the necessary part. \renewcommand{\htmlrulestar}[1][all]{} %%% HTMLCLEAR for LaTeX2e % This command puts in a <BR> tag, with optional CLEAR="<attrib>" % \renewcommand{\htmlclear}[1][all]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % renew some definitions to allow optional arguments % % The description of the options is missing, as yet. % \renewcommand{\latextohtml}{\textup{\LaTeX2\texttt{HTML}}} \renewcommand{\htmladdnormallinkfoot}[3][]{#2\footnote{#3}} \renewcommand{\htmladdnormallink}[3][]{#2} \renewcommand{\htmlbody}[1][]{} \renewcommand{\externallabels}[3][]{} \renewcommand{\externalref}[2][]{} \renewcommand{\externalcite}[1][]{\nocite} \renewcommand{\hyperref}[1][]{\hyperrefi[#1]} \renewcommand{\hypercite}[1][]{\hypercitei[#1]} \renewcommand{\hypercitenocite}[2]{#2\hypercitenocitex} \renewcommand{\hypercitenocitex}[2][]{\nocite{#2}} \let\hyperciteno=\hypercitenocite \let\hyperciteext=\hypercitenocite \renewcommand{\htmlref}[2][]{#2{\def\tmp{#1}\ifx\tmp\@empty \aftergroup\htmlrefdef\else\aftergroup\htmlrefext\fi}} \newcommand{\htmlrefdef}[1]{} \newcommand{\htmlrefext}[2][]{} \renewcommand{\htmlcite}[2][]{#2{\def\tmp{#1}\ifx\tmp\@empty \aftergroup\htmlcitedef\else\aftergroup\htmlciteext\fi}} \newcommand{\htmlcitedef}[1]{ \nocite{#1}} \newcommand{\htmlciteext}[2][]{} \renewcommand{\htmlimage}[2][]{} \renewcommand{\htmlborder}[2][]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % HTML HTMLset HTMLsetenv % % These commands do nothing in LaTeX, but can be used to place % HTML tags or set Perl variables during the LaTeX2HTML processing; % They are intended for expert use only. \newcommand{\HTMLcode}[2][]{} \ifx\undefined\HTML\newcommand{\HTML}[2][]{}\else \typeout{*** Warning: \string\HTML\space had an incompatible definition ***}% \typeout{*** instead use \string\HTMLcode\space for raw HTML code ***}% \fi \newcommand{\HTMLset}[3][]{} \newcommand{\HTMLsetenv}[3][]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % The following commands pertain to document segmentation, and % were added by Herbert Swan <dprhws@edp.Arco.com> (with help from % Michel Goossens <goossens@cern.ch>): % % % This command inputs internal latex2html tables so that large % documents can to partitioned into smaller (more manageable) % segments. % \newcommand{\internal}[2][internals]{} % % Define a dummy stub \htmlhead{}. This command causes latex2html % to define the title of the start of a new segment. It is not % normally placed in the user's document. Rather, it is passed to % latex2html via a .ptr file written by \segment. % \newcommand{\htmlhead}[3][]{} % In the LaTeX2HTML version this will eliminate the title line % generated by a \segment command, but retains the title string % for use in other places. % \newcommand{\htmlnohead}{} % In the LaTeX2HTML version this put a URL into a <BASE> tag % within the <HEAD>...</HEAD> portion of a document. % \newcommand{\htmlbase}[1]{} % Include style information into the stylesheet; e.g. CSS % \newcommand{\htmlsetstyle}[3][]{} \newcommand{\htmladdtostyle}[3][]{} % Define a style-class for information in a particular language % \newcommand{\htmllanguagestyle}[2][]{} % % The dummy command \endpreamble is needed by latex2html to % mark the end of the preamble in document segments that do % not contain a \begin{document} % \newcommand{\startdocument}{} % \tableofchildlinks, \htmlinfo % by Ross Moore --- extensions dated 27 September 1997 % % These do nothing in LaTeX but for LaTeX2HTML they mark % where the table of child-links and info-page should be placed, % when the user wants other than the default. % \tableofchildlinks % put mini-TOC at this location % \tableofchildlinks[off] % not on current page % \tableofchildlinks[none] % not on current and subsequent pages % \tableofchildlinks[on] % selectively on current page % \tableofchildlinks[all] % on current and all subsequent pages % \htmlinfo % put info-page at this location % \htmlinfo[off] % no info-page in current document % \htmlinfo[none] % no info-page in current document % *-versions omit the preceding <BR> tag. % \newcommand{\tableofchildlinks}{% \@ifstar\tableofchildlinksstar\tableofchildlinksstar} \newcommand{\tableofchildlinksstar}[1][]{} \newcommand{\htmlinfo}{\@ifstar\htmlinfostar\htmlinfostar} \newcommand{\htmlinfostar}[1][]{} % This redefines \begin to allow for an optional argument % which is used by LaTeX2HTML to specify `style-sheet' information \let\realLaTeX@begin=\begin \renewcommand{\begin}[1][]{\realLaTeX@begin} % % Allocate a new set of section counters, which will get incremented % for "*" forms of sectioning commands, and for a few miscellaneous % commands. % \@ifundefined{c@part}{\newcounter{part}}{}% \newcounter{lpart} \newcounter{lchapter}[part] \@ifundefined{c@chapter}% {\let\Hchapter\relax \newcounter{chapter}\newcounter{lsection}[part]}% {\let\Hchapter=\chapter \newcounter{lsection}[chapter]} \newcounter{lsubsection}[section] \newcounter{lsubsubsection}[subsection] \newcounter{lparagraph}[subsubsection] \newcounter{lsubparagraph}[paragraph] %\newcounter{lequation} % % Redefine "*" forms of sectioning commands to increment their % respective counters. % \let\Hpart=\part %\let\Hchapter=\chapter \let\Hsection=\section \let\Hsubsection=\subsection \let\Hsubsubsection=\subsubsection \let\Hparagraph=\paragraph \let\Hsubparagraph=\subparagraph \let\Hsubsubparagraph=\subsubparagraph \ifx\c@subparagraph\undefined \newcounter{lsubsubparagraph}[lsubparagraph] \else \newcounter{lsubsubparagraph}[subparagraph] \fi % % The following definitions are specific to LaTeX2e: % (They must be commented out for LaTeX 2.09) % \expandafter\ifx\csname part\endcsname\relax\else \renewcommand{\part}{\@ifstar{\stepcounter{lpart}% \bgroup\def\tmp{*}\H@part}{\bgroup\def\tmp{}\H@part}}\fi \newcommand{\H@part}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hpart\tmp} \ifx\Hchapter\relax\else \def\chapter{\resetsections \@ifstar{\stepcounter{lchapter}% \bgroup\def\tmp{*}\H@chapter}{\bgroup\def\tmp{}\H@chapter}}\fi \newcommand{\H@chapter}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hchapter\tmp} \renewcommand{\section}{\resetsubsections \@ifstar{\stepcounter{lsection}\bgroup\def\tmp{*}% \H@section}{\bgroup\def\tmp{}\H@section}} \newcommand{\H@section}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsection\tmp} \renewcommand{\subsection}{\resetsubsubsections \@ifstar{\stepcounter{lsubsection}\bgroup\def\tmp{*}% \H@subsection}{\bgroup\def\tmp{}\H@subsection}} \newcommand{\H@subsection}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsection\tmp} \renewcommand{\subsubsection}{\resetparagraphs \@ifstar{\stepcounter{lsubsubsection}\bgroup\def\tmp{*}% \H@subsubsection}{\bgroup\def\tmp{}\H@subsubsection}} \newcommand{\H@subsubsection}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsubsection\tmp} \renewcommand{\paragraph}{\resetsubparagraphs \@ifstar{\stepcounter{lparagraph}\bgroup\def\tmp{*}% \H@paragraph}{\bgroup\def\tmp{}\H@paragraph}} \newcommand\H@paragraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hparagraph\tmp} \ifx\Hsubparagraph\relax\else\@ifundefined{subparagraph}{}{% \renewcommand{\subparagraph}{\resetsubsubparagraphs \@ifstar{\stepcounter{lsubparagraph}\bgroup\def\tmp{*}% \H@subparagraph}{\bgroup\def\tmp{}\H@subparagraph}}}\fi \newcommand\H@subparagraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubparagraph\tmp} \ifx\Hsubsubparagraph\relax\else\@ifundefined{subsubparagraph}{}{% \def\subsubparagraph{% \@ifstar{\stepcounter{lsubsubparagraph}\bgroup\def\tmp{*}% \H@subsubparagraph}{\bgroup\def\tmp{}\H@subsubparagraph}}}\fi \newcommand\H@subsubparagraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsubparagraph\tmp} \def\check@align{\def\empty{}\ifx\tmp@a\empty \else\def\tmp@b{center}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\def\tmp@b{left}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\def\tmp@b{right}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\expandafter\def\expandafter\tmp@a\expandafter{\expandafter[\tmp@a]}% \fi\fi\fi \def\empty{}\ifx\tmp\empty\let\tmp=\tmp@a \else \expandafter\def\expandafter\tmp\expandafter{\expandafter*\tmp@a}% \fi\fi} % \def\resetsections{\setcounter{section}{0}\setcounter{lsection}{0}% \reset@dependents{section}\resetsubsections } \def\resetsubsections{\setcounter{subsection}{0}\setcounter{lsubsection}{0}% \reset@dependents{subsection}\resetsubsubsections } \def\resetsubsubsections{\setcounter{subsubsection}{0}\setcounter{lsubsubsection}{0}% \reset@dependents{subsubsection}\resetparagraphs } % \def\resetparagraphs{\setcounter{lparagraph}{0}\setcounter{lparagraph}{0}% \reset@dependents{paragraph}\resetsubparagraphs } \def\resetsubparagraphs{\ifx\c@subparagraph\undefined\else \setcounter{subparagraph}{0}\fi \setcounter{lsubparagraph}{0}% \reset@dependents{subparagraph}\resetsubsubparagraphs } \def\resetsubsubparagraphs{\ifx\c@subsubparagraph\undefined\else \setcounter{subsubparagraph}{0}\fi \setcounter{lsubsubparagraph}{0}} % \def\reset@dependents#1{\begingroup\let \@elt \@stpelt \csname cl@#1\endcsname\endgroup} % % % Define a helper macro to dump a single \secounter command to a file. % \newcommand{\DumpPtr}[2]{% \count255=\arabic{#1}\def\dummy{dummy}\def\tmp{#2}% \ifx\tmp\dummy\def\ctr{#1}\else \def\ctr{#2}\advance\count255 by \arabic{#2}\fi \immediate\write\ptrfile{% \noexpand\setcounter{\ctr}{\number\count255}}} %\expandafter\noexpand\expandafter\setcounter\expandafter{\ctr}{\number\count255}}} % % Define a helper macro to dump all counters to the file. % The value for each counter will be the sum of the l-counter % actual LaTeX section counter. % Also dump an \htmlhead{section-command}{section title} command % to the file. % \newwrite\ptrfile \def\DumpCounters#1#2#3#4{% \begingroup\let\protect=\noexpand \immediate\openout\ptrfile = #1.ptr \DumpPtr{part}{lpart}% \ifx\Hchapter\relax\else\DumpPtr{chapter}{lchapter}\fi \DumpPtr{section}{lsection}% \DumpPtr{subsection}{lsubsection}% \DumpPtr{subsubsection}{lsubsubsection}% \DumpPtr{paragraph}{lparagraph}% \DumpPtr{subparagraph}{lsubparagraph}% \DumpPtr{equation}{dummy}% \DumpPtr{footnote}{dummy}% \def\tmp{#4}\ifx\tmp\@empty \immediate\write\ptrfile{\noexpand\htmlhead{#2}{#3}}\else \immediate\write\ptrfile{\noexpand\htmlhead[#4]{#2}{#3}}\fi \dumpcitestatus \dumpcurrentcolor \immediate\closeout\ptrfile \endgroup } %% interface to natbib.sty \def\dumpcitestatus{} \def\loadcitestatus{\def\dumpcitestatus{% \ifciteindex\immediate\write\ptrfile{\noexpand\citeindextrue}% \else\immediate\write\ptrfile{\noexpand\citeindexfalse}\fi }% } \@ifpackageloaded{natbib}{\loadcitestatus}{% \AtBeginDocument{\@ifpackageloaded{natbib}{\loadcitestatus}{}}} %% interface to color.sty \def\dumpcurrentcolor{} \def\loadsegmentcolors{% \let\real@pagecolor=\pagecolor \let\pagecolor\segmentpagecolor \let\segmentcolor\color \ifx\current@page@color\undefined \def\current@page@color{{}}\fi \def\dumpcurrentcolor{\bgroup\def\@empty@{{}}% \expandafter\def\expandafter\tmp\space####1@{\def\thiscol{####1}}% \ifx\current@color\@empty@\def\thiscol{}\else \expandafter\tmp\current@color @\fi \immediate\write\ptrfile{\noexpand\segmentcolor{\thiscol}}% \ifx\current@page@color\@empty@\def\thiscol{}\else \expandafter\tmp\current@page@color @\fi \immediate\write\ptrfile{\noexpand\segmentpagecolor{\thiscol}}% \egroup}% \global\let\loadsegmentcolors=\relax } % These macros are needed within images.tex since this inputs % the <segment>.ptr files for a segment, so that counters are % colors are synchronised. % \newcommand{\segmentpagecolor}[1][]{% \@ifpackageloaded{color}{\loadsegmentcolors\bgroup \def\tmp{#1}\ifx\@empty\tmp\def\next{[]}\else\def\next{[#1]}\fi \expandafter\segmentpagecolor@\next}% {\@gobble}} \def\segmentpagecolor@[#1]#2{\def\tmp{#1}\def\tmpB{#2}% \ifx\tmpB\@empty\let\next=\egroup \else \let\realendgroup=\endgroup \def\endgroup{\edef\next{\noexpand\realendgroup \def\noexpand\current@page@color{\current@color}}\next}% \ifx\tmp\@empty\real@pagecolor{#2}\def\model{}% \else\real@pagecolor[#1]{#2}\def\model{[#1]}% \fi \edef\next{\egroup\def\noexpand\current@page@color{\current@page@color}% \noexpand\real@pagecolor\model{#2}}% \fi\next} % \newcommand{\segmentcolor}[2][named]{\@ifpackageloaded{color}% {\loadsegmentcolors\segmentcolor[#1]{#2}}{}} \@ifpackageloaded{color}{\loadsegmentcolors}{\let\real@pagecolor=\@gobble \AtBeginDocument{\@ifpackageloaded{color}{\loadsegmentcolors}{}}} % Define the \segment[align]{file}{section-command}{section-title} command, % and its helper macros. This command does four things: % 1) Begins a new LaTeX section; % 2) Writes a list of section counters to file.ptr, each % of which represents the sum of the LaTeX section % counters, and the l-counters, defined above; % 3) Write an \htmlhead{section-title} command to file.ptr; % 4) Inputs file.tex. \newcommand{\segment}{\@ifstar{\@@htmls}{\@@html}} %\tracingall \newcommand{\@endsegment}[1][]{} \let\endsegment\@endsegment \newcommand{\@@htmls}[1][]{\@@htmlsx{#1}} \newcommand{\@@html}[1][]{\@@htmlx{#1}} \def\@@htmlsx#1#2#3#4{\csname #3\endcsname* {#4}% \DumpCounters{#2}{#3*}{#4}{#1}\input{#2}} \def\@@htmlx#1#2#3#4{\csname #3\endcsname {#4}% \DumpCounters{#2}{#3}{#4}{#1}\input{#2}} \makeatother \endinput % Modifications: % % (The listing of Initiales see Changes) % $Log: html.sty,v $ % Revision 1.1 2006/08/18 23:36:14 garren % HepMC 2 documentation % % Revision 1.1.1.1 2000/04/14 12:28:05 mdobbs % Version 0.90 of HepMC imported for Archive only. % % Revision 1.37 1999/03/12 07:02:38 RRM % -- change macro name from \addTOCsection to \htmladdTOClink % -- it has 3 + 1 optional argument, to allow a local path to a labels.pl % file for the external document, for cross-references % % Revision 1.36 1999/03/10 05:46:00 RRM % -- extended the code for compatibilty with comment.sty % -- allow excluded environments to work within tables, % with the excluded material spanning headers and several cells % thanks Avinash Chopde for recognising the need for this. % -- added LaTeX support (ignores it) for \htmladdTOCsection % thanks to Steffen Klupsch and Uli Wortmann for this idea. % % Revision 1.35 1999/03/08 11:16:16 RRM % html.sty for LaTeX2HTML V99.1 % % -- ensure that html.sty can be loaded *after* hyperref.sty % -- support new command \htmlclear for <BR> in HTML, ignored by LaTeX % -- ensure {part} and {chapter} counters are defined, even if not used % % Revision 1.34 1998/09/19 10:37:29 RRM % -- fixed typo with \next{\hyperref}{....} % % Revision 1.33 1998/09/08 12:47:51 RRM % -- changed macro-names for the \hyperref and \hypercite options % allows easier compatibility with other packages % % Revision 1.32 1998/08/24 12:15:14 RRM % -- new command \htmllanguagestyle to associate a style class % with text declared as a particular language % % Revision 1.31 1998/07/07 14:15:41 RRM % -- new commands \htmlsetstyle and \htmladdtostyle % % Revision 1.30 1998/07/04 02:42:22 RRM % -- cope with catcodes of % { } in rawhtml/comment/htmlonly environments % % Revision 1.29 1998/06/23 13:33:23 RRM % -- use \begin{small} with the default for URLs % % Revision 1.28 1998/06/21 09:38:39 RRM % -- implement \htmlurl to agree with \url if already defined % or loaded subsequently (LaTeX-2e only) % -- get LaTeX to print the revision number when loading % % Revision 1.27 1998/06/20 15:13:10 RRM % -- \TeX is already protected in recent versions of LaTeX % so \DeclareRobust doesn't work --- causes looping % -- \part and \subparagraph need not be defined in some styles % % Revision 1.26 1998/06/01 08:36:49 latex2html % -- implement optional argument for \endsegment % -- made the counter value output from \DumpPtr more robust % % Revision 1.25 1998/05/09 05:43:35 latex2html % -- conditionals for avoiding undefined counters % % Revision 1.23 1998/02/26 10:32:24 latex2html % -- use \providecommand for \latextohtml % -- implemented \HTMLcode to do what \HTML did previously % \HTML still works, unless already defined by another package % -- fixed problems remaining with undefined \chapter % -- defined \endsegment % % Revision 1.22 1997/12/05 11:38:18 RRM % -- implemented an optional argument to \begin for style-sheet info. % -- modified use of an optional argument with sectioning-commands % % Revision 1.21 1997/11/05 10:28:56 RRM % -- replaced redefinition of \@htmlrule with \htmlrulestar % % Revision 1.20 1997/10/28 02:15:58 RRM % -- altered the way some special html-macros are defined, so that % star-variants are explicitly defined for LaTeX % -- it is possible for these to occur within images.tex % e.g. \htmlinfostar \htmlrulestar \tableofchildlinksstar % % Revision 1.19 1997/10/11 05:47:48 RRM % -- allow the dummy {tex2html_nowrap} environment in LaTeX % use it to make its contents be evaluated in environment order % % Revision 1.18 1997/10/04 06:56:50 RRM % -- uses Robin Fairbairns' code for ignored environments, % replacing the previous comment.sty stuff. % -- extensions to the \tableofchildlinks command % -- extensions to the \htmlinfo command % % Revision 1.17 1997/07/08 11:23:39 RRM % include value of footnote counter in .ptr files for segments % % Revision 1.16 1997/07/03 08:56:34 RRM % use \textup within the \latextohtml macro % % Revision 1.15 1997/06/15 10:24:58 RRM % new command \htmltracenv as environment-ordered \htmltracing % % Revision 1.14 1997/06/06 10:30:37 RRM % - new command: \htmlborder puts environment into a <TABLE> cell % with a border of specified width, + other attributes. % - new commands: \HTML for setting arbitrary HTML tags, with attributes % \HTMLset for setting Perl variables, while processing % \HTMLsetenv same as \HTMLset , but it gets processed % as if it were an environment. % - new command: \latextohtml --- to set the LaTeX2HTML name/logo % - fixed some remaining problems with \segmentcolor & \segmentpagecolor % % Revision 1.13 1997/05/19 13:55:46 RRM % alterations and extra options to \hypercite % % Revision 1.12 1997/05/09 12:28:39 RRM % - Added the optional argument to \htmlhead, also in \DumpCounters % - Implemented \HTMLset as a no-op in LaTeX. % - Fixed a bug in accessing the page@color settings. % % Revision 1.11 1997/03/26 09:32:40 RRM % - Implements LaTeX versions of \externalcite and \hypercite commands. % Thanks to Uffe Engberg and Stephen Simpson for the suggestions. % % Revision 1.10 1997/03/06 07:37:58 RRM % Added the \htmltracing command, for altering $VERBOSITY . % % Revision 1.9 1997/02/17 02:26:26 RRM % - changes to counter handling (RRM) % - shuffled around some definitions % - changed \htmlrule of 209 mode % % Revision 1.8 1997/01/26 09:04:12 RRM % RRM: added optional argument to sectioning commands % \htmlbase sets the <BASE HREF=...> tag % \htmlinfo and \htmlinfo* allow the document info to be positioned % % Revision 1.7 1997/01/03 12:15:44 L2HADMIN % % - fixes to the color and natbib interfaces % % - extended usage of \hyperref, via an optional argument. % % - extended use comment environments to allow shifting expansions % % e.g. within \multicolumn (`bug' reported by Luc De Coninck). % % - allow optional argument to: \htmlimage, \htmlhead, % % \htmladdimg, \htmladdnormallink, \htmladdnormallinkfoot % % - added new commands: \htmlbody, \htmlnohead % % - added new command: \tableofchildlinks % % Revision 1.6 1996/12/25 03:04:54 JCL % added patches to segment feature from Martin Wilck % % Revision 1.5 1996/12/23 01:48:06 JCL % o introduced the environment makeimage, which may be used to force % LaTeX2HTML to generate an image from the contents. % There's no magic, all what we have now is a defined empty environment % which LaTeX2HTML will not recognize and thus pass it to images.tex. % o provided \protect to the \htmlrule commands to allow for usage % within captions. % % Revision 1.4 1996/12/21 19:59:22 JCL % - shuffled some entries % - added \latexhtml command % % Revision 1.3 1996/12/21 12:22:59 JCL % removed duplicate \htmlrule, changed \htmlrule back not to create a \hrule % to allow occurrence in caption % % Revision 1.2 1996/12/20 04:03:41 JCL % changed occurrence of \makeatletter, \makeatother % added new \htmlrule command both for the LaTeX2.09 and LaTeX2e % sections % % % jcl 30-SEP-96 % - Stuck the commands commonly used by both LaTeX versions to the top, % added a check which stops input or reads further if the document % makes use of LaTeX2e. % - Introduced rrm's \dumpcurrentcolor and \bodytext % hws 31-JAN-96 - Added support for document segmentation % hws 10-OCT-95 - Added \htmlrule command % jz 22-APR-94 - Added support for htmlref % nd - Created ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������hepmc-2.06.09.orig/doc/.cvsignore�������������������������������������������������������������������0000644�0001750�0001750�00000000163�11023263206�017345� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Makefile.in *.ps *.pdf *.aux *.log *.dvi *.toc *.lot *.lof html latex doxygen.warnings buildManual.sh buildDoxy.sh �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������hepmc-2.06.09.orig/doc/buildDoxygen.sh��������������������������������������������������������������0000755�0001750�0001750�00000000776�11374265176�020374� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#! /bin/sh # This script builds the Doxygen html refrence library # and is not run automatically. set -x # run doxygen if present if [ `whereis doxygen | wc -w` -gt 1 ]; then doxygen doxygen.conf if [ `whereis latex | wc -w` -gt 1 ]; then cd latex pdflatex refman.tex pdflatex refman.tex pdflatex refman.tex pdflatex refman.tex makeindex refman.idx pdflatex refman.tex mv refman.pdf ../HepMC2_reference_manual.pdf cd .. rm -rf latex fi fi ��hepmc-2.06.09.orig/doc/Makefile.am������������������������������������������������������������������0000644�0001750�0001750�00000001274�11374257600�017417� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������## Process this file with automake to produce Makefile.in # documents are already built - this is just used to install them doc_srcdir = $(top_srcdir)/doc doc_installdir = $(pkgdatadir)/doc HEPMC2_DOCS = HepMC2_user_manual.pdf HEPMC2_REF = HepMC2_reference_manual.pdf DOCUMENTS =$(HEPMC2_DOCS) $(HEPMC2_REF) EXTRA_DIST = $(DOCUMENTS) install-data-local: $(mkinstalldirs) $(DESTDIR)$(doc_installdir) list='$(DOCUMENTS)'; for file in $$list; do \ if test -f $(doc_srcdir)/$$file; then \ ($(INSTALL_DATA) $(doc_srcdir)/$$file $(DESTDIR)$(doc_installdir)/$$file); \ fi; done # Identify generated file(s) to be removed when 'make clean' is requested: CLEANFILES = *.aux *.log *.toc *.dvi ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������hepmc-2.06.09.orig/doc/graph_interpretation.eps�����������������������������������������������������0000644�0001750�0001750�00000020652�10730532704�022321� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%!PS-Adobe-2.0 EPSF-2.0 %%BoundingBox: 0 0 283 283 %%Title: graph_interpretation.eps %%Creator: HIGZ Version 1.26/04 %%CreationDate: 2000/06/08 12.10 %%EndComments %%BeginProlog 80 dict begin /s {stroke} def /l {lineto} def /m {moveto} def /t {translate} def /sw {stringwidth} def /r {rotate} def /rl {roll} def /R {repeat} def /d {rlineto} def /rm {rmoveto} def /gr {grestore} def /f {eofill} def /c {setrgbcolor} def /lw {setlinewidth} def /sd {setdash} def /cl {closepath} def /sf {scalefont setfont} def /black {0 setgray} def /box {m dup 0 exch d exch 0 d 0 exch neg d cl} def /NC{systemdict begin initclip end}def/C{NC box clip newpath}def /bl {box s} def /bf {box f} def /Y { 0 exch d} def /X { 0 d} def /mp {newpath /y exch def /x exch def} def /side {[w .77 mul w .23 mul] .385 w mul sd w 0 l currentpoint t -144 r} def /mr {mp x y w2 0 360 arc} def /m24 {mr s} def /m20 {mr f} def /mb {mp x y w2 add m w2 neg 0 d 0 w neg d w 0 d 0 w d cl} def /mt {mp x y w2 add m w2 neg w neg d w 0 d cl} def /m21 {mb f} def /m25 {mb s} def /m22 {mt f} def /m26 {mt s} def /m23 {mp x y w2 sub m w2 w d w neg 0 d cl f} def /m27 {mp x y w2 add m w3 neg w2 neg d w3 w2 neg d w3 w2 d cl s} def /m28 {mp x w2 sub y w2 sub w3 add m w3 0 d 0 w3 neg d w3 0 d 0 w3 d w3 0 d 0 w3 d w3 neg 0 d 0 w3 d w3 neg 0 d 0 w3 neg d w3 neg 0 d cl s } def /m29 {mp gsave x w2 sub y w2 add w3 sub m currentpoint t 4 {side} repeat cl fill gr} def /m30 {mp gsave x w2 sub y w2 add w3 sub m currentpoint t 5 {side} repeat s gr} def /m31 {mp x y w2 sub m 0 w d x w2 sub y m w 0 d x w2 sub y w2 add m w w neg d x w2 sub y w2 sub m w w d s} def /m2 {mp x y w2 sub m 0 w d x w2 sub y m w 0 d s} def /m5 {mp x w2 sub y w2 sub m w w d x w2 sub y w2 add m w w neg d s} def /reencdict 24 dict def /ReEncode {reencdict begin /nco&na exch def /nfnam exch def /basefontname exch def /basefontdict basefontname findfont def /newfont basefontdict maxlength dict def basefontdict {exch dup /FID ne {dup /Encoding eq {exch dup length array copy newfont 3 1 roll put} {exch newfont 3 1 roll put} ifelse} {pop pop} ifelse } forall newfont /FontName nfnam put nco&na aload pop nco&na length 2 idiv {newfont /Encoding get 3 1 roll put} repeat nfnam newfont definefont pop end } def /accvec [ 176 /agrave 181 /Agrave 190 /acircumflex 192 /Acircumflex 201 /adieresis 204 /Adieresis 209 /ccedilla 210 /Ccedilla 211 /eacute 212 /Eacute 213 /egrave 214 /Egrave 215 /ecircumflex 216 /Ecircumflex 217 /edieresis 218 /Edieresis 219 /icircumflex 220 /Icircumflex 221 /idieresis 222 /Idieresis 223 /ntilde 224 /Ntilde 226 /ocircumflex 228 /Ocircumflex 229 /odieresis 230 /Odieresis 231 /ucircumflex 236 /Ucircumflex 237 /udieresis 238 /Udieresis 239 /aring 242 /Aring 243 /ydieresis 244 /Ydieresis 246 /aacute 247 /Aacute 252 /ugrave 253 /Ugrave] def /Times-Roman /Times-Roman accvec ReEncode /Times-Italic /Times-Italic accvec ReEncode /Times-Bold /Times-Bold accvec ReEncode /Times-BoldItalic /Times-BoldItalic accvec ReEncode /Helvetica /Helvetica accvec ReEncode /Helvetica-Oblique /Helvetica-Oblique accvec ReEncode /Helvetica-Bold /Helvetica-Bold accvec ReEncode /Helvetica-BoldOblique /Helvetica-BoldOblique accvec ReEncode /Courier /Courier accvec ReEncode /Courier-Oblique /Courier-Oblique accvec ReEncode /Courier-Bold /Courier-Bold accvec ReEncode /Courier-BoldOblique /Courier-BoldOblique accvec ReEncode /oshow {gsave [] 0 sd true charpath stroke gr} def /stwn { /fs exch def /fn exch def /text exch def fn findfont fs sf text sw pop xs add /xs exch def} def /stwb { /fs exch def /fn exch def /nbas exch def /textf exch def textf length /tlen exch def nbas tlen gt {/nbas tlen def} if fn findfont fs sf textf dup length nbas sub nbas getinterval sw pop neg xs add /xs exch def} def /accspe [ 65 /plusminus 66 /bar 67 /existential 68 /universal 69 /exclam 70 /numbersign 71 /greater 72 /question 73 /integral 74 /colon 75 /semicolon 76 /less 77 /bracketleft 78 /bracketright 79 /greaterequal 80 /braceleft 81 /braceright 82 /radical 83 /spade 84 /heart 85 /diamond 86 /club 87 /lessequal 88 /multiply 89 /percent 90 /infinity 48 /circlemultiply 49 /circleplus 50 /emptyset 51 /lozenge 52 /bullet 53 /arrowright 54 /arrowup 55 /arrowleft 56 /arrowdown 57 /arrowboth 48 /degree 44 /comma 43 /plus 45 /angle 42 /angleleft 47 /divide 61 /notequal 40 /equivalence 41 /second 97 /approxequal 98 /congruent 99 /perpendicular 100 /partialdiff 101 /florin 102 /intersection 103 /union 104 /propersuperset 105 /reflexsuperset 106 /notsubset 107 /propersubset 108 /reflexsubset 109 /element 110 /notelement 111 /gradient 112 /logicaland 113 /logicalor 114 /arrowdblboth 115 /arrowdblleft 116 /arrowdblup 117 /arrowdblright 118 /arrowdbldown 119 /ampersand 120 /omega1 121 /similar 122 /aleph ] def /Symbol /Special accspe ReEncode %%EndProlog gsave .25 .25 scale gsave 0 0 t black [] 0 sd 1 lw 1132 1132 0 0 C gsave 792 555 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (+) show gr gsave 821 574 t 0 r 0 0 m /Helvetica-Bold findfont 39 sf 0 0 m (Minimum Bias) show gr gsave 821 529 t 0 r 0 0 m /Helvetica-Bold findfont 39 sf 0 0 m (Collisions) show gr 2 lw 0 0 1 c /w 20 def /w2 {w 2 div} def /w3 {w 3 div} def 453 226 m20 black 441 57 m 12 169 d s 1 lw 451 204 m -8 -4 d 10 26 d 6 -27 d f 2 lw 430 396 m 23 -170 d s 1 lw 433 374 m -7 -6 d 4 28 d 12 -25 d f 2 lw 0 0 1 c 679 226 m20 black 691 57 m -12 169 d s 1 lw 681 204 m -8 -5 d 6 27 d 10 -26 d f 2 lw 702 396 m -23 -170 d s 1 lw 699 374 m -9 -3 d 12 25 d 4 -28 d f 2 lw 0 0 1 c 566 453 m20 black 566 340 m 113 Y s 1 lw 566 430 m -8 -4 d 8 27 d 8 -27 d f 2 lw 0 0 1 c 566 340 m20 black 453 226 m 113 114 d s 1 lw 550 323 m -9 3 d 25 14 d -13 -25 d f 2 lw 679 226 m -113 114 d s 1 lw 582 323 m -3 -8 d -13 25 d 25 -14 d f 2 lw 453 566 m 113 -113 d s 226 849 m 227 -283 d s 1 lw 241 831 m -4 -8 d -11 26 d 24 -16 d f 2 lw 0 0 1 c 226 849 m20 black 679 566 m -113 -113 d s 906 849 m -227 -283 d s 1 lw 891 831 m -9 2 d 24 16 d -11 -26 d f 2 lw 0 0 1 c 906 849 m20 453 566 m20 black 340 764 m 113 -198 d s 1 lw 351 744 m -5 -7 d -6 27 d 20 -19 d f 2 lw 0 0 1 c 340 764 m20 black 226 849 m 114 -85 d s 1 lw 245 835 m -2 -9 d -17 23 d 27 -10 d f 2 lw 453 906 m -113 -142 d s 1 lw 439 888 m -9 2 d 23 16 d -11 -26 d f 2 lw 0 0 1 c 453 906 m20 509 509 m20 black 538 792 m -29 -283 d s 1 lw 535 770 m -8 -4 d 11 26 d 5 -27 d f 2 lw 0 0 1 c 538 792 m20 black 453 906 m 85 -114 d s 1 lw 466 887 m -4 -8 d -9 27 d 22 -17 d f 2 lw 0 0 1 c 453 906 m20 black 623 962 m -85 -170 d s 1 lw 612 942 m -9 X 20 20 d -5 -28 d f 2 lw 0 0 1 c 623 962 m20 679 566 m20 black 736 736 m -57 -170 d s 1 lw 729 714 m -9 -1 d 16 23 d -1 -28 d f 2 lw 0 0 1 c 736 736 m20 black 736 849 m -113 Y s 1 lw 736 826 m -8 -4 d 8 27 d 8 -27 d f 2 lw 0 0 1 c 736 849 m20 black 623 962 m 113 -113 d s 1 lw 639 946 m -3 -9 d -13 25 d 24 -13 d f 2 lw 792 962 m -56 -113 d s 1 lw 782 942 m -9 X 19 20 d -4 -28 d f 2 lw 0 0 1 c 792 962 m20 black 792 792 m -56 -56 d s 1 lw 776 776 m -8 3 d 24 13 d -13 -24 d f 2 lw 0 0 1 c 792 792 m20 black 792 962 m -170 Y s 1 lw 792 939 m -8 -4 d 8 27 d 9 -27 d f 2 lw 906 849 m -114 -57 d s 1 lw 885 839 m -7 5 d 28 5 d -21 -19 d f 2 lw 0 0 1 c 906 849 m20 black 113 906 m 113 -57 d s 1 lw 134 895 m -9 Y -21 20 d 28 -5 d f 2 lw 170 962 m 56 -113 d s 0 0 1 c 170 962 m20 black 85 1019 m 85 -57 d s 1 lw 104 1006 m -1 -9 d -18 22 d 27 -8 d f 2 lw 142 1019 m 28 -57 d s 1 lw 152 998 m -6 -7 d -4 28 d 19 -21 d f 2 lw 170 1019 m -57 Y s 1 lw 170 996 m -8 -4 d 8 27 d 8 -27 d f 2 lw 396 991 m 57 -85 d s 1 lw 409 972 m -5 -8 d -8 27 d 22 -18 d f 2 lw 453 991 m -85 Y s 0 0 1 c 453 991 m20 black 425 1075 m 28 -84 d s 1 lw 432 1054 m -7 -7 d 28 Y 16 -23 d f 2 lw 481 1047 m -28 -56 d s 1 lw 471 1027 m -9 X 19 20 d -5 -28 d f 2 lw 594 1075 m 29 -113 d s 1 lw 600 1053 m -7 -6 d 1 28 d 15 -24 d f 2 lw 679 1075 m -56 -113 d s 1 lw 669 1055 m -9 X 19 20 d -5 -27 d f 2 lw 849 1047 m -57 -85 d s 1 lw 836 1028 m -9 1 d 22 18 d -8 -27 d f 2 lw 792 1047 m -85 Y s 0 0 1 c 792 1047 m20 black 764 1104 m 28 -57 d s 1 lw 774 1083 m -5 -7 d -5 28 d 19 -21 d f 2 lw 821 1104 m -29 -57 d s 1 lw 810 1083 m -9 X 20 21 d -5 -28 d f 2 lw 934 962 m -28 -113 d s 0 0 1 c 934 962 m20 black 1019 1019 m -85 -57 d s 1 lw 1000 1006 m -8 5 d 27 8 d -18 -22 d f 2 lw 934 1019 m -57 Y s 0 0 1 c 934 1019 m20 black 962 1075 m -28 -56 d s 1 lw 952 1055 m -9 X 19 20 d -5 -27 d f 2 lw 906 1075 m 28 -56 d s 1 lw 916 1055 m -6 -7 d -4 27 d 19 -20 d f 2 lw 1075 906 m -169 -57 d s 1 lw 1054 898 m -7 7 d 28 1 d -23 -17 d f gr gr showpage end %%EOF ��������������������������������������������������������������������������������������hepmc-2.06.09.orig/doc/HepMC_basic_properties.eps���������������������������������������������������0000644�0001750�0001750�00001120755�10730532704�022450� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%!PS-Adobe-1.0 EPSF-3.0 %%BoundingBox: 36 408 360 820 %%Creator: Qt 3.3.3 %%CreationDate: Fri Dec 14 10:34:54 2007 %%Orientation: Portrait %%Pages: 1 %%DocumentFonts: LuxiSerif LuxiSerif-Bold LuxiSerif-BoldOblique %%EndComments %%BeginProlog % Prolog copyright 1994-2003 Trolltech. You may copy this prolog in any way % that is directly related to this document. For other use of this prolog, % see your licensing agreement for Qt. /d/def load def/D{bind d}bind d/d2{dup dup}D/B{0 d2}D/W{255 d2}D/ED{exch d}D /D0{0 ED}D/LT{lineto}D/MT{moveto}D/S{stroke}D/F{setfont}D/SW{setlinewidth}D /CP{closepath}D/RL{rlineto}D/NP{newpath}D/CM{currentmatrix}D/SM{setmatrix}D /TR{translate}D/SD{setdash}D/SC{aload pop setrgbcolor}D/CR{currentfile read pop}D/i{index}D/bs{bitshift}D/scs{setcolorspace}D/DB{dict dup begin}D/DE{end d}D/ie{ifelse}D/sp{astore pop}D/BSt 0 d/LWi 1 d/PSt 1 d/Cx 0 d/Cy 0 d/WFi false d/OMo false d/BCol[1 1 1]d/PCol[0 0 0]d/BkCol[1 1 1]d/BDArr[0.94 0.88 0.63 0.50 0.37 0.12 0.06]d/defM matrix d/nS 0 d/GPS{PSt 1 ge PSt 5 le and{{ LArr PSt 1 sub 2 mul get}{LArr PSt 2 mul 1 sub get}ie}{[]}ie}D/QS{PSt 0 ne{ gsave LWi SW true GPS 0 SD S OMo PSt 1 ne and{BkCol SC false GPS dup 0 get SD S}if grestore}if}D/r28{{CR dup 32 gt{exit}if pop}loop 3{CR}repeat 0 4{7 bs exch dup 128 gt{84 sub}if 42 sub 127 and add}repeat}D/rA 0 d/rL 0 d/rB{rL 0 eq{/rA r28 d/rL 28 d}if dup rL gt{rA exch rL sub rL exch/rA 0 d/rL 0 d rB exch bs add}{dup rA 16#fffffff 3 -1 roll bs not and exch dup rL exch sub/rL ED neg rA exch bs/rA ED}ie}D/uc{/rL 0 d 0{dup 2 i length ge{exit}if 1 rB 1 eq{3 rB dup 3 ge{1 add dup rB 1 i 5 ge{1 i 6 ge{1 i 7 ge{1 i 8 ge{128 add}if 64 add}if 32 add}if 16 add}if 3 add exch pop}if 3 add exch 10 rB 1 add{dup 3 i lt{dup}{2 i}ie 4 i 3 i 3 i sub 2 i getinterval 5 i 4 i 3 -1 roll putinterval dup 4 -1 roll add 3 1 roll 4 -1 roll exch sub dup 0 eq{exit}if 3 1 roll}loop pop pop}{3 rB 1 add{2 copy 8 rB put 1 add}repeat}ie}loop pop}D /sl D0/QCIgray D0/QCIcolor D0/QCIindex D0/QCI{/colorimage where{pop false 3 colorimage}{exec/QCIcolor ED/QCIgray QCIcolor length 3 idiv string d 0 1 QCIcolor length 3 idiv 1 sub{/QCIindex ED/x QCIindex 3 mul d QCIgray QCIindex QCIcolor x get 0.30 mul QCIcolor x 1 add get 0.59 mul QCIcolor x 2 add get 0.11 mul add add cvi put}for QCIgray image}ie}D/di{gsave TR 1 i 1 eq {false eq{pop true 3 1 roll 4 i 4 i false 4 i 4 i imagemask BkCol SC imagemask}{pop false 3 1 roll imagemask}ie}{dup false ne{/languagelevel where{pop languagelevel 3 ge}{false}ie}{false}ie{/ma ED 8 eq{/dc[0 1]d /DeviceGray}{/dc[0 1 0 1 0 1]d/DeviceRGB}ie scs/im ED/mt ED/h ED/w ED/id 7 DB/ImageType 1 d/Width w d/Height h d/ImageMatrix mt d/DataSource im d /BitsPerComponent 8 d/Decode dc d DE/md 7 DB/ImageType 1 d/Width w d/Height h d/ImageMatrix mt d/DataSource ma d/BitsPerComponent 1 d/Decode[0 1]d DE 4 DB/ImageType 3 d/DataDict id d/MaskDict md d/InterleaveType 3 d end image}{ pop 8 4 1 roll 8 eq{image}{QCI}ie}ie}ie grestore}d/BF{gsave BSt 1 eq{BCol SC WFi{fill}{eofill}ie}if BSt 2 ge BSt 8 le and{BDArr BSt 2 sub get/sc ED BCol{ 1. exch sub sc mul 1. exch sub}forall 3 array astore SC WFi{fill}{eofill}ie} if BSt 9 ge BSt 14 le and{WFi{clip}{eoclip}ie defM SM pathbbox 3 i 3 i TR 4 2 roll 3 2 roll exch sub/h ED sub/w ED OMo{NP 0 0 MT 0 h RL w 0 RL 0 h neg RL CP BkCol SC fill}if BCol SC 0.3 SW NP BSt 9 eq BSt 11 eq or{0 4 h{dup 0 exch MT w exch LT}for}if BSt 10 eq BSt 11 eq or{0 4 w{dup 0 MT h LT}for}if BSt 12 eq BSt 14 eq or{w h gt{0 6 w h add{dup 0 MT h sub h LT}for}{0 6 w h add{dup 0 exch MT w sub w exch LT}for}ie}if BSt 13 eq BSt 14 eq or{w h gt{0 6 w h add{dup h MT h sub 0 LT}for}{0 6 w h add{dup w exch MT w sub 0 exch LT }for}ie}if S}if BSt 24 eq{}if grestore}D/mat matrix d/ang1 D0/ang2 D0/w D0/h D0/x D0/y D0/ARC{/ang2 ED/ang1 ED/h ED/w ED/y ED/x ED mat CM pop x w 2 div add y h 2 div add TR 1 h w div neg scale ang2 0 ge{0 0 w 2 div ang1 ang1 ang2 add arc}{0 0 w 2 div ang1 ang1 ang2 add arcn}ie mat SM}D/C D0/P{NP MT 0.5 0.5 rmoveto 0 -1 RL -1 0 RL 0 1 RL CP fill}D/M{/Cy ED/Cx ED}D/L{NP Cx Cy MT/Cy ED/Cx ED Cx Cy LT QS}D/DL{NP MT LT QS}D/HL{1 i DL}D/VL{2 i exch DL}D/R {/h ED/w ED/y ED/x ED NP x y MT 0 h RL w 0 RL 0 h neg RL CP BF QS}D/ACR{/h ED/w ED/y ED/x ED x y MT 0 h RL w 0 RL 0 h neg RL CP}D/xr D0/yr D0/rx D0/ry D0/rx2 D0/ry2 D0/RR{/yr ED/xr ED/h ED/w ED/y ED/x ED xr 0 le yr 0 le or{x y w h R}{xr 100 ge yr 100 ge or{x y w h E}{/rx xr w mul 200 div d/ry yr h mul 200 div d/rx2 rx 2 mul d/ry2 ry 2 mul d NP x rx add y MT x y rx2 ry2 180 -90 x y h add ry2 sub rx2 ry2 270 -90 x w add rx2 sub y h add ry2 sub rx2 ry2 0 -90 x w add rx2 sub y rx2 ry2 90 -90 ARC ARC ARC ARC CP BF QS}ie}ie}D/E{/h ED/w ED/y ED/x ED mat CM pop x w 2 div add y h 2 div add TR 1 h w div scale NP 0 0 w 2 div 0 360 arc mat SM BF QS}D/A{16 div exch 16 div exch NP ARC QS} D/PIE{/ang2 ED/ang1 ED/h ED/w ED/y ED/x ED NP x w 2 div add y h 2 div add MT x y w h ang1 16 div ang2 16 div ARC CP BF QS}D/CH{16 div exch 16 div exch NP ARC CP BF QS}D/BZ{curveto QS}D/CRGB{255 div 3 1 roll 255 div 3 1 roll 255 div 3 1 roll}D/BC{CRGB BkCol sp}D/BR{CRGB BCol sp/BSt ED}D/WB{1 W BR}D/NB{0 B BR}D/PE{setlinejoin setlinecap CRGB PCol sp/LWi ED/PSt ED LWi 0 eq{0.25 /LWi ED}if PCol SC}D/P1{1 0 5 2 roll 0 0 PE}D/ST{defM SM concat}D/MF{true exch true exch{exch pop exch pop dup 0 get dup findfont dup/FontName get 3 -1 roll eq{exit}if}forall exch dup 1 get/fxscale ED 2 get/fslant ED exch /fencoding ED[fxscale 0 fslant 1 0 0]makefont fencoding false eq{}{dup maxlength dict begin{1 i/FID ne{def}{pop pop}ifelse}forall/Encoding fencoding d currentdict end}ie definefont pop}D/MFEmb{findfont dup length dict begin{1 i/FID ne{d}{pop pop}ifelse}forall/Encoding ED currentdict end definefont pop}D/DF{findfont/fs 3 -1 roll d[fs 0 0 fs -1 mul 0 0]makefont d} D/ty 0 d/Y{/ty ED}D/Tl{gsave SW NP 1 i exch MT 1 i 0 RL S grestore}D/XYT{ty MT/xyshow where{pop pop xyshow}{exch pop 1 i dup length 2 div exch stringwidth pop 3 -1 roll exch sub exch div exch 0 exch ashow}ie}D/AT{ty MT 1 i dup length 2 div exch stringwidth pop 3 -1 roll exch sub exch div exch 0 exch ashow}D/QI{/C save d pageinit/Cx 0 d/Cy 0 d/OMo false d}D/QP{C restore showpage}D/SPD{/setpagedevice where{1 DB 3 1 roll d end setpagedevice}{pop pop}ie}D/SV{BSt LWi PSt Cx Cy WFi OMo BCol PCol BkCol/nS nS 1 add d gsave}D /RS{nS 0 gt{grestore/BkCol ED/PCol ED/BCol ED/OMo ED/WFi ED/Cy ED/Cx ED/PSt ED/LWi ED/BSt ED/nS nS 1 sub d}if}D/CLSTART{/clipTmp matrix CM d defM SM NP} D/CLEND{clip NP clipTmp SM}D/CLO{grestore gsave defM SM}D /LArr[ [] [] [ 13.333 4.000 ] [ 4.000 13.333 ] [ 4.000 4.000 ] [ 4.000 4.000 ] [ 6.667 4.000 4.000 4.000 ] [ 4.000 6.667 4.000 4.000 ] [ 6.667 4.000 4.000 4.000 4.000 ] [ 4.000 6.667 4.000 4.000 4.000 4.000 ] ] d /pageinit { 36 24 translate % 184*280mm (portrait) 0 794.25 translate 0.75 -0.75 scale/defM matrix CM d } d %%EndProlog %%BeginSetup % Fonts and encodings used /LuxiSerifList [ [ /LuxiSerif 1.0 0.0 ] [ /LuxiSerif 1.0 0.0 ] [ /Helvetica 0.988 0.000 ] ] d % Font resource %!PS-AdobeFont-1.0: LuxiSerif 1.1000 %%CreationDate: Mon Nov 12 2001 % Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. % Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. 12 dict begin /FontInfo 10 dict dup begin /version (1.1000) readonly def /Notice (Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /Copyright (Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /FullName (Luxi Serif Regular) readonly def /FamilyName (Luxi Serif) readonly def /Weight (Regular) readonly def /ItalicAngle 0.0 def /isFixedPitch false def /UnderlinePosition -30 def /UnderlineThickness 60 def end readonly def /FontName /LuxiSerif def /PaintType 0 def /WMode 0 def /FontBBox {-203 -211 984 993} readonly def /FontType 1 def /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 74 /J put dup 75 /K put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put dup 87 /W put dup 88 /X put dup 89 /Y put dup 90 /Z put dup 198 /AE put dup 140 /OE put dup 216 /Oslash put dup 196 /Adieresis put dup 193 /Aacute put dup 192 /Agrave put dup 194 /Acircumflex put dup 195 /Atilde put dup 197 /Aring put dup 199 /Ccedilla put dup 208 /Eth put dup 203 /Edieresis put dup 201 /Eacute put dup 200 /Egrave put dup 202 /Ecircumflex put dup 207 /Idieresis put dup 205 /Iacute put dup 204 /Igrave put dup 206 /Icircumflex put dup 209 /Ntilde put dup 214 /Odieresis put dup 211 /Oacute put dup 210 /Ograve put dup 212 /Ocircumflex put dup 213 /Otilde put dup 138 /Scaron put dup 220 /Udieresis put dup 218 /Uacute put dup 217 /Ugrave put dup 219 /Ucircumflex put dup 221 /Yacute put dup 222 /Thorn put dup 159 /Ydieresis put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 106 /j put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put dup 122 /z put dup 230 /ae put dup 156 /oe put dup 248 /oslash put dup 223 /germandbls put dup 228 /adieresis put dup 225 /aacute put dup 224 /agrave put dup 226 /acircumflex put dup 227 /atilde put dup 229 /aring put dup 231 /ccedilla put dup 235 /edieresis put dup 233 /eacute put dup 232 /egrave put dup 234 /ecircumflex put dup 239 /idieresis put dup 237 /iacute put dup 236 /igrave put dup 238 /icircumflex put dup 241 /ntilde put dup 246 /odieresis put dup 243 /oacute put dup 242 /ograve put dup 244 /ocircumflex put dup 245 /otilde put dup 154 /scaron put dup 252 /udieresis put dup 250 /uacute put dup 249 /ugrave put dup 251 /ucircumflex put dup 253 /yacute put dup 240 /eth put dup 254 /thorn put dup 255 /ydieresis put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 48 /zero put dup 163 /sterling put dup 36 /dollar put dup 162 /cent put dup 131 /florin put dup 128 /Euro put dup 165 /yen put dup 185 /onesuperior put dup 178 /twosuperior put dup 179 /threesuperior put dup 46 /period put dup 58 /colon put dup 133 /ellipsis put dup 44 /comma put dup 59 /semicolon put dup 145 /quoteleft put dup 148 /quotedblright put dup 147 /quotedblleft put dup 132 /quotedblbase put dup 33 /exclam put dup 161 /exclamdown put dup 63 /question put dup 191 /questiondown put dup 187 /guillemotright put dup 171 /guillemotleft put dup 155 /guilsinglright put dup 139 /guilsinglleft put dup 47 /slash put dup 45 /hyphen put dup 173 /sfthyphen put dup 150 /endash put dup 151 /emdash put dup 40 /parenleft put dup 41 /parenright put dup 91 /bracketleft put dup 93 /bracketright put dup 38 /ampersand put dup 167 /section put dup 134 /dagger put dup 135 /daggerdbl put dup 42 /asterisk put dup 39 /quotesingle put dup 34 /quotedbl put dup 64 /at put dup 35 /numbersign put dup 176 /degree put dup 43 /plus put dup 215 /multiply put dup 247 /divide put dup 61 /equal put dup 153 /trademark put dup 182 /paragraph put dup 164 /currency put dup 130 /quotesinglbase put dup 146 /quoteright put dup 123 /braceleft put dup 125 /braceright put dup 170 /ordfeminine put dup 186 /ordmasculine put dup 177 /plusminus put dup 189 /onehalf put dup 188 /onequarter put dup 190 /threequarters put dup 37 /percent put dup 137 /perthousand put dup 92 /backslash put dup 168 /dieresis put dup 180 /acute put dup 96 /grave put dup 136 /circumflex put dup 152 /tilde put dup 184 /cedilla put dup 169 /copyright put dup 174 /registered put dup 32 /space put dup 160 /nbspace put dup 149 /bullet put dup 60 /less put dup 62 /greater put dup 172 /logicalnot put dup 94 /asciicircum put dup 124 /bar put dup 166 /brokenbar put dup 95 /underscore put dup 126 /asciitilde put dup 181 /mu put readonly def /UniqueID 5078991 def currentdict end currentfile eexec E98D09D760A3C22CF119F9DC699A22C35B5B35ED6AA23593C76D54CABB5E942B F7D6DD84F1664B89699C74B472DE9F8E6DF925F6C4F204E9F1C639B4DBA988ED 2AC419FF2B2BDE605B8EE3264EDD66412D4F21C64AC522BDFC7C5502F9C3F3E5 592B3B2093D33C9BFAEDD2D49E89AABAA832E23F062E91A25032519D1868816E 44B4E0747795003D7930299D6E1E2A5BFE0D595DC97E140989CE81D8D7F852FF 9CDC7A1B1B598C69131DEE005B415805A16D8F1232D9E73F44EADD0D9361D465 3748937F491E18670189FD0D6858CBDFA6C4D794959EF9FD6996B4BFE7447FA1 0B99FBD717D8407349457E126F430570E461A06CD1D4022BFD31D3140B4F9D44 873A31C28EA941EC9D76CEDC1A71BF7589E11A6026F35F47E4216D7168D7E0FF 7C75BD48730F67FC517E7539B16B14D61185D9EF8D13F9398E4F3881BDECB05B CB62672DC2C80ED0A24278927395F6C5D99D9FB3F3A1DAA087C609DDA0583474 E0C5C9EBB773EA16786FD1FF2BE887147ECAA6B69B261A6A61E8E0DB8AFE70D2 4069C33DA1AD0763306A2860A870AACF636654291C3BC44893FD9358616A1D47 B3C79598FD22290D57AF04F3C192DC67611A2C2EEF144F80E0BA04888A5BAE0A AFF6C484103BE288EF75F74A81B453A4D3B3BA25B37C547091D840C1356E48F1 80E2FCC0C091515CFFFC446F99945BA70A6F868F4EB9F4ACE8AB07B64CF9B7E1 4A8D5C16097D4ABD16D3573FDA57A646D3DB6414E5F3EABFFE30F22996D0E4BA 07685D5EFC2E97D9BA4DF8A1262EC2AB3C74A57AFE467C7E8130036360EF8D62 4A2B6D8C290AA2365EA095EEA4EAA7042F747358A9F6151AA6F82F17F9A48ABE 646A9A3F1DF12E7729658ADF3111E52D08E50998672E884C2AE82B893364675B 9D3CF06B6DADFB13C53452730FD0A61A05A44B1FF1C3B0CA05756677C3D262EC 6A9344B80929A6D456F8708C03D4E0B4AA29320F7E3E9FE420397D103641CACA 87E1F114F525B6AE34F61327595648DF8FFB4FB09DC41C0641CB8EB349595ACE 3A65D4E04735BA31E1D613CDD02337D460780E22CF8B8D7BF1BFA8896C343E85 5791AF4BB99293E9B4E239A2A1C680099BDDEDC3D68BF9F2986D3E0E51834478 D808353967F7D861A900DF206C52BE7267F70928102B914F39E001632154BDE8 6626FA0F69D81F13BA8F561680D2C0645BD17BF5828EB43B6C1C443E8E3CF346 50C103FA53A029A665987560D17F6959D9FDD46005A1EC53E443D89C7DD4A618 3A114F733C87251276B35BB3A03FE864E0FFC9AB3C8A1686FC5605F5EF9DDB2E B9F6D75B1E1BA5710BAF346CA720318F32CFCD405C006E4DDB6FFDC97067C0CA 394C5EEEEF2D27AB9810AD25A421FA7A4095D692F802C83CA5F8B2D6AB83AB6B 45469FB7C8613F9E7DD094F9360435D624C67E7306D19FF80424B75968A3D68E 39215E86F1ED20ACC5FBA87E107785B48411A9F5A8250D0E561FCB1DA12B590B 9F0FAAD50D548FD78020FC3C5EC3B7ECD9CA58E88C81FCB7B2A3C3D114E7F327 220D436632DA6EFDF722D4C99AB2880E3CA577DAD1FB9A9903C5FCEE69C65D36 DD56EEF77CEABC3BF495DF819FA518194C03BD88E1DAC75E51F23765797A999F 4405E08AC251FBC7F8C462EDA4768D668C93BCA47E035EF0BD905766ADB2EF24 EA82B9C97A41552F70B0A1EA5172028A917EABC78B1E8293BCCCC03EA281DA0F 9346FD6688D58DE2B14AEF2954A70B3755CA545F4E0C460AA89E4A9C3D3475E3 26F5133DC36517157853FA680642587B62E71EBB8422B6C9E1335ADB17040561 50D94FA4FBDDB86C9FD3812B90EC8A44596F9C683A5119DBC735777DD9D33AA6 2A33CF98754D16B34D439FD8995E625C8250129701501346727F51096C407615 F7B96061C2E733045C1C3A427F9B1AD26ECDA119C7B38E682C5BFA7B871AC397 BC063B129FE54E9CF58C6F329390F8F14172ED0EC22A11B49787751A5E47340C 37814F52C05DED2F8F17A4F53250634B4B54D675F2776A867C1AD96BEDA842C9 B8077DB381AE4AC283554FEE875B64A37FC3005810B42BD9C1C1422B7B104DE7 D912C5BF74B5D0B4671983F41ADCFB287E40AF8BF69686E407E2E97D4CC14B6B 172972FA86ED76F43ABD480EDCD3437005670A2E785942CCD45023D1B3B70E9E C8AD2ECA580EEE06993FC79C3B44CA5841ADBC4378DD68B5A21E570C88EF4016 CD5A7463F1829F1F761D719F770AED1CA8EAA1FA7D166C86EC3C858D8E76606A EA4AA03F3D3EA07CFF90CBFAA0E60B26FF57AA395AB4225CC19217920E0CE8E4 119FDE73501174065D1C0DEF1AE3D6A9F0C9E2558030E8199E99662E767D37B3 3761220EFC66C81205F64B6ED8EB09865046A89FDAA0275D248179208557E218 40EF4FFD2B18CD1B46E7DF16B675C3C3093141BCF45BA70F31EDB235DE3DCB24 2C93BD4C3B6414DC7C57383F35D1033E400DD0FBF57ED73514E1E186F08F8E7B 6F836CC6702047AAE17175CAEB08E20D06ABB02FF72BB9839F34F27CEE5BA199 D9DA8AD3C6262E0B467F9A85E1D84AFC792C55E00156DF5A50460D259353F33D 505FE3ED16817DB13AE355DE90589F85AB977D09547996E06A8F123F655D4BA5 E188E9E86CC31AE6B817DE4D90D7055BE09601F7CF4306BA04295148D4D42EB2 E03F73C682CEEDA8C2862FB309BE14C96C256084D6DA1A0254EF1769877EC2E7 90D0E6A37EBE7680FC0C6325F6772D2516FBD2F71EA193B0D96BD9303B746FFC 0D9456B7B66E849477F4ABB1565BF0F95D6941C6B8500F9AFB561F08F71CA6EA 0FAF63400979CF3F29EDEDA7041C380A0D3A086CDE2A1212FD6017E8E5A280D5 73BF391BFCAE1F0CD3E895ABB45C025940C489F30D38B43E5506D57043EB6C90 9798823F6AD59BF33E75467BDD309210803F24EB57E2BA92BB25200527C66A7A 1D20D092637AEA5FE90C8BAA0A75172470D5C872206450164E702861D50FF618 748CE14BACFCE06A869720517549082B5FF664D27CCCD7920A5A70724C847F33 E893F9316FF2CE0C07E55FE095061940D12AA04853F444A664E383DE510AC21F 2EA065FA840618B89166BC69C6BA042714A6DA420C38002841A2BD31C35DCD5D 95D01CF0F4233065B48CA98A9F078EFF2148CC0B6B4601912B93F26F1B2BB509 A89B6AE424FC9FBC1506D8DF65D85490124FA0B2C19D4AD0FB0BCEFCA1818474 806028D9362C308A707C001AC9AA9E3D604CF91242901AF68176C70122646FE0 3489B2D0AB026B5F14FD4E8B6DD4983435F8C1EA647C6EC3A30209332F5D9E81 6F5F1D827D05995B996C589C6365E5D2EB4922807C996EE7D653AB8E6FDFBF2E 450740A9EAC9D97EC4B05955B35992B8FF98065B126220D2FA9FD5361F00E7D4 FCCAC7D0131097F55420F2E723779B33AFFD9A439B80D2B5A70CF35D9BD62E5F EA17E2B6911BC219A7D1D62BCAAACE9FE03A28780D32964E25E5ADDB423B67AF A377AB0E9E401DDD8CB82BCAC58B26DBCC1174FEA59A311B133F897ABE574040 4CEDF6110B709AE16E63BAC2ADB18B30918A83160B2D3BB8EA25930548C69864 DA2A4C23339B35188599EB5668AD8F1D5E43D49471ECED568D45BD02A38006E7 ED0CFBFF4C9E8A9CD0ED5086E663D880FB388D04E665F154E5E3AA7E658376B2 C37E52A54EA086300039929FAE313573DE586DC6864B07914088A75241A9B955 B60FDEF10E7C4CA62F04A0DEE650DFEC8CB0C31832D6ECD00EB8FDD4752F4376 965F0C7318C152697C688EC0A9DF0709F4D98FE9E8ACED5B47FE2E640C9043BA 535550F55C945805685313E95F02D503DA1F68322938A76262287266376C9430 34A8A7E9A1E090FC84F0942465BB09AB0E885772BD34D23C38655530F3266C6D A8B703AA8584D766F3140B468CE856EB0D46A9B7660E9D41FD90DADD603D43BF 3E573959254916573DCEB05BA14B58785817B26AA1FFD03527F11068079EBDFA 2C97B82A7C711113561EEE00C10424F43D5E3A7E6A71BEF9B8173A6C4E26B827 664ABB5F5882369863CC11AD9F67CB687F1A5D9D554962839BF4DF589A5B0627 72E49732552AA9886455050A00EFD580BD616A0164000E54A898BC9FB14A296C 17ED96A27D3416956AE0A7B8EB477143FDE8D33BA0C2BE89249DBF625CBE983F AA6763CD284D0B59099390BFD0193881995A522B5B3E689CD7EAE3E718DA40D1 C1B6B67463B2B885DE1E9D0ABE0ACCEFBA3D29F7F482D393F988A831FF3A9688 085108CD2BD75DB01CE94BB7B4CE3674937895D6AF2F6659C4A612EB65F8E81E B9693701AAB54789B2BC251103528FC0A7E7700CF70B81230B65C0261A8584FC F19B82615DE07D894AC4CE2CBBEDA4E79CA2438B119A8F0F596D0C605B3BE598 AA3B1B1F58B6184F0904A73640E466164CFD0D0C1948BA56753520F144F1AE1A 015F1402E25F26B0B462F6C4FF977C7561217862A5E91E1BE2BA5E5B5E045B07 163CD0DB3279C6D182DDDB43C1E15C6A96F0BDCF32C4FC497837321A05ECDC03 30943D2E7A81A319C58BD5C78EBF72ABB8931921DF1474A67CA2E635FDD45C19 1B525141980842058B8F07DDBA38D0FF3F17D95F833AFAC787AF090ECB75DCE6 155969189C4A05055899D6AB35C9B8F1EA2548B596E799876C8A1A1CF5A2A26D 50AC0F7F93A4816A983F82675AD33D409776ED878420262521C373CA48D01CB5 BAAD873A8006CD8E74A9CEC86FBE4964497D72D92A2837AE2DD223AB101F8C37 8E2565A1B6FE12208A05B60BB09082028FC3E1924DFF5A60525064A7B004B75C 40FE50FCBF3CAF6B4E2F487C4778C5E6B105DF2962391EC856785F6ABFB35896 8C5C7B4D3AF8AFE4E6114D241B943E0ED2129D6BFCFE863AFA58F207A654F9F8 689E53F795F5A199E91F8F76D4C2495BD307CE3B7669EEA5C46E3BB4CA096420 D4EDBF4044F0E2C79FF6DB09592C8D29587B536B189DF331336C72EEE5C96FD5 55E4039799465EF1678063F2AE4CA788C89CBD6EEC9DB3B22BC19680CD130FCF 963F30007CDF0BFB436F34B87D59A807189B1FD4015844DE56B7B5398794412B 1B406C318D5AFA5EA90ED303E3FB726A7F83634341123E5CA48FF30AC16D2B1C 6378EBA79DF54B6989FAAC13F076D88C92B1E485060D5B5703D3FE55255ACF02 6A94FB7EF322798E945E24BBCBA0052FB611E9451F86BBD9E1BD6A143A98CC89 A9C82B0993432956E2AD3A243CF7E81E23B770F5B576593EE0089845046259EA 797B171AFFBA8B4A2712175CA836D750B25289872538ACF8C3A51E62F18C5E91 B6CD6249CA9448C071CF2B9114696EB0A0DFF0019DAEA8399D679D8484823000 DEFF6B14034B064969CC05E0B5E34FE6F414F876E2809AE3B09F03492B5193B6 0D358C68DD6A3C48FE6318CBA17BB3FA9265235AE417DCEBB0380C30D04D6E93 B414575828679719D85B9B4E5B56248E52B4C7841AFE7B7C9D6E844480C7AB80 5C9412645FBD123919936859F61D815D105249DF52687F31B2701321F8DE91F7 A88A4E8D5C3926CD47F8CDBF8DED8C5F24C5FACB2138736EF67C5742B33A12D1 2721A47ADAC6AFE384C2066AFFAD2F79C9FE60FC11A7B71C972B897B12588196 93C06D7A79AC25F2D9D2BEE654AD27D454D4F28E533A6CAE0C9863692E406A53 C76344151CA587709CE1BBC845340FCC7B3CBED5C421944652E12506193A5212 A3E384D7A63F0FC0927B2EF40AB4BA66909D323E6079D9DD5A9F09FD1078E804 4D6633D71CBBFC5CB1E9B3BD13F9600B1157E28DD3226CDDD358B0878503D954 0B43CBAC43A14D5034F44722B05D12F6EC8ACC66972E3B9D5DB270988E8D8E88 4A2F92750ED6979ED5EFFBCE0731FC34213ED99F37BC31D0BFD0DA1D55120C58 1167AE0D33E8F190A163EC437B1E67DBC254331CA1C77EB1AD6B98CDBE95CDC3 1C7D04211BF48C8F86E34AF2CBFE411A12BDF382AFBD63ABC1A42BEF2825D07D 1343175C428704AEC8C925ED517CE7CAC954BC556690E61278079241FCF33CA5 AA04CC20D34B12BF04BE34848FEA0015CCA8192D7B6E166025DE3F12B4FD08A8 5833375528FEB9A4CC7739AC1C6988B21F3CBAED01DC535A0999B5200FBCD961 890288CFBF06B0E8B55CFC0D28A3D660B9A79A4A65C2E0F23B54355E41E5133E 42990B4B1F4925AD1DC6176919F37122D5B783BB1A18E8699F8E3F48EA0B9415 DE9376500F1C31AA51B98E9D5012476EA6F89D93EEAB943DEA72DC6B2734CAB1 12FF2C8391949455BC5749722D280CF49B8FA5F6FBA1D55B332E0BC935E9B33F F47FD34619FB0E217E0B5D1026D29A3C8C33CAAC9AA86015B009B153B86215A9 BD54F753B708FEE773C9A040F23D99C941707CD0200BEA970319E669907017B9 973BC93F89E7229F4185F95A70537935ACEAD61E7D458C33307560B6D0DA4089 B40AF5C8E3F428116D5D616E4B0DD6CC7FE203885B32931005D517CD021B75DC A4EC6FB5F0F8E8C43067DC7CC99B4055E45F38F8D411CCC80514814CBCC8747E DFE0FDF457428445D64F5E1D0811BCD103E6EB290E363BF1A2964C5FBD63A405 D0394E066E54774E7B05CF3E250FE7E5E2782B06BECE8D97C5CFA0BEFCBCED02 08879C6B8F93460D1ADBEDB3CF5EF9469933832A83088D6563EF6982E5F1E704 B0387D5E746D708B7787B7D7F91BB5D99BB4BB2C6646D5AAF8B1D70E0EBD2054 492EDE6D5B226E2EEB6B868DFE0DFDAF858D7239520824943413105CEA5AE042 D9F12A6EC811415A257FF2AFA0FC15F64D7C7F21762238B86EDB5AE4E4CB4FEE 9501350A8EB10809B265D5B52F1C10A89B5F5564C8C077C4109DEBDE36F5456B F6B4F3889DA1AA3855374A39B9AAEB76E26FEF4683821185A8157B392921ADC3 5782BF866461D525CFEABD17ED262785013A628A017E50EB70444CB1A9E8DB22 775040FDC83D38CB5C91064997A88C4DCAAF340D66608C4A28A473EEC0A08785 C765166D9B6C234AA35ACB7A3E676E756C13A67D80C148A2BAF56432F0AC012E 612851ED8B16B2C0673B11BF65904F7B9718E12179D36023CE784FEC7B79D0AE 8EC3F1244A5D293CD4E67C7B58076A6DC8E4168398D4E3653AA7C0B44649F372 58A5B2AFCD59AC43796B6971C27EEAD8A4E645B78559FFB90A0D2C4367F25F7D 84EF76B89D09855FA0CAB5BC5088C220E2979FF17AE67491C77E229B4668001F DEFA0E5B581E24AA93CFD0A21E453FAEFFD82A27D236FD5913132FF54C925EB9 F59D48E16FC904AA8C498AEE94635D187C7FF354F48771A3B730A994E4085077 53EB73692AE569A52EC4F1FDE59E793357647277C96A080FBCC9B95044FA71A9 359225214796A4C58C90C47682EF714B21F8C289E3870EA06BB9DA82227F7ABF DED110C7307B86772F538A937885873BD0D427966DF81A871F1D5F5A2105F25B C2BA884C9C3D8342064B7C6979EB116A6077BCAAC52EF21BAABC0AC1BFE8DFE7 3BF35A96077B78E47551BD07A89A2353366F0E3560D495BC906B40102AC68381 642ADDE76FAA8AB2466D26B4A322288ABFF4AEA43A5DA09F32F3B6ADF22B0409 3F16A8CFC70421613B04078A94148E47DD1608F1E262884D8C47D856C1DE30BC C60933D7BF141A433AB68B81BA42326E2935E37217932DFFB28C9D8580886C3B DA86AA0795BB69DC249050FB9434C900DD3E97D8C7556834DD3F66EF47347B13 77E60D03674E47CCA9F3D19B2AFF6660420940EB68A843E93BA89131606835E0 4EC6CFDD92827C56A07DCB9B7C6FF016D3500D1C6F62ADF954551C2C072B0F7C 86CC8295CC7BBB42CDB70DA78807C2C0CBB3C5369AB2BEA7DF33281A1770A562 A19C5FB30E616743248AE7D93F8ECDC1B081F96F2F52ACF195A86DAAC8E53D80 CB8883F37D3BB12CC0908422CE4392CA1014A45C7EB35899A8B7694C2EAFC62E F69D5179D4B6E893C2CFD762CC388C6356D941E89F1B0A8249E8A701678A86A3 AFDD4B74C16633087CC14AB94788C32FD74B1F01FBF8C7726DBEE0013E576CE8 F2D2B7E3CC723BCDE5ADE760D387EAAB664A6F4043A0AB6260755868BE302157 551883035BC8D73366FE63F7BBCEEDF072224B01DEF7651E0CD9EB85BC58C7BC 01DC0E874147E9A1F9A9116BB60A1FBB7FECE53F802BF95E3A52C4202C89C99E BCCBC7DDEA17AD7672CF9AEF169B20FB20D7F76B2EFF1696674623E01642598E A86C5365E4BA709777AAFD328E40D3935660CD986FA959451A5D1AD43161CB67 5A75934F7EC456F55822EEFE030DB1AB048A2E69AC59A50370763A5AA4E11C4A DCF9B23C9DD7290E73E1B72B179138E514E99167EF94FBF4A97866EEA33828A4 275804BD9DA8101E6F7C78541D05C2B9513C7B03A4AEB0F5D5646626E8C81486 610F1EDD9748BC95F93E9D0C859F270AFB655E2154494FDD83AFAA383389BEAF 70A4458D0D7CCADB3E4310B29A262C084F4D3CE3B0BB63A271B90AFC60EF2EB9 EE6D7F7AB4ADD46F243D94F83154333ACA2358E4F6D53E633C37993587320978 F407155D27463A47282D27D50C22B7F38BF34974D60A361BC6F26565D5CE5DD1 A48B580F5A1379231A8B6E90D0F0F770EED72C9D9D4B397455C59A0687CBDE0D AF1CD3AE0B83ED3DF977C0DDE3E7537C8D03AFA3114D7AAC6AC5870D0F4F03E0 06579E9A7308BDEF66E5DD3FADC07D612E6859AA57D08E6A4D118BA7DDD45DCA 2E003472B89169CBFDDF8516C43851451DC5B37C32A111D9D7AD1323C708EEE8 C500D1E8F5D94BE9E6F3FEA2BD8C5A3EFBE1EF84F5C95BD6CED21C8E2218E513 46BB8456BFBBB143CC7F0D11F74D53BC996C5D5A0A157B2355768DD153DB21D6 C2382318562DD4D1745DC04A3941FE0176189D8B041FDB0525A24BF5922A5E78 420ABD3B2AA5E5410025C9F65FB43D0A68262981DD8952002F7B12FAA9D62011 3AB3A84C5F720AC7D53671F33477E750EF4F700B2DC3AB8B44587E9BBFA1D67D 276FFE23F32EE806D3DE9C138035E0B4893329A3CFAEE28E6992A3834B016328 D3B1785119741A71FBD79193EA6EB20EE914A644ED41BB29017A20E534256894 4D9A5DB399CA943AE5351D842154542016528ABDFF55068BFEC1F2B4A6689CD1 1E416FE8D5B150FC6A8E68EFA4478BF8931F01E405BE2531B64B4863AD649294 C0391ACAD1BBCC2627F52FA1E07D77F0A35ADAD416E837963A0E88F67C827C15 EF55E915BAF4E5F3E4C0CAC6E16654331B3ED0991A7D01C93C60F6961A73E72C A77434491DD87F8EE1401583D48FC38F63C1E2A35492F93B871ADED0348EF0A8 437B033AAF2C3C6234A1A451C143CF926992ECDA1F1F3FAEF13C6B1040A202B4 27C545405D90F77C939C3199FA47F647B482B7DEA16DFB1B36DF0F70446B8CF6 02B33A96F2E81416ACE4D1B53B6EC5D96C1D9D43E501B989580DB90E83A39CBB E699A7D49F993EC3ABD780632810CB3CEF816CB7501F38D73106C838BB1C8208 84382C1DB306315AC4662285984F9D431DCD1F2C854C4AA95CE08C33A99B8B7E 6AA0562D554DA18FEF39DEE068E60469FD2DB23428ED0EFF075A9DF7EF3F92F6 C73E9CF760FF0523522747F7FA0B9C21B9E4826A900B5D943BDBE82330DFB8C9 C1F7CAFE80F7F1157EFCD3E6398F77CEE305E39C876D42BAE82F5078E894B112 3292590F08D820E61B6F0454B47A23C78A5B8F3F34D7DA46735BD26A19EE0327 E9D27D29AED59C044068387BC305A558A13403C9F713F6C5C2D9C6765F8B824D 5C3DC4222ED8079BF0610C8CCDDD041FCD67684E66682F8434A319E48BBF7F01 F8BB5FA9FC41902E7285DAD8DDE62B484FA5DB359668E6AE0805B48D864B7C82 DBC81F4CEBAC5A5108391DA129E11C12138D94EC1A407371F70C6B84023DF9C8 EA177A087632E3EB4ACBB13815B604140285AD93D1E72D17AA685EAA7886B5B2 E6C3BF45F83594C841954B58FA051B7A9A94881598929A8C8310671932CEDA2F 6DB1F7F015F8503EF84B19E059E8124E4843D09890DE094EA6EDF792630EB0BA 1486947D0A0B484F4E223DCD215EE78D24C090A3C76C550B065225B957C47C01 9C7AAF1498157177EF2A68BFBAF50A3D221B4320D71EA261C59A5600B55037A1 8BF30F7479E036D463341CCCA9E987C3B87CCC44E383BB5FF98BDB2730C840AD C388CA6480B85A9AB7D42A63F9F4B049B45AF49637E9464A2C9B709A7DE3FE85 10A6842FBC7B4C56D14F998D6D382D31892F7C066C77A6114185E4A573F9C378 489CC8551D1102C2052555F93CA134FED3383AA3F28A0E11F5D471819582BA7D 852CCB06FCC3CFF6F99338AA046BE9F96186F288D3951F75449C1DBF650965B3 3D1030CCDC4817BEBD6216943F2DF5EE8B9FEFE6CE4D38DC52F3CB8A7D29722C 990AFC8CCAA016181A26C3EE67AC35FD6119E23D689EE78E05E2FB7EC3864120 860E8BD2EA388508327C46EC8F895E24998AD2EC0D8CDE2A333719DC03F57C3A 229EC6CBEE7FD13F538570C2DC2F1031801BE075A473A2A2A7C1E01F74B8500F DACC782033DEB55C23B08368EA6C6AD8E47AEA7119D76D4B9F80252D66F70D2E 6A498A684FD131AE7B22322009A4870CA2C684C5FA7027E1D98750B6BE292FF3 0EBAF205FF0EBEF7E1C322DC79971EDA361E0597BDC717668F6B1E66EB93EF2D 62CCCA7BD345104EFDC72D1FCEF328857B84439A811819558DA11DF635606EDE FA44B2AEA013F1FFA384905F5E32057EEED1FDDC33E3672F42425E8520999004 51EF287E37D33E8F2A6D33EF933A9A1B1B6472889499D5F24BBD442EC57A6218 2DE6452AFC09388CE79C10C09562307B117171AADBC4583AC258F3525534C141 6A85CB591C56BB9310BDBEBBAAFA8270A5A179A368EE401D36A07075F21DEA6D B1A64E018F87AE259E98401E87FE8A808848DEECCE5B9BC45F44A621301E0D38 AF6B9042CCD89445F09FC971F94007E7CC558F81080A51B3163B7E6629AC2162 A410F477E9709541D6B4EEFCEA8D2208427D82F6D46A6DF1E180F621C5B44EBF D262084531D95974D7BB0F098F279BB04725C16955BCD5CB341F14903C5EA661 7752778CB6A73908D89835CE1D302733EE233EE7099357A243E77833FE9E9178 5A025A89882C9677467821A7414D970B9F7C0BEE6E0D3F5EBFA3438640E6630F 916E9523D92112C2FFDAD975FC3D3DB51273AE8A250288AC30F0C63DF9C98DC0 87EF8A135936A2F060405A4B8E2B597137E9C0B115B91F67A7015CB6D895E688 45D23AFEFB6434789178094B15F666DB49AB7DC74454933692B36DD82019CBD1 4EB94D1C042285E9D76F95B80FA4901D85BD16056ECDC82F068E794CB4410D65 4CAE5E1B495D1D14647B4F3CA8EE5ECE7081693A7AA06646594744FC1AE4723B 49EC675530C977FF95B41B1AF51A84E777F1124602DF8F5684F3225AED18B990 EF1150946A5D0888BCD0C79975A631B147C627514406FCC022DC0875CCF8B036 653B15187BA94DD8C5B6127AB5069CFB9892C6CB64848D4637C523AC2A5D4B5B 611CEFBD818A1E06BFBBFDC00EF8B2602BEC466D996811B2B424406A29718C8C F57418415DD2422065C2CFFD83949467243264B16DA0C1508E597EBC4B18EBE4 4A4354E8837173AE628FD5DDB5610D35F96CD42386C234A9EB05C71322847C46 ED113F60A988110CCA6DAAEBDA7155A28BC035B803B81F0FB6A05DB7EDC4A880 80DED199A41F62EF60D904F55160EBB83F40D7125B66750C881F809F30E5F72B 26748422CA9BD09A8FF4D86F1561C3B8AF623DCE26C85BF643700759324A372A B2510533A3B8D885472BA12963E9C400B81898E6E116F4977CA724E782834A56 D45F67C46CE5F9C0C267D39ABCCCCD1BBB002B4F7F2890B868ED1071BF8A5B0B 825DB9EFAE17C7BD9B887D75EFABD94EE0B52FC811A8EF3C94EE93838F4FC793 D38929D6E0AF3F6D624F4BA160BE513F683E7751FAF422AEEF111463F6B889BA B264156139AAFF7A1B64790F78A9168AC655FD94FB82FAA0828F1B284CC2D027 CCA9153FD60BF80891AD0B45F0A356A3F7B90B0D190F1CE69398C1F2C5B8E99C 10A2C2E97C530A8614E9203F424A431220A4F5333DD281FC1CAE2F2C0E6EF57E CB9074A7C7C0B355A1A567CC2D6CFDFEC64401510F29EDFB0DBDFF88D4FAF643 8E721BAFBEFB4E1E5B2AAF576027CBB3A2BCB8B26E252CCEDFDAF8740104724D 020CE168B39A12E0AB7F4E3BCD05C30C5419A9DAD1C3510CAC11EE4BA2B74818 88A1320E5FA1D6BCD4B58877927878D9D3A65C38CF9314FEA0E37EDA580CF121 FCA5FAD167856A8588BAC41CF25B3F9C0C158A253D40B53AEA357806A3D0D706 BE64FD7072267DE22936D8CD0E33DEAD240C795750299728D41532FD445692A9 08D8EF48054B22F12407C5846ED8F14F24CA348FF9760008D2F85FFFC514789B 63E5569E73BF23A6413C4C077A7471E7275107F2C7BABF43696B746ACB2F4D17 A4194B4660E7C797D3DD3785B92EEC1C7C9702F5ECA5BECC027FAD6731B49E0F 08F0486C25CCE8907B68C18DDAE8B42655B46B19B652670790CE1C9F3C8ECD3B C88890676121A2C89D464D9F27B3CCCB5C5C014D198B5AF358699B998BB61488 59DF9D0D706B84D457DE5430E8B5B6BFB5124B16C626E9B3774AEB27B3461E73 0BD7F788F60264CBE30D39CFAC48FFD28ED12D55C7D0F2CAC21AF25FD25359AB 817F0320B766B414547B565B52DF5702B5957A0FB9D7058DD7F803715D122859 87517638A22E700783EF621F407FF829E19C6B379AA448407D79FD4F76BEE1DA 71F6295803F0E7F2EEDF22038E3EBD6D56A1F0B72D203AD1A89AA7344ECDC16B 83AECBCF61F07C75B07DC7D0D5824281C08F0372762047B3E745C58CFFDB701D 2D35513F4EE938EA93D7A1FF911C07EBD7AAF2151869CA572A225D305E4D2883 FD885BDEB7876A89AE4858FD2354FD4E347680E3DE3CBC048751600EE94C8DC4 A64C4ECC6BCBB494A8B5DA6556724CB090FC00BE670E7D023F843CF23D363BF9 36960292D6FBA48B69330631A12A871E56D9BC8772897F6492EDD55AD6DA5117 3937DDF370CC6B366555DA1A22700A876F6E535E07F76C28B864064D5474A8D4 CB2455AAEE25F2CBD6CD19E9B91D1380B73E79C7F852596B97B3D1CF32064594 42B96C2FFFB054647CE2318D4EBC68EAD9DFA5029ED858DCAA0D5A972B0F8DA2 2E080D507304905ACF3943644BE25757DADD2589D77553BFDAE17CD50D3431D5 1CFAB002AA9A493F305BCA941D8CC78B61AAED56E4771FCA6D29CB0B9DB7F542 AA16E37E647A3D71D0DEB3F18D9E19DEB7DD26DA826068554445E54144B6FDEA 949D5D03EA3238916260DE4AC2152200977C51E5693616977C581508ABEFA156 B0767661AED9D47675F71455CD143EA30464077398E8835FE9057C6FCFFD6576 8EE913496CB05D8E3AAA6478685A5E03093A7F62BA5FCED32040D00680141C48 01DB98BEC6F83FD2B395A97C0EC0617223F19486003374A38147AD0AD996F6D4 9E6B70187368A368C84FF0C5C2E143CEFF967C279265FBB2F1C5B94DFCE706CD 702C0792DEB7FF682848529C6B7A40BCEE5F7F2A868452665E00B8140C1369A8 133B5114A62C9983FC3A13537C4D614DD9E513FC9ECCC001BA6A3287D82E9E17 FF5D88A373023E0A34CFDE64113A6BE7C365D68A64D44F74205BFC5914D669E9 06D94DC90890DFA84A169AC8D206ADEFD4A281C59B49F12DCFF9D9A2A4B42049 1509C1F929D2820803279DE83D0A2B20887FD3026604DB42716F32378F996CC0 792CE403EB698C865C21D26600E8706BFDFF5267F7D9DE38449AA71FA2C3EF9F 5CC34499FE2CC522142C8C1D55D7E6DF5188F9263F37F51AD78E9279A823433F 5755D9F95094B7FCE2F2224236585967CF767461380E28A674E831DC73F979F8 935D6816947EF70D41D5F64DB5BCA12C184BFE59EE26334C7C9EFA0DD1C6CE22 D8315677AA321A9B470F63ECE4DDE11AA3604E8B0E9DCDEF721138EDAF421D7A 09D9D6A74ABD55112FEF6593C062EEC5AF3EEAFC4B9C831C7E8D56B332E9844A FB85AA1EB94C1708592E5E7F3266A037CA3AF551F3679A0B67029B61E9D20190 2209D680032D5DB92CCA9BDA51820F2185C5678E879176F4DD7A9D64328F1305 FADCC214B9BB8D9AD595EFFC79D6CD443C2F0B7DA981FBF696A43D4B74EAC3B7 0441144EEAC59F52FC83D7CE750E0F9FDAED943D9B67BE023367F920DF5A220D C18432A6AF622F53D0B240D762AC25137DEEEC12AF276246943C4C804254BB04 9C2510885398BAC62E2F67961B2D24F00C86053BB14200DBE1AF4B9DE0BE615E 127F1FDAAD1AD4E939C1D3DC71FFAD3B9264AE547CB5F11B4E3D93038A95B4C5 5B0D4F249B20FF04922A1158DA5A7C9B99971AE16FE252C76C21475165CA356F 1F9612552BBEFD2A020635B7E0159E37847CBF22B9EFE07FF1CB9E9129D1AD19 E979E52F78207EE4DD64287C0A929FB5BA5AD68D395B61CD12C545C6E88DBDA2 2224BB1751E82014F2995936B6144509AABB965D9947B5B5D1346C1FD14DEB6D 36A559DBE82A31F2DB8830E260C9069613B8DCDEF6E6A88C7B0421A4B99D4EDE F22CAEA7D7B519A2D12CED44B4F4DD63E3011779EA4B44DCC803E062DBFB6BA5 098CA9E78832C1E6C6B7C0AD47350BE81377EF66A93134CDE2CBDF0EA9DCC5ED E38F663F72B1810DA8C23F287ABE369C496902E3D18B718B650324FF7D7434C8 6B8FB37E30DC7C5B59DB7B8C982194F148B26914447FA86CD95E9781B3918DF6 5FF76FEB4C8F0084BABF786C5771ECC6F9033C1528C4F0C5008F19D8608557B3 9B32BC80BB28CD3C9636A8CBFDC7C3ADEED9BFBA9A59904091E31E7AEAFBCCE5 2DF80869EFEEC3E3B3A5C20B49720BFE300F8D0C807FE3DC3615DA21501AD3B2 9F602644E6CFF34AE0E34C8DB132643D7EBB7E485F9EE658D6E5F2474A0929BD 768056CF7A4CF2D42B3ABF73B5F9CDF68BCA4753CE33DCD014F646F02229F9D5 A207A0CDFC782280B8FA180A8B0D26BA629672E6DA6AC08F523C030747C7DCD1 2721543837EFD203912078F1C21B4C12E1D3D99CC3D41A1EB4BC7A9C7FF233DC 56251E5951A62BBA5164C4455FB7C420B1544FFEEDBCE126AC7BD5259C877732 5F434F717210DDD55C655AD55C94A81238FCB7B105DD2B13BD30CDF70CF5190A 6B2C723EDBE8E171EE85CE4BA5010E254C217D8A110710DDA85C1C16858D84AA 6CCE64E98F873104628594126EF0B15489D651D8E9FF1EDE0F7147C3E1EE5852 629A2851B69CBE14F784805C22AE7C9B2CDC7EBA0661DCF803DDF353E2A1F5F6 8AA7CAE75B44C6187180B7FF519208887DA1C895BC7B8B1783E7EB487D02D234 4EF2E529CC10CD2538BE4879ACDB5259E694675BA50DB78A91347A4C0E58573A 055A91E73E3A6AF81E890DACDB9589EB34E061E8936D1DF638B35F22FB3EC97E DC0FD73913009B9895E4C95CF9D7719D9D63C25678C45372667AB85BFCE4C77B A37FF8E0E6215A718E1A4CE6DD6756BC93A8C1722288FFB56A4082C530D8F47B 26EABA70B663BB51AE64FC03543E7C3F285A38FA416B20F4A73F1442648EEEC2 3611E13EE34250A248798A2F0B9D6E3658EB1B97389A66C96C96DF1E41A392DD F667EC2A88C557F4DA7F708A33692B98A8A75212231B395D6785CDA4297737E5 13C16F5FC9CCB761CC3618C75B259F46C45926F3BD3E4994E6DBB890997E3FF5 D0C9185B9D91A54E6B0BAD88018DB6466492608DE79791EC93516E67C7C52977 F9E27B153910EF29F9F24B0C9DEBA4C3AF8C59098BCA325824016E26EAC228A8 1126E6D8821B379F140D2ACFA1DEB12D434BD0383E5BD448FF624D8A9FCE8CF7 D843B625CE6ADF6F89794CE54C5B6049BB95EBFA62A296515688317FD1E7AED9 97A2E7FAA32A4849114921C752AEC2C52B98C69C57818EE73CBF916A235F34C3 3E05CDED2956DB5B0CB7D51AE40E56085E5EAFB0BF29DF9B04BD66B030BBFA1E CE3C041E8A175033AA4B4C592575F28775102F8A45E15E3E2D550ADC06CE6514 B652105633B5E7876059C81527B9512C40DD586CA25AAD144BEF5E587C97E6A4 45B9772B8D54C2B75D4A716B83617CE59A1E52889613FBBDF5680E676F430ABA 8D80ED90B8410AD5BEDD7599306A8EBDF90107594F191F927C6D44BC816652BF 95C03DC365DE827A1AE756FE769550AFBC535CD3F92FBA42098B2613302020D2 15F884D51ACD348FF9A0441F3E4BFC2C02EA7CFFE8B388BC0640ACB468F3AF2A CC50955F7CE335B7E7C8E16F03A9DF18A31B257B6106C3578A343F16ED459E76 43FCB7DE1E9F7EB80E5D21B7D4BAD5D628F55E1DE0ED07EA926E73FAA6FD190F 796E75D43954E67F8ABD25A6414F08AEE76CE48B180CB1D3458F563A3EDB63F6 C9C3D9078D20914B83E7A9DBED2A2CE6F0775D3EE4405148F15A5AB53A4B0626 E24322A78F87041E956C655601CAFAFDC6F3C75B919B4E5A584E9570B6F06302 99CFD1B95C575E45AC1EE59C798E726F129643964A47283088298D9ED6788B30 D48341D03C2C1BEB4F31BD92ED5494A6B4039A88DC8C726E053006F9798E9C5F BB96B002056FD39A7EF2195335D04E67EEF12E0A16E0FE37FDEB37B925144A7D DE388DB0B4782BA6D48A2084C5A821427F97D22C1938BADC908C772F1A578179 4FCDC28D435B6BB443C31C4C9BF6CAED51370E133F64A53D0B56334FF57AC964 B6CBF0D85791D12C68A7A8BAF82CDA61335057A1B8FF0746F94C93D360F4B0B1 8FDACF3610C902BD03E23FE6FEA2E5935067D10AE5E83ED6214B0BB2D4A4BB49 F05E89CF47483357C676989DE740832C4E004FF1F2F3BCA3E34DF760ABCD85C6 95D97A55885031DE77C16B89F18648AB25F9774E495D4751ABAABE7A25CED555 60CE44A39581BDA539D4733919B9948E2257DDBC67C14E6CA051AB6A2494A818 93C567A1DC8030900555C28AE6D1A0CC6513C7B31A3F4EA137EF925CDFF3F5E5 CC9C88776B12851525A920456464431B9385B6D1508FA472B3DB12979DA517B4 1568600717B7515DBF20E33240405655B3039B7B8C37BC146967C42C4548CCC2 50EE136F210442A8754946C8DF57016D0109AC569AE4675E111A7D14CA742BEA 47F0629A7EA56D657BDC06D84E4B248A2628123D100F5ED185DBE2BC67BA6F1E CB72947E8C47E53D91F3A28C0125374D2D78FF3EC984B3EB47A5B1B0421F2EE5 4827EA2D74EFEF8427FF88BDF27344A82B622327EA307D805E93ABC2DCE0D457 46C2463F1F5FAFC898D6C7F64561E385646C8C71CD624F6486D9EBAECF04A0A5 ABEE1E6495CC0B1554C0702ACDA0CCBB7275703F51EB6F10D955DE95727B279E 9F61F19D9D54A638E0BDD27FD15B7DE67A06C31BECB0C800DBB1AFB099CCC2FB 0BDA829E02EA8EA8CB86E97F9D074A99CA8F0E464762BD1B0F41B444BD6BB73B 916DC811EDAD9F9775890D9FEB5337AA6EAD524C1E293A78ACB15BADA0BB59FF 714C43A89459636515E61E73C2F4C648D2916424B688896567E6B53799A79697 E9DACC8C43A3DDD425AFA8B542ED9614B482F73DCCFC20C4485A67545E241B9C CAF58CF1811D639E6C79D013C9CA124565D5D9FDFB2044198A41CBD6ADABE1BC F1B43683A55E7D67E1E00CC18986F446B1AC2FCC22B2A2F0EB7B78E567C3987F 6619BB27788517FDF9B5603BD8BAAA894CBF354FB6F066144931F91D1D8EFF57 F75B1ED60F4204CF0EDCEBD9252EA04F29712B3907A7AA75964C8ACF7D216759 931C517183D319B5218AFEFE28F64471C79447A8C96A02D2974A67778DFD3409 BC4415F8D17B12773192F7485B93E6CF9C99C281514C1E1BDF3628A5F093520A 9CADA2D9BBAB43139F4D067BA7B1D799BD3ADD62EAD68A70C6CD5249CAD7BD87 C72EF01DE59557A3C3479E36CC872062034B67BB60D8EE0B703443CE7B982E4C A6714F3333D6780AA342A9FD1D290225A79536F222F2393C5FD6EDBC1325C4BF 61D3D3E5B0C7FD0643DDAC4181FC223C1CDF89A44E542F2AC67FC46D06881683 4E611D1993F6353E65086553C9D8C415FC809A289795DC5CBD74FC1199E0EC66 C984180B57F710E59FC74EBE76A8C2CA96AF6A7774DB9879F9A73958A8DAC26F BD6C2CBA67E3AE7AAC3AE51CEFD4CAB980AC13FC24683151C15E83B23565214D 39600CA55C611ACB9941F78B5349B51B1C489119A4381912AF6D74508A1194F7 D825C41B88F8BBA571414C69A085CF400D4F7B88D16DA3D7BF554FB6A96BF754 238680BFE0D23146EEFA3CAF7ACF4475DC40A446758F5FF8FDC0BCEFFE4C5D23 6DCFCFB0663B70BE4BA681C5689952A7A26223CFEF28D76DF18E6170399EC32C 14B40821724CDB09EFCEDCCC932EE90CA228D888B76A18AE6D94FD69B7BEF356 13EB8599508321F0DE786EC7A5CB4D6A218E8A62AC044EED391C8F6D4F657C8F D9E5E8ED382685556E5FC2A8214F93D1AEE16A49CB6A4FFF2EE61741EB41D56D 282C083DBB24FA25D4C765E336899B10EC68C62358CAF2CE6B21A74F9E554C82 221E8A0414E5397DBF86F54FB355640CB742DC10CF865E0C2E16EECF709B2A0B 908BABBEE0175F8CAA010031CB98818494E670DAC8DA0ACD46959E51669420D4 128E38F2251F7E9F20F107A450E23A658F3B6058F63D699B4C5135E348CFACFC 58BA180FB43251958D72F2446C6DB69A17BB2416B5B0975C5F01D4B1C29455BE 538BA23611CD5FF3F06278641AF5458FFBC44181D9DC7D4D6188D8A506D61035 338C78D5B248F2812B3493F890F397C1EEB051D1AB29050F1E1020DF89E192D0 930A1EB5E35E0844ED2B7B39C5982CA708A33E5164CF14B10EB890EFD606D80C D08206B43A60C21ADAFC0A57A392B40CCFC7FE02AFB2111F3A20B18AF2F8D64D C511FD613492F116AD08D2F6E8193F9685568B83A08395331CF44DA500C405A1 58D1E63E6F36CF298C02D2271A27C9A454329882EDB15736CFFE070FAC32ADD0 9CA8FEC258CAB9B80C0E4688322B87D4AE222B574C5C599DBBD24505FC00876F 7ABCD94C089010E6DBFCD033DA2476EC01E7D0EEF82D6C761126C42531CB6880 7D7D887817FE9B688447A04B38709197A87F4C0DE7D26877E08E53F68354C2C2 492B3F3C82DE586A5BE477D2EDD5A8FFD23B55D05BBAE7F6D6ED28BAB27092EB C859930DE9BBB54EB2DB5452302F46AEFEAD89721FADA13D5340C7F8CBE0270C A8861D53170E8050F5C60D72D85E2767D42E7A9407D6864A2118CC70A16C80AD 18A214550E33B636BDFA811DD05C871E9BD39F80682BE56F0E9D0132D5B92958 E4DC5F4A27BBE2D2508B6B66322C4D2248F09B1112E63032DE8D750092197808 262715C12ECAC600AB628B03732E6214AB1E2CC952B4BCAFF89D31D186079AAC 8D18BE05414AC7D3433B95FBAEC5186269E8C4F5D01536331A78A3D405DD8311 8D46FCF30F6A339CA1E0C12BB42BF4C46612F3BEBA9D5822E3978C7E7F24B019 3F883DE1D353C6BD609698251802B3BB06AE88AE85CF069C70AE3029A66DC96A 2620389074E61FC3FF708B5B9AEEDF245BAD27A66025636ED25A38A1BBF095FD 74D0A25EDD692B863A29E3F224AFCD67CF5FB9EE9E45C06702CDF81EDD74E000 653C3CA9A8674A8895FCF6922C77EC3B63115CBDD52E8859A7A2F736C9CAFB22 5A62C420FF7E6410386290B35DE4384DB00AE1077CD28CB6A27392F0353260B2 8964096063D8E225240E0B357FFA444FD04EFB5B9555A7AB653C9F81D879E718 E408609E458BAA7F912B8E8587A14B27D38792CF0B66EA0BF6FF28AB27D2F132 0C4EA7DD61F4619A5131828FF73B622C8136E2DD8516194FA86B91A1FC11DD19 315B3BEEF7BE8856F36C5A41ED2B8FAA5A35C46332174ADF029456721D204003 17CC6CF3DE50601F8DA6A943A1A5FB4EF6263738B2801F5816E171020163C3A7 4A1EFB474171B8B54A62E29A84B8025C0A486BB5871AD62159C8C2C2739BCB3F 1C22F406E26F311AF6D6E5DCF9394BD6E0F2271E9347150B6DDC8E6EBE12BF4B 4FA1C6D03A1ADFE14053F1DFD4086EA3FF849AA0CBACC03AFB2567F9A4A5E3E2 4CC1DD4DFA6281350643C771672B4E8141593AB7CC1D684307274E42547239BC 1A66D2F9B88FF19774F77A29DDF1441094DD13FE8B60BE3D172E2F03F5642995 D3B4EA77D4B8C2A5B95E17FA3F4FF3BDAF29D8FA2A1B269839A961E6D5F05079 7914FFA78F79641CEFA7C1E7029B45CD3DE6289FEF5AF3294DD287F8243F4816 6963C42441B459C2E47C48D465B3F73117A58E45F4849F7B84A3F7AABBB67BBE C04E794FA35C3DCB2EF8689864AB5EF05CAD5839A181E6E558355A212B7858A4 B91DE81B88ABBA4DD07243F9B7E7616F28A294A7A6BB6A91467ECC40DEC2DD68 C46482EF44B79EC6726318CDE1748366ED8A46995C1CAC6AC2D95DF400C565D7 8995FD0D12B5059FA90DC42F97176A89A6B77C06E89DE6AB4647D89733F5CB76 8CD689C40B2BDB5400914EF8F081423A9865060FAF419E3CA66BA378985F9DD4 FE2A90B6B7C189BF2B9530D43BD54AE78A4E6F6CF1436B5B09165E501F5D03DC 4921066327922289B1642CC41DCF873219055271129C7A1B573AAE9EA60E0072 DBB3FF4A4F088408012F3F6AA8C85FD786C1561431014FCFDC04D9EC154B14A5 3FBD7C31E281C866EC9336B78531071144CDB99FE5D9411EB5A49DD0DE0270A4 03394B3129890428232C45D40685C9741CB09EE1F1382216B1DCD028FC1E0F5E AE9E6A1339E911DDAF47D74ED9E46908672F505D44D5B96674EF2943F17710AD C05FEB120520F8E5AD6293FAF919A49051D2B7B0B87C9926512401D2B45B1F7B 818BDCB0F26A70F48DC1B0DACD6A2E5CD23483F545BC78941F5FE1008B487193 B59180C93EBA03BC0DE031C43C172F4B2FCD30B2845ADE4C96C662157B1001F2 69CFC12DE72A3901E825E11F5F7B1B1DC9F8A783B840CA9BD21D082F6A9CD8C5 3CD6EA5E2E4ABBC4AC276CBD9AA1E73FD66FEB9262B35C637F8392A92B598861 FDCAEABF130A5C21E646B711566EDB6803F1012CE88E0771F7001B683094629D 04FF9CC28D2268C22F8EE75AAED16D4A2F95851E46B9809CC519DB0E39618DCE C22BDDD8BC151BF4BCB0F7CA35786F6B68F68E8AEE4032B1BD963A83CB00A249 1878844DB4DB27B7FA585622248E4FCE609E4521602CC6AAB4713FFC6A39A396 7C2A1A82EF4D6E814B6914F24C5A5AE2952875EBD6CE5B7429582CAD0D07DEA1 72E65642AACC1DB37E1C51B920BED00C4C6D597B5920A5861DBBAE3B43BC09A4 4BA3B4C52B3930423C6D2D39C5249F6C2C0EE21B27534EDEEDCFF791A302E5D6 2D18005FF18C046714B9938AC93B5B8099CB7DD3C142F3BDAD20CF23D7CEC7AB C64D591809E95EA1788036BAB68B8E4CDB12A0CEF717BEF6340C9CA1092BF8FC C30EDBE372B3D640700717F98E9912B814D1668A1169259B529F3E12DF309B92 E0BBC7B6A9C2D4903BD44C4B0969E9E5DDF3B8CA44B8BD065C77CD2ECD3A946C AEDA6FF655D5F8C94509F27934B9207534C98CB3361D8767D22360F5C4419E52 6A3A861A6C56AED8F6871DC5671011DF104E31B3D5DE68F2DE00F49673BDA295 F03EE38F4F2BF2CBE7274A6A6694DB0AC0A90FEA1714F798096B0B47453B9F9A 6E7A4652CEFDF5755A0C9F17C5574FC5E5623874D5360ADCCACE26CA2393188F A81CAB8D3F35A3FC81D43D450A073474A391A31D7FC994416AD2DAB64AA6D4D5 9AD3DE4132A10074BD4A27ECAD779F66C3711BBDD7AC92203583AAF0E70483D6 FE5C76A25FD50101D6DD76C9898E8A996F6DC34F1F22085EA743F966D1FC36C3 08A4CD8D337DCC8E1DB190750FBCFF37726FD48D1E3D036F1556B755B3C11974 9F81BB7C7B6430235FED173EDFD5FE81A1815F1A424E372485321BFD6D92ABE1 C647E7A18A0CDDF2CBDFBD5BC0A1A57855D4AE646D27063179B2FD6E2A01367D 95D63DEB069446A7AD2346ECD9290472E4D057BB82F5B2F86C8C81FA765FFAF5 937C8EE96E839472E591378995354261EA890AA0CBA33CE29A7CA6BF1DE2E312 AEF2DF4F66B742C91BCFF17635416598A0CDA87D2B94E0AF915BE7EADAFCB9B4 5BA814C81CE08C377E448EDBB082987970203A20B2BFE8B58EC3E6AEBC7F0CE9 DC5733F5A05CBC25152EDEAB6507B8BAB2736593383FC9FC744EDA54C67726B8 199A3D9CE9DEA371CF1B47FFB18951D8F350DE7FC5D45BDCBFFF8005B92DC257 DC098528B4AC8BE791F5FC75068506C2ED97CC77204E2F37248A2BCEC9ED4FED 510A7B9603779B68C57D57A94DB76839004E736177752A2A63BCE0900E00B493 519AC8820D96F9304034D948C8309E4D199A5BF01052C9F807D27FC0C1C20C55 1AFDC48CE6A0529E32AD7C316A4D313FA9E28D5D68E4692C48A9A030BB275DFA 004B19FD59F6ABBF58F5D2DF093F0ADE1EE44FABEDA97C775643F4616A0F5262 076FC11E2C4607EC5AA475B89BBA1117182A9CA235FD5BB9FE9B15798658B285 6C35315A41D5DD6BB6021219DDF2A30C7A695330AACB6D180F53A2C5AD703A8B 41256DBA79173524A8020675CAB62E557CAE00B396084BA76A734E1E01D46BFC 25AABBA5FB4D48A1654E1BCB76BB5E792B2E73F6E7006B6BBB435979C8218585 C41DEB66A2B9152FEC7CD454B4EDA06A73F35AEAEE33016A2142CF0623E93969 F86E81D72CBDB19B4BBAFD70DBF0F8EB16443A9987769C532B2A5053A7B55910 50E459A1098F5467E8175AFEED1354F1C50326CDE9E761427F585DEC3C9A4D36 A76A9CF4C0EA0B8712E890F81AA6C2A9A81C8D9B061931F75A257B93723BB6C6 19CACD8CF81536DF0D2A466463EF195AF59B5207CB52D0902AEEDB39D79EB566 F647A9138A81F7B3300E8D1CA514B6C481904879AF3C99EDD1D94CAF56C61166 CF8D8663E452270BEC6324A17F6893F1447BB9A3F086E54FC1C2AA2D7F58F66F 7EDE9BE293ECD25F74AA7B10E3DE10513B13333A4224EDE43414EE9F86978C1F 0ED1C404CD511F243A1632663BA338317DC7B684A84C1D4E022D567821331064 D16F76253F14F91DF2A50E2DDBCB6750D6A75DCD3356AEF7CB5A9B699DCDC80F 0F530B66BBF4A60F102C402DB836D29BA43941AF05680AD51D4F3EC668E6AFFC CF0D36B5CDD912A6CAF2082B702EF90E16906596E4BC20CC979080CB78FFF0F5 C928F5EFA8914DF3E56D33582504840071B2FC38CE433A6DEB63E6CF6E808E87 9866B05DF8116F0972DD25F2FE5232522057A095E311C247336F669BF10020F9 45B9B454DAE2423E0E9B432B1A2E3470EBA9CE177EF28091EF444045CAD0EAEA 23A3B620D0903FE4185340014920AACE478E93919FF0C722B77A448424D0DEEB 819B8B686125A6D8CC719711E108C6A3F9EC056C4400CE3B5D209696A45F5CBD 913F3A9AB9A6BFEDACD7C207DC01DE4554EA63400489918123741D1AA8843EAE 14BDDCE827785FC2324CE7689B0B7C2075A87520B253AC1C61AE34F5AE34866F 9B68061D1C1D4E4C5763DD68801ABEAD6967F056B8D934CF84081A6A82DC2B91 2A0F350A5FEED1C1116E3E94A18427CB4A4D1A6935532FC4CECF43E10497C190 AD3AC6C300A57715E3FB715AFFACC30D4D4EA325AA52DD9BC29FFFCC3646A7E3 F97A12FFF8E0E355DCD3CC5E68CBC9FBD67DEF5B5157161BBFF5B61C401AB639 DCACBA6C3F09E9683F872288ABFA4176CB69B8D5E61AAF135B7019CC8F6AE07F 573B897F7AFC0A5FDE3A922DFA3529B65E62372F2CD8F57B6ACA0FC382C148FF A6CB30FE9E9891275705FFC71211EBB0E7307B00E629E2CD9F4BE16C072F3247 51ED89B8B087D69DAE1D6EBC237AB8D3483A8F9D48C2F6B465430E12756CCEBC 1C5E3566359B47A0AC0B5D4A5A1B1712457FA33FA5BADF1E302CDFDF655D5ED0 FA9C6666022302D1DA091F8A19CEF58923AF8996B4A5AEE228D166812A6BC684 9C89B9E6F07B71454B91F5EAC87333AA9B29B1E83A3FADFCCE5AA5044FAD8167 F6511E27E444AF65D09B8A7A0312BF78EB35CC34545F9BB06C88A074EBD5BE87 763B3EB1EC2A4CADBB704F7A2DDA34B013390F0B63B0A618C6CBC2A7156608CC 332AF4C93466EF7D18E85DE5C5B3D2AE50A44DAD39738274E4B1E8D350FA4ABB 0189273E99A3D9659AFB5C29C68FF969D3681D28B9322EB08214CFF9289B52F0 74E74ED0F1DDCF8011A5D3BC4AAF6D8EAA4643C347B912544026D328BA2BFB5C ABF3D683F2A0AA01EAE0DC9760DAC0EDDB432415B1221D35391FC5BC5A30AF20 79469870D85F59B9BA86B928A0BCE261D4A2296BA7AFFBBE7F1AEAE1108CBE81 C2E5C9D7F0B64E634268C2510EA92E10C1CF3AA7FD146106513F7C1F63823DB7 F7CECB5A80ECEDCB41D3E91CB4F3FA9C8FBF3F62A0C488933D55DD2DEDAF0947 0D067211819598DB2CFCA285E3A8F74E7887265847DFE8353C428B253EFCE70A 766A823759D68B665CFF11BF62071F2F8879D076429DCE282C36ABF335E2DE77 BB53D459A024B61A5CCE35ED62239410C0E6D2194CE14EC54DEDE8F86BA83FC5 3EFF391C331C78C5C9C754F81D1FE358D76E84F470BF6DDF6EDD643E62680098 03840FDDAE498DA27306296B282E76A03EF8D593EF0764AEFD4167C98059FCFF CBB638E477D6FE42537F6F7BE5957B0EDC591363D434D1C60F46ED853E8E343B 68CC70D92BD90958345DE0CF9F345AB7641CBBDF225AED9BF559F6D2CCEB3D7E 91A0211CB5628CDAD748F37A8E49369425CEAB98C9C4F4F0554F263371D2C9A4 16466A96356A3EEB31C362478D5D6B849E02F6F1F7095F9A7CDDEBEB00524F2A 3191A5B347CD1C75511FB605579D6D718723D3C1E26862F78B5803AD3E6958FE 6777D6E374B40F799F13514A7DAC43DCC6B68B7A5A0F25A57F540FD87AFFBEFF 3BF2D62098BC62B9F111E663E753347E7B40B2430E89C4056C71FB142DA00204 6D59F1053CD6A1A030B6EA70302114E4480993E3447C926E208226375ED723D5 B18698957750DB23498A960066FE6FFDF50B97B7C46960DEA0170CC19568A0E0 371359569055135B47AC83242238F42B29A460798E246A70185B30A026762C21 B0F1F1EE8F3F309AE8CD042DADE3E36151B3B7929BA6A14D90D924CBA141D1B9 8DDE94E46286CB6BC7604D84389890C0AA8B97D329CCA87E5889F695920588B4 582B88B39CE78B8C35836AE8BC5C66A86DA1267E46BE9F20186DC3BF636FCC29 141302F57026469542DEC1E8EF2B54814EE534C87A1B4699D58D1CD95EC4B957 802383A21B8CFBF29FBF643E452898553CD5FF01F7D73E461CBB43186A96C66B BE5910A0F78C730FB54611E4EAA909096A77574AF9F481E0CB8D15AC003F336F F8FC934023F37DAB1F5E0FD58575440E3FABEC39851905D14FBE4745D11246AC 2EC21E7E547F4E0620EC4900C327E20248F7F6D60BFD8564FBBEC1D36AA9C27A 5796EC4DAB33961A2493EEC2035BA4C49FE459BE440562DC1AEAAA6330732146 CD7E01AD940744DBD87AFEB4671A0A0ED5CF115E3F4AC466A741F086DB742965 3204FEE04DE803F0A0F53D1EFC1A916EE0EACE7476E1C173EBBE0B560E95242C 5CD33B424B8BA6C9A26CAD4B4A3B37C6FCF2EECAD1E8227203686172B25B376B 8B03F6B7C6D6184CFEF80170C1E8B97B77B3E7DAE20A8DD97B04FA0D2B955F92 8994806F6B43944B520F4DDB8B0B6DEF2A4AA7E427F6524B915FE5145C055915 D2753FCCBDA11C598DE694011B929475D5A1855934B03118D52ED86419047DAE CAB3FC969D072D0036319B517B51679755B7E5647543BE8C60387800139D5F8F 1002D480015EA8251624DC1442E7FC84B46356200BACD8C99F1A581DD42F5798 5B5FBF460CF1F10E3125211B0128586D65B73107E32FDDC354541917310B1467 D92B15C317576BDADFAA7334C14E32C2D811B22E6ECA84BE80532D5FE222576E 94D6950015F2EACCA793406DC18C427864AB6F4E97EAB9BC634DD0B3179B9EFE 2C496C1AA898C2E821E23B5B16E7C3081360CCA50D42A459FB603475EFCBE5C8 8610E9D856933CE6328DD3EED0C2EB4497C9D7622259AB0CCC303901051C4136 4A235BF3CE520FC4A6D4E99937DCDCFB359D15FB1830A434CC01FB8A840D893F 79F38DA3641419DCB90165FAF459070A2C4205E1772ADE564DB3E5AE47045EC8 83FBCC23CC6D41C71E83A01339C2BB9A4E8FFDF67D3DD149C13B8615EEBE0963 21F59731B52B83DE23808F86523F88464599EFA1E726D3C080D13752E18AE05B 60CA2052E559B00E9F055C692F1EE98A0C0B734035A21D59FDBAED45C5541A8B 839F9757C6D3041144879185F75952B2E1A19B01CA1665B50B7FFC911C4D9D1D 05B0107D9FE3961A5B4A447C1CB3E8E88836D9096B656FA15CB9EE3D19A5833F A5899996A26BC047D0F69BB9D243328FDA3E9D9975DA456946070A48E641D10E 676B14F21A2610055B5D7711620A201B465EDC837E661D4633AF96F60CF1808B D32318CA59537415287AA572AA8CE82E522ACA934B9AB564E1648E3378648C26 01C8EEFE576BA9A308E2C0EAE7A100F57C0DEB11623C6FBD57AE045048D4D1EE 81622AE08EC95179E21AE1C6D5BC9A0463BADC098E282B18255A0414270E41EC B98ABF908114CA425B3E4609F5601151B3AC79055A14E1A2CD87ADE46CDC2047 C4AB59252E633EBAE216F9EAFFA55811772ED0B7A75CF4AFE8A7E59EDD252CC9 43FC4E60B3E47606760D06E3C22C599856D0C5FDFF00627484E77DA4D6F51460 5412849807945C28B25A0B684E33D02EC26401708C1DCA683C85FAAF9F3D74BF 66C485F3D5F73B785F0A2CE231538BCC1E9DFB145152768C84E32F33CD0BA1BC 36D0B9383AB4333598627553202A39EF3E696C8BC58B0446D514822245D888CC F013C52BEB7067214029B943D7E93FD42BDD589FE1FC0AF049E20F60A8B03B41 5E7D4CE78FC1229D48F7D751407CB8ED28258B6ACE47F74E0EC4BAFBB4D3327A 6EE3977D9643A67CCCED9D34A563CCFE8BE6C57CFA39B90E5BF8AF85BFC30B7D D6E697AE61FA9633EC1C7806636A916B30073E4C215280F73B6BC10DEDB15202 827659B00933C6486E67F96D81FB80CABCDB9F159937989AB3E55878D53394C0 C7D5E16C8EB90551B1F0DA4F06B911CE34423CC2328EE5E43292D03C9A41D13E 871EF89008148EAC9C5CAF24729019609D114CA82FBAB5EA34311D5710EBD6C0 37F9D4A31AE64CA73B1499B39512ED67B605EBFBA6682D0DD96E23063CE3830E AAA4CE2F1C6BA52DC2523DF4B3EF1F97298F2523123FEDB43F295D84E9F5AA3D E6F1D4F813CB884E940A216A0C6658D1E69D28F2CFA4DEDE60059F4E919D2246 9984DAF8A569DB04FD56E11116BA2296BF63ECD1B65B3391E6D8B8A8A8B95318 8F9C9B88B7171D73E0921E5C9959186A20D01982D38CFCC5A4F91D31E0FA8503 E05950007B611CD36D3D714BFD49F6DBF09255535579D0E0E01B540E51FA68EE EA6362213A0B8572AB83BC8E533B63C6FDC4FF52507C34739F64C528A815B8BB 628BCBFFB3CA3C2F501182B46DD1A72580E91BF85FEF40029BA737438729C51A BF25EBE3882B8351D0F356A6648ED0F11174EA948F3F140FD7DE1821BED2FDDF 8FBA1DFF2786C0015EC2A8437DF5F02AF89CA383E622570EFCF2895E3CDF60DD A64B152E2F5B1DA795F50C59D80FD35AA7A2CA4B55C3A1E046C3C84882EB8D86 AAC4750A3A786948FEC26CCF63395208DB2DC2DDB6310B59817ABDE61C856183 500C350E58D4847F1FE95FE6068508A834B4882D863691F3DE33A9953000D8E9 A8AC105E3486CC974E06351B1365D157A6948D49C904B075C195277F943C80F3 786F1CB9D118766439621C23095FA5749C945E94648E70940DEA20F7BC66AF49 0D6BC622CE00143F979085824A2A1E850D68204BF44161EACE7F8AB0E8097B9D C4ACFC76E36776BDBFA4F03424C4E286A6B925B98EDE522B21641C95C0D2910C 6425C3465AED57BC4ADF0633D0AB3716F5C0EA050C493D84AA1E0903A20F0E3E 04F2BE6265DA7D2E5D308337E1B50D361D0BAFB054FF5292C58E12ED0A095870 D39C50CAC7B0B010DB79001816F7C5EE04AA562E11F87CC6006B9396DBBCD9DE 4D25B032C5419D85D28306FB3543971B4384AAD68824D78C4E30C945B610E315 013151687496006EB9D8E867B82AD13770535C982DF8F84EECA2E8382D1971FE 8C4D0F28D8CD60B2EBD10550F51B3DA50C7CDAC3553F8530D596558B238FC24E 26EFA58FC455D2308625E4ACB5A954732750A03D25A88207AF626534D73D7086 F21936FEFC92FB0E1942DF5E43A52DBF41595BEE66DF4C66A769D9C3B316E332 F1B94E86370C14DCB944486E47A0EC71D4169ECCC072BEEFAF645A4CF3B8AC01 1543972D34F94639C7CE00CB64F522BE3053BBB55E8E7470680BF1F01BDFDFEC 06C3B76ECF3D8BDF4A150ABA5455ACA30AFB5F63998B277BE7EDF9268C07A751 9DCC7CAF54B1F615F1D03CF3E58A447C377929CFCE75A6681A7BAE4FCE70281B 7E4B69B0288633D39EDF2F69BA310ABAF715E9B1533EF655986811EBF695DFAE 902D7C4F1FCE16EADC43529513B9DADE8F0F4DA4053549A930D311977C6AAE0B D5A74E1F269D484A3A209B8F87C9D5A1E4EC5FCB83A2292DA43389FCC2756007 EE9FC95E4072CCD35BA378DB6CB79CF7B27F017F1C78CDA81D887EAD7A9F3BE6 53A80FE9B5F6B159E32BB7C927B069B0C94524F061C8D05810481A44A6F12846 31FDEE232C38AFAAA1C81BC3D6DE2A4563A2656B0978DF8D53936C728C3F78B2 671E7F22CDB339E25111E66AF44DF414EE12268DBF4409B84130157D861727CC 259A9E95B9BEA0D98F6620001C3912E22C2267D7EDB65E2C20680728C4043D5C 0DD01B294BAB0A5AB7936FEA9879682F48B1C39CD600BB8CFEA75F04D937E654 80225375EF6F2EF5B77857FD79D050A2B20BDDCD94A9B455A09BBC746CF8D5B7 93D5CEDE3997B1CC75634E2DA7B19788083B68F6B8ADBE69276F0E1BDD33408F 27497492E0624F96998FCC221F8587D30D45E56E5531A730CB08345B9E792AF6 4AE3EDD27A5C6D8E0F523AE7C97E8481C775922B48E3C91F09DF62E1D41F26AA F5C72265B567BE0B283D6981EF0AD941619574C4584CF84D9693E0CECE14F76A 594D849968EEE1F0984C7B2A37544FB2EA102B1ECBC8E48113579EAFB12226A6 CBF0C0152DADAD834A437A3A59D6672E74DEE4806A820477FD177A8967023B27 1291B58E507B0F68FBBAF99A963E9F90F4A846F627FAB4A2E11507689C4B5EA2 D0A79B352E8722EBC3A662C84F6A163B64E3CF96C59AB5FE04201C0DBE426AD8 9C7775FD046E1F2F4FFD1CF5820338C5353506C34D99D474054EF9BC265A260A 630CDCB706D2BB45C343E8918FCC8F65FFDB3655F565554D1D451B416EA838D6 59A66763C9515B66E20932B41650E01A27E3A250CDD40ABDE0B7DBF60FD08700 6885C8A7DE9F14F7E8DD6CD85E4370C2E3BC26AD2AA416A36877507DDDBA6832 58E0A4BEEE2495BE6DDF7C71066FFEDAB5FAD4ED9B4D6D97B70468AC407A9FAC EA45B5F501611EBAE7CE46F9FDEF54AF912E238315325F664BD295E53A05F73C 5318EAE8D4A34E472776F142C57F34087277308336A511A3A65B4C4CD419C288 F6E5206D62CF4364C478E9F4C6B64E51D2457CA950B9125D22ADDA4AE08AC275 8C2399EBECB69E7A5D0E31726E520DC5CF7492C59076B3AA425383A04C653C50 34E222AE91DCE83E758C1C6DC3005CA2757CA73102F584CD2E799DA49C77FF12 4911D74BEE8DB74B1F0298CA0A9EA5BA2459056D6D6CAB0A90A68986D492F5B6 DB37630B7058B6161926BAA0D62C8511000BB7D2FCB92C5922F0519A1C1B3977 81329801A5702540D4F84385876DA07CBF5D648BEC2030473C5FFDCC29ECEDAE C3901C5FA181AC12187415086F68D913CE9993D40411810C505DAA8613C80EC0 91336623D5686BE49074CF8A39E1EB7BEB212F635ED15C0CD1653E692623437F 91314D34CA09C3F66C6C1F11BBDF5F720CA4787F2441B7B9AA47C7FF9EB113F5 E4E57EA7040314E093B6729CD3ED11D18FEA94D60E1D976C786EB52475293FD3 C0DFB12695BED5E1562D3EDF6C9A54120CC23CD025D0D3DC32A37C5BD00D6263 5D2808D9B2E2666CF4CF92002B9F1BD2D3E12DFDB18D40DD52CB427662ACA883 1190B5A2F9860B20D521E55129E7333DAFAC54ED4783F40A8A7A69F04D7C286C A52B8F3F608BCED599DBE28AA6F69A0EA54CED3B0A21D199363622352E8898CC 9B5B0355CBB533E6B179220872212360EB718BA0D9EF404E4FA7439891D2370F BAF1CAAA2802FBA445687E743200FA6B9E85266EFA88D05E3B2720979A43E724 64F79B714FBCF388EF35E9CDBA1B8DFCEAB836395907A0EBF22D285883B1B3D1 772E00B255032ABDA52DFCC0BA366CFBCD081156072DCFC3CCB903C305FEB7A6 D16B59AADA73E1A06073D20392DD17D1FF43C4E01FA6D5801BF3C61887658A72 32E319AF638CA3D03BE51F832F9BB24920B4E47D0E3C96FB079D771CA5C310F2 B8B4183CB714383A50E3948F6977B16F4A368C086B2A0AA57C66B30A895B159D CB63B0FD7990279EAC00F0146D58282A8EA7367BA2885660ECFF69C64F4EEAA2 F357FBF8A514D1002CEFD82AF39D461E2BE59543321C7A991B9576778C5A7EE6 34703E9842983E2580DF60DF6EBC642EDEA4A1F1CC34E754327A02DF2E9415DA 08CE3AA32E1A615A484E69E6BBE4A64C2784E27626E017DC0DE42DD71EAF55C3 E3D15BF87E9727FFEF3A66512C9458E557517BCCA1A2E92191259D1EF91D6E12 6454380986B17C55A4E631C6DD20E5F87208D2045BACFB6AAF14129108A5B35F 41B29AA518D795C955EB247BAD1D1F03FEC701BA6CF3261EA985A932834834D7 DC8C65409644E7315D66109D8F92DF5F42070B97A2DE3B69EA97CFFC71511DC4 24A903C704479F445BE051E96AEE9E220EDFD0934CE793AC43843D88EA12757D 52C10F73BD34C812C1B306CAE0F18D7D1B095B9F5EE76256605E312AAF795609 94D3FA76A6984C63809F0EB8741AB3AFF516C3D6F8FCD8B1A43F5912A2D98019 EEC4DD105E77EE0EFF0D69A6A55370771E21851B58AD57332DE44B5B2B2AC29E B58FA30709128A9862C3579CFD08D85E8188D26EDBA5901D510B258531395FA1 7CD5E059CAD028AF5AF313AAC4B8BF60966CA2B53DB31F0659898D105FCF4FD5 DD2B78C838EFC626CB81B32359CB11C5A3E9F8ADB8B1201240E34009BBD2E23F C624C1AC532746372CD00EC50C92B576AB3D5F086B64119510DB8294D48DDCE4 49FFFC05594275C796DCBA291312159CA9EE7BDCF3613EB3D962B6967BFE2BB2 5A9A441DB81FC861B10F910BCF5E80B77F506EC8A64E6ED10839333BFD7E25B0 CF6FA7AAEC17251811C44031C7871669C3343CCB0D0921BA8A9546E2C052CAD4 BF765EA279DC4446F1D31ABCB9E6358A11DC2C1AB1CC71C244E57B4852A9CC36 8309D3B5C0FD91CC6086DF741237ED81F847897FE5CB939AF97C1B9022CCA3CB 227B7C49BDB2FF6AE381E282B42D22BE5C6326A8602BF364BF81FB7367BCC437 DC971EDB49E8C1AABB29DB90839A1A70CD20DC53DB0CA61133BA0571D00FB797 13629C59658360CC0472882E8E6F085057ACA3FADEE34BE0832241EF68242F90 AB650BD7FA6E8EF0DB539346515580E57D3B08BF7F9846911C6779A481D1B348 D1D0A1265498F0ABCD04D50581ECCDB89117E4889C4BA30DE7155F6177E3F40E 1E9DE1367427C3A1F17C27AADEA655D59CA7B6C2FF4B833442BE50A87B2D4D1D DB57A8B5C3201433E00728A9D9511A46C3442C3E29F6D9554402A516796E60D6 23E6D61F0ACE1B60D45CABED468523416532810C10DF9E7C711F5356970D5FEA FE5D366722FA3F10E097FD16DAA5B68614E7D29636019C4ADC916AA6F45E592B C429AB5A668E1795DA4F755D74126B6E230587AA57E3F9630715DD6F224CC236 A5F67B3668261FB2D2550F16A9700B1D997D2801EBBD0F113C47B8A13960775C 6FB40EDF6D6276916BE3198448E020A46BF782B4F02F3B1C85FCBFB2B2F09578 F90BE57A53B596E9499F9B3E23DE0BB1E159BCD9828A47B3B1256D305D879517 E172C1E3725C4771B3C03C9AF0B62EA0C5AF7C0D692F94FD1E554E3E52A0E7F6 835B95866B7F72514098BA1CCE2C3613FCA568C3594534167648E2AE52BE3F9F E8207FFDABC084BC74DE49FA0E8C61739C28C78CC994AB707C2C04860F0C3F03 5929D056CC4CB6FB4BC1DE83D2FDF9B2128667B6A2FCD13626D3889D83683715 131AADCE22BDFCEC3C9B03E50200BCB5321B42D108DEB519A5C9992B2D3A87AB 4725F5DBD2094F8D9ED8835777C2793FAE8FE40F3EC0DBF4F1362A148F890CA6 FDE1970FF1CDAB096D9355B755AA0D93E6E11E9D3B1F5EAF537E48C401A75C85 58AB20685E5C29DAAA6A9F90B066E991968475ADEC1F946C522449C0CA2A38D6 A8789A6871F96165AA3EFB39089D22EE69BD05B4E0853D3C33CC84FA7ADDD576 639456DDAB65EA50A3C711F78E8CACD7E112035D5D1633819EC419BF5AF0CE9D 40EB6603A55A7A2BDE2D6E9FE476B1ABBEA673B397F2510066D0D5AA650E3D1D BCC93BF8585AA04228DEC13A6082A5DB015A70FCD1D3EF72A1CDC6D8A9705E02 662BF3F0F8B318108CA4C9621C01D02EECE3817F9EEE14D30C34EC262CB9197A 377828142C04BA679630C281AE4A02E65604DC7FF73859163F0F0640316D079B D42F807A41D0D128E010C3961B8A742908ED989BAA0CE2BC9E9C26DD73DCE3E4 7E31D958F4DE4E3A1B161B2C5DDDE9D1C693745D146C83F807E5BA7E00057959 F00E3FB89781B4F084F5B24A42113E4B74933CC32A11877B4499A19272B60985 9C936AED3AF65C3156C8A705AB51749F99263FB2D2DC4F21F8AAC6C9168F8D28 414A602824BA3EBC3FBCA1A8D29825680FAAAACB6D9B357B437774E6C6A1BE61 7D146A9BB073E1903B9BE2CC9CB5DF888C51B73C8C5674B172E4BD5286F80E8C 9718FFF592B56E1BCAF33BAA26F5FD402710D27A0CCB1BCEA92D9BCA09983B1F 56701305AD3830A74CFF0091BEEA6C706C3433977E6F3BEE52E77BD7B09C1D68 37C3A5ECCF06F8CE25F105CF88FF3239DB905472E10CFBFC4A0FBC8F587B1017 26A6080B364D6C3D7D8988AB1B4CABF6EA6C5531F8A82F99E5B111C81F9C9412 0C54828BBC82865316FF0D9E8920BF00E1BAA976FEF21D0A10E8FD9837799623 E4CD5E216ADBD1D76518815FB49EE4AE73AEF9447255A99CCE4EC068959C8D9F 6FE965ABFC53DD09C063BFC80BC1E6463DAFBFD673262840CD9BB67AB5CBFF2A 383079643499FD42FDE13BE2FFE2615152FD8457A547FCBE2C1CE0691023CE42 3409A9B2B8FA9C4280856899D1590B36596B93282128E6AA6552B8BA7072E603 FE13711746B110FCDE142E497CB2B623682A60F888B1514F7CCBBD86150B9DAF 24C9B763172C14BB79AC1F8AE60F9847D9223DB0ED5F3B74362F4AAE3D466311 79D35B1C81A2C48205028BFDE7BADFE708F104A2C41CD32BF8348E206E251EBE FA68EEC9738CF3D3462CBE7DBE7F725054F08D6B9F1235C525F8E84287381A20 10D4AC542CB292EF20A215A3BAD7CB43686DD5675663BF23D89E860D392B6FB4 6D9021EFA0FAB6E04999DBC8CD3E84D1C751B8D24B4DE92C8A80E23488882F09 D62FD350C636F73DFF5894861281974195F6BCE45EF55DEFFB318001CA8EF32F 864DD1459613772E6B23AB6B68769846BEABADF07BCF11D78E26CD09E76AA9AA F5F88F95AD6EA652C8E08D1A7BDB31E60B90F31308E223B6B8262A39DE23BA43 EDCEC76D6C8D82622F980DF095EAFCC83B79C206A314D4D83624B2617BAACB58 304274ACC6BDF5D2F0529FCB76E9B5BC43EEDFEB149D61CE36DD4672F80A8659 331AC6DDC433FAFD85BD5A0E404B878B2A34BDF8EDCC7E9E9147219C37C4CF50 1D48B7F84E95074412BCBE0C060BB8FF5AFA81D3D8F0509EB8D1B2950F5CEADE 51BF7B714B9784C9A6A91AC635C09CAC5BA326D1F5C52A636F2C6B61BF079DE1 47815674304950E4D724D68B4CAD2B8E641DF1C7B6F7587D258EFE9CA777E2C5 CF2DE3D47D6EC50B3094CB30EDDD1B31A58E8915A4D92E89D0550D1630E7D47A 5930E1A7F582DB33E1EAF7B15E665BB214F62D336F4D90C6B8F467460BFD411C 0296ECF5019A05553316BA7286B4B9B4D892AF6906FCE7241AA12A18C50B6168 F299DB45B7DFD3AE5DE34753A0E497B0D94B0178E66D38B494F850BD820D668E 9F3ABC7142C364D5E26345C6BF93B08B0CE0AAF87838DB65834DC4117B3CBD59 5D315844A0CC89757EEC0204E2CE0F2A2248B860FF1DB439294E9E107E2560A0 B804AC0CD639E314BDFC7A689BFD77A81075EB673A7C818FD97009D0BFD4B121 46FC748FADD2A1CADA10A04566049FB6E00FB8B5C928989FFF0AC4A102D00693 0FBC36B9EC7098BFCBE62E49F317267F5C8FB541B73DFC277DF4E8A049D09835 ED628F1736AC2E6F4BFE40AB17554271671A348C4CFE13F58D0A5B2A7C3D83C9 EF2ADDD7A6B674AC1B96BA31A10BE2276F45BF27344636A19E09D78E56798DE6 774D7FE7BDD3C18770CA1DEDC5C035E4623BF5317F724BD8EC0324BC1881C437 4EA69508C35BFD66D768A0AD744D8978DFB3DD210D5629A19D6A70DC8504C49F CDD35E164B973CFCF36DB986C6C618AAE4C58D32E21188F8C5760DDBFF24C3B4 F0814E471A0B76950A8BFBE86DBEADD5A2662B56A078DE456FCF8FCD25164140 694844E5ABF924CE7CEDDBCF7F4492AFBDE34610AA5B54E6E5A44AF50F0E5464 877D6855416CB8980E1B114B6F6597347C432F2D29E4714A6BD4F3FAE8FEBAB5 551802BF47867563FEA5290BCE8022DF9D293FA792238B7F00F84E0F99163B06 744A2EE93224CE855C72E1FDD0E52767A30CF3F0D451081EA69D0A80893FA79A 1D25E6F56DFED691E90393FEB1A97061FC3F2BCD4BEEF1C6F56A0514EDE39BA6 BA4583B7FCEA404149425F6969123B3119AE25DDFCCA3F2F672B98BFC0C56907 DA2923A73A30B8FA2377F36620CA0392651CEF036AE31F1E5FA9B2DC87F2E8F3 B1964898A76BB97DCC8C63101EEED39ADFFAB3BE571AE0210309DCD4E4346868 DBC33FEE28431EE6FD3D64D570E04C269F6D905DD391D40FF03CBEF98214DBD2 2BB4638F41793E842B07A9CADCBAC476A6FB9EB23795150785AE1032FB16ECE7 3DFE9AC0AC961CAF16B492C79B669A9F0FBC7F365BFA02C3981A324E047DF5E1 41D2E85D6F472A6BA1D1CFC896E3DAD437689296B2DF397E40A6102493D09D29 06E359254F761F3E1E3E66938270BD46C6DD1EDBDC60CBB35C47D6760B17B782 76F6F472D584A07146C19846AF187267E7E1635FD04F311B7E70C7A33018C6A1 943388278E04542E454FF117491AE7B56F3FD5B01A31A89F85ED680173087E8F CE5365E1CE48CD62DB5AA71F4C2369A09BE3B0C134E550E72AA7C299FD3B26D3 8D3D744758A87ED77EC946914B8EC92136FE4884E30B545A2CDB474FAD36B557 509C986F87D992FA39BA7E8D85D5EF322ED08B1EA8D90B9E391D47D3FB2A3B9B CAF230B61E0F987282BAF6B10CD07A23E3468BBF814EA995AD6224FD4C919D96 A228947D0F2BCBF4B189F1BB9D2E1D1EF59F20CD6A045251905C39431C548318 9023A4297D0D21E380F93C9FFADDCE951D0ECC25D8A4967447438DA572CEA724 6B7743FB7D68783CEF142E50212C166D2983DB08B1EDCC59E426B4D73716B920 A14805FF0FB04DB3F7AB70A1068CFD39DFE12443ED4E8BB832DF520B0A750139 57D9A8F4CC6AB8935A3C01858A8ECBD75F740652DFDD752F4FFCCD4278ADBF75 C27537AE1D759AD75B7BAEB3401925949E4EFEB1C20D441996D671C51D327FD7 FE05253BAB53DA22FD071BDDF4DC3A9D7BEAABF49958249B5AF68B88D96FC333 FE7D8781FE9EE147E162B0F0B487272D44522D8FA39842C472F9D527149CACE8 AB0AB0E6E2D88C03E62AD7F6BAEB6E67C8EBBC94F330EC8DF632A5AD89FA1E9B D953CE17AC117024A9E4671E5FC05FA194D38BCA2737E73D079881BBA8BB78D6 0F72C39FF3F87C4161458CD8F6E07FF06312B5FF9F157014B545F6F1F58488F0 E64494C390A6CEAAA53576A32D53CB5B51563344002931AB82AEDD0BDAA963AD 902B6AF937798843B5DF895CD487402ACD82BCC95D10FFF93F71FC4C93B737B5 FBDD6DA8BA8AC357620F0395252BF8D626AE942B759F18D26C4667C67BC43ACA FB4240AD7DCAB1A702E3AD59138A1B958D23DEEDC8F24D46CC0FC6B58037F447 45A537C7B8CFA4D8494E737358151FF023B729C6BD069F980F33D5DAC4E278F0 FFD91D253C9AB617CB9546F992615C1647123D25E8DC34B257FAC60B9B04B7AD AE705AB62C31BB5A17E8CDB319B7A6601E8D3A5D144479AD66ACDF016B351226 80ED7942FB3E3CE3EA9C19ECD870DB4B1E616B0B8C5DF42551FAF463FEF88527 0367D3C5C0B8D9CC318324D3722F36E62EA52C1C7340A4756C8F79CF1EAE7A54 66FB610907CCFA40C9DF6C64D2AF33427AC1E44A843D417C2CE47E768132454C 42BE3CCB830D5BA1D535E0E0A58D1AE992C552D3C0C1A468C79438247FE04119 7D8217AA8E7BD66DB305893269F99E48A3248DD33444CD317B6B13BC7329F9D8 50AFC5BBCD7F7E8A625C70ADFF0FCCC913945B53DF83468D72931877B664595D 1189CF5E16CC19A1C4B0C8A1B9861593F722E654DA0D166DC93C7DDFC391F223 A9AF93757B01526FC9737C7DFE7258614F23E9C3FB8DAFBD8BDAEBB411E6B106 280A4CFD7371C884D1CE8710704751B639ED78043DFD06B0CE0EE061E7CEAFDC C442688CA7341531833129B28B6A3F012A60EB39FF5CAEF433C13C60A6F1DE5C C2E8384E7708B86EAB25E29B10E46350E3A0A01F09F3A1B09E79627A2B66F6C2 7E5F1C526FCF92AEF1399BC65C6D6C9E53EE1676A7BC66F41F6C97A8507615FF 4DCF870DE5CF27265693C26AEDE7684882F920B5A37C98F5B3963013AC586135 B5A5FC99B222CF400D777EAED21F3B0B5EB3EA34FA5333EB5478D17AC7AEEFDA 368AB0CADBDA738B602D1186D3CAC6D79ADA72D2E1F2EC7107D607B663A9EABB ECD6DB66E5EF29F60C54928B28A0BE531AEC484EB6B43237652F9756C8C14B64 FC229E9CF2CE82018A7F05694FE9234D5886366E342384ADEDB53AFE5CE37222 F00C4B60A4837F6D2B04798360D2E84ED5EA7A8EAD38DDC0C1A30595FEA4F2A8 E1EAA5B4AD4C4931B17A971F32A07B9D48DB35C083345DE2F74DC9ACFA988B3B C909264AD0E95EF95E475AAF7D3681B4298F24854CF9E93915530BBBFBBF715A 0D6E9C83FD5E0189D714E5BC01BEA29FBACF253A0A2C07D5774AA8ED1E837452 1DCEFCCB4D39FF3B748F1EA2A3A02E3E9562814340CB4D01643745A795FF68B8 7A49AEAB3F795D2887E1339AB5E58E97CBA70D62BC844EBAE6CB0D9ACCC55D0F 22CAF8510023FC9ED3307A31747B1616A87026AF5E8B7A3882041AA8F98C7FA7 BD28891EFAB5748F93C9983ECB6EE46C525699FAEEFB24BE1226BE84BFF7C967 0C2826527B4152ACFBC75CA8AA608C83E650D1915292D51555311AC9AE837E36 1731A90FC77FDF52CBC5E3941188080B792B57F98317B1FF61E92E6B023F531D 7BE4F036DC3DF11711ED1FD118CEDACA9A550CB846E10C93BA7037676CAA105B 33F600DE469E5CD1768470D8A136B0FF623931A8E0861D3A35EE733B529FBFDD 924A21B496489112F6D210E0E4C98EF989FB07DB5B5FBC228A164358B3F2411E 3C2F24585AF5EFDA32325B466010F0273C2FD0907F87B16BE8039196B28751EB F6DD29A4F455CA05496521A74E3138987C1C2615E049E3E5AB14B54D6E2359EF DDC13608EC4B7F0713796C312C08775747D2275EB26FABFA3371F05DD11BFD74 3512C5FB8E8000D09E05F6871B0860FA88E24A7C5CB61CEA9E3A112C53D117CD 6B89CFE96BD9EF0A6B9A24261A8BED518CAF65F0797D6CA6018BD6D5598ED7E2 148431FA40639E8725FEB6E10B48DD8B035D57CC0E554877363DA6205FCCFB5C 718323B7CA09015029F7C3253FEE03D11022673319FE9FBF54A2F5261C4DC16D 9ABE661AD52A63710EF6C546A3EE8E0493B7B5808169F2D86CCDD826CD7769C2 65C9253EBDA76C1DC6A431750B69BD3626CEAD87323BDB20189D09E1740A63D6 C9F027088E51A5EAA2DFD8733AF1870214AF25EAC63C9F90A55E379BEFC17EEE 61F31ABF17512798EBC9B4F1C96A58B15238D3B5BE2BA97B48D27160110C60DA 40FE2FFD4DDFDD4161A89158BEF42CF9E726D5797C91F9FC76CC90D24AF59CBE 60A97A6494F32B95ACAB0D59F24703A2D1350530678B40D66238B4BC48110DD3 A880FD437C78AAA94997ED8A49083B9CD843937F4FCA9739F940778EED9413A5 80BE8A47258282C2337E630F6473CF9022011F683B87A8EA0B02A343AF7C896F F4B8CDDCD917248E37C0764BB1E1DD0FD406A0D80D9960C6C32A81E209E6478C ACADC1404FB84BADA418A5F950EFF6FB47B6FE500752E1E5923598A97B96E48E 9417BCBEE2F698FDDB9F5CA45568234525CADE3F3EBCA7D1D36DADCE085F2E12 B6C6B26E3D70892486676191C73A7035A6E4F8124548332A0354457E2B931A67 7E15A1DB1C802DF3D27208B0B1C8553ECFCD9B0CE1C2F950E26708CC128CC965 4420238882E48BE71CC52707EDC8DBFAE2563E66503E74F3B71C0BAF3872592C AC12D490F998E2198C8859342B3E769281EDA05289F8A3A4C4399E6F427ECD18 A8C6281497751515282506477A9E0553B6ED1AA8C89F2EC6D244267BD358C8A7 27725E0D288A0344D21ADBA5E498898A284B3A5F2494E4AD056DBE7461FAC6EE 0332E721A7F7E2058C864E02EA3DB74E476A1094F00BD5CE8D85E0B11E150C9F 95D584C11CF6B285E4EF068C533FD49017A51291CE497F6E336577EEA1C39E67 A19C2AE6E8EAE3A8658E8174D98289DB1AC6DBA0EF27F2598F35E47D6B94C8DB 059AA1D803A9EF242F88A7993872A141F97D76B3572CBB811F34E066412C948E 7B7B22AF31C9030E333A104DCD5F29E649901D9168E330C8BD4DF7E50141408D 267AE9599099CEBBEB392A28F74CB75802B4AC5DC979A0FCA75EC11F25DAB3FC 67DF1AF2291A93D469B3278A2DA9397B018024125A974FD7D79D149475726085 02F30E996960097F6CB908C90E5EF127E5D2543871139A7CB94CBB2A5FCDAC6D 755A60F53344570C9846812E6766F1E2C952AFBD260D252129CB7C19821AD057 2DC1737D49FB047C564C4809EE21B6899F02916D50CF72DC0174BB5A75A3DDA5 74F578245AE90CEB882AB4EEBD1A4533D922197C400A2F651C1A6C5F4FFC17AC 7AD689F45B1722BECE5F648584C778C96FB1C606DE7E7C6799964BACDFF5B239 A7D25397BDBCA2DC06B27246728A6A6DF1F5EF6D8677E6DC2459472211A35500 C8315B238FA5796C2DD19716204C9D6FDC7AF0419A8C3A927250192E85FE3D95 924C818C60F4234946EB58C7CABDCC0ACF82601468F963C968209AAD57296D8E 92797D765E68C6B64DB292C1AC7A779FE7B671D505343A2D32D0898A1D90E000 EFAAAAC89A3BBC3A92B7224E831F2132824875BDB04C318B018B49009FB4D0F8 A41C484ADE005751538675AF75314008C6F45FBB3B6B73E80D223935B9D7107B 3D2B8F2D967D7DFCD9F2F9EC3338844F5D1F36E2507B2AF6F33A495CD6701B1B 76630A10878911FBDA1E8590BB83D5A59A5017A0566974818686187205D6C1E9 4B8BC41BD5CAAD046F99F989F3FFC38FB507ABE17C03B466E423BE3D38B5B659 4115B2527B2D3FBDCA1A2944F5C107DFAFA5B3FB0BC6536806F5D9BE46166CF0 F84D3EA7F0E5A904295F84E63A3A08BC02B75C33507C5F09412242B348EBEDC4 7DC51DB5D49526AE4344C51EB3CA8CDE0F11F9059E85CA54122ECB587BDC5A3B 7EB1B5E4886F976037B0D1131D9CCFE5656DD9F88D7E5B099D4862F78B30A7C2 02B3ACA955C31742B0C732D84629D705F3C40ED57FA05C368EF688D075E57718 6DEE8CFA86CDA31277ACDCC66A23D0656B20BE6445021E16DC406BB68D548F3E 1D2CCDC247B2A9171FA02878C108EC0FA6AAC271A82B8444E714360681676A9E 2E30C41E9A40FFC67C7C9C7FBD10AFA5DA7C228A1697A090F6781F2E75C528DC 56BE079C98DBA4D248DDF9AA7B6C52BABC2B66218AC0DE509F08A4FCA26C646C 9972C2CEF664ECFD1D924B5D5D7566A6B859499F6758CE7B762CF986C0736D80 0B4A4298E5EE920AC718C5B64D5433FF3F9F631E8715ED604D708556781B1539 882DD8627E2FDEC4B216C62D4CABBB2F115CAC56A5D93EF98E30D058EE634DD9 95D5D1AB4C42680B3635639EDF9A52E29B37FD0BB0478E6ACCB4C7DBB5F9C428 755744092BD250A8DDE731265A110615C300DED7F143D52417377E90B91FF8A5 BAF6324B3EFE85B2AE0423DE309A36A64E4369353E6C2603E802ED31B56E318A 8F6D19FFCAF6627099C0E3C190CCEC20C4A7DD4B47816D529138E2694EDF54F1 867F0143A444024E0528325ECC148D779F4C98C06FE9E752C366416044EE3FAC 72D8AD35D89400B4F00286191C16E16979D5EDCBF4FF9EC868D6E3BA7D98A83A 0710CD1AAD878778C0A4F0C9829723572B4DF407490D64B5C49FBC047DB49F33 E824A4343825D756D894B41EB70093103C35FBC09FF55931B81340666A0B50A2 7633105B04DFB6386ED196F7D540ECAA058C0B44E89141B68CC41FC21BB2C4B4 4B13E070FF953B88A70B3880561FDBBF309C68F5C159D90CAB88B04CFEA0F33D A48D289473545DB928964A1FF97B90FB16C449A27E333B56A1E49386AC738A91 105C3F6DF518A43C97FDC345F5553842D8BB735C33271A8FC7E3BCB3C662A375 53B8450229EDEC6156E41584971A159960569DE8AA7A959D328CC8C8ECBC0B11 DA239FB55CBE641B71150154F8A9A8A128F8B58409791B88AC57AECDCCEC9893 7B3363B091289345EF59DD66D83982931E090B8F2A8CFE8F46F3978A67E28047 48A7C711553E9846164FFBBCBCF505F953132F546583ADBB7F0A9EF02A6C3163 0057C83CE31709A61F2B9B09CDFE58F02211CA00C0672CE30572CA53BF75538A 57C1DFC3E44012F882BD50D4A3ADFF64D8E09ACDC5FB80CABCC56102C59C5B3A 8E7D70F350CEBD556CF6055160C1DBCA6411579F959C873E4149A3FDE8836252 FEEE3A2F3E8BAABDE53FBD71B074FF5F26AEF5A6663E2117BE561B21DDB5BEF3 73C1365F9CD57FD44C29C00395B7CB0F5A4BD22AFD390421EB238707C3D18BA6 C7A1B0B95ED985D208850AD1BB88103E7A7837F707F0B824BD1BA350896BC3A9 88CE5607050B136104344B3C9E999D4299546B7A107E5254AEA34E3DB09AA599 CBD028178511FF44D04C530ED6AD10EC5C41178CFDC71DFD30B1F856DC2A4FB0 CABC0906E7682033B43765B5F59F7604BBB01A7D660C3E5BFA8651CFF42936B6 22059C2BD479060AB78AE53CA8B618F1DD65DB73F507951738DDB94B1B2898B5 9724D93F9872A79725B86FD72BD7CC1D53061F8B55D3ED5701D99CB24F3F7469 5D456C51BE9D32D8F101E50CE4BEBF5A8E97EA0580046639EBAB22BA25A69EF5 D80A9854ADF2C2F754C35F380F72528D1142EE6CE628942F3F98C26EBF5A75BE C8F6DDCE438A2BCB35A51DECB444570E36FB2C4AE1AF422C91AC39A18DB9AFAF BA33B7C945743E2EECDBB82C10510C7D8EE5CBB80AB3036F259FF0053E1CD954 650C4359157167A10C67372C068DB33982CB1101757966FCEC872B24CCD65E0B E1CA44F1CDB5B42616DEA1E07FE6038A0FBF4B1C314FCCCF8E2C8B96389BB33F 978440D27041708AFD22E3E2E3D944D152F9A5F2E50A08BBEBADC84A7E0039BB 4651884B79D1AE90EF67AAC2A94BC1EBBF38F7E4B3FFC5A421EE7EEAD34CF658 C89D114027B859850874A5FA5620D70BE94D480EF1D2069F64C9E70C669496F5 918606F17D2B02178746BBD22FB088A7354A811836B7AC7CF69964B01F7B6C38 D97DDCFF7F2A5BAA1D509D5EFDFB82E5EEC29F2F12879510790882D7A6554A0D 35394CD4CAB3E352139B4DCB9EB2AD2CD31E9717FE5EC1A5D0CCD89D2A6D9A55 B0DE096EAD34A9170CDD32D058DB6DA9DDC7A20FEAC9A351B2144C9CE7CCA732 7F13742A7F0D9A1736A857D465EF44F316F8B165E30106CC22C5255EFAF1C02E 0AE0B448B88CD712E94BE503D0424B6D2E42CE266D35B246D9C92DB1032E372C FEF9CEE8853617CCE04505671F6A2F421B8D86C775BA10ED922C06950EC3F162 888C5E240F3A4E2B8A1F5584EB8A5C86EB099396D209DDDDF6239D612330484A 7D1578FD98F395EF6FACD488B64C4BC127C129260C4577A5FEFE60FC476AD32A FD26A711ADE1F32F869172C4B770C0CC0456730C5090A39B81CDDF7F43189A41 A830E3D0875FD39EDE7BE3A37C5DE8BD0D53B2AEC076E977835BCD177D55B487 ED28D26B3CEB6D86BE909C92C4EE1D7BC27BB10439A27F35C405B76B79C0CF98 21A58E3E4015E50CE027AB45E1B1892AD44477D37E09AA6CC12065749339D505 D96A72AFBA6A6E1390A6F01849D607E6DF07B928A490A424017C9E7199573F6A 8CD3D62355CF57FE164D79903F81679B4998AC7A65DBED69184906D6A6AD7618 A93DC4288D72AD42116CF3A527E6F6958AE02E2AB2820C4C8235DA5F8C161D62 7796C9FF711917AC9023CFD7BC831AA847281DA84FC40DFB8532AA9A6E24118A F6F0E95313894F71754ACF52FF8AB3C9E48C811D5D19A0B686B8E1DDB9E3DE55 7669F0BC5BD721081891536D9FB45D5FC6058F768007EF51315A619EB93AF0D7 74DA6F7C1F0C419A0B623A2DF8AC5F81AA66CB8EE50B69CF20B7CE88282AC1B9 6A758573DA78757BE583FC05245BC6457EA6D1073FBD3F3F506139D493E56B05 EE5897161C99CAB23AF97135F18C72D6B0F9802A339E3576271AFC00F077075A 3724F96F7D1904838BD92DD6787D86763B553822D81E63ACB53EFAD31981B71B BECEDF7DE2AA12ADBE30A544CFF6883A0869631F70F36D931E1077F8788627D8 AD4868D51502C35C0C3697C811AF509C526689FB4F8139772964F414C0F5B120 37C04E77902A09414406E447EF46510D80B5BDD17B712A5137869B813F673C63 988A772C0B49D04118B5D5E5F8D07FEC3E8000FA1FCF06AAB49BB73791E019AC 148BAC5E4269A39347ED188848E503E0C04E548D4C5E0D1FD132A3EB91A9C92B 9218A29580F6A99352F46C747C29F87EEFFC7912B6A60426BEFEAE7EAED1AF22 C757AE1D228A336D999E620934AE9D1C124E4190BFD280B24A40E8519854D386 8A6140A79F2C1621D94FA49B4B869DE236E51FCCBA2600BC7BA951EC067E6759 C4C616BA9F1AA22C72DB3759A24F77B63DAFF16785F0AD51B92DE05BA3634D4B 941AD4E19379CD165BC655EB7519B58608935196F2DA9F17CC2BC1238781D29B EAF0FFF3CF529CF48890C17CB1D97CE95AA2BF2827B43B39C8C61FD91E7BFCC3 85A92AC0528C12123EDBD7E9B1FE798EE0CC8967CE01D19276E8BE4014A06868 6CE0F5FCDE2256B8D2FD077945BFB2BC23342E4EC323FA864567F8867AAB0196 3946CFA77BD98C46666D80D4C67808DBD53B407E80CEF7DE3E9120E2AF3B27CC 4F3201027C39A296C1406FB76BCF9E46537DF1D3409812DDA774C146E135BCBD 62E1EBEF09C3472DC0DBB9CE13B31D15516B50280B3C09E9F6EDE5B05B8D0B4E C7AB274068D129951FFE53FA5F0E85B5F1DC12382F11B5225FEB793A1EEEA45C 458B1EE64C7E2A787674140AAED80C0521469C3469EEC92430A9E3ADBA3A094B 73A71FEF38E2098E4B882D171524BE3B4BAE4A568846BA996347E728580F6AC6 EB4CB545123E55D0EE933CF9CB63EB60EDBFBD3E972B544477AB4D68826331F0 4F8AEFC29ABA9E1D6EFE807CE2D7E8BF254F153B3C9BCB6507E89B97158EAD5F 4224068DA7A1686B8DFBAEE60EB405CE71F71B4872D396FCDF472EA4CF3E6E61 7F35278F1E7B3ABB2714E1723F5472821674C130E7301D598A6D1CB33FD3A94D 35F73E34AE11BFD6070CDA2EA1C994C0AE4304785A70A38622C09D47EA08238F 7E497A635032592C8E28814D114AC8D1B9FA512FE66C692F75E42B67E51E18FB 3F642D14C8DC0DF74FD81A594376BB9B7DBA9B4930AE048E4344476943D31F24 35FE5CEF1A0BFD45EA5C43BD6700A38796626A1EBB23A3BA4B7C64E1B145FF89 E1E3CD5F27844E66E9868F13526D31B87FC9DF2676E7ABBF3176CB2CC698BBC6 23D39533FAEF149531AFB05826F48BD2CF8CEFF48FDA67C72EE1F32E41745A79 C96B8264CE368E6FD3DAD0CBB224F8A9525C6FD720DEE0FD278EF36886ED076F EB24D1D8B69C456A9543F4543160B6BC57D0F396BCB5F416EAD863C35BB5DA81 B218D99B5CE34FA719E6C67CEA1B25DDCE2B019208C1DA5D9C105F47A382797C A73AAA78B4F33F509E60BA34B4D5D55756639BDF4761C9F221B09866291760F0 4ED5CC9406061F7FAFB0B6F93796F64BDC05277FDD466DB850B5ADF5C6E293E3 A6AF3C0CE77608F2027BDEAE4076B776AFD67A7BB7123A1F2F1F95609779BFE2 9C1E085B68A4C444EAD8ED8E3E7F08CD5F90D12C96005EB144157FD1A85F7176 3090740FDF72AE20B73733DB0A0A9ABAD612F6133F77DB8FC48DA198D73C1CD8 797C02A00B9A6343D43D1C0B392047C71EC1D62B5308B76936F64EAEC52FB0AB A53516E6BF2189E657E6DEDF0C680A81282F877B0DB2EE045919FAD21BD4153F 1E3B07E23F7C13B55B47B85E99E93C6C64D7132245FD325E9FD9C6760C01C8DD 61930D6F4BD6C59F880CF11C3F1588E72E98F80140F43DE93ECA43931919237A 2450397829719ED4E34241D30FB4F5C8A85B1A85FAE2305C47550BBB555EE76B DCEBA951B61B0D3A7240B105695337170A9A56468EFEAF599FEA0CCF01A2DB84 25319E635B3EEEB2B1A6ECFE58E2E387FA5996D311B87ADD09AD373BE347B291 140162A7BAA5CD747ECD0DD86807449609C1B86BC5CE2A087AFBA83091CE4B0C 49E6C7AE1306511A1BD1D4FFE475FD7501461D782745128DEE7C1BE525A3B04E 5208CFC6600196DE9ED2E7A7E20E20E29CAF5019130609E1D3AFF1DB46E12579 1BCCDCDA2A43E93CF68534225DD7CBEF77AE71AA22565258FA39AB4D9448D462 326182601922932B23CE0E2567E30BD47772A11D59E2CB15B0BD340C0657B465 733E5D4BE23D731F0AF280EB827526F9050776DD06C6CFC96318E91F821952E5 0CE9F613F0C595C55F7351D7D4114D9611AEAE733A45A7F6645166307E210930 0F1E4F7A64B77EA34F19A5F52445EEC38EE28EA988EF3478F03929AEB7ACFA8B 12AF9CD3778F13FD2ED625B825053F2E8532562AD65B4BF0C2631586E30FC27D D2B5830E9EB43090370C658E1FC9606BEF5FD9CACF8FF8C051EF770B95C419EB 1E21C8D10456ADA6BDAE7069829B6760DAAB8F4772B7FBCF8A96F691BFE6802E F9EA5F469758411B191623A09A49B22E042310EB212894282C023852E11D1001 225FBF626AE3FEB4F127D055FAA2F1D6533FE15F30ACDB50FDFEE0BAFB1D4CD3 FFC9A8CDDBB834E06F0A2009E96E82EAB4364D42897631C46797394A1745A3A4 45B2551DC83AEFFAEE4B19C824C88804C8789EDC04A72079561B851853585AE0 E4DC3FE1515E0751FFCCB8747E05B3BF7DEF41CA3B9D17D8A3452D965E7F1F0D 1770F771EF9B8CEFC746F42EF799828CDF99643D61F02064D472E5CBD1F01AE3 027615C852F4F2455711D642C5AAFDBDEBB87BF4389897DD96F463964E84BA09 75778F0201C395B006083E068C1CE5EA1725AF409C9A0C9AB1DE481F85511594 79A3610A5D62625D9177B7DA0E2345FB16178DB9AA58588732C48BE70A5DA581 EF630C04C61499312B2C456A5AD7D3EF4B6BA25A17E8990B9351A5232F783D89 CBACBF1100EB449EA090943C73CBFB94AAC0D8C675D84284B83B4871F7F1F37C 549C0F4194C12B2FC3E52D8F89FF2A8D18EBE7F270B786500B3238D7D8100CC2 613EA077722458508F6DCFE09A5479D450B795A1100FE3ACD3BE0EF191BC1625 729369ECF1EE49693310F8A241EA75CAF7E4B2FE14A91E9F0C13955496FB03ED E8FAC0DDC571FCB38B006A186E9642B6EAB0A7CE39B67112D9F83651A6E9DF2B 9F6B6046744A77788DD927DE5C22FCC918C93C7B42C834391F8D9AC89A2D20A2 1D979C7D6238D4D8E28946FE336A43402F67BE9FEE64B7AA3F4624358C09EFA6 99FD5B78AC68D5E3F1854767BBD97701ECFE92107F6E51F00D0245484732150C C33E963DB666494C895F05BECA73B88B7043828D0637B3986372F28F1DB8D68C 0CB56793D0FB42444AF9F77A634923A09102AA77F2A5A36330E8B946806E57FD 47BC5B0CD1605E564AC173D7F3E1E19870DB668D87CC1A2BAF539925C1BEDC28 ED5870BF8BB79B0D31DED055AAD85A6D8EB98D1DBE04F10FCD01932867FE787F 1CF53587378BCEBB146135335100E2251577F42387DF4517DECE711E8A65454D FAF19EFC6EA9CF50A4FE3DA6E4902F895702F860AF0A82D47FC7E7C4F3FDE9B5 091A7AFE227BA45E85679CD34B38B14BB824C7B499590C9DF82C7C11B36354EA F2A862100807308908B088EC066B2B20410914056F121CCFF70EAAF9F8C37D31 9C09832C462EB0315DB838D2E2816528FB8391213B9CB687ACE34E6055512C6A 543284441527EA2AB308D7FBB8BF137D201042117527E548909E3951A68925A8 1F741254040BC520FE89B7F675EAFBCC1C2EBCC6F55BAA59D211572056ADFDEB 3CEB28BA5B9987C4E5CF15A23D558815AEBA5D4EFF8B04D2B9A07F9EC3195A8C BC8E5E8422BB1150444C5683471207E26BA7B42F43583DCDB2868337362887F2 8947C359480DAD443D473C61C4AF2E6BE2F7BAD06C79C102586C325EE523F000 334B1AD5F85E52486C07D5F2B88CB36D7C5E61B421A67F76F1705CE79FBCF403 FD73DD06D579EE0891AFA8CCA2002D031A2791B5747BE3FA9B7053DA6CB943A8 8FB3D8DF855C16A641AF1B9E0FDABD84A5074B583202A8C120405C781F2A591F F44D17300936BF3C77591752E3F3FDC5C448910A7DD21F2C84F1D44BAD9C7EA0 2C29193B42734103C2EE5A6A0A6B3F9A668D0E58B7450450290C4DF4AF6BA8A4 EBCFCBC4363ED8209DE73972FF2DE7872AD38ECF92393023354BF50C918F84FC 8EFAC13B94DF583EB1F6E02ED73D73560DCCA4E2F1CE8A7EFE29988616867139 FD6636485328F32F2A9C2D1A26306936ABA671225CE1685FC633E98F198AC865 C0ECDAE559DC639FA8D0D9BD2191C97317C07DDF2BEB1B8E6B0A2F4DB30B11CC FC7CF4D9EB529CEF39C017E332079C03FDCF16EF57F51CED595ABA70EA35E643 88C4313F914D6888DBE345B1E5B97DAA93CCA097E330D3CEE75B91B36DB308BC EB676516AC72507CEE7469A7DCAD6E98000B1E3C77D8A4A4A1AA3C31AA384F2D 2BD50F44E9CBB4B5FFD65C4E7931BA8930920680537920623C80A06AA95EA0A2 DFC56A91E877CDC9E57A201BB933B4B15710CB4C1BCBB88AD119C273D9238020 24DA817F6E77BF55F12E9F61A1E0D2A9DBC432E0827AD7F023F1DC6C82984F68 F6F778AB1DA064EEE453A2C148AC1FEFE43E20392D59BB8898459A11D71F9713 610A22F0DD1797E87854B0922FF58FADA2AB26FE02E9D6838D4470B8E16DC017 874787097C64EC851AC4BA343EA6D9D1E0442F0A8AA1D6AC71C79443563B1BAE B4B159333392763A0D17962080B8243A4A6F11FEA2C8D5F4BBD4482638854019 DC1BC660974B96EFF9C01DD2797B1E1C8E0CA2905F783B042959701A74AA8023 CF44AD6A3C0B7414D41BF9E330C0EA9230853322C41F8A40E782AD8F4587E647 EC3943D77A2ADE03D8FD096408B4085690CCDA8AC71C6C11AF690D8C32036AFA 4ECAB5C1F31B05FDF26CADEE15383EA1BBA59FFFE6819D3155FFF76BDBFDEC24 5BE59C61F3F0D704DD0862546F77DCDBCBC313B354481A9D529C4228E0E43EBD 1BD15B94876AE370FF835434A588E4E8757025F2B1F82CEBF20AF28ADB8ED79D 2412535DECFFE25B2109229C9BD3AC9A06BD241F9284EE8FC77096DE5EE21BB7 7A7162D9AB3D2CF6C100D66BB240E43992444151A9ACC99D10B232B4E400DCAC BD38E0FABA6F475E6FAE28448FF34EC8C1656A1CBD27CD6561F9BFE0FABB1444 2C25908CB3D14B664B3E9BDA6F0EDC8D933FFFEC2CF1A4074FE4CD3C8E72EFCA 925FB57C53202E5F89D8CF63DCB5EEDC1AA68D11F263359B84A3D7F9AEEBE5F1 4FF089AC97F1222221437833F33C06166B8CA011A5D2F9DABEF2750CFC00DE12 9D26BF74021ACAE3AF901CAFEF6BBFBFDF7A496A73BC1F495D0F8AA6979EB23A 0E4936B95B1636788C8937078CEF6AD30F0794115E019D187C11D6DCAA187303 706FD91D652D41AFB4E012DFC5A0F78F435FCBE98D433CE9C7DC248106C5C763 AAAC5FD1DF5367B41E004489C01C5FD3AD98B8EA7FCC66E1B552A4B6FF2AB13F 93AFDA81E74C7304650C1CC7E0162AEA22A754E413C55D571349758D8AF0D508 9324F516E8D4FE7CE7D0C2A574E959AD1DD3CD001E95B429E4FD1A6CB65A6133 EC9893F1A7F476481D209843208146D10F9A4F0AACF2A6DCD4462CB4FC9D926D D5AC6B561BC9B0CEBC0CA2707AA010C66299C1DB237B020DED71DD7D80C47732 9FF3A32D0EF7042C4021585BBC826038D69CB48982BD348946F44D80C39C26F7 C15EEABA258F8095767AA5447F6A9CE1D43D6BB3A6B205B8B9E8CA81089CF71F 5EDE578C4C244D0E35599CD00FAE11024952E3ADEC2ABDEC90D2FC76F9ECD6AA A6B40D16DF171738262230DDA062E9154DAB0A506DC761E79DB40C7F389C6E8D 71B5BFBF82B224C4113A8E4580355E0B80D408B1D34F55E3586E9E680C689413 5D584DBAD8258397EB0EC2EDA157621F90CF742E8F98974C36E2B1DA6DB71C53 02A1E09A7E162F6E9B23F0CC5CF025CC9D13F55F787B2B565746C2AF129F0F4D 3E304C56F314EE80A250BCBA45112194B4A3D8EDE0985F9067493F095520ED4B 7F1CC08F330EE6F17DB5EE43DDC75AF55B1EDD1B41833FCCE5E842516E49BE84 611BB71A150B44FF998B5866DA29D7DDE99D9D63F862EEB7C935216E5E60B772 43800ED5868AFFC2CAE01F16B50902B292C2BEAD2EC5F7AF059BB8EB0CB73C0E EA8F144F716F3565B3CE4B9597B7C0257BDED508A600D3F1968CDE4E3F773F72 C1AF5E675E3AFEE289515A32C4A4038E0B01410B58AD63AB537FC501F3470514 A0AE66FC127777C616379F2DA2307DDEB634C5968C1EF03BF7981D9D90C14E37 AAA1A0C76CB40A95B77D6ADCD43281E3F680AC687F859ECF4AEB35639E1B04F5 3C88A52BC559DDF82BDDF076E58368AE6C8072EEBE110683B069FDE3BB0F5E38 A3EB4E820CC8B98E2716D27925F5351C3B3ADF3D60398813106BFB474617EB33 12C56B1BB2D743E2950677BB680C01DF42517D0E7C7F035D968938CFABD07E38 A86BF53ADB0CC8715B052FCF6ABB0ACF56456F4F88C8D0E17220D88C82DC5087 CD762D2538E309B6BF33C1F9B449BC0EFA035DDB9D4ACDF95B12FCA8BC429A78 FB6CF03BEA0D047832E23A3A3215225CF76F2C213C92D706AA96182368F64173 AA1D106CD441938A5BF7218EF0E1B73F2AD3AFF7C87C580B7643BF5994FABEC3 CB362FBEFE73BD731ECE265093411559A49A5CAA01C4B55BF0E4CD7EAED28FDA 8C264B62682DD64D12C7D9BB5119269DB43239AF2C80AE362D7716B5E49197A7 F25B759B90DE0A436703CBCE72C472C53D842364D3BF567DD3F7615B29F2D02F C4A8E4603F76DA39138CF8596733947EA65F1B8A55DC91FCD08425B2DCECD526 5DEB615E7DEF0155ADA336A523D0974D4D441FA925CD876CBE1A85D644831ACF 705ED79DFEE14D519EC7930E4243D38E86CF01F355E675E9BD24529575FD4A6E 2187DB6C8AAD53613FA7FCCCC6146E9F99DCE7B10815B49659D24880A949E036 C849783186B13EA91A595FDD1FEB4DBBBE58C512F89537B27A2BDC4B568D1E38 02916E8B4AF4A537C19453F94710478DCB89743D7EE30E15C165C0CE881CA43A E18E3E98BCF0423223E37C9407A872A996901E03392F8CE81A928727FBC9BF85 6DC374D2AA3B2D2A82CA328E4F1A261B3EBEB470E5001274F564115691D01E8C A7480387E7EC74C5CEE5BDEBC0250108FF13D87C71EFB1BCC9C5B8028D70A79D 0D2161380357E0E96D15597F673722E535F7C459F2650AA6403778C64F74F10B 049AAAC72E6A409ABDAFE7C2778154D6E920D5E2AD710CB4F7CF7B52682EFB68 FBD7DE55B4B5048A5738A329842AF53128E3A9E89ECEDA65B2B1A634EECEB846 6D7C0E11933A5278BC377C5A1F50BAD2DF04CA0AEC47908DC12CBBFC367448EB 7FE9D1ED7F2E13E35CA8E6FFC9734CFDD15E5322ED7D476A537FC691DF5B1CB7 9C8396431356B92F4DFE47212F403D0A60253C0F0E7BD7768B157FA239753729 CF0C82DC68EF1B83B56573BCD38C5D97A3D3889C650AC889046FABAC4B55856A 858896E794BA81BF7D3917884F4989C120FABD9D82698DBF7ACA6FA03B7DE0B8 DE93ADC29B8FA9DFC15D5B6578AD6CD89DFA21B2E0AF7F0FFE862D1839882472 809FC43C5255790B323AB759EAFE0928391A8E87F2C6E50D7A7B87E6464EA553 A1AD7FD38833956A136AAB9BF20ED42A2972FB4BE9186D48C3759D0FA38DAFB5 7C4446C3E4D0743817A361984EB4CE36EA8837008484F27750EA45BB0481B07B CBFCAF075117CEC9C612DCF1F281C265177362A12F586DB66B890BFE45F0A5BF D0F433D8C3AF860D3423F6D7515192AD9FF0B5DCE2F50074BC2FFF95AB9ED49E 73EF0AE628B503E7EA97A3B3FBAD0FAC2857BB8219ECBB90CCCC74B111A74F84 2960056DBCB65504628C56B8E5F887912C80D8CFAA2226E23588AA243C14AD88 BB92D576D161A3C23D065EA003369BB7E2DC0423609C2591D4AF74C86D998620 B7F6BC6162BB2D98CA81222349BAC8C5E6A3F3170713B188FF08B8C40FFE0B2B DF51D256BB2A08D1FD0890BF51EE599578E189A99787022E19B8F44E8F0CAF54 BE711062BBD9A270D1FF131D69F1ECDEFB84CEB2CB1AA8A6B474683911C895B9 8CB36086B59B54B4CAF966749A2D395FBE6F4DF81F71E37E6A0C5AB70C65DFED CA21D87FE11CB967AC0E11B70CDD98CE389DAE41F21C429D57482B736EF9CC09 16AB1D0E877AA92557D24375804161A6C1AB7C8912512BA2E0D0B1288A6C6784 9EE2F3573B32873DDB0AF81C83B9097C0E4E5A62B6E324A02E19393A2A344DD9 C6FF7B8D8405A6985F1C82FEB248BAA43FA630661F9708A1EB25A9C8EB93555C 5878D5CBA73FCAE33DCBFB998B289E2204D62B8463AEEEA2DBDB450D6DB0AAA3 A4EB5562F40D56A252C5D76E71CAC523C34F2A3CF56745A909C79A1A202D64B9 EF5F98AE02CBC7B9B4D6CA1192930C93E9516C7B8491A38254EE14AFAE4C5E3E CD9560356BF0E1BC7CA29753C978394A4B06BC0807323267A97E6AEF0EF163B4 2C92A7610BFD6257188892B55B5BFBC1802B0C648C1968AEC2BE35CE5788F7FC 9FA1A42826378BA3F5142F8C9DD8FE321DB0553838FCC28B2191A5A26154CE54 AF61C72B0867FBDF822FCCCE8E08E9BD728A7D063E3E9AF29BAAC110B817B34C A5D9B8A61CBBB74DF4FC0A490BAD78938C4694B26F84DA7A8A241FE91471D2F2 0F1228907E852BC113205EC367D43A6BC47DC77742A8C0117704A0BFE29C1EB1 8E35DE45C4FB9B4E48AB4E9EC0FA0F0A33C7197C19B41D2526E74040E6E7E797 E18A45E86F480DFA98164CE339EAD8533F95274C13F26F1433D7FCAC9E28CA00 5CDE03DCC7AEECF7FBF442840845EE1E17B58D71E9D58456CEDEE36A57C37EF1 7159E3841F282ABC7E1C66594051DD8C7A9E7BE73C987E1640F345DF66E42360 65E4D30006179A3355B7F0C54CED3F577A82D30E99617E52C0CE533016DD5B10 211A47C3FDA4F9F7B54E61BCD46F7812A26D127EB37C047B67D547E644CDCCC9 97CB89F6FCD4B80C83F15D5D280999772613A4F08F3620894C7C594C115A5FC4 A0699C5A13F5D846F2220FBF86F2AB4C209F8703659389AF32991377A3E7A38F 5EF88E603CB754D88E536CA1D071BCB9E9ACE9D737B8430ED73A1642DD094D87 CB2E636ED90ABB1FA9612DD39C767B3C0169FBA67B3946E1E852E33588B8AFE5 D593AC0BA2A92D76758BC611F252B7B0C00E0274BE5FBD392EFA86EE49473788 BB5C80A82FFAF17372F480A08459D6E042361ED54CECF42C88523EEBFCA805E1 E59A1743234BB6775AFD46BF07C533588E38634FAD480E63002927F24680B547 6C63D3A937F4830D31E7689E6D422662651CFFCE6EA129C04F632D88FE43EC27 CBB4BF4D4232D3DDD19599026EBCBBF47DA6C805E38AA6C11F1E1857A5E8F1BD 4CD21F360419A0F3E555DE7EF68DE7E081573FE845402365C846F1F6B58477D3 1259A60869E4B93EDB66C10D6B0E46D55D0842CC47DA05D21C8FEC6CB299409D 7A1BB8B99EEDEB3C4F10A2699458F19C320F3FAE9CC6350CA383DDE889047279 0FA91175252A42834BF9BF5D19AB0032B8383AB056BBDA41480F476835457F53 D1083B641023078AFE58B2CA0FAE3832ABF70567D5E5A0EFC39C3FFEC8A3B2CB 3624002DA2706BE3AD3DB339BD43BDDD9BF9D336F25E572289F105F319A4FEF4 60E799202F759DA96C6489A228EEB3E975BA1EDFE6BB1A13612BE4A5B690C615 97445B00FCC75097620CA90F06CA1C58AE637D12186D892295FD5FA126CE1D76 011AAC13442F1DAE04AEC3E7A5AA6DD27F26ABC69EDCF606C10D34B0F32CB8AE 2B0D21CD02DD3456FA3BD023E4E92233AD9F24146B7EB0C2A68C49FF71A01FC2 2CEA9C5FA57F09147C6DCD8D3A4A33C1A70000B334527716C12052092B10E905 9F22B1E3048E68EF2525762163421C33A1CE61D0923C75E738EA9A37DD3271C9 AF4D55786F5BEAD707EC8AA26DD53D88476BECA54403293E8CDB02A083294545 D4BD7DCBC7A73C480D4F3A903AC85AE133384CCCFDB357FE6B6B341FE71E4A75 D283D1511423A2596D7543A293B4A6C26FE21040F0A3E8BBFEACD0152EC3F190 ECD74D3CEFFE9C3E86402D8B5923CA46C8046AA3C6DA39983B645808F97F4332 D66EC475C8B93982A7EDA2BDD0792B332A9EF932DCC11191E399900EBC05C3E3 8AEB4B4CB9539D6D209EC0BD5C49AD675409BFF8EB2DAA5E425D4E65E06A2458 F0C4149361EBBD54708F4B4EFCEA571DF325AF6835652E7C493DCCD8C8C2F01D 382B800240082986A52D925D6F804BE8F048CBAB7C60DD389F7F3501121E1752 AC0606E26537356594F6DB786ACC6152D194496812C20C5310970505EB0C3EE9 73C5AB36FEA992F2ADF54BE9CF51B77D4B1E3E63B9A40E2D701F904C5E0259A3 14C12EDB20B2F5D534ACC7C3AAB655F58C73659C9A177FBBC40963B6ACCEC0C0 8BEE4D7EB45D68FD74C3E8AEB3D432CCBED396C3EA5F7EF4E40A8BE9353256A5 25F88514221445F3373BA7FA3B3D360E533A17FA74D1F63EB847F313EF4FF04E 62E3057E60FDC0DCE1E8DDAB7B45678F68D90680E750DAAA3BB7DB64E938D89C 6246C43EEF4F68B65B0A8704B41882495F83742E12B2EE017B1A74DC8E1F4761 576DD2027EC0F9C65F94E887C1E82D403879FB4DA7CE46B6B64B03541DDF3788 6B417F4557B029C1A5CA503ED1379FA986DD2ADFE5D1CEB12F1B9FA0B4404132 FDCBEDBA2693C41F999E5FED058098745312F520189CFCD89AA7EE42F2BD782A FB595F059CED0AB8D0BB55F65EBF29D89E023070E8A35964F7D8A8D5511941EC 65C5BB39B27168C392FA68D211056BA38830B5289B399927BF79BE6733395940 DA32538EC63BC1435F6500BBFE3641B96B52D46D4051E393D302672AA30AD51B E3E6E133CE80E6E9A7D979C63F324C99B5A6FA7B8555F35891AD9F60942D4085 68A4D12E945BAE908F2C71993851A616D4E69E27F30441466DA68E16C74BE058 C8920C64CE03667344F9DD28EDB24C5062BA27BC75B924029E5D86636A0E347E 1B41D41B6556EE350C0BC921F11232DA04D5387176DC11C4CC64E408C164F8D2 2EA268E517813474172B3787747D4C12DB61804D93F3ECB81A52329B87294C9C DF2AF75BC8AB538565E066992E8F6C2BA4B89D5DDE0CBBC202396D31227C777D 60D7D5905ACF8E02AA26DA2E49BAF4464701D01081E206291FFAAA45C5087028 AF59353DA8569D6000ABC1B744CCC4C0A8A391FE1FFC415EB4901F950D0B4E7A 89C6F634E5410DED1B428A87EC74BDE51BB5EB54AEF68C385BDD5ABB283D390C 02BE931669CB603C063191745F913756B28E81DF6B3760804300B01C4AE126BE C558B85BE08C2787A930A944E9A6F7DFC85E7C243E4BE99B57E2B120190708A7 60138412969D73387995B15583B8C2B3BF6E14DBE22599859EF551E741B04DFE 36E53F1D04E091C840C1A9D43835A12F4244D4D694D46B6D3376E824FD3C50F0 D889F2D544096385C982B5004268D199D46E56051B2C46BBE23F0D1A3DDDEA28 1E1B0A24C80A82C2FAA2732A5B9CE81B6D22EB77ED0EE9E3E1F89E2C07167A86 839255DEF07653976250EE4839BF800EF371ADB3B19F92C34193399E6C2B005F 5CACCAC594DE4B92EFE30C6E891C622BE799804F691EB54BD12E95F8CB57C618 8FDEA75A9FB8B65F3AEE065B9B4C545AE70F9A1925A0D7BA9187E559E85C317B F1FB71EAC15E75E1E93AE8D29A56F4DB65684D6CD4AE9BAA74E1C57914BAE369 17C403097FC47954DEB81B049B99B80B9B2CB80B709FBAC869077B9E5279888D 987639D5CBC79C8102FB496E5387450808238930AEDC3F2A13558E56C9587723 4F9FD604CFB9831A34A560E2F24187FD519A3F2DFA87541E4DBF75642A4044BD B62A47799D79B6A6341B2741018FE8640CB8129AB492355B0CFA3B4C7D0B8794 E0BC808057F439C71057A5E15C1008793A9733A0007D7C95C408443F851CB1AF B2D2DE86AE8BDD6234002311C81AA07E10B58AB87784DC665E498DBD1F19C7F1 7B3278AB45C358DD71821ED3428296EB77771E230F82933E71A99662199DFA5B 2A7988C4060180B916EE8EA9F4896C0975AB0B33928BABAC1D7B08C4C80984F1 3E1EF19F0B8B61ED8AE5B5325EDB72234C4966B0953C463CA79935C22EE21855 62C316E3C26BD4CB68482CBFEB2BB05C353F1671EEDE4D30162472879F82BC96 F9C32CAF2AB2ADE3E14D704A1871E193BFE97F3CF8BF9C5E1806446FA2207B68 A1ED6B9EC3C914689F2AEF2436792D25A7829C2E7D53ED15ACECAF1E79B589F5 90D80E0A25DB1F40F6C1302B33DFB91A933B888EBA3F58D267884F0A4A0C675E 5CB0FCE0AD0F58B692344E2A3A20D657035046173A346C1ECA438BF92F75A047 89AAAFD72B7FCA447146245D10B1508DBAC840FA1D52DC174DF2E64D6792E4B5 874DD42DA10CF5C2F83EDD54DF2045F1E40F50F529CB7F9375BA7F5A57D0A5FD D958183A252FD7AB88F9E2C099F587E716C6ADAC29A90619CFEC1E9E6E63046B F688F7DD7843A1216917A0146C248FC12126E8DD38E27D05E8014C7D5614C661 F102BB47A24CC223EB05E7F5A7F33C554EE4B5E6D16087884FA939D3E56A0B7D 1E3C9E7F6C3CE95369FA6796F24B5A11CF30FC93160366F5C2EF4FE1D6D1EE9C E21AF6B09F1FE1D076353801D4799A38DEA9D323E8091F591884D471336F0BAA 8B353ECD3B7E2FC36F5F4C49B6ECA8C08078F857F919BBC14A2B51B239807698 37764DC6C7BFE510F180C63CD0E1A9B001DE2C50CD99D934B71D9CD633F40341 4C0E56063100447522DC53346428F562E9F6A2B4CE6644EFF13BC5A1B0C1E75E 659F64B4C5D31E51AA2DEA57882BA22D149145FD316F928DB46E680A269CABDD 196FB35A49DDE6F4CEB9D61654CADB3B9314EC1C0DCF0DF00DCA92A944BB40AC 31F94EA1FEC6993DC4E8203E6C850980DAC682B04D2161AE3F9E22F34A874A5C 3E24B6B0C44CEDC23380752B6EF7601670B58C4C9B25728709C322DD98DFA48B C965B6A283D7ADABEE1789A8BD54E14E6B2D6FBDBA6E19A7DAF45646E036FAC6 B761AC1BF621780B92CD97E068E50308D5BD6CA17F8BA70AE30B9C5F07C2E8CD 9D4DCEB6844CE6F2241B1D19BD6A1FC5F28848DB10FEFA1F55BED0283AD14588 7051A33C3854718059920BA88259032FBF481F0F0A2D1749A867BAE63B0F6E92 8A4CE00F73742D6D07DC31932D8526B78A806B1F242153AB3F358ED69BCB9A9B EC008CB67844D943E1BD3512F47A81959D74397B05AA8F412A5DAE4F657B4738 A8B77333A3FB07ED1BF72DC0BA5CA9BFA3E74AEE58754BBDB7D8A898C9B111E5 194BCEA1DB2035C3B1F6E012D22785F9BA38FF027B3B622FC8F0F256787FF91D FC4C9F64020219428302102566BB6A8D572450A2647521DBC714D7C886125239 1001F1C8D9E928873665E89A043BFC9F4DBC8DEBC04E849B1D52B3A9A108FE6D 09DBF96DEB165F0521B90C4DCB60A8187288C400B85E6013ACA8227AE83A8DFD 351D6C8F863197A4D44798FA3A292FC2B21750B077E9B9670D25E023B2A6C14C A6DECB08D3C3C61FCECEF890F02B6442D0D7C0D419DA2889E7FDC3AD977C5643 3E61C6793A2729CD435B3D4CF67A92DDC450CA6F4328F028A962D0783EE0DAB2 4E9D496FA28ACFB0693355360E997D3177640A354CD8DCB8263F18D621218201 D1E7F6C31E8F08ABFDA261B7A3512C784931514773B16F92D04FC11B637B8BA9 BAA804CF55C126CD35839A50A81B00ED35C3D32AA64BE73E2D4587025FF23A5D ECD93B1298492A4FF326E74042EB1DC3E98B4F041F17F341F4277AE117D6E4AA BD76023649042985D18C3C28C0FD330D6F0A74778787221B325C4D810D6D87FD 8EC7254D1AF3AF46C2BADE5D292225744945CE0248AD303DF4906E0402159D5D BFC58DB629CDE8E81B6EA2E0D5B50E1C455E7AF6B3368627BB3FA73C2A72AB31 627AD18658C8BFABF0D7B2E40A9E1490D03296AB1792E160FCCAF4FEF84B71DF E284C03E87F17D3A440990652A9503B2C45D48D9C8DADD9776238E22BEA1C4A3 AB05918672D6EC5426E06F688C42F4755635CB0F5C41694DD9B07C5945F6F7C1 EBA7277B32C92E6754970F6821B217944E09E89A81F325D78AC5AB6E1F9A1FA3 358FB78159C333EEF87541D46247902155B6DF41F1241C58197825D3E2F8C1E3 9029904D5203F7120AACB8C012DEE6460257727E259831BF7CD658197343C8CC 9832FA2C62D730D0867DA1A688C38436D26837794BBF6AD78E3A8820867CF045 C9182C904A87B9F542F4CD87E315C0ED1DC3A545D043C2F337312B0C70144BC1 29581023FB0C7E114BF72C0D010B3CADFC79E87F303F0AC7FA0CAEAF0A927D5C A9672235B9E3F4DD72112C1273C8AADEC3A8ACEEEE81927E3F314DAD0FA7F412 D32ACF1287D1A500730D8BF20E290B2DBA7DA8A778BB9F206BD31E2989DDE5B5 D5CD2DB85EF2834448364B7EA6DAF3BA0088D9D9260B6A44B0E4C2D3411E3F64 A748ABC0A8E9BAAEF164732816DE572EA825D945F4E894D7D2E3CB36961EF8C2 853D2905F11FA8AF17763C31B7216A8E6EEE28F8F3E8A7E9345D27B52EB6AFC9 33462FD5A6DC850EED8C4F403626B1381AB6AF3D6E8BA6BC7682095B180043A5 6DFC2F7D7304C905771279E71D05ED597285452E06928E3183F91589774DFFA0 7344946AB4081EADDB102E205A17F49FEBC1702E33942F5260D87DDF65473622 8218C9F68106399E2AF3EBCD07B6B58284CC3F4661CE7FBB21073D7A313CDCAF A15A05658CB96154F2232CD57F183153BCF0DF1E96F1323D1C45F23D68536C23 D2B141AF03A36182DCB872B6BE7EBD4423A5C048FEC8A6C6E92434A9E1B79921 333A249BEC6ECA29FA4FCD627DAE3BA8F6E123D95297A9E2D1FCC426BF7E50CE 4842D85C3E8ABA8CA9241DF6AC71240BF1B73F0DCB13E1E9D2D1F9AA6A081476 6CCAEB851EF19ADBE584A7A50109007AE42D3C3E29971D04A0F5FF1890ABD460 C0F9C909685D097583ED09EFC536285F752B16A55E31E6B34402B6160DD97563 1AD5F56A8F1F76A3EEE62A6108C2FA0CFDC25591D00F8896A8DCEED9864EEF32 23FA25110F6E78C8F18A55A3EFCCE0922A3C733FB9D4C8E0F5952904DD5410B4 5857953647FF97355F9CDB187FDEB54E8A6E4EC0ACF4F3C13251BA034F5DBD7D C0F04E856E49FBE5BE24D220048B7D9AEA6689484EBB50AF1F7A1AC4AB251404 8F62BD7993ED8AA929A029FA4A33CAB57BD9A54749A796DA9A9370E1355463D5 4E158E05FB99E2094C3B273787D851D433AEE9AEF73FCA873329ABE21E5CC531 81E7E9B76F347F43D36E16C10C709FF9E16695EAADE5566476B70906B2F93838 CFEA62C80D0A5FBA21711D45DFFE3AE3F2CAE050648FB91C87EA39757D7D6885 B7018BFC81564DE44580290F53FB601701342AA22C825C566961EEB9F886D550 00079A5FDBEEC5B00293B784C5651C747D93149B22DB752958992E64AE87C919 D97B0DD0851E105E8D4C9FD1792B94E7EE1566A482A55BEEE5F4782065667E99 FC0B355020548E10A5D7786D6FE53589D9B711D0DBFDE94205667092766B8351 0CDB4B715EB701B1BE4862B18FC4A26D3A8A680EEF001C0EF439972FAB7F79D7 18AC641B6D1DD5A613868D67121C0B67012EB27B920AAB6FEC1B5D067B7DE813 FF1F3CAD1C279036E0F2B02C91A32339E1AA011CBADBBEC510AC628D85273FC4 956EFE7F85BFD2BC6D57E9673AA1402B0E145A2ADBF33C3567BC47B9BCE16A5F A049899A532B554245FB468A6024E7F1D6BFFD3F0C63AACBF8AE866C0504DC23 266A566F4EA034458C160DCA0D860995C246DCE9B8BC76B742AFC3A23E15853B 242CA55B38B3F1AC192CDA70C873363D4F6912A4B6A9D691A53BD33F9AEDB1A3 0825DF6D9C57254666105DB69A8CD29522FA2F4016533BAE1B75031836AFD5FC 5ABA92E8588B152AAA2252EB8BCB5F5C5936E6072167405112A10DE09EE454BC 48DAF59774DFB93094631DB0F2C97480EEF0006C18766AE1EB1A16DC6C0B52D9 9ECCF897B2DB4D0F690749F8068F82ED159207E06CAAC19EAF2FE95CD333DD6A 1DFD3F3C2EDF3C0734B14814BDAE8331BD430C963492FF6E7B0BB14D56613FD2 C27A6FF7D390C13286DE72F5241AE846120CE1DDCC827D00678A3CF0E49CB7A8 6B09DB2A8072898C89815C8B01240F8E7AE7E20589959FEEC6470089F8415C7D 1BE0D344166835AF7717016826D627AE4204D914A318AE84C6439E4A9E8F12C1 9D98A1D5E85D00C536811CDCD56640D44C7EFA03E6FEAB29636210534E406252 A99D75C077CF99D8AAD43644EA16DCC28C6F885A041E0B43981F09959A603ECB 19F9ADD4D4997A07B6317C731DD429A6F0D1D99CDCBC475FAA8BC888EC263433 0BEE727E2E0B6FF98F982C1B128D097314AC7C696F84F19DAB10DB5160A59B26 CA44DDCC9284B843425A302C5B21A829BD261FA33A44F339D51B2F95C949D37B D75FAD32FFF3E76FFB7713FAA9F15FED09094E476382531DC9639FECFFB3940B E7DAC4BCFA633EAD07643CB27D9CDE05AF6ED670D74760CECBF7160F46742AA8 FF962C22E1EB0E492C75929625F6839E6190E81E477914979837A9F165B13B28 C09125D9659BB596B0E8B165DB17965AEE56EEB46022390513F395C2987742F7 F141E45BE948632B3272BFF43934C84950649B0AF418E42DBF71B4098FA8079A 5F26F81922D97866F8183783DE8289703D0886A704CA6C2FC9DEF3DD9B116F18 23A11A448F7D8180E1BFB2369B2DA3E6A09AC65A3B7AE63EBF4E388855F85A7A 23E90FFC6965D9643E9FF8DEF8DF0DFD552126E19B92394D93A492B27E4D49E4 36CCA1D51783E6A2A2ABC9657D5B8841A2F99E6E89F29C2B1ADD7C4D4340C3F8 AC3877D3D11C28D6E1252E690B3F94704C9FD6B64BF03A46E1F399830162F5C6 CA081A12E1592D9AAA6103A2C10BB2CA96A7BB2A141385C5D550EAC392EFF1C7 FB1708AF908BBA2F807284B87764DB4BED8B26394BC24F07D731790A1775C909 68B17ADB0F4A37B58F55E514E85BE8FFDE0D1FCB02EB75990A9BF953A88FD966 801A2428593E86E240CFFD0F5A9481BF3E64AB2B3CF8D8A7C6DA10E5D4F96A05 7E207E4C6F0CE1FE061BD6235AB57F568A664604D913F35AB9B9F693A4B93EB8 19A583E1057E77BBB0FE596DA83AD659FCDF9F793417643DF22C12CF0152A76D E8A1B9C890235D22B81AC5255BC024FF69A8CBD1565CF30778A80B56D31CB253 0C3A1AFA5B912ABBE79D1E84B68407359F72486A6EB1D5095F8323609F0BFFED 303E9A448C3385521D9C6743DE00ED69C1FA67DDE59FAB55738EA5E48FE3165A 6A64B88D8B1F6E033C6209D2BD3FB040C0523A6D0C266758DB2B43B556A6E3D6 2384F9ECC1BBF49F0A922FAB1E1934B279C7E8754E1C0ECCC831B3A7BDA34090 31B9B02B8D514E21AF2EF6A66B248EF1F50CA646FA603F9591D4951C22472018 B5D4C5822247FC61E4201B55CE9B76C0A79FA05A15B85736B7CB5C8421147314 499706F303606B3A0F75012CEC4A1AB0F30802CF0B5769172FCCD3E057798E91 CAB106C3B1A022E93DBB6721A3B1386C8878EB7C342D8ACD5C86A30DECEC22C5 55C18C1DDFFB5B15D1A81CC9A9C67649B555D5BF07FD1BB5DCC7ACCBCB7E8066 5635FF4F1DDF308FB2A2FDDACA60FD88387821B10753D7DF0AE56BAC14FAB05C 0A38D450C22F13F00EF31F73701F38BF229EDAFDE8C3F6D41DBD51616114FB8E 631C8D64DB1F5C0C359C1C46AD245ACF45734ED7D22A397333262D7268453D68 B8AD396C05800C05819BC0794148DD20E6D8727CAA6F167F5888249C44BFD95D A85B651D7C2732BD1FF349E7DFF7778E28C88516C04AB1C67CCD5CF9144961F5 93A342144450258D359232F11FB19A4AF79A0C046E845B01FB7B5B5D62622D67 DE1D52D712E1D1B4ADB8D5DD51309F2DABA84D38C1ADB4B31EFE80FB690605C2 B63BDF89D1FDBECB2AE4FDFE47EE5C122744875C107954341113B31BA1AC4D07 2166F69F1386BC784D82F69AD51AAB6C22FC8641F1AB8989307F7643782B3FB6 FC72CE90B42A92156044413464F8634A5B4FBC48C347E8D2CD8A1A407C44ED27 677CAB77EC2ECF29BD752544A69F46 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark % End of font resource %% Font Page 00 /LuxiSerif-ENC-00 [ /.notdef/plus/e/n/d/underscore/v/r/t/x/space/p/o/u/c/i/a/l/s/g/colon/m/b/w/h /C/less/greater/parenleft/parenright/F/V/I/R/f/y/comma/z/T/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef] def /LuxiSerif-Uni-00 LuxiSerif-ENC-00 /LuxiSerif MFEmb %%BeginFont: LuxiSerif %!PS-AdobeFont-1.0 Composite Font %%FontName: LuxiSerif-Uni %%Creator: Composite font created by Qt 25 dict begin /FontName /LuxiSerif-Uni def /PaintType 0 def /FontMatrix[1 0 0 1 0 0]def /FontType 0 def /FMapType 2 def /Encoding [ 0]def /FDepVector [ /LuxiSerif-Uni-00 findfont ]def FontName currentdict end definefont pop %%EndFont /LuxiSerif-BoldList [ [ /LuxiSerif-Bold 1.0 0.0 ] [ /LuxiSerif-Bold 1.0 0.0 ] [ /Helvetica-Bold 0.936 0.000 ] ] d % Font resource %!PS-AdobeFont-1.0: LuxiSerif-Bold 1.1000 %%CreationDate: Mon Nov 12 2001 % Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. % Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. 12 dict begin /FontInfo 10 dict dup begin /version (1.1000) readonly def /Notice (Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /Copyright (Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /FullName (Luxi Serif Bold) readonly def /FamilyName (Luxi Serif) readonly def /Weight (Bold) readonly def /ItalicAngle 0.0 def /isFixedPitch false def /UnderlinePosition -36 def /UnderlineThickness 72 def end readonly def /FontName /LuxiSerif-Bold def /PaintType 0 def /WMode 0 def /FontBBox {-217 -211 994 1012} readonly def /FontType 1 def /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 74 /J put dup 75 /K put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put dup 87 /W put dup 88 /X put dup 89 /Y put dup 90 /Z put dup 198 /AE put dup 140 /OE put dup 216 /Oslash put dup 196 /Adieresis put dup 193 /Aacute put dup 192 /Agrave put dup 194 /Acircumflex put dup 195 /Atilde put dup 197 /Aring put dup 199 /Ccedilla put dup 208 /Eth put dup 203 /Edieresis put dup 201 /Eacute put dup 200 /Egrave put dup 202 /Ecircumflex put dup 207 /Idieresis put dup 205 /Iacute put dup 204 /Igrave put dup 206 /Icircumflex put dup 209 /Ntilde put dup 214 /Odieresis put dup 211 /Oacute put dup 210 /Ograve put dup 212 /Ocircumflex put dup 213 /Otilde put dup 138 /Scaron put dup 220 /Udieresis put dup 218 /Uacute put dup 217 /Ugrave put dup 219 /Ucircumflex put dup 221 /Yacute put dup 222 /Thorn put dup 159 /Ydieresis put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 106 /j put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put dup 122 /z put dup 230 /ae put dup 156 /oe put dup 248 /oslash put dup 223 /germandbls put dup 228 /adieresis put dup 225 /aacute put dup 224 /agrave put dup 226 /acircumflex put dup 227 /atilde put dup 229 /aring put dup 231 /ccedilla put dup 235 /edieresis put dup 233 /eacute put dup 232 /egrave put dup 234 /ecircumflex put dup 239 /idieresis put dup 237 /iacute put dup 236 /igrave put dup 238 /icircumflex put dup 241 /ntilde put dup 246 /odieresis put dup 243 /oacute put dup 242 /ograve put dup 244 /ocircumflex put dup 245 /otilde put dup 154 /scaron put dup 252 /udieresis put dup 250 /uacute put dup 249 /ugrave put dup 251 /ucircumflex put dup 253 /yacute put dup 240 /eth put dup 254 /thorn put dup 255 /ydieresis put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 48 /zero put dup 163 /sterling put dup 36 /dollar put dup 162 /cent put dup 131 /florin put dup 128 /Euro put dup 165 /yen put dup 185 /onesuperior put dup 178 /twosuperior put dup 179 /threesuperior put dup 46 /period put dup 58 /colon put dup 133 /ellipsis put dup 44 /comma put dup 59 /semicolon put dup 145 /quoteleft put dup 148 /quotedblright put dup 147 /quotedblleft put dup 132 /quotedblbase put dup 33 /exclam put dup 161 /exclamdown put dup 63 /question put dup 191 /questiondown put dup 187 /guillemotright put dup 171 /guillemotleft put dup 155 /guilsinglright put dup 139 /guilsinglleft put dup 47 /slash put dup 45 /hyphen put dup 173 /sfthyphen put dup 150 /endash put dup 151 /emdash put dup 40 /parenleft put dup 41 /parenright put dup 91 /bracketleft put dup 93 /bracketright put dup 38 /ampersand put dup 167 /section put dup 134 /dagger put dup 135 /daggerdbl put dup 42 /asterisk put dup 39 /quotesingle put dup 34 /quotedbl put dup 64 /at put dup 35 /numbersign put dup 176 /degree put dup 43 /plus put dup 215 /multiply put dup 247 /divide put dup 61 /equal put dup 153 /trademark put dup 182 /paragraph put dup 164 /currency put dup 130 /quotesinglbase put dup 146 /quoteright put dup 123 /braceleft put dup 125 /braceright put dup 170 /ordfeminine put dup 186 /ordmasculine put dup 177 /plusminus put dup 189 /onehalf put dup 188 /onequarter put dup 190 /threequarters put dup 37 /percent put dup 137 /perthousand put dup 92 /backslash put dup 168 /dieresis put dup 180 /acute put dup 96 /grave put dup 136 /circumflex put dup 152 /tilde put dup 184 /cedilla put dup 169 /copyright put dup 174 /registered put dup 32 /space put dup 160 /nbspace put dup 149 /bullet put dup 60 /less put dup 62 /greater put dup 172 /logicalnot put dup 94 /asciicircum put dup 124 /bar put dup 166 /brokenbar put dup 95 /underscore put dup 126 /asciitilde put dup 181 /mu put readonly def /UniqueID 5078992 def currentdict end currentfile eexec E98D09D760A3C22CF119F9DC699A22C35B5B35ED6AA23593C76D54CABB5E942B F7D6DD84F1664B89699C74B472DE9F8E6DF925F6C4F204E9F1C639B4DBA988ED 2AC419FF2B2BDE605B8EE3264EDD66412D4F21C64AC522BDFC7C5502F9C3F3E5 592B3B2093D33C9BFAEDD2D49E89AABAA832E23F062E91A25032519D1868816E 44B4E0747795003D7930299D6E1E2A5BFE0D595DC97E140989CE81D8D7F852FF 9CDC7A1B1B598C69131DEE005B415805A16D8F1232D9E494BF284EBDC8877C4E 5D28D2A79EA7D5EC25EB01F73826320B565BFED33D55B5D2B4128ACF57097B2E BA8BD7BC7EDE9E6C636AE6FF86DFEB5E9BCD723BED1C30F8B20C4086BCF5FC74 44FD8939C7580185BA7BF311E1E56D7C53EE70ED83BC1615501895EED5042083 A5A0D8CC28978C5DAF869CEC1F15FBEF2A58A11A3417D1527AB511AA9B6746E5 5798FDBD24006F12521FEFF4284ACEDA2A6FE84D9DD417103B4B1FE7FC2BC351 2564D903599E253F6F4BD11D7B3BFCD01EA9DA51FAADA5F18B9F5E5DF25FA0D2 A1BD84D42BAD716CA9303DFECA5DF05B26EC60612FBE0E931112268B223FFC37 FA3ABE4C7E429354DD82D7F24B6A342F53EACEF4188937778E2F037B002B29F4 9A4BAA19E878E7B0A6F326E3DC7949DA57D84E1098506B0B4C1BBB57196B597E 310BF7408315F69854ACD0F8E8640A70F20D4EF409AC0F891554643BD8040BAA 6C11008AEE7BE22282A1328C271E30817386EACF45542EF2DC63856FDD867C3A 4408FFC606DD5937B74882832FE9D3C806AB1C6594AD2F95B763919345E37202 5C3474453ED74E5344ABA7A92101A287E932E8900F7CAD3083D38FE1EF3ED4A7 E6C2A0A8A19A2DCAA58F823D354994C9BAFF5FAF8BCE6A50B275F8958E9254DB 32D7BFB3A1F3739B650B9704B7AE03378D90E8432A1BEF6EF20F8F49EFD919A6 C9C90F60822299B0B50C0EAE5243AB66D9573E257E99ED424D4F7B284B779EBA 1B47D49FFB539EF6D3CAA911911E7CDD9E7CCE13F60F2C698A7E4AA8AB3A2B2C 6F3C86B9EC9EB8A8B8687FCB279B9B2B4B5F838FE25EDE772B77407CAE3C5840 1EC417A4D627AF14F5E8D5D45EBBF564279361B871A0A142962BDB83EB1673F3 CF7A34044DAA42321ACB120827402D43CB17607D9C8CB2BC726B8D06AEF513E2 72CAE380EC17A1A2B0F235FC70D479A606B3360E291426B0C651CED104A39B26 C4B14949E12B160B048969242BDCB760C123FC89DC73D8A628448CF678C9F679 99EFF5E798EE5E46F41D1B84A38631876EC8CEDCEDEDC21038F7707A1F4CD355 81003CF5E163C1DF8E76B1C4BADFC4C887A084E94CA74AA5314BDB69CB0C5F79 B80DBCF17D95CE7B1B0E3C68652158131D8B776C368203356AEBE5DA210EC561 8B56C1D5BA9001CCFF14D7AF2CE1175AE66FEC8CFA4F1F2D2C2FCD5C00FC62C9 98F5FF6209542EEB45BA0DD8ED9CD08DBD58FF8A70C7F1578AB22E25136E31E6 DFC05DC28A66C6C852092E56590199B2394D5B99D466EDE33EEA357806A3D0D7 06B658A6528AACEC3682044D37A42E960E1B92E7E064AB891AA0006AFDE4D8B4 0E61B0480EE2879F3C8455785EEFE3E8C02D9A5EB4EAC0AE01C79C44F84195CC 4724AB8ACC2E93B1551E750DB22D707F1BF8FE2E9A751E542F347A7E54C91D69 25E99CD65F7A348E6234D1933177E5EAD802D3907161E7A19A3AF41378FDC8CF 464A5A87EE4D83218A9CAD27B1F349E55379DA9640739A502427F52C6A16CA7C FB8E3F19E256918FEB39D16B6C4734B058373BA35A222B58A6421F7FAE124E40 B11A646757F60DB2ACBB0E8EAC910698C137FE9149DAA39EEB195ED3823F0308 A8BA9E889E618458ADC62C8F372B4BE51B66FF0E9F9837494E1E04077959E166 C3654872114BD6A703746FB31E330BE538EC7C440F0473D5983C86714E002205 7469E7C388E390068A302F16F7CAAAACE00BCBEA71E1C58E3B59C411965F07FF 04C2FDAE9FE2D314E85C035F58440DC004366307A9173BA9342B0CDF58AD1980 5C38795CD0967F83E13EBBABC37CDD0155A49FCCEB5233B0031BAEB6EDACA49F E842B25DD5E791DE4908C94E372B2075F9615CEF9275316080AB9F5E678AE30E CCCA7B2C9E71571B42A5315849B08DADAD9ED58120D77BC16019006704D436C2 B36A8B3860A5B63B5864383034B6FF0252E29B409D01BFF9752D9A845493EF2D 2F1DA1B6DA9933D24729E8002E4507A15D90E0CBC40FB562E4C0CD70A95B5D7C E70186CD14657AE2D308DB650768E9B135E24A82212A99EA217EDB93D1EC03CA 2FE7B4ADE5FE28A21225F39722E0C2144536DA5083965642FFF7438AABD30710 94D3F4B1118179748A71133050E51C94D9928885FADDA8383EF01BA234BDDAB3 273FAC0D86260001AD472BFD440009C19EBA1C212C581888FCCE590516767F4F A17C7F5BE71A2262A34673DE3CA11EBFFC1A971EBE827C4A232E4C6CBF65DA34 A1D231C875BDCD842BF21E1C00E28AD90C73571F040BF095E28B4F4AA5E3833D D050545E8B5A04A2F67B7C0EE5B49ED30B189F0130D544912E0CBD25D09EAC0C 334B30759FF0ECD7FC05D11830F0ADDFC9F84028706324B903AA963FA4FEB4E5 12756E76F8A55E130A14866983058A7FA9BF206924C0C7281E7EFDB384F9F1EA EC120F349CED13B2F2FBDB930D1A66B1AD1C10B9E66E7AE2830B9BB5A51D0DD8 0A5A0A0729571B9DB76123040AAC7E791137695FDAB0639FD2F994107145E1BD A539BA84A3DCAFFCED2FA9A1642FD8123D65E24FEA77CBD299D22AB1DED3AB40 F0DC657EAEC450B1170CECD360093EC0CC14E2F50E141B8F52A3F5B9D7CFCA92 30D819A34BC303DB080E7919E573B46489BF79691880EEDD6B992CD63374DAD9 2DDE4B0DA61C03CB953ACAEC3176B7C474A1A5A351B259098FB2425D2522018D 98C0CAF94E047EE130438CC2AEA2AC11AF18F652C53157DFD31F44261103DE0C 4D582D29B23BCC137849306504F3CFE49EAB54D05FC62754A3166AF5CA301F89 A1016CD076761A415C900AA958F922C6881BE652F32ECD8DCA3059CC335D3D95 AE5C4F0DD70CE9DE75407AEE7801B9839A56C3E372F126A22A779D949E4111A1 7F2E1B2D884ECAC744D2E78C1D16A8D3D67A6E818BC347F6E6DFE71ED0A7F45D F37653BEF6DFC90D98629BD09DDC53EE1E2227CD0553375AAB4A3F10ABFC38D9 A55A4D376D18148CE67C7D0062AC884CBC6500E646C84DEAB420FBF64E4B4360 B2F5EB123D42F0BACF232E9F3392FC1704EA390941491BD97D191F198976EA7A 8FE3D14141E1BDBA8010266CF791D0E700C1F1C1FE69709712EBFB2136026E84 A246F78B6B713D7DDF9E01745AE071B8CB052B54D5545AB56091E3134306A532 8729EC3FD25AC305D3D39571C2AA50D4FFAEDECF998BA46AE033AC1D5DC3967B C846E475352E0468C0826A8E040332D9AF6975859E069F70F624E8A646A65DC6 1852339A3857C96593FDF7F4787E5A7D691C89396F4B5D4DF91A092863709AA8 F7D8BC7C7739EB060C3BEECA0631CF9F47BE4854248EF5E88B79FCCAD7C19BB0 1B745E6DCA8034363F4C5CC4B305FF2EE1B2B9A234F394EBE15B82B5F317EA7C 39183B8D590DA62B3277FF00283C5F5DBFE10F29AE99581F6A9227009300BE2C 2B0E509BD87D96AE7C5B198C8FB02DF8E1E5A648EEA044A5AAE0293BBE43D2E9 33D55B70F8BB33CACEB5DB36CB9A731B3804D859E020E2FF49BF121A7950B984 7B0913BC2139A8F70FF6DD3C6DC638477E4092F1179D540CD31C349CFB0AE55A B0E772894CF02BE0637692FD6574D4EB2A76E93070556665128B99C20296C550 8BF29B1EFECAFF31925ECBFD147490E3898A98D374904CB7BE2E7C752734A359 FA107535533B4A97691A242FBB82D66C006A19374AE8698647CE8FE951EE2B84 0E5836F8A3CCFB6F95FC009F8B5D200C0ECFB0BD6692A8644BA7DA5CC2E80DA1 10ADA3FF7F79A40AEFCA4B98CDC4EA9C29BC1E901CCE1FB466DF65233B889C24 DFA2E161FB6366CFF3AECE89C404283546D7814B254798EE928D74FB9B72B709 E965F4369ADAFE799B4510CFDEFC772ED5516D9EDD5F1AF0410F5D82CA9DF5F9 5134D9B9BA4984B5A8A3D8320AFC0DCD6305CDF582B08E28C28F0D137F73EAE0 800469768BA91CA121A42D04A606D1722104CAED2731D73C3304F7C4371A1319 F9ADFA53A1F7A7F8EE4D7B74E3473EE3C11AB66BB43756CE0D57AB36B5278E43 B860B5A9C51AF0BE85CFEA6C3D114AC0AD68919A9027DA7C80D5C3456FEF5824 1447D68ACC05CF272C0D0E62548DC9544908B9F50F5804B83C229F5E9B65C3C3 CBE220648DC64EFC53C40473A421301F19E768D3BAFEA7FEE49FD3B4EC279861 D9D751F4D49A64C463EF174D0F7672042E22BD2F55AAF7F531809A541D5146CB FA4D776AD1AB10289B6EE3E01C19B8A8F7A282AD668D5F8B76C45A68D51BF56C 56DDA612D9E4FDA940D2C4B75593834F882AD142E6E39FFC70744CD9F3B7B19A 1FE25627DCC832F20296F2B4608AAC873F5F7D859D5BCC5C0B83DC569264102E 50BE5724F8F64CB35C8FACB12F460A311D57F4E52B7A08A5930BD56951C0C88D 6FFF6A6A18553FA7A2731F001C28093813676C4ECF8FCCAD89D94EFE35996AB1 776298BF7E1EC9AB0FC95D6475A635B89F7E0EF16EBC188B1FBE3D105942CB47 0A4BFB9FA132E1AC19D544423081ABFA1AAAFD91165B378D3CDD2734430EAA36 B070A780F90863631E2C7CA2079B1EEE7666B975FB9BC62C37DB28EBBFF3FC57 5356BBAC08A908976DDFCFC1664927E69DD7713A47B1A4150EA0762E9D30455B F840841688DCD60847AECA495F411656D669AD3168F261BF9C31821EE3E8685F 761276952DCA7E4F21C16D9EF197AE2FCE0D1E85263C738E1CD88D4147ECB87F 7C232716CF20C51575BBB0C771FFFCE3C08CE867F426FC4D1DFEFBFA1618ACB8 ED40168DCA837A254EDA92887905BAC603606E427256D2922D6FD43AC3A18781 63EAF11A9102411AA6CEB7119688C106E71364A973EB54F1869B419AA6770383 9D2F9E5C0DFCD9334CAC426FBA2AFD070A0374D65FF2C203516D9E052462993E DD2C77E9F84B8299B2399045A09E37744EDD3F3DC1599A2B8901C84DD5640936 8938E43B662ACBEF2279B10F44600CA2C61647B67C8909097119232BB82262D8 8C55D939A457E84CC03F2DD9215C78CA82EF556DEFE179DDC0D248A933E9F906 70850D991D72913C554BA1E71E71CB773020D452247B7B482370C8B190A105F2 6074F9E154E9BB43CDCFF610B2634061614BE281B1809E7FE0B60D308507465E 13F424FA991810117D147A9D68D76170C75502E60E95D19B30081969BDE3747A 1CD185820B4080697411DE70ABBA838BC6AFF19E11AE35B5284B2AC7A96CEE55 1D9415C7FB88CDDA4958F9C9892C1119B69B5E2B47B2896F31DE83F6476510AA CCB73E9E3ED534D7269C8FF23B4AD964AC6A920C20F0CA0C469EA85F6D675436 CF22A3B92B7A4BF502AD1A94D0A575A82E90ED3CDE6E422B73B6B76C23B1CAD7 7E246CD8C3FD6A40CFE5E955613118FC584DF75CC434F8DFD05181056CCF0CFD 53BDD45E4F8A9424C3092C42FFF19D59AE1C003D3FD837882D6B0B2A00489F23 518B48040D40CBF9CE77733823CA610735CEE4FA8C907575F0F0CFCBBA4D2E50 04ADA5DEFC707A82324D7F288302C99D2ED5009D20FB875AA0F861479497643A 0E041E76CB10B898E1EC007BF8F70444474A75D3C005ECB947B8F8DE8356771B EF4052F1D5CB3B19853804BCA33E0EB27B418E75AC398E79B1A621F85E4F5C26 1603C789437477357A69A585BDEF24F8F0C9246FBB04F40AB6498FF72BABC3F9 2C5D9476A87DB82859C374969A1016D0068FEC4AD30EAF10E871DAB9564EB600 8EA14C41EBA75DC1D4B4EE36AD57CBCEA9E862542627551B530AD763BE607808 5441ACFAA3AEA5C6DE659B15F522C10F7719A4F868473883B8D1BC1E40F7E525 3C1196E9850B6D58F7673D6403BEB6FEEDE3105BC4F7CECB15A3BAC37E77D83A D802F77B9A4B4014C1FEFAB1DED101A0FE0ABD220965367F99DD6E4C34C6F47F 040B8A1924E7889DC4A131408D8BD1AC15B3DD07315C4A30BD30BCB9C03D6C90 ED4295840906E3AD448FF83F74257F0549BAA5F0D96FEBF943F07941121908E5 AD6A27A33BC555B602F72F067273270498410D2089C3D1EE95D2C423223CA83D EDDB1552B6E121D9FD1D0F5BBC1E9E8269C0CD6515B1428D61704FE230AB513C AFC088CF436E7121630478E115DE2F5157D244B6E081FD74E5539385F6FD056C 5824847358D38BEF8896B93424F40ED6F485CDA0D9AFD896F921750E331ED55C B58A93CBF1F74F1B11DFE0E35EAA56580E949130C6D670271921C65BF946FA75 1B9472F92BDFDA5D71DDC5C3D03260B67E2D94773961664EB4FD4D23D49D368D F2D8ADB7F2D6D41A019E20654EF4B78D35F26A159E48093EDDA1FDABAC484D23 88EFF39E0A4C2A64953D53B6039BBA748751F4B6C077C9B66AEE9127E646723D 26F7E288365818F30A38071AA011E67F0E9AB64F4A943BEFF67BBDEAB4915B31 FB6326BA1EC27EC9F525CD183D97015750C17D2944F793407DB6ABBB72AC2F85 98C449326CEC03227FC767470A3F102A12C2A8122396D00025D84A3778A50869 FBA49AB1AA1506839DDD675A8AE2DE1E44E83D300CCC1561210A23D1A97CD590 FC257FB5367BEF1BD15AB855D07CE21771EC8B815094721A1CF7306AFB4EA421 DED331B92C7481C683785A92B9E213B04A2E07F420ED9B9C025DC23D4FA9DBF0 B11D6948AC62ED02298B8F1C6B519364B6140AB89B4B53CF1D05FB954FE7C185 4C63616799FCF3492ECFE06D0D1E00712756862C3F0C1BF21FF08564BE0A3AAF 9364F4E7DAE16D828E7E5A2780BF6A9EF1CFCF680B4A96CBC4EC5DFE7E64E140 31968BC00CCE67789EF5BB4B1E7A57D5FB53819CCDEBF38A555EC145FE2F607D C199E3E514EE3012CDEFEE1FD70176F39B5071EFB08DBF3FDC2DB6E89E2CB41E 5F6B9528C7EDCBC41B3C4860CA7EB9C469BE1D5D1A9E590F6E721A956CC53870 9EDE2D930ED28AFF92DC834913C4284847CA619D27B68CCDDA91E7BEB15F44E6 DF8B38AFA1C63C6F484F0001247F6C60043DA83C802E0116A1EFF49EB943EAFA 01412A0D518E2E860F61B649D2AC312AC6D84BD5D7DE93A13DAF1C4336105813 869D47538CD56009E8BCE20243001E87020BB2DA91D83EBC9E9C98171F1BC02D 56CF45AC7DD7358ACBF26590A7894CA6F99AD01351A384540B9615C233ACB22E 519CDEAF5A0A975B8B6E7C711DD98603F684259B9210E8642D955A4F4D977291 4C9CA4F59C76E598F7E48DCB42A331BDC8D4427A13468B735FF5D2F58296FF65 180B22485EF5DB6838A5C049B1371571D7257701929CECD5E1A315AEF62E2E98 2AAA70C380E40C3CDDCA85A71558E3AD0AA1064F840FF75334059B84A026AAC9 DEDB589213D45C520F8BF067BFF0170BE3120A8F6E3BC29E4D1114DEBCC4626A 96926AA20AC4396734C91808EC5DC632CFD69ED1D517D9ABC261E00815E1F3CF A4ECC31B5B0348F96BD4AF2EAAA634EC24FD310F86E5C760A122ED44D2962EDF 06104A5DF36138284743DDDABC2EE689499333EB31347F488311A93DF9AC358A BA157B8898903AFD6CE2FBCC2A558360D174E2A68015A676EF8A3F0A26021B55 AA27B65B2755F48A46920C0BAFAAE72E051085538F6C60D0A77295754C755BCE D30F94627DF2AD3311767D183A22D64480ED1E06BE21162BE345CED43DA52047 3975C8647A025E2411F15A78368A2689E100D692F23E0FC660D321D55ED4AF88 01532431864B03835099474C36F1C39C71173A04965719A7ED95995AD5AB40F6 E8A33CC915D25C2E9EAB91107E89DF746FBC96DFD6FB7A9F020B0E3AC7C81150 C21D9E5D9EFEEAB4BDBEBBDD705BFC0F3F52A77044831A6A0397DDBE135208BF 1E86FE2830A8311768634E62B589921D1B5B1347ADB167FF9B410FE902ABE465 2E0C320C3B5F7CDE7859749978D7C2C80E5FE38901EB75FC166287F5BBFA6848 C839C5FF11FB245ACC7B6C8A74720BAA44625D84C721AFFFA310E52EFA782EC6 96014134479A15A5C6DC7D11D8256DEA0CC645D9F0B0524D7885A8A59A2638AE 9DB5273E3F3302D1C94C96CFC9CA768F3A1F8E41543A272FBB3D40D65D82EDD2 EA11E127CF93E345E87E41401E2699FF0BE4E92814DD959EBF4FB412D768361A 7CA5399AA68C6153C77FC080273FF4A987EB649C9F5C4FC18BF106E13BEBAE7B 8DD477865BA85C53A797BEF5F177C053ADAA1EA2804CF04692817BDD0DAC9936 C63088AA328EFB1B4CAC4079C2EFA244605E362EF8058FBBCE41C2774AF399F6 E9949214D2EF9B899B5CC5F628BAD3FF2054AFDBCEF21A29783732F56C52D19B 12C2301D5C525099662DA96E0E07CECDA9A2137655A3BE6F6F828C85408913DD 8F31D8521A84FF78CF44DE8619B8E922CC7313090F45860C5847A50792518480 6CD5C1B6471F14D10372AD4C7CE4FF0E6A9B4D2F627A74B52660794691F1789C BAFA5D38F92E492EDD7A0DB2D7E860250C0812522FC5B912CF0A39620FCFD304 D67F4F79FBD079FC05E403651A30489B717FD71C42DD2CFE0B970460F7D12C2A 04492DF55C523C5E9C62318FDD451FA5CD0B7325172B5A07287DC2653BC5EE83 0B78FF312012FB0AE605575EDB52F2A1F16509C12EFBCFBC070A4F9A90E58F27 30D5CEBDD6DA1D2D740E0EAB4AB226F245C743D2808C3D843722050ABB626744 652B3D3CCCCB276343C1BAD5C4D307753FE781FA7F47B3D9FAD9088586FECEFC E0977B68BBEF19034F53FB1BB7868EFCE3F3FBF89A26FBCB3F8FBF55C12017A6 4743BD2279542A3B824ED697B866609546A4C27D97DB532BDE215CF8AC0C5E97 059A761A197606B6285D936096EBD2AD7DE53C8CE2B0D0B4F7E50D5E11FCDD0A 2BF4736B7B9848FD1D4ABBD8A6F3903F1EFE48F0034F9C888923EC768D4DC7B5 EBE32CE269396D9C198BAEC1076F842C503E546705FD1678E7C6B8C3F5F431BA 1C63CC1198893BA77CC79E5829E39B541962F6B110E9CF545B064E46F3539A1A CD080E98DE474EBAD440ECA7E820C145955BA0B6CC80E7C4109185A3877DAB6D 4886FBA0D66D6C3F619ED6A81B346F5A196D1CCB4D796E02C35E5301E9C34A58 3BAA4CC1BFCD6B0906FF15F200FA5859E6CA7F2A21872A51B7E75FFBD92C3048 9297C015A3BEFFC5B5D13A988AAC23AAA4F0DD4F86FB5E6FC8279C43A10D5C2F 624E8CDD2C03794CE1B2246F7BED4DD4564395FEA490A41E5345C6F86D847D0A 7AD58C606ADBD3BAE5E649998FAE5D0257FE2878CADFC7581C22B31CF420A0BA A3A76624A582909E209E53B462BCA38014162605977B87FDB8ED67757CC363F1 A50E5DC6A8441B9406D874A756D91B978415651D91E8BAFF5879235B830E8702 700D5A797B9E1ED4E04123513DD23604951C26C892004DF6B8DCE876430ED7E0 56BF36ADA204464C0789A18B2C8F9B212BBD5E8C9E2925D40AFA394F8677336A C406534E239292FED55B20E5A8F986EA761D33B46BEA1A37DB3E76FEC6A5EB04 BD38F5B8DEDB095993F81BF12936932E610D72CDA00A2D3CC2522793B7887B23 0FAA526C9D42B6C087A936EB98B776EBC2BE5E2A3301AE9A91044DD21403B2F2 976BE40E7374CB47148F8CAF85C16D7DE4CF8FFF13470B2E6925099C3C97219F 5F967068A9E82488FD591A964FC3169C38AFD8AA352CFCF35D3E0D6045484475 4EF4EEE6AA387768FE9767CCD9F81818BBC7046AE0C2B7B42BEA5FF70C65CD66 2ABB14F1E1FDE651C260129E2235FF02A7F27F1C948CC500657A536FACA3BA8D 8C3FB591601310A2315920555BE054BCBF4668DD8032C562EE12D2C7ACB9C50A 11CC8E3B3EDCCA00A5067ED11C24E5F0037FB82955F242BDBE1524583D2B676E 12BBD3C0FBE80DB47A23D4EECDD1F6545860A415AC6BD2E852A39DDB12EFC723 D0EA87E1A454B661249959DF54DA9DA50970BFBE0113821F1CE71670827B443E 6544081B2BE1260270A23E9417E4B0155A1302BD9845A5D62FE9EDF7D1172353 85BDC4F2DB55CF4FCCA18ADE873B53FA4FE0B58EFC867599891A165631064771 5CA76573ED070A85B135EFC0B619213E0518F0D4A95490C32535F66695C84124 A1413AD30D918BE68A3335E65C2BEBEBE4E29DA17A0FED672F3B714F809C157F 006AA925F96003CBE7DB7C7FD7BDC5A890B9EFE60E9915EE7AC3B3FB9EDB2CEB 581E71527907A1E43FA1A06A12CABE01979FF0E28EFC4965BD7ED592142D9F82 47BB2417B528590A116C791E19A006F274035B74C8401A35952844F22DAC9D07 EB2F28E3C9BC5B8E1373F1538F67686055D1273C565F536E9F35225A67D53E86 510F371B7E6BEB04027216BC50AC67B2C0E9F528CD55613195C351098FF6F9A8 D713269EE95CDA3CFC786F8F28DC3BFA23C6E3253E4E5CFDACF097B862636CD3 B7C78FF990ED9B7BC27AA51DDCCF408F0EBECC40E555250C8077DDA1646D8BA5 00697705ADBC54DB525A131A1AE59FE8E7C3FA81A913FA5C6BEAF2FC393412D2 685F1AFB5C1B6208AB5E4900E29036832E8942550F206D721A759E994814974A 11EA5E5A027C3870A06622FED8632C3D125ABE15C71146A7FA4179DCEA8BA117 E6CE9AB0DA1373933319CD27BDD4C69CE672491B1F15BC249B7126F141FD1AA5 30121588773D42E0070723427DF6AFE7FAE3DC6B940EE28A8195489F1DEC2811 A4773B6594A8BBE4F439EF76D5D4025BA7FE822A72C5D7DAEF0F1C88342EB016 26203272584C62E26D16F6E1A5B37A65C51553F93ED4EB12E95D6F39DA5204EE 62B52BBCE5F29A47D942F247A10446672FF26C6F710244A237C89A7BF6D86F7E 1889103269B8932632BC0F0F89FE477C24133D8F06C1C74325FFBFE82B59923B 06045FFF59B25B50897E71B8D94395A939C9319190F0D891C24BA6186900F8C7 9824B378C8570583C5303AFECF6D32A4AA96700D915D0DA70DFF8765D44740B8 518FE4A6A8049E3CAC9589A3C0752F4E0DA6AAB319E1C21D0A760867602A9CF4 CB372F3F4B7B28712FDEDABA55A6B24B533FB96701728762B2F7FE2DD070CC3E 7FAA0F6214500B495F5D986D13C012310BE12BF864B7928BE4FDD9DB68EE7C9E 21D645094A676809C455F8AEB85E5B5B33F9AA13ECF24E5258D49D2B233E22C6 F9926353011DA6B75D17AEB6BA6EC8E4A405181F04A656E0CAA13BD463BDA234 5F4692AE9FFE0C4240B7F260AD199668D27C07ED34E69BA9C3E09AF0F18E5731 71C576C4431B9DB7E83D645E7FD6D3DDB5AAEE00A9A3C806FBFFE1D8ED8D8A47 4F69A5BD9747B6BFA7EA057DF540203AA6030B5932896D1E586A8AE9730B32A2 8F6B27400E4F0773262505F37CAD309D48B02FDBBDE883E0DA5CEE4AC6B28AE1 7C7663C7B4AF5EACD32EFC8A8910A3BD514B8E19820CB2741BED0C03DF65DDF7 ADA651E232059D9AD05257A8B271BA34007E8E2D6BE190CCA9992011EC455E7F 1443C4DC5BDF1098C399877B64E02DF566B5CAF6B8BE73CEC6A2651305E32C91 2670B1D570CB8F2CAC29D30588D7C6D3D810F660F7BF30C18609D72D60FF745D D879957E4542F5877A05D0A281BE84656D3D9879FFCE5F667854CF00DC01B8B2 38D2473544E81D8ADFE49FFC6DBA711AF38BE51897A42FAD78DAC2D1D08A3780 50C9B002A9EA58E0DF5F4FCE96F3405C9BA1F32C91405CD058E9EB51C43457B5 62755B6FA91CD94C22297FEB48DC03CB78C0EFA09C74D2E7A8FB253ED4F6769A E54731333C9EDF078829A58AEB8C1D28D1D7C852EC574B0E2ADB99F2A0CDE7B8 4FCFEC125944835A8E3F1FB0C15FB669E670D2D8DBE24886AED75A9190BC52DB BBEDC221D68B88FF825E69DD69E61FC2E37459DEBABF7BCEBC179D4082DB17F6 12408DA590D1F768F630951D7C72A74E5172F71C97624F2F4DFB37E4913BC382 990F61400A362D5AC3A29D64F1F1BB24E572832C8A1A8983903D086ED747442B EC2DF2DDE41AD05045AC4BFA77F83342BC1CE856BA2359A66612962A5A2E0635 806D70FF2F6FA279F639E5C38B0360C33A170362F5EA48E096CFD7BCBC43B49B CD4801CCD9E9C421F24B6CB3F793D4ECDF9B1713E7C141934D53EB8FF655273D 810ABB04AEAB956AC369DCC11C17D10F08BA7F1BC47A45B3889068A169A22761 52149F3BBBE409F8C28FB89460B55FCC0A357A14FBC50A396512CA588A4B2324 E557EC51138CEA0ECC37980259DCD9E01FAC43FB9D7AD36B1D17656A932FE69B 3D224B98F0E562368682150C9D9D4BA2907E4439BDB7A6B8F0D18F8CA351B446 96CBAE1B9EC0C1BADD2EE20443E01570A39BE38FFF7A2329CEEE5EDF6B2DAA05 C51F9F75B21E7ADAF05591569AE0DC92F469675588F12A28E84D178699FB76AC D75E66C0F26F4CFEC9BD0597DF10342033D0A2CDE6DD2576A651DD1855DC61DE FDD8BF33FE487AB7CB0FBBD811F413BBE9E23F2C832A654B37BA922AB7F6DD9F 689AEFB8B49DE285E7CCA8EA94A0C45B5431732E81F5DD0FE804CCA7C82D5234 672B3670A16EB11024C31FF89A5B4C03B28B2B582315307C8CE8686557A644F2 65C8C2A9CF1C9A2862BAFAEE0E94AABD856A183394331992EC764A3B82EE4306 2B40848D8D95D0CF561911797C9A2C6D9E334D3F6E595D59F54017218A8E6376 39235EC929904AFA8EA42EFE54D294768DE0B68B4C1907F61662FA6710682673 AC64FE11B84BFB0BAC6D1F5F90FC91AA5954BE48868AEEC05E19117B682186D9 A0CFE621311708B56EC668EB0BCCD9E9837CD7E957D72AF5B562E51378E8A9A9 34947A8BED94C55FC7A429E28DFF9BEDFB3F28E5D1A2536B84DBD1677320B132 27F8A8DCBD4AA2B971F2F02817DD7753431BBB210216F822CBAED265C55B79BA D7D5FE873E093D62250A27022D63D7C0823E9FC09209550DD4BA413E50FE2DAA 8D60AD9AB7E6FCE79E1B6CD6FA41F5C723DBBEE00FFDC8F614DE64DF40B45BF2 84D3B6F96A1375CFE96E446E6757F31F8FD2E34DD88106015037F4F5B5D381C5 AFA0D5724AFC260CE676DE70C666B34520FE2E2515D2C5194049F89EFB0D1A4D 10D40A12986228BF3CADEE7E8C9564F9F2D61E094C44310FD5295C5AED950A23 491431F3EE071FC38FA803DFC580A7F0FCCFF19F3D8CBE0D503057E95A2A7D00 A490CDD1BDE01EC8370310A869793E4DB867496094D4B54B3B9AC440F304906F AFF32EB87AAE8075149299798E681B83D47935D93FD3A26302E5EAB671BC2C7C 7E87A4C1789A772A9643C5737084462AF596F23DF9F36A8C00488FB78C6ECB64 60A22C5D2DEBFA17E2A78968EFD029A29CC04B6E231B58ECE47CC6C93074F701 65B19F77969B4DE3A7272E769CA00D5C481F5791E559F61A68CA64D4FF88D513 642E82C48019C5BDDCBA0246448BCB765626462BA0CF6DE0E55F5C4090DAE3C5 15076B25A8673D89A4DB9B5EC5B133EEE44BDB76AAED2A91FA68632997927EF4 EB93C9581DA7663A24CCB982D1BCE9315F8F719E20C9E388907555FD27ADD8CA 81B8A4C5F4F7614F15F5A6D3A542E3F22215F0DACD6D78E22209AAC0036AF039 12045C916E9858E2C07B20B13B4715DBD513DB1003D256811D019BF84EA41069 53731364B773A23EC103ED81FEADFF565BADC9B698819BE95D6386980B13D678 A33460A92BDCC24FB6EC68FB73A8ABB4D240DA5146F04B1529EA28B8C47B661D 3A27F5E03DFB5C7BEB8B1E6AC63E1CF7236198487663AC00BEB5F59EEFC366AA C9FBE97F8EF03A80F37DB7F1D98D5994203FC3DAD6EDA29CE5079E09D504E360 902FAD0E67257EADD77A989756B3F1B866BE530583CA81610AF81D516A78E37B 4AD1D27A2ECBF67AFFA6914F06CA73AFEC79921474F3BFA2D2C169A7666BD668 821FEE767FB326ECA936FFF52FC87963027983B23751956C9780F1791595C91F 3A5B497D8107667B12CB2D31A64F16F51485CE00F376DC07CEFD4DCFB7A91C27 CD8F3584B14CEEAEFB824C59FB4852C2F285159BD37CF3E3880F47658D3799CA E8DCCD4C79144D1503EB5492670440976954FCF0487F54EB23A1CE0A139AE7E6 3F34594B7F85379745113C0EE8D05E10A6E740A76CF900F5EF056DF772B07258 A3206320647253786225D4CC14548B1750CD034CBE4FFFDE56CD84B07896D08E 2EBBB9006DEEFE45EAE3688F06806CABACCB255915C695608A6C99DB3AF5A6E2 DEF0B77D903B0BDBA16C66541905C737FA79CFEC143CC89C4CA56857096E7A07 B8A0E2E16C778C5C929066AA567449553D2824B68EFBF7D7184E56470080D7C7 C847A46A9C6556560B86FC1F82B7231742325E718990E81FF7323084267F46E8 9F4B6BDFBF811CA84296216FEBE788EF20101B48EED478454F1B238C03A1E0F3 DA386922D1A038EFD0555799B29712FFA294AFF0312793F2349B1DD00E16240A 6AFBDAD7B8AFFD1AC1AC380F35CB7DBE92D517408EE81517C04D9A82E1A6DB84 EE4A6EB49650B0F94A64500A771CC0788F0CF8EAC76EA80437DA23D05651F9B2 65C5112FAF87B2AAF4A8E07DB8762229DD3C2D74C364ED6F41E853DB2B6DE3F3 9AEF626535EF31913165796AFC6989371B04BAE091F9980448315E43B29AD252 5676CF2B2DEFBB0702007DCF4F8E2BA032714676CA56CC18BB378D138075DE54 316D7F4D9C73B08A83FBE43DB11606B0520EB9C929BC4BA925680FF37726F65C 2DE1D25B9500C2C2DA7592A5212290DEE61552175001675E3258903873E9F3F3 C2D5F7F57B1ED253596425E95743F67145FE18B80AD5194096E10EAF1329BAFF C5666BBEFE818C9F88ED0A728F5A791C297C97B4B398621E921419358666B69A 63D129C875A930087A889420CA64CCBF0152CFF788360BF88A42464C40D03B1A 1A342A89C26CCEB7014C0A5A1669331D918604AA43AC4A0FBEE0A39DB47028C5 44074EF228719E1C3CB91FE9F053148F3FF3BAD16CB57DDE5E3E863D40632D10 68E72FA28B258913E38816D9E0A25616A8DADECAF0DD52625FC5BABDA943017A 3B36959C495A114346E805A9793D2F30C5F7AEC8CD082DBE1386640593ED1E97 63A98310C1EA703BE2AAB203095ECABD48D761E92D614233788E4FF98C154A95 15B460EF33121AC9EF0BBAC00683346CB2586ED0D18A62CB0D6DCDA7B0500843 B07D9C149678BE81FEF9AF9BB18D18B5CDD59188DA9FD6A79822A69CBB9F0A9F 731FA4955946D4363710FE1AF278EBC8792158D431B74327017814D69E5ACDE0 2877824093AD46C7FE256D4615B6A2EC4997310AABAE4F3CBAB629F1522D5B2E 5B43E931917589434F5731D5418AE96EBB0C07573EB153A6E5442202BEDB507B 4D09872458F184159873E21F91F999DAEBD2E29BE8E82C6B796345B715693703 CD412195D1F170A2B2C9045A4D3451752FC1945F82E92B07F37828F44EF2EA61 77F614FABF81162CC1ECB0676E8C121CEE5B20F325993CBD2AEC8B7BB1D8B1FF 85D6D33B75BEF89146FFB0BD73DF334DD1A9396861EC67E447477A00A4276652 F67B8FBB2AFCAFAB9C3A14B0F7BD3F0C54CBD763EBDEC129DCD7A7DD2D6760B0 460EB2E5EB3414C87365BBD0500C5FD4773525A9455BE7954C616C3BC0D892A9 AEBA406B14B5D5340785E7EE4C2DFEEED396DB448F20E58725E213DDD11DA1F7 000EDE41596161C72151B05D902FE2E3203C3C6458F3B462E07FB0C40FB83FF8 375942B9C7440A0EFCCA65322797DD2401EDB69D308DFC579403609DF855E29C 3E35687C40EEEF2D02A2239181836DD51D99A366D88C31AE289787211A3D5FB3 0BF10D01299C451C4DD869B8BF132018BCC45077647F72889EF81A5BB63669E1 66F5EE6FA504C44096F7AEE1031A39EB8CF7902D881F6AEB66CAECA514618719 2F4F459BF2E7E6E2462318279F15B1B20005AD6137F3A4F2A810A7F08D3E0BCC 4710DB79054C4FBEBE5AE07CB156BECB6316065D24C92272E276EDAD21FDDD29 E1F4500E0358D8933DEA0609C49DC211A7A592EF2CA1AC5108898F9532311CCA 37C83333689A12AD0B185747D23E12EB86B0753311DEB69F6F471E0F0C99AB14 CD4FA8E882FD8D6A17FCE3B2301D85F0FC49ADA6A508FB36ABDDD7A8835CE644 264A62708CE1742A26ABD8CC7DCD1FA60C856B96F84EDE061B534431E012AB5D 93FAC0808CA1629D45817ECEF15B78EE77BA22CFDF620AC795E4FD1965976657 DC97A3C35B513C8A31723C902D38F27714D3CFE6AC6F107CBD8B2E99FE08AD85 811F052B6424524B1C049EDD48BA6F8D98B7C71302ADF601C3E5BA4BEDA0C7C8 C1BF6E4B8079B303D30D0434B7F2E47FDBB7C46906AF947E7B5DE1E6ECE052C2 9935D2985B98DF860982B3D044D325306A769065576686DA5F2E552C6150F5C9 25D0AE2009A796D322521BA3329467B6DA1F629CF9AD82F9F9BBB30AFC68CC30 97440AE12F41C7E4192D740ACEFACDBEEE4EBDC3045AF2E1E188FD6E1DE499C1 E1B3EE148659DBD3B4EA6215791813BFC674D4CC8C066771F82DFAF4C5328AF0 6292773E07A15B213126F96A3634CE70FBFA7DF4067D540E0C951F919DE5E0BF DC2E1B37EDD3B45AC9F009412A6A237E7695AEF028A8D9EF4905EE593FAB2BAD EAFDC2DC8455D087E72E9AB830108A138EC1D55D38A040C1A81A1E1E8B95F381 9B44E42D55EE9057010BD0F7E32AA87D636CB9130F4793DB86131B9B2E9068FE E8CD989A94FC0FCC144CC99B52AFD4976D651C0F855068753303593FEAD53AA1 2CAD243638618F68068005C923E681D214597570B8C418C5F1B606D33C0D0C54 3FDA50E8CD52D8ACDBA45C88FA875BAB5E4690F866E154C525BF02DD103A7567 70A307E5AB1EDB318E5E32B6B40A6995666657136B18F9D45E0BBACAEC4332B8 606F8473AA0971E2B4654209B2353A94C5E698519567EA54377A533DBE6B0ED8 FF2D5BC21D0EBD7E1FFA597B59826271C18D582692614A48A433A3ECFDE25400 C4243D260370C6D23EA8EAEC41B3561AA399C67F1E558A192B13F258945C318C 8B5ACAFF5793CE0FDCF1AF2A05152489398AC405F24C24C4B377F5D44EA10C71 2D9BFECBC713A9E8CC834E52A5A9D58E9964EDF7BC4F1C0040DECA723C0F5C4F 1287CDBA5314110299A1CCDFC00E55759606AF2C52B2C47BFD3FF62D892723B4 110D26139780B49E35D77D3C5FCDC51A3B3E2C64AC161ADD295004B271A75823 D79AAC2D931232623409DBC3224E61CB529DEDCFCD86EA583C4097FCA9DBF18E 19700118D65A186F94C261762E54AC0A6FC47F4877236EBF23B0E497F6138D75 0E20474E2D11E68F7CCDEFD46C5D62E81E559496AA830960F6DD379BA16BA099 D13AA5FF5DA079A7ECA28B701CB49297C5F2E75A1F851008A0CB290DD0EF6E27 5A8E785398374156FCAD3D45E704C6DB247CD56BCF919E836DE2E52C9FC0A8CF 052BAE14101DAE8C43EB766806E26BD91F48FA455C9269721BE8492FC68D8AB3 01D638D04856E5D203D28CCD8B702B90F32870D104787F8EB6D61648417840B0 924C38AFC4B7CAED1F08E34E1A3D46A545E86A4A4542ABD6606672C07684CE1E D5F2CC4049DAFA3304817E05C5945F70A251873D93DB4D5912CC4A3BA082A05E 1BEEE45050212C93EE272E8C33AAC196B201E6345FCEDBF5143940B5D9263C31 B8DB7ACB464E0C3989A8AB68EB7DFF28AD666AD3BD003C2978DCBF5602107943 E5060D5CE3E42F27B65F058839099C2CF9B7F045D1927C7168202D39C6DF70D5 00CBC98EDFF8837D6CED471DFE0E7F84AD5BEEBB25F619D672D9EB812C3B0FAA 9547AD117E6E27D7979151B2512884799AE8B4503308345680D61CE8FA394EE3 4679989798DEC5B494EAD4C0ABFA713281DA98522810589A2CE473C8C3E448E2 57BD26EC6DE17D8A9E1847795597413B1D80675B79D0AF56E8D4031300081FDF 1406B9A2952EFC0F2D086443FAA4D96EE5AF3AA562F67F9AF495B0F9FB438043 4F955599A04824F8BE5CBC825EABF544158D99FEDC664150D66CE9C85C08B720 7B33BEFAC455833F57C43CF481DCEF552AD267BB90D0EB2662BF6CF1945822A4 4EB709E8DE26B4858A75CEF9689EDF05F91BC2BFDF73CEE6B9090A001D97ECBC 7CE94ECD059F992B608A19FEFADCE3B5270A8641DE821FDD3EC1FC766F0975BB 8DC349EB7D3179749B16832C7615DD310F815B71717495308C3902CA46C044AE 78FDE58FADFB233DE8DD6CC412CA9091C02B44FAB96133F0F617584DC2D5C51D CFE828040673A5114DDE42228F73B42E1E7C9296C51BB657773D8F15B0797AFE E846B26599E20C73E1C9620FBF224446A7FF87ECFE64DDB0D45875B5CDEF1C8D 36D20EA6F90E09F2A3EB423611423370EED5DA83D5E845051C65755A24F7E11C DEC48C78F1FBAB97F6306FF2982E3B61C3AF46F2CA65BC15EF35803370FB787A 0831506C9FCAEC8299005C68DD453D2107EACFDBFAD9F861BC46FBB3802901BE 1C6D99EE609C7D9712D9756749D7E8E1FAB8231A9897CB4D7C95A19B734D1631 71532C43E1E247CDBD404F33B080A3202E23B6F7549C7E8A8F0B050E3DB2A89E 1E30428EB2D2476F5F275DDA324CBA55D3772B0C460D711FED6D6ADC43CE821F 683181028981AE66EC16BE2D7FCC2BA13BFF93F3F1BB1BA32DBCCBEDCD9F793C 30C078A839C27CDA29CB694C74A70C86008F4F2B2B8BACA49ACBBAD11B0DF198 184A6F107BD42D6F129A7DDFF949288AA27C916694D62C9AEFA24BF172F43B68 930F7E369000656155A593BD360E0DDF160C273A4B3F538955B11F25846146E9 4CE0A3DB78E8BE770A7B83E0043B3BBBD60C0333AC55BFB8E1503D03A37803BD 841A19848AC9AAAF32AC249E880BBC04CD4396DA8F4CFEB6BE6E9D261A3FE54E C3BC8A01257D032E916CB34C9BC20263DF0828B5F94FB9006B09A00AF195AD03 8665CC1E7A772D9968D35B5721163394D221147232ED6682CF081607D82E933C DEDABB994359350A95AFF6153F29CD96E4C3FA1FF186BAC26D6B41E275D2AACC 68FBD05ADA7BB1C68EF37508607C9A81151D88FB40E78890E76795009CD1410E FAB3DEDE1A0F2E63B8835743AB5582F45EA40C86469A140B33BF721B936FD1C8 56D1D571B04E8CF1D856DED27BF608FD3286E827984FABB52D7579BECD5CEC42 A0880A44C230C6AA718EA897ACFD482E0B79C46E54F6338EA5C58BCA595D735B 4C1D3C851A2CF846E86D685E6667B8A975F38DC802269CF7B1B0626E5E435448 406913DE4D10772741BD203252280BB13624C2C56E861FDD9F1E2F9522FFFE42 AC2E18083D916B54CBA60179AE3ED01FF1792A17DEEF47731BDDAD86ACE50673 1D8330252BB4D8D4CA0D617B0064FC1F13317F799C1A9F368A3E0AEA888E2BFF 07C78C6048718CA2D0D5D1A20686A7C44EE73F6D749A9F0A6B978A4A522D3E18 C4BCD89CBB1151324182605BFDC24C6C450E79EB69E79A420B2E271CC1F903D2 8C1BD054304250E41624F1FCFE70F0509EB8C6D0530E1D6BF45604FCA1FB7D44 FCB548EE92CC85AE335A8DFB27647879D0BA25409E4066B4F708D3B0C1FEF15A 80892005B4CDF4DCCB2B62AFDB72B1E1B1A172C313D7CBF31BC56C897E8D266C AC8D30CD36BDBC6FDB790FF6FE1658FBD3244B447404E98BE65368F48B349003 3E50B4F6F048042CDA62AAE7C6722BF80D56F1EDB47B87028D85081289617129 15B21BB051833AEAA4BD415D04208A562D73F149543DECCC768AB03B0EEB3CC9 59C09134821939FD322DA9A66B4EBFF6C0D10C0A973DEEF572AD5C92A12AB745 84B1624E7200D285783930F51ECBF19AD8E48E709893EE0F1AB7CDA6CC7C1864 F16EC1D3FFB6B4FE4DB7C9FB1620C3C0861F900FDE317599B4F050D465A662F2 DA6E93495CFF5DD8EDA52514F3F8E6AE745AB86CD729721E7A3CCF64B0F6360B A4F8158F4B952FA4CD3DAC4F5F81C4C93710BA738F96DD57595D424F45CED71F 6F35820FDCD31533FBCDFB56F354935CA0899CD8581ED5EEE2F85C135F50B43F 3725DC1EDE43BDC851AEA1AAE8520CF9DD760A42C5D0B3754C7B5C44CDC502E4 E74830EC45840E287ED7DA2E98260742740D9B904E975F3F8E80D7AB57085C76 5EB2AC9DEAF38B2E1BB7D50CA137D582B954FDC797845B3CF623E1F243E9B65C 87077E67C43FB6258770D604E0DF9FD9710B6FD6AD8985A07820C47F85DEA767 F55210F70BD45DE7E0F3D335BC978E738F274593DFE14D6489366974AE4B9286 EEB9A4C1A712D6C2DFEFDFF7921BC6E31631390B8132B6E62D6EBABD4FE38AFD DE7E0A7B6F783786976EA8402DED90B067E1D85CDBF13C991B4CA2A626A3C8EC 21B13B0902AD8389C71F14B810E40394EA7D41CCFD4D13FFAD46BF4EFCE250CF B6CD0B203E3CB540390BA8DEEB217755C284C824DC9626F917D119934061656E 6836B119CC894064B51B9FF73B07C559C366CC952531FE858C3B77706BE21A40 BF0AF668CC376F042E965BD12B020A06D44815327D9F24C8BFE5D4949EA85FFC 21FDA7C58126B3F5CFDAE27A926E2E45DE062650B615568736B10F7CD8EC20E5 19773FD4B559D45A18B152315D45FBFB4B57A969F81F42FCCDC15AC1C6890F75 A87877B75A14D38E37CEED9B5AC39D4CB8E0A5ED6BB09A94E32BD33AE9B894B2 9757CB08A99818058EEE75EC2DBDDA97A2425754D9D31AB87A1D64700D28DE3E 3748BFC11DC5D134090B50864981DD72F2999191AA0111F9A23E62B37C67FB9F 704C3BA150E4227774487A3397141BFDF8F6DDB22AFF40F61E05BBEA998A2A7A 553071533382226D9ACD4748325C9A90663913F9BD84C40C83798985BFF131E7 8B3F8DD7214DABC6F29D83E336C337F936CC5092B8064031C5C67AF2563C19A1 99E220085C7675F59AB67800B82C287908180C25229B856AC5B8A63BD0F0342E E72FEA35B9EE85DF933DD7FF42E7FEA8580ECFF435B8AE058DBDA697D1FDAB45 50F396FAA4AD315A892691D39ECCE620EFBDAC6FDC6FD387F3F20038680DF50D 9C1B28E5CCAE7CA4F11797B03A39192197F1F89E080270EA3FA549ACC696102E 3D1B1E762A061D6C772E72EF6BF67293A80A290575990CD2A04A2277E23A29B6 B0936111C343C67998A3D25E726444CC87E187C602074699801FC24ECBDBFD1B E9DD025C51EB2B93387A27659569A2E0C4DA2A7C3BB16EF63FCE6BC8DE27D058 A323AC3A394005F31D8900CDECE02D3DADB7C5514A6AB69AA7041D75927C0FA5 A9D40AF9433D103DE31E080F65D1D3D2AAA482EE9432F3CA84903CC621E1DD58 72CEC6ECF9C4C4B3F854777B65215D7909A15260D3A39CAE9DCFF36B6B341FE7 1E4A75C5F8702378CD5926103A2192FED1F469C2794C0B6C0918F2A85F512C69 4B2388B7F553BBC5606C4CD3A23C34F60C4BA40904CEA9D7A82DED088E2127B7 5151C37145DFBE0FBAF3EDE7828EB3553DCC7CAC41B4B4FB522E3EF6153B9275 F71917D930792C63680E93C025775367346E04C4B34FF74022A327AF9349B223 DEBD0AA515BC86E247AA4D797EC20564D1CF0FFA853C60B0AFF544BBF6E82EF1 6AEF5CE96D05F66D650B4722569C2E05DD039F91CAAE1473E811005434D8D95D C6A2071D47EB515DDCC5D9AC58F36ACCF2BAE3D0907CA43FA58DB14AF6D5BA40 020E8CFF4AF7C80851FC81EF583ABD9B9ECB4D7E8981EB6D4FF6272C7AF2940D 53C6B3FCF4953344C70616BBBE917A295B491CBCBA2CC73992BBB1C037ED48D6 CF3B80F5E08EC3447D297A8214872A48FE10A4FAB74EC700B71F2F6EFED27FBE 243544882B39F3808092361C9F7050943AA4F6D569B67E3436C004987FEF870D 1CDD98CB5F2ABF72B6E78719A6A6D95E6C918D5BECAA0C23FC99B526C7C8D0C5 B9E17494C0995785EFAF555907AF23ECB761F47AE1B27ED80E988640D8854294 5296708C4E9D46B90231DDBA9A15D5F8F2CD7D0E1DAEBB91CD3A6AB60D16024E A61A84032B1259BB68A3E8CDB78B5C67ABA884FC908F0E0D0B46F297402737F4 B8B40A13C9E2B987BFA3C1AFDEE7B962BBF7118E8063F83CFD19107A5B28E0E5 FB38E0E26BE4E46A68BF0CB2515435A3C9D3A9FD61ED73B3CCD70BDEA56768FC 7E90410470B0087F9B123D986006E729CDC571DB1EA3D713AB3CAC52C42472F8 A7325408C9416DA581B49C709E1E35C3980E9F9D86E292D29C24C169A4035836 749A9D5475AAB3DEE92D6A0666D176D9D0C2D28183459001348453241F632A9F E4F5886355B548B13CA7E9766263E70514F495EFAC23DB6F5970325D079F63F9 852EFB7B135172F5943B51294BC44CF215D7DE2BDAA35FA62F2358A8307D9C1C 7ECEFC0B93842A762AD1F8E6488140331A7DCF8F85A1364390E213FCDECDF652 803860AF5FF323B7D0314EC85BA7CA22D6E83AFF66C961C21793601F3D030BB8 16EB9A3E7C97041C6BF0D15CEBFDEE1C2B48AFB25F7F588681F9B3EE2D5C010A 52020C0899CC36A1C032840171BB439D30A9D6B0F739910D8A90E43EA370CC16 AA8814F65A26CF0F7492D076115E91DAF6A118133AC18779FF3595A42A12BD3E B61611A23E8631E780B420EA0944BFE9E4E97F5649BD953E8E2981F3D043889D F06A4C62B5B90F544BD3E98BA2639AE0AA2190693F4247A91FF8B227FE3FA527 F11EAC34057C446210043E19E2BFA0C695F33B2F6BBF4CDBC07917E433B4F5F9 CE078FF709CB1A57851D117954315C893AB0A2FBAFE2290E8AA09ECE87887717 549876185C50621598452F23CF40207BF4B4171B13E7413379748716BC624AFA BC6C195173052D303AF74F95499180AD2D76360521F090C99C675AD863E46B4E E7F7E6F0B09B4DDD286C3F9A742C8B909A8545957D3EC324D04E66AF9F8281E7 6FDE2A7A9E1710B452FF4537C19778A9BB296F4AB176C617A6F1B1F9076E5648 9AA802B68AF5A81208EC0F7B829039C5C6773EC3B80479FC482F9050079173FD 9AC1F6A89862DD56EDA4A054E7146975EF106222B6267415CDA5EA2E8DCBD1E0 ABE3A94DA67BB6F11C66FC5AA8EB61E55792C18CCC945D16BE530ABFCB14DE75 8DE8D5154E6AF9763FCC5ADFFA0D25DBA667BB614A05E3BBF945B294D64D1266 9579A4BFADAD351F343B529943CE554FD40D52A44A7180CF894B0781E63B8E44 62117D0F6EE4D4700D903A72676F0E876939DD77B217279327D372BD4E69B367 68E654E9F1A2D11EEE90AA49B462D517F76AF2660BF7282F4C78E1536AC5C130 0C7A4C6E0D698D372574EAEAD8F979312D648177DD0C724CA7400B8729B0003B CA47E02E1CE0B32F3A80AC9399517175C47F26E5FBF6AC5E73D178E7DF67EE79 5EA60CE56EDBB227694AC21A0E8771B516768CBE2836A00A14D608D9D32A27EE E2ACC8CBB9D5DE7BE40B680A7FC804F7B9A39AF6E829D112BBF57DCA2D408240 9D2B89107BDEBE8F4EC1EE8CC6B1F89E78677B8FF2FD7384EBDE659875462F99 2D4E62D18C0A8ABD3B87D806FC514B0E5700E83D16CAD6EFD00C79D624FE841C 7F98DB4ACC86ACE1776DF5439E425CBC1C85D489E4D542F504D384B09209BFE4 D3A008E069B0FA3A71CF68D097FDE55712C7E6A5BEF6CE8BE02A4E92EF5231E7 0D8905EF4FE0D5198E32511F945E1172182CF690D7A769F8C4F76754E5654BD2 A9F9F23B6C230B10E3AF6CDC745538D174A75B97A3CD3697814180BB1373B296 203E523EE5B64F1EFA979AEB8ADB60CAC313F117EF8CC53FCACB4883E26B0927 7897790E4AABF9667F9A91AD32AB1C5CD27C26C5BBA5DB8AAA7E7514A239227C D798DD6AF110481A99753FB9B3D570366DE14F6C0AB4C31FE068B1876934398C EC2298CA0A9EA5BA245907DA786D901579C497C3739BCB6A4DCB2E34E21A53F7 6F673C1131F114C05FD1D3B37BB435B726AC2389DF866200A75A151725788CF5 69C1BE79FD6FC36625BF73CE46A4FE5F12E5692B47F7C26376DFDEAF5EA847F9 367997E05255C7EC67832533922B997028AB8018F404ADDBDA81BB0698AD69A2 B4C217C392BB250B58BC4FB901F2912EE8EB6703DB24AD7C2CBFAC12F8D081D0 A700C39130316DCECC18E64F3994E2C6F5E0E1ECF2EA4B18FCB424D9B8DDE8E7 ACE87FA17D11158E96FD6EAD04B12B8917F420BB29F4471326F54C896BF1A475 3EAD86C7968818F95E632A852601C07CE9AA698FBA3043D86168FA27FF43DECC C71581DE33FAEF3CEACC93F5D626FE05894F8FC2B8719A92261A215929127FBA BD9157BCD9D4C5D62D08E7E690F1DEBBED0A839475B1427A7C91E7F42C3CF6E7 80E8B55B90566E21214A4AB708383F0A3E0406058E26A1C34786B860EC597A56 2E33F58DE6C6850B71E88A2BAAAA6CCE519055463B468E49B2FB70CD32D84B8A 8EA3077E49E848149B2A46AFF247D80A42CEB44278A9341B4ADA55162F67933A 3BE72A237DEE6B9CB4826D4584623FC93882C543D173B22CA22E6D8D5CCB02D1 25EDCD56559CDCB126185BF4128C71F228D7CDD7C617EFF12DF100F64925BADF 39E7DD693362ABDD7E17C3B21A74B31D05C9F4F067BCC1D0AECC6C5DF33D4C77 04DF0394656DF7F564BD7849A6EC8A2A0007E6D32FDA98F7903CD8DB16D85DBA 47416DCB4806AF61E901490C8DF6A42D050C5C07502E7AEC9C15DB70BC015E02 9696950D94CD0A7E8D46557DF9226B1369975F6276182B92056065B2548F9717 05D488542B6ED9CBE2898A37C41F3093C8441502585D607CF07E8D1473C48D29 68D4217BF4B16F8BB279A9E7F4F4CA461A9E9FA912C1BA9355A4261438E9CDD9 20B0F7E2C324A89BBF23E8973783C2367AB9C59693E1C90D3466130C0154AF7C 008E052A63DD8EE001FDEC48EFEAF1AA7A7FAE4B10D79C74E0586CB3E9809DA8 E1946A3E2EBF15DCBC950914B860ABE6DCD273FF45D57246F81DEE176B7DDC9D C5359E1291B5671AE9FCDB06DDC08FF46607E784084547AA7848AC30A32B08B1 3FBFCF2829821733FB2CDC11AFEA7DFD97B8D278DA3A8258C69532DD625F204C 81ED8DED59753060C83C4FD0B9B4D09E1C6483637F7C8EED13DC01C2F477DE4F 5AB6D45C17BA5B2C6E8219B46960E39695077D2770AE34FC50510067B89736E9 D172161F0F1E2A7FA79A400F54AE4F20E673A3D91D892C7F88BE4237F1A3CD55 BE5D1F91FFBA4A88397329E4B62F9170AA553B0E7BF2ADA42C4AAA6920F8AC9B 0EF3425BA25C2EAB8DE2940857712C68A12B5D56B9EBCFB4F19F63075CFA8E03 4255EC777F9FE32E47905F950BA371B539D7F9F55C21A04F1AC6D9280E8C5780 014794256AD7B05A69B84AE84337B5C678E43BEE8445C0F79E621DB4AEBA9188 2410D0E6720380755B4AC748301CEE5A235FD0C1E2D675C147F3C62037708EC8 0DDB1C349FC6ED24879F0202ACD4C881DFF4BA4116060E65F17F07BCF2CEE0DB 9E8FB76D0F8BBDBEA799071F08AA753BB3129FDDE4D12B32F5D566D8C9D6A35B 4A69C077A6BD909F1BAAC2A2C62A6AC64E722D1985CE4E8771F53170A20D8543 29D11CB175BBD9B632C89E4A12663C0941091A1532DBD59A65CF6D44AA4B08E9 7B5BD346182AD70A34A2527E352FAB0C109AD72EF443A5AC713C005564373733 DAE20E3198295D8DC532ECB3F98551F84AB2BAB805F2EC2669B01F1F5F9538CF F6D20E05081178581990783705E24E9C25E2E82D45541E5C16A30A72E2E2A168 129A688F199DBB9575345ABDA993DBCE8CF4DF1128B0E74B6C01666CFF1A17E3 DFF06C8D3FB42097BEFB1B33A25F4BCC9024C29B4650B43D1CC0B79665D05D1C 751F94FA99175C257EA991E6B704B75714FC7FC9D5A34A1A3019AC5D9EA8AD7F 6A75CE3ED13ACE632532BCC589F8E94B8E08805C56E3D91A6C7CFA23CDDC4767 BD735DC2A7FEE4AF8FB251174C1015127CB8F7C8BBA872BE416FEA0D359CBE84 D915D1E8396E1267018CFFE5447CDDEF6726F47E499613589B40A72EEAAE768C 9FBA53FE832BE227F605E4D9E67FDE078120869E5F71E3F05A31CD37A8E48458 6BF4BF69736DE755C90D6B88D5FEE096ACF50F5FE5523138DBBC095DB9ADF46D BE0384A02C4ACE11DDFC5FEECD1E0C4F2554BD6F1F235C8F980D87059DEFB98E 411320060518A16DF3DA0DD8313C305E5355FA2131E16FF6A19EBE17619F5773 8C626D6BD2B7A95CF9FC6996DC514FF0915A585AD3C6746B694CDD7CFAEAD58B 2F842D764F3D0B6AA582D3CB96632C6A1AB14BF49BB4F3CF59612FC40CF63A5E E1CC3E2FDB2122FB8822F3A85A4AC58683CDDEB72C34E6E346DDC00FBEB75FA1 3E88EC10B348E8D8DF2053EF2921E8BE24A1CC861268AC66CC4647FED7EF6ADC 287821A9B3AD7191E9733FD34629DE60C47417167ADB5C3B2ED7BAFD2278E698 6240EE28358460975D3FCEED4C2065CD0FF3AAD547E1C63D37EF2A94BABF9B0C 9525F03D5385CABC6AB58077F2AF1F9FBB419BE35A8980178C27E4A19F30AF35 A48B18A129B900CE280C100EE5A40C4E6E393542472014F905C266CBFC75ABC4 FDAC0228A9E73BF3B268D9736A3F8560E78B48A0D7DD43050A0D7757A4BC7C92 6C066B399F71CFA5BF090EA459CDBBB674E03757179C43CC5B0FDC950D6C801A F3D07AD30F08A6D299D1E784152103B54ED264156A97D64AE4FBDAF8D5EE20DE 1B80A4E6AFB427A0C18DA8A43ADBDE1BCE9DD46A75C1A1D15995370F792BF843 02D4672D4493773F5907A814ACB139498953B52390D84EB4474934713976B9F3 BF26CF310A682FCB955682E4699ED265B520D5D7800F9311C6AAAFCCE8E92435 E7681D56C537A1C1BBB1C2CFB94AC92D816983C97614E26B062646E2C8808D07 5E18B87ECCE3A0213EDC73919F7C9D80536F98DE0B9995D8EA4A2633D2E05417 AF3DB26F9268647AA646C4AD12C3146745A411ADB2502D1ED58E46B7FEEC303D 87065F9B881907F127E02DCD321CCC580C89FA6B3095F607090B2786E5848D7D 273B36207D75A008365C5F1DC4F748E78A6F791ED81631D7EE1E6D79049B8F2F B7F38FA45B8809B4BC05CE91FA3C2F6F6AC323B3D304E8EFEC54E20045B6AC57 D08055CB193CAAA5C53454E279BE8F7F38F949EEBF62795AE7B5DD0FCAD1C3D6 4AE4FBC6186C750F3F2DEA0BF8B65491EACE7DE5635470EF6F42C3395D7BA0F4 A0DA6BB1A99FEDBD90A551FB217644CEF9973BB90A7FFF3318499582A93468F2 9E766C2906BC6C4BD7E300E48C997C474C03E2A34D9B969ADA9AEF04843367D9 AC4A08FD88BB672F2DFAA2CD0B871DF62A43A61AEF77AD88ACFD112850940CB1 D74CD733FC4DEA77C454A52ABF2BDFEB9EBE3FEEED53CE6D4B1968F0B2BE90C1 12F96E7AE2CF62F7C2601B589A92D8B024E00D4E8B1F636884803554E9B82005 8329EDA334D1DF5EC7384418609A8D89909245737689B1D108186F4C53237559 EF42502050EFD6E7F822F835517FF93411F08B5FDF163CA1A19945FE51C31F9C 9B1EF8AC79EB037F1E704243CA1F33FA130F8DCC3F56219CF6987AD73627FFF6 1CBE6C8911831A43827D5505C1289A62C7AF94DC668300057993FCC20F752A75 5E79244AAC3D790CCBA8222CAB05A953BC9BDDCCC59E1AB9F2CFD3480B836B79 5C74D384C53723CEDC5E42212CE487EEE190F6B067C322610A6C17E0D84A7DD4 C3171856FFA19470F84E207DC9BEC7B44C3EF2BB5B043929A5E900750D117A20 EC2297E4E6AECA011F3D08B06593518515B495DF8D64D3312AFB918985A3C4AF 173ABE8C26318ADDCE1C262B03000CAC5B5B4505B26B26A028496703493D3AC7 E24AEB4F741A6E4A68EEFA0D156E58CEF880E0C41CF6291D0AD20D299026B9B9 D09BC425FD7D7EE59595CE14CDBB36CB4763AD7AA8841DF5C17FF3A4099BEE95 CDF6DCB8F9ED7E118BE4F2D2F5B4D67A2781F1E2C1DE8CA03022C964B1337830 1E20572FEA296D9FBA4FA416056378BAA8A86C165A39EB148B255DE0E7EB6351 EB53F4AEDD8D411703A3F01159BD148796A1FF52666D962126FA863C9811B3B5 ED20ADAF32EA3BB018EDE34276FF46A7153235B2E9D778402952F2C73CDB0290 3C24E2BD7C74A77BC339F7B421983E6146F64718605DAAEA2914F3C4AFF5E078 63B7DE54810BEE9F140B9F4B0B84521AF90C462914CECAFC07EC0617A189158F B4EFE2DD47221780D87302E00B139F47239EB174102E7304F6B83B71DB890422 CFFB05C39ECC0EA883849178EC773C3F0C6413FDFD1E1DEACCAA89FD71FDDA42 B206A827F434160AF34813CB02BFB13B08ADFD7A0522ECAE1C57F0B35292DD55 213A2E2D4E7BA5971F46C438332D85976B7D2F15425CF626FADD7F0193C88B8E 365C3724440FE3A2A3C8CCE159F7508D23AEFC92EE92B0F824BD9A5C44FC96D0 8126FA6E5F23A6207D079E24E4426D0BE4798B9DA83763734EC13292B5FD113D D5F83379F86FEB25C1ACB394747D34F0913B7BD34FCFF65AEA28FD21BEDAE94F CA631856987B7413A7F7C5CF8DBE3C900B7ED998A3141702EC5B86BC12FBB132 24608C6FCCC626F19871A87B5AB45283BBCA5FF6F1A19277D7DEB93EC5EC9977 4F23995267034A21F92766D7CD17F573E1017AAA96A61DD36C211DD20AF3D34A 340900F1188A9547FB19761E2AD2E0FD506F17F389CF9EE7D8BFC1106195199F 59FE361A39CCB0EE0D9E3C5782AAB7B6E5473B50E81EAC6A46047F110B155079 9EF8C17A6BC2575A28D2447E3F08742F4BA6205B5C198BD5B9FF54FA07000468 19A6A54448108F6F80CE1A07F2A6890AAFAD3CC15E8505EA2E2B3A3B35663B5B FB6F6FB1492DB5DFD395F8703159A8D5EC1E73F859722755453931FFE63B8D1C 7377F5B64B3BA3B854C245569A731BB6C13A7AC4C6A2EF2374CFFAA99CDD3984 7BC0A101F49D0837B84BBCC374B5FEADBC644FD8A5E66450AC95E28BC68EBBCF 0E594CCB0BE38C6B50D4958B0333E568BEE976DB2E19A8E62EDFB683B7331EED 3D67E0C0015948B07F6529D2620FA14FAA23A898A32360B5BA9E21BC24DF15E8 669014A32F848EC36E63348B0FCE5C5035DB8C2234E3164DEA3243633046903F 94EB81AABBAE58A1D2A6EBFCD301BD54F49A47670CEA8E13013DCD9026201231 CE0687971DEBA09310443ADBDA9E637C2FEA83D73048BFADA322E72F3C577C16 0C751FBB90641C66042E4487DE1954A2448ABBEB51D1C11B312A3D5A7E1C3D71 521CA8F0996C2143A0685CFE49C8BCDDC0E5403823122076A1A9EE3CFFDFCA31 BF6A4BC12E03022A8D423A71FE46E17FC03B333A7F09E879F533D9BF149D1CD8 B7A8265D47F2D63F6C961C003250AE33321BDF8488CBA52E2AE5924CB1A96482 C5BADBD45C8E2F6794E265FDC9E5D4BECA1748BBAB6A6E1D37A5902238B5676E 32409C3053B8C8F6E6FE3C4CB1F3DBFE8A920AB0D4D5903D877ACCD0B367E912 C9C00CBA8EF9A3D9F7E042CFC3ADDDF9508895A9B4C61D6BF0B76507013EE065 82241B0AA5B0EF9E30A2120E154FD9E844FA1ABCFA468D7B3D58A4C97E433B3E 81CBB8C498B11D75A2E818EBC52EFAF545654E2B60207B986EA905F4E16C148B CBED6CAE4C7DAF3EA41B1FCD32BEE448325DC5DFED2585676CEE3B057004EE9A 1028F7D0488443BFF30384C88FF25886DDC80A155DBFE1DD0A9161F5E9AD8DDB 9C81A53981E6338E822372062488ADE96CF40007E4AFC7F6602BDEFF3B5DB602 50D1418A90EF6AC7A630EFF91835EF925CAF67C2DA09A1929301938C5DDA0EB5 4DF4FA31BDB196091A0B171113FB3E293255F76A78195643CF930776D2CFD22A 8E991888FC446ADBD613AC37999EB3E14B860BD70CF6B77538A8512F1EA8876C F68BA5C67BDE3249C2C46B91D1C86E153D774B9BDE31FE310F24C69857D7ECFF AAB9BC4A73FD94851CE77417ED982BE376A21AEF2C167D5858534EDA58F06509 1C21F5D13F23C76B599873E237A9D0F13F4E93342F601331C93FD12EBB6A3A96 2B6EC380695D00C55DA40F6952F557450E914519BF6441279EF39D7EDBA95112 F28213BA6CA883E68B59C546484F76BE53CB0B6732DD19DE6065CABC0F9F9627 75DD538AFDEBCD2363D39D89D0A3778F7FA728CF375CE8029EDFD0A068FB5CFC A13E5F2732700EC4060B28B7D7C1252A7B9C421AA6CFD0970C4C29596EEAFE13 E8A8DCB6749EC08D9B25CA464B7A7F94E518B269AF5E5E532A215DA9640B6E04 0DD104E93D58236D0A2C481EC119FF16FA1E0F8F3349EB6B0D347AB5A8723D45 348F41971756CCD0BF3FE5F03EEBBF78B974D1D6CA364C5CE160C8FE154B3176 3ADA41D6A7D2D1F0003489A7DC354ED43CEE9F121BFF9A85F65225CA38C7DE79 EB9DBFE2471AFF0F8407E5B8C64565BC219C22AB0F1480908E1B5550EC510FFB 62433B1B36B30861E183E5C2EA573B54F35F2512CBBA49B7BE5BA2A7F290ACCE FC7DF2AA1E5882A8831F9F105776E9DB60DC0DEBBD1D1E8403704E246EAD6286 454822A957EAECBF31AC200EBAC45E0D340FD8587DB953D3F9086F082487D2DE 771D52AE8CA7416FEC9E91AA0DA73F969498A9A1610DF691AD908917EA3BDAF3 78D5A705B156A95002AF6FA3BF3360B5DFC67F1BEB4EFE9933562BD01DE2529B E044F351F50D51EA139828EDDAB0CF0194BB070ED70B68008258150F5CCB185D 92DA71065C20C2807B3CE00CC0FB725440B7BF52D0F9F6FD58AB3B0FD89CEDF0 1414D83D25F9D2C91A5FB0EAB5DCF3C51902588EACB5ABF77736EF39DBFE403C D0B13CFDC488D079A86079978DACD3E4E5CF112623DF2AB161E9A8387A523081 51A836C2240D7FF33E113BB6F72843B7EDADBEB595D3C0EF5C55C5246139EB79 28E4FEB7C216B4AC7C8189CFAEFCFA919284893684890F17910242704CABB4CC D805F4C67DED52E59830BD569B19890B527BD916847C951BEE9652E602AB3DC2 69B1E2972ED868219023805692F80D83DCD99B5B454FF9C52C46AED905140F10 AB71305333855E1E8DED599F4824BCD118E789BEE6C260C99CEF1EB36A10B13D 7AEF20B6FC8EE0436D3C4344AE5DDC7018237B440867AC459C5A31F9171337AC 5E8807FD64462C64C63A434B82D3C0BD1EBEA855399DC50E7CCFD487097A1561 62F5F651E527FB70C0E47FE6680E52015FE2399E25F00FD38AEA37B13EB42435 C4A6084C618A12651AB94A09793B7B5633C350CA69EA9B1CBEB45FD240FA6D24 58A6AAB28D6F6C97AB6854A0B04230DEB18303C2D77B3B7492D28E632AB60EA4 DAE6441B7DD6804C47314951870CC30E662E9FD669CF37E4554474A6CC593801 E8085F0AF185FE7D8CAB69969DA62A37171FB6EA39487D2BD5F689E6C67D1EC9 4532C8DDACF164CFC7AF6850F19E199FC0EA6AF11078F873719A5A10DF16CD1B F6968D78666E0A12B0E8AEEBFC7E523C37595A47279F1AACD6D7C832DF6CE944 2896FF8F09714D92031E48652BED4AAFA55A84F5F06CF37095B37C6EE05CCCA2 08F3D27C885B89F62B68768BE01AEC18326634C4EAA7BBABC3C9C4DB5CAC46D8 85A79A180EAC7B74B3DE2F1FAC1C8BCE424886FB22F1F45DABAF374C7EFB8573 A9E9BBC6F6ED8A720E174CB8FDC75B81663F4B85E472568E5D5B19FC25976FEA 8A26B417EA52D4A79169FD8B9E0DF0AC600642FB694621007248589923F2DCA2 2265ECF240D063D6A682B7400AEC39B965CF6522EC807897097DEA226DCA64D7 36C85D0DDB18E290CCE3F7E1301D04E91DD624D2F864CDDCC77CB34ECCF4AB87 D641AB6901FCA513685515B023100D735733CDB77046B69C08AC0A0F65B65634 437E9689D09878191F6BD79C0487EA25CB34724EF394FB1053BA4E6201162CF0 AEAD889FC81C60601F9B53F161DB6C9A8BA9ACAA7BC29E489122667C9A239466 59CF8981E1CC278C158D7AC2B25B4CAB265EC46477E7E3E69A98B3EAF47E48A8 DD27803797671AC9F0290BC23AC56649B34EE46C97533DE11E459115149757F7 C8050300EEB391D6367C048B5B48078265B5F70C57A9B8EDA8D242FD220EB33D 73FCBEB3E29E36C37D59A536945B1F47FF6B9EFA81F230A29403A2932E1D3CBE DF6EDDCCB02F4C5243B3C43A079F32329BF852C894F7FC9B4786A16CA9583D4D 5ACC28C6441029FEA945FCC358999F6D7CA5418356A4129B98AF5B2066D141F8 07F7036B51FF49CBF6878E89DF3B9F226A9C019DECE2FC8B7CD2F7491077AA59 8A30A25BA74134B01F43F282B121498438AFD69D7618C77F6CED9F0A3CE2ED9A 64FAB7C69498548C51B96FD7F3DF274E399577491300D4AF7956C851A8E058A1 F49AC57A5869A46BD5B51523361AD82CD3252323899058CCA42EC1DEDEDCB53E 24E289D0095E37B4067FD051414E4B06215350F9FEAE5FCE1479E77BFA287857 9A9AF5F7BD93FC5A96908208949EAD6482366F796A88E9AC15B6F24558C58F14 565C9CA8EC72373BBF2C54C97C8FFF8442ABC8E25DDB4FFB20EB229A4031C14F FE32FF67BE4A28EE0BC60A6118EC3A8D0AFAF472323B0065C670CE41FBE92F54 CFECE8751123AD3D51198E5EF050D8C751345E5AA0E578F4703340A3EC431557 51FE351A355FAA778F3EAF00223A0BB03A7DAC11F58EC64F89B2A1C249A9F720 7C373942CE60666CB9A988E8971E31CC706A9516694F1F968FD0D902BD69B6FD 5E04755A10C8DC057E60C71DCF9D6666FFBA80ECA59CE185AE97F8CD64CC7949 76FF8D9C9A0FD74835A67F2A34A1229A7D9FB0B9252089BE32C320D28F22C93A 358073FF58864EB4E9BA5C83BDB879C67DC64F591F1480445AF304F6CF657265 06E758177CE96259B3B2AC1429D549E249A8FC90444E6CE1E96D7D57A5272278 076C2055BD26144686880FE76D0161DA226BE79D781DE33EFF4F9955C928BD6C 55F16E14A5A2B8306164D863C2537CFC05A7F1B9E9221321924D33E29C95321E D5603A85A3F3F890204BF7745202DD217CEE21BF45514B8BD3D5018DB01FAB56 E5B85AA57D26C115F349D826D21785FB2B14B16C3A1C3D764300C6AEBCBE66DE 4D8AAC6484D20857694BD65065BF4BFFFE35D86D6C4AE1A29E927861D180A339 7476FB6DF1817BC6A077CA5BFB568F6CB759FAD1DDD86F07CF9F6D6B8B320E01 D9DBD04D0315ADA0A2F8010DA572EE6AB906E55CE716AF7969A3F64097210C94 7623AD3E0748DC9614F27C4E5F614F13770A7C5B49464AB0E6527CC6FBCE4794 BA32DC1099FB73AFF3EF8DDC33132DAAA7546BC6359DE8A49254AE44963830EF 7A69566BCA08FD8DD4C0982A38625EE58E39BA2762CCF85A27B037D34BE5689B 880D9446476613BD98CD3DE649117FEABF6156BDBD39AD05F360488C3A80BA3F C764F11DA922383787A8E93F945C8E9D1FD4CA16AD0958B21EB36B84B524A9BD C8434B908D4CFAB46411E997E75D9F48E140C50ED2B56723BC43069B42554850 2A73B211D61800ED608891BFF059E8C49C52BA719CBEA6681A9BF720E86FAE4E 04D5BA274046D9B103FF247068EF9B3F51C22F518AC1BE20B9A00CD21F341BC6 FC8C1FB5072C69466CFD1F1085A92E517883C037F3A73658CA74686F07BF742B 98C121BF9888160E0DFEC324C208409D876B887E4447CFC4416C9A4358D7B1CB 769BE77537BC8E2771F2EA19EE1440468925D41C01ADBF2484D8B5321EE18DD2 A0B1F570E0BD0F8B0931E1C6DA0E71F1E995487544B22AE91B8C2B9AF65224C4 BD3E3BB227FA37121E31077601FC205EF5E5B69458333784B42D07CD58AA73DE 8FDCF30351D58B586C9A6116F0CED2298B7E6E088247EBADF24DD85DC2680BAD D217DAB604987181047F426ED848CDF475A9D19D0F00AB7DCE4E3C73C8B666C5 37C09106A440E2421E94D699BA881B53D98395F47808FAB1D594561D46E82175 0FAFBAB8F8197119F14D789B7E798DE37D62D2043EFB8DB3F819B62238D62E8E ECFCAA92C967CB2FB089A8AAE36AA54C43C8F9AA5A7E8D88B178BB878F4A7073 1D6BF3309D05856F4AC65191EADBCDB22982431C86745C3E01B0F563B2405AEE 1E56370F1835559BA096C154626D36C090D3F32EC2EEC0B35FF492A08E61DB6E C234642691A4B214E27FED0D420254C5502AB9797B273B8C6DC49DD29CF1C65C CA61944460CC2ED03655E713B63DF538209FA69DAE84B4A3BD89F7834BE5AC7B F3C6CD20E8762AC2E365548F396D32FDF7349DBCE34D93E68C626EEA8DEA1EA9 A369A6435B000C4568BEE6FB00BFB2553D7AA6923E3A28B131A135920A43F5E3 D692FE12C30A2FABFD2047DEBDB4D9037D87B7FCAF0DE6EA92596235FF5B16F5 80D4B99B2F98B51A350D8609C9A65D0E6BB6CAA01AD47912D72A869122A20E76 8FFC5353BFB61600DB1851169A8B0CA7461240A1EC10351AE38DD223262F5F1D C00DED1F9AD9F805F8C13E34E878E64D2951DC05C2F95AFD57F8C1F0316FDF5F 61809B7AAAF7CECADFAF70C607B77005EEB7073BA88B7D6FB714C10C313EE3BF 82D1BD536D7271F012ADE21C41D2D4BD9301305BF3FC46323C0F9F58C3229897 F691DD00E9C538DEB7532019339406CEB61DCA9509DA08B4E5ECB4966369BA10 739E73F3A6C527D685900E6A592D25D01EE3803EF8A741232C8B48C2798474FF 03CB68F61FE1065A45C00E86E339580EEF6A90545B04EFAC45E57F0B5E9BABCB E053AA4FA0C593C1704C58858CE462891FDCEA47411714BD9F42CC66714A1947 5637755E85F7CEB3F85720CDCFC6594FAACE2E49864514B00860123130D91672 549C4B4A46F3488F41822C30C927430207BCD5BDEDD48366A1336196EE37CB90 EE3193289796DC165A51E6C01FA7F87E6028A8CA46E90A47154BD95412C803A6 97F35D80F6FF9FF64053FC3F67E182A3AE7E72F12FE7D85778051CC8BC847FCA CE8477994CB78628DE7F366A6337AC42372E54F5809693F631910800B854C832 090D71B89E09D49256B84F5B0A2BC26AEE76CDFCD9D58F4D739B73530AC7FACD B66DDD8F3E601336999AE1D93AB261E1A101DBE76C7C9C988D4FF999BB480853 9D366BC1F0CDBAB25214BC5D38D3383C85345662A65E98851321D776D34BB6C0 F7E3367D7329714A5B8524213DB65B36229AA4794ED1B8B9B735B59CFD4136FA ED923B234EFC0F1B10E99B4778F1616764E3FF5EA5ED64D7488DBCDBD8D0327D 79E703E5FBB73192658B48A6E3A50D43ED6F9CB14A0E1767C1624258378BAF01 B4374C36BCCB1EAFBA373538844F5D1F36E25046722DFEA0398FCBB80B1509AD F76C2C452C2A3668231F46B8A953C722FFA795A9B25F34FA0484CB72DF2A9E3E AEF724E2A120B9C9D3BDB7BA2F1688C85BC8B4F3AF3137C3B5AD07BDE5E6DBEE AB93BA821562CEC2F498A406932E1571A1AC323C894256D19B1256FA855DB4E3 E2B7B1F286B3A376ACB8EE51BC3036838D9C5C6D275E92D92FB3A04EE15DCEA7 83E772D8F2EABFE039652049758504CF3BB46846C071E1C834578ADF50ED6BEA 4BE184F0DC7D792825F61FB26B06E8133A0FE6A5A50D804FE19E3C58CF1FEF52 3A44C7DDAC8C9FDE076125A5E69C61D7ECE569901764FB72C9FFAA7AC49358ED B49A2F27361196F608636480F5F59E7C501D77BBFF424DC90FFB76A98B10676D 5569395477FACA2071053F0C8E233F6D63B5690F30ABEABCFAA4BB42701332CE B2E3AA23501DD5164738E9C7649E1B3FEC004775BA90902219C5418411CF3E6A 964C79F23EFF5867E97CD07ECE28E017105A493D1DE4A4352FC0E82966F1323A 06719F6C7982E802385193DC4644C80E0F849A9A9435236C9FD97E7E444A8B86 531F89DAE02563F58C45B8360F38101B5F27536C91D04277C39CCEE90E7D3889 80AD6E6377672F8C3D9157BC6883CB6CA46F48E2A2C9332647B8C6BAAA0C64B7 89D2BD9E096B0AADAE3067BD9789A7340C46B398F4CA1944AF01A383875F6365 63D143B3944E283A23D54AB91459EF2334FADC4D4B967A8B415841DBA74E7437 0A7E38218C574189FF14954F1CD8B2CB642F017AE7F226A9B5D6B1887864BE11 B36AA442F8493AB43CCF30CCF818C93FFB2148EC95F4E53FD2B203C9DE6C1335 08D0CA053B70CD72CDEAA8C808B71B14BEE9B0646CE22C37B1866715238B2E77 0ADC53682451FDF6D89ECF1C0626E41AAC7E279AE8335140BDA6FB0F617A8E33 9D480F774DFB91528FAC553BB0948B94DCDC3EC4082EF3549E669A7A49C83FED 98C6C7DD43634C8321CA5A3BAD048442CC9FAF839D7647B744E11FC9DC7ED2B7 1E2BB9E82308703FF7C7C8C123D8CDA3631FEA47EEA9045D6DE5BDFE87E92B58 E5404906E06B417F088F9F9F5BBC78FF369CA8D78F3AF16C21C8FC2F38E559F9 11FA7F88FCA559E319D63A6EF43CAB1C7E2C50736627674ED172BDC507D7770E 706DA40D79895E339D3DE90C2B95AD62E9882D9C306D58F80666A419EDB2A0D6 0841DC59C6D652343F31BD5FC75CCA2E69C9B8495C9518AB83E95ABCCF6C5475 94CC30358A8533ABF1D9A550076A6652C0ED47B6B77FCE29B8CBF2A7A9329089 9F310FFF1F64AD75CD3ECDFE4507AC92C3448EABBF9ED97FE3D9E10B1EF3A0A7 D692D0698047F685E6401FD72330B7B5736D285A923360C4B6B271B74544F855 158BC5FA3F971DA2492E6A75F7A2F0C3871FBE4D4B4B326131FA1FFD6360F34B 9853376D4E9AE399DECDDC2BD6D790B59A0090BB748EE0EC0D459F203604741A 3FF6D964B3BF1B72881924F6FCA5C778CE8CC8513B99DBCEA1A8BA6E46DAD45E 9A6EB90AA1B02FE6D857CC50699424F559E976FCC174BD5459884F8A723FBFA9 9C7DBCE6D0D6E426742F6AFDD4BC603254FC4A4A53E54352A79E74EB198DA28E 72ACAC529BA702956D1ECC0DDA91F64C822F3B1D564BD0EE11D26642E12DDD66 9B2FE63051C59415F42D597690C369CB8CB64A8E3EB300C5DAF80E6F9DECBD78 07AAEA84633498558B623AF42FAEACCD8D4FB005180CC5F55CC4DAC3955E222E AA4CD5BAA529080F195AF80FDFFA970CB01B9AA321274A8DA701C9A381B0F21A 977E59520496E965447F88873026BBDAC1BE01EB7060674A656918AE89D6875A 83A4A71A8E583F09CB7C7146AC9B1CB5866DDFBA9F6E428A2D315F73F9C4049C 32B630F243AA9F62FAF057BA3D8C042E93414867D6DD3DFBBE9FCC4AFF865449 B3A7AE8B3665B519CDB7E2372BA6DBC0EA2DE31B04C2A16353A29A760D409CC9 F5DD03E2C11D29E0D545053A6AB7EB57D556E25401306FAF915968EDDB542D62 E2F2D772CB09B4723DC936C0E08189539972622D8A2007A3DE1972083A902D7F E50C882272691FA11D0013D6CF4DD34C6D2062C2F7E62FE3467E665D77A40757 B16C6136E7240CF39704F49E8DDED8A5D60011C24177467763373E93730D04E2 235768F2FAA0615532EAE537755434F130B1F83CAD5FDF4092FD20A324B3FB30 80C9F16C617E2F13F315ABC8B2094F8C768277D629E10A6D0A9ECCFA0821ADB3 D76C8206BD399FB5AC93AF557E2E982777B6C1FB0C4D74993E6084C1D4F50F1D F0F50BF8B5658FFD4AE0C6C1275C06100D2DEC016F809CD8D9FD3FE7A7EF988F 8F0427880335F024598EFB33405D55C44DCB1DD147C398D0335E22AF9A195D53 4AF6189CAA57CBDC5F08272D7CF1B5BF92BF3AF8036EF848E437B50688F49D49 46F11D87415FD9ECDE418F452EE6FE7A3DEED95A0996BA0862DE216DA08858B7 524A78820B2A5BAB4ADBC1BE71D69B02B149DB5CCE6C859A38A810C901CB845A F9873F64E986CBFE0B2D2146DAF2366757C8FA62F7DF8959CCFC78EB605EB6CE 4E5B4BCA9C64258570EA229276FB5D417CF1B1B315148693C5EB6996CFD1508E 67DC8BE993EF72542255F7E323CC182EC88B844AADBADD4888A8C6DFC1C39843 0C19767F9883749D6EC9D065C88DBAC9D87AE9BDE61B8950A51FEE9E531CA3EE CB14C95B7301CC5A7A1B22FAA9E1E956EFFC9BDC1DA96A8910E733E10CF2EB61 B7E324653C797D1DA73C2C081D70A14310D0588AA6915B0F05FA2CDEA0FAAC6A FDDE41FBB23B5CA3D0CBA1CCA54C6C685F12C1DB1B4E8943AD873691186C7A13 C29C42C86F1E46E1307CE630DBE4332188CAEBFBD604252EEC001BD89FD79563 D79B17FC27A5506496576A62D3EC8DA2EF2BC0CDCAEF707B3A18978DC99BA0CB 3D6E611BC0E27CF54D8478853EAA6F80B3A698D179E8660CFBBA117EC0694457 44D6DECED3C1DC219D63D1EAA09BF546A16E28EC76B7EEC8B01C4EA1DD332503 8FB779A7243A90B4A98201B51D27E02083FA278BEDB9FBFAFFF82C4772F2BD17 53AC2A75D9101249F2B0C52F0C565E6D084C1C6C50C084EFEEB5E3AABD25FCC1 339773BEBCD4671779FEC8A1DDEAA73D2FFA456076F4D3EDCF0267A48E72D2FC F658FEA7563E4B10908358E5FAE253C5A1A1F19631F1821C3C80BD048CE166EE F77ACBBBE8F2DD4FB7AB2692E8C25BF18EECD4F0FECF677860CE50B10F3E67C0 39F23CD146E0ACB5B6D2866594E6AD5A482D864B1A94E0CE45D4322AF6F3EDD4 015504E7AEE530A5283FD5A934524AAC4AE9A2FA647CB578FA7E85016F97C906 77436277D984277A329961807060D928D2065449D14FB75B6EE088C7496A0718 0796B05E1C228EE7E1C7C50106CD49AAB88FF7C5B94658E3D2D8713C061B5105 44DA4C04D051ADB47161510B9BCB4D18542A0EC5EB66611BC9DB1B4EA90995DE 19F86A76565445D112DB35479C7E70EFF4C6BB3E45307CE48BE52A9BFB818387 9A0D04EFBDBF9EE973CB2808D9E75694E9C77BCB72EE07943096FEC011FE7435 BA43B5AFD8D0811342DF88D3C50B9D001CAA23DB7F88894D58AB56B74E9D6E45 9220790C088D3C2FB8304C4032FDD3129C0B52283AC284F36DE8F89E9E4505E8 0AF4B25B6342B8DDCA18497D1C741BDD00ABCA6161682D75CB20B3D4C6CA560F BFB97A5268A8912F873AACB40C9D7E6131BD2C2FB99DDC95A104AA4DD69E531E 1F7BEE6A10F0887F6DF15EE64F3B65061146BCF0F46B5EB53A294960E291A552 0400BEDF61D30D4E937691414B8C14DADF3D4DEF27EC9CDE862922A8F80A0DD8 2C4CCFDCFCD568EB78EC96FB946CD704BC73C9C07A239DFD8824F52E22C1184A CD4BBDDB3E2301C142A6C21483E57A9BE8D060D01F5EA23C22178F3EFEACB76B 45C46C034A27953B14D9A2F624C47668B8700B5363F5C86944A8DEC84D382D56 0C6ABBB75031683E20755612736DF206D313301FC39FAAEAF05D483C1E93E6EE E1DAB686D64D959EAA5DB319812177546027092595A5002B151F433289AE5B87 43767F545F3FDC397C02DEDF76AE6462D4A2AB55867241C8A7EC2293B61AE39B 92B8A82B3AFD65A6AF2B4C7928B4022B9B944151FF0936AACF2269FBCDDB31DF 29358B779C7FE59CE4FA452F0987A6026E0710C4DE0DCE081FA2602D01EDE3F1 6C29CCD38E9D8207504BDA0CFC49517FB02E78BE3C70E4763B58C1CDD2DF9F2F BACD21EFA95A59D67ED2DF67366B64369B696D1FB2717089B7E7073A6C778127 2A2C3250B8FC0B5D8575997D6B8AFAA761E8CDBC9473B29C10BCF3E16CD9B555 18124E11ABFAF29196579325B3F6C1DFC9AFB4B1CF54A40605D7B1A39A337C6F 4B3E724C02BF2C1DE1B5B327AA0F65B9581533015A7834293AE558277F7E78BB 0EB225997B0CF2AC95698AF7CB0F2AE6E297A7176EE56DE77CE18E6DCC988011 C51C80DCA3A6D6613D517DCDFBDAC2936139030AE78D70A579048E27CC418600 99CF1DB94EDC280EA97768ED37D5ADDF09F26FA9CD7C71FF71EEF05BB8F7AD59 EA1600BB67F8D32408617FE38D3F03D23E3A9FC3921EC9C880F0A08E051A337B 72ED695E9B00DC820E7EF062596B651EFCE085DB5023D14713710BC6E2E98C7F 3F674351BC3200F448459590558A0F7D1FC99B33E69F920FEAD378ADC6F2FEEC 542C45A265AA21A7C5408102E0618B0653CF275D78D13DA3866048521F937A45 8AF2EBEE59DE62B5AA226BFDEDB8C7FA92DA2A277141C1DE3301618DB5DF7EB6 AC5BD2226122C26E0AF1A02C253D60052BC8768DE3DAF4BF58FDF5E707347558 9431C7998D3FC3E63482BF8F31AC6E0630B4127E8161FCAA5AFBEA9649390F18 4C8E16117FB1AD2F5A125A9C24BBC404A2491B8C44062FCF8A6609338052D3FB 840A905FD9E94E54E6D1EAE195C3C635596D9D284CF7776B2BBD7D786A9E77C7 F868643441E41CBB50E2294A007668954A0B33F47D470D72654FA58D4622B8DD 90C3CDE66C691A4584FF2D93A6360B274E0E3739A12773F497A6FD980DEBDB57 1B88A8792964708072AC880AB3331E8625C6010FBF9EA04F3572C737AA1E47A0 8C5A40B1A3CDFDDF7314D1F06978B3FCCF751E0DFB25F830FD684539AEB02DE0 856D6FBBC4372D76D109B1A52C8AAABBE455CC37982BD728EA964AC19D6D6C87 6875A653799A383ADE551C3C55C08840D1C4479F1B97CCD8E07201B4E66726AB B5FC0504C4253CA50C538EE93D952D148C6D7A1F99EFFCE9C9E066BC77F2C85B 5BA9474A49850FDBAC35F97EF5783D647E2F6B238F7D77B8F494D6D04687B8DA 9179A7AF10A1BFBC50141AFD6FAD87BB58FD1510FB6167E2955AC7336F2038B9 7AA2683A32BE3DB233F3DBA776AF699305686785053DC25682B734C93F2725AE 5C82CD88B68A7C788D774581085BE2E4B467DD5C5C7FA83D3B159CEC68FF0F91 5ADD33BA8CCDF3D93E96B0F9CFC1F7A2F98585AEF0DD14481CFD1DB73963BBFF 83BA8D9490FA120F6E4E141EEB1D14F29DB08AE5FB636AA1BC7F46EEEA33E8AF 334F22650CFC2F3CF73BFDB769BD34C3A80694278440C8C7B6DE03C101701365 06ABF17546953891D8EA0F75E8756DDC267027145042C2817910064AD0D2868B 622937ACFE34406BCA089A50BD5D40CAD02F22BBD892189D94D41FFF3AA8F3A7 DDE098C2A5C23ED877B7D8016709D6D578CAFA069A3A50AA3FC11AAACA58940D D88505D217BD6F562C8E435F4247AE9AE65BEA57AFB21F13E546040A1A51BE21 1D2706F228150F97BDAD799A4823C7FCCD8DFFF66DE7AD2AA661B6C1BDE91D8A 2625DDA0C9C2DEB214C9C41DCE148A5A805ECE8229A9F33AE5BA7A99DB32F225 24E4C3D639EFB9EEAEEFC61E8B36C2092F3BA757882F94FF7DEB36127E272527 AE79F0F55F9323C046708C4428389058F9C67CBABAA779F84A3EB8540179513C 75BF10AAE036CEFAB476729A8C5BD83B4C212656163F91FBE16384611069E2B1 AA843715DFB594523904C3135690350EE485893F3A51CF2A72366EB840EF3CD0 918D839BB55635BF7EF6E9D3CCD2158918CAB7C9FF74AB701C17E07F2F04A19A F6BC970D90380809A987150EC0C8AE2FA190759B3D669DE4894CF4EF7F32E3A9 50BDA5A1B083A21A9B0E1BA8A536302EE71A14E8778CF1ECFE0ACB592563EF92 D2E727BEC93B5198FFE8C0AB9FA44AA3842B6E070CB4BE0F327196A6CF1F2D47 A7CBAFD8FFACDECAA76F87C26E561DA20B49D2FDB81C42BC36D52A95BFE3F2C8 4E4644D6560E0B5815DC0751A92610BEB4512A4614D0406AC8B5E5FE05610143 DE3A38D11BF9A3E8B0E5A76FA18E99B559DB6C216938AE9DB50591E78FF9FB13 67E89709CA7AAA17D20D820CD1BBD18B904436581FEEB2D9E5C2BC992AEFBBFC 7129948DB03119F6DAD5339CB950EC410B1064F2E8D471972D60514B9037DF21 6F42C03932DA11BCF6B8896755D2115220E265469B3601EC1079843E0D27C207 0D0624E118EB64924154EF01FA65BD93331754D469E61BB34DA3401A8AEA17FE 92165E1BCFCD153617DF82582CF27B8E64BBF919E183BD0CB78753813A01CD5E D3ED931E4670B05C39B66CB35DD93E934B1239899566EAF7D7524E8105DC2BAB 6C43CB4BD23DF98F3CA2E88F0E40A3BB65C1D0A7CE7735F95AE5A86495C3EB27 8AC9F070FED1E50936B0CE6E9D3DD56FF394F45646F02AD19885072FF5DF07E2 2E7B8709D23473FE3E62E0150DB7233D69E31E4AC822FC58DB253EE9737B9237 3000784F4883FD2BC7C7646F48BE10DCED395D7BB6DB8B1AE3ADCBE3FCC23EB0 E7BC01AE7960B6B18B65A2820E788A4B47177012F5AFA3E5FBB8F593EAD2229B 0CB1474FCC2039FE2DFA57D3DE16C6612658F7B7C27B5F3AD36739DE073DFF2D 17A9351BF25DD24B4434C5D1B6277EB9BBAD895DCC727756DD588B65875304ED 983C5F664FB658E0DF6D79DB3AC1806EF4D5F73FAF9651E738564CDCDA5BEF19 53AF4498634A841D370BA07863C8B579466D5A329C8160B8695BEF1DF28527A9 6DF41EA5016705F903D0A0D2268A27965CC888A8BAAABB5D4FE7EC8CC7816732 2AAB7557AA7AF336BFB6B298299BB7B5CC89797B7A71F4D61F0609822CED2EC4 85EB4E6FBA0199D538054B212F095A49B77F664E749D0AA899A877151669E89C EBEAB8A71BBFE65242FD53244194B5763260B87B0857072B0155000E5EBA5DB1 68C21BED2AA9B60506E6873997A34909F6C8D5F9AC3B241A1496A2CC9B6FBB2A 1D4084500426B3931F25B42B1422DB5444C4CCE842B6FCB545CD0357DFA6B867 1CF9C7FDEFD67867D748267BFF9AEFAE4BBFEAF3E0F253570F84D5214B24C335 947CB1E1C56F58B74F48103F1F690C543791BD85B5DF6344EB45EAAD771A4EB3 1F0C7765F6BCCBF583371F56120579729F58322314C5C5746C2944099D7D38C8 A03C7D64532B0FE23060EA277C1D71321D257FE0E07592FCC8B23334A92C4646 E5900FC9EFDFDA95B9E183C582457B032F0878503E61CF24899569B85B194466 412E10123D6725395A7BA8EA5CC88C8CF69F5386C0E615B7A33ADDE091348CB0 966F9EC34A7ED43CAB8E50E6C454A36B96DEBBA1F7AF42A21572BDA70407A985 6A1F582EA78A05DCB2E80D58B526E6473E3688143E8BCEF811D1D02F7565C564 E8CF7801E98451A7FC541542F9490B5A3AFCAFE0C0C3989B7899045CDF262D24 7579ACB8348FD249234092028397C92B3CB69AA206A94D70C2B78ED45534A65C 07C396847EF4A6D9FE1590515C29B2A8FAD4E831BD2E4AE07F1E315CF8DCE669 DE3FCAAA0DB0A2A518753D04F8DDB7129027BB94A0A1EA990F64FFA543F90FFB 63944FDF5F6E29E821EA00A71912C9B1AA9426939A2FD08CCDDC1DE545B5B695 09DA575BE8A9BA6D51584309687FCDE29128D7BC355CD03A09D1091C156392EC 85393381BA2C006949DD93CC39B7A58BF101E0117E88B3CB4D954B79A86C632F 38F5475C8559229155CD210AADB479F7FA83797FE211E342DBB6CF3060986C92 9F946E65ADC67950903B99EEDE3E2EFACFF68C4BD90907ACA26C96E4E5A28101 3517DA551C963D6DBA3B2A0B4432A6D364CB2BB2FD1B3DDFC1F514D4E7771D1B C4B406372269021E87B66B81D4AFCEA1316B755D65F7DEA5AE2FD2264CAF1B28 1DD4764FFA33B22D2CCBB7208D7EEFAF36B86C0225535264733E237E055B58C8 6FE717E4A6613D049D39E64A7F517C14CFDE8CACD53D96908B9DDE9DD88E5BBD FEA1DD01A0CB0E8C417EF1473183F39EA6FA2B47BB27D37381433050DF7C5F0F 3FF6F2DE3C7BF989F617AB16AFEA89058C5E325FADF9B37E0F8565B433E82EB4 F949AAFA60BD424FF49115CA76543F9757741A3C10440B4E5F0CD73AAE7F22A1 13C4DCA7D6A55FDB020D14BAE8DB2600AE6CE26144CA0F83C82DF67C4E89914F 4C4A89DEA5326DACE14766616AFF2E89FD7B25148819141D464E47D178514814 E14C9A8A796739DC99C1220CA086326231E9136F61962303686CF360E9E5D058 915AC25E7B8F56CD1C6092252091E4E25406C5F4B60C4AD01482F41B8DD29C91 015E19D94A0B39836722CC3F19CB46D73930D06BE314583F6DDEA56A2B6A8B5D 1C59BBBF8EF768F9B49B1BBB38B4F828BE4A73EB9315636DDE3AC610D7E0B65E 32A8EEA63B1C734CFD0B52D09B418F6B33F03EE08A886FB6E52405C0403177AB A63EB20DA2865AA6441957F98CD7D64857ED614D59436450F33DD43EC7AFF4A2 D3549DD174338FBCB4BE975E8CE41B34BE93C770940575AA1288F87FA400C650 A4DDD573BF1F45EB97781044691B78BD64C3305FBCA02D9931EE3B8B7667777C 1C0EFDA7E4E247DBD6C5D92737170BB9A86D862C0534A8436B1295861A7A2BD0 CEE445EBC7F8251E4DEDD7173A82A39B8C3055FBB90FC42B550CB5CACC2D2972 886E7AD2AE11626F4389AA07995055AED5AAD317FEBD47B498EB52AE15DB8440 EAB1D16A826CA1ED54F20A990EB564FE9FBB2784EC4920FA479244CD24C7A635 574DF33C73FCB1D2B6DF0CE6D214B464761B8B9B2EC88387F6E99A64A0B52271 2E57D454E5B233F41FCE51D65BDC26C6BC18CE1B901048833533CC08AD60FA32 FF65C5E06A710C206B78D6B9EBA4A81031BBAA88BD3EBCF1E795170EDD69C61E 26AA502B47B8BCB9D9CE8A95D81BE25116B0B84A92BED585B4248CEC62676FB1 2C6CEE3B2BCB5F7D6EA35A5E5725958DC772DB3E108F3AFA1CDD4586014A1296 F92D49A8F9E0D19C80824733CDCADD36E8D6BF728A7EB38EC991B3E4F70BEF0B 5F76DEFB25670F3E9F8833C015B2C68AB4C6D5B490C2A295F038E2A8706D243A 1D4B2228CD1A2545EEDE67A85FEA536C9C32747B45CD81D01767FFE9A8F70958 409C07CFCFA3D102707D1D6AA5EF7A8B25DDB8A7E416610F2D558BD3C9F1D3FC A3CCAB935FD1F57D42E2D32610A3069A15A31CB0F5357C00419F152AE3EB3CFC 4B3FEA9ACB01F180495297B4A8A60A4D2EFFD3473C1C3AFA2221C67D90DC0DB9 43EFDC47484D08335438CCE06EE75C7571007AD9E39E31BA5E2CE8DE96405063 13BF3FEBB2AA0C997F303E056ABAE3F3C14DE8F472D60B6BF7B37A3488717BCB C6A20858B52045A7CBF4564806C1D71E6422839222C63598B7EE67A4359869FD C56BCA71E147E87F9F9D241F06EFD688A268CF0189BB9054231AF7764317C10C B625E4633DCBFA5114EDD89E44AFC560CF0DD1F8ECB356174BFDE7322A3C257F F6B9089DB9726AA7313D145A249AFE7EA43C3F1CEB9113C568D2162A515BC112 7AD80BE6EB2ACD39260B65094039B95E1819FACB18A92E98F84E741409AAE641 AF35BD026EF7140A7563505567E974A43554883949123C29AD3FDF20602B35AD 3100F85FE00E091803D9D14037635C964A1A92390886B6CB72A915CAEAF847B9 1ED0F1499BBF1BB8A906538E7F709F962DF50143B649BFB2C5A3719F95362BD4 A892BD6984CBD362BB1261C5F0C1262B57C441B9349AAEA2995C87FFA20CA0F8 E7C98D842026CFF8DB2258D7DA536B3609028340A0AB13D4371BBBEABDA877B6 1551058522BAF2F47F34509275D422FBD83F51BEDF0D94EF10E95FD1A8B488A0 0A81C7998BD9AF86C1A8E2175ED1AB40C96243687BBCDB793A08A5336F911834 247462D693993386ECB467479997E7995AA90AC96AA68B78F21AC59BA618D886 ABC7F0EE019F4146755A55BC38BF5461B1422E62E320937D056A62D7AF6D3F0D B2A2D09BAD44F46E97316A685CA21CC455AA8A061B88E3E64C64DDF93950E236 B49749CEE474F8C38CA8468E6167C94B3678AA2E5262B69D4C04E5F36CBEC4A5 029807DF9AB3E4A1B5360406EC39D519504E165D129B978225D2DD7BC4ED5982 D67B4F1C134DF53B19CA76B00EC04967E7D057B246BB248F4ADCF9D4648E98F4 4AA48C9112808A0F21F816E481543E5873AE2331E1B5256D027C48602EF09590 18602EC3843E98554D304B92E5F1A531E61EF00E5809784C16D44E6783230C58 4487C0B9DAFBEE1362F65E4555987D8810B49CAB8D53DE39DD0D49FC5C3BCE39 6D4A8461C9F0B0B9B320365C7425D8503690204D0898EC34BFE37FBB5B6C86C7 60AD9436D9331FE53A444F78DBCE00AF3CE5C80EDCE9A65CA837F948EF672280 94FFFD6B176B98D66DE818E27E80327866936389AC4845FF059F996B83FBD151 BADAF79C95CDC5375FFF1211A6C1C490344AD56BF6D9665B2388FD4BABF6EC3F 3F1459DC589A99A7615D64D34FFF122770812E0E1C5FBAAE90B72F8845A996F3 3E3276D41462DCF43C02D046EB6AF4A9101EF81D357FB21FC15D075F7BD67DE1 26DF7DE2E6E21D578051967794B28592F27271AD34C9B81034D62FFC442DEF67 77D174EC4335CA3552D85B0AF9D4A4011808FF1EB140D12491217C9C6D991395 6581C91545A69417114B70FC4E021FABF564AB6D1DC37E456AFED772A1441E66 63AB194A8D94A8FAD64CDA23AC28ABD8630D3B19CA93AE46B6D7F229E36254BB 822529D754ECDB3989F803451F30793F0A8C4CD03F8A82185F484CE910334DDF F3376FC4AB870851E6B7C1C10337DF7865CBBF77B28A1189494313CD8D112C6E ADA1ECFDA1441E2F107DDE6BDFE74C50B89D6238492005C7B6AB5B77563F3209 B6D5978E09ADCE0DACE3990764127584879AC061ED974925252983280A596AC8 A0E581D4FF1446D3E25DEB2602680C4382605AA1CEF04A5231220F54449620D6 E6705DB2D554A34B4A51B0243DBF506577753611F28C968AE743A7204ADE14B3 6028881DC1AC19923B6ADE9DC01706ED6E635AD5049DFE52103F4411829E5F25 B8DBE813719DC80195FE3707181931D1DA3D58F101E34205A9871C9DCE6D486C FD8A3764D1BDAA95C2788192C956F3514D28F001DEBF20A7802AFC168C1D3F83 B5CB66DA709C80CB62E5BDD5094AFBC09AC43A6993CB587D79C1CD2ACA5D3904 683F7AAEE380181F625CBAC1000028727EDD6D1C96A180539B4DB46A11D55FD1 9BD5A991EEEB3125C8B022A4CBD34D6AEC5F4582731651D4A1C593EE4DC547C1 9FCA888C406D3C6FEA0C398D91C8D6B56AB56737158C47A90D5B8311178D3170 4C00D98282FB34C636633DED7A3D8566D647F2B3EE3C095CB0239B48C4A1C1F3 BBE15C21A63A9E779738FFF6AE49081703B5716939C90AB9EB4E1696444CD60A 4EFB17AD7FCB2610A9E3F903CCF938CEBBAD41DC25590B35F50A2CBEBA8FBEFC 109DA0559B474A79A5DB4209D63D727EDCA5EA257143F90212E7D57BC1CF6EF1 D1A1954A4F919209447477DA90F87FC1DFB199C117A434BCEC1BA10653A2C9B5 9599AC25838540B3BBBEDFB597206DBC2A894D077F095C073733C805E045AAAD 9442ACC465300DB1BF50C14F31F80769EEEB8EF1AC8FA42E123B7F98BE4D721F 21AD4A9DAD63D515AF0EE749497EC58E45683BBBA63D7D06B717D9AD0A593B45 6948F70A99A42B8A6F2B5CC578389A7D971B21C48571BCFFB16061A43215491A 66BE45983EBE2E37BCDC7DCCC507470FB01711105EBF9578664D855434DBE98E 0BAD017F64684E21FC3209CA6A02EA74E6FD7B3710CC09AC0C213E3226C0ADA2 8EC7F6A960D7D75235A3B6CE240AD4101855F00748363F98A6DEC3D785F99377 827EC9B43B5B7FDADDDED1C469812A5291F00705AC26BE98C5E9EF813C6E1438 FEECAAD277718900E4F5A4B8CDE0BFBA1E0AF5E324CA9B4D9C06A2900B7E3029 9A19D23E58BDEE72438CD10AACF155FFD0BA3A91E18B9FB23585B76A6D4D9873 3CA358901612B5D7670B1B2B8911BE871853588247A647FB91C3E86A6F642EC4 528A7A3C63D6C9C59B46A22340A887E9EA8754F3771797BED0A2D2ABC7E87886 FD5D1850FC4C525A5CB4354C5F600F3DA2015A35A77841A8009796C88197D9C6 7F4BC939FE15D1F91DD6A62720E90B7153C4D77A13061F9F6D732E05CAEE7E7E 2EAC05082F0756507E7B6CEF9B559A5CC7EF7AD02C54E5DE6418EBED07FEADDE F28A240D66F004ADBF2B4C9E158F0FCD9950683ED6210ACFA65F2071E6B72AF8 92E19D97ABACC701B24E7CDC9D4D8C0D17EB4C64A9DF75B765B1058B485A48B5 3A92C9B0A1D13800EF704824E61C8D13E64ECEFC2321CC2343A9B59E6C8A0244 E3C1AB84080AE28A51C7034F3EBF2BF8267E293F61AA10128510CD26C0E54C1E 6C2C7BC8FF2F52AB1A603BE177A6EE39A5D5F77E9CB3F37B46DF0A134F0D47C8 0B67F71B5AD0B206D3E78AC8146BA70ABC216F4F5CFAF55FE1803E4947297D7A 8949E54FDB2A7246349952A2B585AF440FB9BA30C4A85083E5EA80E134A611E9 E0275460E58C4680CDACD85D38938AD52D1CCD190D2D87241C91C75802ACE899 2844DF49F6C532D4BE4C5CA2386BFC77A5C3D49A2D691EFD56C5EB2AA830CB8C 03AF9B30D698BD58C43B20BAC134A895FDC42A0FE5C8CDD1110166A36CDA9874 4FFA0D573A1414F05CA1EB5551FC456486A72A1B7853496B6F162E6A881368C1 7C968BDA6B9DAE96801E87FB9D987057E4837E7450ED0C41E1AF1A14109C8F9B F20152D9E0924BD9723F73E23EE66FB01E2013CC83A25AAF37FF923C089E0F46 EBAD3B42FE036F94EE078C9CD251A150E28578B2DF64720E7BA84F643CF8E500 2AEF59F860E7EAD664E614E489E9E1DFD76CCE33702F25F5E6D7BD2734B0EF97 4B13A1B666CDEEC6B1058D8951D00FFDD44D910D5308135B088E5E2B0B44F684 82AFB0E87F64251CB664A130D6685DA57DFBAD8EE271002476AA8E0895E283ED 970B130C0ACF264D8314E920BF308A44797572AF9B150352EB261DC86A8BEE7C 92E4C5BE76E66476FBD2BB1B6079D4291F03932E92CE53DC37EC79D946DF12EC 19D5E914C67F883C42BC5FC28FF200DE5A10A3B7308983880A5E5E37C457D515 58921D0ABB91307DEBFC1C157D834C5F8FDD85589F17E28F99CC42E8AB3A7D2F 0965E88C78AFAD9DBC56B76E85B707321D760580252D175DE28F46E2130EED6F 3101D569B0C2745813D1D8F3C6A30AB77610CD50F5C8574DB097FFBEB2EC53D2 D4887560B23710BC4BE049749C98CE066079D31AC800091119DE5C45673497AC 1E7BB1DF4867C5098454A98863F196A20C74B8CD778F24AE06E92C08BE0A6A58 EB7CD34A06CBFE6268A01E8360725534A8DF5F3F1074FC4BAA6BFF579DFD1E5A 3C914F718EF07F4A1EDEF0E9B4B0188CDB3BC478C9202632212542C5CA144F71 E76BC68F3C110742B61D20307AD2A4A0527A3FD8FCD7819B207B9037FCF53E3F C81BC00D428CD5A5EEC788BA2C974B550533A30A646FCFAAAAEAAA443B09510E A9D5FBF1E5DCF14BB0A116C91B4E760DCAD201020F63718AC3A8BE519232CF57 1D2A077A95A5568D12FE61C78D6C1198D523AB1D604D92D0530434E4A5059F6D DEBB5AB57D473DBBFB3B1D08E4C1795658DE4D6106A746ABC371D90A6D31B36C 6F950EB16996CA13104C356A77B7652471C811893A359E824BEBF8869EA13989 3133DBEA5CD1A7447093A4B6500EBD5F434B7736D3BC909E6B51489A79F2D8B4 6F8863EA0560F02557175460037899DFAF5A93871468F56D341680C0B8D2BD21 709F35B66B57DE6B1446910F4EF5DDA5DDA3A4EF486354F087449F231326E4CE 6E1019BA41FEB775ACFAB6CFB841FD1EBC0BFAA6BAAC3B72605CD8ED100643D6 6FBAE3DA56F5B6CE1F66A572B71958FCCFA3D1A312FD8199CF30BF0383EB0802 2824A093336EED72111148C8F94113DA68C6A267153171B00335B0D7927715D0 7F372D2F946AB65E1B19CA318F04686891B6E09F0536CF77C24A8C8EF7A5FC05 61127667715E4CD2A547CD92BBCC219C40F4E6537036BB416783D54CB182380E 87F7E8D7DBD023ABF937085F12C81D92D65F97F70C017FD25E7A218D484D6A1C B490BE23B603F763C260BF5EE4F9D11879421C14801948F4EB0B613219FFB121 A477496AA5F5C70025E15B198A54C38E32A3E65B5678944138F4D0FF07970A81 B23DE2CF7B248E8960EA358A3ECD637F779EC73B614B5AAB0B72ED62B1FD5B7E 45B9C587F327D28B042B31045D641D5B258702019FE50AC6A08A8FA828829CAE 573F6084ADCD362C55D539C5ED40AB1468D037F6756E7C004514A07C4A4205F0 62324119A96F357702B338446F1E338AFFF143B8CCA5ADBF7BE0A2A66C40FEDA 15DA022E7575D9073E10B9F7A5B1A494FDE2826071EC40BA22AF17275874BE93 7EEA3FEC5253C04B6060189C710FC7C5E2829F53B1746590B30BEB6C8C81CF15 688A72C2A05B4D68FFA010A74E23B5B0B28C622B1C8D266100ABD3364AE21CCE 1B3701120B83EAE149792C87D4A074C7F8B4EC81156FB9ED3D0246E2A8A8D418 24308FFFADDD9D20DA7CCDF56093644F425D8399E8A3A06B571D7C80753F840E BCEA835E4094AFC6DFDE191E9045A115936F50B97DD73580D3B6FE91E48AF6AD 0F1B8708CFCFC76712BE2079AA6140C830523CE0E58148B36AA7827882AB0ADF F5734E2AD66088AFFA6ED6A8582BDA670D979F8C23042E07502EB4A8506307E7 B62510C729590B73804DBD2129D7EB17E2164FED0389E458BA053F5B24983019 20D09AE5948A159990D9B47FBA323F2DFB7B782FC963AFB083EEF4C01F614ABB 5F588236986323FAF367303458401379CD8AC7F7CAF65816FA4B45F98A875F10 86581706C369911B1AAFC70B1B1E7D30F71C55C030E5FFF4FA5FFCE97E16A269 7982CF88E407BCFE450DFB0D0D8270C2B5C91B4523899C637CC86D1542F2DC37 342D6366195297B4A529F853B5F910902BC907BAE83CD5522F5A0F2E4666EB9A 40083B1AB66C9BFB1DCAB26AF910B174AF933326AB131BC080BAE7B4FA30AB1F 422B0C17648AB95E8188B76977DCB7B2D041847C82347BF6D2F729C9174F1230 E8612F98D9EE77EF7898A449A7DF889D137D1691AA315E9F6F08046BBBB5937C 529EE7FD23AEFB04603287FC991638FFF960D07BB5FB14F5B56ECD782EF84741 7AED87F9E4D76F6CC4D01FD39D8AD05757C9B5B1C1775410F9A7BBE4D9438994 BE02A1C81CE0BCAB1B080ADEA7DEC8EB2A9F5F1F2FCE0EDF006A54A6C1FC70A4 51D3B2EF67FB6AFC68171CA31AFDB5B30C6D86E4B584B885EBE66344D499185C 7265595A54E3AC090BE89424FC6ED53FA7C30A417AE374E46476169C0EF5A04C 4D87EEADB08CEB3CF5C26B376461F8891BA72FB028B2088B81BA74CE27B2C455 7DEC6A56DEF3406DD71AD214B9529BC80CD0AA95DEC7A074B785DC2192713A0D 85D6A3017133F5820912523878E2CE0614513137B1D6A0E1CA1B31870AE10F48 3DFA4E6FBE782AE1E7557D157F4AB92226C4DA3F70AD4EF49D3A19FAF0169B7B 9464EAFFB3270787A6F02E86F8E3B56D00863A00C6C68C2AB375F08DC006FC97 F060316F3385C66A7389B31DB5D3B7A5C5B73FD1C344ED9F40BEDFD82BAFD0F8 87F6155F34FDD9BB4E928E5264B8AEF216C7D00EDEEA633E543954BE63A7A3D8 34468AEF3C79DB66776E4C75A9C61C482B695F6384A7F8E8AC68913BCCA20221 2A013A388798FD878DB9AB8802504236DC8147443D150D3C85F16E443B860C8C 1D9260BA341471BD866790B288D08A643C3A915AF31CB885B10EED89BE07731D 7936A1FF37B92CE6C953A9A6D2070CB9D1F8B4409E25F0D1289F445F2032D470 A4DF4FDECA4AFE4656AB302CCE0DE4D9B9D665F56DF443DAC8E5A6F011C77811 8D6075D72FFB6AD2E63FEFE1B8DF761DA09EF42D73EE725003628833E010CA9F 76D69C341933ABA225A1D448D1B02A24C8EF54917559900C31CF4CF96AA1976C B75D49A191D647CB4062CD5D6591CF232B1FC7A1792787E97BE5F9F8BA3D4586 5BB1D8ADFDEBA915CFE0D4585B4C7296B0E0B307DD245F8BC357D3700E187D75 17C6440BCF624C8751D160BF9D351F49E1283AC4280DB84C36E593AEE0AEC473 0DAA130274B8771D318283ED32165F26C31CA4602BD138DFA717957AB25423D8 9D454DE676CC9A16C264CEF9B4038834762014B65AFA9841234FF8D6FB6CA9F2 F719812D43D78077C82FE60B75CBA75B7C7E664BD116A68C1B92DDDD5ADF497C 0E7DB07E3FBF45298FE4B9C994E55803FB965BFAD4C2BD156D34D79B41A950FB 7DE8B2DEEA4440C93E94C9D3369C7DB4F297555AD10B1A8B003DCCCB94AA5232 CFD2BBB5C223D8CA488EA15317D8284F97AC5E46144400797544EB86C2F7FB1F B806596973F2C8FFFD6C26E14C13DCBE138C48DE544CBCDBD16ADCF2E28D5319 0DC91310740BCC46E657C806A1E3DED637C488384E05615E78C96FD0DDE0F5F0 170A04AD520E0B9BEC13A133DD976794FD9A63FB22F495BBA2DCC7BD11FC8D65 8A1D80B2CF25666D444FD09DD1650B542D894DB7547A03BB60A9F1C673073A0D 789A66A3B41678579F42B2421878DDE27D4873D4FEC825685E90BBC6E9631A4B A5F6149B7C16962139338DF54857B590E9A39926B11D0DCEA8388E7336AF455C F5C39AB40504792DA3193B21BC793A63870CB7F6BAB8D0D51FF8125FD2BC72DE A210AAD804AFB1D41B2E8ECF2936E74C53532775F21EDA729AA902B3C8B2ACDE 0578353AF3E9177C7906041C9360740841E64440F5815BD40FB1C41DFDF515CD D47837C9654689CD118714FD6D8E4CF21A02B01AC9AEBDC75341741DC5ED3C73 1DD0EAFF35BABBCE1CF9C207C1DC79F47EFDF0EC07D6E85D7ACE2FA8F5AAE916 C80B1010086AC1E91B957A6A61D91113C98F95BCFCECB3255DC548A03C37612D F9F47139A49B7236758A419D57E42694B0BDFDBB42EAF30E7F49421FB9563F72 7036DB2C85AC91A83C37CD2EDE94B3EA82C45BFDC7E1696C76D15EF10141BBEB 363C098591B35024AC9D304B348D028F573ADB949327370A0F6EE2B8C9EA50A9 9BDD725A81BB626CC124E522E9D164E10671A93BC36DFBE6025C34783106052F 142845026D6B18BEF2011E0BD47D03417EBD88F1D31FD36C61781735B5A1EAA5 8C8E13BB206A6DE4584EDC53D0CEF8B91B59698106B9535D62BD88D80ECC85B6 1F1CAC049843A88150359315F12D9940FC65DB61D8DBF588C707749E8823A53D E19F6C060759BEE9A19A7536599754FB587751047B3723001349EE3A23851B68 C8F5933E766D5CEFC618C0E551069A00BBEF52DFC94A3E5F0E5391FCB97A21AD CF73E4EDDCF179730BFD8429DA97711A2A0B3853946026E6E8FD8F61C735946A 25E44B958697B722B52F4DD3BCA1358E2AC87A81840F05D76AD90DFF2756E7B8 79DD5D43F0CBB873F11A9B753EA79F44F62BCBDEE84CFE171AFAE64C236CFA05 521638B4F8CB880491BBC67B7C84268106D74DEB6A1BD035D9E4359C9417C14B 6EEE4AEBF574172122ECA13C800E178B7045C2D0B1BC92C07A5351C15C50BBDB E7703FE1BE7E668BC059F62533786F36820D2EC57668C53B7DABFFF06BFCF199 268B68430F3FF275EC74EF46F991B3EBF9FEF1B86659F81809DAD9F0C00718E3 7DF1DA8521316FB2333305D58BF90854C5A9AAADF7BBACAF0CDB9B687CBCDDAF 30ED6E7778E4922B9766C461CF3D336B629980C3BD2CBCD246C0B21D0AFEAB5C B44885D1F82796B6B064715FA3FC41BE38D338ABD15B7C627FC2D067F96151FC 8AF9EE0CFC15F16F4C8B6427926F17E612C2225274248B7B0809E1B08380FA9B DCADCD2D1B26D1BF6FEDCB13C54489ED3558ABBC9ADC7A6610C411AAAFA94367 7452F9260211EF5CF2DDCADB27DC0BA52C4EE8E6F5D98CD6B495755A4B52FB65 67366EB69F16A3530371944BBFA0C82AB9459D718D08F50C60DDDF5DCFA64B1D 71DCCD8AA01FFB9387DD26DEFD30D97D5F9EE03F5DA165DBDB0D2052054DFD60 DB8AD8A389940BA24F7F44C0307A9A446E3D53FB99A6E51A18B4700DF8F79D96 1F3996630D3161EE5D119B6C0EBB57A1ED333DC8F18E35E5A715AC887257D37E EC3BF6DFE165B62401C3BCF3752386166372061F6CDF94689070432C283C2277 A5652AAFDC83461E0B5960997AB5B7E8F6CEB6BA0E2D9AAD4506ABE0E7CB5379 77CBB9113727093B1160DA55CB2E6F2727414E53D8F7F66F45F1B7191AE7113F FA7E11A2D144F27D3681258866A2B8F9C0BC12782CCC83AD847D5976FA7D4468 78E55ED04B32B63B2324BEE7251FBC9C93223EFADB8946A267486F9863CAE636 C602E5485628158238D5F6ED59D996E41A563B5641CBA250BAFADF44B4959C03 838775AFB5CA6755A3C7DC78F1CB1154E63BA7370C4E0279CCED6D2E34695243 6460A4F88C11842FF7B4BBD73711F2FD06888A02C0C5759C581DE1716C80DD56 5C2B0223A20C56196D67F7A6D7B5F711743AA31B3D8B1CAFC649E1A3E227E32F 8A7716BB8E919A4F14F2630FBB1662767A1348055E48050DA6547F2B45FCC664 8771E58CBD281DD1070E045FA81DE783F831C50ADDC4FE239FE4FCB231BE3F4E 2B6B75C719C88E69F8B3B38D25EA42F2B6A71B03FFB204076DEE53EB22812C36 62A077A6097FF9687732C4B69F686406283AB883A2FDF4C5FE70A5472359E372 DF28BB7DB8DA88E2399EB61FFEB037E484264561BB7A905DFDD110C5B110FE4A 2FD2FF3A1E3E1FF6CDA888F2B27522FC367999D7DAD58A29DF8EB796F15487B5 11FBF4A8F7F6C9905C1F4E5E18C9729EF6C6028D5AE027CA67C1DCAA4CCDBE44 A7D74CA0F6ABEE0BAA08C4A5A3C35FB3CE59EAD3480307132D25522518FC2331 A46F67B236C4F51C9852562BBABE2705AB619C4D4F52675459F184FDD59AFE95 30B97EEE211D690643BE8126130F3FF6EAD41FD9B760139FAD1BFB429C8BCD66 0D504B64A7C502E476FD6237A1BD7CBC187AC7A30CB39614573B795F1EC2AB5B 47953B145DA8FB5990A80B515B4F9BFD32349F8F882E9BFEC8A321E3830A6379 7595631C3E2E9B6711374532A8708CB0B554648DE5128FDB4D85445661AC950B ACE8D7EC9CC3D5C756EF7890041957B2F625075DCD762A04442C0C5EB983B820 22E64D66C3974D031D6789096E7A7A0D2D2A43FD1ADD8BDC80F9D1B381D67E3B 28B421336DD8812030E13FE79CEA71A9195BBC10EA5BCF2A446099ADF23C4310 A7C0E296A311ABABE65AB2AF49BCAEABFA09CFDFC6C7B001B9CCAF252D6F76D8 08DE4E08DD78DEA1FC92A5039BED5FEC5C276A1130EA569341765CC3EA94A4B0 442244D7DFAA37B2DAEB640A4F014015CF54EA13CFD931517E3CBE786A6C4559 182EA384C2113DE85A3EBF2B9B4E8356AEFB12FC9CDC11615CBAC7258A3D21C9 F26CC170C3A3E774273032848D24267D0E7699445061B05BD5BBA4EBE4FC22F1 9F0279CF940C39ABB756CEE674528B1E78D514C6D319F88B02152A425D4D2062 7E798DDEA2149EB6D4F35D435C3777F9C6257D2A82930F540B119C7C3D0807AB E383C37AA4E09F708DF1FDFE2CC8A3BCCE624A0E0DFE6F7A8D76CE50CDEBBB1C 6B61F75DBD9E52B8209495D00B7C01568F13AF0B5D812DEF37FF9896F83D7643 A6A84920820A22BDCDBD9D5CB31A57C2BB67222ED05E71F061D79BF09A2651D8 FA6ABE2FBB465F4310F1BF1BC5856984F5857398B636D1144F75202A4F9C4022 0DFE3F18FD6043C381EA81B70DAFE2B776E88FAC1D482775AA6B452B81F5B396 21A97D7214B5C1A766B62988330ED4CDFCDCAD8CC165CAD046278163046BF696 BE49C3AFD83A0D6850CBC9FF1751D90433C03F373B89C31A0137EC9428A9C744 72CE4653AB8B1CD3EC345C90879BCBB7C89B25AFE08A9FD880B78C9F6FD42186 6103F6FCCC9E0FEFF506D56B5A98AC79F69DD7D60BDE46D29956E47396C7A15A 76887359539D654B899B6C0FC8ED736C5DE7199AC10FDD15B4FECE94E4CFB473 0422A29427D252C11ADD2778C3777254F58EC33BB24C82F559287F92083CF708 38A9CCED1E5EAACADA0B4CF23D83F1B257DFBA2F83883496BC1D8766A4FEFD11 A320AD84F04C029DA40E51DB8E0F82EE343EF7383B29786B90680FA8A108A94F E1CA201327F0E17C392C706CFB7515873582A090F93C9BA2BE6774B810FECD10 01CDBFABEA808363A1374672AEDECAE03C783F7E2C85299E40F4B76AB7BF41CD B01EC583140F30817B5C9B4D22EA6D4233E7EA1AD32629BBC513F79E85A0EBB2 1AC59E7BAF8EC2FCA88318C1DD72B1E1D899354DBD8AF5C39EF980CAB38141EC 56C01860B90DCED2175947096C6D5AD7B56F4A5D0CF8569CCC1E0EAA454D696F 1652453ADDD38ADC336F2BA06523BF8DE4BC77969135CFC485313118989B90BF B00E6A34AB57C871767EB52A9B970CD5D70D26164B6617F4D19C5C3DF977989C 687CA9F67509CB0E261E9A8D18FD6F0D7C061212B8BD3CD876CFEFC50BC6569D 5ED1FB4C56B4E0D3B2CC1117A90DB01802D36929E28F84C19ED6C83E65A0782B F5EB4A9F9AB020A1FAA6B7BA6CBBE0C071BB1FB61B2F9113042C5A8E2E131FA2 5677554EC8EA45604BF7464C5137EE17634E8434020D90CB88B94A76A100077A 21E031DFF68439EAB3381D1436E31452CD4D2E69914FD2E82E6D9AF2FBEF031B 53AF448C21559598865550488FF2EE2F88E3027F6D1840D52497EBF96AFA6691 64F0671E2E29C6EFB745ACDBE97709FD452FA6B2BA43E1B21320862B5019F8A9 52B68BDCD53B35BDA09F1FC4C480CFA3B92719E360BF124D9A9E728BB8D4AD56 3D1CBF8EA793F509CF59585D2443DD46F15B8C86BA6438272ACA57274895771D 637365F5FB3361631F68CDE33A8E8B5E7FF3CAFAD3344FE57FB79115E2E67678 B1ABFF4CCFB3540B6F7AD4189088EE0471DE1207E97945B4B74350A71852C0C8 2EE1BA9E58C467B3234985794B04C91F6A857D5DE23F7B71CAFC182C7153EF1F E353F897E22851A621E1D60FB5BA7FB0FCFFD4032F714F30B69609C9FB9B1032 CE7F88EA8C488D55F9ABD713B603273830D45026A5A4D6E8E235E6772B43DC75 59BA22ADC7382A89D5EC83D516B6B067DC0321FE435AD294787DC7A736CAE106 FE2DB1162B182B1C9AEBA01BDF7A13934F796F7D5962D53C90084E5C5B0F54B1 C50BEC8A2B11841E08B0B3E4F57ED0227298F2FC5F7553B0F3D522A1FD5DB5AD 261D7E37FA8AF178BB9F57531D728D266335807E68D6D7BA036804F0CF9D6EF7 E024A3E3E2CA30911E6F37352A381EBDE15276CC52A168FE21AC6F8078CD9E80 0E4212AC2AB968B339C7C55BD52AB03A3D0A65A10652149B4B56687105F6B51B 886A944C181310A86C7B824508A4614DA7EED2E942AFCA91C8685D9EFE369883 021C308CE882836A5CD0A87C8F255ACC770B815F79EEF626A12618EA3AB0BF52 AA35B2EF24789BDE3C8EF3E282882F3B7256CC2366A131AA8578FD14B369E5AF B6C94E61BCB7FEEE9AFB30FCFCC9BF85B0444056614F18F99E4D456E50B977BE E3D9996B9E817010678D3B6F733C4B3C48DB1E6475FA6E0E5C8D6A37517A1F56 93819C842B090BE09DE6BC7E5D8BD3351DAB8469A27D9F5DFC4227EB534E8750 695FBBFE39024507D5B7CFF063435E3EBEA0702CFEB563B3130AC0810A3BA1AB 4597EC9A2487D8EF0FC7827474ED4ACCDE5F680CFD17651A21E3EDC15E9FB31A F9DC51FEB169A884F15732C1BF3948E8B96CC55563AADA8B3606B17218D86349 470CC300E618135C404A8EEB551A10571A922B920945CCCF0F315D1A75F8C4EE 1A0641A8915BFBCA53162BB40F6AD8E8FFE411E2FBE104EE488385551FB16217 D7784722697D0891B966CB4019037D0F96A1F57EC50C4B27437BB8763A79A7B8 F1F01F5F4BCC48F7F642C6EF1CA4AFF92EB674CF99222EA58FE888B737ABF9F9 2D87CDB282F6A5E8C02DCA4D76A2913CE31272387E21EBDEF0D9E2F24C79A7E3 EED0A7FBA3A8BBD9B525ADE096B4903D120144B333F0D702E0B166D433E30EE3 D3B0659FB70A2538DF137545C312665AC28FC49DCE75DF71FA1FCA37C6D0E879 264C6B9D2B218859507A648A9FE83A8785079FD581CCE122B918DCC74A3A33DD 24589EE13017DC330385064B09E2C9B6E4A0E9D76A2ED29B68A547ED185D23E6 730A46A85F80674E1F804216C1EFB747B7E9B8703CEB50C0206E0145969EF2CA 22F2604DC3FA86B795FDBEC57D4772AE030923BBDFCEFAC1A516E5CB058DB83A BF6919BEBBB9B309E5E6263D6837FF36FAADD560BD7F2429CB4A5726923A683C DECA1F3583E08C77AA81FB8D8623187596489A8894E0A7D562911DD7AB819260 CDE2C4EA96901F92B2BE7ED14947B9D2A949C547B8A5CF52D9D15C930DDB4E3C 5E3B274198C2C80DD92CF75C28C74CEC39EE946A6047F6C056AB6E029A6E9654 4A3E162AA204BCAD3B221288ED33DE3DA6095E85675A8105F5CC88CCEF4C85D8 45F829A7EAF58B6B5D3DFA9FD708B82101C19895ADCD390B6C3723E8B3C42196 F4AA43A125A1FCAFF10621AD0056B096C21C53D5C9B29D359A568F66C1F65A42 7B76218410C0D4D47F64B3F625519D5443CAF0ACBCF6E45B59E9D7C4C6DF3545 6D01216FFC11EACCA0FB29DC997CBA1E6B4408AB95CC3340C7BCAB683B7E62A8 80D5FEC00070DB68043F8B95CFE064F09E62A2BC0C99138A5069E27C70F7FEF0 DF3B98DE67070E05C0E3680DC1BFA10025DAF449B5E2FEE824B277DEB9489E63 C27D82358933C1B103EB95AC38EA9F52F3D437C59DB47AA465DAC7EC07F731E0 7F72C3868CD58DB46FB7839DE77F8B00B5ED53322DD03CFB2303C2CC1B26C78B B6F7624596B92939E8D6717F6C75139FCE87D549D311B8EE9A63EEB766D68A26 689DD5EDBF8A9B8695EA4226437620AF7ABC90A5E19A1BCF9CE1B38F99CC6626 651ED6388A1CAACD4CF505131B97B27F32F68E2F83882108598140218BE26381 8C32D7FD29852913C5BFE5C65C0EAD586D801B0E5BBC6310FC50A92E18151EEC FDDC28F39FD1A323A3B5EB5DC12D263DD1D7D8B9A69B5CC156B041CA460D4055 6B2F44057BECED5CF64C9DD3E5AF2B13053841C9FF55E28E21EE767EED5E16E9 A033C6442737BD02C0BFC4E2137951ECD3C21F6CFFE5394D37DB260D5EA02F0F FE200F25E652110134711CB66547C6E3DEA4684233B3369CB975761CB81F91BF F6F1E4808276641AEF2F9D0577E8A6D4DE2AA8BD547A0EEF761E2C62DE6EE39D 76CB24479232B1DCD7219BA499225B533791BF358610ED296656A3F95A44D564 DAE42762CA32419A67501BCAAEB2360BE431E835A00CB7BF1B6E58CE1F6FE01D 191A9117CFDD9AC1ABA5B616FA4CFF94EEBE9F84BC4338F66F86FC04EFC73548 1F6D884F7A8837011A13127F58AB3F47F7C301F872550F558B462205726683AA B9AC359D635C6B7733DDB204D23AF4279CE7F5DC8BBB352B4B2F50E9721DC89C EE6CE994935C74AB296589C3C47F624972B7D92E0D1FFB7F5A30FD52E1B15126 86D1595E064FACF2BCD55A5391F9AB38C3913B008491D7003782F95668735AB7 56EFA837275E42856380E3F5B9F29C1F3C2EA94440A8C5399771065EB26DD940 12C34F5DFE5AA595249CD08EC2B9C2E387DAECDF0E7878B9888D7630DCED1C9F D341C61C57B47C12CC7DFBC5AD8F2FE583A2378B0E111CFAB1891794FE65E2E2 3CD1F5DC0A2D57F2B6E4F88B9298234756748DEB13AC2163147EDBFB9D44C614 9606533420CC766AE517630E0B7BCF01F2B5A092CE86F3B0E69614C2E3867B9A 99E05A128EF55B171C869616A1B4AA03D7EC61BF69D36ECE84BE11D888FEE73E C91C03CE9A752EE81E21E73E849931FE57D0AC6180D9884E5BBA81EA20B9C879 31AC7E8B3B26A27D510E69512B9CCCAB31F41ABFA92CBC9972AA3B8612CD5440 AD0C1FDAB86391E2358F209D7D6EB419D18BBF8EBBF13C7838B40625FB5461B6 4AC315A975E6687D68504B1CEB3C507CD015A25689614B379F7EECCCB5EA7978 DA58CE5562A85E0E5FF07FDA3E08088A8A0C8285E8B30A95FE7ED9C5C80B23C0 F696683A43ADA8F6D1AE93AD9E95E05AA639EA487E19D2BC1377F611FCF62647 E21F511B70CB659A0B120F64F98CB091B751A55376A60E34041011E5DE6C8ECE D124DCB9FA45029064DE7CA36F8CCE8FB149A220A29083CE2F7F56A665940958 1B1384039664D4B1E3EC177CFC6DB6A98E162D89FEA3CE1C35803C4CB7593756 CCAFFC04F2F41743D684EEFD4DB4B9B2E9C8DA8BD3EE4539405F2B1B2BC5AEEC F6B303C32892CDAD9E9F7B2B00175F9B45133D3317D87922D268C3CED1CD1C51 FF4604002D6AEBC8E4784BD4E87979C9C5964962D6AF054DBE2B00FD08419C16 9F3D7B2C70723BC7B0B5273AAFE83C2D0B1B96D7F0617FEACC78A584DFA8D253 D71029C6884E70033922D3E2B2DD27231A0B9A9FC83A0D75349FDE08D60B9F6B 76F0BE5614C22C5A3810DD19A8AF131DF61C98D739220243D6136A56B6ED09E1 49C0CD780134E118D88C5AE22CD15128E00E5E47C27CFCD1E8201AE916F4881D EA3D220AC1798A571B4BE179A5BBB474508A1BF6C7415C6465602FF73FA78214 D20E6F79BDB768C2F0AADB39088359DE6A5412885C21837E7B97A20BFCA2364A 1FFCBBFD3FF10936C80448A2E8343247E552A5F082A5B2E44F72DCB3D0074D48 BAE6C21FF654953B9E0A33AB9B33259044BDE76643833BE8588F50130087356B 19EACBA029A1ACD80CD0DAB61094A8BDCE989D7B6BE57A58698079245DB6857C ABFFDE2F20116A134E2BFBFCD1A4790FA4B723142BB0745C755CFA493C33EF54 60EACDC2AA25704B648E7A4D03127D49C68F79A3A6E74294CD7BF78C4003209C CED18AA524478D46D6286061E69975212175230477A59A6342A684A5955EA108 98C38DB86533C293B419E2D7E5C4E15DC47BA14478ADF01D466DB7CF41E34196 4A64 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark % End of font resource %% Font Page 00 /LuxiSerif-Bold-ENC-00 [ /.notdef/H/e/p/M/C/colon/G/n/E/v/t/V/r/x/P/a/i/c/l/I/O/underscore/T/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef] def /LuxiSerif-Bold-Uni-00 LuxiSerif-Bold-ENC-00 /LuxiSerif-Bold MFEmb %%BeginFont: LuxiSerif-Bold %!PS-AdobeFont-1.0 Composite Font %%FontName: LuxiSerif-Bold-Uni %%Creator: Composite font created by Qt 25 dict begin /FontName /LuxiSerif-Bold-Uni def /PaintType 0 def /FontMatrix[1 0 0 1 0 0]def /FontType 0 def /FMapType 2 def /Encoding [ 0]def /FDepVector [ /LuxiSerif-Bold-Uni-00 findfont ]def FontName currentdict end definefont pop %%EndFont /LuxiSerif-BoldObliqueList [ [ /LuxiSerif-BoldOblique 1.0 0.0 ] [ /LuxiSerif-BoldItalic 1.0 0.0 ] [ /Helvetica-BoldOblique 0.936 0.000 ] ] d % Font resource %!PS-AdobeFont-1.0: LuxiSerif-BoldOblique 1.1000 %%CreationDate: Mon Nov 12 2001 % Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. % Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++. 12 dict begin /FontInfo 10 dict dup begin /version (1.1000) readonly def /Notice (Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /Copyright (Copyright Copyright (c) 2001 by Bigelow & Holmes Inc. Instructions copyright (c) 2001 by URW++.) readonly def /FullName (Luxi Serif Bold Oblique) readonly def /FamilyName (Luxi Serif) readonly def /Weight (Bold) readonly def /ItalicAngle -11.3 def /isFixedPitch false def /UnderlinePosition -36 def /UnderlineThickness 72 def end readonly def /FontName /LuxiSerif-BoldOblique def /PaintType 0 def /WMode 0 def /FontBBox {-221 -211 1138 1012} readonly def /FontType 1 def /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 74 /J put dup 75 /K put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put dup 87 /W put dup 88 /X put dup 89 /Y put dup 90 /Z put dup 198 /AE put dup 140 /OE put dup 216 /Oslash put dup 196 /Adieresis put dup 193 /Aacute put dup 192 /Agrave put dup 194 /Acircumflex put dup 195 /Atilde put dup 197 /Aring put dup 199 /Ccedilla put dup 208 /Eth put dup 203 /Edieresis put dup 201 /Eacute put dup 200 /Egrave put dup 202 /Ecircumflex put dup 207 /Idieresis put dup 205 /Iacute put dup 204 /Igrave put dup 206 /Icircumflex put dup 209 /Ntilde put dup 214 /Odieresis put dup 211 /Oacute put dup 210 /Ograve put dup 212 /Ocircumflex put dup 213 /Otilde put dup 138 /Scaron put dup 220 /Udieresis put dup 218 /Uacute put dup 217 /Ugrave put dup 219 /Ucircumflex put dup 221 /Yacute put dup 222 /Thorn put dup 159 /Ydieresis put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 106 /j put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put dup 122 /z put dup 230 /ae put dup 156 /oe put dup 248 /oslash put dup 223 /germandbls put dup 228 /adieresis put dup 225 /aacute put dup 224 /agrave put dup 226 /acircumflex put dup 227 /atilde put dup 229 /aring put dup 231 /ccedilla put dup 235 /edieresis put dup 233 /eacute put dup 232 /egrave put dup 234 /ecircumflex put dup 239 /idieresis put dup 237 /iacute put dup 236 /igrave put dup 238 /icircumflex put dup 241 /ntilde put dup 246 /odieresis put dup 243 /oacute put dup 242 /ograve put dup 244 /ocircumflex put dup 245 /otilde put dup 154 /scaron put dup 252 /udieresis put dup 250 /uacute put dup 249 /ugrave put dup 251 /ucircumflex put dup 253 /yacute put dup 240 /eth put dup 254 /thorn put dup 255 /ydieresis put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 48 /zero put dup 163 /sterling put dup 36 /dollar put dup 162 /cent put dup 131 /florin put dup 128 /Euro put dup 165 /yen put dup 185 /onesuperior put dup 178 /twosuperior put dup 179 /threesuperior put dup 46 /period put dup 58 /colon put dup 133 /ellipsis put dup 44 /comma put dup 59 /semicolon put dup 145 /quoteleft put dup 148 /quotedblright put dup 147 /quotedblleft put dup 132 /quotedblbase put dup 33 /exclam put dup 161 /exclamdown put dup 63 /question put dup 191 /questiondown put dup 187 /guillemotright put dup 171 /guillemotleft put dup 155 /guilsinglright put dup 139 /guilsinglleft put dup 47 /slash put dup 45 /hyphen put dup 173 /sfthyphen put dup 150 /endash put dup 151 /emdash put dup 40 /parenleft put dup 41 /parenright put dup 91 /bracketleft put dup 93 /bracketright put dup 38 /ampersand put dup 167 /section put dup 134 /dagger put dup 135 /daggerdbl put dup 42 /asterisk put dup 39 /quotesingle put dup 34 /quotedbl put dup 64 /at put dup 35 /numbersign put dup 176 /degree put dup 43 /plus put dup 215 /multiply put dup 247 /divide put dup 61 /equal put dup 153 /trademark put dup 182 /paragraph put dup 164 /currency put dup 130 /quotesinglbase put dup 146 /quoteright put dup 123 /braceleft put dup 125 /braceright put dup 170 /ordfeminine put dup 186 /ordmasculine put dup 177 /plusminus put dup 189 /onehalf put dup 188 /onequarter put dup 190 /threequarters put dup 37 /percent put dup 137 /perthousand put dup 92 /backslash put dup 168 /dieresis put dup 180 /acute put dup 96 /grave put dup 136 /circumflex put dup 152 /tilde put dup 184 /cedilla put dup 169 /copyright put dup 174 /registered put dup 32 /space put dup 160 /nbspace put dup 149 /bullet put dup 60 /less put dup 62 /greater put dup 172 /logicalnot put dup 94 /asciicircum put dup 124 /bar put dup 166 /brokenbar put dup 95 /underscore put dup 126 /asciitilde put dup 181 /mu put readonly def /UniqueID 5078994 def currentdict end currentfile eexec E98D09D760A3C22CF119F9DC699A22C35B5B35ED6AA23593C76D54CABB5E942B F7D6DD84F1664B89699C74B472DE9F8E6DF925F6C4F204E9F1C639B4DBA988ED 2AC419FF2B2BDE605B8EE3264EDD66412D4F21C64AC522BDFC7C5502F9C3F3E5 592B3B2093D33C9BFAEDD2D49E89AABAA832E23F062E91A25032519D1868816E 44B4E0747795003D7930299D6E1E2A5BFE0D595DC97E140989CE81D8D7F852FF 9CDC7A1B1B598C69131DEE005B415805A16D8F1232D9E237CD60D35F0FD179FB 1219B605B80A36CDE0BAAFFA5D97DF370655785FB236544DF1E7A00B7E8AA37F C23C6BDAB4E3F9BC5EE40602171D028423D88D16F57168C9631090E451FA196B 8B446947EE6233FF652CF41C03ACCD60952FE06298CA4E207FAAA38F192D2D8E E528AD9B647706997722D73A9203CF7377792AE5780299EB8DBF2C0CBE5E1572 982D74F81C32E627DF120AE53A1BFC783FAA74AEE3920D208F8AF826AE684F6D CA41AED94655B6A9E0D60C34C318C7E76F5A52F373693DF3ABC03A72E8DB5E66 CF5DAD37C9CB9EE42DA592D9DB876C6E62DAC02F1B126C59D1703D3A685C617B F5A8FD9A630D8746ACEA7B41E9DBD4C47B30163DE05B34AAC3337965660BAA0B CC2BAFFC0F3446E268C9BB27CE08456549C2DFD8812DAF308024973D7C38E8D1 30C198D253136F3478334600EBF8C0196ACA6E350182B387FCFEB559F62ADD64 D9B3C78A9832FA4EB023B07719B4D8A173274C388446C99C63F7C6313DCE4118 8D2127184AFC17D5651DC1F2B7A763052FDDE142C714658009F5407B20F1D30D FC978A2FBD8CCE7523A2A62EAF38D6485FD62C13D444DCEC7DBC79CF9258B502 67CE30E2032F03718CACA3A28F71B941923F52B6FC4EE1731D9BCDEB5F456423 52BC72B85C92AA0A7EEB5E7BD6470B7FF3C9A68EB479102C6F790F27266B67A8 59AD2EB5CF5A20B6A39274BAF31E02E1C487F59EA0AD622DD509438C43E7F935 C21E6FE887846ADF1D3071DB5C1A7868787F92F46D6AB19D56CCC3742B646AEA 2D24DDA6E00C6EC895103BBFB6D67B0C902E176F84AED3A0999C2C99A65F1A64 A362CFD2DB6885F1EF150D828BA5C685A3A0183963102723AAC166BEBF18CF62 D0C26D613CA8AF740822182523B26060E255124B1F9C70511B9D338A6AE2D837 2492D7A67A371CD3E757A8130F8FC9D6B13BFF690257B7D41C012CDEFF5BFCAB B511D068C9183BC0983E09341008C9717C20DE26E61CF7CA45E59433E58FE1B7 C6884418C26663988693B995BF1EE3842EFC3E33976C988D6CD724D3B81A942C 2B0BB08F65A08BF768138C8A750A892DDAEF502823D4D6706CCC05451652D896 38C09DB8EABA368FCF8AAC4E482942DD3D784D9C57675577F107594C0D2E07EA 36553A9785E0FE26534DF886F2B5A906018C48F1A0CFAB7E373476BCF98E7CDD 18A11D8F2FD16699FAEC22754E53EE9C972FF4A3901F94E58E23823A78F40439 B709D90F48348B8B8E78569C77326B684E4DE7AE9192877076BE05932E8D3FCF DA09EAADBDDBA35290E3FBC6AF2FDBD178AC051807027BABD733B54DA6E6ADA8 350D3FF874041333CF88705C96F55CBE46A4D6DB68FFD447996A124603F3E29D 4673137D87A8B33A430F18ECA5DE4ACCF88AA16294BD9A3A98C5081C2112E3A9 FC7C9FBB704BAD222B07D0D7E9F52BFB316992C7ED6AA618163D2268734D7B22 3991A8C256CC17087E844BB8FB806A66B9EBA4DCD9FE4DDA936CC61229492253 2922EDB5B12AEF0F77D693C51D616EA252BF6CF515C5CC737495F33CA41D9F8E 34572232EB422CFDAB03BC194E42DC669948235E0BDA96E50A3B78FD24A8F859 61B560D847BE4A63E97358DECFA6BE9B86E026176DFDAFB470D57AAD803FBD38 714DC319655DDAF6BF3E085819C456BCA734BC479A22BB6E8C9FE3E747A5E47E 0FD73B4AF5A80AC230DCB02818AF68A251998462E6DE10AB7FCA5FED041B32A8 382B480F30400DB936DE1665D9D7592110AACF516FD0F68026AFC371458BACD7 BB9F0A7C5B399DF9E7B02249526C555137B5A2B8BD3FC2A5055ACF2A983C54FC 5D4862F8867C39DF18824D457F222918FACD5EFE01982CEB5E75643EB7C61F77 5ACFF22D54B58EB7F0BB14210CBB8A8B562B188E04164F46DCD915E428BA6137 08420B83F3ABEE130C92EBE3A7C55FE7AAA126F2E9D450350F6331D4FCA8554D 2A0D48865FFB3E0CB9E97847D82F8EA1218B5DF5A9966DF6B7622A0BC06531C2 54F0589991E10C95A5D1CD2BF64E248D3BFDF25F88A405E95FA254D2E4B70160 9C8153A5504EE22BFB83C771616044B55E0B9676CB234B0054EB8B3B073AAD22 B7E7A89C15A80E3344ADCAB949955641E1785EAB2D62B843DDFE4D5974FB03A2 8E9CD8E6B10A98611126BCACF813843C92AC35DAFB9F14055EEC42E01028431F 2456598FD76BB66F1309B1DA0F7077D86BDCFBC6B628B895011B8D74935F5419 8902392C6D35EC29225CDC7D49712D1D9FDD66C24C5340C1E05646631902B92C 516F67ECD172F882CDCFE2F957E4F6395D79E9F08E0EF64C7FC0B3118E3BFBA4 FB752619779BC1645969558BA349F8868B3A3CAB48ACA78FC8BBF33198F03AFF 3862063C0BD73AA486316E28F948E31B89CEA0A0F9F10311483EC0676F597458 8943317514B3B0D47274A499CBA6F76415D22ABF9AF5AE9A164D3444BD3A3CBA 17682AED8A11DEE04EF6965C07849C06970829560793B5E422DD801B4AD94CCE AB73562530310B79FCD6F2F93182C05C509C0B2163F9F24A7BD06DED8D50C955 1C9012158313AA8A548B79D495DAEDFC651D4A6110B98A88047A6893FFFCF00F 03D6848F15412C9200C5AA0525397806CEBF448F92E9EB110EBAF17CB2856DC7 8C22DA7487B9E55B6DF23F345CB478689FB8522A1FEB34EE58AD8A4805B7CABB 58EA56D1FCCEF7869901EA0229908C74EDE80E2CD07B0E33D17389A434C54E07 039EC17E27A56847CFE4FA04D65AF20650F8C58D24745FFD76F443843B7ACF94 01528C2F046C2F8598C36367E9FD009B2B73F52AD9DCB49DF76DF74597AF9AE7 B43E4988D7CAA34ED694CF0D3F67B9C21680DFD8E925FD4DC6E4458939C1F5A1 1F0465493E0B8DD3F63034813F557C9B321E9265F4467E1BE3070101675A40E2 36AF9F1D37162176B4B950A37EB1EFA3642B9E8AE6D5CC77DDBC6E5C0A172BC8 4EDAD45A7502ACE290A9AB4D56E32245F7AF75D540485611CC79C813CCC61FCE E7C773F74E26BBCF5EAFC476AB031A04C1BEEEFC881843AC2438988CDDE7CF53 C18FD1A9E1F1EC264DC2484BDF4867933422A75E0EAAD1AD55A408D81ACF6AC5 D93D12EED180D56666BFF3479B7EFF185E39D4296C7C87F56A6C1B6B0A99DCCD F7032FF77585F4A1A22DDF46171A5A0C0601758F64CC10DD4EE4EAB0BCD05753 76ED93EA50B176B36196DFDF5345E4BC934D9B6CF7ACAAE77A9B0BC66E460402 87AC5F4CF69ABEC05B6DB517FE1059002B95E4245297272E552E6DFBAE1663E6 1C37C0C90916037DB040BCE0BC1FCAF881461E0B5960997AB582942DF119F00A A58EF89B9CA549913721521F259B135EFA1C7E1A5F87550621E31BC7DB07FD3A 85F024F2943F95D66503E8498D4B7038FD7F938950FF22310D1B49E61E395426 B20B952D57983BF33A707C794895B082DBB035705F8DAE75EDD15A2F75C9DC04 91A59777B2953CB4A1C8575C4FDC2DECE1737E9ABAF62637B0FB6471378E942F 1141977AFC8032A13866589CDB087995F9F78EFF5713572E6F3F7FE4467E8313 44D994CA7AE974124CA93BD83C9E8451C956BAF993F279AD7044ABBE7BB826A0 2757ABB1135A21C9DDD3781A589F9252C51452458CB5C94C4FCD53D3ECCA36EE 263C1ADECAAA22CCF6CE9DB923000BD7FA6B6B12032ED49A469BDE95C5903420 CF275F03D3637C7A65A872F462F19C6EB25EE8F4E7A49C528806EF56ABF5468E BDFFAA111A3B5E5DC9C46340DB0563DEC9250C603439F656ECC6F8A5E344BCEC DAE02EE7F349175C35D8F8CA7715BEEBCD45D2980B707B3B2EE44FFF846C8B8B 8A7C02A56DAF16192B3823283E9876E8079FA3EE07BC1EB30AD14DA63B80DAC8 D1311AA303A9D56859A4169C20C7F279B7527741D44DC6AB31A2A048C2CCD362 BAB152807E3F73A621579EAA2FA7EB2BD45AD89E170D4AFFE6ED94A395965E32 09C600D9AF322B870B34068FB0706EAB341FEEA668275183D38C641A98EC2BB3 0E6827F3A764DAF871DBF5D27D254FD78E5F99432C405E92178941EE9B1999AC 3BC5E2D10BE76BC555C63167A0408A69A3B37A4D263204F6401A3AFF49398862 C685EEB99C79D42A7859211B6C447462C894150469429C7E5315F575F8AAA66F C2DADD013A304894E50EAEE124C86E1AE87AF200C8DEA35027ECD102071F8FD8 F3EFCE1A14AF5910C6CF5A5A8DC5F09A18285D0384717E4FA0232443D12130C4 EBAFACCEB4A8AC281F8B4CB5136740A15E7184A2BE166ADD3B307E918D326769 F99E923C3834EDBFAAA5A2BBA1CE952CC01804000E1BF0A4C80B35E0474FC985 3F852E8AF570C542ECF37F4CBB940E278FD2AD1249144457ADED44359A90D3BC 9022B23C46F25C74D22A61BA69F1BBDB4C5AEAC64AE8B6AE975822C08E416810 310EA856B8FF8D17BC79AEB42808ACDDA673BE0BCE980C6A98CD5A0455A1A234 BDD559C0B31A798D088BA0AD425DCD904E8C3013C388770DC9D03B6249E8A4ED A49B3A2EB11723B0D6FAC3BDE453E1F8DD6531BA42B6359F47A61B5762AFCDC6 5AF5130792FE98C5FC024B1DA4887095413C6FBA16EE59F1C8CC43A9FCA40344 2ED9359597B991AFD2D94BADCE1E96B676A5910BE322CA3BED9120062740AF03 7DCCF5793E87E7C05D95C4F65466C2D1867518BBD4CA2CEF4F6299E122C2EF6F 9301DE754D842D32BF4FF0C61001FA3929564A3935FF2C291B7E3B4425E9A0B8 BD326EB5926EA0AC4FAC6D34F2A0715A68D38EAD576CB1FD774C30F0CDF2643B 2DFDBE58F38F0589ADDB6BCA49E1280F5219F45B0FFCD574ECC51BCC8625B1D0 8A710B796113F13B8115B3EE0267F25C595CDEC16A6E7A016436A5AC93783EBB 443AF8DD342F6BD1F58C315973F9FE0B6D85C50D9BAC10A456CC83D8577032BC FFEDC71049EBC829D6A419DCC22ED0A3A2E230101CEDC64C67E4F442E36AFEC4 EFD6AF959D4341CDD27830F364E85DEDEC69E1D375AEEA5805D45B4507275AC3 95575B9C83CF9529A9050997D5235ACCEB4E79BC37515C7C0205D8C9B827A5F0 04E21177207379699BDA9805FBC4CF0A9B6AEB09E1E21DCC693E985DDD79C45F A33322BF56FF7B91ECAED3E0E9C92729CE6894815DB7FF4C61E9F74AEFEBFCF4 56FAB1681DD80EBE8D418B6B7BAAADF34E87EB5CD4AA2FFDA2E4F238035FC14F 6239B152EF3232277E9AC710AAE11C310DFB02BA392A026C661EBA5669F33C22 B850CC57351F9EF0D6237C36753FE0A63ABE7C6E11798C9CEB6602D8E33724D6 CF700E1A9D09D6973C99EB520C3034F8B38EFD43FF71313950C1D44565EBB204 A614DB50EBC153B59A366BC76F01E5C3E5B8BC09D2B68EA6C154F72D54AA4733 A4FF05C6A82B0ACE40AC70343FC83133797AE8C6DBF3BE1F6E441D6BF809C71B D392A0CC32F1625D07869950F857E4E2B3B9979131C4432C44D8F6EFE9D01F80 86D60FE915A474EAD180B21A24FCE69D511C011A8A6A39DF30F87FB2EFBB376B 7CFB1EDA2447181948D01C49F3795ABCD52344B58ADC8A8DA554849C97E5ED97 E42F571E5F2D060FFB9E1B012FDD38B53C3AA5172E280B319BB3AC47E4BAF2A1 4F891DF034AAA2F2AECCCD8C23182B5535DAC76C151F7718C39D549B6610DCE6 9E154606D564619BE796F85050CBCF8EAB4EABF17FFF4ED07A3BAD022C523621 DE7FEE8172910DD5448D8F7456637A17ABE96218AA7B1665D361B7FE4427BA75 8F9193B7B9A52D4AD3405B7DFB1FC79D235DDF354D321B293E5C269616A10E58 722A50BB356379CE744B3839E7822455300AACB0AD45EC8761F560B8D1073C9A 5BD7ED1BEE741282A92AF285BE80C6C65B2448E0A4A359851945AFFC91C9E578 2C12D27B51BB4500CFB533051D055E7EE47BCC23D8F8DEE569A1FBE3419539F0 8FA5CE4D8612AD404EB7E83D4E4A547C2C347D217979AC48E5C081CDE3671319 7DB36C69C2A31B0F633EBC046CFE969448FF2A253CAC2B4FFDC14FC152BF83E5 E517DE19FE1BDFFB7A3F276293E761C3B39AD3610E442AA58A7C25BE41C05141 AC500ECB657643CB128E8AE36F4B37E8EF15CFEB1F8E3D334519A3609CDFAC3D 362933B5A55559CC28DFA89182F89B2FD5013E08A2C583FCFF9CC53A2D5CD13B 1C9786D1F39A02106517DD191D9E5169363FB01ED68C4CC13CD9CC257A2EE802 C9E40E5C0BE5E65982AA15FBF0F04118EBE9DF64C279AFDFB1197AF62F6E18C2 3E95A13D6B6737C4579B24E33A0A14DC922EC4C7202A30A06A4596547A791955 B3902033D6047AD6E44A90FAE4333D0891684A9B1895585D9E91985026F72BE9 C216009AF01806AB043E51DA494644D61AD7379C7F93F17AD0F164D794DD82B9 077118A0426BF267C12997090821C5E01202BE01A1BA5CF130557EAF84E2AEC0 C83C03CBE7F14C63884CDF25E5248C45799F080D281E3F9FD932063E7EEDE22F 0B2F478FF72D54E68FDBF6AF5A8BF8EE06EF6C30A5E061D14A512075A873AE5B 5DF02D81390DD9597AA8E902459BDBE5A6A61BA2E6CEC7C563DEDB2BC950B307 CF22643E985DE1D7CA84881D19CAE2A205FA5CDE59420353F3EF23FDBF391FB7 38CE81218276B2960C3923B47EB52A8429A50E28A607D5242312ECA5536916E1 8624CD1482AF8AD52857F38E4E689F774B55C3946C2012635B911205A760F77C 8093298C200E220697E6F3D210C88B3E46F2B2E931952D42F51FB5426DEDE03A 05004DDA3604F38CD65473D13877822CF615C299308395A213B5D666EE06B0F6 C1ACC344BC1037B5C95D78BD424522F051CA1C03F9FD11EA355206230ADB90B8 E274770F8DDCDA7C3910FB07CC477B04205A6434DB34E69F3B69EEA2ED6FBD58 C6CA944822B44062ED2F5B0AE86AA5F40E0B171D158CA1A57E5C3240A1A721C9 92AEBF5D4075D78D772E1364F9BB631CBE1086D4EEE58E6B4D6BFDD7581D2075 EC0FF81EC590A69AB9EA6C38D91A3D763A1A85D9588741BB657A7CE31A9D8C55 9AA83C9DD8321EAB44CA22827230A11FBC9CB12992204FD936401DCF9A71D190 C9C7EFF35FA97ED1EA2DA3584CDF3D66C545AE37E2403C3945DFDFC3F08A6C76 C6E3F7C9238492D7022B904C846CAF40F0D571A39FB05B7F359C869081274F4F 3174CCD65045AFA181235224859AC3B5A708301033D0DD449D0F3315C59EDF26 94B3AF8F8FCAD728C18B55A9A4283D0A257DE2C36F2066A31EB0E401C34A5861 1E4DD5C81288469B625BDE1B3734804F726005071BED0BC518D0A1CB8C45CF5E 01E344C48668D815DF1B3087DA5B063E9C6D1232D3337DF90E71D10A306211F8 A360053722E799E182D22CE80F4B0A7E118806F6D99B4456C539DF049BAF6694 A9EFC7B847D0C45BF90DEA76CC68BFF4F733D246715976AC5BC56AEEBF3783F1 15A79B960289C4BE778BB63F8C46237A84D9881B40B9562E460ED08BC770F6B8 97A739BC2A060A76F1F1280EB07487F42EDC0C9510388CFC618A311A3987F4F3 B464489A974B2F8C2375351E70C95BE7A7E25777D78FE245195F9920C14688F2 05F350B893547D619300D36C58A8FA419F310A38AEE84A714BC8D0ADC2166D13 80BBCA7400C6AF8687E0F9690EE1B71538EA3534E43F035B24532305E07133AA F43680AAC2EBE60674F991234FCA58A01A4BCD9486599B2AB70FC48E0533CA06 C2DF386E46617AF45A810EB56C610168AC4AED960EC344187934EAFC3E1FA3EF F5010ACD71A7A902FF0DD4CC41107189041A71DE11A6BFA37CB035F1C14B8161 9D70DB95AF381AFB800C99D56A366ABC81B4B463DAB84ADFA5272FFEFB1DC405 11A92D7CEB4D54CC1C682E3BE2C0C2E671DF073A96B9DBF014588B663BA73768 A7C3D4D546D8B59BF7447DA941A52D295B8002E5F1C31ACA441F6F55DF69F515 19212E4BA25B340E9740499986A387E9B379F341B3A2B4C0D0E79379C6A2606F 744E13D2E415FCE686A2DA21195AC7431C9AD3F4165C7635DFAEFE5ECCAE5372 BF7B107E6363B7C97CABF67A141A2B7ED27B415D2CD730FA62CA1C8900C673EC 373485615ECAA7C4C7A187BA60AE6B4E6200EEBC4F421689E5578A29F16719AB 154C41FAB20E9D262C2BFFC9F6C6394CB841E9AF84A48376BBB637EF6BF45330 346CAEE1700DCBA3C1E0F2E75340B6FBA1721AB007CA80EBE1E66E785B2C9568 E570A8101996903075E3E9816741BAD2A30EB96430A5710348109270BA7CE860 C227023C77730D5CE4D23CE0D48707AA4C314D6E065EF55B5E0A83ED927D68A9 0421AD3A6BB10F27DCB22DAFA033F15BBD985E2468490DCCBE677EE57061184C 73F22395323818EFB3D0906537F0881FEA258E8ABA6F89758F21A47AB72A79E6 59C9F0737C23D76F95B80BEF922C62502C533ECD80C618C1814F112EBD7616F5 D9D42153E5DF0B4F844B66F5985A345E26E93C259D36FED6C9751BFDCC82A233 6FA4A91926D768AB042278F2142C51997A27CC08DCE7985FDECC2F99C25F5F04 C48C0C4F532256581490B27931E1A472C7895E90520ACC252E55709DCEB8D255 45C0B5526F339CACFD8A94A1D58958B239FAB094424412FB699FB5A036BEFBA0 572D5738B2167771B29D3ACD92667C57B07D7AFC1AB676E600823FEC83003E43 49F0D3F7CBCA7D7BD764C70247299783EAE00B03C09ED5A6330F1516600BA52D E1832F3268D38396776D36166E26BCA5252A59D3A9DE42A84969092761BBDACF 6C5E83A69C03B53B10FCF95EF76F91F7A8EDE6E450CE253F373FB9382FC84BC7 833F464126EFBD42A486308AD1A30680F7C423EBE1597FE234E510FB4F2F0F65 E6CDCA4D2C5BF86E743A39BBE78D0E4A3D56B04588EB457D96629CE5AE95F268 87E3B49D66C2BDDDD27E9F1986BBB313E33110F099C9F176D188B7594C965EAF AA4FEDAFCC7BC9E7BAD2E1C983D596844DFE6F321EE15F109150CAA6DCDA513B 78D6D3B8260041367FA44C058C3EF84A37DDDDDEFFD35AB50664F7DD9C856D37 D5C6569718DB3A6C869C9DE6257E06ADAFE2FED0A544F5023A4452AF73771AF3 06B737395348ACCBDC9662EA92616D197226E424520F68D38E80537926DE94CF 13DCCB715204C3DDD69DE77BB00334FD3086F8B961FD7FCE4B565BA524C8EDEA 84EB69E3400A075561A19AC5D2AC8786A68EBFAC2860ADF804AC53BDA205AF27 37D47F05DF295430915591AFCA00CFC65B428CB41EBD97F229F171C8995887F9 8F99C0B45CFA0787C9B23EC73EEE85AF1ABCCA5DCADC9124A41671ADD3C33BC4 2BF955421C3D563B1741C5BEC1F28D2011FC1FFECA792B31C208A9A02C950397 74ED4874D55F2EC1655102672BF26012D747D46563CAD7C0BCF5D194B0EFBE73 71C1D68F3AB20B63D083F45945E1C5B21C0FBA4FD11597548062C967CCCDF68F 6578505652468F71B803C9A4DE8093A4D0FE29646D7F8737E565EAA3D9F6846F 5AFAACD20B44F58F143E8CBF9C236938CFEA98EC19AC08DFB881F560A2ABA6C3 45E6E8499338F1ECC0B7AACA6634485468C0BBED3F99D6A304BB5968EF8345B6 AC1683C7E9D4EA6BDA3BB7D4EE9E819325D0BD1672B65C0D213DD9B988476936 7948106DB8A26C2F6A511B771CD57462181CFA3B086CBB508270443C48EF7EEB 7C7F0CAB757FE1A1E62C26C079AD2DF5C2A1DDC919F59D7AFEF92DA0B1B3A34E 9B142C92E8EC6A370DB976E3D112458AB0580EB79E6253D01E59A015278698D6 38684DCCFE13D476679E1CE55D565D5521684B4BE62D0CFD7FB961989C011660 E79F7A051AA75872D48629E5A1598D29E8AE353757DACDC027C8408E3E027B8C 2304B2F54CA64306776A2A82017F5C96BAE8DC9D7867857D772DC9F4AB8B45EF F3CDF3D58B91557E6D39CAEBAA8F3D81023C344B2471128BBB0632FC6F05E9C4 95D16C636DB9858D1359FB36B301929881F09E5F29B0C2D5D13D4E598E1C086E 70141315351EC33C15AEF4FD6519FFD5352CED5E5A878FBA466F1C0252660F79 29B1428E9D0467FE26A3E1D22B7B47EE8929F87D906923BCB7192DD94E22DE58 A49D4BAFF8DEF1078DFC049BB16420F6F968B2F6AE8CF8FFC65DB1AB9A6EE972 C89FC33EDF480124696DE3FC43BCD111108C9FE08482A3BEC819FF71917C5118 B38040F48D74E224B495B90667A7A678A9F55DEA4F70953B38F97FB2D3EA9B9A 6E5B19CC035DCCEA31C8FACF62CFFE9DC86DE87815BBF5B7F9D4EC7322C3E658 BDCE94C84A4D747531AF85676C5405242865E9086E77FD8C51C1A5984C9D8C1C 7B29952094DC47D9062C89BB7AE2279B1B92DE43BFC54C8D236E546D0A3B9B24 A143F5B47A70FDC724F45AB788E3FD7228D4991B7AB0DAC1588F290FA1884EDD 5A895972F0E76446925A73E616C93E0DA74520929A053B730EE97CAE5FC04749 18F8E2B87C210C799CB0AB651AD24D9749A2D41DAD03E94DC779312BFB90883E 3628A822946BF8F81023F2C0B3DEF58D73B11493D6482FEB44DB9BAE0FFC52E9 0BC04A6E50FEEE540E4E8C8BACDEDF32A3F09FADF274150134AB3D62AE0A711B 0B30F3419615E7F6DC430C13E976246B470440E759117045A4CF8CCFDD9F0E2F E1EF1170FA6B80D192C34F01E472F8CA8978EF531C13D5BC6571F7C3196584E9 06ED32F98FCF35B50BD2C4DEEC9AF9475B79FFB95024D3ECAB0522B19786E083 5B86E984FF076AA82F707048BAEF3106EDA9317B42AC8D3CBAF0B9E21D0AB84C 957D20D768C903AC512A947DA6119F151C1247B23CB1B52B7DCB17C5A6A5205C 265B78795B1D00B361778BC7351787B9ABC1CE5E5A58D0B7EA5EEDC3EC71B1B5 BEE69671010F9F22067E99B01575464E9F34574E1BB7464644968547382BE1B7 891A84149F9A5F42CC21478EAEDC5567A0D430A296EAB205368B068AE66A1B0A 78A65BD2C23B4039CEEEA7903B1CB11E476C1384A332FFB687F661A368001C71 722E27B624DA1939FADBB5BC7086FDA5094001B50895C70159DA51BA742D540C 2216A1C5BD55E2FEF4E71561612C02809C69C21A072F46FBEDD83935A9C850D8 EBDA855336501173E29F765129023E86D29D6CB0F8BFEA01229DE5369B143A5A 090B7315D36169A8E4704BDF62F93B949662CD574211CC8CEB59C02E1A061A44 0CF5A59A05BF9D4E71F5FE55772FF327119B585635EA460B3AEE5965DE139421 BF947637683431ED8EA28BF1FD43F8AAAD8FF22669DE5C867E388A30D0677B2A 8168BF8243E3E7D7FE9DEEF929735B1708FD0685C575E96A621EBE96EA15C3BB 888D276E8923D2F7C946B11D5E7AA212219475D90CA4114C879783235D636B29 02E43A52803BF524F84603DA0D27C8A0EB4B3B84C66A0F270A49A0BF6E5148EC EF7C6BB67144ED456ADFF8EE21371FD8DEDDEDFA42B0738DB69E1BE864CBD632 EBED5E9C457FBF80B2D1DADF31A63C86144A1AAE498162AC4DC9E04329792111 C631C12CDB2281987C5F9E12625B8331C3355490C0139A306F7C0E8D9B3FD198 D77A0D2980599D64829F5B509C5E88AC242BF2B0D6EABC04E8A25CE812352A6C 8A5EA0335322C561559BD1172211A0A5F5B70A8711B2C277E668A47C1E254047 298EA350947CB275DBC85B531DEB739A78C504FE2D679AD7D3811237D5349D6B 454A0B44051150C0DDA3728510A321DD25BBFCC7CED07D88298C30225632C5E6 627DB302E9AC30AE902B82DF0ABC2CDDB55EBE98D1213C397780931F58854D9B C355F7EE7BC6F526A5EEA043FAE8BD740D2713BCB352811DB18A253291A8D465 EBD45B9E21447B5670D47815E7D04C00EA15AB089EE92683E6242C8948A3FC16 50BB0BADA960157D20E3AD217C5DA1563A86FCFDDE2D274692A0EE47D41227C9 1188D534C7F42858D0087713B9829DB97B31EDC82BD05AFAD4B4CEEB3554CDF5 56F79FC410FD577693706CEA58F300F8158EAEC1ACDD7B0F2DEC83EFCF850B45 40A00794BDAD3C43777EC8C9CCAB480D931093495BD55F39BC6D33DFF3ADA062 EE643B9B84086693BB70A7AC9B290586403B43F4F930894FC0A3A4C9133E84D2 7A144EE9A60A6EE3AA5076ED1BDE8B56AAB7AC243E8317343FC83ED2AB33D0BC 6A130EE2087C0534521954E77121B2F34D00BD2C6D7B29E6B96D15CB1BE9D144 6771C1CC311CDE1337E2122076006C84659022B235D597551AE45287BE7CA489 1B0CCADE0B548A0850D29B6C1F38ECC3E534E37848032818CEB1962A7AD21DFC F4083B75C000F0A5D0FD565F1737AEFAEA0083F3066B540E93EA4C32BDC0D5C9 4ACE4E5131877B46D2BAA122680620903552D738E225E3D89D41A391D7F492DE 617FEBB74C31F3193275F2E456E705C0126654C36C9243135BED4ADBE26B01C9 7366ACD0DF11A3C4DF0771007B319462E4396B8F644D67A5DAD7F747B9FBE502 02D24645EF82BCFAB980F80933ED035D6E31549503126EC31B8D205EE4EBBF82 56CC51748F061A4322593ADBFCDA9A704BE5FBEB0E733D025B4BD81056ED0A03 4EA60DC8B3853A5AA4B3708F0A9786AABE370627C32A82E588C76F8DC6D99CF5 ADBE29DA22EE31311031FD37408FBB7C160C2F9895DD2F2E40D498D25BB3FD71 A28B9524619B60E7696833F73B5A20078A6330A62456C15EA5EF488094536156 4ED0B6A26E6EADAAFE761BB8494E33B4D87820961BB5E38BC45055C5921BFBBA 665611136B7400F3271A865138B1BDD4E6FC6871A4E9AA7E447DA991C4A894B6 B3D2A552639CCC2EAD55A6367B500F7793F9DA332D5AA3B6A7DDC903B1E5C223 A5843D031413ABDA79FC810E408C352A0FAD6401F612F78FE6601A45497F67A0 E4047A1953BD656FBF31FF37789EDB624977D7D7EBD79DFB50EEC4EA3F89CBA1 B88E2BB110C1BF48EFC58539F2E1B36A5B9CE6891B0DA32BF6CEE62DA5B9DAA9 B9D6AE4D088A536F7C4AD89D079C9E4866073EEFC46C46C77255420F786D6AE3 A8F397CA9C3DEE47594C109B794AC7E43001E6CFC374C415E62095C7FB05151D 21675170547234C3B3EE974FE929C1FB4BB2405C28B844C82004F533F4BC6FFE F62BB9F778F81A3B28C7D26527ED751763B8FCD7EC02F565533433E11C1869A1 E427023B1041B70252EF1C68758BC8EDC2046266EE0518264C8CA97D6996924C 0EDB3446A9A7CB910CD8A2AEB08B1E35F71F9CE07773F3D2FBACB7D9A4FADEE5 3B51F1468EFE1E9C7B51DE91BCB86733D77B9D11828F6ADD68F72B405C41CACC 98076A626DB8F7AF19B919834DCE03391B7274D1B1D9838791D8276DF09401F5 B130C9E744BCDB98D02A68BD1D860A54D8E6564144688C0B43BF0D56917A2AB2 989EFA8F599520F2B19EF6D8D92138EEB8854546DB669CF14CD5ADC9C8F01DA8 20F8C5D21D0617FCDC8B1A7D7BF6D880AA2B410A98CCC8F96AB191EE1F64C9E1 C9AF753B04757489881B2D16459B7EF2F612E658C62C32CE17767209C5FE65DD 38D736E96F29CF8F8B6AB28FE3D6F6F48FC05FDA95BE564B762B456DC4B86575 014BA2B041B05FFCE349DA27064514CFCE004DB9E05F6C1E516B00A948EAD74C D2F1CEC1E150F5533B662CFCD8AD232C2666401BFB7679DC7530204AAF2FD7CB 8114E3A2530EAB6F7C75EC5982B8816C7AEE1D69E567C0934EAAEA4B09604564 B2F5416576945A152EFD7B85B0D1F53D4431524AEF0CCA43EE250C6FB1A6AFE8 F92C3B67EF9DBD5F8739B064DD4826CDCDA3673FC41C521ABD1DE23EB0700C50 3D202646191A6B031483AAA52BB73D98F17B361B8DF51B984EAE2FFE0B1F4D5F DBCA6362C76813086B3296D1AC387BDFAC50164525AD253A46F52792316FB237 45EE6E4B3B4C56C2420AD3DE65421E5A90D4DA797599905558B336C01856BF9A F77354104FD93CB2E90B0E5D615A2E2CA4F12C3501D0863396290DD285DAB35E 79A8C8DC6E340A0F32CCBA90FAE28FD3FC95710B0D0C5757D97102EA269A0A10 652E8B9F9517ACDF09218926563F25B6151D1AA8D79732A403ED88ABFB0E7889 543FE0D96A0E1245DB8337F8EA21EF2D948C0EE666B4EA53836B33359085AE96 1709376A742AD8B181DB35FD583EA24A5B43B1294D9A144065767659C9DA490C 29FF12165AE21AB10B49A5FF797E3F079A645648C687ED6F44EFFE79464D5696 875EEBA4AFB09F3455EC2E0122A7E91DBF828906BC05E6DA2ED9D9BCEE5412C7 3B6868267C29BE95D732BF9FF6CAF6084159425D3CC6AEDF7E552BAEE821A9CB 1F806C46A138A2C5F6765F015C4C27F6521BAD1A582326333BC11D14F7F5C83D 464109FC2BBA092FD6DB0FFE8C1408856DDA1D6F0A04F831CBBB9BA91D700396 1F3503C4898EA49E922A556A085B9D50D1493176C9C740FCDDB1A313321B86E1 E5C5A295BAE5C271D536FBF8B31C95B6F648FAC4DEDA02318904CA443DC63A16 BFA0CDCA75245A4AE420CD20DD780F2AEA6388F84A8FB42BFF09F9996DCC5844 FBD0850B5E46824C6C5452E34A39E0A0BFD082E2478E0A0B2AC9253B4326B21A DF20260F9E9D36004984C074B1419385A1C52B3606B9BFEC246E26EAF79C9964 C34DA47CFF84D27DD210251C784578B1BEE835AA614695107A4CB67298C47886 9FE67FEFBEAD028894151095F8D728CBE7AA066B03518E2EF6A0180D050F04FB 12E9E7F3859A223303139EFA0CC71138FB807BD816B8D83AD3AF3B3F42B73F61 F95A647C354C384BA91BDB1F80B1D756FA5C13BC4AF763EECCA28D2627C81EBE A34C6BDD97B0F3514F9B1A0E3A30D2B07CABB15EB3EE9E3F530019F5C749D314 5CA78408F38325F93B97F5856445395F7C3D8B98AB1F11358F2CF97DD723ECB4 7D9BE2DFC6C0E44AB939F235A1CBC300015BB9DDDF9A0AC9B7EB1EADE2E947DB BEEA69328ADA6C95EECB9FE886ADF89287461853571EBB307395E2058B2478F4 703779C0516D8F56B021437EA62B26E57E6A023AEFBC3C263A0DE6F365BD527C 531072303C7E6230266C34FD2C0041839B11D2ECB7274E7C30CC584C8C591F5F C8950B9A2CC207711B3045796B08C8A43D7E580E8089D0B63E4EFD0F188F26A5 8EBF298E304C8C104E150950AAC8D6E2EC9F7926921FAD5ECEBC0FBA4E0862DE 4E1E1754BA60C7C98DEFCEB707F12CC44947007D3D645F586A132A3A7228B5AA 79081C76C88638543806730012023A16535D0FF1E28E1DED9989E3BED625BB7C E4C52162FD31C0540D5D73AA9EC196D29D39192BA969E221FF021DC69F379B3D 06357B828D205E2C4D37DE3B88FECF77B3D533CB93AC8FFC16E8E5822433D678 931FB87D23452D49ACB5680A3E7C3543D728413168441D4BFAAB9B7833A46023 D971EAC42B2339992915C854A53C62B68F867122956DE5272FBE60C742B6E5E7 C8821F723450B4579DAB198FAE97E500ACC86D78FD7248876ABF21B761B9E2A1 7380FED4EFD79B47D3E1A31A7FE648301DD9F7F4F58784DF0B54AFF457AB34C2 A493CCF0F735C1C9F3203E59348D53D65FBDB6E24B552DB3CF8509DF3930F641 E6FCDB4A9F970C1FA4CF1A0F4717338835895255A1E3737A588A5EFFB8FCE73D 7EB9C0908DFFA40F8723A9319A39548E8CA5533794F50F3B6AD6BA01D48A9929 65261FE523320846602F4FBF5B4375D70D8BDB9A559867CAD2D047A8680B83DB 0DD38FDFBACF3678E77CDAE128A19812625CC1CFA9BACE39E6CAFBE28098C380 17225012670F963056EBBB2748634B343C0677B09C0ED1D4B33DEA7F07B03E87 99E229A8364F326D8F80ED4A9095181FCBDE9BC4FA0104B28F9F8CE994F1B6F4 1316B3B768C81CF7C38BD55AC7820BE48F949730167DE7AB0B62365A9F5A4E0B 2ECFD6F04D3652B9C1BDA8176AF1146B91789BC2BE3664D906134D7723EA4EA5 6DEBE02A75EE93E24583B1217A61521946F7BB69C2371151D2D44E3888C50FC9 E49FA7705BD8800AE067630191AEBB2E78C4E3CFD62DE90683910856B7FA74C9 312EFBC58534DA5656239BBA9E102D33D2E76DD8D170350C83663EFA6D07C076 451AC8F5F034F69855DF60EC8A88BE7913502E562FB9B64FEDA4447AE1BF6F04 1F366A5FD382142BA4CBBC451B5470EF3D51B57EAF791499A140BB10FA70A06A E0B18701CCFCCFA2DCBF92BB59376D462F9D59FE114D3538880F32B7F4140E13 F386343F0C4074277153D61460AC6A392A0EE67F11C411D68E50C9CD2BC171E2 E4E73A231FA6311B3D0062FA73B5F5563C0357EE52FA4B5CAA9B5EFB20617661 9EEC6C742BEF43DB2CC2626A76D03FB70C959A24F269E1FE81AEBE54D4BFCB6F A56B6B8BDFD3E69788A32BA3072F373DD1AA6787704CB0F7EC710FEB08A82825 50859DD1DDE613BED2F9F0891F5533816ED8137CBB3D7EE93D723EBBB3EB841D A4EB010D20B870CC5C2C95E722E77C639B189CD44285870666494C2C00639F56 D91A6C2A45F4C45D7D904F1799EBC44720410E1A0E32F100FED8D696A7031FEF CF56C7774E4E568050487F1F78A86C968F82579D9EBEF42C500B23BA00A7099E 275C9BAD491D22755B542FEAC98C1B1C42EABA3A39C1C312767820D264438F67 1A65E314A633CF3E2FAD7F83DEADCF62117446FF4A4B099A183342916F8BF57F A3D0BF61D2DC3726FCDD3A4F7C723DAAAA40CA0D68460DC2D990B12C405FF111 4F5B07278ABC51A7DFE18ED1596AAE6208F189D8CBBB50AB6577E2A635205E16 F78C97714783DB67D467EDD804B062FA8463BCA130D5A0727BDA392C22FD94A2 25C674C3B4435BF4436432249C48347B7382CAFFCEF88BEDAA614435269DF406 B9D5011315265A9525B4919218D9B932F3043B3B2B4287F04F12DE69080CBB54 A11A3BF8D59EDA74DD90EAC521976C7882CD8571E764B4FC566E3E08B1E7A1C0 7F16BD8A1C1E4677415E9547DED46BC202BC1FEC8741D71E285B87F8C982EFD5 C201155719E4AC66CBDC95012913031421A36455AEEAD59F24134B2A78C93812 12B1826E250AB1987B31C6A20129A2EB557BC85FFCD1DD36C678B5F39388E7C4 1D4B7BD640ED5EFEFE063C9D91308850548BEC011A487B9DDD5E4F032CE0F094 D548572784220981B268A932922A79B9B8C16FBE12E6D7EA801EDAE92079407E 00312D7BACBEB5C45B62BE9532A4C81D39658A187E1EA1F4C16624A6AD1A56CE 5077F62EDEF7E3A07084B37731A237C746E6D89167EE41C278D2865055685107 CF73CE1A574A47AB40792DD4A970204B8498C154CA1CBC5A23F270D44742EB64 5A7A385B37BE67CC817019EA16BA310A19CC3AA2A5DCA5C010B76D985D4524A6 3643492A26A249FF85944150DAA4343B30D77D7639F4076350D43D7E33C677CC 8DDC7FC142D1D376E98C8E2AA0310287D51168F29612C4C421293E23C5F120E5 268BC1932C4F9DD29CBBCC08734EFE71678BCB5CDE4B5BCD8635F3009B631D3B C2F00A38CF023D09AF6A832A32C7E78F1FB9232FB9AA5FAC477BEB54561F25A4 BE1C23C41A6B1A8F49D4057050D846A50960E64246361DF2B1F829CAE8A81556 5DF1055F9DA935D01D8071914AC2A89223C7F14AD4C36512B62BDE4FB699BDD3 FBDC8628B9430467A2B79C4225F060419087B0CF614464F93AF3165A5366250F 72778A1C0BBEAEA0DB639FD61F5680B6A2903EA8FD9F056F77A68D10B2C7B4B7 C772FBE5D7E3DA169257F2B6F9E3A1F2ADACBC3A10E1A47E26A58B07101B541C E72012DEA2E1603BBC157C589791FD069E7EAD5EC41061B8034D22FF0EA7EA79 87139328F4D74C18721E4773F841DF72B3BD044A7FF1EAC934BFDAB2ACCD0395 B8635FF543B94CA4151C672719E68D1540047B466EDDA89D3FB44E2D75602F6A 639D9F99EF31C5B04299DB9F3B51A574DDB9346BFF5C978F81246026991D38CA 899CAC9A9E91BE864BAA95C082E6A89C7514FB6518341AAD562C3902A8EA5C9F 413CB578D6712BF142F643FCADEF165E7ADCA15AFEA3A330CEAAECD393DCC91A 75989E3B6D937101C344F859D53534B5CE55BBDE02C4DA5FD1B8350AA76A887A 875ACAF58CFB7B1E755FD2011FEAF1DFE43928AC8E01C09B272503DFBD21F115 2577A6C990FCFC9A42B020EFDA2E199613B0552B7765928F2EB3C4D7ED2B4D6E 978CB8E88E1DDF4E61A50F34CCACA8DCBCDBB2CB1C747F70071ECFA1F31C9656 22D28A21D48AA970CA6DB819810006C3037D4637E26B9760F7BB016EB4FE8125 0B9D841ECE3D5A3704D93F448663998DE3FC8EBFB76CDCB79454DEF45256CD3A 2D180C96F89882EAB95A97E5EE721959642B176298959B934141D00B6C7CF1A3 B1CB3A19E4BE96C990CF77832C665E6F0828867F3859879D83FF45FC5C4489C2 00A8FDF187E6723B23F760AFDFBA6A4830611C4755DCCCC43F8DECD983275642 1BF5B6230D3123380AAD3D3A8A9A60F67DDE88254A13CF536A93B326329A4EB7 BD5CBCFA582DAFF013E2A4F2A909A6DF1465F8C1DD7649C2222E0DE04BA3FF19 31A0D71EE85F748F964D6D57EE57DD800F105282409FF2E27A08B059AA17A4B4 E2D848EBF8C8FC23641E2B517710012ED40350615AEBC5C115D4777117440A73 C4BE0F4F6D73EF7B35140AD9BBFAFB43FCC0764D82E3AA81F25794DB6ECD7A3A 6B72ADBB483D979591D85D3002AF1B4956F3A7E083BE9D6ACFDF409852500ECD 886D3C4E51169ECECE6297959B78B813586F2075701F256137C9F92399F3E5B1 82FF6E10B5C4CE5078FA4A71841D9C3C01AD81A4F9D80969AD249DDF63FD9505 6B152B2AF6D4CFFAE20C111756204BD7BBDDA81A9E3BF3024D31C90D1CBB4B7B BF83B8C033868615017CFDF7B2FB2DA13A7D65834652CF604DBF9412366D4823 36486DEB84980FD65C2875281D0AFDFA70EE5011118D1CEFC78FC4D4AE20AD45 AE7E74346B8897BD97630888CDAB0461B781997541F1C74E240623B1A7FB26FB C4FE22401B8A4A6239B10D9E897191D185270FC4F2DC7ED13E73F9B0A1F3F0D4 31C739380EDC495827B4E81D7DCCF8BE6D384ABAEB6447B65FF319284F0DAA6F 5ED58695628330CE770F62CA16248B1E0FB657214115DC760182CF062D97CA40 BC683C923DF12BF39E725FAC6411359FD71DFB26E8FBDBECA81E03CDAA5FEC26 07A5A8F6C925582E6C516FEA20488E24CD42A5DFD29DA96E6C9A12EC451D18DD 9464DFE4FD5AB577FC667905D9BF08C7083850C3B3EC67DB8CAA3695DF32C256 D54ED4483A53AD3AD376590BD1BEC8C5AD3E253B3EC721F4A71CAA6C906742D0 AB1A043660F7679433F7354CF1A36E59B40ADFF929F87B03B951D1393F50387A B3E7185DD68CEE7C232EF44B747356D3C81D0A018CA61E48EFCDA4EFC203AEA2 838B2885F7B626512C631538384A58C478AFCD28F4FEA7FE149D850182A270B8 D899D8CF3730998BD517CA64AB0A9E40956D4755D455F5A56BE4DE02EBC29B49 7B800445211A9150A9D09F8C285D67876F5C5925E12BF01A464049BC6BE89F5D 807E9BE5B8EEC3E1EAC7CB602C673D0E2C64F79BAC2E963EFBEEDC5E1C6710DA 290407E7C4B81E3B8BA1D40245A1081FD81E2DEFD90944A67EADAF922C269175 99CFC6962F9409D9BCF1CB785CFC2B59B8E059CD2A184FAEF63A7E4708F82785 E75B8EADD1C81D68908B09B9FE30E8EDA5AC37E2257D5C689B1AD942FFC30273 2327B6A7A6F92B6BA207979CE10AEFA56075103807D6BDBE7397A64E9569C36C CC6AD742DC9D5E935A8E28101A68DA4AB6224BA4544DB47247A30F98B50D7211 229703CBF5410F964A91FDA6DD4B0A603361C3EE0B65911A79DD7935BDE86032 44A74B051ED27B31FBE4B501E20076AD67B32A6908D7614CA95B06DD64B01C93 14D813CE0EDD0F2FDBCFB731995201F07483A8C5ED79C56CFFA3BA2EB734689B D0BA4DFE2F46E9325A9E7B6EE2FCA7825AF486E0A4606D4A1E6B8C8439AE7AE2 347BD7656CC4F48DF8EE3074C98C3777E037E8E26C6369008778C331A0601077 14EB598297507B9F2ED2BDC03C3E29EECADF0F5FFA1225DC5F27CD8EB7D7199E F496EAC3998FC12515E0E75A7952C6BB951C8E782145F445E917B19413C1F702 AD9E0180E4941769351F4DED721C0089ADD66BAF9417F5CBD78BB53F12F14CD4 71BC0BEDD7FDE799A9306D0885FCD40BF15DE837EAB5A40EBB52CB6B4ED299DB B12A2D1818F135706AE013BE70F3A60057B5A82D661ABAF018DFBDFE65AA8E47 AC6C8A798D2F3C772C0BCDEF0A9CFB8BC638AA64F95D41715353D25B2143B4D3 7BF3852091153F5732DEFAB4D4BE6199E13D1D9258142FAA82F3EA57CDE218C1 41CBC59F5951625C556F6D38557082F300E341B0EF1AF38FBEC6BBF6EBD87FF5 921FF53B6C78217355B9C1C17216DD5541FCD35123EA68D57904FB1BD7B9A7E7 3BDC01113118854E5FD8E88712E1C916ADCB543B264D9573D2E96376A03250D5 700A0CBDC1143FB85B69CD3455E5CAFD7AAF3D2A2154E2E19E9CC8C233AE6E94 53A24290D61A03F7CD038D15317FDE765000BCE92199B728DF17AE8D540705FC 237F527B4EE8EFA5A870BBC588090A087B108FB0ACFB705103D027DD942D8F7E CA2293C9C50DC0CDC960139CC4D6384A6BBAAED1D50EC10A261F22EBAFEB2876 76BFE0D228A14D6DB2524801192D1F0EF49BFAE7667188B4827008D05406539A 1AFE0979DE52C462D998F769FBF62A45552C6CF1B30059B26F3336DF19093DC8 2C75A5A9022EA3A6A35C35965A96C673FBFEFEBC0EF188EA9B3B31036CA56634 F7F89E88C7611B6007BCEE35E423B73A63028078FFA84E73490DF2F564423647 8ED87859266AE96C56883B6AFA0A46AF1BE64F7A07F9B9A8A69BB47B83E904A3 A6DB8B582311AA9C2A787CBAC2EB5823F6DA66D4CCF5B5016D179BB50D691517 130D77A7C3205F27D4A15DDB0D2062C486B59C70D0969CA5F00687A0886CADBB CC06B136064F97A43BEC08811EA53CA13F190FC6F8F07FC498BFE128EBE6881F 1A4913BD395DD85B683FC2A4290C2EA20125ECA194846444811B0F530D16B29A 6CC24D9A7F3BD5888CEF45FB9BA8598B3F5032ECF39E2A1A3CBE122F100C72C5 071FC086C9739482C8A19195D2CA3D041EC36C93FEFA520E94E01037567F0A57 4CF1102DCBF9670740C273E2CCDA3553E267EF8ECBF31F1FAC3B1ED824DA935E 9E52E9586ABBE45F3B5A6409C5E779B6A0768AD6323E76606F20F40F401AE6CD 44F2F88CE5DE95B9CA1711A877EE203769B566E263AFD6360F1312A0AB9CB6AF 2546F112C20A703A01AB255739647E46451EFF522204A0CE985A609083F52A1A 9ABD0B01910B4FA3E4FE3A060791E1986BEF81F9150C2AEB6391AE1F09F1D94D 9BEA9ECB59E7E9B116128DE2205D27D2EDDF96FB50F3E1CB742CED4FDAC545E4 9F5B5BE0A88FE7B227332D171E14DDF89EC0BCECA370EFA73C40EBB1A20FAE8C C1B7EAE158B5BE22AA16F12952628B2FE8F086ACBC5F778A18E7B67963975550 735D4CB5ACA7279379D2381BC97D1F2613F79C32742750006973C036BE035C5A BA17EA7BDB9A8F098B733DBC954574927A16961C2B7DF2D0ECBCF742FFD781DA 3E0A3A1278178426F4592799264BAFDF16CB96EA4D1ABA4D806C9D264095EF6D 1067FDF90690EFCF0146A1E143798F104534FF17AD762F0355DC69F821234018 A042CDF7D7379DC718E0865FAA8B0C757D0A19498CEA30513FA12003629455AF B115BC2DBAC68D4937314FE10CBBB96AF8B3F4CB26CFDBA604A7865584AC0763 BDA317AFC9906AD0B8DCC5A6A88A0B1ED4C6CBDF5F2BB5A5037C1999CCCF507D AD3F6E4ACDEA803B4104BD05889027E00B027715C1FFD9DE303C2758CC38AA7E 9CC9AEF43DC69027ACE2AC9CB078FE8290FA53D3F6A2AB73EA241E7A53806998 8ECC1327E41B13C1F5F79A1C963EB00EBAAC27D716206FE780323CA86495C3CD 7EDE7B2A5753E0FD0E0B62960AA8CFEB2823BE0371EBAB60C6FE9F279133E88B 2F2DC40BB446D7C3E955243C55956B7AA576879BE1EC0F2230796408D654A069 A93FC77990E9C0D437535FCEB32D61DAD9EFAC776FF20A7110E1F3B3C4D89AC9 759C25536A1604BBC08D52CD8B893A50C0490691960F833E421739B7BF232BE8 2C53D766D04FF056E6AAFACA416D25696ED97D10175CD63BAAE9510FD1CCD8BD 06A32D6CA296C24AF84692D043E5515C5C261D8C49306AABF81A6D6977EBE74C 51A79CA47EC3017088019301ACAAB074AC3870BBCF2F7A24760CBD344753DB5D 83C3CAB511E2BE890C2EF39DE85FD5778B70C0CCFB18A7717C794488B1D8D1BD 1B23DA8388227ADCF12A251D7202928644FB9F97A97A48CEC170393E8B261E26 99635A086A8BDE8DFFF1AB3E25F1A6AC7DFB45723AEC5A0DED5769F9AC15A4FF A951E7D42EB97247257479E3DEE9E695C3D544785B5C1E6BD0B5F4D1619BA7A1 623A55DAFC29AA4502274386B438F23EF0A56561EC3DFA3F85A1011338B2E5AE 40F075D94A3EF78CE49D514A237A459E4BEAE702222377581FE3A5A6EA51E701 CDF405444E9CAAB052DEE3E7834DAC8988EC4558E03CD0D9935DAE536CD28ABD 8BF2392B102D2DA4FC0D219DCC8AFCBEFFD823B324C539E5E8B76E006D596C46 BD79ED7547ED1DA6E352FE2221170EA158E6717C745BF178252CFE4C75801C86 95074789408C86526E3E872D606DCB4E37B035482471101D8F75CF415BB55E2B AD747464B5FDF829AAEE09A6823BAE96F66B1452FD4C25A88934F12F448177AD 135818B74EFD6F812A11CD02561938195F7126DDB92455434EB548A5E1B28511 DC14E3A398F9D8C08F23B2F89370594F0E6544DA432B9FB693F1265AD432CE20 8123E5AAE03AC7D2C9D6C129B0C3B39CD79F035754854C2ED206791498E26C52 79BC4C326BA7053582745DA47D6F8231CEADA2547CBDB6BCC2A0858758D65522 8180BFA16671793B335DC33670B4C7C99BAB013CEB0913B1AA5D0288ED9D527D FBF2D7F780292D4EEA768D04580A1BF6D292FC886D00009EA6CEDF31D2D22E89 4382CA2F0FB37686D30898A9EB923F0A181AC58A4A519DA05A5F8C7151F38709 0831D20D980FCB1B760C636CA2AF619E226DBC0A68741B659D52635E0D1DCE57 165B0E2ECE8F37B58AFCB15CEF1E23E0E71CEB8AFB3B5E1A59C886486FAAA210 71B222001AEE2CE52CA68FC3E8ECD1F4692015206665088B3E52E6C33E31590F 17A4E0FCD13A761752BF155A22AA0E1ED55B70BC00793756AAD810A10CA9C4AC A3804A9C4D27F10EF567F9592731C95E7AAB6F6CFF2E9413036CC9400E00442E 05EDD9B298BFAD4834737E37910B74063BB1E3D5B0CB4CC774FAFECCAD9ACBEF EAC03D8EF0141885A587B64C83660E0AC8D9B2BE4BB8FDDE306A625DAAC314B7 B9C359AA51715B2B0DFA7D7F671B1C5EC2B1BB5624D72B7AC0483F7F2837FF52 2899193863B63E78A39D926940FC71F00FAEFF9751C0CF42A834F186D3549393 7A052E9CE214054A6889AC95AC408032D305B1CD6C89083763722860F875F4FF 640556DB2E770A449647988FDBA00083BEE2303682B28C8C7BC163777EB51A97 A20A3F99A01D5B6F2C183048B5DD93A8D445C5DFD41C909B49D23BE41A60F01C 1D6E704C8C5F9D783C224B70E56009569C54D5F64423D3BFF8DAC962FC050128 965B9870AC96D51CA8420FA8420FD88F6C7B963822BB292F2B00297C40507A70 2A32271F34B164F772763415FADDBE6ACF6EF3E791E69EB0557AE5693DB0A20B 1DD6536F9D74BCF1C0265A4A88C31106E169732563B2EC5AAB3C0768AE2DBFA6 4B2C5F7DC339B4BDBE3704DC48633BDBEA8AB3195E9C4677088C47F074D28ED9 4ED5F03A635888050524C82BAF1087764A217B1E9585C6C38E41A7A26B355130 9CD809919F9976192C46D2581F984E71B6BE7E626202B45B414A97BB4963E609 DAA06B99E772BA4C6FA7DCFBB5E2AE2E8E02358DDDA48EDD8B46AD558C1E98FA D23EFAA66E98B1C49C08BE57FAF9DF8F246DCF7FF9DF21C48DADCE837A503D55 BA201BDEEB84553DCE5A0C3E2EF0BED804315BB664EC9B8459E09A203AB28903 9850DB3898EF211CB25C20ADD50EF5439DD13CBFD14000B15424054E0C2147CD 02098784127BB9411E4C96D30C16706DBA484D3C2AEE11D693ABD7079EAD3AB1 61EED1BDB6CB6FF66B9FF26D4BD79AFBA78FBC53E7F6AA1E103155B980EEAB9C ABFAF83A91206CC20932DC36910AD39DEB52E5C0539DC99C056A287AE661B13B 1A2DDE0AEEE340A727006033BC6636C743D310130EDF6383747CFEAF9BEF1D60 8E851A71F212CB203175FC6A58EFF38A833D588A1AE6457E269045C40E432127 ACA54E03232ADBE5FF45C23E025665F43DF522F20E776163C6B7D069B0EA8D46 FBE3A12ABCD9F5C249299B57ADEB9B9AB1444F42837B39B1BC6C4026F788CD51 93E52D681F719ED741C7C9FFE946F665494F17C17501988A509EC377AEB8C87F 8BB6348134BF9806C11669EC6A43DC9B8FD334416DB537D1AC9311E69417CFBC 1565476D77E4C3A1C96FDF49E1F6D62302B571A6FC3037DB9C2ADA5CFF15A110 83FEFFFC074621E9ABB9C62CC3969B6C0864C41B757F23E189788F0A0BE16026 D1187D48AA190E42BA6ADF00B80E44AB5512DDD195C376CBE0825343DCA082CC 411E26E3A71EFB7BCFA1B43BCE6F86720E7A0D2A60DA0ECBC4C3A0BF5FE07553 16EF96247BD1BEDDF29ADEFFFB4B355ACE88CC5D4A37E7D7817B98B2B1E4A524 C54434CCC39C7A5869BDE8C5D9E3098CA1B65AC57C9D81D1EAF711423A9FB92E C20F18C80E22E7731C56F60703C6604EDDEF15F234A46F8659C724595980259D 35AA0847B7E96F0D3B3F4D9D1A82E8742CDD1FA2058770AAC4DDA727C506C700 9A9F93144600628C46B6E5904B7CA98D21F4E08E6804D920AAF68293C4F0666B 1742FA95AA85FBA95037D9FF7E65F6B503D22180437AAEBF65FA8901C1903EC3 896B213EA46EF7B5541B74F72EFD07C752BFFD26B8746019D131ED8B94E23794 A5973768AA9FB961394105930FDE07BF0D08218CB985079BA634D8029FE54CE3 F758E2C8841D7E2D1D8DED3D2D69E437597B28CA971E8161949BF5B71BC1EC15 910426E7C2855DC776AE87C7482DCDFB994608C0189B7E24E2F16269068812BB 6F1E98EE8DF82468763810DAD7CE08EB0896F7D5342BDE3609522A4D6670016E A837BAFE7CA0E712D9C68580B5A30E544C25A956EBA242C73DCC40209CC0E557 D16ECE17D18FEAD279B4143B5F3C69F7F5087D5CCCC6387CE3745FE9FA4FBF24 A239EE87218BD2933BF6FDCEE282EEB8C709303B35D6A8D9279917E28FFE2CB7 7F7843C0D4BC1A5A85818F3417B85B416A3EB78C00CB196CA920155690D58079 33290BE8EF54AC6653D30FAA959DAE3D153426163119BBE5F4D6636AF877D304 4E74FE984B62E07CD1BEEBF56A26B5B2CFD7E622EC2211DB6368086807F8CEF2 259FE58C1AD88A982DA8CC8E3656769F2BEDC9B1A1A26985BC3F4AF421DCA42B 2F70334F378D6ED76EDDB59B3B754EBCFB8B35FA47E9DF5CB209BE0518F9E6C7 22A2A537A3209892448DF436370F0E5DC5E50EC7691C720B26B5027C2FD0DCF6 BC303E8D72FAC731E2EDC1E2A70C0E51CA0103E7F97727583E65ED760FD724F9 D318F10A6F16A98574ED667E810224241CE1E674C20EB3DAF738ED6BBD6360F5 2BE448328D5279BC25C35F2509B2B77BEAADEB4C8F915C73888C953D40417510 684D630CC51822F84466E3BD89BBE49D4F01D3A8AB9FA1A4A0095A76E95D6D1C 222FA4123029FC4CF44F1E0BBDC820272D681B7540CB096976F01DB1F8F42B59 1954DFEF62F91CF5D72849B987118BA52928C213EAC75A50B61A7C1BE41B1AB0 0EC9DE839CB0657A17D9B40BFB7D1A9E101C359E27168A641AC1821760EDE5B3 53BC6D9643E68F49F87B75AFF41236A9F59F9929BC6BFBD4344A325F5C6929F4 B1B977F84ECFAD8F885A3D4CA3C8DA38536BB5B76ACBBDA57F882F372EC4220E 1DE5276AB135BC50ACFE5080E281D2243CBCAB5465F18682B09942C56456A432 7E6C3BFB691FAD4BD032FA4CEF24C1B06CB560AD996AD5C9DD766FD65D3A9C10 534B84AF27525C7BB98302D952A4469A17F850AA95AC91962AED0C8FD8632BBF 73D29C76285F9733EC29D5B6C7455ABC96BE7F4A3056364A329158F29A1B69DF AF0BEF221497937A09FAB0C4870C8EFA15303E8DF5B1451805AA50172FB1A797 02EA9CAE6D6EF65020201A5A0DF800F80C02FF591D1BC9A4E504BA01F48CDE72 EC8D0FF70B703E749B60A1589B1D80F9E71E8CDA61E7580C12F7F1410353FC3D 0B1604AC55094DD12433E043D958B66E72B718697A209BEAC588407D4F89430C DF029CC69D52297D801E441FAD734ED519FB78BBF223A60624740CD10AAB1C38 56534B7525561DD7776393CF031A5B71344809979D150E08BBEBADC84A7E0036 870490909D120C9614974B2A06D30ACAB28BF9F812889932DEDD470BF2D1874A 106489BE6CE558BCEAB2B0685EE12F7F8099854ACACC27738BEDC39F1034B1DD 08B9D6A0EFE43CE60FB97E9B4C0A2DC5B9B61944ECCBEEA72915C03FD7E467CB FCB568DD452C729492D0ADB06452F78E8F619A6D4BE8FAC82B3F3BF301830D6D 2773D4E95DA7FD8C38D69AC9BDE1A779AB5B170120F4B8BCAE745FF4F56266B6 ED9D14509CBD0CC4DF264613B1B021E8029CC0D22F06074E174B635C4C0DD15B 1C2BB2B53CDE374E4E6520D38D8664E9EF753B1E4D7244E071912547E0275504 C0266420D5F18027CABF3061B054AE9127C7D13007B03C0A4FF7D71ACB26D732 FD54BD1227C94BB259D8AC8B246F666D3452BC92CF4264664A28C6A744C13AA5 11BC7801E7956F4E5113500AA535BD7B5225EB693E8A0A8FA7038F789035EAA7 B5E227C1CB68C3A4AFBB516DABB82592D5FEB58529BED646E3A0E8C0BAFD87EB CEF8B46FB294B2EBF7720628A3711AF55CDBE85C92A7B0AB3F1820D6568B0FDD DDFC91A440CADBC88ED53DA9E7C408BFBF59CC87853203E3FF707C55BB314805 C0E9695DAE783943C37CCC94C7387974A5C88F1B9FE40CCDC5535A48DA86CBF6 A6A155F451AA39CDF4C010C66ED11E3F4AC9FF5F78721512E8757B77A301400E 6FDEF7FF640B85EB573BE8D3CF834E45B944B22A01DF1F657DBB58A071584A08 D6943D1E1A712EB23E749BD181C8FDE4C27CA25B9EEFC1BEDE9E99062D83C20B 8CEF0E7E7A7D40983B8C09871B41CA0B3D414E6B503DFEEBEAFB224D1F129914 67889FBE3BA7C43423D2851045E70369EF98E0FAA1DAD562894C6C93D76B3A20 B73E4C54E735613973E6E19700ACFF7ECBBDC340EAD2AF295A2F070AC4433E32 5678B6F710C5545BF2721D3FF8A895F05F7F5D8BA3FA244CCF3EE68544098667 EF8DCCFA2BE9DE5342D1FEBB4F074A1DAC4CA2DBC82EF2B85E7C1C3E750AFCCA 1FC22A49350D891C052F46D2C04C50BA7260B0B975C0996820BF66F9DD100B26 1BF9CAA3DAC323CBE5BD11B75020AD3932499ACE1C5350EFEEACD5334252EAF8 04B2A70F1027AF7D0CADC3AECD739C9CA5653426CE0104D5A1D5D5893EE0B068 D5F6AC8F6413214052045D650997D30927FC5283F35F6ABCB5BC05D92A241271 52E1293BD8720727D530A4B368DF0AC5529CD334BADB1F8677D25593AA974489 2F9F548874FECC35FC83814651A33BF12C79C53A35108C45AD8B0C1B1EE0333A 61F52F2FD2367D066F3CCB15595B21031EE2C1AA1A76E103978447A34E977FD9 664B7470201E0B68B4206CF910FB57A357DC43923B0D7E29E7B4B2245097D593 DCCD25A270E762567ED47BF94B6301D7A996B13CB258872DF5302FDF7F0E7BEE 0BFAB7FB65F0DB0503FBD7C66371305DCF168797BE81DECAC68FF3942C9ED677 427BC47B7AB628A989B8BE079A81B2CA513D69944B03A21C59E99D1B38E65AFF 392A9E10AE8C6094EFCCA5B4D2CAAACF88B6DD46420FE2858794BAB331A31466 28D371C206865FE867912F5A7249AB90095B075A2184D676A5C7E257A581F693 FDD8B34A77CA78F06B674E06E3C4596AE9DBE770A51A2FC5D50DE3744F858F63 2A810996C917F1DAC470CA7B462684908FA48884514D67ED5BDC043CD53021D5 9C701A1D62D9791506430BB45CF1362B4E8364A43E7E59EF5F44F78CFF4C2ABC 00CAD79E6C2A9ED58156E27D74959BBBD262EB44271651D95FADCC6993C4F789 008648C1282411014B9F1EB5EA7F0880A80B3B24860073C2EBFEF40CD1AA93C4 154CA5BD37CDCCABE50C7EB3E5933124E2B3B5451226CCC20EB0611F509CA7F5 5B2783812F6F4C1F9119485933D8E441B9CD7B18C88E193114613F1B55BBD2EA 3083766C3123D53F2A968F4E0F4D48D31C3B9DAE4FBCB8CA79C5B53EFA185F2A 12E74835F5DE5CBCF32353991DCAFE8A45336264D7C1DC55EC1249FE846B9998 2E47E6D855E6C56E18CBBC60B84B0AB44A4028CF9AB16F03740EB584E81491AB 00845F21486A1F903378CBABB122FB199E33C89DAFA54F3AD43EB6A4A3B9759D 454E8E3C14FADB4DEC10C64810D3427F1EB144E47A429C8350A99391C82BB82F 29BA08A51D727FF0FC6E7D0823A4ADB2B40D00A96F00FA7CA1D5C8ABB86B3F25 5CA86D9C55020908DC2C8371F5BA6D999338C7C9E06B28FC1B1B3E5FEF3AF0AF FF412A76E841CCE583CAB8B89C0ABFC585D365B7D071E6E35E40002A0F654689 BD1D5647A800FC5AD97C20F84E9A608F9BB348EE0D3E9A542B4262BF1F424558 D3E455268D042F048B4760A6C2E6BB9A783C849787F9F02B98C356C1BAD94634 2485F033A0CA885570C419818C8203CAB7B9FA6290F8A62EF9033713D1257064 0E305EE5170A4DE71CAD89EE2C0BA62E9E69A9870DE74CF52D0DEAD65DE2A291 2282FAFEEBC0B936E91595F7C6E0BBD33E79FEB2ECBE04891F1071D631B3C9EC 6305879468CBCA461AF927A3561AE15A463B24461B9960474005F98892057048 6419A27D3A51461C9BB9A0E8E621ED1F536937FD0BFCA77A3C33C35E11F3C367 554833F4252C036D579F32DDCD7F4081B4BA73AF51A2488EFD7877D917B2D4D9 C239AB6DF1638C9BD14BFC9964A0C65963F6B79D40CA9E44A301F437B8E03B73 0A52683FAA4CB2620D7426916F89BF72052DCC7E24509A893B715C4515E740F4 55EC935779A22EEF3207C657A6833F73F04206D147F5E427B0414D8F6F3DDCCD BC895E1FDCD3A7E76D4B21669D5C4C5113959CC62F0B7023F58D771229C2A3A4 00FA0B6760C8B77E356410A854B23C9BE8F4BAB75482495E621F83045452DD46 B5F299871544E4E922780FCF0BB6DB666B9EDBCA62703ABD4F3CC69E15728DBB 6C2DF999717533FF7F98ED6934826FC7569A4020DE4B06147865178D420E8CBF FACACBDA128C17B635329AD9995E6E2033E6CC702D5CEF1F0DE1F25322BF58FD 9041EE0D904200FE87E2D5A672FF0B3C63575D5F7E07F01202FCB8C42EDD0296 6E657B5D703AF68D26FCA74FBC8076ADBA7F5A4BC58C10D91FCBCB628AA9F313 71CD61BBAE0B6A6C7B774DE4903676BB3D210F220B413F0B95F43121741523F2 F65DBBC09B04BE87A030C607A545A9D5791FE4FD8F479BB213662ECA9103027C 01D85141DC897832816392AA1F49056AAE3EFAB417AEA3C79E49E68EE9CBE8B5 717FB5C3C5E811F51BA685A178DA6DC3DAD589ABB4F8A0A27A5DDCBBB11A5E76 94B6320110123C630857538E620AF88BD8ED5B5B8A10F1F28A15BE1ADB196F40 CB04E8A50ED5322AEC3CBF8881D32160209E8FB6F7ECFA70AC58F94CE3810BE5 8597D5657E39AB15B3E35DDD508F74069DCFBF0CC70A6399C3AF7B04D4975FA9 31698D10B8E9CEB89DFDEC2989C37FDD417360F39FC6802EEE5E3CFE7DF63361 758BF4861385D4931323EF38E7348EB98633C83EF9BF627A29219E9F75A1D341 5C8091A908ACCCFC01395AD91DDB82EB58BD88D5387994A74F35BA04265BC32C 4DF225782658BDAF63E8EC8B5B4DB6CEA66F83961D5B41C8FB62CEBA3DBEDC69 B6DAF5BC4B541FDCA54825918B9C84E7122D9718D28BF9E9066C8B122072225A 1B79B4A73C235DF52511CCC1E0A3420B35A5598230CBF3C6EBF09AEB6265B481 304D9325DC8AB8F6853D4111D42724C558761991E953F114019169BD632E6639 037344F1B767B0DAB524847DCAE3C5CAEB864973F3A3FFC06312A7753F571888 957ED07CAD5EDC9D04497FCB48446F6C44C6083BE9A31821BFAF1046F89985DA 009025D4AA91058EA366244ED8E64601B374DE230A90463AE4E57D5D995BDC18 F621E2B31F79439BF5A4984BB6A02833ADFDF4AC0DD58F53BADEF74BB1D4AB88 90AC403AEB53313D51303384053A941B0AA32C3868582180868D7B6822533E61 A4C1E26794A2D9F505EA75EA790BA944FCF61B5314DB14FBBB6252495103C7CB 8E355F9193D5ABC556F3E4D5B6CD2B8FCE08570B3B69075E241E06CD9AB790B5 948176080294D56000A0B7ED21D906169D052EFC220767178ABE60759E148036 388530AFD262244BFDCC980D432DF470C4243BE84EAE322C4D8EED4C2242F490 93639E49E5548FAE9DBAA2826176756D46BE3449E33E8C1F4CEB4720D0667DC4 EF9D390416E580ECB81029054635C6DB6D8A1B7B964CCE4B15B632416804C805 0BBB666A4AA5038D4ADBA00ECF22EB59FE9E6E4F801CDAFE3E35C44EB6C098D8 093AF18BF4FAFBC3CF7562B90029D395D58383E75039003351E35057489BB5A1 6AEBC03506289C918E6AFEF280E437299C2ACA7E6D5D52AA3EA2509A1758EA51 637645F7CE54EE87093AE38B8FBCAAAEAA2452AC65FE2C68235840BE62B91742 96AFCBCF4AA8300FDAACB55FAB27B2B29C488628347E9262464EEBC8D13855F4 56D9775DB23F069E9CF9C84813F0CFF1391D72DB08B0C9A3FE409D8D08C00562 DAEC5022E11EEF099724E648BDD73DEFF8E1FFBB3F80042554CB0C03158793D8 CEBB320F8E0A86CC95E5860355F00DBB146380CD6BA35F93F5B8FBAA54280262 31CB7998DA8B43473EE8D1895D5D85ADB6E5C8D2B5109E57DE3697F541C7B27D 12650F96FC01E3D56F457FFDC3BC2668F8E6FFE82B94D81A648046D7CC71C4F7 E218F5D5D9F899E5A3A33EEF7EE7C8CBDC9F239BD2C12612519ED9D4E89CA4CF 348C0EA704B46E56FD9EEE336494CF103C93CDADA00AC0CB74DCCBF4737A481A F330C6969D9925BB1CAAFF8A2D857245B8E4C82A7915D97F7466501EE7195D8D C35D2B5DFAF50C78686CD5F5717ADC8047B7877FB15E84961F372D03C0679375 88E4A9A5D2492D28D55FB00ED000E2B8DCF24AB3EB4519CDF68E3FF98B54A1E8 E4DF661329FC27BDFD47BE63E85A469191E476D0406774727EE99EEE6C2A1C0A EDCE20F13FD1838EDF3C1E5FD764723276ED5D853E609B0800197BD8E59C1265 4092D1D76BF60B1FB675B25344D65C0F79C3064CB634970B5ED680EA710FF884 8078F9E050655644617690A3EA66AF2D9AB40D187B46E22E72001E2A9D3541C3 5BECA48A812700501568565A8D37A2159A51A89BC59D4ECA20F3328CF48838F2 B6BB50D0DFF3039160FE2E278D178B673361A3D412BF3ED1554540F1F0A9A1F5 67C7C4B257B97C6BD1FAC85ABC9E86B175DBA1FD0E9BB7C0DED0D47956AF2389 64EB6C4CBB3A03A8DA5AEEEA4422F432EEE66860BECFF5BC5752147BBE75D0D4 BED50695E88D2E9F01FDE0FFB409CCA801EB16F6471181E62EE70AE4AE06B9CE 91079CB5ED83BD82A88C835CA82612A4431EB7979FCF8A7D1ECED31CBD1A2C3F A586804D66B8A86997A05D349FC01A2796F1892A42979F50B0DB1175B42EFC58 0B1D3CB8DC992ECF5BA9A6DBD1756C20DBEA6948499F0D245F2CD8D121A8F916 C0D41F5FD5414C12EA4FFC688344F7EEA2DA6BF2795D4D479851DC004555E3D6 0AAB1969509FFEE0390AEAA3D631B78EED9370B286B5D2F871EAC4F14FC32B7E 5571510C3C9BE1467125B7EB3C9E161B0254213733C6992062A63C6904575107 3395A27167787044056BF09BA5BB742AEC0D7546E9D092D2F66D3BF9564F838E FAB5EBFE6FE458D8FB9BE05800AFFF6924270F06FA0DB61E48F36417F2B84ED6 27076B8B6EC6F7DECD29DED0DEB9D51DE150938B7E94D09D19F28E3608DE37BA FEA6BBB3BA06C13F39BFB5268D4BA8D8009E41D5DD8F5C0171FE2859A78C8F16 8A98E12F32F867DBFB07EB5404B6092C7B04BC47118E3B3FB66F981FF9642C15 A4A63362DD5D20EC4EBF415D79626385EF9D7ED7B18A41A4C33F3C70553B31A7 01EC23459FAC1A5B9D320B962D966C43887CF3BEF40D2DC83E843E51C9870C2F 43CB49080C3C477358867A4FE87FB6E9F79C7C7D573B0D65F155B2656F4D33E7 0C6049E8C46513CC500CC600D7EE5D30D32B9324C89AA10A9D676EAD04C9728F 4A4CEF9925A294F26E6AC63730B4520C43BA5AB4EDD6441DBC3F2B4EF8FC4AFB 1ACA19E714C1CBC4AD114FD0744F84C85F4F3293BBD036EBD4CC29B3B9609F46 E856F37EC8E33396C89DDEBC43C0A78A3FA67A155E1DCF82148893C418531769 CB82B1B6357335742E7F712A182C413E8D8192BE6584A907969A48EEBBE5C0F7 95C7219652F28F3306DE1F83315BFF09D66E3C31CDAB730DABB8ABC1A33C2BCF 046D3FC7E0084877999B7D2A8AA3880006B9D63BFA9F82F26AF0B93372E55EF1 DBF53C7494E42794097DF15DDBF43180CD643589E2F3A40AF0A1A0D7EAC3373A B94B1C375A45DF21509C3D094F230B8EF207F4D7EE1B6096FA047D0AEB83D12F E3AE9ECBDF2C24F3D553DEFFC93ECC63A2479AC22A209FAE85E34D7A6855C386 C611D60159CBE8A9595DB541849FEDDA99DB09BEEE9499A6CCEE6A0BDB150B11 6DF9A795156BF845FB89ECD6939D6EBC8615D8FC47911BB34107E71FB3E4507D 215C1A8476E75BDD1B3D87321852AB6A94D21027D35A2199F25DE7F7BDC4C865 98DD84C89BA03D5498AA3AD62135F0B1390613421D52E2869B87579EA5AEE7BE 6804CDF29BC99A9F7355ABC9E42D21E706B97091AB73D3CB9184013C6D8980B4 CD5C8D5D13973F342E8FB4467260B23340BF1254E3D9195B1D6AA566976C0CB3 62B492B2C8D4EC481C5756496FC54DD7A6EF6A209F1E15FE2C3F57821E9E19AD 0A563DD390A89A6722513345EF58F98D65450541A0C5C093E69D749E0759FB1C DFCA7A4782EDBC030B9D692B3EB1003487863549585E94245D9ED36D5576245E C189F5E31A033C68BD21D5A477B756ABBD830CEA8D7F0FC73F93352CF95D584C 2593F7389DFFED1A40E6B14BBDEBC5368FE10962FF7A8938227FE9C44AF54602 3EE2AA0B6D7B4044F906480199E49B3F2AC6ADEAD76C88DC8D22A417C8A4BCEA D0812F1F513068E700040A9F3B6678B1F51A48592437C79E2BEA709B92669764 8A058E234468B01F498B5A51E2021BFDC09784C706024DACCA6EC0DF8F9039B9 02EDE264D7BF8381A66751F4B9FC4734CF608898828B5CC3483C688132FF61EC E7BA899F45C3530ABDAD48A5B5930DA1BE15ACDA0522A33E87127C559F551896 40348DF2CA4651C51475B1B611957E11D787F05CA436BBF1655999F1DBE03AF2 3C83746EF137EE71ACA97CFA6969D1CE5ACBF61900A452D630011FC3E85FE0FF AB5AFB57483E7ED55221A7735E5F89CB4EC92D5A8C9CD73FFEF46D62F8DE207F D4DBAD9EEE001DDF0750125FBC59A5E13A921955C6D7CCB1CF8F89F3E00F7B12 5D358163ECD0CF38A118064862EA04B50B6AC7B95D531C2065BF2CDBBCE887F1 70650E0772EE5AE10AD67FF178EB51F8AFA0CB0213BBF9757976621EE0058B0C 3AF602DBCC7ABFF5F467B7854904BD7F7E89BD19EEF9A2F7B8E557283AC672B2 92BD96D87365C681463A6FDF56DADFE485E1B81A7766EDFDAE58F92E33CB12AF EABC9D80CF4514D8BEBDC6433B990B0AB267D378438D738025AD340FD602C441 A5A4C63510DED267FEFBF9787BABFDB79804F56C89A602470AFC0E541B46666A 1C167AB82E06BFA1814E22B65355F40813BCA02BFECC086C7E8FCBD845191C28 7FA8F4BE3F1B4057D192AF55AAE787B0C654468600ECE8A763BF3B5A7324F7F5 62F7F596204F0A50A5A7E1911418C00849DF24E00AADFBBEBB6D10180E9B5FC7 BF839E08691661836B5DE3E5041DA4D3B4A458E270B274C82EC58617A98F0341 C4D379C508B3DA7F2C20A1E7CA5DC9505795944BD83EBF02022F31E50A3FAE52 7259693253A45AD3AC1D1E40D694D4B33E8A5A09C405B52BEE5EC132C9B27B8F 4C45B3EBA9CF34BAFF627AB8D86755D31472CE8ED453F01E96F74851862DDEB6 0A8B4C6A0D69783E632065B095924AD3D5B98A8100E52F2058E795639BF91C8C CF10E8F4DBAC1F9BD167FCB399BCEC1652C81DBAC4B0E37DDAC9998105397E3D 73FC7E53E70028314EFEED71A935C9792CCEAE794608DC13C6D14A069A02FB43 8A05187E9EE03AC908DBCC7551F1E933B4FCE961926D5B81CC885D8CF3F4CD3F EEB5DEE1769A5C5D8E86C7DB3E96FA500A2EB89735C55AC3252CC280ECD07AE4 64EC4F4BF687A866CD8A9806BF96FCB8AD9BA0972F3DBC2971F50CCB4E1A2979 480341DC01E58273F4086B4FB7C98D4271829AC9255598669F26F5B59F3DE2F8 9BD2FB9BF3AD79C02B8199C952D7135933BFF1A3B3D04EEE52CA1CB9A15413F2 158BA8D689AE2F93EF3EE2AA055B2CF2CB6D077AC8F72126FCE95F30471F7AF4 6267671B6EF1D3F5A932D94B700CF3FD7777FE123129E874DA871CC6F54D69AF CFB6E499F50025567B58595509CBE1300AB209CD88FC472BBE9C5F8124AEF8D6 3288921A3932D0374333DF8D0F77881B9012D75EADEBD2F80DA17B5B1CF8DCDC C71A7E217FBC07ABE2395653552742AD35C5B3A99045B92B320711B18E9580B7 071C0C1598A58D0CFBA46370CC8111237545DB6353BDFBBA45128109B9311523 F493DA4EAFC9D6FF5B73A486A8D4E39C582280BE7569C1B272F2942782C52F6E C26A3904E0EF2926B98038E35113D0D1E6B91A310F30B0BB7971E5EF0D4511D4 888AC76E95D810A7CF7EAD44883DF3CBD91F1452F901F6448EB8914C3FE434A9 60166AF573EB5D77DA5A16A33E5ACB089C8E0F8FEACE1F9C48C83F18B685A3B0 027007A99175E59A6C9609A363748E53C44A1602A39E96776738B54690E9E4EE A3104B25F24E3F3B77316CED31ED193B4A33C5E8E1CC3B2492319BDE215C1AA1 DD86D2622627C483F831DC8FF17D9125974521EF53760CEA854F0E8DCEE92856 7E9364B786F6E7995A3CC87196162C734CED436832DF7F10CBBD7726A1A9FE74 5AF7E934B5418F210BACAA8C3023598DBEEB4DD2B4C92652B61C76FB1433B9EC 163099EA47869D3BA7C97B1D27503C4C8CA20E2735B650C7A18B57B8E960F8B8 42E06826FAD393BAF7DE0D21AD910ECCC2D9D5FF7A260F2E88345617B09EB029 432AB4ABAF89680F39FFF1722917F6EFDA157A5B5158C8A6261CE4FF77D4E971 D892554EE4D3E1AED976FF227FA98944D159972872D6DBB6E0805F0D7F267D18 26ACA6D4BB463E6D288CEE66B08BDDB4FC916718B3A497CA632CE6E8FC9AB174 8EA17C8E6F053F81AFD6D42382AD9AFE8D64B2A4C7D91181A73AC25F06E5DB71 4506F66FD51B010AE1AE5E82A3ACB0CC3D5BD1224A28B05D2470209C182FA991 A9F2DBBF7CB018CE87D3EB1D9FF744099C62169EC03A45DF7994D8F42C326A4D 5F320EFB7ADB34F2CF4031455F5D42949CB30B925BD9C5D7F8F0D85877FA7A42 DC6B98FBBCD08BC4A760453B73CDE333CC60A6A8F2BF2785B457CD11878F84F2 8FE44CB9E828A5AD27EB965ED94BE35BDD3C6D6FC4027CBB93508F3116A0D4C0 0E75B6E94219DA65169079555947CF73645A516B0B779D4342A4E65B0C8DE843 4858368B3EAAA38BA9750EFCD7864D6F931240E80E49A8FB2ACCD96C67282060 B4751BD16AC3232A53AC9B4DD68839A36615642E76607A784ADF74DB11E2C67B 3966754103EB44767F5DF32FB7BFD4ABD89789E9B5D23E51ACFE4E5ADEE1D4AE 26385ABF6CC8B432096689A9CAC71E086FF2F5A5111EB0F631703C7851538CD0 D6EB492CD25F666697B3B6C184BC91B05371345FA185AEE6A5AF301128F4B4CD 75597F9ED3B7823282CD05655F3BEB5BD4BFFCD0F0199E2FDB6C9F8FB3818747 6738C4F7610C3A2F46314B90C0DB9A4ADC56D955FF6AA22574B727D8857F2B24 8B5D884511ED7190EEA9A71E9708D4AA1B06222D5FE5A4E25314388A959FBDDF 1EA0C85E01169B2AAD698AC73A65400E87B7A9E7EB43E022817C7392CEC3FC67 D6663DC750D40671F0337A49F2ABDB10AE3EAB8EB746980BDEB2E69D762C19E7 440F5275C396C3B56C6FE9196ACDE6159F41CB9A554D8320A4D71BE0F7AACC4F 466397A75E981E1A215EEEED4F3A8482A686FA7C695B6D40AE92B4150BD00DE1 E4FFFA42AAA059FFFC4AC9491C33C05E4D27808B69E9FAE08A86FBD01A35ACCF 46E967E862960EC4FC2704B507FBDF00FB02494D7059E429E80761626678AC74 0BF0108F8B03A95ED783A10FC5938D9E42D64E914E9A4F04EA06BE4C8D79AF99 25B19DFCE00972D45CA59A8BA41E349840ACA3124E8F3297C26A6D1BB1B02DE6 C52F047B55DC672DDB9BC73BE4B39410E9CFEAB0A4B1C55DEA46746AB52CA9FA 761C8C8A2D34944E904879403B0686521C9CFDC8FBC32F4AE659FDA262B41F54 4D5D69DB0D26B43B68EAFF8C8997A267477ABFCC6FB829632BACD3129BA0127B 1B9164BB9AB6EBFDE99D84FEEC3F04533B07117AF9ECC0BE6845F0854805296C 03C11A27AF920E36D28152A50418A9EDA2F14940BFBD9ABF2F31E84D5D0EE3E1 94F32CEDFA821CC1FEAFA56758D269643383A613B466305C21A87E58C9296CB5 DB8DC4EEAEEA89A1E84D5DF6041A12563A0EB66C2A0F59581FA47099D429E615 1FABC2046BFC23C7E848F53D118239D666F058113C865B01A8D4AEDD8AC89F60 819C1A3A051AA665A43D3552760D9410843CA004B1F2CD998A3FBED3A7CA2277 E1FEAA9AD910849B10145FC2E0D6346666DE2FF7C2AF38E2F84CE0DF16D0B90D 03E00EC3C55E5C05AD3A120CB1879E84898995AE5A205721E2AC6F88E5B57FF2 7CD9D37EAE28F3461181FBBC340BE35601D0CDD0FCAC181EC6E2CCCA00ADEDB3 6867BA1627D730CA71566C9388C6F0E069BFED8968B67AD465645798D18A49CE 1C34EA0A2DAE4C7D13FBA180C50EEF9827FE456C27BF25FEC28ADD3AD94486D9 9A697024609611947D03EB461FC8D17B2EED155A46C0825FF872C1AAD02CE9D9 A2FC62A38F4784B40CC33C298B4E8F7C3E8A3018ED0F497B054DEF36487213C6 116F39D64454F11B0EBEA532DC3F72A16454A5EFD2A0A702139F6F6647338E06 773E301EE8FB984CE226025F597DF0B44A73629E50D39DBE28DE1852B0C79E6A 1FBB78BCE132753A07F858898522ED3420F671D4EC657B1363D88433F155911E 991DFCD39AF4523716AB392E40BA705784376CA58F5C5F06C71EAB6734C12F8C C6E8D698345483D4DC9194204501A98315E44C43B38D7F30C00E01F0D1024052 D3E0C5FB320D54FF4ED525133C55CE2021F9B06130DAECE83115C5E4CA7A5E60 78A5AB40B902EA0315651E07B8FA6367F01701B9F5460AEFCC9F591678A12F90 A8CD4150876FBA33C30AC006B8D168BCB4B4D63259127268C996A5A59D12872B EA4304B8A5A08ADE39604C14416F9B327ABBF977BA56FF620A97FE4F2D4D4181 ECC349BF0776276405F54C882128121AEA5A07478E2AD6C10742FF6430EC0EAD 752F3541B1CB283CB24D7E37445D4BF42C8BC632D41C4A168EEBD0B086BDA9FA 3D17F6ADE5D0D70BEDCF0A50B1E16055999018B459146125D16689CF811CDC42 E1563D331618A22EE81DB417DB13ABDB475396B02F8FDB041DF6B099074AE073 202B439C5956EA33C15AA8F1F6BB27F0160337203EB289BF55D613ED95A97685 5F86C5FC55B627453171F5BF641E5B6DCCAA31E67DFD68F968EC79BFA39B178A D3EA21270631FD29031F64621061E60C7E2269645A51A239A207A51DB86CD07E 3BB35993A95FEAB12FF6BA96EE231F1B2935E979AC69CB0CF2416938F5FAEE48 E813DFFB95D13BB6A92A7A6E2CC08E3789462092F4E72626279E5C8257EACE5D B3CDF6D4704A729D020C278BF8BBD6474912424702ED4DD0368F30CAE5977FDB 3541ACD80981D99B54976936DA5AA9975B84F7F2A2B2CAC6EAADC5B2BF652891 FF8BD1DC5BFE7033D9D2A2C79FCFCBE44D84513D542373A9CC8CC6267A6C8BFE F2FAAF8AE6C30153EE9F280A063D05A9443DC3B99AF1C9C1F2B0D4BBC6804F99 5167D5481B434092E61F7F6120C743597D4CC8F7F158622C87E0D7FE7595DEBE 2EE42174102C99FE6092CD19A8E424B6DF432EAFC0046595DD05EA58D034F4FC FD90B00AA18C3CA05F03445DDD30A6F040B51DAD4F04EBCECB1D5482301978D5 DFED67774A1C1251F2003FBF6C4E2913B259D99C55B25C3173F41AC40933CA99 2CE8EB0145F68130A4B2960C2BE2CC89AAAF8AE833982768B321DEC8FC8EAA8F B64A9868E32D1914C46C8A2EBFA46F7C1CF199D24DE24339661F7272A6E34829 E62E11A0924988177435DA106D7C524C0C2BC1C2AF99D496859326FA74FABDF3 83FD82C9144B6F03F082E20EAD92284139E45C994018F889A1FFDA5FA2B19B90 38B9EF87D2B34A7F46AE27BB95E2195F958798982E96979BF23BC7EAFAD3F1D5 AE454252A06C5953A6553FD93ED295F86F419D15FC76F05B0C15EECD70D0C784 21CAD58C34FF8689CA2D0A2C9A204D99C2378421A0F57EE9A3E6C9358F3AEEE4 E9B6A0CC3AB9DB260D68D35E66376A74B26F925F1578737AE6539575B969F269 872A97EB9E0181BEA5241F9DB74F212F81249B71B82D547D1C9CB6FCDDCFFA1E 700FF34E08147F6E29F10F0CBEF09CD254EB5F9F8D8099C56D859AE9EBA5D4D8 256B90DE65747C78D14B4FB8E39A67FB1039914026E0CEB6FEF629E1C024CC37 037DA8F073991235541F09CCAD292E4F7574ED126C99628F6B208661C2EA782F C74AE7FF1F486B781D89357F70ECDE3F36FF6580E6A0F43F9CEA95BE57AA3AE9 D82F4D141B9F92F22466637CA739BF9397BB94F60A6F4197C6DF0C4A9F348C46 29FDEEB9DB680EF7EA71037C2C42D15A966D378AB2192B56D24E2EFFE4421B53 1930203249DAC898FCBB90EF4FF10B95B01E4CA59B25CBC1517740BF94243B52 E8B96AD886C9D9EDEE636A4F8722956674D838F57A2B049E0DAAD8731CA7331E 6D5F3CBE866174B949D87043C4686B226AFAB0BC6878D1693D849CDF52B2D498 729734641F6F8A63D0FCF3139C55D9ECABB27508613C1997A8D8AFD78C8E789A D7C30F6C58E84FB564093D7A589F4181EEE55EEBF39F369396ECD59D90D44965 1E267F20B980A4359B462F692E86E04E0167B965B6D958A52CD880FB69F6C60F F0F76F5DEABE3B0E21592258BC83BD9AD7C087B9028D3F1941A2873FE5D6911C 7D353B921FEA42816DD49B48450049B8F31D7078D0AE7CD7DB8765A8781D9B75 0547884A23E8DF7778571C650490A77F1124639AA7554AFE3D8589DDFE5D7141 43B8AF5E82E9098B95F395C2B9988068260570B288D1882D1EEFEBD9E9B0FFD9 331503DBF1ACAAE998CF3F3452518B30469A6C72C23D3344C4FC1DF7A8A01148 73FD5F56F95BC98CB2278B583574471BD2E97E95E8EE1860E74300D302602DCB 74D548F0D7377C0A1887D5FB27534A5560DE1D1211F52963AC6C7523FDA0104E 72121BA9D2CF1D84B299F2826B5105F140B890484CD2D5AE03C69BC056786534 2BAFBEB8D80273CA0395EBE9A3BF3263C1F46093C5B3F17771D7AC85CD72DFA7 CD767C726E7BF2196380E57453AC511C99DF297E4A7D01ECB22A095355C30E6D CAC1B1F0FC955478F0953EF9CF88940D6FBF6D77BE921BEA61F3F1C939EE6351 C2F6A29D1F1FE4383BFBA53ECC232C6535151EA9E1E81355FA9E72847EBE8B9B 11B229BE65DFE9774B9B2970C8C08431943ED09CD1A09CD6EFF896F43EE81FF8 69C777498FC421ADBC40DA7AB46E3C65998092017F8B6BF96FADD768770E8219 71D03657047E0E6E154CA34E4013D724A8F78B53CE623DDD13A5F7B7FBDCB909 455CD4AB2062AE859FEC2F78116EC8583A2B002C2D9258FE3DF659855CD98E65 876383D0F67C2BA1DBDDC0F652875EE767025C2EC6FDDF5CDC440577D5F9ED91 8F6593731D04B25C2868B3356C87A9ACC98AA052932E01C509DA912B44AC538C DB92D01A4AD932CF0D48E6DC067795416BF0A4E5B9500977DA66E4B346394D3E D27939A56887239B7FC7F15F564E51116B615A4900CF3A67F33EAED29CF39528 2BBF2827BDAF3616AA1740B7CF12854CB51175B088CC6A697B5D5462C15B49D5 D4E58A406B51EFF8CABDBE91FFCB58E9C8101178FFD0833FF612DF7F99891F97 6E994A80EFC41B863696FE7EB6787E4AEDF21E8BB6D5270927CE9AD669261255 4D345A92D79F62F15454A661B4470310C0C7F85545806CAA0CC180B957846895 BA04D4ABDF3D89D321D9B9C7DBAE4C690F4625EEF664CD0BFE548E057E484610 1839E6F5C8662BA539813EA1011E77B85B859E5C2D30C27E19CE1FD55E2953C0 6C9D5E733BBF99B3FEF8EA202DCDB64B8588E0F0A5EE6D3F214321FE15C3C9D5 9DDCFEF830B4A0C458962EDA665A95F4779CB7C6F3A1FE80C8C9EC1542EC2D9E B583B37FAF62443FBB3E5A7F6BFE6596DF1E9651216FEBF11803FAE1CDDF8756 A55D19B3B1898C71ACA59364386B4912DC634E04151A443C6B6C307AA2D3BDE3 7AC16A5B39744FAE7E9BD225E04A466BEB4F9F51959F3188325DECB6CDE15C2D 66F4C612224BA6A9FC70787FF17B7E0E31F556E2E088DF214ABF9F27C39EE495 1EE163A644106E1C1C7CF6BEF07009B38022CB5B9C33CA4C62E69DA01BA25CF0 BCA87377622FF3C96C68D4FF09BE24612DC788F0ED2910FBB1AE8C023B7CEBF5 86196213453251BF1231B5BDCE182503C9B0E06724133CAD069E14C36DEBF9A2 5661BFE61BE51624F42EB5717CAE7F05DF20A27F0CD37D268BD50286E891311C D55744A29736BEA554B466A7AEB02C5C0575EF05CCB1F69D37EC144458048245 01EA846682850F97310FD68190044E4CE798D51699058F03F5B0035A83F96E99 A5F7112737D436EFE6A7C60627B700D4B539288D2006CCA437D0AD04106AC8BC 9E411030E00CBCDC3F9357ACA9CE3E6A63203DF968AC474F722B889A4EC10DBB 39295354F28BD8A3A770BCE14091561583447E29292174A067DDBC4A7C638A50 7A0F05863F435AA2C763BA5CFCF6DF8E39189E79A9178E80A305E8F03534999D 532CA867B055AFB2077A0C7B5D1B738DC0494871F707B12D1EF469EE4FFD9C63 78FE05E1DA7E188E997AD2C03EEB2CCFDAB1019581FA9C57C8F1DA051A60B02B C76A5F7419B32AEC483D1EE2E7512BA83AB78C796CF06D6A01AF6C1A517F8643 141D48E3344B15CC483395CE83BB56762A423322A0AE12786626E541F85C5A2A 79DFBBE6DAC3A2754AEAE562523A5788C3B548B6DA59D3DA207E5628017BFDD0 A9DE4072882788AA1177C695DBF0BB784F480F831C4FD4B67365B15CDBA909D5 F83B44B360609163287D7F315CF95B8090B2BA45518F9BCD3884CA9641704A05 37D4CEDBCF7F3208C7580AD987F7424C459333F2C7B11937BC3AD70EE12EA881 FBAFDCCDB80A1C05D129E0C0DAA23909BC56AFEA730F64F93FF369928C40F0E5 CBDB410CF2EF47D49B0F04841B268F954E225ADA644566B2E2A7B93A6C6EBEDF F6CCD83C4BDD1AF12A016D640CA9CF1BCB0FA48213C25E7359294857E16A8326 400C324F4D6D15FD011EA1D345CC8585B06A5D34A0F2103FEEDECC9D3D5C65D5 620710092A213AC8E1C8C5AED11E350F0760D1CD7062BC1FA480A15DE733FFEE 5F428FBF94488CDBCE85D4B65593362AFCD83A782A03F80672257A67EEE33940 89F04CEE35C0B418BF33F65357EFBA4E3839D5CA447BE8D1E7C14C99A1866A13 115E858073E68F259F48908E980C8335F9ABEF1109A93C20164161EE5DFFCC18 3B913D65D9ED29CE5688A0078454080BB624DAF959BF30ABD78B1964C0D38D81 BBEE68F8C31A647B75194980EADAE5AA18609FCCFFFC73D55212DB091A812A65 1C62893A54B9E9214A6223EF22E663B0076192EAA8338FEBD91498B875DA25C7 DB83A8D36542F0818F02717973F1FBF55811A03592A5778CCCC941CB636E6C8C 0159AD962BBB6951D36FE9966DF8111AD385EAA574BF225F06DC016443CDEF40 632709C6ADDA1A90DC99DC0C4AF29CD4722CC759C1E811676F12D58148FE7DE0 6FE2C004CA06AB171D171B21D3F01BC76C5BF9C95B7BDED1E82C0DABA460AD4C B434BFB99978D079BB31CE9B6961CDBED6BC7601A99A1F811E5A1384107A9E79 4CD84EBBA899EEF9F33583490C3767041B9DC600FB7311C8C606F1A3C3A30630 6C6B2E51637DD48659A31BAAD4CED67A90B9D8FC4B548320CF65C66E5D0B0726 B2047D77C71A385C3A77DEB598E24CFAEB307185D6CF4DB6985EA47290BB4191 F5A5700F9070499C56DE417EFCA43AAB5AA92D1620E38D9ED6E01230409EA873 F16CF19C67466306F8D5A442B9C619D5108E77DCABFB71F3F5222D46DE8B5103 EA329DC77AB50E9F8C73455354851AB748246C351B313D14292DCF639D80AF65 2E765CB7C1CD67DCB2B1FFB4C7C16FF06E22229C6CA1B90DF3BC04F43DE4F520 604F5459B3E77FD1448F38E411CF8890DFA4625A9A70018DB43BE1C83DF0715E 769DA23B17BFAC15285413BAC8B44E0B8ED023B4CC9F65427E922F7AFFD419CA 20F0E82EB61C0EE762F546EDF4F6C3BF91F991CEC5751CE393A8A1B5A740E47E 208BA82AD0AD81FB31FBDF64A44AECE390218F22B94F4912735351875810351D 7DADE83748BC01453FA6CCB00DB1F253694EFA2F906121935E446568F9C36D74 22518EDB8490CBFC2A03E3F7C143EC67BE7758D7E018B9D17328E842A71A6DB4 5653AD77807334DA683403FDF3909AB57EE261D12038D277D445B4AD4B9D0943 9E1787ADA6156861B188646A3A065A2BBD52DD92CCEC0121BB56AC8961E67A21 C6C56FAD0A430B0EAFBCEE41F8D7EFA3D1CF92A5A26AB7B1ADFCE7B43BE20CED 4721BDDD06BAFF6F0D44EAAACF15D4BEE561E4702B525EC62BCF202D52EAD25C 90F6F53F4F37E45B94C0E707B426F5D598DF95372790BACB881E0C817FB3CE27 A8E31CBE57FDF91582510DBAF8CED1E042D592C18ED85C646507E39D28C8A6DD 073FA1DE452C4AC40489B68FD3343DC637070716DA198EC36C2A7283604B99B7 3389D0F2D1F95455105A3B7C18400F55C617A2EB7EA84CA48F770953AF9FFF9A B00A4C6DC1A5BB278129E7B98E1124B396DF750E2C4470DF3AB074602CF55478 F2DD0FED01D5989EE6E52B3728E9D5EDFACAD462187C310B04914E2F34580E9F D2D9939D2E18753A313CEFE1C6C4EC368E199D5569DAC78B62B967E2A01537E9 6288410DADE218305D5FDC8B96F258964BEA24E3FFC3C092F7FF5A8ED7005939 CBD7594BFACAECA3A650BB2D2BB41A9146C83BDF84CD8349989B0B7C46264EEE B0AB0F2EA1D9911B68E9709D2AA3772094EF0A8774A4ED4B93B45EC22B6D8616 66D1CB9EA64AE4500209113975CBE220A83B6C74EDDAC5FBC11190A44223611E C2829BD6E3443F5938C20761F9B1EDF84D060FE45B20C86C3CCB8C7B83D74235 598FADECA175DD7AC9C301C875DDB055AA7950C93DE8D7016A3D5D2BE2A0CF82 94AF5DFFD81BB8E7A8B0664EF4426A765AD48C168965DBBCB4A5292E99E329E4 3B68419B564858738F4419D2AC492DA601D7D4FB8082F16E104F507B503BF9CB 7F40A15D1D6B1BCF03D5630E16249ABE6DF0EDDB568CC19FD9F785F3F7417334 8738B91915C553906EE1B378AFA358CFD6FA3C815F4EF44DD5BA6D26C6E17CEA 0A29B307C857D5D2CD8C3E506660D7950B82F1DE12E141F4740DE728900709C0 696AF057305E6670C23DA0BBA5C64A111206219FF2C1CF6FE7B0EF257D5D99AB C60AEC3AED73831760CC5D22E74727BFCBFE6810EDF4F48AB39121A82DD5821F DE6F8A10AA6CDECFE7D4BD8E2388631D5941C5DA0F61640103E5C68F6CC413A8 EAA7D2419F2B6A643E8F9A95F66A1ACBCAFCC7443F4E01B62320EE7DE0689EF6 B8397698925233490BC6C4B90243E9A72770FC68CBD3854821DF66B785087743 9058E6DE7D1D932ED00A1AB57D21067A5411DD097EB0065B1EABEB209C5B69BE 87F33EA9E280B71D4B8C8CB8C99123B8282AB57848A99699402FFF93B755ACEA DC15E0383422646F3F80BA0698A6A51AB1A28169E38340B303950B69B881030B 1EF221BD8E44BB2549234CABFC545DE97DCBF12F75655BC523A2371D5E680BBB 82CC1D799C451E8B3C8AFF0AE63EE353520A2EAF5C4E815352BB98ED6162F08F E2EBE7F408BECA380891A40FE3691F984D498935B11F7F295E98A256E77BD0BB 4492D8CE904D9CFF530B5A26D14A0B49DEDFA9B19DD80FFE4A56CCF3AC87C651 FBE675846EE0A998B2BA26234849C4F95B0C5DC2D3E84A26961B1175928BCF7A 730B085C42FEB713C58A2E335CCCA1A5DA7A88F6E2BB015961C14848F61AB3DC DA874008FE811F38B13959D227AE5B3E358F1D2BB8E2D7FEC13DF0CC79DB6D25 5C7BC76C29CF9A0F688A0ADCF3D902FB7E9269837D1C59976F19012919F67E3A 6094482E0EB91FA4B137FE4F07CBE4557F414E60EF225666F9648AC754A28E43 629F1F070299834C1309BC28F0659B8FA58C133F403D61BAFE7F40B6E31D6C83 EB980B5AD4CE3F01D8547DA7FE177C1D230480F771183B302FF5C3683FC2F628 8A9E6E5DC9C029E7957CFAB8C1C9C4B2B604812854153C683618749FBDD5FB05 3F743A4FB268B84ACF1D9ED1283A7DB64A31B78636B4574B8A473679C3A881AC F7858416D29D3EDB3C2A62604C0A666188BF9287118F092485FF10AC343C31B7 66C761AE8DF4634B448201A9DB85B0BF06A2E8BE1A762ED37127DF2245084B93 FB078BC50ABD8980CEE021547ECEC6751B2295819D5F39BC3B210560C383D887 A4B179D0ECE8C1AC8E0A2F97DF032D1EE28F3C835D7BFA2DB9AEE349E65B73D9 3C9A367A6C655174DC8180663D37E19C6B5C44031067CCBC577B786828DBB23A C076FD672CD32D1AED09BF9F38834E6B16F1BDA5A34F063C64AB8EB8864E7D5F C74EE517DC915F0C77A2DD5923A50AD8A4DC39344635AED890A5DF3E461AEE3F E362DA67E73CD14B200DF449FBF2D92C27FAF4B895C45F370C93AF5F429A4303 4CD0D65D1FB3EC103BB5A48C04D675928B6FCE127AB32BF205F2EDAC29B327FF A10489744E27D249753E5661634753915059E6E2702C2F58905DE3AFCF2D4272 9BA4DA3E6781EC67AA39B77B6DDE3968AFCAF99554580AF408293DD5CA032713 CA5B5D28AA46606E627F53F27628FA563C4759D84697781600DE99D895B402BA 870E5427BCD0FC02B9090770CD84BC9061B76A051F6CB4921990A0DB13C2E333 8CA0E378EBF8E9E507E22979D9B694FEC20378CBC11560FADFE040DA63FA4E56 9D7D12D7005DFFB82D17C87C9EF63CFBA5CA887B88BDAD23B4816CDF4BAEA528 E269CE1DB32E79840D3569ECF356984326C1E4B7C20B268FE955E9BD3884EE01 4BD7CD21031F7623DBE183EEF39AED664EE4A94156DD0887D85F19A27C90B834 4FC4FEC2F39029872023186B6CFCBFE065D9ED6B332D63847E5EA8DC91C8C668 2026FAD8E24C00B2AED44466AF5BFD3FF9255EB05F7CDD90826D88D6830BE8CF 2AD621CBC121437726CFCE345418CAE44DE21AA3711E4F9DF7AB331C5B074BF7 3FD41C21F642266E799450F7D0EBA2DBCCB9D9DF3F331602FE0FC18225BAB14E 26D1A7E72290E42B39172B949F58258D96DC335CAE79C3B583BEAF9F36AF6DE1 67213D403790B505E753A10C277A6FAAD5327B738517D57BC130A486BC8B4746 1D46DED8FDDB9C917B1E8D1D6E4DE551B412DBA2FFC1E35473DF49D9CBB20666 9ED63C06DD802CA9A81BA3631F1CD8671744267037EEF17A82CF746591C63A7E 8BA5F822B443BFEEF8BB6C0717AE87D880BAD61A1A478FFF5883C463DD83CA43 793AE5C407FA4C66A56592862EA0F626822AA8AADC651E6010A652477E63AC80 0F32336858B94F8D40E9F9FCAC69E8813C76B5491F4CA8B291CE1E7BCD138383 E02AE5A5C8A8B13569D813A947CC46F321029906C5DEED777724A1B34A684E60 90F8205B446B5D744D622DE3632F31DA8EA4E412D8E65E45FF964A545CB8CB3E 654A99A1C4E6CBB8D8C61961403D12CF6BD20E99765BB5E239E8357620DA54B2 61BC00063389228BCB59EE9565B3BB99F1AAF30D296DF5D34D86B543B41308FC B5E55F4B0DCB6D3D5D5A027BA1E23566997C78B477E67F00A57F67414ACF113C 877AE58946253165E92084BDAA4D40250ECA51BCBD9EBFF9EBFD6369DFF081A2 2DE96084D718C88C6DF2D167C11805CC839C7CC393C052FD4959399A9B4330EB 88CC19F2B480CF088E338708B643279D35D68C3679A6EC577997A54FEE8086D4 94BA562BF63777FCE8EA4E0E59068A8433EF8B64BF8ED59CCE16B7916D9F1E57 322E144D245577C69E99E84DF2367B1865CA3B5FAA34F4B00D059D09FDAF9EE6 F57C0D4F73F17D9136F873F1A8A7D2880E7319B3188CDF8451B66E5D08E20BAE C106696379B76C44832F51B7BFA28572850DC31EA2512E1BC3888224F96A75A0 8B7738C1B2981A3B89D8D5ED4B7F6C3F6995C893D6C174F4E3A38268228FEDFA A72E14856DA96125C4217DF38DA9DED696C4D62DBF37FA9FC1466A31047A6223 DDA2F118E90B180B45D0A6D20EB1BEF9FF0C561BA1D870A01349AC1E42A6E9BE FDA106D48928D65EC46F2CCE64D61019ECF22E75F743E9E1D0FE98FBF5729A93 86D9AE0309816B8C5DF3E9698D51BED760CC637FDD3D8516E36B036E7D784D69 E3512F9AD76F7C3BFC32CE40EAF7C0B7A0B1729E986790DEBD13E2DEADF92C41 528C9DD1E835CF18CB8489B4CAB7E105CE9D16CE645599199F1D2A58BA2AFF59 AECDF574F7C2944699ED630718FEF049139CA3F4ED5C0C5702A0DBBFAD074AC1 78C70DD53C12EC599A5F1B2AEE886DC46426B8A21E059D78AA51E4AB57F8B4CE 5CEEB784C7FF980C36B2DE62BCFF37CF378A7017D8144AB88CCE45F3A07680B8 32101BC312A020F621AAFC524C5F86BBC48BCF4F7C81B4B2E82CF585F06F2481 2F8EA6A1BC2D580617140EFBC6B8F7EB7D7E323A27BE3D5AD599C6BEFBB2CDA4 3BA86E0E16D7264833827DD01E7B4FFE6EE2454820E939066B988DD2345D97E1 88ED2DE120992C40A3A5A073C1371662E3DE05CEAB8B438E47057EC5139AE5F9 7CC2A859CEE5F0EB7F062946327FDC5BA33A7E1358142DC5E7B5476BD1AA7AD0 1C024E313D070A8D7A3D62FB6B64A5FD562263B79BC832D87C60489FA0A2C4A8 BAC86DFB78D38A6EDDB47D21A596969093A36BF8185535D3D5C987160188B6D0 5719D2FB8C8F0F76A5A0A8562E34E7A4543863874E81CDEE68C57068734270B3 EA9FEC6514B36D5F2484079464CAAC1E8BC82B9708E7355FA8F78C9271ED294E 146EDCF66FA86CDD1D47D5590B633CDAAC3E559609D270BB7CEB794F48B5DDDB EF716CDDD85A9E39CC640E1232BA4E057518B0876B3491AB21CBD1ED1BF51F0E 5B171D6DEB1A7C292F2FAA36E3AAE7C21548BA6A5D681407613CE614A81AB209 198C5F7A36F2EE329A3B3BC98B1DC8A8D30EED1D7D0F62D187225BB3224247FD 67EDFA0A6C417B3411533CA4B6BC54FACFA7D4D8377647AF0C9D562080BA8221 B1371213B8B1E28C69C6DDB4448B8A5FED0F15656FC6A229715BF71EEDDCCE88 146243275714C6C27476BB6AF2DDF878F223318B1ECDC0B8FC4D1010C1299A14 83169C33DB33166F1BBBA3197AEF05A8600891D61947E919A0002297CFABF727 0204E391480B6C4ECDFB94567478AE392F34CFA124CD2D2637ECD95197F371F4 92CC9A34BE0FC2EC3E7A05E25D1D76157E0F59734C3969EEE34E164C7BA3829D EB3404CA60DEDA0EB05C66D78234729EFDC442BCB0878530CAA0B8EFFF57F74B 9D3F8361A24E3ACEC3A1AC34766ED8C043B6FB579E873758C501F81939E79C76 BA612E0F349E8DC891303776A7702C082D91CB23D2F77E08FB2EC60EE73070C6 4E033D300A5D26F59C51241BDBBEE8DD113EE54CF6DB8642063EB84ED1CFE531 D9E90C0A972CFA4674937455B30ED726FB98C786CBFE0CEC95EB60D2AA279F64 C723DBDD83BFFC077DB57F399F2C6731145390B4DAFBAB65A25E0B41E617C71F 9ADD86B4CC8312E8AEC23ADF1096031DF225F59D890AB7AD5DA0CC8EFE1BC2E1 A5360CD6799FA342B89290EA741B84A37CA3D64297C8DC6B5ADC401329873763 E227DD032DBF2164DD14408EB89FE313988FD9335BFF72AE9A5982ADFEE44A08 D75DD38EB950C579CB6BA4B381FC43354CD9FDCB691C413BA246F07E81764507 E20F37B02E320E2E086179CC60350B236E249FF196DAFB94242CA7FDA746228E 1EB82BDB89AE60C453081FC2D1D9E546376F4464E9AEFF63E8CB8D6B47A4D499 6BB3A0A8744679D7D1C05AE44E98D7325A6402228B87AA3A410367E956D24807 07581F6AD7932EB450EB16449E1A40E7F250A989FEC92E27AC6AF78826FA6885 ADC87FD6C0697F41BA2C7C79D777B344037BACB220B1A9A657030A5965E025A1 F953185214804459E96A586BACC62FBEF3CE5954EF1C61467F5514ACE043D448 5D038438250F1B85463F8A324962144F9D7E1C328816994DD3A9B31231871091 5552844DF707EFC3F81FDF4169CEC3A1C38E24FF0F0AFACDFEFE7F745CAAEDE4 04A092E5809AC0EA02C3F06E384B0FD60AF369F9A9EA85667035DF87C5858BF1 603E9A419D4D8DB73AEF26F7AD52E9E394557E1B2B257F0DF026A431A192ADAD 00BD4836B2C8B54D646E8EF9E52B0FB19C4FA322409D09BF167CAC5ED3A82A48 C8FF640CFE6D091EB6032DDCBC50F9A593B5FEF9976C67CCF409F64207FBA557 77340CDBCA6F7380B9E2B3243FE805C4B69A3BA2FE1830139F10A403CAAA7ED0 BF5386C7D3BC998BCA4ACD968401DF751A7EE9492A690BF0D521932FB4E63761 DB383CDC362D8E5A563BDC4BD8D2A1DB5D900B8FDFB5329CFB85603967C42502 0947B3FAA5AB0A96FB08A464817136A4F5BF988080CC0085CEB42879D650466E 1B972B717B18D5CDD21AE47FA495641374CD156A4F726A291D4E7C5CBC042DD6 3D119BBA7E7163F6AFCDAA9AF22A83569D2FD35969143D992570D905A90F247B 475E253081579D0B75467A329E5B5F124DDCB602D34D12D72ABEB65E41C5C919 BB9B1638E41165C33D20797C3755AD71F53FBB70A0FCA76D52B33097C3ADD50C 7CE5AEECB9C3378538FCA2D0C5928150FCAD751DE3611F9E84ED2A0C6DFE70FC 4AE33F879129C961929BAB02BE32CF4070F8F4F0BB0158834FB0C605A3CF5490 4BED0B1E98A2FC5399924C4D554E41E74CB58A21200E6DD2AA0A734679EACF7B 97D1030EECA997D2371712690F8D8CFC9A4EBCBFFBB9F4E4BFD790A0F961B95B 700A2877241797ADB1CEF48AE70DE669C8A8E990F7EF38F24C269734C4E230CC FA6B080559B635F5D5F78972786469291A062617CC8919F2C8CE94845E955DE1 F668AAE68051854B3766B7D14962EA3C322845BCD8A00341B20A2A6A90A77DE3 EB2757A5DF3D6292033C869AFBF5E58F4E4C0819504B93F88E6F116F39200A19 FBF1236080BF69C9F77C53413323BC8250901D87175E2402926C33726D68FF1F AC4C38FB4CF0EC80BF1147AEC15B05F580E4C51B2F5F01EAAF8095B02DECB458 C2B6D8D951BB2E7DE70C31E4FA5A4FDE49AE7E89DD82B217D6579A00EFCBBA91 14E991022833D0DF8CF05A1BD852C1879779176564B121F6FC64A795666A8920 24DB2D57D0AC1341F032403EB030CA99BBB31BF216A87FCDD7282C4497A99AF1 EF9E7DA614FDE80B811D62C995F5178588FFA0DE8C76E18CA223BE296CED4016 A8B92C2C727C4E5AEC2F0C56E1D4E004FC3414502FD82A29EB4B87D8FEB92155 F56C4C27BC1EECDDDF5F224F935CC45D2509E4AF6227C89C20C250F7C823911F 0E1CF6B31C793BAE12A61A6BF5C8DAA299201D9514267D54A2D201E4257AFD7A 8BC070BABCBA91F449CB6F546A92F87ACE058EC39AA84EBFD8FAD238EBCE0D63 0007EB216406BA29C84FD6B9385577D04222C305114F3B59C186604F67C5AC8F 4546B1B55348E1E2CE449D3A28562FE514F36A77F66A71CA91EED86EADEED4D1 07F36C67AB83B0BC344FB9DF4960D11FE02EECDBB829B0F2AF39FC9D02E75C5C 5D3C1BE00FD913F35AB9B9F693E7C9BE6B315B35D035585ACA19CF2C7CCAE105 349E30AA4F57A63149D9262028C53EB8129E0F15EDCC7CFC2CDB5FC190B1010D 9F198949F56402888E3C7892E48408B34D9EE3E9418CFF92B8418498297E2449 E7F92E983348CB30D76BDAA84DD2797D822D6F26A582F8A338B9D4D370581CDD 34D0D334CA8D7616E448C86374B65CC0131010CEF730785F3DD5ED2E26F27011 CCC7B554FEDB02B6DEDF48CE76591CC110C65FC5CC72E7272FF63F07516AFE39 11202DC05097DEDBE384E8DAAA2F2A422565FF426715A849EC159220C8CEBF65 1E4FDE87CED9414AE86D6D2066F8CE0AFD31FE5A839EAF3092C2974FA170835C 31E8F1883E82EDF30AA1BD6AE0C5FD22DB9B1A53F27E404E2B8595E241843B95 A9B16F40CAE8F8712E1BEC901165E4B64AABEAA93A544682298C5703620E42E5 F8536D0DACD0274B1B13805CDC0ACFD5A242AACF29B8881EAF29780B65CFD8EE 21524F3F845BE6D7E8D5CF594B0B15C50A9B5A2620907241DF6100DF4AD96AE1 9BF9254162CA6386079FB93F1F88A94BCFD6E47B1CA020129EA7F34E9A261581 615C23C8D52AFA37AF575417C814E74D56F08AB575D44B2D0C17274BAA5611BB 8C61D49D7BA9343D8998110796E4E060523BB6B22F1D5DEA9CF8620D29A5CEF8 5EDC173ED7142A121F0E472BDFDB29E721A825FEC5013E8794B8D132E994D583 412370CCA2DCB10E3A5B49778AA5B4489AAC9918D4658F0E43F10558EC41D454 FF56C8261842EB93FF326EE3856FD0A25AEDC72CF966CF6FF46383C39C44836A 22485CE993E3A0578466FC77106CCD2195126567E11E54EFFEAF8F40BC0D1B97 634F8C121D9B62648DD61752005891596F40EFCF13A2276A4C187CB66F0B7949 BE95486034B3E66445AEB24A084F8E535C754892FFC156AF7EA8315A1997D3D3 FDAB4CD7C426F839FCC9BF4506C3A9430F6963AA8215E44D86ACEF423291375F F6242DDF87980A9A5E55DFB668C74F123656CB625E5E335D2CE989FDBB269F18 432F91A9E4D62B32E6B9BC8AB5CA32649C98597DDCDE2F343AD7E61F0F54A21B 449DCD1FECBA7CCFFFB5B2090D90251DF0E92CFF6FCB89B5A4FE39F78E9B817B 90FC9CCC283011B96319FA61E5C1BB9E2A633CB9BC346D08ECB3AEC5A4E36A75 CF8843027E2B411B4410B5C06F3B83A37442D06B4BA57316A7C9DA5956B0AEB1 C7A221C939DFB559CF0FD174C3E9D917DAAEF97391558C48DD1BB7992B14A8AE 55B1CFB6678C44305C03297D61D45A23A162A71873ACC77FDE7501DEEA302144 11A8EC2224408B7B4159154C4B1CDE75D5A80FEC50C1E123B6E0ABB523B90F07 91E363150E451670DF047132CB503719485BA8058750DF7E7961AC02B84FC89E B8D57BCC582C6D9754CB90691F65EA57AE3D8A7F61B70AB95FD6C05B0E0D107C 7560C1C8AC53A0C5588A14412A264BD84DF2A164B1BC8CA599C58A8C581DF0CD C9B9719A9CB243B95A41402C29F2F56C71D253FC699BBDC4F2D2FAEAC42AFA75 DB38A8EE0398BFAB528832A80D3ED42E9E3F3375F7DA493A936EAD1162DB55F8 79F31A554D8BF98B5E1CD6F1ED1FF319B61F5743E24FD64F42873E0BAAE0754D 13634CDB4BB284979BA95CA517BCD14F2BC5B7ADF3C105B5FEC0C9A9FC25D662 0237C84F75CD28D122E5BA85BAC7CD5D8A520DF718AF068A62E2B9D20DFD2E16 B9DB0234564337ED27C69DE8881A6493AF8FDBB5920CCE09D5C1FB480540C2F1 980A6D87A4105B168D570BF0CB65E2E03860C838011393C9AF6F6D688FC52770 EA668A2F714A1F61F77AE35A1F55FF065B799C1028ED8A5E0111581FB14E3CD6 BE1A98601BDB8B3AB76C58D31A1EC0C72EB5965CA5ACE2E42C73DD7DF21F82D0 1A3331DFA06E332B68858574FE9CAD3E3D720C17A2D92C53EEE6B58B230316A7 5AA30C60CC672E473ED311E7D38C4EE2809C29F2E76EA3F5A474E6AEBA84862E 7BD677B6D9AB0C2B501BD929354DF6A3CBA66FE0FCA49EDDD22D6E660085C421 533D735684BA3BDA798AB2CF9E8523B16389BD242E0D19953D83FEEEA8ACB5CE 5EAA4BD530D3F8C8CD72D3EF90DC038E2307A58D51800A5F9C62025039CCA4D3 07DA0A0A0263FCB71E20C9DDC7F26718A2D1B5882C7BBDD3244701B62D890C48 5FAF33407E9A5E4EA5D1C6910815BEECBC69FDD837E51154E84FF784896EF91E DC45F60F9C2FB8C376B5728C7EA835A807DA811A64C3F8C7043FCECD580B0B02 F0E23F84CF6335F261F030FB1CEA8C261EB1934C750B34039A5799356B79F65B 1CA31F02BE58D8AA229FD20CDD1BDFCF6199B6C5B9FF6D63C3585D3475C58E79 8FCC21AFEDD5D5CB5ACC9B0F6AE689BEA23DD30F02858CA6806DB4248C837B60 09D96D24C0E2CD5F4CD2ED50E60D03CC760D996B108017B26563E5E8FB203D96 15FA47459C2CCF99556D0F91E5E6DE0051FB6914EA99F0016627491BA5176383 AA37E3A49B58E488F1D6D37CE2EDA15AC652164007171D4BB2E1EC06F7ED225D 71AD96534DC26F8E167179AF8714137383561BD7EC9C5F8ABB64C334F1AF280C 4E70CA3751C2ABF7FBA2821B286A9F6DDA9E769646D5878F8860F02B8FABA6CC A82EADF9A45A30889AD551894A018B81093344C6CB0D59D09D6DFE91112DFC9B 5F0387D8727D1963415748D482FDD5AFB001FC249FF5B02DCE1D62F011E553B2 E767E48A1CAB27FA0237E35464C55CBC199F7596FC2F60BD9D853D825498D381 D52C5FECDED23525AE02234F8AB609EB0339B06A46BE7AD7DC67A08FFF568B3F 25C071294F839F96C2AE03BC57DCE13855AD7400D7BE881DC5E34720F408DD31 B6B5A33E2BE89889F0F5868C71602B086EFF8DA6554640A822B59D547C1DA709 E29964B2E321E2E803684C8E5D64384228714509E618BFFCE97B1298203E144E FD4E16F8C2B37AD390CA7A59E3ABDD281B2B41738C96478DEFF7DFDF45BD60B4 BFF2C7E57027AD51112808DF8E36F0423391C8328E17AE3D71B3EA2958720539 5182BF85FB826E5119E4D56BD5C0100647B190B3F2F671012AC37165C85962B6 E1679413DE6F824482AACAE6301C9311BBCE073B1349BE7A287D9B6486A683C4 4D4C541CF4667B55EC959511E0FB0DD4BFDE5F7F71341598CDD86CFD646C22C1 A2919208944AA9C75A62F1DEF2AB80DF12023564EEF49D56B0D6D05FE2757BA8 66F35AB485083ABE685486B81B68082FFE98C89CF09D0171A1FD0CB866E94AAF AEEEC73F2AADC9F1B1ACD6545BCDA0CE039891B541FC674F2D6831ABFFF143A6 8CBB10ACE99ADAC14E99ACDA73CF808B10E87B42DF4AE186BA18FBF828D0BC09 A4A1C10FE4C47233B57CAB00B6EDD73A38F345609EA860C884E22597A1AF21A2 4EEA28727C1A92FEF237B84507B38CAA4C66BF72CB2CF1C7F94562029B286AAD BF01AB7FFA13A1E0D33494802667C5A3EEF5D51BE02AC508A997B5F09B747089 2D7C3145EE5A9E7C15DB5AEC8304FB776F15122DF7B939265D4FCC43488EB42B 699CE8F68E943B035FA1F378E5621BCC00C810163737632CAB6826161D90448F 3403C32EB1B52D7FB65149EED419A765D56A05FE6A2706D998DBC84125D617A3 37351C9C547ABB6F1AB4FADEA5A265AF4D9B45BEC4147B6CC5110251A426350E 60F3172C40805292170B850FB347DD98793AFB38E475AD2BF38F8628987E3F50 651114D1527F030ADA4D61944E677977BB8EEE0C1EF98679246CB1D43403311F 5F09BCB30445487F82ED268577F22479EFE87DD0022D42D3328990B88601C3A0 D5A8389C4578C3DA01F653EEF9EB5D83A98A6939320FCD6F5B6A5A60FADBBCD7 E5A7DE5A95D1CC7DCF5A051C652B767FCBC59D61AB9FB5141F393F2028879995 4AB737BD26D81232CA8D64DAFF989F878537C305BB5C09889235BE3727BDEE32 EC5A4D06A68746CA33CCED3F1D456DFF0118E993C802AF0C3136FDA8B93BC16C E22A5C124972517594A82850CDC000F6505A7C5AE9E75800EFEC3815C130EE25 547A326325271049D9B178E23FC5FDE8880CDA9C903EB4B8A44F85620465FF4A D097A6D89A8B644E7D9944E180A3E1EC6D2581715EADFBF3C2BE3B330B1D208F B84C4B98E999C5684E9843E6AA2F932D1813DAF4931D12AF17FD2CB2387751D2 5D14CEA4C66C48C7E6FD61BA6D09E591188E7CFC0F5C306672481FC77B5C6D84 F589673C4F4EE90E2D3D1345196A10907A22585E7D55A9620FD7D191956DF340 4C98AB5A8A3D98798F2581D409FBACC2419A031666DC9967DD10A1A565A98672 BDCDD345FCEC9BC08698949C887E90EAF94B7CB450A9C45FCCF289DEF3380309 D7644EF509BCFF5628ED51E056FD7848A2A36E30551E13B2A2921AE2028B2C4D 902F7C901BC54F945AA1AA018EBA00AB9A2FB36159147C74880C06A26092B54C D3E6DD432A3507FA11384F0C08C68942C26ADD98DBE948D854199B19B0421687 7FC55F9284AF035C5C9DB4269FE72FB251030F9A5A31A75FBBB0DBB1151EC785 08F8CD88D6FD5A700AC0F6E0F37536C2F1228052846C3ADF9DDB7D56A57F19C1 B8382EB996D8FECE8F8B130B89037F9FD4D58426049F99B840F337BE6A9427DE B68BA69B32A301263F8881F35332FF35ED6BC15FBD4A8915C8CC37839BE3944E A15701B8FABC6D533FF5D8C96B1D599DF7E2738996520A0702307E3C91A476E5 C76AA881695D7400238B4EDC669BE334B84A66B9427432A3AB970D55A899DFCC 81F7C68D637F77121B75C0D6C073CD14A7311799CAD07684A5C0F662CB10CF9B FDC4CB98B6E7892BFE731360E35AD6008F8154E419FE86FCAB0264173127B1C7 92D6DAC832571CB2771F9EBF2486F61FBA0D94DBF0795D5653EDBA2F7441B683 C3E77B314D02C049282E7B749B80C326DE8DA52D632A1A9C3C84198785161129 D527239F456F6FA14CC264ACA06DCDF408278CF105A3786073709E365A85BBA4 74A20C47CF495A0913CE079F33B71BAAE3928C18D59B2DB6A38E54EAD9FB87B4 EA6D147D264E48E665A4DFB466A948811DE66770B0774C80BC2C54EB7452017A 52AC312508C6FB6A4DE3570A3DF50EB00540003382B91E06067A3D11E1DDC023 5EF8787F1F1015152BE7F3D5F88EDE778E946768E4E333288F4DE66D604822A7 5F2D5069B6CAB613145652E07F608A093645EB6DA6A9B231EB5EB31C097354B4 AF54E8AF3455011E51ECC74FEB9847FEE3C42DB441DC3E39DC1650E80BB2D530 823B1246699B391341E7D7BBE42DE15092EE2FACECE3B8290FBFE4567E4E3B09 973088770EC250F55AB5FB3E7ECC7537909622252E7967AE84368FE204800BC5 6C51A8DBB2DF121FD04225015DB5A39A1D6241C9874215D115A58D8329E752B4 D5CE3B1BE30D1703A044BA14B6C71F406733E771E8F9FC662C6DDEE86BAB4F68 DAFB63D8870938C3149CC07F6660AEC0296885F64905B8BC82B317DE4DD729C9 5989533686291EE980EA2470794FB3DEBEBE9E41F9BD793CE4DE37D9821D44EF 803651668599D59FA7D44526F67C73C954BBB28BB25BF8606340755D02B23C42 094CEF3CD30B04B9AE08FCDAC339FC1A9DD2008B0FF3C1F68C328541FDE6FBA9 98DE24C4C3B3FC7D3B0D86FE89B6716E57BF46CB201F6A5EF73F05444D024D34 639BA30B6D6F1A25D7CDB89D79FFD826663A3DCE5E9F4C72F06DD6C32A34CD22 A7A1B7E3CD27707F4F09EAF284ACB3D960A530D4932D08028CFEB3AFC2D59170 730ECD5D19B4D23108944CB7649AB0F1F3C286863A6A34A964A879D63CE05F1D FC11C5B69374F1993DCCFFC99D0E597C3BC99DE67E5059FF0672F79938F4CC4E 4C66D6DCB0239444F2E614D09692297C7329411AA1CD5A540F9D61EBE2AF8B58 DF46F4065672539C326B50BA1CB54DE5603D0799534ED0BE40AD5C72B4EBEF40 A5EEBD414F1639AB6C955557FF9BAA0B62DBD32895B0DE12FDB66694F3CABABD 7D54F0B29F8EA32CE746B652CC9E44EA64C3F8847053D8E50CE044C990A7BA13 7B1B0F4B2FA68D08A82C30E800F8B26CC84495B222ABB5E41824953315CE7F22 6D8FB5AA10A3EAE16A1B5BA8A283854C5A1735D5F628DB64C8DA6E51C727EA1E C3CF188BBE2473E9112529AA6A8DA151DBABCC26973531DD69B4A14D9783FF33 FCD1672B629CD4DAB4EF573DFE9C3BC550C446A34940BE4437F43CCD16CFA3C0 537ECBB7DCE1E76D9FCC2EA5E9E5656F7C7A3FE1611BA6A8AFF0667450A4A8CE 0706CDF854B4DEA79C5FC25A0556F44CA3593E89ED5881ECB5BB3EE6572F8F2D 4D31466C9AC2350898349C3208636F43D1EBF5BB2F01DCF827AD6C205F3B381F 800D5F4B827107AC881BD66BF5CEED3205535C8C3704A02614E6233344667C48 570C4B5A3326D2F58A6111AC9B0CA7F3A48DEC898FD5AA05929492B8FF061E1C 990E08AADA5E9711658E30F71BA41A7806BEB51BE0949777E1550F54C66B8AFF DF4129B42B71DE6101C57DAFA63FAA169145C0D6A0D6279658431E874C32250B AB0B09056CF7A096E7E644B5B629F275194CB0CCEFC7A802F123A587156AB136 513A7362EFC4C0EC330E11C3E25B9A943D2BDFDC1EA5C19DA64B47E690C2726A 0C0708F7A1DB146B80C6E8B4D30D28F6E8B7A7505EAC296258485AFF374652EF ED73EFC04C6CFD28890F035DBB7A0CFCECE8AA68FA622390B782E595D4157106 802499D76B0351617B5CDFF4F7F758DAD993DB5628B346240DF540E821144C5B D7FAC2C00B22D8DD374C6FED26F619FF150AA2292A9D03AC7F5F6A20B3283890 C80DB07E6923B6C485819A849BA8A3F18F7B4D309802AB3D489587721417A2DD 0B1A4D9994E3C611E3289465E657939EC06D752330EDD2D475E67F345C3527BF 0175182934D53176D5877D064F6FE1C1D559DC657E4C2CC83FB022A38E6E406F E8F85B556F9A771F4DDA35AAE7C76DE0CCF5C2A9D9F4AC946C1A836553D792C3 F2F8FEFF9A6D7DAB2FA5F0C9973FF8E3206680D96ACF9CAF54FB6274B99E3F9D 7E2B64C85EFDE220C15BF9F4AB5CB772197464078AE34FFEA9095DDBE6B0EFE7 4AFCCEA58D12EB46648093EF927A8E600F0D4E239BCDDE8DD5AB6A651018E932 746F18584378B3B4899B6E5E7B3C742835BBDE2D9271AA95E1E1C714F51B8D08 562CFF8AC79F495578993955611AD98303AAD37FEA8CF9AF63543C1B4DC0281E 1269CECEAE77D660AB8800EAF547ADA30278345A189EB7CE9B03B936F3511496 84E87A395C9012C66EE994141779E4282AE968FFC1E764C45751CCB23049BEED 069E6AC75A8CA8D115B4C269C8E6EB3047E0A17251D46D389F43809423BC2A8D 1730A54F8ED38019DDC4BC752539AA8FE9514EBC42F74FC8B50A850D09829810 4CF7546878A85B8A9CCCFC866B5C30E1E5295E50D2E05F02B414B04830756970 09BE8D4898B2CB6D2E95FA6890A620DD863B30C1EC77C08AFA711EF6C0D45878 2E93BB6E2B4B44A5D24C55C22E6D58E4AE93A566B5545783E1B54B937D68BF21 45A1CFA44CA87DBCEC8EF7A309015EB883D14BFD9DC89DF814697740C100B0E2 1A5DD11DEE47681B153C4CFA026451660213253618E16F5C3B2D590363786BF0 83E23B438E0FE85597F74C40611C5D3BB944108416AE0960432B8E59D8B64197 81DAC51D615971E976768826B90CE2C563E498B8EE3A2D28546814F3D7E6DA78 217C56ABD4CD323029CDB3C01B1885A9E12D5F92E773F31B50E2DC680708B37A F234AB215B75DE93E7912E20DC4937EBE1208B476DD8BCF68F115B72FA76AF8B B14AAC4AC7097D55B469262970369AC25526BDF3EFA81563066A37A4A71C19C2 27611CF279C483B6C0CDE8B302C531E8F776CD557D91F348494088D6AC9CBD93 7D0935EB5CE4C558247EFE669A39C56DC5F683337235E405BDB83CCAC1EA995A 7E437ADB4B9576683D8E6776830D570699D696B0C233BDA475B1909197F57B04 92A0A6F9D72F4E8A56A71CC7F4729C06A5C4F9915FBA4857276A50D2A4B857D5 3F20433EB0098D714E526D288CB0F36B88B989FF98EAA2AC2FD44DE6E0159E98 341459E97C035442EE8974C465ED07924FE76933E6C6B2D0D632EFE2FDCEDF92 6D1B58D9266F961916E0B21C7EDA8533638DE541728C38225C8EDBA3DF56D9DF 7CEE29D9EF955215974AB20AC024439A3730BA9227B1DBDABAA2D83443CC2F57 21F0ADCFB8C2AF6FC327F9AB05C646C7BBFF81F3C3DAD7840CB477A2584695AC 45BA0AB785FF4C993900136B6139E4D26B5EABF1BF17A80C6370CC2BC3540A0E 4A4914C8F61A9608DE06BC8DABAB1492482AE665460981F4258B05E8F3A197C5 30350BEA2DC89BA16224E570290845A6C7096C0C7707DAECFC85F9C853B8D65A 616E3323082033D542C13FCB10BCBDA0BA71445145A511641BD12B35AB5D8E74 11D5EFEDE88EF9392103EC087932CF217CB44935FC6F99353CEC68F814950518 EF919470486379FD02265F766244436BD290C65600D964044989C7F6A9672EF7 803021A9E4AA6818125000EAE5F90D382AAE0908A26FC6083A90B88FEEC0746A 9F008C010CA98EEA7AAEA307037D2CA7200CA9BB68916CCAAB05E57FE7164A7D C3D820303340D49EB29E6EF22A023F2D42D67A664F38C4FBDFC9A31A28A02145 E38CC211BC73DF5F661EE9A3CAA076E43EB233583865289F66A7ACBE315AF81B AFA2CFDE8A20549941EAE2E73E33BD0EB8D075F492724BC444FE8953F5F77B2B 4E7378CE552F79C360EEBA56B64CAA47DF10D14402EBEDFFF7069444AE3EBE3A E96201E14EF892868F9AA982E738DCFE7E8DBE41C8F43A227EFC9EED795F5D6B 40D3A08D867F363232B20C71CF2E44B884A8CF28D96A028BE7C67DE00765793A B1C867F0DF3E1D578D96428CF1E66632EB746C4B71314D5D009BEC8CA52A7518 89B9255BDF988262A4BAF717FAB90525C81C223D4936F0AEE0E40908CC9E0DF3 17AD71C0F5009CA00E1E6F8CD308501356235F63CB112C6760963857B6B20A94 7FC16C899A7EA6743267F889D070698554DECE912C6052E04DF59FC85E67561B 3C7345EA3E21DB7206A14EAC4F46F457A83C1E2877B56EC49EF87B9B363F4B77 BB6F51C3F1454325010AD71E28E935E74924A6ADA4A08C6C723276CBD4DA333E C3590B7FB914E25828CEAC502704BB4C8C0C64395EED986F91D8C940D3F0ADEF 1F2749400B4D9A8BEA50CF4732DCBE21A6BA4DC17762BABC34DFA16EBF988574 6B6363A6075CD4784CB799E35D29425D55AF001F51E565FCF4D18E98EF3C94C8 5B88BC96A9157BED2529803EDE8E42BB57FD504764175EAED257D6E62CF9A17F 3E08727A38A0A43221BD62CBC2818ED5DDABD2E2FA6141D986229528AAEE7C73 532A8D78FB8FDF433022F0EA43B63EEC52D3829E84AF010A2A19742296D91415 42F9E632FFB3F0D8457AF426F0CA3B9A1D56DABD0537C9B5A9CA82E42A647CF9 BA8D38F49445387AC896F16D85708BD8CE4BAA625EA09621EC17FD1A1377807E DD68854483E84C181532D3B70680773CFE5D580712FD948F5D34354394D4E502 6AD35AB042519E82177E06284CCAE4AF2C6D918FB32DFF205E9D9C88E31143FC 66DC0572961089CD0F2AD2EF82CF204E8AAB1F0122130232ACE276B134A9BB0E 91FF8020FBF69B32C93F1C10026F6B2E1D40796313D974E066BF799311595012 59886A161B669C22EFD773802ED9321BE23DFC3240D170BE8499E1735623A130 054EB5EC958884699867E3C94FFE49CBC9AD6C3C935E56C0712CDEB13BA92E2A AA843CD9A30BA3C01ECC284DA4AEE6689A1A9E3D7D0F6A144C658F9441E730FC 24831893520FB7D2C69104E56D5D49DD6A86152C9BFE88F6166104AEF80B992D 406205CEA63C31A7B46D6B8C9A1782A0A0A30DD52066642554735406851F863B BF981B4C8DC4882A03BCB160A06D18D72E61A49A23163BF92D091C35CEE0CB85 04E3D95F3E98CBCC53B0015AD136FC481078ECF65B62EDD8EA3EF1B938119D10 36D6D85412D1104BFAD6A4589C17B40EEEC5C3FC90933D9095B49A6956CF9F61 E54384137A39A509200B0E51C1625CB599A91B287744677E059E6BA039B6146E 791EAE2676D2E233F2659C92A10D32A055935A193D4480B4E7069D3DDEEAC166 1D24FE041BDD02D1A84CD43C43331AFE821B4ACC22F165DC53890D66606FA10C B83E2BBA03C826B958FA79C31E081B5396297013A70E1FE82E76C8512402EAE6 840E5943B19623473FF8F215D6332EC26D1DD0760142E4296287F98A30CB2A82 8A639137E8BB018AE16F54FFB9100F533587B4812B5A7EBB0C2DD22D20F1B55B D241DAA8614240F2B528CD48CD2F71496F181A94F181F7E85D07E4180CEFAB87 57090401893BD680891ED7E7C9218409DD4995F3DF56E77F79CD06B9207328C1 1427488F5876672E3806D8B8E0BB95AABA421B6629EA9A5A5FC811D43209610B F729AA30565DC4C4A2CA67721FF1F87A4C4B26BBFB2B68766840DD148024FB21 F2750EFD0F31FE624CAC5D606B6C14C15B1FD7D4DFF182F436399C19F22C9F57 F243086E319BFFD7412871031E5226D494B41EB70093103C606ACD02F6B2737A 31C6DC7E3617F617471C37861161C799646C1CF8B60E9A5366C3A9EA785ADFE5 2AA75D252775300DDF7F463E15FF6EAD513BC042837243F8514AF04586F5E451 AEAA68E3C96574415497576D010A6D68148DE883083070DAD871E8F151C1C1F2 2E82F50EEDEE298EE66699BADAA6677586F59AE3DA5038F513FDCFD7978B2829 794271AD63CA26EA8970DCA4F32B57C09799C9B8D78BFBC50FD36A3F3F254799 B313915C9640A27AF3530C68FA3053AEF80B2659AD152CAC44BEFDCA211EFD6B 1DC6A25A08183879CDB74DD95EE2779416C0B3EA306720FABA153F3BD94B0DC2 A429050A7D6B7B5A54C2AF4F45194667C3CF2EC4014444717DC6C7100035C504 216661A97B632FA32FC1E021AFB75B395ABF844C558122C416F3CAB82B4ED56F 15589E9F34CCB7C0C7F7B5FBBF48169105355F6EFF2F41A212C24A81BB9A466C 598B921E0CF721A525187BC75CB3B2DE6A94205517B2CAA504F351BA0DC5C26A 28CF5AC9DF3C81B888AA3C930DE00DA50DB0422A0D85A00C7E2AE3061E1E17DA 55B3E3C998466DB8337E81059214406CC58CC1C204EB3D435C50B52E14B91905 CC33F6D9C78342EBDD3033EB6A8D41530105CDB05B2E67606A022D366284CEC8 6BB9FF090261A42EDE521B2BD2D955050F3BD2EDE7976A68F17F889943C369FD 564CC15CC19D082B2EF4FDCB95E835A0CA799B4F8B68215006ECC332955837F1 9118D86E07EA5D7815F66D3907EFAC1A2B76845B90B1D385EB08434B5DB96FC0 59A97A94E4C21015EE22E04BA4A962F5ED4BF157A6 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark % End of font resource %% Font Page 00 /LuxiSerif-BoldOblique-ENC-00 [ /.notdef/H/e/p/M/C/colon/I/O/underscore/B/a/s/l/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef /.notdef/.notdef/.notdef/.notdef/.notdef] def /LuxiSerif-BoldOblique-Uni-00 LuxiSerif-BoldOblique-ENC-00 /LuxiSerif-BoldOblique MFEmb %%BeginFont: LuxiSerif-BoldOblique %!PS-AdobeFont-1.0 Composite Font %%FontName: LuxiSerif-BoldOblique-Uni %%Creator: Composite font created by Qt 25 dict begin /FontName /LuxiSerif-BoldOblique-Uni def /PaintType 0 def /FontMatrix[1 0 0 1 0 0]def /FontType 0 def /FMapType 2 def /Encoding [ 0]def /FDepVector [ /LuxiSerif-BoldOblique-Uni-00 findfont ]def FontName currentdict end definefont pop %%EndFont /F1 10.6667/LuxiSerif-Uni DF /F2 10.6667/LuxiSerif-Bold-Uni DF /F3 10.6667/LuxiSerif-BoldOblique-Uni DF %%EndSetup %%Page: 1 1 %%BeginPageSetup QI %%EndPageSetup [1 0 0 1 -12 -25]ST 0 0 B 0 0 PE WB W BC 12 25 432 547 R 255 0 0 P1 NB 261.5 118.5 177.5 77.5 DL 326.5 270.5 343.5 163.5 DL 162.5 466.5 276.5 448.5 DL 162.5 493.5 274.5 521.5 DL 0 0 B 0 0 PE 1 255 0 0 BR NP 177 77 MT 184 85 LT 197 87 LT 188 78 LT CP BF QS 0 0 B 0 0 PE NP 343 163 MT 337 172 LT 340 185 LT 346 174 LT CP BF QS 0 0 B 0 0 PE WB NP 162 466 MT 174 471 LT 172 458 LT 162 466 LT CP BF QS 0 0 B 0 0 PE NP 162 493 MT 171 502 LT 174 489 LT 162 493 LT CP BF QS 255 0 0 P1 NB 184.5 85.5 177.5 77.5 DL 188.5 78.5 197.5 87.5 DL 197.5 87.5 184.5 85.5 DL 177.5 77.5 188.5 78.5 DL 337.5 172.5 343.5 163.5 DL 346.5 174.5 340.5 185.5 DL 340.5 185.5 337.5 172.5 DL 343.5 163.5 346.5 174.5 DL 174.5 471.5 162.5 466.5 DL CLSTART 244 138 188 19 ACR CLEND 50 d2 P1 F1 F 176 Y<00010002000300040005000600020007000800020009000A000A000A000A000A000A000A000A000A000A000A000A000B0007000C0004000D000E0008000F000C00030005000600020007000800020009>180 260 AT CLO [1 0 0 1 -12 -25]ST CLSTART 236 227 153 19 ACR CLEND 50 d2 P1 NB F1 F 265 Y<0001000B001000070008000F000E0011000200120005000F0003000A000A000A000A000A000A000A000A000A000B001000070008000F000E0011000200120005000C000D0008>145 252 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 NB 172.5 458.5 174.5 471.5 DL 172.5 458.5 162.5 466.5 DL 171.5 502.5 162.5 493.5 DL 174.5 489.5 171.5 502.5 DL 174.5 489.5 162.5 493.5 DL 255 0 0 P1 1 255 255 192 BR 12 25 165 105 R CLO [1 0 0 1 -12 -25]ST CLSTART 5 0 155 15 ACR CLEND B P1 1 255 255 192 BR F2 F 37 Y<00010002000300040005000600060007000200080009000A00020008000B>94 47 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 176.5 40.5 12 HL CLO [1 0 0 1 -12 -25]ST CLSTART 5 15 105 15 ACR CLEND B P1 1 255 255 192 BR F1 F 51 Y<0012000F00130003001000110005000B0007000C000E0002001200120005000F0004000A0014000A000F00030008>103 18 AT CLO [1 0 0 1 -12 -25]ST CLSTART 5 30 90 15 ACR CLEND B P1 1 255 255 192 BR F1 F 66 Y<0002000600020003000800050003000D0015001600020007000A0014000A000F00030008>88 18 AT CLO [1 0 0 1 -12 -25]ST CLSTART 5 45 135 15 ACR CLEND B P1 1 255 255 192 BR F1 F 81 Y<00170002000F0013001800080012000A0014000A0019000C000300080010000F000300020007001A0004000C000D001600110002001B>133 18 AT CLO [1 0 0 1 -12 -25]ST CLSTART 5 60 155 15 ACR CLEND B P1 1 255 255 192 BR F1 F 96 Y<0007001000030004000C00150005001200080010000800020012000A0014000A0019000C000300080010000F000300020007001A0011000C00030013001B>153 18 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 176.5 100.5 12 HL CLO [1 0 0 1 -12 -25]ST CLSTART 5 75 78 15 ACR CLEND B P1 1 255 255 192 BR F1 F 111 Y<0006000200070008000200090005000F00080002000700100008000C0007001C001D>76 18 AT CLO [1 0 0 1 -12 -25]ST CLSTART 5 90 83 15 ACR CLEND B P1 1 255 255 192 BR F1 F 126 Y<000B001000070008000F0011000E00020005000F00080002000700100008000C0007001C001D>81 18 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 261 73 165 90 R CLO [1 0 0 1 -12 -25]ST CLSTART 254 48 155 15 ACR CLEND B P1 1 255 255 192 BR F2 F 85 Y<0001000200030004000500060006000700020008000C0002000D000B0002000E>99 294 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 425.5 88.5 261 HL CLO [1 0 0 1 -12 -25]ST CLSTART 254 63 101 15 ACR CLEND B P1 1 255 255 192 BR F1 F 99 Y<000B000C0012000F0008000F000C0003000A0014000A001E000C000D0007001F0002000E0008000C0007>99 267 AT CLO [1 0 0 1 -12 -25]ST CLSTART 254 78 32 15 ACR CLEND B P1 1 255 255 192 BR F1 F 114 Y<000F0004000A0014000A000F00030008>30 267 AT CLO [1 0 0 1 -12 -25]ST CLSTART 254 93 135 15 ACR CLEND B P1 1 255 255 192 BR F1 F 129 Y<00170002000F0013001800080012000A0014000A0019000C000300080010000F000300020007001A0004000C000D001600110002001B>133 267 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 425.5 133.5 261 HL CLO [1 0 0 1 -12 -25]ST CLSTART 254 108 155 15 ACR CLEND B P1 1 255 255 192 BR F1 F 144 Y<000B001000070008000F000E001100020005000F00080002000700100008000C0007001C002000080002000700100008000C000700210010000300130002000A0014000A001D>153 267 AT CLO [1 0 0 1 -12 -25]ST CLSTART 254 123 150 15 ACR CLEND B P1 1 255 255 192 BR F1 F 159 Y<0006000200070008000200090005000F00080002000700100008000C0007001C002000080002000700100008000C000700210010000300130002000A0014000A001D>148 267 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 225 270 203 112 R CLO [1 0 0 1 -12 -25]ST CLSTART 218 245 193 15 ACR CLEND B P1 1 255 255 192 BR F2 F 282 Y<0001000200030004000500060006000700020008000F0010000D000B0011001200130002>104 274 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 427.5 285.5 225 HL CLO [1 0 0 1 -12 -25]ST CLSTART 218 260 117 15 ACR CLEND B P1 1 255 255 192 BR F1 F 296 Y<0015000C0015000200030008000D0015000A0014000A001E000C000D0007001F0002000E0008000C0007>115 231 AT CLO [1 0 0 1 -12 -25]ST CLSTART 218 275 116 15 ACR CLEND B P1 1 255 255 192 BR F1 F 311 Y<00130002000300020007001000080002000400050015001000120012000A0014000A0004000C000D001600110002>114 231 AT CLO [1 0 0 1 -12 -25]ST CLSTART 218 290 56 15 ACR CLEND B P1 1 255 255 192 BR F1 F 326 Y<000B000400130005000F0004000A0014000A000F00030008>54 231 AT CLO [1 0 0 1 -12 -25]ST CLSTART 218 305 48 15 ACR CLEND B P1 1 255 255 192 BR F1 F 341 Y<0012000800100008000D0012000A0014000A000F00030008>46 231 AT CLO [1 0 0 1 -12 -25]ST CLSTART 218 320 193 15 ACR CLEND B P1 1 255 255 192 BR F1 F 356 Y<00220011000C0017000A0014000A0019000C000300080010000F000300020007001A001E0011000C0017000A00080023000B00020024000A001E0011000C0017000A000F0003000400020009001B>191 231 AT CLO [1 0 0 1 -12 -25]ST CLSTART 218 335 124 15 ACR CLEND B P1 1 255 255 192 BR F1 F 371 Y<000B000C001100100007000F002500100008000F000C0003000A0014000A00260018000700020002001F0002000E0008000C0007>122 231 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 427.5 375.5 225 HL 255 0 0 P1 1 255 255 192 BR 38 439 124 82 R CLO [1 0 0 1 -12 -25]ST CLSTART 31 414 114 15 ACR CLEND B P1 1 255 255 192 BR F3 F 451 Y<0001000200030004000500060006000700080009000A000B000C00020005000D000B000C000C>112 43 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 161.5 454.5 38 HL 255 0 0 P1 161.5 461.5 38 HL CLO [1 0 0 1 -12 -25]ST CLSTART 31 436 87 15 ACR CLEND B P1 1 255 255 192 BR F1 F 472 Y<000700020010000400050003000200090008000500020006000200030008001C001D>85 44 AT CLO [1 0 0 1 -12 -25]ST CLSTART 31 451 64 15 ACR CLEND B P1 1 255 255 192 BR F1 F 487 Y<00170007000F00080002000500020006000200030008001C001D>62 44 AT CLO [1 0 0 1 -12 -25]ST CLSTART 31 466 64 15 ACR CLEND B P1 1 255 255 192 BR F1 F 502 Y<000C000B0002000700100008000C0007000A001B001B001C001D>62 44 AT CLO [1 0 0 1 -12 -25]ST CLSTART 31 481 64 15 ACR CLEND B P1 1 255 255 192 BR F1 F 517 Y<000C000B0002000700100008000C0007000A001A001A001C001D>62 44 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 276 429 122 39 R CLO [1 0 0 1 -12 -25]ST CLSTART 269 404 112 39 ACR CLEND B P1 1 255 255 192 BR F2 F 453 Y<000100020003000400050006000600140015001600010009000F0009000C0017>110 282 AT CLO [1 0 0 1 -12 -25]ST 255 0 0 P1 1 255 255 192 BR 274 502 125 39 R CLO [1 0 0 1 -12 -25]ST CLSTART 267 477 115 39 ACR CLEND B P1 1 255 255 192 BR F2 F 526 Y<00010002000300040005000600060014001500160007000200080009000A00020008000B>113 280 AT QP %%Trailer %%Pages: 1 %%DocumentFonts: LuxiSerif LuxiSerif-Bold LuxiSerif-BoldOblique %%EOF �������������������hepmc-2.06.09.orig/doc/doxygen.conf�����������������������������������������������������������������0000644�0001750�0001750�00000020502�11763464675�017720� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Doxyfile 1.4.7 #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = HepMC PROJECT_NUMBER = 2.06.09 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English USE_WINDOWS_ENCODING = NO BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = ALWAYS_DETAILED_SEC = NO INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = NO STRIP_FROM_PATH = STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO DETAILS_AT_TOP = NO INHERIT_DOCS = YES SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 8 ALIASES = OPTIMIZE_OUTPUT_FOR_C = NO OPTIMIZE_OUTPUT_JAVA = NO BUILTIN_STL_SUPPORT = YES DISTRIBUTE_GROUP_DOC = NO SUBGROUPING = YES #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- EXTRACT_ALL = YES EXTRACT_PRIVATE = NO EXTRACT_STATIC = YES EXTRACT_LOCAL_CLASSES = YES EXTRACT_LOCAL_METHODS = NO HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_CLASSES = NO HIDE_FRIEND_COMPOUNDS = NO HIDE_IN_BODY_DOCS = NO INTERNAL_DOCS = NO CASE_SENSE_NAMES = YES HIDE_SCOPE_NAMES = NO SHOW_INCLUDE_FILES = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES SORT_BRIEF_DOCS = NO SORT_BY_SCOPE_NAME = NO GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST= YES ENABLED_SECTIONS = MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = YES SHOW_DIRECTORIES = YES FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- QUIET = YES WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO WARN_FORMAT = "$file:$line: $text" WARN_LOGFILE = doxygen.warnings #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- INPUT = ../ FILE_PATTERNS = RECURSIVE = YES EXCLUDE = ../doc EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = EXAMPLE_PATH = ../examples ../test EXAMPLE_PATTERNS = *.cc *.f *.h *.cc.in EXAMPLE_RECURSIVE = NO IMAGE_PATH = INPUT_FILTER = FILTER_PATTERNS = FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- SOURCE_BROWSER = YES INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES REFERENCED_BY_RELATION = YES REFERENCES_RELATION = YES REFERENCES_LINK_SOURCE = YES USE_HTAGS = NO VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- ALPHABETICAL_INDEX = NO COLS_IN_ALPHA_INDEX = 5 IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES HTML_OUTPUT = html HTML_FILE_EXTENSION = .html HTML_HEADER = doxygen-template HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES GENERATE_HTMLHELP = NO CHM_FILE = HHC_LOCATION = GENERATE_CHI = NO BINARY_TOC = NO TOC_EXPAND = NO DISABLE_INDEX = NO ENUM_VALUES_PER_LINE = 4 GENERATE_TREEVIEW = NO TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- GENERATE_LATEX = YES LATEX_OUTPUT = latex LATEX_CMD_NAME = latex MAKEINDEX_CMD_NAME = makeindex COMPACT_LATEX = NO PAPER_TYPE = a4wide EXTRA_PACKAGES = LATEX_HEADER = PDF_HYPERLINKS = NO USE_PDFLATEX = YES LATEX_BATCHMODE = YES LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- GENERATE_RTF = NO RTF_OUTPUT = rtf COMPACT_RTF = NO RTF_HYPERLINKS = NO RTF_STYLESHEET_FILE = RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- GENERATE_MAN = NO MAN_OUTPUT = man MAN_EXTENSION = .3 MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- GENERATE_XML = NO XML_OUTPUT = xml XML_SCHEMA = XML_DTD = XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- GENERATE_PERLMOD = NO PERLMOD_LATEX = NO PERLMOD_PRETTY = YES PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- ENABLE_PREPROCESSING = YES MACRO_EXPANSION = YES EXPAND_ONLY_PREDEF = YES SEARCH_INCLUDES = YES INCLUDE_PATH = INCLUDE_FILE_PATTERNS = PREDEFINED = EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- TAGFILES = GENERATE_TAGFILE = html/reference_tags.xml ALLEXTERNALS = NO EXTERNAL_GROUPS = YES PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- CLASS_DIAGRAMS = YES HIDE_UNDOC_RELATIONS = YES HAVE_DOT = NO CLASS_GRAPH = YES COLLABORATION_GRAPH = YES GROUP_GRAPHS = YES UML_LOOK = YES TEMPLATE_RELATIONS = YES INCLUDE_GRAPH = YES INCLUDED_BY_GRAPH = YES CALL_GRAPH = NO CALLER_GRAPH = NO GRAPHICAL_HIERARCHY = YES DIRECTORY_GRAPH = YES DOT_IMAGE_FORMAT = png DOT_PATH = DOTFILE_DIRS = MAX_DOT_GRAPH_WIDTH = 1024 MAX_DOT_GRAPH_HEIGHT = 1024 MAX_DOT_GRAPH_DEPTH = 0 DOT_TRANSPARENT = NO DOT_MULTI_TARGETS = NO GENERATE_LEGEND = YES DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- SEARCHENGINE = NO ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������hepmc-2.06.09.orig/doc/doxygen-template�������������������������������������������������������������0000755�0001750�0001750�00000001425�10562462416�020576� 0����������������������������������������������������������������������������������������������������ustar �sylvestre�����������������������sylvestre��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<head> <title>HepMC Reference Documentation

HepMC Reference Documentation

HepMC

hepmc-2.06.09.orig/doc/HepMC2_reference_manual.pdf0000644000175000017500000305634311763470503022462 0ustar sylvestresylvestre%PDF-1.4 3 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ=αNÃ@ à=Oqc2œ±ûr×hA•º ÛCJ]PÕHíÛ“ä"&ë·~}öc®vŒŽZ ìòÙ1·)“ÔAŠ<-Oïõ«ýžÏŠõ›íbç•x臱ÿn>ò¾HIu‘4A§DÎS™æì0`LsÝyÅ©ƒó‚Ð"…¥ñbƒ]ú« ¼—ùüs»ÙP@÷2B A–ß88ψ£,`nDëqýv?®„®’n7Ò•ÄH<³Õ6WûBˆendstream endobj 2 0 obj << /Type /Page /Contents 3 0 R /Resources 1 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 7 0 R >> endobj 1 0 obj << /Font << /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 10 0 obj << /Length 8 /Filter /FlateDecode >> stream xÚendstream endobj 9 0 obj << /Type /Page /Contents 10 0 R /Resources 8 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 7 0 R >> endobj 8 0 obj << /ProcSet [ /PDF ] >> endobj 13 0 obj << /Length 663 /Filter /FlateDecode >> stream xÚí—MoÚ0Çïý9&‡$~¹Ž¶bS7U·m+¸)(ɤòíç8@¤²•ö;,ãçŸÿÏÏ _wé#b" ‹—@‚€’0Y°Xþ gå¶ÕÛ¶‰þ,¾Ù½2‘Ì<ÌVÄŒ'’»F1„s]}ŸE1¢ ¼ÏëŠPgmYïú¥y®keW³uiØ- À¤ùy @bN'A yÂ#}˜Ä¢çl\7QL1 ó0Z®òA¤ôÜ 9Gc‡ä⃳H$@rjE—¨n*•éþë×íR¿šabO`h ØÙÁOyÓF±€øöPYFØ—¾d4̨> endobj 11 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 19 0 obj << /Length 1200 /Filter /FlateDecode >> stream xÚÝš]oÛ6†ïý+t)µÆÃoÅ€%s—Xš5nwQj3©Çö,9iþý(‹N$…’ìnId_É’FïsÏyIéhÔûåæž 7‡Ñ•§'8„ öF“/~_G§á2Å=´¾xüál4<]d_õ†£˜ëȃõ32ÂÁßôþé}ùмIy§=%™wgNIaï¦G1ÙœL{½¿Æé›úÅ‘ŽÖ÷‰ ÷ ˆ†ŠRO`sMä÷*Cô1äŸèşǃÁD§Q< úØ\:‹nt²ˆÆ:?ý¨¯ôRϲS!¥}†Ð^¨RO/䱎•a"JY(¬ åÓ,N“6&’’ý…QdB¡ÄDn p åü>ýG²5GÞ§ùIVÄ™?¢Ú.qì=¨­yÑŒW¥€ö!/L}lʳU†Ù)˜3;žF‰¥ùû|¼ºÑ³4JãùÌ\ ±O™¼TõìØÅ\V!”'øñ|–¤èÙð6æ›qϳc´LãñTŒf×úɈ¥z}Ø9^暺*Ä-r?àëeª³ ?Z B»¢ØUÀUHÜ‚‹aÎ&­:•â]Ñ)Ý‘¥íBÏ—óÉjœM”V½”ËU˜KSÎ2—11Ç8‰¾Mõe|•Ov€âdÇÆaÖt½uÔó/¨öoc˜z!Øüêª((ÄDQû‹‹tiàæ$G@¾¾YL£ÔÑ){\Œ”ÏÐq ©T¬šEüyX—I]&ØÑ4Ño6´žJpˆ¹äÏ@Ÿñç% –°4÷Ç«$³pÖ³&¾,ÄêE§rYqùz¹Œ-i*³\©¦²|ÒeNSS›õ•¹ùÿcg ¿ab J,q%—U™ð»é<ÀÌ¿kì+ßÛ2ênÑ€²È=òÊZó|µ´žkœÎ—„ÈR›ƒ³Í”èïr¼œ'É…[k_oB™Ü;jrW)®1Åšôï°eõük¢­¥rw¤ŸX»Êäo\8Q8”¥RΨf“Hf?¹ÞÎq¤:9*ÏŠµÓVí;Ù@¥dGü­™¬UðOx#!d·Üoe_û1Þ¼EþNÖHv¨QÕ³š¾Wv„': 0òoïß·¬õ…:¨:X·W„Ë–ñdx>ü<ºü{-º¹èuo‡­^=ÇîܰnñûIy³–½ÍU·G‹þ‡‹Cyl¾ý.I‘bÝf )[Ë÷.KÆq\¬*Isÿû(gáÞ[!PEq%º »ÆS¾çõE‚ãE3‰ Bþû{f…Žìëp]eõaã ¯ˆ|»ß¼òãþZÏ6þ:¸’1endstream endobj 18 0 obj << /Type /Page /Contents 19 0 R /Resources 17 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 7 0 R >> endobj 17 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 25 0 obj << /Length 1198 /Filter /FlateDecode >> stream xÚíšMoÛ8†ïþ:ʇ°~ÓXì!©“&@[o#lÝ"Pm9àHYYÉ6ûë—¶$¯m‰Š[Gjœø¤o‚|ôÎ gÈc¯óæ”G#-ÌÁ;;Râˆã¾¸'?xýÞe÷«wá0`Hhà^< Ãp~»Ó÷:`naŸs‰8à o:w¾|ÅΨƒ‹FT+îüc.0­‰sÓa„ÓÎeçe;G¦¡£Õ–Ž=Å+=ÌfÌ‘ÄÜ“Yo5¢¤{Ä9vß·ïOz½óWýïÃà6 ã¨{D̃“©?›e§Ÿ‚qÑ00Ÿhâ"sÀø™˜ÖÖg° Š-~‘Á ¦¢B7œQÿ¾ Ü ¢´Ž‰tß™ˆu&¼`Â6™¼ëúzu4°=§¡±…/ÓøÔåÜý|~VGDâ}ׇæ›kDFAê‡Ó^/œ]ùI˜Nn‚4ο|s °ê‘F„ƒÎÝãoÙ+N ªYþ†WшB\J•¿ðû£M\¦ÉÝ07c¯+±ÜÜNý4(ý-ÊE;Ô%Ö.ÁdAö„¡‰•(iNî@˜l x8ñ“ªf4T§‡,™h+ͱ*M…,QU­PÅwߦAEC& ¬/Ó¼! ,ª PªEÉèVˆþ…1ý´ ©y³§'*”nV©ü¥jÊÔ¦TnlUAŠ0@P´â\EÎVR$¨MÑ2h…í4Ž®­Š…=”¬\“¬.I–´‡u1v«Ÿe) ºørwŒ*ÃHL8£¥ Åh+g“8©t¨ÄØ— Ä(!›•§.äI0ÁKVÏÚá^GÁ(½ezÅL¿hêTŠïLp®N¬º—x+ï¢-8òyÏ © Êw …}‚”ðAñ VÇyˆIÁŸà||;+‘‰ ˜’”ìY¶“„®ƒ´u#E!ÌôøéIJµBZ œO(1-IQý „¶È#0R&l?ŸÔ>c˜g@„º$Ã<:Ÿ-‹†gq<ª+ i¡žwaèg‹F+µ#¼ºšÆqÁë4Œüéeºüc¶*Ù_X?Vo#`©Çr(˜Í¥µUqúuhLV×'9©äõþaðNB¿Vn’”ED´€2˜Äiýr#ì¥ÝJJ[豂ÞÂc-|×Áme̶˜!/˜}¾:Žgõ’“\½‘°ˆl=5ŒÆçÑ8®]uÓòE*ŠX•ÏùoÈf,V'«LáæÀ~Ri6w¦– ùä ©eq˜ë%Hy¹ H¨6m— Õä6 Iµ",AêÈm@R ÈõõŒA<õ“ð_ÿ±­RôÞSʸXvL‰<‘$a”žLÂéÈŒ¼vj§øËŸSK¤l…ÖÛ`6 ¢‘¥³Z`^""fÉ_A4˜'ë~’†Ãim]¨‰-Ïœ%_bÜ£Y½Äðjœ:³EÇ"ƒHî£.Ãî}mˆ”À_wld´bó|sPºû敆ŽóÖiIU±Ó0™¹‰³ ?- ¥{]MÜ»ÜS\Ì}Ç]þ$Ïk€÷8î±|rN0ìlÜ%Ü“ìbâ³ÓoÙñmüýáÚĵ|øÿ›æ¯endstream endobj 24 0 obj << /Type /Page /Contents 25 0 R /Resources 23 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 7 0 R >> endobj 23 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 28 0 obj << /Length 1090 /Filter /FlateDecode >> stream xÚåšËr›H†÷<K±Ó÷‹—ÖÈc»Ê±1É"I¥nIT!Ð lGo? .É¢ÁUÙD°â&·é¯ÿÓÿ9M_Î_Wˆ¹Ò—L‚¥+Ëô)‚È ¿Nb‚ɳ÷=¸u1>”ÌÕƒÙý‡`þ!X”œyà@}¸°j€rŸbÝhãüç|ýÜG¸·ð±Ô}Ñ@·$‘»qÂÍEâ,œ¯íLuCÓÖ.«wï ñ%!.Gú7ï+}&¼)¥`²ÍŸ·oŠôé¢ÈŸ¢ÂœRK•«4RÞK>ñõØHÙ÷®‡Z ¬ ¹Ï¥lÊšàn× PR4r€ì hr`^«íÝìâBãSáæ&]fá, w»šøìá*¼UVA <&j³}ð „yG‰º ·]„(cçĤ‚A±E"è˜Æ:Wê³!œ¨¨ÈòN  C(”µ ¡ùâ -”xµ.fYZ„qª:éIÎN$ • ÞXñ{›"á*EEó—Ó÷«8Qæìï,zÚ(ͨˆ³Tßâ˜Hݸ¬?òκíðPû°?Ë6Û0Wÿ¨tþ\F§nÒ¢·ÿíÐIÊônÆC¶­„ì€Ö|˜„ƒâ£ýí4p5ž:pUþLÔxÙ EðÑå ÚÛuEjp¥˜~…›­¦wù'¯òºÊ³Í"ÊÃ"Z÷„"ÇÓuÔ.zÚó×N/T¢ÍPÏeÝ]Fòåa¨`‹ Ø)–»ýµÊ_âU7 BÐ@æÒ.ÞFæa_¬ã°›Œt d¨E4ÂŽæ>MöA™HeUæÐMŠaô‡…‰hׂ<í°én]qÝ÷õóüê nKMLfxÄâß]œ®n ¥m#Ëw=,€<×ITØ\Â$%–®&ˆ [j+m\º”E–lPËÆI| 1þý}“ ]Ö[<™/9åÖŒ°/$Ä.‡>$œU£ ¦üL  ùjûˆ>žöà§z8nKãyªŸPs€ô‚‚ ÂÍåúry¶,WöšmL›U~î›­*¿ö+•6þŸ¶–endstream endobj 27 0 obj << /Type /Page /Contents 28 0 R /Resources 26 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 7 0 R >> endobj 26 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 31 0 obj << /Length 967 /Filter /FlateDecode >> stream xÚíšKsÓ0Çïþ>Ú‡½Üh }ÌPB㡆ÉGi=“ØÁ1Ðòé±­¤¤•[8Åæ$Kvdç§ÝÕ%ÇÞ‹7Dø:Ò¢.⹯‘/Ž8ÁÄgƒ“w—ñè2ž„Ÿâ Ÿa!¬¤Ú{ßšFo{¸n@>nÌeÄ©À~ºô¾x?!æ!ÿÂCÕŠûßë Š°ÖÄ_zŒÐmeáM¼÷ýÕíötÜ~'ÚùNŒX¤ó%©Û¤ýV\¿…Ggfõöäµ™¯£ÛðˆÔ o²…±WWfnJ“§uU+DÍóè ¦u×#£€"Ö] ´<Œ¨x@…7¨ÊïÙÍu™¬V¦ 9¢4u0«£g°,%þ˜ DJ.âÝcsȬÄŠ¶¬²<«Æ÷Õm–¸M‰bz¸”þÎ †œ‘µèÎßM_­Ó,‡˜IYeé¬ÝW½².B ëâD.odZôÑ …@‰-¨ãdmNɺƒá½v@K œå–Öè.5«*+r7­!ˆN‡jKëÔä£oš¼rG(YŸQ Ȱô^T.Û✠À¶$`[ mÆ£q(Y‡¥J€—‚xá=¼\æ%¥. ø##¿p]5þúü´#pñ>®:UìŠîå [za‹b—•îÙzš”Yu»4µ$uâRB÷_oQ¹áFƯO‹bö´iQ‘„y Éy¶‘ó•)“ª(¯’üÆt¸#€}AzžY=¿ÈÖÕ´˜OMc`wÉrÕ™HSÅ{ ’òLýõ´¬Å¬_&YN± ã½YÒznø’€?rô‹ùO i|n5þx6?ÏçE‡_j5T|ÂGás&GJ ”CëÚD`\,jeû#i—ÆÜkÑõ_y0(àìO\N†Ôpl J¸Mì~Ñ™Y> endobj 29 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 35 0 obj << /Length 1083 /Filter /FlateDecode >> stream xÚíšMsÛ6†ïü<’1X|@Žrí6žQœVJ{H3V‚%ÎP¤KQqÔ__€Eª"$§õÅdNÀáõðÝÅîã™÷æǾŒd¬/³{_"ŸÇ1 ØŸ->_ÒðóìÖ'±ˆ@Æ>ª'¯îÞÏ®ßϦæ–w=ó@Ï#ꇉÁŸ¯½¿¼OŸ‘¿ð롈HÁüG=@Ú’ÄþÚ£˜< 2oêý|°3Ò†FmKãú=Që=ÑHRês¬ç¸}W@Q‡#†‚YÈQ ÖB`ARVéYR¦Û(s–ŽÐÇÅL³p@" ¤2Í«ñvyA>÷z ³¸ˆÃáhCkW­Òä9GE?Q—¤ØÒ4]?dê×5¯Š2d—2%Š{™Mj(ÝŠŠ°>æiuAJ1åCK#yì’Y“‡ÿjSéru‰? Ž;gÓo«¶³é¦}õ¥'\Ò³9z+®]yHQðŔͪÜ\*fúäd·äj󺌇‹x ’È!9aSý&ÒiÅUIš«ç,©¬—N€Cmø,ªsÂDô’Týÿ«a9ÛaQ&…Åöɺƶx®¿&&‰³ƒŠùv­4NSI™)XÛ'{ûGƽùöÇÈØ×v” ”Öðãmš-®mèÌ«›²XOçeRÍWµª©èWßGN‡Ÿ’9@™ªL/3OÅ+¹Lz;ÓgˆÈ)´ÉΖfwy¶›™PÔb®Éq =áÁ*¢§@>nÒ|i›¬EidƒkG Ù­ v ì|^Wóã¤ÿÄ$vh,¶È~GoŽ]϶!÷\­*i·Æ¸˜Uv¥ƒ¡Z2v(M¸ÀYlÓªTÉúÝ]OôEÐ--Ù&Ô¹@ºŒ§ˆ:Ô¶,mØôtù«ÜÚ~Iv.Ïpï‚KÆûIíeÀñÝn øx»SsÒÜôäÈwŠ'Á•©q5Øód„ Ô³Á‘C³Å5I6›ýîÌbæ’a³#6ÙfUª3˜Ã"³wkߪJÖqÜU ˆ!ÿÿ´kËÐx(7Ž$'Âô  &‘@|n6×ßðG•›,@-lKÛö±ÍÑW‰ƒí¾Ï}kjÍíþ³`ozK¹adr4óëÞd¿ÚêA«qþçî©gþu·Tù„YƒëZendstream endobj 34 0 obj << /Type /Page /Contents 35 0 R /Resources 33 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 32 0 R >> endobj 33 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 38 0 obj << /Length 421 /Filter /FlateDecode >> stream xÚíTMsÓ0½ëWè(,võiõ˜ÐÂd Ð©Ë¥ÓCpÔâ™Æ†Ä)ôß³¶œŽËp€áHOò®¤§õÛ·oQ±WgÚ󨢧¥ºåxð¨œFͫ͵X~8¯NÏ«KyS­¸E­lˆÃ¸÷Ð4CšV )Çë.(g<òz˾±ëà|Å@™X:þP£æ[fµ9÷ì’]<áTÌ‘c¥0«Áªh-šr!W‹H`²p ú´ï¯Ú¦ß«º–„ä…òðÿ-6Æ?<„µ0¶šèÇ ¼&‚'b5ŒÄ~’ˆ(RÝw»e×J âA¢i·oºV}¡3ƾð9ãS|þ2efíš^†L±Îߦ¯ï—²ÐÄõGIë»”£×]}ئ¶_÷Ä4¥|$Þ­5þ³Ù˜àŸµP+¤¨’%ˆnÓeØw;—EéÍË„À_5ÖüÆüJr94æß½o´˜LÚ“Í™òhÒät6ø±³oR›vë>mrCGqŒmŽZ&ñ¬†!=L;./èNœØ# ƒ‡¯[©èv9˜ÉñóãQˆ?ïR{üýŸºœCÑendstream endobj 37 0 obj << /Type /Page /Contents 38 0 R /Resources 36 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 32 0 R >> endobj 36 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 41 0 obj << /Length 8 /Filter /FlateDecode >> stream xÚendstream endobj 40 0 obj << /Type /Page /Contents 41 0 R /Resources 39 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 32 0 R >> endobj 39 0 obj << /ProcSet [ /PDF ] >> endobj 44 0 obj << /Length 389 /Filter /FlateDecode >> stream xÚí–=OÃ0†÷þŠŒ¶DŒÏñ'#T!±e†45$R QâJäßÛµ¨ÝZ¦Lq.w¯^?:_|›/®˜L%R2‘äo‰¡‰ä†%ùæ-«¢s¶Ç)~Íc'J+ð4I… \3 V¶{ZÆô»ºÇ ‘-]Û1´ªm_„hYahüUN2.ÙNQf„‹)êNRzJ»¶ÃN†&†éë‚ SÄd"ªäU=ÄÒMÝï[ª‚¥ÉŽw"?‰CÛ;»‰ë¾Ý¾W͈¥@W1²ÆŒ¢­‹/ŸínQ¶]c=H-š®*ÖÖÕeÑ4ã7ë÷ *cI ŠHÆ#<ë™|^bò`´F§bÚùü8ùàÆœüL+âðŒ®TþB)kq* Ÿiž?d’#Pûtˆ‚âŠFWÕ…ž‡œ1žƒ´ ¤Ó¹Åÿ} yØð°ÿCTjægœéúØlúrJÓs£_¸Ñ=FßÙaºefšÆîá‹û|ñ µ¬Jhendstream endobj 43 0 obj << /Type /Page /Contents 44 0 R /Resources 42 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 32 0 R >> endobj 42 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 47 0 obj << /Length 254 /Filter /FlateDecode >> stream xÚ¥MNÃ0…÷>Å,íEŒg\ÿuY T‘X ²«º(‰ •hQ+Èíq‼x~3š§™oU±›{²d°Iª΢4„U³å$ ƾ‰·ÉÅ×Ç^ ç±>wýK›cì÷Sµ~hø vUÉî*† ÒÃ)×8i´E¨Oì“mw ¦ dJêà |%£$†@pb ÒWóΞÙÓoŽ‚Â:'‰Èÿ+§H > ÖcÐj&aepÚ$4iéjp(qáì„ã!¶éÐslòÙ]›µø%fSŽ.sÇdA³4j¹pÙ‘BÊ¿ƒ û~†ø‡øeæºî¾‡×Ø^iþ¥å`/endstream endobj 46 0 obj << /Type /Page /Contents 47 0 R /Resources 45 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 32 0 R >> endobj 45 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 50 0 obj << /Length 367 /Filter /FlateDecode >> stream xÚí•ÍNÃ0 €ï{Š×CCâü5;2 4Ðå„8”5Ó"•®j+oOÛdƒC‡*`;õd·µ]ÛŸl_Ç“«–Š·H$¹Æ"b(NŸ¦ó]RÔ¦ Bd Ás|ç8V‘¢­A¡˜GÀ;‡¥)îçÎü!y5U‘lŒ{¼ÍSó~Œ@9f\‚ æ¢yÛFLƒB~ˆµ²UíC¤±–­o ÖLHŸKéímådâDÖºwÚ~ë?d™SòüǛ­wN{)­ñÖ©©6¥-j»Ï«Ù±¤¯<šâ¨b€Bª°î:3_-랤™Æ׺I¾µÂA(šÒGñA!’S`=dÂC·CJ±º¦§¦NlÖÇ0SшæL„x/!×sˆ~Û*ãì\ŒŒ<;šÙìäISlDô Lõa8t´Ãcnëj¤ð¯8@Áí©õG½³I4nªËÁ~åOÍÆxäÏ ¨;ò“E<ù«Wtõendstream endobj 49 0 obj << /Type /Page /Contents 50 0 R /Resources 48 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 51 0 R >> endobj 48 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 54 0 obj << /Length 243 /Filter /FlateDecode >> stream xÚ¥=OÃ0†wÿŠí!ÆwŽ¿:–ïH !¼UB㲤*Ú[§ˆ½òðú‘åW÷Ü<²«;²d°9â‚gQB‚Ø-x-*­œöü!mž®EEFñç¶O_›v• >]Ú‹elØmd*<õ'¶«ž}²ÅRAÇ4LI¼Ÿ Jb=«IŸáƒ½²—¿•uN‘¿¨§ÊU>A­EóÉÜÊíŽæš´ô58”X;{Ò¿OCÚ¶ß©+ªãP2Š@|7ù7 ßM/¦š™Q³Ú"…TnkA†ÛÿVúv(y3îïi8oó Ù\-endstream endobj 53 0 obj << /Type /Page /Contents 54 0 R /Resources 52 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 51 0 R >> endobj 52 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 57 0 obj << /Length 984 /Filter /FlateDecode >> stream xÚíšÝoÓ0Àß÷Wô1‘¨ñùÛâªcCBLPÁBU–zk¤TN:Ø“x[YCÖòñ@Ò§8®}²wgß]ój~òü”ˆÁHÂGó«‘Æ#Á4⊎æËÏÁt­KcÃ1á8 á—ù›fCRI¨&àјsÄaõ„3³~;m†Ÿ%ÆF6Ä«$ŽÒ¦÷<[šï÷‚€!Êñ‚EŒ»ÞJEŽc¼-ršFE±+=Üz™x¤‘•Z$QH‚ßÌ|•øÉI¶26)£,6MGš¥ÿÉ)r[šeÓ¶ùæz•Þ†‚ÏšžËà`ã§d¹oÄù×ujJóÓÐ(]¯¢KSVÒÛIµÌjÛ )A"©ýòê}N&Ó<+Ê×&›ÝTÛ2YyQ=#ë¤æ}”]»%S¬޹£Ó“ÓõŽ€(0^CrÚ‚€hèÄó1€À8mUß=!ÉYŸ É=mÛÍ,[z0Dˆ~‚ño u Ÿ ›/7q™ä™ÇĔꉩèKSFIêžI]¦f‘\5§(ÀÖ) ˜!…QÍ|ÑrκCŒ)éõ\ÄU>ºHJc£ÆË)ëGê©Õá00pÆ{m=Ò {#jZwe®«‘ÀúE†ý.™&”ð!@ /¹'¯¶r²¦:¯k\°¯ãµ——UÏïÂ6b¤›Ø¶]¹)½+3ÿ(¡AI÷GùP¹§|€Øj^„íÏk§’Ï%éqAD7šGÇ—›,ŽéúSþIÔAP'³¼Þ]уñMFdÕê¡úê3q ¨_†µR—>WKT«z‚lÓâ]^xf¢ês•›Ûóºò¥õñxâè,ÍžÍ.fç‹O6Z¯«O£Ä0 ࿦%Z3ƒÕ7ç„.¿q„ðÑäþÊÿÛÔ;Kçï¯¢Âøïå8Gœ;U]8™ÍO~¬eWþendstream endobj 56 0 obj << /Type /Page /Contents 57 0 R /Resources 55 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 51 0 R >> endobj 55 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 60 0 obj << /Length 1228 /Filter /FlateDecode >> stream xÚí›ßoÛ6ÇßýWøQz0ËãoÀ%MRæ-FóÐj+±[Êd%mö×ïô#ÓRj×Éâ~ dSùó½;)qoÒ{sÈTß«°™\ô-íkD2`ýÉìC Â§ŒÒà]|u²˜ÄÃ$Σ<LçÉ4ZÔߎÒYü%ü89îLzЧøÊœÔDrýé²÷wïÃGÚŸõhÿ¸G ·Fö?ã %`-ë/{‚ñ»“Eï´÷ÇW;44X·´WÝ9]»sC¸P¢¯~©ëÛ¯îz8ý~þÛjš$ãdåE2]Ä«p ˜H8ø÷^Oc@›R)D; VÊoiÅéÁM +N ädøëãÔ4ÂÚššÀ¨njïÆï'Ø™ Ï yYzŸ|ÇëÏPÊàlt4ó>V1“³š3<àÄ ­×ÑÍâ"JÃa²:ò¤˜/cÌhåeoî¥DM8×(¯þ¥îr?kR¸M‰Ãˆ!RkÓtøÕeB­™nzì²NÚ¨€QÖ$ѧ’q%ƒ­)4ãÈë°c‰âŠu©Äæ/¶Ë*Õòð;y,V?­<³ìúÓ"vXšDQÓFš€Ô|·ª%$Z`…Æ…s8Øš$Qʳ¨pi‚ý¨è’ˆ#v?fäsÆL’ºÄÁat‹Ã¹•¯fØQÏ9ì,²ô²5‚à‡!Äw?„´;„àéä©f᭰ijÝR«ìK—ª–Ã4rK˜Ñð´Ñ²šg¹sÀaDàߥ"F›ÝLjµ0¶F•ÿä “\¦ñ¬Ž”–JZ¼3L8Nˆ¨Ù‰0ê“§ÉZ×éô¨Ý·^°µÐè`ÑÒØŸæ‘:¸Ë1¬:„V²{þ¢©d/\öÿ¢¥æÂ€Pʪ.%(‘Àà…+ÁÝJÀ3(Ñ6ž+J U?\{3ÈZƒfâŽ5>¡ßÌ9F«¯޲ QYc^íî–w[8kä,]ÏF«Ã$§ETÄåú8ó87a¬\Ï"F«Òu×uy~,_íöá{|OnÇ·Å<‰ðË=Äï!7Äñ<+² áýq#Ì÷h[wJ¨2n•{}ÚÝÔ£u{ôÙù^¶*]ZkŸp7 ï$Œg£ô"Ãa ´ú@ Ì•®’”ûl°Íl̬ˑ‘»ôÜ·ÉÓîÚsß*whÉ3Æsß*wÖâïÖsß*wÞU¨d‹(Oþ‰Š¤¬ ·žªmã(\ycœ'i±?O³> endobj 58 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 63 0 obj << /Length 1705 /Filter /FlateDecode >> stream xÚíš]oÛ6†ïû+|i5G~Ã.¤[‡­(Vc7ëP(¶œhsmÃRÖößïðC¶”P¶Ô4ŶäJ4ERÔËG‡çúûÙ³o^€%JÍ–#KGJX" Ϳϯ³m•ï&St,&Ì~ ÑF3׎¦Ra@ø?æÛ_ÎCóóUV–¡ør½È?î{3A¸P{+N„ÄZ×[6™2JiÇ8?e‡¡#K¬rýü(`ˆ*Na—‡æY]¨®caîÆÊËçáWYínæUýëf]lÖñAÙz Å_9aX5ÏãÍEuJ—»"_†â"/ç»b[¹1Îö¯z˜#¾4ÓFS¦‰ÆÔ:;;Ç>Õùúâo÷ |]½öÜUÅ|•ÿš­¯pöäø-•tHÛ„Tœ1ÂÁ0ÔÌM`KSµ„q¤!´GbaÌ Å ¥Uñ—|¬wƒ¸5¢(öœâC¬”à˜oV«|ît Bm¢`Û8ç(ªÊÝùZœ H'C&S‰p<‚ £PûÄêLWÄ@¤¬>JÒoxÅ®Ê?F8@ó4HÝMëV%”êÏ‘¹1G Eƒ#_.HÌ4¥ð³Æj¢˜*‰Sx ‡Ô ¢ ~ˆø£#*Å—Nò@¨ ü(`M«s±^`îŠÍ”"¸QÈÿ¥ÚAC“Ô°~ï¾¾ÞM˜o7íN9­"Zšÿ®9 ’Ù¤dõ»¥$[äUV¬ðZ”Ùå*W,Ãhê`G.4Du¾MÆ+uº¾ŸÍµ†ñS„ZÑM¨¤·u1ßm]4Å‚áÎ0Ø€qÂ(®‚KH­†Ã÷?vßeP§ÌÆ^DŒ|Z Ü€Š/¶&mùºÏ>K~†q­îñ±‡ÕàÉÕÀ· éëÅjãܶûùÑY\xK)oÞÜ\þ‰&ñø‹A„|Lñm°E"éÖb$uŸ€onví­&.ÁÑ›IÙÑìI-{G¯ŠÅèµÉjL"ù0”½ŸoåĘ:»¨ÆnÛk÷©|*‹yYg×qlë ’È¥à”p<Ð*iä¹áDJ™‘ó|”å›:²æ1ò÷ls 㣭’óc„j½ÖQa7f´î¹¥«nUõ„®òu¾Ë*gí}—zrÑ£°èFIªÚqÙLtùÄ;2öäF ùžu;­ P ]ÔíO Sš¾ú’%†>”š“œÕ_Š–‡/9±ÿ2Å‘»öÇÛHKwMˆ "•èŸ`…Æ„:½ ¢î½Ûi9x·k®ÃÙY²}7wŒwEå¾À¦©õ™vz7Ê{»iòÓ£ŒpõP¹"ªMfkêPàڬ§ó{½?XNŒål{4Ê€®kJ‡ýN Q§[ó}`8´"‡QDû:鉠JÒ-ÙÏc*'ù\š¸¹ßÜF*mG¶÷a×qƒˆƒáÄ5M.4â&÷#ÑBtºŽˆÐZ °g<Ú3ØM¾¸ÁȳðÿeÀ§ë¥wïëh›d—››*‘T'ZÞn€}ãO°õƒwÃÖ‹¶ý±ëTȽi;Þ eÕ„&FCÿŠˆVMî­šlY5 ÞªÉ[VM6¬Ã!…fO›èCSâ~&-u.=L§x;Ú6ï)"Ís*’‡cFò°Ô ÏÕGÂ4b­¨øâÿER¼À‘:òW¤N’þÕ!êªOæi9‘@ùDL#½sØý?ùnoƒ.·ÁpN”}ø_" †ζºÔnbÉ̃b8}kzxv–/®R‰‡‹ÅÕ ,(÷Ï-ñ¯æØ3'üùìböì*¼£Æendstream endobj 62 0 obj << /Type /Page /Contents 63 0 R /Resources 61 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 51 0 R >> endobj 61 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 66 0 obj << /Length 2408 /Filter /FlateDecode >> stream xÚí\[sÚF¾çWp‰/¼ÙóÁÓéL“Ø©3_¦nã6mÇ£€l4‰‰Øî¯ï»ZI¼ÂBvÀm¸BZ‰Õîó¼Ç=½¾ì½:£²o‘ðsyÝ7¸¯$A‚Ú¿ý>ÐG^¾ï3&‘\÷q^øc8ûðæè˜ ·¿¥å€pY´´ŽÓqÕÔcBÅFnBê‹…#¿ö`U{s+¨@À &/ªÄŒ±¢Åb¢±ºøüÄ7 CŒš­Ö/ú0“”R±³ò4Ó Â(/Þ ‚åðç•à ””1<˜Då„åîg˜L&á0‹’8×öc ê®1‘Ð]‚ŒN•’kÇj©;éF’Áˆ()Õ ãøåš`>A3I vÖ'g?†Áƒ/÷çÀS¥‚—ãÂJù{˜!ì¤ÁüQQ•(q'J¶ÒáÒà§Vщ”’Å×¶É|ä²”Ÿ“Eæ.Çe ‹×“x³Q,ÕZ7ÉÒʶ͇#“IB”ÈÓ‹Óß.¯>̓Ù,¬Y3ÐÏp ]ÁÊÓ¢_î&+/J³yPôÕU\à”L§%Ÿ'Éð¯]e†!­iÙU"©·Wå[+†{| ¶ƒ®¾z)bJ”ðëè°^–æ>É;ÿéê‡tEuÛou€‰\O³3WųEö Ôg¶¨JÜo`+q—K•³÷²&ªð0¼/Œ}þ§xä.¦ÁpÅE©Óà`Å7UCÚH¨Òm$t½÷¯ƒ4¬…Œ¶Ó?L&¥ùXénik–Öe ÚY<¹Î›L‹ÈÓ[±WR¢òJ-LŸ&KÓׄ x:ZýÃo¥4ic¥äZ§wÃp¶4¥¶Sç?¹ëpõÑÈ8 7ØSðæ Ó“OÎÕL{M|Õ›Qk^Ó'†KüÖPÓsE 2[8J-‹˜ ¾LÒÄ]B¸v_º²±+\u×eó|­`)CÉöî:o…Uz{q1º>.¢;­Æš¯Fwç…óÞ¨?”!ªª=ÞJé£êɤt‡@±Qúes Ø(üõHÄrY¿/MÈpÅ\ú¨!F‚¹Ôæ_ËM Á>«¾5"øËxÃOçïêÆ×[Ü`:8¬½Ò±Ô”¨ e‘†£"æ,ôò&ÌÊh~Ýlˆ»›(U A Ú2÷Î}—ñG9‚!Èïüƒ£0 ¢ÉÉI”^à³ÇÓBW !õÖ€?¦ªlÌwžïŒ(«L𥧠£(ÍÇ÷Va û5…`Lã^¹ØÞDee¯Ý£8‰kÙ²ÇÁt'›f!§Øþ3 ‘§^‘ýZÇÁÜS … e¶‚ý T ³2©*¥¼-¨D" TïÄYÃA±7E§Z"n‡GwÉÂ(Y|ž„žŠ ø¤ºôiÇÃ[WYÀí¢è.‚£Â* 7ü9lP{.Àr°Ò-¯R0²g“$Ⱥ1Á¡ëb©½ãÅë¨äa ¹S‰b%„#0ÛÙ©ó¸%Wƒ³¤/i€âV3;!h’@~êQŒ”¤[ô¿¤Ìt·U¸a{WÕFiäÎ8Ékô0‚"Ì9ëHШ»¯!m-ùÓÙr1•À >¢4;Õ„tœÌ½þƒCR§¶sæóº:)¯i¾oe0/ƃ¤ÑM•4„½Ò:%·dh­Ú'„À\µÙÎ~åÂO¼90ƒú &»Ÿq  %EBðmÓºôù R¸G¹·ap—@fjôsˆpWpý1‘à6‘z ¶QljP䆽ÖâÜC2$(ß'â AÈëú OºÆ<„$˜Ò®ƒ„mŒ`û´M~T Äì8Iw´ÓÎ^•0†¥L4oc¢LŸ§Õ Æ»$-‡"Oï‚鬌·Z ð2p(š“onð==ˆ7y­0YCü,ŠƒÉÇ,ÈBßjxU q˜ÄxÞLµvÅÊœ§Vêë“x…øÿš.=ÔÚb,L³G”s0ÒÂ|;$:ܽÙhÆš¬ÿáþâ>GAwû£8bœ±ÿäVoºYux Ö‹q’Õ§ù·Å‘p$¤>ØŸþÞ¼²jÍžäv=·ðÝ9Èã,J¿UrÔ©®µ„fMê?]½NÒ§ˆýr€œ´‡¼Ï/F×—{T I½O‚G®¤î¶dÃ:Ò‹·g&¶…@JtKsÚ†èÔŸvb‚˜äk3á³(fÞµïÈ`I†úù~¸1ˆjXÅï°_Q àIxÚO oÓ:ð´/žH ž*»§<í‹'º>™Oûâ‰µæ© ÙŽ($“`ý]ÆBDÕâ6¸i~¥)󦆶ÞOFY¹ *-ƒ7¸\ Þà>‡™€"·ªÊfãÈ],7'ÀMà~Þ…ñÊ–Ë|2áIÌÄêå¦UýˆÕ~Q2!ìñEɨ ä Ûd"Ì;‚­”æ5©¾˜GqöfMFNxêÚŽ iÊc݉Øbì#gâm˜Ãxĵ!Òí‰8dãÊ·É¡_·}‡‰…g§„´˜X¨3âÆb\| .hëIžÙÜjÆ—øˆãÃÖÖÝÅÚnm-xšM½›F‘†ð÷@Òs³ãß’S ½JOšNÚ³k~äãÚ³²`æcVìÞ.‡Þ™ný ÷Ysf'‚ì«ýI!”«b¿(|p˜ÄYÙƒì'»l¸Æâma†#;ãnß½‡Eé"Ü"(ÛUЏ¡ÕI"Ä-´¬zTmY.7%6&be‡ß#iþÙ{¬H˜-¹‹ë§³zäù!˜ÙóaD-ðßð‚÷¬¨&íwÖÓê|{®Aê~­¬19ÈàãÉ<˜ß»RÏÁ«3ÂW¦¢ â´Úniwèx¾¯³û¶Š}mI\쇶‡0L×N»±ZP®]îÃ-æ•Èæç<ššbi¾…½Í¹0º3mÖŽÿÒ1ÂØÓOÿªUTþ%‘QL;Æ6„õA„+'ðù.AV’WÎ æò½(f;ßÛ£SÅá~ˆ8øT+¿£˜PÏ10µCÐ>'Ú¼Mîîo¸á½O»endstream endobj 65 0 obj << /Type /Page /Contents 66 0 R /Resources 64 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 51 0 R >> endobj 64 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 72 0 obj << /Length 487 /Filter /FlateDecode >> stream xÚåTMsÛ ½ó+8Šƒ( „q¿ÆÓ:Õ´‡4ÕÆ13¶¤ZJ“üû® ŠåÆ“KŽv—E÷vY®*òî£4ÔqgÐTk굸– iµºÎ ,—ZdŸ}÷uÝù¶îûè~ ýÀr%µ™c7Õ‚|¨P±´åZ ËùC®o]ADpåJMï1œ“tG ©Æ`K¾“oO89åS¤«g´A Q«$µmä~¤<›U›=ƒ2óþ!2¿Ú=²7.û%´x9{„G‰éQÚq!UÔ‡t<í9«"¬IÚ!µA(ˆ ¡¶Ž¦»në£ytÑô¾ê!´M̵ë³ßº¶“d"¼ }~ CsP‚KgKô€;­c=ºm½ô;޽SÑüEÝO²1>r}.Û7º€¤‰³\cµÞޱ¥94òB¯sÀ+§AÊób§Ë÷“ùp»æ-v44þTfñßÒšIm6>:'„4s8|í2Ôƒ_Åø> ›”i¢õ têëØì6®îÿðb·•S¼,e9^a#/ w‰S J½~¶'@ãhœbUŽ/p(¬9Rùä±^'ñm’\1'³»T²ÅAÿ]Êèh@Ï´˜6FR€¼PôÉ#÷û1Ú÷íÃã­oFùÿ'á/]endstream endobj 71 0 obj << /Type /Page /Contents 72 0 R /Resources 70 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 73 0 R >> endobj 70 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 76 0 obj << /Length 245 /Filter /FlateDecode >> stream xÚ¥»rÂ0E{}Å–vaeÖ‹òôLŠLÔ1‹4`'&ð÷±dÒ§º{´»w´wÕÍ=[:ØA₳¤ Clça¹ˆ ˆXmMíϯéãyVVl°˜m–û}.Ÿº6Çqu £t64N±o[õ©æ „V!4 µoà{ÔÃVÕ,WبWõòëƒPYç43ûùTÇ*?¬Èh4½D`upâÇ„Eû@Ž4ÕΞ/~H]Ú-¿R›Oí»¬± \R†¦$S.“…ÌÄà¤v™‰sµ.Ùý.ß8W§¬·ýñôžºkš?Ó]Ðendstream endobj 75 0 obj << /Type /Page /Contents 76 0 R /Resources 74 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 73 0 R >> endobj 74 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 79 0 obj << /Length 899 /Filter /FlateDecode >> stream xÚíšMo›0ÇïýáÏ6Øà›%m¦U«–¬;lSE‰S‰€µÍ·ŸÁ„-›iœ·Ÿ°?(þýíçÅy.'o†˜ZJ1±&3‹A‹z Àµ&Ó¯v?—%Ï&Ð&Î÷É{ià?ðQe­!À °W\óåM_N&)—£Q6å/­1ò€ëQÜSxD|Z€œ‚ª_ó!)Êæ-Ðb€Ñʬ~ õ)m~AÞÌO ù å#­ÌëÑbÖ|‘¦rð BœòfúsRÆrô'¼™:åE”'Ë2YdÅÛv)¿~„Xò]lõ/Ð0 o1_†¹ƒ›_ñlðä hó¬Q¤Xc€b/«©LÓ#ƒyT? 6¦LA½·¦ÖC Ä‚W¹ÇûÎØ}¨gáCÊï“™ƒˆ­„M„Û`.5°—©dYómd‘^ˆ¿„ó¥ÐåòG’NÛÃ0¬ÏÇb>Žò°ŒbµOB”áæÉ)˜äˆUÛuoîïdËpÌSU¡ƒÆzÐ=óí.9»JÎkBJÎ7+ÊŸ“ÇÚ¨ C@FCù›·§ä½æÕÁûvUÆIhò“½ˆ@É”À?féjâ0l/ê´÷l}q°»/–Ç¥ÌöÂùèc—/5p7çº}%`¦v %àÏE’=ŽD –‹¼0nãíèîD>!ŠHî/2ǃ¶Ì0ò¢;·p)`‡Î¹„¬ÎÚÖL6œm]Ú‹ý»¥ü¦`Jˆ o¨¢ÌñÖ`7vþ0]Tj<;>ìHí\OHhô8²HÊÄpM»[¤Øhôï4"Ú]ñ¬/+ù¢¿VŒ2aD°ÑjzªÌâxE…>6ä÷&ïko7½‰æ'×#ÐŽæ[/Ù‡ËÁö’C£26whÈÒ¹CkƒÁm…<ÌË$Jy‡WbÀw}×ÞG uqÑýsÿoh)Ž+…·‹ŸÂì‘æ@]²‡ &8ŸF ªœÛ@Ñ\÷å%1Ùë©ñwI—~WđӢ_N\óÐÁÄ~Zº.3Œ‡ëÁöÓôõœPBí¶žëÁíànrÿ%—Kž×Ìx;ÒFúM*ܦŸpæX»Ÿ°n†xÇg…©àŽ-‚~'[°¶{sË­Gžhÿ¿  ¯:h€ w=üÊB­A¸±ï“,)_k‡3)èÁbà:ü^ &?nÇü€endstream endobj 78 0 obj << /Type /Page /Contents 79 0 R /Resources 77 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 73 0 R >> endobj 77 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 82 0 obj << /Length 1184 /Filter /FlateDecode >> stream xÚíœ]s¢H†ïý\Â…=ýAwÓs7Éš¯ªìºwr15e±ÚQª\!›dý"ˆÑ±±!Ws®?(|Îé~Ïi¸õ>]Qá(¤D¾=9 ;RÄ)¡ÎhúÝ%Ôû1ºs˜ÏU*ppñî^Ý_z}ʱ{-tùê6žê×Í·{ƒQäßÄ)ŽÇ%âLg²ìýÓûþ;Óvîz1pç%ßÁˆ(Eeϧ¬ÚYôzîŽÓÏÔß?ÒÅÑ©ì#"u$Íß”åùßþ1þ’N¢hèì†ë,š,tŠ&“Íyæ¿Çû"©ÚþEäõ9ưÙßÈ@¸ŒÒ­vûÚ÷+ñú„ Åù)ñç ýÙÚ³&Ú_„©¾\„©Yr)ÅyœäMø&•”[¤0xèU%1è ·°‹€kþÝ$gæ¤ΠΆÐÙ$Ý †ƒo#O忇0è AÐ$ ö˜‚@($™d@àÊ¢RôÄWq÷ñöb¡3 7KG;0 tE€Xg£(‡ë(›/unÉ u ‚Úg£ô:I¦§gG€¢ fb›•2½³dý5Œg²Rg|묤_Ãåj¡ÓO‹(ÍÆÉÓ¸zÃÛ¢gô¼}ÜÖÝÆÚ?o?áå†ðÏöe¹G1¡å«²ë·.wöÞõ÷[¹ý-y}›é¸á:ƒèŸendstream endobj 81 0 obj << /Type /Page /Contents 82 0 R /Resources 80 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 73 0 R >> endobj 80 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 85 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚí’ÍJÅ0…÷}Š,›EÆüL¦K/ŠŠ‚Hvâ¢Ø\-Ô¶´||›¦È¾€«3™Ì|'3äÂgWš˜–@¤-óGæ$#t`kÃ|ûTÞš)†™ meIüÙßæ„ª®TjLX XkÜ®ÃtÈå\ɲy ùt3´áó  ’ÞdíšMÅ…’Rž¢CßÄÐþä.;M2ŽRûÓ8ciͼÛwKÖ&Kß-1Gãq¿èû̧^íøòñ†ØÄnrjJÖçÉ;M¡*£™PƼÏë•ÚŽ¹ún3rÊ”À…]§ú—ß‚ÎýU²~·Ѥµ—¾øÙ)—mendstream endobj 84 0 obj << /Type /Page /Contents 85 0 R /Resources 83 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 73 0 R >> endobj 83 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 88 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚ¥;O1„{ÿŠ-ÏÅ™Ýõù•2¼OBá.J‘pNrÉ¿ÇwN=Õø³½£™GquÇ‚ 6KÜ@@p–”abˆÝ¢¢F.c Z{œñ€ÓíCúxº–5¬ž%aµÚ¦B}—Žã„¸‚òoš> endobj 86 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 91 0 obj << /Length 438 /Filter /FlateDecode >> stream xÚ“KÓ0…÷ý^& ¿®‰·S¦$6L`¨Š\·±”4Q’AÌ¿Çq’¢¶7>ß9çÚy(6t#ZƒBņ´4Då‡/ɶ*»Ñõ)Å’,ýV¼Ÿ’dyÆ'CX)"sQðÖu¶óñ7¾Oyž8;¶ýË2jísãÎc9úö|¡qI„԰д R…éDËO1gŒ%´jG­ëJÆé©ìgô™ÖöD+×5–Fg „i u?ʦ«Ý@Sœ)²àÉ åaž# ‹.W1?º£[ ¬{ɉQ*ÆÄb ‡Èùµ°wÃ"d(ÑS¡#âšH‘Ë ƒ°qU_TŠUèxðý’bµ|UJ|„ ŠÆ …ðúsñ¸¼fþÞ®{+_æ7{] IxžÍ½v¾þ6SÆÚݨ‚hÃÌRe¹¨ýó¯ßSÎÂÖÇ]LÝ6O¶/G[kç¶«ömÏXs_˜O®ko¥±£îÀ|üùô.ü eØäp…¸'Éç„ÍW± Ï_²dŽÖ·BÝAhí‡qß÷ëàŸªý=O56Åæ'XlÀendstream endobj 90 0 obj << /Type /Page /Contents 91 0 R /Resources 89 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 89 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 95 0 obj << /Length 462 /Filter /FlateDecode >> stream xÚ¥SMoÛ0 ½ëWèh$“”%K=vK›¶uÆzh‹Âs”4@g^‚®ÿ~ògƒ"À >È´ùߣÈËœ%Wd¸“΄#_q<3(5!ñ|y¡‰k\4÷ûOB !ú¸ib´‘/uó:|ªËcåw‡â°©wñc¾`³œ!‡ð`Gª3©•A^Vì'»¾dÀ ¤rVó—€DçˆW,%5[ö}xD §L—ƒ~L¥J (øÉzý™¤X DÉs]ù¤ôû0YMoa—lËuòì÷U™tI0\ò@u kõ;ÃÁW$)³Ž ̤Sd»b·~åÚÒ·i½8”NëNœ˜`­D²½Æ«ÍÖÿÒáä.ÐÈTÙ4$“4Fw¹D::øiõmߪ¼ÁHIãÀ…޵€ùìËì{þt×û}+. eYvĘ)‚DLÏWèîwî›—Íú ü üæóS/$vgúoÈÛXéèîæz@¾›-†•úÿÑ:!'Ë„IR¶m« ݲÏPbš™Nóµßù¦8øe/6Œ~w›‹utþèþ@}¡á"Íúˆ©[Ť£º{>mÜiÍ~¿®ý´`…ãã@endstream endobj 94 0 obj << /Type /Page /Contents 95 0 R /Resources 93 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 93 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 98 0 obj << /Length 493 /Filter /FlateDecode >> stream xÚ¥SMoœ0½ûWøŒgŒ Î1IÓíJQÚ„[U”õî"ñU–(Ù_ƒ!»m"5â`ž÷æÍ³ç4%á*ª™VvI×Ts+`iººõb&ü%÷ÂmS™07mÆ!Üd]çCâ™:,óM¸5m•‡ Ó^žȸb\‡æ)«ÚÒìÂ;α Éyá`yßt{÷ëÚ¬ÍÄ•?ˆ”àÄþ}º$_R”ÛFY2fR( yE~“Û{NW„Ó%áLèDÒGpZ#­H„bJrC~<ó–(8f:€ˆ‰HálZGâ#€óÏ[`{¢Ɖ¦ÄL LÆÿµÅ"J`ZÊQeðÌ4hÅĉ½(l½)]+(‰$²ÉÈ”’cî¢ôiô•‡* ¦4×Öº0õóór¿0Ýc±ñAz,ÏǾ‚95´!z½ÄØÛçû¾ßÙÌÁ?¾ªË}êkôšÑü\ò \Žé¦w†gÕ·«wI*ê¢ÿ@'²0e;Ü´=dÛ·KïÍ®w·pÖ´…Ù½«òvÕÿÿ3p‰,âóóvD4›²ã%’yÚ€A«QðWS›.ëÍÊ)mj·Ž7ü0É_ïa:‘ny"ùI»9 Û­}”^Ó¹`|!nûkš³óæi¿1õÜþ ÍGAendstream endobj 97 0 obj << /Type /Page /Contents 98 0 R /Resources 96 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 96 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 101 0 obj << /Length 755 /Filter /FlateDecode >> stream xÚ¥VKs›0¾ó+8Â! $ ·Æqbg&­»ñ!Éx,ÛÌð*8î¯ïòð#:Q:>€°¾Ýï[­v÷t¢Ùç”ë 8<& =ÀºÇ b”P}2¿5ˆoZ”û<02¿êÁ‚aã,*Lâ2¬²bÓ}ÊÂÇD¦•¨¢,5ï'—Z¢Ã4F™‡˜Ã‰&Úoíöës ë—FNà3} ŒHP=Ñ\êl±6Ö~îìX`È:´tÚñ'.r\N·(èñZþrM‹`Œ {•%Òe.0±—¢h%¤v.í•Ì“ÐnZaŽpЮlSÆ@±U‹ÒЍçºE<8Ôo|¼ Ƶ\ÈÎ|(k\K’ €±†¤µ³SS¥~Ëõ<ŠeÙmÇgB8rß…ÍqΚ½w”2Ób ëcï½ìaÔA<ÀD®ô²$-© ™öŸL‚^…V.k»äKâ¾ï¤Q'SñËY´0 3:<þ ð<Îj¯kÓÃopìøöæYYŽ!Îa*nß‘ûYܨ†‰¢ŠÂX*2¾éR–ŠþnÀð,*ù¬‚HaRfԖ˺Û?vÿ°öAØ Ã'®×®(&´}kOµ8èíëÃnX|Þ,ånLü ·„œ#endstream endobj 100 0 obj << /Type /Page /Contents 101 0 R /Resources 99 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 99 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 104 0 obj << /Length 415 /Filter /FlateDecode >> stream xÚ­SMOÜ0½ûWø˜bÏŒcÇæ”¢•8´Í 8„¬÷CÚ|4]ûïkìVR­r°Çžyóæ½ø²fò† w™°Ôî€W…&$^¯ï³Jè¼ ™Ü —­@¹m¦)G›ù^Ú­Üù±kå­ï® `8é_›n<ø_r<wûÆÊs½O…íq˜Néè»ßø­õá¨4*C—?Ö+ö¥fÈ!|‰éÀFämÇ~²ûGàk|Å@(g5 tŽxÇJRKp`?Ø·wœ"çH—³X UZD  Iu¦üÂT\‘ Ê:^`%œ"›üU˜P™x¢pZGžÅ;Ò[²‰îÍ>tœÓáÌZ4¢T¶ É$ŒÑ1÷(̦ÃhtøèòQFJ.ˆ÷VÐ5û^¡hÛ8I±\H–ŸƒÆib%Í•8kƒ…¨Ô¿{´øj‚Ê.¶¢À²2‘æWßû©9úuâ7ôi­sGÙóLz•£Îžç›ù% ¾ÐpQV)"@J»MN:¦Äÿ mŸf;¯‡×ÓÖ÷Ëø¿Î×:endstream endobj 103 0 obj << /Type /Page /Contents 104 0 R /Resources 102 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 102 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 107 0 obj << /Length 610 /Filter /FlateDecode >> stream xÚ¥•ÉnÛ0†ïz Ń(r(Rbn7P$ö…JÓ¶-®¤l}úR”¼4 ‚ª…$íY¾8ž.¼p )¢¤]+¤(Š%# ÅòÆŠ‰Tþ¹Ù~žØƒ þǬÆ,ñn«úyøªÒ÷…)۴ͪß-.¼³…ǵ悊˜.Ò…÷Ó»¹£héQtáQÂU"У=P”TxðÝ!÷æÞ—}œÀ Ž#ü,"<’°VOÜóÇDâ€QJýpS&Ôf›R®Óº—P†¹^‡³-tè@¨$T…3Ð!d/$[}ˆ8Q(`1Q—îÚ¬ÌX›Î¬ÇcD áð‚½[ IO9ÍrÓ æôè6˜$O"k DJálo„UtK)ä‡,7àD*ªlÍ:‡IUlÓê“)Ï0£¯%Z;ÁÎ:``1YôvwËnßšúUú7ÞÓ¼êÜqLýWŽâG‹=qª¦™Û+°-6*ñ[²G;ÎÛ¾†i1»KÕÅHë6Ó¹ p–kÓŒõúj3Zìº5O£`ÏMŠAøϳ‘5ž]~ÿÐè,;–ÚŒðîE½‡}µ\ÍÊUG^Êy…úUžÖÙ¯tt[ÍMÿ·Ò›¡ÚÝpp»Qì‡Æ:7ùÖÔãªvÔ–ÿR€oX ßdëM;©ìôÎJó‡‚S<±ãšqþÿCü(Ðn†K;³yÒ/n'R¢G1#,Š¥Ã·­aê´5ËžÛ>2n]`þý æ3áß¿ˆ~aâDГ(îO@ô»¾Võ®ë÷oÛýƒöô¼6û§ì7wÃ,endstream endobj 106 0 obj << /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 92 0 R >> endobj 105 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 110 0 obj << /Length 535 /Filter /FlateDecode >> stream xÚ¥TMs›0½ó+tDÄjAåè&Nã™Ì¤ mI&ãbÙ0ƒÁµqóñë+$pœ´3 ípûvß{+v’yá%QLI³dK¢€$’3I¶¸ñ–ÐøaѬu˜ëÍx¸šo·”§¾®Ã*_……Þ¬óð£Þ\~d ÂVïÚÐAOKœ·Íöɽú¬—ºÏk¤1(9½ËfÞYæqæá–ŒH˜ˆ$'ùÚûáÝÜYx@f°H¥‚<˜0®’µc4*ïÚûtȘDÁq¦I¯›Ç,Š%ÂÑøéæÿ,<Žñp#ŽDÈ0I xÂT„©­õÚ æ¸q¦„°Ü‚¬cˆ©£8-+½ëÃᨅ\²8JcŒLJaco „‘s €ÕK•FL*Pưp±;ošÅÙOÊÁÐjYaéCPÀѰãñŸ“Û[ªr×Þ7Ë{ý8_o ]–ç6¼7ôj: 4ÿ7°ø Ø6æ¢ÕÛy[6u¯áÝ¥-úR·E³Ïû¸GûŠ"øM5ß–ÏŽøØâWÛ²n'ûå ¾.»N}5®ƒ»¹v7Úû/uÙŽ·í•Â×åª8`ß̃Ôüø<Šþ%¦4”À3'Òò=×uw‡ôÂmj·fT¡¿ïÙÏ:³÷ýá.NœÄýEàèvKŠÂ7ÆÚƒ½)nû½ŸŽ§ÍãÓJ׃ü_\j]endstream endobj 109 0 obj << /Type /Page /Contents 110 0 R /Resources 108 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 111 0 R >> endobj 108 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 114 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚ¥=oà Ew~# ¦¼‡ùʘ~ÊR‡ªlQ†Ä&U¤Ún-[mþ}‰q­îÃ倸âm 7h¨Þ¤'ê%µ„F@šCäg<{ŠÏ· ´dwçƒc±ûá²õõÔÆn<Œç¾ãûP‘û@€Ê´`.ÕVhe€Ö-ù$»½¤ ‘´"R(ï4ýJ x´%%ª_x'¯äeí‘´0Ö Dtÿê)Ò‡ —ž€R×¢í¢Áo•»jP¨„󠨥5³‹ÇØÅá0Æ&œæœ3plŠ*šMËÎz£å¦´™PæÝ‰£fýáÞãêôûòW›? –`«endstream endobj 113 0 obj << /Type /Page /Contents 114 0 R /Resources 112 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 111 0 R >> endobj 112 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 117 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚmOO„0Åï| Žå@í”¶”«ìšQc ñ¢vÈ’ð/”Müø–m!šxšÌô½ß¼Î}Ý=psF•â2®š¸`±•:‹«ó)/fZpNR.ÑÉWõè ‚æ:‡ÕÀâTJ*47à §çÒË_Lv25úö0ÖׇÅ,í8ì$4Š’ʨnº’4…$Æ)ŸNÇ×™oظp  n´3RnL^Ђk¾1wêÓvxéÐÖs;ýÉæŒj ã1kÐüUn¼Œý’eŠjåä«ê“I6Q·Må„g®¿ê=‚õ2†»Ö±­oÌþvµ[¶vðuÂÓØøº\ÂäÛôSç0.Wt¬¢yendstream endobj 116 0 obj << /Type /Page /Contents 117 0 R /Resources 115 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 111 0 R >> endobj 115 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 120 0 obj << /Length 337 /Filter /FlateDecode >> stream xÚ¥’½nƒ0Fw?…G3àú^ccgLÓEj¥¶lQ N…HJˆÚ¼} †©Ý*†ËÒññ§»ÌÈÍ=jj¹Õ~d;jM5p…€4+7 “(F hØ£;>Ýú {Îkw:æ… qu(εkº¼«M´ÍÖä.#@…`ª”+©5ù$›­ %tM—Ö(úåƒà`-Òš$(§°'oäåʉ=(ž“–£;$\&'yôwIƒ»áÅ „`¥ëòjÿ§ü«Û¹6Ã\ã?yùn• þØž‰æ å0bWÖ•c îT´Õq*ÁsĬØÓ›Ú€©šÎµM>:5W§ßí_Hùÿòf ©;í»’¦×“(¹± i ’T’®qmÞMô÷fYd籿uŠÇ?* P %I Àð¶‹P±CÂlŸÞ/Ó"}_>Üu…~º`žendstream endobj 119 0 obj << /Type /Page /Contents 120 0 R /Resources 118 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 111 0 R >> endobj 118 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 123 0 obj << /Length 1070 /Filter /FlateDecode >> stream xÚ½˜KsÛ6€ïú—Û´&6æ)o8Ñ1ƒ†¶J~³ùI˦¨ª÷¨.+òÃvú kuxãµ’îî5I´¡àXlÈÀd†0ˆ¹“Ð€Š Sé™]ÕEiÝ}ÝÛqms[&µ]:ñÆ&'ÞY6È pQ• q¬ÓoÍâÙ¼~ ¥f°lB$ ÑÜGÄzDrQö3ž‘¹È¹º—øØ`ˆ‰™^/Ö3”Z5a /ÎIYgéÊ>†õÅLìÇrQI›ðAÞi‘×I–÷ôó«Æ¢\'ûœH.‹m=«gi5H.VË‚¡ðŠ7em¼Kòë`Š~ ¢_ÇÁÜŽ ×»:w> endobj 121 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 129 0 obj << /Length 1264 /Filter /FlateDecode >> stream xÚ­XKsÛ6¾ëWð(ÍD0Þ s´#ÇòLj7QãCœé°"lq†"Y’Š­vú߻ă–lZ¦š@ìbñíâÛO£“s*ƒE^‹» Â’ Jh°H¾©œL©$4_èòÓtÿ¯u]ÆKm»Šåf­ó&nÒ"Ÿ|_\Žf‹ 0<Ä( &I°\þ}ûŽƒd„ƒËF, EðŒHÑ`=â”ùN6ú2úµÓ3EÓ]M§/l'X"ÎB("‘’L™ÜR*&Sñx™ÅumMž_ý~×úÌŒ€Å'çœ!h’¼ÕD)’œð`J¢GFQœeV8ÍËMsRlxÙ£Y×þóJW©ûrWëž%ÍÈ-Ø.NñÎâ$¢ˆ!`Ûí²%ê10D¦¹$$ Š8U»ˆL)eˆ‚C¡Å‘Š„dö¸Ô¥wâaHB£h~eeu'hº«8O²4¿Gý&9EC,ú¨óÙ òf¸Q^L±CX ˆhµ4PqV¶•hhÛæCÚ¬lëBÇ?¶sÉkΆPaÃ-|Ç‚<±ëänžßµ@—“ÐŒD4x5Ji»Z¿#Ã)LÃaž¼˜]Ͼ.†úÐÍvÂ;‡ìçCêböyÂÄøfþqèÁwB$4Bo…“ ÕpgFâÉ™©³qSkçÕÆ9ó^7>¤ª‡ôÞÓŒõwµ6¼Û L¨cŒ * €úh±ÒÇŸÀ($ôMpØ~ìí8ß6릨<×^8? ‚5 ]Y\¥ÅÇðá$!ö<”…’ ç{Êø›À4+ÝÄÏH¢\¥.)Y¨ÜgûʼžpèVMºÌôaÒ )R„ç„ ‘I!xåÜ„ç¦ú æCFXÂv‡:æ|¢°%ĉÚ!WóáiA’—ÇØáZ§ëÒÃYéÔUJf¬¸Û›^®¶uºt*¸}ÙLfl–bÜ ¢R(Ârˆ‹UÕ2™ÖG¡¹ð®ŒÜ á´KÙðã.äÿbQ§;IZ—­ë®(`ƒñêdHõ¥±ðÆëcé$Ô›D Ñ)BvDçj‡0 €.Ík_¹5UÜK¡v0×:ñéèa¥sŸ¢ ºó¤ÓšÝuçWýñ"Îù øœDt¬×åuk‹#£Oqù*Šâwâ|Oüœ òR¨Žà_Á^ÔÖ.ª¸Úö³ªÕ¬ö @…dÔ€·³žõ!Cðî¤8êêy½lªÎæ’òJµ$îºí¦=:½_5gÝšq¶oä^Êi|š¼™DØê÷(Öu±L㦠¹®šŽ]èéýºÞ«´£U£ŸöLŠ„ fÓ,BXE°g.¢œ»{lÝEÅÎmÒ]&§p…ÂLñg(åÝø%Ä‚#€ÆT™8ÍÚiÁÔ™¸—ὪÔlê·> endobj 127 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F47 132 0 R >> /ProcSet [ /PDF /Text ] >> endobj 135 0 obj << /Length 1561 /Filter /FlateDecode >> stream xÚÍY]“Ú6}çWð”™ êÓ–vÒu$bݸóZÏß¾p—¿'3]Ì“¡vÍ÷z¬]";:+oEŠFw¿ôß´^ö[¤áGJË"F‚E¤=œµþn}ú‚Û£n¿iaÄ”í[h`D”¢íY‹SÓÖ‡Ö+;=0Ô«Z:·$8mK qK‚P…p¬d;† ;&æ~îçc÷Ÿ½HLšgê–=JQÄ ‡ Ž0ñ6>S*º=1p]Μ•¯YÞ%¸s› ÒÜÝùÇÚ8<’´Ý#Â<._ŸèÌ=ñ³û#OÝR ÓÔ_ë;Sm–׃ùÈ<-â {áYÛïÿ×QÙTƒ#3‹D ,°,_í_ë5|*ªð×ÔÒÂý/ =rWÆ?cÉвþêš·×iÙ¼ö½»Rgó¥Ù4z¥Ólâ.:¡•AJZzyGö¸@LZ>€ýÕ2Z·þ\ñ¨Ã™ä¥ÿ$DÏÚm»>öÂå3¿êìEÅyQ|Ð¥}n¢Ík½¸M'õÝŸAÒ4óÜ2ð0Ü ¥¯z«` »ÜŽ «<Ÿº·†ùlž¸(^ÞX%u0iíoÜ-y@`V8 #áÈ3ùŒ1«aË‘’ðš{ÆG׆9\*z€Ù5wJ<°gaÿ!dÉôÒé<ÔEñ`p £ï­Å –è1°ÙjìV䈔Àê `8×ÉìÒâI&Nuñøˆˆ%¢¢ÿ¤4`Šðè >v#ÑÑéäÚÀ^DN-`U#$Šš«ðO‡‡8_`+FNŒ?€â±<ÈùG¿`H‘Êštü’$,Gùkù«Þ¯áÏcEâœ7d­À~ãmYtˆmZQb$8t5DAaFggyaýħ!O|.1·éZ¾ð¨H•2¡ˆAfãF|ö¬‰”\‹"pÃ`y±Ö¢~ËrW¬)†UÍŽ-GI¡„^ocÏŸ?žÓîh霨DXòF7=›O£k`Cž&˜\y¢t 뀌ýÃiRÀÌæŠu.lŠxa¼ ŠÚI)«>òni|Æez”ëR»9È8ˆV++¤þ"P(׃<9ëÃ|~?HÇ®aï¼ç”ƒ „¹ÇmÚ²X°±Bì'1¦‹ÂxlÒ.o™Ð»ÅØÍ2ônr-oÍý­àÌýµ€+#FÚBʼ*ƒ¦‚)àµTGP§0Õë–}×Ó _`X[E™ÃTŠ©Â$Ù(Yø †!VÅÍÅ»•ÛV5Ð&¿:ÝDМâzrŒpqNåÂUjÇÿK·B›A9Ì`™¥ÕLs?ÿ?íÃggoó°œÙæfÏo:›˜kÛhÐezCm¶¦bÕ¸\¼ÕtE$'ã±5MÉÛÌþAùhpñnp5͇_Wz’f[jí8„ûË»ù4¦fz_vKʨFå;Ä4ÍB¢h®âhàUl–Õ«ÏLX¡ó0樷­bVU1‘QI/¬„ªžc¨Ð¹ü~ÊëlôÃu_Y£ú·ˆN”B„cñ½E‡Ì cB›D¯Y½Bžu9v;?äÁÛkBÍ{ÚÒ¼1ÍË‚ë˜5­^ÇU†÷f“§±k¾Ö‰ýpxsrHЭ¨-È úU„é…Óö6B¡¶.Û®$0k‚À¿ØÌ`tpS> endobj 133 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 139 0 obj << /Length 1412 /Filter /FlateDecode >> stream xÚÝX[¯ÓF~ϯðJ$²Ýû%‚J…-H´Tñ(rŸƒÕÄvm8ýõõ®;qrzByðm3;óÍ7ßÎî“ëÉÏ© 2.×7Á’ Jhp½~7¥z6§’P=ý%Î_=…§¿†Û¸ÌÃ(vWY´ÛÆiVI–Î>\¿œ<»žÃÔ…B‚IDÛÉŸ“wp°žààå#f´>ÃFÄl'œ²æa3y3ù½µ3Có®¥'ÖwN ¾Kn}'Ô ¬ŒÜåˆÂM´Û„•÷µúèo^ßU“ÐÝGEV–î¶Œ£:Šú!L×þ­­¬0æ^ÄE‘6Ôøæ”"É ‡¨±/Á‡÷”ŠÙ\`<]e™·fÕ2I—Ÿf¬EX«_¿Ç—Õz±è|¨§!¤3 aq"kþÑ€##Ê ÷#êÜ-?Çékk6, ”Mì ónú9¢\ÿ·÷³Ùâ®ò】þÜ{#=92š0?æ¡ þ~ÿ„FTc}i”¸1=®ÌVˆx7'1*Y=ºˆ«]‘z.TÅΓ%¹ñ×Ê&L!MÆ0mxRÀàªËQnÄä8‚žwinš’ô€º@ Ñ¥FŸDAXæ àýì@-Ìyvq­ÌW°‹ðâ€\ŠbÑgWonÀuƒßb‘TqºòQbnŠÑÓ8\ßU|Y] ƒ*=€û#Ÿ3tÓ²B2BÐÿ§Àš1ŸFW˜dˆJJ.¨°üT‰)‰Ô•/0:¦À ¨ÕDïî–fˆ Ö¤)G>€\Ó@I«]u3z.­.Æ­lœøšXY²nmÙµ¢lW”–€YYy¦nÝ—Yù¸þe»ê¢íâÒE4/’ÔKQg‰>”¶Á˜ß Y“[*öˆ9`\0ÈhÙæsuû^]Ï8PœŽ×öGƒ" ab4Nâx”¹kV‚$œœÕf=Iod›®}—0ÄÕÜX4$´eJ«ÿ‚"†XÝg£?μÇ3÷:? ×„"Ö6õZb齪¡¼1´éH¢,-}q=ßd6ŸýÀ›SªG ±¢Vú!ojúû&¯.Y›ã“ ¤WFu6ß´1< 7›UýqPLIV.Wa/±ÍãT£ñæÅíŒô1®6é'MÐäœpÄSVñ6¯Ûíã·¬öÖöh6]ù‹ßÌcNÔ™V¡¿Nîqz‘Þ̨˜f=‚ÝÆÕrOèºc,–à„(µ ¤†-‰„z9ÇYRǰ±Xm’òãD?ßÝãÀ×)£è‹Á®Œ=yVw ¸KXvŸ¹ÚM«³âúÅ4¡ã—\-÷êPS±;¹´B‘RNÌYyHîE2IÇyl) $û€üfuö°Euãsx«¸G}QÞkw/ÒÛo«¦‰ªâ/~ø§êËekS)¿€·ÆlíÔ ×¶=Üù®|=£àÅ&,’¿Âý¹ÏƒÜ¾úzº<c»´;Dx5çPøÂ[}kÝc mqÙÊH‰8Óv7‘”†óEGQ¯³Ýj° ‡'Äèî¾~™'îOÝ…!Ù†< &´Q†Q˜_FD0ABh ± å¼ÓLÌà#øwWa²itô*.£"É;uCÅuFK¬™Ÿ6þ ­nâÝÜ@{íÁë†70“H㶯°´y†\«^«›CŸÞ6ó†E<Æ‚aK¬ÿW> endobj 137 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F11 22 0 R /F14 69 0 R /F47 132 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 142 0 obj << /Length 937 /Filter /FlateDecode >> stream xÚ½VMoÛ8½ëWè(5CR¢$úØ&Ý6@»=´…¡H´MT¢´Çÿ~‡"mÉŽ²iºÀÂÑΛ¯Çá¼_zWiìsÄcø,×>Ç~Ä(¡þ²ø¤(œÍ)ÃÁ'ÑÜ}°Ëß³JtM– û÷‹X‹vFÒ@¨~+æ4(Ÿ}_Þz7Kø~¤Gf baLü¼òþö¾~Ç~áaÿÖÃ(ä)ó÷ð#Â9õ+/¢áñOéÝ{žpæ4#½wA‚8cô… ’SˆÎæcܨ]%ÚLËZY÷—³$  æºÎA®´=!\älÓs逌ˆÃ€=ÊÖbñYSuû%SáÐðZÒ£é“õÚ~¥>úúÜ•9FœÇ!@0”òÄ:t ¯nV%¢#’¢óÔŸÃ3ȰQi²îÌqã‰Áq/Ég[Yp`B¼Î*Y&¡¦0 ÑåBÙ3‹¤·¢„xg„¢›ÈØœ$(!!ƒ¨”†Ì&îZ|Ø*9T5Óö[JåRJ’óÔÒÉÎê„¶hºð!E,N’QáéK…ÿ¡j“»½ZÉúõº/·Î£F™SëwdÙÙï®…]iwF·YþÃ.÷[™oÝîs2©f§ÏÁ„T»lEV ×iÆßN3{ 7“ʺ\ʉ}ñ¤'DdÐY5…þ½£ø¡Ï½†äUŸÕºsgÔ y" úQè¨óq§òÁî/´ŸðÔ~~êC߈뮻#TGÊПD»—›éSß0ÃRé‰zÒ$D˜BÖpoU¹R^øF1ŠÒÐ0Ò—gN9DŽ)°R-;²zʪ¦]OG˜ÊÃMΈƒÀ´¾öàêî`}7åù;W'U 娯4´bÝHÑÁAô2 ¢·³€F/³Àþ«ÍšÞCÖ»‰NMPL#{ÿ`šÇÒ]Âí^˜[ÿ¨ôeT®p}a‡r-ЫÜì¬:»ejgR~a/<·çPö[eò\ñ¥–7&Û±å=Ôuyæd^Wð’ôsø{óhú0yàÖÙno ¸0¢<Ø”„à Ÿ"ÄSP³g\º^Ž` SÄÏÃŽ¹‹xd¹ËÞÊÝ :¾»¤ë½•Ù¥üÄsänWj NK…&Æ«æ(†ÿ}º‡«†)ÓtìlE‰Ûp!ùæ!8rk˜ª8 vîfÜšK»sæú)[0¼ˆ\W¥˜P»Z›«P·Ï†Î#i¯ë§ƒë?&üpÎÆóendstream endobj 141 0 obj << /Type /Page /Contents 142 0 R /Resources 140 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 136 0 R >> endobj 140 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 145 0 obj << /Length 986 /Filter /FlateDecode >> stream xÚÍXÛn£H}ç+xièí+Mû1—ÝU¤]ÍìX;3#„q;A2àÅN&Ù¯ßj.`˜@6“‰, ·©:uªûTuÃÙÒúåWêÛ ).Ë­°-}‚%Ô^®?; »õ œßõîsìü¥z¿‹b] /òø6ÕÙ!:$yæ~]^Y—K‹Ø>¤ æ;N­¬Ï_±½¶°}eaÄT ìo0Àˆ(EíÔâ”5ƒ­õÑúpÄñÈk#•Üq;…¡¬¨_è/Ó,)Y•D£CuÝ&YMøÕ5ßTWã±­ïçé.*ôo:»¼s‰p CÇÈ$Œ<"‘O9/Cý¥7ºÐY¬÷®Ç0©æj±h».Ñvw}8¿ø‚†/y¶pï;¶—][îÄ¥3¥ïmT’x«÷f 9‚”Õ<ÔN# ޏ“ë,Ú¾/rHdÿ·KqtqÐÆñ~Øãh”Ä=Pј|rìèäúæÐú˜¹×åMJÞ­éÐ.N3 ³Ût¥‹1Ë58]Ç}mõ$¿¹;w!ˆgÀÚèS˜t—´ù˜4vëM˜d›¼k<­ˆ²už†{¨·Îœ—ðpoˆÚ о\îpW­w˜¬°žÆYWãëªAGu·ÄÇæ7]<<@XIÿ-‹E›ælñHùzâYÁ„»þæóêjÔòÉõE½]M× Å°žJ¾aÐ( X³Ù:Qôõtò­{NxuørÜ…’XÏ“ˆÅúÆ%Âó%B(~ùc´ #½$*â|­ÃC>² ™³² NN¨ƒFw¦Úë߃њf±ÃÁcꪾNÚÇÄQwàt¶îù˜ÓÛDç}ò¯©þÃëDN¨“gn¹ÔSäM× PÄ,xF+ ^¾•Ò‘29î¶á @ið”[OàP©“²np?U¯Áœ¾Þ{ºhÿ? WHA`zÚ×9mYIÄ%­MîÈk…8æòDÐß-à¹A`5#4}*ôø1“#Š%yÆÞÀɳDß{‡{#ŒýÿWH- ³úí—”„r†<tŸ@A.+ ;]À³v­Ë&Õ¥«¨s['reØßÖwD¹X¼àõ1›bR¤6æD^´tØüE~ÿp­/ÒþT\,endstream endobj 144 0 obj << /Type /Page /Contents 145 0 R /Resources 143 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 136 0 R >> endobj 143 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 148 0 obj << /Length 1216 /Filter /FlateDecode >> stream xÚ½˜[OãFÇßó)ò„i3û%Zí»´iK[Òö"dœ‰Øiì°ÐOß3žq°sk«B¶ñÌÎåwÎ > ¾ûžÊ¡AFÂev?4x¨$A‚:œÍ¯G±ñ„ <úÑ.? ·?% [,“Ô†Ç_í½]‰Ù¬ú“4TŽßÌ.g³bø!•²PH0I†ébð×àúç<¼`ÄŒïð€1†NYýð8¸ü²Ñ™€Ð¤©tZ9;NPxTÁ‡Ê@o\1žÂDðe:ýÁf¿ !#»*혈Ñótz—¬Ò|nÿÄÃ/y3˜»f,“UéÒG[ܺì6ͳ¢¼½«Þ=¸¬Gfâ㎀%È,·×°‚ùºÜå.çæ0Ã^u:®ñšº>óÈ!æuö°&Ù¼ÁóÛò•.߸ƒ6K+$)çm¨¢ÞÝK¸¦ùŒ°Qص„:²L!L©ë ~ ¸1å|:Í‹2”W²85^“–/í*)óUP%¤¡J4FXÿ¸R}ÿ¾ge¢'˜Å!ÞÆîraµ“0—ÓÆ\…‘aØÄ¹yÑ#¯‘RÅ}†Ù¢ý±Ï‹âʦ>ÈÛ×0 lxTxÞ»†p#š2Æ)¢š°6Ù×.{t™½‰ª¸5C!&ŒBB#\U>J˜f.íY*ÃÕë„;mÂ5¿W?ã1¾«|õ}ÙUÑÅ´9y:ýºr¥=š+‚›`¹Xü °(Ò’Ö™ÿða XTŠ.X® ïMºÔH RÏu}I—HBsi‚%¶Å·‚%)Ù –ÜHIÆÚ=iX@"ã°³F°ôÁ`ú­ÀZÙd~WM¬HĪ´‹åcô-8Ê@·!ºnH=Ê )®ëbN“,eČγ库$ÂbÓ$ý&§ðhŸºú ©'Aˆz•9 ª­Ü tÏÆµ¥y- ›pŸ2CÔ´u{’ÃÛµF ÒLw»\Ùy¢rãßkù¶‹Qb$1Ü·ºü<c,­òK}ó²´í tu Âû<\×…í±gÜ }‚B_‘:ô‰³çŠÅÓŠ0Ya£Á=óêž Cn+\öP½@iÚ=Ì”¶(+Ô ßÒ¹ õù ]AÁibŠ‘xnBïlBgOþüd³r_ꜘ‰ËŽî8tË )Hž´zÜÎíL–ÚyLRÈhMv“üšïZ‘À>ñÍ6)På°o´öƒ¢„¼&«%X–€ü‡Çó˘ƒªã}ÿnÐÿðç„Øò혊ÑSÙ&6ÉÞ †5;Ids„8 ”«jóKëq{ÖFâ_Ÿ„Ø–“ÐÑqdˆ ;ÏCý¹ÿ… Š öG£ rÙ€ŽH¸¤ß0áoN(¯ ð¯#’ÿü‘¡!t?”HdÓõ7‚`Û•å`¢aÝÛêXÍüYd#qá]XÇ7±Dˆ˜ <å*> endobj 146 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 154 0 obj << /Length 1138 /Filter /FlateDecode >> stream xÚÝWËrÛ6Ýë+¸òP3‚÷ƒËÔn›´IÚZ]9Ž,A6§©ŠTÿ}/¤)‰¶•º«Ž$LçÞƒ{ŽqßNGo~¤21ÈHxL—‰Á‰’ Jh2]\§ŒŽ'TªÓŸíæÃ08ý8[Ûz3›Û0¼¨æ»µ-›YSTåøfú~t9‘Ãø …B‚I’Ì×£¿G×78YŒpò~„3Z$_a€1†&맬¬FW£ß»}&°Ñ¤¿ÓÛÁØ) U]#?ÂÇ‚1Nëf‘eEÝlÇD§v¶†ØµJÏÜC†ä²¬¶M^”›]“ïÊ¢©Ã”ÏXà¡Å2=;‡§‘éŸnr–}¨ »µž;NãÀä„d„qÅÙ¿Úò®¹w n:¤ƒ{éLºÕT j„ö«!ÄÀzséoC…×eµm?ñO>ð á»ÐRŸ¸ FÆH@i,<Îå·Ùz³²uæ!)l4$bilÝ\u”¼û„æsT”h(¢"L$†‘â4¤ra?cL!zW6>ÂYŒtU”19¦px©–áé–¬âÇŸlyùeLD ´_ùäB>dìQ%å܃ýa—vk˹¼ÜÁQBàÄ—•;dwç1r^baÄÝab–íjÛ/’vå*ÛGÛÝ>ìmûîSÞÏáù½ ˜D†jÞ¯vѯöj¯`ölýë¶hlî9Dr»ªæå·ö®([ªcáïóDÉâ¶VM¬¡Íª˜Í*fíª÷Öºä;LÄcÔíl¨Œc ˆTˆ*¬×Á=²‰›ñ³I¢YœïòÛ Lª”hés Šªm=Dù„‚½h-^VŠj•B"¦Õ&æ¿=€> endobj 152 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 157 0 obj << /Length 1571 /Filter /FlateDecode >> stream xÚÍYKoÛF¾ëWèTH@µÙ÷CrÈ«M€8ib ‡4Xiå°H•¤ûßg–KÒ¤´¤©Ø‡Ø‰äÌì|óúvÅç—“'¯©œd$|\n§O•$HPB§—›Ï3Ø|Ažýiï^ø¯ÑÞæ‡hmýåG»µÙœè™MÊ[ÒP9clþåòíäÕå„L1ü“Ò²PH0I¦ëýäÿÉç/xº™àéÛ FÌh1ýcèt?á”ջɧÉ_Z´-=‚ p© ðOô|A0Ƴ¼Ø,—i^xŸ£½Gñ[ &<>Ø,*ÒÌxòš–q¢"T/ÎöÓ§^¤³>QÈhM*‘°À}k–ºœ¶tFXKYé¦yÀ¼FZÈÚßk¿£9³o·oÒÄßY§I^Tþóö ÉYãf!/‡ày‘,02DÍBR‰à–È‚) açjº 1n|:þÎâ¢*â«mœ-lRäþ*݆PKĨ¨ýîà=]š3¤„­ ¤_ª¼tׯŸúϨŠYz]® ÿ’‰BÎøtA˜K ÖðM!I!|m$¤FBH éC‘âÂŒFÂ$VƒHH…„THÀ é 9N"dQQR»ò‡M^}›ƒ¹Â‘$¡˜*qçH]c+ô‘÷寓ìÈÑ;r,µ>ŽÌÂ'Š4a’@—S8lD"­¥è[ØJ®Ê+/Å_Zh šÄE\7STÅ.NªŠ¥¬©ÕòÓiìl«±O)Z¯ýR¸[;åÔtÓÅJézð´U—K»^C*²x·ƒsÜ5¼æ=òe¼æD¸ ®»(±«(¹ÚÙŽ²8Q^4v»\Æ{ô`*Ê`èC[†Œ”a/.Vß]¥×ÉÆnVët·‹se>JÙ‰ß üêW[}²Mk-M4àPYú_[Zá!é"*‡÷UodÀ·v4.ÂñÚŒQ¾/®ýáÚØ"Šw@Bå`h×!4¼t_í£TünuqÑÕ`=».o®‚•Øë"ëâöÓwÓ!ß>›¯¢¥h° #ˆk#ÚÌoÚÌ?€ù92DÔ¼øìÙxêÇP¿TH+^O¿8DýIÎÍõŸò=×H1iîçû†@ø\"C‰îþGm~‚ï9‚:SÊ÷Û,Ýw?NzŸB2¤aÇCÛ!aŠz$LµùÞÝ#ÑІŽD5&éÞ­ê¸w§ân ð=lcWb$ßKDáo€ðÝÂ5á—Îø[ á—‘Jëg§þ@³b$!8Ç#ëaÉ®rXËÍíŠ<·+Lzæš-æd¶ê¡xMx¯Új Ík?£ƒs8lu€ê‰Â´ß1|_[8ߣÀ‚pjœmîQ)y}âñ£­Âò>3§ÛÐZ#6Õ²çÄì¬ÝœÕÙ@™õðÿØ-Yi¢!ïŸãþމsø_¶øŸâ_ïä_Áÿ°Ù¾I¶®ÓáS;a gŸcï,Ü}/IS÷»JCÒdü™g`.z$ééHä§#‘5MYiÁiC:w  Ú¿³…¹z*†‚­î­6Û¶’á@¤í¤&$²ê"é1´ê¢©¤z½QÍ×ÑÎ~xùú¨‹ŽW¸!÷´Ù$=¿È/¸ôS ‰°@TrúMÛaÂõO4‘0ÒDœ‰“d–,Þ)?®i!uÔ•؈*õºí%¨â}K¹<,Ùos ¹K×9Nô¤{‚B´¯ÅnÎh%ZµìÄ_”æù'໦~ª¥¯lñá¶øGa©Ú¿®hŸì¨"Hó¦æ?lj+Å/¡šnD;5 q[_Ÿl½?keàQuŠjûÕÄ$‡¦Á˜¿a³¬ ÝFÆH8vQÇV_[¯n¢ýagóe™açYìØ‹˜»<[/²zwëÝzŸìn/çde¡¡Uv[úäX¼ï¹ú©6áßÉÞ{õ`o§°y·ôÛ¼nì£÷"#˜'ìá¯EZ†ê·"p WL×oE -%ëßͶr¸NYµë*ÇoÝãºz"üK—\U[Lhu¶.§nvò¶èß[ÿù2½¹½²I ÿéåäendstream endobj 156 0 obj << /Type /Page /Contents 157 0 R /Resources 155 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 155 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 161 0 obj << /Length 1375 /Filter /FlateDecode >> stream xÚíXKoã6¾ûWèTÈ@Íò!¾„¶‡lvÛØvÛí!Z™IØ’+)›äßw(R¶dËŽ¼›öT†^ä¼øÍ7CžÍ'ß½£"ÐH ¸Ìo)â”Ð`¾¸ Y4QA¨ 6ë÷oàãð×deªu’÷x^¤+“×Iùôz~1y;ŸÃ4¹Dœ ¤«Éß“«k,&8¸˜`Ä´âÁ#<`D´¦ÁjQÖ>,'—“ß7rf hÖ•tÖØŽwl§ð(éçæ#Æ4Ï«C“Ú]—YîM§Ê]‹[wµ3–þÛ‡çú>Kþ*“õÚ”SÎCt¬w`ÎŒH$h5zþ0·¦4yj*7o=%8|ÎòšëÕæ wÓ„0Ž2ù›²¨ªK“ZÛâ¸2õMjßÜTîÕGÌ1üÉq} •Q~zvW3¥<ü<%<„µI˾,0†E:\%Ùî+g°uö&ËoЇúð÷£×IYgéÒ ŒjB`|,³ÚÌ6n¤9'[.Ü—ui’Õ/¿õ"°ƒQ˜ÈRÚÍSˆÁ²éŒ`ŒÃOE±ìE;/jëÖgk'D¤(ە渪qÜùШ"¤£Š’DsPiU}?` Á0@G~Äv…?X±> ^pÔÅ*Èx+`Ç´K–Ý„ôuo…ô ŒV„ù1‘/ÛÇ¢ «DÛÕòcºI9‹p„„Œd0£,¸U+MýPæ>cêòÁç\æó0ó™š&9¬ß67ÛLrð#ð@HFö=À"œy–¨ï½1.—ZdZ…@$¸öÒq Ír˜f.MR¦÷N !^™¥š4Å5ÉÒeñìî­íä^~Ö;"ÙØQ–N:éónYX^yŒã´ÈsoM¢ç¦¬)Ú›ºHò;ˆÆÝÍa£=ò‰þrò*…úxò*ÌÔ$¯ÂZO^…0¬Ÿ½=åÉHµºãx±LzbX¶¶ÀúN‰ ;kŒûˆ”ˆÁ[&¥m&Ž ¶H#Â8ýŸÚ¾œÚ¨‚¨hGFRÛ¾.Zñzmï©äºŽ!©- €bXc¦Ó嵿LigLÄ.Éth§fùÂØÙO}*KF2³XN äÇ :‚¼§¦c¿eIÈWÏÞéW’† X}wIéIPÙ9S1ÂØ×ÎuùsE´„í• P2ÔWH{h)Ú~×îyZœµΧš†mÛ|aÃôà¿pßñ˜ã8òÌJ1ñ¸µÛÍö€§s^Ùø¼xz¾3›#ÊDS‘endstream endobj 160 0 obj << /Type /Page /Contents 161 0 R /Resources 159 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 159 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 164 0 obj << /Length 1526 /Filter /FlateDecode >> stream xÚíXÛŽÛ6}÷Wø)˜åE¤(!(˦Ý’M³F^’À%z—-¹–œmþ¾C‘²--}k>…aH¢†Ã¹œ9êÕdðÓ[*†1Š\&óaŒ‡‘ ˆSB‡“üs )ÇÁ¯jõîµ½}Ÿ.UµJ3e?ª¹Zˆ TÑ ‰˜Š€ñÑ×ÉÍàj2 C ?ÒhæâLa¶ü1øüóÞ 0b±äÃGxÀˆÄ1.!eíÃbp7øm«g ŠÆûš^5Nàž#ëCc 1®r®\}x÷zúéêãÝõí{dìÅc!Að;#9§Á쇽~¨u¥Ëâ æþäùh,hdÓ$×·Ó—U¦õ#˜®k-T•$k]«©QîTuo¾•h´LAÉlQfߦ3e„ïõÞb­±Å`PclZäÖ¯Fǧ!¤gcãc/Ñ „…HÀÚmžáGåhL0ÆAUçIRVµÍkº|¶x±Rë´.×V-!{j‰¥L@îµ/^x–†HÇRR'bŒì/gW{fç†ton„–‚»¹ÍÏqL„znµeeQÕööí¢ˆ×áeC’âÖĹg ‰øÎâdöq8fœ#Æ1Žiˆdèb=‡È5+¯Öº¨uqïƒàõcZèòh¥SgýB®òHŒíM9·W3e¡vNÞG‚(ËŽã¼êä·š$Ë©ÎÊ\ Øè» p©óŽÞær·Íòët±˜¥Ù·Öv‡]VÓYZ©$iàßh‚‚ñd‰Æ1 iØ&Zy¬ A€…]$tV95†°©1;wæUKÒS®½–’au¢Ú£‹¢Hħðb†"NiO“mò'I°TõC™Ûûv,ƒ(+7fxŒJÔÊ@ýØrƒû\ÁÓ&3uÍ2#³Zp]»—¥jõ-TZlVVQƒÍFO¹nÙTjí&¥ujïLr}EÄ€ v•ºƒÆu17,=A:Ã"÷Øc¶4ŒLàÚà>¥„M€ Kí@¿v,[ÕÊúcM àjå*kÝò‡ ©{_úè‡ÅH &‰÷ªžî¨mªk-9{\Œ"İ×EÆ·|€R&£—‡)ÓC¼ñ‹*®ÚMê®ÇõíSþ`ÇøÃM+æe’X„MuÞÙŒŽm¸ûñw±sq+/ÞÐv|T«åj‘ÖʳeE@"„´ÙòmXŠB9l‘VÎÝë[:0‡[u?ûðeÛô>}w³=Ÿi‚9ŒÄP˜¶kéÕ>ƒBhÀxtj3 CA£Ö’l¤_ŽÆ Ó Û,Í=ƒU–i¡WöEý`àg†¡hì¶RÙ7›ÊŽC 5Ï ‡8QS£f,Í[[yÃ+æµå3v€W(´‡’l=:—W€©â¼b­ªª2Ó€¦ÜÚó¨ë‡Ö[卯DË=¤Ñj¡ jìi޶!s[Ú6Üu[ON]?]ÐÛrF/cM GL{çaö»ÊêcÜWë¥Öu—GíF㸉Hy ep17mMùÛÜt¤·±“ÚÆã%±'”$eØP’¹º²ÌUêô(Uκz€Ê\m¼lõÜpPHƒ³E™Ydìëõý+—›ú°>Îep¨so?ÒIÂùÑ3H/(F~ºr矎o1* 4€ ¡ê¿öÐmú’½3S/`¶â¤,ú:G§þñKùYŽÜßpÈY'(_B3üùÇ#ràûXnÏG»%’\œ${d/à Õé4‚w´¯CóöìqtIÜëß;«‚‘ÌCJDŠ)5'7×™6äƒI”‰Ë¹Epö¯5>ÖšêAåSG ?t x¬å9·mÚ}è–QoàrtÓ}tëÓèÞÝ pë³ÀÍÜ\´[´ö[ †òd'C‘À$ú[Dÿƒû¸{"¡9a„±þrOÑ+÷-UÀ‘Î~î3$A$„.ÐøÆ™Ïf­;m"'£z[—¦cüƽáî+O8NB—\Š µw¶ÖO>϶qzSþùã^­ûº]»¾endstream endobj 163 0 obj << /Type /Page /Contents 164 0 R /Resources 162 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 162 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 167 0 obj << /Length 917 /Filter /FlateDecode >> stream xÚåWKÛ6¾ëWèX@Ìpøi¤—<¶Å-¶­‘Ëf±ÐJtV€-)²œzóë;%/mË^í©…åy|3üôqün¼¹b*4Ä(¼Í¡¡a¬€H,œg·®¢)SÀôä[ýú’N~KVv]%©uËeºYÙ¢Iš¼,¢»ùuðq@Hñ‚. Œ‰ä Ât| nïh˜4¼(áFËð/\PưpƇÅ2ø3ø}gЦ~¤w£Ø.c]Þ^<š¥t²n²Ù¬\7uzb“Õ+¾+ ¨l4eÝÂsà…-ˆâ quaß¾u6{©!&FkÖ›|¦’¦sÙ^9_Á<ߘª•ì};—‘’H ª7zí¢¥e±nÜã϶¸‰€N’ºÉÓ¥=Íp¢L<ªÐ~,›"ŠÆò¹è¨g4ÅÝ#â8œ2A¸0®íU=¨j@ƒÎkŠ]RLðÎìƒýL)+òŽ3uÒ{-ó¢ÇÚ¸‡ráî­ËPœ«X“4%ûyD—ç»°µ-R»Ž¦ ̰ßèý)€‰­Û†ÙÎfI–™mw¯-›"8Ìø‚ÃUkZnê>MŠäšÍ<Û+#¥kÝ3¶ý<¶Èov`½”‚±“Ž«²ý.7« Í«ìË}ž€>ÄÑâ*–¦ü¼qËÖ§qø~`œn©á^9Ó±®î׸F™Ú¬‡Pd„üèÎJˆ}ÿ!‘çd›Že¶LÛžN¦±+*6}œoÍv,61ð’ˆ`¨X 9ˆŠÈ>ñÝ»¼X”õjwÞ~ó—h‹ô¬¶¨Ã±¼ð#yaœþ˜¼0.Î9Tåº+aÏC:Þ{¹F¿–í ‚€0Æg¸ü_”7Ã=_&uþ=yæÇèI)H b8([—‘t g%­õ $TàI)ÅI’WGˆþŠ;s|Þx/"÷3|Wdécî´EÒô”}óh›ä˜;ÅvŒôÔÞ7¨ï§È0Ôò¹î÷¼ F çñ"+7»˜=îîv_åîåOîÆñ»i˜’\jθÊ%–>}8Õ„î$ò¶=wòônT{Ë= mð¥ûûHFÆró7pþϧr/Ð0”+œÂ¹îÚÀ8Ñxv϶8T»VElÏ“¡Ây»»›¾€ëVÖ6ý/²/XÎ$‰Ø­æžC ¬½ÝsOI¶O_ìî¿Éßy¢Qðendstream endobj 166 0 obj << /Type /Page /Contents 167 0 R /Resources 165 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 165 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 170 0 obj << /Length 830 /Filter /FlateDecode >> stream xÚÝX]o›0}çWð¤Åóõ·£ií¾Ti“¶F{i«Š‚Ó %ÐѶ¿>Ò$%4UÕiLy¸˜˜cŸãcûÚ'Sïõ¦|K¬Â0ù–úZ‘ ˜?/F†ˆ`Ì$}rwŸO'“Ø•a²¨_} —®¸ #W¿¹™Ë0#—V¯¸Ñ0â:¸šžyï§øPµ 5‘\-½ÞÅõcúg%ÜéÿÄ%`-ó—ž`¼-,¼sïëgŒ@ãm¤“† Â…b-†äô ôélC ÄJYacëkhfjìÓEX®hjÒ-IAÁÀêŒ(ªeUý’1Œ%v¥(óUTnZ¸ÿŽsB±1lhýKÛ…»NfuMÁ|ƒ5•X×DNDHl©³~‡$iéò4lØë°*\\?•Yc%qÃÁ«Ö!ZSjþib˜'å|éÊ$êèpEP€ÄNŒd¦›i´G` G "­ ñ7-!_Æ75Ö½ªa§pˆa´­ü¶K?+­pW«-‘¦/¤Uœ‡Ç~ƒó„±¿ù]Çódy·pß¹¨ÌòÂûtw½¡ÖƒiöÆ,\½æàD˜~ohb)vøÿ8)®÷±·Ô*Ý%¥,m9†i»’Ì]îfÐQ–7dÒ,¿dww†ÐÑB˜£-Íü†á2!µí³P ŒRµ«L´¦Ž˜a„žø{Cö, Vi‘Ün†ò€"Š)…îUD jV‹}¯ì PŸ#Ô‘@„V½KpJ XØUgðÚ̳¼ìš@‚(¦û¡“1º/H8ĉsH % gH½wæ \JÙ¾™3$apGì@AnÊôKû0¤!ºUÈ xÿBÊQ)©zÒሲÈÒÛ®‚­úgų{™x7D;ÐØBÓ¿<àÖA&aЇ! fŽ< Ëî´‹Ãc–P’íY¢ý8[ቦûlÊÌú†ãžÿÞ]‰¡¨çÏ¿*ÙjoJnÆÜ´%@šª#]êò°l–¥íʲѪÉñÏhȺ ër"éDèºÄ(°úi09jO?ÕÝËî9é]öë÷­K[úþª9endstream endobj 169 0 obj << /Type /Page /Contents 170 0 R /Resources 168 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 168 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 173 0 obj << /Length 1069 /Filter /FlateDecode >> stream xÚåXÛnã6}×Wè)°˜å]”Qô!Ín›Û´]£/›…¡Ht"À–\IÞËßw(’²d+—f³(Â-òpæ gx¨³EðÃ[*ÃÅšÅ*ŒqI‚%4\d&LMgTª&¿êí»Ÿ¡#ðä·d£ëm’jÛ=/ÓÝFMÒäe1ý¸¸ Þ,bø‘PDH0IÂtü|øˆÃ,Àáe€‹•?C#Ç4Üœ2ßYïƒ?:œÍúHgÆvNC¶Knl'4F8ŠUÁCY²rw³v†æµm“*oî6ºÉScí3J‘ä„ÃD‚(ÖÂ\S*¦3ñ¤nª]ÚxÀå!!}6 Š8Wà€Áøqd5‚e1w#Öeqk‘ÙÇ‚"Ì9s~²#4Ì#ˆ©€-ð`ú1FA±´Ed-±q8aÂâñí®HMÄk7÷Ý’ˆ3e9äÜØuÀa6Ÿ—À¤N6Ö€“n$M‰˜À†ß/×Q°ÇT‚Yd­ß¢‘e¢$ö#ˆ’­u-f ´¶û¬¬Æ¶(3)3Ý¥cüæGÞÛfOd^<Çü©<ÚÔÿ ÝŸÙÜR«Fy”¶SÛ.¦1èÍöw33© ëÖú]²†þ‚÷ÚVÞ3Ÿ1°^P_ ®1f#Nr+²cÃÍ)&¡Šù³\ß:ã_Úñþû1ϹBQ¤äó< EÂ3ë9»¯6ynKÏ£e¦¬O{ð¸ìždÿ&>Cqv“c¬™mV†2Øæ¶¬®Šdm{€Ãü³…7÷ÂÅÕýÇ x07¾M&˜eÒ¼ O°WFTî çIþ\’ФWÆÐ^ò<Ÿ¢C¤WFQz—8'NÒo£¨}IJ ;òIÙ}'ZdKmˆ=¿‹f©‹ì; ŸÆ)*ðêàŸæÎ¹Þ-^®¼Þøº“KOVè qJDîÔú=W¶rá®Eát¤¦ç:¨7c{MœÏ3Ý$ùz>aÕ>¸dtFFÇ:óØ%ÆÅÂë½Å=Nûèp –æö×é âsFdô Ä„{*GжÂ*B’r+/Îu»ãò}ü©´Î ·"w€™âSª¯—ß·Ùqq…Ò´•Æ»˜Uqê•®t‘êz7­X•󹵦¾ÓÙÒª­Àݹ˜]vî° sç<²=Š õÕÑdBÕ£fÈÖyùåë­î¾®ü4ƒàendstream endobj 172 0 obj << /Type /Page /Contents 173 0 R /Resources 171 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 158 0 R >> endobj 171 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F11 22 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 176 0 obj << /Length 1369 /Filter /FlateDecode >> stream xÚÕXYÛ6~÷¯ðSak–‡x yÉÙl€4mcô% ­%ï õJ®$g“ßáeKkzíl‹…HIäÌ7Ç7úÙ|ôó+*ÆiÃ|5Öx,Aœ:žç& %ÓåxòºØ¼}ž¦yÑeåÚ½ú5»-ÚM¶,ÜãŪh¦DMŠÊ¾bJ’ ÓÓOó7£—ócø«KÄ™ ãåíèïчOxœðøÍ#¦ßÁFDk:¾%”…‡õèýè÷œšõ%=‹CáQîlAÑéŒ`Œ'm—§iÙvrvëŒø)bmšm—]­ËöfQV›m·Øï‚«)å“Úíûˆ9>">ã Àˆ{ÁÊ‘*±·m‘» W_ýê¾EŒ!Š9xÄ.¾|·ø¥¨^~ž Nï"Ò!”‚¨°Þ Û °_È QÂ"²º–ux·Ë®nŒðm‚eb<# š8l/ŠÓªìʺrû²Îë²òI s“z<‚éÚô`¹û¾kÀ7—ïÐr‰¬NVñÁ‹ì{!ML –~’²ãIª„MRÅï'©_“/\>4]ñÅ-?’”FqN&󩦓âvó›Ù™5]¹\o³Ín‘ñ“ˆq­Á/iΉE Fþ {‚:kIzÖ%¦Z쳈 ¤ìÚ%iŒ'@wÄÖCº@ M¥‘“,"–‚)%^n ê@@U& ®P幚VM}ëfOß?¿¼tS["Sª¼Ðc~>#5b’ÊÊÙLٺї ˜uµ›lù—ŸÞÞIm[/ËÌð×ï–Z¾Sž Ε Ñu¹¸ñ=ïÊîÆÍ\^›ð-BÞs*} P8–¿.Ö›¢i+‹VˆÆä~€|ŒûŸ§‚O.8qŠùmtEjÒ#urœÔR;R㣤†¹ÅÇ(¥•|€ÒFW”Ò4ð¤¿'Âi‡Öü N³SœæH$XÆ8-yœÓaÅäžÓ‡X*+Ô*#5 <UžÔ0 ¤–âRCÓ‘pýRKèV$5@°¤†Ñ“XRÛ@j3µ¤†oR;2 Š4ƒ =ˆkàÙ#HÍÎ&µPê¿?þe²;ëæS‰½¯yÏ×išåùË*ï¿îU%TµË²´¯ô‰>àb«çÄHRÖ‹îëæ~ÁÙi:^­kӢܥi jËej<ÐÛˆfüòÍMï×£z_Hâ=p½í †mn}Ø?[å ísV2¤‡`ÝF*¤¸̸èu¥nš×Û«F1ú\…ÃþüüzÄûR ÒŠ’PØ>”•IìO±ÂÅ@!‘`Ò rÝ5eçAf‡¸gnXAm'eÕM•ùË}a—’euí/ß=ö eü܃öæd Í,@3d4Ä«*–]á« $öI“ÃyV]Ðëʼn­–ÿ³!¼ÀgþêGé—ÿQ¶«ÔOžDbI8J´ä½¢Ü£qôð·a>q¹€ ÀSSjú©õ[ã·”mgN Æ’X7!þ?ì5-B3¦®©@&úýè ‰Öž ïøâo"¿¿ç´¢òû&<™<òhò€›Ë7×–]ÄËX¿ˆ¤èµªä8'o€¦Z«ãySÝý£’†ëoKš{ÿÐ)sÙfìßÿA×þŸHK¦Âÿs@ÄDŠÐÍ›BZ`œí¯·ûS5·þ‹?ØO9NM(&Ô;Ýþ1×ôRzèìõ—¯×EÌÿ¯*rUendstream endobj 175 0 obj << /Type /Page /Contents 176 0 R /Resources 174 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 177 0 R >> endobj 174 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 180 0 obj << /Length 665 /Filter /FlateDecode >> stream xÚ½UMOÜ0½çWä„©1þ¶“#J‘Úªeo€PÈz!R6Ù&ÙRþ}'± a -jQµï¬Ç3oÞ¼Ù9XûÇT†)J%‹U˜âPI‚%4\,Ï#Žã„JButb6ŸÞƒ!pô9_›n“Æš‡M±]›ºÏû²©ãËÅip´HˆáCÆ€B!Á$ ‹uð=8¿Äá2Àái€KµïÀÀˆ¤) ×§ÌUp|}ˆ“@ dé`;SYèqDŽ‚1Žº~™eM×·1Ñ‘É×{ûXU–-MŸ—8lûͶ·WXàÝWöfo(rÿ˜ÓIrªÒ k;$o:ëó FZHé<ÞÙXESw.aÕÔ7/'€®‰©{]΄§HÉT8@O¬˜F!À%Þ鼬«²6—.ž8&LLË0¡1žZRïÚ²wmÏwQ'öX5­ýRÖ½ië¼²Ö¶sï®ïí ¬£¥ýñË€€%D!I9óš Œi]ŽÒ²i=[Ü~SÄžÍÊ7ÓÊÝINLµ1m‡nÑ m‘QWÙ¤ÿW6ê²Q/ʦ¸ÍÛßȆ"*¼æŠ™èÁÌñ7SÍ S­¹W yA5ôÝ÷è±€·Uµ‚4{ɉ‚žJ¨|.†9!P—W&&"úÁßê•©—;Òzí±qOúŸN/0èBõ=¡¶_ú[WøCZÏŠkݵab:¢Ê¿ÞT¿–ú¢@sýýfV¦5uá+óâpÌ~0õ‘ǘeC¹‹]hfUiØI„±ßT“@~QIØLL]a†>%,T ®¬j¨ióÞ—á[Ä)¶ŽÓ¡­»ö "8ãÊZê†h莤Éòöü6?ïoÌþþƒ¼Ûendstream endobj 179 0 obj << /Type /Page /Contents 180 0 R /Resources 178 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 177 0 R >> endobj 178 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 183 0 obj << /Length 803 /Filter /FlateDecode >> stream xÚÅV[oÓ0~ϯÈc*Qãkìäq[š(Pú²MS׺[¥&¹â¿sb;—¦•haU•ãÛwÎ÷ûŸÍ¼×ohèG( ¡™­ýû2$HPBýÙê:PHŒÆTàà­~šžÇñçtSväý"ÑÅÓb©m÷£^ë|DT S3Ä"ENF·³+o2óˆáGŒ!‘`!ñ—‰÷Å»¾ÅþÊÃþ•‡ìþ7è`D¢ˆú‰Ç)k:[ï“÷¡Åиt渎iC†7ÙãB0>™ P°ÐEBh0Î0RJr=I«Dç‹r“¥…[Ž{ª’q¦¸ØH ¡ÌžJÁîhØÝév1†p$$ت—O³D§e•ÔN['Øf:™¿²_—“¹ýøY£‡`Lвj–¿ÓéCù¸àù˜RrRÓ æ$È¿φNâfŽ#Ôš±„ÂÿF¨(Wq\”ù&}°p)Ü©Îý>ßS¨€S#Žƒ¯#";"ÝÙ-3Û:Ã/îvwæŽsZü §éÀçUVÝou4g ,äܹ»õbYfùaéíèÚ$·,q|A™B·X.¶­~}ë¹ÞBR´2ìRŸêùëDâÄ1 =œî“>&ÉAAAÄ•”^°`³‘äÁó“sö"[VµÆvÁ>ql²!k²´An±»ƒÓ/\q¼6“ñ1Š¢C”…;¥)Ëã6œ½\¬Ä‘‚ aA­u¨(ÛaIlоœÌdóú H„)ˆRq[/l†Ùtz,œÈpPœ&Ô=-²u1L›à†è–Š…ÀËžTô7RõBý’BMét>}Y™Âãd¼²<§Ô¿~dõ€š7È/™jžXpP¹´^ê´–°),Ý]ˆhP9Ÿ¯êlP¹wˆˆ޹tŒ1¡îÂŽ¨šm"º[±.²ïÏ:mèÿ}z¼2endstream endobj 182 0 obj << /Type /Page /Contents 183 0 R /Resources 181 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 177 0 R >> endobj 181 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 186 0 obj << /Length 759 /Filter /FlateDecode >> stream xÚí–KSÛ0Çïþ>Ú3DÕò,)Ж)í´„^€aŒ­¤žñ#õ£À·ïÚ’“(i/LF‘½Úýk+e÷çÖ›#êÛI†ù–Ø>AœjÏ“sÇ£îŒú„Î{µ:y ŽOQ®êU+==(ã6WE5iY¸—ócëpnÇô¹@œùÄŽsë‡u~‰íÄÂö±…“·o`‚‘’Ú¹åQ6L2ëÔú²ö3G³±§}£$9§ƒx {Z{€8ùcìµEÜË›V¼•E=Ä<9r„ˆqõQËæûY‘6ÚYŸ˜0ìÔa˜¨EÔfÍUÖ[]µk³ Ì1|‰ ‡§Â‘>¸p v:7zéÆIZë1QÓB%zz}§Ç¸,ºç˶R»ša$¥Ï Gþìð6ÊW™ªÃnM$° ì‘&«`Ò¨ºéw‡âMÈŸaž@ô‹¾ª…ªToK4Ùz§ŠÃŸ.áPÃ8SQ5$hOF…Y™Gi1¼CÓ°БžÁ¸Ÿ”ç6 WnìþûGÀ˜V7IÖM•Ë)^\=> endobj 184 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 189 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚ¥KOÃ0„ïþ>Ú‡¯ßî±< 4·ª‡Ð8€D’ZAþ=Vœ HœÚÃìx¥Ñ7^èìJì™7QŠ{Ž­¦\T[☡™ÐœÜÇ—×Ò%sW6áãPîC²¡=GB;>YîQ’îŠ]0c¶¶LKxß w´Ýq\!ŽsÄ™ôNãÏh8ïnr6ohƒ~r²”-“ÖS PL*#æ"Ö²‹Àù_zü¦w¤ü?ü"hf7‘Uº(kFôëІ¾<†*1vmÒ‚Æ?>Mà9MNÓE'½Ò|¥lr‚ƒH[M…&]ŸÌM8Üž§õiHzÑ} Ï¡ë­ë|Vendstream endobj 188 0 obj << /Type /Page /Contents 189 0 R /Resources 187 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 177 0 R >> endobj 187 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 192 0 obj << /Length 434 /Filter /FlateDecode >> stream xÚ¥“MoÛ0 †ïú:Ú‡h¤dIVok»Ø€mÞ©íÁu”Ö€¿æ8ÈúïG[r ½ >Я?^>¤Èë‚}ø, w Ş;àÖ Ð%/vwI–¥iPæÉW?|»!¡!ù^¶þ0”•ò¶¯Ž­ï¦rªû.}(¶ìSÁ]¸j+´2È«–ýawÀw ø–P.×üD:'yË2©VѰ_ìÇÙgCF›K§ëÈŽ™P™‘+¼¤Zl`Ï…M7Éﮞï²ÿô{?¦˜'¾£GÄ6MŸJœÂ¿ÇW¾©ñ1_Õ÷rÍsª§çº;£¾¦@e`f(ל"œ×[eDhãW÷ aT±‰Ô¤„BHŠç°óû”tyl¦7°å¸Rúø²Œ±êÛzkª[/ÞŒœ&•úÿ¹¸0ZÇÂШ|)X*‘;TÜ¢ÀÌš¥î/¾óc9­M¥3[b‘:™#ö6EMÕ¡C@}¥á*³AI@îöóiöc«òø²îÈß—'ÞŽyÔˆendstream endobj 191 0 obj << /Type /Page /Contents 192 0 R /Resources 190 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 177 0 R >> endobj 190 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 195 0 obj << /Length 911 /Filter /FlateDecode >> stream xÚÕVßoÓ0~ß_Q iêbüÛñ„x Û@HHÓÔ·¦,s©E–”&ñßs±'iÃ{㡲žï¾»ûîÎïÖ'¯¯¨\PŒ¤¤b±Þ,4^H®‘HÙbýp»\m³]cög x©Ï¾¬?ú ©T‘î^$B žRî.|0»O+/¾*²ºöÛ‹*oMÙd­Ê¨…pĸ¤A‹dˆ øÚiшœ%cìõŸ¯ª²nÞ›òòÇÁKÐtÝ­Ù¾±yan²ò«9²yc6œ¤ ›hS#-;#Î$Õà7SÞÓ¿[ð:ðHaÁO²NÇg,ðr©–\À‰x(YÞP…ýæÔ‡ï~É«¢0¹ ;W¿î‚õyÓ‚ŽL'ÑvB’”ûø¿²e^´,!£‚!¥!¯ë› )žöÎ@,œÛ5ÚÎ(“)Áx};ä” -õ©B c¾H8E)UÂÉ^·÷…ͽ‡ŸÌã}Ï®«¶t1¨çâ,g)(¢)¢ŒmJÅL^SÄeJ°çò¦ËÜX¬O ÜöÛSãÒéÌq F´”ÜAãˆ(FÁÛj‚{hÍÖŒ4ìÛ¼©‚—{ó½µ{S Ú Ä¢ƒC2²+ bRÈàèÍ`ƒ`݇B‰ÁƒIÀA”B!&0%°›1¹ÀœŸ÷¬¼s¨ï,´‡,ºwo¾ÚrÀ=”€wŒwuéTšÈ—›1åÓFŽ©ØhÌDè2±Ï\˜&³… j/LïínÒ­¦C"¬ý_:ÇA¾::÷³:íŒ7Š@]Jñ”7R.mí×¶v†]SùõÑ>ºžÛÌ/×àì\ƒ5ºæG ؘ¬6SI°â—DtI¤€L@ŠÓ¥©w&·YQüò矶Ùú]ÛØÂ6ÖY‚cÝæá,|ñU›wUåê¶€Çd½à¦-ƒœ-×[îÙÃû}ýös¯t-àÉqúçK©‡6=›ªÄû¥'¾ÿ)Ý@Äi:“FBHß>üÜìÄ&ü¹€‰ii6fMOÝ2Ж:%jw¥0±õõÍ1>®^ªwuØfOcO>Ï¿CþXÙÎÄ¿?Ežù\‘³cGŽ{%ƒ*tLž.§±Ó ÃðÑ}ýÍ=w8â4ÎëaLæ?XI)éµÜÚ²ËÜ—ž$žn? ׋¦Þ1R:µ¦l†à3P¸@˜à9ʯ#*EÃÃá”UϧìÉåúä7/K÷Jendstream endobj 194 0 obj << /Type /Page /Contents 195 0 R /Resources 193 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 193 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 199 0 obj << /Length 585 /Filter /FlateDecode >> stream xÚµTMo£0½ó+8¯=¶slÚî*R¥Ý.·$Šq$bº Ùnÿýú‹†T9´]­¢È6fÞ¼yo˜›2øri(HõRnBÃ,%ˆ°\Ï"–Æ äiÑ7ùô0ÑŽ£I[n{ÛÕ§½T}Õ7Šå4¸+bý#ŒgˆÓ”„õ>øÌ8\8œQ‘óðY0"B@¸ÐáÐ?ƒ¯8‰JÆH7ž7!HpqÐudŽ·@Ñ8!ãèAîWòàøÞŸTm©^gÿF ¢LŒ@ñ°_¥ºûi€¢xª}S·rYwêØ/›^ª¾³Y™Ó®(&æjöݬ>ð±R[Y+¹m,;Í1ÇúO†ÅuuÅgŽ4C” &N b™ÎÕ6J.|Mxô~òàJs·rŽ1¨æ¬MÕ»Õà¸!Âmº[MHë/uY¶‚#Ú!“ÕhG2”c6Á£ÜȃTµôã%ñjðKË•4µƒèº=tðld|О>bTkCÇæh„ÿe¼ßÀŸ1‡~Æ-Â…-o½.w>ïúâû²6ÿû]ã³Õçqòl÷‡­TÆ%¹ö‘‡n?„ʬm»xôܨí¸ìÂÒ")b4gZLޏ`Ü’›ð+½”#¦§œ®Ä¼3ÒëÊLËõð"”þûH -ÕŒæ¶u€¢\f–¥±±$ƒ¨e, :yQ¦Æ±“¿á¾;xÁqÁ2wLÀ hÄMøÕË0 ÿ¼hþ4ó™endstream endobj 198 0 obj << /Type /Page /Contents 199 0 R /Resources 197 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 197 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 202 0 obj << /Length 1210 /Filter /FlateDecode >> stream xÚÍW[oÛ6~÷¯0 °ÄñNÉö¤Ý ÀÖ{ÉŠ@QèD˜,¹–¼4ÿ~‡7‰v´ÔiŠbðƒHš<·ï;çg«Ùï¨Lr”Kø¬ÖIŽ% ”Ðdu{5Ï]¤Tàù¯zûþ|¹Í®>âäv†“ËF,ÏDòŒHžÓd3ã”…I=ûcöû 'Ai,éÌûH8b\Òà$ŸUä#xñÍœ׎ 6Q…r&”ÕøeNŽDÊQ†q²Œˆ¿°À[dâi¢ 3â,)ÊÞÛTW[é~Ý}ʶ®uÙWmãæíÚ}ÁaôW¥îÓ.h¤=Ô§D!I9·VüP5e½¿õö ©Ð·ñÔâ«æD­‡ºšJcü4Ã]áü¸Ø¾2ù`ù¢-÷SqZn[C‘85AN»³ÈÉÖ#Ç– ¡²GàCcy~Dá _8‚{‘$]dd”„¼½ªƒÔÇ ^¤pƒ˜g‡ñùªf÷ÔRB%‚Ë#›àó„)\ L&kçØç 1)˜‘—STâoJQæÙ3ußùjR²”§7N)_ÀàÐËáPÔd!Ɔ⋴|ŽPÃØ·“ð¡§ãc/þöi`žÝÁC*¾zÙ -æúF›#„M#Ä€nB°!úb„BîG"|”ø?àþ'>†dF‰‹U(Q·Yf—Ö¡Zõ¶1Û5>#Lè ?¹Ó)Ü×»vŽê ¬®Ûp}hîbÏ—Ö¬ñÃá­ë‰rÊ3æè-vôLÏà=N{ý+=éP”Ë • &ÅÁá\-r¸rùp\öþßô‰X ¼äÊÍ(&>“×&l ¹P<†ùùîÿ åžt€endstream endobj 201 0 obj << /Type /Page /Contents 202 0 R /Resources 200 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 200 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 205 0 obj << /Length 1135 /Filter /FlateDecode >> stream xÚÕW]oÛ6}÷¯0 °Šåå—HcÝC“f[€]gì% G¦¶ìÊvÓþû]J¤¾¬´^»v X’}uy‡ä«ÙèÅS‘!Fáe¶Œ D2`Ñlq5z3­4ÿf·oÎðAÒñÙj¾ÛU·ç›ô°¶ù~¾Ï6ùäfv9z=ADñe2™ÉDézô~tuC£ÅˆF—#J¸Ñ2zÄJÀ­G‚ñð°ý9ú£Îc¢¸é•Ç ‚p¡XÎ°Ž¤ÂmŸÄ@)­pO§g›|·ÿÕæo'@ÇóbŸ¥+û:_¼›ç÷ö¨ªwvi‹ è±ÍSëªzq!Y‹%„Ãb¸LÊÁ~ÊòtuXøH€V¤ä$1ë*È•DèÄ ÀÑŽ< $S’$’ ûKáhb¤,iˆqJEsA@{:ÞîVYZ÷Ʈﰺòþâ§®s;Ÿ‹¶FEטˆ1¢”,ó\3&ëa›PMJÄãú2Ó×TÒ^@õGê^­nŸmŸW7¿ïm1ßoŠÖû…»}Y5h…Êsy>¸/»ÃÔP a¥DY r‘p†ôb7%ÐýC{Øââ(~ûþÖ«a^]JÄ¢‡Ø•Rs×O¡<´ö”lÉ&M˜  Þ@ïpC‚1Fb#81€­­;KZâú ‹Çꋽý8n=ÀÛÌ3W!½³÷YÞ€~‚(×k¢KTëÕnÎýC±™09~ Lù([!$[†PÏØ¶ÃŸÍ·Ø:Y÷¯øl‡|a¯)e¹] ñRCý&ZÀבR¿ø_SÒžýÜŠ~ÅBÔ /$àÝðÜîçÙÊzèçv—Ù6xwÏœË9ƒ5Ušój䬌®jósu•å;Iu³YV) …µÌ ¡§]Ïr°™‡}ÖŸ¡Ïê:?-G=ÑôJ*‡¨¹9a¥øò:"Ÿr7Ù¸›DøAe 6ŽÆ-A•Jœs "ÔŒcÐ%“+M8çÁ¢‹&ª“™) „¨—«•& jÓ*J÷ý`w©º _3±:Ù°RÍ@ú «,wJºbÌ€âÚ'’nÿNwðc€@9 ÕÍÊÛéØ1¬ˆ9®+¢hë1¨¤mÞØ=©H’P(&Äé“G²uò„ÐЂÿÕÓ¥±’ ö¤Yõäâ$»3†À z©C;ÜYç«?f1s×Ï»·£÷Ÿj„?]#ýÊm­ÛÒî:­©º"CW¦Óã:BSžjý (€æ…F»Ûšõ… K£¡ZRcßAjO,ø]¡)ôSûÜg…B;Bû1›ƒï%1󿓦눫ÅKX³Àæ¢ãxåO˦;Å´9 >–"ò÷6wí Û§e±Y÷ºµÜ¬VU‹³ü¾Mß´„Õœ©$‘Fœ~¨ê {§lÇiàüÛÙ­Dጙ„ërVàF[Üy ·‚HTÖ¦$:›6>xR.]¿þY]@N%†í"£à×¾¥#¯3¡ýñåSX²>~Â6þñ£b’endstream endobj 204 0 obj << /Type /Page /Contents 205 0 R /Resources 203 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 203 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 208 0 obj << /Length 1141 /Filter /FlateDecode >> stream xÚÍWÛnÛ8}÷WX °Šåýbl÷¡ÉfwÈv¾$AàØt"À–]YnÚ¿ß¡Hêâ(…Ý&E –ìápΙÃλÉàÍ•‰AFÂÇd‘œ(I „&“ùåÐ >J©ÀÿíæýÉx|²Î·å_6¿<œe6[Ú‹bDôp=ßÍÊl˜æwÖ¯9YN·[ÿøÁ.lefóüJ˜btÈÍèzr>øs2 †?Rm/L’d¶|\^ãd>ÀÉù#f´Hà#b MVNY|Yþü[ûIÁQÚöô. %1.i„J¹j!%?3TøæLÐÅUÈ0¡ª}ËòÙr7–„´,CÊh€XþÞãK!ŵ kÑÝ÷8“)Áx°ýÃ[8F2BTŒ¤có$e ÉXe{±»]f3î½]ݺêùl—W4lƒ/ÜÚHÄ™GÜ+â¡^Q*ê}[¸Ô4vëWXà=[ÿÃÌyñ¯6¯ýÃ?¥-¦åºh­/Üã[Ÿ¬å´ÌœŸÏîŸÝ‚kâcå"4Rò G¤ Tq<®ò¾½ma®E…ý´Ë ”1õUÄ|/b¥æ±½Ÿ©hØÙ ž˜4¢ÄD•šÐ;4§D\ŒKi’’ \ÅõÀú¢´_ÆãMð& ÌùHoí]–7A?A¥Hr»Dµ–v}–÷ÅzDÅð!2¬lQD“lMc››"êã2(<†°28Ýås{…1Íí¼ž:âbÇæóïã¦^ø‹0Ó® Ì •(I9‡Ö@낉H(™§¶œfKœÚí¬È6nËžÒàêŸ«ÂÆ3|êwÎ*k1œÜe– oÿ°^Dr1øZeõE»ÕÌ…MCØ'ûçõU  óõéz¶[Ù¼œ¶ ɧ!U[ÔÜ×Nï;F ^ c@I¯Óì!U±–e«÷S„«KMNŽŒ&±…ô–ÕÇ^¥FŒ±Xދƪã™JD ‰Vo{ZFDÖU®¨Êõg»íqå»ftÕÁŽ7àKS"ƒÑe–;±]÷¨5e˜"¥µì¦øð’ÿ8@‚â ë¦mwRõ8@D]Ý®aè)‘ª]íAB"¥0s•IÊùçK?ëùbAú}·…ï>Q¬>Q‡”bM=x#2¬Ï^lP°º[¿;âé=ußÔP\ÐÆtk]5þ© Ñ}~»ô;âUÕòpõ4x¹T·ewSÞvæ ŸbBš°›4oojêb’^G–æû^.œeX.ž"%:BýZd0¹Ûh‘¡Es|ð·m^^†?õÞñB<æzð,Ò^Fzûð'‘Ûy§`V_-š\E2gÍúPI,¼ÜÙÜ%7^ÐÅzµ—»Åz¹ô Ïò»6‹ã*¬fž£®qŠƒç¹½¡toØ×0Õh?<ë·ÅQ'·™0éD¸’1¤6‘ÎÉÈÐá.ÐqîR³ ¿ˆÐ%ÅXà1WAt˜Ð@£-æ¢J”¾Æ^÷å+$ Âÿ®eŸkendstream endobj 207 0 obj << /Type /Page /Contents 208 0 R /Resources 206 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 206 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 211 0 obj << /Length 714 /Filter /FlateDecode >> stream xÚÅUMoœ0¼ó+z)¼øùÛ«ª‡d›V‘zh³ê%‰*Þ, )Ë*í¿¯›„ý¨Z©‡ŠÃÃðgÆøb_Q0Ò•Å26$VAP¤ñ¢¼MI3ª¥¦ÉGûôéÒ I.ë|³ñ·ó¶Ø®mÓç}Õ6éýâ:z¿ˆ0&îÂL(Lb\¬£ïÑí=‰ËˆÄ×f´ˆŸÝ€CãuÄ)ut}~ÁÉP6Eº¼‘ã’ŽÄ©[‡ò¼ ˆ4CBˆç=›•¶Ï«ÚÕj“?Ôö[µÜ±=¿|Š‚†Z»iw(o}ÏþLHÀP!CËÙ)¨†Žw'A8¤cËMßm‹Þ+ºH Mìú©Î{ëŸ|±KÛ¥¨Û6€‘‰g¥¤4ÒÝ)0L¨´jzÛ5yíA2_¶[ú»‡Ÿ¾ÞTn.û5EÄÄ}ÛùÇ}ëki‹ª DœfCÍ})^cP…šwU¿ZÛ¾*‚,tÂÓ™ˆ $å|à÷¦jŠz[†!N:e4ÛwaKâZ…ÛKauL P‚ñc7Œƒ:á!<ÎÔ¯! 1šùÅ›ÛMÑUOcè6‘[(ÝYmp€éG7¹1Dy·ß,ô¡m볩øÇˆœ¹ì)q´Ú×—_Ę̂Çf½?l•½yPŒãßR?;ÅŒÆCcö“-¨Á—© ÿ?Ù‡YžÛ;BhS ðýAÓºjÂŒùÚ†¹v_ÔáÝ$Áp ± åÞÿvx´|YØj$;5õ9EÇ&¼x´í\ƒRË®]ßÚ­®Û”Šä¹j§Dg/”À™Þù!@˜ÀîŽRq ܇{4E‘ø}zpThw& cÿ~RL€ÆƒBºƒéaÇQÚ ‹r%röe•~ÅÛ ÌõŽø6¼¾ ˜ 2ãÊ(ADÜ 8Ú298ÇdÎÛ?£¿ÜèÜúendstream endobj 210 0 obj << /Type /Page /Contents 211 0 R /Resources 209 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 196 0 R >> endobj 209 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 217 0 obj << /Length 932 /Filter /FlateDecode >> stream xÚÅVMÛ6½ëWèE*†~‰FCê¦ÅÚ¬‘KZ‰Ž…ÊòÖ–±ÝŸ?¼’íd7M‹œhSÃÇá›÷†|¹Lž½•bËUjhª#¤Ëú]fˆšå iö»½}ýË|^Û¾lZ›}yÓÚÍjöayõìc#š€Á)ê0žûÉ>ŒàF„ˆUÙîíÏ~£å@Ή(DÄ{ñ(Þu¿;T}Ä3ÙÍm[öÖϼ±+»›±"³]…SŒÚd’ ¨É¯Ëd؆¦ÌQ!5‘\±´Ú$'ï>дNhz•PÂM!Ó;üC 3ÒM"€Ç?mrüyÄÉ(#½ ¬3A¸Pi<±Î(}”v)Æ(ÌBeQœñ>ŽQÀ ñ‚B$~ )0ÉÏ™ÿ"b¤žk8¡~˜ñÔsåRšƒPDH-Òœib8ÃÕÅïDG5Î9Ð…ÁeC°Ô.¸éz»ëÊÖ×6÷ÃaokÿëæÞ× æaßÎc™­úíÎO÷[?Ö¶jê $×¥ª¶Üï×0–»¦_olßT3¥IÝaîòû©éªöPÛ ²–œhSÀ´\,M´8ÖÓv¡öd}LI¢%ç•bÄHé*•Æä”"Ý\”½WÛ‡›OÜ¢Evk÷øÇB ^àb¢”tkßÈY.Q©=®ªíjbâ‰E…!‚‰˜à)áRE´æ˜ª ƒ‡ÐjÆh¶¶nø+”mXí~mWgUZ^<;7„"Ûi.$aŒFX°ÚÂy,êfa÷Õ®¹í›mwá,t.:Àx˜>ŠüBëÒ¸-U_i…®Æ:œc‚†=‚ª#Úãp?j„ßÔÁ‘-ÍÅÝÁOòž˜vH­Š)³?ÞÝ~öj\Ø÷”B×8eøø@pÛta^LÅ9¬h÷‘‹É%¡Ò©9…BPèk»¹±»©Q–[l«ÃÆv}ù4É:Ü£ö¿"`-ÐõTþ Ÿt•o²”D2aþ_!«/µìùü¡ÏÞeJñiU*lsOnqÿF™‚>]™§øËu¬'RsS«£åÖÑFãÞs7ôî2|ød;»C±¯vÛM\k#ZÛng ³»¦û4Ntîòz¸ˆ°¸ñ–p7Ñy9– ~zƒÎ˜Ìü-zòâ+ðiÇ8ÿþß(¾÷¾ïxŸ{ o!­\Z¿M ‰œºçÓ!Pr5¤|_¤˜œK:ÚÿÊ Ð7P âÜ2í–‹í?÷X„xüÏýùendstream endobj 216 0 obj << /Type /Page /Contents 217 0 R /Resources 215 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 218 0 R >> endobj 215 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 221 0 obj << /Length 698 /Filter /FlateDecode >> stream xÚ½UMoœ0¼ó+z)8~þÀ6ªzH¶i©‡6Ü’¨"àÍ"±²¬Òüûl'°»­*Uªöð`yŒÇ3ãÇEœ_‘4TH¥¦äëPáP¤€8æÕmÄIœ™J}ÖO_.Í ÇÑeSìvörÕ•û­n‡b¨»6¾Ï¯ƒy!6?˜À¸@œ¦–ÛàGp{Ã*Àáu€U’‡Ïæ#PŠ„Û€êošà&øúŠ“ dŽtáxC”¥Ä'fÂòVHÄ `Œ-ï,«ôPÔM–é¶xhô÷z=’=¿âl #É•4«Ž ïmÏr!ÀHžº–³S0 à:>œaˆñ-7C¿/+h+éíSS ÚþóM¯uƒŒt[j†g–%„PÄNÍ•@Šr1Öí û¶h,HbË~§+{5t¶Vº¬+·’eª…-å›Íµ«E_›­êÒí›Ìˆ“@ ”06xW·e³¯e€Y'§H(I—2/°L ×ðêÚœK9œ²c¹)Î'¹0ÊPŒY˜P†@¾…‹ÉjʇWg¥we_?ùP³Q2z©`‚¼]Çܨ@xtæ0O¿ÙèC×5gsñ5áüh·o& „*¯Çn–­?…Å2`˜›„þ5ó³ST‘’pèË2¹LšäJµÔó?$÷0«+}‡1iëÉpÛï4kêÖ­ÂÖέ5¾Ñ¸g³„¢SøùÆ5V‹y9ýµîz·±';7í9ÃÆ=xÔ­îMÔœë¾ÛúwµGkš.&> endobj 219 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 224 0 obj << /Length 901 /Filter /FlateDecode >> stream xÚÅVMÛ6½ëWèE*†~ EÉ6-Ð6¾%Aà•éX¨,omÛý÷Q”V´Õì&i›õ1|$ß¼yœËäÙ+P©%Vá°Ü¤–¦Z1"Aº\¿Í,1‹$Í~u·¯_ÅÚµ«ª. ׬nj÷¡Ú,Þ/¯Ÿ½bl‚Á@ª¬J©‡ø©‰–a”·"D´‡“û±_f9ƒÇ1@‡àç½A¼²ð,dnw[¯Z×ùÃmÜaÁLæš?1e3É;Ôäçe„¦Ì!5‘\±´Ü%%oßÓtÐô:¡„[#Ó;|¡„Y é.À‡—:y“ü>âä”O‘^Ι \(H<žpÎ(}Œt)¦ ÌRb¤5¬Oc4aR«˜vaFÚcDɈÖÔ\ðþ€ñ‚‹3â—x®³¼CJs‚(¥lš#Šå`<†ÏJ¿d8ç@@ †.Xj\5­;4«ºÏlÞ§cÈ4òäDz^ƒú?áuu¨ÚíεUΓ%©ß˜ÁýZ?TMYŸÖnF ’m ™°4ÑÂè0¦‘lgÀ”$ZòKµ3F¬”žu­&œbIä\f‚n~;ÝÔx’pP-²û[wœá’)"¸Áɘé羋\¢æZœµv›¨£b–&ÆÚÅð>H@j0H ¿EP(Ž[ÄbpZ.ͶÎöø~¶ÚÏ%kîìÜŠl§¹„ ¬©P2„…¢¹òÕâÖ=È•;–‡ê¶­öÍÌYh'CT³íaÚA°3&¤qYú9O‹r|yŒ «ªíqK;N,íKœw-üÇNÕ)(N”e:&öß-Ô‡Òì…uåÞQ Må“ÜÇ®êª kÄ:ëfÔáߤ Éœæh\gØ ˆíµÛÝ «E57VÏÕ¾<í\Ó®ž¦>;Êø3ZÔ ˜Êï¤Å3ƒøbM¢[‚ îè"2ŠâÁ±ÎoA¤Aì()%Ö“Íê«„)ž.Ìsüå6®#¥ùO›}e»ªhê"w ¯Â®qÔZðÌÍa¿æº­®÷ Ù]Õ|œn´ðûz¸R$‘ƒßû;å2†5^–Ja2ëïó.Ì`»Å8ÿö&l4ô` {.n†Œá}‚½L·­_bBN}Ss ”\w[>…?²˜,$-„©¥,¸Î¦£nHˆ/–þñæ~pŠ¿ï1 Ãñ?ÖœÙ^endstream endobj 223 0 obj << /Type /Page /Contents 224 0 R /Resources 222 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 218 0 R >> endobj 222 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 227 0 obj << /Length 1253 /Filter /FlateDecode >> stream xÚµX[oâF~çW¸ª´©Lç~AMvÛ´Š´Ò¶åm³BŽ™$nÁfÁ”Í¿ïñxÆØÆ@Rñ€gÚåõz®·YRòáy'ç0¸¬Ù M`·Xàßlö©œŠ×Eš,ŸðvŒqÌ¥÷=J82š%+/kVé4®0¨"}‘PðW¤ȼx»(Ñ\o“:”g%ò¡Ã(·_¾;bc­¡+«§ Ìù7]Ûxу2ä†âXÖ03ü\òº€^Ö†ÍlÖ¦k†KètîÏ÷Îv-¤J^<Úõ9Èlv.V¯Ö;_WÕQ¼zë.ãF }%ŽC¶]×»<_tÌ}‘½±3xŸç/µÝ~…,J‹·1õ»ÿÕT`ÃËm'êj]VÚVW—r ×xÅ˱0såÞ%ù¶¸Ðꆪ‡=Ý—ŠkFÞ áQJB³´B=z4¢ºRì[â½aiæ ̲j€Ýd‘û •þõ]Ö”Îùïг{æl·‰`±æTé†^¶ñðóåÂ@ïS×›}¹h· `²‘'ª|K5./ì|VV('ÐtCõs¡pQ*I>·ÐZpH…ÖÜ,ÍæöÛi¼s ICLò’"C…UÙvYnH»¹¢=©]9¥ÇˆõM`§ˆlgã=–ü4ðIFÍ)à[Êçqö°H³‡Y_¸Tû”¸ö [s³q€\")” Ï!>¡-t¯DƒÈ^ÐâH¸IŠÓ-TTEv8"|’pÆŠYtÛ|PK³@tÁÔŠýdO éæ j"D cäÙÜÔC:„K¤EÙ®õ³N½´ŒûÞªz¾y"_ÊÌü§Vÿí4­,üe½ÆÆÂ…áY›»9Z¾ Pu>Y@ÓÌc¯ÿbÑ>XHdTyy€¦±ôÍ@ã E8œ¬ÒGH÷²®[ŸK¡ LG†·ÞÁ›í#ª?"&O¸ªFn?v¸ý4>àÜ=…¯7ßžlýÝæ? þ{Éendstream endobj 226 0 obj << /Type /Page /Contents 227 0 R /Resources 225 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 218 0 R >> endobj 225 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 230 0 obj << /Length 1020 /Filter /FlateDecode >> stream xÚ½W]oÛ6}ׯÐSa1ÇoRF·‡tˆºÍoma(6 °)W’Û¦¿~Wü­Ø±cgò‰Ï=÷ðÜKòz’ütCeš¡L¿É"Ípª$A‚šNæðËpDüaÖïßÇ7ËrHðà›|·ÌëÚ?þe¦=0vf`H*ÂB ?On“ß& I1ü‡/L’t¶J¾$?ãtžàô6ÁˆeZ¤ßà#’e4]%œ²ø²LþNþìpF4ÚEºnSá4ÕŠäm*„f«L§ 2åó©Mãù~˜•C*b*³rnZ²ôQŠ$'”{”O”ŠáH`<èëèÓ-¾lÌ´p€!”À…m¶q¦…›ï?øø˜=â]H"J÷‰{üÿ4‰»²\z³Z7[ÖŽ`@¶uó\®•i6•õ›*’-aäSÅ¡`[>•mò‚±N'E%Õ)^?Ì‹SÚ‚”‹Ã\×yÓ˜˜õ9įÆ×ÖPe1HK“Wè?“soêA²õºî˜¥Êëã?‡mÏz¯$m0ySQîÌ}a/“ÖMµ…½%O£Ä_F»›øê&vÅ5=­÷ù•øK(“ý8?—®!(‚ºXØéF\!)¨_Œn;.3kLõÞ¬îLÈáfcgMQv=ïh<9Ó­$Q½×Ÿ¨ïOûZR$vh×Jk]ðé:¯àÞv{)hu3]§ƒ/Ê!»˜@†\<ØÛáFÇÂåwc?´°±€€ùî‡Ã,§µªˆ:2®Â7¿@éÅÞ‚ôøq”i˜ä¿)7ÍzÓ\*nNR¹^Ù“¾ŽZ> endobj 228 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 233 0 obj << /Length 1167 /Filter /FlateDecode >> stream xÚÕWQoÛ6~÷¯ÐS' Ç#EŠ4¶kÒ¬ÐaÃü–,3¶VYÒdynþýN"%K±²¸Ya‹äñx÷Ýwwä»ÅìÛk&=M´ÄŸÅƒ§©I ‚ó«[_Èà‚)©˜ÿÁ”/q ¨™Å»ý¼*’ýÖäu\§EÜ-nfï3ð(þA«LDDp ^²ý9»½£ÞjF½›%\+áp@ hͼí,d¼d³ßf¿öz.PÑÅPÓ;g7ÑB°Îp†~DÖnü"\¥h£©ã43+g±Ù%UZvö¢:ðb!á¡¶jcwýN)/&üƒË?LR“FC³""YÈ{€ûe\Õi’™o!üéÐé±kŸ ¾1¥­«8ùd?‹+çvWË—«G;Ì÷Û¥©Æ¢ãƒcêÚT¹Ó}HëMÚ)³ÖU\n:#M‰!8ÒÊOЬ¨N¬—ÂÛ{ß…½O6q€ò× šžlÁIíg¦¬‹Ü ôÆ+}*Ì1|„4\°†dA ¥*Ú} ‚‡‰°2NHp‚%z2òEØ*o`„†Å•±ÓI±jɃs nv2væ§ymèo„´s0u«õÆÁ° À·n°óÅô9h|ŒbìÒ«Õƒ¿LuH×dƒ J4~#mp*d»ýýçx[ff7oÏE"ª#OŠ|Wß§HÓ¸.ªŽX™çó.š'BSQÅÌQ ôŒvŸ#Þ脇îãitc¸ mÇì¾*†gS˜úrÎŒBËH)¢AhÙÿ&´/õËÃùÅð+åý±sˆžÕ>é]zÓwôÑô+JïKÀ î}‘tÞú“Éi¦\{w¡‡$R‚h€°ï7”[©âF LwY¸·¹<±\"2Švj¿·b¨Sº#P†E‘<6B˜â‹€0 r|jÒ§q{ŸÕ=Yzä'.BgÑ…ŸÉ–c{z!åyŸòg„rPñÆ‹ož†>­˜e³éq*[p-5®/‹öÞ º~lïÓæba?þ|u²<͈WådôõAæÏ<•T±c:púRY= Õ1 #ÂsE„„îfwûWZÕû8»›®’Øécãž _à?_f‰ËÌõ>OŽf¼¢Œ…}{ö20Ý\–fÝ]5{¬)>;ÃG"辽ݦyƒÖ$ì½èÈÜ¥½5§yžæëtÏlPO› _•Àù¿kuOM‰u“«–qÍcB÷°HBÙ7ö„àî‘ÙÅphæïSn÷nE¸ÔsAç¡KPF¹nÝø? —+$9>?®Mÿâþòãôvendstream endobj 232 0 obj << /Type /Page /Contents 233 0 R /Resources 231 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 218 0 R >> endobj 231 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 236 0 obj << /Length 1687 /Filter /FlateDecode >> stream xÚíYmoÛ6þî_aô“ Äß_´uÀú¶¢Xn †]( p$Ï’Óæßï(R²äÐom¾‚@"EÞñÞ=w¤_\Ž~xCåØ #áqy36x¬$A‚:¾Ì>NàËtFž¼µ«÷/“äͲœ<ùì;_.Óªò¯Ø»ž=±ÅÜB—T„M„š~º|7z}9"c ¤‘/L’ñünôïèã'<ÎFxün„3ZŒ?C#b ß8emc9úsô{'g‚f}I/SðŽ)šÊ[òÊþƒ1-ò:/ ¿ä´öÏe^XÿF´ô/åº)ËðÑ™N˜.Å-³l€çÃÈmä&‰-²+Þºn’Ï—Ölp5.Òμiþ.‡M½;‹²_ ‚Ùì Y]t«l‚îÐÉ_SBÈv I² +¬®ºœØ—)·ºÏû†óØ$-€M Ç}Pf±å ‘?Ì6s·i{;91ŠÀíÇ Z3D”’ÇøY´|œ˜Æô(3k¥‡Ì|@ë‰Y‰4q²‡ºð‘¦êl†¥û¹0¦NaØŒCR½vÿy„5r„’­BiÛí×Ó‘µ@x ÎÑ…Ñc ‹òýNÅ ÒŒË!‡¯m½q…ÒŒ*=I—ŽÂ•™tÛíû»àóÍÏ‹|¾ðé”â-YÃÇgngžù÷¦À†Qiá<øÎ†áY/¬ÿÚGªù²[3;•y½hef>HÛ•‚Dc½¸‡N;»ÍÖîA íž³Cë€Ý¦g·‰Ùm‚Ýf¯Ýæ±Ý¦³ÛD페ØàîªÝ·+o“;MÀ‘QLr§PJ9_n²f—]oá{ý¡cm«Í²†,È„ €…y•pýàŸ÷N|ºÜXÿ¹ÊÃáT´² ÏÖ¾§Z”›eй±Kõk?îÚ¶"›Î‡Ð›ß†e¼þ;ºÙ¿¼ÿðÛk('(ÕÝøçC¹q/ 6ÓhQûîºôÏ&egþÝ;€ïÜ:´{‚êE„ìì?iQƒ—*½ o çù%^Àv»¡“^° ôW[u ÍûV««jg·Òv0ð©hëÔ€px2@€Ž„=kj*W}¹œeëH€t†Wd'QáANQ\ëAžò”½Z3y8Oqd4a;y óf¼=xõ>÷†­f1±"_¨rcToqÞ ºJ ^LF•"”‚}ƒ¶Ü¹ŽkѦÌOqÏÃ1‡S8 C&<»eúkkPþ¨mò`»ÌPŒ5Z‹áµ@fë4_&‰?È]YÉǧf(ÉÕ'YZÜ‚·WÑBfœv|f4É—gyîñHÛmºÒÖÞjM)sø-¸äÇŽÑ[!'ž¢gT_ÃNÉä P°ƒd[¿ìÁ©·Æs®y¬š}b|îó*o}Æ: ’Ž™d¬½• ÒÝÙú`éËO‘õ¬A‚a5ôžnø÷tË@ §9û®n1O$} ç,*b× ºwÍ ±¿žÔ¬'Ý\Rötÿÿ=ÃÙ÷ ä«ïv~¿`pÞýöŸoz‚^„¢$™n½*çJ¶UœûÑÄfmhùçå@Û'zç–¾ _Dð:‘œpå[êßnœ» ~‚éB¬y¾*¿<ÜÚ¢5ÿ?ó-èÙendstream endobj 235 0 obj << /Type /Page /Contents 236 0 R /Resources 234 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 234 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 240 0 obj << /Length 1175 /Filter /FlateDecode >> stream xÚÅXMoã6½ûW¨{(d`Íå÷‡Ðía7›.hw}Kƒ@±™D€-y%¹Iþ}G"%K¶ËiŠ&“ñðÍðÍã ™Oóɇs*ƒŒ„ùm`p $A‚Ì——¡ÐÓÕRÓð«Ýüþ&‡ŸWqQ¸áY¶Ø®mZÆe’¥Ó«ùÅäË|B ¿¤ &I°XO~L.¯p°œààb‚3Z0ÁˆCƒõ„SÖLV“ï“?[œͺHŸã¦0U.l!ŽÔtF0ÆaQ.£èï)Á¡]”Y^…ùáœÎrÍQJ‚·jõ/΢ç€@Ä”oñ›Mÿ¨ðâ¼L+ëyÇ^0ÄtkÿÆlÀ-ì~¼Í¯G½Ö)ˆ¢óUVù~ˆ¢eœÞ­’ôîz‘¥)ìÍ.¯7Rjó:=ü œ¤¥Cæ´ƒL ðcŒöЋli‡ük¤±áÞè=€JÎ 7ØßŒd„ -ðu’.íã<×±†õÎ@tA5"Ò0o@´ï&‡ã#a£©7M·ë*ªda‹!T°¦jl`ôX`âbƒD>:Š»ì T,‚åH*Éë…E¼¶Ó#*Œ ÷y˜iØ5c,¼™RnKg•Ûr›§~I–®žÜ¨¼ÏŠO†/]oópŸ,î½§Üî¹ò‹³3Î!”ïܹâºå’ø˜Ê{›»á.X 2i å§'£ZÈÈ¢j †}XGgu®²)მÃaðß¼«Ï†-Þ¹i\ºOXYx‹ÖoÊ7T¢¤œÕ>Ï,ÀÓ4©K[eç†`íÙm]ù/«ƒZÇ&Eˆ Ôwâ2üÍÞÚܦ•x«Sí¶ŠÊ :N—nà ÀÒ–q²Š¢l[n¶ecŒTÎCš‘NUÔ¾*ÞdÙª»«+v½)Ÿšý8ôùŠþሠÒèý2I+Š®…Þ˜ö„îës”o=Ém›µ¼ù“ç)͆9p.†È•Q¥Ffô~,ãÆ3¾#¸æñ:)mW é™,4i— -‡s&Fä 5íå õ×ÙyÛM\BÄé[­ßœh‚˜>™ãb±’Ú.ø"±éÿK¬xb{Ì’U# »có™6¬’RñνãùëD\ Öm¢¥ÚUy(ƒ†¢ ¸÷“Ó­ucÓ²è #c–ÐìjØ/ñzÍ%ª³÷(…ªªß®§•¶(ö¦ ·-â bB%õaÕ¶2'Ÿ$„g{“—ïçi <œÚuõªd1¬ŸºõÕT3ÊFéçm¯—ÇK0ÁrmÆhQB¡À{uâ°—¹Kù«Š€d¯Ì={1÷‡÷ϽËÊ o’#×÷¨Í£*Šv|ŒR[Onìx½Ê6®5üôq':—Ù–¤úhÖ³Ÿ‡ÞPœÂóÌ47’ 2šðÿB@ðdUÞo=õm¼J ¢½V7Æœ¤›½÷¾†+aìß?÷;@Ík_Âadº¦‰B a"ˆp8 þM^å³l³ÅùÔа¹P^TúÚúo|—$"8âþ2BqU©ªÑmµÕÞÅ¡βǧ;ÛþÓãþ X#endstream endobj 239 0 obj << /Type /Page /Contents 240 0 R /Resources 238 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 238 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 243 0 obj << /Length 1384 /Filter /FlateDecode >> stream xÚ­X[oÛ6~÷¯ðÓ 5Ë«DèÚ® Ø%oi(“EW’›f¿~‡"©H¶Ö*ˆ©#òð\¾ïRo/¯?Ðt©Jáçb·Tx™¥ Jèò¢¸LàÍjMN~Ó‡ßßm6J»"8¹óÂweÞ4~ø—ÞézEd¢«­Qš–µú|ñqñËÅ‚,1ü‘N¿È`)Yn÷‹/‹ËÏxY,ðòã#¦¤XÞÁFD)ºÜ/8eñ¡\ü½ø³×³E롦·“®PxÌzOG„¯ÖcœŒùiÒÉÍÆt·¶~ãßÂomÕ´þñD¼%ÎßרA!ž™¢ìvv\šª4•þìgR<˜¹î§®)GŒ+où>ÿÇm£ý6¹ÿÙÚƒÞ;5 yM2”RκðÎhÈ #*±UyïGí­v™ì¯ÌÖÚKB«µ YRÙödÞ!¯[³-õ•]Q‘ÜUß0ÁåýoÕMkÜ´¯+"’ ûZßæ+Š“¯ÆÃÚfEë‡÷öèÛ¼òƒÂF›uÜ{íÃDÈ LÎ[‚”>aGJÖG9¦ÑosÎ;–"Î¥šC;™"B±Š´óÎë/Ǽ4í Ãx|ÐÿòRWÎO*¹o¼  ÂI:z¹A“ﻑ¬òo\vÂú­ý /ËÓ-®ªãþZ×M” lduÍ0s»˜°²§{÷Âü¼"S€ùf›—.¤¯@ÆXrí¬>¶½ëº9ûÁ›{üJë"ŒlÈõ‰Ë ñ.à ¸Üa02.@»/1žC¢ØIÂ_†$i Éõ¿êêûè©/-|  P‡h*•cb¿ qèa~ÊñEÚ º" øcŽŒ#)äœÞÄ0EÂ5èIºÄLfÔT7Ð-ÎS ±,¬îëĹ”!Néûñ NÒ,|Pc)…*Ùã‹,Iñ£ð3 YÀÄWç”5ÅÿÏCmªö!mM[@AmZœÊ÷ß)šT T’Xãº5ç¶A(àC÷fà«bºí·öØN¨̇÷;5ø5`!'Ù5Þásõ” †•|>:£LÕsŸ?d½µ!Å!NË54 Ž:‡ ã3ѲÝ·‹œ<›žÁ¥Ñm_ÒdúpŽàAE ‚âä–\™ªÐߦš+tK)x˜ú*FpZ-‚$‘Ö)ÐI$±âC¤L”‚$%³NÆRÁÙ0:ÂD¢ÿCíðè:­òó*Aö2Ç­@÷ëûQ Ýæ¦Ülj}ŒÕ:Ä=¯Æ¥Â7‰‡Àù9s>ÒÔ|¤+óå¨çŽÒ Ú™³'áj–Î-Jdª‚^óæú%˜Žï^=Â|æ¢Í#áØ¸D†…[Ö^··¶ðR³ó²î"äwÝa¡k îªHáŠmn*/˽¨7D#cˆ?<:QÞŸâºyEPçÏiç»Ý[ý¢…þEǧ÷ÖÚÆwsš l¯]îžL¶Œ¼Ì±mšl/Aœo(¼éûõ9eÌ¿úQ'0 '(Ô3ÚO#´ßpÂ<yÛêºêí€úóœƒv&•±“¯?#F{þÇŸ¢øí'…‚ÀdüöC a@yp~ Üõ4‚$:w±R4‰¤þèpr oDðUlÞð,ÞÃI¸ˆïœ“¶@`Œ¾÷öÛý (¸ÿÔåÜäendstream endobj 242 0 obj << /Type /Page /Contents 243 0 R /Resources 241 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 241 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 246 0 obj << /Length 747 /Filter /FlateDecode >> stream xÚ¥U]o›0}çWðTi¸¾þƒú²¶K§J“¶.omU1p$eû÷»€@˪iøóÞãsε/WÎù’nD¢«µQ7 €HÌ]e÷^@>SbÞG½ût…I½«"iš¡y]¥û­.ۤͫrñ¸ºu>¬p)~Г!‘<7Ý:ßûGêfuoJx¤¤{À%EÌÝ:‚qÛ)œ¯Î—cùãH—³¸vÃ6¶ˆ >PJ½  ^•gæþ$q¼,ªnøÇÍ!Ù STR;>Œœu‡:_ 6J'ÀD€àºdU»Ñõ°l‚‰!J…f†³ˆŽù  sl ÂE4 9tîÀ>„$`‚÷s×úRVæ=å=ȤþE^ê¡ÅÔð¯Öö`”f®; “xÀ@z$MÉ4‡èsÜéµ®u™j£óö)O«L¿3ùÊÌï’ºÍÓB? 1KdBbØ7cšÍß~Mô¸ÑåçHÏìd8èDéØ#GŽH$%ëøÃ\P#á¥Q}YçºÌÌÞ[ÈwºHZ a¹/Ó¯ÌüBPj5‚S.b=Ö´YWM[/@y:ÙžvºNÚÊø`l#®HH#ã‹‹™ŒH_¤œ,D_¦ù³KCJ¨ Ž&í¶Ì$DRf‘‘7­Ê¦=yåíb8QŒ2a=“ƒ¡|UrRR€QÀ‚½_÷Ò=ÎÕ Ç²BGÉ©kd¸‡¸«ó²ÍËç9þMá@Dÿµr†ê\mÌâlâ¦~舲Ý䯗éé.ìn:ϺìŒcº®«­Ýªm°ÂÀéŽ;ÂÚÄ=.ˆàJ O¨q„„õô3&g$RDàoØ?jRlúX¾YàÃÊqŠåKJ§;ÒtæPxáw—Ü?£@öðÚçªwC3FÀ݈0èaÞL™´Z¬óö†ËÛîâÙ›iœ cIcš •3¼wœ[!G¯¢½Î®«Ÿ¿P=KÂoRÐ:endstream endobj 245 0 obj << /Type /Page /Contents 246 0 R /Resources 244 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 244 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F11 22 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 249 0 obj << /Length 986 /Filter /FlateDecode >> stream xÚ­W[›8~çW ­TT\ßÁQwÚíìv¤JÝmÔ—NU1àtÂp™™Ì¯ïB¦$š–(6Ž}ü}ß¹Ày³t^]Pé*¤$ Ë•«°J‚%Ô]¦_<…ö*°÷¯.>¼],.|*¼mS~ö ÆžNêmiþ»Ž«ÊLÿ×+]ú$òtžhXbœOÿëòÒy·tˆ‹áGº»Dˆ“ÄM6έóå+vS»—FLE½‡ŒˆRÔÝ8œ²þaí|rþì`([zciŽ—´çEf8¦ fð6OÄ4DJ°îŽ)‹æ aQ8Ûž¹ÂɃ'bnÎ,‚Ø U¶)ÖÚÌK]”ºÒy×Ù67kÛÕÁöâÆÞ®Êk…›áÎ'ÂâÂCœ #pA. !’”óäYž¬›Ô*@Ș C¡Š˜eózÂdˆB…vçŽÇ纙°1$#Ù«ó× 9! ³è<.e @2ŽhÈ¢nïÇæz%†è½¹ÖÖMž´BU¾ qqð"E!ÅÆÐ¥bÂ×ârpÛÑàiý™nŠuÖC–¿4³ñênrõqrµÎò?q&N‰’’wø9"a+LTDE‡-®uÙì1•ú¶ÉÊ,ÿnc¤6ãZÇ•>Ø{w> =;óÔš£LrÒ*ÇâÑH¹@€"ÏÖØá6Üð+ܶùzg Ÿu³MzB’ROŽ×‚;®§Ò"V0¸ï M°¤IbJTÂ[NXc q%~Ê‘Q\s$Û¼8¬­í–V§hU7¼¸ƒˆ°ôê]¡óx£Írªë8[/iVÅà¾oÙj¢XPv‚¨Á¦ìŽÞjV} :u&  g rŸó°/.³úf£kÈð u¡ HÆO]Š¡b¨~Ç”¦ð‚`"<¡éƒ ¨¥#ëF¿j+„_–NÕHŽ¢½7ža»ÞÚácqCĆ]W³ Km®žç¾n´õPpÉïÉØ·AÒ•Ócû^ÜLdñ4‘ ›¨ã”>š²âXʲ›×ä}\ìQ‡º­otù+p«ûÎÝÅo W»âáI=Ù+ð\$¥®›2ÌÍij;/žÝ\<çÅó8>+œw3Ñœ7xæÆÎyCgnäœ7pæÆM}V4õL4:ÎûÜçPlá-ç–Üfè’ªÛ&.uŠ&Ú½ú:ÂØünod¨oö$4wí·¿éõ"<”Øt®KøKûoB3.}E½ÆjrÙ¶BýG˜ˆ…À š'ЉÕmÕ½GÊQWl¦×6þÞ>ì¾ë¼§ÿ_ßÃÅendstream endobj 248 0 obj << /Type /Page /Contents 249 0 R /Resources 247 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 247 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 252 0 obj << /Length 814 /Filter /FlateDecode >> stream xÚÍWßo›0~ç¯`/HƒÚó£Ò^Ú­[+Mê:4mkûà'ACÁt!ý ˜„64j š¦(2vÂwßwwÜq'rt†Õ7}G,Á\õê:ÐÄ"5¯5éòiŸiöåTl0ÐNcRíå‡tV&”q£”é·Á…ò1P  Ä6`Ø5±å@u–(÷Êõ-PC¨ 0-ßÃê±&ô}¤&Ьn+ß”¯C}¤“Þ8¦my¶ê"qè¶äoºд¼‹iK9i—€øÂv7KYÁkþGg6R=ëØ5.B¦cC[5 mzزÜs¦Û@{ yD— Â#¦nXhçsy„›¨w­z|h:ž/tÖÈ™9ÀÁ3ô-ùÇÞ"F2Œ.„ÿtˆ5©‘/)k¯Œâ>çµicËg!§¼Ì ¥ùG®5 p¶}W5ezÐ÷ö87£¹.|¡ƒè–«å„­®¼ H’¥ŒvŽOçÅíE‘ _¸Ý´÷ÎxšËïK’?#sÃâå*ÿO‘5Ÿ+_™³*ŽX˜G³îž¢*8MjÖ/ñ…»Ç‚'‡;¢S–¥1‘:[ÄôàP-£éÈ‘u””|9!½|™Loo2<ɤ„,XÄËŽˆú™Ž°––ùw‘û oã­ÌRñXqø~«¨ÕÑlŸ¿»‘ýB­ ù­[ +s¤Ó˜U#âp—¦ñ棨¿>bT”¡8âÓ~óHGì´÷UŒ¬ e˜^‘, k°CÓÿªé]Å“ Ù1òΊ¨³ïdM4©ìÔFÌj»œ´K]ÈŽP× }²§¨Š—ˆ|ÇSCý`Ö 'M¿Åÿ¡îjiJPÊ·&ûÒVÒ“ý³JÇX8_œñ×<ñÕ~,;tÂ$g>"7wTÿxFvÄÆŸ"?‡9U#9USpú5Ìi=’ÓzŠØÜøHN| ?]®¦M¨l50iyb¤‚–uø Õêæ,GŒT–W³jÉ>´TšÐv†Ø'ÊêVD¥âT¾tº´Rj½¨ßKJù nˆ18¶Ýv‡”Süi]²]õæÎ»ª:WÕ‚nÆÍ¿¸F¥bendstream endobj 251 0 obj << /Type /Page /Contents 252 0 R /Resources 250 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 237 0 R >> endobj 250 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 255 0 obj << /Length 1538 /Filter /FlateDecode >> stream xÚµX[oÛ6~÷¯ÐS!1Ë«Hۀ嶡è¶n5 mQ(2 “%W’›8¿~‡"%KœºÉ ?HÉçò }º˜¼¼¤Q ‘Žà±¸4dD „‹å»P#‚§3*pø«Ùüv6Ÿ_N©‹mù÷”`š¤.J7–ÅUå^ÿ2צœš<1ð‰qNˆM?,^M.`ø‘æ,!‘` ’õäÓäÝ,'8x5Áˆi%‚[`D´¦ÁzÂ)kÙäíäÏg@³>Ò鵎gŠ’DHRFåÞS*¦3z|mÂ"]:ù+S¿Ù¹×÷Xàe±½ÊŒïÒ>«ÊËKNGDÜA)Š8áÁŒDí‹=ܾÍÎmH5ëöPŽ(–ò«RÝKuÿT©îJ}Mª‹q¡ê' uÑÉDÒBÐF(¦–Z3."‚uìDd:*âðÜÔqš/×¹©’2ÝÔi‘èˆ帢ºÁ#µÛ„{›A˜) ›ƒ€ºgG2ŒH£ispêƒ ööI×›Ö"¥Ù”¦2y7b5ߊëÁòÍj*Â]•&…»Ø\x¹„‘.˜µò̈DåÜ«+mL2J¤Xoଫ4Këý„ÃÛ´^¹IcWÞ¥øéÆÍ%ÅÒœÀ+Sa½2nÕU ¸i·abX#ÛÉS¬M]¦Iœ¹q’˜jJÂÊ arU,ý .ÃÙèsº4K°Ÿ 4ü9«Š“F)pŒóº‹P£ÙÅycWûŒÝ£6`רIäȫºÜºtĸ€qí¦nÓ,ó{â-w=`œÞ znÆÖ»ñ^%¸ëxAˆŸæ8´6ŠTø‹ÉÇ&dˆr|š…·«4Y us©u½­<ãWñ”¶>ö±³ò/×E––·—ì'oÔù­ Sk¬ÝÞX gÞ69¨ŸÜìÛ~Mœ/Ç‚¯·á Ò÷©ß”d/´B#Ö³©H&À¦5qéõܼǘæé>ëÅžùYš{¢s:̇vG›7;ù»X³Ip…Æ èÀ8R"âû A}…8ë' ü¢«ƒÏçE²]wiúpõè!Ú•¡Ã}Ò¡æIjg[.÷ÇQ8L`Ö2þ.ÍGCA1s+N,¨2èpWÈvãxÉ. ¾ ðþ QüI€õ!¥m(ÜšÝ ÑGQˆEQ› ñ„@ZÊhëddÆ„BftïÒÜ’÷ÃXpŠ'lÀ’äKî•æÓ6-»¬ÞE„‰Û²pwâ{Îi$BÿnCÕµ|]ÄöŠÿQ&Ÿhƒ`©ˆ©~Ð'8" ¦èÇ)‘ìwhc…EŠvµà1?R.Æ@oqd‘gþîP?ÕEm+ù]\Äžë¢f¥˜CW/É1vm—öíz”aøÿkÝ7 ÷†i;K·‘ÞF©'¤Í(?Œ@Cùãªí|w%fºA£ µlýiŒÏж°–©ßì0{®uXÃX0’Ö FóõÅH€ d'ªÍ†ŸGÄgÁ]~ŸÂ¡a½Û˜<^w%¡*¨æÊes3›Ï—iCtL¯ÇlKÇ„Z.I¤Ù3ËåñÙ•E)…Å ô®uÖr’m½jï×ís[µ‹ÿøýuCÿüŸ$ÃõpëóéeÀš§äé?-}ñ'˜ÂˆÆžÿX¨ý ,—ÙüïþÙ#ˆpp Õ.¯¦ÜºUr1Õ4Üz^Ù«ÄÖÏ÷ b.ð¼m"(&¾o¿n2PÙû¯Ð½^íÚžúnwcòVýÿ endstream endobj 254 0 obj << /Type /Page /Contents 255 0 R /Resources 253 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 256 0 R >> endobj 253 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 259 0 obj << /Length 954 /Filter /FlateDecode >> stream xÚÍV]oÛ6}ׯÐÓ Ã‘…>µ±×(–­^_Ò Pdº`}Dkóïw%R–ì([Ý¡Øà‰ôÕå¹çœKòõƹXSá*¤<6;WaW ‚8%ÔÝlo=úDD½·ºz÷{oöIÓ˜×Ë2ír]´I›•…·¹vV‡¸~dHÆ%âL7ÍGçö»[»×FLEÜýŒˆRÔͲq°wÞ;¿ò(˜gz½ˆ›ÂPØ Œ(â~@0Æ{¯}ʽ²«?ø0ëé´-ëÅISÚGÌqZMk†/ÆýÔ—}±é • Ñ €ßÃùÓ„!ÔÚX‹˜>OCŠ(á6è6+öY¡ïl2< ¨â çð"‰åðAZVÖ{28‡Zên i@$4 ‡àKýcZdƒÃ‰­¼_Ô¼ nžån¤Ó½ýï}–W{ ìbÙáÜCŸÑ¡t(Fq(àÂÒŒƒX"œÔbV«w:ЖÚuW¤žg^;aÛâ…šeEÄæÝ–ÝÈõïü 'õU&î¢D Qñ- ¡s…jÝvµ-oµPR€‘R‚™o¢Ð|´úšôT7ñ #‰ ›Š@LÕóK†V7íAƒ]û7”¦h XAÖûòIÈ÷­žìûÌÅñ—:kõ½î=nHšR£åîa ©ˆu=·{ÚäúçˆB|Ô 7î¶eTÙ6kŸ¦<£µÚÏAS%©}­€¼—J2ÝCa ¢¨»Gþî™;º‡ú`KKç+ÁÎT"ÿ~®lgÑÞšYR´#î¦A~ÀàH¹Ú-à–689î…9=,ý|= ¡˜G³Ö© 3.ÚÌ^2`«ÿ~òN›M~>˜ÂîMAó8xÓÚÏ“™-Wo §(Ð.Îp ý_9&š;&<×1ô‡Xƶìc—Ô/°~v›þ7¤Ÿ\m#à˜À ñ¯o¶³DãÅVÀå¨Î!ÊP¤s%A$„îê!ÃÁÑ\#âñpÞøŠzUúºï‘Îþcïm„ÇÇ¡4#ЉU|7Ø¡žY䘊ËòëÓ'}¸ßÿªûendstream endobj 258 0 obj << /Type /Page /Contents 259 0 R /Resources 257 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 256 0 R >> endobj 257 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 262 0 obj << /Length 666 /Filter /FlateDecode >> stream xÚÝV[OÛ0~ϯÈ^#-Æ—87‰lBÚÃJ´ƃI\-qB.å×Ï®µ nФ õÁvrÎÉwq}œ9‡g$t˜„jÈæn‚Ü(ÄLܬ¸ ÄÈó Cà“h?Ÿ¤é™GhÆî«‡"šÎ¼?©xß›éLÌEçá™ õˆ!ó®²sç4s°‹Ô¯¾Å"ÈhˆÝ¼vnË+ärÏi3÷§Z ˆ“„¸µ:-*çÂùò»Ž¯ ù›•Ž·Ò"j­YA ™ç+\7MõÉ4mZÑq5{wdb¿!†òFöƒYþQ˜ˆÍÔ„+<´Oá'¤Abà•RÜŽ¼*‡¥ ÆR £€†›TBKe ŠƒçSÛ‹Ù_èàÄšW™@˜$>IÑê‡ÏgíeÖÑ?7kg«bK¤hÆëJ ©Ïè kcÏÌK­Içº/ö 3f)Ci™AØvÏùju롚»åý_ ÉÆendstream endobj 261 0 obj << /Type /Page /Contents 262 0 R /Resources 260 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 256 0 R >> endobj 260 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 265 0 obj << /Length 870 /Filter /FlateDecode >> stream xÚíWËnÛ:Ýë+´”€Šå") ]µIÚ èËí& ÅfZ–ä+Ëmœ¯ï”¹P:}¤‹Â0(ÊÙ3gææÓYðøˆÉP-q˜]„š†J X8[œDRÆ ËdÆ¢fõòNž-‹õÚ?4óMeê®èʦŽOgÇÁá,€âœ3¡ˆàÂyüœœÒpÐð8 „ëL„_qB hÍÂ*H&Ëà]ðæÚO‚Ž’±§§“¸N•‡­ `,N€R-šÍùÒxÈ.‘'Sð@\`$Ed¦µss`>RÊêÒ•Ö¡,:?Ú4ý“¢~l.â(ˆ¾†ÐC""Ÿ¤Ì•,M]¬·æÂ´¦ž›EœdTEç[?öÅznê×1ˆ¨h»r¾4yŽ%‰S}±/MÛUíÂM5îQœèTEUQÆÕß½í6+Ó–#ksC—šPÎûÂ>y2Á’j%z“ÒFH\š ÏRl[ŠÔÜTh2§U[ÖÝÈ‘c¼^ìtí¯Î^¾>ü0‹ñ]žmËΜÛÊžŠd¢¡tÎO5쨄㮝íC©QDÛ[•ÂîVŠ”¿B){èþéd/À~:iͪ(Û÷X„õC((ÝWAWû)H"%üÇÔ›Þ¦ «_¢ž?ΰúùçÌëG쩟öss‡€v8¤c9¬WøgµXú³kšÞCµjjLÂO«âR²Y˜¿íÌ÷±z¾—õ=ø—=ÿ_ìÛ”‹»+°6ÝMú²¹péÎÎŒdŒ >õ'7%:ƒÁ ï¹[ýqI˜äª·ÞNºÃkÄýÜMmœdJÜÏ]7áŽ%õHË0Unα̒f;M;Ð}ÙƒØÆR €®¾—j7q˰ЀÌüôEläh¸‡á™£,P¤€!cë©OE%xÜì8ôê°ËÏbÍ¢M¯öc+ÄMÿ‹ðˆ\Ð> endobj 263 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 268 0 obj << /Length 639 /Filter /FlateDecode >> stream xÚÕ–MoÓ@†ïþ{´^fö{}l›‚*!¸¤=¤É,%vÉ$ýõìzíÊ…”†¶ 6Qäqv½ó¾3í=&oN™"–Zåñ@´B*22œŽRK²œIHß¹ë÷ÇEqš1™Ö›åç R7Y×Ë8~<¯V1üäfn™¡I]5qþ/.¦Jg—ód0L€ÿb“Kj*¹B2Y$ß’Ñ%iä,Ê­‘ä‡?ŠÖ2²HãÝÉ<9O>Þ®“û…òþJG¿Ù2–pM4ç4ˆÆÛ`;^\ÏݪªÁj’£¿LÊhíVëó2Ìêû Lh¸Î'‚^¢5ÕÈÉ™¦Êl–i Š1ºÚÅãb\V Áÿ°[­/ÛûâŒzWü¶”SÔYî%@úÝ+IërúPƒŠbåÖƒ8+¤›Ö›«¹‹ùëåcÞ»PÞ;D÷eµG¢/¡éæéq’dw'†²4*«yY¹Ë}c"8”! Ü°Ø¯7Êìµ>öWpß2þp/ñI½”w{yâ.XU®ËºŠÇ­Ö`1FØÝ4õ¬«:°y;x«±Õ eJ¿6 BÇ}VÅ„øà˜Ç€óa{9¾ÆÚ†o÷“Ã)³ÏÇM¸§}û÷ƒs½ý#9’jõ2Ñý"ѱBg÷÷èìö£Ã¨æÏøÌ1T„÷É=ì»×Êy‰ü0x?7òÃ9tüÜÜÇq?ê ~´O©Ä}üܼVvìfç—í ñ¨ çOß öê6ƒŠZÍM·ÇEŠB«Fì[W¹åxÝiíÊ3Ì,K7­ù³ eºiGd[-YH(Dû¸f€,F³æeð»E8©·»/®êìÿïàÙ0endstream endobj 267 0 obj << /Type /Page /Contents 268 0 R /Resources 266 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 256 0 R >> endobj 266 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 271 0 obj << /Length 726 /Filter /FlateDecode >> stream xÚÕ–KoÛ0 Çïþ> °¨"e½rìkCÛ ÛÚÜDY $vç8kÒO?É’»¤u¶¾€vÈ!DR’?ÈÜF;‡(bM´°ÃI¬i,Ž€ñp|’Õë£ “÷æòÞÝpšìM³ùÜ/÷ËÑbfŠ:«ó²è ¢ƒa1µ?h‚qI8fÑÏèäŒÆãˆÆG%L+_Ù % 5Ƴ(EÖn¦Ñqôé&Nßê¯GÚíÔv+½lMÀÞ@z} ”&¿z@“2{ÑM*ƒÁayR.ª/ö&fT—Õ`07õÐ[RNÇåâ|j\^;‡)®Ý‡ I*¸ÜÜWç…7Ú@¨Tll<ðF7‚F'y1Í s¢Ñ5Ã>¦H˜ànA8@Ú8X½^nÝ! O‰¶ëƪÆã`™Í.§f>p1("©–qß&¤9ŸŽ™×ǹ³Z«M³"£éÒ’H`N›".Ú7§”b‘7h4³ Õ¥èW@¹_”“¶ê§áðF@ÀyB.¶^îR)k.ûl&¦2ÅÈ„Ÿ¯üÿ,Ë ×IW}ÒQ"†1B©€ pð1à|½8H Ö‚³ìÇ*Ð÷Á†ß n[’ª-Ü,ÿSnðUrÃÃÍ·‡s³êæ‰dø|àX^„ØÎj+8ÌzûSØ Žz9pØ«'} 8ßþ¥ºÞ¨ôùÀa$•t8×ç/Î ‚“>œôyÀÙà†?œ›«ìò7&þðMKœÆTû”õ…©:”¢ •’wpºE‰L‰F¡oQrå± P¹í;S„TµéO–.Y®-ìÛÐÞb|Ûõ£óȪ:MÍ]?Ò1Û*Û÷"?y´] ÔN¶Â޲L¹:1dDi`±©ôÝ·zM•Õm!Zj‡=É"0yäZ„“0ep:H¥ß!…ð4Tk5Ù¬ð~¹\ý07þo®uÝendstream endobj 270 0 obj << /Type /Page /Contents 271 0 R /Resources 269 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 256 0 R >> endobj 269 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 274 0 obj << /Length 770 /Filter /FlateDecode >> stream xÚÍV[oÚ0~ϯÈc"-®¯qÔ§Þ6UÚÃV´—¶šR0-$,„ öëçK¡°RÆVMÅvÎýûÎqÎzÁÉ¡BJ˜Go*Jˆ aop)8NÇÑ=ýxžeW1áQ9¯¾Ä€q¤ûuYù÷çã|6óËÏz¨«ÒH}mŽ(c ß÷®ƒË^!6?p¾¸Dœ û“à[p{ÃA€Ãë#ªRþ0Œ@)NFh»7Á§•ÄJº–Îv¦EÌV®³B'&  ÊùÃXïË3Ëj/r‡96ð»~YÌj›ÛÉ'Ÿ„8µQZŸ·£b<*ô½—$¸#™¬DÂPN£Òõ¼*¼“ÆÁFR FJ ê”$î”.ùd:Ö³Ì*„"‰U&`Ô8÷Ù×zVߌ¬TD»Bý>ÚH$rãÉØ#B:3úcRŒêQÙ™7õ±yú•Lý³¶•ä-ô*€&Î#ôä05³NaÌùrŒ²lx݇åXïuÑØ©jYf`‰Ž¾Û­9þ:-g.Ô¼wÞÂ$=?Ê‹Á^ëÓjTÔ­ÚŽI€R¤0Ûdœ<”qOºÎ÷°n+Ürȹí=5>¦å8¯ÚôǽÈ'dšªý|‚¿Ã§ôEŒ»PéôÀJ/ëm0ÃÔ«z»íâÒmíÅþÖo Å«Z›ÛÚt vÆ•ƒ‰?hí¢îæ@žw·=jì–S]å62W3q×5¡”ÛRÜÓÓuŽ˜’¼Ù턞¸Œj˜K•&sXÏáí¡Rš¡Bo8ŽÔM²|£&Ùî’åþ•þ ø â~8*väH±xÞ"öè%¢mQÔ*xŠš°Œf² ÖséxÞÒ.o)>·?å-úZÞ:Ñß ÷Ÿ;>zS“Pzü7oÇPûÉ+LÑ´ýäLúËÃTß¼örmÛ‹‰æM¯-*óæM3ÞggLúÁ@üjèÊ\uJ¿yk_”‹å£.ÚôÚž#Šendstream endobj 273 0 obj << /Type /Page /Contents 274 0 R /Resources 272 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 275 0 R >> endobj 272 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 278 0 obj << /Length 542 /Filter /FlateDecode >> stream xÚ¥TËnÛ0¼ë+x¤€Š]¾DQÇ<šÂ@m„\â Pe: ‡+Ëuò÷%)ʱݦ—Â0–¤´³ÃÙY]ÑÇO,EšèÔ†b4 •R"e¨X=bq²4cø³Ù~¹¶ øº)w»iyÓWûÖtc9Ö}?‹è¶ˆ(û£L*"yJQÕF?£Ç'@«Ð"Âu&ÑÁn€P­j#Áø¼i¢ûèë'±@É)ÒÕ¼3M¸BŠs „'ûR¶ÛÆìrG ÑŒ(Ð %Ô¦I9Ýo4»ñ¾vo=Ä›jì¿"UE\ž-'…ªˆ¢\ „Y>™ò(7f ÀºÚ‹àu)Ç)6ug¦•RSì×StMxvd@i` %&_ß*àj¦Lp_ë›Y›Át•YÙ\-ñWÅÔŸ<¿3]ÀFS‰_ò¼²¬à_nk¿oû§º öO?Ä ‡·e}yôÐm_w#_]$”] e3“#}ú&ø»pƒ…›Á..>u³ØµVgžóGk+™_Œ›:8³z3éÁ6—aól:3”£—Ïe};§š¬iú˜I|¨»çÓf¥DðÌ@©…ôä–ŒÉà–3[agÇÞĽóŽÏ6›ÌÎåüÿ§æhš”hÅ3ÇŽ3N2M9R”P¡RÏòî\ŸYá"Ö ïƒB ×´}x"§@e.!Áå ( j:%çöœ|D¼oýäåÕödá7ç#cendstream endobj 277 0 obj << /Type /Page /Contents 278 0 R /Resources 276 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 275 0 R >> endobj 276 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 281 0 obj << /Length 943 /Filter /FlateDecode >> stream xÚÍW[›F~çWPUZa©Læcµ}ȶÛj¥Hm×oÙh…ñ8FÅàp‰³ÿ¾˜±±6Ë:ª"fßù¾sÎÜÞ.œ77Tº ) Íbí*ì’ A u«÷žB„Ì|*°÷§Þ½»žÏÿÐÙu1#¡——厫$Ϻï×iT–]÷½Ö­Îb CX)ådöaqëü¾pˆ‹á!­/ Á$qã­óÉyÿ»+»·FL…ÂÝà FD)ênN™}I;çïŽ@~é­‘E8b\R«‹‚Ì /‹`|.P^p/x@ƒ†ˆ¶NkÔ0 ©ãÆfÈíSà@ &¥ýç ¼C@_Ux3ŠLË*/´éWÝu>êLQ¥WƼÈægÔ¹´çÚW ‚¨\xKÊyËàÇ$‹ÓzeäÒ³ *d†êψ xôõµ£Í$ÁI*ó˯‡ ‚”m~! )€(“&ÕË4‰;‘ïôv ékû7uÖú+‚M$â,äK†ÂwsO©Hfˆ¸ é3¹l½5 kÓ®oþñ D*Tâ žð1ø{Ìð…6œá4 ‘’`€‚/`F< 2ú1†hV]÷*/’ÖÛ›NAˆ’’7t)E’¾øî‚ç»ÇeþÁ–òF$?ãùyF°—'¦œË}´{Í«æC1\¹oÜö× ¾8W]“ïšù˜¿L o±)¹ÄcY\æyzæ¦ç§7β·´´æ/Ìf¯n›»ß×m¦ÌÜÓŸê(Mª×dü©¦¾MIvªU«”¶‹²aýPNßéÌŸ¬ò–q×î–ßšñƒ.º¡âî¤õH¶¶©6vKʱíh=Ö\ÒH¬.MÈbƯ¨Mô’õÙ&=¦a™Ñ¥Ö™ý^Á)€AÞÌ”ð¢´4ËÇ®]éuT§º|mÕÕÃ3•Ù/‡/åOÆùÉ`SÝ;ç±pD™¡Ö+‘^š9öþ'ÕSv’¯‰šT§b:÷¡™ùzßÃä<§:*Î;£{dY­æó¼¬ºC}´=Ù÷ERé#Úˆíëv•ÛŠ6;[]íêÊã‹ÆÓô¸´d“afpu¦-Öö2AÅo]äÛSEI6 èì"Â0vù=°d¯®},´·@‚¤=-÷/D¶"3E=»@ßΈðjóEt sç<èÞ(&Ô ¨8L®ö^yºÿ–y„K˜•ÿëÀð³endstream endobj 280 0 obj << /Type /Page /Contents 281 0 R /Resources 279 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 275 0 R >> endobj 279 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 284 0 obj << /Length 1349 /Filter /FlateDecode >> stream xÚµXKsÛ6¾ëWðÔ‘f"‚ ÕÉ%ŽÓÖ39´ÑÍÉd( ¶Ñ¡•Øþ÷]¼(R¦UÙIGâ¹ûí‡ÅîBï׳·ie(Kà³¾‰2‰„ N ÖÛë¹ ‹%M“”ΗûOÐáx~QæMãštÑídÕæ­ÒÕâëújv¹ž‘ÃXa\ λÙ?³ë¯8ÚÎpt5Èe)É2íf1e¡SÎ>Ïþìå,AÐr(é½ÇMÊ8§8;„Ã!˜#‹%Á@Ê6W¥ÜzȲ)jµ€AšhŒXœ99ë;é Y"e)å°Ø¬ùMVõ‚¤sÝ4ŸeñŒ`ÁK’°ç æx_"æ‚@8pÅÚ¦Õµôí`ØÆ­¬d·Á–¢Öýr§MÀ]fÌX-wBcfØó\­ÎOH‚ǧЧÉ\5îÛ5`*æ­v#Ö×t¶ÀÜж˜ÕÁ–eL28ƒ 7°›ÃÐNæUëk7µ±GÖÐËÞO»Ç{lð݃Ð7¦ $Tn(¯\_.(Ÿ_>—V LmÝwj*oT䬄Á¢«k¿"h_{ÛIk 4õÇã¶À^Ýæ¥ßíI憳ù^ŽåÁ"${XÓ›w—·–<& ÷¥/ÓÊ*šô$×¹W¥_±‘¿ôþ'ËÆòp'ki]/Òc–锢$Íœ¿PÊKWq«»M)*¿ym¿º±·oOÃQþ»ßô¦Á]L ,œ©ç›¬k]i³c® ¾  u¸a÷ª½ wP5Ï‚s76ôÄ.í*Õú]öÄ‘yýÕöYÔ~Eí¹¨ÇG,Åx>ð8œÂà>aFN&b8¢]ï\B°Î…LËà²#µj[é§ÕÍT„å„!ÜBì%Ü5lïÚS`q‚ÀãÙ0~VhÈSªj\/wŸ½VU+k×1ü æ¾×ÎKµŠ©TDñQpù™©@oþ “ñ‚%4Ý,ugxùïö¥lVî¦HàLØ%Ïùb áÇÆ}THõ¹bˆÍ¸… Ì81èé/Öiƒ…øië¾¥ª¼³1:vn³#\AËËtw0kÃÁ)d*Ì“C§>‡_èªië®hÃ5ø¥Ïæ£á'ÉSÇwù tô•ÂóIq:SzC9¶Çfµ)m”{˜ðG}­*Ã××)Þû¥#|gÏ_EüˆF#lÄ =ƒ'ŒÄÛ›P$ :ê½›á •àdq*NPÿÅl†7Žr±PÏbÕÚ‹‰ñÿB,ûQg{v²0—$\ 'rÆ8œjÒ“¦ku;zM”ƒèD¦XeIŠR†X-ôÞDéÇAr†ŸÍ8ÉÎgBعA$0þIî6ÒŠ]5`î5aƒõaæ&­|>u®E)ózʹ§!NÛ…ßÄd£rKa}þ;; q² gØær§Ø¬Øª&‡ªªq#ºk÷]ëÖéÉePÌ1ùù°ºªU¥CáªYh„¢Œe §(cü(Q«¾~ó>˜ß. ׫*œÈk¼—Ó×yïDÀzYÄÚö¤…‘qeÙûÛ TLd¬Œ"‹ìœÀ–ŽCÀK*÷—Ñûâ> endobj 282 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 287 0 obj << /Length 919 /Filter /FlateDecode >> stream xÚÅW[o›0~çW°— ¤áú‚GJzÛTi[óÖVgA£YÖ?ƒíi.í4E7ûøœïûÎññåÄ8¿ÅžÉóÄe274}Š6'ñƒÅB¶ƒ)´¾òå·«Ñè Ï® V^–÷<ª’<“߯Ұ,åí>çÍžE\¼‚Œ1Ë'öÓäθ™Ȅ⇚µ¨(ñ=/ÆÃ4cšw„Ô\‹cØ|6\LôCjÜß7vaÈéZº ‹G¿ @lA­8_ÍR¾/ÌÑ(Òo¦¥|5å…|UÈÉBñWˆEyVVuÐç·wœ!ˆ €]_8_;ódi’ñ'9ÃÎHg3Tˆ ÒÌ«êæy”„åó:©ò®Z$ŠŽ¨È53e—±D]—³ziáƒ|àa×m¹æâ,iLJ•¼ÖÞÊ;êËk>×ñC¬llÑ Ð_E†ÒH¥–‰òöª,.yVy1kL?+'²x›¨›ß6¢BkÕh´.’ŠO›€5Gz>Pøve!œ!@Ò®,\%‹Yž§ûE‘Ô+UÇð] eÞüo†öøŸØ„ZÅJÌ5áüm¾¡z;ã<Óß+` •Aë¶Æ0LKÞç!æs[| WiNU‰ÿ•J5Pð0Þ%šFÇ+‚¥­ÝOãVR mÈCôlP:=AÀ¾¢~És]ì/«0Mª×Sùr½ÃùŠ¢ÃQôŠÃx¾uV_‚[YoÀ;–£ktwZÔ°7Æ?Ýn&ºWìtŽðQŠo‹E9"Œ©œm˜ÈWJGê³T.Â4ÍmL­õ©”|4%;sH—†u“ØËã³Á?)Æÿ%Þ› „}8ðƒ»Óv¡ê š6þñDЍ²Šë}ª’=Yø¬ÞÏš·Ìí0µ#¶*6¦æEþ¬#Öek¹Rè ëµåó½O^½ÑSl;¹g³Òù áµ¢[cK÷…ˆ" \æÓ¶ Þu÷Å! 9ÈõDõré –˜ÒÒïºjäI¼_<µ­Ž¹U’lº[áô[dˆ XpH‹¬‡ök®nÉŽm~ÉÁBCÛ×l~qÌA„¼ÿðÓ1¤Ï>ž8ì@Ÿ}„®\ßkBžÕÔêÔñMl†-ÝRÞÕ¢Y©/T…KGŽ\ÕñcˆÔ–4¯76]n=ôeÿyý)úMþ_^Y̼endstream endobj 286 0 obj << /Type /Page /Contents 287 0 R /Resources 285 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 275 0 R >> endobj 285 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 290 0 obj << /Length 997 /Filter /FlateDecode >> stream xÚ­WMoÛ8½ëWè´ˆå§(ÝK“´E€v7¾¥¡Èt,À–\I®“¿C‘´%GɺiáƒDi8œyïÍhüi|øL“P!•Àe¶ eB „†³Å]$ù$¦i’Òè«Þþu £ËuÖ4ööªÊw]¶Y[Tåä~v\Ïbø‘ΙH°„„ù&øÜÝãpàð&Àˆ©T„{X`D”¢á&à”ùÅ:¸ þ9ø‰ÁQÜ÷ôi4n KiÃVˆÄÁ“˜`Œ£‚£ªXLb†‰Me:ý¢ËËzBÒ¨jš[› ¦ÓF·óÜ?7ö±Ýö ¼¨vkmýð™Ó^T)ÄlB6<5ÖfdŠR‘HgqN ^uÈ$â˜%s]×#>i‚0pe­ BbmDßUÌ(G +Æ‹‚tW”ë¢Ô÷Î+îïà1JE›\‘nín-ëy]y2‹¬\؈µªímáÞm&Gh$…#¥g ”peƒ»~Ê6Ûµn¦fCHR$±’¿2ñÛpZÝ´•(ÏQQ¢±<ˆD’0¾A=©ìö]éoÓ²èÅíò2pØ;•Úkµ´W³cíÞuº9j­º“sZB9ïNùW/u­Ë\€2Âê‰jÞdDeh;ñÁ†>¬Ïöêü¨!ÿz_<öÃñ/NMÿ~nWEö†é½Zg‹A\'„a£((T.ÅF^[/€ó‹­ºyT{è}Ù½"oÆ8èF*WoÉú`:ÐuãuÝ“-t¸*/²ÖC¿/Ú•½›·Ë 'ùaœ#?‚ÕoÓ߉v^èð,¦“Óôç™ÞgÛ##&öåcCÏRG~¾Hg)ïF¡ Ì.i€F§8ó°fDÊheSvv1¡0²~t ŒG7æùȨLûõºçÈÏÏ Ì,íš,ôÅTJP—‰O®«gf6Q4Ú9do í;÷ƵA"¦O¹tÍ›ïEÇ‚aÀÓÚû?á…{U==—„ÿáÙPBendstream endobj 289 0 obj << /Type /Page /Contents 290 0 R /Resources 288 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 275 0 R >> endobj 288 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 293 0 obj << /Length 1841 /Filter /FlateDecode >> stream xÚÕ™[oÛ6€ßý+ d`fy¿kšµk‹èÖl{h Cµ•D˜-¹’œ4ÿ~‡")K±|IÜü`I¤Ïõã‘ôübðä%•CƒŒ„¿‹Ë¡ÁC% ”ÐáÅüCd¡£18z•¬ÞžO&¿%Ù‹›ÁQ’Unà|—¥;ü3¹LŠÑ08KàÇ\FJŒ>]¼¼¸!†© &Ép¶||ø„‡ó¾`ÄŒÃ[8ÁˆC‡Ë§,œ,ï4rÆ hÜ–ôÜÛC8b\Ò`ûTÛ‚ñc 3@Û ’Ñ=™pr.»18+âlž/Ë*®’cœL jÙÆô^…Aõ׿Ée¼^TÓ¥›Ž] ¨}A$æ“ZînjɶíåüždWÕuŸäE=2mßZS·6S(e#a:¢ *c8Д:x1£1ÄåJ±® h4+ 7š­ w´Ê¡¬“¢t“ªÜ]}•Ä7w¯óÌYe m” X[ñž\¡E5¢Ä„R'‚{w0¥¢wóË×Ù¥M‰|ï2°ÅbmÄÑ«PJ[«@:éÀ¥ó"/Ë÷IU;ª12FXGÂЦɉEèÁùA=B~ªVðî ƒ<†< •Öjƒï±pÞƒ´¢-H+Öi°Ö`æ wô!zdhäç†4ä²lªh£Ù.Fû¥´¬±Ž’.'z­@ûh»¯0àgGŽ!6tš³ýôÓŠ˜ƒôc¦iWžÓÞ¶âPV# q¹óè ’"L©ì¢£®;I`‹‚<µèÇI¨­›‰l逨Ü];[Ù‹"ò³B±.¨¬Z¸ ï­äë  ´ d‹[®µŒýPÿ;bó2<FÙ³5K ÉÃØ£«Ö3Ê ­áa:¬Ú³œÔ'æèÕ<«ú AáIx££—N§žÈCNH‘­0úë52¸0{š¿Í4X¥K—ȾÇì¤M«-¤š&ŽjÌ)ÄióÕB•èÇ‹xZ:¦”@¢Å> `ĵ›Ð9S)"i·ÈûûC"¤„zDóÒÔŽ;ÑB@/lŸ¶ö&¼±á^ûáþˆ˜<áÊQ>Ù¹î¡h}¿ó>¹sÿ¿æ_ï®’,˜ÿ‘È*endstream endobj 292 0 obj << /Type /Page /Contents 293 0 R /Resources 291 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 291 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 297 0 obj << /Length 1264 /Filter /FlateDecode >> stream xÚÕXKâ8¾ó+rZ´qÛŽŸhµ‡až-4£A;‡™ ÁMG‚$CÂL÷¿ßJì@áÕ°‡í>ƒ]õÕç¯Ê¿÷îÞRái¤|Œ<=)â”Po<ûÖ—bàS%í¿7ÙÇ 8îažÛÇ×i´^š¤‹8M?Æ÷½7ãñ0ü“Ê—ˆ‚xѲ÷³÷íöf=ìÝ÷0 ´âÞo`D´¦Þ²ÇhP½/½Ï;>ò›–^íá&X (æI"Á\Wè¿SÊ>ǸÿÎ$ÿ <˜UažJ wo kàåz©À_µãÀNjy‘ˆIê¦LÃÕ€¨~”Î̤H'¿Àº3^ós'…ÀÜ̃ïˆý"J“¼°õ8¬tà3‚¨€0|ÂâJT®€íxžØ•áÆbéÙŠ´õ@áÍ8[!ø”"Á tŸHQ¶KÔsé2\L²*Ê42y>‰gÛØNDzqÔ eÄ?צéÁ>g«Ê…€Ÿ+€›2|»I1IÖË©Y]ÛXRkÎê(—Y|5¨fl郳»^Îr®ŠÔÉüšU•Yš¿ö,]O¦‹ß< 뮡71«ù³“EiñO÷lœíG“ùÙã&Xc¡®Œ \dáçÑë«aolDé:[ÄÉü8ltÜoŽã†ò䊔€Rù_×ÀŽÑU_Z÷²´’m»Èf¯ÌÕ¶‹0N`v&vÕ™ƒÁmÄ4MÇå^ijÉÔ„ËI™fq´0ùårâíx “í`7BŠ]zÿ®èuâ -nÉïràÖý*ṓ0nëzyôy1³0v5ÆZÆgJ:MüÕa`DÍÜŒª“AŽŸ*&-ª=j†(ãü¸ÒŠnŽË¿ó=hD©Ð{Zñ•Š'õœ¿O†÷rQøÀ; ;iPÒÞ*ò.1ò™Ñ’BœDér“·QÃ6b—ñ[½]\–¾ˆ8ž?#›ÁuÆÿá$_ý¶Kä™)5‹W&rIFÛ£æìë@ãNç¥#Ç n8!TÀ‰Z“ê¢%º.‘TÐ-Þ6É:Z"¡˜`Ùrç`¾„£Ë+Ðÿ™.Èö‘=ˆòü‹©Z=ZÉO°BLPrþyÕö'yÓÁ™Ù­D5•;½}“å:«PvÃ8DqÅöÔ>M±$-¬Í]¬O™¸n¥Ÿâ¼è,$€Ê©»d3öw@ÁÚ€ÉÛm@Yh|MPÝÖ¡zóÞ„ ìó‡S‘ö‰Ðóá=Ö¦'—jÞ¹…"çhà7 …"SEÎÖáì¢ )ø;$Šóí'…Ã8ЧéÞÆÇø®¤À5šo¤°ƒçÓìáCòPZH AH¤5cç !›=Lâ–é3uTÄÖgozT 2€"§OW຅¢”ÞB ˜¡ ÀÁ!)4©ßç›(ò&t[`¨3úPAhœ³U›k_a¢"íjv%ÐF‚àìfw‘Bëµo†b$=»§tÇü*Lfér’aqag©%‚J¶ÓXÚׇ*ÐV{Y6—óM{¹û^;Õ­–ᶇÓt]ì(Ô¢­‰È÷ƒ Ct^}=Ø0Tß ¤e ÊðƒR„°mž$ˆ0i£W^:*×·Ö‘Œšöë+ªû’¡µû…Û‡™´#Š µOV~«Æˆk¹Ÿë«Ò§ç¹Ù\’þ +m]Çendstream endobj 296 0 obj << /Type /Page /Contents 297 0 R /Resources 295 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 295 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 300 0 obj << /Length 1064 /Filter /FlateDecode >> stream xÚÕXQ£6~çWðT…‡ølƒGª*ÝÞîU«žÔk³}¹=EœÄRÀ˜ÝM} ÆÐ°—dsªªÕ*؆™ï›o<x?·ÞÝaߦ€úêg¾²)´‚¶çÉ— ;SLàäW–º™Í>²ìöÉApÂ2©n¶QYêË?ØŠ ÕbÌÔ”=Î×ù½u;· Õjœ×GvœZ߬/_¡Xо· piHìg5€QŠíÔò°k[ëOëóÞÎTšö-½ÿ}๡g(УaÃêcâL „nXäQ!y¼eå¢ä3=÷ TÿHb‘•²¦òîÎÃv¨\ø^ícà{ȳ§Èy~ãa#L&ÏúÉ4Êv‡^ôh±HX<öÂKù‹vpÀaº÷€]† 8,…ØI°4—»7³(˜¬ŠL?(‹ª…ÍWí̆íTd.2ñ*ÑóÉíÒIW[ýÁ)G¤vÄ^~JLþk¡Fٞϰá%x¢ =\²E•qYvôJ™Ìf¢”ºHD©^ùI”?7+±¨ä‘¨Í>EPŒOq7ÆE©²„Å’‹ì÷²¸ÀCÍo6û$RU«´¶ùÔÎ4xƒ¾Aãðá0Œ­8°ÿ˜T!­ïÏÁË!ÀHÕP}‡‡:(UÉÚ.wûŒÑªÜÿîxuÞô¶óU‰ ˆ{2„Ü„ ˜Ý9¶*þrB¥£(¾ã›‚Nßo胣YRàuþµi~\ñßX¶–›Nïm3þÿ«Ý¼+£G€âŸ.6; ¹(y·5Ï›Àõ½ð*b„AàŽˆ=R0z忻ť!ýj iä#NÚÉdà‡Ÿàž@Q’,Ì)Ô×YëÍ|/•œ½vÊ…À£Ô¨þ¡{$ª*•CdÊÀ“|1ÐM‘ºtp–)pmòËöŒbO힊²Ä¹|åŒ"#zv!ÐÑKEŠ #â@¨{¥€àP‡‡å€QiÚõ°¾X"í¢sv NUÙ£bP¶Æj€Sý 7èö…DUrn: ¦[ŒìÍ(K&Uã·Î¢í"×g¼j Êïí}·È“sH(ËmmÌø7Ó=iWm½*_Æö5˜°:*æMj‘Ué’GˆÜ–‰‹Xu èÖOûº‡4çÏA÷P2“4|°ß÷À÷ùÔh»Ú´ÚJÞ½m˜ÃDÁP¦iüŒ^í ‹âšÁfp}5Ë8ê÷J‰¨–fÜ,]¦bÆŠõ®g帣m¾‰>ß|86ºèÞœê¦ó-ÏÖ×z{] ·G€>T„¸Èußþ¢gÈ|¦ð ÜÐ|vA@ÔGàÇZëHš>ͤöÜ¡xbÊÓ}qU»Bô"3g^ Gšo7«úE×4U͇œÃðƒxÙ­Yfèÿ„Œ4endstream endobj 299 0 obj << /Type /Page /Contents 300 0 R /Resources 298 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 298 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 303 0 obj << /Length 1127 /Filter /FlateDecode >> stream xÚÍXKoÛF¾óWðäH@´Ù÷C(rˆ›41 MÔ^’@ EJ& ‘*I¥ñ¿ï,—ËPeI•>ˆKŽg¾ùæI¾š/ÞPd$üLæ¡Á¡’ Jh8‰?”ލ–šÞ&ë÷×pxp½ŒÊÒ]þšÏ6«$«¢*ͳá×ÉMðzé• …“$œ­‚¿ƒÏ_q8¼ 0bF‹ð8`DŒ¡á*à”ùÃ2øüÑê¢QWÓ«=ÜKę桢pS9ð_(ÑÀxðmHð OcºLªi™.²h9]C¢ù,)Ëi-”Uò݉}Áÿ–dÁm|ñ†ð®aC²â´6‰1sR[ð82š°VF'Ãi¨AFr+3"Šƒ‡€}D@žóZ°:4ë<ͪ¤p‡*o~ïwØEû,‡˜¤Yš-vßÊ¢v¼ïˆR$9pÁ!˜íðy›çË\Þ&ÑjºŽŠ*-“r‹¼–ÓæI{Ò ©‰>=Ïðs§ÿ¸n¡ÕX¡úP`( Š™þÀ¤Ù,_µD[.v[BòËæ—aÑË/ò淬âñx¥Eã=é2+ ™¤’k¿ô€ )CL#Q×÷x|œWÃáßôùcÄœnÊ qÙcbËA0å>r/ºQVV*1%n œ.„kW¢!'Šmå¦lª)ò¡N›ÂÌçôä;^rÕÑ }ƒjcöœÜ2ΑÄʧð³¡âƒr»\–…„è8æPîwÍ"Êâ|5-¡ßw Ý‘ë¤lNºN:«òÞÌÔ™DÒ‡3“2・ÌÁ­}=âÛjyyTË•Ãî ¬tÌ!BnEÚ¤í®ßÒ¸‰ºÓäý}>óš°bÕNÃ3Ûê>á37Ÿ`:•À§ÕÚG:dÛµüÔ•;”Ô-Ž‡ÜŒN<µé]³^ã>î–’HkêóyzAÓ&ÆwEjü݉–½‰¬RœAì] )x{?=Dê[/ñ®eDŸœP0Û1yˆIØr¸b' ÓàT&%¬fŒéÓ™\Çó©M}à*ï%òC<·õüjýä,66-Ö#D \eÒ7Jé©L Š”ì4&a¤L7YZuºêŸö8¿Ï킽YÙc³ü4O~O²EugžO9"†áçZ«wYí ¹zÞéè[ö­‰­Å Œ7šýL™¼ÈË]“Ðû^»Q—U·„Q¶ø±–77íèôw-3*`w·wšÎŸ.×¶$/ÆìßmS?~ywƒì@÷ËÎd{Lõ|6Óƒ½ÿÚø4…6Ù]n+=Rxu„7“Eš] »£d7Wœé –©ýH²øR/ZOäÙQø¿PéÉô·( k aìòïPEþ3”DFÁÆpð¡ ¼ù*‚‡·o‹ú€Å•4¨ýj7:Ø4Åzc]Ù4O„û!b,ð˜+w¢˜PwåV©Â¯‹íg¹Û{ÿMîûý"iIø¸ÉSendstream endobj 302 0 obj << /Type /Page /Contents 303 0 R /Resources 301 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 301 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F47 132 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 306 0 obj << /Length 939 /Filter /FlateDecode >> stream xÚÍW]OÛ0}ϯÈc+-ƾ¶ci/0Ø„„Ķj/€ªÒºP©$¬Iùø÷»‰ã6 -MJBi>||Ï9÷^ÛG½ààâÐã¥7 ÜaotÙ1„A7I;?ìÃùñááw›œ¿“m±‡èwQþ¿»½ÐŸ­.cÄH e´ÜªŒ#! • K¤‹²ÓÜs[ažÛû[Åz:O†`V!Òz¹TÕRÈ cÖ,—›4® 4‰¬ÉâóÌæý›AÃ0Ù¥Ø:.ŠÎáù•@(C½Z Ñ<6Ò¥|Ít‚Íül_*|;Êæ··6Cæõ ¾ŽÓÌn°#b@Ñl/+ùƒ<b~W‘@À%£h1/:çuü|RÌ3?îÅ]KÄR€…2 '–A1-H¬±aU4ÉšÀ5füŒñ%¿FN3I¤PfSR—¶:ñÞðîrö?Ëíó:ë8'Š+¾ƒuŸaf,U Vki/Ö!Æ*þo:§ ÖŽ’í½Ù9JhØä\¹§“Š‚[zïÓâ¡[£ß]ˆRI…há¦wüa£E¢¨.Ѩ®½Õ `{äÀ?£n˜¢ ˜OWK)IN˜rñ7ŠÏ±ô™h¬5ûÊ|,FÍ`{æóí™Ï„ÂE…óvÚìÔæ¶?˜NûNú"SlÖr%–«©éÀÜXDt?V®Â¦]§Ä«èõÊï&ÕÖIò6K·*§>MИ+3oÈ1,7á¯u両©+½×>R}‚Ë j ÔZäZ*Ô3q·óŽØçæ&õ;Ý´AÞy|}ä+7öpA¨á¦Ä+OFöû¬vn¾Á¬Ù°–´hìÝÞã–³F´ýöx»nÛ7ÂIšD{ŽíÍŒlœT5jŽ››Tk@þœã‘”kîf›^ì µÈ÷–´:Çôº:óJг¢»Ì«7Ò]˜<”ôP(wÔÞÇE¯ò-¾<ɯ6­oéóË­M<ýŒ©‘endstream endobj 305 0 obj << /Type /Page /Contents 306 0 R /Resources 304 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 304 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 309 0 obj << /Length 2085 /Filter /FlateDecode >> stream xÚåY[oãD~ϯˆx@‰´™û%ÚîBW¬µÀ‹*¯ã&Žbg»ý÷œ¹Ø±³“4+¢}ˆíŸùæ\¿3¾¸½|MåØ #áçö~lðXI‚%t|»øm¢ñtFµÔtò]¶y{ 7O.‹¤®ýåU•îÖYÙ$M^•Óßoߌ^ÝŽÈÃ?q„B‚I2N×£?G¿ýŽÇ‹¿aÄŒã¸ÁˆCÇ맬½)F7£Ÿ:934ëKº°¸9kÀ-¹ÅM¨AX=Vpa”ŸVeÝxœ¦DL²m“}ô÷y“m“¦ÚZÈ*˜QŠ$'."Tp'ë¥b:OÒýîA*öRï†Ø:y„#"´qòʪœ=!ÈA@ö:ãqf¤h+"ÓÁ€ñ*k’¼ÈÁHYnóMk"‡{ûÝRŽ7Äɹ]e¥…Œ¦&Û9ßfå+¿÷²‰Häa‚U˜ü ¼ALª‰pG<ªžóðÛÀÚ~¬Ú†«ê>†`Ì[8Þ5?ÅÁ$Ò˜ÄpP‡E­²±1Ö\ IÊù~‰ùü‰k„ÀæÔƱ±n Ö)k——÷ÕvíãÇ=HÞW;ë°Ê2+­8;ÂÈ&Ù6yZdu 8%qaÔ™&âHb®Ÿ@šŒu³Ý¥Ín @@8 —HauÔº%HI‚ÿSgMgÂçif>¬òtÕZÜ)åÀNîx†‘1’Y“!A¤ƒW“õ^˜;¤D#…m¤cqzÏü”»‹]^,:%½ÞN‰žTë›4ž®Pš¾…fºùÝÔ›¬ÈRk°È¤·?>6«<ù¡,gjévjè¤rþä_7Bwoÿ\çåò:Ä~ÝŽï¥ÿB £—à/¼KAu‡ÆŠ{‡1­^î!!Á¥·ùÒÚÄ¿ÈùäE¿—cã~ô¦qšË’õõ‡3›¬nü:—Õ&ÏüŽ"JÙÏö2{³gTš‰y]Tv¯S…'툞ø¼2Q^öæ»§^—^9Ãá·}Ú‡DnÊ®hrØh‡&H°j¡n󲹨õT輿\ì§èÞG‘`´™F&\éá"¤œ«Ìj¥ÌCf°¢C@yâƒ1Œ1ûJC ÖeÑ ÅJ lš1Ä5$뮆ÐPC.mu²qUÈÉû²«&ƒÇŸP€ƒ0íê í­ÑUªHb=H³3F°ËPy›É ºöj‘¯1 ©¬Î—eRÜm¶d™ú._D) uX‘ðÆ×~†è …´¡° pD„’¡Ú Ö婘ÄñArâ‚´ð²Ö wåný>‹ó)ÁB Ã5Ó<¡àÖ#BqLýĤ÷Gš˜}YÀ,²# µ—Ê¡¾{ü%ȃꤾ ü=s7>1Æ'¿N%,Ÿ/WÍ¥¯# Y`ೱŀÑσs4ûnµ†‚2£„¦‡¨5¥´Õ]Ý,æó.S=“ÞT°°Œ‡¹_E„†…âæg,ªÝû"‹âiÎZWþ&"R ×}äÊ{„S…ÝíU ¤¿U±aCNWG6¥`)à¼ÃM®A mí\Tå2"†Â–,·l)"¦ÕtÌÄ`5Ȥú€Õ¶œ«u ©*‹ÙZhDxGrã&>Éžabq¶‰ià ­•yÊÀú\“~ ÉÉÏP_êùüme3ønmo=ųi•2ÂÏHBˆbÖúM·Èî(žwë ÷nÏOaSADо÷áVØ÷Y¹lV`fQ3¢5´‡PÇ?€S8IO‚‘ 1Eù^¥$V´Ûª-‡í,ecÄ.he¡¶^2É&é6sþçFË]Qø«Mõˆœ¿kª¨–¢‹öï²d eçÃãu´¯Н—ŠÑe7õ"²ƒ iíðãâþº¼·‹Tñö ¢!ÖC@ô @«êQ$Ø IÔ]†Êté x]ßxrÓ9è'‡ì±×¾Ö^ŽÑ¹Ž…ƶm3ÓCfSY«– û}S½}\+ÒÙÇ‘»¸}€7%δ„¿'ì³ç“ía„U—ÖŸ°8‚Ñ'ìš:lX€õ ß²j²¹/²צà¤ìŠI±síÜß;}ÂÅú.s;o¹N&E渷€±¤Ø¬’Ÿ.¯^´“ýƒWWöžM×úÃ@ÄÖ»å8§ë‚áÖ5‰ð»Ê6³Íê%&Àþ¤Ž’ø/¾µ tžzM^[ûù-¤B苘—œÃº)=“tãbF€të!¦Ï ÄT>AˆùsØ0CXê?Áe•éŽÎà²PQéˆÝ‹ÖÑ g§OrS¼StÁu„›*¤ŸÅL9’œóýÞ©1ݱ¡6q^iâ¼RCz&ì,^É€Ub&®|Ý‚mÏJÓ-ˆZètˆÖðã´KJ,NÓ.Â:*×’]¢yŠlAVÂLõÜÎÖÆÀ79fO÷$¶¢Vö´·Eo@gQst~î<º ÐBºf³¸?²ŒÆtèëÀS‘áZDiÉ€uAö QjC°F’‘Ïΰìz†u x%èZhýo3¬ÌôÇM‘§ys¤ž7«6i7É.†ê¨?·fæ«ÖúóUëOšTHŽBQ:¬ÝŸå˜~Ýi0|˜ž&•­6vÒã©3{ÛuIÿ‹ê¶qÌlz$C²ðÿ!GçIž}"ÈÑÁC#Œýýï…=Aá3§„ZÁ´³:e`v(Õ jW² —îk‹k ü¯;°ß…¼±èwaD´‡°sç\rˆI ‡ÞçBJê}>}ÿØœ~|\fÝWÓ¿3‹£endstream endobj 308 0 obj << /Type /Page /Contents 309 0 R /Resources 307 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 294 0 R >> endobj 307 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 312 0 obj << /Length 1811 /Filter /FlateDecode >> stream xÚíY[oÛ6~÷¯ðú0Ø@Ìð.ÊØöФ[[¬@»eÛC[ŠÍÄÂdɵä¤ù÷;IY²©Øí:l† %’çð\x¾ôÓ«ÁùTcKx\Ý c<Œ$A‚:¼Z¼ňÐñ„ ëDÒr·ˆ»kÿYƒjõ»K(EºFuu@i"M̳"¿ ˆ™0‚ u&~I-ÓöÅQ{/† #" 7b“ä‹bUVI¥ËpÊBŠñG#LdÌþ‘÷8ê®j¢×ÞèÔðÒÝ@?·]† )8´ÀÖÈUü: 6ÛÚÒ£6úÃ6ݤ°âúukª·mNì#É2ÛÐY©m+u#úÆ$Q²Íì>ø!’ ‹Eq[—yuº˜ªu™/µ.Ó°ºLËè2϶®úÃÕ2u“ôyöÐ,ÆTŒî”|ë5¬ (õzãDTE¨L(‚"Öì£ç:1¢î^yÈáÍðN²›8®¬ŒFDð:ZÖ¯yÖF€j>K^/n^ä7FkÐÈ8 R§xE”RŸÃ‰â¶øvb“•ž‚íŒw=K%Ý…I¶Õ¥}¿©s«™®=àᯜ'™6åêôj–dëeòæâò̶ž]šw6J6Úv$Nl¹½½Õe¥ö5Íís©×“õòc©ÎšÄjÃÀA½IçÖ‘/L­ szÒÍEVO¹Ô€†.-rçÇ×2ÀÛRÊ>‹û432×çXPm7šÏQ t Qì3ÑáVükäV aÙÅÒÏŒ‰ÕéÌHWîÚ•}œ×PÃYå1bÑŸBl8’¼A ·–'I!A|2») 8Ññ÷&‚¡F3ÙƒÔêD¤Þ!]/R7„¯œ0RLÊ.:="¦¡•äôD„æÆYQ¯åjÛÏú8â@”´)̲ Î4îÕ³Wb …MÕ-ãÇÉzqÓ£\ácX-%âPïºP­Mê~\géóùQ÷)Ø„¤ÉücîãHˆˆ>æ>£ºÇ}IEOóÐVŒùãÞÛ¯GáÝ®ìÀSÀ¨w„†D¢¸¸„ŠßÙO«Æ–Qúäµl-÷ù¾6ƒX>\p þˆÿ:—BÕåTýOÍŽR3Bé—áf¬ÍÍÄ'p³Z§À ràÑá€HPI$6‹üRË„#bÄšcwïÉ.ÖÀà¸éàÂÖë½m8“Fµ{{Û2éه݃¡çX)0ÊoBJOаŸáý4ª/[ÍE+¬]p9J‹û«±À©aHJF×:YÍÖ‰Yw¦ËNg­ñµ™äºÝËS ÙÉtÃ×þéÅÍ®ëþÛ4ßÓº1 í/Z˜bŽGÍ,‘Úë+u5ë5Ã8&`ïDÐë³z¼\úQ6W  æMÐ_ƒºÞñµÚR!˱}÷é4ùXEƒC]}ï6) ]xv®êÂ¥d·½;·@#›ÕÛ»tSm“ì}°`àä|Ç}!ÈtÕìàÐ&=oÒÅ¡oîÉ¢¿Ù±`R…7³© Œ)PÔÐ)!Fp"â;íf„½ÏFŸvÓg´›g­=P Ð ‰åéœDEªŸ“¸•·Y-µ[mYó41°ºtƒ¶’Ñg^ÑÿæeÐé g¥Ï­Ïü >ÛËC`"»CºÉŽÎÞû•L™#(cÿG²– ÿ™¿0å#Ìæà%—pz“X.dÌwºÇt´uö¿4l]ð€6xÊ#ç>ì8´Ü´~E´Ík¯—ÅLJ[{óÿ2J9¢endstream endobj 311 0 obj << /Type /Page /Contents 312 0 R /Resources 310 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 310 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 316 0 obj << /Length 1742 /Filter /FlateDecode >> stream xÚÕXKsÛ8 ¾ûWxO+ÏÔ,zúÖ$NÚΤMSO÷Ðv<ŒDÇÜÊ”«G“üû²%WN“î^vt ‚~Až,F/Ïi8NPB³X<ŽB‚Jèx‘}öb:™Ò8Œ©÷Zl/O¡`ï4çUeÏŠ´ÙUóZjòuñv4_ŒÈÃGŒ° B É8ÝŒ¾>Åãl„ÇoG±$ÆwÐÁˆ$ oF>em'}}ØÉ™‚ iWÒ‰³›”m §°ŽÈÚ B›L ÆØ»›QZƒÏ•[‡Í?p襔©ˆ8¹7E‘[9Æ9³Ù…Pó‚=9›ñ,[Ú^Y‹{Ëø¸>¹¥­Äïh¥üˆE ^ký‚1³\>ípEÀCËú~Àz0–D>݉ ˆc¦)|DÀëý¥‚ñn‹ë¶bBPd;\eî'+¶u¥åjg‘…Ô÷„RÔM©´„xuÙý‡=¹²”ªISQU«&·ô©%ß %Jžç–z'óܪ¥YÁ–ºÒþåyu ¼^ û#U¥½œÙaØÀx]·÷Ž£²c󥲎ƒ²õ»ž#¡C.Õû‰ËÈ<ëÌéåq ¬JÞ*žkçèÌ|Ä3hø˜d °wLRwLfEsÓððA™o×üÃéÙþˆ4g•饅ªj«2 ½3IÙnŸ¥Ò)äëàײö¸¾´h¶0÷öEëgêZl§ÛõKLp‚Ãx0Õ<%Ÿ… ~b>[?žÎtìâÄÆ.´Î“i±Ñùà,Èâ[Á{4æÝ•²| ÉÒWU*å•ËËZ¦ú¸š™©Ëé/Âçã…=/ógã…Åä©x1¬}¼ÌŸ…—߇ ýM¸°ÿ\èßÁÖreª@«s žNúøçrº§¤[N¢Š]yé‚aYú¶úv ¿ ”é´cmº RNA€ÌGq˜t‹õGÍBäûqò<³0A~à®pî mãÊ¡~ÙïÆ¶÷âzÎÓ5p…¡ÞMŽŒ ÔÊ»;Œ¼¢´ÃŸuÍ+Kæ¶ïÔ›ú”xwkÙJ5%:0ü r›ª¶®Ü ²ªnÍ :%¿7ÂÜ`@f°RÇ“pŠ¥“·iÖ 4{ubžCéÎì9Â@ûk q7™2†½ºå¶)”£k—ö¾ÝB&…HõÊŽì=eø ¦,œÐ,+át­†?Ïp¾¬ræíø~ºÄØ`¬øÆm<Ø”KáÊ‚UáîÍm1 ¡4¨3-Æw±vøŽçëš\-·Ígб(€Ÿwïm{9õîÍ» 7ÃÔ'q¸}}6¿þÃþŸk›ŒÐ©[Ý ÜøþÔÕ™“›î.Az'¥Îb‰HÑî¶jlûË=7[‹‰)¥ìŸ¾2L½’[W¶…„¸õºp|«²ØXΖAªÌ‰ÖçØr©®ÿ4¼rùÍäK1KÔ\ñhˆÑ7…“x“é7—£DbmØ›ºWjèæ~=‡rÛL°ùa‡ŒzÝžb-±Ñ=€‡;ŒêžrdžÛ;©Nénp[Tpjî7ÇrvB¿BzK‡ÀãÂÓuQ™M׊ ¶`j_GiêbÃÁD÷$‡lÁ‹ÃÃ7„Œ´ŽéŸÚŸîE¥=(|[èÅÝ)XÉZnûWݘœûcǤ î’Ž*«ÝÑQàe©‘·‹éƒ¼#Fû÷ïwAíó]ˆ’ˆÅæ0£ Å a㈠âG¡ñã…y ª[óÛši1I¨×8·½Õæ7n$° fžù‘íQL\EµÒëm7§óœ©K$ûxÿp+v¯˜ÿébŒ>endstream endobj 315 0 obj << /Type /Page /Contents 316 0 R /Resources 314 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 314 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 319 0 obj << /Length 1807 /Filter /FlateDecode >> stream xÚíX[oÛ6~÷¯ðž&3KRwc°´n—m²ÖíK[ŠMÇ\uq%ºNþýÎáE–%M1¬ØÃ Ésã÷ùl1zòœG㔤<›qJÇqÄHÈ/Ö¼”0>™òzˆÝ«§³Ù QοNõD©ÌÄÓ-^Žæ‹SøcÚH“ÐØxUŒ¾Œ>|¢ãõˆŽ_Ž(ñÓ$`@ KS>.F÷Ý ½ýÙꙂ¢iWәއžÄÃa›p.s‘5èYze¥ô[à©m¦ŒLm­è*«WÕZ4FœÕv,•(×bmmªú(®Ë,7â½³pj+KŒþ$Ë<‚8i‚q W:µvY×y?"IGvÕGÒ™LY{<„3æ2礵^Ê/{çîNI~¤” ë)º †ÆSžÆ„…a<ž2FÒ04ù1ñ§‰·Ëj%W¹N@{Y¹6r8úÐ8'ð%¹÷®‘åµ™m·Ûô™Íª2BE+¨çFÕ™™’%8VdJV¥™—™ÈJû¼špj3 ÓÕ¦g0îL¼u¦2%íGWˆâÊ$‚Úˆàe•V‹ßUUnöqוŽ,Ô–kØ)IÄ_+}&0¿¥TÇm–¹,…y‹Óļh¿á‰[r;i"£È– À,úœPŸ-'‰OB€¥zÿ{ $Åc7f; z >£I #ê؈Iéà±OõÙ 2ŒÌÆ,/Uµ4Ú¢(¤@£9àÍ,IH[Õ å)žÓ]ü€$QzÄ:k¤±ZCÞçF$nýYb¶? hêCHcˆêñƒ”éP³äµ;0ó8b´Ç9‡{ƒÛ>̩̳ÕÖF® pí„Y˜£0[›iG-#Ýjú‚83cëÄ/0Š™wØJ§U3üµo@±2Mœ,g×Þ0ÑÙh B~k&:%Á–V—,©£™áU„<å¡çÐÙçk«’$jAˆYÛ ,•¾Oµ¿øÌÌ£*­ÛÙn§+ˆÏSïJ¨ƒ¥™9fJ¯EUßZ¥ëu-Í[=D2ßÝáŠ8!Ö½vÆ7P š¬°Ç>åRØaë<íU?„(ÂBç.Á´Aî²|o‡šû‰©Óð8¢ ðòúÂ<_Í}þú…Ý¡kUµ³ožÍßüdÞŸ£OÚÁÄÝ_ð‚õêç |«h4 \¥Äû!–€L·1cžßà¿ì¶1²Ò°|‡¥äñ˜ÌÎNÀ»#3X¼ßÆj[5úøÑžFÌ6BYÉ^Ux)¯²\—Y´ #¸§0vÐâRÔ©{º®îÖÝÃiÔ'Y®0¸C ‘lå®wf¶j÷az¼„t1‚ ϶ÐT"{•¨ n ËjY> ï^vÿ·:Hþùƒ:HöotÁ£;È„ûßÕAžÚÐ_fXõ­ÏW·½¯:`#œ—hË“½à¨-£½p±ê»¹»U¿Û­F¶[mÔz6Ûe²¶*ëö ) 8shýu@7œE-Ü>õRWI[_:àšEÆî€’&Ì·k è€ÒÇ[`P¼ºc¢`B¢¨eão>@‚Søøæ}N ÷ã"+–]’Ùú÷íÖ™!qi?¢wæ>I¦ýÞY_»J°¦ß;·Õ\é[¬ruÐ&-0ŒþýÐ å…’4|íFŒûºã¾ÉЬŸiÀ³„Ä4Åj”vª‘hÔ+hõÉjEdI†B–ÄÌ@uD¢ØOOÉ ø”<ƒü\¢"—Zj£úyçæêÎw9™ÚÕòެeù¡–J|?ÍcKsÓJ®ïýí„›´>ÁíÝó¡}è‰b§¤ƒ{‹/¼£j1Ô 但ïœn[' ;Ï8»×vxºcí[»Ûx¬E.”s«UֽꞜPÕup¿7]µêAôs’òˆý¬E¿Ný9DÇdxpzÖ¸î­2?ÜeÅùţ؂Ÿë{4[ü(|$[Àøƒtt±4u˜zf›Ùl-6º@ïsµÌEy­¶Khczè¦í) -Õ¾Ú¥ó„&Í)/§CúòäóÞÛD~ƒúðÑÔÍÈl¦s•/KÛó,O[ÕÇÝÓ'?Á&ø³ïÿó_`;ŠÎìÊIc?q?À2° ÅÈ!.„¢ Üáe1I¹··hx‰ííŒE g!±qê~•Þ`&܆é‚{}VÝÜ^‹Ò…ÿ7s¡endstream endobj 318 0 obj << /Type /Page /Contents 319 0 R /Resources 317 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 317 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 322 0 obj << /Length 1310 /Filter /FlateDecode >> stream xÚµX[oÛ6~÷¯0ú0È@Ãð"Š’›¤Ý‚eÝw/i`¨2 °%O¤›äßïð&K¶Ø[‡ Ð!yx®ýa6:ÿH“q†²>³‡q†Ç"!ˆSBdzÅ]”Æ“3š&)~–›› p]¬r¥yYÛµ¬t®ËºšÜÏ®GW³cø#Vˆ³„Œ‹õèïÑÝ=/Fx|=ˆe)?Á#’et¼Å”…Ájt;ú£•s‚κ’> ÚMa(œÙ"1”NÎÆ8ú$«‹fBÒ¨VêVÁÖó$îÈ D …FÆWŒ™ãêi(%ŽÅÆd:ñWß'Gˆé´šæÊ«²‘úŠ9†âDrÚUœ0Ç„y©weµ*+yï•ã'ä"E …Ð%\»áR‚­´*wÊrí¾FŽ£À1GÔÁLW~Ñ;Àh‰¼†0†‹Y7¾Ùñµ‚‹ºRz(Ô1lgœüϡ޷¡u%NÒ䈨3&P a·ò¢á襰œäY¼ ž.ÁKކ㠂('"¤ç“ÎÁÚÆ KŸÓÒ§]š\>—J««ÎIÍ o”žXUWÏùz³’jj¶@pà(dà0œ“&ZŸKÇ8ÿýE/ËüV[Ÿd¾þå3*Š÷ÕÂF*mSk¨¬ÐPtͱ#̘Ø&ŒŸ€éø$Lƒ2pÝ¡øOù YÒûíÅ}™/Zï¬gQûî=5¥–ó¢é@0°ŠöÇÈ».½ìAÄ/\Xä| ¡Q;¸+½˜N•nÊêÑMþäM=\Ø¡^p¿¦( á&Yl¡ ‹¼F3·UVœ!håXObÍ œ3ro‚ÂÚÜM  $ŸìÀÜæpS«Ê¹ÎûX‰Æ#œÛ#ñ‡aHI HÕƒÀùéôâæýÐô§«¿&„fÑàâM±uzëæ´’C´ v$ZElÑú¥šÈiö2†Sy›~•Õ£^šð¾rqÆ1Jy?±oòvÃÔC·Dçpy¨Ûª Põ³š† дÕÀBÓP-4}±îCÓî ÐìçeŒû#¸V˜õ‚Å8;¶~ŸVŒDEš þ4I~|ƒAè)¥q%¡ç«ÕÜM6ºlOÒÝå %Œ†+÷nÓÔJ¹\ 7`»Û 8Õ>2!ß;#ê åÑSµÝèLÒ0„8 §¸Y&œ&h£÷4™¥²r_‹hCKlÁG|u;;}„á2Q*‘„†Cpä‹ùi×Ã`WîûäùBºz›»ùýkmè¬Uèf[èºñâ†Øê€¾tTšJ2pšÒ7r­èßÞA1tÒ?ôjMšËõF¿¼Ö uÃ×ç<©õEy3 cà SD8ÛuÊ µÓHÄ©ØuàWL¾Ú¦Av8Ê0¥Ã5‰ùšTVúrd±†s¸:¾…ný¸ç å1ÓSxÆþû+½#(<Ò°¥ÆPFáIžÁ;WDb‘„¤È&×Ù³IF£­ÇíµñbëW|Eø”ãiì_µ›«ÂPÆíºéd¦°ËúùåQ¶¿Uüòolxendstream endobj 321 0 obj << /Type /Page /Contents 322 0 R /Resources 320 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 320 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 325 0 obj << /Length 1427 /Filter /FlateDecode >> stream xÚµXYsÛ6~ׯà#5SÂA\zËáÔÎÔIZ«yq2š‚-N%R©Äú÷]¤H‰•å´°ØóÛÅ‚¯§£‹w1R†éC p 8A,&q0ß… ‘xÅ ‡Wz}óf2ùU—߯‡º¨ÝÆ›eZUîçúAoÆDÂf¦a)Á %¾]NG$ÀðG¬&£œÙjô÷èî+æ#¼aD•dÁw˜`D”ŠƒÕ(‰i3YŽnG¿·|"`u9½>²G*„1 akÔåSºZ/u51ŠD"•"ÇsvkG2km½ÕKÕyY ,ûe1ÎÂ/ÇåECy³û´«yÚìs¿_몾қïùã›rëêð¼Ùw'#«˜DˆQ„XEº‡b®BÇBK(/W¯k½I½š~[`»}Q::s³]Ö9hßJ±Û=5œ?ÒbîBlNÝÖ.Èéêú£;ƒÌp=î¸>" B“T@Rf½ÕÆì"7::Ž©ÇÑ2/´ûÅ¥Ç\ùàFsdé7=™ Z VYxœ¸øZ) ïwfŒgåjnt—ÑÌ0üãÊÂUšKp¢Î³¥žŽ%wk]îoò6<\ìØÐÎŽùu÷få¶svÀýß7y­»ö yýqvuùéòót k“‰¥œéqÌÂ!㌿›P²<ÿdȽ•ÕIFM´»‰ ÓqêSÌÔ DIÆÁ‡ór{ßDp ’L&ÚÈh¦³*KêF¨›eeQÕN<¸f/>fIFMe0âïòÂÀéë,[R¨O(¡œº„/\åzÜ9AVï±J{]z­˜`…¹‚Þyð–?ozo†•…·Ï‚7ÉV™ G3t)Î'‘ áöåða=ø0Ÿ+ZN»kp«=M’î­E ¸Ë&øàN: B DÄžd‚‹FȬ ^ ¾cĆgŠŸƒ¸D¡Ø^1]ĨŸ/‚Êy^åC^=L¯žƒ apI2ö=|2½‰`(–â_+‰ž°¾¯Ó,ÓM“R/ô€îIŒ˜R¢Õþo=) E‚u¼ÁðO¹ KzÖÔp“@a±ÓÜÇ0÷a¶%ï)¯êʦN$9¢&qzÉ~Jðÿw_‘û]¯P?s_v¯”^y"…Gä}Y.O\y5³“t™ÏŸO/^¸†l¡³¿”‹dDRÖ^§;€1ÌøsAÇ>”÷ã›Á“Ñ;¯wÁÖWHðÉK4ÏhWn\otµ]ÙƒðVOôàÇÚ‹´rtMÛã™@ /ö,˜m肉âHaÑGð 4o“íy3%åê„™¦·3fÆ”v̈́Վ™fÓf !®ÝÜ™ ÷e½pKÐ%—YžÖ ‡ŽìváYõ­ ï ?”îð²)o€•mȇX‚hÂyÿ–Ì}er¸4Ž˜åN„‘‚߀e‚„¢ç>eúÏ÷Ô8èàÓøÅM¾)·pCHIÎï‚„8³hð“UË{¯ÔL¯ÖõîßJT7p}Ê©ÐuuL¬ËYáŠ{}^'¾Ñé¼ Œõø´ÚÒ×Ð?ÁïЕý¦‹Çza&' êÒͶ-Õy×1Å %2N†ïãf[Ò^¶:À @D$‹r=!{µ¶Õa4†ïtÁVd_e>ƒÝØÄ^? Õ?ÕPA'±Ü _—UÞäó<ï\LšJõÎD¾Ün¼Ô¬†Ây,BŒ©²˜“=(áÁ.–L½üµîü)ÍÁГ´ßXXU=$|’QBéÿÔaÔ|‚›HPÙ|Ó"ð¼‚ùFÒØÓxn:Vq¸õ~yo|²õ;Ì „Mž$¾jŸù0ö`ã¼édYßQo˧ݣ.óÿ…ë Ÿendstream endobj 324 0 obj << /Type /Page /Contents 325 0 R /Resources 323 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 323 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 328 0 obj << /Length 1007 /Filter /FlateDecode >> stream xÚ­W[oÛ6~ׯÐÓ`Ë‹H‰öÒ\¶(Ðu^_Ò °&f]fIKóïwx“%W3·“Òá¹|ßÇCêý:xwME(‘ð³~ %A§„†ë‡ÛE*–MEJ¿©úÃL8^\ì6Mc‡—UÖªl7m^•Ë»õMpµHˆág ^]5ÞM¡XŒ8ÇéPÎ;9çåIùÖù[DK F1XM‹vHIÔ›ŽD[vÅVíÇXÝ®uYÔ ,Ï$®ö›LÓÒŒ1¦m·/›ƒxÍàÜîÉ‘7¥å×s»Œà¶~Λocùg‘C0w±}Sè×TîA£ÚI©Ì‘£0­ö9Æ'åè$’UआŽNjô u§Î¡­ÇŸN¨µª0h¿4k•:,|äË$ú.¥°9ú–˜ú'²‡c"a顯)¥3¨\ÆI¯tËc±ùÛäâ³?JÕ~‡Õúõë=[åKª>3åõYÔ;5:B—ÎQs›Y–îf.­æÅ õ,È‘¨ÓÁ…¦qHàðœù´)ŸÔ YÔÎî~0üß~6â9óŽì"ëíL9‰±)©ñÏÛ3lbÏü0˜ÎÅæø®7),M`“KKöÕ×n³2`’%XÂe†À2Îí%¬É›¤×=Y«±ÉK4µá€‹„0Až¤oPþ'%v¤ôàæ­íQ3ˆhî·êÉŸ9c&Ƨ®¤ˆ 1çÐu–#æ¶Jïç>ИÈÜã}®Ð¹ào:‹æÁÊa5;øûÁ=}%cĉgÝ›Žn7ó‘>úôIá‡0öý_>GþÃGÀ—œaæèc(•„… A$N„¿Óë¼üUÀ½^Jºè\ê7º¬Î½qt¾âx'ngaBíèÑÜØ‡ ï—Õ××'Õƒð_æ²ìendstream endobj 327 0 obj << /Type /Page /Contents 328 0 R /Resources 326 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 313 0 R >> endobj 326 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 331 0 obj << /Length 1168 /Filter /FlateDecode >> stream xÚÅXÝo£8Ï_Á#‘.^`À¼œn³½½Vª®·›½‡ëV!nk‰@è¶¹¿þƳ’”t+­¢È†ÏŒçË?ó~1y÷;õ„ÃâÖØ |‚8%ÔY¬¯]Î(Çîr{9¢2;û6%Ø•Yeó4.K3ý$oe1%! ¯<ìùnLo“³Å„8~¤VÂÄ™Oœd3ùwr}ƒõ;Œ˜¹ó!¨³™x”Ù‡tòyòW+g‚f]IïŸí'c8cØ«7uöo¶©,#m˜CB`83Ë87û–†eÙîõ³LeR©èµ#2¡Vd’o¶q!»ÒÊ=ÎÚ'X­êÔôl}¥þ‘E¾·´kði?3鼜 åàÇ<_·R¢(ßš·‹»¾âéñÛ”}aƒuí-àE=ÛÆ[‹iˆÝݶëµ`r«â dcÙ“£‹‚çSµ^®d¼Yn‚Pç®.—N <ÿsù[™(Õ \=ª’K©eîûÝVN·3• ­ÇyÛhCÔ‡„ÅÐ,Vyžl¼QÔÚº”›mµ³dÔ™§$ÏÊÊ(O|WLýqì`V|­2]”7CÅݲB) æ Ò8´z(šº®Š‡¦dUSÆÕ=”eã8;Ér3Z«ÍÓ*.’|-Ë¡êÓABÆ^ÙAسRÛÓ¸q ­"§éÒHÐFÎ U.ÛDzEÀƒ&àÖ7KÕ$ã¢o­hc?ðÐC!ádLÀ-k/à­’~üŒ¡:@¯ ÷ÅI<äP¯çÐpß¡u!ü¨[–c>â>æ#<ܲ6¦£=¼·ûFBø äP„á :ˆlB‹lÈÏG6ôTd£OnùÆÈ†œ‚l¸E6l|ZòfȆ²Ðô%À†)q{¸…´ Hgì Ð’¯·¸[ƒ®/ŒÃé~ ÃXú†Ñ¤F“ö0 ¯aÄh¸2”¯/> N/šÿx©éÃpES¾Ã•AÐù31L¿‹¦+{E|¡Û–ê?y‚á‚9ÏÎÞqvŸëý=›8ÓÝ(õS æŸTYýú&ÝØ­Û¦NíHô¤„ßî®×hs×Ò“qWB~4ñ C¡ze^¿4½£Êfî`g:1÷>J„1ÂØ“貟$|$ÚO,/ðÍKfº_Xjƒ¸˜ êZl}¡h(Ü „GG^s‰¦Ø~§¹Õ»íÁœ>ºý?íîdf·ÿ?ÇÇâ0endstream endobj 330 0 obj << /Type /Page /Contents 331 0 R /Resources 329 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 332 0 R >> endobj 329 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 335 0 obj << /Length 1650 /Filter /FlateDecode >> stream xÚµXYÛ6~÷¯0òÚ@ÌðÐA¹нrAs,Ú‡$0´2½&*K®Žz·¿¾ÃËeíÖ›¶X,Lr†3ÙofH]^^Ñhœ $‚ŸëÕ8Áã8"(¤„ޝ—Ÿ'œOg”GœN^‹í»s˜„xrž§um†eÖnDѤ,‹é×ë·£Ëëcø#ZX£EdœmFŒ>Åãåߎ0b Ç;˜`D’„Ž7£€27ÉGŸFörf hÖ•t6h7…ilÌN¡ˆ!†§3‚1ž¼_®Þ«) '¥2òå :›9E”P®÷~Á˜&OCŒnX´/æóW¢¸üsJð0Ÿo—«…tJ´s¾àÃ?1ÒBÚ‘F†‚( ­ÀϲÈe!¾Z½¸Ã9£Œ!&F!b ÔŽ vÒBj¿kmic~• 3ŠIbåÊ„in‰ÖøPÖhàÄàt#j:—’—jYYÔÍ€w Žxüÿ¹·¯Þ÷tÄN?ÅÓ„€¡ïé4Ë„ƒ{³¶…IY GXó”°ñ„ó½3B¼EàÑ(žPJ½Ó4)ØY™©´”6ÆBîNÖM­T@r€ûŒg$F ‚'@$zD(Œ¦u|+Q‰"K³åæÞüÚfåf›V¢+ÈEí…5©°;w•l„#> Gâá‘Zºµµ˜OgŒ0_$ÒñrøÞì6™@'÷ek6ïTxÓ¾M¾ÁäØ`mŒsAIRW£öIVš)jî,x¬nŽ6·€sgÀ&®å <°ÇÔ^†:Ì3Oâ³ýÙðC§ïÉØ¶#g†„Ó8Hh`ppy—n¶¹¨çú°„£«~Bud“N°,ÎZ™/÷9s¥s£Ü|ʪ´ÉÖ(ËTÚÒ(Üóÿ œÀš5eue&°‰(ªªÎž?Ò.-_º]ïîgC~-ª¼U0;BìÆFÔ¡ž—[)ê!úû{uêÓ!Â@¹ÊKeÔnãŽd#ê,!Y¼²Hñ¼kóF‚Õ{ÉšÙ¯^Z¿ ØYëìGCy )¦:LŒ¸^<±PÓ8>±P[͇üJ­’îsi¾]§Î/ºõ8!vùÒ_îÖS8øNTéAóùMZeåRô6ÜøPû™ðzJ< /Švs#ªË@ü u–æ]}$ò^Õ¢–õ‰Öúߦ)o×͹k¯¶)xülRËÛ"ÍÛªT­!—=y=zË&¡ŒµÎMqYH7žªLG±»Ñÿ0rŒ(KË‘—Å퀊AŒƒÅOÿ(åù#`® ïÊÍ¢†—¶óÒiïŠCï÷è„÷‹%ÄG’‰v”cÈ-]Ún!4Þ›E‚+,Ǫ¬6i97öʇÝЩÏ凇ŀ1‚$T¡~}#´–ÝZfkC¬·"“«{3Ñ ÕÀ)Țó˜õ[Õ7 ßMÃpR[Ú"=\9Ýæ>Iúm ™Öö¦±–Yž\¬ìŠÊ4Ï’½ÆÁ‹‡Î˪äïj©[¦Y6Qˆ´1 ™1<1ÍÄ…¹‰I—çñ$5ü~4r>ËÍ'­k%&½­ Ý™qc E–·KSÊãÉN6k³žš…ªµê2÷‰(rÑüºh«;óP»qáòð±éQ{=ôج,-'=‚iüàÇm‡ã§>‚y> endobj 333 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 338 0 obj << /Length 1533 /Filter /FlateDecode >> stream xÚ­XË’›FÝë+X¥PUÔî' ,¼ð#W%žÄªllÅˆÖ  hÙ£¿Ïí $kœÔ,5·ïãôáž ¯–³?Ñ(HPÁ¿å:Hp #‚%4XÃ:_PÃ_Ôî·×iú³ªÞ~™ªJ»¯7yÛºË?ÕZ5sÃÍ•‚%ŽyÆÉüóòÝìírF Ä ‘`µý3ûøÅ ïf±$ÁWøIlgœ²îÇföaöÇÑÏ-úž^MÖCá§<•ƒbb¾ ã°ÕEš–­vIç[WÆ+NSoY8“OXà >à1… Œ’$bÀhI›ÈÛ§|»Û¨6µ&$F'q° ª.×OÓú…r†ÙÝA?–ù‡c”_ߣÕêG+¯|:Zµzd‚Ê ™€ îá² IÂD°`6«Ø†|£LЪÔe]y×þ7e¥ÜÂ]ÔëL7þ¦ÇJ¬ ‘c¶Jl£F”sÌ’ÅÈÉ>ÜÍ !¡j´2®žÒ4/Šl—7º\eeP7ðBùRŠÐÜuA»#ƒû¼YÕ…Êt}ݼçÍh ²Z³'ætˆÍÞ¤êœè¼]•%˜Ë®ŠBé¼Ü¤©Å³ÈÔœŠ°&SUÑ‹Ûân›Ç¬Z×i:'¡;öQ™¹lZ=ô4áe”,=&û *S’ á9Âþ†OâA鬵‰ÖëºÈɨŸécÞfÛ'Äx;\Û0™žóRÖÙ¶ÞBUûm¶ö‹#ÓÁ–]ÝZº>c‹>ìÔÉrâlOL|ÝÔmûA­Lóg­KÛ x1Þ4¢‰1É&±¹HX ·Nh\•ÕÈr°ªšávB5Ù½9çîájÇŒÅÊT•Ûr.GûÀõÓ1žEcJlPHxNqøå ‚l vÅzLO»ùÝHnÆÇXqì€hˇ*ßd»¦†¦Õ^î%Öþf[î[eéÛŽ|˜¾>I‰H„×[ª×ƒûÃ@Éêjr]7Nééa&Á¡ñóòå„dx"…7é¥: éQ«lÿï,;Š2Ä#1:Ä)‚2Ø@¦#/ÓV~ë²ø¦.ok³àV3hûfÑ´þ“Z»æ>ÍaOI7Þ1HÔóíÎÜö v’p b±à×)#BXâmv“œKâoŸÃ9{j4Š`L†ÓôÊëLB0JEGDò?2ñ´AhÁM>EEÂzTdqFÉ&·Q‘'ù$wßlØÛ°ÍÿåîLƒ-w$'Y_7Xrm’¶Ê™7v ˆÞ¹‹‹cïdV@”bo'„+ÉI†/–6õdHïE'Åax‚ ðÃã!qŽ^G¡­HELôrXxòÇqú7Ú3ô&rÝd ‰oÈ1´Ù¾ã« ÉàÉ€a`Z cß°îëzól¥›Ã »Ø½b=•­¶ ÖlªFÉêü~£:G“äWÛ[=ˆÐbJMoi“LܪØ7|ˆ1½Ö»ük|ï¡NøÕÏSn´Û¶„aÜÉ×°ç7ÒëÊh@¿ü M|<‹1b„±ÿþí¬ç¨ûtf†wŸÎी˨k[æí¡Ë¼£ÄržÐpïüI}ïïˆî{Q*pÊ=M(î¾'® jÝp`ÑBò¦~:<¨ª+ÿ_ Ÿp°endstream endobj 337 0 obj << /Type /Page /Contents 338 0 R /Resources 336 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 332 0 R >> endobj 336 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 341 0 obj << /Length 1439 /Filter /FlateDecode >> stream xÚÍXIoÛF¾ëWèÔJ@5™}Úâ(‹¢N*¤Ç0h‰² ȤJR®óïû†3C‘µ%nQèÀ¡øæíß7|=í½zKeß #á2]ô î+I „ö§óëÁÃÕRÓÁûxõÛÜ<¸XFEá–o²Ùú1N˨L²tx3½ìM¦=ÒÇð#•2¡`’ôg½¿z×7¸?ïáþe#f´èÿ 7chÿ±Ç) 7ËÞ½µž(55½îô›Â­òn#BÃÁž†²dBßÅé¤zþÇE\ÞFËÕCôñâû‚žgë»el{õ–Ó†A î(J88h FN¤åGFæ@q2¢©†¤)^è:I—Ißxe¸!8¢ŠCYÀ‡åHª«àµs¶öz–­W äÞêµ#¢¤œWÒoâ/Ó4©ŠUIG~»5ëVŠ3·È! ˜.ýCŸ2aS†PGÐ`‘qĉ÷Ï‚ão)ÄäÔBÅþËB0è3¹·“+„ø A|!î²liUéýE¸‹ò!ÑǼ2ªª:€Øg±¼ŒŸ]@A£’"C¹ªÓYGÕËÜ„’b—r!vì¶¢†Sà~홲A³,-<~èà8& j2$讋0ýj›Œ¶†<Ì‘¦Í+55D)¶Œ-ìmõ\WJ4bï’~ûxm–âÇ¡Í2sךá’t–=Ú!ÓQ4]p-tž;ˆ1¼ Ùñ¶…ü*—ùzfu1îÙ^ µ÷’K>FžàuáLÃ2r—M{Wû«¼À̲߫m^xCY×!‡Ü‡'1+©^÷2ke,ËužzË‹Jå²-|›3 Ó¿í6ÈH~jaEXh}¸°Í^O|MÓõréÜ€ †õùg€0âeÏ€];‰-Û#ß¡ðléßúN˜¢P’)vtŠªó~·";2œ™æ…ÇÍ xSÐXŸcî³ÎpÇ©}£ÎiD€÷€"ž`á·ÃªA o<`%7·ª:!΀ʩ8á+yá`kƒpp±‰px–,ܵÆ2¬ÁðÈO]š!ÅÀX ÷G€nƒÐÂ|Й‚BÂ@|>е|! ÃýTqöê‘ùá÷Û÷“OöÀùóûñ¸Ò¾¼MÝ8¶5Æ5†1NKÃÕäót§¡®ËÖ<7é·ñæq4ßúËN„§ØÖWJ#Œ}ÿGʆ¢ðR"£˜®‡2¤ œëŠÀÉ}íQçQ^CBé§C˜­×¾°—6þµ♞ˆ±Àc®ÜÅ„ú÷›àð.Óøfk í>Ø>½ëOµÿÊv’$endstream endobj 340 0 obj << /Type /Page /Contents 341 0 R /Resources 339 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 332 0 R >> endobj 339 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 344 0 obj << /Length 1192 /Filter /FlateDecode >> stream xÚµXKSã8¾çWø´eWm„–då8 3@ÅìÝ=°TÊ$\•ØÙØȿߖd%vb‚™a‹ƒ#«»Õ¯?·ø4œ|¡"PH xŒ…)â”Ð`<» "4RŽÃs½¼:¾êüìGDp¨óÊmœÎÓ²t?¿ë½ŠH›S ¯b‹P‘èn|98H€áØC¸Dœ Lƒ·w8˜ pp9Àˆ©„ϰÀˆ(EƒÅ ¦Ì/惛Á[;C04lZúÔ…¥Ü…ƒŠy4$ãÐFRd³WCJ]M¦6¨¢,'¥žVY‘;ù0ÇÓ"/ëD€Þ©¼iÊý‚6 '_8m8Ǹ@Œˆ‚1ÎÝfù<Ëõ“¤¸!9ÜŠBR‹• g¹*"ÂÃÙL»“R÷XY^A%ì¢*êç“®-·ÄÁ.IjºB8ôF‚޼Ö1YX"H¨¡$6T{d¦J!žUÇ©C" 2ERHkéì%],纀$Hb%Aô8'VD;‘ÉÕæÛ¦zÊÒë|¾GІ…-šN·¥•à¦ÅÉNþ\¯ž³G“®#BΨ0.¼1‡Ó:Ò¦´“½©àÓÅŵ3̤·[é²:HhO>-–™.»Dœ¡ýý4T2NBkE/‡]ÙˆQ–£.̉$a2ÇÊj|Öæà<Û¡3­ák°ç~I^÷|ñàŽé\oQnºƒ›î@Ohë•D‚Ʊ=ÃÒ€¡&áýÆ=uDyèu¡•æa@6&p€¦õ*—¦m–&Y>)ÖÕžJc³¥¼LWU6…ÚšXét¶§h*Ðʹƒàó*«ô¶ø¶ð^u@´™Á:W-ïc mû¼~5É׋{ßÞælèvwrܤÊ9’I"ë>Õ>óyÑá&ø¨b¥v=ÝEX†„Þƒ¯¨Rˆ L<_¹ÔA$ÎéÜ«:¦®ÀH)ÁÀ6„ô¥Š·@ r¬ÿaŸ¾ÕñÐÛ×;á¼4YÃuq‹>¸iû°¦%„»®µ?jP^\OÎϾGœ‡_|¬ùù$·È|1m”´ÑIÄYÓÄ·³¿ÆøÔÛDGN÷8Â~óŽpÄÞþÑÍW8Â&=¯Ûôg) iQ€ü (§©/®9zV¬ï纓"&uÏ:µC¡·b”>®ýM±`k+»öÏݘø¸që­W;P²þÀÉ»€ßŸ“÷çI§¼›ÉkÓá¹—¸ØŽ…åb˜"®XâÝøÕô˜0D“~T-úŒ–T¦áÿóhÙŠÿИ!ɹè˜) û•1FX0ùæP™´¿†›¯àóæ,Åf–J>Œ–Ê}Ý2Íyå°Vïƒõb™µ¦ŒWÀF>x,ûC-Ù þ,µÇQV¶‘µ¥ ±æœÐÊéb=¯jG }ûjX¤¦vÆ,ý›š€ÒéSÇ$‚ŽŽS¤/¨zÝTuôÒ±¿?ƒt^ üU¤õÑzõÂ:îç \Ä c¿~=oò·s×q–øÛ9A$–Âß>¡^•‡º/£ÍÚº.ÿ¥)ÕºÞáîAøˆã‘ùžšÅþ_¦¶Åªñv}.^6:÷áÿã!vVendstream endobj 343 0 obj << /Type /Page /Contents 344 0 R /Resources 342 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 332 0 R >> endobj 342 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 347 0 obj << /Length 1160 /Filter /FlateDecode >> stream xÚµWÛnÛ8}÷Wèi!k–Q”„brk H·1¶i h%: K®$7Éßwx‘#ÛJâ´)‚@¤9Îåœáð`6ùpB'BQŸÙ܉°#‚8%Ô™å×nD½) ƒº§ryqŽÝÃ2m[3<ª³ÕBV]ÚuåÝÌÎ'dz q0ü­Œ ÄY@œl1ù>¹¾ÁN>ÁÎù#…ܹ‡ F$Ѝ³˜ø”õ“rr5ùw­g ЦCMÚn¼e7…©0fÉoÓªÐViCÓÎ|Ë¢’f$˜0ƒzn¾jKi?Éêø‡G¸ ¾¡;¤<S¦D €ú¾>㋜ËFV™ÌÍ–ÿÍWz”»ýÞ¤•¥Ì”ß0ÇðOþ6R‹´Øþiéì>vwEšÔ«nk1­ì1÷MÑÉÏZìªkdº8»ìEµ™[ £™Bì‡&ŸˆPÄÇÞ”`Œ•€ÂêÖ9ŽcëXguÕÚ°~Îçgë[|:°€„¸IÖ¦,G¬õQß (—Œ j!…”p+t]T*¥7VÙS†b>œ)… éeS«äü(r›ëÔ†¿.ªN6fÒY7º;9bfÄ#$´& }ßµBE? Ã'ŸðAðáRJµ‹ú ˆe€ów›FÅrD FLë:~HËR¶±F' ‘À‘aØÈ9Ñ"l» +Ê2TTh,HiA˜ª#Ĩ ûó'ð߇?¶”,ßÄ2@~þ ¸'»¸÷Éó¸o€võ"i¡¾i3Av|˜¶]ÇfSÖÕ6{„ @$Ï,>ŽK ìqÜ㾬«Û=£jœúçU5c  ׯ;ëÜ®:®âÇÄËlœ2å`ˆ À£¯ÒÒ SÊ{V’qVãÌX›h†P…êf±¾n¶á²pþEà²!9ܺ4£ hÒ·•䶸­Ò2Y6 ÝXÔ&ýu8Ô²± Ài<$6§°a×<¨‡ïUƒiu‰a3Ûà€1uUßW6ôÆ#[ í’Íù˜™SŒ¢(`o.‰*Ùõi“‹ÇSÙÜ·*mP$á²²#c®Û~n­¯/c• u!{Ľ|V7w¢CŒU ‡õ²ºP¿o•føt9/÷/E5Ò¼Øß —iÓöwAì·)gšN>> endobj 345 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 350 0 obj << /Length 1691 /Filter /FlateDecode >> stream xÚ­XYoã6~÷¯ðS!5#R¢}h®=Ð`woû°»™±‰êðJò:þ÷^²$+Ù$-‚Àg†œ!¿of¤óåäìšÓÅü,ï§±; Œ(Ádº\}qb„ÉlN¨ë¼åÛ›‹Åâ /®~̰ëð¢Ñ‚‹ŒÕµþÉïy5ÃSS¾ëNì;-ßO®–d“Ûɧv9,4ï®t>Çðòõgs캮#l#Ñ-µX,K¶*¤2åuˆ•ÖÿêRþ±~JË¢nd”g×”tv'A„¯­ð`Môïš6ä«ã.¬ZÇ}PÿÚ|Ù%—'_ˆF”Æ„™$tô(c³Ú½E£K2#4V±£ ƒ†¢©¤(8HÝØ¹;è_C‚´Ì·¬âÝ…,Üá¦ièÈÁœçì+Ñð+V½•ß}H~¯S!>ÊeYÕˆ4ãõb¡L“ùØE÷®Ò®Ž ºD;#ÏõâÑ©!:óð°Q5üAÛc¿›(("1!†©p ÞÈ&!òC«òÜŒ¡…j×—dB‘ëÇÁ32‡GBa/²™+‹m)yo_P®O´Ò‰á¡u¥a¢Åz <–xF[ñfW†ìl¾kØ]Æ1?íÚ£inàó®ŸÅØ%wüîø>UÜñ¡Êõ¹s«‚ø¨Ýàa|ô¼Ã?öGh&ECšÉ¹Š³Õ`jÈ<9§˜gü%ÖOéøræE=æ†y ÿ¥­›ã¬Ù³í/§Æ/zW¿G#yž!H©Òû©sz™( [ZG‹/A0»W{ë½t<{%Ò ž‰´4}jŠ¡“',Ûnا‹KYpiÔN\é ©qÇYžlÍ]&XÍÇ'óDÎP¹’´*!GÕ<•‘´Ú?OÅI±ËïàÄ}בV¾´ê+Ô)˸’IG7œÍ€á˜}”E^æ ºËh@šãìV´v­Ëw¬J˯[­íê~è§Î|¢¸/eýN´ÊZ]’ÝB_‘'У̓º"]·ºmò¶­Þc’~&jWíOb7 Ù:${.Ö›Æ>zü=‹þRp¡“2¯$K4;Lï¦E®Á5«NO%•N´y±êû©\§úÓç”[ÙÞ”Õo¯H áóÓt_êÚêcn¨›DSµEêà©àÈõ^aõ<¡Ï)¬VµWXk.™NBS±``}$‘³«µ0«©º­‹ œïj³TÎÕ»v590ÌŒžXÚ¨ —ºû•†¼Ù”+=Þ‹,Ó#¨ä’˜ö®Ín†kZEbž–.ú W¬1u\˜vìÔ_ÙºF~Qù}¨¢SPEôç  ªÏòq±¸1ôÙä"¨¢Fò/ÖÍF><*?D‘@éžåSÐj N‘Õí…:è·È’¯7€ 3»l߃Z$¨Ž,k{º¤ê ÝÔð¢»ÜËÜEqxp1 âªx®X¾•… ŽPèÆ¡Ris5×*ÉùNd«ö–®uûœß¦•$ÔG¸À[õ›ƒ~ŸüPd‡å,&N©îÚ*F­¢éùSHV£éø¢=Ù£×½^c¸} Íòì¸ç[^íÅZe«DO”Ì‹îc«hñhݺmô§–¿û í-?Ê3(SÞþ¢Ü ^ÉõÒC¹”\g¥ p?ƒ—ô£¤½xe,[Íó¸bÏÐbxôùPDƒÿ­ç&Öu~Ûž»rMïn üAóRóLw<­œ+ç ;fv+On"ФÜ5«ŽüIá(Ûg`*?ô[ýÞ©]ß8àFa¦WŒŸÛ"yšåÿüµ­³ýØ 8”ùXlÃûa B{Óÿ bñ¡k?j½—Wb?¹Pýƒé‚º ?4m´k¿@ÞË;,«NÇÐoK.ˇÚ6üŠ#¤[endstream endobj 349 0 obj << /Type /Page /Contents 350 0 R /Resources 348 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 351 0 R >> endobj 348 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 354 0 obj << /Length 953 /Filter /FlateDecode >> stream xÚ½W[OÛ0~ϯÈc*­žï¹<º ¤iëöÂPR"¥I—†ÿ~Ç—´I(Ð26¡Ê69>ç;ß¹Ø~7õÞ¾§ÒQ,a˜.üû¡$HPBýéü<ˆùhL#Ñà£Z}:‚…ÀÁQ‘®×vz\e7KU6i“WåèbzêM¦ñ1ü£L„H0IüléýòÎ/°?÷°êaÄâHø·°ÀˆÄ1õ—§¬]Þ7ïëFÏ»šÞíÄMa:؈PĈGc‚1.«ª°€IòA•“ß#‚Àž$f–ù|v©Òål•ÖMžÊùø ?bWYU®í) À‘rÄxl4 ¤Ì†¦²ãZ);Év¼uëëtDqDàþÓÜj@nßïœ]j„v¶…iÑtùcÇ’&àAÒØ`šÜ¥ËÈ'zƒO"â8òǶ ±…ý ¢‹² å%Úá瘄($LXw1ŽÌ¾cõcZæ& ºÔ¹_ä¥óJÈÈNªEK,¦…ûè"t@´qk’rnŒœ©…ªU™µY½áÓ*®ò²™“HËùPT•óVí L3‚$f¤›P»„:ÒYÐM¢0¤nÔÝYZ^©ç²ÍHÎê­è‹²Ì2ªôxg·Z=úØÞ1¢äÉ×Öm|£¬Wƒ’8Êþ [OPDž§èɪaÏ ÙÁ~Ò¨ÚtÂQ>D¾zh¨ M‡ãܸPÕ{D$ÏLÅAµíŠ 4”­}½ˆK¢íŸç¥öëb?Ñ^7…ÝöćAÍ[òwµŽ}æïÙŸ®èì!Ǧ¸_…éa¯è‘ÎG„íA¹ìu–C ¥óGY‘Ù÷u^^8†tVùÿ©9†¥Ä£' æ< .ïíè¢Ý=E„ë‹„ly65$»N5ËAΦ K¶m̩˪%œ’j£I'_ÇpÈ…exߘí}—=fŸ–iÏ ­mmn;éj y[C‚ DMøå–À“ϳqß›F'_&?¦#R’=3¥oQCL´J~ÀM²­Xµ\5÷‡T,•\_½£}Úd+Úk“µjnj—ÍM}3¸p6׌.ÕÛIY=^à—iUs{¿|ICXüÂêaªÇàqdÎU¡ ¤iQÌZ؃$íµŠ|=ÛÜ¡{‘¼U"x”Æþþ©ÒQÔ¾T$> endobj 352 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 357 0 obj << /Length 1219 /Filter /FlateDecode >> stream xÚÕWÝoÛ6÷_á§Ab†ßU Ú¦kË:¯}HC‘[˜-y–<Çûëw)Ù–•ÆîÒ‡!LòŽw¿ûÒß{çï©ì+¤$ü û ÷I „ö‡ã;O!BýØû 7Qô‹Î.ÿö ötVZÂÅ,. »ü¨õÒ'! Gsé)á߯{—Ãécø#• Á$é'óÞ_½»{Ü÷pÿº‡S¡è¯aƒQŠöç=NY½™õ~ïýÖÈ€ Á®¤·öPØ[sCRø‚1ö¬%ËR?ÒR/ã2_>kmÕÜi¢‹‘ÎÆ–õ þ‰±òü½ ;ÚiÀ‘d,´Fû]šÍÒLß[NŠw8 +x 1®,ÞF ¨PóûdÏ,â4ÏŒ_ÄKýÉ'„Ô1®# s¢jÎ á]…Í‘q6ÑQñê¾W @²õ÷‰ò„u¸¼¹Ø¢ïbÜ#Io§Y‹{±L$k“ññ¢u¼^B¾µ$VÙÀBZ[yõë¨ÓÊ—·—Ÿ†>Ä,Š*9#íSáµqžPÑ«è´þä¿\»Eú>¥x)—(Äá1JǹWºÓܘ¸¶:æqflÝ<_Ìñ2ÉÇÚu-KI‹ò§¯Ö6¨SAðrm[D¦doV³2¾‹|‘êâ{”lÈä7–,?(YJXU²”ð#K–R|Ô”’ƒì5gö[*¶Ùûs‘¤é­ÑÆŸß°œ!E¹ØKØÐ%¬Í¶ÊŸ} ÒÒÉ´„¯K Å©]úá+)½®.§u!†(†éé˜.äX÷Zþ8]êÄŽp¸S_æöK†˜ Â)ë²ñPo Æ{ÇXµ@à/xTÒz4a d uúX`òÆ åbúŠìØ ›¸G lŽõ½hjÐÁÐÙß©¶‹­¿`“ìø¶©;Žg3ûÕÕc@ʼátåh›|åîÆ™]¬ 'z¾±Õ]"§¤Ç½ã·6pv!Ꙟ›'GGà ã¬Ê6ƹ5Â8ùN(♹ӜV@ÌâY h±*¦£‡8ùÓœX¡óÍzRÚ{†€2UEµ¢Æã±¥kÍC[©vsœ!Wn1ôÄ22¯Ðåu‡m{‰»NË©kqÏa·äk.[i Œ•o^˜[¥üØÞfê9?7îvSNÓ¸éog­qÕ¶¼®iöÞŒG5DŽ„büèoTêõfX*í KÛ3ìg?ÄÞ¾ãÏLŸ ©5š£vó4gíæiÎlmaÔͳsþ;±£¶æ!¼À cÿý]¾#¨~–Kx‡³°~–Dx`Gðšy×h— ux‡¾¢ÞÊïÚ€_9а?DDG<°;ÓKíêÑX»÷ÐtsŸ› ßåO›‰ÎjóÿÓ'pðendstream endobj 356 0 obj << /Type /Page /Contents 357 0 R /Resources 355 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 351 0 R >> endobj 355 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 360 0 obj << /Length 1357 /Filter /FlateDecode >> stream xÚÅXYoÛF~ׯàSAÕf./¤ÖŠ&±Š<8A“+‹Eª$Ûýõ=H‘eËIB,gï.©k(pá²\Y¶<— N µ–é­¸óõ]ŸÚ¿‹ígðÀ±}–Çu­oÏËd·E7YYÌï–׳‹åŒX~D)ãâÌ%V²™ý=»½ÃV:ÃÖõ #øÜz„ŒHPk3s(kòÙÍìS§gŠ}M&ý¦ðè·¡ˆ!Ïcl×M†eÝTsâÛ"ÞhçÒYþ&Š‹os‚m' «¬zý+æøˆX"2jkQ¸ÌZP 7Œ(/.žâÍ6u¨Dˆþ¾µ à'çZä+Æ´|'´`ôñ¹YgñMgåêO”$?k[¨›Ë¼”>Î=lïWâ"Ý‹Œ6£¬@Ò:¤ ÷Òµ òãà¯Lšã*gÎ…t§ÈÔYjÕ¾æYa’áQ}-Wmr0ÍÍšÉ —?:TøXu©ã([ŸÅJT¢H„,$7°ã|»Ž?ËdË¬ÊØ°ªTG¨1{-â9Åö·çb¤ ÅC³ŽvpJ£]Fõ—¹%œ=¬›‘׺àÎJ+œf†›x‰"í©a`uSJ<ï6cjm›Þ£l†E¼Ó©«9@h×lwcµÛtM¦x”J¼á¹è#¨!™o8©¥ÎŠ8¶U XGY:X÷ÇëZK„×§C&F/ïuöO?K\¹ér[Ý;vk,Óѽ2ùzBÃC°çØÊ§z´K‰ãá‰H€ü¬*ëúF$’' S¶š^ƺá©ûg}Ýă¸z\\nE7e¥©‹u—"×ó¡U(ÝïßOÐáÈ >€¾i9ØŽ$4b!i®ïîë¸^VÌ`& _[×>‹›é¡_÷ÚjgŒ•2g´ÿ‡ì”ô`>‹&ðJUÜ£-oµ¢»ÉiEŽœR!„»'VÈúMœÚß:8©Ñ_>F0±ÿÇ¡§¨ýÃÁ…eæ«É‹2ä„YAÄñtQ€‹rnm=os´œÃ‡ÛÎdàZ†°3+¼MYÈqèxú‰bb>²Wò¦à}¥Sr^>=?ˆî—i–º³endstream endobj 359 0 obj << /Type /Page /Contents 360 0 R /Resources 358 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 351 0 R >> endobj 358 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 363 0 obj << /Length 690 /Filter /FlateDecode >> stream xÚ½V]o›0}çWðH¤áúÌc¿¶Uš¦µh/mU1b$¡k÷ïw vBš.#­4EÈv|}}Ï9×ö=N½£s*}…”„&-|…ýH$(¡~:¿"tRƒOúáËI’|ÔõÙ¯Á®»aâ¤ÊV«¡{© ÝÎH “¹†¿8æ2PÑì6½ðÎRø~¤ßDDH0Iü|éýô®o±?÷°áaÄT,ü'`D”¢þÒ㔹Aå]yßÖ~BpŽ=¿Š‡Â0ÚÀA$‚1жÔõ|ˆ=ßÀŒß"`l;ýl¢?:tä•ðQNDa¼^~nKŠG–áÚØ@Œ«!ŽS}ƒ1­Ë®lêaÏ̲Y•µzDDC§)†Ö,©ô:D#ƒ02 2;C0!‰¤œõ{ôb!,À¿w—Þ`á#lŽŒVgs7‡,¬1­°£ Æ´²ý´>dmW敾˛zÕÝ•n³®i_ãWGšMà×™Z~Éd~oä—ïåwû ô’dÝ¡N’æÁâßGÎ$äX>Q„}ôGaªÈúéÁé-$;ˆþIàÅ~ðÃÅeõ”¤H MÊAkzp²è?æàÐô¦}þk&¾0{C>n] r²$ûÄÅŒNÙ,gñ»ÄHÖvÞäK°Ë6»ŽÝnQ®vHx2$dvp¯kÓ´h›¥[ª³ªjfTOe}?u•ôq‰ Š‹>ºJÅ+¢ÅˆËØ]´ãÇ-z_¡5‰ÉqÂ7¾BñöŠ<_ÓòOã«n(²åç¯; ÅîÂˬ¾×+kù¢˜ˆ¡j Œ½¿–9r¥„„ÚÅ®” æ­‘Ž«±LNèt¦hðh…º0 óhg„{ÖnßvŠ]}UA]–ôçwûHŸ6Ï¿!5ü?p¾€žendstream endobj 362 0 obj << /Type /Page /Contents 363 0 R /Resources 361 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 351 0 R >> endobj 361 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 366 0 obj << /Length 1217 /Filter /FlateDecode >> stream xÚ½XÛnÛF}×W¨(HH¸ÙûEh 4¶Ó€·úM¯k¢©P¤ký}‡»\J”ÙrÝ"@$&³³3çœÎèÃ|ôþ#•cƒŒ„ùíØà±’ Jèx~óybô4¢Zj:ùÕ®.NàAàÉI¯×þëi‘ÔK›Wq•ùôËü|t6‘1†?Ä9 &É8Y޾Ž>Á㛟0bF‹ñßð€1†Ž—#NYxÈFŸF¿u~"pízúÐÆM8b\Ò8…­ »¼¶-jët½k F”ÞZ¤yõÎ{ÝÊç²QO`ÕßÁw€-;W³@âŠ>}ÀÀÊl6”õ›ò&þ,§—‘’;¾¨ÖˆpÈ2‚ÂÊHŸŠ;Ýê°˜1¹oþ ´„×Ñ4tINÞ|âëx‹ÆO³"u"_Zíb ¤GÁÒåàA …ºÚøsÎWY']qD`/úû´¬ê8PƒúâXvj`ø[l«çJ½3â # åøLß´BXùüñ¿Fzÿ5eÐuýÙ8€ðöÓ5¯.%•zTƒ{¨ok0À0Ì „=ßWƒ¡{ÃéCh«¯¡j5"#²Vi«ºÌ{X­ hF¡Z«Â:(øŠŽÄ®ùno"2ኡh4¢Ä„Da[†û¡Âà £¼·o·Q÷`{¦°.K+ô¡}ÃæIi›Q/¬ƒaÅ ŒêTˆI±®^+Þë¢ÈöÊø%u?­ÒÁtìWèyiµyÀ¿û?OóG¡ïÎ;Pñ,诬i+³fü+*›TöÆßùsU•éõ”âI]ÙãÆ‡ÂA…S¤´6{s ><§ 3 LB|öc8¢\ˆWaÔÁf¹€ìý™¸ß‰ˆ ®÷ßÚ@úC[¬îì ú#HUP}t{ô©÷ggÓ U}-5[ "í^rj«8Í‚¦Ní:)ÓUX£ÖŒf×1ä˜5£GËÞšqÔV4 BÝìZ;R€‹ˆT°2nÑIÛ5ª^‡<SOL¥q–í§m×Ü#ÚNi8úVJ †P‰vÕ(ŒñùŸ=Ä˸¹‰Šh¤pSùðª =ÊÖ›,:€>Ù̺%É;Ç¢èŒþ0jÆÈ ¤çO•ë¾}ó(Þ‡S›ËMu—Æ;ÐQª¨›™ƒ¢ œ XJÁ¥y»™ÄyÀŽ\ÔY•‚Ë“b•ÚÖ ,ä6oÂØ¿ßÇw…u\ÎL»Ù JJžDɰ:ÎÛ¨‹–ÊùÔÐIÝÒyÞ0Y·ÿ#ü3g\ù'Š õßnêCØùyâz~›xØüi»_%þ‡Ûfendstream endobj 365 0 obj << /Type /Page /Contents 366 0 R /Resources 364 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 351 0 R >> endobj 364 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 369 0 obj << /Length 1011 /Filter /FlateDecode >> stream xÚ½WÛnÛ8}×W¨/…V\o…í>¤i»P ¿eƒÀ‘•®[re¹mþ~‡"iK^ʼn¼ÆÂº˜äÌœs梋YðÛ{¦BM´ÂËì>Ô4ŒÉ€…³ÅõDàÓˆI:ù3_|›¦òòÝ)ÐI^6iºž×M‘-óÛ¬*7ÍmÑäõ¼©j»ãír¾ÙØÛ/ù}^O!Á]Y>€+*'ZOofWÁ»Y!Å´ÖeL$Wf«à{p}CÃE@뀮þÄJ@k®Á¸X_ƒÏ»s"<(êžtÑJeøÛ8/ó¿(eeÑUi]ž7öº,ÊÜÞ %ìMuo¯fËÒýép‘ò71‘µÐ-%3&Ñ'. •1ßAK‚A)beð«·Ù¼—ör™÷__VÙv…&æ­£ÞÈ>,´ÁÒÇYÇge ‡ÇÈUc—´}o7Í"MWóµu  ã’ ŒÄœÆè›qé÷¯#Ôቖadñ‚viQ6¯Å÷ÉøísÆDç$JÉ-$ˆx´Û% ¸“X$Þß4ÒöK»M°î6MTL¥ÛW Œ@(-wÎI°k$ëE@~ÑuQ޸ú FÜT¢O¹õÓ©²2Š´²tŽ{R7æD#ˆ‰b‚È=> zåœP%’®@Ù™Úº%é#s ¨!ž±[*=Æð|œbv~œøyqâ :‰l!ІîóÐJê(ÎC™`²P)žüo© k½ÆZߣ)«ÖœëhÖ)±=í‹œŠ³pw9ŽÓEÝlçKUé§:’Nè¤B{ªq|aWûèÙ³¢c§ä˜:{Gö)ö1_Ýù¢ù~[f{?NéÁ|׃ŸîaËu°CÞ4WnÍ8­TkGë€f¸  aÛÈ¢5Z‹VKØdWO•Âi;Çé~Ÿ?–ÙÚ°Öy³­½*\_«pZð|5Õßaß÷iè™–˜œº[¢èšLM¥™pŸ ÃqBâx3¾“&ã:ÄaÅj‡j3P»!{u‹Ø>m¥œ<·±ìçлªÂ Ä…7¬GÀùÿÚìtᾪ~]â ä>6¶+_{Ú}á¨wê˜M±Ïn÷W†÷­ûGÚ ÈTÒTÄö‰Qpõã~ÊäÄgNK½½{ð ë×÷¼ôáÿ£Ã,æendstream endobj 368 0 obj << /Type /Page /Contents 369 0 R /Resources 367 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 367 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 373 0 obj << /Length 959 /Filter /FlateDecode >> stream xÚÍW]oÛ6}ׯÐ^ ©8^~‰–=¤é6(Э~Ë‚@‘éZ˜,¹ŽÒ4ÿ~ü’-9r›z@1ø¤¥{yï9ç^Róèç߈ˆR óe¬pœ @œ‰ç‹ë0ž¥D‚$ÉzóîYpœ¼©‹û{?½lˇµnº¢«Úfv3¿ŠÞÎ#ˆ±ùóÆ3Ä©€¸\GŸ¢ë/"_EQ%yühR$^GŒÐ~QG¢?w~Rã(zºpãƒÀ‰Yf>îKý7Ƥ©\T.Тóc]5ÚϘ”~Ò.ýhMêððwݼý<ž˜ÜÐ ÙÌ 2!Qb¢e™ÛQ! ˆ"6K f8ÙÛ®*k}[¶Í}w[uz[tíö•õN=–y6Áv“S$y¸\YU>„'á®<ç8g™_ $`hñëI|ôR½l¿<&zþ©Ÿ\3endstream endobj 372 0 obj << /Type /Page /Contents 373 0 R /Resources 371 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 371 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 376 0 obj << /Length 1088 /Filter /FlateDecode >> stream xÚµWmkãFþî_¡R8l®Úî̾›¶Ð{k ¤­¿]ŽàÈJOÔ–|²œ^þ}ÇÒ®-+rbÑ„@l%»³ÏËìhæÍlôãÔ‘cNÓÇì6r<2˜BÀh¶ø4v ä$FÅÇ¿§ëo§ÓßÒüýÝø8Í«ét=/«,Y¦×Y•–óª(›µo—óͦùúgz›–°´>I'1(‹f &Ÿg£÷³Dœ~ >X¦„†(Y¾Ž>}æÑbÄ£‹gÂYýKœs­FExXŽþý±S ¸éç’ ©1DâlÚóg"IÌèDÞR• ¡eÜW˜yœù¦jv‡øÍÓþ:ŒÂã0`˜F)ë0ßgy²Ü.ü­•J0ã,IT/ü©'–aFZãÔ|‰+ûÒË1c”õKñôHP`N©ZИ@´Q,$³Î6/·7Ë,ih}LW7©WîÃ6OªŒè‘ 4“‚öÇ( hºBTûsk-“Ú¢vÂ¥+®xKëMµ˜NWóuO–Ykô±hGg(œô+²¼ú¡{7.wYülÎíÁªàË碈aÒà¹OX7ó}•chvI$‰œÖ²öé^s4ŠÜR 5‡†D½Ûç^15¾Ûý VU7=8bD¦%ì¼’ Q˃W±âü1GÆ:¥¡!Xgoî¹:×gаG\KP™ëûfW·Ü&ûË7ˆí]VVÛù²ÇtAHr½7]ð§L=G¹XRžX' øÊ;½nþøóKɺšÿ3T@›ó 0i=\Ú¶®|J¢ƒ£Oâõ7áÌŠ<ùÓ.¥ÑÆ<¨ä8T„½½‰¦4ˆócíÔªßsE¶xZµØ ¦è¶ÍeZmËÜ«VPE …£*šÏZyP`ïÒ¾ö@f5ëa‚ øÄ!#I`é 8¬6unÇë×¼G:J)ÕÖæ²Lc2¿ù4Ê“2]íÞ²§I ÄÛ”L€q¢Ô¸ØTÏô¦(–3¬ÆÌϽ¾Yú•ªoVÝ? æï^³ï`n÷Tt›95qTèõ FøœÚµ™E•&UºhNüµªÊìf‚|¼­Òa-UÍþ‘–H"3ÖºNGÄïˆzÚ&ŇPãÎn–™%•zÁfiuM¼¯ëûqÉ¥˜PÒö5M!Êm]ÊáõÎ!ãÒ¨Áå®Áë¶â”74è¨7‡‡ŸrÞ¥Õ<[†üy—n’2[ïò£‹dÒ:ºÙ°]D'³úrw¤dëFºÅ ë¡ò Næ'³í&Ð /¤'ÞùrÙí|}Qôa¾ø­éÃV_);㬥¹„øÿÓl+Pf5 ¯Â†YÈ\£Ã$WÓó¤ z6q8Þzä;Ð[ÿÕ|€š*>•¦yBr›X†Ü®]k¾Þøžù]ñíþï4ôÿ,ª+¢endstream endobj 375 0 obj << /Type /Page /Contents 376 0 R /Resources 374 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 374 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 379 0 obj << /Length 1022 /Filter /FlateDecode >> stream xÚ­WÁŽÛ6½ë+t*d f9R…¢‡$›¶ h÷´]Ž,§lɵå4û÷Š”%yµYywáƒE›"ß¼÷f†|½~~'âÐ0Ó×bê˜ ÂÅê&.fs‘@"¢ßóÝû74På—?ê|¿¬«ýeÙ+ß²\¹‡:?Ô nEK“XQ2»6á=0sÐLʨcš­Þæÿp.Ê¢aÊ-^»ïMQæîI û¶¯lüŸ¿ååÕרˆøfÿ¶Ç!€gMlÍѰ$Fa )œ“jUy¨÷ÇŒtëýä%̇?ß“ôŒjÚC(&‰½=ø]ŽÒÔcåkšî–ûºÈˆæÂ3<òÓlŽ\P¼Šg¨Bt¨Wiº]î € ”†‰¬G,Œ_FgZIígeýª1ÂIŸX˘„j¨sútÈÿ´À=>¿³ì' Å+•òË’B8O3©…Ÿòë6rˆLZhiÚ±à”i^¢÷‚ŒDnw-F–LǦƒ¥ÀÍQýU(àD@;é¦(­÷nÇ<,(_Œâf¨¶Ãé YY3:Gzà­ª‡†hÞdB,¤¼ Ôå 0ð&j–h÷½)žïMEñhF3‰œÂk;uÀë4nôËsƒ/À–ý¼£fù)bò˜±ã{ŽJÚh“Z<ª„¤è%5ºYµ³áß9V³^Í8úÕÌ‹¨¦ûªI¯Ú×b_—ZÌL—p¤¤ ŒƒÆÇÈ«Yc›&I’02¿æˆ/É‚\ ;ñ\EöÑMo’øò-¶M¢÷ùös[ ßˬÃñ”¦Š§¦:¡'ÑäûéL½®#MµJµóÚŽX†ÇLY&oj­ÑìV«Æ"]Џ…Ž{˜PQQSk4 ‡îóú¸÷ìï*jþ­0u5‚3¶Eù„t”ïÁ¦ ÉËFö"Û1+Ö¶þ'7 n­ñʆ¼Ì¦çÍöC¾Î÷y™åþ ¾ýDǨ.W•Цö¼¸ž\cÓº+Òƒr!»rÑŒòÂ)ÙŸYÚ]êSÜè驇ÔOÔ §h%yt~*¡Î”8#ºÕúìj–Ð Ÿ3ë-Ô^Ìbf4µtÛ޲ĆÈL:nó«9FúhZf3#¢£çíÚÆuôÿøC!¨TñTz¶ážÖ3¡¢ö˜Ö»¨~¾k«ï·»/ùé~ú~+âEendstream endobj 378 0 obj << /Type /Page /Contents 379 0 R /Resources 377 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 377 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 382 0 obj << /Length 1076 /Filter /FlateDecode >> stream xÚÍW]oÛ6}ׯÐ^ ©Y~ËÚ´èZ¿%A¡Ør#Ì–\[Yš¿K‘’¨Dîì$?ˆ²xï%Ï9<$ß΢7¨Œ 2³elp¬$A‚ωA„O¦Tàä|óñ]šþž—ïÿžœäe¦›l[óUþµ¨ómVW[×÷Ý*Ûí\ós¾Ì·¢¡ÿ<ŸL‰ÐT%³ÉÕìä…†!Mtþ~›­ŠúÞ†@ù)QHRΛ¯gù%Æ´,ê¢*ëYíž¶ŠkAiר–îiCVþ£‡XXˆÑ «ÑèÈjÈëjýumzH…HÐ\„¤!ÕÜS½G½Çò~rÒÎHࢬVSÁ„AJ3ê¹û]ןª]=µ¨ýpåŠr¾Í×±'sÂåQœ®Øî«ç£ÛTÅbÄŠJqÛuñ6i„ÙÿFõò'Ä0Â&æÔ…õngÇß¹Gh7{ÖÙ˜jÚ3XŒLüL:àc!@qM‰8@„cÄ•Ê`ýÕàYuyµ±>ÝÙS ½¸Ôp¯SôxòO]\¸×)6Ê4ôßë@’Tð£6;‹ Ø£DT 1Ù¾-a$9VhAQ[Ï µðì}›ÿÌ:8ï i.{ÚÛ]ïc¾¾Îý<Ëj/ï³j~k­.k&3*¤—ŸsW/Òæ W4†ÓdçÉ¿Ž¤VHñîÐèë^ŒŸ¬½¦|n®s,VDuqçÊ#Èè·}h='Míñ/+cê$I$·N3”d¿l°6æX qÃÛQ^l¶UÏë|1îZp@ÐÌ®€Á!mà®Ë¶ÎpI Ãl!£J †¨ íop.á O˜?ZU:êáô­‘”@æ·òeìq!L&×÷ö)’Ö°FÔcÂèGâЈ‡ó·“~msë>wS±ÓDãDÙƒ“—’ìùvr²§Ð郀¬\xýaXeöÝÞ¬Û¸Q‹™Ýx˜èTÔ4ê›Â;м¿ÜÝ5âñ/ßòÒ–k°‘Ûj݆æm²ÕªšP‘Üå·å´‘ˆ3ÍQc¥Ý.)#:ÖˆKȸ[›èfäf ÄcÏ¿X‰Ú{¥„‹$Óí½’€/*ÙŽ*Ä£Et614¹õˆœ[Qßú/Â=ˆHN¹ronXZäw×l”Þ8ø{à þ? b$±endstream endobj 381 0 obj << /Type /Page /Contents 382 0 R /Resources 380 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 380 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 385 0 obj << /Length 1229 /Filter /FlateDecode >> stream xÚ½XÛnÛF}×W°(HH¹ÝûEh 4qÒÂ@€´ú†L­m¢”¨Pdkÿ}‡Ü]Š”×¶ä^à]Ì9sæ²gôf1ùö=•‰AFÂËâ:18Q’ A M«OS‚ù,¥šh:ýÙn?¼…OßËÝν=+³fm7õ²ÎËÍìóâ|òn1! †?ÒY &I’­'_&Ÿ>ãd5ÁÉù#f´Hþ‚ch²žpʇbòÛä—ÞN †Ò¡¥78áˆqIr (Ü "f)Á;àóùOvóîÏÁS@;Ÿ»wUmï.³r³«/óÚV˺¬Dø«½¶ÕŒh8—Ù6BðŒ”4ªeœtŽ;kî$øöõÎ}×»é :6D’”óÎÐ×ù&+š•wIÈàIÁ2Èêü.bK!ŵòt‘CÔè6fË ¥„öþàj 2BtÔ¦„Ä(ÕIÊ’ʸH?6WEž¹°>Øõ•õܽo6Y[ »YD"Î4ÊD*]¤”ŠÞïþY¸ÔÔ{"_ëéØ3/±šîêÕ|¾^n#ñ)‘aÒŒÉ9& iÌ‚ç|SVÒï€ÆÃñ.øð<œN/0f/MB½‡÷«¶%Ï—0Jœ?ÆšÆj˜uH®®ä\BÂCòG%ñHyÍç±z•CNˆ;Ë)$ÓÈ6Ý× Tå|@)‚¾gª&ëWöK“Wùææ ‘Bm®Ûr(«u?v¦”"É ¸¡ Å…– Œ§Ï´[N~×—P­@Ÿld< žzúQ¾úHF„mïݱ!u/ !¯êfYDj˜ÁXàXö%Ìðce ŸïД¦\!® !³¯ÜK¹u_~ÿ_òífÝzùÇŒ9wv¸‡,œNú³óC´CR™§Ç¨B"ây@ðñ¶Z;êÊ|Õ1´/³Y©ÖˆauÃê¬lÝT›UÛæP¸ êrô?Ç!ÃoQô×ÇÞ]{'ëE Á]LLˆ†P½Oó8K`aÒ^j/5øúõøˆ¾ãúceSHí\VÙVV¡#êëÄæ‰!†äœv&Ä´ÜÕ/F|HõUY-ý²ž^>_±±€à¶Yy}ÿ¯@ÿêÿ‚NüýþýPºAÿce L\‰$Ó¾ØZQÖ6«íʹü±®«üjFñ´©íi­£á ÁÅ)RúPnLc€ÈùPnED@ ÚÂ}t¬ƒé¤D/sŽb”'ÄŒÞvTˆb rEöò¼³¨äŦi¯ê"š έ/!—ãc<®)“ˆh&ʯƒõ$6¨eXŸïhÍéQ͵û"~#;³õ2/BíÙ]VåÛ’;\¯8Ô½§¯W#Ö«·ÂHÙjØÂ·´Àp¥DªviÞ7sî×Èfâ ¬:Û^R”m>"OzQŒãÌ3» ÃÖ[ºõ§íŒ†Ó~C°ß(ê3ÛÎìMÞ‘íÜx6 $îcÜcº“ ÓÂö—õ»ÞÑ-Šlü–ÂØ?_ø†Â¾«›j t Ì!m m(®dXt;J=Ñ!ÄÅÌÐiã8oÁ7þ?½1xΕûDA¸w×-­¡¿\݇?îîolÿ³Çß(³j>endstream endobj 384 0 obj << /Type /Page /Contents 385 0 R /Resources 383 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 370 0 R >> endobj 383 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 388 0 obj << /Length 1071 /Filter /FlateDecode >> stream xÚ½W[oÛ6~ׯÐ^ ­8Þ/ÂÖ‡6í†¶ÖØKŽ-glÉQä6ù÷;IYNÇò²Á¤Lòð;ç|çÂwÓèçTÆ Ãt+I „ÆÓÅEb“” œüžo>½Ï²ßòò÷ ÁI^6Yæfu“ß_Í«ò®¹*š¼ž5Uíμ_ÍîîÜôs¾Ìë ÑpnžORÂU Ábr9=>L#cø‘€PH0Iâù:º..q¼ˆp|aÄŒñwøÀˆCãuÄ) «èKôg''Ai_Ò;¯+!ÈAƒ²tW;]lt«N½wº¼rÃY¾ÿ÷Y5ß®Á³¦¨J«Ì#ƒ Êá Ü¿Ë8£>co“|Å·ÿÛOÜ5‹,[Ï6!=XÌ`D¹6€ÏÂúe9{Så7eóÆî‰S&4¢Œ«8u–$íúN‘¿¢Çèïå=¡Z#CDúc6p3ØKæ÷¼qvnu¹q šÒ: ï?¡e†ïtB8"Düu·¿¦¦&~c– À+wŽÓÞ9eTX’)RÒˆÎF‚¸=¢/Œ¯) ›.ŠrU”ù¥†{Sp"•zŸˆóÇü®óÛmQåû¦‰Ö‹v¼wÿ岪×Ó-·Á’rÖŠ<ËÁŸ´,ÚõöÀ¬q£ÅæfŒ7©–n´GV~ч°a€þFÃÑÄ ~ŒÑýh¢ÿE4á6šž°>¨°>Îüa«7?9ÞVœ½¼­ØËÛ ÖË<–îáPAÒ.Ù€g¬=*sÄ¥âÿ[¬¨}̹ï¬yµ±ØÐ~äìEáYñ"žU}ÏrïÙoEÝlg+ð £Ý<²©¤@`Í;3<€I!ÅuȽ‡È VJ![q#Ì>w¼Ï Ȇƒì¨7>ÚÔxŸôš ëN¡lç”lŸòõuîyþq[Îw8ŽnHOj×><_n02þÁr åt{ƦÚxÏÇÊF\n‰ÑÞU‹– )5<éòÊ\ÑQJù WŽgG7Û:ð › šƒà±¦ k?Â×a)þ!ìà ®„ô²SwƒÀ—ZaªCH€:ЕbÆõ ™EÐQ,~œ½Ú6ݶè¾m__Aÿ¸ _!’cëÊòuU­¬4~2¹~úÕžûý-?fž,BÃU)ÝÕÙs ©'f¨CÝD|×[â£áHHlöù›o!½ÍÃÉõE²YÀ^‚ºÏ‚•MN¦Æë×î¼¥Äìee £ÅÕ]“ZSvýð¼ÎmöF';JŒ+:^Êžh„±ÿPî ïd z3žÉžVJ†$gMŸ/> endobj 386 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 392 0 obj << /Length 964 /Filter /FlateDecode >> stream xÚ½WÛnÛ8}×Wh_ ‰YÞ/BÓ‡6í.Ø‹±/i(6µ%WQ6ÉßïP¤É‘»©·(ò@Òš9š™sf¨¼›G¯?Rd$,óUlp¬$A‚Ï—ç Á2QM4M~³ÛOïá pò~ßÞúíiµ¸Ûزɛ¢*Ó‹ùYôa‘ÃiÑ„B‚I/6Ñ×èüÇËÇgFÌhßÃ#b 7§¬;¬£¿¢?zœ͆Hï&§pT>nƒˆ@ ñtF0ÆÉ?)Á‰­ûp¹¨ÊÛæ²hl7Uý ²Òç–e¿Úòƒ7-S’4Y¶×/˪­ßyˆÏXàÖ¼*–°'®¯? :ˆ‘SÄ8vF2BøHÏ‹r]”öÂÛS<°Ÿõ”ÃÆÖá÷ÚÎ>cL<E¹¨­c9(׌($)ç­ñ©u¦eѲÓÚç_ÝKýŽ î7ÕʯÎe†’ˆÄ½áfòÚ•­m¹°A›ËM¾í+• ‘ Ü0aÈærH˜x aŠLö2¶Nœ;nÉjMÚ|&yÙ æ“|åSâC~ æˆKÅ!7‡PLdM‘’Fƒ=2(4%Ñ·ôA U™1r,Mþ¥=ðí—Eµu?>,n û"QC‘È ’«ªZ;4z¸N¼ÿ“Úã~î÷ÊeZHéží|"?ŽŒ&l(‡@VæŽ2˜DœkóeŽ„Äf, ûõ._Íáø§i ¯­GDG{7Ø?ÙÍ• -yš7ùžK鹬†uñˆˆÌÛf™e™w$dà¨1\JÞL@+¤¸VÝ(›ã'iþ ª ² Ð|$ÀæÄôbÀì¿sÜFz]§D'6‡2ND,(’p›GÄ @ìh°y›BSJXžc `ª˲‰îÊSD·Ï÷6ðŽtž· \ɈpÑÍâóm]5vÑØåd»0¬×rgönÙÑðoªÑlõ²‡8ݮ堟ÃÚLÿ˜ûxé]®ÜvX­‘øŒ]ö\{øà »u<Æþådσ££=vòr¹cÐ[øl]“Âw–ãá2¿ ZŽš¿ýiÕwS„Ù³xú„½w2ËÃáÚ–îµ]íVuµé\m¶^W)É}Q^ ÊÚðÌh¦9(I a¸ðÕ¢TL´ ˆNê®­†ÚG7ŸÒ0|Æùß_Ò îCZBE™nïÊ6À³"Ð@Jv± «ÒÕužšÜ…ºœ9UÞ…'Â/Ddg\ùÅ„†ºúu¤ þ±è¤zZ=<]þžÖFÔendstream endobj 391 0 obj << /Type /Page /Contents 392 0 R /Resources 390 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 389 0 R >> endobj 390 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 395 0 obj << /Length 1100 /Filter /FlateDecode >> stream xÚµWmoÛ6þ®_¡a@a£Çã;…-ÀÚµè6c_š"pl%fK®,wÉ¿ßI¤dÉ¡S»ká’mòî¹çž;_Ì¢_3[b>f·±¥±V@$Ï–ï&–€š&LÒÉïÙæÍË4ý-+^}šdE¦î­ª³ûë¼Îªy]VnõËÕ|»u¯f·Y5ƒ;Ù4%„ÕÓ÷³ËèÕ,‚˜âZ×RÉÄ‹uô1z÷žÆËˆÆ—%Üÿ‹_(kY¼ŽãÝ—UôWôGo'ACÉÐÒ %Â…b]˜ £ÖÃ(Ò¯&Ɔ>é€Y…Yh]e‘,Êb[»ÝèA¶šç½û­wÕ“ll 4QLˆÖØ÷y±Xí–Þ-À`¥äD[ƒTµ  ØÒD £ý‚6nŒ™|Ù²DkiüÒ $ ÄJÙ›Â3q"0;Ò|»»Yå Ö›l}“yþ^ïŠE# Â@Á@Ú‘@ekèŠ1Ùûݯ5D(Ã<°`¶8ç“+*©çœs1ÙÖË4]Ï7H£V¤€1m#—4ÕÔúyQÿ€V¥èoÄáxb¸ŸjT5ï \QÊ^±·¹5ÞC‹ûÎimކ2¥ô|œ„>D:½t.‡!c†°Ê/LÓ¡pc„Œ3´œô:ÁUÏrÌ8c‚a­RÂ{ÍY+pi•«–6kÕnÑ^•}ÜåU^Ü”OW:Åm#‚²ZÏy0'Œ%ÀË +i/¯DR:9Zòˆ:èmJ¢(Wçl×}xÝQ~zÜc~6nß©/ˆ:¯êÝ|+ÇÚTõjå4`~ÔJNc0šcùÙD>srã~üù[Ò»žÿ3åhÈíwL#ççSÜ~°…}Œª}nO—ÄãÃ%x°<‰^ ÿl[“M×ֿ鮆)×]wêùjNª¾û`«¡«e´Ì—Ÿ§-1†p ¦ã­5Qeõ®*F‰Þ”Ø»«.Gÿ9>†ô6(úólÐØðd¬<Ö @2„í:.0³é8Kh‡Pœ%Ž¥éÔªyþ|yDÜ1‘ɱÈÞVY‚ya}Û]TÙºŽKKžÝqC`1#gáœJ9)·õƒ=$ø¦,W èÜ4?µ°åH xðÍWyýðU@÷íAƒŸ0áNXéÇÔ8‘X#À¹W3â”u¶¨³¥óùK]WùÍ”ÑÉ®ÎÎ[žù#Ú{03lS¸É/0 I")tgà©Ã v" R7 6„œ2 J‚駆ÁÃÀÂà €ÚÏþ­÷à0¨f?{†ÁvÇúÙ¿@ã¦Ì¸&L#Þ±~FVº&\ÈÂ'œOñÁõÒà=²×ÿ¾] u—K…—Inº»%ªXhÕݨè‚K¶Ì¦–Mvþeçÿ‘î2•4Ú}cØíÝÛí”a+«—r÷zãÀ_Ëû‡»¬èÂÿW‚!endstream endobj 394 0 obj << /Type /Page /Contents 395 0 R /Resources 393 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 389 0 R >> endobj 393 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 398 0 obj << /Length 1154 /Filter /FlateDecode >> stream xÚ­XËnÛFÝë+¸*$ šÎûAYÄqÚÈ¢­’c 5rH¤BR©ý÷½äÌð!Óª¬ZP¤†wνçÜÇèÝbòë*#ƒŒ„Ëb)I „F‹Õí”`=›SM4þaw¯àFàéÕfY–îëû<ÙomV-«4Ïfw‹›ÉõbB" ÒX &I”l'ß'·w8ZMpt3Áˆ-¢á#b ¶NY¸ÙLþ™üÕÚ™ƒ¡yßÒ;œd„ 9G”n‘ˆÌæci«eº±+Ù–I‘î`0„{€(G’ÑØÉòlžäYY¹ẅ˜Ú¢²õõÑ=K+[,«¼ðÆäÐQ`ŒóÆXÂ8þÝf×`O!nqì¾ÉÇûK}XDH$eÚÐ,ðwRE n‰ÇâiÙ—ÁÛ*î&¯á{_Ü“åf3ô0M¬·•fÞÒ7ÿ¶ÑðvV¡·ç¸’B±&–TÙ ¾~\nw[Æõ+ÑHa£a±ñ$Âë–Ü*ÓìáOŽ%É3 nÙ²jÂé—°¥‰]Í"L‰(QŽŒ÷ö Æ4K8ãžäMšyO™ñqÍ×îZ¿²ñ?z]¾uqè‰øg m:MR¯É«ZTÅ>©énÌýÒªsðøY‚=—X_¯nVù§*n\†sFx£5Ÿ œ-«Uo—;…Æ"”/ÒßFÐŒ´&̯H³êM£…9â–·®H§†ýg@çáùyϪÖÈ€äÚäÀldkŽL·³—SãÌC1#zj!9Ч„@„SuÜ'Ê ï|±B8"D¿æ­Ûýí˜10uÈó8î¸piÞà´"ˆWz:b“"%èJqkDß „]wÔݦYwcÉÄ0p(µºsÙ”ʹ°ß÷iY|¤pfë¼Ø¶Â>¬–§%¨|}‚’‡1$Œ$½Lò88¿qª9Ò\ðBÞ.¤ú)ñá_$>¼v¡øÚ/.Ô°é ëØ¨ð™‚–h¤úIåÏ]ÙÃÒsŒ!à0 ØHò] þÉ…¶ŸgJ›czy긧îGZTû%´|†Ù+x©½”AaåPBA ˜ëÀÔx« G²ECZÒÖ‚gÇ7 ? }@ ÷ð_à »ô<’é£Ý~ ÃØ‡}–t0ΙX;üóTPù1=Þ<â*,9].ù®?Ïe]„I©Nß¶G³Kž®º×çzÔ°¶ígpÞÁКA,lµ/‚ Üe—Ck …©z9Z×öD€=ÿH¡ŒMöT‡lmÃá3®Ï($äu¢íŠköøÛ®ma³ö<°½‡ñ¯Ë\!¦§¶VvFkm5BõKGÃü €È®€4‹_ÒF›þgüÞÄsÚ©ðàL¬Aú„±Ÿ?÷ …±„0ÓM{¤ i¯"0Á*ÔØý)*ˆf1ƒ^¼÷’¸©½Øû_„» såî(&¾7­ë£`vzÿ|} µëñéÁ¶ üKò6ëendstream endobj 397 0 obj << /Type /Page /Contents 398 0 R /Resources 396 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 389 0 R >> endobj 396 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 401 0 obj << /Length 1018 /Filter /FlateDecode >> stream xÚÍWKoÛF¾óW0—€BÌíì‹Ë%ª§- H[¡Ç0‰NˆJ¤"Ñ©ýï;û DÊ”-ÉiQø°»ÖÎóûf†{> ~ø™%¡&:ÁerjUB‰d”…“ÙU¤ MF1“ýZ,߿Ͳ_ŠêÝ·…¨¨š,s»USÜß”M±Ê›zån¿çëµÛþ^Ü«MQbZŒbš¡# zt=¹ ÞMþQkZ*"yBÃé"ø\]C8 ¼ €pÊðo<¡Z³pÆÛÃ<ø#øm£'FEqWÓ¹v¢dxT.È‹â#«Ê¦¬+çsÞ¸u^V…Û nSߺՈÌý>)Ò$…|!&2t%¦Š$LkÃfÁdÀgeq³È—Û¤ ˆÎ¼éj6”p¹I¸´ 7ëýÍ´®ÖÍV‹”‘5¾*ºÂ)I$ßbJ8áˆDŸêzŽv0ÄYV/ÝîÕØI~ ÖsäÑ0-ðÞkç`ï¸J W¢›Æ»| AtJ¹¿€¶¨Óæ,Ú벫1æ‚@Š!”h)]ÜWeeð¼öº„ˆ#(Ę Ühjðò×»|^6CˆÄ&Od ?„5Gá-<Þ{köxøß¼i£’PVEæ1\(¬_hñ{ †ÍUƒ àC½nb“¹{g®¬¦«ba²6”³ÃªY…ËA –ûüú{dØ^¬ËÙ¾4'Œ0.’CÒÜ^íÑýê8$ËG°¿ÿNÏ<ŠýÉ3à¤'€3v‚Ýæ‡Ç¡ú2ÁmZL·' 5D D¥ZzËQÉæÂ: •”QyE£ªO†Eþ—Ãcë–i½4ÿ<½Âÿ§ªñwJuŽÇN²7þövX=<þR G?xjüq¤xéø{ùðcÿÚ›@ÜXïB¦[¸ÛÙ÷¾X|*ü¸»ÈOë‹zzg]n£$P7/N#¡^纙ezæ)í"´’©¶#ÿ8 KO¤ª-õª9Û’ðOd‘§‘W-zMuãÛ°øsÌ9³ž~vßâ9¦qÀcɰPØs§[‡t ¸k•ü4й¸<ÖE5mz²¬×.1åŒH*wX|x‘îÐåq0Žö™m‹\®ê¦˜6Ål°DXJ OÒ™Ùÿ‚jj¿~ñ,ï®{;ªœTQ¾OE™'†ÆÞ÷`Vµýl€gZ™7–xL3x¢AiRøžáÐÑm->ù~Ù#ùjÜû¢íÇщ]󦲜¢ÀMAõ9µmç­xœb1sÊùËߦEçþžà[”§íÓ”*°k×Tã[áß„-5&#Í¢;ü¥ÉåÿÅX*3 ™PîÄ€úV|;b2ê}ð»­e‚m…÷Ÿ‹ª ÿr0¾endstream endobj 400 0 obj << /Type /Page /Contents 401 0 R /Resources 399 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 389 0 R >> endobj 399 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 404 0 obj << /Length 346 /Filter /FlateDecode >> stream xÚ¥’;oÂ0…wÿ É€ë{;6#”¶BêP50¤Ä<¤:÷ó$äî5Ì(·$j80‰€4ÉG¨Acðdߟ§NHLóôxì¶÷ÕúTزNë}U†«dNf ÊÝ­›Œ™ èº d±â4#œÎ gÂhIÏNpÆ -H„‹œ¼’—Ÿ‘3 &mp~Œ»ÜÉÎvù²_ùÚ£Muè6õnßw±¾6ti/¶¶´‡´¶YóPþªõfy^…(ƒó¾ÜvGKÎ1·ãÅ"¡#ê LšH¶á–ˆ²©Þ°×,R]ÃÍ?¶œ}6Q\v¶û¬vAˆÿsMúyPŽ£ÐM&‚i‚ÆÀ Š•Ï6¤â¹&¡ÁàÔs™‡ ƒS_‘Ýr,ù8Š;…°gØðó2³·‹Ÿ±¯‹{ áÆö£Óendstream endobj 403 0 obj << /Type /Page /Contents 404 0 R /Resources 402 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 389 0 R >> endobj 402 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 407 0 obj << /Length 1171 /Filter /FlateDecode >> stream xÚ½WKoÛ8¾ûWX °æò-Ò(öGw7@n×·4(™Nˆ•e×’6ͿߡHÊ’£´j,|àÃÔÌ|3ßÌg«É¯ï¨œj¤% «ÍTãi" ”Ðéj}=Óˆ$óxö‡Ù¿?_.7Åå¿s‚g¦¨>¸1=T6ËÍÇ´¸3þäyž–¥Ÿ~4s˜§3ø—$Ó!d~³ºš\®&dŠáGµ"A‚I2Ͷ“/“ë<]Oðôj‚ÓJL`ÑšN·NY\ä“¿'µr hÑ•tŽ—4B¤€8é"$¿ DÀuâQ0ˆ&H3‘4ê¾-ÜŽ;Ÿ,¥œƒ÷ù',ð½2q~„%ñf¤Y Êí?ü°ï‡l—ç&«ì®ðëÝÆû ¾D^· Ý‹V9DI7q6üb‹,¯×ÁZB:_†­X0öí€Ì%\%á8£Á]¢ûaR D°ˆü·Ö·„ -õ‚oÆ`!caÎ~¨os›y„ïÍöÔÌßÕEãƒrÈÑq¦@¥ˆã@ŽO”Š˜*Ä¥¢Gߣ‹‹Z÷˜ß}cšð5â9¡ZJޘ“Œ:ޤ’Þ”êÞÄPeu¨³jPÌ—ÚLÙ xP'Žêœ-îŽ2¦‘Ô<¢Ù£ƒ¢Dlj8šÝó #!¸2$…Û>\Œ{žZ.#õ>ÛÊÒÍ­¹³ÅÑâ¨Ëå¡`){‘TS¬ŸÊ|ʦÈ.™\@$”ˆ S¥67AØ…)³ƒÝ7i5œù®ìhú3™Ïþ§Ì? eT2Ÿ56Œ*H8$)MÈ·0)g¶ôc]:»YµóãÖn]>»iê‡.,·v°ÜØÂòË#E&-çĹÆ-âaPä'‹†b‹ÖÐEË °×”{“Ù4Ͻçluïgues[Ù˜ze…?Ò°Ó&íÙnW†<“Lnêâö,0ÒZ²¦I*<ë/¿¦Û=€[6ö…¬!݈vÖ_'LY5qú³I޲ Ù Æ7!L4D’ùú~u ÓÂ9“V‘`EÀ£XŸMî‹Ü´¥'Vu4”fx ¿hȯóÓâö¦Í´ÞöÅ.«·@¿ô{¹G::Ú,ÃãQ÷€g {[B1!!ž*æÀÐM#¸×t=hŸàFE‰‡®máBr3Z–0Ô$p·o"OÍ#˜!ž`5Ðöôs0ÁÉ@Êû‡K8h¥ ðôÊÌ(ª×% Ôº.ü åºR[ÊêRãxùL‡> endobj 405 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 411 0 obj << /Length 1185 /Filter /FlateDecode >> stream xÚÕWÉnãF½ë+Hvz'[rð2I L„\<Æ€¦Z6ŠÒˆdlÿ}ª7Š”© ã$‡@‡^Ô¬~Uõjé‹ÕìÛ÷TF ) Ãj)%’ A VëÛ9!tÓ”¤tþ£Þ¸„…ÀóË2«k7½ÚåíVWMÖ»jq·º™]¯f$Âð#VšH`’Dùvöev{‡£õ G73Œ˜JEô ŒˆR4ÚÎ8eaQÎ~ýÒɉAPÜ—t᎗4 § Hâ€+DÒEL0Æørùƒ®®ÿX<´¿Á“C£Ÿ?fÕƒ~¥ÖG½Ñ‡Iáp®Z'v<4AЉÄÞöUÙîkÜ·²B©â¤˜?a÷ÀÊÄØ–ÄÈòÆÃ)‹ß­t¿ï†|W–:·v·ëÝÆD˜û‹\×ÈÝ.hïö8\“IʹEñMQåe»öp é} JTÊ<ÜïFD&(áiâ€1¬â5z&Jãþì÷m AJëʘ€mÆ<Šó»pöçö¾,r§ã½½Ùùû¶²V¨G,M$â,A”"Ž=7>Q*F|š".SzTâ/ØbÜÖ?åvßië?+S©¤ä G$a”ãH¦Ò!iuðeU7‡6ov^©ƒþÒ]<î¯Çë ˆNíÞeL!©xPfF¥ˆN$â{`àFBðLÈf7˜0 µ\º™±Ôç¢Ñ‡¬Óç^?Õs¸Í¡€•½Q®®Ö¯¥¾&T AŸO&E â“Ä•n²¢Ô^Ø•®óC±9m$øMâQôüCž?³(¦¤È‘àâ) ó¯ª"çEíÆ¶vö•ófgÆd¾-¶.¢¥ÓKžè%½^r —ûvã( ç:«õðp6bwT×{[ºÅæ¸ã@Ï‹¬,_œŸŠæÑÍÚ¦(‹¦AX·¹ÿ#ó;]ø^ìvµH€¥³ppÓVg8 %™ML Z×ÏÙv_êzi±;¬ ðˆ2H‰Ëºn¬·~²aÂQž£¢B#þ1.N–®B2—è¯ CaZGîdM Zåõ¡rÈ*óE©»$Ò; 6<eÔGÙåiš{×ÅÛ`ûUWq.IïŽ.–'°yJ;p&Áw©ôzÄL~q0Ö0pÝ ?F ©¢`Ä”’n‹Ê8äṉLR$RƆ‰hz5y`†x‚Ó‘ò7€ „ NFÿXHL¬AIMÉI®™Â?Fþ]þ1ÏŒ±¶áo2®/µcÜÄb5‰˜g*å W)cSÈŽbf’Øt7ØJÞë'mmºçzLwÑYªËêŸïµYòAm4îFüêèúøáLg1ô“ÐÕÑI!Žx4É ü-^`oô¨=°ÿ©_W!ɬj_(Œ…¿0?¾©žŒ©Cé|ЕñHh¸6‡Ýö¤¦n Ø-¨€‚\=ô5÷Õ±ëì{µmbgßžœ¼WSx˜ˆ•ü\í ¯U ¯S–ZÞ@/*¢„ €õMŒºZ(:o½QnŒ«ZÿpK—<ñ¥Û'»1 1Þ€ò¾ )ïùÜŒð'n8endstream endobj 410 0 obj << /Type /Page /Contents 411 0 R /Resources 409 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 408 0 R >> endobj 409 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 414 0 obj << /Length 1074 /Filter /FlateDecode >> stream xÚÍWKoÛF¾ëW°( R@¸Ý'—ê’ØM pR!—$(r¥H…8î¯ïìƒ4-Ó¨-ùPè@íîìÌ7ßÌÎì¾\Í~½ ¡£8„ÏjãÅØ“!A‚ê­²~ŒH¼¨Àþµûj¹üC•W ‚ý¤nó´PvíU‘4ýû^mT½ ‘¯ÊT¯RI¸O[|^]ÎÎW3âaøcHH$XH¼t7û6ûø{Ù {—3ŒX ïÌÇÔÛÍ8eý ˜ý5{7è @Q0ÖôÒùD8b<¤½S|”cŸÆG:ž€:ü÷¼n»¤pçšv‘•‡CycxBý½J1IDïp‰‡(8ßCã΢ÝÚ\'û[%ÓVíVÕcÏÝæÚ(Ù?ÇQ5ì§Úëz]Õg'…_÷©ifÖUUXzŠ©Q;2¢$+Õš¶Ê|þ¶û7&DîˆÁ Kм½9‚Ìûýô?p(/OpénöîkSw{š6[.+¨Pæ–’ìúü…™3³–Bó?Ò«¬Û¹ƒÒnóænaûe!¹ïæ6]Q wÖír_ïé~÷¼s ìYw ÂуþÁ ÏÂWu3´“ÀÓ±íAÄó©r‚ІË,©]žðíO÷aÈ3ÛõOÆwDO|’½rœ éÍùÕù‡•ݘ©4¹kG'Æ}¸ûŒ‚}{Éyf:­bÓ¼O u Þ°˜V™ú’—™úñ܈]íͯŞ…„±Ó‹#Eý[1„·¡~5ا"A„˰¿sŒJ}EX-bêwÎK]/:·"쇈¥ÀK.íˆbBûn ‹À¸”Ù¿k—q¯«7ð8ëÝÿž˜ð‚endstream endobj 413 0 obj << /Type /Page /Contents 414 0 R /Resources 412 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 408 0 R >> endobj 412 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 417 0 obj << /Length 1011 /Filter /FlateDecode >> stream xÚÍXÛnÛ8}×W}(ì³¼èZ /M“6A d»F_ÚB%Æ&*‘®D5Í~ý’¢(Ë—¦Qœd#%Ÿ9s8œéÍÜyuŽ7q ók7†n àc„Ýyþe‚7áExòž®?ž*Ç“Ó"­ksúVdMI¹L%|úm~éœÍäBõ‡Z4?> ›•ÎçË7èæt/Hùî2 @qŒÝÒñ0±FáüíüÕãÌÐlˆôf8‚ðHä¹!V_††ýWŒýé̇p’ ^KÃøjŠáDiÅþ1¤Ûo_šÃzïÂWèCõAÆ28*ÌWçv#å>ð´{ŒAà!Ï!ĈD­û}0Ư§Hy¯Ê^¯8f=& Š Ú ä埜ÐJÒ_@ݽðµa¤tk!9à%ž’Èܲ®¦(šˆ¼É4¥ä§&hÀGÄ?óÀA´'ã’Væ§RtÇí´®¬Sc+Ïþ0¬ÿXÊóg#§Yz{ü;t83¬¹<¤QÆ#’#m³C%TÓê¡ÇÈA"@`쑃¬#¹J»31Åþä†×ö{Ö)¢’e}€d¹hEçwI9­RIó¤ìKܘ °ä$­w<ÑÁs mG[W8€ B#?°ixŠF±M$„¢ ¦]4Ƴ¢É•­Õ•Fc,ÒL›ßoôÿ´ÊkU¹V¥sÁ &»írÃäªkKÞŸ]ÝÉZPµ³{ÓÆdÃzÐï©S„ðýÑýý@&‚[í˜Ý ³?3‘Ó£“ ßB¹EŸ¦ ! »ÎIÃMeÓe#?šâ©êž­œQžulK*W"ÓQŽ>QÙT}‰¨šîvm޵Všú䣂[¥uò¿ ƒcnAÓòΘTÏ1Fd¿]™mÛæÓÕÖ€ñ)åKº]³ë„ †­ ©K‘¨7VúôÄt¢Bm n:Q½Ù@VX•Q2¾ÜéÐìTËñìÏ®§ˆ}'ì3žŒU4ò9VW¹YŠgXݧ süš>EÄ›P7Ë%­er°Å°ÍdFõ‰¾> endobj 415 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F14 69 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 420 0 obj << /Length 1425 /Filter /FlateDecode >> stream xÚµX[o£F~÷¯ðSdKñt®ÀX»/¹íE”vݾlV†Éƒ×@“ô×÷Ì c’lš*fæ\¿ó3>YŒ~¹ ÁX"À¿ÅÍXâq$(¡ãEúu"‘ÓxòQm.Oç󪸚<‰·u–äÊ®æqUÙÇßÕÚNI4QE¢WiHø„1ý¶ø<:_ŒÈÃ1ŠDˆ È8Y~Œ¾~Ããt„ÇŸG1‰ñ¼`P/éx=â”ù—|ôeô[+g‚f]I'Ú'NÇøpí¡áPFãdh«Tm NU?ØÇªŽë¦Ò–DÜ@'8Â8bFÄ5¥b:OþÖ)³Ô‰QõòcVê¯wöÛ58)‹Ê)½È»‹G7°L¬Þ=Ë[µD ÌI´oùf/V# ôyè«È §9)SµÌŠTÝÛ{+ï±w24# L—ÏGlSæñ6û'®³²èÙՔ‘ÃMGpîýá’>‰iƘ×Å·«ì-@ñ]j×*]®Ûz9p2-›•ÏèÑúgÌN¤Œîl}ëâ¤nâÜ>·úí«1â °òÁ‹½|{¯ÅkÁæ|«Æy€;’B¨w @Ÿ±A=Ê"D p‰ÝA(ÝÉÌ*é$oR«ãôÖ¾¬âD¿þug‰0­<ö×Ë*˳Ú1Ê]Vß:ŠüõãùÕ“VƒAÓˆ/½7…£ÁúÅ! < ¥#Õ¶&Úi·/»ÌLøÒ7$ÖÞ]à2€'gªŽ³Ü7¦3U%ÛlÓ™ìºÉÇ¥L2‹ÒÅ­Š »Tï9ûX(t*¥èD* `Âí¨ÓÈ;€X‚ÍE;Ü”ÛugòWeS÷v>Tê+Å õ7 ÃÙB¸Ü=öBr1BŸòÕ1a9ñå a”w­Õ{õêVv7}ìÓÙ±ÝáÈ[³W4·½så ÄÄ|d0µÏl¥ySg(ÄX¼›èýo¸Þ¹.ûûn\¤ƒ}$KTu°+v \d?OÂñV³¹Ëe ñÐã: GBLzÓ„‘„g@"ô5Á…±þü>^o ¯sã!‰Pˆ¥îxrç ²[–'M–§-\Øádý%À'·(I´û2`íþ?ª¬øþ©¶\Qµx»Á1Y˳–Ž| ‚âÓ=ή tNˆ«ªêöÊâÉþŠŸUmO¡¬è,ë±ïcf½z¥â¤ù®“¡wõ`V#=$L·gI-äÏì})ë$ÙUSžù[T€‡Þ´wlê™ÌÖŠðµ‚nQÏOÐIL&ÿýŽŽ ÷£M€dÈ"ÿ£ A„‡ç¢.x÷SI'ŽŸµé[ösç<´oê'#(1?Ut.~®8+ï ¦½ûÿ¾¯Jendstream endobj 419 0 obj << /Type /Page /Contents 420 0 R /Resources 418 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 408 0 R >> endobj 418 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 423 0 obj << /Length 1632 /Filter /FlateDecode >> stream xÚ­XKÛ6¾ûWøÔÈ@Íð!J¢‘\ÒdÛ6n/I°ÐJôZ¨M9z¬³ýõ¾dI–³›màƒ¬ápæã¼©WëÙó+Í<Ö›¹Àó8"ˆSBçëüc@H´XÒ„$4øMÞý/¿ìÒº¶_—Y»—ªI›¢T‹Ïë·³7ë™cø#Lj³ˆÌ³ýìËìãg<Ïgxþv† Ÿá#"ïg!eþe7û0û£“³A˾¤W8!HpN=r ‰-pr], Æ€·TuSµYSVõO¼’Ï3²  ! 9ëë@Äi1Z­~•êý‚à ­š"ÛÉ3‚Uõ s|§©e‘Ãâ´áËÚr¹1RÚ]cEd½SÁnÍObÑ04ü¯å'Œ©*ÌY̆ÔmÜÊ¡ ¡}– SÐÂæ6Ê24mFQL8雄~¿I˜1‰9“}½ZP”mõ70â@z/1pžÒ š0$ˆˆ†±/µÛýà0BsÇ÷³–…j&dÂIHÄbÇzÈo¯‹|B ›CÎ|¿Ä⬭'$.N"5nmûÒ²ò¾Ä æâ Y2"Žúà\àØ¿W»RûáèÓâsÄPB1uЦ†a¥öÍqÊ poÞ—C%ÚÁ:ÖÏa¼_PÂ]Zÿ¦§x‚CFa(:¯èMS8À€±ákÑx°c€]HÄ%à E\ ó1•J~i‹JºÂØ… M=•Û?‡AøýõS3—²ïÎܱš?åFVReq-›ë“s½³¾™ôýœgO-ƒ½8˜ä™Î÷áâÂRuv=GËb˜ÇzÑÇ”#Elèäz›îv.Ú]Ð4ÀûEăI«~ì¤Û±Z,™`A^{ ¨²rXr³•–|§}(«FêçW»x(¡²Èª¶Úz EÚµ¥%ûCY×ÅÍΉiJ»Ü×òáÇm‘míÂ6Õ™sW¨Ûîľñ‰-`ÆÏeÍ>‹ºÀ¯-½PÏ˶±ÿÞåMšýcß bx–&Øao ‡ÜÊÊR?QÙ­qNÞ}ÙÚ?½cÂÎä"䦓_I9–åO {Žn1/Õ³I‚fxh[Œ&L•‹[ƒžyéÃë)9ÍâžÓ7i••¹U^éRå×C‡]Opª2‡ `î \ÝÞÞÂXu=Òüè2>PF¬ö{BˆQÌé2œMuÂÅaâûÆÅbt*ƒ>%(d‰ï'iÓÝç©BBI£H2*$ñ?O~¸ÿ!ë ò¯¥®GÖª¹ä¹“ÅßxÖÕª’ûR¿XÊe¯ö&qíÖÅƎί¾9¼“ûéúåU«²“9ž2{³nö.|&^ ®sYƒ9»7‹œû2‚ &$Þñ…Òîšö»gàö{g¾)Ï­u¥b4îxà% ŠÚ¿êå=[p¸ÅÊ;ݾªÖØ8ÄzÞcaô¼_Ý[žq©6ºÔH× j,i›Ö–9µï­*¾´Càh±ä! úÑ:U@·‹Ó´r‚Þ9rRl©öHµ‹Ø³>s²ìXœ2<· €rQêd"½ßÉ´6|Èà õ vç;ƒ+× RénÜ­€Î㩦/’A_±«&@÷N* –Óà¯ZOfµÛÞE»ÞlG•ÂíD³NnªÔ. €íý%Ö‹Ú.¤Ê=oô¬b- ˦–žÆ}…I§M:œû^™êêc–‚Ôº«›¶>Õò}iNÆfRã[FB˜ùnTI,Œ¢7_ÓýŒgÚÚœ$P6T¨m'KC7í®i1zñAýè ã ŸÃ üõè«§ï;Ûo·0‡ÙñæÞ>G»{®ÌÁ>-ÔˆäÊwyUê¾k@³'ƒŠ¡0ò÷Ñ/&LA8‚"ïeCOá*-PÓž‡4— }*;tÉÁuÔÀEsOMhâSY©Nûÿ_Êz‚ü‡2Ib–˜R¡ÃO6 "¡ëÑà'mpé"ÝÇÊzÃë"á­>AëV¸û~ÄW¯B7·RL\$mÌ·›ª×’]•¾÷Íþëý­ì¾þÌ&R‡endstream endobj 422 0 obj << /Type /Page /Contents 423 0 R /Resources 421 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 408 0 R >> endobj 421 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 426 0 obj << /Length 1419 /Filter /FlateDecode >> stream xÚ­XKoÛ8¾ûWøTÈ@Ìò-Qh/I“Ý P`·ì% Å¢¶ä•ä6Þ_¿C‘”%Gvl¤ðÁ”4œÇ7ߌ†º¼}¼¡r¬’ðw·+<%A‚:¾Kï…ˆšL©ÀÁïzýõ*ŽÓùŸ‚ƒ¤¬³ùRÛgWˤªìò›^èrB¢@çs󔆄„„“‡»ÛÑõ݈Œ1üHcH„H0IÆóÕèßÑý§#<¾aÄT$Æ?áƒyEÇ«§Ì_,GþjõLAÑ´«ér0& —á.$ÄL Æ8øa¢)²ôX”qXaŠ;ÂÓVt"Á•j6UóÄ›©ŸÝ¢ïø+P[”ö:É]œO:×eæÜ®6õsæV+]?WäË­]-¼ÊMå,?nç]ìaH2º0×k‹a^Äɤ6¨®¤I†A(<ކˆä "I9k¤¿èïÓ<«3H• Ö¥c™åÎEÊ¥‹cᇩ‡Ðæ\øœ£ù5ö°·Ã; Á ¹Á¹gÌÙZlÊ&„9 âX›(Œï“©$áñ8^¿œ#l`Üîmhò뼚¶Þ¤„°ä?¬î?¯ ¤´°ê&bÝb®„9Ð…›ÊÐ/v;¤§[ˆµyÅlÀFˆ8T¨9T†:Og¾ÁR[| 9š+[†¯ëDÐ"",}½e¹¡Å`±ÑH &Ù^±­‹,¯µ#}]ì•]ªçɶ[sàŸùéSè ªRr:UŸ3ձđ©P³;ð:xoã8IÓÙÚéey‡_Œ¨vç•AyÏ‹ë<¤Ü·$‚Ô=6žz*)§{-·«íÄ7ËbBEð³iÒyÓC› ÁU»-=ÇH—d»ý)„ <ÍŽ)ˆ}ç9°u`ßÁº 0D@BtÚmÇDMz¦ 6–Òy½/Rf¯îÙDe'­6à)e…¦Ä{¿"`©W…YZ›-ÏïNÜu'ðñø»Ýô£ÂÜù¹k(™?ñ^Q±HúF6/RS#©ïy=§¸D<lî Š<Ô)ý)„þDÉ^{ê d6$Ãj÷þ'ßÙŽÄ/kGU/»òË ž'å™wó,\ž;˜Ñ¹Ëç‡óÓÿvº¨P/|R¾¼¨KXt÷ÄMDÄÇ> endobj 424 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 430 0 obj << /Length 1334 /Filter /FlateDecode >> stream xÚµXÛnÛ8}÷Wh_vm`Íò*JFóÒ\¶ÚE· ö¥ Ebb¡6éêR7¿C‘t$W ìl‹ )†3gÎ ‡~u5yqAã(Ei ÃÕ]”âHÆ JhtU|œ’Ìæ4! ¾V›·§°xzºÊêÚMÏLÞ®•n²¦4zvsu99¿šÃé´ ‰‹I”¯'_&opTLpt9Áˆ¥‰ˆ¶°Àˆ¤)ÖNYX¬&&ÿìôÌAѼ¯éÕ¨á–ÒÙ‚ÄœÍ ÆxZ˜öv¥œÅ‹Å_J¿›<ͪ¦ÌWj±¸WZUY£Š·;ç®±ÀðOÜ*7ºn¬‹/.ímMe‚¸H­±vë¥^•ZÝ8É‘óèœrÄœt_ vÞíé>ǽÏ%CŒpæ÷±‚ÆÒ†éÑÎÒ[_ê|Õªp«;S¹Ém–Þ:Ï‹:x¶Þ@oËUÙ<¸GÛ²YŽx@ GX’ÄÛpúæõù»KYŒBâK)ë97М JqPìÈ6®9¦XÅÑœ%©UF£9‘(¦™•>S×S]vLíœÌ7Úx¹¡Ds(€i`Ž£Œ”AKÔm‡Ã6¼Û潺S•Ò¹òàî¢ûiÝ /1Š˜ ²ÏáÄsøÖ˜ÕÓ ^fõ§BåÙƒ}â~ ‡!¹Kä8‡ñ€ÃAÔsØ{ ˜r<ýjñQº´þ»תYš‚ÄÀ¨÷ªi+íiªÖË”ìÊH[ŸœÐQ`‰é±ñ;(éÁA(ëO·*[>KPLÒC°÷’@Ÿ&ÐsÁ{ÐÃ=Ì:èa Ðs·üÛ4^ Yv(ì­K}ß—vsÿ…«/0ñÞÃlãAñ‚¥37@Ȩ˜nÝ ™ïbNP*„«ãÞ©Ço—e¾ôÌÊ|­ÒÆó`™ÍhÂ;¥ü‡åz³Rö¤ ‰që¿n–*„§ð3S•÷¥†ŠØùÛÉ€ñßs…a u†‡Ê\8ÿÚåžnF¢ÇÂÕ.)v%ØÇ%¢Œ'Ç/Ó_B~‚a«Ÿ[ƒbb.ù!yDçèO­Ad¯ÿš0`§îÂæi«nÀ;oÂ)ÿûÓqZ› íQeŠQ°îNõ§â³Ä Õtnîc,y.ÚäçØ{•Áƒg6öü`;G é9JA„…”~ùr "O¥èe½EúOo³W}r²÷€r“MUêæ©¦aNxŒbÆÅ8g¨ç̈°s®ïñYu Q\L¹8„(Atp¢åýD®ê]ôû‘xVw€“_“™ìà\øíäÑ^>ïÉû\…|$Þp©òÏ{}? ð¥Íºÿ™ð|Äù’çGàÇ=~ãî†è1€:Ëø€´pìb i }ƒñ›{¶1PD ‘œ¨EHwý}7w´G¦®Ëî–Üé3ßï2¦œ”³ÐŸÙ©ïƺ&*˜8hñH¯Åëé$±+vÒk!í²Ô/Lký'Òí;··Y÷®³Fcéê”زr‹kJc7k5¨«ŽÓº‡=7­ª¥Wa;ÏÊÏ›J©}]Á[Pµõ/ £ÿ˜è›ÇÚYwïÖž›Öb;&PhïǓÅŸ±ÿÿÛIOQøé$F©dI8ד”°HÂaÆezYwkõï‹ÂÕ,¥ÓÐ2]Úˆµþð5B,^p .ñ%ã®;RúÇÌð¬=3ßà¦@ø%Èäendstream endobj 429 0 obj << /Type /Page /Contents 430 0 R /Resources 428 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 427 0 R >> endobj 428 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 433 0 obj << /Length 1140 /Filter /FlateDecode >> stream xÚ½XÛnã6}÷Wø©5Ë«$ÈK.½(°Ý}Ù]ŠÅ8BmÑ+ÉÉf¿¾Ã›-)¾më6A@J$‡3sΑ¹ž~ü‰ÆC‰d Íôq(ñ0‰ ”Ðá4ÿIDähLŽ~Qëßn&“ŸUù~Dp”UM1_*7v³ÌêÚu?¨GUH©rnFiBxDÀÈçéýàn: C ¿Än$$XL†óÕàËàãg<Ìxx?ÀˆÉT _àÃö’WNYxXþü¾µ3Cã¶¥kîÅDá1q!ݪOÓ²h ]:Ÿ³ÆµË¢ô%‰kõ£kÍŠ¬Ë€@ó92Á7c’ ˜rn·±‰0Ið‰©_lÚÖŸ°ÀðGì¢^öÁKPÊ¥Ü&1DÄhL0ÆÑƒÖËc`L&z­ª¬ÑÕÕUð[à¹.ë¦íz¼Œ7®ë¦:¿p×/*O1±~ÍŸÔü/·âQW®£¾l²eѼîK…1[Ô*1‹^ŠæÉôhÔ<)÷*ï‚olêÛSæzm| Oàjµ™7Ö˜—Õn sMý”-—zDEôâÆÛ 8ŽÞ!43ž‚ý¯ Éói‹¬,µ÷»Q.;6>‚¤.ÎEH³ᅪeÚ¯îÝZe£ªÚlîßê@gÖf}µÎ*oâ!«æ:Wõ^NCÝT^œº UšÌ¨|¶¿sƒ«ìÀ|¦c…×zxoV½Ùë|1+òþK½Ìªâ[fÂê eeîåÓdͦ>K+µ„"õ L}kJ0”Èt—ù“'L ‘Öý¶%|ŠrÑÓ§}ÚFñO¾ ññ#Mg4zÞ¹$Ý•Ö3°NÎÆ:qXYDG±fPµáhÐ92ÐŒcÞýj_mÚF{ÄX¿ÙNÿNˆÏ¯Æ1¹8Äòˆ¦ïÊ| n|¸zÓ¸©ÝÐ2Ä9‹Oc#BIWî—†ö„{(;zA´ ý_9‘@¹S¹)Þ/äÀ ;`˜zÀ±D˜3~`¨Ð‚âøH…6§xD9á½’õ Nÿ/\ÙwàÚ»J§pg&pzý×7é–¡kÿÏnÎ, iH Oâprp×ï·l:’4ÚxÇïÍÑbãG„?4ЉÀî¿Gêï’æÔî“–mÝ#Ö­þú W‘þßBblendstream endobj 432 0 obj << /Type /Page /Contents 433 0 R /Resources 431 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 427 0 R >> endobj 431 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 436 0 obj << /Length 1398 /Filter /FlateDecode >> stream xÚµX[oÛ6~÷¯ÐÓ&Ë«HyíK“f[€]gì%- Å¢¶äÉR“ô×ïP"mÝâ:i† °.‡çúñ;‡z?Ÿ¼¹¢¡¡(„ŸùÊ‹°'C‚%Ô›'7>¡xPEõ×»?/àF`ÿbï÷Íåe¾¬¶:+ã2ͳé—ùõäÃ|B< ¤Ö&$,$Þr;ùwró{É{׌X¤„w7‘(¢ÞvÂ)s7›Éß“¿zP´5½uœÂ­lüŽ@ bˆ’i@0Æ~š•¿u³Ùo:û8%Ø‹2]nôl¶KÖ‹4id>cáŸ4wË<Û—&²7W‚¶,RFg!8h Þ¤Ù&Íô—Fâ–`à$Ê‘Œ¨ªì¬éÆÈ—f!è ˆD!å¼–¹ÔŸ1¦YZç¶–‹mÆVsE o.ò•óS§¶ S¸0Ñêšaµ™Oz¥ -µÿö±ùýX@Ú.îÒMog³|§‹¸Ì —÷ûK'³NªI!íŒqŠX¨¸MÙÛ·#É"ñH +Ò3át¿{×{gÖõqÙ½DVØ)ÀH…"òÆ'4êà…Z¼4Eo²0¥`yé·øXˆŸ¾§Á‚ó@ÅÃD*qª¢]X §Ù*/¶‡ýÙ/þY£êåã'1ö %Åã¥d¶”_Mar··Ÿ,Xq ck_&å}YL‰òu¼uE¯­ó „ Ž¥­X½fè#¤hZ¡w#•Wˆ„³µùe^•#ªƒj+vÜ!CHõ€ÂÁCŒ@‘õ¤Úîš…å]jÉÜqÒÏS!|ûlUm6G Ùö×;à­×ÒͱoápðéB'Ñ«º„Õ¦ìš@Èüj¤ÎV+òÜ¥®*ÑK ˜àðüͱ\žf`HŒd´…Ò¦„_¥6jf³Û¸Xæ‰ní%¨?ö”95Wfi^V×¶ÛlÖ× ³dñÕlõ”móàà:A‘M§5Ϳڶd¥R~ÓMû[ÔÔyÁÏ“jYN‰ïŒÜ€»¡'FúTX»‡žÕžðh ] TãÍmÜä·§¨kcQµ?‹»T‡»¸å®paŠò`[*o=Ñ#¯ò؈‰¸t"OóŸaºº ¶ÎèsF"¢ ©4<«{$I¨úÝ 6.T¾³;Ë;í:ó¯¹ïÂõå”zÍŠˆ(ª)ª¾8±‘ã$Y8ÆZµ@D"º¥&×=7>1 çOq¶†’ÞÖ–Öi{³ÌH#JÏ\µÉ§Tø÷¦SelÝ”éb\2âß`}¡ ëÅ)E• }VVl@iOøA†{áL5 ™i4Àz mÜo@˜•ÚZ첚 ŸBE¡·¹¹lÔ.FëëPó‚¡Hkl&Z;âŸbÞÎôuDß':à×1Ä÷¾`)ŒaìÇ?`µ¹ïW€ÉTsðgHE„y’ ÂF–zÌéØmWW€ù4¢~eÓ{m©ìaë!fϸ´Ä‰-ÏʤÍá õ=ÏñÀeþð¸Ö‡Ïxÿ&µHXendstream endobj 435 0 obj << /Type /Page /Contents 436 0 R /Resources 434 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 427 0 R >> endobj 434 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 439 0 obj << /Length 1176 /Filter /FlateDecode >> stream xÚµX[oÛ6~÷¯ðÓ 5Ç;E{IÓf P ÛŒ½¤¡JL*@–\Y^’þúŠ¢-ÙŒgg ‚D”DžÛ÷‹r1ýú‘ʱFZÂe~7Öx¬$A‚:žg7‘FDO¦Tàèw³úü~6»2å— ÁQR7yZ÷î}‘¬×nù§¹3õ„Ä‘)Sû–*Â#BÉäv~=ú0‘1†Ò* &É8]Ž~Œnnñ8áñõ#¦c1~€ ê5/Gœ2SŒþý±•3AÓ¾¤‹Ö'¼ç…[å\j-´Öe“)c<úöä®;ÿžB"S7fBDô8›%Y¶Xu/òò+~É;8(xäB"|Hoái™ý§üÚ,+»üÇþ1‹© x7%i!œÙ«=ñÈnÚCŽ0†¨b ‚{5™Œ±£*ÏŽ:›­M³øŠ1«ìÓ·×*ÍËÆ©ä´§’RŒ¶àVeZe6B™y ˜Ç%â±`ÝÖwNtX,ŽuÜ—G òÂ~s¯E_FŒˆÔ~œÀ %» 6¦!AL‰è6Ýäe‘—æ¶ÖgDž!&P’r$$áí ˆ¦ós5È`*|€mÈZ2l¡WHRîd\蘖y“W¥ÛžtB­1nE9v‹ên«zm{ EßQHÍ61Ö‚|,œ¡Ž¹Å¢GñÖš2;rbSæ?6fxð òƯBÞ´*×]̬u»—¿„8-¢ŒyöÝŒ¨‰§PGž@CÍSPâΤΡ]SŒ´–VDL¨V·Çd¹*ÌzÖ‚Nb¤ µz½+.Y7Û¸(¡4E!C.Š0a-FTóøtz²øÕèÙQÀÖíÀé縹Lv…û úé³éwoJS'ÉËmWÜ£`Vm¾yçCd”!ÁYÜQg0€8> à~I"&9äUæðêô7ß»E’6›¤pë­>vàH’OLGOÕÆ.8æ”UãiR!ëâšøÚ|5TÀ)Í•lç8^!€H*;dø¶‹µu« •|hAxÛNVªÀi)xH+Qí™Öý‡¼(œßëRîÉ­kÓlêÒ­m´m ÁF[ô°ÇïqK7Å»º ± Vˆ_§–ÕÒ”ÍfyĘ“bÉ‚~Äþ ØÄ9´F®<ÚìmÚPWdNMt É•ìs¯Ó³™á³³Ù5ÜJl®65 t Ô¤MUOjͨïnÖKyÀx(ÑÓ×j.L0 IŸi.ëJdRw¡à]Â{¯_:0rn¹? @r6€«ì~á÷cE”ûÄ€ý'WÜN‹x½mùâXËÿt9âŒ|düm€ @0JQIÿLœ¹Œ’~6ÙÃ_&D 7Ñp*EBrHeŒ÷Léþ‚-»‘’kPw÷5[Ãp7@´%æ¸c˜©P'ÀM€_‚ÇÏ%á 6/þÐo5bÌN{_òv|%Œýÿùž ‹î:LBÝw> endobj 437 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 442 0 obj << /Length 1581 /Filter /FlateDecode >> stream xÚ­ÉŽÓHôž¯ˆ8Œ‰µ¸¼DpšfÄ@†Kƒ"Çvޱiò÷óž_•c§Ý+#j{õö­ür9yöZzÓ… ËËiȧ¾'˜–BN—É…#¤œÍe é¼IwÎ`¡¹s–GuMÓWe¼ß¦E5YY̾-ßMΗ1åð‰›ö™Vž˜ÆÛÉ?“‹o|šLøôÝ„3zz ÎDÊévâJeùäóäÏÏÍû˜^Ž2.aéß! aŠ)5› ιóïLp§ÌdÚ#Q‹?Òâ#îGU“ÅyºXÔi³ÚU38e²Q¢U{1­šôç ïúÎW®9\œ ç ™3üÙkáöR’3)u C_9WåÊŠäZ˜]eÉÎÜ–eÝÇ>×Ìw•k.¾ ÝÇ0©PŸ-A¡AY¾îØÓbÉ\yJèé\jMÚ½N›4nÒä›AÌû—\Ÿ)} úbÂÜöè–<¦'e»îäÄñ'íÍi¸,+šdE“VE”Ój_§4)‹ü€ €sá3OºDëU ê–Ev$âyV˜»B†É%x%7‡äÚz‹c6¤£Z:ŸÒË´J‹85Á°Žª¸LRtTèS#p0Í*Im„-š¨HhrôÌs ºXTé¶Äí¬N¨°1 tœ!^W:뎢‡¼Wˆ£Þ‹(IV;#ðªÜXtÕ©JNNIWÞFàDŒyÇwϳv'èÙˆãrtK¦\!¡îŽ„:¿5ÔkÈZûÚZ_s𲑕ÒgW6RÌ¥ëlIà‰óðÖ^xgHz·‡$h+Ârs‘èÒ£a(Î8$Åâ0Iãè@Ó£L‰$©¼ûGÒæÕµ(ì¥UiéCWŸÐ®qYÔVèr¿¶¬ý6bl»ڳêÝŽ¥^ækÜÇHÞ¸‘¼A‚U>ã2¸n¤,6FÌøL@àùá;zó|¬Ýí¹¥“Õf,â|Ÿ`ZÀU›`q²ŽâW¤Î¤…TN\nwPÕ×Yž5‚ºÊšÍ˜ç p4—ÛjtöþÍùÇNÁÄRé1N¥ê 7À ®èvõ‘:qÄr±¶ˆAӡϤ†(¾z¨ƒßU)0ý|·^m{&¾5>†ÍgâóÖí¡q’èÈ-pE¡qÝ%d3èüû¤ :ð`pó/Ë2 {tªÞÿf “NÖ†³¨ñl“å œ.åmSVV]'ÛhÚB™þOô5èJ°P`ƒâùóÝ Íܰ߃õIXÜ/^ÜÔ,ìåÛüVxЄŽúoüg]–ù´ÿþ=­l=°;Æöãβ©=¦y×ÿ6›¶qYµWG*Ÿö䵤:ô4…iÕõ»\I}k¼…ÂÉä*Ãbf¿(i¬Ò¨¶Ö˜½'=‘Ã'£åy‰MÜ`TšÌZ ÆvÓ¬ bô6\¶ ·…Ûd‹my e¹^ØŠƒÛ8¸È]ÇÞY§ 4ÄCŠyÚXÔ†ö ã4IJøÇ ”e¤3ý·råþ)Í®6Y¼¡))V:Ѿ)·P) Ga;*jZ~·Ì_çæÊ%]i‰ãFO=¸ìT‰@›ÈàX§iA³(ŽÓ–ä|,5dGpD¢Þâh,(-xâ€o4´åàÉDÏáÅ‘Ð^VÐHêƒÉ@É $jŠP<¬Ks«!iŽk[-!ÜzH‚£YiPD­OÕ‚gõž\ Eæ^ÖÜI£¬ëlmy¡ˆõœ…b'ÀˆŒ8|èe¼¯=MnrÆÚìX'y\©û÷ ZýÂóÒmîñ}?b³1þ4íJIduÿ‡e¯|Þð<|@·<¬Û¿ŠvÇtr|sO‘û¦Ò”X'F;Z¦ƒÀ¿£I?dк'½;EÜî±=Ž÷pÇ9ùçï>%”úõ_n=Döôz¾ è—bA(þ‹.<[QÀîÕbÐиœÁëao„x‡ì͉¶á²Ð|áú¦ÍãBš?@èëö/Pï¤u»WåÏTJ«„ÿ?dendstream endobj 441 0 obj << /Type /Page /Contents 442 0 R /Resources 440 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 427 0 R >> endobj 440 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 445 0 obj << /Length 890 /Filter /FlateDecode >> stream xÚ­Vߣ6~ç¯àéÒáú7]º··­V:ézú²»Š8pv‘¤@n÷ú×wŒ ©‘ZE‘1žùf¾™ÏÆ7ï§;*}…”„a³óöcI „ú›â!Pˆ¨0¢¿éÃçiú«®¿„YÛ—ù^Ûµû¬ëìãW½ÓmH’@×¹Y¥1á¡,|ÚÜ{Ÿ6ñ1üÈHÄH0Iü¼òþòž°_xØ¿÷0b*þ+L0„WÔ¯ãDa[JC†&;ÈXpTÛoY›7…~F¯¶º.¶ßC"ÝöÚŒoÓÒ#Ƭ ©^C)‚éõ³®u›õºØVY’ ›Vª¦Òu¬¦‡ây[Ó42…&!H aS<4û¬-ÿÎú²©Á’%Ø8¶MqÌÍ«ËäX¬À¢ë³þØ9ׯ/3¨4í^‡Þ±Àð'ÎÕÙÞí-µu;ÀÌêb-ÝÑÝdÓÛ?CBH ó¾i/‘Ð#I9[¶¤°"úöÃŽÍÁTµi^x’âï ãˆ$ñI²ˆ‡Áwm ÝtÚü¥.F‘îM³ìäîXUµ³Û&?šŽ ›¢ÄÁ(GŒ+2 †ˆ ·ÂY¤ü´)`Ó|únêÀ2?aÎM˜pƒù`Qž\ô¹”£ÉÔea)ßjÐ%­Ë¬·ã¾¬Ý•ÌÕtgGã1î_»©Å¸©Ñ ZgÎ(ÐårΜþ+s¬µ¾­råT\ÅÝ™.:pwúqçÜ™ãÞõEš6]oϽ¬z·T¯Å#dÁš!©0s¬?|X‰ D% q&fœÇ±aÞY_>¯jŒNä(¨Áe%€@“±òï]ëç•9;ê×¢)C&ŽÐì×¢I$q,NtÈšJ(¹F L*øL0ºá-k—ýaL{qÞð«5Cu½hò­ÅÙ¼8ûbqª ¯v Œá¡)»‹}cOM7™¾.γmªÑU`{wv—õó<Ý.ò‚âs–p(ô\¹ì)+J— u-8Ózà"g §0ôk‚‹¾Tg*Î`Ï/í¿fõ³îœåÙ=! aì¿_f@7îæ#áZÀ’ñ–@œ1r$>¯ùصM¨hptU¿78ºád#RSÛÅÄ=;Ó±åÃsù©»mÞ~@ŸGúÿJ¿qÏendstream endobj 444 0 obj << /Type /Page /Contents 445 0 R /Resources 443 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 443 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 449 0 obj << /Length 1293 /Filter /FlateDecode >> stream xÚÍXYoÛF~ׯ P •s»'Éš>ØNÚ&J_à©•E”¢qòï;{Q¤L9†“&…xhwæ›™oŽåébòËKÉ.‹U qG Jh°X^N å³&$¡Ó?ÔîÕ<<=+Òº¶·ç۬ݨ²I›|[ή“‹ 0üˆ‘&b$XD‚l3ù0¹¼ÂÁr‚ƒ‹ FL&"¸ƒŒˆ”4ØL8eþ¡˜¼üÕÉ APØ—tꀎ¨GNÁØ—ˆâYH0Æø|þ»*_Ïž¦U“g…zQ.ߤ孺gѵRÕŒ$SUfJ[tà"€Bc$™ˆ¢cbíFÜ÷m‚Çè}ï±À;£X{‰ÕŸfCRäÿhÉbj/Ù¶(Tf¼mž·+{Ý95²ªí©½îÄ(¢œ?åeV´K‡•ÞÁP,æ°þ:"2F1Ob·œ`¬®ÑzDX$P,wkë|J’B˜è…|Ê0æAÈ8@%‘Yûº½)òÌøJmn 0æþe[Ô#n&â,A”¢ˆpf½M©‰e‚x”нÇ ¢Ãu°ÀÇ£¬{ûlwboþlT•6Ûª·¿Ò·Ï-¯ H-磉nmBo°q ˆdqcø!f\ÃQ"™ Y³î«­Ú ´8êC›WªÅ 戵)ßúú"`u’8oìЦQ"=+a{è·Ë€R C‰ñ>¡À×ß`Ó…‰¶æd¿ížÛtÈ÷âÓÆSªtr¨™»z–é->ÛzÝ¥6Q“KÔåÒÙaßxÖeÕàõ½¹îXž‘žŽ.cæîC³˜<Öj%éZ­Ô¨}ÉÛCbÐt`*óí|7‚š#™ß¿N,+ )c6då°…ßW1ÐE|¹¨z)Ù×G#À=¢ç#cd~ÔuÔÊŒU="j8‘í«þ@XP"ܢ˼Ԍº©!Å0”ÅŒÃøøñâ>@‚â1NƧ© `Õ3ÂH¹ÚORÌž’DòÛ&sôEŸž6¬K›Göÿ/e×ѱiÀ /bTG¥[:cŠò÷³zåÿÈ\ñ”* ŽÇäP9'ê3b=á£2Ÿß·ÃåÄ»fy(X@È~Þ õuçu/ÓŒA5> ý¶4;2†IÆ1g!™_: Ù÷Yÿ+zEO¡û‘ôqb|ÎI€GN_ý5§'ÈÌãgÌÃ}<’Шc$Ž#ßP4ü1À»}1“tÚ:§^h{Z÷°"æÏyìz&Ô xš?®»Cçg_Ê?}¾UÝ7­k™endstream endobj 448 0 obj << /Type /Page /Contents 449 0 R /Resources 447 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 447 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 452 0 obj << /Length 366 /Filter /FlateDecode >> stream xÚ¥’MoÂ0 †ïù9¶²ØmÒ¤GÛ„4ic½‡® P©[)büû…¦ÝÚmÊÁvœ8~gš»”T3-­I¶TsI`i’¯<ÍûÜ{2ϳ8~4õ‹ÜKÛ®ÈJ3¯óeZïŒ;3+ÓÃÁ¹K³5­Ê3uf³ Pø›dAæ Êí‚þA1H YE>ÉjÃiN8]έ=Ù€3ÐiEB Æ $oäõ§ÎÄš\WšöÚø6´aä¤%û¡ë¼ÉŽ•©»´+šÚmm›Ö9ݾe¿ÚN=€!ؙڴigòáfÛTãU3+ËÆGáŠzç¶Öœciâ ’… ©M0¡CÑ7·F‡êf<Š…R¡|9cGѳ?°ýT•ÅAð¨W…¦Ã‘b F¦À ŒäØÒ5ŒgâkôŽŽ…Â;á ˆXð8Œ\„p@wÁ6΢ÿÎ}?;{ß|íFùß «’endstream endobj 451 0 obj << /Type /Page /Contents 452 0 R /Resources 450 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 450 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 455 0 obj << /Length 1308 /Filter /FlateDecode >> stream xÚÕXYoÛF~ׯPÀ•€h»÷’FÓÛMSÜTí‹c4µ²‰Ò¤Ã#vþ}g/2íÊI´ðÃ.åÙÙof¾9È£õì‡7TÎcKXÖÛyŒçJ$(¡óõæ|A¨\®hD"ºx«ïÞÃÀ‹ã<©k·=)ÓöVMÒde±¼XŸÎ~^ÏÈñڄB‚I2Ooggçx¾™áùé #Gb~‘8¦óÛ§,<ä³ßg¿uzV h5Ôt䎗4 §`ˆrÀcDÉrE0Æøáá/º8[¼Hª&Ks}V-I´(7mj¿OŠkýȸ÷z«­˜.RmŒÛñ ¢"2Ší{ÜàtàBŠXÌA™Ññ |‡¹TÆùðH–$m<ª<ûËÜâá&nIË<×ö"÷\nÝzçÁÔÈÝ-èàîUwùŠ($)çÃwY‘æíÆ£%dpB0¤âˆy°?NèTHñHyðˆµ»F7ʤ@J°`ùOƒ A±´CÈ0„L f¤ìY{•g©³ð¾½‚(Ùý›¶°>¨§-g(¢ q"…s7¥b"°â2¢½{Ç„nG6Ħ¨·=¸{å6¿6ºJš²œ¯Ìöµã[ùdô|²‘®- ,LN\,%·&qD£à%€!{ Üæfxm0KïJl³J×#âXÄ|±1¥sáð>‰bEÞ1whS‰‚Âzè#á€)q, qÉ>+-®?Áx°¾jôÃáa òeæ=ç^éë¬èA?á(J‘ä„58:ÖÙÜTå’ŠÅ}ð”—ÒUD²mÕã<óOUàÇ%DP8üI¯´-6úƴЛ)÷tˆ¿Ê;ºØ|™oºƒÿÏ K‹†"4_ñ€M½G¡âŸè&ÉríM8ÑuZew¡AMÔpŽDDùÿ¦†ï$ÒN wþØ¿éMUJ¨T²gÍ!Ü Ö¶¶®&lÑ”î—ÛìÖ–gØ&nÙÏÖ6X;Û¼t]—i–4N!_Ügí`\µê¸Ð;);=ß/…XeR ¸æd:™õÁý¶µ¼…NjíŽYhðK[{Ý4Yž5™öjë6½qÿHj·v(ŽÊÒVzÅ: ‚Û¶èaÜgyîdîmhŠÆk)û{Éx×Ô ©™PP'3ˆú‰Kœ¬çPÒžlDá1½Ì‘žƒ†¦’û°Í:ê³îx·ßtù7úùÑÈø|Fº;Ћ§¹}'>òTã&¾q?s ƒ&¡ãˆtÕt;©ºšïæqG$äÖä4ðX+pŸ1’j·CÍT"“ õzb83Ãjל+;e|Òõ„ªñœ×wŽ‘6ðEDI°õ<+ É.& t3 ïB„ȾtRy `˜âަg´ `»ÀŒjZ?¤˜&(‘R˜'âýòJü»yÅ<ã§ÜfÒ G².“ö˜!¦/I8?Q™SãcD›É\zŽ=ÝaY¸²Uü›Np¡m<=«|I=¦ŠìÏ›þçû†jÞN=ž>XZBzØ}xëËÎu!H¯‚—6»ZÎŒ¤?*žrJP„¦IÈbÇCÒýIøÑó$|bæQ)@ ¨Ú£tu¢£Tú¦óñ?ónç£K„a0fì뿹 …O.ð¨Xd/ÒQ ­LÁäÍ• …Ø8$ÌÞöëeL­·ñÔÔúÿø¢IÄ¡À‡\ùœÀ„ºÝÖ¸sÄÿÞ÷9”À‡Ï׺ûòô7ðÒõendstream endobj 454 0 obj << /Type /Page /Contents 455 0 R /Resources 453 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 453 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 458 0 obj << /Length 467 /Filter /FlateDecode >> stream xÚ¥SÛn›@}߯ØGêíÎÀr{tÒ‹,UJÔ—8Š(,6^RÀuò÷]ö’X–ß*„fF³;œsæ°.É篘Мå‰eKsNÓ˜@@Z6AΠ|—/?nŠâ›Tw!ð ç®îåÝB ͱž»AÝWj'íñ›¾š&›ÞËVšcRÕº # Óð©Ü/%ÊõæÛ"e"J€Öò‡<>qÚN7„³(Ï=é‚3Ès¤c䋞<ŸïsVzÐê|ÒÚÐä4Q—©ey+·œ£ês5ÛØwÊÂ4³ÉÐÚ¸\é]S«b¸OlÏZÇ R–`› úÓ¥˜¿Bä8ËDðZ/NÙéYªfË×/|r¨TseÂ/C_ý*žÿ.÷¹~ÐUtåÞÑh†úxj®>„h‡Ñ&ó¾sàëÕžŒ\±“JŽÕ,ÆvþªôÃú~Q§NíÎU, ,HXe1Õ &òXp[D±t/Œš±8ÉP3YΜÉÅT™vDÑÿ{êlÐÚý9‰öP”yKƒ8M<¤s1¼œe˜cptrl–Õ]GØ¢¼ˆSg:è¤[dó»0ë·éï7o‡×7½OÿØ öüendstream endobj 457 0 obj << /Type /Page /Contents 458 0 R /Resources 456 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 456 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 461 0 obj << /Length 1279 /Filter /FlateDecode >> stream xÚ½X[oÛ6~÷¯Ð0 °€‰ã”±ì¡Ù²"@n5¶‡¶YI´Ù’kIMýïwHвl˱E,*ä9ßùΕz5ý|Me£XÂÏô>ˆq $A‚LgïÇ„ê0¢šh:~-ß\ÁBàñÕ<©*÷ø[™6‹¬¨“:/‹ðãôfôûtD ÄJ &I.FŸFï?â`6ÂÁÍ#k<Á#Ç4XŒ8e~1½ýÙɉ@PÔ—ôªN8b\Rœ‚!Ê¥aD0ÆødòGVü‹q¶ª³/{†ü•Ýg«èqV¤™1d‡@@Š™PVþŽ4·÷ösØ,c çÌöXà%@RNaIœÚ´îò¢‘÷åjḴ/’»²©Ýã,K“µ{üaçiV!§[ОîÈ+ˆB’rn1ü˜é¼™µÆÒ; R±f-Ø_D*¤¸Víc¼µ=“)Áx»÷׎KBP,„uVD€K†1"ƶaïÛænž§ÎÆi¨øx½Ìªn‰Dœi8L)„ªt‡?P*ÂH€Kj86ËžM&ް´.Wx55¶émã·|O0¢,ömâé-DÀ81~˜{Vy?™8¢\ˆ.0Ю‡Ýåêñ“ ÄKUßæu¶JŒ5ÖÄe ¡ºÍ‹Û V §’;îUŒ4aðÀ‘ÆÂ±gµA¸%üÞØèAå"/vôÀ6®‘œAl)ô—ðaiD!¨ž÷‰¥z‰0úˆÆì+œ6nœ}Š—´@”ñ7†‡ò7õ3‘ÅCîCÍSз›ˆo²Å]Ö ¾nŠÔ§ó’rŸ/¸Ô´WMú…Y0aëek+ÔüñuHXµj÷Ù ±û.–e•D—[ŒüSI¬Æ{¿¦·ÏyQ;iùìÒÿ¿§üŸPBñÈëȘb:AG À¿rÜStñd·V—ǃš0èh‚ª“+Ϭ¿ ÕoFÕ”Ÿ¡†c¿mCƒ’·‹<¬I3¯»®UÕ«fc×Pî‹6÷éNê5âž¿ÍrhËE^„Üö¾öõôò~ÞTÉ|^šyò,×ǡÏùªn’ù@!¬Fendstream endobj 460 0 obj << /Type /Page /Contents 461 0 R /Resources 459 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 446 0 R >> endobj 459 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F47 132 0 R >> /ProcSet [ /PDF /Text ] >> endobj 464 0 obj << /Length 924 /Filter /FlateDecode >> stream xÚÍW[OÛ0~ϯˆx˜iÍl'NêJ¼P.icÕö¨ ©i-µ1$î ÿ~DZSÒÛèiBÅNìœó}Ÿ}ŽOºÎ—s¹Ìg4ÝG—!7ްO &n·Û`>!^“PÔøÊŸ¾uÚí žýô0B ž+þb†:£¤(L÷†?òÜíÏR¯²&Ì»ï^9g]»þp釯> "ì¦cçÙ¹½GnßAü€µ¨;…äcƈ;vBT#ç‡ó}f§ †šuK'šRHÜPŠBM ¼û(f-7†‹ ¯œ¥‡iã·þÇ öÄ4OI®D:âò‚:MBü(Ä!tŸa–¶î¡^“‚&ò‰ç‰’ùœbç¡ 9É­lélüQ?lžR™Êøœƒ?s‰CŸ…+]Âd/D}^x,Ì{wh“ÿgàƒð•g`fÌ}ûœ~3˜ò+„‚.b˜BìêÇm”Ó[Po-?@ŒZîFî')2Å­„JÚvhI*?j˜ØžÔ!4ÍŠê½°=+¡Þˆk5£ë4[¿¶%Ê ¿ýBÏ“­¡³f ¡ôjoÕ¸-­¬ÝNŸ¼|zsVdV%Æ|BeDIa\õ–qoDºúìxÅm}6—Z­J©ÌfrÄ¥˜û]Düâàáwyzuª«¡=„”;!œax0‡V*û|_é&™xžðŠHMÂóà=H9²âM^¨ÞJœâíÐãzFOo¡é¥¿Ï ‰Œf¶òŠ…=13{ææ<)ª˜­Îá£BíþÈßï//‚5ƒ¡êÈL%"ãóÇÓ´+Vh3’}‘þ¶-MyUt-%’i™¯jŽÒy,•ÉhdRK9¿ïïw2ïF}ëà¬y<„ ÛSž/¯µi[2Þ$Ù€ÏW‘5º—ÊÔ7µY¹î›<> endobj 462 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 468 0 obj << /Length 873 /Filter /FlateDecode >> stream xÚ½W]o›0}çWð44\ÛØØTÚK»v[¥IÝ–·¶ŠpR¤2 k»_¿k „|µùZU©±1Ÿsîõµ}ѳήi`‡( à§7²Cl‹€ N µ{ñC|ìzTI¯jöý:;—“AQ˜æç,šOUZÊ$K݇ÞuÕ³ˆáTh\ îÄŽ¦ÖoëîÛ±…í #?”Ü~‚F$ ©=µõ›ÎÄúeýhq<òºHkÄ ó%³ˆH_Vôï)å®Ç1PÎÒ¢ü¢Ò[—`g—I4QWiüsŽ•ëæSgV?.úÙ¼¬ŸÝcŽW¾ªG" X·?|„† ÒùVª|Pf¹7l‰X ©í‚BÎIÅ*×£Ÿr—HGMÀ8 þGÿSÌGŒ± ή˜0X%”!"|ÈXTˆ@xœ%éØ|:k™ê^ÞpYqÌ£Œ0høH0±bØÂ$íWdúI­ny–Î C5NR3ª{[LKÁˆ *3£Î¬ª›êÇi”M×ä;ˆ$'P©Òøh-ÆÉn9ò†ÂÅÇRìÈÍyûn2ß#’‡K\ÍÕ$-7äd‘üUG‹HçÓ¡ÊÿS nà­Cp$q±•øÉ’ÊÔä¼TÏ+¹Ô $hYY+Ë[À¢¿Rï÷¯‹ð57Ìö«ñä …KËdIß>ô[”CÉoYò[×ù;f­ÎtëݪìÄy´9·Ðе",Bi{Œ¡PŸÒ4Ême_Vª¨T5ÞwµX”×ó4ÒE±Y~¸{f«lÚŽI°–œso0±J‚põI¡Ê>h¨Â˜BU×ùe½…QpŽ»jLp¤Ã† $yÈjÐ{Œý 3ƒrIšwÌLåÓ=âKøn)[€mk»jJ£2‹¢!¶w•Ò6U@Ú‹¡ñ"ÊbÕ‘ß–áòQéWúz|Ÿ|i‰'1MÀ Q>°è´„£Go§ˆŸàˆ„ï?ÇøÁ#À«6Œ*úuzÏ‹zÕ<%åc§ê²0;b£TñVùò¹µ|ÓdòràþYͱ~k“p=#¾ü¥­ÔÜÙ }=Ù>¸ Cˆ† ˆ0aì…(k¡M-iŽS=7¤Î¼~£ã6¯G¸ù!üœãs&LbBMkäRÞ†«s‡¾4Øç—±j¯®ÿýVendstream endobj 467 0 obj << /Type /Page /Contents 468 0 R /Resources 466 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 465 0 R >> endobj 466 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 471 0 obj << /Length 1181 /Filter /FlateDecode >> stream xÚ½WIoÛF¾ëWðdP@9™•äéÅ[ÒDè% šÉ(R©Æþ÷}³Q¤EÛ²:h¶·oáù|òîšÆD2†¿ù*8Hb‚%4˜/¿„Q:¨ÀáŸjû×Ålö‡ªþ™ŒCµkÕ½½º(³¦±ËOj¥vS’†ªÊ1ÊeH™~›ßL®æ`ø#G$H°˜ùfòïäË7,'8¸™`Äd*‚ï°ÁˆHIƒÍ„Sæ7åäóäïŽOŒ¢>§ó#“Žg) ‡‰µë+¥b mÇr­E«vY[ï¬ú¨YܪuQÙƒ¯Xàîɧ¬Z+{¼ÓËßWÙ¦(à ±§y]5­¶÷Ý5§A zÄ\ëA)Š9áAD8")1jôdf–l ~ÔÑQ†Oø©ú«jù„öoÓµãwª¦ì‘¦ÿnºp\–ªT­ZdËzÛªåb›íÚ"/UsÐÙ¨yšn+ÃÚ™_T`l••v·o\´êª|xƒ‡Z[loj}hnT§ù¢H“úÚÝY¹ ¤Ë€Že 061f#Úq$S óoF¡MVor‰YEÎŽÃ!Gâ^Kx‹@lœ„„¦ƒ© t¨šÀxÍAvÛõª¥Ê³‡!î‹\5h,^x™Snc1>ukžJÄRðásšË¤¯9ìÚ;e½N»Âý7Û,w23ûÉ4l‹Í”˜Þ›zåníŸ56!Hæ‚„Zw]6µ%Š×MÍ-“)åÞŒ¨ÃX342?†;d7?Žú#)chÀ(Æ<1l¯î³ÍfF4IQ‚¥n"RKv mŸ,Î÷E¹ìºÎµ)˜õæs8ÎïPžë’™âî¹ U ¿ôÜ|ìž'2lUÓ^—fØù>Mpx`dmL¸yòQ×Ψë=Çœï×T@‡F ¡q”&L– ®æ¦L«^ãÏZ?cT®b÷ÉgâkFL}5±H$Ä QK¿Gwhäë.…jJûñ»#ÿmÃgKýç*Ñ•+ö ®k‹/ÞÂùTÒpï ¸ÑJïݰDÌžñÄî(&Ϋ)Ý”gRÑ.o]N_Ö÷kUyóÿå(î¶endstream endobj 470 0 obj << /Type /Page /Contents 471 0 R /Resources 469 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 465 0 R >> endobj 469 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F14 69 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 474 0 obj << /Length 1559 /Filter /FlateDecode >> stream xÚÍX[oÛ6~÷¯ðS'5Ë«.ƶ‡¦Í† ¶ÕÛÒ"P$ÆfKž.Móïwx“E[N¼¬?ˆ”Éïܾs©×ËÉ«KN”„ðXÞMÁÓ« F,‰Åô&‘$¡Óí„Sæ&›É‡É/=΀æC¤×VqBP"ušS0$2Š'ˆRºŒqð^noem^Î"<ìd.ïNXpàM9b<#b¡[Å¢8hÚ|±ø<#8Y[ÕŒ¡ ñPÄ€ªÀ¾‘¡ˆÇ‘] ¾Xü ËŸlZ·E¶‘˜GP$xb·}ĘHç(‰ ³k¾Jöb‘UeÓÞ­¬SkÎtN†˜ˆ)Œ´óÉž¿ƒž`ÝÊ/‹ÅÎ*ÜÜåÍ1HÇésNÁÏÀ<ëp­·™Põ{õìÎ Š2«¶E¹2³^¦Ö¢G"RÎ5Ø ®¡e¡c­—§{S”ÒŒˆ fPY†¨-û§±mገà Z£qÖ0È#‚Å5ôÉšø Öð¯Ëzkª®ýïhà«êkÒF<—6ƒ2¦xÃÀlOfIs¡,ª»¬·ä…-`Ò}vA#}A;‚x ìÜÌãàrF8µ¶ë¬B°î…Q‚Ó4b'†5»ª)N¨Ë"œ;þ}g Gd)mðK£Šy&û'üIì¸(Û}æ4(NXä3´ÈG4"QND¯‘^!†h1"aâ -Ш¢Ð.xiâ6`ì³P²X­[z›Çú«NHˆ8¦í^Wµ·ó&äaÛÏÔÝÔ¦Su \ Æý²ä†"ºyÕÝöuÈ+1Åœ¿Æx@^Q¡V‹ ^¿ŒU ¦4§Tø™ *²*—ݦDĦÖs«ÿGE!ËÎm&¬o&çf¬–¾ÏØ^Éx²b„£þtQ”3ŽƒÏJc³q„f…""O…S±ƒÂݬÓͦRù}Say Á‡S‹Ð[á™WÒT˪=€Ó³vmƒqùÛ»w.xÎ?.h®7Ø4 è( 2".j™¶NJ:&ÃÁÌÝqÅsŸ¼¶Må1‹9¸ƒ"!˜ öG él¥íd¿òdŒÛúr;£8è¬il›ä2K­ÆÊy`}#Guh+óüI¹Ò+†Ú' ß,ÅÉðè³!Lï×E¶6ü2OE¬SeÑÓ¼IÍ#Sá0 3߈MB’vV´ƒN4°pcm¸à”USÙ ¶†‡gÏ( IËFç‚~£Ô{¤™ÍÍ£ØB+l U&õ\ùT=÷ŒÒo×öoÃZ52¬Õ’îÌsÏZF¹aíL՚ƼµëLþê]Zæ}pvÂ9öU¥¹Æ­èùmšýiæš'ð¬t‘„A nXë`IhF] pï¡êÌ`Z jm!à¼SÔvÜÖRb9.©¡ý3¯Êof$¬–ºo¦eÛëèi;DåJ™®Y C—­áÙ-²ç´„ÃÊ÷«¼“µ,3åpiæù‹ܶ\‹„Üp–ðþ…Àü}›ÖY•KïmŒÜÞnµR«#|oé|Ìuf¿,óÁN¯† ûcRN­=FT55®[­¤‚ó­;¿Ã²Ç;ìÈ…ŠÀi•ãþŽý3üÔ…éTŸÞ7Mï ÂQ÷›¯?uÛ¥›Ocí•âQk½þzEïNQÓ`6²•7i^íZ¹çcseÈæ© ¦)@e{*ÄûȼuK‹Zn+51oN‡ÿñkùxtÙ•ÙÞoϹhñþ¢¥oüUqdˆG±ƒ¬Þ³ãé»=)\œvt¹çþ¹šG´?×í<8ÿD— †IòÔ‰ŽÆ(¡‡G:°â±/5#Ÿ cŒaìß5¹†!ܽXlN© î|­WE¡ËGõ¹@Z•]°—³„Í+ŬÎþ#Üý!ð‚G¶Ècb¿"Ýé«j=³=Ž=8}yXÉþÛéßX—endstream endobj 473 0 obj << /Type /Page /Contents 474 0 R /Resources 472 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 465 0 R >> endobj 472 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F14 69 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 477 0 obj << /Length 1514 /Filter /FlateDecode >> stream xÚíXIoÛF¾ëWðV ˆ¦³rH"—:q6 ¨›¨éÁ1šÛ$R!)/ÿ¾o6‰”)EI{È¡0 Š3oÞ6ß|óÏæ“_ßÐ(HPÁc~$8A‚Ì‹Ë0A”NgTàðZÿþ*Mߪêó”`ª¦SvêÕ2k[ûó£ºQ͔ġªrCŒò$$ŒM¯æ&çó 0ücGH$XD‚|5ù:¹¼ÂA1ÁÁ‡ F,‰Eð/‘$¡ÁjÂ)ó/Ëɧɟ[=3P4ëk:{Rœ Œ™ $cKÌM\çÙj½Tmª HŒ$Nd0#°Lº²"‹³M¹,Îï!hª{c¢«WŸò&ëò;”ç/ ÌoÅ]vò®n^ÕÕ”ãÐ.mÚ²®œ¸LÂNµÝ›e­§¦‡;EYUhnD.š²êfÆI”í1îmn§DèuHOCиôŒH$ ãÁŒa„ fÍkõcZ•¸b÷+ëìsYVÊþ¢’Ùõ}ê%K7iwŸ³ûÚü£·oÜ“(¢Ü&ØAƒ€!’¨Ÿ ½.kº2_ª4UU±¸×#[_°ÀðO QÌÂF­j=n…k·rQV{‚&oÇLµª[ì¥Òíô3^÷^ll›6ÈXxý¤ŸÜ~ÿÇâÝùÇ©áßïߦéõ”âPchq…”Ÿª`$®où³nêb“k0v‹p}Ó¯ìžÛrQYÝBM©ßüªë96Ç=U6€‰A¼9^B;÷êÓ´QY1Øû=2˜@1#|Kˆ# H8ôî¤×eq„1Ó4+ŠŠëMçO™À±Ø#ÖšK;ó4Ê8?´yȳRœö¤$â’:0°è„ÃÁ÷˜Ñ­:AƸ„±qÆâ< lì‡#ŠMw[—Õ­};bm†Q’D ÔÄ (ùÇž‰ÉÏÍÄôt&?ÀÄ1ÿ¯™Ø ô?žD$ŽR2a_Ô¤pÏêhŸSõAwþ'矞œc‰øõ=ŽÒ{,‰A×HiÔgý£$.ú$ÎPá˜åïëÌO^jG݆:Í[^WmgŠ>)SàÎKGµ—e¥úÕaxÉÛnªòëÆ, ÈU©3 µöȉŸß ‹I®Z7°YÙÚÁÎÏÑð‹ÞäÖŠ6þ YÁj³ºK@ wNXØÛ´æiL™++«nkq°Ùvè.s63ûîã칦3‰i¸…1к®É—/ ¶Û)LWî\p“&¸öÅÞíeÞè[×myPÑ()],UÖ9Vug~ÁµrgI_Ø é¡¾Eá- I UX¡›ºÙ 7U¶´Ãoá¡ìî ÷ÏO#h®pL ÀGÈ"s¹+2^ÃH†Tx ó0óN:ë[€Š!@͈vYçeF‰ˆr¸q6þ$Þæ_ëN¤»aÜë„k |ႆµ¶æ€Ùíò-àõâ®¶ƒä혣&³SeŽ­2w Ã|ÙÚ‰¬rOË£­[nnâAÙ7‡EÖec°\)s~†ågžÖvË7›vW ¬j_MÌHRAp}Wqw¼€Ï¡|37ª~Žкº=R=pê—åõ 6[&x&ǯ¯n´ Ð6굂ÚÐB*iÒø€Ê—‰ÄaüåË‘c@≽càìJ@Õåà`,9RXíËÆãÉ;.hÜE ’Lwöý+oРª³ƒ›¡1`ê,Ø…jï"^|£i‚Ký·6/Ë~œmš>4e§Æ¯ôÓ›)þ=ÍT~—U·¦µt6vÓ#,ÍÕ¶u鬦ˆ$\œÞY©ûn$&Ø”ˆDÏ;ªA-B1%ÞÖ%Th´)ª¸ï¾"˜3_Ø¢ÅÝž›à‡f}·«¦‹\æÓh#ù‘Æcïû^ w aìßÞë)ò_÷"”HèGÝK‚ˆ¾®txà>òÊ·¦.Æù4¡¡/Ÿ>h¯7nFØ©À)—®óÂÄ}õ¼ÑXö©¶÷¥­ žìóuýøt«*þ?Ul¦xendstream endobj 476 0 obj << /Type /Page /Contents 477 0 R /Resources 475 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 465 0 R >> endobj 475 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 480 0 obj << /Length 1371 /Filter /FlateDecode >> stream xÚµXMsÛ6½ëWèÔ¡&B|ƒšÉ%qÜ63=4ñôâx44 [l%R%©ÚN'ÿ½ à‡LË–ãNÆA.‹·ïí‚|>y{FÄ4B‘€ŸóëiN¥ÀˆL¦çéE€)›Í‰ÂŠ¿èío`ÀÃàÃ:®*{yZ$»Îë¸ÎŠ|vyþiòñ|‚§!üÃ7.§O“ÍäïÉÅe8M'áôÓ$D4R|z ƒá("ÓÍ„êëÉ—Éï­Ÿ98š÷=½ œÀPÚ¸#DbˆÏæ8 à -vWkm#nö±Xü¬ó?fð0Ðe­ï‹d¥“¿–›Âlf·Y&E^é ‚Ìv{Íü¯!áÛ‘±«Í¾ßžaÖ‹& QÙxþ´&$ì™$…d`i ¾ì6ûzUjmbYfù¼»ºYøáj˜ca¥œ³±Õæ˜3$” p%‘ Œ6¦_Ãä©If$‚ze0Šdf×3ƒk]ê<Ñöá•®oµÎ­³„)E¯í¥ÇÎZ@°övœ§nÎ ~G§e¹½ ¨ó@'uQV'³9 •÷#‚R×»2¯º@`³o pnñÞÄ7yVïR—óâÚþÖ«Ìñ¶óoÇÒÖT{÷#(3†”âøÊ®¼[ãß-¤ñ»]f>XžLßG–Š EŠZ è%‘"‚ú|²ÆôT7Í:¾Æµý]g¹Cƒp:„ÅLñò°ºÀ¸Ñ… ó% j1îQç³vüH#n—u–¬uÛmôS/¯7YîEsb)ù˜­ÎÓ¡•èYLO¹4üa˜ÞRÈA+†Ú¥1²~-®–4õ ÈÒÃÕÐgÎn-·E• Kˆ-Ͱ_~êèb ȸ/Û²¨¾:½ãFkíŠn&UIì—±ú…‹a`ûªèô²Ñõªp{ö÷Š|}o¯®ý„]åü^ÝKp„£Ôm@ûhÊë‘]0ŽBȬ36˜mA¢XÈ@rlP€(9;^P/_[’qOˆ33©Ø•΋t±¨{œUB´½;Âö~϶)•.˜ù˜(õôíx]Èct‘êµ®õ2N‹-pwÙŠs¯µ>ä?‘œ¸xÿ[ëÿ[–fy­Ë¼i@}Î6|¤ØnÔíbŒ×nÚ^ì·«,YwO!·Šé¬·¹³¨ §Ý“¶ JuÌYª«ºÜu‚µMÒ¬²Õe ·ßqö9ò $ú1y°¡<Òa]t;§Á²Vé4IªD’)Ù•Ž½w. áL;Ê_åø»OUÞèeV[!xÉ#µ±¬ 1Ý4‡Iÿêf~Žómcbƒ‚1Qªü¦ËÎlX2Æeä¬Þ(cN98–8‰;²Ç›l=V„)GJpÞ•Õ‡'Ùaçˆ1å#¸ÈrÃ(48¬BŒ¡kòN…¶ö´ Ü.Ûnü%$eREÒÕs9ú°†õý,C-¶4yôÁñe5z&-Ut˜–º©J=$¥K=8x,õŒ@Ú0ë´úeXû5’úç·o¦ð+§^ Ú¤Þü¾$õ¾ä¾yÓoÇqíø(¯{]Û÷?° ‡ŽfÐÍk–RàáÑ艓¼tQBøÞÁÚÀòBóˆ¿ö1´W»’U¶NáþÉàîuóI£ÁQðàdïèàŒà|çò |ÔQЯ1ãø›NÏ‘ÿ¤#Pd’mJ(R¦S‰†Jï¿!/Õ×óèlçPûdÚ¹']Ì<\0éÞ€CLÜ›‹9ùÓSï—ï§ÅÝýn¿lýGg endstream endobj 479 0 obj << /Type /Page /Contents 480 0 R /Resources 478 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 465 0 R >> endobj 478 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 483 0 obj << /Length 1285 /Filter /FlateDecode >> stream xÚ½WÛnÛF}×W(/ D뽓—Øu[#-Dí‹m4µ¶ˆJ¤"RUü÷áîŠ¤Ì¸Šœ‚°WÎ圙ÝÙw³ÑÙ%×ã„$šÙý8¡ãH3¢8ããÙü:Hçá„+ülÖ¿žO§?™âQ˜Mm¾Ø¥óeZU¶ûÑÜ›MÈâÀ™)Áe0¡ÂÛÙÕèÇÙˆ)üX£GED ÍÆÙjôyt}KÇó_(I¬Æ;PÂ’„W#É…,GŸFör& hÒ•ônÐ%èõˆHÂX87hõ3N§ùÜ.ßPEáÏì(+‹ªF§Î.ï(ãTªaŠ6Ê®ób™æÖîä´³s²ß:á’ÄQÄš/þ™jTcëðýå¿‘Í¥lvî_AE0/‹×ˆxí†æ†R^¸ÅÝ"uóå;2ØVn­^¸ºˆí}¹±εíÝ…œ['ÂkÌWéxõF,j¿²&§«õÒïsß­ò‡…ëf弯]+“yñ`gËûvÕbÖ¥`$QŠ;Ppµgæ)È’Û2qlàÆ5Þu0Éü7ã‰ßæðÍî d^çeayH]¤ ¥¶'™´´ÛF åK·h#‰±–N² CL6Iƒ ãBíîѶë §÷Ž ã! v„T½Ðæ.´¿ÑåÚlÒYë„ýeÈUPn7ng¶_?.î𢩈ûýÖ^܃àPRþÕ󽱸Ååß“!w̭˪Ñz9ârf {¦š“ÙÑ„ÅÑq츭ÿ;ò?aòFÌO G:rîÊrùì­àõ¶åÁ¢ß1½Kþ`ͽë"ÑDRÍ1逥’$1í ö”ê)#"ŽdŸ@@üó6]æõã©T1I¿‰ª,{wÝÃ]9܇q;†ˆ—ñ #4V‘ƒ9ïF;~øÔÁ‰Vïò2D†$’<é“Q-Òå²Äw×gÃ^<ŸÚå)^±®xÚEY{þ×àXànŠæ2ÅÎåïïß{æ<ž°uº©óÌSÖ$ ä2±*Î7&­½–tH‡3±ÍF¶\Aoà‘"ÆøÓ$ÒQlâ8VÀD¹­Êæ¾ïÚTõu ã.G_‘à 2uu€ÀÜd©³x¨–ò`em¨KÛþ†P:z JyÄ’W€&onV®¾æÓn‘g g[yÀâ"Eo¬}葎}6ö!Ï[ÕT]ÚP‰U‡Sé·qÊd'N£ˆPÁÛC†Š¡Zª{Õ‹¼z*TVòêOƒk ÅŠõb2¾²G–v˜CpïÍÌ|àáq¹q"›Ræ”q¢ƒ+×-޼8›7EeÕz+c×'¶â‹QR _OºCr÷z•ß5õ«äM$`Ûæ¾p…i›kس¹†½ÆhhÛ\kF.׬0Ü/8þmù‹½ìÃÐŹ´˜[] `>/Î ©ö'I§@nôNîÒì¯~h—þPO˜…ñµDSõco[€p¾Í»á™ØÎ7®_oŒ9”Õ ÿOÑöÅÒL£ØÔ?üó²­ÏáðL¨ŽúGÊ1—VÌO¹³þ­¾¨¬Åë ý­ÆÛ—1"Æ¿kw¼Ð{wZ·¼8xèÇð¢gB¼üßäŸùÞõ"öÏ|\d+ ôO*"³0áÁÖEÀ²¾u+Ê•9jªèTFvÄ)stß¼ºeyÿ­vQ~y|0…wÿÊh`endstream endobj 482 0 obj << /Type /Page /Contents 483 0 R /Resources 481 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 484 0 R >> endobj 481 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 487 0 obj << /Length 1327 /Filter /FlateDecode >> stream xÚÍXKoã6¾ûWøV¨Y>EÒ@/ÉfÛè"ݽdC±¯ [J%9Éö×wø,Ù²ãìî¡ Râ¼8ó}CFóÑOïi<ÖHÇ0ÌÆeL „ŽçémDX<™RE~5¿_ƒÀÑå:©*?}W,·“×Iùän~=ºšÈÃ/qÖ„D‚Åd¼ÜŒþÝÞáq:ÂãëFL+1~†ŒˆÖt¼qÊš‡õèÏÑ­)šv-]¸Àñ^à¥û£©·e12Gu¹5~–=„7ŸÃ‹Ç¢ÊläA2ÉÓ}¤¬³åÚ,·£Ø­¯³ªkE0žØÊóeG )Ë–ÉM¦B+Èbã /j?Y›G+)…L AZ¿¹û¤\©©@™i}(j0K¥OIíg™ÁQž7°Ó*»_ɇ¢ôõó„à¨ðoŸ&DDÆnؽ:¬<YL6¯\ ì¤J6a’5!‘ùa"DŒ$iZšªúÑ"‰GUáí<¥Ü˜´u6°Û´ðHÛ6{vÛÌýìïmUûY“® &Mõ“݄)«Ö‹D1åÌyyg>aLs/Ëë,ú3?±•¶£UiŒÿbò¿&„›?cóø‚–KÔwÅ6Lir—cÉÙb‹,_,‹õâÞYXeù',0üÈŠå¨ÉÓSBUö¯9º^lëÅt(çÇ£èfÕ ãPj/—`K_OÂfÝem¯1A€œ#F(qjD)âˆÈÉ”`ì²õd‘ ¼òÚ„w»E ~ÀŠU†²±qè^Ä5»ÙÌìÛ¢¾Ìf°§ QÖÉÂå¦uààão yñn «;7Dc$¥RÁÓm–[„Ý…€º=mJAT( Æ cß‚F€q€z±y3¡"¹‰+´ \»øœWÍû,Ìâ{à~-?8VoâÇçÓôtˆ˜D÷_ìH;%¹j¶7›AkYôƒï€,fº£uc—&]%};Ù:ª:È‘N¥Ùðæx@6Õvµ2–\¾‰pâ¾Dô1&-~€‹D’+dÓ}Š]SŠ)Â@9È2µcY‡7ü!¡“|e ­ä ê4)UÊqå7@qR¥WvQñ.S˜ˆÅ¼ÙR¹ë܈ã–Ü?PnÊG Þ¯`iÖpmy2Õ€QÁÔŠ¶V”`‚Ū!¨ðí:mØû@?‡RîúuœQ.sUsМ×2õ`1wZd¡,ÞËkå„Sb•廸jQµ†¶ÝbùXQ§ ª¸ý’ UW!ë¦ü_SÓ~{·”ˆ3º3$Ãâ~ñÛCsèòMXT|ÏöZõÜ•.nhèè6æ+טíriÏ»½>{•§³ÙÐ]"ÖêH>©7ЋO„pSévióz"¢!sᜣ<¢Ã²tmŸˆˆ27FÞ¯ý¹=›Á"7ËÚ¤ [¶î²û*îRE4VyïÜò} o1…b«ÅqÓç÷ŠßÐ[}½·wEɃÎr„½\"Fé^Ó8EâV¡ËaÓÞL¿#{áÌþ¿°WIíØkÇ·a þ€å z+mw ÿŸçäÕžqT£q4xŸ;Iú=“=ì¾I‘x†ò]k?H۾ѱ>½( …{Ñ7yéº_Œb¤%Sî<§ )MØXÂiÈeÜÜ>-M QÊùDÓh0m7´ +ád#b&ðŒKÿD1¡~ö`Ö»‘ø©±ÿ õòeeÚïOÿE!endstream endobj 486 0 obj << /Type /Page /Contents 487 0 R /Resources 485 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 484 0 R >> endobj 485 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 490 0 obj << /Length 930 /Filter /FlateDecode >> stream xÚÕ—KoÛ8€ïú:-$ fù¦h —>w,Ðí{IÑW¨Mye9›ö×ïPmÉU7mR>P´f8¯ÔðÅ$zþ†ÊX#-a˜\ÇÇJ$(¡ñd~‘hDi:¢'¿›õŸ/Çã·Æþ“ŒSÕæÖ¿z¹œm6þñ½¹6UJ²ÄØÜÀ_Œr¦ÒËÉyôz‘Ã4v„B‚Iç«èßèâÇóÇçFLg"þ&­i¼Š8ea²ŒþŽþÚ­3‚…FÝ•^ †Daªö!Ž(IG8_ÚM Q½ƒ¨’YUùÒ¼kB(çÛ¼.Jû~f.Ň“0¯[½Í´°^ðø`Q—‚˜+Ä(ñˆ¤…ð.åΟ¿ßžùñÚT³º¬¼mÐ|þ†ÓNPD…·BµëÅN%¢šVêÌKˆîB"R³°ŒYÎêâÆl– )IˆxO½ó^wä¡öe+xªÃÅÂæåª° ¯çg»(ÀȈ($)çÒ+ócj W /:kóµ,l«Ì¥Ëk?:°0T¢Iäå9êð^5Ø:d[Œ×h  Ãd]ÈH´é$†2y"C 8ÄPó `‰4^ÝŽdˆ ¢Oâ†>7°!Í}*XÈO‚…ía¹³úÓfKM‹¶’Έ¾‡š”$]Õ+³ˆîËXîÉŠ×ʵ‡áìlÿ"xÞÙý몰uGµÉ’û‡©§Î[OsúÆr³ p”cÑã˜?ŒcuÊé×êï·ÚãzÏtaŒ$ÇÙ +ÏŒõ2÷Dðrü]ð²_^ú´ðŠ^0w¤·=€rS|1¡,§ŸT©ÈÉ)ðíD{ôÙíêÊTKœà?˜8§èˆëdõ^†zuþš•oøºÊ#=ýk;M˜<¡âå¶ö’_waîcëß…Æ]â;z2úËôdÇ{ùÃöÌÇ9Z”Ñž‰‡õòüH{vpùÌà–Ià¼ÿî»gg¡põ”p×dY¸zD¸ò˜‚ë„°OBü“TÓdÛ†wîvǶ}Ó63DŒsåg“öJ~í²êì¶þ|UÞ~^Âÿ>¬6Zendstream endobj 489 0 obj << /Type /Page /Contents 490 0 R /Resources 488 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 484 0 R >> endobj 488 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 493 0 obj << /Length 1112 /Filter /FlateDecode >> stream xÚí˜MoÛ8†ïþ:P±üEÒh.m’6Ší¦F{HÖGX[òJr6é¯_R¤d1‘%í.ö°ð&4ÎÌûðCz7½9ű'€ˆU3¹öôXŒÅ{“Å¥BÌÇþG¹ùô^u(ô߯feiþçÉv-³jV¥y\MÎG'“ò ú¡Úe€’yÉzôçèò z‹ôÎGÁ©÷—ê@€„ÀÞzaÒtV£/£ß[?¡rv=½ë «.3q €1ˆfAˆ „þ™}ôgE•&+y’-.fÙR!AÈd6+›¯Êú²¨äÝx¼±Æå4ßVÚúß!…\¯^ëܽˆ‚1õB„€ ÔÄrVÉbVå…™Q™½9p'ô˜B‘P™jëbgå$ˆc€…RÅX ÚõÊiÜÈ•’äV–=®(LðÆR儬ì…Hp Á^ˆ#A†jkUŠežfK£þ¦-‚+Ï!b ÆQT:–ß!ÄYZ3R›Î*Ó®ÒÌVAÔm~mZ=¢q¬J^¯Iú&¸×²Y"-•Г¶C<ŠDø‘ýòO“<+«ij¥T³Ä|7v`؇‡©è\.ӬəÂZŽºWìÑ9¦€B[ù.ÓLñªWB„'¹Îe€¨ßNjrj•iêß/tùRy£ˆÔWUP-#]Aܸ9¬óB-;Æýù½i“™ü1]çz'Ú®ëšËâ6ÀÔ¯3kêú:#(Ý’|­Ò’fîÚ"¦ªÐÉ­~ªÜ?xþ8ôA“@Gì|c::êø© \¤ŽïºŠÙÂü)e5Õ¡fÕTꤚX¦Í€ƒ¸3wñ2Ü)}îRE¾øa”XG(ç @Î… ¹lj÷/áMáÿxÿð&Ðâ­¦3ÎQ[¦?äs¶`Ì0 ¬=ÑÙš:xfÛõ\ÿ0’ü§$Ô5’²> Y;ñÈã3ü'È*?¹)Ä})­Þ‰ÝÀö£ Š^‘Åóô‡ê`åhþÖÔÑßT¢©—UŒÇóC›®úæ1uípC×Á瓯“@E5ÔAω÷T<›"_l]¯ýa¡(ŠŸŒk€#'<Ü ïÉm𲏳lègY>f ÛÑ5uÉEêM’â†Ü·o{˜ED‚ÑÝ;i_dεB?˜Ù{fHˆBäfïÜ:@Ï× Õ¹AÈÏœè8j¾MÄ@0Âëü1\ â1PÄ̦¢V‚NªÙ»šõ4 ö·vµœëâoíûþ„è˜ÂqÄLC„Í¿ëz'êîyî¦xœßÝ/eû‰æo=‚ÂSendstream endobj 492 0 obj << /Type /Page /Contents 493 0 R /Resources 491 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 484 0 R >> endobj 491 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 496 0 obj << /Length 1700 /Filter /FlateDecode >> stream xÚÕYmoÛF þî_áO›L×{Õ‹‡ X“tmÑ­]k¬ÚÂP,9 K™$7Iýxo¶N–Ý$ 6 þ Gɇ<žüt>yòŒ†Ó%!<æ«i‚§QH „NçÙ/A”úØ{ž_ýv2›ýšWúc/oºüFO”iÛêáÛ|•7>‰½¼Zæ@b”'a‰ÿiþrr6Ÿ)†QzD„ Ét¹žü=ùð O³ ž¾œ`Ä’XL¯á#’$tºžpÊìK9y7ùc+'AA_ÒÓQ“(¼F;‹GŒù˜½Ï`WÙ+g³«¦¨:Íñ ÜvÙlV·¶4]ë™ï¤‘OžqÚSN…@”à6+•«5ŠËÙ"‰˜F ÓOšCôåĈ„ 3 Jý²Þt#¢CQ[NØ,Ñ›[ÖUkùq?`L áp l(¢‚©…=ƒÁABùA>MÄ‹jU7ë´+êJÊmØR®WŸæ1¦U¡æÕ‚Ô+‹*×#Â…Ô+ëXLK3©ýOÈN/Z.‘«Š+U plÀ ïÅÞ¦(³ÅUSg›¥ôÿÂM!GÛ }A7KŽwŠ7Å òâ¬W&üZáýR‚1lnó³-â‘e9Pñti[×R›*‘ù‚nW¿¾J1JxBööãTÉþ~®aζÈJí×¶±‚Âi€¡š‚¦Ð([„©f¦(éG_ã0øî²ž aªbUY;bv‚æ,ÚB§%1aC³•䢒Oêu—àùIÝhš<Ô ,Ún;­Iî¾[=[þUS¯õä·¹ž”BZMEùO¢í‚Ó×gïôè÷×>ÇÞ\¹*HÂT¸ wzöêl~ËAïü¹pïŸPï—·~K_œ¼2ÓÒ9[H½’Ðä¥:RZPcîýI çÃFÏÂWfzE–—9$“"+ÉÁ΃’¥«kMNðU]–µO¡µ38*XâHùÜÝ&ŽÄMÇ~Müy$ŠŠxl#}.2WX³9D~Ô¾4bðu—…j«è¤±Ř‘; ï!MJ.ÔÍ´û‹4ISH“D4I2…uiJˆáÒH3ò[£Á MR҉̋4Ée‘¦^,ª$‹D•r‡V'æüíC‰HA‰XCMúP õn%Ê$‡A™ä±øcˆ0ßËSI–(“äÔÈuQ&`ЗreŒCLBŸo™r “M'ç‘ Þ^ÜãØ@/`X;G’Š•~j(Äñ`Å¥´QÒJ?s¸Ç›<³¡v(ÊYåQp‹Ã­3ÔªqgЈ£˜ñÞ±BÚ=¦* Â8¤wU Æ›/àpä2^v€8~æK—‡‘w}Y,/aHcïZÝ?4èàu j!Ö„ïe›Ñjšò>£Ñ¾÷ÍA dlÚQEiÙÖ_Sé´‘m¡®t–k¤Ùr‹[OŸj› YgG5ì¦LýÁU{÷ôÐ{MýžE¢×6½‘ëŒåê6q Ý7&8<¸ð«í¢Z ñ Ĺ8¸rJypYï´ÍÕec°ÍÅP“‚``ßɽhì ?èŠÅƒuð.oδ°ª{@.îóµàHï¼(ªû´Ï SØ?ÞÍ;}ä®+v¾€Ãcº-ªÀÃ\~òìÓhMÀ4ŒÝz¥»yùgVi©ß6­Mìª4ôc¬åvK„m¤Ìe½.ª ›½ú[Å0¶!ÂÇ"ÞC"ìÙ­ý[¿©.¶64=Øô0}«ºË]=2©®h×°»2h“¾­±½BÖÃpZ6yšÝÊÚ(y5~Pº¥Y¶/@G\èœÛ÷ÌÍð±rÓ´¹wONèc•᳓r$t*ÿ^v‚c.êGÌNú ‹ñ¡ì܆í¿MOÊþééžú÷ÎÏÁýXöÁßüA¿'È~ÏQ±Ø~Ï'ˆð(Tv‚kó&í¬™6@syÜ÷¿”6lÌŒi‰˜ <㦦RLÌÿ+ÙŸÚdRÞwýwZßÜ^ä•5ÿDBŸýendstream endobj 495 0 obj << /Type /Page /Contents 496 0 R /Resources 494 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 484 0 R >> endobj 494 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 499 0 obj << /Length 1573 /Filter /FlateDecode >> stream xÚ¥XYÛ6~÷¯0úPH@ÌðEÊ@š¬7Ù EÛ›>$!Kô®­´Õ‘ÿ}‡‡lÉ–÷„xˆs~3áß,'¯Ïi8P°ÜL#<!Aœ:]¦Ÿ=`F%‘Ô{¯n ޽·y\×vzV&í*š¸ÉÊÂÿºü0Y,'dŠáG 7.g!™&7“ÿ&Ÿ¿âi:ÁÓŒX$ùô‘(¢Ó›I@Y·È''íøÌ€Ñ¬Ïéͨâ–Âê!JQ€˜ðgcì}÷ öÊ,µJSæówªøûØSU£~ÌçµjVë¸ò‰ô’2U+{ø æ8+mÛëó€ödR¢PâtÔ2›k¥ÉWšÖžhÈ9b@nÏSbÏð>GB¤„»CŸ³"Ï õÊŸ… ämU6*iTúÕ1Ç=ÂÃ É _QŽ Ã,²Fd)`”}Á˜ªJ“ƒ„(¤=x¦ô·"3(ŠØQj ì, ÂNÊMçLs÷Ñú’ãKŸpïºFCIÌHºTU©"Q‹õÖŽu{u¥j€v öºvñ$pdÂG¬åS±îŽÜƒ0æHаC ޵Hp,Ÿë(Žà ÈŒq¿k×î\l÷.Ξ(•Ï@ôqhDOEãÖfÄéʈ3„zµ ÈݶՄ}´¤Dû;,0ÁT @t€ªï͈E€VH§¥êÙI"$É>;ÙU0][dæÊ§ÜÁl<¶,r24ÒgD{@í;vÙ@³ @"do*¾E\(<Áá HšýM•©"íö"/«í·8ÏK­òIh­Ui?X뜚fÇš¹XÅ2æÅ…£véJ@Eó.Ki…E^ZŽWÜ6å \: Èß7Í„“!x‹ ˆs{Ä…´m²ÖÛ²u麘ŒO§–±E)‡=:ë˜|ZÖ% ‹ƒ]!ß0νƒÂ Že’hŸƒ“rU¯²n¦BWXÃ÷*+GéØQ‹ø8¿²mN3ìôí!1F9äO‚(êUˆEçèù¼R7¥« °³:6Õš "Ã2Óc¢‹Ìl¨1š]9'½}pmJ‚ÐZ 駪§ôòkÇ9=¾ëî 3È ûJqY»f.û \vy®s l+G•4ee?ü> endobj 497 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 502 0 obj << /Length 1022 /Filter /FlateDecode >> stream xÚÍWMoÛ8½ëWèTH@Írø!‰zØ&õnô°Y£=¤A È´#À‘¼²\§ÿ¾C‘’-[5œ4‡Â™Ôp8oÞ›¡øaê½›°ÈWDEø˜Î}Eý8"0:» a,1IƒôêóÅxü·.¾„@i «Z?ÙWËt½¶¯õ\W!$.2Sœ €€ðvzå}œzàSüA³Œ‰äøÙ£÷¿wsKý™Gý+®éoq@ (ÅüGO0Þ–ÞÞ¿Ÿ:í{ú0‰á0Þ!"‚„…0hðÑe>;r<^oÓ•5øF%ÊÁƒðÝD°½™ˆ £`b5;—õæ¦1ëÈ0ßI;+ÜœÝ3±(!q¢ü' Ä*n¬×[>‡+ÐÁb1!šw—ú¥¬Èë¼,limŸË¼Ðö_ öYÎ[x”-Ý;  ‚ žH–‘þN¼Ù©aÝ0Ž*@‚Ç»û´ÊÊ™~‹cEq¬C&Mª% £6³‰ÂÙ|Ö¬ÒªÎC²¥^ßåE¾™,7»…«rÝÀê&¶:_<Ôk· YuqQRZî µ_É3ÖeQ§˜‰ÊðkÓhØ5¼uù*ú²˜å¦riÉêr`-â¢ËsxÿÃå}¥«ݼï­>úâá"=s§àC±6Šnþßåµuo6c¿wkŸ#w÷z‘ÖÜ„ôÉ9¸N‹…8fŸPª´â­vf}‰cø­Õ{k!÷!„P® ÏX¥—iGa;•œÄ*áGuÓó‹ÎÒÝä…ÑþíP0¢L£éØ}£|—ê$ÜÖƒë@–Å9(©xV>œ–×z(Ì ¤ N Lö&ž%0užÀtSSŠËë båŒÉ¾.NÙ-°> endobj 500 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 506 0 obj << /Length 733 /Filter /FlateDecode >> stream xÚ¥•MoÛ0 †ïþ>60«¢¾,=µ]7Øa]°K[®£$»³ÝýûÉ–”ØYše(r“/©‡”t> N¯ˆR Óy¨p˜ @œ §³Û‰"A’è«~úvaG«¬iìô²ÊŸ×ºl³¶¨Êø~z|žbóƒ^§ˆSa¾~·÷8œ8¼0¢JòðÕ,0¥H¸¡~± ~ß7:‰J†Jç{'f™Ú¼"qDã0ÆQÓÎ&“ªiëd¤³õ‰M¾zÒuÖVu—÷éÀ@EBa“P¯wvfmF1!EJJp&w˜ãÝ86̉õedà›b„¥ηwÙ€#Ž;£OV-¯Ê¦µÓ/ºü› FºnõÛûÁ¤DT¤Êé¼´oûb)l¬  IÀg};¯ ]Îî&”+$(6µ# Q¦lYžê¢t¹¿ÄÀû¼»Ñå^”óª^oZÉ„I cAí½/õƤ,úï½CæÄVE©íŒ1ìj;·cç²ÒC^Û¸(ÏÑ&05<K‡ÝÄ\7Ùm»jlÂSV·E¾ÒE;l«1À” L ܘ:‚p4*Ä1X¢1mÖGºÑs]ë2×n§¿ÇÛl{ÿEQv­ßuŒëÐÌÃÙššMz£ƒ¼Å7?ÌÛtëüƒÄG’’ôâÞtÔ³Gù!âô qTŠüè#ë]î»Ež.]’³Ñ=Þÿe΢´Ë¢ù‹þkG?s‹….»øÄçuµö®Ú‹­VULxôZ”‹!£fÒç1*™Aoê®··!|O·HÄ„ôGh|¢e¯–8“ÄÜjŠÛª%÷¹ÉÊ…nÌñßPyÏr¨nÍwž8iÞ2 ôã/Ü@È?p¼hTv›¦„"©€†) `©ð›r÷•›ÆŠDÏŽüu×Ïî ·ð Ç–ÚÁ@\•º ù²|߉—ÕÛoSkᜄ´endstream endobj 505 0 obj << /Type /Page /Contents 506 0 R /Resources 504 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 503 0 R >> endobj 504 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 509 0 obj << /Length 1207 /Filter /FlateDecode >> stream xÚµWmoÛ6þî_¡a@`¡+¾J4Ö}h»l P ëŒ}iŠ@–éD¨,¹&ÿ~'¾ØR¢,NãÁ0ø¢ãñžçŽÇã»ùäÍ)DR@3_2'˜óåç©D„†áñôµùø~6û]Uÿ„8ާªÑêv6SË+uYhÕdºn¬äû2k[Ûý¤Vª q:UU®Â‹TÐ)f4ü2?›ü6Ÿà †6Ûòq*p¯'ß&Ÿ¿ÄÁrg“Q™òà; b„¥$ÁzÂõƒrò÷䯞E}MïBÌe‚xˆ'}„€è(ì÷ƒH‚$å‰Ù®Sfî4š5œ ×à ˜YósQååvé´cÜ“ä%26Œà/#º”°4q4ƒ ](%œ2'û«äa$97äEÀÐ8fAD)J…0¢çÛEYäÖGµ^(GÓé¶ÊuQWí/X FSÐC(Lž Bøn×½hŠ˜H‰3kÄ1ụAä¤ÁRÄ%{Åï|:¾<#µÝoçNnôíkÛýÓ­ý”UÞ“M×}»ÊÖEyçíxsÊ.…`)æ`C<µ¡°mÕÒ*еm[ål(‹u¡]€Õ•ºÐ:BU´ÛˆPÄ9åφ?"q²yª¼ÞÜý€a7E£·Y颒õVR  çþ‹˜Æ#êQþdˆ°±TR#tâ|±±“oM6&¬³¯!=vmf› e÷@@ŸCO³Fy©Fˆ…<Ÿˆ$ÙÓQbYâžG?î$.0;\WGÝMg_], EkGæC¶"I‘ X éj”Þ6Õ€¬M]TÚ§¬ü·Ï"óéˆxõj\ºþ¼QÐF\Œߨµª4:޵cfSϲ0ä|Z·úhf.꺼w¬?WÙÓA3ŠB}ƒ,S軣ØûÓÿooQÅ⢽„ð·eо—Ÿo”n¶þ.ZíÎÖNqíæšºv3p{¾Ôúüº(—/0ü»óî¨îUÿ¨é÷oÇˉ‡©3Å(œ>:±t2&¿u—Æ¥;cc&‚:/•Pö©é!1ï×>ž}]´ ý ®‚8‘nY†RÂä®ÊFØÕÙ”ΊÒ?T›7Ŧ§ï~ùÜÕî’üGù¼/˜©=4æ['˜€ýÊÎØJ :+sAve›í &ØìÒÚ) ±R¹6Æ&îJv}¹£©koíì ®ŠÊ-þ^èk۳磵êMò ñ´ÊëuQ]ÙI;µÎÖÎÊY!íz²é²1"±UZoõ\€WNP=·Nƒï¾­ŒŸ¡“Y‰FåÛ¦-BâIrâûô#„t$…é¡6§d’xº…cdáÀ‡EYç_mweµxÞafãß ½Z+“UËáÝ}^-ÿô+Ÿ^Í¥_e.]@aíKgð¬àS0žâŽ _Yå¹ÚèlQªaMï^t]9ïBÜ6³‹{±_÷Ó^ëF&GuyøºMá‹)}ùã¶§È¿m¼eiꟶa–ÿÚ3ç`9|HÌCI¦>žu>ߺ/Ü6˜Ïx> endobj 507 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 512 0 obj << /Length 1058 /Filter /FlateDecode >> stream xÚµWßoÛ6~÷_¡§BfŽ¿%ØKÚu[€[gì% E¢²äI²›ü÷=Ф"¹Ê츂@¢LÞ}w÷ñ;òj5ûù#•BJÂcµ "I „«ì&$œÏ4&1 ×»Oïa pø¾HšÆ¾~¨ÒýV—mÒæU9¿]]Ï~]ÍH€átÖD„“$H·³g7·8Èf8¸žaÄT,‚¯0Àˆ(EƒíŒSæÅìïÙ_½Z -]uÀñp ÃÈâþ ¿`L˼CÕMZû,òRÛ7¢¸}©6öi–îÇßtùÏœêºÕs"ÂGô€L|]ÂAJj2&¡ï+D¢óÁòT•M[ïÓ¶ª­Õw.izüù»$U|PÁ»à¬Dœ—®0Ë¥E cƒøq¹ÔÙ½^ç­®ðs4ôñ ÿÄyÄSÉÙéä’¾*iЦCe ÆÕ0TúC¡rÑ…ššj˜¡ Çì”w §4Œ „‰Š–Ash' (EË윟¬‡?œûÏIy¯',/á(4–L6Ñõóô‘*UÄûøÅÎCƒ1"R17a“lóâiÂP5–B¸i/Q$%°mD»}£3[Ͷ²ÏF÷,Øæ­SÏöÁÕÞVÂ1Û˜DHRÎ_Á,y ³ž]±ÎÕg½Ñµ.S @žL‰ù•j rLDþsúLÍt“ê2KÊÖN—þ‡ Ð)´Y—"/ˆ‹Wt„{¹Ü®wIÝæi¡›un<›Gœy~µoÝ‚¤ÌF+ahKsþnco!,~·ÁpbÆäfEXy’ï&ðr¤bÂO°z’ ˱„¥ÕΔèéR ½5 ÍÊÝùeá¯*‹5 É•RSÚ§á ߊxìïdÓIPÄ‘$—çæ×í>)n§jG ÄbI_ßfàhrq›9Ѷ=ï?éívá~Ü—é3œK5ëõ]U{úÅæÍºS¡£Äw#»½N6n8fxvéXô¬«Ê¥Ù5¸‹ö‡ÂoÙþãaéå ñ›“8„š]”EúB­¦þiŒÅ›Ê ”špI»'÷òíÄ7“A“ì0§"4=rÝÎIX­ žºi×>‘ÐtH$¹í:GÎëzóìÇ盪(*ãþëº+¬wy®d>ïhÀòg× m€Ú¨’G½6b6©<òòy«ÓÎ)5†3ÈñI—&þƒ £Ê³Ó^0,QL¥+B­Û}íéçÈ\åeëÏŸí’žè}Ê.â3c—ðùèÃu‘0öã—È¡+wù•pidqwÎÄŠ° "ˆðHvAFSBôõ‘®æŠ†^® ö½ûÅí_"–/¹;4PLÜíhcí›éàNm6¨m1O÷º¿Jjä yendstream endobj 511 0 obj << /Type /Page /Contents 512 0 R /Resources 510 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 503 0 R >> endobj 510 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 515 0 obj << /Length 926 /Filter /FlateDecode >> stream xÚ­V[o£:~çWp^V ]¼_©/{=ª´Ò¹D祭*–8-:²„lÛ¿66 $iEÒUlbÏíûÆ3óaæ½ÿB„Ÿ Dèe¶ðìKˆ þl~$ˆÐ0"ªÕ·iúUUÿ…€q šV=¦©šß©Û¢UMÖÖ½ù±ÌÖk»ýG-TB¨*Wa"4ÆÃ›Ù¥÷yæõ:³\"NøùÒûá]Ý`îaÿÒÈ&1÷ôF$Ä_zŒÐþ£ôþõþÞꉴ¢h¨éÃщþ”»EL;‡uTßëºÔ®K:)Þ4­Wv÷Ç…‘bÁ5æ8¯«uk•죣ÿzcbÿ…‘OTH$!:ãSf¯ŒÜf(‰º Ú XmÖVw5F”jàx,ý%œÛh¯Šª,*uã à¡#ˆ2M{D˜Þ$Ð èË?6YY´OFD›@"AëN?©kŒIU´E]Y³֮ƊÝ1!í¦^ØÕˆ”îТ СÑ=:½¶K‰&œÉ!iÜ‘6!'OcóíÛÞUŽ‹ªíà>D ¡ú«^·‘ îÑ UÞ¨¥ªZt.t\Æ'A—ç/b'†Ø‰éؽy-„?õý .æqlÔo†‘ž㾩®–™:¦k#IÇ—-‹ò)îTeÂQ®Ð/šzÙ‹ª^YYÖ!áÁCQÝ ^§_ £]©ãˆ'ŒÛì „ÉŽ1±Í q^ ûN[ä®D@ôÓ¶ÓñƒF¢‹Ù‘‰?Ö,¥¯øŠúy_èŸÆý¼˜}0C{&faB‚CòÒð¹q'Ü.ÀSŽSæfY‚ÁåÆÂ >š2íöû“]?ÕOš»>ü_¡{˜endstream endobj 514 0 obj << /Type /Page /Contents 515 0 R /Resources 513 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 503 0 R >> endobj 513 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 518 0 obj << /Length 1221 /Filter /FlateDecode >> stream xÚ½WYoÛF~ׯ`SÀ ‘r³7I¡íCâºn*ô%šZ[D)R!—vüï;{P¦ÇG—{Ìõͱ³og“7'TÊ$ ³Ë ÃA" ”Ð`¶ø.£˜¦$¥ájýáLßUy×¹Ïã¦èWªÖ¹.›:ú<;ü6›Ã±ÜD‚“$(V“/“OŸq°˜ààt‚ËRÜÀ#’e4XM8eäšü5ùsÃ'Fñ˜Ó[¯8áˆqIÍ)’8Å3DyŒ±S|:ý]ÕG°ªV«¯Óé:ouYTj^jÕæºi÷lû¨.U‘4Tu¡Œm À¥hŠVâÀÏÑn˜Z2A·ÉH‚$åÜÒýXÖEÕ/¼BF'CI–(öàÏx%(áiâ ­qhy€™(Œû³¿z{C‚2!,†1¡ bó f‘”%öìYQ•…³ëƒZ](ÕI_ÆíÝlˆDœ¥Àˆ2àèrN©ØÈ½;›".Sê»Ç-çX`øCÄž"&À<ãìŽy,ÀÁß`±nýèVÜÂܺ»iôOnë½gð1¯¯¼c[ó9hòæ„SP?“’C(E’z ÄR™Z½úN-©nÜØ)í>ªrUjl=îÐr+‚|Ví o$QÈÁž€@þòâï9uôëŠf}û ¯ËV÷yåÔ(Y!¥†sÌðö[aÿ¨ˆá âiÆž2GÞ7k·øËw€1³š¬ò"AèHs7<[ºc Äø™‰è¡íc >‘I²Á³ƒódHÊ€Ãþ’ðÇó2èÙŒkÊ……ÈÛjðÜG+Î’ŒÈm¸Z¥û¶ÞkÝ”µ*Óiù¶‡žæããõë»Èزí‘î?kU ÐQ_‘àFh•¹UÑËi|HU@ìIZFB„M§_LÕ‹¦©v2ì)öÍø9hˆúµ§Ô·/¢òÿ‹Êe½§ôøâ†,ÄI–A“ˆpcŠ*{›iUèá ún×7»ëA(>ÐÔÐ,{BÁÈ6¥rhÂæº™›àk;=߯ò»¥°™mFÖ+OÿêžÒ𠪦³DÄ÷–ÇJçe5 {¬º¢-×£K{·]äHð”?Ð/îvˆ® Q¦Q,l""ÂkóÏ:VòªrK{’š«ßÃîu™ûón¸jóõE1ãixqëÖ|ÓQ_¹©^¶MµÜã…ƒ¨A§²Î+'z5·}’åž…'† ñÚª¼Xn¬À+®ÊŒ¦ºp ê¸ÑÕûÎMšv½ÌkkÌÀf¨>æ;Ù²¶l‰CV œúƒ~ë¦Ô˦ÈÚfÑÛTp›cû|ºÂ*Øæ÷‹eY-Úa†9ìÁ²Û6Xol SéP°_£8€YÙ¹!MQæÎy0·7š¡³èä…®<£¦ö”{ø.µ'ï<¹t$Æë„$#æ oÝZir¨$ï=Ñ*_x™—m©F"xU/s=D¸/{ùpq€¯ï~Áã2¥Wòbçi™Â’@gùŸ_–#FÃÃRÂC’¥¶¿ ˜f„ È¡ÊÙ”\l÷î³(£aï5?5`ö~G¸ˆ©ÀSž¸Å„º¯Ëˆúxüжii_Ù_o¯Ôæ}ý/?žendstream endobj 517 0 obj << /Type /Page /Contents 518 0 R /Resources 516 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 503 0 R >> endobj 516 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 521 0 obj << /Length 1193 /Filter /FlateDecode >> stream xÚ­XÙnÛF}×Wy$ÄšÎÊáè1vÒ6@€6UûbMl©’#×þû^ÎB“2íÈ ƒœíî÷Ž>/'¿|¥q¤Šá±ÜD G2&HPB£åú|ªå³9xú›Þ}?],~Õå?3‚ñT×Fß-»´6yVèUntšªv»O‹´iÜë½ÑõŒ$S]fz6'B0<%\Î.—ß&_–aø#VµH°˜DÙvòïäüGë Ž¾M0b*Ñ0Àˆ(E£í„SÅä¯ÉŸœ9š÷%}~äe¢ÆLF’1„%æÖÕ/wévWèfÑ‘I¬d4'pL í¶¬þnòòúwïpƒ²ìĹš–k÷btclÀܦ¼*aÊKÔÊcpϘ9‘HÆ£9‰UlUé Œi™·g½pãžE^j÷Ƙr/ÕÆ=Û#…_t‰"Ä&jFÄôÝõqDˆ÷j1›3xBx—qD!O’|Z•©÷Y—×îq¦‡ÓgU¶ßêÒXW;%>‚㤧¯äØÊz²Ø.°ÀðOF‚KutT–¼(ªØq¡¸x’¨¾Ëô]\–‰uyxº—k §=S—ðÎØÔšrÛšm¬êª2#¶ó1&¤ßbûj¤-™Ê´«X Mð#-¯õˆî˜!8T×» )C ÆÂïz"•sBâŠÅÔîš®rÏFw9ÝæÆ£PÈ·¹ñ™ÌCgZ÷°mØr~|püš:9Teá±…Fohº¾QP’é•©V­Ðº1«Pã'4Þ@þ§é6/îg±˜¢Ð Êú¶,]Øq¯ÞlŠ‚²g {ÐËì={9kQÇ ŸØõñ'íîl˪]ŸûWgXð÷D‚AÀø‹æDJ÷ú†@äq×^˜á€^xºù(ýN$J”àþüùm^›}Z\Žu(À4<$á¸@«Wú'L ó»Þ^iïì×}™=˜s,wÉ’³Ž¼Àº?lº°Ž$Iš»a6¢$A„ÓÄï9¾&Z°h•€ÅlΈ|.§óè—°!–ŸïêÊèÌèõhr9Ô‡ÏÂ~r?x†Ý:l8f·æmjy☫i¶¯÷Œ›Õëk?7n¦¬Œ›HݸÙç&½*ü®Z›}]º‡—ÅÞ/µn»…+¥@^®×ääwbÁdo„rÕ×7qˆ’nÑr¦]57ii]lÜì•.ªòºéBÐ p ¨Ô=Ö°Ü¿o‰G ]k’@Y(¢R_Çn>/žB£.tV_Ý+!Rá7’ {D‚<Ã\m¥ô: oV.…=‚䂾ûNÆ2xH­µ.6Ú :¡Íóï_Ýû˜íœæOŸؽSó¨å_Ê̬ûä<¨Š9ŽŸ*‰¸¤/Æ©àé‡a×MJŽWÛÆÀÂ^•¯šÃ}4Œ‘…k"Žå¸úMàÛqWå¥ qЪãÀö‚/‰øUwp=NàL{ûí¸'(\Žc¤$KÂOèHº‹(X׿.Ônðq9Stº÷|k­ÞûáD,^À5ߎ(&Ô½YÌ Ÿ¶‚†MqVÝÝ_ë2¸ÿ?SÝa4endstream endobj 520 0 obj << /Type /Page /Contents 521 0 R /Resources 519 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 522 0 R >> endobj 519 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F14 69 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 525 0 obj << /Length 791 /Filter /FlateDecode >> stream xÚµVßOÛ0~Ï_‘½ D,Æ>Ûù%ñŒMHHl«ö¨ ‰ÛFK“’¦PþûÙ±CSh7Z†ò`_|w¾û¾³}'ëè|;B‘/‡ÁÈŽ°øq `²k‡°Ðõ $!8ßÄìòT ;§E2ŸëéY•.¦¢l’&¯J÷vpa}XÄÆò#­7 N}b§SëÞº¾ÅvfaûˆF!·¥€‰"°§Ú …õÓúþìÇ“Ž¼¾§“ƒw„€!Ѝ댱sWU…Š—é,âø«(¹rÉu#–q¢8¦C‘Å˘·PíJüßÎoðâi‚}¸;Ö–kOl& VO|ðÓôð=¦—l&Æ"[kQÚ_£®x›InÈNW=Í£*ÆÄcQ*…aTWÓÎTtΊ¢R·Èc^ŽûÏã6.â#FC&1âˆGŒë›€o¨•1?™ŠÒY¯4i½yFÅ# )"låÍ㯮 Yéz²P6_„Ò÷·d=G]GæËŒ†* …¡v@aߥÔG³ãcàFà, žŠÕ…Y1•@xÌqÌ-&æÀîkm„žÞ=uíéòI2Øð«&á'endstream endobj 524 0 obj << /Type /Page /Contents 525 0 R /Resources 523 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 522 0 R >> endobj 523 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 528 0 obj << /Length 1117 /Filter /FlateDecode >> stream xÚµXmoÛ6þ®_¡a@`£Ëw‰Æ¶í–m d±/Ma82“³¥T–çßï(’²äÈžíºIy¼ç¹çNG¿ï.© R.ã»Pá0– Jh8ž}(DÅ0¢þÐ?ŒF¿ëüŸ!Áx ËJ¯G£'x°÷“¬Òå´*J;ÿÃ|º\ÚÛOúN—C’ tžêaD$t@¸~_¿bø#õæ"F‚I¦‹àkðù g¯Œ˜JDø ¥h¸8eþaüüÕØ‰ÀPÔ¶ôÞá$1.©JwÜÆ ¸ÎÐÁ®¸Å.¸EĤõ¦`RÔ&ÍumM4¶ëÕ‚vW“IÊY½úÇ,Oç«™Û‡ÖLÁP¬`§žøS­Å<‰ÝµF†zŒIbÁ¸›û‹ƒd¤„¨ÉŒ؇“ˆ `Ý̽^ÝγÔâú¨·Ú1v¹ÊÓ*+òeED"Î0D9Âõº¡¿ïfn‚¸L¨slg|n°ÀðOŒ0rk"Â"‚oÌGb½×HWvüâ©ZOêEõÖŽýéV~šæ÷Ú•æÖ;ñî’Sð]IÉ J‘äD€K)'µK«¥žÙ¥Ua¯K]Ù›y¶È*'¸"w“t[>Àm]Q³p›ÄNFÿž)Ö ÞŒoƒç4Ùo¦ÕàÝëe5 ”×:cX‚W”tUÛA’“’z]§  Ên±ÉÙȆ™ ò‘&Ð^¦°¢À:À;@Þú ƬÇËñ˜¾Ê…–‹`„)Ÿ-OÙ¸œM<·Yª—;t1“µ¼‚ª-äzíâ^Ã-Wi£É̉ Ë+ϼ^îÌNÍxUæÓ¹}QyÙÌ_v „{Ðc²ÃEÃ<îœwñTìMÞÅŸ‡¸úJËYY­wO””>,›(3Üc¾S¬,¤‘(æK ;”¼ “G;øó‘”Cæbúï»têuuÃ[á5ÑÂTr(gÛé´Eô&<ýAƒ ?Ü–¡¯æ¬Èf5C›êK½¾Ê˜$Ý\êjU残:£º•yÚ„H´É8N¯ªãÍ›<:øTÀu©# ún#OK½Ðy…ÎésŸ³ÀÛa~ZB Šeu6go‹b¾•h'eÚ^õR®¿B!ʪ—³8ýÃwwÚòŸåßàöùKC Ÿï7¶JðþüæQ™l¦•°®‰šVþ®ù¶vؼÕ÷YîÞÜ•Åâ„oè®æð8½2ëzjmž˜ÓPSŒY&ÏYõ0)Ìøs>q]¨ì 0Þ%@é?ùCEoíÔ=- á|C(Û×bS©i·4õÛz´Gàó,¥Œ÷·y¦«D„4ý#ù ´ Œ%[Q<­—cñõœ¦ ‹0öí‡é–!––pvïÝQš ÂcéO“Fƒ?¢ŒVÎé+“z+÷ÆýÀ@ÄHàí… {¨hH¨£ì’ñÅ^-Ö/÷:÷ðÿvKendstream endobj 527 0 obj << /Type /Page /Contents 528 0 R /Resources 526 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 522 0 R >> endobj 526 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 531 0 obj << /Length 1623 /Filter /FlateDecode >> stream xÚíXKÛ6¾ûW=2³|‰’Œ¦‡d“6‚¤£—$0´2m %W’÷ñï;ä²d«Ù4I/E±XX$‡Ã™ß<¤gËÉO/¹š&$Qð³ÜL:#!g|º\XHgs³˜¿éÛç0ið¼H›¯ªì¸×e›¶yUÎ>-_O^,'lJáYmaDB¡Ø4ÛOþœ|øD§ë ¾žP"’8œÞÁ€–$|ºŸH.ü ˜¼ŸüÞ陃¢y_Ó3g8c$ Cî-çàH„†¿«g,ªVg­^£©oôþF×øüòXfÆâƘ ªh¦ˆ±œÎ9'2±Ú>r:É>Z1‘*æ`¢‘ùU—Ì¥®[}ÒLö¤e‰râ)#*#"#¯q3ãaPEjƒ»•^oõ ÍÿHC ÿ H–$JI£`.áʘÏ$‰TŒ”U9/EÛó þÖ:;ÖM~;ca ÝR ©0 ³¹€S³Z§ÀKC :J2“ ‘Å ¨y(Ü£«ÜaŸU‡‡•½<Ò,Z ½2'¦mU÷\ËàbZ¢A´– Ü“Ïc+IÃ6”7æÖžòwÐr€4ŽàÄ¡5®}ΓÍCÆÎEBh”ÄpeƲXYu á!a³90 ¢K·i^x_é&«óƒ´3ÚBˆpI„L˜ÕƒVpæ÷þÒ#Ï"¢¸”Vþ•]ÓÖBAà˜]NΤ†> endobj 529 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 534 0 obj << /Length 1361 /Filter /FlateDecode >> stream xÚÍXKÛ6¾ûW8—@BÖ ¢$MIšÒ¢­ÑËfahe:`KŽ$ïãßw¨!eÉ–ë]oÅbaR~œÎ|3ÒûÙèí'ŽQ!üÌ–cEÇQȈäŒg‹kO.ý —ÔûMo¿|˜NÕù?>£ÔÓe­¦Ó;˜àxžÕºLê¢Dù뤪pø—^êÒg±§óTû2É=&™3û<úe6bc ¬9\FDŠÓÍèûèú†Ž#:þ<¢D¨XŽïaB SŠ7£€ 7YþýÙâLhÒEz?h'‡i´7“p¦‚iϱu:5F¼ýÄ‚8§!aT ŒÿJE©ž ‰‚8¶2'Ýø•J ÿ $ïÄŒ„*Váú.+ë]²¾±GÑŽä„+I¤à°34n¶|Ô_)åyVgEާ%5þ®³\ã(”ÅÒ)DùÚ.¢ƒk4÷™ôHš’ÖVƈ’ 2h"‘Jª½¿…õö½¹ÕÖÜO»<Ý«ó±Hw×IóèØ…´o¢fqŸÙŸ<ëNÓbû8LjMwe•l…æˆj®'-òª6ÚND™3i-?qµÇ1†pA*nC†  x/dX)Qµ;ãv=¿k°\JQ:ÜÁHucΤ‹¤mYÔ:­õb0–˜$VÑA,ËŒxqV9ŸKÄÇ]ûÍ屈„<žŒ1‹. ÆÃ£>2\üÄouŸ©½¿n—‡Wp ¼Í\/¾éf"`’ÕóÂìºÏ«y¥ëV¨LòŽÔix? ^» לW­ML±ÆÊ*ؼh…3°æÊú-_à ÔæLùoßXŒ[{£ÏõQwË}V¯œŒ{äZ}‹-½ëixœóô¥Btsžå<—ñósÞj ˨)Â쓼™žàêØ{=²Ã”p*[9XpW8¬ªz1e5XG^H.»@d”p¡bkʼn7@LŒ "ÁŽ˜©§H—™~>«Æ£@"Š•ã ¡ðb7C\ѹõ K0IB‡}ÂÊòZç æKWoÍã2OÖ8ÛU–\Š|ýè‡ÒÌ™T[¨(êBÁc„‚Ç{((‰¢ .»{&þP*MJýª±¨‘ªWYeQ+­W¯J6vwr¸Ô&>ßèzU,LTÅwës°¯Æ•¬Æ ÉzyÚA Ðר^]˜_áU[fËG|x¿ÊÒ1‡@"¯N€Èí¾aõmž«p[]7IÎÄEÐÐ&2^;ïÀÓ>åYu2·ç÷?|¡¼N,!¡LVW}C1QA}ri±Šdü²b%ŽŠÕ…D¼/Vͤ-J8;[”º}XžÎЮÛ;K8 z}FÕß4Ï{¾yË/…‰rÃñ_ægm.B"âö¼3ý‘amû#ìxó"Ÿä»µå•ly¶Oò%Rè™–:Ó†¢ãI³Ý5u ÈÒx2ÙdHjWÅ¥ >6.ß_HVÍ·@uùɦàG61Žß¼yÉiO ÷àîÎàÁ—TÈI.çlœàú+¬LÈGöíç(hLdLƒ~Ù-u½+]¨âOÃ÷î°)(ûµ>¿ŠC\ü{î¢Ý7ƒÛ¢hªLtѽz‡{»­&L‡[MXxm/ » Ïvž×YnÜ2H\í†~›¤¿ï’uV?^êü@=~Vdà»Pl²ÿâÏB ÷U($*±û*Ä ¢°±”3>w,âLœùðθ³|6JïìŠýTÆäTÒi`ßU9eö Ÿ²C‘}zúX<<~Ó¹3ÿ_Ôø*§endstream endobj 533 0 obj << /Type /Page /Contents 534 0 R /Resources 532 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 522 0 R >> endobj 532 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 537 0 obj << /Length 981 /Filter /FlateDecode >> stream xÚ­WKœ8¾ó+8E Ç66/)—$›ÇH+íf[{™Œîi´Ý0zfúßoù zC÷Ž8؆ª¢ê«¯ìòû•õö ìÅ «µc; â”P{U\;„S×£‰¨óEÜÿþ;¶YÛêéÇ:ßïDÕe]YWîÍêÊúmeÃC”5"îÄÎwÖëúÛ……í+ #?ޏý ŒHS{g1ê÷‹­õ—õç`ÇCÞØÒûYÇ),CíwŒ(G> \`ŒÏ¢úÛ…™#šN<%É,ô<-;Ñd]ÝèpTI²@>Iê{={ýZë~Ç—U‘@€ƒxä D@òY¬ü£n;ï;ÆôI+—UÞ $’ºRš„( ÌWÒ…­J²’Ï:=nËJèY¿U“zÝûƒéÖ|Ô¢‚p wžPž#ãf0uÓ§Žq ÏÅñÕËÀ©ë²ø¦DcÚˆ%²åâøHŸgï›X‹FT¹hgPHQ܉6•Œ˨ßߪBOÖõv[»”;©”M{¹å¹ŒÎÊeª\ÂpI.ßiUéd^Wm§ÐaRû‹GŠ9×õpšI'rï fÆØeÿ(C5=äõ½|y¸”_š$¦ƒ[i#ò}Ó–2«Ò‚ HÇ4ÀÌÙ©¤«…‹²K5ª6mE75Y5’:mÞeØ”ô·>ˆ7C£$ ,é²+Å UBXË9ÞÖõVR„ϰË%΂½ÓêG†Á’`Èi6©é@È·Ÿ ¼£ÇÏè©yu]V’7 ˆ¨¡?öÙ¶ì—îæ, ÎâÜf9øô¿h¾Iºœ¿a7Gµž¦}½Í# (!ÌüKLÑIuOwýÿ kšc|¾'KêÂÇ‘s{cü_;ü}&‹e+F@fŃ,Î ì¤]JOš¶×¾OýE6½¹ª;bO/ç9þÓ«óO#Bf#­OظÃãˆÆ”òHþÌOBÄÂ^ä.^ÂÆ9uÝÃlÊ´ž![ÂlhcCF‚)³§›¯þY·éiÛmJÓ:L+àV‰ß••ùºnêÝ¥Áâà bµ1Åä^`Z—æy8ùñ"ñ(3™Å¨dœ¢ÅeTÅó>¨¬îÆ·‰ò‹ˆù”9â1ãš4”òÒDˆQÏš)]ÐFYóŒˆG(ÔaGkÿ‰»pþÏ\„"¸ñßÿÿ÷ ‘¡þùüHm±¼˜øvHaaЇ4F³ÏÇÊ…&doð¼’YÝ›/\„''Ì4?j°—¸OnL†Ž‡þNøt€ ö ü ÃÒ…endstream endobj 536 0 obj << /Type /Page /Contents 537 0 R /Resources 535 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 522 0 R >> endobj 535 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 540 0 obj << /Length 1199 /Filter /FlateDecode >> stream xÚÕW[oÛ6~÷¯0 °šã¢±î!ɺ-@®3ö’…"Ó‰0YvuIš¿C‘ÔÅQW7ë ~àEôáw¾såÙzöýk*#´„a½4Ž”$HPB£õæj®•‹%xþ‹9¼9_­~6Å ‚ñÜ”µùô¦ó¤¬³47ï’âÖ¸³çyRUnúÎlM¹ ñÜ)|%Šb1'‚-®×—³ŸÖ3aø‘öb¡`’Dénöqvu£Í G—3Œ˜ŽEô ŒˆÖ4ÚÍ8ea‘Ï~ŸýÖÉY‚ åPҙבpĸ¤AI :«¡Ž Ó7R4;b Q…4ª½ðKâ<@pŒHÌ(H²Þc0Ke¹„%q@’´öòìO+×cMÜîóܤu¶/Üz¿uãÁ__!w· ƒ»—Ýå`=$)ç-†ï²"Í›GKÈà‚!¥cæÁþ0!S!Åcå­Þº›&R‚qöÇŽ]B‚:„À.ØGKƪ·ëÛæ&ÏR§á³»µó×MÑrPM-g1¢Iɵ£›R1aÕqÓ^‰/»ŒµÛø ÛqÿÒM~­M™ÔûrðŸÒN_9ïÊ“:³’ï[ÓV­Ý[\œ €[€Õš‹#í­Uß™àEU—M —xùæc“•¦9ŠIȤß16¼ ˜hây8  D1¢D¦{à#Bmv@Riô3¤ f=ýKñÉ«UðÛ™çÍ!½1·Yу·Ù0$¼†ˆçÉ5Åæ©Ô§Î\hè‹6Ç â³Ì…©“,7^Ø…©Ò2;´Q9:læ‚ÿ©ãÈ “©ãÄ,;¡‹À+.ÿNÆÅ<«ìÈçMeI¶;õÞ»lgS‚&n*f×V1;vŠ9Q[ëvß$•ŸlÂÆ²õ²e‡réÜÂYÎT“fIž?:â²úÎÍš:˳: !X5©ÿø.xÏöûªvSÀc’ppÛÁ}Z'p}aÞcL‹¬·\R3^,áxlTû—Üt© dg4åïxÂÑ©wôóãdó¢sùÑöÅ>mv¦¨“Ó‚ÀÝÑ…ÓiîtBUg˜L¦h†) i­‡Å¤BœðPèî'sJ8ðÒùƒÞƒkȌˎFø8NýO/“ 1A´U"dxŸ%F“ì¯&J/¤ÔQÙ–”{SMˆWñ>ݤ1…|ê]e…õªë‰Ð]B߇”b|lÊÓëÒS€PW8ž¬À8´`RO&¾$Ùð%ˆsÛL|}‰oGÌ{øT÷òüÈa]äœX÷N °ÏÔÝ#—¾Aäð|¦;:Râ4Sħ›â8g¶í¼må« ý}S´ b>`¬úpÓnAu4m‰Ks54ýwÌñ™vel ˆrIä)Ü}†1ôl P}d†^¨k)×!ílFñ*k(»™¿3íŸz-Ï~qk k˜ÐÉmËýî¨bo¡»Ø/¨€r_Ü•_µ°úç†@Bsñ5Ïá›éè%Ó™@ÙùÇé ðŽ–ðnfqxFD¸’ÒŒ@çz¡é¼ñt\ZK5þ‹O–D¬^qåVꩳ´|Þw÷!õ}zõÿ{*YBendstream endobj 539 0 obj << /Type /Page /Contents 540 0 R /Resources 538 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 541 0 R >> endobj 538 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 544 0 obj << /Length 1088 /Filter /FlateDecode >> stream xÚ½WÛnÛF}×W°H€µÝ+—4ê>$mšˆÐ¦z‹ƒ¢VjÉðbÕßÙ %Z׊íBÜ]Ïœ33;«}3üüކAŒâÓEã@† Jh0ÁGc‘ˆß«òã[˜<|›'u톿i»RºIš¬Ð£/ÓËÁïÓ 0üˆE ’ ] ¾>ÁÁ|€ƒËF,ŽD°† F$Ži°pʺI>ø{ð×g @ã>ÒOœpÄxH;æ„HG{ FAdˆ(‘f;Ø8þ¢r_ï¯ÚÒuÃ×E•Ý ­S*îï´(ïNØâ±¨¸GQª*Ì‹Ç*¨–õ)VÉ·ƒZó­¶ÃU§‹¸ œÍ}•®“ò!Ò¯‹f©ªS¸Ökã CmÖ¦2 7é:òÖá¦WnA¥DŒñ®Ë—è€ß *îJôÞiU̾ª´©……àNv‹Ë¬(òlöÒÙKÞ õŽKkw,T|§.M¤–Ê>¾¹ï6;þHQßÛ$ÏšÉò¾šŸž]8MM¦Ÿ Ç·s<œ¤Ež_/“j¾ÓkN'Ë»óú¾ø›ÿ‰=l‡æ©ä'×{Ž­†?U×ÛŒ>(`çêÁ“0öô›g¨»x†pÑ47’EÀ@JH‚—¡•ô‡Ò¦í+ß̺Þ>ÅtØú6qiŽæÖ¿îAĹÀç\ºÅ„v‰.À½‹øì®»…ÿsw£6÷ï`Vôåendstream endobj 543 0 obj << /Type /Page /Contents 544 0 R /Resources 542 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 541 0 R >> endobj 542 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 547 0 obj << /Length 832 /Filter /FlateDecode >> stream xÚÅ—[S£0Çßù<9ô6 wßV÷¢Î,³—¾©ÃDj]HuõÓoB’;Z»Û‹ÓéüO~É9'''cëÃÙ©—Fâ2.íØq½Ad'—Nê¡xä¢8gdöíôøøŒà ûÇó†©ŽÓ wjþ$%iG0q+ˆxäG1r`Ž®ÇÖç±m ~°·Æ^èGÐ.jë·uy ì‰ì x~š„öƒ¸LSd×V€|sSY¿¬ W¹C¥  ;@Q J=§‰‹F+ªl^߈öcnJuÍÜìaC§™³ ™¨gESU´£ ë<‰°2W.B^À@4|/I€Ò¾B(¹!e\K a …ó,_ªªî+ñ‡Æ&븲ö da ^ ýäu†› A6䀛q oŠ´å2­â]à7X#Òz† žÏp‹kÂÍ8¶À9ïÕ‡ßGpŒ²Ô¤:„Êz©n˜P[39_÷rµhf$ÇlZ‘­á>>ÑzÎoq¥¾ˆ r/ãA½ñíŠB(¶´ üq-ƒH.D^Š ¿N¯£Ó甑*ϲ-&%î°yQ‘†¹úªýJˆãŽÓb)OYQÍ'”MÕ£ -eæ,[á.TÍÚ`mÓunGD—Pü÷TtÓ4zh—÷®€+:ÙzýÕ0[Zêe®ÀM‹ðŽcµ(uŽ©ÉLÌÒiófÙg”¶ÆR®:IÖ®Žð<“Q”ßâvÀªµIÝ8¢ý lˆ-”5À ¹ji¬+0.V¸Û ŒÈJ"~û ¶¹;Ьmî¤ã™Ð–£¡7ÌãVöLÆ% NMÿã e˜µVÒÏ0²{ô.»™p Ì›6gdΕS·ÿ=#/ÌëWäv¦ƒ¿#™?¾+°ìíªmßžº¶|Û äÛÕö¾!×Uà{`|ï5Ý´:ß úëúóYywTþê«•»™IS»¿pºMÄ1úþö‡ÛЉ>¬Gâ+ǪëЃAõ#ÿJi17ónJÏñ(EÎ\oÞruæº'T‡à8Ðç| Òdò oÒPüWÍ]í}jþ> endobj 545 0 obj << /Font << /F26 16 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 550 0 obj << /Length 1488 /Filter /FlateDecode >> stream xÚÅX[Ó8~ï¯èj%j|¿Œ´/ÌÀH»Û7@£Lêi³J“’¤Àðë÷8ŽÓ´õ”™2hÕ‡ÔŽ}üÛçsòr>zñšÊ±AFÂc~;6x¬$A‚:ž/>NˆÓÕDÓÉ»y '—yR×þïU™n×¶h’&+‹éçù»Ñ«ùˆŒ1üH+M($˜$ãt=ú2úø#<~7ˆ-Æß`€1†Ž×#NYä£Fõrf h6”ôò8Áq¦ùX‰Œ&¼…ÿ‰R1 Œ'_§OÊláQ×¶¹¶S"ü4À¿ÞäIa¯“b™[¿ä8-‹º CÌʤ<»…·Äiûâ5§c ($w((E’ÃÙ3Â#-8ÌoK~dëm³Jòn¸;¬¼õOûÕ<~Ø‚òÇì);ëÏ¡ nÄÏ•MSZeiÖÜý6ýŽ zm’ªé DI±ôSÅ6Í-œïGYáŸÍª³HS%Eí­QÕö©ÍQgËur6¿þðá·Ù£SqÖ=ƒ¦²¬á‡iUÖõ¬¶iÈŸV7B‚¶Ê1ƒ°2z<ãQÆ}^D"ÓÁ ß•m’,·~W¶N«l3‡¶‚D¢1)U+g¾Š”(І XìÖ¼±É”BªÜ½Jä )!d·Ø™qƒ˜T@¼µ›WtÇuSV¶wümY­={ø¬¸)·ýVî`p_L°¤F1÷a)¦&·¤œw¨®..~^ ¤4§À3¡'›ªlÙ"[8Ün&Y,2Ú%3f_·À)™,­ ïüì›JnøÖ¯6“¥-l•À–N|VDe@mD«`ê?m1s« 20Ä‹4Îmàø8|È-¢7D5ŠGôV© ›/+;tMхض>à­f•ÝçÏð¢ÜxsE=H5ÀaªM`i„öø¿'ëMnë‹VI¢‘Â. ˆÙ©ØØºyq…ÒeŠ(êbB&@´@’1öWò›Ù@·.ærÈOÿ‹}ÝŽÀ×½Áh…by ‰Æ8d©$,íöÒñLµM-Áô©»7}t¹Ø­Of=8£§…HäCO|;z¸0a¸ü»0ù˜Î<Ÿ£fK÷èeao] &Û¼3o:ÐÜyï'íCüå1~Ù3£ˆjª†&£1iM–…¼âû£²1J±Š±+B×!÷ž;‘trŸ8DhÏ­Å&& Cµ†ÅÒšˆ4Öê aiDXûïduT\´g ‹Z ‚Ôs†¸â[DňRI»5DRIs÷a#"2ª§ö“€fLR¤•‘î=Ãߊ{¬O#“’< ¾ßTØÐÙ(j+‰´OŽ(lǨà@ 'v˳u,“Æ„âiÝúâ,T›<žÚ”iöÿ¡²i\"se诣"Cc w}JÿÝw#¤iŸÇ§.D¦"ʰãz»¿µªÐlHÿøê®™$߆Úx½ nB´«C(vþm¿l³Êµ ÓÉÚ®ol[Rb6I*ëgÛËÍ[÷ÚOºÛÔÍ­’ªÛ\§IÓØ ¶ú¹«Åéí_×ÅäÝ)}ËW4PµÏ8”–‡ûþAÍÚ^ê\Nš¤š e±3W‡Òà’êZExи}aÿqë“i™çYíÚˆç~çIõÔI|-æ$ÚmS…­º«…RßAíéØ8HT*C‰Þ™MhiÎ)„ˆÒO_ ±S•—ýî9‰ëIviÃb„ 58ïËŠG• B#m¸zPªfXî'ÜC ©è“Øq¯ç/Âgß#žÅhQ(Ä Æ)«lã5‰$Vâ!¼&`f b¤åa¡Ÿ–Wèß=Y•OŒ|”S>;jŒaì׿:…Žª¦Û†ÚUm+HI×–»V>|Ž *Χ†N¶ï‹o»7]ŸIÄ…À\ùŤ‹Ê[3aoîB“øýniûo¯ÿ·x|endstream endobj 549 0 obj << /Type /Page /Contents 550 0 R /Resources 548 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 541 0 R >> endobj 548 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 553 0 obj << /Length 924 /Filter /FlateDecode >> stream xÚíW[o›0~çWð˜HÃócmÛº[¥E»ä­«"—8 حٯŸ;@—u${›ªªœcŸs¾ïó9öË…÷ô Ž|xd‹µÏ¡Ï"(FØ_¬®&`6 0…“wrûáÕlöNŠ)¦“ïû÷Zµ?¼ÊDY¶¯ŸåZSO¤J¤"ÃDÙôzqé½^xȇæ5^(”DÈOrï›wu ý•ýKÂcêÿ0 αŸ{!&î#ó¾xŸëf¡ ¿ÒK›B€SŠ]FØ$Ⱥ„™B8ù ópû›JªÔ%u¡“].U%š!þ=œŒ_‡QoU€ìº_!$ZTn6“IbV/Ò$­ö­ÙWH¡ùGíW¢UYµ~M_À㘛j¿W©ÊR%¯m„°gLm¤´™ñ»c½nŸ[QTfxkRV·íÚ%™4‘´_©Å¦ÚHûRU~Ÿ":‘EiǶ™P²ËHÜ›»Ýè]v«²ž~÷Ô$n0C &—_Ä@„ð‰úBH±J;‚ºuúíBp˜P=%“Žƒ>lÑ0ôAxká®Ú)7ûz+ Q颅¡Ôˆ €³œ<{v„ DAȵ&Žë'6e]:ÏŸ; pD{ #Ch@B@ŠûÄã5XCoèƒf»Vˆ¸¥P·™ …€Ð åFëì!•”˦šˆ,]¤ÆÉ>¨g:PˆmAézòЪRãZ´‡’6’J¤®¯)­‚Ÿ²ÐÎr­‹üÐ÷Ï‘ ŽNëD¿Ÿ-Ž@- ©zh§Î—ó5z§Vrµ> endobj 551 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 556 0 obj << /Length 868 /Filter /FlateDecode >> stream xÚí—]OÛ0†ïó+²›)•ãã$®àÛ†´­w€PH]h’¤Ûø÷sbH Wªªö´'çë}lË»#oë€D¾@"Ò£‰/°G€8âÆÇðd’|•‹ï{Úà8Ø›¥Ue¾îÙr.UÖy¡§£CïóÈë´ÑxŒ8ÀÏæÞµw|Šý±‡ýC#*îÿÑF ñç#Ô3ï—÷ã6N¨…ÝH»+ 'ÚŒMÝ‘Q¤‹Œq«Ú”Û61~•é€ðà÷Í·B ‡G‹´¬Ïå’ ¸4Ž'˜cýce…ªê¦»­N:Y Ž¡«l²çj–+yj< îx†·®!aºÌÚ'Ž–ósYš$ÅÄ|.ÊâRfu>“ÖÖÕåY¾HU]¡&´ÎBŒ"ÂXd_ž`LTÞJÐ>’Úv›jÌ·DÜOÒ<á´ÓÀfhú mSü”YJ•ɱyäüæÞ<‹…,Óº(MãÆÛ mo¯˜ pÄDÌ­‹›ü'ÛŠ²)]Žçl¬.!°E”q?¤Q*X—±uªÀÁÅz›S=îµ±;×—ÖçsËèö¿Ö³Ôf^º ÖS§’L³éãõÚ®äå¦ÑZr?¸2&ún”¾þÆØ ä.Œ‘ž&MŒúz(€ú±>>XµÝ}±Û”;l‹£ ÁÒ6pØìyKû·§r> endobj 554 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 559 0 obj << /Length 997 /Filter /FlateDecode >> stream xÚå˜[£6€ßùØçòùørµô~~K¥¯’ðXn|…ýH$(¡þr}(D£YHÞëý/¯æó÷:™Qüuÿ¡0më<©ªöõw½ÑåŒÄ6©†*&#¡f·ËkïÍÒ#>†iFL?Ýyz7·Ø_{Ø¿ö0b*þ(`D”¢þÎã”u…Üûèývì'„ŽÂ~OWAxd…bÔÚÓhhµ™NSmê2K³úþ,0üÉ hR,Ð3B¦^íóÄèUb¶¹Ée»}’‚@R&;]ërÐ̃ÅjñeFpPÌZ¯Wi‘çY•¦š‘`,jêÀi`eHRB´ê7«»¤\÷>¥q,`xС,>”k¨“&,ÛñW}Í=ÝÆ äN›ó¨ÞU¶Ý%«Ìè|µXô;hª½Në¤.ʕчº‰Y%Áк'ˆì˜#’AF)9‚Œ"bŒ± ,‘­ÏÂ=ŸWº^õùhEí˜)Œ]wEÌŠÄ~jõà´§ ­›ª2ÄH$œ€µ§•ýnÀ›`ŠtB7™ÉÁ›·®³>ð!Ã0‡ðRŽ8–²€v:~mQ±iŸ–¨Þ'uf¶m•9¤¹¶¬6¥ÌÍøúN»—21U;EÊÊÕ5åÈ@„$å¼Ñà5LLMVg]æèÜfMiß§Cì'¹î‚ÑÁmtÐŽÁ†ÓÛÅõÓý ¾Å^—–ŸÖm„ôýË",rþ}ùò„g‰@\õãt–½p‰$ã¢c”´ndG‰è2 áˆaõ|> endobj 557 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 563 0 obj << /Length 887 /Filter /FlateDecode >> stream xÚå˜]oÓ0†ïó+r…Ú‹x>þˆã^p1ŒITz·MUHÝ)uJ’2öï9‰)Ý [;4!¦ªŠÝ»ï{üÔÇÉñ,8zÇâPãe¶ 5 U D2`álq>‚˜Ž#–@ÂF§fýñ v$½)ÒºvÍ“2Û¬ŒmÒ&/íørv¼R|A7›TDòÂl|Î/i¸hxPÂu"ÃkìPZ³pÆûN| >ÝÎáDÑp¦ãN8½#œaW9Ý'æ‚RfóNU'4mܵȭq-`àåÒ]Û!…ÿòÔ¤cFG?n>”–|#­3”"1¢ûÏfi*c3³pC¾ÞôC1Q“I¹6UÚ”U;ôèÀ@,p ÀNØÎóúµ Ùò’­¤¹ ’âˆ.Y"&12ŒpZL‚ê†hÂᄱq”¢“1 Ó|±¥±s)Ëɤ6Í|ºN«fÞ¤U~ÕçEÒ¬´µÏ`n}ã•S#Ø@ S1I¨Ö^x¾C0#*Ögàbäp’0èƒÎsÛ.ÛåŽÅžÊXÄÑ ‹7-%{6I`ìpÖ!vù“¸“rÇÿiî’-îä~Z_­Ò9樘O§;71Ì/Ó?md”¢ ¯|¹C1'ÔßÛÆ0U‰ü}uÌ SÚÈ_û}Øàù+¢G©*ë:ªMÖŸð¢Iˆÿ’¦í],Þ“¦5&µ•=·fÓtg’Ãj#P4Àáùj#“„&zªØÃûÕ­WÒ¾·;ñ=Ž[êTEu(OkSsNT  Ÿ'¼ë£lŸ#üœÖ•ózðá]¿šOÓV‰Ú Óî2×-´?^´(Ý_s Ëà1÷m}èÖ¢?¦ µRr››Enýê"_¶ò—UŠUª3292Áw‹ØÇ ŪËùÓŸR &:öOWb¢Oºã$ÑÀC> endobj 561 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 566 0 obj << /Length 905 /Filter /FlateDecode >> stream xÚåVKÛ6¾ëWèTH@ÄðMÉH.›4M¨¶¾m‚V¦mzU–³Ùß)ZÒÆì¦=µ0 ‰Ô g¾™o†sµñ^ ÒOP"á±Ùù ö•$HPBýÍö&HUaD>êö·w«ÕG…T_~mjûá]™öõ½Ó]Hâ@×¹†-& ˆ$áíæÚûyãÃ+B!Á$ñóÊûË»¹ÅþÖÃþµ‡KbáßÃ#’$ԯˢÖöj_š}*¥vaüØâG4 W"¢¤œ& C¶VåîaÁ¦Õ]Ö7Ý úú!3g #ˆ0ç¼ycExˆ@> endobj 564 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 569 0 obj << /Length 952 /Filter /FlateDecode >> stream xÚµWÛnÛ8}×W(PX@Í%)QÝ}h›¶P »5Ú‡¦0d‰Ž…H¢W—¤é×wÄ‹"§N6©øÁ$EΜ9s!çõÒùã ]ŽxË˱…1J¨»Ì¾ÎHH½9ILgÄîã˜0<{S$M£‡oeÚ•¢j“6—•÷myêœ,âbø%Eˆù!qÓÒùÏùú »™ƒÝS#ŸÇ̽† F„sê–N@};)œOÎ?ƒœ9š%½6ÀI€ü ¤9C" œ#{s‚1ÖÀ‹'g'Ÿ—«/u²Û‰úCþX%ñLT©è xÄ  â~*ùïE%ê<Õg÷dn¤´[1¬´uR鉆¡Ç©,KiÖ×…L/‘VÌè¾b¡Rü"¯Ò¢Ë DBF;™"‡jãŸdE( âÈlØ'mHä …±ÿ6´ïqÆïs~!1¨û¢˜pµ÷S†ž³n]ØñGQ®-Sïº*íæ9@7 QàÇNQÛÏ)eÞœO›‘ø+â™Ì³݈ÀÉá°Æ¿«óª]mÅNx„Í®Z}ü3Ü´Ùb!›V@Rê//û•¿Ô·Tv-l$ZG@Ýt„"¢Îg`>#g˜)U×uÞïçÕÆ#°.uŽè¨eùÿñП»<`–"% =;>â$Œd‡hvÔì.«]RÃÖBÜr,ðL|¥ÇǤÁ²{ Ú‡p®Vê…à^>ØcøXKYMÍ*“šbµÓf¥y3hì™xŠ=KÏfugØ<äP5ía*a”]éV¤—c§byÓBa»™&äï0 “SªG6OÚГ`fiŒ¾ÎÛíÑ ð(böà‡.òr¥É鿉ú¦ÝæÕÅï9¾&]’Âð·a[çæʾfÀ"Œæ!YGæ@‚WÝm•}ªAâª%¬`#j"˜ZÚj¢§vu=€P䋞y¿Ø5÷•ɧ$ÊXR*íM~> endobj 567 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 572 0 obj << /Length 695 /Filter /FlateDecode >> stream xÚ½WÛr›0}ç+ô3Hqñc§©g:“¶LoqƃAv™1—‚Hí|}ÇØNã‹Úá¡•vÏY­ØÝ+_¹¼Å6ð Ïæ/<# üèAõ ìj:&P½£ù‡ëÁànx?üâO¾AžÓBˆ®AYŠá':ã³ÈUiRMG&®ŠlS{ôGÊÐW€üAâÄ´å—òðA¤@0R az.¿ù4ça(6»…òYù¸Ö£sEú¦¦«JÚ†eºp0Ÿt¯1ÆDÓ „jɇ}œ21H«dJ‹Iø3^D-!C׫â4¢K>ƒjv—·.·j[µUŒ ÛBБe¸Ä´«B­ØœÍÄ;ÔT;ÜF£§‡^_+¦á"Ïý ü(«¦ *ÆùRàob_’%4eUbȸ’ðûñC>ËøãßyÊÀ7Li1_i¦£Ê„–È€6§[ÀhÔê¬2òŽWæý¸/²¨ Yœµ‰' •Œ.e:Uæ…ù?ˆeÞ óLâ| *‹z¦WŸê,‘ÅíU()›Ðš3Í,“ÍÌÒ/–±4;†×ßî^î§EéTÚlËÍ1-÷H³Vv‰}Y·g+nÏIÔ6gFÓ.½ZZ•¯ÖÅVé!VŸD4 £ åÖ¬ìÃêÆo3‰# ,ÞßHgÀ ˆ’Ž|(cqQ²—Û x¼!=†wDkå)]“ÁÕk°åÙzH™ûŠGš­ûœÑN÷C¯*>ÓÇEGW©½áˆ~­}±·¾%DÝ'xÞ3I%\•5òÝ^ËåM2Íó[­ E]§eó¦Êt»æÈrìæ»~ýÖeC_ó°Zµ˜Gu~©Z /D,G|aˆ°Í4LÔ¬ØhGÅpÚF7Ùr5MTMÿARÂFendstream endobj 571 0 obj << /Type /Page /Contents 572 0 R /Resources 570 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 560 0 R >> endobj 570 0 obj << /Font << /F26 16 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 575 0 obj << /Length 935 /Filter /FlateDecode >> stream xÚÕWËnÛ:Ýë+´*$ bù”ÅÝ´In @‹÷.šÂ%&b‹ªDµq¿¾¤(Êrc»â,.¼0I{†sμ8ïæÞ›KûðXÍo|ýYŒÃûóük€bF8A >ˆêã{½a0x¿J›Æ.ÏeÖ®E©RUÈ2ü6¿ò.æò¡þ N›Fbägkï»÷õôsúW„'Ìÿ©7 α¿ö(&n³ò¾xŸ=‘V5½{d8‚1 $¡þ Íatæ_c̈A4ÆÂÌÚü#D0EnwP‹õ€ç2X”ÊnŠ2¯í:—ír%ìÚü]ÿ¼o.)ömGLƒ˜"êGˆ‚QË¢¾Â Vi­­«±*v DƒLK ›¥’MÑùâépömBÆ‚=ç¿öœ©pQÕ2o³­á D­ÄÊ0Ô–Mq[ŠÜQÐßÞ¿„¼Y {CÔ$ZÞJÊ›Aµ¸µÛØïåF‰æEÔ!J‘®¦Â@`Ôƒ®Sb¬^§‹²]/E½ÐU£.Ds*þ3¹^»èY®df2ãþ™f?N¯}qóÈAS€äâB\Š­S÷‡Õ©ëÄÁðyQ4]tÚ'ÇbêEÑ9„g wøpÆ?¢$”Ûîôe„êSç©D¦œ±…d×—mÙG—‡pÜúúÎgH$„á#ÜõUû±LÏç‰n¿°ÉxÃèBÉŸÐO!4"zÍâd—Ñ2ýQܦª×—n LP×éæp|°I¥fŒâùÊ^ÁÓ“õg]hÌ…uÌë=b ¤ªJ”ù±˜¶jû¼JË1ÖŒøK¯`Óü|ñŠý鮯jf±ÒõßYh7*?;“êKwÏÉ+sò¶û-“íD†ôÐ’UÛ¯û{—3¾[Î8À @a„ u.TZ¬œSÎE“ÕEåf„? ˜~Üc åöMò(Eíù¯N«ÊUÁÙ/ÔNTí|òáâÓÅ¿óý®¼æbs•žbLiwÕüÎù5ÛŽ4îÈt^ýbÎÿ¸{çiÖ¸ŽP®úhˆzáá½so\êZR)]Û*¨’î:­¹TÅP[ µ×æsÛ”FüÔ9¬p­ ¸›FÄUqKÓÂ1«ßùàìÝ=£!Bž?¹¹Á-|Fã|¢“"áˆèÁ :‹·!ЇmãÊLmÿ ëq³3ÏèÌî0D¸w^ˆYà8d—7Å>lt°;~õðç endstream endobj 574 0 obj << /Type /Page /Contents 575 0 R /Resources 573 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 560 0 R >> endobj 573 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 578 0 obj << /Length 1288 /Filter /FlateDecode >> stream xÚÕXÉnÛH½ë+tP€Õé•‹€¹$vâf&#LŽAÐdÛ"ÌEÃ%±óõS½P&iʲø0ÐÍ^^WU¿WÕÔÛõìÍ{êθðX_Ï<÷\‚%t¾N.œQ±¤;çrûùÝju~öçÙ?ëðkm·²2Cﲨ®M󋼆^â;²ˆåbI*|‡¸bq¹þ4;[ÏÈÃè}„‡sÉ<ÎgÿÎ..ñ<™áù§F,ðÅü¼`D‚€Îó§¬{ÉfÏþÚá,hÙGzk]"BÐÎ' .z.! ¶aŒÏ2¿êÜxßq“–…y;-ã6—Eé.0)Ø—rÄxÐGEÄâ&e{•A¨»'r«ÕÕ}#âÍæ ûÓ¿aÛ¢No ™˜}9ííË8Eñ9 öM‹fÂ8ð{>µs‘˜I‚'ù”;é"-²´'jâ|É(CÜsƒùÒ’è9µŠF|²Xºàâ¶*72¹´àö¬dHdƒdÖÑ‚bç{z³NÔHèÈRÔ˜§²Ü´¨¦Q^›§Z’ÙÁy…pÐMí¤i¬(li½‘[¹ Âùޜ؋d<*ê0ʲ2Ö¤!³!rÒ¹mžR»:(»A>zßÞ;;÷ãΟ£Žfô>FìüÚ¡iî3 Ý>÷;M)J.i žCüÝÜC¬Çr9&Ï`=yëÝIÖÓ@%ßíXOÿ7¬÷Ø/±ž½ëù#Ös/ЬWO² êE£8ɸÇHHêÚ“ªnÂx“fÉž±màÍh0Îö¨R³ Έê¤ÐÈ&§L¢ÛÂåλA`v•ÊzŸ”Úúx=1«§«²ÌÉÛ[IâŒoC}&DŸI\‚’ꮲ‹G´ºê&Y­Êº1å9Ê äoSbóäs¿« zÍ„Ú|Њè&ý>!µ%y˜úã*†Äe;%aÁøì¨Âeô9©G‚=x!ÃR­ÃeŽæº´µd 8·Äÿ‘6›¾vL;.ó¼“àÐývJCëM ŒºN.›M™˜vZÔ[Èv¤ÙHÕðv誳CWmƒ®›šEª‘•å­]¯­6°'ÊÚ€¦Å`0¤„fõ&‰Ú›M#«)oKȨ²ª_š|ÿ¨ôLJóÏeн١?öHÏjÐ$ƒ‰UÓ)€lX’a¦M Ô?ß âö²&lœÍ侜adZÐ7²HŽÏ||{ó‡ìMà]a$Ê0È’z»ê›È» C(EnÀÝÕ_]\ŸP2ub؆¥õ¬0_7÷ xõRúrî¾Bù||Áßñ¢»p‰LåHÊòZ]’öÖ3£’Q6 È“˜2S€)íññðüì‹òíëÇpCS–´1ÅSe:…)ÏXfX=YCÐÆ´Í•ÌK]þt¾õek[Cìz²;^Ebp§}JBfkÜKUªÚ#êúûþ ´`× ´0È–fokÇ UÁ8{eUôˆ}µ‚Ö Æ²fh"Q5údúŸ=.æùûÀyª¨*“Vÿ·°ß,Iè°®=þ£ÅLjÆ~ý–P÷7‹‹ùÝ¿,îý|šákÇj¶cÙz…³µú¤Loíˆýl'b%ðŠ{ö»jojŠÝÝmM‡iøý|ZÞÝC¡ìÜÿí®þendstream endobj 577 0 obj << /Type /Page /Contents 578 0 R /Resources 576 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 579 0 R >> endobj 576 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 582 0 obj << /Length 1058 /Filter /FlateDecode >> stream xÚÕX[s£6~çWð3µª äÇlÒìf¦ÓíÖÓ}ÈfŒå˜Y .à6é¯ï^ $Æqš¶ãñ YÒ¹Ÿ¸XXßÿ@}[ áÃc±¶¶Ÿ N µ«[‡ø¾;£! ©ó^î~|ŽwY\UzxY$û­Ìë¸N‹Ü½[ÜXW ‹Ø>¤‘ÆÄ™OìdkýfÝÞa{eaûÆÂˆ‰ÛÀ#"µ·–GY;ɬ_¬Ÿrf hÖ•tÑŽ†S˜Úîd#“¯ÑFî¤K¹ó{%E^¥U-óÄ%Üyü‚9†/ùΆ=íÜ|þá§èýÕ'—sçó‡ëùü Æ4Ë¢\ª3u¤…© xüœˆW¿.\ˆÎAÄL…|™‚çÚÈ£rU€ã|¥»2ÍëŽKí>¤DÒŠG>üF‘@4DA* ÆØ9Z¤1YÛ}.ãÝN–Úæ²‚˜mÒÌ(WÊÔ±F•G;ª(§ˆ…P.¸Q•æ+ù0bõ Ì.e·ÞÄ»² 8!%ÜlºMó,Í%ÄÁ£+UbÉÝM=Ô§Bx0â3,iâ«=(ÖúI*ãü*ÞßojY2 Ÿz^söRªäiSÔ: 攲H˜ðú’›T›Å~HUA¡ êkb¦Or-K¨Jið´|¬e”ï·Q]Déߊa?¨Å¥,#¨”2•Õ`ó‹‡RªÒ?e±îÊGcQ8ØÇ8c`›z>–¥K±³‡Ší«HWsYët ñŸ„Ê4#8:ì!ñ /SÛ½Ö¯Y¿džø‹vq ™ÉÁ¾oÎ @Oc»!+å¶Pj_£{—;ñ®‚¼ŒÀ|˜Ãñ$”r§å©,tY"8‘% . s§ TÁÉ¿I‚! ;*¶E½›N>=‹(¼ÿQÕ+(¦€9J»²Xí½§ƒxðÃ1ÊÅÚéí¡ŒŸÙ,(… pz+c‚Î’ÞÙÍ¡ž˜ÄH°1|’+NbŸF¥ªŒ;_“Œz-K8‘ŒÒã} ,'”O" ùø'“´J˜†AŸ|>^^›ÏdOÏÒz1ápÿ¿G8g5¡i>ÂãÍÇ|ß?Ê£Çul”Y·ÓÛü™ ƒŸeQdϨŠVÅ~™I äæï> endobj 580 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 585 0 obj << /Length 1206 /Filter /FlateDecode >> stream xÚÍX]oÛ6}÷¯ð£ÌIñCôcÚ¬i€akg¬i Ø2 µ>&É­_?R”\‰–m9A»!(‰——÷^žsHúf6úõ7ÌÆ¦šÙj,à˜3(Fx<[>8`ß` ;™ýþf:½»ýóöïYð)Ÿg™ÌMכͼ(ÌãG¹R_‘ïÈ$”î L}1î>ÎîG·³Cõ‡ªy(ÔchÆ£Fp¼ÁñýOøtüM½@€„ÀãxD°×¼lF>üL”£IÛÓM•´RÂê•›ŒªutKáØY쫯ÉðýÁÝíG—RçÓûwÓéÂÅÐÙF›e “eðÕEÔ‘y)u»û )Tÿèås¿ãA—ÉU±=Lt)Tì„€ ÔuÚ-b ×2ü¬e&]L¯e¦I¥ÊBÛï»ö¾“lã…̃p­æT©Úî²L㸡Èb“†_^Ê&ŒÅ«ØtŒXBY…XB¹Ó^g ýÃN[Oôíº3²­«ÓTŸ›æ˜uì#¶ÞO±¹ð6ŽÛTÌÉvöÁªÏÖ‡B–}çgÒª«“sc¯•³ïs«<¶qO×ñæÚôôr;K‹ 0m†b¿²×¸Ývds§´ ûÕæ[)}5Õ«HÜUIåggùÙ[ïÏ–ý³ÌÓ¶Ã|_®£äÉe„ãžC:uH¨<·4Kdõ¶NŠKçeîwy߈³aW>d—§WëTåÜëÊ”IŪß/½ü#î§t¨³KÌÅ#;÷öéöU7}‘ Äö4ðÆÎÜøC˜^á¡{#æHýëO–õ8tfÆÎôQ ¨p›ç‡ËvMè_M ûéWÓ‹§ÎKLë÷0yÞëk9º©àc@pÏo~ CJ¹ÁÓ»îá¿©ðÌØÙÖõ»×ÝÖ=Ô4ˆN)œ^ŸT ªþ+½ŽiÞÂdSJÓ¾Mwû'#9:ý¤K€Ûendstream endobj 584 0 obj << /Type /Page /Contents 585 0 R /Resources 583 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 579 0 R >> endobj 583 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 588 0 obj << /Length 1455 /Filter /FlateDecode >> stream xÚ½X[oÛ6~÷¯ðÓ&KR¢DèKÒ¬ib[k¬i!(S µ.£ä&ίߡHÙ’,;N[ A@R$Ïåã9}±œ½üƒúó…>4Ë»yˆçO£„ΗéE|n;”N­kQ½¿„ÃÖå:®kÝ}]&›\MÜdeaY¾›]-gdŽá´ÒX€˜ë“y’ÏþÝ|Áót†çïf¹!gó{`DÂÎó™GÝn°ž}œý½“〠§/é¢5 §0 ´ÝÄ¢HDj;~è[·[Ý&+‘|‹V¢6eÖ÷&JÊ¢Îj›X ¬¶ ³¶Ÿ1ÃðO^ØÇ\»½X¼ý3º¾ú`3f}zûf±øŒ1]¯£B¨-M¤Å©`1ô$8 ðÈ!…ŒiS¯¯þºúgi–ç‹õ|l©µ²VÙ:Ì‘Ý\ËÃpxS»ÌÄä–JfEÓƒm¤<œtm8)òRù£Š¾ÚÌŠ«:ÊŠié*Äâ"Õ飢Š39±)“Fñ º 1Ÿ°ÖÀQŽ("¾íŒ±^T鳉>ɸª„\,ŠM~+¤ÂÈ&\‰É¥Rímz´§rq/d Y)ÌŠTûzw”ò©ç¶Ë_ SEÖ¦¹>•2B÷\·òÚp6“C(Õé¡jò†©[ï…LÆò 6&b÷´tØÇ|¯%ÕNÇÖ­M±µL‰*Y¦›DyéЕNÒžA¾GµAcûß % i­{RË3b:01 ‚àD2…“Ov/ÁUrª£mi„áºI‹²ntÄǹóÛD¨» × ‰kâ³Ýsh-áˆ`NÍ¢WaÖsÖIiÕ'妙Å\„;QG’Æ+Â{Cjº9‘0^€\ ýA¾Üˬ1¡œw¥Ìã}*ÜÉ2ïG¹î'ežw+n×eòm*¯ÒM^™@oV¢ÛXÀmÔ s©Yeõ¡ŽÁa–f£ÂÇNŸl O›•qÁÈâxÛ[£ú-„i[¯â¼Z‹zÑ:àXèe«JÖò¥Ð £÷Ûk!ﳯÊ>”$h l# .EÂ!æg³ žE6Fý)¶a|h¤I²Ÿâ¾ ØEi¹¹ÿ*)’¬+¨•ÇfkRd&ꑈ““:'/Ô^á\ñ»#BÔ›×mE:š®³GQÞÁu{”HÍ )âõ"uˆ´ð­nó8+~€­ø![¿†Çlµã©ÛØ%.Â`ØY·q`VuÐ!|"€ €‘ð4/A­KC2<áiB$~øËqTEœàAB "„G‰pû-˜è÷Ìptö܃ÓA¿§+ÐlG,¹Õ£L7cžS3F>¡šèÚÁ w°1©›XʸS¡ÒÞÄjèéCÙŽËaÒØ XÊÆÈŠÍ7¬„ÐTBß+[âñ862î˜ÏÑ"¼7¢H£®Çĸ Ýþlwƒ€®ßš=pÃs¬_Œ QU•î}W´¯»ÄY’í%:äUN1í9œîóŸãt÷°‚„šlÀ‘žwôåÔŸ;¬6aròå´›˜Ü’Æ@"¼íøããèƒÊÒM=ú8ÖÕ=jÛcŒÿxvÁÜçù#/é©gô@Û±§ä3îŠðù•íZ¨ËP/|~U +{ºªº|¢ª éÙ$î>YÕBÆ›¬jÍ›^H‘žSåzæ²{ƒuÕ¦ËÐ]=ñ£™ÍØ/­Öþ`ý’Å1‚òÁýù²z‚.Ìp> —ëpsW(("ˆø­ÛoD!dÜt^w(/íZâ;åèÆÌ° [0¼ðL¡L1¡æ~QÞ–²Wc á|]>lá°;þLƒFiendstream endobj 587 0 obj << /Type /Page /Contents 588 0 R /Resources 586 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 579 0 R >> endobj 586 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 591 0 obj << /Length 973 /Filter /FlateDecode >> stream xÚíXÛnÛ8}×WèQ*–wŠ~l›6 Pìnר¶›‚bÓ‰[Re¹óõ;%×rÇv [LÊšž¹œ!ÍCïùk*}´„a8ñ5ö•$HPBýáø<ЈÆaDNMùîå`pzòçÉ?ÃäC•–¥©Ü«—Ót>wÓ÷f¿’80ùÈ„ÑTÄ‘:¼žy'Cø>¤YG($˜$þhæ}ñÎ/°?ö°æaÄt,üoð€Ñšú3SÖ=L½¿½¿Vv"0­[z±Õ% ê»Gˆ"ŠÆ8‹Ë©Ùáã`P޸ן±ÀY^[_ž¿ætm Ê Š±¨ìY>67N¬…R$5W­˜#NH¬Û"`ŠÑ gù4Ëͳ0’v^§u6ºhMã5­ˆ*‰X¬ÌR‚4ÚðY13y½˜!«†#¢¤œ72¯ÌgŒižÕY‘;ñ´v£]ØÍ8UnRLºP`ºŠZ¿$„ÐõÖ•šâ°…ÑËå²6I¾˜%u‘¸4ØÛ°6Ѓjlv¤]I¼ý#9=yo}ûðöÍ`pR,²é8)Ó 2ÒCÎ¥ì©Ùè„eµ²W’h -„«ÛkSšŠàk½M¹çóvÌ•™!öË$W¡Òr±K¾›î…h£xòà6`Èèé‘þÝI$¶?‘8þe7¤'O$ò¤7$Ö ÌByd‚wQinêdt h­V˜ï"–b¯È°ßþd£!ã`»A¢®â1­æõÈB·¨¶ØfqNåá¶á¾Û0GJéݽ b"F\B‰özêÞM+Ä(½½uìèÞr×%Ãä}v§nèêìØíWþÛï4…oU§k?{÷‚•nLâ`À"4–wZ*Ó¬ºoW]³Y¿£ï8Fƒ+ïë‰àÖTź@µ¬¯³üjÃz@hHw nŒÜ×¼lΖGôþcŸÑ|WŸ1m°u·­§´£ßhb²¢¥ùZçÅö†C˜<î@l£AÖ‡ÿÐý¬ÈdpÒ•s/±î§ÖÝcÏͱ|âÉ:wRøqgÛ·¼{Ì¿§ÎÑ–‹“Û³ûù{“5Cݵ‰DZ±¸»6!ˆp%›¼1¹©Òºó¿KÕ0Ô4X´‰8³,Ú7 D ðöú€bBÝlb].ªµ(öûª¸Y^Á6кÿ»ïñÈendstream endobj 590 0 obj << /Type /Page /Contents 591 0 R /Resources 589 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 579 0 R >> endobj 589 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 594 0 obj << /Length 1253 /Filter /FlateDecode >> stream xÚåXÛnÛ8}÷WèQj†ñæÇ&i“Ez1¶i (6“kK^ÙÞÆùú’’m9²Öu²@EKІ‡‡3s†C½öN>Ph¤\†÷ÆqJh0ß„Dâ¨OQ4¼0³O§ðÀqx:Içs{VŒ–S“/ÒEVäÑíðªw>ì‘Ãqh\"Î FÓÞ_½›[Œ{8¸êaÄ´âÁOxÀˆhMƒi/¦¬~˜ô¾õ¾¬qúÔßFzßJœÂ£ô¼5¢ QDyÔ'ãðïˆà°ÈÆž´[Ê`pqþùüaò½Lg3Ss³Hj“˜ã,_Ø|ˆéÖL4æH0¡™)ËÇæÉ›5QŠ„ŽEeõΣ¶#°V´· I$9V•p#Þ†7`R”ðÊè&Ë'Yn`bëŸÛn+d¼5ªÏ°DÓ OcÄbíý®ðŒgi 'Æ?]žY˜¡O$4fÎøÌü€JÝÖÁ a%I«¦£;4KÄ(嵿I—ækÒ»j8Dõœ½NõìU_½(M:yãzÀvåÀ^ߤÄ„£àÁý»žèÐóHW¾.ü[º»Á¶C„ò2Ÿg¹· Hq,×j^´p/Aõ¦Ýƒe`0qÓ«ﯭZ{ñ˜MZ6u2*¦ÓZVw“bôg û>FZ À a.½VΟÒélbæ— D!‰µæz³ao’|Z}¶™^ç“Õ0Ò4,\ÐhôÎI:µ'û SþÌluyPgÐ’ŒMkoûmQFD…&^^{àºT' 3_øiO‹ó~°C·6DmáK ˜ÚN¯e°5¼ec3ŸúÂ^rNæfbF–Ì–H!w òe»ÿšY!¹uÛRR,ûßw¾¬‹~‹•ó´%é*Ok²¤ âAu7ê‚jÙÒ]-ŠH¸·4ö䱜zÛŽ] $0¢_ÝÙeܹ³KLênaÖXÝ…·jÅ‹q,×x~ëç1’±ÖÍp쟅€«í1ËÏòÜ2‹BŠ Ù<·t±¦pª¬M \ŒàXÿ''Â쓃Ž.ëd9ò¥â·:ÀüÏZò;´2Í’¥[JéjevÛk¾¿jA_„b!ëŠõ¸—™BD òš J›Þ>¼©ÙQž_hS.›U»ï Ûº9ú›‚ÒGHr畈Æ^ÿ}j ¨þ<% <1å"=šÒ„’ KáÖøÑä¦L¦ÊÖz¡®[V˸²y¾¬Þp!|Àñ –U_‚ õw÷6¡‹r+÷«rU«{Z=˜õWºäÍE¡endstream endobj 593 0 obj << /Type /Page /Contents 594 0 R /Resources 592 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 579 0 R >> endobj 592 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 597 0 obj << /Length 1243 /Filter /FlateDecode >> stream xÚÍXÛnâ:}ç+xiâúî˜Çvz¦­4ê\Й‡N…Rpi$H8I8-ýú³} šRz9Ò¨*¹xgyÙÛky'ÇÃÎÑ_Tv5ÒÃÛ®Æ]% ”ÐîprÕÓˆÆýˆ Ü;3‹¯'ƒÁÙé·Ó¿‡£_E²X˜Â7Ì’²ô§?Ì-Ü%qÏdcÓˆ¦"îEú×ËÎé°CºþˆëG($˜$Ýñ¼óOçêw'ܽè`Ät,º÷pÑšvçNY}1ëüì|_ãDm#»!á!Q¸T~DŽ¡e—é£ÉoGiVýÆÃ?ùä’lâOî‹´2£›üdËy…ì€CD’”ó&8<ÊbÜ»Yùc˜¼óËÑÙé¾½_ç_ƒÂÌó>½íMû¢—,J 2º3 ӧвMŠÚ²‰è¿ÁÀ3ôO8¬íÁÔ4 ÒBø9XíÑùösŪºK³icŒ;+ EÀ%^/DÃlŒ±ÅÁ½HlÃELJs¥šù»J³Yš`"aÊË*©Òñuèc{éG\!f'.¢TE•{zbì€3ã—€'Ä߆µ¿nä™i[êŸ=JZ¥yªüÑRógó&®}dwœDîö‹*œ'Vˆ7¦ó"5åŽr?HÒ쉤 VÚiNâ5èH>‹´HÒbµ)¸ ²þƒ€çÄKNÐÝ Ažaì@^àër¶zƒÃ‡á{&/׫Sì³EepëÕö"{“|yãõ±Ê$b’Õ–Õ†Ç‘Ž {ܪ6Iþ&¸Ç8†b%6p6¥`F1l£;^ô|0«1­Øf)©Å~„®bJd:Øø4ƒjAè¦ñÁ¢Øñ5Uä“åxãcA•±Ç‡7{”÷…†Â$³vÅ?¸ÐyÙÕ°ÇÕ>ÀÀh‹á}¶Ée½‚^fe:Í`Ú[‡a­cIÖ>Ö¦9˜Ø»è!¢¯£ Q,âZuqK¹aÇÔÔðtJ›‚Þ¨5jçöÕZ;,kìiÖ4? k¾ºMf>þ¥Ôl+\ú¿¥Îù7Ò Ù†FÞW>>ͧu˜öÔ»Z2ÀbH1åmäô!™/f¦8‚$F k»¿è =ãCF_W߬x“Ël¶ö5íå.h<þä2¤\Òó£Mü™)îÓ©]Z{‚<¨ høY¿l¢}ìÏ*¤v~~éë—U¦¬|·'ùÌyÓ¾ö˜M ‡[¢¶ €m=i)©8Xœ~äöcmžúÚ×<*Í̸ýsËW×°Y¥»·VEnÜÖýóeõ|ûÞÆzo‰r3mIºÍ"jKë:‘.‰Y¹n˜j ñÞ·]+²¥ÝÃ㽕¨dˆjýêBT‹ç_Gc-ëê)hA„jà÷8‹æöëŒx¥³Èƒê³ í/H1†·ÆÞÿi è8|“P鲸þ~DáJ:’_LfФ2Aε%-ã «Œeh e \ybôyk¥”[Å€?µR³ÇÏùÃjj²zøÿºŸ,%endstream endobj 596 0 obj << /Type /Page /Contents 597 0 R /Resources 595 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 598 0 R >> endobj 595 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 601 0 obj << /Length 1260 /Filter /FlateDecode >> stream xÚ½X[oÛ6~÷¯ð£Ì¯¢äÇ´YÓöÎXÒ@m&f]&É­_?ÞdK ÛK:1%^?~ßá¡®“ŸÁÁ4Q ‹Åý4‚S À0ÂÓÅúÖCû3¢{7¢üõ|aÐ{·IêÚ<¾/VÛLäMÒ¤Eîß->M®4…òikŒF4]e“&·wpºžÀé§ $ Ùô»|EžfŠIû²™ü9ùã`g& ͺ–®4p8Žå+7¸ß‹¯â<Õ¨4Ф1å&Í…y¢6Ž)Õm¼¹þýú¯Eü¥JÊRT>cxj}Ð q`JõLŸÅ½¨D¾Ö!Y²‹óm¶U,ÝR¥¢þ ”ÿè'Ó¡NŸDq§y3hHòµyø^¥ˆ—{ù#-µ½^ž]%!ô–{SêÍšÏ?þß\Vè¿|ü0ŸW"+|ļoêGÄ>ó’²–PâGQ Ë–.(ŠpÏòˆ/ñÍç¡¡muÓÂD b i˜O¢*ºÝ«}ó˜æcp£×FŽ@µ{÷=ï È,AÉeND‡Âü‚zÛ¼Nraç”ûÑ›¼O€ùü¸m-YÌÄf^†;óâƒ(¤ æ½MsE:¹È@ÎZ+©¬î,Ü.…g‡q3L¡‘ñš¸ÏS‰A(7>HbÚ S*ÊÔ.šœ#ŒÙ«ä@ž’²@’2î‰Î^ËÑÆ«º‰Wéf=ÒV&UXº1ö–±ÈmF78mdƒ÷1½ö˜lHTVÒûn¹0νr׫¼ÒGÐÛ{= zÕÂ.A‚ôUMý5ÛÊLÆ`‡™¬Páx›9FØeÎ\ë‰U¢õ ³¥¨5£MŠåÛgc\•Ã(¸¼ïÇ‚ÄÓYÒG=鯑~å£ÐÉæ ýsÀyÀ/׿wBÿÕÄ Ÿ¿å9¸VëäZøªì ?ˆ/­ãu±]nD\Vb•Ö}þ¨ÙàýÉéæÝ°b(9]ù4¨pH¨­ž¹Ž0‡®Nèàe6·Ì>Ée­Á#…U= í1˜DFˆZ§ùZìX0At8çFÔ btùaÈ ü9†&LuᯊµpAçpž0òr¿6e‹›â¥üîyxRQ,$ZQ,¤#ÙÑÒÇ2®É#DléÔMOxA0’ÉÆÕ0§´7q®““]3–ÎÇÏDíšžprq"ë<Üœ±ãŒŒ³e’VŽÐs0C+Lô^ÔfsZ–LgßL–ìbY@¡TZïŒ*«b½]פ™ø¯ÇåÑ–¦ÙŠÞàÞÖæ òxöó™+lrZØ"_Çöþd.½“Ò“É€C6'Ía×Ça!JÏ=§ ‘Š»BÈY"?ÿR|î#«ûo*)R!ˆÆ”ß¿ñ›®6 ¨EÈ8xÈXŸG"£¥ìJé8È‘㲘 |/×Ęö÷ÀD 6ä66bÕˆµ3rPˆ¼c‡hD»?«"ËÚ¸°Ü«¿m’[·ûh˪Jöýñªü— ü–_‹öHž! ;ŒÕ¸ãd#«? Ç´‚yý´Ž¡+ûá/'¡&& Œ™r•i—ZÓ‘‹*iÚ{RëÂ…aokôIÉfk[ìÄæ Ω½V`Ø:ø^-»¨:jl·¯ý˜¸Û?ˆÃgĹ1}.endstream endobj 600 0 obj << /Type /Page /Contents 601 0 R /Resources 599 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 598 0 R >> endobj 599 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 604 0 obj << /Length 1117 /Filter /FlateDecode >> stream xÚíX]oÛ6}÷¯Ð£ Ô,?õõØ6mZ`X×ë¶4‰N„I¢'ËMÒ_¿K‘t$ON²tÁ Râåå¹¼ç\™|µœ½|K/FqÍråÅØ ‚%Ô['~Œh4_Pýc¹þáu’}<úe™~n³õZ¶fèu•m6¦ûI®à-‰|Ùär¾ 1‘OB6?]~˜-gÄÃðGúuDˆ ˆ—׳?g'§Ø+fØû0Èőð.á#ÇÔ«gœ2÷PÍ~žý´ó³G‹¡§W“!Qx o"Bq è0Æþ×9Á¾* ŸLG™$—mÙÉôìþ5ÛZ›Rÿ ¸PÛ³J¾0/¶Í¦JÀî_ ¾Ý]  Cþã½Bðûã‚>ÿ$x.Oý'Ÿ8».æBB¥Ò"Á°×ÝEٜ߉ҦQ€»3ùÉmrv¦#9ÃÈnTU™Ž€=77Cé™~§L ¸ÕƒÏËäŸé<Ïïü⇰y·ê8bäÐy× ÝqÞuf£ó®{¹wÞu¯Sì8»éíeè1λû›º¼°y(T¾Õ8³›L®”½RzZŠä7—k—š»™}8—l³NÚÅW­ªÝTéœU•Ò;~9 º¦Á&™¸Ž‹0b„±ï¿8r—qŠC¹Ë8‚<ÞƒpÛ°œÇÔßÚ0>h¾líˆýKD"pÂCËvìè¾Òáº=ìëûB™öºº†sáÿ ¬¨endstream endobj 603 0 obj << /Type /Page /Contents 604 0 R /Resources 602 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 598 0 R >> endobj 602 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 607 0 obj << /Length 317 /Filter /FlateDecode >> stream xÚ¥RMO1½÷Wô¸{ØÚ™~sQBb¢±Ñƒ³.EMør(ÿÞîpc¸™¦¯yyofúž\\¡¦Ž9ƒŸQÇ©ÑÀR?}ÊÀȼ@ ³QXß "P<ÌËÍ&]/WÕn–Ûrû±Zæ?&CO€òx eS†)¡V òIž&œN §c™pVѯ8ç.ˆDqsrOîN> endobj 605 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 610 0 obj << /Length 768 /Filter /FlateDecode >> stream xÚÕV]oÚ0}ϯˆ´—ä×qb£i”¶*ÐB(“ZTñaJ$,MÚu¿~NìdiµaÝÃ&|CÎ=¾çæúúûÆÑ vM¸+erhz.#lúË‹Ìí¦ÐZ?Ý QëQ=Žâ(YÄÊŠ•ˆlÄ,.„ü‹1Ì-äQ{êŸß@&”?”‘SPâ"s±5¾7Sh. hžΨù$ @œcsk8˜äcd\< IÔ(3kÈÄqq.K]^Y‚ð!2ú£ŠKÙ‘ÛbpB½ŒôS.6ÉR#*!)g2þ ø¹‚ËžÃ< 8ÑSp?‰fû½ˆÀº‚qຄiü…H%#À)Í$7E#ÈÌ!€qB2ìe2ß %°ÇQ0·1´’X¾{~Ši]¢Îphh †udθ,5›Sëì>6ÇÖ¤sí×ÜCæ¹3¬½¬‹ílõaêâ‡}d<­)µ?îÕ]aeòÇuÒšª‰ívú£ÁIu#É»@¹¤- ÝDÛ"ž±TTmñ°ˆ‚}슞’vÍ´1s”ñ´Å-„8 2tæ>Óm‚P—:uÕº[©5õÈÁ‹^iSj5¨R+ÂÇ:üžØÎ¥³ ~Ï´µ[$[Ƴ’·J.1))ÕâŽi6_6ÿïSóbW"ó!+ëÀoëèüÈÛŠëâ–àh Å1-Ç_>±àÂüšå˜Ú<]åJDù$çÊÉMN;zC9ž›iëŠPD³8ï<¹@?½@ÿyš¯D¿¡jA´IaÓÑŸ C„•µ²1µvQ.|ßûªÌùsÞ~<ß‹0—ÿ Øàº'endstream endobj 609 0 obj << /Type /Page /Contents 610 0 R /Resources 608 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 598 0 R >> endobj 608 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 613 0 obj << /Length 500 /Filter /FlateDecode >> stream xÚÍ–KÚ0Çïù>Ú\?ð‹ÛîB—¢Â¶-•(Z¥‹HhK·Ÿ¾ÎUåJ-R£Æc+3óK2™ÿm¼yË$0ØHgÂ90(I±`”p6TIÔ`šj»vÛ¿sŽ ðnívå²½yÞ¯m’EY¼IÐ4ì0 €¸‹ф‚K ž×Á·`2%`Ð æF ppÁÔÖA“ñ£³ FÁÇSœ† Ô8tûÛ™sUY·ÁÎaX %„À8ÉÊr—‡…ETÀ—Vë]»;ž,mzˆOK»-·³§]üÃNs—€œ%p0‰TºHж_aI\`¡£*Å*Nl¹º´›yió;VÕY·H }êÿC(Ä(D†Àd kΡ=ï‘apÜùTwãaèß|îÔý[¢Äð¡öÔ0x@nc|^é·d®¡/ ˜b8˜°iÝ ¸à±ïo„:4ÿàfÃcý(.»Á7·®FWjç¿øEßh'd(çÿ.oÎÕtr†ëœ3޵¡(ê^±’á½MlevVAT˜a>söE/hûêD”†Š– ­¦*=Fò¶ÍWsÄܤGü“Úûúz”zß_ö$ò~ô…Zendstream endobj 612 0 obj << /Type /Page /Contents 613 0 R /Resources 611 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 598 0 R >> endobj 611 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 616 0 obj << /Length 495 /Filter /FlateDecode >> stream xÚÍ”Mo›@†ïû+8ÂÁÛÝa?¹ÕMëÔªU¥¥R’ƒcÖ6—@Ýüû,^h ²âC‰8Ì.˼3Ï»h¦ úð„§±6$kOO Š9Pð’ôÖ×t0NüíacÊýßn×U³ªÝú‡Y›* Ê7ÅÊØWJö©”Á}2GŸD=bzçóPPoµC¿Ðí=ñRD¼9"8ÔŠ{»!˜j Þ1ûMŽbtõWgb…&C¥éI°[ù‚SL(!ÄOËæ!7ÿ€EQòíûuÒvmÕÈ@Í–†C¦Ú…¹#ЬÎÊÂi,;'ò¬èT¹t±\»Øfô/MuÈ67Õr¿·¾qîã-qÕÐö¬™1È×n¦_gñ«ôM äB˜%‹?ß;„> _/Þ93ñÕ›B´u¨Ä;ÖI¶]BZ®š)êåKÅuY¹E½ÍÝêq0¦µ]uS˜jY›´K­Ê]Ÿkzµ<¹xQþy²7Ñã?ºÇž endstream endobj 615 0 obj << /Type /Page /Contents 616 0 R /Resources 614 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 617 0 R >> endobj 614 0 obj << /Font << /F26 16 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 621 0 obj << /Length 1117 /Filter /FlateDecode >> stream xÚµW[oÛ6~÷¯:`°™!)R$uÀz]Í6¿5E ÈL,Ì’‰j›¿Ã›*_Ò$È?ˆ”Ïå;ß9<~µœœ¼£Y¢Êà±¼NNDF§„&ËÕ§)r6§’H:ýCo?¼† ÇÓ×›¼ëüòMSô•®Mnʦž}^žMÞ.'$Áð#Nˆ§IŠjr;ùô'« NÎ&¥Jòä+l0"JѤš0šÆÍfò÷äÏAÏÍÇš^Ç C)ËhôœB Â;®PŠgs‚1öŽ/§/<Ÿ<Í[SÝÄó—¾ÖíŒÈ©® mã;x8B%’gÎŒžQ>ý2#ä×PÖÛÞœ4½G|㟹5ï—×M[åfXû…¶zît®W~Qåź¬ÃÛV竲¾ñŽqºë(£Œ9Ç~*ëbÓ¯B„Œ$yŠ„’µüõˆ.“" ¸EÌÐúˆRBRÄ#áÐoG ÿ8"ŽíxzZ¯u[šÜâíb\•ùM›W{àf‘Y\,ö™GE™$iÂAŠ‘Ì²&¹zÑ”S餯kÇÎx8¼89­Hò¦&#*šçcÕ!á瑜¥gÂ…yÞ_mÊÂÇòAWW:Äõ®¯ [;ÝÄH†X*åH`%¢ JyW®D,“t?g»\'ó鿏{Æí³i±ÎÛP6¶Í)b"²äãôˆQ†”…b¡]ç•~ùâ¨h•›¿€Ù”¨igV‹EÙ@îš­®«ÆS¨eÎ8X9,‰Óm¿¿é „A¼GŒBð*˘s›!"Rê(†YªÜinÛ&’©Õ·}ÙÚBòµæ>¿¶aìb4ʲ‰ÅµƒÈœ=á°È&˜~ÏÙœC3úR¶¦Ï7GOT´•&ô¯Cõ®2å³ìCá8"”Ì@*³à"x™îûdÏ7eó+£¾t½È}Ûˆ8vû^×ocüLP,A d¼Íû2 ´rÈ¡[_Î]ï‘Y—!|=´ä§gèªi6#>l.kýÍ܇ÇC 0‚„ä UôÔš©]‚ßh!ˆü§ŸÅ1fMUÝÇ W"PjCeáŠøqì´9÷·pQvv°Œ•Ã5» ÷ 5D6&Kq_ÏÛ6Zy:@ƒ;íªƒHïU_ÀÀâ󠇡UYÖÚ=þÙËéÈBs½÷íôc”¡zvª¡“äía+y Æ££ÿ—wÛ¶б®ÝŽqrøÙ¾ñwFï‹§çcÜ^š€½µC]øsèà&+è· I=žÇÑ…Ñ«ÿêúÿÞ¨¡„ñ44¶“ÐÍëÕå¦ìÌP—?Hêbuo—Õñ>4ùÍ‘_ÂdOÒôùóþHQœ®2ï­CpYÒI]DD˜ðÃ84cÝæ̱m,gŠNûàý™m†}øÂýƒðÇ &üŽbBÃìi‡ûùÓ/¯îâŸow7zø×ó/÷¤Sgendstream endobj 620 0 obj << /Type /Page /Contents 621 0 R /Resources 619 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 617 0 R >> endobj 618 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__AsciiParticles.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 622 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 240.96000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 623 0 R >>/Font << /R8 624 0 R >> >> /Length 625 0 R /Filter /FlateDecode >> stream xœ•OËNÃ0¼ïWì8,»~»7ZUÀñò½Š¢´ J$ZWêï×!A¡pB–µòÌìÌxL‚<œiÖ=ܾyÜe`¼/w{/N£îq™Š( Qä¢Q˜¶0. Š'¢ 2Ù ¦®šÏ§Õbñø¼¹ËuÛ¾T‡c[wM¾N°Nð Ú’õÁâ ËÌèE †‡ÞÿWÀ .FçIIüU`YåfÕUyÎ.;Fió7wü‹.µ”©~| —í°+Â à›Ÿ\g~ÞjÒE¦ ‹DãÈéŸÈ¥Çö¦T=ˆZìendstream endobj 622 0 obj << /Producer (GPL Ghostscript 8.70) /CreationDate (D:20120605155050-05'00') /ModDate (D:20120605155050-05'00') /Title (ClassName) /Creator (Doxygen) /Author () >> endobj 623 0 obj << /Type /ExtGState /OPM 1 >> endobj 624 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 625 0 obj 226 endobj 619 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /XObject << /Im1 618 0 R >> /ProcSet [ /PDF /Text ] >> endobj 628 0 obj << /Length 1668 /Filter /FlateDecode >> stream xÚµX[oÓH~ϯˆx@ŽD†¹_"­Ð–Ân‘,TÚ‡.B®3m-%vHœÒþû=ã™qœdhR ­;“ã3ß¹}çŒOÎ/ßR94ÈH¸œ_ *I „ϧ™A ÆTàìo»xÿz29ûðõÏUQ–Ggù²)‹™]y‰×³|n?Ù+»Ùª°°„QfôåüÝàÍù€ 1ü“v;¡`’ ‹ùàÛàâ Nxøn€3Z ¿ÃŒˆ1t8pÊâ—ÙàóàŸNÏûšN‚e„ #¦Q°Tm,Cd4&ãìÔ6y9³SþÔ®Še¹hʺr€Aî¹v¢ Iy«ÇŽÀ´Û`kãŸ/«ÅºyY¯¸ÄÍëüíU½œçMwïo¬ÓsoƒpðÌó⦬ÂêÒæÓ²ºvÀ¢ ñP>7˼iU\߃°ŠŠ¥éžjWÛE¸~_–M9"Y\ß2eå×ò•W°Á <†ürf£ˆ7 ¤š:,ùËÓ™E£1“:û÷ÆV~¹¬VM^5eÞ¤nMdÍ ÕÓ ·¾êŒl£HZ#½Nï‹v;¸^†ïkbçëU³ýója‹Ò=o§(¶ŸûcŒŒ‘ Â+T·Û½¹Ëç HñI‹…h¤°Ñ€È„¼ ˆê—Ö ~}ÿñ¾¹)sT/J»jÚê%TV/v¢ë~†ÈµÕ’ÏÏ>x)”È<lE˜„Qƒe»ý©uª²MW¯:Ø=ë’Fp—¶×¾{-ºŠF7õjbÁ1¢Pe›¢¡†^×Öåºhb2?ïªikù´.ÖsH°¼W_òÇõå÷è*õ!ú!;1FÀd Ñ-nò¥ßœðÞæÔ0¤€"„–y)N{Rà}¥ÙF|Yås›0†AÂPÕýá%D_טad;ÍŸu¦t!™æÍ³Ä„)Ä5P€ß#¤×ª™N&e >©¶j‹*a‡Fîüƒ™-õ”Á¨‡,ЈH½ÑÛÈo_‚ÆZv¾$•èLD„Ú΄b7Á–öÛº\zZžtvr»Êv¹E€$‚Ñ»TzLQõØ¢‚ÊN'<¤ •¤Ÿïô¨|Od0‘º ᇡ'€×*È<ÐÓ]Õl‚´v Y§ãâ¶\6ë|ö%Nê0­·ãyŒ¹|Š0 >~oç—6äÔÛuUlÍU¬§µãª[çϺœ &øÌ—}N)Ðç±Ø.Êʹ*íó(º]C›m|Çmý+Úçüg«Á¨'´˜‹uÅpY׳cœÙî=ûZÙ»æk;µ‘èæ3çà¿lõ¦[Mõ}“‡û/L“^ÄÞ¦è2PI÷èn+ª ¤)‘ÇTƒÎ¯„1ÛQ½¶ÍNL«Öì»&Ž•ý5à37ºÌÛ©oß®‘aBxÏŸä+f~bp¶€9†’Ö» è„ÀT…»nS¸[]^V %ŒæL;QA—nƒ« ¡¦Í‚÷Ùj?ÆÑPOö duöÁËš!GFÖb HIìæ'–~z; *qÒn$câÇ@g*h…„eælÞSΨCíÚ8ÂBùü½Ú7ŽÃÖ@B=!’@ÀàŽÄ´™Âl(@ 4^.÷5¤éòш„Z… <ŽÑ®up~HÃ4¥pùI¸ÂMÚ瘗ˆ$á'«Ž9'£fø ž¤»%ü…ß%wzXÄ\ë†yæÓ"¡)Æà+Jûùüê•—Óýîëï£8S$q=àñ³ùmà ëo¯AB‚?Ìé ô/è¦ãêUwnò¿À)À‚Ø?Üy~çd­Ý%üO¶Œ”ïÎËŽ¿¯–õ> endobj 626 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F8 640 0 R /F6 643 0 R >> /ProcSet [ /PDF /Text ] >> endobj 646 0 obj << /Length 1575 /Filter /FlateDecode >> stream xÚµXmoÛ6þî_aì“ Ì,IQé/EóÒ®Ú´›±}h C‘èD˜,e’Ü4ûõ;ФMÙLçt]‚Ä’u/ï¹;u¶œ<{IùT"Éác¹žJFDàÙœ "hô‹º{{7 ŽÎ«¬ëÌåE“o7ªî³¾lêÙçå›ÉårB¦~É`-IQs2Í7“¿&?ãi1ÁÓ7Œb)’é=Ü`D¤¤ÓÍ„ÑØÝT“ß&vvæ`hî[: §p›ÜÅà±Ùœ`Œ£²î Üa‹Åë«Õ‹./Ë÷3‚£¬í˼RÝbÑ,DÑO8ÁðGÌ]ÞÔ]¯×÷ìeB=¿ð ¥‚ À©ý~,몬Õg#I±'9߉Î)C1“i~«ò?þÖºöP4ëƒg¯¯œL«²ö®ç$Eœ²x°x¡>aLër`dÍìê54s%ùؼ֨vvÁIvÁA·È®É:xŽ)0ÆR?ê‰úݦ,N }§ú÷팈Håe·®9ÐÜ žÙ8î ,uq/ïZ•RŒä…•è<æ$(IN¡PD¥ŽB2hvÍm·µ×YɈ"v:EâÇRÄ}ŠøwPtß–½ZåÍF×ûžS6' `²oËú&@YLäÌmœ¡cÈ1D*숴11çÈ£ÂTSYwªЈ(ÓiäQQ-}õ`Aj5æ{[^©G¡ð"×”¦F¢nÚMV"zh¶V±v_Ýas‡4*vžÊÎ|“õ#ß"ºVšÎ›²®uÕÖµHò…*òWµV­ªseƒd’¾ªÊ®>Üvpz¥¶Æ®›¦:½¾<—ûP`óI¹Þ]ãºk›²[áÞe…G­kðiüè3É”Ý|oÏ¢$ýÑ|XP×>/6¡ŸÎ‰øî¾7Ôæ öX÷{¥êË@ :Ì6"»¶†ã@“Lõ~eEÔ—Pw„úç„Ó'mi_ʶßfU0/bF–ºúüFê%†ëX°°b¸%ޝ7w•2­æ8“±Ã´ùYÖ)o¢¼³ÝKG7€—€?,ånÑŠf4dÓ)‡!¢ ¢Œó "&m^Á8—ÒȆŒϰ@2éÔ“} ²"º2²Òõ.¢”c1æ&`gÖ$ö !Á?Ä1H饂U¨™ÙœGz̓÷ŒCÖjz1’Z[«¥Ç‹ƒ\²`/$¡’Hpè-ƒÄ© YcVAB£âزN°”¹íWè:"ƒmŠõÿ4à¦(•ÂyÈCpŽÍTj;˜… BÌsÛúØC~ìs:âÉN @qÀhL€/)ODGBàŠÐQ±@òsD¨~v=nÄ„Š1Wß|˜®8 óÑ“Û3ÿ‡Ý’$,vÕl[àЋ‰²êî6ûp~á:õÏ /8ËáËoÏCCÐï3BHcßТ¿.×Y›7…™¡».ÿÇL@'+onûóέœTÜè5V"(ÁÊŒlš˜¦A¯wÔNWõvs­ZßÁ"¨±b—g•zD¯P°Âj±0cm@èD¨w.#V¡H –„îÕÆŒÿ›Bê®üÛ_©Œɼ6«‹f³ÎÑÝH…ºò¦ÎªLP:§IÔ­ÊâQ½`Ì3Ö­Ì—ž>±äßÌʃå‚|jåâÂÚÕgÌwÙ&$x"¹` pW>‡FR礱öý€ºÍb‡sÁÒOŠÑë¢á«µ9ãøsF¾ŸÌaÊÞÜ( Pjá¬ÛfspþY7UÕèê¸÷ægÝäºÅ€‹À™Q-á J$KL£¥4 ´lû°p=?8¢[s€±’s˜ dBØÞè<ÁøÕ<¼-0£’8þï/Ë> endobj 644 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F14 69 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F6 643 0 R /F8 640 0 R >> /ProcSet [ /PDF /Text ] >> endobj 650 0 obj << /Length 1233 /Filter /FlateDecode >> stream xÚÕXÛnÛ8}÷WX °ÃûÅHû¦ÝM€¢{ñ[·›iÈ’+ËMó÷‘”,­åØnX~(’Ã9sÎpH_ÎFç兀 2³ûÈàHI‚%4š->Ž bdSÇ¿ÛÕû7Óéõ‡ÛËdmßdÉzí;:¯Ù{[NˆÛ|náÑÒŒ‰&“O³›ÑÛÙˆD~Ä­"L’h¾}}ü„£ÅG7#Œ˜Ñ"z„FÄ-Gœ²¦‘þýÙÚ‰ÁPܵtŽ—´AD ê"ÿ"€æq'^°>§Œjg=É2?/ÍW›ê¼ØTðð_æµQ»nºl™†žû²XÓ]*çˆ(Ðéž›»Ži F‡Áÿ`WpJUÇšÄÏ´3'¦X mD…$åÜÍý%ÍçÙfÐÒ™ RF7] ˜THq­\Fö4CRM~øëX1áÂËhã#ó–}ü/3ˆá"M>—É2´(÷jv:ý· f+Â#aŒw„}Å)Ãu£ºïN°ÍäðáüzI£«¤uÔÙZŽ»¦[d„h4*¸A@š—Ñ›»,{ ïíòÎ<ï6ù¼J‹|HD"Î4¬E%ÒœK¯JÅ$ ö¯iYm’,À;™„äÀ¦UÃbt¼ê!):Çj½5"‹b®"FA@^Œ™=®¸™_'‹tá[@ª½µ"|‡Í«ísš¿Ùüm;`ѶÖBÂlGFì6aÈ«œÓHÃ(ɽ%`gÔ8j*…ïõ¾Téºç•è»Ýrµ5ª4âTɰ6$êîºQÒ"Pb›Á= 1Ø}t ]™° í‰õ]Qd_˜fÙmn¿Uû¢}(Ä ´- ?"ÆìpŒEÍ—¡ý{'8Ȳvƒ‰ƒA¦GƒW0ó˜ ÷½*Ó®›ëj1ëÊ—”f¿:«¿¼r}s(Î _3œâwý¦I^ï+{$Ù­;U¾Õ«€km c; ¨\™çE `Hä|ñ¬ô¶<ôeÂ4b8”«ö"àË‹`¡FA!e\¦M!B-Žbô@4ìv‚œ²ÙœGW¶Lª¢(ŒJÜÆ×CÇ&5éü~rˆÕì„„=ÛGœëå†ô™¨‚üÖÉ2¼%!iË-åmªì‘Liu òº¸ØËí0t¼ÏŠÖ‡ù_E™@3s4Y¡&Šÿéó 9ÿkúÐ3Ò9BÆ Îp8‡³&A’ÕÞvPsß¹²U’f6T¦+»ž—éª>Nî¹×àXÒŸá^³ç&s}?‰cã§bã_kz“ºÔÔ­º22Æ!º2vµ³n%¾3·*`‚k\ðO‡õWx¼¦+÷_[ÐuÃöæÝ‘¥æ_“|á_J/l}ÂÉún‹t‹64·¥°¹Lf(Š7©á…û˜´}q«Ò«¹ýjÛ <GÈîù¸x¶ |3¬w=»òÈR'.¯ä ‰,̓¶i|ß9’†¾þÅ ü} 1(›±—ÿ{Ð1Ô\ÌêûÓÍ?\ùÛìõ–ÓdPƒm61t¼ ®ßÔáÝ„áDLžrå[¤f»wW çô§¢Å·§Ï6oàÙÇU{endstream endobj 649 0 obj << /Type /Page /Contents 650 0 R /Resources 648 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 617 0 R >> endobj 647 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__BaseClass.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 651 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 60.24000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 652 0 R >>/Font << /R8 653 0 R >> >> /Length 654 0 R /Filter /FlateDecode >> stream xœ¥“OoÓ@Åïû)ö†™ýÛ­¢´DS,8¢(rKP\\Á×gv›º®Uyò4o÷ý♽6€ÚäÏá¹éÔû› ïzeôR¾wj¯°4èÃcÓéóFš¢€LQ7·j0£&C@ÞkNࣺéÔ›ËöçÇ‹³³«OßÎ×}{±[÷ýÛæ‡Z4j¥"Xkõµ×õ„CLÆC>ˆOºSlÛ£²;*.·Z¥º¦Êèú®(…%¤‡²SŸõêß8-±$wÐ$û„óC¿Ùn¯×¿¶›];ÂN óCP1JÄ õîX£CŜԦ Z 6j— Üþ(oˆÏ,ÛûÅïöþa>:R@@,dü¹±„«õºvN•†˜=Ø×°2t8Ãr¹¸^|iæIÈY™Y*$HB¦’¬ÖcîÚ9Uv)‚{ ËD;çfQn¾^-çQ8¢,gÌ0.¥#מ©2@Ø(Ëñt´ò¸ÓskJrº–9Î+Z~›–'Rî@*ëhR´e`b(k=*§§Ü¾›^ëòâ³o¶vXóƒ0Ü=k«ì“ƒf|²”²o*/ûÙÉë|ä«Ê˾J3úžå[©¿ÃÃ-³endstream endobj 651 0 obj << /Producer (GPL Ghostscript 8.70) /CreationDate (D:20120605155051-05'00') /ModDate (D:20120605155051-05'00') /Title (ClassName) /Creator (Doxygen) /Author () >> endobj 652 0 obj << /Type /ExtGState /OPM 1 >> endobj 653 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 654 0 obj 462 endobj 648 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /XObject << /Im2 647 0 R >> /ProcSet [ /PDF /Text ] >> endobj 657 0 obj << /Length 2479 /Filter /FlateDecode >> stream xÚí[moÛ8þž_áO ¬¹| öv±m³M íuƒÛmȲÒpìœ-o›CR”¥5Êy9,î‚¢ñ‹FÃ!gæáðùÅùÑ¿Q92ÈHx9¿eDÓñ„jxÉÎÊ›w/áƒÀÙËy¾^û·¯–Åæº\Ôy]-ã/çoNÏÈÃ?â´ …“dT\ýûèÓ<šáÑÛ#Œ˜Ñbô >`DŒ¡£ë#NYø0?úý蟭ž (št5½h '!h°œÂD”7Ü FØN0{—‹u½Úõrå­>nŒ/û_ïLæ/«VP0ç¬3"Í(V«z“Ͻ*·Z''oÞ_¼È×¥[°“¯’ðŽJ¢1â”(ÐmU~Æ GVHq­™®N?Øg,0ü'þNXÎi!ퟪżZ”?Œ'rkð—f@ܹmB%L”*fìWõUùcº¨Üú¸¡óÚ¿Zµþ“þuyŒÃtÞ\뚎®P;ÓŽa™BRR³]cÖ¬ð»òzZ6¾úm³(¶fÜÇs,î¹éry—Ýtæ‹ò{}QމÈþœÁÐ[W¼.§í·».g„;±l]ŽYÄbŽŒ&¬•‰:–MS"‚so6«2íYÆ0œñ¾gý´üê«j±îãÖI~´ÝIö†á ›àmX |ƒ`µ¥Ê”³±9¸f4!àrʹïë›yiYÎàƒ³*æQÉÁÚ4l]õ뺨ªÖ°|UWż\{%vxj¼ƒ"ö©yXËÂ:Û#ž“U# дŒ–ðj›!’ÍÒQ¬‘aZ:²o@Vgャ ޶6P¤$à–Þ/¿6*q×kÆA%ÆD;)?ç f=ž0’ÁÔÇ$‡Ê¬\ïŨävX(â”\F†â` “£ŽÔl¶»"QÃC-eœ žFÎ !4T°'´è!cû7"6Á†€|‚ØOâyD:;ýp {ð¿¬3Îc ¤×í¶ù¿Bg‘À‘pä3² B‚šÂÅ~àvµ(—a½ºÃÀáN1Azp `­lm½â©ôœ‘¼"P%˶J¢I¬Tܲu*¥RàIô‘$V$-!)KÊX­ÞƪZ²·¶ ÃLó˜bêaFÜØqÒó^¢PàžK/¬{Ù’/f‘&qÖªþ.EÍÙéÇ1¡:ûãÍëx=§-þ%ÇžýañD4ƒ¼ŽÔ5bé`„ÚW×Ð.’ä±ÔdÛ¸dãTûÛŠ±ŒmíœÁ‰³ÝºŸ¨FÙnæÞ_!–<—M‹Ù˜h³‹p$ 6ÛCȾ"¬‡G‰JEÂ0˜À¦}¿ah,/ËU¹(,¿àŸ[ÿº*óÙÅ‘:ŽÜ¡ŽÜ¶: ŠYÉ –#-š5ÜRàdV653€ ÖßAN-oÊUnéÌÝ,„-ÂI+ú)6@nò-J$¬‡†QÍ`²Ž÷PY\M[;€§$˜"É í|õUÃ8®óëæ]Þ¥ßVU]ö½ëÈ(X(6˜ê9ˆëÜŽÁû¸ß´»ÏR¥I…y7ðYZXÒÛr^<ƒPÁ#Íõ!„ä±W|x Èè»cªbJ»;Õð‰(‹`ÜìųޓæÍÍUÝï§ù¦ñ5> endobj 655 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F8 640 0 R /F56 660 0 R /F6 643 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 663 0 obj << /Length 1419 /Filter /FlateDecode >> stream xÚÝX[oÓH~ϯð£#­‡¹_"¢P H¨ìí  Èu¦`)·M\ ÿ~ÏÌx»™¬¼ UUÛçþÍåb>yô’ÊÌ #á6¿Í Δ$HPB³ùòCn#Ó‚ œ¿¶»·Ïg³«ëÅEy°ÏWåá^ôÿ²·v?%:·›ÊÂODK“ͦŸæo&—ó É0ü¯E($˜$Yµžü3ùð gË ÎÞL0bF‹ìch¶žpÊâ`5y?ù³Ã)¨è#]x‡ð‡( Uðç…ýˆ1ÝÔM½Ý›Ë&ÜWõƆ'ÅÃ}{îî‹Uû®ï>ú‚œc`IA’”s¯ÂÁàÐû|µt"òoÍÂN©È¿ºÝ4±ÀðOþi9-$Èß|÷Ââ`W¶jê)ÉK$wS#L …e¾.ëMTÔþ´ÝÙ}Ùl÷Ní£—„ô"F GBkÖ8#ž< 2ƒ¨¸Q¢y€½›œo¾ÔåâDïàÝb{ל?xé¢SP†ÖÂ@”2B¯½÷É®Ü7uµ²€}š7Ëðp¿¯ûÎË¿oö¶\_]’ð ! %ŒBíqÕõbHA 1Æù×zßÜ•«iÁÜÀ²­—nDRý2›yå _ ^ò¾u&TÛÍ¡ ¿²›ËN ¤ˆ÷ŒbTCŠŒéâYÂtŽŒ&ì˜#dí'’ MILä‡ÝÝÞ†X3Ì|"b¬Cû´þ~J”DÁ)bh£ LHŽw8"~HXÉ Ò¼såÔñ.&Xõên‡ RåJD³Bs¤%–ÃfºZïVv °®›ˆÁy½IX#9"XGkŽ9|v¨êú3¬-±Cqê© ùKõ T‹Ô<Æ·rUàAƒ¬Ê$0ÓNÊKÉÀhh­Öf ^Es’hR Ó*ëÉ^¬Î¯ƒ¬‰Éw6P¤$†DR–!ÏZHÜ7Ia8@bL´— >Dpð “äà:P Ô»Ìm›LÙSÅ%T“äY‘‰ªhBCZkÇéÔò4 ®bùr‘€QÈpc{sŠÀÀ,¾7Ü‘£òW#ýs’*¤ŒŽf«SPÅ£Y8éœQÐmÆ—/[UþjOÑ`jR´Ó§å˜—cqç b? G=JÆYb>fA°‰¶®œE¿œŸ> bº?—‡§BÐ ÒŠó~ÿžâS (òVh6KÀhÄ0Wש֦@‹$jZ$0üˆQ 6wmR|md,*Ý¡SÃ5ÂÔèû%ìà·!œWIÂVÄhZ77L§€>8,´–ª¥æ?+S5Í„ÐYOH×óD¸+÷ý/Gû? L»¬ó±Z/oO ’ZÇ,Ó_m7ÍÆ(æ”ê¦\‰]00IàÀ2O눫aBhÊ (•ŽŒ1Ð(©ª1„1ªWä½»µ ajÈ…Ã4>¬0މ3hD·ü¡8V u;«äbغ76DuÇÔS¼öt/µNZ¡”.˹qÙM<µÏ"ö P?Çç;¢¿ýw(·ý÷çç÷î† :*yüø‡·îÈ-ïq>ÿÒnÖ–ÛêÎm–ÊãAÉ-h> endobj 661 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R /F52 151 0 R /F7 631 0 R /F9 634 0 R /F10 637 0 R /F6 643 0 R /F8 640 0 R /F56 660 0 R >> /ProcSet [ /PDF /Text ] >> endobj 668 0 obj << /Length 1185 /Filter /FlateDecode >> stream xÚ¥WmkãFþî_!(N{ûªÕšRh.I›i®¡.GQä#dŸ´nJÿ{g_$KŽš¦Ðj5óì¼<3;>YÍÞŸÓ$RH%ðXÝG G2!HPB£Õúóœ¤|Ó”¤tþ“Þ]}€çʬmýòt›ï+]›ÌÛzñeu9;[ÍH„áGšH°„Dy5û:ûüGëŽ.g1•Šè^0"JѨšqʺ—rv3û¥Ç‰("à GŒ'´³œ‚#Ò®£‹˜`Œ½áËåÅõïgO¹Þ9CÝøUßëfAÒ¹®smÝx<ˆ œO%RLH‡~qíÕô‚ˆùô!«×eQoGtŒB$J(ç团ÎËý:œGÈ@R0$U áp‚ßM`I$y*ƒÀÐ7ô0—2”¤(/þý„‡1áQÆhg#óÈõƒn “Ù°8ÿÖE¶i²Ê¿Üo¿˜ˆñriO‰ˆ Ì ‰)bL{K©8f à .Ó$IЏÀÂf:ú ” ˜c夆kǨN9l¼¿¨XtºîDúôÈñº'AJˆŽD‚ Dˆðú´¿+‹Ü»¸ZH>Þév"x$Aœ¥N"H •Ž|<*10 I»L\tAŠÃfL X<Ä(ÀàŸ÷eyöÇ‚ájãp'JDs,ÞÖ›ó¢Ôɯ«\m „½1Yc>.¨˜ëç±Â±9gõúúþÆøz*¼ŠÂΩ2“?¼¬9¨½Q/8ž»Øde±>ÍLöo »½ù<ØX¼nËIÄÞê,(8ü’?>@×ûPIgO\ÓçÌmÿéô{v„™Äyç%FÜ{“$ß&²ý®7ò€”ã ü2™cÔÃ÷°?‘žñi\…63ÌJPžÿáËqœÝþ_¾Þ8…©$á®69"Òµ5ç¥G ¼iºflm£¾`]!f ahÇQÌá¾aäeo¸ÒÕ8çû:·ýï }B¾¹O¼¼¼n±À9œbükkÖËekH‚ßø¶j7 C&¢)œ@?d 1IEe".ÍSm2 Ï:ÜòºÍ›b×Ýñ—£½ˆù—ãÈߣË<þQ×£®wt,Ì))g*DÈÆc‡ÀúDÂÔ’X×-Y$°Ãä°Ï`•»ö›lnl…I ‹fk)ûè÷Á@¿ßjãwÖ¶¥¸Uå²Üúï…C±žLÕWðÐj·m¶ §Þl+ß•ã΋ØçLJp{b”hÚ+·~;k´_84ûܸD\°Êª6YÝ6rᮮ² ´ñÒhƒl¨²H„ÃÝù™—½ËÖ ct©p—ÈÖ'Wç)òrjˆ‚¡3ɦF˜M؈¯ƒÑr‡RÊð Û•øõ”U»R·aÎH‘ĶF‰:ÄÑèvÐ#.®Qž£¢F“ã T„ WšJ2OÂS}‹1­‹ƒ³PoÀâТiêŸ.f®01-÷ñ\†&æãaÂØÿ@Ý`“XGRŸ*†REX$ "\&]Ât“™®Æ;W EçûàÀ¥­á}ø"üƒˆ¥ÀK.ƒû˜Ð0 Ú2 „~y÷ÜýUxzÞèþOÂßÐ5'íendstream endobj 667 0 obj << /Type /Page /Contents 668 0 R /Resources 666 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 664 0 R >> endobj 665 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__Exception.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 669 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 416.67000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 670 0 R >>/Font << /R8 671 0 R >> >> /Length 672 0 R /Filter /FlateDecode >> stream xœ¥PËNÃ0¼û+öïzíØ9‚*à€P!÷JZ‘>Ò ø|œw"¸ dY–gvgf÷ t}ºw]¨ëç¶g¥á.Þ­:)j  {ÖÜd±Èƒx !È6ªm&`BÖ{´ž=d…º¸Ï·iúð´Z|­ócµ;ì/³7µÈÔR‰Fo8OU÷[­5xrè¢D™«—¿™'h „¤1?W¯iZ~ì«]‘¯ò²<”ƒwlqÆ ¡ÿú1Z#`¬E;úæ?æÕ`ØEþųٓ¸ ¶®h¿Ä,<¼×•S ç»YF¾jÞ²Z ã1™!sÍU‹°H,B°·9Œ&=ÐñýpßcCÚ´}ˆ 2׈!–ê†öŽendstream endobj 669 0 obj << /Producer (GPL Ghostscript 8.70) /CreationDate (D:20120605155051-05'00') /ModDate (D:20120605155051-05'00') /Title (ClassName) /Creator (Doxygen) /Author () >> endobj 670 0 obj << /Type /ExtGState /OPM 1 >> endobj 671 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 672 0 obj 287 endobj 666 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /XObject << /Im3 665 0 R >> /ProcSet [ /PDF /Text ] >> endobj 675 0 obj << /Length 760 /Filter /FlateDecode >> stream xÚ¥U[o›0~çWð4ÁC<_1æmmÓ-­ºh+ÒÚj¢ÄI¸d„¬Í¿ß›„´tê4ñ`lŸóï\};/ià*¤X⥫°+‚%ÔwžBŒú*°÷EonΣh6ÿ9}Nõ¦ÉªÒ\œçÉvk~¿ë¥®}zºL5‘0P …ÿ_9ÓØ!.†tV„D‚ÄM ç—s÷€Ý…ƒÝ+#¦Bá>Á#¢u ‡SÖorçÖùvÀ™Ðdˆtf")!hïåÑ!.Œ±w£‹G ÜqŸ–»B×Éѯ‹*…“²1GàÁ‹PiÊãjŒˆ…Ö÷fà¢hZwqªêØ—ÜÛo´5€Ç ÎÀlnðt]W–sŠ[4Âm‚‘R‚ ÷°ª#£Âé@…„HbºøÁ"ު̯[É– Hql\ýºËóéoŸð²øQWåêÒçØËrûLö¾¼É¶Û¬\Ý6IÝ\û÷§bÌ2_Ì—·M­“b ®­2àI“ú{ë¿Ø;*Œ ÍÊ–ùï$ÏI“Œš•›]ó Xíø9KìåÛ´A¤Ã9J¼(€ ‘H& Pâ¡ì´.ô=Æ´ÌŽ…š4fͳR›?ÆÍZ-ÍÚjäönX‡h},žAËOÆ ‡-Ãl]ŸWå¶©wiÓ×àÛ-úôøÝÝC6Ý3Ú3¯GÏ=8m ™í¶YDЀ ÷Ü^×9UbÀ 5\lW#ìH€,…•3ĉ“Ž!(¤¤ºËÊ6cydàªT\žúü®LâÊdWb”óÎD¼¶²‹“ttGËÃYgv~§ÇQþÔöPb7+]¶ƒC/¬f]½ªîÁò¼j[êé|Cµ5m<9 y7„â„•R1ûñ ¤6ª§>޼#!<„±ÿF@ý+À«ÁÂþ!ˆpt¬>ŸÆ£hì+êílD®Úù¸³7Â,DDG\šÅľ­Ë6r}:ºÚ7¿û¾™ž÷ƒÞý?$çù‡endstream endobj 674 0 obj << /Type /Page /Contents 675 0 R /Resources 673 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 664 0 R >> endobj 673 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 679 0 obj << /Length 1200 /Filter /FlateDecode >> stream xÚ½W]oÛ6}÷¯: °š%)R…uýZ4h·yOma(2m ³$WIóïwIв"ËM²lƒaˆ¤È{Ï=<÷R|µ˜¼xGO"Àc±ö$öD@§„z‹Õç) ƒÙœ†$¤Ó÷jù:O_ï⪲Í7EÒd*¯ã:-òÙ×ÅÅäíbB< ?b¬q¸/É&ß&Ÿ¿bo5ÁÞÅ#_†Ü»FDJêeF}×ÙMþ˜üÖÙ™ƒ¡yßÒ«8aÈguÈ)",p‰|6'c <ŠÎ?.UùÛëÁS|Éïj­Ê áe¢t$jHú\Csvî-BHfþÌñ¤@hV¡K¬ßxW¶µRж͛´ÞŽ` I,ÃÖä{Ï(Ÿ^ßž[êþ™çÁ˜ÎzþóÕˆ'Ž¡óôiµ>Ï×ÚY1âÈg(”Ýܾ#J©v„ì"N{‹@UÑ€øÞœPÆÌêŸÒ<Ù5«véC‚xdÇçÏ#6,í·A°9h;bNÀl:z~‰kN|‰¨¦°…è[ÃùV•ik™Ø}KãMg¶³.JÛ8’×:‰¢a’P&æ’{ðG\«î}ƒL XŠÀÌê·M"¹ÅíÀ‹óŒyo H¯—5åyßt—;IÎ]îpØ¥€…6y>5W»4±a\ªìJµ!½kòDçy5B óC^)òCN¬(å#â  ÀM¤9!%àÉõ«zEU]¦ùÆŒéÙŒéNåq¦^>A«¸~ö&2Ü.M‹*ŠŠ½Ê³ÂŠKçsGÀÐã/{S›Ú¤ˆÏ(@–AÀL  áSXÍ‚ÅiÙ$µÛüR}kR Öä˜}XĶ­qÐ4œwÛs@Üi~F4Ñ> |ÌDÏ9D;Zæ4›Ö:À45ÎÉõìD”%yX˜¹}¦ù¾©]L¥öuìQqÿK ‚Ç2Üë´¬›x×V Ö¯›ê>h˜­iG¤¸è½9ˆ…RWU€%Ƚ´H[ÅÝ@SK¥kÓ±Í6ýt÷ø¤»œ'ˆP,ºH°? œ]!qåÛú<•cPy¡œÀå}3p-¢z›¶y¢\i=½7ü”È®Šb×KÍÝ2WßëS|ÜG#H„‚ü‹$PMk ï’°Qµ£À•ýt.Æ”‘YvJw*²h'wRÄNƒÁÀSê,–« >Õ@Æ­1íèT>t‘hè[e Èéy(Öƒwç–Ûä,Ù©¸<ÎÉEpXú_¡Û—éʨ±Ç`âŽÀÇïG?OÛo[ãéþ~\®šJ-ÍÙ²lò´®Áü©»QtYh6™î>·oÛ7T¾©·ºs,O~m† $­ô§ó˜>Jèª4VŠrYßwã̪ê)MåMÖû ¯ª"IAõ«Þ]¢=æâU¨ø'ûñ£ü?Æš©ªŠ7OOï.#†øíwRßK‹çøÂ…“øþÓ¯¡=CîK:€[§šX %ÔwAaÂêÎ U¶Ã©h1“tÚ´¸/tÝnÚ7Ü>8Ž˜°=Š moæÖ¿eØæÕ­»’¿Ý¨î2þ7CÊüÜendstream endobj 678 0 obj << /Type /Page /Contents 679 0 R /Resources 677 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 664 0 R >> endobj 676 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__GenEvent.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 680 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 270.27000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 681 0 R >>/Font << /R8 682 0 R >> >> /Length 683 0 R /Filter /FlateDecode >> stream xœ•MOÃ0 †ïþ>gùòŽ›¦Á¡AïhšºM¨¨Šàï“´éhQ/¨Šl§oìÇoƒŠUúr<ÔpÿâñÔ‚Âm<'h€;æp¨qUDQ@È[ë°8Bÿ˜QkÍ‚:1*þªáæ¡üxZ/—ÏoÛò²ù*/Ÿ·Å;l ØQä´xü†‡™"…¬R)©ú$°&+&–Ó< Î`¼WâhCit ¯¸û'½¢FEbåýjß–ëjß¶WühvÚR4 £e^@›…':èqþ+Kkˆ£ Bâ†y-Ì9¥íÈš\²æšT½ ³OÍP^ºy㫤pÉdã49E_HMn¦]ŽwÑ¡ùŠ|¯endstream endobj 680 0 obj << /Producer (GPL Ghostscript 8.70) /CreationDate (D:20120605155051-05'00') /ModDate (D:20120605155051-05'00') /Title (ClassName) /Creator (Doxygen) /Author () >> endobj 681 0 obj << /Type /ExtGState /OPM 1 >> endobj 682 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 683 0 obj 274 endobj 677 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /XObject << /Im4 676 0 R >> /ProcSet [ /PDF /Text ] >> endobj 686 0 obj << /Length 2214 /Filter /FlateDecode >> stream xÚµYÝSãFç¯pñ’«ðì|h$«îaÞ,[aá‚/÷¤(aXw¶äHr€ÿ>ÝÓ#Y2" ᮨBóÝ_¿îé??úðIF#ÃLŸùÝÈðQ ¦¥£ùò—À0¥Æ©yðÙn/N§ÓóË›l>ûc,x`óšæN×iUQó'{g˱H`raaH$± àßø·ù—£ÙüHŒ8ü GHÇL«HŒ›£ß~ù–G|ôåˆ3e=z€gÂ9Ú…R5õÑõÑ?Ûs&pФ{Ò÷^&!˜ÑZ6BI1ÞËÄÄx"8çÁ™­Ólm—Äý™­e¶­³"G†””dÈThèœCUÐÞÙšŒDœ»õ¿rÍ· èF1h$‚® ªéº*¨µ´Ð¦æCV¯x0!3Ü$þÈÏ6KüñtÞ2Ü¥*k Ñ×a‡~¾ ¤9ãqÒPºZÞçwH¬ ¤B–˜vm—” 1ÜêK4“‘P£‰ˆY$CåÖ['ÃXhB”R:Èòí®þPìjøàH#4“V‹,£¡»¢Ü¤~´©±I«,·´¢´é2ËïiÆ"…ÇÚæK4·ßäƒE‘òj@ Á½Zé!Óúh•Žô†•>Q1l’4ÔøýÚ'3/ÐKmE–höxC„nëu]¦µSÓýp)µÊ®&‘‰’¾eVûÁ°oÅŠìªv:+ªÙø™¯lN-Ðyæu–îrØw“)}~å\®-MæéÆž@3 ƒzåÇ6ÅÒzÖîœ|¼ÑŸð:ñû¹ ꂾ·¾¿®j‡èlvU݃jkî·KPj™àÒŇЖ¥¥Â°ˆ‚ª^N§ %üËi®ØZßêÒ'•BÃaÜi÷»ú[›{ò>G‘1ïœU—»|ƒÀ³-ÓÊÒ|±^ÒXs.>8s¸i ë AK4ϘÁôZEØ  c‡M¤ûÏH%‹£8ô ˆ9 YÚM¸!ðTDØ$Op‘vþâ&È^mMé“;ð=ø ‘K ¨c‚Ô’ô/µÚ+ /Qõ¥Û-MBÃ:êÐÞo"$ᘟT>š×l—œ+Žlw嶨œ=õ*«¨åüôÄs“mvkp[ìüzBÍÆIAàç{¹w l¡)©ÕêsS aX¢àŽ{Ù–Äun ëIù“ùË,/êæª[ÎTèMÎZBjÆñjîE¢Yç:*XgF‡Š¼|ކ·¥]XŠæ0|ûD£mTø¯»™ñ 'ôQÇϲGdr=|üiñ`~3ûyöu~óãùõüüër1ZÈ탗3‰hcÎBÈX )’äÁÄ‡âØ°Ð¨ƒ¿Éò&,q'š4Æ‹¢qó¢h³¯gßH&äV¡ø–@á^ çW—Œ+û%ÀÃò˜–u¶_$'F…C÷¤PB òYZ§$s6 Ó3ÆD}üß®KEøÀÆØ#%6Žh䕉^‰«1löóÓg7gãÇBˆ€’Nqý“0¹g@Ób‹CÚP “¡0}ø‰:"é_!åo‰&x.—á[üY;-6ʰGVKd?F8lÏW$-Ì­S¶\X-·Ö‡þP2¨¸¯‹ A0€oš»3!îæ÷m“”VìîW4ÝùeôY¯~®¢/æ?µ»8¡ãsfÜÞø->ð&SÌÊŸ×_»ÚcZõª9,óë²õÚ³m‡‚~G4Г'/Zøôòâ"Á ¹€ ã7™(Î Û&š½ôõ)bß-)¥|ôƒ[ºtʼÝO¬0Íæf%H¹N¼‘9D«øÀÆî–…”~»¼£F–ßÔZ»rÀU~Ñ^kÐsZƒïñÌOŽn[Wmë [¶>·cŸ|‹>¥Åd±ÎöšX?#`úÄuî®Nñd1»H=÷“•v(ÏÃ̯QŸKðN¦m)#Ãûrr]8Œá½[í7zOÂr³8¸ž}Ô”…¥”¦t(CÒ^ÖªºØR¿g*6TÙpˆÙT~R°0ц®ùÇt³…¸=uŠ„ÅXÛN iniÉM[g_Û5*¹ÈÙbqâB¡iý }ð"eZeÕ,IOŇfÙÅÓg[>d÷È­[4 êÃW)R:RptV[ÕŸ RWcÈA¦œ ÂËr–ûaâDhçiÛdˆ— HۥΠ°òà x;-¶™íO·© ®ƒ¢Î½Ç¤›óKZż³¯X( öQ,”*q„Ï,ª!Ï܃í‘â Z‘ê#¤ ɃÄV{dtÞg8^b,Âr´}Ÿ‘þ}æcf¹[Ô”Fóà»ö¥¦7|V,vè]é·ÞnD‡Fû 4ü¸5ðÚ…•;tÊáR§¸‰ç8ÿ‘e7¾Ã4²ÍvPGXÉ=7€è&û-ÐÝÃÒš!ú 9n˜EECÌѸ{‘2þð“‹?W2<— IX"›§¤ýšÞñ ájµ¿`=a"2j°tx~\ äIçùJ W…`I#tßÀ‹CÜ”ö÷]æ/]M…ãX9úþÓpØ)¦÷ì+¯ñ½ÞKÀIûdè™Ì=­â³*°Ò7 ]ºÌé"½]gcH.V7®J¼¡—¼ ´¨AŒ5"ä/l†T=6['÷P>Æöž4{\X÷R=äæc¾¼tg³a÷T¬©®{Ê·ºgSè’ݪ6òùÐñ„ø¡ãìßo'¨­¿‹¦0ÿa£c†çæ}¯·Šz—UŠÿ³Uº¯ï3K$Þa–ðmfé{Ý3»ür’p¦„Rïÿá¤sPó» ”Ö1Þþô³ Ta5=f-ÍO%ÞæX1î¼Z¾ >v~Fûȧ§šOØzPhHjÑsvÙQ 5oŸšýñéÞæø$hþ endstream endobj 685 0 obj << /Type /Page /Contents 686 0 R /Resources 684 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 664 0 R >> endobj 684 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 689 0 obj << /Length 1502 /Filter /FlateDecode >> stream xÚµXmoÛ6þî_¡Oƒ Ì,ß_ Ò—­ºb[€}h C‘™T˜,y¶Ü¦ÿ~GŠ”%[‰4MX²ŽwÏ=Gñâròì5•‰AFÂÇåubp¢$A‚š\.?¤DëéŒj¢iú›]¿{7§/Êl»m/_Öùne«&kŠºš~º|;yu9! †_â½ …“$ÉW“ÿ&>ád9ÁÉÛ FÌh‘|…Œˆ14YM8eñ¦œü=ù³ó3G³¾§‹QànU‹Û ÆE|:#ãû|þæýâW[½ú2%8Ìó¹üì5á=G„„¹1Ø9úˆn­áR\«`sà¶%æ#þH;XÐþ`‰ FøRlš]V~ apÏrF! !„+ˆ2Êyi?bL«Âsî£e!jYT¶½R´ý¬¯#LËðlX8À(Ï‘ €fD!I9÷aþ²×vc«Ü†Z¿nŠÆ.üÍ<]•uþïÂV˘1êø"©C&àšiÄø¾:,Ôæ]]ÙMáõ®Ê÷IÍ­ƒ"àÈŠìyE$øõ娋åûÑ ÈK›mNVŒbÀ.©Ž%+*GôxÅ¢é b½0Íç® íç¶ÙØl5V€sêL;¿ÐŸÑ8LBiT¿8ˆóºÚ6èr>´EuÓ~ñÓýÜÚÍfJtZo+»Ýf7ö€g×ú?¦œ14eâ Ê;ÓåÏÀn˜¨U 9=¶\`¹¨ìm³ðtoƒíáxÏ¡šBÏèöpÈZ+>Ø6W±TöK3’ ô[¹/ç½ Œ4%âœÝ‡èJóaÕolsÐÉ*ŸömøÚN©ç@ÄlËúfµ.­kìÛ‘¸F†‰Øi÷œ_d[t18]#fZvG ÅpCû…­€ñ¶*‘ ˜v¦0±¹” "nB˜RЦ=BzŽ:(TÏö Øêô}kkŽŒ&Ìc HIìºËV—\—¸iñ ˜hoåR¯0ͧ3é–бsFjâPc¡ˆv}œ‡ÐL&=#2‚€Á‰Óf ½D€¯!4~\{&IÓÍG#FÜ*d8-Ç(¬ƒö9ç§<,Ç<Þ )ᶬÑüœ!,.¯l„'(«Žsε.’â“~Fé–ðžK×BR6 j®Ïe†áSÌœBb<:Ö18ŠÒþ|~þ¼µÓ}uÝ^ö•a·àÄ@ûáì=›'«RÈØ9úCƒÚ‹[ãϰĄW·¹];œpWM¹“Ðɲ²X¾Ìšlh>ô[l³”½íbëôb¥åxÐ?veÙ9½×òýïî1W&ͪe¸Ú@i;Ooô?›ººy]”örªq ’áü]Q|q%RFôˆw—…‡ Pté{¯Fá 89¦þ5ˆ”:Ô,d{Ü7Š(GœFuÚâzS¯F²ÑQ.äÓ(ñc”‰~€2áç)~†2‘GÊ$™adœ¬q£ô¨æÐZ»óžÎêÔ>HÙ÷îƒâ¤ö±Ç í4†9å!?v]Ó‘DÁ)WWc0VqEì6sÃî;iѽ,ó)I3÷oiG8šÔÁ ûþ“Éž£x0Ù+.…™ª1Qĉն?:»Ù¿w{ÙÔÐt’xëÐï“pÂ@Ä\à9WíÅ$ò];6zµWßâIÚí·ÛÏþ˜zm,endstream endobj 688 0 obj << /Type /Page /Contents 689 0 R /Resources 687 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 664 0 R >> endobj 687 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F8 640 0 R /F6 643 0 R >> /ProcSet [ /PDF /Text ] >> endobj 692 0 obj << /Length 1557 /Filter /FlateDecode >> stream xÚ½XÛnÛ8}÷W}’˜åU"ýRlÚ´›bÓ`w½íC[ŠDÇBeÉ+ÉIó÷;¼Ù’­Ùî¥Aa‘ÎÎÌŽt¾œ<Mã©B*†Ÿåjªð4‰ ”Ðé2ÿ)ÄØlNŽ~ÖÛ«—‹ÅåõÍ]]ÜÏŽtÕ¹µ—eÚ¶îñ7½ÒÍŒHXÌ4L™¨ˆH5û¼|;¹XNÈñ†D‚‹É4ÛLþœ|üŒ§ùOßN0bJŠé 0"JÑéfÂ) ƒròûä×½ž9(š÷5ž‰Â09 1”Ìæcáã\,š¼íÒN;¡OX`øOÜ(««¶3'{þZОEÊb˜p@h,~,ª²¨ôg'IqOr¾SŽWc¶ÖÙg£[{Ó=õêhíò:È4:Ý;`zNSάÆWúÆ´*º¢®œlêÏm ¹'BÙP¿ÙRîM¿ã´FC3Üš±á7¡ÏÝ®ÛG÷»I‹*øy?ôcj…øò¤#écdƒQ “1úÍ@íZ}STÛ]w³ƒs¶F˜Ù€ýa†‹ÅU½¹ÝÆ Ï,xNÁåésB‚XÛ^ú]Ýuk3°ñ Ý~·‹œÛ]i›Ã3pÓÃZWæ)Ž *yQݹéÔÍçZÉ¢[×»Î-ô0_¬Ü¬¶^t¿Giãçr£"²®ïÂŽ´r‹6I¬”ÎJØ’;\¯ŒçÒ]Ù(6NÓèíClýãrÓ%]¬†Ì„×@ì ™¹+ý~F¨ŠÎÜðvFq´óò{Mû<ƒVg뚢ëŒíœäžÞè÷ž„0X® /½Ñà§Ü© sUíU:Óm›6nh<{Àx˜3àG~#LÙ8¢ ?ÃR/QOg^–}Ÿzí žµºë³âï“Pð{ÕÒ8Ißdõf³¿ŒIW)}ÊU×>X ¼_:›˜R_:ƒ¢S° ŽÎ$órßâ()ŽÅ¤EÕêÆÂ‘†T$Q±>5:ëÊG·7Díæ}°“¸ºÝyáC¨à™ÒÄITu³IK§BFõÎo¬Â”Ëó`ÑYH¢|oÉ&0̤ÝÀ¶ŒnµI„»¢ªlE±Z·¤«|,qO® ²ãè§² ·™uOÇ`xØ‚/\M3#OBxzv’6=ç/¯¯®.Þ-]4àbë…ŒÆHÆ„ø˜U#ãHÉý½Y=³§:NäTüÀÓÿŠW.Ñíà4Ý–uöåvæ1U'„¹øšé­A½X|hêêîuQêåLâèq«ŸNK‚€—6u†½Û;ÍÝi©R(–,ÙÓ³'ˆ'Dy}?F_ÈϘħôôQ $)¡º/šn—–£}c ÅøèöÔ!ù @mîÊõ±ˆ0»ÂÞ9Ž¥¸GÿÐry.]úɼûß]Ï8Ž–~Z—ú€GÁqI³êtãùX€çhìb¹ÜlKí({ê`® %fÁw‡´8O[Ýë×·¹Iƒ¿°‡•ŠC96­.'›Lcè«™4¢p§ð":‡_å= WtB#Z þA±DŠÉdÚ“½Y];Yå*³(Jb[ÂA8v%íÜ«Ä}H*°OÆDZ)sTÐ a6‡v©õ~Š{ÊY€Þ#àž0»Í¶äôpЋJ —ÒAHAe!‘ÁaJ/ÙS$‡—!hÍ@˜Ð(?ÕlˆðPò$7Z‰ÕM Øš DÉ`!ƒ+btšÞ‚D˜AŸI˜º:UÄQ ÿü:µŠbaÁI (…jÄJ=ÓO„>IþAÏ)ûÙõâ…“ýC÷ôý‚Æaɇ%âI—gÿëå³o þ…+è¸Ô,CµÊëlgJNz8ùªnŽKlv(0‡~wºÒ ¼Æz@«¦ÞUÃU]–µ©ˆ¾» nk‰g&T@½çÂÅŽR1’¨-C݈híz /3‡"£áusñɦ,ùŽ!1‚®•ýóÏ=Eá+Æ!çÍW ‚Ob‹ñÍГ!Ë™¢ÑÎûòíֹ̾ðI)/xâFß ÙÈHWá/ð¯ê¯½pü¿ï¶¥endstream endobj 691 0 obj << /Type /Page /Contents 692 0 R /Resources 690 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 693 0 R >> endobj 690 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F20 6 0 R /F42 126 0 R /F14 69 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F6 643 0 R /F8 640 0 R >> /ProcSet [ /PDF /Text ] >> endobj 697 0 obj << /Length 1025 /Filter /FlateDecode >> stream xÚÍW[oÛ6~÷¯0`°Ìð*ŠÆº‡¶ÉšE»ÍØKS²LÇd)•¨&ù÷;")Yvd ]êÝJ{BWM‘¶!\HEBÄYBQ†„bĺ¥Tø±Ã²®èñ9·X`ø‘vZ0÷#ç¤5JÄÞè\@Ð~Ï*Ó$¹_Z>ðÀ„½‹[ÌðŒñPƒÁ%â‘b§p¬Ê2ï¦ašçq¡M¬gDL¿Ï†”1{«¿éâ²ï}Žœp‚d$I³è©ˆ°~ŒÃyqÅ)h«ÂûàåˆÐPAM ñÎ tpÌ6óÙíA‰C¨ý2ï†-&¼ç{4âv¢:lRìÑ0h·QÎÚ8EB`~¼¸­Fe¶vp ßô)ISIs@䤺¢•Ës¨Ë âC,Ôµ0ÿ±¸ÂÊð,â*D#›Ž/÷¾Ê†Èj³^,ÊÚ¸í¾ÛÖ~n{ÞØoiÙëÙmëVýçP)E!''õ÷÷jJß×:¡Ó›g³Ï?S5µ‰W¥ÙÆ;ø§«:NŠu¼Nš»­ÖQrÿ0þµÞ$MîQwë»IòZŸv‡x¥73*¦¥Óÿ,àÉiôàûuàmôÄpf”¬6p?xŠueÁ—ÿ’â¯Æìã‚;¾O*“¥¹þ_!=ÌÏZ›øGCdÏuõ¦qb'Ò…ÏSçÒßs¼Ÿˆ®Z5­€çãù’ 2´)ø2Šä¿çøÒŒ9µ†öÂ<~#:¥ç‰HU”À}¾ò>lõ^Áîþ[”^¹UˆAЙK¯£Q/ÂØëßCCݽ7„ç‹ì%®ª‘‚ƒ^D8œ»--8¬u•í%„÷š-—3E§g{Óæÿ"\AÄBà—®E1¡þpðyºxMžº·áãÓî_…Ù½£âendstream endobj 696 0 obj << /Type /Page /Contents 697 0 R /Resources 695 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 693 0 R >> endobj 694 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__HEPEVT.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 698 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 270.27000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 699 0 R >>/Font << /R8 700 0 R >> >> /Length 701 0 R /Filter /FlateDecode >> stream xœ•‘MOÃ0 †ïþ>§ùÜqSÅ8 T»¢iÚ†P#QõÀß'i“Ñ¢^PUÙNߨßv(ˆQ¤'Çc€ûW‹—>Ä÷ð ÀŽ×M9TެÖ›3Œ—¥%Y‹Ò‘R"~ p³=}=mV«Çç÷mýRï›Ûæêv é-~C‡¥AfH!€"%í˜8–¤½Šå> endobj 699 0 obj << /Type /ExtGState /OPM 1 >> endobj 700 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 701 0 obj 274 endobj 695 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /XObject << /Im5 694 0 R >> /ProcSet [ /PDF /Text ] >> endobj 704 0 obj << /Length 1450 /Filter /FlateDecode >> stream xÚ­XÛnÛF}×WèÉs³÷å Eb;v¡/N`ÐÔ:&*‘ªD9ößgöFQ2u±[è"9ž™9;s–ǽŸ¨ìk¤%Æ}ûJ$(¡ýñäv ãÄ <ølæWg£ÑåõÝç‹›‹¿ÇþêÙ4[.ý߿̃Y I:0enàÅL ˆ&Ãïã/½‹qô1üˆ{…PH0Iúù¬÷oïö;îOz¸ÿ¥‡Ó©èÿ„ŒˆÖ´?ëqÊâÉ´÷µ÷gã'GIÛÓÇ !H Ac8¢S>š‡¯ªM^›‰G}ef÷Ûýÿ´*óº¨Ê¥… ®p+1D"ÎRÞO(C)•ÂùûF©¶í$¦ˆË”Hkó‡)o†²E]äSãÍ o™ †¨Ö"ØØuøTˆ«èò~Hñ`UL'wóèÕáÿ†.ÊÚŸåÄ<Ãâq °´”Ü:K¸DBÄ„¤8×Îm¾0Y\eþàÀó5øæ5M†ÖNSŒ¤Ô<`œ£Ž÷¦ˆÍ‚!l o#Ö„@ Àr¤ÀpíD`$ŠïãAXJöf†@eû)‹JCR÷PĽœî%‰ %ž.T+„¹Ð›|ÙGª†âG…G’"‚…ÜM–À(äÿ@߸²È)P£(ïfÙ<^8‡©à,¤'„½ÙÁÎá:=Ð)°Rïé„©7¬ÅS¾hªµTCyɶ‚UlN'³àí0P „½èÜ1À¹÷Yîê† ƒ•Ðfƒ/•/~ýX²9‹2Þ7]·›2nʆ„A~ÔÑJÍSÖh!H œ›:+¦QEœ›e¾(æ®g½Öسké‹ÞÒO—×þ˜[åF¦µ& Iʹ³Þ°ðª X`9LŠòÇVˆË:+'Ù"@k¿-¯f³ØUï§UþêZ*i ½ÊbæByÌÏÙl>5Ë‘ƒk¢ô gįgorwõróåÈ®ËéËx¨é r,Gy$Jµ_bÕ‡mó]÷ýݯµ—–Ù,i’ÔêL—×þqß&qÜ[?µYÖÞÇY5/Ì QGlÎa– B…§Ø¹q$+ÖÃ( òaZ”!ÝLûcõ°~mä×Z-+>@¨‹lØ Fhá|Í2XvfÄbåsxÒðmãòy•¯fИ³ånúw4\~%íì+¥o»`K¯íá÷1I#ôؤ­Ëµc–§ºÝPG·"°¾•H×"ŒáNí­x{ïÞ´@E[ è¡,ÎÝÛ§bQ¯²é÷.òQؤ(wïHdúžD  yìÚ½Ÿp¬!\[¿ËÕÚ-Õì3QªÅYÑ"°}å¸ÑÕE8Š”lö[®k¤GÈ¿ü0e ÿHWàÓendstream endobj 703 0 obj << /Type /Page /Contents 704 0 R /Resources 702 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 693 0 R >> endobj 702 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 707 0 obj << /Length 1666 /Filter /FlateDecode >> stream xÚíYßoÛ6~÷_á§AfŽÇ_"aÒv[ í¶ {h ñ”Fƒ#k²œ&ýëw)…²i;É:`kPH²¿#ßÝÉgç£ï~djlˆQx9¿:Nɀϳ÷ 6™2 š%?çÕ/ÏñAÒäùj±Ù¸Ûëåö:/›ES¬ËÉÇó×£—ç#SüƒM¦Drãåõè¯Ñûtœèøõˆn´ÆJÀ6¾ Æ»‡Õè÷ѯ=Φ!ÒYKœîgø˜:Þ¿å—y—ËiáØÏf?åå» $yÝäÉíl¶È²yµ¨›b¹ÊçEùJŠÿá[)8}ðÈõ¶‰ Ú5A'1R:vïåÅÁÅsHî©C±WŸ_¾}ùî|þG½¨ª¼žÍò “I‡3/·×y}|h”Q÷RVošùòªXe£ò †GÙ;’»< åÑÂàÆHÂè¤j¯ÆÇ $ñí¨Ö›Â†á`°9¶›¼™GGéG-Ú`ãSvÐóÛÚÝ íT²(³„Ô.Ì—†ô#R¢˜àÃ#’¹“|qç®6V«yéÖ¨™"l€¸£ˆ/$Ñ©N[|C¸ œ ~¥4Áå;šøãâÆƒ°$JÐqìp¤Á#“¤Dàw&~õ^½™;Ï'©Àȸ˜0šl1Œú£Ùù%iQ6S°4'†iZ”Y~™™1¢Œ¸§'ÁÉÍ@z£÷U½nòe“g=`(YSÎPi¥2ã)K ÕÒ¸#Pç‹Æs^DxpN@KðSD—u0Ä=0FÞó¦±Â&¼sc<ÕŠ-Ô0FÎì:n:.íe¸¨ë‹?Ñ?w¿\×u¾©ÖeV”ŸÜGÍÚ]íš¶áÔ=º«ß¶ApŠvâ¹ ò=˜~z?˪(ýÜœIOâ2ˆ\ÿå (ÈrIb³„YB)8¨±ÁqL•8dVdGí¢z×¾äÉZÉÃ~h¶êvwÄ!CwCcþ(©¾„Ân÷¢ôšq`Ê –ÛÍõÿ²ú¨P}¸WŸ»ë'㌞Žz:YgÛ¥¿y;Øf[7ü°’0#ˆÒ>1!©ê#.'çi²i²ÙÌM²lÖµ—FÏ0•ÒnØ÷Ü)§Š¤šêávÞç¾Sâ+Rî‰ï€F(¾?DH%Œá-¾‰I-E’½ÿWy•ß4÷:½¨Ö|¨JýzÙñ¥µ!qEà­a°çÊ€Hè rˆ9ƒkŠ}M½§+kqLîÄÖ]è¹çaaËå—5S¡:s¬t¬ÎÚO}”·÷Ÿ‹æÊÝ¢ÜÛhÄÃÖ÷ñœìó'‡€•Ù¥Uဪ.Ð5ÛjFûU–9ˆæÊjzÌ¥kÞ\å1èÂS3xráÿ÷_£Ï@·a·±"í4b#àQ¹Ö7 hzASŸxiÊmH¤ghÇ>ºÕˆ,ÑßC2i1Ž˜Ý¥p*¿ÿ' áSûÅz½°ÝIëý´í” “>uômÁ‰„Â4%4MùñÎD£A<*]Üu³]¬¢É‚E´¦l˜-œ3¾¸¾*6±þ€a7²ïv\LƒëJ!è¹î›ƒTÞ÷©$B!ƒÁ6¿º®V¹}õ#!41\ê½Fíl±ÉýÛ#0˜Up2fÜ&DØ(Â)ëÒÿÒt¯ZÛt¬ˆI¹ö’PŠ#E"ŒO(îx&!RÈXvMí+´ÕÉgkÜfò–ƒ­Ø°ôš24Vî|œyH Úàü@(íNºŠ¨˜p°»H¬Ï{àœYÖ`YS™:™ºÜwNàÔ\#ˆ0À&6…nß3¬`¥ÍƬ»\ì#öܦ/„ŒŒÀ¦ÄÖ…ì"FûØ.î…8…Å@ô§KÚQÿ¬BïbuY'ÜVÝÅÆ.âГ8ÑåVøÏ¯¬Î$> endobj 705 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R /F7 631 0 R /F9 634 0 R /F10 637 0 R /F8 640 0 R >> /ProcSet [ /PDF /Text ] >> endobj 710 0 obj << /Length 2353 /Filter /FlateDecode >> stream xÚ½kÛ¸ñûþ *d fø%m‡æ²yáÚ¤‰ÓÃa/0d™»VO–|’œ½ý÷á²k»ÉmXäp8œ÷ ¹Ï–O_H3ËXfà³¼™e|–Áb)äl¹¹Ž2¦ô|!c½²û¿}yùúíêÕÕ»«. ú}•w ßÛÛÎEÙº°’\Å‘ÈÔüÓòÍÅÕòBÌ8üîˆ8a±2bVì.~½¸þÄg› >{sÁ™ÊÒxvÎD–ÉÙîBK&ÕŇ‹ t@h1¦ôlR Óä( S,ž/ç<*ë9Wç¢%:º¼ü™sYoVe½Úå{DÔÑÏ<æESw~_×o./q$|úBˆÑÉ2ULñ$Nñä?Ê s‚3™¨Øcx^ÚúÝ\ð(oû²¨¬§¬Ç2iØ–¿ ˜T´5ËR¡<ÎbÅ=gTdL$:󨙠µP&c&‰³ÙB–Å1)ó„ªå©HIš‘vÄ–Ä<3Æ£ÇeŽS&ÓaÛQæ“æÁ΄²L'`IA§“=z<&§ Ó: Š¹Þ·Mo‹Þn>yÒ|¬"aRÆŽg i˜QJFÁƒè˜~[ú8Ù9ݬ¬ÃºZöÞ\,DÂŒÔDù¹u´Ë¾lüþ¼§oUÖ~«ÒœÍ }qK {âë¬(Øé)Êâ"£9pΦx°¼¤ë{úÞµeoWv.ãèó\ÄzŒÔ<›0PÕŠaÔ8VÕÏè M G(þPÀî[ÑŠK¨.:›®§œ”ïhë”ÛJ¥©ö¶v{&â5e±HBàýyÂeRf2xw|Ñú R±bI–žú"2÷/¢LLÅNNBðúsÙö‡¼štI ;4dñt6ñ^qè÷ï4}ãa^òs—»}ew`B´²ÈxtÓ6Sñ&ulN“ØéYÞY_+p7xÒBfÜÙi‚y! dOI-ÂMfrºJ*Ó|fß̳ ÚL$üžg»”e*Mg#Ü×€›Fo 7 Iy,1\ƒþÙŸy’|ÌK3£$ç"uX(*P…Xœ/L„2»]fD\Iäz¶à, ´Ó ÚŠ¥)ºÉ+?ׄ‰Áw¥š “°Lʼ™¢`àŸ_'ùÈrëÆžS€ –y„ì1 Å9¨Ê¨lZ7X¯§Xà<A@êôð+&¨AÕKc3HTÌE”ãÏÆNP–@šœ`JŠ’µÀß©Œ]G åhäiß}Gx鸘Óh”¦"9–ŒgPV¿¹Èo­_•“Ÿ“×MS=Ðó1ôO˜ÕÊ®‡q¿²­KÇMÛލ"xêTK A±8!ž`@Z{éT¢½h×Ò‚íÀ ñz„ç£~cÞ ñqNkó®ñ‡]·à3»58!è|XeG[ËnÊB5¶êYíèh²»÷(Z¡¸Âe(X/kàc—ûb–%äŠH¥„ôVß>!æC± Õ.Ùœ£-†ÎG™Ìoûعd‹kçwt«·ì­ÿ4XÓSr‘¿c,Öà\.‰—@óy¦·@øºjŠ_hèTMަ/ÝÝ€%SuÉÄLCH… ‹;fõc‹Ù¯…ûÛÖ¿PD Œ(5‹aÛ‰ÏJðÐל¯ j¢G¥ãmH˜$&{f‹€vÒ–,É=¤ÉÈ&uY¦Xl |ômSUT$`¬ˆŽE«¤S€RÚ¥ñ¨\lêQÓ(¤æŽàTÎVC€µ' Õ¿ƒ°ðÙ͘èê-sJü-Ç«ä“)ÀÜ® ÙywU F„ ÜâøÄŸ #l¨êàaäw÷­M‹5=šöÕ²ú¼6£Ü6>ìXŠ&Ž3þ¸„ê" +{ÓOå¡CíºÂÊn.éi» t^¥CíVàÒ¹«0º _'ƒ{¡„™Ó3~A¿´õ˜ƒ•›Qùœ‰W×ÜÀ˜7ÚÒÅ÷˜Ê`aW–âèzùêõZ ßå««)«=¿zÝè_çq}üažAŠü„D |DÅõ‡:ï-©_Ç G-Jgiuè:ƒr' üo*‹2nÛþÝÚ¼îªÁ@Úuä¸ðºËÿeû'T)º†€wžZm]mäž Ášý±û/$}s{ZüáÉ®Ø6%èuò íë.Ùÿà"‘_$¼ªa£à|kµ¶ùnÞ G—´‡®Ü=ùÊÿx8¾ËN¿š “©ÿïõnÔLôå%±¨(³áëå2Ñ.þKq„oœî=qü\ëUE)®ìúß}©Tñ·ùÂZI9SB©ÿþ/+#Bá+Ç'üÊ`B'Æ öÒÖ¶Íûð¤[b28xÞß f~ÅË(â˘_ê$¼VI#×…¥ÓÃßÉÓòóæ·û[[ñÿ _×ç¿endstream endobj 709 0 obj << /Type /Page /Contents 710 0 R /Resources 708 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 693 0 R >> endobj 708 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F7 631 0 R /F9 634 0 R /F10 637 0 R /F6 643 0 R /F8 640 0 R >> /ProcSet [ /PDF /Text ] >> endobj 713 0 obj << /Length 1497 /Filter /FlateDecode >> stream xÚ½XmoÛ6þî_¡20³|i`(6][`è^ŒîC[ŠMÇdÉ“ä$ݯßQmÉQ»k× ß=|xw<>ôÕbòâ •FZ¯Å:Ð8ˆ$A‚,VŸB¢ùtFQ4|kv¿¾‚‰Àá«,©*7|],÷[“×IùôËâýäz1!†Ò ‰ &I°ÜNþž|ú‚ƒÕï'1­DpŒˆÖ4ØN8e~’Mþœü~À™Ь‹t5HœÂ4r¼5b1DðtF0ÆáÝ”à°HW–´p[™Ïß}ˆß^ÿvýq1x8ŸW¦Žër_ÕñMQoâ-ügÊ*NòU¼Jö·›fÎÿ3ø¦(2»ßo8íð`R#̉Þ–Ç3éQ…mP®ZƒŸèb(D)%­Á:É*3€›U*òë#2€4c2BLp!!H á¢ó)ͳ47_ZXÜõàà@a<£@®Iã°2Ÿ1¦¹q9w‘qc7kÂç†å>3•]ÎH„$å¼Ází°Ò¦`Ó¤u±œÜˆPæÅÚý¶.Yûa/mhƒ‚K2‚”½b ‹!z¾|ܘõ”а(§D…¦WÑxI”ã%AÊGKjJ¶Àk°"Ò³ç*‚+È…à¾"È¥A¿cE° *Bþ€Š mE4™k †«¡m &ÙÆ»¤¬Ó¥ÝIKCà&ÔÍlYä°ÛÇQg˜C¬ ‹öÁôä®mÑ&û¬LZâk¾ù”1zYLOùìMiò¥Y9Ÿ›¯œ,†uˆêØØƒsg'pSøˆe K7Mì²4vï³S&Â=+eÞô¼”¹?·]ý›òFø8 ü¢ ŸÑϵŒÓsBíMÿ‡ÓA¢ïå“ZŠä©Pß—imâæ5æpzŽquÑl¦¿˜üú`Ð0!¼' ƒkz¼0à mGÛèíW†¢DøDÝ¥e½O²áLRNœdªÙQ››MZ Ð` k¸ö—åãõVáa‚£#i¼C_…‘ð[fŠ#%±ì—À»í.3V¹‘à¤&óû<&ç*©LGüÚÅqé`„°>tý¥ut*º± z•)k íKÉ€"âºe§&¢a›Bzj@3Ûw`«ÂÎV»\²†E‘IJÆÒÝÝW-$î‰ë„1Q•Ý* Â‘˜Îdh÷ÜxÉ8£–5ˆKŒ´õ¶nÑãÍ1Pª N÷ÑHÛ‹7Ô<¬(!Ìgt]E@íBaò¬eÄ}Ñ*ÛÂÂæR©UþžLo bK+¿Ârˆ®ØcFÚâ`>Db¥êuúc Ž$ük?§  9ÕÅ Ð2"y(ÿçØ‘!z&+>Püt‘VÝêzùÒ™©îƒËNÛʼnt´'+þ-ÝŸÛ}—ËqqRÙŽë°óùÛN‹}ùqJ Ͳ.ÊùÜø›ê'0¦úÐÛþÓ°êê˜8ßooLÙw$ OÐio“ÝêìÀµ#¿íRnGñ_e²Û ´MÚ%bX­LMÕE‹€ûÎ ðèÎv§n'Ö'„\‹èCØüµC)Æýç ëÓMÚgÖr“f+ÈÔ€Ë ·§pžÉ\HdŒFºêÓ‹²e¶Ð$»X³±·…½~öÛ—‹öýt‘("ÇÀSÆÞ}Ëã¾+ªæ(wp4]¸ª“z_ØßM¥û¾púÐ9’ndŸdÆŠQ;»M{¥dÛKÞ—YýS݃0ùª÷@9í*‹MÛƒV½/¾œ°/ÊŽ´q’÷(î‰ÚNnMnʤö§uYl½«ñ`YVØŠ¾OóÛn ¬æ /"g¶³‚¼Âª•WŸ)]Á5­ü•plžÐЦ•Hκ‘è€ÍÆ'.ËåÀ÷| #Fûï_óu€ü·|»‚–}D,‘ô±KŸ KÃ}Í÷6ÇûöÑ^1b.ðœ·*ŸbBýûÌ=hŽÓݾ.¾Bþ|þ\2lóendstream endobj 712 0 obj << /Type /Page /Contents 713 0 R /Resources 711 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 693 0 R >> endobj 711 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F6 643 0 R /F8 640 0 R >> /ProcSet [ /PDF /Text ] >> endobj 717 0 obj << /Length 1110 /Filter /FlateDecode >> stream xÚµWÛnÛF}×W(PHÜì\¡éCçb h› èC¹’ˆJ¤B.-ûï3äîJ¤#·±åÂ0´$‡3çÌœ™]¾ZL^¼¥2PHIøY¬…ƒH$(¡Á"ÿ͘˜þõá}òz›6]~Ò+]ÏH<Õe¦á‰y<%J̾,®'W‹ 0ü‘>Œˆ`’Ùnòuòù ò ®'1‹à¥h°›pÊüÅvòç䣟…CO¯#Âã’zJFCFã'Q÷2h„Qï~ìÌšã9$WѨÃßYÿÞ#€#£.MpIlÔÂEoÛ•©ìïZ_úP¬y¹ªê]jŠªD6¨ ƒ ¡’IÊyü§¢Ì¶mîH2xA0©˜9”¿œq¡ˆÇ‘3°¤0Úœq&ŠãÎö×3I ¤aÌ=@fÝ–]&µZšy‘®ëtg/€ñ9eŠ>óóù}ÉQ®Jð0㢓KðtE±Šdo5\÷²ô/»/>ìdð¦ =‡C×G%Bê…ðJ#…¥å÷{»Ü™%ñQï–ÚzÛ–YWÊæLªˆDœÅ(J‘äĪˆRqF™1â2¦£DÞ‰¯W¼„ÎJÑI…Ÿ‡Z妨M›n]uù S ,‚fø ”3jù(G*&ìÔ³ÄÚp 9VRr§aŽ• V`ê·>¶«Ù8whíJßt˜ÀF!]}AT”¡8vФãTn8ìëbHº1ù|^5ÆÎ-ß0?ww^öϲª5§a“ÔÌJGCBèH=I}¤ÇSÈ+пöÌèz•fºIL•Ø‚Õ ô@R¶§Æ8Êäñ°ÍÆT˜•}îܼÏÛ¼]UÛ<ÍI•}1®€¯h ìw‰®ûZTus1“\¯ÒvkƸMÝê‹UÔh“ü(øÝåË.ø]ñƒ¬È]á áêë'zY™±ÂúAs}T×¶KjVVÉ:Ý7@'imŠl«›g©û&à”«ôTëñþ7'£P iw9+£3ãÏ2OÛì°:W¾ïÉÓɈúóˆ³1ɲ2›dWuRk’´Ì“> endobj 714 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classHepMC_1_1IO__HERWIG.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 719 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 500.00000000 270.27000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 720 0 R >>/Font << /R8 721 0 R >> >> /Length 722 0 R /Filter /FlateDecode >> stream xœ•‘MkÃ0 †ïú:n;h¶ã/õØRÚÆhر”ÒvŒrØßŸœ8]2r!Hr^KÞ4¨H£JOŽçžo-(ÜÈ{ƒt'ÀÎ5.KE´‘‚sË+ô—5š‚ m$F²Vɧ¶—¯—Õb±{=nׇ÷Ýæ±ü„u {°Š¼á€ßÐàÐ 3¤PƒS*%UŸDmȱ•rš'ÁØà=qšl)M®á ÷ÿ„Wo5jVÄŽÿÀ/OíeUÚöÎ?C­½q¤y`ʼ±E ;êqþ+K{°§È ‚eżGç¬2näM.åÄÔ¤êM˜½2h†òÎÐÍ%…O– ¶Þ"|&59™v¹>‰C?›Î{ƒendstream endobj 719 0 obj << /Producer (GPL Ghostscript 8.70) /CreationDate (D:20120605155052-05'00') /ModDate (D:20120605155052-05'00') /Title (ClassName) /Creator (Doxygen) /Author () >> endobj 720 0 obj << /Type /ExtGState /OPM 1 >> endobj 721 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj 722 0 obj 273 endobj 715 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /XObject << /Im6 714 0 R >> /ProcSet [ /PDF /Text ] >> endobj 725 0 obj << /Length 1344 /Filter /FlateDecode >> stream xÚ­XKÛ6¾ûWèØ@ÌðMÑ(zÈî6 hÚí! Eâz…X–*Qûè¯/)’²ìhmo²»‹öpæ›™o†C½^N^ý†y$äæcyI ŽÃGËìÓI>›ãÅxúVU.Ì‚ÁéÅ&i÷xY¦m¡¶:Ñy¹}Y¾Ÿ\-'(‚æuÚ˜Œp¥Åäßɧ/0Ê&0z?€È˜Ewf’GÅ„b›É_“?z=s£h>ÔôÚ§8Š pN-p„%€BÆ‘0R8ô™ú !Þ*µ(õªÝs–´ëVºníëv£ëÇA`æN5P“ÎÀgŒÙlÎ œ¾QÛ3§I­ót£œ#¾Ó`Â*¸Æ¡n'„dÄŒ0º±ù:ÃpÚæ›lU­ÄÏÁ|ëñæÛLÝ›oS¶“9å€IuŽ`ÉNm‘|›8õÊ÷Qíá~’ç·Öí2ÏŒ"H† ëЧeÖ¦–«NLÕZÝ[A<ðÂìÊ_šO„§Î '™ê²öQD4r“gJ}Œ~,mœ‰8†AŒ{ù]^öÌr ÍŸ—ùõ”Ñ7ªR3Ħ·ºÏ÷Ðà¹rß¿3ǘâBšœ! ÃÇØBŒQ0ê >Âiê És˜P‡”¹õ­Uëòö(7Ø9Üàn¨mv@6$÷„ g bÄñqBÈ'‚"„›ns”ò4!è)B LLæâã]ã <˜&AL˜8ƒ ™J“‡g`A߬ºnœ­òíªHª]3KËmh¿]¾í#‰¦ÆMÄŽ%A€‰¤çgš,%{Bp_†®«Çš#HÆø)ö¾(¼ºÓH-ÉELÏ@dªŽzß.çM_C„Ë’?oòæà„ð¿‡Ã5äìGÏ{öÚCUI^¯võ²£Éi‡zkS»üöêOkîŸwoÂúãÕßË ¿(Bÿûº)S‹ò›[nÊ2<å£zl³¤Îž)Ei¿t bµNªÆVÏ3F'SÉÆm»Ëõ/“éë$Õ>óåµÔ¥&ß®÷ö³nþ§Üœ0pʺ~v~ÐIc£ô¾´z¯Å ³^5ªÍÊŸž‡z´ºN¶Í&ÑʸVßåë•.WU¶^ϟŵÞÈX•¾»ìñ÷Ó„=ü¨lçCŠi§G€€ qáRé$ß(óR5iWaÀ?ìâÀ!žw¿¯leÖU–‡ûS°ÄõŒÁ «\˜«ÛÅ t¶ (´ÏÌZùˆ½í‚ÚÑuYÝX£Ñ<Ø™#8¦ÔƒóÞÝ_̾Àî$ë¹=èwß®ë²8Ü5€f¶„ä¤I½)û)k]'ã4=™“.¬SÞ!¿ºOŠÊÜLw(J{„K›UÔ·íò•r‚«„©(¦þ I¶Ùî$._iÕh'vQV¹jŒ É™¡@Ä2ž3j¹`^ºËU¾:c¸r1¾ßB쎞œŽ)¬c ¸cT…v^”{;’bOÒ [&uÛ…Â=]÷¾þî†zœÀÎF_ Ý­w±Ø£õÁò ¿ çás·KÙS„Ø»$:…:56}R»3ÞŸŽ^ZÃÅödhLf[ÍÍûáýÓm^ë6Ù|#!& AÄÓƒ“'óàF A„üü+Œ¢×þÕ‹¹í [‰™ôc;Œ <̰ª6ÝÝ—mðq9“xÚzÞÛoý/Ìó‡-\PáV>]Ï0›†Ê¼ÑùúŠåþa­ú9ÿ…Vendstream endobj 724 0 obj << /Type /Page /Contents 725 0 R /Resources 723 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 718 0 R >> endobj 723 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F14 69 0 R /F11 22 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 728 0 obj << /Length 1394 /Filter /FlateDecode >> stream xÚåXKÛ6¾ûWøTÈ@Ìrø¢‡$›$Mä†×ÒfÕz%W–7»ùõ%EÒ!½’ÖNƒ"Eáƒ(yøÍƒÃ™|8ýü„ˆ±BJèÇüb¬ðX @œϳ÷‰B”O¦„ãäY¾yùh6{þjñììÍ„òäÝó§öŸGëåvk‡oò‹¼ž@šäå*ן eiJN>Î_ŒÎæ#cýƒV —ˆSãÕÕè¯ÑûxœðøÅ#ªR>þ¬_0¥ÈøjÄõ/ëÑï£ßö8S 4 ‘:âœx—ˆöP~õÑÉ0ÆÉËüê\ÜÚþdW®š¢*íÛãjµ»ÊËfÙ~ÒæJë%qIÒýžNª"ÓXBt†n6;ŸœìŠu¶ÈËlÑÎÈë&¿1sxòs\”ÕÌH ™†HÊSm‚Ñ\tGŠ;PâdÛd³™Õ²jªÚÎfqŒ”¢÷—\0‹££j%žæåkƒ·¬›bµÎ" )bœS'ÿcÚ¡V"A¤×úë½ZêÉ”šHµîé~áµèe¾É¯›Å&20‚DgA¤ôÒk¿Îl |ü#§˜*wœŠ,’ˆIo±¶¡Ë+@ÙÃp°BœÄB)¿’ï7uÕèÕ˳‡A€”#)¥ˆ3ójùgë‹õmiY¾ZÞÚ¡ö”·‰gž7×ä6˜Ua¬E¸¨ÜÙ²}+ÜNyvöúìíÜŽ?Í¥ÿ7sˆöÕÅvŸô·¡w@§5vî…Þhÿ7u±lò~ºÇÉÜ ¹\6ýHM奜ù„p'i×úÐ÷ǹ^`R_ ƒÇ_¥¡˜ÙAå 5S|”ܦçí¦G«еÐVK[6MÉÔe@1_1t&¾ÀW?f3íê>£Eiê„I`=³Ú5S§{ë‚mäðÎ|œ,RßKÐ}ɳ¹±xWëµËëÙ,Š÷¢Ü™ê;<µÓ¢=ž‰t½m«KRÁ¼ÏݬN’·FÚ­-Œ^¸‰©4Ù´Oe't/ǦڶiMVC ¸Íu1ëš•ž´há%éõüæH¹ÛXNØmyoJÂ|ñ0Ã[ÄmôóÛ`¯­¥Q³ˆ2,B¼ÛÀiŠ(P6pâøý½Mq$–wÚ@¤$l÷±€¸ºö÷H…æg©‡5…ö¦‹$“ß±¿PÂp Gô—°å–Ô‡ÆÛm·¸-£çh#ìxUÕu¾ÝTeV”Ÿâ"~Øaâvô­µ\’ïXË…€ÞJl)XŸX‘ Ê oô«¨ÂsÒ&= }Ú67‡3úÍ’ßÆÂô¤Ý¾ù–ß°—÷¨Üj*¾Ûþ5‚Þ%ùü~’¿iÏEU¶k1ßçƒ|_W*09…ïsyßO…’Ã|Ÿ(q ݧ\À0ÝŸR©ù<`çHñ'T±â¯%dº÷üÆ÷ (Å‚SkŸx'‘~½LAm¦š˜*k¾zÒoÆ–ô›QP’[a`ª·Z@úÍç¥l2½EÐìéÂÍŠØ¿m+FûW–YËþ»Álã0â†ýw¹ïr ¾¹°ú,ÿ•³€v+(ë&W8àÁÓ@× 8I·;$X mèf`Û.fƒ ÒÁëÛ¹CSê"²ÚË-ܱg `¤7fÍ‘rA"tÄîˆÃÄ1´ ïÔÀþMFÀ#8¯ªuÿm©MÑVm«x²o;{ÎO3Ò¼ sÇ3xì`H¥@Oj5×EÝì–ëîF£b)fq£ù”7·)>œ=w+À)¶qüÇ÷¿¿þHIšúÛ_@ÀtȉÉkÝB\>øB>Ÿ(’ìœ/ŒÍ;÷»ý>ãxƤ«òÜ1áÂ8éïÇìy?J´ÇÕÍí§¼ôîÿ žendstream endobj 727 0 obj << /Type /Page /Contents 728 0 R /Resources 726 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 718 0 R >> endobj 726 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F11 22 0 R /F14 69 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 731 0 obj << /Length 1868 /Filter /FlateDecode >> stream xÚµYYÛF~ׯàÓ‚¢vŸd·˜dÛÀ"Yï y˜E¶fˆH¤–G&þ÷[}Ñ䈲4‰=Ì£«««¿ªþªŠº¹[¼ú‘&‘B*ËÝ.R8J‚%4º+îc¢ärE%‘4~­ÿþŽ¿ßgmën¨óþ «.ëʺZ¾¿{»¸½[Ã?bµ‰ –(?,þ·¸£b£· Œ˜’"z‚ŒˆR4:,8eáa¿øïâ?ƒž(Z5ÝXÃñ3Ã)<¦ÎîFgÅrÅ”ŠëJ›ë%ñŸK"b0×íšúà»Gí^½ÖÍSùà^¾¾ýåö×;÷>¯Ø }¿Ý×ùîuVùe~ǘî—$Þ žJS‰x"(ìÅØö“®nÁlípÒãðq…•þ |DËIÒ8ðDœ îú¦rkß½úѽü¦íó•Q­åH @kEÜK®ÛöÕά•û¾ÑV°%)J(çV¦íw)³¡¼´P?wµ»þjaµ7x /à®Y £©vfµ¿9÷ÚL;—H1!ýÖmÀ­×o~ÞÜd­ö1GŽ ®› IÃpïÔäf¢ ^+›F „ “FTpLÂÀDÀÜïN)üo… )6ÖÉ4ɾYÿìdUK¬ ¥ ÑŠ‚pâÀ¿ñ*ñØ$¬OÆDZ)³UЊ!’VIlö|¢œQcµq-Â"%vÚîts–fI4"30¸#!4‹%‘tAÐÐpÙžj&%椹IJ̨M‘âTx‰lÎ8F ÷ãœ_ÒPÌi —×"Ãð%d.Y¢¬%tæ´ŽpJé8ž¿ûÎÉÉ1³º»ŽÈÌ‘[q¢PB8›RÉÚ°HUÚÜ`É!ót²/¨ÄÓÆÎ]-‘ú18ú¯oß.ùíÍO(ÏÑ_½Ó;Ýè ¨ÍÄ«â7€f]BbÝtÚÐþ_ëuV›cÖte¾×›²2bvôÌä _=³î»™©«Á:˸îÈy}·!ñ8Mî)hë’˜Á‰£8îË}±ÑÕ§eéH6Xw^Û±©‹>7Î8«t²:¦a— 7¿5Ùñ¨›õz’N7UØêf´4ÅŒœ›j\Ü´±æÎLZÍÙ1§É- 0uM©Û‘¦Òe£YÙlõÑÙÚMÆåÈÛ#ï´ºÛluvàlÏ€CÆàœê¸J?±~[>TÙÞ¸Ëäëó`”ØD2ú"ØZ(×úach†°© L€¨,‰ &CB c—¶*ø¡?§ÌžSç_ܲÚ²£LmªÎëªõóÚ®X¯Íài’¥²7üyÂùzޏ0âd\Nýb+ç/¯’äC<l 0Ìæj“^íšX„"  ÚÄB :H¬!c|{ÖÀ°à¿œ§S • ‡)JÅP~å‹:(͹Tlêá« J‰&&¥RÀôx 6Ζ£W­¸«cPÆ‚­^þ‚¹Óy§‹÷séƒpާ ê%¨Z$SÁPjÂÛ•—¥ï8ÂÁtOeõ¬üôQõ¼î¼&Aq÷s‘µõú³•ø³UÔý6¬9¼ *u³Ë`‘MWo\'Ñ´†ÕÍÛÝé¾à%A!4HHï÷eeà˜õÑ :ñÑG¿”Õ®nÙG€Ã@Ño˺oçðºÆ+‰¸Ö)×£z´·u½ÿÖU½yÈŽ­á²mÖ@u HÁ»WBŒ8ÙpÖ? q@œµ¸k“Tžž5d:ó;x*»Gwç2E×d«Õñq)âm™éc«ûÐÌ ¹îïú(å_ÀGÒûÈFx]šFŸóÓ±±9ɯØüR·õds72GÄ4I‘IàF;g†Ð¡W”x¡of¼,¡æV>íò9T‰3ª€‹S%é„GqçÂ9’˜Ë)éßÿY6]ŸígãˆSÄ84u“0zjÊNOc'ìö9Y¾ÓehÓuáznû©ät7¬)ÉçéØÅ—éØå :v~]ÇÎ¯èØ““Ž=ZAÖ7í¾™%g{q)¥ù6H]ê)û§ý¡¸øM@Ÿj€èÐ{«KòSÀslß,_R°ÝΙ€qN$Á¦ÉUììG…¤H†åKgæ¿BÏh¦ :/œšÄ§&aÄÜ~˜«ͧG‘~¦^-6åÚ‹iXŠÖ/Wñ°º2WZ†Li˜¬l;(ƒ>ltc)¸n^–2iÕoʯI™AtÂu…v9û}7­Eº¦×7Éþ%*ºÓ4wb—ϵu…ßPžØ6—˜6÷EHÃÉö½²L¤Ÿ}Z˜‚¹ ïÚ)j®-/«¿Q÷‘ýô—‰#ÐþãFŠnü#ž¡@º X:%æ{b:*Ýd6÷¹oÝîz·T4î½Ãß°{?⃈µÀk uwöƒzøP>úeû!üˆòׇ=ü|ò2`eÉendstream endobj 730 0 obj << /Type /Page /Contents 731 0 R /Resources 729 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 718 0 R >> endobj 729 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F7 631 0 R /F11 22 0 R /F9 634 0 R /F10 637 0 R /F8 640 0 R /F14 69 0 R /F42 126 0 R /F52 151 0 R /F6 643 0 R >> /ProcSet [ /PDF /Text ] >> endobj 734 0 obj << /Length 2152 /Filter /FlateDecode >> stream xÚ¥YYÛ8~÷¯ðÛÊ@[#’:؇žI˜I¶cì, Y¢mm$Ñ#Ñét~ýY¤,¹%'M#ºX,V}¤_®g¿üJÃyâ&!|Ö»yâÍ£¸%t¾Î?:‰Ë‚Å’žó†u{{÷nófu¿`óçÝo8óªLÛ›÷|Ç›‰^g†HìÇI’ŧõÛÙj=#sþˆVDnÀB2ϪÙß³Ÿ¼y>óæogžË’8˜?@Çs•Ϋ™O™í”³³ur– hÙ—ôR¯È»X…n„ *êÅÒ'Ô‘‡¢U-â´¯Ó¦7Ð ¨óÀ‘ ø­…Dº´,Å‚΃ÀŽ3Òn ë7Þˆ%Ïq’ײ)x‹3¨(fx³z¿ú÷Û™¨*a¶¥È>‹Ò:G‚V(?—„¸IàŠ”VyNÃÛÃi§,üËó˜ÔŠXD:áj°î)®J,Hà|)êýË7nס†»u¨Nj¾FÍ^ ‹6U TéçN`{jxŸœ8ŸòãYáȺ*¡\üKžžö Q¥¬áe* Q·‡âhb.=qlŠTžÅDnH}¦Å¼æàZŠË0Hü–EͱÆb‡_ÅRšIñŽx7ËÜ¡_kѯ‚Œ"AÚã‚û»ù³+ys{ Æü'à~'Á2 iå&;e>³óØ5AÇÌ“=IÔKØ”ö"¿Nx¡hí7¤ƒà ›tŠfxbà5ŽêL7⇠¦úTmy³1ÜÓÄȤ¢ã׫t£ÛpfVaþØ³É ?~ÐMÔò¤t/8ì)ÓèÞŒK’›ÁF“(H¦ÕÊMi~@zÏr‡–!*ðÿ©·Ë$¦×´NîZ³g«Ç ëKñcvMûQ´:sü8Ǩÿ[™ÊS_mä‘I!Ï •WÉ®û£Ù½©âñ‚L§ø+ô]_Ï“FÈöÑæõcZ4›?rUÁ¾È” 2`”(;Œâ2—ˆIJÚuìD‘Oã–Û[)gªJ›ûQ3ö2¨5mžm Qè†Ðc” ¡IžIž2÷1Ȳ£^Rße~b*\Š…5麫-îªí#F@s°Œkß©2nJ™¶UŒÊ„ ªó´ÉÇ*äZC!æÃ.ˆ“ÔEQu¤±NÏȢƭ9ªÝ¡ ¿3GѦFÞ©ÕèZEm™íÚn i[QõÂ×›8¼‘FB!-¿YcvŒ„ø„“ŠzÊ)º·M•ʱ E)šŠ§µiòVÓ’ÐõYìÃÎR7ÂHsüE)Àæ ¯ôºÚ 2QŠÆÓœ2 PÉœ³‡C‘° 0è¡Ø„rÖ”"Í­5Ú?Ù£øIÁ^—]fìAè_­¬¬ÆWÙ¤¦kQ ñ˜1°sb{ÚÂIÔšepiÓrÔQŽ<+Òhi4 |èc&Äv&rnšÄ#7Ä£v¼,‹\cMJCÃi…êe‘•g&† E±<“iþ±!t_ýþèâLê%*~ê…šY¹2¶[¹êÇS’à:DÁ|jÌŸæ, —#êÖŠ`KB“ӼJÂHEê»¶‰ødIüäœï^ÿ3ñÏi°*šÆîvQ¥{>Ä˃hŽÖè_êñ¼¯Ë²\+9}çÉV¼±,ÿ‡š5º›ÂËS ÀŽúøý/—fÄØ ‹z(¤9{µ9VÇ|oMÍù˜™?rÏ`VùOÜ3ØÓ{†MUaÀˆÓWˆ(úîµãŒÿ8È"Ê`úŽ1~K’纉«C0Ñ&ñ$0ùéz³_p¿l7E=MnÆÎÕd8‚Ùi_ãÞÞÐþ Þ%lº=AžšrÝ­›o°m¤ØÀi¸¸;0 G,RÕ¤ç>íúÇ ”È®¢D}\ÊMmŠÒ%ê­ª 1FÄHŸõ]Dlö&¶©†¶,™Œ¶¢Dõ~,244`1±Ðw“˜0C`Sáæ§Æ”rµÊ,£x“ÑÐ%Ìó-Þ$ǨT£®[ý,Ÿ_¡h|~(Rãžg^Ü¿šè[@ë̼z÷Ç ·^wa­²1LœT==Ñè‡>ˆ«§;A)s£˜ÄÆÍÃϧ¾)ÄQÐÛ9ïf C£X²>h(s~ïºPÁF…41rt Žhc¡›À¿m4è è’%‘ «O†žœõ®£ê\YbëÅû÷«÷ØÖPÒSU}A-"Ç‘–ñ Ð$I’Aq÷ Àö´k9‡Ô´: í¼ÈÕ>A¢_ãªf1"Rü´P€u¬@»ÒÇáäéS玥ß_•± ¨(—¢Vw…0v–fàÀë®…3=|«Æ{+b6|Ù“ðQ³»FTØ2(ò¤GÑÓ”¨÷ÙS)q=c§Ÿ —Æù^4D5hüSÑ`ÝfPjAµôs2%NËÿ>AœòºÁû–Y¥©¯ÙP@TìTMË–ãäÅàò•Ü }™hÀ3G¡ïÐÏ‹F=qe²|Äi´u’¦/~Eã~ªáÃm@ÅïIÅ ïÛ{ê6ìapkFÌRpÐuÕ™õb§0³&çAë¼ EhåFŽïœê´m‹}Ís#gÐBlLû f€s”æ†û‡ï°û¦¨³CYè·ü…ïà>±µ—:fßfà¸Ð‘ŸZbÏe„±ÿÿ—–ž —æ§#ÈG‹í-ÄPН2¿ñš7©´%Ü‚âõ"¡ÎÉ@Þ·j³NfÆüÎD‚ÛÀ»õ#»"bžæµ7ìļ_÷p¼Íòÿ»T=bendstream endobj 733 0 obj << /Type /Page /Contents 734 0 R /Resources 732 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 718 0 R >> endobj 732 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 737 0 obj << /Length 1158 /Filter /FlateDecode >> stream xÚÅ—Ënã6†÷~ ï*5Í»HÝd’&tÐvj´‹4d‹ŽØ’+ÑIݧï¡HyìŒâ\Ú´ð‚¤,þÿ§Còl:OåP#-¡™.†I „§ùMD1ŽGTE£+³ùôGVYÓøîy5ß®Mi3[Te|;½\LdˆáGÚh"A‚I2œ¯ nnñ0àáõ#¦•>À#¢5®œ²n°ü2øygF‡‘ÎÚÄñ£Ä) Ÿ÷¹ùcZmVm¢™õíª(ï©Ä·Õ·î‰UøïãéÕÅçXˆè·—h‰ÜÌI)1†ÑIûF˜@ Æ8º „.rˆ§•o2 aYv2iŒM7uQÚ´(çUÙ5å|—šºŽ‰ŠªÚ‰¬ÈLàYU­|œdÁ hé¸,f=‰&Hs%à ßùÄa …$*Ü`ë­é Bá5w¯„HO £ "’Èሤ…ðfÜ¥Sý6„=´mÄÄ(ôG”#I8iÈͼȃKc—¦V…¶¬‚›¶òm«¢ïJíüeÐÔé )8çH‚$åüŬÁßþ5,‚€Ìil:«ì2]WN–&ÍÊ<ͳíÝÒšAOâ’ÀÇ-OÓµJNÒBtGÓ"[5½´h¤”z wQH/ÀBaù6Iì|­¬™[“Ÿ€G<†§µ3xãeòýN¦€ŽÓÒwëíʼ ®Þ ñ5‰C#&Ñi::0ffSá>(%æˆtŠ¡'ê$#º'aš‰—Tö$‚ ¬ï­(¯€DþÏÀìÞ Ù¿þÒaë¬lV™5)Ló¡¸Km•nò»ÔÜÂàBô°€aõ`´³²èó%R‹CÛ˜®ÛG™Dœ+î¿9íóˆÀúؼýtBíÏj[Ì÷bž÷y4]>.ÕÕÖ¶¾´£pY@¾›Âäáꢮ֡ûƒóeW–ax™Õµ)¿q»€Í—f„ ŠGÔ¨1¦G|\ï–Ön&ãñxn6Z”Ù ÝU÷ãM³û¸ã~äEœûp®õÀ¹^"˜ï8à\»(Vá/‡Cm>G}Ñ?›…IÎîÙη5¤XÔÀÐÆÜ[ÇŒsû)Z)’ liM­mݳē¸ö­rPøŽ:u9øÑ“Ä%)‚÷ÈuµÃÍòdˆ+ÅM9¦òx¡¡<ìs³È¶« ¼ãȵ]±{½c„éç[¾Bnu,·Ô'å~Á²!Õ¡âïIÅ…ÛE0Õ¯8=~BØqE»âû=ÈÉÙK%çôß•\÷ìçž*Ê¿Éo¿'·Q½·)¤êÝs5–o”Pò_Õdç…E@ëc3 ÿ*¨· Êf¾¹ºøéâ×iX›³ÍÃ}ûBý¶Šö³BE{tUpÚ$Œýó3èA ³pv–püÒŠPJ”°aMxâɸ4¥©a© (t;„i¬i´ KÖµsþ݆a"ð„‡#*Å„ú^÷q~Ëwg»î<þçîÎìOâ÷|Ûendstream endobj 736 0 obj << /Type /Page /Contents 737 0 R /Resources 735 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 718 0 R >> endobj 735 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F42 126 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 740 0 obj << /Length 543 /Filter /FlateDecode >> stream xÚ¥”Ýoœ0 Àßù+xidI @x¼îÖëIÓ¶µm…(„_ãc×þ÷sÐÞõºU›ŠñÏv{j?SW爻°„™Î±î¹1J¨¦7G63-ʰ±Í—³ ¸ømÖ—¦ÍŒë‹se9+â®Sâ¥ÈDkßU"àñß ˜˜wáV[‡Ñ1Oß(áXþ9Õu ååû1M EöŽ{²²CJÝå}^ïV\¥M ëã~Xâ£%”‡\ê8‡w`¢Ý?©µMœ·ÑN4âWÿÁ áN(—´N¹E±ÌV}ÊêV ý.Ÿ.Y¢:DŠûxD%Ú¸ŸsÈÚºœÝÄ *ŠzŸW§¶+Ë Ñ£…؈;ž§C"Æ6Úo)eÒzÔßÂç@“?43Ú4ËGŽëSˆFáWâ<Ó,Iº$ɉÎö¡…‰mÿc¿­¦IåB#ÛþÜ×ÇsÇ ÏŸ·S"yr MNA(ekf “ek„ ާ4UTI™I™!Or™}J”wE®ŸêÇ'8¹üß;¡aìendstream endobj 739 0 obj << /Type /Page /Contents 740 0 R /Resources 738 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 741 0 R >> endobj 738 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 744 0 obj << /Length 918 /Filter /FlateDecode >> stream xÚ­V]oÛ6}ׯ°ëA,yù-¬Ú¦Ý À¶ú- Ù¦²”Iò²þû^Š’#9ŠÓbCóR!ï=÷ïÖÑ« bK¬Âa½-µbDƒx½»Y…$à ¬~u÷ŸÞãDÒÕû2oÛ^ÕÛãÁU]Þu•Ü®¯£ëˆÅÿX&5‘\±x{ˆþŽnni¼‹h|Q­‘ñN(aÖB|ˆðqRFŸ£ßO8)¥S¤wq& Fæ€Ѹ%\%)£”âY¶s]^”YV´åMÑÝ\Wl=ãW¥˜"Ñà¹ôH?‡5óݘƬ–¬—`˜"ŠY9,yó2Êç®9n»$Üá¾Ì;ç¿°Õnïš„ëUê‘â¸$FX§…ƒé1\µu˜”5å–ü’‚&ÜHÙ¯=V;·/*·KR…iÊ«!èî\ãöuã´ª«tž0äë7U DôSQmËãnؘ±ÉÆ’< ÌS9£¦‰F fµ!w €Æ¥¸yšUF¬”}VS&F ›A­Ò›{þ½j;nÊ1~ÛuM±I€®Žk2N¬Ðˆ†ºàT}ý “Tb~Ú×çjS×eˆ¶uÕv'v0fˆ”¨”p€†™/.py†}^¶nùhˆ¤œÍæÅNØ ÷«^羪}ºvÛ÷cwž±¡^GÄZÊ{œnTÜÓ¼sM¨¦òIOœr,ÌöÑ!Ö hبTѧ½1É%À혦vh ÷r;϶bR%Íâó­–èZ¸Ôs¶óþi“è³|þovåaоˆ© c‰à!c½ã%¢³ž"Kº¢ z‚AOŸÜaƒÎÔ”wù3¾YYñ¤Ñ BÓèTØ$/ MŸ Íèç„&@Âe¡):?ô¯ ý‹¡úaÁiŽkÕeÅ=î¹,¸K½1K@–M=™¿¬'r&U£µÞO@˜›`c·árèt‚Á¼†ß!Bñ#"<ùúnX¼›i+ ÕÍØ:E¢Ñ|ü¿¸Ê5(¬¡ÑöM}8µÜˆT–õCQ}9Qè³Àz žpÖÿ#˜¾öM¤òÑôËi¥±Ïßago"ƒÆùM€Æ‘Â^Þ±±vÆ2kF˜Ðª'÷Ëc~|ûôÆçÆx ]'L¢u…‰ “™¤™Ða”ÁpS% Wu3qæn¾Ž6ñïW¬É˜„o¡¬ŸVendstream endobj 743 0 obj << /Type /Page /Contents 744 0 R /Resources 742 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 741 0 R >> endobj 742 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 747 0 obj << /Length 845 /Filter /FlateDecode >> stream xÚµV]œ6}çW õp|¯¿QZ©é6­VŠÔ6ó¶YE ãÉ 1ÖaºÍ¿¯Á˜ÀÑ&©òä‹1Ç×çœ{ñ«Môâ5ÊØ#ݰÙdžÆJovw‰!L¥ šünÞü’ç;ÛUçÕù}ÑVÝáh»ªLï7·/^Ì€€+F²˜8/ý’Å^@ 2ÃÇå¡hWpˆÊŒ‹~zæm×^ÊΧ¼I &öøPõ3Ù½mSЉ=•n ¨à:AÊzØè×M…Æ0Ð LB\£¿£»{ï"ßF”0£Eüè¨;¡ÁøqdᡎÞFN8™ÊæH¯FÆÆ%ÊÑGÍJ¿„rÁçHˆHâ5ç³5}®H_"1 ¨4^±þY ‰v&ŸÒîf<íL%YgÈ¥Uœ"†¡0M|28Ó7c†p7“¡"L 1%^”Cͤcª:ûqÉË­ß@"çÃG?T§²¾ììŠÍ#ÊL~¹’†"Šk=.XHA+€Ú)™ºfˆb`0sôêh`ŒpjôHeÑç?øõ˶ñÏ]×VÛiréìy%C`ÄpåМ •ÞNïEš ÇÍyÄíyÚ6Mí£²9»µªM„¡¬þIÁ±[_Æ:úÑNt»~2†DPË“õÖ&0šûfpµÝy¤{.Ûê¡«šÓJ2NGt‡3” 8]0×5ínª¨:®ö g9=I}žõ‹¯mq‚)ôwépË @îÖ_²ðM%pc÷Õ©hö«;?ÖÕÉú›½÷N¤°ÃÂôdMyº¢8ŽŠ¿±ÇmŸí wÑcÔ”—£=õæüí=âä"oäÇù[tD„RßÿW5ôÐòü¹¢Z˜@JB )Üùj¾÷ý”!u¥/–L=/5£_#õS+mãâÝBAÔŒ®ìÁ—¡Ðúø±'?Ø“m]%ïÆÏÚæ¾³©®›ÇêôaJ!˜Í¥Ð'œ/>õ>ADOÅÔûVÅ4B›Ï·ò'7í~ùÀØÿ¿Ì€Â=@ºÿ>ÓáÄ]›äÖoŸ˜éMÑ;]i‚anSÉe|#ü"4ç㥠) ö)ФigâÃíÇP†ÿ~tj„ãÿ¶dŠ@endstream endobj 746 0 obj << /Type /Page /Contents 747 0 R /Resources 745 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 741 0 R >> endobj 745 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 750 0 obj << /Length 842 /Filter /FlateDecode >> stream xÚµV]œ6}çW õpìk_ d¥$›´Z)RÛÌÛfU13ž,[`ºÍ¿¯ÁxvI¶i̓/Œ9>>ç\ÛMôâ=ÈØ#ݰ9ĆÆJ2‚À Þ쯠"Í@3 É/öîÃ[w4y[]çËËfw:Úº/ú²©Ó›ÍUôn±˜ºÑPä’Å»côgt}Cã}D㫈n4Æ÷î‚f ÄÇHUô1ú팓9 lŽôf"ÎáBB`n#Ê7„ë4c”RO<Ï÷¶/Ê*ÏËî¢-ûÛ£íËÝÀøÅ{s$ .#ÒK?g¹š+©œ¦ì›Ó¶²kXBTÒLó.ž‡úØ·§]ï´e*Ù¤{¼«ŠÞú;¿ÛC6`ÄN{$†ÄSC¡Ç§m›2ØzÈÀÌÛŒ"Ü ”qN=“N¨²óãRGlXC‚ã?•õ®:í§›­€œ(£a)Ü‚ƒ"Jh=MX8AnWµ!RrõT>F â(_Æ`T¹ýq"¨Ñ“ŽÅÀÌè¯n‹¡~Ý÷m¹M&§Þv+ 'F(‡æRÀ©ôiú€i†N›nÂtÚ6Må«]Swý™Ý Œi‚è"á7ðWÊœºÕÉz.¯üà·ë;ã@r¶ÜÙl¦l_Ž¡¶û©m·k˻ЊÈ8ÁmÎP>âô!YOeçŠPEC$_^¬íÌ¥NŸ­îBjñß´Ûb-†‚HÔOšm6ƒàF¬ôÚ’´‹>wíÅZÀ®ÅRˆïoK{(ër”ÙÏîýX•õ„£Œ›ƒåà ‹Ð“5çéŠã09þÁ·®Í½ßE_|åþ¶÷ñœ"äÇù¿ø ¥Lþ #@‹S$ÏŸk«E¤$Ô¨@âÚ÷ó?T9w¯%ip)Öónkú=n?NÓævš¼_˜è‘šÖýmˆf赡¾/¦›Ÿmm[×Ìûé±¶9†çl@ªªæ¾¬?Ÿ)„¼9 á|üãáøC‚FàÃñ·ê§Am¾~š?úÐN]Æùÿÿ˜…/éÞü\ñqÞiÃx¬aBÉ‘ÜÏú ÙäÆñ rs•2LNÓ?è†9Ò\(”¯)`Ò´³NñåöKèÇ¿¿8O‚ÿñ^ endstream endobj 749 0 obj << /Type /Page /Contents 750 0 R /Resources 748 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 741 0 R >> endobj 748 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 753 0 obj << /Length 848 /Filter /FlateDecode >> stream xÚ½VMoÜ6½ëWèE:ˆ!‡ßBS ‰“´ÍÞ£Øn,@+¹ZmÝüûEÊ–vUÄnÑœ8¢È§á{oF|³J^½•Zb«}jiª#¤«ÝMf ·y’f?»ûoËrçúuU—euü}ÝUýÝÁõÕ6¿]]¿zÏØˆ M˜U<¥Î÷aÉì[ŒàVÄŸ(åíº_€F8‹«~ø*ÎǾ;mûó*·¹Ã}½î]˜ùÍí]—3“¹f‹SŒ*Ê3 ÒÃ&ïV‰ÿMÙÀƒÔDrÅÒí!ù#¹¹¥é.¡éuB‘#Ó| xD é!ÀLJ:ù˜üúˆS P1Ez)g‚p¡`äð8zJ9£ô9œK1E¢.IŸ¬ÁPàç–XŸƒqJ”ЗÄ_`™sæ…>ggó\g…GJqˆQ(lÁ4±Q<Æ KH&Ü3h”ÃÚ}í3/UÃ8§óòà „6|W5Ûú´s “œhkΈ›¥ ‰FÇ3%ÈÝ ±D)n.ÙcÄJ9°W0É0jðxœjM¤qíóìúËiSñ}ßU›hvêÝq!CƉZ#I@8UÁMŸd^Häæq=O›¶­C´m›c¿TTÌ)åXUæ Ù­O±Œ^‡wË'ã@$õâNOæMXôöÕ`j· HWî¸íªû¾j›…dPGÀÃYÊœ~4Ö%í\ª©u\lh7cF_'íâ¥-N ¢¤ù:ÜÜþ Ð) ;ÈŒ‡À•ÛWM5VÇÝuÕ¸iÆvÆ=J4~afy²¤;]ТÞÜaƒ ¨½î×1j·§ƒk¼5Ÿ£|@|ôP°±Ç 6þ7*“„R¦¾ÁjÖBÊòk55³€R„Z-ãæ›PÌ·¡•rðÿ$ s®ž!¶|‰ØçfZÝÅÅ»™†©íBÐßÎ ÍÇë8ùÙ5®ÃJÞÅm]{÷¹©®Û‡ªùü˜Âh7_˜p9¼xê}’H+äSï[”ÓJcÿ¹•Ÿ] ²Ë8ÿï÷€ Ðx PøÛÇ¿D¼0‚×&5¤õÓ3ÞžØÇÍè˜ëœÉìßÈ00YJZ ž€2Ñ>™µÝ¤DB¸ù2â__Pñø†üˆƒendstream endobj 752 0 obj << /Type /Page /Contents 753 0 R /Resources 751 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 741 0 R >> endobj 751 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 756 0 obj << /Length 842 /Filter /FlateDecode >> stream xÚ­U]oÛ6}ׯ°éA,/¿)tÖfí @·ú- Ù¦²”Jò²üû’"éHŽÓ¬í`À¤¤«£ÃsÎ%_¯’o‰H5Ò«]ªq* N€¤«íUF°È ¢@‘ìsûþ½à8{ÓTÃà§Ýæ°7íXu׿׫Ëä÷U)¶?˜Ð¸Dœ H7ûäKruÓm‚ÓË#ªOïìF 5I÷ #4^4ÉÇäÏ#NaŠ9Òë@¢LȜ؅HO\#†ó0ÆžxYnÍXÕMYÖÃßU_7{3ÖÇøÅ[ÎæH„$‰ã2!½ô5˯@œ1Jêv<„¨À"½zçãØ6c^PM²UnÿÌþ¶©Fãî@ö—Ù™>§2+RZª´j¥H¤)Q†i7&!3c-böNA$¢Šó#ïBX‰êÁKa,+-cSù/u»iÛ0ƒçI­N$[H2%£`sÐÍ@¥‘T=Öæ|Ò®ˆVvqÔÚ­U±rü§t~8¬›8ÿmûzœF3œai&¥•Èú†…ÏÑ'Bx^p«ÍpNë®külÓµÃxd7…8·yð ø'«ns0žË¯~°v›ó+£qLa¹2—i!ÕSœÍ6´¡6}}›ð„ vaAZc:áŒ1Ve§ayŒìËWçVfæ„’!DÖ‘x¾ÑßÎàêQ›Í*0"T³Ó.[¢0 N‚²Œ>¡Ì®Šè¥ ßþ ³«ÛzØW‡·›º5~Æ™»wÖžø…EÜÑ9Ïñ¯Iðú½Ù¯më{§«±zbëý¶ëñ˜a‡ã#ü#àcÿ‹…úQ¯?±y”åsÝ´°_„µŒ ®|_û-”Úž'˜-…úNóïqú4I«›P¼]葺ÞOÆ›ËØan~W…›ŸMkzÛÂÛðZßíã{&"5MwW·ŸbÖ,G¸œ> endobj 754 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 759 0 obj << /Length 840 /Filter /FlateDecode >> stream xÚµVMœF½ó+rí®êoGнv¢•,%ñÜ6«h>z¼H l&ÿû4ìÀ–w“øÔEOó¨zïUõ¼YE¯Þ£Žsš–Õ>v<6˜BÀxµ»I“f¨xò³¿ÿð6Ïw¾]ežÇ?ÖMÑÞ|[lÓÛÕõ«÷ †Ó"æ=Î÷áÈì[À '‡e]}ZÀAÎŒÆáÌ_EùØ6§m2^¥¸/×­;¿ù½oR°‰¯¶´\+› 7lôn¡ðz”aJhˆ·‡èÏèæ–Ç»ˆÇ×gÂY?ЧƇH¢Êècôë#NF@ÙéÍ@8H&$•50ŽTŽ™œ?‡q%§HˆÈ â%å“3jÁÍçs$Áe/Xÿ"Йv{A»h&É:¤8C‰LI£â smÑk’Á‰¾™ Jh'CÄUêœx¦‰¤âÖ95”V‡­QÊþüwEµ-O;¿`0%˜qö i³ 3ÒŽ•ÎT`w €Ö1­ÅyÀœR=y(`ÜRu‚IîìÀâºË¿·ê/§M9Æ?¶mSlRäÉ©õÇ… A0'!Ž ®ƒ“~GTi¦ˆ›ã€Ûñ´©ë2DÛº:¶K –)¥ÆŽú+b·< -ô:,¤·_®L¶\À¼²ÎÕlôõUoh¿ HWþ¸mŠû¶¨«…dHG¤â=N;úê’va7\:.Ž r›µ09NFÅK‡›"÷?öÇÿ:ÛæÞGIG€Rž±ðR÷_ù}Q=ÃátÖ²¨|ˆ´ k½ëžô¿0ó;[/ˆƒØüaCͤ^·ë!ª·§ƒ¯:_>Gö€øh àá'xøßHˆ ç ¿ùý4›yþµvšé¯5ãŽædxù&ôñm¢³ÒᜩgH­^"õS+­î†Ã»™‚©nBÐÞ¾{¬‹ÖÃæ'_ù†šx7¼ÖÔ‡ñ=?"•eýPÂûF³Q ]ÂyÿÃyì)¦œTç±·(¦SÖ}yŠ?¹ÿ-]ô Ä¿þ'@ãí¯é¶§ b¸üi0J£û´~:3Ó¹¢#öñÌè˜ëTr~Qa•+žKž†hŸ¢JêfÒ !Ü|ÛðïϤÆXþ?,ž†Cendstream endobj 758 0 obj << /Type /Page /Contents 759 0 R /Resources 757 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 757 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 763 0 obj << /Length 847 /Filter /FlateDecode >> stream xÚµVÛŽÛ6}×Wè‹ô †·áEh4Ù¤ÅÚÆoÛE!ÛtV€,m%¹Ûü}G¢¸+:NsCàŽ$òððÌ™1_l’g¯¹J-± ‡Í!µ4ÕŠàŒ§›ýMÆ©É n˜áÙ¯îþÍK|š½lªaðáU·;];Vcݵùíæ:yµIXJñÇf4Єbéî˜üÜÜÒtŸÐô:¡DXé>P¬åé1‘\„‡&y›üþˆS P±Fz±g’©x`Îñ Ú·Dò¼`”RO¼,÷n¬ê¦,ëᯪ¯Ç»£ëÝÄøÙkk$Î9Ñ|â2#ýèçÄ»aH…2Ë”¦kß¡Lgûî´mÜ%T-ˆµóù§1ߎýi7zÔMnyæŽ÷M5ÎØ)¦ˆʦÓÄ næ5¸ƒësf2×î ¾Ên!P|SpM„X‘W(ÔB~ŽëÁ±TÈmÚPq)çµ?Ôí®9í—½[í‚hkx,bÄF-M8n”rwÐX¢”Ð*Ȉ˜,0ÂÕxRA$µf‘²šøÏ~ý âŸÇ±¯·9§ÙitÆ s&5¢¡#UÞYry¨Í°àN:m»®ñÑ®k‡ñ‘Ý Œ€¦ðø'g¨nsržËO~À¤»Ë'œ,>ÙärŸ_Íwû¥0ݰëëûP–gd0|2$3θ2×™ìBª)„<>¿t2´ yLõŒ ŸSzÑ^ $Q`>(¼Õ J¸°2®; QÝÅ6ä„JyVwqQps(•±$ßRWîP·õ,½Ÿ=ú±©ÛÇH?v?ê§¢B —Ü@/¸ t»7î¸Å&à=PÕGÚôÿûÁ#>:Ë›{ÂñæþšÜr¨2Sß=¹dÔcÊòSEC)B­tn|µßúþ+°Ñ0Á –í3ò_’÷s_mî\°ä:©ë}0Þ“†Jœâ‡jyùε®ÇRß/ËúîÖ¹€Ô4ÝCê ÁyHa"\Ξš#°žšãÅÌZ0öã½þìÖ`ðzÀ„øöKà (ÜÞ„™[æÎX&RÉ”ZÍä~yÒgòÆ$ï4ÎÁÁ7×9ƒì´|?0(–Rû'N÷Ñ!çuýªf|¸}*óß÷˜“ Â2àj[endstream endobj 762 0 obj << /Type /Page /Contents 763 0 R /Resources 761 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 761 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 766 0 obj << /Length 844 /Filter /FlateDecode >> stream xÚ½VMÛ6½ëWèÅ:ˆ!‡RÒI¶i±@€¶ñm»üAÇdi+ËÝæßg$Š^i­ »)’Gù4|ï͈¯—Ñ‹· cˬ¦a¹‹- A@¼ÜÞ,,S2Iùâww÷îMžo]»*Ê…’šYÁñ‚ö/"Þ%ŠG¼w3Ä{ÚaĤ0nmœ 섬ß<ÒÄç#}SI”ÐL †É q”xª‰¥âèÇ)7”V÷ Jõ~*ªMyÚº‹¡dÆf0em’‚aFeÙ°`"ÛÏf–i-Í%y‚Þ¼T ` ¸¡ãI¦¸ÍW]þ½Wÿ8­Ë¿jÛ¦X'À§Ög2’Ye, ¹öVú“‰›ã€Ûñ´®ëÒG›º:¶s%2†ˆ¡¤þM±[ž†úÙ¤·›?™†\ŠéÉ:[31ûªw´Ûz¤+wÜ4Å][ÔÕL2¤#Ðá,—=N|uI»4Œ›³g_Îö 2]v–ú8êÏíoH} ³ïÓÞ¦ö'3Ì$Nyxv\¹]Q=É~õ°»,*ç#¥üXïü¸#‰Â&–gsºó½aÐû;¬©Æ½Ú«v5DõætpUgͧ(ïÏò6îp¼¿EE ƹÐ?à/Õ·Ðòük55±€ÖÔ2M0ö/æ[ßO%Qd„ÒS®ž 6>GìÇfZî‡ÅÛ‰†©n|Ðîƒ3C¡uñýj˜üè*×P%o‡mM}û\@*Ëú¾¨>žSv£º„óþÅCïC†VáCÓbf¿ÜÊÝ2úÝ )ÿÿ%`îô‹52 WÁèΤû´~{`¦sEGìù:s\œ†7è9ò\ÿ\€v à¢nF%âÃõ§Pˆÿ}"5Âñ?©L‰¿endstream endobj 765 0 obj << /Type /Page /Contents 766 0 R /Resources 764 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 764 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 769 0 obj << /Length 862 /Filter /FlateDecode >> stream xÚµVMÛ6½ëWèE:ˆá׈¤Ðh²M‹´oÛE!ËôZ€,m%¹ÛüûŒHÑ+9N·mPø0¤L=>¾y3â›MôêÏcCLŽa³ UÎpÆãÍî.ጦ×Lóä'ûøþ-N€&o›rüð¦«NGÛŽåXwmz¿¹~ØD,¦øc ‘³¸:FDw÷4ÞE4¾(FCü„J˜1<>F’‹0i¢Ñ/gœ ²%Ò›™8“DÈœæ¢e:±meg|‘ÞL .ø$㊠°bŸ£Vû²ÄMëÁǵ`HpÚ5çR:€oê¶jN»yCÆ‚ Êh¾–rEI%µž¬rCWµ!y.Ôç22bœŒFи +ˆ¤FÏz–çÚŸOÛ&Œ¿Ǿަœ&§ÑW2AŒTˆ†¾4÷þúsH3@m†wÒiÛuÍ,d×ã™ÝŒiÁ¦ ÕmNÖsùÎ̼½~2ÁÑE‚­O6y°Ùí7ÎæÎSyÚ¡êëÇPœd0gÐsθpØ…ìBª(„<¾¾v2ô¡>§zî…R€«½H’ƒþ¬ü+(áÂÈË꺨¾µ ‘*¿(¾uep…k‡µ$_]7v_·µÓ߯}lêÖú‘0>v{÷˜½°ÃªÈ5KÐ+Và³ÞÛãvbëŒPŽå:öß›Â#žíåî¤vÿ/ æ ¥,ÿß3¼‚t&4Ž¢x©òVîÈsB ö¿ó%ï;±J ùZ¶—ó.é¿Éû¥¯6‡yñn•NÔÍÁ¤¡§ñS9?|°­í±ÞgïûîÞ³©iº§º}8SÎC áÂýñÜ!€‘ðÜ!¯fÖ€6_nø7†ß¹¯¾?,€Âõ!Çë‚Ю¿aî´a"Æ.ÀÐHŽÜÏúLÞ˜ä¢ûßܦ ’ÓüøÀ ZHågœ2îGû”CÒõ‹šñÃíÇP™}Äœ>ÄGnAendstream endobj 768 0 obj << /Type /Page /Contents 769 0 R /Resources 767 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 767 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 772 0 obj << /Length 854 /Filter /FlateDecode >> stream xÚ½VMoã6½ëWèÅ>ˆË~ mnÓm`¶ë[²LÇd)•å¦ûï—IGJl¶-öDR¦žfÞ{3ž·›äÍ;”©!Fºe³O M•"0ÝìnV†p±ÎPÐÕ/öþýy¾³}QÕy^þ,ºª?m_•ëÛÍõ›w àŠ€‘,¥#ηþÊì[@ 2ÃÃssªî»ó_+E·€*‘ÁUxåûÏ‚~è»sÙ{ÈÍÚàÊï뢷þÉïvo»5è•mJ÷HrÉV0 &?mp 4…‘¡ˆ`Òò˜ü•ÜÜÒt—Ðô:¡„-Òw .]ƒé1áÈâ¡N>$¿]p2”M‘ÞúÆ%FþÑe£¦ô¥¯á_ð)"…ø\€ÉÀ)ýTßD9®a•4Ï$x6j0€ ²á­4cT%Ó 1 õxÿE|08;cA˜f¨ÓBMZÉ—öBÁ‰ú+´Âyu vw€ê9)ÿC}\Ù}ÕT£þvï׺j¬ß1î×vï×½S0~aVdÉtÁìðÞ·C´£о»¶<m38÷5Æðˆ‹y—d.ÿ7"#B)ȯý‡7k7yþ¹ú›9DJBŠÝøÂ¿ ÍÙ’ƒ™÷ åÅ—(ÿÔY›C¸¼› ê‘Ú`Òþm‹rØ?áámlçª>8|ßµÇøžHuÝ>TÍÝ%„è=Âp>þðØ'†‹Ç>¹¨­Ú¼ÜöŸLÚÀØ(&@qžn~`:Ž@Ü,&ǰ~~dfpÅ@ìe2ŠŽ¹^ƒpÞô‡0ûÈ͹ò'¤€~·_£XµÝ¤^üvû1Vå?1ýORé¥&endstream endobj 771 0 obj << /Type /Page /Contents 772 0 R /Resources 770 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 770 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 775 0 obj << /Length 860 /Filter /FlateDecode >> stream xÚµVMÛ6½ëWèÅ:ˆáð›B É6)Ð6¾m…lÓ»di+ÉÝæßw(R^Ë«tÑÚäãð½7c¾]'¯Þ3•Zbë}jiªÉ€¥ëÝÍ Ç,g [ýâ>¾Ã‰¤«wuÙ÷!¼j·Çƒk†r¨Ú&»]_'?¯H)~`D“šH® Ý’¿’›[šîš^'”pkdúˆJÀZ–Áø4©“OÉo'œòs¤·1q„ ŦÌ^D‡Ä-*ËR/Šʪ.Šªÿ³ìªáþà†jë3~õ^Šs$ÆÑÌç2"ýÖÌOƒ!Uqɱ髻Æí²\‚^UͰk‘Æè¸åÍ˨Ÿ†î¸æ:³lå¹ß•æœ"– ,ÍAË™×?Ôåà‚*¿»½ë20+×l]L†Éœsä¿É™&ÜHyq …¬ù[„ ãœ4ÌÑ®˜ãæªf[wñ0€³Ã$'Ú6§s–Ž&ZÌô!÷ €Æ¥ø“@¬”#“9H ¨Æ«r"¨5‘ÒÒç?rôëqSOñOÃÐU›ŒÑÕqpýB†À‰ÑÐÈ~ðØŒI”¹é#®çiÓ¶uˆ¶mÓ§ìÎÀPg)Ñág€ìÖǨÝë0 ønùfœI9ÌoæýN :þj´ºWr,Q×o»êa*ЋdPG†—³”8ƒ;=§kB5•“Žo–n†v4'©ûh`ŸÄËE8; ¤ Jšg%x¶‚Æ­xVþ°SÎ}(ˆKÛÌË‚iA´BJgœ|Sa\¹}ÕT#ùauÜ]W ‘´al÷aÜ£tÓ ³R K~  >`ÑÝaƒ} ¸ Ê/´ìÿvD@crÕvgEÂÍç©4ÿùŒšL$ü ˜±nendstream endobj 774 0 obj << /Type /Page /Contents 775 0 R /Resources 773 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 760 0 R >> endobj 773 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 778 0 obj << /Length 849 /Filter /FlateDecode >> stream xÚ½VÛnÓ@}÷WXâ%~ðvgön¥\T©—¼• å²i-9vqJÿžµ×ÛÚQ žvâ¬gÎ93šãytôelˆ‘î˜obCc%Œçëó™!\%) :{o¯Ï^gÙÚ6‹¼È²|÷uQçÍÕÖ6ù*¹˜Ÿ½WŒd1ípžû+£o%È ïoìË]~YÚµÿZQ•—¨.5.´é_yù(èç¦Þ¯9O ÎìöºX4Ö?ùd7¶N@Ïl¹r¤Pl†ÀZÔèÍ<Bcè8Š&!^m£oÑù×O#J˜Ñ"¾q?¨+×`¼8²ð£ˆ>GïpR”‘Ž{úÆ%þÑU£†ô¥¿Ã¿àC$D$ ñP€Á„£Ô 0Í Œq Æ(HðKØ A Úk¶oÅ)£ÚÉÉã1 uwý—úø\p uÊ?îIŠŠ0-ă*$í}ÔEùΟcÖ\Ží×%rÞ½ý,/WÅ~m'¼'QFã˜ÏQ>Š(®CÙ#ÈÕ 6DJ¦™b„è˜LAA ÊÕʧF÷”.Úü;’>ì—Eˆ_5M/¤³}cw#†+‡æÌÁ¨ô&û‚(’T8nv=nËÓ²ª ­ªr×Lµh"„½ö=Çn±ïÅ{á'¾®Œ!”Á¸²ÖðzËŸt^#áÄîVu~ÝäU9‘ŒÓ]q†²§ ~H;S„**‚Ž“CÄùQßI½ ‘?‚‚)ô¿‚zì›qc vw€›1)Ok»É˼£ßßnzœ¼´>’ÆŸÕÆŸ'^øÂ¨È”#è„°w™Ý.Ý(ð>X4‹>ªVû­-[ÓþŽ'<⻼Á[oð¿ÑAJAþG £I“eµÞÈRjTHèÜ÷üE?‘%%‚Ë1o ¯èŸÿÐXó«þòz¤§Gªj4WÁ¥¡ÛøfÑ?¼´¥­]¿÷ÞÞÔÕ6¼gRQT7¹'¼K!XÏ¥Ð&œuÜOHA„áâ~BNJkî·‘‰ÿ`‹Ðn]Æž¾D €Â!ÝÎÀtX!€¸ýKvi½»g¦5EKìÝ6 sš€pÖô?„?@d‚faûC è£M‚bVÕƒvñáò64å[§F(ÿ'°Û¡5endstream endobj 777 0 obj << /Type /Page /Contents 778 0 R /Resources 776 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 779 0 R >> endobj 776 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F54 214 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 782 0 obj << /Length 867 /Filter /FlateDecode >> stream xÚ½VMÛ6½ëWèÅ:ˆá ¿…4@“mZ, m|Û. Ù¦×di+ÉÝæß‡©]ÉëdÑ(| )“oÞ¼éí:yõejˆ‘nXïSCS%L×»›ÏrÔ qõ«½ÿðÎ-]½«Ë¾Ó«v{:Úf(‡ªm²Ûõuòó:”ºŒhBÁ$¤ÛcòwrsKÓ]BÓë„f´HÜ‚0Óc‘M‹:ù˜üþˆ“; |Žô6N—81Gˆ Ä á:ËRˆÅÎeUEÕÿUvÕp8Ú¡ÚzÆ¯Þ >GBD¢Ðs‘^‡=ËÛ@LÆ-§¦¯î»ËrFåª?´Ýp Ø"¥ÑñЛ—q?Ýi;Ôufpe¹?•º'†©Xšƒ"†¡÷ß×å`C^þ°{Ûe W¶ÙÚHg‰Î™SÈ=ÉQ¦…8‹C:ÝBã´êøαô×Kä|<þCÕlëÓ.^0»N0¢Œ>“tAHŵŠ9"‡ €Ú8-Ù-!F-s@¨vÁ2©ÑQÔÒóUúí´©§ùOÃÐU› éê4ØþC`Äp¥œdH\F‚ÏþDY.¼\×ë´iÛ:̶mÓìf` ‰Î!€2pêÖ§˜½ÃàÒo/GÆÊ`™÷<èú«Ñî>—c™Ú~ÛU÷S‘ž‘qyDœ¡lÄì18é¹ìLªèäÏ×o.Eæ ©5Ä-}´°'ñr!.îÁ‰úYÎvP‚ÌðgUè/›UáUº CŽKã,Kµ ¨ U¾³8®ì¾jª1aw<]W 3nÂØîøwé›nX”¹ä zÁ ½ðÁ7®'”Cù…ÖýuWÄG‹{œ`ñoÉ0ºvG)Èÿ#Å Ô±ÙLÎ*Š—ªoa) 5jbtÊþ6¶eÉ àKå^N½ ÿ%õçÖZâæÝ"£©íÂd8L>JÒÏÊøðÎ6¶s5í½ïÚãtÎNHuÝ>TÍÝ#…É|Ž‚'\Œ> endobj 780 0 obj << /Font << /F26 16 0 R /F54 214 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 785 0 obj << /Length 973 /Filter /FlateDecode >> stream xÚ­VÙn›@}ç+x´¥2†‡>´YÚH•ºX}I¢ ã!FÅàbì´ß; »4ê¦(bß¹Û9s./Áó+*C…”„Ç¢cI „†‹ÕíL!®æxöfwy˜<ÓuwÝ4+÷òU•ívnùAº“ r ¯$£tF‰˜ß/n‚ËE@B ÄF1L’0ß_ƒÛ{®Þ1•ˆð6¥h¸ 8eý¦ >ï?8ŠÆž^úbGŒKÚWC¡¸x\ ÁøO«ž_ :êĦ1b‰Ö³þ–m¶”-ÁwnÝØ3&‚”Ôb q¬{èÝ~Y•¹‹÷Vo–Ю¯öuÞ•M½›ˆKR<Ž!:E KW×¥b ½lšjˆ|<Å1J¸L cÞlu›uM{‡†⢚]A;·}­·o_¥éµ®‡F9DŽӑA9Ä{¾Ã˜M…G`¼ž1;t6°5å4LÀTrc‘£XqÀpTœÛ3¹É`­íã‹Ë¯[—*}0M~v[£Æ·ò°­õ4SÇ€EÄ12‰Ž âYr¡»¬¬´§Ç…Þåm¹5Ðü‚ŽÂì F+#I}aú`ó66;]i »Ûn[½*ó¬Ór¡ð¢ÕݾNØ_»vï]—…³ö/F.NÈ¿?“ Ø›ÀvÝt}ÈDz[ûà 5˜($%‹=Œ/¦ÉSÀÑYìœ]ëOÎVŽm¡ÁÀ`ÅKe.¤ËçÒµm—NЈ!°”pT!šÐxÜçÏK?ö}DyŽ&’(Á Uv!wøBe]ÛŸùVeíûJ}9oxQöèS˜ÿ¤X¾QÏ·)ðÜkòýÜgGöôæŒ}ÎëÀc+ S*ž¦ÿQ h"äþG1àãþLjƒ{-8tµ@³$‘tpÓ Å)×J`ºx£Û²6HÝ[ŠGŒH$ £Nz’ƒ€|é/K¹ûé¶F4ÌâT4NX‹Ádà—#νbüeå?SÆûŒeÇØs‘²³ÐÌAß³í3÷³ü¤é6k»2‡V|^ꇲî)åͳzu~.:•$7Í~r¦ëUïê,?좗¾ÕÉ%9õ¹c§x™_<èÚ\í3,Úfs&«ESUÍcY?L¥l:káÍ瑸Øù<Ás`“HTžbÅÄGÌIFû÷o¨‘£þJÂ'(³ÿ‚"ˆðØQ÷úØ'£ ½:-æŠÎÌD2›3Ž÷þáD¤§> endobj 783 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 791 0 obj << /Length 921 /Filter /FlateDecode >> stream xÚ­VMoÛ8½ëWØ‹t0KR$EÅÚ4mèn}KrPdº& S^Yn’¿Ã/GvU´‹-‚@Cz8|3óÉ7«ìÕ5¹BJÀgµÉÎkA§„æ«õmA‰(TI‹zÿé- 8.ÞvÍáÌ«¾=î´›Ñô¶¼_ÝdïVÉ1ü׈W‚äí.û'»½Çù:ÃùM†Q¥$Ïa€QŠæ»ŒÑ* ºìKö×)Î-¦‘ÞDà„¡Š šSH¤Àâ¸\ŒqññpmlÓ}Œú;üëJ" m[íð¿ºætRؘ֨’œû°ÛvÇuô$dâÉ+T+ xÇ×3±jT3YG‡QF_Ò£|õÐv&*! 'iÕŸÁÅ¥Nâܧ¾ ’ ¬ ô¢ªËû~>>t¦ i~Ò»ÈÓÛ×GÛºý3I…«!¥¨Â"ÔòŽR^.8”ò¡ï»‚—U #É„Œû½K¨î0ÇðO®nÔ¦cúÔ—Ë÷Ú~. .ša4m—Êʦˆ„„òŸ‚ßa\Í!@J’Tû½ßÕ;1šKp,ÖI!,© 0æ½=é0Çȳ‰3Û8ᡲ¨~rÝë¸Òö1³µn›çÙ6U°;P$_0 ­€v%¢"©z¥ÇÆtzµ¥í`öIY3Ì„n)\>m d?èµi=ÙÝ𔟄üœåòó3Û4a÷Ç1˜Û&ºÛ>|CNÞü¦‡Q?<â ` ÇÆA¦Ô»§f·ïôa9Ó2 -ÀB@/¢’Ö?REÛ"cÑL FÁu ®XPè•Þk|Í<Þ&æÔ¥,|ûXéâ/sšDs­ÄçJó=¤±‡sRûÁYyQ‘‹Ž†¨'nxíù8Óm¹ü½r£ áô¿”;?ÉX\ö?“ã‹Ï‚$%<:Ýë:tpI¸ˆÎ ò«LvYžTêéëU=Ní6ƒª“ ƒ_àOýŸùs¹‰¿uÜ“${áò]mOø§Ä ›öCÊ:é¾ ·š3“€¿jë¸ůúÝE±6}×õÆ~=!H4.5¯Ýx1\hÍ_ ßwŸÀQÀ¥úÉEwñPð" Uõÿß “@é™ àYPI­>IÔ¬ "¬áû—"9­$¹®JE‹tÜ”„Çø —/YFT¬MIyÑåóá9OÏИT„g«o¨endstream endobj 790 0 obj << /Type /Page /Contents 791 0 R /Resources 789 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 779 0 R >> endobj 789 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 794 0 obj << /Length 994 /Filter /FlateDecode >> stream xÚ­VYoã6~ׯÐ XqyK4Š>l®&@Ðc¾$A!ËtB@–\INvÿýÙ’£Û†ÁCÃ!ç›ßðÓ*úxMe¬’Ь¶±Âq& ”ÐxµyX($H’R·ÝMÓl®^‚ºîýäEUtïþ®·ºMHK S’Qº $KžVwÑÕ*"1†q;ˆ &I\¢‡'o"ßE1•‹ø ¥h¼‹8eàŠ>G¿ý¤à({ú‚!1.é …à²q0ã „ðñZÐN°7ÍË…pžÞ$©Ǧömÿ¢CGw}g=Ø5$C’rîÖü`ê²:l‚wBFÞC™Ê!pgøãÌþÊxžƒ!½Ì¸ËÀç2Xÿä-,R)!R)a Q!dœ2†8V¹³ýõ°®Lé!¹×»5`âúׇºìMSw3G# )žeE Ký#¥"Ià±nšêx‚Ó*ŽQÎeÎØìu[ôMûˆ†  •°iH×Ïz±\Þèú”G<Gbáàùc6·=“p±xíÝÆsXQ¢Pž15Åʲ üºÔ}a*K {ÒKÝ•­Ù[Äþ†K€™Âì_sI¿:[›NWÚåÆ÷­Þ˜²è5‚“Q˜huh!qÞa{®Íöl¯‘KÀ¢ÖÇ Àö/M?lùfú—°ùj†¹BR²lÊÆseTò`!°wv£ÿð¶rl pÍË߸-°‹®¾»}¥»åL®)$K`:¤‘ævXh¡PY"SHl–O³·½%$ úîó=hÆûÉCÕØÿ¢Ù=ý\Ô–„:»Ôa™ŠŠ)¢Ÿ{¯?ÅîöïÍ@å˜C0‡Ž@Bq/G—zkjs"AY™:d—pß6!í[ «ïMÄÍñÏðžÞωD¸MyØÓât &Y9»Þëñ>9Õ˜«CËåÿ¨4Hò#óNZÁ§ÚË¡ ©xígb°$‘ôèfБ)Ë Ê)ÁèÁÔ6;OžŒH$,—'˜|GZå÷§õ\C\ɳå.Üóýߎ¡s€ï‹¶7%\®?×úÙÔîÁÜñ{º.SŒwÎt½\ÏG¿”i3a’³iù2áø¥/æNŠÐyÖµåÊ ¯Û¶Ù©Þ¶©ªæÍÔÏsG¶h:Aոѭs5n† <äê¬Vúz}ö>Êá!DûïÏ£‘£áu$á5bGP°xæð愽0õ]%Š.l‘°ƒ;[á‹ð K—<ó#Š õ½mBÅ¢iG×Ïw×_=øòò1„ÿ Þ±³endstream endobj 793 0 obj << /Type /Page /Contents 794 0 R /Resources 792 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 779 0 R >> endobj 792 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 797 0 obj << /Length 986 /Filter /FlateDecode >> stream xÚ­VËnÛFÝó+ˆ¬D Ï›3Zt‘øÑ0¶B7¶PÔÈ&@‘*EÙñßçÎK¦d:mÂ08Cݹ¯sî~\$g—T¦i Å:Õ8-$A‚š.V·3JT–SEýf¶7Ÿ`#ðìSSîv~yÞUûi‡r¨»6»_\'‹„¤þˆó& $˜$iµIþInïqºJpz`Ä´é3l0"ZÓt“pÊâ¦IþJþ8øÉÁQ>öô1$N8b\Ò˜9…B Ÿ¸†²œ`Œg¿ï®ºnuñ”<ƒLo^>¿ uù¦”?ÍÚôQ`T[ÊÙ¥ £Þ@´@L á"˜¯åfÛ˜,—£rnÜ›AZ1†8ÖÊú¼_6uåãݘͺõå¾­lwq CšD§ˆaé뻣Td¹€ÐË®k‘_OqŒ— °æÝÖôåÐõwX`ø'>ªÝUtð[‡ð|~eÚC³¼cÂÇéHŒ <ßa̦Â#0aÁÆdDؙ̞rš*0•ÜšæDaTh8žšsw¦7þo4C¿7~U¯ýÓvC ù\!ø"ÀLF*¤dE@ð×i^ ô–ŽÖÙ•ùÛÛʱ-4È«™r,æBú|.|Ûvó Qà–ŽjD-"Ûhwºý%Ž2ª*4‘ À.¨v ¡¹ŸÛs³®Ûúµõeh_S·¡§’øgš½®#²ïþîÔ;–E9šûw´ô¤#'œó^ìu:àü¼#xóùÿ¨ ¤°ÀŠ¿Q>F @ô8ˆÀÓ0Q4MIn¢B3 E‰F·uk±ºwÏ™Pàäè¨7ÿ2>£©©ƒÑX9ލ‹Á«dàž#΃lüoåOñ®¼ò?Жÿ(mOõÉÝ€öö =ÙþâŸcJ@ãæómÙu ø²4uùÌËvuz.?V#‡½qfÚUtu’ŸGuUou4)¾Ú®Ò!õ:ìÅ® ‹ÓÚ0!ÃußmNuÝ5M÷\·S)Ûž:ÐG·òH[Ü­œàNd„±Ÿÿn9ŠŸM>“@ŠÝ3¤4\ÔA„ž¬W¯=²‚åi‘i:‹÷ðµ½~÷ááDÌžóÂï(&Ô¯Ö³®É‹_._¢î}}\b¾Ê]¸øendstream endobj 796 0 obj << /Type /Page /Contents 797 0 R /Resources 795 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 779 0 R >> endobj 795 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 800 0 obj << /Length 996 /Filter /FlateDecode >> stream xÚ­VKoÛF¾óWð(´Ù÷C(zH§1ÀmÕ\l£ ©•E€"U’ª“ŸÙ—D9¬í6…ah—œ÷÷ÍpÞ®²7—Tæ ?«Mnp®$A‚š¯Ö73ƒ›/¨À³ýõ¶Ú&ÜÞÕE߇ãovc»9Ñ3Û”ilðŒ3¿[]eïWÉ1üoZ(°'I^²›;œ¯3œ_e1£EþŒˆ14ßeœ²t©³ß³_v`h1¶ô6fA8b\Ò”…¬Ô8 ‚ñ«Ó€Øß\ :ª 8¥ 1-„7i¿»} ùJ0Zz3^ÇÅA‚F%ÆÇF{¥ëÃ}]•Áß'»»‡þ|yhÊ¡j›~Â/aÈp¥À;E ËÐ-¥b¾àú¾më£ç“ÇHs©!'ÞîmW mw‹†¼º[ N‡pýÅî?½[.?ØæzNð¬è†ª¬c%G$5Ôáhüc62š°(³÷^½§¹!ÉЂhƒ°¦N À¹—îìp蚈ËÐl8U›ødøPù)Ô õŠð³¡ýX ÛpÚµMÆŠø–àdõsò\4ýßs"f¶ëmRÜÙf8ì¦À^0ÈEÔ L”Z¹‡Hdß…Šª¶ë`ìÂöeWíòÿ@8ÀÞ`ö áœQHÒXºaëòw"ûή«²¢Æ±¦îjêN®¦þÉ6=hö‡!Z8ÖÕ¿ˆºE|ëtNFRL¾,ÄÇTBź¢NqEËåÿ;ب’ˆÑãÐ: 6>®½B>+q®½4øNsïœ`iJoªÆAtç›gÁ0HcgÅxmÿº,_Û·§> ó0*âÛ'´?uuø…é&c01žŒg-‚!˜–ÚüÛþ?Ô°'ÄIüŠö`ÿ­=žNa¿K¸="ÍâI©UÂl}ÖÁsÛ%<€aæàŠxx° Å}P¼V×îžðaÓÖuûAOMf—Ÿ`´eŒæ‰ß2¾‡‡ž`ÄÏã2±ÿiXôc?¾þ ¥íO¶ÇtZþ"\â|8ÕÈMƒ4ŒVsCgiµ¸r_ùC|#â> –/¹ 7Š §ÍœŠYÛfK8ÞMSîËWÀ%¥ÿ ¨Ðî˜endstream endobj 799 0 obj << /Type /Page /Contents 800 0 R /Resources 798 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 801 0 R >> endobj 798 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 804 0 obj << /Length 901 /Filter /FlateDecode >> stream xÚ½VKoÛ8¾ëWè(Äò-ÒÇ$M· t÷” E¦k²ä•äMòï;|HQ\¥Y´‹E`hÈ g¾™ùfȳuôî’ÊX#-á³ÞÆǹ$HPBãõæ&¡§UDÑäsøt “óºè{/^´åqoš¡ª¶IïÖWÑûuDb ÄY9L’¸ÜGG7w8ÞD8¾Š0bZ‰ø­i¼8e㢎®£?';Êæ–ÎpÂã’ŽÈ)’{à žfcœ|쯞¹¬š¢þÿ³5]JTbšÒXüï.%Ó1%„3k‹ý¡6i&Ápé̸3 AZ1†8ÖÊú|¼¯«Òûûdö÷àÐɗǦ´iëü†4ÏsðNÃÒuK©H3®ïÛ¶ž1‘À™ 3Um6ä¦/»ê0R|"P-ÙO(bµHŽ$ Á»ª÷*‡Îlªê—SìÂgÁJ6 ng7n4‡ãàÅ]Ô›Ö}äNüÇtƒyô¨å Ô€6,¿¸€®² Þ{èýj¡° …¥„(4¢ŠæóXÿúÚWÍ·ƒ§[Ê-ä R &lÑAšûŽº0Ûª©\jà"UWMˆ”çþÛ†l«1»o¹ÿiWºzÓP略|eÀäå¤úÞêÄ#×§ÎÎ| ­VÿmkRh'‰adŸ¶&Ÿç?G<Uoµîsç¾K)JDPº©[¦;GðŒÁÌRp{¼LÈ¿å³rêhGb×ÑžÖÜׯp™_Ž8Wòÿã²v·ƒäm* ükT>îÖ²7Ö8CµÖ»)•s{Ïm7`D~V9ñaœ(ßLc¡ØAèNuíþ¤nÛ¶®Û=!pçŠÏ Üg'½ïî³ËC žBé@²W3³ðÚP𬠌ýþccfh|kHx[0eñ1à·ÒÐ*9A„çžož3e{wëTÓd¼Ê®R"’cøð"V¯ìŒ³+ ]ì¥mJEÒv³IàÅû§q.=>AuÆ$| ·ˆ–endstream endobj 803 0 obj << /Type /Page /Contents 804 0 R /Resources 802 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 801 0 R >> endobj 802 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 807 0 obj << /Length 865 /Filter /FlateDecode >> stream xÚ½VÛnÛ0 }÷Wø1ÁUwKyìu-P Û2ä¡- ÇQZŽÙÚþý¨‹skšÛ0…)…"yxHJÇ£èèœÊX#-á3šÅlj$HPBãÑô¶§‘ý¸wÙŒŽ«¦*ýò¤H›Æ‹ßÍÌÔ}¢z¦Ì l%˜ñ¥¤?ºŠÎF‰1üg[$H0IâlýŠnïq^¶¾Ì”ehOž •`Â’ ‚ÐÜwÒ©™åeîRëÃ Š¼ €÷ß*¤`–wP?r°ß4ð½¯÷U¶œ›²M×ìoåe‡}ouUG®?·Gèpøoû‘* ÍNÞö#ßL~‚8ŒÃÐŽõëº]·gAŠ”nóÒrtïª{ÀàGBd²Ï³Ey°ˆß+`æüa©ôÿ+`í®ÆÆ'ê7ù³úÝ×S78v´|ÊG]N§[…ë=Wu—ø.Á~@9ñ9 £)m(vú¹Su5ßákVEõ A¯"èÚ "°øáòÚixwy½¥‡ŸhćyÙó®Pð€ Œýý³bÃP÷ªðŠ`ª{T@‰óDº/Ö9²ÝÚM‹Q_Ó^wc]õ‰è-Ã/á%EÄPà!OüŠbB½4ëSÑ«êÞ÷âäµC/¯ÀKÿ7ã Åendstream endobj 806 0 obj << /Type /Page /Contents 807 0 R /Resources 805 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 801 0 R >> endobj 805 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 810 0 obj << /Length 1087 /Filter /FlateDecode >> stream xÚÍW[oÛ6}÷¯Ð: šåR° Xsi´@¶ùa@[ ²DÇZeËÑ%—¿"%ËŽœÆÍÐ ~I“‡ç|çãíÍtôúœJ/D¡„Ïtî…ØS’ A õ¦ÉGŸR:žÐ€Ô§×N "°’Eei‹§y\/õªŠª4_?O/FgÓñ0üHƒ&L/^Ž®G?c/aïb„ áÝB#†Ô[Ž8em%ý1ú­Ã™Ð¤ôÆ'1.iËœ‚e‰‡HÈñ„`Œ-ñ££Ëdþëj>¦ÂϨø]Ïu1&¯W±6*^Ÿ Ú LOâTXðéÂu’ýN”¡`Ðô±Óå`\¡€båú}ÂÛN÷: P¢¤ë³F0!"Œ ×| 2žH[a¦XVy¡]ùòôÜRàU,Ç`oHp& IÊyƒùcºŠ³:qRáß;†T´R`§âÚŽZ|êg °– PˆÆÚ !|Ì›0†$¬ —õ,KckཛྷƒMù¼^ÅF[9@‹€G\)°“"ÎB륢›¶× Ü’ÐËã[òf$§^#%oFrD£À[ Ìi=ꬲƒc`Wu î ÌlÈIN88˜‰ ͉0FnqQ¬á’® ¶¢~J^™Bè»æ§´i ü$‡iÛxG†‡z^´­ÛI6Ô_Ó홡%™ÿ•&ä÷þ0  . Öd“äM_z|PT£,³½‰²Z»Õ|öçÉÙåÔ–[‰VI¿•Úʲ.-3íþ.ò1þMšèd¿?¢õ‡ï¤8·éÜHeÝbgxp`±ìÉ4P/%Àɘsùhj¸Á›ô³Å—y‘^í‰x'³ñ8_ßÄâiIl˜ØO¾ÖEÇOä_,ÊCè/£/c†}gtÔâ¦Ã%ÜŒ ðM]N•·ÑúÎ/ój¡‹C¨–·¿­nMJ:0‡n¦ßLÙ"\"¥D°sŒlM@:Á»sŒ4NÌþÖqUÎU$™Ü™Yžg;vöüìÙ÷0L›ùm·§¦¥ ÆB7Ÿ/v¼;ôueiuØrÞ#æ‡ÿXLº:@ή7vs6(í¶Øm0‡3ýD7MfÖE;>q«+Ÿ·ø˜mÖQQÙ›â·ó¦ß‡w©3ù·hoDÏ þþÝ/ÍMÎ2ìbòգ瓧߇üø ÷îf(wÏû¼ˆš[å6ՙޖî‘›gPíjqT©vf÷û×AGëŪ„{Ç‹ÍIqÐfµ¥šþT¬¢è**®Ú48Döcf—q”é.Ëöˆßy¦ð%Œ=ÿ•Új©žr,0*<ƒ0OD¸²—··zeN•6lmx¦ãúµ“tavªÚý#쇈#¸²5Š mO s¹M­÷hoý8Íïî¯t÷VÿÙîÌendstream endobj 809 0 obj << /Type /Page /Contents 810 0 R /Resources 808 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 801 0 R >> endobj 808 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 813 0 obj << /Length 1068 /Filter /FlateDecode >> stream xÚÍXÝoÛ6×_!ô¡“Š!)’’²§%éW°Ífì¥- Æ¢Z²åIr–ì¯ßñË–=yKb(üÀ£LÝÝïwwäQÓàì aŽrô s¦‚ N §Å§(G\LbÊqôN-?\žŸ,Ê÷‹rByÔØç—µì:+þ¦JÕNH©ÅLÁ#Ɖ(M&_¦×Áëi@B ?bŒðñDp6þ >}Áaàð:À(É3þŒHžÓp0šøIüܬõÄ (jºÐx 3À#˜ÆChŽpšga BžZP7q7“µ²N¯:UX©ZØQÝÉz%ûªqó¦´ãÇ«7?MR9´Ÿ1Çþ•·ê˜¤‘î0SŠ# „D{ Œ Ÿ)哘cÍêÖû²,J²Q®5ÚÙ¬Yt½Õ½…n­šp„±HŒjpsà`A^ÙÙ½n6zc÷—ST§à¬H€xë.ÆÉˆ}†NS·¦Ôöî÷Ò@0AUåÀãzèÍÃmÓÔ.»¯w‚#YWÅÁYšx¤Úª|°/÷ßeï%åó¿ë¥­\«½—ðÈÎÍ"þ[µ_YjÇšvnËäéYo€5W§ú¯©š³å„—•þÈèƒJ¯'Ò oV­‡V¨íÒ†E´õ—²íŠTò P‹ÅÑ1Aqž,X¿¾ûe]¶ë‡Þø©ƒe&`v¢€ÝÇj¸á¾,Ÿ®²•³Ÿ“·Jέ4oæjѯÜl&Û¶ò‡ííÃþ`®½}±QÕU…z±qòPJèLÉHléeûÍÛ:.'¦'Ú:4df§NÖu«øOV&c}Hd°ð9}ų¶CD$> endobj 811 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F47 132 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 816 0 obj << /Length 1255 /Filter /FlateDecode >> stream xÚ½X[oÛ6~÷¯úÐÙ@Eó"Jd†>,×6X3†iP(•h-U—ÌٯߑH*–­¤q LR¢>žó«t¸˜ÌO©ïH$}‰#±øqJ¨³ˆ¯¦”z3— "èô“*¾Á‚ãéQV•žçQ³T«:¬Ó|5»^œONâ`ø‘ˆ3Ÿ8Ñrò}rux‚ó FL îü Œˆ”ÔYN<Êì"›ü1¹ìq\r7‘[Á9Ýœ`†¤N@áb ¥ÿJ)Ÿ¹ãiºªg®“"N¾¥1ýU¯æs=þþé·‹ãS=¯”ÙšÆzÌ{#ÊWæZ–5èÛÍ¿bŽÿUe®W7zŒU6Y 7IK èáRaLÅ–hqÞÜdJ?´&[‚%euÌ$¹QáRÏ–yK~cVQX–©Š‡‚$iYÕ©[qF’ 鸄À„¾@“wàU«w½nÿÈ ô o¯ÇýÏ+R‡å­µåëU©¢0Sà[ ]ºÝ ½h*+lj4T÷aÖ„»Ð/Õ£ÛØígêÏýÜxÛUzî€còÁº”™\î}}þjO ;'¸ÄD£Ë0ò=c•Ï«¢©wã'ÉÂû¼)éóXU6þˆž¼·kª'aidTëBEµå¾6˜ß(ã2õ²’Ÿ=Â[´ÃN4p­{p@°We”Q`§a–¬[=|Ô%¨‡ O=¯ƒYد¼jhýÖjF…Þ“æiucC«=w~J¼äG¥@"€´‰÷c¦w R¤‡¤ ÌìIZ®[ƒiEÀP óa õ =‘!«-Ù{ÆAyájýÝœåY³|Œ’ÛÜÕuq0ŸÏ‹2ÿˆ©Ð*’bÁß<» Ã9bU(]ÅÊPäo*/}Ö9¾'=ÙŸ¬Ãe‘©ê@ïBØ'±ïƒ$QAƒîZUõ(}(Šà 4Â1ÔDx޶™Ü‚1Íâ±JÒUú˜ B£{–® !,zJ’Ú8¼ˆ“Ï«$Gw¨—²7PÒRÅp¨œíAq? O3×eÕy©kõ{S²ÕðòN ߢB§ Á…Ø8sJ×h1g”OóÁBÑ:›MÛ…; ˆùÂúåUºjY¹6iÄÞH`Jki½:#ùcê=¶õVæe°É Ý—•¶1éÀ½!)ò}Ï’’’Z³cav|ЈO I„¥´Xô…X¦ìÂ1PrºÙ½“ÍÌ^…GßïûÜ îWü´º.ó|ðe {i‹—êýŒ…­ºË•1ä‰Þ±>ޤ@Ä—v€ {EBÑÿA¨§R A‚>ži$¼] 3 ” ÚvÎV³“¿ŽN.›¯#Eý[ß­,[êl ‡Bvýhüº|E˜ÿ† ‹=“°F: Bá†yO4ÃãéÄÙ³O1àaˆq x7$ÁÐ@?¦ËÇoÈ–·oz߹ؕ+[Žw#†B¿,À y™ÞŽG|ä〿ÞÛ)‡®F‚edFyñðFE•ðÒ¾õ¹lÌc?ÿµ`èÐ|åð!E0Ñå ½®„ D#|Ú˜;\„p|àzE1¡z¦­nz¬'íû¬n»Ö·ªÿfòh¿aendstream endobj 815 0 obj << /Type /Page /Contents 816 0 R /Resources 814 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 801 0 R >> endobj 814 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 819 0 obj << /Length 981 /Filter /FlateDecode >> stream xÚÝWÝoÛ6×_¡½60±<Š”D£yi³l P Ýü–…"QµP[r%;÷×ï$’ŠlˉÜf/CˆçûøýŽwäÛ¹óúŠ®$2ÀϤٟE6ebRêõw˸®õð/•©j ÑD‰Â%.˜0&¦·ókç·¹.Å?hˆ?7Y9ßœ›[ê¦u¯J| ÷;N()™»r8óídéüí|ìôx¨Èëkzkâ Rfb_øñ§PJ'ïÕên}¿ÚÉ&/ =»,“íJ›¸]B÷`B»ŒŸJÞÓJÀèÍ‹Í)Ìf³<½ù‰ Šÿf–”E½Ñ–ÐñGK 1ÉÖÒM^,óBÝ6’®×moD+“-ãûr‹q´Ñ›*=*3ýÍò -µÃu\mt|MD’€¡²FÇ¥Êò"×€4’±ùEc\Bq¨vivt¸%Y}Í«6IšIµôÝN VåZUñ¦¬4}(BŸø\JÅ›7Cp Âe(Œˆ…øWDalZ#V‚ ìA‘ˆ‡Üõ|ŸP`QŸl6ŽlöŸ‘ÍÇ]+´•žf›e;<—mÿŶ-we¹|‚îúóýÐô2OÏá!d9È{·¹Çû½ªòÌ€¹YXÂ6 ÃJŽ†â¶ ë¼ÀR†KzV”…÷ªJ+™•Õª+tç§£l\n×P tØšÚRúËÅ#ÌÜvzÔ¤^à@JÂ8 Ÿ½nsƒd¡’¯&æ²²pªo[ä³B3.vˆy²È‹/zaezQ3þ¢Š&À€ƒ6šßMo3÷#ûàšO%›lM\OAL¶fG舙 3êÃdÒ#%U/}ô°¹hê—ÜÃû© ÿ_œ«Ëpendstream endobj 818 0 obj << /Type /Page /Contents 819 0 R /Resources 817 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 820 0 R >> endobj 817 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 823 0 obj << /Length 856 /Filter /FlateDecode >> stream xÚåXmOÛ0þž_‘O[#-Æç—Ø®iÀ€¡M‚­Ú†¦Ð8[¤’°¦eðïçÄNIKº5lÒ4Böé¬{{žœ{Þy[‡$òR‘YF©¯°/"@œñGÉù€(‰IÇúúý¾8ìOâ²´Ûƒb<¿Òù,žeE\ŒN¼7#|lþ ¶Æâ4|å}÷Î/°ŸxØ?ñ0¢Jrÿ‡0¥ˆå1Baâ}ôÎvBc(l[Ú«çd%pbDaãþ S=ÕùX'Aa<¸¼³kÄpX\ëi<+¦UÀ[‡-C (¢L)ã¸2´½mÏ,9Ž˜ÜùŒ96ÿðʺˆsç³q²³Óœ@ÖÖRÅCI&˜R@DHQUˆGˆ"„€­¤˜_N´-¹Ëá4Ißæi@ø ¯“”XmãËJã"/g“aÂepžå“,×ÕA?lt!¡H)Lë#§‡6«Ê~–—ìm³9³>«mèT®¸¬]80yq‹ÊaÚCJugÒÊáí¢z¦^„P³("ŒÕ§tšåYÍA ÂÌ®UZv§\tEj×4›8-d¾Y¸±LŸ“”cR–Ï~I£/Yý˜ˆ àk¨ä”K\zwüzA§R;¤²dŸiéT×ñtVä+èlŠ»PÏwÀ›ß³…óœÈ5À;eàKm<&yùÌ¿x€ /rOt LôF‘2ͽýF¹„þYX;² Î˦¼™PßÄ“y|h› ìeÙº{œúHº¿úsC> endobj 821 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 826 0 obj << /Length 971 /Filter /FlateDecode >> stream xÚå˜KÛ6€ïúB‰T ‡âC4M¶›dÑIjô²]Z‹JTØ’+ÉYçß—I[öÊÅzêÂ’òh8R¯¦ÞóKÂ}‰$×Í4÷%öÄš]1F„áà­Zþöz2yŸåïÊ<$,¨Ìó×ó´iL÷£ÊUB¨r¦ô#Ê8„ˆðfzåý2õÀÇúý$L sðg ïoïúû™‡ý+£X&̿ӌ@Jâ/EŽ“# Â,‰9b—œQ—šÂf_}Mç«tKƒK¹vøYcºËNüúÙ¸Ÿü‡”0|f\Ñ®äQ\­áqDQ0ñ#MœèE‚íEyÎîs«Ò…é-ª…*Û•ÍÒº.öw¿¼mH{²UÔ™zrn˜Ÿó‰‰àãp#ÿ_ÜF ã–·6­?»¹÷ð™œsá$ðpâîÒå–·{÷âQÒè:&ݵªj¿¨zì ¥íÒ7´pcQ.ùn½Á]ÌÛ»ÊhäC,FB&®ŽÛlŽ] …žÌÃÖ> endobj 824 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 829 0 obj << /Length 632 /Filter /FlateDecode >> stream xÚÍU]o›0}çWX}i¸¾þµ/m×m•*탷®4˜‰@FˆÒþûÙØ¤dʦNÛ¤)Š|¯ìœ{îññÍEœ^Ó)¬³äR¥ `A¢¼¼ )•QL%H¾×ëÛK“^6Åfã«n±]év(†ºk£ûü&x›€ˆùÀˆ&R,Xh± ¾w÷•A7ÁLIv&!”¢hpʦ¤ ¾Ÿö8±ŠçHG‰S“¦Ž·Â"Á SÅ@ ËnûÐhGyl$Ë>–Õ‡¶Š¨»,{·÷•b¾>[tíf°M^ :+F` Lr¶Ø]Ý6u«ïíIï7cʰR„gª¾XŒʼn¡ÓUn}ÐÅÊE«Îª¸õÙ¢èûZ—þг[«º7lÆp]ôÄe)Ÿ¼mêRŸŒ-X6F7HqB9Y\éªnë…dzô]$Ù!ênüŽÓ«ÃK|ˆìúû¬+Ýëvñ#i/v·Ö}1t½`&&¤ 3®”óììˆà 0W©ðG¦Kzã›h}Í©Èùùt;¬§Ä %–<å(f€¹)àöZÇÐæö·³Ñ†OùË Eÿ¨‡_š†¿Ö4âwMÃþwÓÌm2#_úÎʃÁçÚ6TÇ`XÖ-nRÚpWøàQ·¶äÔtÕw«égzjšnW·{Ñ+!Üh³âfã·ð45¶X(.\Ÿ”Š#®7SBNzÍœŒ—G¦¶4ãûó¡=šfvb†´ñºáČݥ†RÀÀÓd¤öîEû ¬¶vÍ#Eí7ˆpëw„[@d‚d> endobj 827 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 832 0 obj << /Length 712 /Filter /FlateDecode >> stream xÚµU]oÓ0}ϯˆÄKòPÏןq…c I“€Uâ¡T(mÝÕRš”4Õ¶;mºe(¾I|Ϲ_>ŸDg—DÄ )a—É*V8–'@âÉrš(Äe:"'[SRoÝ4õ~Ñxû‹^é:…,ÑåBÛOJ0‘¢ÒÙä*z?‰ Æö—KÄ©€x±‰~DÓŽ—ޝ"Œ¨Êx|g_0¥H¼‰¡ÝKÝDŸ8# 4ê# Àe‚tˆ•$ûãßÓ`‰Ÿ]rÒ‹‰=‘HD3Î[¼W¦\ûeØ ÐÛÉ)’*³ÔÛ¯°$’,“aç‡fmò¯u¾ÝêZ|gh=€ ØŠU‚Ÿ7~‹S HqÞ*PåñˆRİÊ<þ~^˜…ù¶ij3O NöÞ 0Š“Òj%ˆbác÷žŽ¸ ݲ²`úpxO3A&ÝýnuïÏ›f0›’™sˆ-¢Ôò$–3°Gئ ™0;sÜélêRæpçɇYµ.ÖwœžBŒfì4N®B„¹ÐMn ½ôPz·¨Í¶1UùLeذ)L[œ ½2¥i÷Ž„…Ê¿¦ÔÞàÞ¨V~]™"üzZ hH Nõk½™ÛJöÄó&VµØotÙäG' |$Â#ÂqÈëñØeè$7/ˆü›ˆœœH1'ô»ô Ä+peò/égÿƒ>}–¾ë°^o½œ¿øCþm3J$óm> endobj 830 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 835 0 obj << /Length 717 /Filter /FlateDecode >> stream xÚÍUMkÛ@½ëWz‘Þì÷‡)…&iZ¶ôàš"ËëD K®,“äßw¤]Ù²£ÚôP|ØYkæí›·³3çIpvEeh‘°$«ÐàPI‚%4L–³ˆ2O¨&šFŸìææ6GEºÝ:ó²Êvk[6i“WeáòΖ›eë<Ei Ô(Ð$|®ãÕÆ8kÆæ3ɼ‹Ç} 8 \V”u[›=q¦ù±6mU âëâÒ6i^Ø¥/d»Íê|Ó—ñH5€T³çÒ®ò2ï|' ÒÆ­E^ZgFQ­ÜºÊ ÿéy ± ðuê©ßØõª×O›ô…·xro'I8ĽûËißËtÚ^ѱÀ¯„ý G'2‚8QGìéËì]Qþ§¼™ç=¬lG½­ï+<ÿúw¨¤Ü=àäÞû/ ÌUµ3i묭ﲭýú?á>l6íkëÂêjÝÇÙ©(ª‡¼¼ÛSèßPh9O»‡Ž% CòA‹y.=Á€ ÍoïɼÒ0˜àÊ_?®@ý´’0˜î:(\¡6„…Š@W²ã÷ñ Q[ •ïIlh´ó%ríü?Õˆ˜ <åÊí(&ÔY«˜Š¨ò]b0½O}»x|jû°áœA²endstream endobj 834 0 obj << /Type /Page /Contents 835 0 R /Resources 833 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 820 0 R >> endobj 833 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 838 0 obj << /Length 632 /Filter /FlateDecode >> stream xÚ¥T]o›@|çW õ¸ÜÞ'gU•š¦i©RÛ õÁ*ŒÏ ƒÒüû.Üa; ­RU¶t ìÍÍÌîíyœ]2b.Ù&44Ô ˆdÀÂl½Œ ‘&N˜¤Ñ®¬µ‹®»¶/:µÛÆF¶.,¾2J¨ˆqˆo²«à}@Hñ#®ÔDra± ~Ë®^”p“Êð(cX¸ ãÓC\_8 %§Hç^Â…b“†’ô© ôeøÙ¥d'žà‰LžJ9â½*ë¢ê×>à$Sr¢MŠÔÇÄ×3Xšh‘jŸðù¡»+óom¾ÛÙVýän(Š5Jú=o\Ê ˆ‘rTœ€2—aÂ9Ô¤¿_UeáD¾íº¶\ÅŒF}g÷3Ì€#´F­Œpªœwß“q"Ѻuƒ`öpø‰fFRÊ<»}yëM]ª›¥þ³|•BŒ~Lw(_ª Ûåee×íÂî‹¶ÜueSÿ¡@ÈÞP>â\ØMY—cn¢*ïÜZ•µuê‚fãÖ å¢ç5!s è u橲Û6”#žw¹š¢ßÚºË"ùøD„C<Øáí?ÜÄÅb°ú‰É󦈛ÿhÊph¢˜pœ³;Ÿ¿~¤Õ5­ i¿ƒC|Ÿû—·¶¶mÞ …·µÍvÚg'¤ªjîËúö@a* R8/ÆÇ~–h¥Ç~~î=PDHÍ_¯å“i–âØÎÿ˜M³Láìâé4Êo¶V#³Gs†F¼Ö,6,ê}w\Å £Þ‘n¹t!üìc˜‹61“Qã[õ£Ý}zçÂÕÃÔ³¿° “üß®‰Aendstream endobj 837 0 obj << /Type /Page /Contents 838 0 R /Resources 836 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 839 0 R >> endobj 836 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 842 0 obj << /Length 751 /Filter /FlateDecode >> stream xÚµVßoÓ0~Ï_‰—ä!žÏ?b»BHle I“€UâaL(mÝ5Rš”4eÛ;]ºeƦ>øÜÜ}þîóùìãIptJÒP!•ša²E ˆ ád~Jâ„H$ú¤×ç'fÂqtRd›3ÇÕl»Òe“5yUÆW“³àÃ$€›´h\ NSg«àgpy…Ãy€Ã³#ª$oÌ#PŠ„«€ÚMŠà"ø²ÃI PÒG:öÄ!ÊRÒ1'&áˆ+”â8Œq´ÎKéÈ^4õvÖ8û«^è:ér¦-ñ£SNzJ˜‰@TrÞâ½ÉËY±{O€ž'§H(i¨·Žo°L ïðù®YæÙ·:[¯uþ`h9€ Ø$«RîcÞ9›1 Åy›q©BÀ(JÃJ:üí´Èg.É÷MSçÓ˜àhÛèÍ3 H1!L®Qœ:í¾Âã„鿕ӻÅ{9$1ñìn׿Vs·à%Ð+ëšpD¨aI c`ÃÈmÐí:+‹ñ¸ ä\>xxÅ©~fà<¯÷¶1*Ùþ®ØzDà+r¬›,/´×l¬7³:_wh Í&)ìhõ"/óÖ7I TÖ¸±ÈKí,`ÂÕ‹¼ðŸ—ÊP'žú¹^MµW`œ5Ù]àA¹ì’ =Ä}íaÚ½xXú·‚püAöV¤€ˆ=öä ûâÅØ3õìéöæl¼œöðìÙö怾{òìùö¦“¾\åÈdßö@RÂ\³™,½ÿ|ï|;°ªv†AÚ8kã¯WkßdþÏk]ê:kl³kÃêjÕÅé©(ª›¼¼ÞQèZ‘¡`9Ú÷W7W#ëuéǺ6R¼q> endobj 840 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 845 0 obj << /Length 721 /Filter /FlateDecode >> stream xÚµUÛnœ0}ç+ú8ßÀ«ªRÓ4­"Uj¤>¤QÅ‚7‹Äe˲¹ü} 6»lB6‰šˆ0s|Îx÷ ö6­ZO0Š$ C­• Š…ÉÝoB¸pº¬Ö`j»ùH3A&–ÝõíêºÌÌŽ@/;WÇ# @5M¢)›†îƒ4@R÷ðÉŸŠ\>ùÄžÙU¹9‘aÄhÄöÜ•ŠëDµI^(«þD­Ó&_µy]=RR:ßÓçD-ò*ï}¡¡’Ö¬E^)cŒQ/ÌºÈ ûëa¡)x‚:±Ô¿©r®¯€!ž´‰µêtSªªMv"öNþžƒ¸MÇ8Ãݽ›ÍÌ í2<öÜŒt·úåÙÛ‘bîÑ'‡éOÑö üôé!úºÊ_>y úì}ÝY^>—/¤ß·’ ÂLÆKëŸíÝV7ÆÐHkc­í¼éì›Ä~¼R•j’¶k}XS—CœŠ¢¾É««-…þBCO¡ã<ëìz7׳‚ÚäÃÄÖ‘<8‚îMî¨ëß”þÿà s[è9M£alënÊBÑ3û²KNW]n»5ö%ñ6¶4Î|àÞÆþáf>ãxÆBóF0c-|½Ú6¹¯jõí“1çwC·»½Ó2ÈÿÀ;Kòendstream endobj 844 0 obj << /Type /Page /Contents 845 0 R /Resources 843 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 839 0 R >> endobj 843 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 848 0 obj << /Length 1189 /Filter /FlateDecode >> stream xÚ½XÛnã6}÷W¨(Ø@ÍåU£éÃn›.,¶F_v Y¢c¶²äÕ%iöë;I™Vä qÜÂ&éáÌ93Ã!Ço—“7WÔ÷"ùðµ\{öŸ A õ–éÇ)e|6§! éô½Ü}x§ï²¸ªôðç"i¶2¯ãZùìóòzòËrB< ÒiÌ'^²||üŒ½t‚½ë F, …wŒHQo;á”ÙI6ùcò[¯gŠæ®¦·8áˆqŸZäˆx„|:›Œ±¾XÜÌ(žY\ªoìÊïr-Ë §2OdKåÍ• Žo §B[XnŒï Q†"‚G'sãÚ{¬1P€CßÂk!Š!œ+³C#j"DF"ŠÈlîõD³k‡U]”ÒŒë¬c=ŒóTv¥ë¢4?ÑRcìW™ßÄe­’lÌasÆ ˆÈœ ã¸óð$„µ<;9Ð/!2…xÎ;‘ïUždMj âc(ˆB¦Çbƒ#qD›}!C~è[·üdèA‚ZÞà ¢Œ7HãhÕÍ*S‰ÎÀr»‚ìÆWMž´æªl’Œä#EœEÚ«”ŠÞ¬#Š@Y£g  H—3ÝvN½¶û¼ÛÎ ZÈà`Ì 9•ë¸Éj½9ˆuÙ$^#æ[„>'aÌÄë\@Ž”à©ç]¾þ Çî:äìå1ä½a¹ ¶ÓPʯ*U~«§±!•ɸ2Ã"7Æî⬑g¥Ø¡ÑÓq¡ •ïÚÅ“(jë²Øny~4¼wl«¿$lúø-7º²Ê?gP“§r‹;X¦òWÐlª>†@Òáh¹§fðMm›zgvý6“Õ#Oõ˜;¼„¸xª—R´€òAý: "J"[#¨ð÷|9œëq>ðø*ë(è2Ä­,‚ª…÷ Ã#ú»Ê>»"xs·^µ`sîá´,”ñpuïöJŽäu—‰O†[†»ºo€æ£ù)^–Ÿ&ëw²Œ!¶—ç>•üÛøïƒ4?H°¤Ø=œ@hUÙý‹àëçA_»ŸK*eœ©úÁ-œöìÀ‰ªR=8tÝÓ¢[):]g¡þÝÿA]åCò܆»ZNj_^/غÑ;!… P ×]Ù+OpÂáyÛÁíUï}PÕébQ@iìÊm¼µV.»ß’¢©OtƒcêX˜_ÎæÑ=?¨@/‡Yʺ)ój丵†”Iˆ2NUlŸXOÂæOÀîC{.Ðc·Ô©À‡þ>~çE¹3–¾šK“+“&Ì> endobj 846 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 851 0 obj << /Length 1254 /Filter /FlateDecode >> stream xÚ­XMoã6½ûWè”ÚÀšå‡HŠÆö’¤Û"@´u{Ù, E¢²ä•äm“_ßá‡d)‘w“ÔðAI gæ=>}¾ž}ÿŠH!%à±ÞD GRÄ)¡Ñ:ÿ8WHÐÅ’r<ÿYï~¹X­®Ï«"­ÍcÚšªôƒEÚ4¾ù›ÞèzA’¹.3 ]T:§Œ/>­¯f?®g$Âð#n%.g‚DÙvöyöñŽòŽ®f1•ðèxÁˆ(E£í,¦¬{)f¿Ï~íí,ÁÐrhéÜÓ( Dlƒ"T!,UIh(é#ktëÞÙh|3-ï í›&DV§¹IËÆzÿ$U1‰¡£˜*gõ†R¾XrŒçyµ¿íŒÁZíî¹Áaºˆ_aäw¿á(v«ýNÍvßÞ§Åé}ÿ² ²ÉÞ·÷ºMÇà†ßùö)b»­Úû tòã‘7' }}ïÉ«ÿ„à¹ÎÚª>¤¡¬êmZ°ü…¬*›àôñOÏ\BuÆLùÊt4ƒ,Œv\šeU›ò.P…ä›ÖígUÿdþnppã„Ø—¹¾Á˜–zŒ×—ë bêpùÆõ‚óçúb¯ñÀ°(Vq:`-îÐÄÚ ¢D±0ƒ²Ø¹è3–~IϳG]WOýû’{}à!HqN] IÌTLEËâ”,vk~¨.óðÌ<äœ0¤b)!å á˜'OrÞ´ùjU5m­Óíb) çl8`H4•!Âj§ëÔòÎÍ$d0“IAÜM|ÿ~ʘD*IH˜b“Þ;á˜mq|[}@þésáì#–„aÄ»1'vµ)ÛcŒ7寱v ëœ‚€¡!`Ï0 Cªðü„ÊÔ—ºÉj³;Ø„Ýn „0gg p“Äp€§îv=tû¹E)‘ĉ$¸gõa‡3JŠ'¤™Qˆ0ÊŸ’ÚR$ó±pü©Üö²m§Ï¾éØmNÌmcceÊ M…G%"qBÃb?éò:­[“z¯%ƒ-H8a—=*'‹`°q¢ '-‰ÁP ƒ=^]ÅòuHQˆs"O‚I<…ɈÂ.äð»—àcœÛvÏÄHðt”ÜpÒ!à7…É4Úe¥ß›6MggÓoß*·Ò¢³qþàûs½I÷Eû®÷ÑùÇë7êЬ;ÍÝ—•Z=E½R—zcJs°† S†h¨Gµ1E‹îÑ”,`KLÄI,z@ƒ\X «÷ƒ³ºW†Q÷e•í·ºlÇÚ3¡t°F¯:GŠçcåôø,ýš&ˆÂæÄ2ÊrüÂ,ò¢,gšÎ£öæ † oÏ@($»Óc(¹pæ ÖS~ó> endobj 849 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R /F52 151 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 854 0 obj << /Length 1098 /Filter /FlateDecode >> stream xÚ­WÛnÛ8}×W¨/… Ô,¯¢h /m7-Èîû’ Y¦cbu‹.iÓ¯_J$eÙ–c;-ü Ò¤F3gÎ?,¼÷×8ð~,Ö¾€>`a±º›`Lg8D!ž|‘Å×zÂàäcU•~Êã&•YÕ*Ϧ÷‹ï…‡|¨¨³Æ8`$@~œzÞÝ=ôWôo<ˆ™ÿ]O @B`?õ(&n’x{övfÚÐlhéèãXO¹ñ[€ èt† „Æ÷ùüvŠá$O¢Rýìü=üÇõ 2çYU›ébSNQ8‘òŸ©¶6‘q—fåmñûkŠž`¡cáО·žü"×ä€a°­&¿ 6êÔF¨ µurYÿ—RZ¬ZFh` iÆ–CâäHÏ$ ç—ȱEvhÿ/¹–¥ÌbikÜòÙZ+déuuåö¢šÙØòãxé?Ê—,/Ó(!¯áŠ¡h£Á2X-=ÙÏvиŒ*geªh’žûøœÆŸ½²‹¿%G±Q.j[Z,VƒCc>¯d}ûâÆYÿ­Á2x{±‘u´÷~ÎÕÃÅóÓNÎ/ Ž]o®F{†ñÒüö4 äŒîÖh[•ûÅ]ô۪꣮¶t(eÕ$uµ[^¤Òˆ”llÂË>eVÎj­“ù:!H/­ý§òáú·#hž™¢‹24ÒѪ» ŠÝ±©2ÓY´s„‚³SígR¸“Ä4úOºæ«{Äyñ<&¶¥¬,ðEéC°WJ‹DgâßR‡­GÕ÷¨¸\‚ìr ^ýn R( ظÝâ {û|lTéPÐÍv} »¾Nõ‹J‹tgëuéâýªâ]ÛÓí{5ö°¼¿Pu÷nƒ¡¾!B~ý280äî‚nlHhî*DëŸ#­[nÚôÏ2kÙâz8G‡ÅTàIÛŒµ“›ö®ÖØfˆÍœSnf"lFë)f“fÀ ÛîÃt¥?žd%þžuÍendstream endobj 853 0 obj << /Type /Page /Contents 854 0 R /Resources 852 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 839 0 R >> endobj 852 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 857 0 obj << /Length 1164 /Filter /FlateDecode >> stream xÚÕX]oÛ6}ׯÐÓ`5Ë‘fm× d›Ñ—4(‰Ž8’'Ééš_¿K‘´%[ŽÏ6E‹¼¼ç’z? Þ~¢"TH hfóPáP ‚8%4œe·#…O(Ç£_ôê×Óé͘âQ¹Lªü9iò²°/?,“º¶¿ë¹®Æ$é"Õð„Ž(“ã»ÙuðÓ, !†?Ò®Ä%âL0} þ nïp˜8¼0b*æá7è`D”¢ácQæ;Ëàà· št-½ ŠBWncB ‰ñ„`ŒGY¹¾_ꃜNW‹ÜŽø‚9†b{iYÔ‰ìí'N;+RXްH‚‡fÅÛ¼Xæ…¾3#ÃÉæå„FˆQl½ªt³® H¢Ÿ’çüqÝ,’¥ëÆC󘶭’,O`¸± ‚Š¢ÖÒG=Ï‹Ü§ÝØÖ¸`Ÿ³m9·í<÷æo:Q£2ߨ7³Sî¿Û¶(«ÇdÉ2Ÿ¡7ög—Òr¥«¤)+›,BºÉŠ8Â1V.YïÞ $”p)ÉÝ%’¹â¹ºò#µÕƒÃ„ Œ¸Œ£pÂÂBÈ.,¤ƒÅÓ˜€Á<;Œ*/š-4ê&ƒXëÆ2 y´o~°^D=ˆpNp‘vξ¯x€êÝŒì£Ñ=Ó~,ÿúþ  þßìÕº$endstream endobj 856 0 obj << /Type /Page /Contents 857 0 R /Resources 855 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 858 0 R >> endobj 855 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 861 0 obj << /Length 909 /Filter /FlateDecode >> stream xÚ¥VMÛ6½ëWèH@Ìpø!‘Frè&Ý ئ¾m…"Qk²äÊr·É¯ïP$ý¡uÙ>ˆ4©7Ã÷Þ uµŠÞ\³,ÖDgøXÕ±¦qž‘ X¼ªîÆUº` K~3ÛßßãDÒä}[ìvnø¡/÷ÓÅØô]z¿º‰~]ESüÁ„&s"yq¹‰þŽîîi\E4¾‰(áZÉø'”€Ö,ÞD‚ñ0i£?£?8 Zœ"]ÙÄ%›%Îpš»¼?˜ºéš)§EFiRŒîÙ6q#îÙ×îY7­_¹íÛbh¾M'"eIì©f4a:ˆ€œOÑ4ÉáxºŠÿ¤€ÀMå(šˆ[.oS†¡—ËÝc±u[>SIçënå•‹.NÏʤ&JsiØèý¸6Ã…$ê¨Tîwap›Îx³â¡’Ì8ÑšºM©án{RÈñxBü ¯\¾„×9þ'S›Át¥Ù¹w6U6¢©^‡ùvÝøqÑUáOd`,f€üÐïýòÕ§·5C1öÃ;K½åfêUûhºÛb›²5N°°ÿ¶ÞU¿ÿbÉxÖÓQŽ®˜d›feßíÆ 2D‰ ó]ÓY-î'.aíLÛÁŒû¡óomðpô‡ Uã努)pëÿr‚f?ä„õóF˜éÖõæhy5“ÍÓTu4œÑ$ UT{žÞ¾½@%H"t.sÑë¼{ê¢%bN••Q"s%МªÕÑÁ×CcºÊ·Ò_:ß0>™¶Ÿ\ï»òØž´Û§<•Ú#àÃíÆ 9ÚC *1Åæ‚Š> endobj 859 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 864 0 obj << /Length 934 /Filter /FlateDecode >> stream xÚµVÛnã6}×W(PØ@Íå]¤Pôa“ͶH[¿%A¡Ht"@–\Knvÿ¾Ã›-y•6é~eRgfÎòý:ywEeª‘–ðXoRÓL$(¡éºº]h$ÙrE^Üìëv¸xª›j¿$jaZÿ÷ESô½þb6&Ì•Æþ¥”\P¦—÷ëëäÃ:!)†q1D†“$-·ÉïÉí=N«§× FL+‘>à FDkšnNY|i’_“Ÿ8+Z‘Þ‡rGŒKë¡P^6.‡`üöz ˆwW‚ޏ‚è4CL á°ÓË•èÒaÀv ɤœ»%ßÔmÙªFÈL0”i•º…ßÏ„ËPÆUØ`?šÝ§‹Ÿ³/†ºkÑÓ *! AâW?ø%–"‚´Ž¢Qa Ð+Ƈ‘[{sxhêÒ3ñÉl€ 7¾:´¥×ϤHÒ< JÃÒs~G©8Æ­ÅÒ!³Ô¸Ã÷C•ç]?ø‰bëg¾íz˜$Žå•B\* •PÀ$üv%@Ž?–/ººòv;KX··ÐáÈñ™çM{c¿(öC]6Q+>N=£è˜ùÆl¦<Ž´"QÎ]Lõkî5ô*ÖgÜÛ6E$4ꥊº1!ýKÓ—ûzgx¡%AÙk[rg‰ïý¢áÉøÁnR»œDtÉœÂ\À¶³>Û]cú|† D`)m¥ˆ*š½Ô½e‰êÍ”UÕn 4÷›íÒlê¶v,¸Œ‹PgS·¡Iý³Ûøç8 eÎì4§žQ…U.` ûC ò¨ÏäïË®aðhZ[¹ ÙmöÝöÌ’7]ÓtÏuû8M×°¥Ò™ïè™å«Nà—ng77W4ÂØ¿¿¸€â½MÂ=©xm#ˆðLºÜ>žèqGxر륦‹ƒñ/×K"‡0#üƒˆ\àœgþbBýh³¤bÚí‡_¢|þ’Äòÿ°ñÛéendstream endobj 863 0 obj << /Type /Page /Contents 864 0 R /Resources 862 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 858 0 R >> endobj 862 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 867 0 obj << /Length 916 /Filter /FlateDecode >> stream xÚµVKoÛF¾óW(PHmvö½DÑCì8­n«›íƒL­©ŠTüûÎ>(Sƒ:i ¸+çñ}3ßîÛeö憩Ü«ð±Üä–æZ‘ X¾\ßϘ ó3`Øì·ûp…IgWõªëâòº-[×ô«¾j›ùãò6{·Ì §øƒàMj"¹‚¼Üff÷4_g4¿Í(áÖÈü7”€µ,ßf‚ñaSgd¿ý,ÐÑbìémJáB±!s†…蘸%JÌ@)Ýí«¦¿v]éšõªé»‹~w·Ÿƒ™¹¦t¾†77’@ÁàLn¤ ®{×õó…BÏeðxÐD1!‚ÉUSÖ‡ur0r&9ÑÖ`¡Áð§‰pšhat2ðÁò¿ön@&Ÿ&¼X"% _ýM2±ÚÆ7?¶¾„ò¡ ÃBºñu!‘¿æ@gmµŽ¶;W»÷®ƒ‡c kêã6 [ï]sç?^íûª¬Öĸ‹ÍZ¤*(å¥ b Ô/x``ˆåNyðK õìµëWUíR-¯}µFl¢=‘KùkÛsçIè¢QÿÉÅÅî¤zu½+Ø'Ðûx÷yµÝÕ®+&p`U ƒZ Ó_ëä²$UC&JªÑ³a!­ˆƒwí6USBÆ«Tg]5©Ãâ³ÝÄç1LeNÌ™b‡N°Â+W¾sö‡Û*u瑟“¿/Dñ Ÿ3ÆbŒ#÷ç#Rß<41¦CÊ4#ÔhHÝÙvyb¤ÒÇÚ÷tô2ÝWGÿ1Î'³Œh%ùiy¯ Mü/´ñ蔪}?QüHÔ©à\ÒößJGÑE€Ù…‰ÓÃCèÁd÷OõsŽB¨ô€‹x-Ãò›~­~8¥ý „kG¦¤m9ÈÙú„ÚÔÏgÔ¼ªKdX>¯Òâ£k|&^|ÃWûv{&•›¶®ÛçªùxÌ`hDÌÀ—DqtJŽDìU§ä×Ný³Ë•Á[pþïïV#GÃÕJáUŠ›ÐxHµ±Ø4­B†ï_@ §m¨åܲÙÁÅÍíäìÞÈøYHZwŒ‹«ÍœÉÙ Ÿ£«æÓ—aR?Abþ[bÁtendstream endobj 866 0 obj << /Type /Page /Contents 867 0 R /Resources 865 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 858 0 R >> endobj 865 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 870 0 obj << /Length 897 /Filter /FlateDecode >> stream xÚµVMoã6½ëW(PØs9ÑBÑÃ&›m,¶¾%9(²¼+@–\KnvÿýEÊ‘MúDšä̼÷f†|¿ŽÞ]¡Ž-³š>ëmlyœh` ãõæva™VË*¾¸9”uw³¾È]™W…ÿû¢ÊÚÖ/¶Åa fQÔ¹[ÕÂðJXÞ¯¯£ëbN?è}¨„)¡!ÎwÑŸÑí=7¯#΄5*~¤ g`-Æ»H¢&UôGôÛÉΊ ­Æ–Þ8 ™N¾(€4}{Mx¯rL* d’¯ig"3Ì(nHá!;§¥ Ì ›nËÚñïË2mõß+t³ÿ‹n"0:×´þ¹Râ¤Ô´Ìèößv´‚¡Jô‹#§—ƒL`h¦ûs-H¾Fc5«±w‰¢œö”¿Yñ7‹ìø'o¥ç¿¿dÝš×þÙ.Êzhi›‰ºÞ©«Qß÷Ê`$÷—¸>fað¹¨]$®»ö§ÍîY»Ü6UÕ<–õçSC.RZßG÷਑½ê>ÑÓ_¤¡šÖK‹‹chN×KP‹cX ÏBP©â©ëÒn†жKT‹¡{ö ýðáÛP¦_¿‘$üï€r°endstream endobj 869 0 obj << /Type /Page /Contents 870 0 R /Resources 868 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 858 0 R >> endobj 868 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 873 0 obj << /Length 931 /Filter /FlateDecode >> stream xÚµVÛnÛF}çW(P@µÙû…(ú;Nc €ÛêÍöƒL­b©ŠTü}go )Ó€“¶ÐwÅáÌœsff÷Ý*{{Een‘ðXmsƒs% ”Ð|µ¹-(§‹%ÕDÓâ7»ÿt‹‹fÝ÷ayÙUÇm‡õPwíâ~u½_e$Çð#Þ›PH0Iòj—ý•ÝÞã|“áü:È-ò'Ø`DŒ¡ù.㔥M“ý™ý~ò³G˱§w1qÂã’¦Ì)Q!qƒ¤\, Ƹ¸9ÔípóØ àyúØ­=,ˆ.l[Y—þÛ+AG|@\ªÓBx¯?ÕmÕ7Ñ’‘¥`H ¼á/3¾R\«h0Ø~ðŒ~ìÁ“‡g¼b$}õk0qÈ 2BxäK¢ Â\/CVÞöæøÐÔU€ùÉî§__ÛÊÅëgR$ ®À¥ˆa¨¼£TœâŽl1d MÌìÉwXà~Ø”e×áõ.¼yÓõð’8—ùR#.5 ¼þ-àR€t/.ºz>ìöŽªîà\{§@ÀÂÖ“Z–l{ã>^†ºj’`|œ¿z"ŠGw³”M’ªû”÷3 (ÑÈ0E¦¸"D$–á¥Öuc#–KÛW‡zŸºf¦ì@ ƒ!{G.T¬7ã ‹}‚æwõ6>‡øŒæëh”ñ‘ä$D‘Ì Î4— ÷þËz·ol_ÎðA,%fÕT½TÌU…êÍ@ô࿆‡Æº´Ûº­=!í£©Û‰ðì"Ðm ÏµšS ϨC£:®‚Ç Ê+VéI§ÉßÏæÝ?'åØ(Æ©F]R–ßÓ2!I©D s¬Í®ŸÉF#-@¬Tá©x§=O¦$ÝÖ­ãü>t'å0üŒäSP¯Ký/b±HãÜ8ûqyØIžé¸™ˆõßÎj0’X©g³‡O ®’¼û—fºbV]ǧÖ`76¯PW·ºŽx¢¤<ïÏ]wæÆ1õ±D'zޱÛMœ_g^Bª«4 7ÙCR®cÃÀL³° ç¾[>­ãâ³m]¦6ÆÙºÝÙœÝvMÓ=ÕíçS©H!ÝÉÑÑ9k¯::_º œÝ¤4\™cÿþ"5r”îQîML»Ô”‚6pâ)‚WÒgøáIþŽÍ¶ZZmØ\/ˆ(Žñ"JK®ÂŽbBÃj» ¢Hut¯|øšºøËW&‘ðƒÕ¸¡endstream endobj 872 0 obj << /Type /Page /Contents 873 0 R /Resources 871 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 858 0 R >> endobj 871 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 876 0 obj << /Length 698 /Filter /FlateDecode >> stream xÚµ–]oÚ0†ïó+"í&¹ˆëï4MZǺ©R¥mEÚCSHœÕ’­ý÷3±C£‚Ž"$ì$ç¼>}rr.GÁÅæ¡ŠÛaT„ †‚#À0Âá(G p'˜ÁhYÅF¿Ë˜Úwë¶®š¬vó/ºÐÖBFºÌ´½¥ ¦$žŒ®ƒ÷£…ÐþP»€ŽÂlü Ææ ¯ˆ’,üc/ @JápPLº‹Yp|Þè$V(é+]zD¡w0ز‰> ‚ð™0–àâŠáÞ.Ù¥±–Ž´Â¯L™ÍšÜ["Ô³d%-Ckøz–‚Já >=Ôw&ýZ¥Ë¥®øw îöh"h©gÞç3Y£# kÑÄ@”°0!p%¥Óo¦3“9È·u]™iŒaÔÔzµ'2D€¢BXV¼Uø†1‹f÷0_X1½Y¼ÇŒ„ØG—NÝjc<#>±ÃÚ#´ € Dl Ô:2´_¼u­æ+¯A3<Ê«=¿Î“MÆü€³)ý雼:ÞQžÍÓÕêHéŸEåC'“'P"éöù®S ŸäC]§f¦s§3Ô«¬2ËÚ,Ê'2šI¥ h¨ SšÖ6áV*­Ý83¥v3 ¡›, 7fæý›Ä`Ü:ö¡ßèùTû ¦uêg‹¬™ë²N!¶oÂ)n¶£[ïÿ`N·ÓóôÍAÿ³9[+ä¤O‚“<æØé ü…pŸx†M¢ïø—ïôèé9N€Ž¿Løìá³áÛ¢³)7§ˆsd?üøºÿXñOG!ÏDÙéwäúSg[…“ÛžP×ípÛÝÙ5;È~òýwúƒ.u•Ö]õ_ã­ÇQ¬pÔø»Ž‹ÿ„¹±ƒê›>[Ȱ›1fÑ—äzyóÎM§]m¾ø¡Ëÿ/Eœ’tendstream endobj 875 0 obj << /Type /Page /Contents 876 0 R /Resources 874 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 874 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 880 0 obj << /Length 446 /Filter /FlateDecode >> stream xÚ¥SM›0½ûWø¼öø sܯV‘*µ*ÒÒhųAâ#Ò4ÿ¾6†mVÝ[…ÄÌ0ö›ççÇmŽnAaCŒr!¯°¡X+F$0Ày¹@ˆ8”¥}¶Ç/w®4ºkŠq é}¿?µ¶›Š©î»x—oÐCަîa3šÔDrÅð¾E?ÑvGq‰(Þ J¸I%>»‚f à àkÑ ïèÛN‒k¤Û‰ƒ+uàmˆÒˆŽF)ÊþôÒØÀø8ÄŒF¿ºX¸w– í¸;ÏüæQ¢ œCÅŒxo«º«çS&ÊASˆMÝÙ…ôUˆUÝ,­¯—éPOCq<ÚA= r ~¢ŸÁ4Q ø<#?,ëËwª°~‰CC6NÃi¿Ð8ËÇWÛÙ¡˜l¹lúvÝgW¤¦éÏu÷úF#eÎsÎæs‡Z;$‘Fȹý@­Þ©Ï¨CHó‹þ=íÆHçÿï‹+ ÕÊù€§žwW˜Ʊf„ ­f~ŸþJä áö1 D§Å%›˜Éè´tdLf’fB‡ (ƒU1ÈÈ_/®~“—Ëúü¾¸kYEøÏߨ‰endstream endobj 879 0 obj << /Type /Page /Contents 880 0 R /Resources 878 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 878 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 883 0 obj << /Length 754 /Filter /FlateDecode >> stream xÚµVÉnÛ0½ë+ô"Äp_Œ¢@S7-h=$A!Ët"@‹+Kuó÷¥DÊ–ÇMâ>4gß›‘s:ñNÎ0÷PÜ “¹¯ /8 #ìOfW\†f0XT!‚ÁŸEn——uÕ$µÿÐsmve ‹D›¿$g"À”…7“sïóÄC>4?Ô3áÈOrï·wuý™ýs¢$óWfR û¹G1é™wé}_ãD(":ˆB9î…`£K u _ İ?9cxs,€HÆ:Ðwi‘dÍÌY"4°d% ÿÎðý,•Â|»¯ïÒøg/ºâ¿(¸Û‰ Q¬8s>¬I+ÅX';B\D ó#B…JZüfš¥‰ù±®«tb4µ^î`†PT£¹ à5Æ,Œ˜‰ß¬4`z}ø@3bÇ®rá½¢7­©o\Aˆ†Ø°Et7jç;Wl]aïÃöøLŸðÙwŽMõ2½ëê™L§e™YÓüBß>‘;@‰¤Û©k+ W»c]Çi¦gk¬—I•.ê´,ž(V“II‡3Öó´H;Ûˆ¨¸¶c–ÚÎ0"vRÎí8O3·õ¸>Á.puì¨_è|j>.K<®]ŽÇeÒ亨㈭šz Â"®Ã1ÌÈú³b—ÃÂ^­ ‰-öx?ûé›±çÇ`OûMI¸oU÷¡ôÕ1èÓýÁ﯄7Ë8†ö,«7!!‚ÿGDÃéÓÒïîq8¦ö ˜Ü9ûÙÖmeÁÊÊN ÒÒΖ®£hç«Øýy« ]Åu{uwnU™÷~ºGʲr•·k ýÅj(´œGÝÆæuf¦ ƒGêqà4Rím24h²}¦ 9¼?õí7í‘}w†LŸ"xÇìË&8m´±mÇI¨pиÒ8 ·Ãì€ØˆÁv…!Âv61 J÷Ø|Õ‹‹O®I¸ï_¿÷&!½ü÷ļendstream endobj 882 0 obj << /Type /Page /Contents 883 0 R /Resources 881 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 881 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 886 0 obj << /Length 692 /Filter /FlateDecode >> stream xÚ­UMo›@½ó+z›ý^«ªÔ$M«H•ÚÆRiTa¼N0¸€•æßw`ÁÁ ­ú%vÖ;óöÍ›Ùátœ\0Zb.ËMhi¨É€…ËõuÄ„ŠfÀ°èÛ½?äÑY‘67Ï«l¿ue›¶yUÆ7ËËàÍ2€âz4©‰ä Âl| ®oh¸hxP­‘á=n(kY¸ ã㦮‚œ’)Òé@áB±‘9ÃD´'n‰²q”Òh×4[Oöª­÷YëíOnãêLäÊÌuÄO.$›(72M¸‘²Ç{‘—Y±_žOɉ¶©÷Ž/g°4ÑÂèÁáÃC{—§Ÿët·sµú*ÈÝ &PLÖ*9ļò.]Æ@¬”}Æ (K@p&œA­ñøûU‘g>É×m[竘Ñhߺf†pb…Ö˜+#œ*¯ÝÆdœH”./ÛÃÍA\£ì˜p¾{áå¾éü‘Âi£#C¾ žà®+$é|Tý<~&S"¸ljv%&0ùܵi^¸õЕ®Éê|7öäLi1oK=­s·É˼÷MB¥­_‹¼tÞe¼QmüºÉ‹áèy5É\t†:¨¿wÛ¶¢'ž¶éOÖ“"’àă]áz˜®ù‹®FuçÕà¿­†ý5Žnä@è#ê£ÓÞðìëÿÊ^Ó?dßÝš(&|¿,ïÿõQ‰/oÆnB çEðø€% 1yhÏuŠÆþr=ßç4pþïÓ{4o…Ú›~ ` jÀ¦UÏïí£D]+t wë2¶,ÚýqƒŒöÉô È…¤ ¡ýŽQ`ÞÚÄLFÕðÎ&³ÕÃøà¾?`YF~’jÆendstream endobj 885 0 obj << /Type /Page /Contents 886 0 R /Resources 884 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 884 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 889 0 obj << /Length 959 /Filter /FlateDecode >> stream xÚÍXËnÛ8Ýë+ÌÆ^˜å›¢Qè#™IE;­wÂ%:"KKž&?W$eÉŽŠ±]÷,DJW‡çœ{IëæÕ,xvIe¨‘–p™-CC% ”Ðp–~i¤ðxBýaîß¾žN?Öë1‰F&^]Ë1£Ò=~ÇUå†ÌÒ¸ "1p‹j©G”«ñçÙup1 Hˆáص„B‚I&«àŸàÓg¦¯Œ˜ŽDø&­i¸ 8eí$>mq&4é#½ò²GŒKÚê¢ SõeŒO×bž]xç°  ˆ+n×D‡VºXÑ•)Á8¼Ó„þvA÷‚ðUÒÇÜ££ÂG€ÅDÆ ²’²¨ã¬¨ÜÌ<ÔëØ 3 ´^ÅuVîFaLjR7þrküÝM•7ÍŠá$Â(’L„BÂ9XYuMŒ ¿zgé5…$å΃߲"É7©w‹¾8†”Ž˜çþ|@œBŠGÊtn¢Û4EbÄǾð^B´Œ—À‹1DUNàÊ¥v2Þoy–¸ü¾5«$ØŽ/7EÒXT ð" i®d›6õå2H©Ø®Ú Ű~¤; ƒ5Ö¤ßfÎpF ¹àˆ(F=‡b Úâ¤foòÚ½ ‰†\l’º\h8JN8 €5¿wÙ“.8_"º­I†÷“r¬ ‰8åb_Ïÿ+­Ú)˜¨¼ªN§Sxß–b³øÕ»ù隸øwL î‹zþgCÌ<î1ë¼ ¹]²Ï²Ã n‡·Ý¹€™Zн­»³F„(Ñmù“Hv¬æ&+ÜÐì®¶Èˤ‘uç¦wc†eLÐsœFB±ÜæÜE‘þ’®Ñ!×LKöžÑcªíe•dÙAefG æh~0î™’`ÁÎêÔÞ¾d+zÿfvÎMÙSÖÛ9÷ñºÎ’ܸY×ñ9DÒ£D~ÇÔ}y‡äðâ¡&=¥êÇ?“…; ?{ì*<ónPúK슧¢@jÌ.ÉÚÒÉÊyýxo¾YÕ©[ßÜÕ¢ŸûC^fÞŒÊÔó' ûW>Ô™U'2Û·lQ–¹¸«ùýà8õyªr³Yò$©µÿ¨]ÆyåË–þÑ­¿áº!_f¥ñ cQÖ­HwƸYܒ´-Í.)m->í•¡ cÐÃ|{«Üj;e ºYÔ6Ê®\_ßnfׯ»[úsd6Öt´ñ”¯mÿD¸ S§ÐóÛÅ„zm—°îýKÁïHŸ©7åÃã ô ^þ)Ä)kendstream endobj 888 0 obj << /Type /Page /Contents 889 0 R /Resources 887 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 887 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 892 0 obj << /Length 1087 /Filter /FlateDecode >> stream xÚÕWKoã6¾ûWèTØ@Åð-ÊÇM6m‚A÷” E¦c–äê‘ìþûŽHJ–e51âí¡’#zfø}3Ãá—ÅäâšJ/D¡„a±öBì’ A õ«Ç)åjæSEþ®ww—°xz¹ÊÒN¯ò¸NuVEU’g³§ÅíäëbB< ÄhL/N'OŸ°·š`ïv‚ •ðÞ` Cê¥NY»ØN&vz|Pä÷5}9rœ`‰8SÜ L”Æýo”Š™/0žþ•%U9Ÿßå³uÚ,í’|™:á²î¤ß°ÀðOì*γ²jwqÍ©§À¨äQJ‘ä„{>ˆJ›/Úé¨6ÚNn.îí¤5dWµÒj=8Šß©¥q.èøQþÐÙKµ98È./“†‡ÿü [cû¼c$™S_VÅŒ¨©ŽÒe²z×kŸ0 W²²ç<ß¶?Å4KÊ^-›iQVK=#bú:#xª³óayØé8‰œµ$[7zó"µ `….7vEë²Ô«ŒÎ/'MR'~3:PK=Äþ}dsê¼…µÔÕòt|ö˜>¨>Ä'ü¿ãZ—I¶««¥ ꊑêñ«ýz”Œ-T§Äª‹ûU’½’°Ü€TƒX}Wë1Ó§ko<:b›åQe(Z;¯¡c˜E/=„ P4T?,D8•çsÌŒþpÌ|‚á`WºŠ’m$WºŒ‹d×Þ6×’öèÆ†g ו Å üJo²un÷Šþ^)P ‡ß ç îm( éöìЈšF…ÛAy`«ŠÄ¦ª€çYiWú{UDv I±OˆFi½jØÌß6ÚIë5¤û #`\ -t ætͳÝ%€‰IʹٵØ$΃ØÞÚÇ®ÏñÑL÷î´^_‰ñâæÞ™ÊíèR„BÅT ±€Ú¦ãu&!~.ybÏÝo:ûú a\Zü ãHJ¢¡½Òë$KöE•·Iæ¥ÒŽùÚŽkd;Û‡&Ú ±ÌÁ¨à½Œ .#.›ëª¨ã*wùõK—â£ÞlPÙbmtyg ŸÏºÛœQ1ÍÇdÇ•j€ôÀÖJ¯£z[uÑØ9~ÁìD˜ ;æ8Fã0Š„¢ý« *c¯e ºWvQÉðˆÅ\nÏ'„º¥BÅœ‚Ç$kpx²qJ!€ƒ*:{ÞS£˜‘ŸÅÌa{§Óçö‚¸®³xß|&nY·ûëõöÎì¡P²B¥ä8#íÇË©í‘FKm[°{ýÑA™^'¦;22Ó™š¬ÛЬÛÿåbø˜wu:ïƒWÜWŒ0vþ£¯§¨}óI¨êL™K€2HÂà͇ì“*·.¢ªíÚ˜ZÌB:­]·rÛP]»/ÂDÌžóÀ®(&ÔÎlĽˆr=ñ6X¿ÿxÑÝÓ÷½höTendstream endobj 891 0 obj << /Type /Page /Contents 892 0 R /Resources 890 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 877 0 R >> endobj 890 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F62 788 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 895 0 obj << /Length 908 /Filter /FlateDecode >> stream xÚµWYs›0~çWð3EEâzk޶I§Ó#~K30"Ñ„@jä&þ÷• †’G+íñí·Z8™ï?"ߌ@ä‹a–›‘k>Adβk+k;ˆ¸Ögúøõ4ޝøÒ†¡E“‡‹2·±*%>-’ºVÓŸ4§jS¹ âŠüÈB^dßÌ.ó™MWü`c‹€`š‹ã·q}㚙ᚗ† póI,\£™†‡p»(Œ+ãG§ÇŠœMM'2,‚a!± TT‡Ò»Ìv|×µÒµuŒå +â˜ÖTh¦o¨t¥u=i@Ÿ’’]o¼jé$¥]ÉV­â¤Mÿ3«yƒi›,í…¼ÿxëH:ôx¤¸&PJ^½‘C˜ñýl¶kÍaˆ€ç¿rÇvÂ)5÷˜,9[´Ág OŽY€Áq Ð?æ=Š :ûžyj-œV„o 69.ØÁ~`Ÿ?‹RÍh¶W/Á(óñ^Ò ‡`÷LîÙS¦^Ä;êÅä}X-°„‰^º/ wj1#çû­f¤ƒLi<½†ò&­fôݽÎ~tB“é4ø¬ } ƇUn(:ÑßʾøŠÄaûQ ¿ H¼–Òe©.j—gv„,ùf-—6$ÖJKˆ ‰‰Ëv WÈ…HÍ¥—”WÓT“ù¬z^ß*^ÈðÿF8&endstream endobj 894 0 obj << /Type /Page /Contents 895 0 R /Resources 893 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 896 0 R >> endobj 893 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 899 0 obj << /Length 841 /Filter /FlateDecode >> stream xÚÍW[oÚ0}ϯÈ#‘ãKlÇy[[ºÑ­ê¶²§®Š FÌZþýÛA€hô¢ªªìOþø.çÇöIÏkŸcæ ˜z#_@Ÿ3(FØï oZ˜Â Ä1Šq볜]žjƒÂÖé$«*;=+‹©,T¦ò²n{^§ç!ê?d¢Q(aÈL½?ÞÍ-ô‡ô/<ˆˆ©¯ ØŸz&1ñ®½ï«8¡®G:ÙY8Ö&·u Àu ‚A[•&I¥æy1¶e›f’äZÍ·d6í£ÓV™$Ý«´ó d1”ÃÕ ÏÓog½´S íA õ?²Ö ,*UwÝ>§x­B1ˆ™Ðí˜jnòb’ò¶öôÃÕ¢¢ÇÆg;m2]¸¬óÖ“Y6Wù`"­5ÌTfgýI9øm§¿å˜ ,ÄÃ1‘Ïä(/rÃñË”ë’ìŒÆv,GvåM" §wÀ6º»NEbÀ¸`ë°#øR¸©åò0ì9€„ðG°w‹{þö}9΋g í‹>{6út}túŸdÑù Ztê`Á£@LéÐÛçlÝ3\¹nS`òëÜ;Âs8A.x]‘®ùP½ù9s>3°#Šˆà¦D3ÛÖÆ6“¦€G¹ câ¡C)&ûS¼­Ÿr$ç²HWaiGÇåýšHlö& ˆÔ'Џ½pënå> endobj 897 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 902 0 obj << /Length 1100 /Filter /FlateDecode >> stream xÚÍWÛnã6}÷WøÑ†¤D]ü¸ÙK4Ú¸û’ Y¢,"2åê’¬ÿ¾9´%[ÙxÝ.PI‘ÏœsÈ~˜®>So¢ÐSÍ<‡xì{1JèxžÍGdŒÕÑ¿Å|ÄŒãõèïÑã'#<¾aä„¿ªF$ éx=r©cùèaôÇÎÎ¥2tÙµôa0,ª†þ>*ä âM/ Æx²,Šü(g3ø’¹Zð)a“—)Á*Æz‘©¯*bmàfXýë`¯>3ÚqByI]äúÓN”ÖÖK׆§Üyynz%¯›Rš~]6æ3ߪZYY++f(䦩¡[µ´¿I #ú77eóªÚm¨3nõºŽ!ò<'P›Û=_¸üÔº8s¶¡›Ew)Ø}ÖlЀ™‡2Xá3 Ÿv¯ ŠiQ®£ZRGvIX€˜OÿÄGu]½ý#O…z•Þ¹€ž5^¤¦ME3MÅxâíðëX×Òne˜Ë­iA6*%幕„ܤ²ë8(phФ‚ÔÒ*Dò®(+^/¾aL¥¨2žènYÕ}}î…©u®q»øSE¸àXøë¢0 Ξè!}+¡”X…l12d9ØC,p|{ œ‹(?&ØJX· Z‹y«Y N… ßÄÚž h›Š,¿¹¤ô}ÁÎ ‚ÉŒ;çëå‘É‹_KQó3Ôœ£®,ªÏZIÛ¾N»å” à¡ô¢ÜR#ÒŠÌufúIÁY€‰,z…Ñ!õv½gåçïÓìú§ß §ážƒ·(&‹µõ{P»}¨oî; œ%y×ù± ø,NO¹§ò¥êÞNÄi­Î±ÿm’¡¨65üˆ…Ý·…ålWáèQ\Èj¨4 ®*;|ÏÌ»É3«#fn®î/°Ì3› lÛìr„Ê$°1R<~qÆãgEô™iÀ~UÐ1råù2ŠŸÏ •þì Sp-tŸhTä՞ݿÚálvW¬•Ìšu;¼0³0ó;—«:k§9Éybc߯pîÞ¸Ñ_E¶šûI£°y¤3•ð-©Æ¼î—Á¦þ¯³HH-áq®6'v”FM~üã-:­ÐÅÑîáõ;wîøWسlÞp‰!•6ß×µÓû¿îKåýiXsMÒ?»*y[JEåö8<†"é9#äQM–Ÿ™rœà—ݘ:­î…Þ;[Ò@%â8ÿþ=Ú1dŸ£žºóÔ« ž£W=‹à…Å˨æpd[ŒÚv> é¤Jà¶M Ì0Ó6cxÖÖ-íˆbBMÏð²s˜î*¸Å÷íŠKþ?÷T:endstream endobj 901 0 obj << /Type /Page /Contents 902 0 R /Resources 900 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 896 0 R >> endobj 900 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 905 0 obj << /Length 381 /Filter /FlateDecode >> stream xÚ¥R=SÃ0 Ýý+<&CŒ%G‰Ý±|÷Ž#[a©K{—HÓ+ü{ì¸Â±q¤YÏO~šìì 3n„É\(ÖÜHžg y±ZFH'¨Actc_ïÎ ×ånÒ‹®Ú7¶ÊaÛµñS±`—.Ý#å‚T¼jØ[>I¾b’/˜Êhâ¤c7,E5š=°û/žÄ%§Ls/œð—pt0º‹“LÊhõCßøkÝõ!6Û]Ȫ0Oå1y±­íËÁ®Ž]}×Lmv"ªëî°m_üÜNh QP°ÞÖv7+ „Ióœ»dRëˆä«¿ é(´qlþÐÃÐÇ #[6·í:FŠ:±)-ÒL£»ÝyH¿)rÊþ諪?ÜÑÎPêÿæœÍK•93”ö3)TBP<ižb¯¿Ÿ×ï‘7ÇÇ"6ím‹(Ú+ÐŒä,ÍB ²0fÀÉ®>L‹úþá,á4¶endstream endobj 904 0 obj << /Type /Page /Contents 905 0 R /Resources 903 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 896 0 R >> endobj 903 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 908 0 obj << /Length 1190 /Filter /FlateDecode >> stream xÚíX[ÚF~çWXªT&s¿ ªÉfÛ¬´JÚÒ§4ŠÀ6–À¦Æl²ÿ¾gì°aq’ÇŠ_8þæ|߹̱_ÍG/o©Œ 2óUdp¤$A‚Í“cƒ™L©Àãßíöþõl6Ÿ:¶›íû ÁãEQ¦ñÚÞ/¶µÍëõb·«Oÿ´+[LˆÛ,¶p cÍÇT°ÉÇùÝèÍ|D" ?R-(L’(ÞŒþ}øˆ£d„£»FÌh} Œˆ14ÚŒ8eáb=úkôÇg @Ó&Ò+Ïpĸ¤®ªÉ`üä€ÑË[Xá¨"¸BR†êj¡¹ƒlÀUˆæF É P«ìÿÁ×F7Œx®¤·Ù¢>DÞÄ `(`º«‹úP‚Gy±(žêËßlü«Q o -¤ƒw˜õ¬M02BoçY¹H3P©Z`¿³‰{&š2¬&‚GSBàQ‡"Ùiöà]Ͷû²bçt$ IÊYeõSšÅë}|$MmÈ­ƒ€¿ôøñàZyƒNDÐçH‚ ’äÀèWÈ¨àø Ü“ ) ˆsH=gû~¿\§q+ó‰âã§­ÝõiÆáJA¶0$¥áµ¾”ŠÉT¸(Ác‰]Õ²ìÊd6Û„ìéx*˜tØ·êVRT Ÿî.ìLï ½áˆr!N"ßÂæÈèCY§YÙç¨AØhz¢h+‹(!|˜|=ú¢¸DÜ1:é°çs>\PLc$µT—k9t^´ÚàóÒ@ЂH×òC!®†Ëñ®HlqÔTå‹  ¿¤ICÑÙ,-m±(óâ䯷áP„Ï‹Ýõ­‹ž»ûMÜžRBœi~¾’îífi=Üí>‹Ë4φUU¯À®u±ÿ»®\5ÔJu¸„L>•æ4¼iH†{ü¨º“îˆF‰:ú¾V Kûf=xx0’Í’K8Ýœi§Á13> öè,Ò@\§ L>=:ÅmQÚ¯Gˆ+Jjؤ$Ð&d¥öõ3<+—òÔsZ$É›,iù3ÄQ!!R^á(?íçÕÉÏÁóÓúUÒ _vC cÖ…¡`m=—»‹‹tëÊøÌ £›eþŸ¡~Ü õ·C©l–Þñ·ïêcìæ[ë9®r¿jaãüŠlé2ÍÝØòN†*„eDfüqÕ¦¼ÓÃú //hÄÒ«!-@ ]é åågïÕ¾|Èb<ú‚®b—%giÔzM…FJd«ëñÆ®Ò,­RµÆñk®!>õåÊÏk«4€Ÿ ›¨¯~p¨›cÙP_6Í/Œ“‡÷&÷ ™r¬£V5wê¨>Tä =üò[ÒlֳNjޒ×jj¾AÓÖzÐ\94¥&uÚGýÒt oB˜KÃbëÝâúáš %¸ҌόÕÜuu}õù\;cw'ŠCæ†pÝN¬+¢)L4E3šìR"CŸ™‚ÏeòÕÜõ0îO$ð¾Â`Pøþ/$  ðD–Ètø>›5÷¬ ƒa»Î³†¸{?wÜMˆïý?¢>1xÆU}E1¡õÙjBŸ?Œ>…NöõéÁfþñÖ½¾endstream endobj 907 0 obj << /Type /Page /Contents 908 0 R /Resources 906 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 896 0 R >> endobj 906 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R /F20 6 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 911 0 obj << /Length 962 /Filter /FlateDecode >> stream xÚµWMoã6½ëWèTÈ@ÄåðC"…¢‡Ín¶ ´Ýõ-ŠE'lÙ•åÍæß—IÙJeDJRÉš¾yó4ú8>\$”H&z˜/C‰Ã4Ä p^\G„³YLý®¶WçzÁqt¾Êw;;ý´Yìתjò¦ÜT³›ùeðy@ˆõ´ÖxŠ8M \¬ƒ‚ë/Œ¨<|Ô Œ@J®F¨_¬‚oÁßXŠ-} œèejã–(D0ÆQó´U…Zš!Ú5E–­ó­‰öÃÀ‘†x L{5V~µGzŽR”2!ܲjÎZ\²ì‹ªþšŽòº)+匳cã˜#‘BêžýŽ1!)€º3¿ é[wÂyŸÏ$‰Ôz{ÂU¾=lüYªŽ¹0&”„1’œ[È®<"z}ð3‚(Óîb¦‰lÏ~R˲*۔ljÆ7oì¸*+eg$µãfiÇe¹r;sæ!Dô€ºKvá,õíbJQÂL>ŸÔeó|Síšz¿h6µ%á/Ž‹ªÿïÿpó’¸)ëó2ÙgÖõw̱þÁ¢ÄÔ—æªKàuYÔn\jüæD¸)¼îPÂ1#AF"1Äõ$A’ÑqâSµäëáµxJ¦i‚É 8%¢D—ÜT8Ùû³×kÑ•Zß)ÇЋ}µ°q¼–¯¬ãëƒÛ¦,¬­—r–Åçªè)VôËRF".::HY/Þž”YûZ1]ÍžH'•ˆ€~3 ¥“êW@*`j6¹˜–M4¤(!Œµ¾ª¥ªUµP;ûÔöÙ)Ú?UØSwOvt™(T“—«,«U^ÜnOOë±5ɺšô‰ÕQÿѨ:ïDï¥Äß©û²zY¤Dªç4®*¿9µª’w)Ö½^ ˆªŠpè—.œÒl¿9ŽôhùŒpúB·?TݨŸÓéåEª+ÓèݶÊÓ:œ¢!†EXb1BCXwf0;Zx’)r:W9~_ÍÐ8ùlœ9ŸUq,'£ÒÃ]z6¦››Fóö‘Û‘Õ/”À0ÝýæTº‹ÿ¡ú“·2®ú ¦'ªßmN…C¾`ów¼èu Ö–ÁÀLš‡Òñoa?ÙÌô1w“{UÀ¼~,ëÍÚ?¦¼¡ÕjóXV÷]mcS`"Î>ù´êþ€¾ý‹ïÈÿàÓ]eJEÛ'Sغ½Ð<–ÚFëËáF&§¾±j9°wÎå x´w;ÜÀ3Ž3–Ú•þ>"v¶œõe§FjmÇöóI£èAøŒ'÷šendstream endobj 910 0 obj << /Type /Page /Contents 911 0 R /Resources 909 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 896 0 R >> endobj 909 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F14 69 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 914 0 obj << /Length 300 /Filter /FlateDecode >> stream xÚ¥QËnÂ0¼û+|´¸»›lç} ©Ü(‡4˜¶@-_CUí©òavÖÖxfwXŠ‹kʤ3. P.¤i34LH²œO•3õ€Ô­ßLFEQjGʯ6wAUíî­^úIµ‰oFËj»åƒ_øVc®|SûÐÈSEÌzVŽÅU)PB8Ø}ÈÖp’¡¬Wâ]Lg çäX€I\Îò#0èÉ•H)9“¥x÷ß:ƒ 4è+ Ù˜zÙãRk¥¥Ð´1àQçéÇŒãÜéã£?B›×_ÒäÁ6&ÉÿÃô„†§=eÁv’Ÿ÷„S›uo|ãÛjççqøë&bç{ï#kdµ?Ýpä‚¡HmdH±Zhbµn{›åó!âåúóðâ›sü/ûˆ„Ñendstream endobj 913 0 obj << /Type /Page /Contents 914 0 R /Resources 912 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 915 0 R >> endobj 912 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 918 0 obj << /Length 1093 /Filter /FlateDecode >> stream xÚ­W[›F~÷¯@ªT&seÀjû´Ûj¥HmcEi“(bñx„pÙ þõ=Ì 6N°ë][~f|øæ;ß¹0ój1{yC'BQÃbåDØ‘A‚ê,–\*ϧ! ©û‡*ß¼†‰Àîë,®kóøk‘´•7q“¹÷iq;ûm1#†ÑhB"Áâ$›Ù—Ù‡OØYΰs;ÈE¡pa‚‰"êlfœ²a’ÍÞÎþÚáøä‘^Yâ„#Æ:0§àˆ4Ä#$©çŒ±!>Ÿ/Ö•GBW©w,»*iŠê;wþV+eÌòDõî¼¼ø½>ÀƒJÄ zÀ<¥ÅØX$YïCoú ll(Ù`,kS¢ ”F…µ€xñü\Hk3Æf¨ÓM™)ó\©²Rõ..z­X˜—EŽþÔ8~ Üs|BP$„s™Öe'ª´1gfxЮkÖ½4D¢€r®ßù!Í“¬]Zqä3C2 ™ué§)åä¡´oµ_Fe´žÀ  B“1ÿŪ Ù1¸°j\ Êu|Æ ¢@ÛþÙÞeibBÿFmî”͈›6Ozmê n„¡ˆK ‰@!‡™Qè#¥b·ïȃ0²ÌŽg`ŸËÈ(3ÿšæ?š§ñj—æ?ã‰õm¿®ÓB3àÔ AÀ5ŽˆìÝ&aÌ#M$ÏšªMó~[§ù½ÝØÂw“®}Žó¥ÝgO¶È³Î¾a†ÔP¥¾´i¥–{:‚ô¢œpx%a{õ|šœ–hÕ¹Æ&T|ó~£ Wâf*ë  Ãì; wu‰i RhŒBd1û.çF±åiDOƾGïÓé§6Ó«/@}ÉB·éJ•Çe–—ª‰Ól>‡ŠŒ!þŸÓÕ7ʃ¾ Ø WÉ ¨iýÙ7m€ Š$álèDÛÅUÚ¬7ª’™Ð—#0~jS % Sªö½NÈ¢„h>1Ý8k•MU=/ÒåTÓá(=ÏÇî…·8|,®D,”û®ŽÙGQHý÷µÙwH Á¡4mþò'å¿M“~zÜðÅÑV`JOØV l'(mïzÂð)›ª[q¬nwÂk¬ú1.÷¬OP-šµªÎ¢k;Wý¨#^>ƒâAý¦§ì8S·J5m•`—‘éžOƪ2fÓÁ†Ÿ`³½*›í幤š÷G?’OJÕœ/þœþ™æÔ=“Sw þæ´=““8¤t•ЉÜÔáÆÂ:Ü> endobj 916 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R /F20 6 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 921 0 obj << /Length 1360 /Filter /FlateDecode >> stream xÚÍX[oÛ6~÷¯Ð^ˆY^%1@–¤ÝPlÀ¶{i;@‘蘨,y’œÄùõ;¼É’ã´q›ƒDʇç|ç㹺XL^½¥q$‘Œá±XFGIL „F‹âÃT¢„ÎæTàé/jóÛåùùbÕÌH:Uê¯Áxªò®nœÀe™µ­þ©–ʉU¹‚W”K<¥"™}Z¼›¼YLH„áG¬5‘ ÁbåëÉ?“ŸpTLpôn‚“©ˆî`‚‘’Fë §,LÊÉûɽž9(š5]G žH@³—òÞèÊ[ß•º*ge€S7…®²ÎÃkwm§ÖOòI0ÁâäB¿ÏÓé ¾¨Ó_ ¢§ëÜîQ¼|½Çèü·Ó/,?¥Š¬3—M>s‚£›Ý7xt]×åôoÃ~ò^+H‡Rw/ú‡ÿ´ç^Wp‚¤ÔgáD¦ÑœsD°_cÚ%cO¯ $ê2”+ÕæÞtº®œ¾˜xÀ–)1óÙÑ€'Î +,†Â A 3½Ïrí!_Ù剄… ÅGTŒâþ4LOaÂIúr˜žÌns1ç¦QvЕ ÕO®÷rЇ ý(úã‚vÛö•úÞ÷€ÝYè'¾+=ìÛH]•¾çÞûY‡& wŸQ÷°íûù™ŸšY£ g‘ðaÐÓïúá-çHÙ‡XŽY cÞû?GÄ?‡yTR wJƾÿ{Ê@QøœCDBE÷߉€gn.²àÌé<œukG[Ì$nýíå¹ãmý?Â=ˆ8øœ'nF1ñ7Û匊i ßîš^ïBí»ßݨ*¸ÿ/KDÁBendstream endobj 920 0 obj << /Type /Page /Contents 921 0 R /Resources 919 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 915 0 R >> endobj 919 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F48 924 0 R /F62 788 0 R /F52 151 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 927 0 obj << /Length 1052 /Filter /FlateDecode >> stream xÚÝWMÛ6½ûW¨—@b†ß"nùØ‹¦E!@±Ù²L×BeÉ‘ämüï;I¯œUwí ÚCáƒHkôøfÞÌ|™N^\Ri¤%<ÒU¤q”H‚%4J—×1j:£Š(ÿ`¶o_ÁDàøU™µ­¾®óÝÆT]Öu5½I¯&oÒ ‰0üH&$˜$Q¾™|š\ßàh9ÁÑÕ#¦•ˆþ‚ FDkm&œ²0)'ï&¿pf4"½%Naš8Þ%QĦ3‚1Ž;³Ù–Yg,Á—„ >L4â„(XÇ~÷­³8‚NPÂUâ rïº&q:‚¸TÄ7‚F0’< õ1ÏÓu3%*6æýèÆ&ïêfü_·ò,p^Wmˆôgn5N‡|°@RаÞí!Ž îÜ<ŸÎ&q·ßš*ÛôñŠ\ L°ˆf„ -„ ñÒtYQÎçˢͥùX¬Æ¢KÇ„<]ˆe:¬@‹öcÖÝzcº"ÁU1*N†“J#ÂDò€RGºÏç· Bœ•;óÜe~?¯‹å´àH%LŽmãíqøP½±ƒÕŒÙ(‡œw&î½f€BDjæ ð€€¢IäaAF@@wEIˆ÷uQ•Een\v0‰‘R6;(Gš)ÝÛ„Š[Ng’·ÏÖfçRØþÑ­‹ÖÂs×ãŸúñ7ÿnåžé±iUwnpœ#@oF$)ç=‡×fUTEߘœµÿÊ’w#Â…Ô~¡UQúWï pÀ¼ï«­ÑHà°õ¢‹ù°åpßržRÚUÃÒ†é?ŽV»¦(Z=Víì+ÔÆaÌ¥WÛ‰×Ûý}Ÿ¦ˆÀç*rhJNHxAõ$axk6 ãƒw¹«rÇbt»/ôÀYŠˆ‡]Ôué`T¼Þš&ƒÑ7çêÜ‹Ôý}½ðqéA,?í²²èö%­:C½3c4žáÝÓœ{Ô£Mö§Ï,¤ÙötçØÓ”ºø÷•:[§Ð\–õnaËâQgÀ»Mmï\9›dºö±ïš¬joMÓš Âf[WP7njÁ›uí;µ/ð|¥½lŠ<+ÃGu³,*{ëçí¾…­Â’ò-¨ ­%>°_z:o>g¶ ´ó‘ YÚXBo"Q§·µoÅìå9ñ‚0ÐB Ù!MÖÃüjV¦1U6©…ïx›¬¨B\ÑÉBЧ Iÿ%[HË&ødu§I8.ÀÑÆF›D,#†$.J¿°HIi£ygFOÏw…À,ùâúÿË/.O nIv믾; €ÂÕéNGFR¤…Ã:áp´”¿7•mƒ–±Í°°U¦SMãOØ«)ñοîAÄ\à9OÜŒbâv5¥"rp•´¡p{ðçýæpƒüRÞ²endstream endobj 926 0 obj << /Type /Page /Contents 927 0 R /Resources 925 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 915 0 R >> endobj 925 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R /F52 151 0 R /F62 788 0 R /F13 930 0 R >> /ProcSet [ /PDF /Text ] >> endobj 933 0 obj << /Length 674 /Filter /FlateDecode >> stream xÚÝVmo›0þίà#Hël0Óµ›*Mê´/]5Ñà$h¼d„lI~ýlZQ-K»ªšªÈvz÷œïyΗGÖù¶DRÀÍl‰m_Ä)¡v”Ü:ùÔQŽjùñ" £Eå’ÀQê‹K0vÔ´.+mp‘Å«•Þ~V3¥ÍŠ©‚¯¨'±C¹tï¢kë2²ˆá´Ñ¸8ÄžæÖëöÛ‰…ík #&nÿ‚FDJjç–GYwȬ‰õég@£>Òx01 Gÿ1/ÄpGv’r}Ÿ©?&†ËEª­¾bŽáCôiZ«ºÉîüŠÓ^T¸õ7dF !,Þ¥ùº^˜C1ÏÒÎbÏI) D.ZˆËMœ/3µ µý^ŠIb!ì‘à@ýÖ¡V«z’6>}ÁššNÑÀ•!€¡6ã²…imÔLô¥ï·zÍã´è¨8ëò16†È›2‹«t×iY„áJÕߊ²ÊãŒ%#H˜c”û}½ü¿Õ«zµòx^¤õ:ù/D:žëÀpý.â”irÛ î#ßF£6œ×¿<ôÄ…°M´ÍÀ…€£€0cp¦!Ÿ„cÀ¼`¾±ÞÂE§Áíà€ŸwpmU $D˜d{%ÕòÓ(²1oe{øfvoµÄ¼Paò¤ »é·`-ã"ì¿çIG~ÛÛÍw¥–i1?xåŠÔ UÇzÛö¸00Møq<Ž«^Ò/©›xeÝŽjß§·n‚OR;Òô?Gïž‚G)þP¯«÷Ûü½ü`† `X#Ð`Ÿ=Âõ€º NÀÈÆ‚n‚#ˆx¾fö½*T×ÊÔQYè5r%uÖf4¸v wÖæ?\/„‡‡ž¯O3ßÎ\Ên–m©ÐÛ†¹f}Wn¶sUtéÿbýÕendstream endobj 932 0 obj << /Type /Page /Contents 933 0 R /Resources 931 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 915 0 R >> endobj 931 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 936 0 obj << /Length 735 /Filter /FlateDecode >> stream xÚÍ–]oÛ †ïý+|5ÙÒL9`°Ée¿6Uš´­Ö´­«&7!%ÇÎgMúëw§u*§k››(@8Þ0Ç™wtΤ¯ˆ’Xdc_Q?‘@æg£«€IF,…”õìÓ 6 NÊ|±pÕÓz¸œêªÉ›¢®ÂëìÂ;Ë<ð)þÀf \‚?œz¼«kê<ê_x”p• ÿ”€RÌŸz1ã›Fé]z_òD˜(êf:îΰ™8ÝŠ$ŒpF@) þ†@ƒº9ÑÖÊ`Mæ!¤Öß°—zØÔóÁ`¡›ï.ìtT/oJmŒǬ3!c1T¢b;᪨\Ж*à„©6³ Ý<$e Ú «¢*‹J_›@?b±"’ÔÔКR6†‘DÁ+—NvÓQ¢ŠŠ˜$Bpaœ­òé¬Ô‹AB“˜JéG KÍ8 Ñ‹æ²0c:+ckd8$=&p¹0 Z8š€KsªÇEUX0¬Þ¼Õmºå*õØ•ã¢l»ÚùíÔdb'Å5Š !’űÍÿUõ\WC=rCnÖ®œæEeöά8éñŒi¸$\ŠmVØ›XùñzVÖý¬0’p¶,T¨]°¬wÁÂp@Bçìµ°${Á’¾s ,üM°ü|,œ(‘n`¹ß ¤ñ>°à–K¾ –ûç`±7K|ð°ÀáÀ¿–»|öK_Œë}×GÄYY¼!¨n&zÞ·AøOÓäyˆðã8ŠQ÷Œ}¾e_´ö[äÿo7ù£{+Ͷ†uµhzTÒmyÙ¤ÝêY]æó‘ê¶ÔäÀ/Á—p÷~ã§iWò³±ZÜÛw˜½k~Wõ|š—|´ì“çYŠï0à|ÿ×Y'Ñæq&qCð†A³¯´Ô@”†Äyý +=ÏÝžs”M™…ŠË–’‹D°l{„+@ ĉk1j¾Û¦6™6Ç¢óX5kè^ª«õ­~x£þ«Â¾Wendstream endobj 935 0 obj << /Type /Page /Contents 936 0 R /Resources 934 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 915 0 R >> endobj 934 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 939 0 obj << /Length 631 /Filter /FlateDecode >> stream xÚÕVÉnÛ0½ë+x”b8QÇl- ôÐFÈÅñA–©X€–Ô–;__R”lµSІ03æ,|óDŽ®Sïêž ¤°F¤RI˜S (]L}…% BʉÿU¿|»I’t¹ öµ~ €_ç]»r7U¶^;õ‡.´skrmþ¢LŸ féÄ»K=@Äü ¯Æ%æ‘”×ÞOo:#há4ñŽTÌÑ«1¥(ª=F£Ñ¨¼ïû>Oh…Ç™®O£Æ”\8 ‚ÐÀ þ¢ÝÌ+ýG¤I²u>O„ó€³ò¶YwÜÕ=§GE)˜ ¦Ì&mÑiÙTe£gÖ…ûÅFX)ÂzŸ•î6«&…)¹u)ÅqJb\EÔÇÇ}ÌÝ6«_*½Nœÿ;Ü”aE„@!(Lc*û€N¯»‡ÒƳh5œçøƒÒ¤¡v¯¦É±Ër«‹²)»²¶›uNZŒNÎÒNe5, åûÊxÙ×4] AbA™kEÿÙ7háBæ;'ë¬lÆþãMš0½£Z^JõîrªùLó‘èè7¢wÍ0c±øìD‹ÏCt|)Ño—m;$ÏíÖÎýöÿŸhù/ˆ>º¦Ë¡È¢Í7µnºì°É «tËrí´Ü"«¾fƒò¬½Êº±t±jë1L‰ªª}-›çý+ÎÝÀ°8{6n™ŒûrÅx¿üd¨?Áry<ÞÿgZž‹±™E?CQ˜)ÅãP LºëåË¡EöØ[™Šú›á MàþfXáNO8I˜t%0|2åþøyП@§Î‡›õ¶Ýî -#ü_DÈ'=endstream endobj 938 0 obj << /Type /Page /Contents 939 0 R /Resources 937 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 940 0 R >> endobj 937 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 943 0 obj << /Length 1124 /Filter /FlateDecode >> stream xÚÕX]oÛ6}÷¯0 °‰å7%cÙCÓeC€kg MQ(6°%OqÝ_¿K‘R$[Ší¦Ã0øA¤D^Þsî幤ßÎFo®©ôBJxÌ–^ˆ=% ”Po¶ø4¦’N|€ŽÿЛ÷WÐx|µŠòÜ6ߥór­“"*â4™|žÝŒ~›ˆ‡áG*kB!Á$ñæëÑߣOŸ±·aïf„ ám¡ƒ Cê­Gœ²º³ý5úÐØñÁß¶ôÖ9N8b\ÒÚs @”uõ0i›µ©'ú+2¾˜Õ‰B’r^­þSœÌWåÂùIHËOÁ `³øK…”pÛ¥=ö˜$˜ I‚ÐMùÕ11 (¢ŠO$CDŠÐóC4Īûgy¿Šç–áÙDññn£óŸC!W 8¦`EZ”w”Љ/ «0m¡—–—¼XL§yüM)OÚ–0Kç¬ÓíPN½†šŒÏX ¦ }ȦsRMYè;Œi'Öï*¤¦al¹WÆ`Õ*sSÓºßÙçÓ„@²Í‹ÔåX”¸ëhÓã¯A,9áЀÈ),† Wè°v Æ*#*솿KF”…ÜX¤¡¾¯¢»-,D”Çó9G”‡ò`ÿ¿×ëûZx¯ËdnÊÆyZÐKz(eÔù;,ð³T¯’Kü³m¹PÕ›vìªÔ—Á$ÒC-J£ûš±ŒÊUÑŠNV>gR_bŠ¡ ÿ"ˆVç,¤$pûƒ’–½´]C[[ý(ôI¥Tð '= o.)³tí$´_YÓå~žæ'ð-¿“ïÁqq2€³Y¹‹r³;/-lSU²¥±+gùêYcc˜ô$;‡ ¼ŠçKÅòüX^¸ŒÙXÕ»<3ÂgÇצmžÇ‰9"ÿH8 Êqq à3•\ýâ0¸_|ʱ9ë2­ X%pz> ÕÁš£Ú¡°¾G$º©¿Éâzñª²²S®êú­ëć7—Õ·yZäçòpj6µ–:OæÄ‹¶Y\Óùo#h-ÕF`O!I'n™ŽQS‹‹¨É·³îúçS{£u瀠Í5b¨èœ|ôø>MWÖŠ^oŠÝ+¼µ”gº(3G-Tçy|Ôs;,o»rx­àþN{ý­¾e¨¾ÔK¸Ä³ `* óA„+»׉½úÆ•&õÅ2¤ãåÙû¥û"새©ÀS®lbBëc/ͱ·õ'G}•{—~Ý=èæ¿ë`kendstream endobj 942 0 obj << /Type /Page /Contents 943 0 R /Resources 941 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 940 0 R >> endobj 941 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 946 0 obj << /Length 690 /Filter /FlateDecode >> stream xÚÕWÏo›0¾óWx— ¸¶ÁüˆÔK»uS¥¶EÚ¡­"Jœ•ØœuÙ_?c›´ÉÒ­aaÒÄÁ~¿÷}ß{6öùØ9½$Ha©f<)q„!%˜€ñôÚMax>¡ÈýÀª£ÑW/¢.+æ y!¸Ì Îj3~QfMcºŸÙL½Å‰ËxÎÔ+Ô%QàÝŽ¯œwc¤¬ƒÑÒ Â _:Îõ-S+Á M(xT‚8M X:! :£t¾8Ÿ6~|åÈîéü^E0 ’Ä8†ˆ¢X³»!„z>EÈýæaäŠbjT«f1¹Ëò{cÞ¨ ¹à4æT¬îJfú'j ·¼N/C/ Ûx„À(Ä!ðqS$:\ëÖLSÒ Ó{lk=oTÕN·Hø¯$€I‚ðïIˆj‡ÃAXEe&Îj±j^²¬î‡óÙT¹`Çz'Di¼,²fr¯=¯÷–E#§£Q#ë‚Ïmm4šHA}÷ZNm”ÓM_W. ³‹™i3ÓðliØ÷¢‘v!|G™eVõÐ`«àmW¬Î¤¨¯=G±{û¤HSü`¹®ì÷üdfyκMdl¾´Š{‘:<±ƒó;ˆÔ+j÷ÏÛ Ësp¶O{NÇììl/§Æ'=©±‡UVr}Ðoþhå¡?ì=å4Óg…­ß©frUóÝú¸AˆÔ¬dKÆåÑÂKÈ×tP{÷?¨ìGª£k½ñ±d>øBšEhÁ²yw8T_=u³iŠÙ€ûÞ6fƧýo& Vçyòg™·‹bçú“¨{‚¿¿ý> endobj 944 0 obj << /Font << /F26 16 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 949 0 obj << /Length 1102 /Filter /FlateDecode >> stream xÚÕWÛnÛF}çWð)€j³÷å ml'- ¤@QypŒ@¢VQ‰TEʲóõ½)ÆRœ¶@aœ¥–s9sfvöj½}Oe¬‘–ð˜,bc% ”Ðx2¿Pɇ#š„~5›×°xp½š–¥oŠt·6y5­²"ÞOn£w“ˆÄþˆÓ&L’8]GEw÷8žG8¾0b:ñ­i¼Ž8eõbýýÞè¢Ñ±¦+ë8§qŽKn'T#¬t+´òÞÏÌC–gùƒwµXøgµ4^Ø ˜ìaYùuZ@Yn¶6Ž0#J‘䄃À—,q>Q*†#Ý·eõ9«ÌvZ[¯Ïäs/|ÂÃ?iÌ”•7Ñ ¡±@âZ g¡Ññ ï AZêÜgžHð üý6ý¥ÿ6Â% i®DËÖ‚w£u8E‰K”PÎ!ivÿ/&÷è¼Ì«^§$FJQÈ/ãH$‰r_i¤¨C7bZ™€Á)Óm¶©©Öñ»ÜP ±z®<À,Š 8­ðÑWúÄS¤Ù´²¦ìzŸUËðKîŸæÑ†áÄZÕ£ÙVæ Y_¬u¢´Ñ[ë“e4{¬œ¸œaVÔÚ×ÓÍh•ýij[óZs 4:úe±ËS÷t•UÏСðò·éü­­;`}ìûVhÛ #/ö^(w›M®Ï{]¿1 ¨²ÿ>D½0½DuÀaœƒcÚ@–¨/ñ¸'ã4düƒYÏL( ÉPñÁóÆÌÍâ+ݦÿ¼â†LÕ±ª²šÇžj¯Œã€‚$ëÀæ{ì)¤x’„ ób7NÑ)MdØöó9=ãq_3qíw<þ8”bÐùdÿiiŒˆ”ˆ'˜´ññÈ%î`¬¿Xö¡ÓHÜé4ö° ÙÃ’W°§•cF‘€åqŽéÿ-Ç—g÷Ûóú_&Sþ Éd_Mf™}1Ÿ«ó˜ù}ðùùsbîb´CB #«!¼²jœ´+ëãaö|ܧ;Ízú+Áäÿ|_­±¼¶µ¾Ý¥ åÞ4gjëõkZìá¼~)'=/ílIÝxÔI§­ÚâH&Bíôy• Æ ~êIzeÂëòÄ=LªÞð8¦q«Ú[1 »YmïqºÚ™•€“æT]ìU_ÔÙõ[ÜÙÓWˆ3x7jØ»ïÌÓf•¥Yuïè8âPYû.ý§»Õ¡4lxƒ)½”Áizi?8Ìßή0|‡ƒî²3ÁðK1}éL Q¦ù¹Cüæ/ mEoz¨;T¢kî†þ¾ñ›a¤1“gȱDR(Ú3 ØÔ‡Äm‹uHòi§«³»?xÒ¹ö%p¿#Œ}ÿ­ïHÑU¸­ºÚK\¼p;I4a±"ˆp¨Þpë°§_}g°\õ³¤¦ƒ]¸;݉ìÂ/Â?ˆ <æÊ¯(&ÔK‹!ƒÖ9íE{ø†ùôü`š»ïß*Ýúaendstream endobj 948 0 obj << /Type /Page /Contents 949 0 R /Resources 947 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 940 0 R >> endobj 947 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 952 0 obj << /Length 848 /Filter /FlateDecode >> stream xÚÅ—[o›0€ßù—ï˜cû¨ç½9ÅÜ@póè|ý˜#À0Â~ox“0 äÝùqš^„œRÝܖǹ.ûJËÂÊÇýéÔ6¿Ê‘y‹’@êLšW`Ϋޙ÷®ç!šª±0‘ŸM¼ŸÞåô‡ôÏ<ˆH˜ÿ`: !°?ñ(&Mgì}ó¾,ôDFQ´¬é¨Š‹á•¸°éÆ6¬9RZ•*×aÄ! ú¥}ŽM<¶…¹}æ#û©±“\´£YªÀŒ'ŠÇ”Ö&j€©6U¿åwÈ ù£z y3`t˜_!7Ñß’Ê\–ëii»kǽ²îÐe`„Q€bƒÖî(ÝárL¸QÅeÇ´À#ŒšA—JWˆ¯j`‰©Ñ ¨ac Æ¢“åwó. Ûs†(Ú5i·»§€î« ÑåÀ¹™JéØa11M7fc×à Jh'^Ì1 8Ám¼»`d`4‰Ìøæ8 DÌ96ÏådÐÄu:Ó™u¤êäÙl"æúUgv–ã°Zrz—Öù0Ÿ *‡íÒÞR¼ÒtÐÏ~¬p®{VãßȱÀ ‰éfÞ[¾²œÚ‚òÖÁ4Ó±—cYE~àªøÙW=Øq}:Ì‚”˜awQXÿ%Aø›ÒÝÉ©^\ת”E¿Ì‹¸Ê¥÷Y¥$F€PHÖ^'l1®m(}Óf±€ýPûdÛÙ¢@CôÀé&àOCÝÁ ÀÝ|áâ‹ÄžüÑi^†vÖ`î|, džÊkg^»AêÇO×o§™RŸûE©²±œ¦i=íZÞ›/tß#Ì¥õ>D& 5ÜžAc´¿}ëěݷ;¬}0±j_,iÕIûÙ? îè ò|¼œœÜ•ó½6CFDë6ÃFØQÊÇbæBT£M@íWþ­“2Þ³ð¬\Ws/A„<ý¶²¤èÈ]¸¹¤¹¬Tç:w~z/uU»¤[ùÍy© ÌÜÖ|"Ìœ„Ùb)ƒ)mÏÔ\l[£³ U ms0ob¿æ7R7áÿÁõº"endstream endobj 951 0 obj << /Type /Page /Contents 952 0 R /Resources 950 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 940 0 R >> endobj 950 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 955 0 obj << /Length 953 /Filter /FlateDecode >> stream xÚ½WYoã6~ׯP_ ¨Y’/¡»@“í èetÒ e:&V¦¼’œÿ})’r,AÙØÙA2¤f¾ùæàðb|ÿ3¦¡‚ša¾  E€`„Ãùò:”Æ3ÌÇѯrûû¥Y]–yӸ雪Øm¤nóVU:¾™_?ÍBó‡¬4ÂI( ‹Mð>¸¾á2€áUA"8 ?˜Hn‚'ý¢ þ þ:È™A³cIp‚GÀ±Y2‡ûo¹’µÔ…\Æ3 a´Ø»q“+ý$ÐüèàŽì7z xÊ„#K@ X±Hðóˆ«x*ö=a¿Hý¯¬[ùeÛZé¶§è;oImhý/ïíö"~ûãöǦPjvP€ Yõæu«ŠR6YfeÝÊ{ù¨åô¤>\bXo.«Ý¢ã¢›û|¬êñȬÏÉ7,À“aqØ„E-Û]­›QH¬TÝxçÊRv5ò…ñÀÙH4=½Ÿ‰Ó "SâÓ…ë°ùU‰$_‚Hä‰\TUù<ë¼¹}#cÊþ‘Á£oÚe–5­IÌ»Þ'I:.] ÌSÛL€Mg$õžzSðÀ”Œ ^±–Å;ïŽÊôœ)Ïbîoü†|PMë¨ôÈ™›|ûBïÁ“½WgÕÅ“{‚¡ßñY~¯¶îîúæÕ¤Û'¾ñîÞwpè3óíû]^ªvÿR¢á™DŸÆWòôÕnìK±­>)>‰ÅWîè1‰)r¹so“«èÚ ¡ã¬0P¸è¯ü&À#Ó€Ný _'!€!êðõ„ ÃsÖߎ®1Jg£“=vxJOHã TOÜ®eÁˆNÖ[ÆîÚëA¤ä¥i¨tÞzïšž^Ýi[_ízר"t”ã÷Ž×At8Šš©X[Ⱦnoë¼0Mì«Âfë ùáÕð‚0¥ø¼j>z˜póAIòéï’#Aþ=EÍ;$á6N° ¸$d ”QkœéÀº0–¾GílìÆy,p´óWñUŒH´ó;Ä ˆdf)s+ØÍV1&Ñ -vÓž£=ìïäáuö?Ãy«2endstream endobj 954 0 obj << /Type /Page /Contents 955 0 R /Resources 953 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 940 0 R >> endobj 953 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 958 0 obj << /Length 895 /Filter /FlateDecode >> stream xÚ½—ÝoÛ6ÀßõWèi€™å÷‡¼4]WØÃZ}È‚@–éD˜%¹–Ü.ûëwiGJä&ÎâÀ$­ãñî~Gù~½ûHel‘ÐÌ–±Á±’ Jh<[\&)–N¨ÀÉ'»þã|:ýšJ‘Øâæ¶=¯«6+*»ñßÏWYÓøîg»„‰Nl•[ø s&*Uz5»ˆ~›E$Æð#ÝbB!Á$‰ó2ú]^áxáø"ˆ-â0ÀˆCã2â”í«èKôç^ÏMúšÞúEa¨îÝBžNÆ89à•J~ñÍaç§Ózm7Y[oμè_X༮šÖkAâ"ò=K¹BŒROAFoïeQ­`ê•“'{Ê1˜u"y½¾K'œÅMUÚªíÄ!6D!I9ïäæÖ™æäÖ›,o‹Ü6~X”ë•u³²¶¨«±©첨Šî«_((r¦ùÜwê¥o—Å*|ú: ºEÞù&XD”!L"`š×õê©lì9ó²"Yã@¤ëzñÇpð0æöÛ6[íÝË‚eèsc•çh¸„_¾Ûgn‚åu••¶ùu7úѩٳjá;Mñ¯u1qîA½P.êíÜÙÜEïù`.A“TÉÕ(ž¦]L§M»)R’T7;Ý•¼‚I¸" ÌuV6#Ž0¤•`Aài¸¦(b\ g9Ä7¸½ €|d}?ßgÑ‹²@ã#³ày´T uRD?åÃ!üœ³§øð>Ÿ1(pÚ)bÞ˜Š”'¡¢O¸‡Ü¶¾nïÖv …âH„±®F,P= yöfaq®MÖ'& ˜é·EF4=Eí1¯½‘~Ê S¤µæGqz ®š9‡bD9hx[8ÊœÅÎ÷”€êbñ4—u½¾žgùß÷<ÄðA©‡yÁðM]¾zxÜn{Õ«À£ÿЦý„p)˜‡Ëc Ë9 äxP>ÚÞ®p5¥†¢Ò½²òpa¡šA‹]vwsÛ ¾ÂC¡³À®4f_žÜòy½mÇvCÊècî,ÄPÙ†ä¾Ïœæ…[‰›,Þ\W„±ÿÿäê)Ú½¸$<±àà/.H®dç×ï¶r¢ ™áÜsí,54Ù†cõ"%"Ù†/Â7DLžråGê{Ë”Š¤ÞôòÌw]»öCýÏÝ­vîÿ’™é1endstream endobj 957 0 obj << /Type /Page /Contents 958 0 R /Resources 956 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 956 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 962 0 obj << /Length 1034 /Filter /FlateDecode >> stream xÚ¥—[o›H€ßùÊõçk˜pì]/“º6ÃweºYÉ¢Iš¼,üûÉ­ó~âÃÑÚx„8 ‰›®œŸÎÝ=v3»·F,ÜÝÂ#ÇÔ]9eídé|s¾ìôŒ@Ñh_Ó•rœÓÇ)L#ã÷W9—•,R™ù£coöhž:ˆñøƒ,Þÿ¯Çãu•ÍÌ1üRd,3‚1­8FC¢Ô ù{ež™lXõßý{2X4×%¤&/d–6õb:KÒÌVe3-‹º1Ó¬ÜÌ–ÒŒß(_Œ+½ÁÊPcãŠRh¢#¥mµU3N[ÛJ•& iháwrž¹.šÞœX¡%˜Q@­ò¹yÎó¥]ùÞ ¥)2ñT V uRÆi/ãÌf|0¹uþ¯œ6kù|ÔÖ®:ÕzfŠqœu(îâüRîÜå…ÊѽŽx´[´•1‘ûÉ;¡.ìĺ0>µ0‹³ëraM¬e•4euyy°°.ךåƒwÇk´³LP̹)åß²jäïƒCwqÊɼ ðXÅY¢Íöõn«¼‘’I‘õ¼øôçômæù_IÕäéRÖVl*•Žgà bå=xƒ·‹z›¬;L¶Ø^a|zÄb†h„CKlÙ, k®RèóB´\?Ñs ‚> ? Q(°è·%íøY‡ѹd³>Ùµ%zZ$+Yy55DZ~Ññèm1V‘>R‡ÝþæÜ3üÅàhP;rê&˺©|"<™¬žÆ† †"ÁvØ(™c?!UpAS»ér E1»A›OËM3 Šƒ½X°}ÿ·X úÀÙ€»6k«Ÿ· ™G%“,™µ@5zx¦”œ}3s:“G­wG’,²7¯»fwíØŒáXtĵ¸ÝT9صïxo ‹ÝW¹Li'7›"5i|<Æ{¿fÆ"ÖÜ\›³Õï^.õéQàƒâ¡ÞÀ逽3ZlsÚ-öì>_]†_w»Nv{ÖˈÑUV–¾EnKo£Õð&vð uí¶W媓­¢å²ÜæÅÃÐ-«<®Çz…@èA¤ÞN8âq`ÊÀÁÆ BÄ6™C”ÊC “^‚PP0LAŠâ~G3Òi:ð àc€0öúO„=EWöÓ&„O&ô­ˆ˜07"nšP»ü¡Kµ®¥yâÇÔÛØ.zëîmì 7ÂÇÕ}¥fjFsŸr¯¬öº´ªCiŽÉïG(o›„ÿ)’¯endstream endobj 961 0 obj << /Type /Page /Contents 962 0 R /Resources 960 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 960 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 965 0 obj << /Length 606 /Filter /FlateDecode >> stream xÚÍ•OoÓ@ÅïýV¹ÄžÎìÿ­‡–„ª ‚å`Ümk)±£Ä­øøŒ½IšŸrs¬™7o~³9\ “c„NÆ·‰ÇÄ(ÚÉd|óct~ŸÏš0O3¡qD˜þŒ ¬³Ôv`’i Ê Õu|³Oç±þ²œ„øô®.¦¡jò¦¬«µ)ʈ¥ˆ‘ 4¿mEÒŒqt^Ogù<%7 ïCuñ˜ŽX Šâù/á6Īqˆ‰oZÕn†° ÖÝŒWeULn–•D•Z‚õL»Â7=Z¬rvYPÖ‹fòi’²à® ßö(ñ)=Hc-?Y0B©mw™aÇÕ“È"rhÜ·‚íÁb«|¹õYOäOàµ^ñ—̽ë$>çÓ°˜åEXô8& ^µ~…‰í÷ãŽk!tšiX­z×s6°!X©ÜGŒJ›Ì)0޹eêò¡*Úü ðô«®'=v‚SfËÎéiѸ˜±kÔ¸õ6~rµiÅ5z©z(ûFƒwÜk^GñÿóZz/öe³Ô$Æó†ZÅAL™TŸÎÃß¾–wU>¹ê~ÔœˆÅ7¶ÈçMø½3Ž5»¸— ÐºOT$*@oü*g¼ïW­­|ޔńegäA ö•ë Ú ½‰ï©Ñ£PÞÝ7»3 /€ÐT„À7‡’†aI ¯Ài«* š=/ê ë‹¡,ö¢@ü§àé°(/ý}xézÜ|ßCÁ90DûD÷‘ž8ü[Üð!Hš}´Å ÆÑÅøè5?ƒ3endstream endobj 964 0 obj << /Type /Page /Contents 965 0 R /Resources 963 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 963 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 968 0 obj << /Length 724 /Filter /FlateDecode >> stream xÚÍVMoÓ@½ûWXp±%2ÝÙT Th‡¶×Ù¶–»¤Iiÿ=ã¯Ô)’p‰rØ]güöÍÛ7ë9#®CNÓ0¾ FPy8žœGܰxÀ­•.úèï>ÑB±h”M}={_¤Ë™ÏÉ"+òør| ý°S”Ц³àGp~ÉÂIÀ“€pV…?iÁãá,\´‹ip|Yá hÐE:lx£!5o‰sÊÃÔ¼‘È‹ŽŠÙ]2ÑFþƒÏbd1†Û—¹|õ×¾ŽËS_ær0R¼£ ‘à„UªÚâu–§Ó変DìD*ÆYʦ |ÛƒeÀHkš€¬¸_Ì}2ëA’,gmà»$JÒÐÆÐÌ€æR®³hÒàUuxUþUî¯j¤RC§o$s¶‚øœÌüý]’úûžmQ€“妜ƒ`ºVý‚sm˜·ï®öéäÎÀi›œj[õ°X ÚrµNj´ÌÓÒk;pº*ŠiÉÀJ½Fg8LûMSå‚)¶ö´>7Ù¥bÐhÕ ^0&ú¶géµ:æM þ`IS*Ía‰,–1¤Šv@¦“dN*£ìÓ§âð»gÙMžLO«EAޏÿF‰ã|á7…¼ (ù&ìÅ¢à¸Ïª&9ívQåŠö´¤•ÌY:¥BÙX tÀ™r{åã53­j %¾ÇZE>»¹]l®:Èì^¹+ts˜]ܰ*‰,õÛ¨€t:Ü+'(íÄN5±[= “`•‘û¥qBº®v¨‡?]Ýç=*X që>à³×” ½ 6oÅxÑÕYjßPˆÿoê:@mO§©‡¶ä"¸K”Ãò[*®8Qš~ž,ü¤ÎššÎjÇŽG˦‘;‰QEËæU¨†Š ¥©Wœ!¯g×1WQ1ïœc=½zjÜǧ¿jmnµ©endstream endobj 967 0 obj << /Type /Page /Contents 968 0 R /Resources 966 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 966 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 971 0 obj << /Length 639 /Filter /FlateDecode >> stream xÚÍ•MoÔ0†ïù>n¤Æxì±c¯‡ ªRiÄ¥T(M¼4R6[6YAÿ=³qÒn!,´¨å0q2~O2‡YôìXæ¸3d²s‚¥¸– YVžÏ@p'R‹™oòËÚª1è¿ «Ú‡»÷~á×1Xò+¶R0“)ÄÙIô*‹€ º / S®•V,£/Ñù…`e$ØID¥œÕì+-ç$[F(Õ¸¨£³èô6OB‰’ÝL‡ƒ@®ÐÈQŒ$mé®âbHAÈ ÜiÝg¦Ú”X¥úÌïò¥o¯ó·Á™œî‚âÓ”"$W„½|”Rlj¦­4cìm»ÐTðT¡¥rÛ˜7þúíÑÖ‹%Ær‰H@Òž™³—ÓÎç¥ïòªž’“€á¨,²D)ŽÂÙ>ßQ·íc$µÝzStz´äVÈ]9ã®æó»#éãvëÑÑÔfˆ|>…ЧhGR9; jpxP2K-¨ñ©JB=äP¹Þµj:¿nò: L‚Ù´¾ wÝ*ØÒU9ð& ½Íƒ)¶‡7ƒÍ×Uwµô]ULHÙR5H‡šHâ §ñþ|´¿ˆš»"a–ÊáàAeüA(“MäSÀ­¸—¨ÑôM;ø3¢÷áíPËO?^YµûèÑ''¤zâTTÅ ÷ ¼¼ ö¬Z^×þC ôçõE·Z?u‡ÞBVÿòý]äu»·Géwfö÷¨ãÒ"Èñ?!þÃÌ´4»@©¿™;‰Æ‰ihB*;Là€©é)¼ö_çݨzÕŒ œm]'Û ºÞè`@ϵ˜cVR€ w‹XêÙ)L³{8_®¾Ý|öÍ(ÿ;ËvTendstream endobj 970 0 obj << /Type /Page /Contents 971 0 R /Resources 969 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 969 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 974 0 obj << /Length 962 /Filter /FlateDecode >> stream xÚ¥VÛnÛ8}×WÝ ¨^DQ4}Hj· `´»vóÒ*Ó YruIâ¿ß!))Š#cX)qæÌ™«x¹ñ.–4ö%’1,›/±/b‚8%ÔßlTÐpF“$’ÁguX]ÁÇÁRçÊí>–Y»WE“6º,Ÿ›ko±ñˆáG,ˆ³˜øÙÞûíýø‰ý­‡ýk#&î?ÁFDJêh²þ!÷ÖÞ_Î €fc¤ËŽ7‰‹bÚ§à‡p¼ FQ8#ã@=§ûC®î.[o!WE³¬B’å~Ui“= ,;uíoµSVH™2®],9… 8QX¹µø‡.²¼Ýv’„Œ$9CB&àœüsK %¢ÐeÝT*ÝO E%÷‚&Àg‰X,ìŠi½f7‹!$ïl./>©bñ±@ï’ )A’sÚ9ÈаL,IJ-2“åzÂ*aHFÆ&¥ˆáØåà–RÎ8ØÓE3xQbJbÙ‡eŸêÂþs 2Åi%(!â53“lDºt÷4ÏÔç “Dà.1! X†·…9G.~U€3$\ ®øêù„m!‰ã%M¨° ÿµZ߇3A“A|\«\YÿßʬŽßŽÍƒN¿ùqfø€e L9¬}„Á&”4(m…8 B@¾×º¸ÿÒ(àQVõ À L28¾‚G8pÔªÚ’ I0¨ÜbLË‹^ÑQÂ=bÉ¬ŽŸUõ¤ïCÂgL q¢ØûuîÜ®×ÌéþË×SÉFÕ³sBÂE䪇ñx£ªF=Ïçév{wH«Fg€­‹~¼?•Ÿ,ŸI²m΢XÞNþÑ꾕œnP·Ñ”ÅÍkØîýjuÎÚÁÔÇ¿¢ƒ¡ÍZ5wµ¾/ÒüîP•Åzš¶­ŠIÛmý¦ý¡Ö°îaÐÄý"‹aìÿ_/F@ýí"†ÛKì— Ê4‘„ù¾ ‘ˆ-7 oºUu¥Þqìøl»;ĵ鶶;án!|Îñ<î‰bBÝnR@óÙ‡Ñeë×±ÿ”=ïÕpÉú)¨Ÿendstream endobj 973 0 obj << /Type /Page /Contents 974 0 R /Resources 972 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 959 0 R >> endobj 972 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 977 0 obj << /Length 618 /Filter /FlateDecode >> stream xÚ¥TËnÛ0¼ë+„ôbÍ7EØi EÝ’ÀP$º Ó©©ó÷]‘¢+'Î¥!P”¹³3»ÃÑxFe¬‘–°ËXãXI‚%4.ê»ÁH$)xdåê©5‹ésB`gw·¦5Õ®Y[TUþȬiûa–f“ ÎUÝ'‚•QÅ’‡bM‹ˆÄ~Ä¥ &I\­¢ßÑÝŽëÇó#¦3ÿ FDk¯"NYØ´Ñmôýˆ“P:DšôÊGŒK¤QPª†ÊÆ’zÆ3A"T!– áÒ|jlÕîk–éâ‹yúz9¾ù¶¸6vú ©Ð¯‹¤ # IÊùûa¯b¼@‚´´ÏÌâXgâ²-·[³=C‘0¤¹R@”"†¥¯Ç=¥PÙª.ð˜à_—(ëøawþf{,×õz]ûóœÆœ—¼;mGRCËRè‚æL»¸¾Ø¾˜§©ZR¦V $åÐA™);Û[×–ÿÕØÝIŒ£ (ö’Vec=¯{,0<ä,5ž¡ŒH}ZíÎNˆô† <=ØÕºÚ¯ L¥ûô–Dç ¯1 ±:âæ=voÜ7Àº2ËÆ6žJg¤rç×¶±½µ˜òëzé×¥3º<¹¯n:gXw-º+±õÑαy,›ç¦[v¿z4› àsÏÊÖ'Ap=&åÖ¤Ç<¡øÁÕy¾1e½°æ°[8܈Π˜ & aìãóeÆ‹„q²0] i\IGt›M¹3µïX°B‘h:Ú÷æŸ'DŒöý?ý”%"8çÊï(&Ô¿-*Fë߸2ù×Ç—à±ÃËOcƒü¿‡êw‡endstream endobj 976 0 obj << /Type /Page /Contents 977 0 R /Resources 975 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 978 0 R >> endobj 975 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 981 0 obj << /Length 1158 /Filter /FlateDecode >> stream xÚ¥WÛŽÛ6}÷W¸é‹ ¬¹"u7Š>ìÆ{m7yHA–h›ˆD©ºxí~}‡"©‹­ÝÞ`âXœÃ3g†Cúf=¹¾#ÎÔG¾õvêS×ÁÈ&˜L×ñ—q­ù‚xžåÏhþ| †mÌîXBåè}Õ)åUX±ŒÏ¿­Ÿ&«õO øàÌv‘m:x¥“?&_¾ÓxbLŸ&2}Ïž¾€a ìûdšN,bj#™|œüÖâ,hÑGºQ¼±…LË!š88\ÉÈ™/°a3z Ó<¡Áóé/l7Çö EÑy$è–sìÍ(¨ˆäúÎ&=e€q‘éÙv³ÀŒGI«™÷fÚ&r}bi&þ4‚å"×ò\5eeUÐ0A²\äCOüy Bô‘é¸.Œ\ä˲[8 À»&u×2üÏE˜ç´@ûwN„õ·Ž¿«Ÿï/œÌ7î)_ 8þÍZÿÅçaõëêÓ:F& #ß¶‰ÊŸi"Ëð½è®æ‘¨ÙrDTl"ß’‚LÑõ•{¾°aUÆ«vÎÉ´çø:ëiȸ¬«¯†mÀqZXò°;d&JaU¼šæ+»íŒƒ¨Qàîf©Å¼˜×È]Ô{kIÉo³4‡=³LæNý\éç^íg(¨‹,R(Å‘ärIÓ aÉY‚›ŠÑèï.Øã®£æähÆGØ$…ØM| ¹˜4ª²â$ÍÇŠô)ïJÃïMPwž‡,ž:a§šIy}ÞU=Ò±‚}äZVÊ‘òìôj9Pce“é7^§èKÍ8Û*^Œ*¸mVœAÉíÐ’iØã† Ì­ŠP-eiª—Û$Yô]­\PÍ3OXĪDÉÓ-ã4æ;ÊŠ‚–yÆãó:ÈJ:¤ ¬K Áø9oÙž›ñ:îóÇÃ@*“Êë”Õr°£Õ£m͹ 1««¼®”®E–^®¦I¨NÊK«gL¯t2³M¸ÑµöáAPÒª é\'™ªC˜Ô:ÅÐó„̤⇱{/2ê®xxù’#b •ܲ„ª±«ã(Bck4Ç£8K,ØÃË%h*ýn‹¬,?Ò¦Yé®r5˜ú;P,—ËûÕ§«±€÷/›åÊŒ4Ú·FÓ¨3 Š[#Þ‡qÏÈ6=ãpj !ÐÕXòáH×̓ÌuÆW­Áv¬#—ÒC÷\:rõ–Ó΀Ľ²*¼¢£ò> endobj 979 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 984 0 obj << /Length 1011 /Filter /FlateDecode >> stream xÚ­W]oÛ6}ׯº˜h~‹†Kê$ ,[½î¡-U¦[²äIrï×ïR¤ÙVÒ¤‚@´Ì{.Ͻ‡‡ôÙ›]PéG(’ðX¬üû¡$HPBýÅòý„`N*ðDß§ëM¡“›Ýí®ý’§(Ëìy¡íèO½Òõ”¨‰.3óŠ‘PNh(¦×Þ|áÃé’ˆ &‰Ÿ­½¼÷±¿ô°íaÄ"%ü¯ð#EÔ_{œ²þCá½õþØã ‘ÎÂã’ö„(ð ‡|ÆßAXÌ.T ÒÓ1%DþS^fÅvéf2˜) #<º‰¿Œ`…(ä*tòªik®GxˆÅýÄ_G€^„˜ C…HRÎWH`ÿêJonÎg–úßuºÙè}yeà ­o¾ù=¹šßÎß-N‚Ø“A—ºœßé²}a®ßš,ÏoӺͳB7/ ~4áè:m=®tñP«(‚"!¨k:có(ê΋´it3ÒÂPÄM(AJ1ÙMÿ@©˜re&pŸ`Ð` F¶ÁošËªZÎï¦[¶½Xm§¾‚8É»¶CÁ^ @þ°­&Ê­žS8,Bêœ#ŒA‡&öb[fm^•Ï ‘»«òå7Œ—ÊqÛtT’jÛÚå}ÀÃ?éú0…˜€} tTtœÁTÄdéBT^Ž áB<² gÂè)“¾]I£ ÝÕð‡×µqâéêòÒM_§cÕ9Q‘ˆ3Å{‘«½m"⌳—…{]eÛ5PM»W§-7 Z‰0 í±¾³v³ yàÀ/Œa‚uú¹~¬‰ra)l„¨¢N¼Ój6r* 1¥ ¨ê‰rsã^ov Ñæp8÷YÚèÎ#ãN´er”‡tyJ}ß&ÚØôx®ÞÄã¸Ñm’† '(Ú³)%åN;‹µNï“r»þ¤ëðë\7ÏYÁz“ŸNM6XÌAÞ&ÿWW«JR!¥åò‘ÌÛF—okZÑÃ<-‡ýigŸÆOw/3›*dÃÝKÝîý¦·œÜ–:'`ÏÜ,Jüß{¥“؃±U~<öÞxïH·FÚþp´T÷è¬àºKûñKð¨¿K¸ó2Õ_Áqyho  ']§­vžÛÛëbÑÉÖ]®oÝ7Â>ˆˆ޹û9@1¡v´šR1©jû¡Ó¬‰Ùâ~÷Y—=ýÿfCƒendstream endobj 983 0 obj << /Type /Page /Contents 984 0 R /Resources 982 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 978 0 R >> endobj 982 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 987 0 obj << /Length 772 /Filter /FlateDecode >> stream xÚÝW[O£@~çWðØ&2Î…†Gµêš4«+ë>¨!H§î$å² uÛýõ;0Ô-•²cLLÓÌÒóûWÎQ`žbÇd€9êæ&ƒ¦ë @1Âf0»a×[Øól6:çùôX ŽNÅ‚ëÛI/ž–Q)²t|\“À@&TTƒQPâ 3NŒ_Æí=4g4/ ó¨ù[  ư™6&aa\WÏ8–²¶‘Ž:ýÆJtµÛ @Æ‚ŽžÆŽ21Ó>çëò§ˆB‘jñR¨¾¨òþðÔÁ[¨0æÓÂ*#Óz²Š’|Á¥¯ßòÛ€AÇ1-Äö°[+ÜAˆ³C®ÕÂéú²6âhºmQy¤ 0S êÙ5Ä Ÿ‹TÔ)¶OTês!R®oR}Éæúœ×%ªnû,«ÔZȶµ‘o|Î žÆ\j½ºÞ¾ÆÓÉ“ª°ïóêÓeòÀ‹MÒ‡ÒYKéË×ð(’Üz¶ƒ£T׿xIéûfaÊWeXãnw\#m×+k}&‘H[Š;õP0Œ=w»+ìþ®³eù™:ƒ°ìŒæ·¼Ô6Ž‹LÊξ¸æqG·þw¤jš³ÉMó¼ŠZ#ö*L§ÿïXEµÕ­níõ=±K^†qTØ•싪òÿ,žO.'7A·¡E”ç¼ÐPI´j€B…Y._ã€i´;󔙪¿ Ŭ׵–RüáÙà8dêóuò ë¿éÅ´wöá@ 0íûͽ†Oû^òk{•äbSt‘BGTo¦ˆ—lЙ½>Šx §"Tã•"V³ó¹^'BCÉbg%ðÔ»?"äíÁÐf!pÔ@¼*>‚ ð"¦‹²]§Oõ/¢’7•Êš 3> endobj 985 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 990 0 obj << /Length 479 /Filter /FlateDecode >> stream xÚ¥SQo›0~çWø¤áÙ&†Àc2Ú.R´neÝCWY.†É–ì×Ï`Ò&­&Mïl÷}ç»Eb½¿b> qèk“lPHPàSÌe(ÉlJpฌöiÕ” Ö‡ÛC÷£Hq–™«¢³úh:·Af}È£o³ p“•'EDtHÂÌ=Ÿ¢¬²~ZåA+‹`/œsô[;Ó0d¨²fÌ;:¥ug}~Æq5{Š´èõpv¡‡i70r†=;å¸>!ö 4ëem¡3¢–m­Ôd]QËï„ýÓwgG¿Ê¢SQtßñBÜ^¡¦äRŠCÎM.ƒø&Êz}þøI,RË2Uz·…4ö€_ »¤‰d#À5ȸ?E :‘õj„zKÎù…!¸PC‡rW=A; r߯÷‰øÖ¦M­ªÒ½0w„Æl P¯˜¬Þ +UleZЦ­õ»)QäÿÎB ÞˆÉ º¼åR*óWª³S vý£oà‰¦žë÷ÿ=}´GÔ×=ìÍ-M1þ Cs„6í 73XKc'dönÌ•C¹½w¸1”GœD³qº¡Ì¬6ãvÝg¨ƒY>ŒýPï[Gù¤"Æendstream endobj 989 0 obj << /Type /Page /Contents 990 0 R /Resources 988 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 978 0 R >> endobj 988 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 993 0 obj << /Length 747 /Filter /FlateDecode >> stream xÚ¥U[OÛ0~ϯˆØK+­Æ—8¶£i@ Cª`£c€¢:)—.—­Ý¯Ÿc'%-)CšªÊ9Ññw¾sùrNÖñ »¶ÂUÇ"²´™‹ÅÛ‹åÝ3>ž`Î1º«ù©2(ÍâDš§³<¬S™UAçÙøaqiM²¡ú! F ÄEv˜Z?­»h/-h_ZÁ©ý[ !°Z&‘X7Ö×-ÎDMúH'-oä⸸#ŽUÌðF(âB8’ë ]%ÒŸo®7Õs\eÉf1x”ëŒ@î'õMF²#>’Y(›¤Žg÷ФØ`§TÇúgaR/[O„zž”&¸JK;~Àb€9œµq^V… Ò$‡ŽaçøyIe+qSO ¸ØqvÙM\UŒ#ó±©Ä"X­dž¸&­^ürå_L¯§·‹W—ÈáKç2›þRCò¾@†Û…L^¨™f# (Åm\Ìê,l毨 "@8MM0ºf:î1¦ã UÑâ¬Úx¹DÀ]ѵ- âÌ Æ=¤Pýѧ‰ÃGl—Y3†µƒØÑ< œ=Í)î’Ò«á­a‘{5°=¬3ÅYl¨4%*s&qÖ6sæ‘9#­ ÷š¶JCýÕrj¤TíìyO²2§E^–7RצKâãŽëwŶô¼óémû¾¡?ÙÆêš bÄ7Qæóöõj³ Šr×GÍ÷IPÊÓ$(•«ÒâÒß‹ƒtœL®+_6C=«yÏ+eå‡M†~ùVŠFUþ`R­N V¬ý¬Neá+ü"–å{¤«øµÛ`°™¸eüG摯J’ì!Ùò@五Ãå«›Vt0``opµ !ÿ¿6z@ÝÖpÕ– \ë\©‚ Dl¦”å0WsSôeTridÕéU¯ŒºÝ—cDUÆ æ@Ô£Ðs˜±0DØ> endobj 991 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 996 0 obj << /Length 1229 /Filter /FlateDecode >> stream xÚ½WÛnÛF}×Wé‹T«½“ŠM"Å6:u„ö! šZÙD$R%)ÛúûÎ^H“ÒúÒÚ) ƒKjv.gÎÌì¾÷Æ3*ûŠ$<æ«~„û$HPBûóå—Á(ލÀuo¶kµø´¯®ÓøsU I8Pñæô%‰™¥keWj¥¬@–èO˜I2 A4ü6?ëMç=ÒÇðGŒ9 ?÷“MïïÞ—o¸¿ìáþY#…¢ /‘(¢ýMSV¿¬{Ÿ{4zF hÔÖôÖEF8b\Ò:4 ‘íÈÆ/ âÏm!ŽÐ…ŒHcæ§4KÖ»¥“$¤%) ¢"2‚¿xt(àaàVeU€SEœ 3âä~õ(‚8à‰) I9eçÒüaï ŠƒÇ½‹“AP{ǺÞ$$é͉Ú~|7¶9ú«ˆ·[U ë7ZÆÜV{ãéùâdúiúçüßlú ²éʪ£=^­o'j}ïš%!A‘Ô±ƒ $9dB+˜í²¤Jó¬ô BŠ¸Æ„êTDÖâWJÅp$ÀÚMž. -´1pA†íÛ"­Ô1­-“¿b៘ÈF,DLHM°…òÐÜà6i¶:UËg©ÆµNq 3Í*+¾‰Óìxã!v#"g!ïB¨ëWÉ5žVÙû<Ùm {±ùtŒ•.U*%oijt=éÝQÙ]6OïÕ*ÍRëŠæF\Ùç:Í[±Ï|eŸ+Óa¤¯Õ­ùxkú‘îE¥Ý]´ÓbvÖ^ÿì\É–vÑ%GGùÑb pD-êÐúïüÏdH` |Q‚‚С9µˆ”[€z„¥P"DCêx‹1ÍÇöuäkDT€2ÂbP|ÏË%tדLÓ…&“º M&I‘—å¢T†å‰=NËŨ±bêÈ–ÌM¼N—OmÖlÙ ÂÎÀåÞ>u‘?‹ý²Í~æeÿ³»îC=Ä’ÁQ§Ë¬+•©Zvåø¥3áØr›V×veÛõ®ÔÂÇ…FCˆƒ-;*¼ãÕ[#õ¾§tX6Ü>FÀy ³&¶¾š­`œlŒãÓVhq¡îÛ›]AÎíªºVžøH‡ Ú7ñyìÃ, ¥Nêu â> “ Ú÷$/œ÷«"ßt¼×¹ˆFº„ž_Ì/~ûÝ•ƒ9ÁØu’o6uK2ÑNw£Ù,š³}…£Z\©«½¯Í¦ïòÍšØN5íj¨‡œˆ‡œÿ äíÂY¦{•ûƒÎRí·Mt›ø»Ë CÄe—Ú´pu§¼^§¥Ç]Y÷t{Pn’t:>÷!=Íï9®3ª½'G¸ÁáæøJÑ=Â¥ª ³a/ƒÜ‡0º»ì5óªÞ“ÜÏÐÔ=a–\ì2œ!}q³Æ>ÔøÂ‡).hÄ^·¤Ûákwʃ3#ßÖqÈÁ„uY¤SX©¬™:Ç!KÁøKRý˜/í0aìåwö–¢úÊ.ÁIÖ7v8×3÷ƒ}ÊMÙú”?Ft°s·ó³!ƒûEØ'<°ojW«!ƒ¼°/¶W™¥>ØëÃÝÆmþ?óEh¿endstream endobj 995 0 obj << /Type /Page /Contents 996 0 R /Resources 994 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 997 0 R >> endobj 994 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1000 0 obj << /Length 626 /Filter /FlateDecode >> stream xÚ¥T]o›0}çWðH¤áÚæ1mú%UÝVÖ=´•EÈ%Cãk˜¬É~ýlœ¥IK³IS]_âsî¹÷’3M¬“sØñ@…$·9¶Ã€ F µ“ŃC#틦ž<%×Ö,±ˆÕ‡ d,DÌ ˆUÖëá Û Û×F˜ý¬ŒçÔ®,Ÿz’Òº³>íx\Eäî3Mµî€èFœžz üȈŸ­Óª-AÆZØ«F©8Û%ÑH?S€GŒis&>núoEz×w9VW·(ËábûÅÕ$åÃqŸ dgu1ÌÅ 0vÒÞIJ¨Áœ|lb“›˜cÕ§7Ê«¡¸$Dõý¡ÒgÈ¡ƒ:iÐæâx ½ÁŸv”wi-˜aõ%®~QBe_Ìî·ÏµrwW‹ ÎjÆ£,77ÛÇí¦M;yxçêVLS §e*ÕUÕ×BÔ°îÅ«bfðS½Zãµ. žé_ãXB/2Ý¡ÇZ<¼_NÔ«jÝ8Éåìãì>_»´m¡3TUºÞb„‚wÈ·ØÑQ¾UUµÅ¿ˆ—ŲNKÑvZ¹Åâ4ÒÕé²øM.ÔÊ¿Õ]IÚJ/}ýÜ=ˆ!jïó²É¾‹9,‹×+JëÅ8ð¹½°A½kþø_c[`¾1±J_D ߊ”AÏûÛÚ#šnÝ6@<ô"mõPĉ²-‚ˆR3‡.íµbí°Ú>tL&œ:«­í^OS“7 3°˜áØMF1¡æ”O(sšÎ${&®Ga,|½YÂμŒƒ¤0endstream endobj 999 0 obj << /Type /Page /Contents 1000 0 R /Resources 998 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 997 0 R >> endobj 998 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1003 0 obj << /Length 815 /Filter /FlateDecode >> stream xÚµV]oÓ0}ϯˆÆK+QÏߎ+ÄÃ`…MB|¬ˆ‡ª¸k¤Ô)M:¶ϵl)KâCUe§¾÷œsëSŸÌ£ã•±FZÂ0_ÆÇJ$(¡ñ<¿ŒO¨À#s“®7¥Y|¬ {uÖ˜mÚTÛeYXž¥ ³fi¶c’ŒŒÍÜOX*5¢ ™ŸG§óˆÄ>Äs …“$ÎÖÑ·èò ŽóÇçFL'"þ @k¯#NY÷PFÑû;œ MúH'mY„#Æ%íê¢P¦Ú+‹`üÇuA1Ç3A{{*¨B,Âs<)lVîrH–ÀrôÚlÞ¼8>{»xeìéµ± Z9—F’”óÃi¿›ãEÒ%R:óÏd+¤x¢Ú€uÚ¬Ðj‡ ”H¨,„=À™h…8¡¢“Æþ±´´¼ª¶E³Z? 5¨ŽÝ ØÿÚ¹²¨›Ê&ø'e®7 ÒBøÞœ$q¡@cˆcøÐeZצ %É•‚n£ˆa:ú3¥b<Ð2™K¼ã¹Oã%®ì ä¬~·ªšÊ†@Nã%÷z(ARS·S˜˜ö í1 Gᇓ$9á0ñuóAmâ¬þ´8©êAw(ÿWÀE“6fVØ´üú/”i„¡wâ ’Ð".w¶³YSTö^ia›Z‡# nØÜÂ]Ÿ±Àð%ƒÒx‚"õ~¯y;D¤5ÄNh@{Ye»5XOêz¨‡­Ö˜õ¡îÀœtsHß í½4ËÂA‹sô cYØÖ… cµ ãÒ»µü•­£!õÞî|½ÙÞv§Ó¬ÚÜ.Še§øéÞbnêÌØ<µMÝ.lö6)@ºÅް{@؆tÆîƒ›"+M½øj® ;L9îƒ÷˜HŸ©÷Ï3nóÚõþ0 Dž¤µñ¡&ÍÖÜ4 ãrP…¢®©½6NíÚR›?–6bëŽî \"cµèu7 7 –t èv®¤×Ú]§™<´zwˆæcMG»Ö7ÎÇDŒvíŠS§\…'Š ³å˜ŠQµ ~Âôëmw:on¯ŒíÊÿ$Þ€ãendstream endobj 1002 0 obj << /Type /Page /Contents 1003 0 R /Resources 1001 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 997 0 R >> endobj 1001 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1006 0 obj << /Length 729 /Filter /FlateDecode >> stream xÚ¥UÛnÛ0 }÷WÝ‹ ÌŠ.–%ÃÚ¦+ŠØ%ËK[®£t;ó%k÷õ£%;u§0L‡<:$ÃÓ©3º ‘«Šà˜.]…]Ä)¡îtqëQIý€J*ïRonÎÀàØ»HWÚ>çI½ÖYWižù÷Ó+g2uˆ‹áC ˆ³ˆ¸ÉÚùéÜÞcwá`÷ÊÁˆ)ÉÝ_``D”¢îÚ )댕óÍù²Ã (è#¶¼IˆXÑŽ8…<„åMˆøÁ{ú)^oVz>óIc%U^œÙ{[xãé¢î(Iösûª—ºð‰ôt–è&·Ñ§½Z)*“œ›+ߥY²ª­'!=OÎP²3ް¡­Cš—U¡ãõR(¤¸sü8€9+Ä"!àI ˆ†ákvAE8™ueضéÿ8i°šœÞˆ2}ÒÙd =?ˆaC1g×—“Ï#{ßè:/ ð·µÚxÛI‚ç´-+c(ÄJ¸‹:Kq•¹†TØdJ)b8²­¿£”û‡»Ó¬Ú]ðÄB$#Õ5c§™m÷æ¾dˆSJ$‰xÍÌh u*ëx™‹=v€¼Â¬µk˜œcô„Ø;×Ë4K-—¦qeÏUšµMi ÔœùÒžK£ù¨?+ûúH4$3#Í|”6Þ(d<‰ÌtQé§ñ8^,書¨Ò`Ó¬Kãý¾°ƒïÊðƒ y]E1´þ[ûâù žøÄäWMóa¼ïPÅ`'³Á÷77íëÍ¿%Órëò(çúñ‚¸ëlqè> endobj 1004 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1009 0 obj << /Length 671 /Filter /FlateDecode >> stream xÚ¥U]oÚ0}ϯˆº—D®¿óصlBÚÃ6´—¶BL ’.Öî×ïÚŽCéºñ`;ö=÷œsíËÕ,¸œP*¤$ ³u¨p˜H‚%4œ­n#‚¡ñˆ ÝaL7µ®n1Á‘.j”eng’o´›}Ök]Å$…íÌ|’§MY|?›7³€„~Ħ L’0Û߃Û{®NŒ˜JEø[)nN™_l‚/Á§g@£.ÒU£ˆpĸ¤^…IOÁø_$ŽË‰ Ç€MK…°ðoò"ÛìW,!ÁÅýøñÝå{]Ü ü· ‡`¤„  cˆc•ZˆÉ¾Èê¼,vÙCŠ' 䤈aé$ÝQ*â‘€|‡2_µŽQ£”ËÙ㧪}}¶tÇcË×oZ8Â{$„9—G<6”©ÂÜ™ ðdHüˆ(‰RŠEß[&DšByKÓë2ÛoÚÂ~:ÏlJ>)̺P-˜UfŒ¾ÖëPG˜*qæï.A. 7c€´ísùw.¤ë „ÇK½ØÎUg½3ÆúoOOZp_|o ÚèùR?äÅ‹gÇu±:îá‹ ýª«Z?ucË}=Ïà™Õ¯$$þ;¸©°ó¸Ax¶ËêWq*½-ºµÿOE®ûm‚_0Q¬^¨BÖÑ‹:} -0öÿ¾äû¼„¾ÎRßæáóDZi@SW‹Z7¯Ü·ŽY¬h´oZû4&"Ú7; DŒóÄ­(öÿ~똊¨¬ÜÂZá¦Ëgß“žžtáåÿGè`endstream endobj 1008 0 obj << /Type /Page /Contents 1009 0 R /Resources 1007 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 997 0 R >> endobj 1007 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1012 0 obj << /Length 565 /Filter /FlateDecode >> stream xÚ¥TMoÓ@½ûWXEªl ovf¿£ž T Ôê¥íÁ8›6RâÇQÚÏØkéP»ãÌ{óæif/óh2C;æ4ù"v<6˜BÀ8Ÿß&heš¡µÒ%üöã OfË•··›r¿öUS4ËM•ÞçWÑ»<‚˜Ó:2e˜âr}nïy> endobj 1010 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1015 0 obj << /Length 521 /Filter /FlateDecode >> stream xÚµTËnÛ0¼ë+ô"´!—o£è!iÝÂ@ ¤Õ-ÉA‘鯅-¹~4ÍßwEI†Rú‚äRËÙr‡—Er1GÃã䔑.{-BT1HÚì3-‚óßC .æG§D¥Ñ‚tZGàëºÚœ–}¦£L-ÁzGbâË , V9Û'¬›ÃqÊí’²à‰¯&H™i¬¥™ƒJýcvÛr7Bµ¼D÷+bÖƒ¢Bÿ‹×·P›ýŽÔà ]Ò3jmðZÇɽ%P³\JPœH¶©Êm8ìÊ*&j ^µ§Œ’›®¹nu–kj­zØ{.7¢ÍÁJ5œÕ»°{5IÊ)0îgRW›òpøFU»q‚2ÔRt#6³ÙÙ1_!s”oT¤…Œ'Gæd2¯¤ûЇÞ5·œË&CM{cÜÜ¡‹‰À‘Õ…”ÿŒ€ÿò»tƒýYÞšÈóm¨Ã¾<†eÏ®îÆ"ó˜žz ‹LèôÔÿÑÝ ôLó™²]„\`7[µR©íbÐ]eœÞ?uãëæûÓçPò§.Cõendstream endobj 1014 0 obj << /Type /Page /Contents 1015 0 R /Resources 1013 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1016 0 R >> endobj 1013 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1019 0 obj << /Length 483 /Filter /FlateDecode >> stream xÚ­TMoÓ@½ûW¬ÊÅ>d³3³ŸâÐÒ‘ÑúV*œ DŠí'¢ý÷]{íÈ* »#ϼ}óñæ*O¦3ÔÌq§Ã‘¯˜Ìhà Y¾¼OÑêl‚ÖJ—¾÷Û×ÁP"­7>ÞÞÖÅ¡ôÕ~±_×UöÏ“›<&˜2\‘V”ɯäþA°e"Ø<œœUìw0畉DŒMr—|9âLÐdŒtÕóÉIjˆcÈÃDÞ€T6!DúÎW×» lZ7Í/Z¦¼(^frëW¾óòUáÛL¦3…£Ê h8Y¥º^­«bsXöž#OEÜ8ré_ŸÀ2ÜHkz‡uÝìw~Qž@’†[ƒã›H!CÇIn†k”ò?³kΓn%ÁßÉQè³€3ä&:t碛«iפQƒ~^´€mÕc(ýðùÛÍcá·£¸8ÀRØ7ˆKálóiQúf»(|s‚5w²-("'¡ã<}E ã¤Â£Õ{|gT9Á IÛ—$ æOMØ0ü@ôï’ ŠÐAd[.„Ä­b8H£;J¡Ê~·Øûeœù ÙîÌ3‡é¡Â<•ú?* .•¸”&Z(ãm•¡Jë]4F âûÓ°Ÿ~øãbxÙvendstream endobj 1018 0 obj << /Type /Page /Contents 1019 0 R /Resources 1017 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1016 0 R >> endobj 1017 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1022 0 obj << /Length 646 /Filter /FlateDecode >> stream xÚ¥TMOÛ@½ûWXª„l©^vf¿#ÄÚP!µR‹oÀ!M–)±Ó8Qáßw¼öRŒªRù°~ûæ½ÙÙ9+“ã)êÔ1§i(ïRÇS£)LËÅuœÎ T<»ðÕù6›ÕMsåç»e]±ûî×t¹òÝ웿óä«y»%œáZ“ß–—ÉÇ2”Ó!Ž2L é|üL®oyºHxz™p&œUé/ZPpç0]'E\¬’«äëOADÅ鬷’ ©1zB²h,çoòDFާ 9#h˜°JþwËj¾Ú/z$À©3Î’•<á2ÌHkzÀ²nv[?[0IÃ,ò<í­m`N©`›:&´1i!“ÜÙ€ý2[ûf3›ûf$<æd{‘ ®»„Ý ª¼P”®*ž}Š7PΙÒöŠ>ùÍçóQUV2mQŠ:_Íšæ-ŠæíÁ5RS~¤ª™LFn»;*1µtTË iGWP 9)\ (ïýà Âæ W¼WÁTV1c9ö*6l$še." t”³0mvõÖ÷ó]ÔñÃW~;ÛùEo5õð¾Ç‹‚ÒÎ E,$½MµÖžî«pæ 7Ðì“I,ÔBÓÎÑÈ}ÐkcÑ^H½i-ÔÛ‘7–qÐr2Æi˜³6殽‚'-áµ¶zÚ|ÕÍûW[XyhBæ)¥ÈIB;š!%ä˜ãå‹(Ýðwg €q‰Q÷éé«Ö๵—A—ÿbíY¶Ôi©þ¿ÿˆbûÕÔn…ÝH£ƒ—‹Ã²*ËÜa¶ïKû2•íû?ª@MŸHÓ­v³»UFyþ“ünúý±?ÔôT¢ýßkC´½endstream endobj 1021 0 obj << /Type /Page /Contents 1022 0 R /Resources 1020 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1016 0 R >> endobj 1020 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1025 0 obj << /Length 484 /Filter /FlateDecode >> stream xÚ¥SMoÓ@½ï¯X•‹}ðfg¿·BZªH A¬^JÆÙ€¥ØNôßwü™Ö $dÉ»£y3oæÍUJKa¨gÞà‘n©çÔ`Z€ éæ>ÎÅ þ”nÃþý5šGËbúÛÛ:?•¡:fÇ¢®â‡tEnR”㘶LK4/ÉwrÿÀé†pº"œIï4ý‰gའ%QBޯެÉÇ3N‚@Ééj¨“ʈ±p> endobj 1023 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1028 0 obj << /Length 988 /Filter /FlateDecode >> stream xÚÍWmoÛ6þ®_!t_l`føþb ûдY [¶zÛ‡¶4™NØ’'ÑYýïw©DJ•xnÐm0`R$ïîyîŽGòå"99£25ÈHh«ÔàTI‚%4],ßOFDOgTàɶ|};%xbK‡nÂØY±¶¡÷‹]ÙzJ4Ìæ~Ha¢&T›éÇÅEòz‘ô„B‚I’æ›äÏäýGœ.œ^$1£Eú|€UchºI8eÝÇ:y—ü|§gŠf}M/#Âã’vd(pS.ããȃ“3A{^ÓT!¦…hS”ùz·a ª_¼±Û·§'`á7[;û ݼð*¼QHRΟºÌjWäk{ŒØï¶¸¾q§Ué²¢´õg¢ìI‹§uÕ4ïl<Æê›ÝîÏ“¹\®ÎËUu Â_ËÂ5Çá‚ÿWvuP¨ ,!½À †”ÑríÂïFB¯âZÅ›l;¢lFu\óýˆ’™2ˆƒ¡GØ?WãꢼÑÃÒ²ö hF!N¨øZ.»…<«êÿ%´l}]Õ…»ÙT5ŠŽ•G°¯Ô¢‚°Úl WHS¬†è|-$ÈA´¯ªOûk[vôÿÝ´Ýendstream endobj 1027 0 obj << /Type /Page /Contents 1028 0 R /Resources 1026 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1016 0 R >> endobj 1026 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1031 0 obj << /Length 741 /Filter /FlateDecode >> stream xÚ½–ÝOÛ0ÀßóWä ¥5>$v…x`ƒ 4„¦uO€ªÒšÑ&]ãøïwŽÒB;è@Sœ«Ï÷ñ³ïìÃn´wÌÒXâн‰5³ˆdÀâîð"aš¶ÚL)¡“¯fzö I“ã|lü×çr0Ÿ˜Âöm^­«îitÔ ¦øƒÚ˜Ìˆä)ăIô+º¸¢ñ0¢ñiD ×JÆ÷(PZ³x Æaýˆ¾/ì´ÑP{ÙÒዸ¦Dp%âŒáŸ™þ’1ÙjKJ“Ê;²²³¨Äô'>ø?Ô‰áôÔÌú¶œ¹,öŽ–­KN˜Œ3»¿ïUVȈV ‚Ê%•tƒÏ]?~1ÅÑïÐá…\Þ²`±BË©p–Û I)ÍÜÑBÔ*Û/†ýÙЯE/è!/F^<9÷c9·Óy0¿šÞJìmÆH*@à'(_G/= T0ؼ_þ!øR•RÛãË‹-èÉ·Ó¦˜ÃW_el¯ö×›¹­êIØÂ¯G M~:ýNç¬tu8Ÿ8q×…‰ Dª¦ DKéK"(3ÅÈÞ:a5Dg«ÌL€aoCõ‡PÝçÛ äòêBù_ß+Å{?Ë­éÕBïä¼w=.w½k3Ê ¯ö—‚Ü@`Ô£‡é8ävüè×Ö^Ÿ1Yrê¢pXî¼8Î S5Ú}Ûœµ^8Ëòé,»h(ºÕØDS%S²&lEè¦Ô@¥uv~³*S‘µøÅ“"²çoŠáÿ¦¿p¹†ý{Ðã­D@Pù*z¾zN ¥x×n@¿ÚæDV÷ li ø^»Ø¼Òì©{8U—Ë i²c\Æ¿­k <ƒu $˜lÑHçf?Ÿ½^øÀùûŸK†šW@Š>WŽ'GŠJ3ÀÝÊÒ:R$àz· £ ÅÙmi–Ìá8uDæaFúdGҎȼÄp—šNÇä¢Ó-=Š®›'ÑÃãÈ,Cð`»endstream endobj 1030 0 obj << /Type /Page /Contents 1031 0 R /Resources 1029 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1016 0 R >> endobj 1029 0 obj << /Font << /F26 16 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1034 0 obj << /Length 1261 /Filter /FlateDecode >> stream xÚÝXKoÛF¾ëW)H@´Þ7—DCR»±Q×m­ö’M­m"©ˆTÿûξ$Ò¦ì¨V/…+’³³ó}ó$ßNG'TcKX¦×Ã#I „§ó#‚‰Ç*ðè]<ÒesÙ¬ÆDtº8½@YæNòB»êkíÊÌÜ¢œÊÉøÓôlp<!†±§‰ &É0[ ¾ >|ÂÃùϱX‰á7¸0&Ät¸pÊÂE1¸ü±Ñ3E“¶¦·áˆqI2 @£0‚ñ3œ£A[ü4Bœ`iOù)/³b=÷’„´$CQ¬|Ý£+BW‘È«ºYU=šx„ÅAðM&€#&£þEHRÎlÝ#Ƥ8#ÇÀÙ˜ãØ¡©;¤q‡f®þ›HîïõòüÝ‘qˆotûÂh2ÚËö½=ïVU]_ê¬É«òÁÖGŽ»´¨NËëjÿ]ïu±Ô«zKÿù=-<½˜Ïô²…Ì• ‚b!¨OfÆ ¦«å·t¡ëešéºÇ„¡˜›ü¢IΫ±^˜ËW6-‚ÒE·-šÎ«^øW]Þ4·æbm0g’ˆÑ{A§=Í­/VÞVó÷Ú¸òyý€Ãö`°>‘¿ßVy£göb𪨲ϳ+}“—÷êòC=;(ØÕŽ›ãïË"Ïò¦¸s›í±÷HijÌ0¼øæP䥮ƒtÚ„h›ùpÛp6æz¦pÛ&{%^Ÿ(KÔc7´Y‡l#JZxÎ[µ®Q/ÿÐç¸äÑÁ ËùèW?LÿæÌòŸÃ=¼¦!±x’{¶÷ >x;}÷ÊÙU‘×·3Wòo¢;4Võ>‰xÍwûs©LM&ôß…qó]³Zg;Ê1fB9‰ŸÓζ„ºšü4Ÿæó)º‘ýâÓÜ}é–Ο$^f>[¦«&ÏÌGÇ;X´j Ë ÉFÓqLG0ÝþnÚï=O—n{º&ÛÎÇBçs ¹½ÓO)¼=ÐÂ|¬ävÁ¬ïu¦¶SJß÷…#Œ=ÿóOKQøú#Q1>þ(G‘û,ÈÍ|B¨òíDz¶öUïÌÒÚ?n!"8á‘»¢P†B37!¾jåD76®¾ßÝè2Àÿã¾óendstream endobj 1033 0 obj << /Type /Page /Contents 1034 0 R /Resources 1032 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1035 0 R >> endobj 1032 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1038 0 obj << /Length 441 /Filter /FlateDecode >> stream xÚÝ”MOÜ0†ïþ>¡äãÄΑ¶] U¨¹Z…i#í&ÛÓ¿¯7Þ…´€â†rO?~ýŽ''%9ž¡¦–YByK-§¹¦–õe‚Ó ‘6ùâ6çŸB¢x2kV.ŽN»å°v­¯|Óµéu9'g%ÊÃ#LåL t¹&¿Èå5§5átN8Ö(ú'$œµH×D¢8$+ò\†©ÿ5„ 7„x?L@‡vÐáæ ³S'BÁŒAs` s=ª ÇwÛÊŒ ý:Æ2µ˜ û~žïìö3*P…â…Ìc†0ŽbÕ¶“rÿëøiwwÿÃ=üþJ¸?endstream endobj 1037 0 obj << /Type /Page /Contents 1038 0 R /Resources 1036 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1035 0 R >> endobj 1036 0 obj << /Font << /F26 16 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1041 0 obj << /Length 576 /Filter /FlateDecode >> stream xÚ¥TMÓ0½çWD‹´J$êzüíªâ°°U-PqÙÝCH]ˆÔ&!MÙÝÏÄNª"¤õ`O:óæ½7¶¯VÑtÁTl‰U¸¬6±¥±V@$¯Ö· PÂh:a’&o]y“M²¦-ò­#y¾/Š­ »OnãšLâÊÜ2’'Ìòô~µŒ®WÄà›HM$Wç»èGt{OãuDãeD ·FÆPÖ²x Ƈ`}Ž>q&49Eºêõ€ \(6b¨OŸéJŸ/UL’¸…í™&ÜHéÁ_e¾=¬±X!üÅ;W¿=Å.×?]Ù’ïBWš(&Ä_k¾¸¦uÏ,º¤ü^ÆÏ˼€%’m úìç#Z5ÑÂè>¡¨vYYÔ#@ˆú¼W!£ +¥ ºÏqÌÈ9ÔŸû!Û¹}ån?Ò8±Bkô›NUæc2H´ jýNˆS¢¹0=#ïÕ(+#ˆ2Lž“Zʼ-ªò8íÛõlVíÛÆe»0¨Ëvxq@LŸÒòÚ5Y[5#kC(¨!>ÃÔÄÃú”;*é‘‹?ÌŸîx_ú/–%/Cœ£Îvô²÷ù5†¡§`±ÁžJ„¡j ÍÄ@_¸õÍë¦({ÈzÀúó50xíóÿ N€†·@áÝçfx €€ÐÊSC‰ÉnèUeXW!‡^ñ2™údX@Î$ "F…Ý&e2Á‘ù 3¿ýúÖ7ÕãÓ7WòuYW> endobj 1039 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1044 0 obj << /Length 752 /Filter /FlateDecode >> stream xÚµUKOÛ@¾ûWXp±Yöýˆª€†©…¨@È8bÉ4qDé¯ïx×NMpDKUå°;ÎÌ·ß¼§ÁÑ„ÊÐ #á˜ÎCƒC% ”Ðp:»Ž¨áñˆjÍMôÑ.?Ÿ€ p4Érëo§Uº)lY'uV•ñíô<ø0 HˆáG˜PH0I´¾×·8œ8<0bF‹ðŒˆ14,NY'äÁUðu‹3 Qé¸åM8b\ÒŽ8?”çM0¢$ŒqtfË‹˜à(YÕYš[´ØuâÒÎí*&:²ej'Ž&‚ö‚¯S…˜Âafešof`,ýÀÅåh’WhqÐX7úD!I9߯QåÉ*ûéâö7vWY±Ìí7›ÖÕê…Ûo÷©¶«l.“òÁ¾ö  !½†”ѧøn H )®U«Uëze“b‰+¤)îß AÖ bR©ÿÅn]ϲ²†:øCvM¥d„ ;ôCít¿$…]/“Ô®ž' ÞXPŠ–¾Fo(ñH@ŽÊÎvû^9FŠqÝ2òM8ÄJs$5ÏIäÉzýFic8À†Kˆ$¤Çf<Þi0oÆi¨ÁLrÇŽ$ ô÷ZÖpfœùtÑ6 à¿ÜÇ,pË÷ ¤@FÓ.K4ðš†Þ‡!â5a€D<¦wË_+˜ZYÙJY9o<¨V…Ÿdîcr_mj}°eÓ?væÅeËt†+¢K5ÑáˆÃ„’Px “S{ƒ1-ß’ŽÃ™gåPy”2²uva—Ez·ê–ü®¥¾•†˜*ŠUìyոቺñÙÑÞ3ðwø4³|1˜õ¡¶`àHíu¾/qü´ JæóÕŒº¤ögÞ„Êݘög5÷çÜÍ|Ù.…íB@›KÊ"Œýûâêu{Kžbºñˆ?Ú*ˆWÒùuö¼ØºrœÆ†F›6rç1ѦýGøƒˆ±Àc®¼D1¡þ6©€ÒöBoß?u9ýñÞá äêendstream endobj 1043 0 obj << /Type /Page /Contents 1044 0 R /Resources 1042 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1035 0 R >> endobj 1042 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1047 0 obj << /Length 446 /Filter /FlateDecode >> stream xÚ¥“MoÓ@†ïû+Våb<Ù™ý®‡BŠÅâRz0ΦDJœâ$Ðþûn¼vq……@ȇÙYϼ»ÏøõEÉfs2܃71”+î·A/—× Ê Ò"{š«ª¹ {¨ë´3_oBZ]…UhstYhêÓ–Feäu~S.ØeÉ‹ø`'¯-hi×[ö]ß¾d‚/˜éæ?c"½'¾eŠälØ'öñI§ˆBÅXé¢'ARP(’Ùg$(Ä¿ ÄûÏæšFŠ“é´îd_¬›zs\ö•ˆ£J-Áz ºÂ—Z¬r¶/Xïö‡6TÛ %eÁ‘ _M(E.ÒXW )õüv…‰ØgïÂÝû׳_ôßÎNR'¤¿iºüšÃo=ò=ŸC{÷}SúB^kêG)%(á]§ñ¡Ú†ý]U‡ý Jðê„GR˜ôM¿é¼ÐñÄfè}:g4eV*×O¯»Ú„/]4 Jùÿ¶ ®4Ñ…Ò ¦D@eMw™8¡ÐV‡°LÞÛ5)–¹§ìØr‘£ÎŽýês-ΕM ìÿÑUN:Ûµ)I¤ÝòëCŠov÷·¡ð¦÷õ{endstream endobj 1046 0 obj << /Type /Page /Contents 1047 0 R /Resources 1045 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1035 0 R >> endobj 1045 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1050 0 obj << /Length 838 /Filter /FlateDecode >> stream xÚ½—ÏOÛ0Çïù+¢íÒbüžWÓ0Ø„´‰±Š pèRªµiפü÷{I\ @êÄÁv±¿þúóžíxí¡ŽsšŠÁ8v<6˜BÀx0:ï¡ÓIŠÖJ×ûâ_¨¡xïh2õMíÓ<[Í|^ËÉú¬ÞÖu{>nÊÆè²œP¸ÙL)`µ÷4… 4p¹‘o­ Ìó¢ìH’b§%¨û ÛBÝi–ðlSšÿ@SRÆhŠq )^¤ÙyR•ÃJ~ê·#)eäI"h<ÑI&icvHIx3ÄEp÷T>ÒY©h›oMðQ>¾ã£|ìÆ²:åÊí÷·T»fI‡ ©nÃ.ÙØÚÍoÈÇÖVšn;._„¸¾pA‰g¤aÒv¢ØFwR³ÌG«zêŽ ÛôN–÷EžÏFɪm´5GÔ;ÏFÅ$¢í¾³·€Y(!}d€êžÃ|ÔéÚz”»áÏ^ý–Ñ­ÐáœE¹ëh€cªš°ó½ÿ»o KâíO‰–Ðú%¡éå lµAî­` ^GÈ/‡¥ Ì qØ[xÇÕ¿ ÿQMª¯x_𦅰©T½ù²E£©þ¼]?«nn¯ü݃êâWxéendstream endobj 1049 0 obj << /Type /Page /Contents 1050 0 R /Resources 1048 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1035 0 R >> endobj 1048 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1053 0 obj << /Length 601 /Filter /FlateDecode >> stream xÚ¥TMoÓ@½ûWXEªl‰lvö{£ˆC¡Eri{0ΆZJœà8iúïï:‘+ ¨ ö#3oÞ{³ž«Y4œ0[b.³eli¬ɀųÅm”0‘˜¤É{WÎS 4qUíŽ$ÏÃõ¤X¹°ûê–®JÁ$®Ì›+ÅI˜Õéýl]Ï"ˆ)þÀךH® Î×ÑèöžÆ‹ˆÆÓˆnŒñ@ XËâu$?VÑMôåŒ3@ A骕‚p¡ØICyú™Tñb=(b8‘¬ãVgšp#¥Ç~U”ùj¿Àd… ÜöãÛ!ùœUu‘¯y¸h@š4ÐD1!þ˜6´^–t}peýKÿ}Î˪üaîòzSý­–w ã€äD[ƒíñã4ÑÂè6 Ø¬³²Øö FphãÞ„ˆ¦“@¬”¾“Ø4ޝƒbß9'‚Zãc?ek·Ûf¹ÛõTN¬Ðûħ*¼;Æd:èAyÊ=×ë§DsaZFÞ¬^VFe˜|Nj²/óºØ”ÿÀiW/F£Í®®\¶ºìa‡ÏÄt—¦m]•a#{ Ö†PP§øñ¸Sk kCg.þ#hø4ŸÅ¥¿±,yÎ9ê¬ûFD~¨¡¢`±ÁŠJ„–j ­Ä@W¸õ¥·UQ¶€‡d¬(—ˆŸlªuÖøÛ3Y ŽàüÿKè4WÎnNc­> endobj 1051 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1057 0 obj << /Length 778 /Filter /FlateDecode >> stream xÚÍVMOÛ@½ûWXôâ²ìì÷FUÐÒ©• =ªŒ½I,%Nš8þ}Ç^;²ÁÐR©ÊÁ»Î¾7oÞ¬g÷hž0Zb>Æ“ÐÒP+ ’ ÇéeĬ ™1ÂFŸÜêË1N$N²¹ó£÷Ëd»pyÙ2\OƒãBŠ?¨È¤&’+“Eð3¸¼¦aÐð4 „[#Ã_8¡¬eá"Œ7“yp|Ûñ ‘hØf:ªuƒ \(Ög˜‡öº&C ”F]~1ÀQäÖ…»#³‡9œ¹‰[ÀD.O\™Ãá‰d-O08Ó„)+ê7YžÌ·)‚rT¶~wÙtV/щ,wk2;(‰J(h¢˜OCϳÅjî.\R,_„û\¸uŒ˜³8ŸºG@ÞVY´²’œhkÐñjáÛž¼5ÑÂèzA¶Ük/z˜„&†Ñfá»&¬ƒ%\iýDZ¯WW{ñª»­jÛÃÃ%1 ·Õ3Ú¬&˜ÜWY7®è!ÁX–3óœ.m‰À@û²,žO—묘-þHÕ_QØ$ß—¼dS¤©›ôm7 FpèŠ+[+%«÷ÇöG±±qNE˵_ã…Û¬âÄmz¢'V”;”1©òM=NbKÈì.^K8%š‹¦˜¾‹÷©2‚(Sî´¶¨ãy¼Ùü‹¢¤ö¨ ?G¬GKÍhÔíÐ%Xh¥D%ŽQ–•õ–Û ía5¬jæWTÒ:,mA@«Æ„é‰a> endobj 1055 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1060 0 obj << /Length 757 /Filter /FlateDecode >> stream xÚµVÛN1}߯XQ %Rc<ã{„x %¤¶*Dê *Ý8e¥d“&›þ¾³×n`¹”ñ`{Ÿ9gÎØñá0Ø sš†á$t<4˜BÀp8¾èg¨»=T¼sìG]T_·'ó„EQñqO}1;ó¿ì‚íø$Ê>i ÐAçºWÃÓàh@Èéò Ê0%4„Ñ,ø\\ñpðð4àL8«Âß´à œÃpHÕbœ_jœõšH‡¥LH•$qfC pþjHÂÞ@a£N” V©ùMœDÓõ¸ŒhD*ÁŒ³$"ÜoÁ2ÌHkÊ€x¾J—~4kA’†YäUàA IsLhchf˜F)·ÌîrÀ¬ð89Asx-rñ6ɉ-“[½båzšzçØ/>¾Û£¾.zúz'CÊõÉ=ç9µc?]øåêÞFñðÆ“Ïߎn"¿Hã:aq9¥°<(B0ÉÍa>f~µE~Õ¢s2k^D&¸.í%¢êö%Mª½užF­93BÚ²ˆ9»66=+™¶¨6I ÖI”Ix§U:î÷«S‘—f·…Ý8TI4Mz´Ê=JçË–ž0–qÐUüþ~¦aÎZ,C.¹â5—üÞÊød7ÙîÛû×wñ%"Åi™\6‘%§9‡š‹–ü’ÒÓ¶:=1CK1ZæåÄRŠì:¢p)\üu§å5›^ûšKê“tU¬æ“šsƒo¦±$ÂI9³®*Ä‚µð° ¡Ž%sºy1ŽÊóuºX§Å¼p•µhïf-zHý\¶µE|ÏŠJÕSögð\bÅøààAÿá®ÿñ³üo1|Žçâ ÏQ+&½6L?ó£ñ=úsÒ½ÌôÉr>Û´=NÚ\¿ól±ô>!þÿÕÒª-š)ÂVo` ΉðIÖ&¾,^U—a×ag]ò´ ª³.ÿ£ŠT_ñ¾4Å 9`©=kjº¿XL¿ßãûùÍíŸTòÿEmvðendstream endobj 1059 0 obj << /Type /Page /Contents 1060 0 R /Resources 1058 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1054 0 R >> endobj 1058 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1063 0 obj << /Length 741 /Filter /FlateDecode >> stream xÚ­VMoÓ@½ûWøTÙ^fö{£ª‡ T‰‰CÛƒ›lh¤Æ±äß3öÚù(FýåÝdçÍ›÷^¼9G¯Ï¹ŽsšÞƳØAl42Å‘ÇãéU"ÒŒ[+]òÞ/?žÑFAr>¿÷aõ¦œ¬¾¨óz^éÍø"z;Ž0za ¦ SBcQÁU60{† ™Q´É8åAÅbþ‡ýTÙßÀƒä=ã““¿úýŸ?ÉÿÓÉ!äOñ\<â9׊IG7Ïé—>ŸþGÏ‘žåNº—™>[•‹CÛçÅënAK× ñï—àPjºó„mh J”u¤²A†Òè–þ;_4añ„½:ãÔñdÝÉy‘¢JÖÝ7*¼¡)Ivw 4Q èíò–·›þÁ¯Í7¿ý+ðãE£endstream endobj 1062 0 obj << /Type /Page /Contents 1063 0 R /Resources 1061 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1054 0 R >> endobj 1061 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1066 0 obj << /Length 378 /Filter /FlateDecode >> stream xÚ¥RMO1½÷W4xÙ=P:ÓN»õ¨‚„DãÇFj .EI`A(ÿÞ²ÝEH`Ýœ—á@EDV2À‹{gO’˜ä&…rñÏPHÎ!Ÿ1ª)¦ì–]ïpÚ¨½tRk-”6؈ Ñh þ&*(éô÷^-¬€V¨Œ¨"8š”Åt= Ã&àµú~qqÚ9do­ˆ³Ý„#ÂH)¡¥Ë* Ëá̯ï~!%œ¶6P£PÒDmˆ”¶)ЖÍìŽçgÔJa•ÎÝv¦Úï²`(õ{ö€wLpCe9 @[S-sîK¿~øQ|ùycž:LÖµƒ(Y׊è˜ä±¶±B ³qŠ”Ì—õ®”VéË&Ƴù׿՗üoš`¸rendstream endobj 1065 0 obj << /Type /Page /Contents 1066 0 R /Resources 1064 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1054 0 R >> endobj 1064 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1069 0 obj << /Length 978 /Filter /FlateDecode >> stream xÚµVÛnÛF}çWÈ ”›½_„¢@Û ´èEHlC ©UDT"U‘jjù÷Ìî’4E±‰´0 r©³gfÎÌì«EôòŠÊØ #á±XÇÇJ$(¡ñbu“0Lg)Õš›äÝÿø'WÅÖ†·‹*?îlÙdMQ•³»Åut¹ˆHŒáx0¡`’Äù.ú3º¹Ãñ*Âñu„3ZÄïa1†Æ»ˆSÖ-¶ÑoÑ/=N @ééUË›pĸ¤q ~¨À›`DÍ,%ãäÍåÏ—oËßÙ~o3ø– ÍØ‘_íÚý¦[æÖ9òòJÐA`€U@Zqÿ¢(óíqÕî$d°S0¤ŒWüÆo'°R\«vCÞ<ì-ð9âiÎH»ï» ð' !" IÊÿkrEU7›í¦Ø)¤)VŸfg“Jý_ìòºYÕHK!N¹9½d„ðzIBœP§Œ!. ó[Êv¶Þg¹­'Î& ÔÉÎÜR*f©I•iÚ€5FŠqÝò …4ÅIs$õ˜ÓëmV×O!DFŒrg8Á†KÈ$cÀf>‰·â4Ö`%¹'G ’J4…ª3Šoýƒ-í¡ÈC uÆ~±†BKªvÑlìÉ׿•áC87¼çÕnWµßï·Uîöþ&#Å Â •8åqªCÑ_Ø[ŒiùÉ{±²ë¢œJÐH)#»`…(]–Í¡°õ÷[ :Ÿçìº vq*$‚®i X‚eøùyj0ÜØ½‘üÕŒ×ËIï‰Dœi~ª“·3C“ìPd÷Û/ˆ@^•5œ.áõXÖŻҮª(›‰°Ê¡w•:à{ÿÐØz™=FƇƒÀ™˜{ñLƺÌ1oÿÇ› .bÀÎoWð›¬Ô*k²ðvó‰ÃïÂéž¶ê B™|xZ¤ÁMƒ¥ ÐÑv¼\œ¤òl އ=&Ð!Tö\aœÍ(ÍÚrMAž.“Y›ß­SºÓ<<«ux®ý8”g3m|º†ÜÏL7/[©Ü?´ÆS-e>wÙY–Çݲ©–«ê2½ÅÃ?ù¦·Kûs¹úHt„”•«)*#ô‚òý¡Ì¸CDÓIdq%õIétŸØ4þ-™ô‰É|^.ÇJǧÍ$¸Ô94l-Ï”ù \/óÓBþl mh4yVlFwX —U½î«¯° î+¡2íï,”!m‹tÖãxÍW`.Xf.Ç6×.rÇöÑŠJÌžsVÚ_*ú¡<¸Ð»Ê iýûáí/òž+endstream endobj 1068 0 obj << /Type /Page /Contents 1069 0 R /Resources 1067 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1054 0 R >> endobj 1067 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1072 0 obj << /Length 630 /Filter /FlateDecode >> stream xÚ­”KoÔ0Çïù9&@¦;vâ½Qº*!ñˆàPªUºë´‘RgÉ&}€øîø‘¤[¨RQãGæ7þ{*‰ši¶§(Ð81H´ë»aÝûÓÿðâ„!‰~úù¥Úªytݯ¬8¡ ¤$é"‰ëVïFà wõ…V?«uÿðü®W»UÙ4íºìëVÛÇ‚î ˜Ã1î­®ûºlâD˜X×e3¨…wâ4ÌŒL‚Ö)À‘™ ¢ˆÞuWWmõ•pÒ´úÂÌ¡Ì:a9%“ ÉAš;ŸgnG)†{ë–â Ô›çÞ÷?Ër!þ‰4>¬¥î»Zí^Þ_…ã͇KÐ@EnR©H¹scÞëÚ´Ãy£ž(Hº?PÒœýG .E÷yMP "•&Iæç™C©ª¶žœËÞÛ¦Öj¼aám[y[¹ê³£‡% —0=WÌ@ÐÔ?WW¢¶<7ÞéüntVÛw¯‹‡ŒÅÂ>Е®V}»šo—XI/f¿dŽƒ 9÷…ö7˜xû¤Ro;ÊottôyÓÕ†9'"<ÒprÓY±§÷›=ÐÔn„)<–OíÓL¸s¾VZue?µ›Uk‹XÒh›æ‰íøýA¾àd‘f~F R?ªbÊ£¶[²½'?´Y´ö¨½½»Pz’ÿ yLendstream endobj 1071 0 obj << /Type /Page /Contents 1072 0 R /Resources 1070 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1073 0 R >> endobj 1070 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1076 0 obj << /Length 489 /Filter /FlateDecode >> stream xÚ¥SMoÓ@½ûW¬ÊÅ>x™ÙïͱMJ‰Ô­Å¥­PHÖ)q Ðþ{f½NâFEeÍŽ¼óæ½7ãó*{{) óÜ UÍ<0kk‚U³û\‚*JáœòùUøq}A‰†ür¾é4\MwËÐl'Ûùª)«q6ª2d@¶`Úr- ²é2û™Ý?›eÀÆpéf¿)ŽÞ ¶Ì”ûd‘ÝeŸ8%•}¤óŽ7*.•{â‚tØÄ©%@"> õ†?¥ê°.Ðå¡™†H?Á"÷Z·°Ô˜P¥uØÂÀhÂ&Ý¥;GëPr¯¬¥A½Mâñ „.JM,ÞÌB=oŽMŽ…Úqk½¡^±âjôñúâËçÑíÝû7‰å™à`8ø³×–Vp+¬d¥”\wGý;ö´ÿ2³>Q3iñ ûP0ÒGû7ß.€£)ó–Hi|²Mq­jOF§¸ªS¬Ûá™—så±SÄFËPªÅn‡;K÷¿>÷êƒ_a½¡¾7“%éÑ@/òW6Ø‘|”òÿ¸´ß_Cû*]´E’)Σd–ŒVÖ´Þ…&¬'ÛÈ?Ú=б*¼Èwýãu¾ë¾èP4 ”M™éTBç«u7·ãïI‹ñôü-~ã?½øÅendstream endobj 1075 0 obj << /Type /Page /Contents 1076 0 R /Resources 1074 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1073 0 R >> endobj 1074 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1079 0 obj << /Length 629 /Filter /FlateDecode >> stream xÚ¥U]oÓ0}ϯˆÆKò×ßâae𬂇mBYê´‘Z·¤ eÿž›8©Ò@ õáÚ±}|Îñ½·—‹`2§24ÈH‹<48T’ A Ë»ˆ`ÄHœP£k[‹Õ—2ÝïmŒ#”e~i^l¬}²y³¨#ë²æ3œE ‹øaq¼]$Äð#í=B!Á$ ³mð-¸{Àá2ÀáM7-Â#L0"ÆÐppÊúÉ&¸ >žpJ†H—$Âã’öš(HTg’@À‹4É\ÐgÀ€*Ä´-þ«Âe›zÙí$d°S0¤Œ)íÆ×#X )®U·!Û¦ÕzÄh­L·ëÍLb⌛0! IÊù9³D‚Ò‹k»?›œY€Ö Z#é¯ßY7+w‡Ã­Íªb纣Þ|‚Œ´3‡1ıÑ-Ò‡tkû4³‡Ö„!Õ;)bXú级Tĉ€{]ötÏÀ7Œ㺳¤%8Æ&ÑIMÅ9©yíZ /àôÌ„fK®±!µéte+oü¬Í¬B›r÷XàÂU~âVÖÁ2*ˆPŒ?ô964JË"}Üü£Ñcüá2Ý'Ûú¸²1ÑwOm}ô3W}eG92XÊsvm¢¾‡\=èÕ.«·ÖUéomê ðtwï+ÐRÐHÿÓ oÆþ¿ý €úî'¡Û1Ý7?ð†+ÙŠ‚|µeZÙ¥7¤Ï·EóuçÿMãQÝ­ˆ˜ <åÊÏ(&Ôò˜ŠhWöÿMÙµÃǧþ-> endobj 1077 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1082 0 obj << /Length 832 /Filter /FlateDecode >> stream xÚ¥W[OÛ0~ϯˆÆKòãKl'hš¥lCBcP±I€Pš¸m¤6ÉÒVMûïsnà„H«A<ô;Äç;ß9¾ŸÌŒÃ3ÌLøLþ̦MΠasÝZ2ÛÁžçúÖ‘]L¤A¡u¯EƒNӰ܈¤Š8MìûÙ¹1È„òÕd”J2Ãñ˸½‡fd@óÜ€€ø5Ÿ¤ò}ln “ÎXׯ÷gG9*ÓI«¹€¸ w±̃7º‘ €mA¥ðü)^þȃ,¹-ÿeÕ0+±¨¾y–HBQåqxF±R)s@¥¸M“€mª8YÛ­ØŽ„Fø.ç²*Ò™Á&ðÆÔv¨ º-ò2,ž#(ÕÁÀƒ¸Íiõ´6¢Ö㘇1Y'Ÿ÷Š;q²&2Ðt‰Eœˆ1QàÜgϪ²z%¤a³4^ì‡Ê×t(rGø²è0HÙë8ÆÎ}.‚Џ¿ÿ&\©xàÏÿçßÔ8)†¶®Ž,ɣºþñ2NT¬ï_f*Öõ/å¾P±¶ÿ¶T¬ë/â$V±î<–qkÇo×ñÐ֮À§|#Ï|)ëúG«t®b]ÿpacj¥ùÐÖ—0¡Šõó"ëû?îT¬ë¿i„bhk¯‹Ek¯ÏÚì[Ú{$Êrkç ñÿì匪°v ”3N¼åŒ‹‚BÅ£W+bÀ%žÛ¿Zol[Aóõ;®üºçøS«ÆøÈ­š“.´tˆÒRò\Âývgz2=¾@c=O7®eEÚ¬xV-­—ûjÕgÅ{W NÆÚ-,çL6‰-å×Ë+›@ëÛdŒµÚÓºëÅñÏéÍ#¡Àc²aî1þáë¾û¯‡‘…'{DÈûß Q÷œ`òù@¼J‘)z>"&G¹¼Ùv²…yPˆö°NÛ£jV훲ÝçÕÑY¶_hóƒè…G.o, nPïúQ^Wó]÷¶ú½«®È¶ÿmÕfoendstream endobj 1081 0 obj << /Type /Page /Contents 1082 0 R /Resources 1080 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1073 0 R >> endobj 1080 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1085 0 obj << /Length 762 /Filter /FlateDecode >> stream xÚ¥V]s¢0}çWðf“èÌ>(¢Ò……©uŽUZ©KuÝîÎþ÷ Zµì§ãCˆ99çäÞK¸­XùÔÁ¦jÛäCü ÚPe&#¬Æ³‘† 0°ÞÀj½$Ý/‡éd³IRA¨¹Xé,žñ4H²5KKVÓì/‚Õ Èôq|©¸±‚TÈ(—¡ PÃDêt©|WFc¨Î¨^*\ж¨ºçmcu©l”“'%Rú¯< NÔ8dje'¢øàDÀ&Œ© ó?™8Ö7Œ©Þ ü ÏÛt7Ýê “?ÿÎlªÎ°)«m¶x-Ì©9?·’a¼PgDktµ ø‘•F‰ÿ5®¢6(°LJKj”oûSA\J âùþ>™,ï*Í–qVȹ¦óIZu<X³ ÇË+id+MûŽ"x¶þ¯AÀ"ÆIÔ år:¯Jã$”Óõ깈du10˜AX)”¿ˆwód“èˆj?¶wÏ‹_Å øY B˜ç¤aZ“Ój~“žï‰Ø7ß‹Ùj›Ÿƒ %ó}ö³M"ûÈÄ€'™™­w÷åÝÐì8½"îx> endobj 1083 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1088 0 obj << /Length 702 /Filter /FlateDecode >> stream xÚ¥VKoâ0¼çWDÚKrHÖ8Þ KˆLÛ-‹V´„6RyØö¿¯¥„&H+ü&3cÇ_&M¦|­z¦góMU¨Ž M‚ RÙd¨aàêr]ËÓZÙ2öù„-Ê_3Y‹§Í,›¯Çë|1×G¬£„L*àXÇ$؆êÓLyS†# N v`bÏ%ê–O€ =©3ÅBx?yUúÊÍÇàDÆ1S³ä"Ëtm«â?:Òüd±yÜe1Ó¡«%T˜ä¬„¦GHxù-Y ÑhíQíþxwñïg<,ãu ´kÀj‰o.Ѩ,ùÐl÷â:¦0Šâv¯•Ä­¸}_'2TB•¹h _€[‡çóùZBÚ Mó ü€Ð´ÝcÕ>ÕKkè„h~¥^7í‚J®®î!í®' ¢Ãi«Ôì5Yªc¢ý¬dìùI7©Aœå9U .R /BE݆-ÂO~¥äuŸv«‰úBhƒ Pµ =Q}juØ7çT“¦QÌ*ý$ª>€BkLùÝ ^v`Z48í›SÛÉ×GþJÓ^VwMÍ-»¯$»Pcë÷jMÇv¢:Ç,¼¯ƒÜ…ÍbYâ|–û+a/Ûåj<û-pE츦ªÁsǶÍó ™6ÂRòxC&Ô ÏÈìhþUbž$÷Ê#̲ wLu û6ùÄö²}ÌÆ³ãzg“Û;ÃéœA6Íçy¡oØœs¼–ãk.hEe9.¦rœ/ªV¶ÚæÏw«ñr™­ÌóLæ»Ü2Äøÿ#ÿˆhŸø6wìŠ5a„M׃<ñùæXŽ]¬ì:›g«ñ:›È ,Â_<7»-ëèh›Ý?D\pe9r†D²šêˆh‹Õ®¡>^€ß÷7óÏûsvxñù‹-D4endstream endobj 1087 0 obj << /Type /Page /Contents 1088 0 R /Resources 1086 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1073 0 R >> endobj 1086 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1091 0 obj << /Length 541 /Filter /FlateDecode >> stream xÚå–MoÚ@†ïþ+õbKõ2ûi/Ç|Ð)‡¶–zH¢ÈØë` l D„ßY¯©Lzé…!4ï°»3ûî#¡¹Ê‚Ñ„kb¨Ñ²Š ‰fTqÆIV>„ ¨àQÌ„wv½«_~¬óÕÊ®#Ò¹_™Ô ëÕ7[¹µ4´Má~’òŸ¢´ÅP_ÉR'UWa»~Ÿ_(}F ô)På> endobj 1089 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1095 0 obj << /Length 600 /Filter /FlateDecode >> stream xÚåVßkÛ0~÷_!Ø‹ µz’,ÙÊcúc%Ї­†=´%¸¶œÛsœ¦ùï'[NqM½eŒAh áîˆîô}÷‰ËMCëüš $±Ú„)’€|A0§„¢0¹·Ç¥AàIûF•·:à`_g+e¼Ë"Þ®U^GuVäÎc8³®B‹ ÐÒã>æL¯­ŸÖý# Ä4³3p´Ó`"%Ekˣ쬬;ëÛkWrû•¦ nN¸©}ûR¥Yžµ˜\`Gµ±«,WÆ#ÀS¤Æ¦-§Æ»QÕ.[ü¨¢²T^↖Æá êyíßUª*•Ç*19O{c×Q–?ý%mâ ¿º ìs´eˆîÅŽK@§IÔÍ»î.wÉòyß÷禦ès,¥`È¥3L®^¢u¹R›É;¨‡%¡ ILê· ÍµÅ¹2ióÛ½i‚C¸ãøÌ@ˆòÄ8æp­6µ9vQ”™Úèƒå7Òè }•ÚaXH~´@ò„’c™ðmô[‘séË"¡'$R3«FTZl˾?§Ðr—ØÑäý¿!$2ÊAÃéû|eÁ‡™pJŒŽ TV ìb¦™}Rã€*Õôè9¯‡ñçÜ‚ý¡Úq2Y¨òªØlîTÜ 9xÖAÊ“qd Õ$ŒýûÙ+4íö^¡F4mdº{$ ùúÝx¾hi~U¹ª¢ZuºÝß|èHjo»Ç4kDÜv¿pcŸp˜x¾‰(4#£ñR‡r»¨LÐ[§Ÿö‡eúe¿P¯kô/æ?þNendstream endobj 1094 0 obj << /Type /Page /Contents 1095 0 R /Resources 1093 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1092 0 R >> endobj 1093 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1098 0 obj << /Length 620 /Filter /FlateDecode >> stream xÚÝVßoÚ0~Ï_i/‰´ß9vbûƒMH}ØŠ´‡¶B8%$„µü÷³ãd ˆ´LcRW!tßaûΟ¿³¹‹‰3¡p%‘B›IêJêFG@w2¿ó€†~€œzŸÕú){ü¶NÊR­} Ô# ;2Ê–Ê¢¯*5c±§ò™ù)Ĉ{ À˜Œë‰.Õ¨Óðˆp&À­œÎÝuçuÇŽN(cî>i‡Ý•"k¥së|ù'Ђn¤‹£ŒP»Q‡¡hÔû0W÷”bÞ0XhŽYÞÅS³ùÁH`'(%R æ„…ÔF¾~NVåRm†vþÞ&0$’ á ÆÕ LÚb ì²éÍΰÜ#³ÙG»…$Ÿ[`'WjSÙi—E™©žHl:ÞÝž^¡ó¡Ô@XFqïJ¥YžUY¡é Í<©¬]f†¼ARX[¤Ö¦µ°í‰OuR­@†uüZ|#üÜ®ù¾³v•dù=åT9†A)ã}…x¿BÛ²‹§GŽ@E¦U¢ìTîÑŸpï£ ÷)ˆ> +etþYú/%\Fò½}KÕõIU®“UŸ§ÚàT[ÜOÁ¼ÉÅìÐýiƒ÷Rmæ_ìí›ìSj;Oª.ž¶»é–Wi-q¿X³áÉ6> endobj 1096 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1101 0 obj << /Length 638 /Filter /FlateDecode >> stream xÚåVQkÛ0~÷¯0ìņYÕ,ÉÊÛ’& e¥Ûj6XŠ›(­!±=Ç¡í¿Ÿl¹›5%eFwGtŸ¾ï.ö]?vŽF(\E”0&^¸ŠºRáèÆó‰Çý£(TÞX§pêÒ¥¶Þq>Û¬tV%Ušgþ4>q†±.5hÀ¸$œ pg+ç§3™RwîP÷Ä¡„©ˆ»·& ”Bwå„È‚¥sî|yÄ PÐEê×¼9nñFJKûX/Ò,m8‚R/©¬]¦™¶X'_X»h4ÕÞX—·éõ÷2) ]’RË2<D`6|Õ ]êl¦ç6çêÞÚU’f”Só…&q«¾†1"¨Œ0u@™5ùïæú‚RÌÚòÞÜnÒlÖõ/-¨èЧD)ÁÜP&àá]²*–zÝ{††DQ!Œ E0BÙ$Ô·æGÚ¦]žÞÛ"øÀ=2›½· ’ln{¸ÒëÊäEª×æ`+ùIkL†¹•qTrÏ©è-5(|¡AOüÿ§A@ßÔ#Äwv¨(}ˆ¼|;¾|¦ÜT?Ä(Ü»ì5EØS‹Ø­eStýÃhñ4ÈÖUÒõ¢A©WK Š›[[ Üh aG¶¾ù ½¤L“«SïÏ’tÙ·pZÀy¾y„ú0Œ'8€˜¢ Rº“¿ëð„ö§Ïãáé[eü0MÓ¬jéþ8?Å/Ñå{ÒäkènmC‘áŒýý2Ôê·;œ0Ë‹jM ‰0WPÚyóQgºL*݈Z`mãú¿½i›zRO“Mû ·xÓ^(m„´Ù·ð‘{yiƒÎjX¿Åí#rw­WÂ_Ƥ–endstream endobj 1100 0 obj << /Type /Page /Contents 1101 0 R /Resources 1099 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1092 0 R >> endobj 1099 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1104 0 obj << /Length 503 /Filter /FlateDecode >> stream xÚÍ–ßo›0Çßù+ühp}6æGß[¢°e R§EyHÓ"¥¡D]ÿû™8L¤²ªVcâáî°t÷¹/'sã̺J˜‡BzÊd9 )ò= ‚CÙv…Îl‡ Š?Ëú¹x¸­7û½¬m “G}’;©½™7g–å}óÊe¾À¸½ÎfVœY€¨zàTFøDpÐý“õÓZ­)ÚZÍ,U0 zV%† =Y.ãm°³–Ö·?y•Èéf;b*ô; F\ÛQ-P\”>ú±\L¿4 W‰`ªãDÕöN &2/ÊâPT¥íx*Áæ í®(¥ö_Û*×6?ÉÓx’G¢«]àªjˆË”]\qÆÝVÇ»Vì1̧é[ÀâÀ~Ø?°gŽ3;TJ'}¨Ü´{í› ³hžøRåÀ)}•m!p4ÔñMàÉ;Áÿçˆ}}qDóÉôfÅÖC½:LZÏÓÑ÷¡0#ñâ«­ìí`'ƒ©—i_ÃñO¤vMÐËEO;¦a<ŽG)ô¡2 >‚üj© #pþ÷;M'Q»Òxj‡áA»Ò€út¾îé“,e½9È­–¢i­±ê_Ëðñ¬ÏÌç¡ ˆkA¯]_GŒÂyÑËm&pU·[ß>´{÷¢í¤úõò ˶ýßì‹Eendstream endobj 1103 0 obj << /Type /Page /Contents 1104 0 R /Resources 1102 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1092 0 R >> endobj 1102 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1107 0 obj << /Length 466 /Filter /FlateDecode >> stream xÚÍ–MOã0†ïþ>&‡Ï8vbn-4”JaADbµˆC¡Dj“nÔŠå߯SSÔ ï‡´ìn”ÃÌÈÒ;ϼE3.ÈQ†Šj¦• EI5§‰&‹Û@@F˜¦±¦fŸØBò «–Æe§ÍÃveêÍ|S5uxWÌȤ @¹ý`'&&…ú°"_Éí§ ÂéŒp&t*é³-8­‘®HŒb_,É5¹zÓ‰¬Pt¨4ör£-‡ V2Paœó`Ñlï÷Ì“ñd”c{”I<±]P0Û_íDNMYÕÕn°HYùÆÅeU—aêbSºXî|鲩iŸ«Ç›v¾^›–=1×­‡l» `1Zzȉ9Ëòó‹Ÿ!ËßDNô_@N}Èן²0ùcˆã>±ö˜Ÿrßdä^äPó`ô ìÿ¹ìŒÊèþn úˆaÈ«!|Ä8ä­ˆ=Äg£|:Ø¥~à›Áî„òìJ$?¾ü÷¿;bR‹Büù s ´?a”½YDÚÍ$ìD©A`'n²3S›v¾1 çG7`íoƒí«I³d°}}‘.€<–ü8N\…Ðeeˆ2hZW\t÷/û{îÛË£y»ä¾T„5endstream endobj 1106 0 obj << /Type /Page /Contents 1107 0 R /Resources 1105 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1092 0 R >> endobj 1105 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1110 0 obj << /Length 573 /Filter /FlateDecode >> stream xÚÍ–MoÚ@†ïþ>®Þì§íÔC‰6¡î‡„³Æ–À¦Æ„¦Uþ{׬€RZ¨‘³ÃŠwžw0£©ùÆU“8¦€ÂQÁML×ÁLLÔAJ,›pîe¶ŒÇ_²Ál&3 #`¤ošñDêSG†Åd1âr@1·z~Ëhø6‘zðª w!§6ƒ©ñÍèö92Ù2TAáqs©±ÄœŒÐ*™§µŽ­„ìM¥Ú^GD¥î†!¨ϲ•FébXáßÝ~òÛöªÉɆˆªBTX…D]†qçqšX¶£¹Ž“8‘úä ÓPÇpÕ â´ÕDA]k XÕ¢º˜;ÛÀbpã3y_û30â?"S´ù·¾¾Yb\ÇI^âÞtê‡^‰çõÜ ð’’7H“yI¼FV²ýHΤ…9xÎûóøGù+¼Ó©ïžÃgðFKoó<[¥§Ÿ:@-›b^K«Ë¡Lû…ø.üZŽ%7 ¢-9¾-Æ÷ˆE˱nt•ê,É 9ÇPͲ¿™t“+FuâóvÿYËï’ÞécÒãçxkv€ÅàN£ý6iúöÑr¸éX ŸNM/0u>HMÎ1QŽãÞÙ-<Š)=}µØª6 G­Ô«6 1suwîd"³A.Gº%…µ"ú– `QŽÝV1å ×ókŽ®™«3‚p¹o…á ͪåkÖ¾ÕÇዎõôûËX&•ý_UiZendstream endobj 1109 0 obj << /Type /Page /Contents 1110 0 R /Resources 1108 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1111 0 R >> endobj 1108 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1114 0 obj << /Length 492 /Filter /FlateDecode >> stream xÚÍ–MoÚ@†ïû+ö¸{ðf?<¶7·€¡ J€·i…8аN-¡–Q’ß5"°£6RSaù03²ôÎ3£ÑìttÖ—ÖLÖ$)Ö‡` …ÄÉbJ”¨'£È×äÒlnº6NúÙÒ8/^ßoW&/çe¶Îé, ^‚æö;1¨@àûú…¦3ŽˆãâLéð£ 8ZK¼B¾Tû`‰&èó«Žg…¼C¥Î›ÜÒ†¡ÃV_2É|I=Á9'Y^:à«ñíÕ0©HÏú l ©˜Mìb“fy¶«Ê ¬À¼tv™åÆy8»NMwM©¼KS> endobj 1112 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1117 0 obj << /Length 516 /Filter /FlateDecode >> stream xÚÍ–Moâ0†ïù9Ú\ômÓ•–…ì'â@Á)‘h`#PÛ¿&+RØJ« Ú(‡ñÄÒÌ3¯^YÓ‰½³ˆ+?$¡²!NüúZ1œq?ž£DpÜâ@ÑÉ_Ò§¯ùdµ29f”"2w7Qº0î40Iq “M‹_’k@‚i<Ž»ÞUì1ŸÚmÛ€& ó§ÏÞOo4¦þÌ£~׳ Ãü›PÂÂûÏžä¢LÞÐûô»NËjíWêˆÛTï D8‰[vŠÒlíØï£»6fЗ‚ö,¾WŶá‚Xµ­ri’4K×é2Ã-e‹LÖ..Ò̸S..“­FÅ©¢#™×­Âl» F$·:T˜á€ùzØ¿ûþ'®:À}ö±–¨ÐE-2ë:¸e•[p÷Q/n¬-‚Þa<À‚¢ÏµFxÐ÷æ¨\u…¢È?:·÷M5…b;ÜÙróX>Ͻ›Þí·:L¡Ã óòt>ɰ{-XR³Q0®Cm©N`ñ!:oú;Õå£ô;Wí«Ã(<82ü ™×¡òß!¿[kËÈ„ø÷­f¯P¹Ô(»Åˆ \jaR»™®MfòÉÚÌœÅhEŒqÈÑf§O3@›Ý ¸Ààè¹Ô.ã”íV½s@˼ÜûV½ w||sñrùúöd²rü_)ˆ—endstream endobj 1116 0 obj << /Type /Page /Contents 1117 0 R /Resources 1115 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1111 0 R >> endobj 1115 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1120 0 obj << /Length 485 /Filter /FlateDecode >> stream xÚÍ–Moâ0†ïþ>&‡¸þˆ¿z[ )вۖh‹„8Ðât#AB£ ¶ÿ~ t­Ýö"Êa<ŠôÎ3oFÎtRp–P5Ò†4ƒC)â”P˜.¦#*Œ¨R±úf=º° ÇA’/;uËÇÍÊõ¼ÎË"œ¥CÐKØ>d+Æ%âLø¸Ï`:Ãp0Œ˜V¾Ø#¢5…+S¶O–` nßu"+*u¼ÜÔ¦Òa«OEB„Á‹ró°g¾én¯Ö³„Ó [„2dË‹­F×dy‘oûŠ„•˜×..ó¸“Ô.–™‹ÙÖ–æÔ7ÕKþt_Í×kS¡_ÈU;"¶ÕA1µ.Kñåx4ù1?%±òß\OãY{lŽ¡µºÏFƒI['Cb/òàȧ I|ȃ$Ô8ør\´u>$Ý‘çE½Ã¾ûÞí} ¯’_à4óò&Ÿ1_Â{xÓÞ¤=þ~˜îá½ïuZ;ÞßÝøGÒÚ»BþépsEüLO0¶e cÿ¿Äíwa—¦šž˜íHi $ˆÄÒuvi SÍk³pž4 61 5 6»ï: 6»7ÜÂÏ9>¥Ë(&Ô²ò ¬\r°Ò=¼íº×·'ó¾Êý bƒVendstream endobj 1119 0 obj << /Type /Page /Contents 1120 0 R /Resources 1118 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1111 0 R >> endobj 1118 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1123 0 obj << /Length 474 /Filter /FlateDecode >> stream xÚÍ–Moâ0†ïþ>Ú‡¸þˆí¸7K[¶HÐD»•Zœ6MØÔí¿_“¬ÜÝC¥n”Ãxbiæ™Ñ+ùæàbÌ4Ä(ò µbDrÆa¾^ F‰à8â’¢kÛ¼–Oß›ÕvkÌ(EäÙߌËõ§;[´w ²Õcû+æZ"Á ^æð% R÷±C©‰ŠÁÇð,–®…àšDÂW—PÂŒáðÄ\tÉd`þ»Nä E§•†Á‰¸KõÉ@„àÈÍ@ѺÞ?tø³lv‹ Gù‚/[䋱ä'¥\/.ˆ£P‡R#[”U¹+ë GÊUZí|Ü”•õ'm|¬ ‹Ã¢ÚÓÙ2É3ñÝÎÀ]7ÁHÌÝ2ÎÀM<¿›f#–ÿ‘8¡!âûîŽãsb ž§£[ÑWU$übÙ[UˆwˆÓÞÊ"!næ_{+ "§× ¦–½U† A_õV:„›Í°ŽÑK‰ÒÞª#ôοõV¡—/KÛÏ_ðf&qˆLˆ{™“B•Qλˆ¤³2Œ°Xû™®le›Õήý&ÚÑÚ˜·f\Ï3‰öÇé“—’^ÆÚgœ²£Á+0—¨n:··¦þøðæã¨þùöd«nü_˜Ç‹Tendstream endobj 1122 0 obj << /Type /Page /Contents 1123 0 R /Resources 1121 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1111 0 R >> endobj 1121 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1126 0 obj << /Length 463 /Filter /FlateDecode >> stream xÚÍ–Ájã0†ïz åCTdIVIã&YܦïjrH¹kHì¬qèöíW±’’S–‚±`f0üóÍØðk˜¢‹˜+l¨Q.¤96 kTrà8]gDp x…†Lì.¹B2볫êi¿µe³jŠª –é S˜¹Z1©© ðÓýFÙ’á5bx†&’øÅŒ‚1oQÈũؠº{Ó8¡Á¹Ò°“›»R{lpúœrj=0ÆHQ6xq§Éø@zK~¦àZpAaa«peó¢,Ú©Ê ¬7Ei}i«ÜǼ]Ê!›Øú¥x¾¯W»­é/껽ãuÝдxÏ GÞuµ<íxq?žÞ|F,þ‘X›/ æÄi’‘Ûyo©EõÏÑ·$Kwz‹vaÇ£IÆ—¨þrË.î@0r=ú‘ö–ZuQÏûL¬»ˆïúLu? §7Io‰ÍGKy˜Ÿ~n)âK,åƒÕF„ø§=:­r¿–ˆ3 7Qd@` B­ÚÉ®miëUc×~!‡[ 'ûãG ÉþøFúòR²ËPûŠ3à>Ë.IUûâìÞñøzºuüy}¶o÷¿n¤,’endstream endobj 1125 0 obj << /Type /Page /Contents 1126 0 R /Resources 1124 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1111 0 R >> endobj 1124 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1129 0 obj << /Length 708 /Filter /FlateDecode >> stream xÚ¥T]o›0}çW í¤âøÜÇ~dm¥ªÛimQâ¬H¶ù÷»¶¦)}˜¦(2þ¸Ç÷œ{®OÞlN¥¯’0,Ö¾Â~, ”P±º FŒ…8È˼û¾ëžòe™[šç…v_?õZ7!I]ffIÆ Œ’ðaqå/<âcø‹/b$˜$~¶ñþxwØ_yØ¿òà&•ÿ&¥¨¿ñ8eäðn½#N@Ñ>ÒIO…pĸ¤ ÔâwTÆÿÄÌæ‚îi7Ó±D‹û5/³b»‚` È_.t}}:s࿚´®uƒž¾Hb$)çS.äBoŽAJÚßÌâX%`¾-³.¯Êv"IÂâq ©RİtÜS*ÂHÀmÏU¾ox‹â%\&p‘9þ¦’æ 2•Z$8Šï3´š#Ò«>äëÐΪl»Ñe—Ú¥¹™„Âlj{  ‹sN¥*ß•0a!¢œ‚0ç¯é¦.t{<‘åHa)¡v Ñ„Æ6@»€åõÎÝzS»E¨hPÙúƒ«ŽÂˆ'Á´šÿlßíÞvÎ~é&²¾‰@fEAÚQoÈàòƶi¹h´N·½§Uë¢ ‹Xy Èkì,GìL¯–¶JÆ–içÆ"/{£êÆjíÆµmyØUè½å]mk™¶j]D½[¥=Ú›4ã¤N›¶ŸX~nµÝ>¶hª›FèþèãÎú<¶lu¡­÷côÈ›4?\ª-ƒe^.«m7½ ìäÓÓ@¤Ë3¨îÇ#±—&ïôX}¨üåÍpM¼¡ 4aìÿŸÐ= á•ðb²dx@¡áx,-ÁoºÔMÚéÞkC[Ûoû·ó*$"Øö; D |Ìc7£ØÈ|­C*‚ªqÛ6îÓTÎ=¯»ßºèÿt¹Øendstream endobj 1128 0 obj << /Type /Page /Contents 1129 0 R /Resources 1127 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1130 0 R >> endobj 1127 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1133 0 obj << /Length 426 /Filter /FlateDecode >> stream xÚ¥SKÓ0¾ûWXË%9ÄõŒß{ca TâqYV(¤.DjÓ¥iý÷Lâ$T<å`¢ï1ߌ¯J¶X¢åAKG¹áArgAäåú&SˆyÞë=wÏQad¶l¶1ÝïëÓ.¶ÇêØìÛü¶\±ë’—ôÁ@fœ0ʯwì »¹•|Í$_1)Tð†£B ùŽiTS±eoÙë™§ ¢âœéjô Z(mq2ŽÔ‡K¾t^€”2{öòÃînšW9Ȭ:›z;Q׿öò&nâ!ŸÅ¶Ž}/‹¥Á³lÈ:¡¼1ƒÄƒ¦­·§5-‰\ ñ,f­YçóEOÕƒÁ ‹Zÿü$¶×_)ÌÁ¼‹‡Ž¢!)Á-+%´ ~`xQíbwWÕ±ûC{ DÐÎQ“(”´)Ç÷ˆ&/ éµvÖù uR8¥=Éõ˜´(¿ï‚§™€Rÿ¿ gDÓ&Xš¼ò½…JøŠ; ,Q²ñPã:MšVu8Ë<`vÇ¿ÊÁd§ñI˜K#/µKJÀtÛäh²ý!gããýô,¾ßŠóƒøÿIÒçendstream endobj 1132 0 obj << /Type /Page /Contents 1133 0 R /Resources 1131 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1130 0 R >> endobj 1131 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1136 0 obj << /Length 599 /Filter /FlateDecode >> stream xÚµUËnÛ0¼ë+„ôbLsù¦Q¨Ó¦­¾}KƒB•éD€%»’œÔß•HJ!ä&ð\q9;³XŽ«hvÁTl‰U¸¬6±¥±V@$¯Ö— „ËdÊ$|øüóuåù—è$­š<ÛºšÜøÃ‹|ëüî›Û¸*3qeÖ~âÚª g<¹Z-£·«bŠ?è*IM$WgEô;º¼¢ñ:¢ñ2šÖÈøJÀZ‘`¼¶Ñ÷èë gŠ@Ó!Ò"ˆA¸P¬WÅP¤¾' (}¤*”2»lÐ7äÀ4áFʮ‹¼Ì¶‡uÈdJN´5(¦K|9‚¥‰F‡„MÝT.-F€#8„¼W#@¨c+)6 4QLˆ'&‡Üòòz‡KböânVL>µ"Ý€`-Ë™yˆ—¶D`¡žb^·.kvÕs´lªpœÏÞ»ýÇóNõ"­Ýù6­q˜Ï4Ek±‚ÛÄÝ& Ñoy¹?4³Ý¡Á¥ÿâ×´­á·›¶Ò®*Òæ^ìw ž“–k¿)Ò¬M¸ÉËp‚ްïK5hmÀùÿ;ê¨7T…ÊMï§@@hÕµà+]•6.ÐÝÁ«Ä²É!P^¶]:„“ðr.é\h1 ¬o“§vø‘é¶¿Ž~}³ûs¼ve/ÿ/d¢áendstream endobj 1135 0 obj << /Type /Page /Contents 1136 0 R /Resources 1134 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1130 0 R >> endobj 1134 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1139 0 obj << /Length 560 /Filter /FlateDecode >> stream xÚ¥TMoÓ@½ûWXåb<Ù™ýއ–¨È­­q¶4Râ„Äúï™x7‘ƒ|ù°;Þ™7ïÍÎìå,›ÜÉ=xÃËì1÷"·AR>›ß’TY‘sÊoÃæýZ7‹eˆ»×ëf¿ mWw‹u[>Ìn³ëY†¹à{0mAKƒy³Ê~dw"Ÿg"¿ÍHïtþ‹ è=å«L‘<ËìKöé„S1P5DºL¼QT†ŽÄ‰uØÈ9)+Bï>~½¬wájYïvðô·‚Ïá1lKtEh›pP0¹Ñ4¨§& ÒiÝ¿X´Ír?OžˆO-ÁzÇzÇ—#X¬r69,Ö»nêÕ’²àH_ ±2Ï ­åCJ³« ¿è¯lò&´×?ùŽàé""*‡àµ¦$PJP»âC½ »MÝ„ÝHZ”àÕ!)Hab­ï‰tYiNØcOyÚX©\Ò›i„MåGúœTwÿ¨9ްQ†+ÌE°™N‡cåŽcŒê©‚ñܤ÷WÒ÷±õriÑnöÝd½ïx‰šÄ:?…í"> endobj 1137 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1142 0 obj << /Length 467 /Filter /FlateDecode >> stream xÚ¥SMoÛ0 ½ûWØÅ>X)QÁ°C»fk€­Øæ[W ™­´'‹¬ý÷U%;pE7ø@Q&ß“žÎ«ìlŠš9îtÕ‚9ÁŒNȪæ&Á¥)J$‘_]ÿº|¨ýv¿Ü´ü>íM—+ŸVßýÂï °¹oë¸%•È%Rq[ͲË*&ÂqNR«×ÙŸìæV°&l–…QÎûÁÁ9dëL¡’Uö#ûvÄ)P9F:ïµ€âRiÄ`Ðf^h!Þ&&(8›ŽN)ŒFÃ¥%ŠÀï–m½:4}%À¨’$7Î ±ðý ,ò¦/èö´^…ú*žwDQp @A=IVJÉ•p6Ö~¯}·×¾;1$wʘ ¹:ÕO 7WR8¨vè=ÎQÜHe{FŸýöËÅIVVqm‘^’ºXÍ»î_ÕÏ'Ø(Í-*5f3™Œï9õ(d6ôh©!pí‚ÇÊ`§¤‹½W×ÉþØÓûyÛ¬–í?ái¼Rþ¿¥G@ƒ£up°´ƒ¡ƒ2:òüä[¿›ï}“ø <«Âa~è­<+€òCÿ‡Rš˜¨þ]£L«E”ov)I×—¿Sü¸yx¼óí ÿ $tendstream endobj 1141 0 obj << /Type /Page /Contents 1142 0 R /Resources 1140 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1130 0 R >> endobj 1140 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1145 0 obj << /Length 431 /Filter /FlateDecode >> stream xÚ¥SMoÓ@½ï¯X•‹}Èfgö»ÇBB‰ê[[!ãl Rì'öß3öÚ!¢ !fG«÷ÞÌóÛ«‚MçhyÁR)VAïuÈ®ãîíKjŒÌæëML§WÛêXÇæPÖÛ&¿/lV0à’>èÉŒFYàU;±Û{É—Lò“Boøj¤€×L£› »aN<"šœ3] sƒJ[GÚÃ¥¹|>)eöæý§×±™}ÏAf4ª¨ªß·øW±ÍÁÓu»-¦sƒg®<:"4¦'±nªÍqI`Kô½1ÓQ¥SøzÑ‘t0p¢Ö…ͪ¸ëüûܳZêyÌÍ¡e}7»Øî`òD0‡U•Zßó¼+ë¸ß•UÜÿÁP"hçÈJÚäü¢É'†T›{ÒùuR8¥=Éu˜­§éñôA©ÿÏјKYQ¾›E¡>€âhgû‘Èߨ–‡¸L ¡p÷µÈfÇ!6‹LvnL*`.¼Ô.u(Ói•£É¶mjΞÒçÇñ!=<~‰§'ôsàXendstream endobj 1144 0 obj << /Type /Page /Contents 1145 0 R /Resources 1143 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1130 0 R >> endobj 1143 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1148 0 obj << /Length 658 /Filter /FlateDecode >> stream xÚµUKoÛ0 ¾ûWÝ%>˜õV0ìЮ][ {f§¶l8”%4Æù2ú]°x±ø$ªÙ¬ŠoiÂãñ2’\t“Eô)úð€“PÚGÚkÃA BjÞÅÃ)<óS8ÈØ_ÇCAì*Þ˱sÂ*Õ`¿˜ùâzÚîDìíTŒ³F³ñå–#­i7ÌÊjã³åD°R`»ïÕÅ&(FFéAšKùÄâHÛ¼¸À ¬¦\lÑæ Hä깤-³õq9Áí6]Æ$¢N—xb]7>¯V›çHYªé"ïùõéþ.Ý罬ôû‹¬,áj§«¯ècüîr¿®æ«â7?ñg¿ÏżêˆÂ³CpJñöi’QNkÿ·ÙÒ—ë,÷å@ˆ(ÀIcè1qL‡‡zιJRElEçûÀÓË2#dw´¬!5©• mľ¨&Qÿ¢(¯ÔH ¶ÎtOÍxüK• n’Ç–Ü´lÔqí¨È¥T·œ®qÿá§¿¦"3ÅZbÖCP$Ù-ñH,p¤v Õ„„3[”«`M=ÙÁ¼Wm9<òÙÍýñªØ*QƒCW dOA1 Æûé츘ՙZm¥Ód:åÍÆ9¯Ù` Yj(Äÿ÷¡P׆('FØ® ! 4ºÑCë7YåÛ°»äNÇG×mó9©þºý£Â€j¬ØXš0ã y°f W#*0íÕ¯ 1¿Þ‡ñõêîþÒ]øß#yçŸendstream endobj 1147 0 obj << /Type /Page /Contents 1148 0 R /Resources 1146 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1146 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1152 0 obj << /Length 457 /Filter /FlateDecode >> stream xÚ¥SMÓ0½ûWXË%9dꯇ…–¥ì—e…JêB¥6]úì¿Çµ“*‚"(‡ñ(3oÞ½Ø4‡uh÷³ýrÓ–÷õ”k†\ʶ ¥AÞ¬Ù7vw/øœ >e¤wšÿˆ‰ôžøš)’}²bïÙÛNª!ÒUÇHe¨'Nq›y£%Ê …Å«›O×ãÛñ‡ºô¢€¦ù}‡wa¶%º"´M8î0šhh‡“é´NÐO–m³:Ìc³‰àI–Ñi|½8B›Ð‚!¥þÞô2´ãïQ¼õ$JˆJZ‚õ.Ê• Ÿž!mÁ*g»‚f·Ÿ/7gp¤gâ^¹ìY®8 ‹àµNÂVÞ‚BÒ¼’2jê]*}3[‡Ýì »3³Q‚WÖFÙ¤0ùF>é²Òqû¶ï=Ð`¥r¡l¹?]å¢}PÊÿ7Õ¨÷”‰’.‰CœGÉ-*k¥xga;Û‡yöN4}ŠÑ[T:CMKÔÅ¡û£s@}©Å¥²9#”O‹’t±ÙædðÄ>?öìçã—pzZ¿\ß>endstream endobj 1151 0 obj << /Type /Page /Contents 1152 0 R /Resources 1150 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1150 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1155 0 obj << /Length 534 /Filter /FlateDecode >> stream xÚ­TKoÓ@¾ûWXåb<Ù}GˆCJB©ÄÛ‚C©*ãlh¥Ä Iôß3Þµ‹‘\$òavì™o¾™Ùϳ2™,P§œ&S®RÇR£9(䘖ˋŒ3ç6óM^)§3.¿,Ï“y™ð”ÑÃCe@ ÍÓz“|I..YºLXzž0Ϊô9 ¸s˜n‰¢wÖÉ»äÍ=NA@ÅiÖ5Ã%©±ï©9óK3œ±?ì†Z˜,æDµÑ€°JäG7M½>.»HΑJ€q–šG° iM°©v# Ü€h»˜'# …q ©PZP¬F)ÿ3¯¯¾¾ÝîGp„«i ¿¡æ ÍÕÔ Më89ó»§Úʬ:øÓuu8ÀõI ÖŽ:扇óâ*¯>ì«ÝÎï»Ìx88¥°Û™  ©zYmüaWÕþ0™ pÒÚ2‚`:ÞŸˆ*/•múÜû:ƒ±10Bö» üÆØV‚¶íT†¤BçènGØH ¶ù€Ítúóò‡‰©¥-/ä ©® !9)\LŒáÝ ÚPFômIÈ\ˆ—÷¨W·&5 Û‹›—F†Ï|ã÷Õ­_FrÛ&ZÒ7fÇNÕç9WÙ±û¢¢ájªØTšè!ãO«UF7>8q‹áøé.Ú§ÛïwŸ}Ó·ÿm@ºendstream endobj 1154 0 obj << /Type /Page /Contents 1155 0 R /Resources 1153 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1153 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1158 0 obj << /Length 460 /Filter /FlateDecode >> stream xÚ¥SMÓ0½çWXË%9dê{ü±BÚÝ­ˆ%‡e…JâB¥6]úì¿ÇÓ*‚"(‡ñ(3oÞ?ØÏ§/áô´~&ß,endstream endobj 1157 0 obj << /Type /Page /Contents 1158 0 R /Resources 1156 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1156 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1161 0 obj << /Length 600 /Filter /FlateDecode >> stream xÚ­TKOÛ@¾ûWXôb<ìì{£ªh õE­r„Üd‘'(ÿ¾c¯Œd*õ¡f×™ï›ùfgæ(O¸Ž8M&ŸÇŽÅF#(Ž<ÎgW 2"͸bÉÙ§ÛÉø"*¹<;…ûðñd±ôátáç~›¢M|9m> t‰˜ÞäçÑ80fôÃ&‚2 „ÆxºŠ~DW7,žE,>gUüHèW‘䢻,£¯Ñ—gžŒˆ²>ÓQ+%©y§†“8óB 2ö‡jHÂá‰â½:Qln@X¥æ7‹rºÜÏZOÄž§`œ%ãÛ.FZÓ:T~7@‚œà¶õy7@’’Åùj.åÎëÁOwëíP`5•á7©9¹z%µLÓsLüæÃñ!½ÊQQùãeQUpP“Õ¥8ñ:n2þ<þ–ß^n‹ÍÆo[dè§oßLŒŠT},V¾ÚS_ 䌜4†^™ƒ`:ôÏ5ç*Í…-;ìsœ^Ù!»·jòÊ&³´­«ÒOªQþ7Mkà@6Rƒ­KÞËf4zÑü$yl ¤e“GÐŽ&/£arR¸Ü¢h(jT3&×L±6(ëᕦ^´º º8º®ûÐ)bÂÀ¹¨‚ÝW~N»u°w4Íaâ·‹»Ö½œ§È’õvUìëö¥Å‚BüûºéuÛFÓv¶[6(n4úÒo‹]§a]›§Ž'ûvËœ§¨’}û ÕH±‘4áÆòpš§\‘Ê®uW5ÇïOÁ¾_ÿ|ºóe'ÿ%dendstream endobj 1160 0 obj << /Type /Page /Contents 1161 0 R /Resources 1159 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1159 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1164 0 obj << /Length 827 /Filter /FlateDecode >> stream xÚݘMoÛ0 †ïþ>Æk"õ ;ì6`[nm1x‰ÚHì.q°õß¶ì6ñ·ØN r°¯ÈG#éõ,zñuì˜Óô™ÝÄŽÇFSÏ—!0IÑZé&ýݧ7ÔQ|ò>_ùÐz[Îwk_TY•—Er=»ˆÞÍ"ˆ9ý S†)¡!ž¯£ŸÑå5/"΄³*þEÎÀ9Œ×‘DÑuVÑ·è˃NJBé¾Òë6nLH]àHy˜7p&e’ç|’o¿g›¼Z®}•ÏÙ²ŸÂWã7 ؉/æ¾N!HsJ5Ò48) c¡‘þœ­ýö.›ûm0&£G~ ˜“Æ2TR7Wˆ*I…Rt¾ã<ºÎŒ–†«}m²ŠSmJI™uÎÕlÒYø*ËW'¦K3ÖtúèÙ'‚fRX§B0¡UÐ{³Ê¶Û¡°­6»y5€@Q´÷ tQM§³|öÇDÃдÞ/äiQ p²µ˜ ˆ8BéÖàU0[2Ð20´æ@SCYTå®Xø+αð‹@4+ÚFµô“Ÿ”›–vQi?“ƒ0kjZÑFÁ¬²vßßS÷ HZ0@φ4_f› ̸qPÈ”EèHÉ W£ Íl^ѦkRÈ·-³Sa²+¶ùíÃT!¤){%Í!¤m‚ƺCB=õ3àõ Z ˜4ZŽÒâTK8ׇ´ÎŽÕ²ÜTCN2FŽo8Å„‚> Fð6Ú14šÒF‰ã;M3.ëÿ¯ã;í”AåÅÊ@ÛÑ5£‰‡ìÕèZíÌ0E™‚/Ì\ÑQÓ¸þŸ|_ü4!­Êâv¨ÂÐñSãx¡*mÉæ`µ4rç°\Žp¡Û¬Ã-/ÈÀбêr”è`+ʬ> xê È…ì­˜Nð4q,ÊÝ•PÀÐÖWØ–xp­y´Š'\MÂÅóºÕq)ÅS‡;£­:VZžFÔ{w°œ–¦ÿÿì°'Ô½:h挰͔×üˆ˜*#ж‰úƒ/ü&«º_á;KNvm (ª¡£ÂÔTñ©4¡‡0´nTt{Ü›ÎÐüqß=Áü¾¿õ/AJ„endstream endobj 1163 0 obj << /Type /Page /Contents 1164 0 R /Resources 1162 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1149 0 R >> endobj 1162 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1167 0 obj << /Length 374 /Filter /FlateDecode >> stream xÚ¥RMSÂ0½çW䨳›6A@™ñ ö†‚0TiQù÷.M èxqœ6›¼}ûÞn»9» åN8K!_p'yjAäù|ÚÄ ݖâ˜÷ßc‘ßVb®«µ§¿ð»2zÕW6S‘R*žä#ÖÏpIÔ=L*Œ²ÀgöÆÆÉçLò“B¹ÌðJ¤ço˜FÕ&köÈîO< %—LÝÆh¡´ÅÖ’½ô›òÏ~ÈD ጩɩ=q«4ƒš¼·ž–¥/’ç©‚N§)ÁQ(iƒ–'D’bHÉìXxjp.ÓVd¨5õ9âè x<#¼ÕG|‚ ¬£q%4§•«ëö¥ŸC«mˆÕ²qXù²*YOF{¥þ¿ ¢v9––¡²v7 @§¶Ö9ô[¿›V­Ø¢›Ç£}#xƒ‰öÍKó_‚éÙÑiÈP†Ó"F»Üø×»^8>B¼.>/~ÛÚÿš¾µendstream endobj 1166 0 obj << /Type /Page /Contents 1167 0 R /Resources 1165 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1165 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1171 0 obj << /Length 508 /Filter /FlateDecode >> stream xÚ¥TMÓ0½çWø˜HÄxüívJ ±ä¶ì!$în¤|”$*Äg§Ý–íiQ¤Œñ¼÷æy”«,z}Ã5qÔi Ù†8FŒª8p’•w±2I¹µÒÅïýöãÜ(ßTµ«·]±k|;æcÕµÉ}¶Ž®³Ãf0e¨HÑDߣ»{Fʈ‘uĨpV‘Ÿ¸aœã¤‰$‡M}‰>qRJO‘®Ý ©š„sìÃÝÀ¨ÔI Œ±øÃèû|ìúÛ¼}ðôñßnýÆ÷ ØØ·…ŸZÐ@R34’#²0fèOyã‡m^ø!ÆCOþ Nƒœ ¦ƒ˜¯œ«$U(¥=ÔyžJ £FH‹tSMpû‚šÔJª-W$‚Jæì|üºÅkèç[x,ÕIF­ÔgŠV«37ƒƒ¿§ÚÙ$k#)(dcü´j›/ëP´$ŠÇª.—Üyf“7U½?ÿ–ã HŽ %»ÈUú¡ðm™?ã 45º”‹L/¼ÄùğоäÄbûZΦI FpäÈ!gŠq¿]šî6!Vãâû…é·8æ Äÿÿ Ðaö5κ°“NÁµ1@A= }çÛI—/µmˆYâx¼[ZX' âÝ’Q!€Z)¶’&ì8V›„«¸ëOü ËoûÃà×þÁMø ±ª°endstream endobj 1170 0 obj << /Type /Page /Contents 1171 0 R /Resources 1169 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1169 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1174 0 obj << /Length 276 /Filter /FlateDecode >> stream xÚ¥‘ÍN!…÷<KX ra` ËªÕLâBe×4MaL“ù©Ó6¶o/–bÚ¸Ó°8÷p“ÃùÂÔ¡›™ÐØ2«ƒ¸[Ž L ØÕsœåÍ„â¤]owË¡Yúê۴~˪*.fëÖÇéÅ7~¤`ˆï«ï+i¬!R*ºp%ºw0N¯¨‚)©Wú@óÇ5â¸DœIkþ †3°VàåB&Ó¢Wôü““… ì2iz‚œÉ\‹D$`qœÿè7† }AÊÿS\%JK“€A^èÃïý¸Úù:vú¨ŽZAöçâ%EöçŠj¢ø$ý§à âÔP¡È0Fóè7O·q|;F½Çwß'ü/àƒ,endstream endobj 1173 0 obj << /Type /Page /Contents 1174 0 R /Resources 1172 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1172 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1177 0 obj << /Length 294 /Filter /FlateDecode >> stream xÚ¥‘Mk1E÷ùY&‹IßË×$.mk‹ÐEÛÙ‰ˆ3E˜«#ÕßÔ8"Ò]Éâ帜“7.ÈÝDZê…·qõ@s‹ÂH”´X͘R–gÒ9íÙsؼÜÇ`€MÖuH·‡®Ü7¡í—ýºkù¼˜’Ç‚ …xðTfra”EZ6ä‹Ìæ@W蔀PÞúô^Ò†h©†P“wòzéÉbQvÝ4>s£J[9€Ëè‘'n¡ÏX½Þõ‹®Z„òÙÔa'ÊòVã-TaËѱЖá yQ©ÿ[\ 6B+÷ë ¤Σ¢9 Ô¹=™<…6l—}X%ÒøË§Yp/ÙþŒ?åhØþübÒ@320ÒyJP¦[Å¥aÝ6…«~‡ŽŸá²ËÕ}nendstream endobj 1176 0 obj << /Type /Page /Contents 1177 0 R /Resources 1175 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1175 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1180 0 obj << /Length 559 /Filter /FlateDecode >> stream xÚ¥TÛn›@}ç+PúRïýÂc;%÷Jû’DÅKƒd¯S§õßwaÁÅ5•z²fvΜŸ™Ë,˜Ìˆ5háLV†…R`à“0[ÞFÓqB8ŠÖye)†¢ðî¬ZzgJ³±ŠŒ-šWR*Q*ãûlL³‡È=¸Åæ88,ÖÁ×àö…Ë…óÕŠ‡ßœƒkMÂuÀíUð>x{ÄIP2DºìÊÀ (¤¯ƒ¸²äI¡?®Ã‘ŸÌ8ôÆe%¨â¼Å|VÙbµ_º`áP/Þê‡*‡‡‹&²¹‹%ÂØØÝ—æqñâÆÖf[æ…ù‹˜Éµ±Ó'cë³úû˜›×Ÿ~ óÝ 9']e”CZµ(¯òµÙ=:f»‘.` šIézA€"áû{GîrÚ>ö˜çg¨D )S.]ã¦Æø$ŠP„ŸÒšímQWû¬*[𡠔дãÓè áqä~x”S °ôzø~øbl_þiÐXsendstream endobj 1179 0 obj << /Type /Page /Contents 1180 0 R /Resources 1178 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1178 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1183 0 obj << /Length 630 /Filter /FlateDecode >> stream xÚ¥TÛNÛ@}÷WXôŖȰ÷K)„‚„zKû¨r5XJœ68Ðü}Ç»¶ëS©ªò°™d朙3—Óyt2c*¶`>ó"¶$ÖŠ‚d”ÅóÅM¹I'Ìa“wîÇõ[4$IfåÒ…ogë|»rUÕåºJïæWÑù<¢1Áõ`RƒäŠÆù*úÝÜ‘x‘ø*"À­‘ñ3¨µ,^E‚ñÎXFŸ£=Î&C¤Ó6o*€ źÄÖ¡CÞ”€$é„B’UVVœAž¿Lþ“+Ü&¥&qUîšäOf’ Ä@V¦)=曲ʗÛ+D=ú°«Ê ŽšÈÆ—jPLˆ1_¯ÝeU»M‘åîbN.\uþ„Äð×c.ß{Ô¢`¥dmeœƒ Öx”Ù¶Ê›>Žˆ@9X¡5JÁ€ä½eL¦‰”eU÷‚¸£,¶Ó{7 ŠßIšod¨=Iîóã`æøƒ‡¢be4 «n¡n á#|¬Á¨àÓâ>Ý`ÿ•N‰0¡‚`š”î‹áGh;<4¯Œû‹<š‰A½,áC¨¬/ýP%ö„' S嬯ê>a¤˜êKÿ»”Lá–H¹G«AèçÓ«œ]weÞ›WÚhº/Í™+ʪ Ê6£›Õá]–U;Ìœ‡w]„·ð{«† ckä·ºÙèÇàíwb:ý‚lÓéÅù×ã–±ZŒ9\_ÃÈ3x°(çÿÆ@ÝSxµ¸ñkƒ ‹Êjœ¡•¯WÙm²Ú-Bo»Qœ§–%Ûö’]¥T&Ûö*§’L…#”…oEÊd²ÞcpÔ¿ïºÿµ»wý1ÿ f}âendstream endobj 1182 0 obj << /Type /Page /Contents 1183 0 R /Resources 1181 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1168 0 R >> endobj 1181 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1186 0 obj << /Length 639 /Filter /FlateDecode >> stream xÚµUÛNÛ@}÷WXTBŽÔ ;³÷ñ@K H½’7@UêlZK‰æ¢ÂßwíµSæÒ”‡½döÌ9dz;‡£hoH*¶`•FÓØ²X+IHñhrž ‰½>I–|šLOòidR@š†½a6saöÅMݲ‡&qyZniÍX¹í]ŽN££Q„1ó?¬H ’+ŒÓyô3:¿dñ$bñiÄ€[#ã_~Á­¥x âÍbEŸ·8}Ôo#ÖZPŠ1äµéZ±¿ãì %µ\ò©I7RVÀ¯². ‚•’ê{Â9fMóa-[ß+L¿]‡ñmquýÝåüßáÃ×endstream endobj 1185 0 obj << /Type /Page /Contents 1186 0 R /Resources 1184 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1187 0 R >> endobj 1184 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1190 0 obj << /Length 646 /Filter /FlateDecode >> stream xÚ¥UMoÓ@½ûWøTÙvf?¼U=´%@%PßÚB²¡‘'äCÀ¿g¼k§n0¢*Êawyo޼ϫäõ˜LêÀ^ªyêDZMHi5»É¤yAÖ*—½óë|Ð"/|Ü]®¦û¥¯w“ÝbUçwÕUò¦J0üÃ@¦KÐÒ`:]&ß“›;‘Α^%¤³:ýÁè¥ËD‘ìÉ—äÓ§`¢¢ÏtÞêFRê„×QFÝ(¸†¼@!Dv=›¿¯ç9él÷Ç|ös¿ÉÑf¾žú¦€HŒà´Äœšyei1œ,ýv=™úm æ G÷P‚SeÉ)L”rK¤óB³ºÃò> endobj 1188 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F20 6 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1193 0 obj << /Length 510 /Filter /FlateDecode >> stream xÚ¥SKoÓ@¾ûW¬ŠTÙÙì̾£ž T TÀ·¶ãlÀRâ'”_ÏØkWͩȇݙõ|Ùë<™/Ñ0Ͻ¡%_3/˜5À5²|u—‚àZf3Ô"½ÍP¤»MÑVŠCµ«yYƃeµ q÷%¬C›KC]ö)«!• ²‡ü&y—'À}гhKÈX¹M~&w‚­ÁnÁ¥wšý¢@pðÙ6Q(Ç`“|M>Ÿpf4›"]†@q© ŽŽ Ú'†@ˆ8"ó¥ÆI¿ˆ-—NëýUU—›ãŠŠ á_|ÍÇ7óÛ)Å‹ˆÒ‰îµÆFJ®„w=̧böMQ†ýJÜ+k‰¹&ÚºGÔÙLi=Öžxþ•ZÁ­TŽèºš^Ý953§¸q¨ŸŠZë²³ðMûÃj±Øím(¶±5—gÔÑpƒh§ò¨¬ mqص±`jÇqfüÿêê¦åÞ9~¹Zœ´ô·Úééîù²ÏxL_Ǹ$Ÿ‡óï~(hºBdUȱÕ7,pEí¤¢ÎHßÓ7mU Í3Àª^g@Dí6&ŸŒ£Ù)ÿb&@ãÀéÆyÊš^óûPwý«¨rT›w½:Cr“NÃ‰Ž è… ec„0îÖj2ƒøûí·Ç¸¾Ýý~üNöÿ“a"¯endstream endobj 1192 0 obj << /Type /Page /Contents 1193 0 R /Resources 1191 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1187 0 R >> endobj 1191 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1196 0 obj << /Length 698 /Filter /FlateDecode >> stream xÚµUMoÓ@½ûWXp‰ÞîÌ~GÀ¡…‚* zi+ä:[b)±Cìʯgìµ#§2*B9ìl¼óæÍ¾™ÙÓEtrŽ:vÌiZ±ã±ÑÀÆ‹åÍLHLR´VºÙ¿ýxFÅgçÅÚëm•ï7¾l²¦¨Êänq½[DsúA¦ SBCœo¢ïÑÍ—/"΄³*þAÎÀ9Œ7‘D1lÖÑUôù€“P:F:íyƒdBjˆ#åaoàLÉ$Îùì2A>«ÖÙ®øÕÑd«§Y|ñ~—€ù2÷m'ç G·BáÑ0a•êÀ_e¾Þ/ÉYü‹îbN®ŠÍví¯}ÞT;¶zÑ¢´~`˜F)ýº£J0ã,åß|5ÁÁ0#­éUÝì|¶™@’†YäÃÁ7Ht+Ž mÌÿb—o²f5CúXkÜ1µVF`N©NÆÔ“Bº8‚IîlwôS¶ñõ6Ë}=s²M‘ ®ƒþ·ˆ*IÉS¾‡p#Öœ!mO(ø)+™¶¨ŽI­³º~£¼uœ`#5)GbŒØÌçO‹7øIŒ-ùiÙÑC`ÚQó¤ÔN ×ù/V}q_&J!tÿÞrÅ{|„¥‰ƒÕsز‰p–!P‹†($!AÀ ‰ufM]à{»Yù& fV.ƒ±]ÁxH€òÛõŸÃòÞ——‰¤í®)ò¡Gÿ@,2Òü5cÑ2f“B ®w¤A*i´hªèÖå:qHdŠì~ý½ëv:æaXäUY7Á\V{›¨4¼€ëãBè–¯ÛþÚ^‡E0 j%”uÆ Vê‰9lià‚ÿ>†G@ÃÖ4u…m™SxfˆØ3ºãOjú]Öø^ù¡í¥î{q/P³}ÿE…Ô\ñ¹4a‡p¨T‡Š=J÷Óôóñ›?> endobj 1194 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1199 0 obj << /Length 589 /Filter /FlateDecode >> stream xÚ¥TÉnœ@½óȹ€”ééÚGÇ™8#EYŒ”ƒm04™– ,væïÓ `O|H„Pwõò꽪êºH¼õs_Áõ¾€~Ä`a?Éocá 3|9ö{•^ɲ‘mˆ ÀÞmlT)Ýì›,Ì^È*³Kœ“€PÞ%[ï}â!êY/,Œpägï§wsý܃þÖƒ€ˆ˜ùÚ€ ýƒG1™ŒÒ»ö¾Î8+ ´Z"]Œ‚„r<)ÂZ`ôLæÿŠ´Œõ†áE¼´3fÑߨ*+‡\_æîìJ6ŸÞ­›ïmÚh?`æ` KcxÄ!P(b‹³ª¬WuÕp‰4Š´c äNÖ-ÆZÓNj•ÏžnQbÊcíÈW•ê-'ó2¨tŠÚŠQ Êž3´qhŒäÄס]ÖÙpUŸÚ¥—\LдÉj{йŒ ö:ÕÉXà^ÊÂ\¶´L:ÒÞ¥ªÆ!ìÆºpcaónfO^A–ãË £pL©E·•aª¢s7šcžöøíÂhg£IÛn4Ò*ŸV»á¾{z> endobj 1197 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1202 0 obj << /Length 571 /Filter /FlateDecode >> stream xÚ¥TMÓ0½çWDË%9ÄõøÛâ°…‚V‰Ãî …ÔÝVjÓ’¤‚þ{&±S¥«pEQfûÍ{óáÛ<š-™Š-± ?ù:¶4Ö ˆdÀâ|õp!ÒŒ#lòÁ?.Б4YnwÎ[oåi襁h·‡*}Êï¢wy1Åz0©‰ä ârýŒžh¼Šh|Q­‘ñ/t(kY¼ン‹î£/œ ²1Òmà ‚p¡Ø@œ¡íy%R¥PJ“Ïçv³-¾ÕÅñèê—²y©ã«[wÿLâªÒu:fKÉFyALn¤ìá_m«rwZáa…p7}jfWqÔwA67Rw4QLˆë³}€Qɉ¶³Ðo|=ÁC-ŒÊ}Ñn&`0Æhv½™€É,Á…ý ³±ª÷®ZÔ‡¦¹weWã ʧˆ•’…üpNµ¦GúTì]s,J×LN¬Ð3ʧÊì‘1™fãVÃÙKœ‘|J4&(ó9Á&3‚(Ãä5©å©ê%ü§I˜`TÌS›ÏŸ]ë»bÑ7סïºG*)¾àñ‹ â)á%`…PVH 5n}Å‹]yÚmèÚv ÄÛeGÔ›Í8XQ­Âj7­M»E0¿àêúPO ¯Á)ÎÿvG@Ãè*Un:¥œqb,ðX¡U/îjÔ(òÔ²äDߥ “Sø#ýä\Ò¹ÐÞc˜·Ö)“ ŠìÑMöã<Üc¿ÏÏîrƒýV!C>endstream endobj 1201 0 obj << /Type /Page /Contents 1202 0 R /Resources 1200 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1187 0 R >> endobj 1200 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1205 0 obj << /Length 717 /Filter /FlateDecode >> stream xÚ­—[OÛ0Çßó)"ñ’<Ôø~AÓ€± iÒ.•ö¨ ™Ú5îF¿ýœÄ¥.dö¦JÍÏîùŸ‹åÔ§ÓäøóTÅícºHLG€a„Óiy•!˜È'˜ÁìÓÖÜWÅ·uÑ4zÍgÜóÕRôE/ô:G2Óõ¼›"“ŒP–ßL/“wÓ¥Ð~P¿€ŽÒù*ù‘\ÝÀ´L`z™@@”dé/;€)…ÓUB1Ù –É×ä󓟉u4ñ=º|„r¼KÛüÄA>Âð„lÇ {Õ²Ëcˆd¬w~TÕóå¦t–y–Œ¡¤Í£7|3âKA¥ps³m´ç¥#Š€¤9»·#ŽlrÄVÚú 8¦ôךuUß½6¸®(Æð³èˆ̆¾œ-‹¶ÕíÈÒˆE…°•ÆC.{ókŒY>a¶‰6–ÍÜ<­ä%…„Ø…ÒT5élR«!bã°¿Ûm>î®ï¾õ[·kó«¬Eµ ²VÖm» °¶f?ëœÚï`Y³o2”HzØãs} !®cº|TêEUë±6K „â®ÏU]™f[¦¢Üg®ý`)ÕŸ2´ë 1º$·ßµi}žý½B/ôviäs„û¡'>Gè×>‡êÛÍmës¨¾)Ö­Ï¡úªÞ׿ã=ö9BO|ŽÐSŸ#ôÌç½ð9B/}ŽÐ+Ÿƒ÷Ÿ= ÷¡6>‡êWípJ>‡ú98¢Gæâü5«çãˆî´>‡êïpùès¨þ^7sŸÃ㯌ϡúeÕŸƒ÷—)ŒÏ¡ú®m:GÌî36æoÓìë1p¨þ0–ý8â­Sø<¹AÈî!ÿ~ðíîÜÞˆÜ]@Tð>æ÷ºÖëÂèrˆî¡žÓ\álã¿ì’Þ¸_Üá‹Ø ƒ'Ô¥"÷RYä˜eî ûA7ϼÝÏó‡Çí®wéÿ÷Lq§endstream endobj 1204 0 obj << /Type /Page /Contents 1205 0 R /Resources 1203 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1206 0 R >> endobj 1203 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1209 0 obj << /Length 701 /Filter /FlateDecode >> stream xÚµVM›0½ó+8¯ÇجÔ˶M«•z¨õ’ ŠÙ² „H7ªúßk0lÈ'YmW9Øïß¼±¹7#âšò\5Œç¦‡Máâˆ9Ž&e®í)™g}Žó/ïÕ‚ck”,c=û° «4ÎÊ LV™íïcL¬~ÐãqꂦÆ/câc32°yo`D=ÉÍßjx1SƒÚ-–Æ7ãësGrú‘îZÝÈãœt‰ÊChÝ£* kIëZÓÍHav9EÂtA (mSB¸ípŒ­Í*‰4kφ‘d®T‚jx’%e¾‚2Ð>L1ǰ¥ÈjÏzÎð7Jñ\ÞDún{Ä Š$˜-ã+Ô’µ¡Ê±´WM“¬<¡[`$(­î|û—ëið”iáïôÀ0Æ5Ùt\‰cÊt H‚äû­Ë¢ KMúÓ0@"F±§]ª?-¦9jóö+|̓hp@_èaÂýIOºŠ­ªYw,ókhpDÛ\ 9­¥{{þm·Ó`Sv¸’ªz©j ê¾Ò¿t]V­*‚ñpâAqG¡_ú~Ùu=àMLY„?Z)ÌŸð3‰î‰Oƒõ%ÆÉtç»t‡ñ›p‘îv`'ý#ÈIÄkMn[-ô¼?=xw©úyM¶³"hÉçñ»rÍ£Þ…ÜáÝ¡oãNQ?Ôyç;xxŠ}\}ú‹7zâåE¿k@ ÜýjÖ•d°|SŒIÖU|uH†ŽG¸H²·â ÚJÏúÿTûø•Ë_öÊ5Å ôÃ'؃Hª^T—ñꨨk€\ÕðPYÿÍSB‘ô€š0¡Ïا8‹ÕE#­pÕÖd\·U›ð½ ܪÚ/\Ào9¾eB¯¢gs›pkUèE¯œm»nðiû?÷ÿ웑Fendstream endobj 1208 0 obj << /Type /Page /Contents 1209 0 R /Resources 1207 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1206 0 R >> endobj 1207 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1212 0 obj << /Length 650 /Filter /FlateDecode >> stream xÚ­VËŽ›0Ýó^Âê'Ƴœ¶Ó*R¥>ºH£(˜A BÒ$SͿ׉1q&$JsÎõ¹××ö½­wØÂ¾l¸<†á|h#è1Aûëvù”L~–“¢ˆJL½'5þ,"ÕûÅQé À޲Ùnˆ@ŸØ„rg¬¡…”?´Ÿ„qYjý±†#æ zD ¬å ô¤ÅD¿,¬Ö·ÆŽ+ ¹¦¥û–?S/ðËA®œšç«©Ö\LÊDõ†ÂÑNª´»ãsà"ä Æ饯o%£+\àQ?ÀÀ•“pÈé÷ cæ¸ B»Z–«ÙRÑþí HÚ0Ú’¬Æ¤MoHµx,ÂTþ·~Z¹$ NåäRåøXyREZ k)ååï¸(uÀGð¶£³<Š›%z›rP3ˇ¨|º£ƒZÑÁg­k‘dÄ ‘q£{œa|m¬“ù›ÁlGG¢+ 7‚Ó› ô¬L¾2ƒÄz|•pnÀy?<0àÁ+8jÃ…}Ö«*ÕpÙ½v™Ú¡N“Þ»DëÊ{¿:àebâþ~!¾JŸ9}Zªtݘîµ9Šü^Æ.2É¥¡I.M›p:ëe,oyþ™zä½'E-&uÆ ÉH=}Ž7¼â$ñÄ„Ó.âé@¤•bŸw(læPù¯-˜c}ÛPa‹ô˜[¤·97͘l6éá¢8ï¼éU~¤!àÏ7ãŽò(u"äúêÈ0¤‹#_ÖA$ÐÅòåþ^Õ§(‹ÊÉ2ªoŸ> endobj 1210 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1215 0 obj << /Length 559 /Filter /FlateDecode >> stream xÚÍV]oÚ0}ϯ°´—äÏןq»®›&mk¤=´ʈS"A`(låßÏÆD¢U R…Ð=r|Ïñåú^gÑû[*‘ÆZÚ•H¤$`A¢¬¸O“MS®ãÏfõåƒ]ßVsãÑÍrºY˜ºÉ›jY'Ù8ú˜E€ˆ}ÁŽL(,˜4]D¿¢ûG‚Šˆ qD0Ó©@ì‚`К¢EÄ)Û/æÑ]ôíÀ3²D£éºÍk!h›¸Ô Õr—8l€d„Ø4Í!´îJúÄ»eXkÂCªٻ∭ª«fµ-ò&?]O<·Mð 7ÛqߘÒýÞå1’–;o|œWŽÞ!F|\–>–;ïúºmfUþc¯Vf-'Ïðy1Œ`{€úH =/f—8„x‚^DëAC<ˆùÒ“p[€Â’r_HßMiÖ¦žšÂ?ösë£Û×S<Aìz=H<à=°÷zÀÿ×=ÐA‹="òOö¾žûƒÊ–uˆ)¥Þb9¨. ±I@Ä¿ëæÜgƒ”åâ"õ‘v©z¢Åsˆ‡QÁäETè.3³š†xú¤.ÒttÉp …x —¹;ºeü»DöB'“TjG&`ìõƒT@´Ÿ£$ÖŠ¥N³ªR )ëW~–údj³Î×§œ+N¤‹Y¢i¼im»6²i¿>€¸äŠ+¿¢Ú;¹L¨ˆ—mGÆJ×ý|ö¼}2‡qò/F‰²—endstream endobj 1214 0 obj << /Type /Page /Contents 1215 0 R /Resources 1213 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1206 0 R >> endobj 1213 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1218 0 obj << /Length 549 /Filter /FlateDecode >> stream xÚµ–ßoÓ0ÇßóWDâ%y¨ç;ÿHÜÇmT X¤=lÓTZg jÓ’f@ÿ{ì:wlŽªè¾N•»|îbßÑÙe¬ˆ’Æe¬hœI ãbq“%"KG(hòq×>V³ëf¶ÙèFÞsòèîOª¥vê³.u“Bžèzno1*Y¸JïŠiô¶ˆ ¦æû "#‚Iˆç«è[tsGãEDãiD S¹ˆ˜% Æ«ˆ#;,–ÑUôé·Ÿ‘q4ò=¿Èƒf™y8`:Jiòf¡o)ź#ØìªºE_ßÛ—?›ôœš¨È‰tN/uYÕU[­ët$ÏYëì²²n­ÏŠuél¹Ï™Ug•¸ˆG&"ã¦*Rc° æë^ øW „a0x÷u˜j Cô`_‡©ËNİ1 #9ßÇØïW»Wî±/;gßë͇‹ñøA·ÎÑE³Þn¯ôܾÍ-Ô\pJ^dO^2_‡É çÔ7ëÁÈ}æ+"†8ÆÈ{0”¯Ã`H1L5TÆÖ×A00Ø™q\ ¤¯a|Õ0¬‚Á‡éC¶/¼L±¬¶­¯Ãƒ³aŠñêT°Úš¹†&ߟ¯ÃluêAþl˜ÊÍÔŒýÿ,å9:ŒRÒÌN,?ŒR¶Wg®öït­›Yk{‡Í‰Å³¶H&O]â¦)ˆä©û§ë€ Æ‚Žywî#…nÜ*Sɺq‹}rÒ6%k/×?wº>àÿʺ¸$endstream endobj 1217 0 obj << /Type /Page /Contents 1218 0 R /Resources 1216 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1206 0 R >> endobj 1216 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1221 0 obj << /Length 708 /Filter /FlateDecode >> stream xÚµVÛnÛ0 }÷WØ‹ Ôª¨›¥>ö¶µ@Ñm °‡¶ÜDY Ä—ÙJ»üý$+éÜ,)ZÌAð0¢H’x< ωRŠÑ,T8L N€„£émD9Ž"%SÑ]_X…ãè<ŸkN«É¢Ð¥ÉL^•ñýè28bûÎO§ÂIü nïq8 px`D•äá³U0¥HXŒÐµ2n‚o/~ë(é{:Þš7±jêÓŒ¬9 Bã0ÆÑ§©¾Ã˜”«´ëe5m]ò‡ç‚ôœb¤” aBˆ¬DçùìwVÔsÝyûWI†"L@!"IÚ]ÐþÂøjùuió캜/G±"QÕM&q¤ˆ\~Õá¦ù®szcšd¤³"qùØÈ6e­´€sè2¸¸öNÙ¬œzà½Ýï餪sÝZCä‰ñ~!B‘Ì„’8¿§z–—y×øDØgÆËyîÊìâ^V3/gÝÜ8äƒþh²ºÖ3ôØÅµíN E‚0⻞éF—=õ×–^ê';sãVÏõÄÅ¿ÃÛ/øS—•°qPdù¦mÝÙ«…ù{°N¤«¡¨®nÎþ¹É~)¾-üÅõú"Ú2Ö MF_Ï%Û5—¶Ÿ8z*cf·ý7ÞÒ„pR¥ïì üÁƼ“›V]lêÃÐ!d?tÄ.:m[ôà $ ¥‘`¯I¤o0}< )÷Ó ¹“†ÉL3RŒí‡†ÚIcñÐöñ 4ä¾àŸØâíEXÔ:n_:³©ÔÓt/=¥°‹ŽK¨¢!>Hcc'“vùJÿ%ë9Zod®`T:^Ôî R S@ÀR¿=}Ö¥n2£WKˆ#éd·-Ve»t=_¬N¸À8>rýsÁ@<šÅ„GUã•Þ‚êÆÔ¯§¿—?õËbúæÐàendstream endobj 1220 0 obj << /Type /Page /Contents 1221 0 R /Resources 1219 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1206 0 R >> endobj 1219 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1224 0 obj << /Length 578 /Filter /FlateDecode >> stream xÚÅ–ßo›0Çßù+x„‡x>ÓÇ®ë¦H“ömULÚFÉÖü÷3"2µÚ@‘îl¢ï}îtØwZ¯® ·pmÂܰís@Œ±Ã,r#æ»+°óáÐlŠäkT•¬ù­‡6fÿºØJã}’¹¬]ŽTi»E1§eàÆáÚzZ`cý@„ùˆQvº³¾[QŒíÌÂöÚˆ‚Ù?õ#bï,Ða±µ>[:+-´+]öù €12$Dt~þ(DÜ`¬Ñ÷*mŠRü«2Ýï¤j’nK3ŸÔF#âDб‚^ì‡ Ø)‹ÌˆªhªC–4‰Yß`†‡hŽú#Ö6×° ½ü7 NRÉÝPî¿â¥Gެܥî꤉„ÞŽæù£Î•ÌÛ亲q­“4Æn %Ç™±enlÞuHëM{§: öá7pr<}(TDfâdnzŽ»”¹æŽ#ö ;y!;`±¼×êé;-·‰#Oÿæ);à`t6A”ͳ9µ¿5?¥~ˆXU‡o²y¼Ý%OjzºL·øøtsß¶Ê\Ug|n1áγª­û|gâ2àÁüc¢"±þHç8X,xZòªn–ÿ÷žÌ(B#@é¿(#¡aBáz"¡bPçó.¯·RI}Ë~Œf“°½ý÷ýå±v9ûþ 3ØÃ^?« Äx¹K˜SÖfñNVï_÷7þa"ž÷R éÿòå†Iendstream endobj 1223 0 obj << /Type /Page /Contents 1224 0 R /Resources 1222 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1222 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1228 0 obj << /Length 501 /Filter /FlateDecode >> stream xÚÅ–Moœ0†ïü á€c?°sLÒmµR¥VEꡊ,¦¡ZXJ@éþûšu6Ú HÛ* ˆÃÌ4~æ•ż7±wµ‰4ÖÒ†¸@š HR,€ŠóÄg‚”âÚÿdšÏ·¶Ä_•[㲻ݦ¯LÝe]¹«ƒ4^{b"bzh&",˜¤hSy¿½$%(÷Z{3­z²ÁTk@•Ç‹­÷ÍûúÒ'´ÂÓN7“Ü`ËÈaS‚íç S„”â—u瀫|³OXšBÒ÷j%à¤=¶òÐçÎe]f ¥m“u.nËÚ¸Lrw…‹ÅAš!û²ïÊì{›5i厰;ð ÜÈ(æ`Å8‡1xeHE.‹w&g#r›%|&½µž‰šŸSóuPâ7ûDαeÔ#îG³ãz(º °œnò94ž ùÕ݈ÆÈ]™À\7z!¡Õõ¯‹Ôÿz=¸Z†ZOP7³i­–ù{™ îg£ær­a¼ûû‹›ñ 0ÞŒOe>Û>§ þû•ãQÖÚPÆÞnxNýŽ´‡©a.f§Rš2Q»»"7ÝGS›6ëLît†bhðûgö¨ðûç7Â*®¹æ‘«€ æcÈŠ„¿k]qbÿî÷Gó÷gÿӼؾ¿Þi’Ãendstream endobj 1227 0 obj << /Type /Page /Contents 1228 0 R /Resources 1226 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1226 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1231 0 obj << /Length 1028 /Filter /FlateDecode >> stream xÚÍWmoÚ:þž_‘ ÏvH ‘î—®ÐQ©ºle«4.Š 6ÔS°s“@Ë¿Ÿcš‚) uÒ„_rÎyÎyÎñÛÕÈùØÇ‚0PÍhî†ÐíøawDÇ ßi¶°ÃMñÈÉCFÒ”eAÜf¾Ïfz_ÙœeMÔm01+§<x Ï÷š“Ñ­Ó9È…ê‡4ˆß¾ w¶tþwÆèRº·^ØõÝ'5€…!v—N{Õ qî/;;-e¨U·te«a§ðöš-!lpQßEéäǾkÊÊ:nƒvV¾fs.xÁ¥h¶¥K Ó&\0Ó󺦕sÓÎ55eï<`_y«½@ˆö¼mx›ú7;ìo¦r5­ª#û“qºùÉŠ<^’g11ö‚W€0 <V6‚Pí=“eš°<²àëhƒÀm¡à.îhfâÞº‰ ªÅâž%lVÒf³Æ™Jæ[ÎÅbP°Œ2Ë_¾AM§`yñ™¥wŸŒ1¸ú•‚r‡ŠºÈÇçf!¼0 %ï¨Ünk½ðÊEGÚtcZíxØ2’¬à³„Ý‘4Š¥=A«©ÿ Õ}Ø)µv „¾oª©´D’Œº‰¹ˆ×ŠR™ê–bƒãϽ¯ƒ›(š®xBc&¨RÈ ö| ïÀ´•aïûè+VØô B T]¹Ž–¥ÇŠeå,Í$]éÒ;íø+ìãzÇ#è'ò)ŠfR•f,Ëí˜Fš±P…¸ˆ_Ô¬ùxÛÖ ßµ›QÄè‚Å|» ö†ÚAÉ^{µÜhY¡Ö@–$=™ƒÊÀ¡lùeȰL%ŠÚ[«mHÖ½=åA>|”…ÓW2?˜^.ìèB–¸ ©Öå:ÌÔ‰rÍò™b—ˆ""™¾N•MáÓ£*QµÝ¼%má@ëV9=ÉÐrRv[IïsA’û‚ì 7RÒm–NÊj›V–5äbÙ3$OS`‰¼ÎÝÆœ!g@iùRñB´“›@eíŸs!³²VmÄy|¬ðkÐ/Ârµ¿ÎªoÖjmRv|{Û–FyúÙe(+OŒÄGÇÑÃ®Ž±”kOI6“tßDÆR³oê>qÒלö­ÀnÙªŸÒ¹"}.OÉ®IœSF–;BöÖ×,û&ü”©ŠY}»¼äØn $›±š¼Çݹ|ý‰»sÇî9/=ÇCügïÚÿùnŽ·/½'ï=:»êu‰<ï÷ßœ5CÕ“3PoL¯[=9@íN ÃR‹¤ÜýØö=QFW¶£fˆ«-K·Mä7VÛ/¾iù0joßX±mzó&ö23½lL·¼ó—íµ|Þ,˜¨Âÿ5bc6endstream endobj 1230 0 obj << /Type /Page /Contents 1231 0 R /Resources 1229 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1229 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1234 0 obj << /Length 558 /Filter /FlateDecode >> stream xÚµ–ÁŽ›0@ï|…pÀkmŒWêe»M«H•ZiQ´bƒ³K•@J@MTõßkb‘9EM•ÃxBx~cLƉw7)¬"’%RɈbP’Í|&xBsåÒ›ÏïM"ˆ?ÉWÚŽËE³ÖEÖyYódê}H<ŠˆùÐLH,XDÑbíýðfs‚2 ©G0S±@?MB0U ÐÚãÀŽÉÊûæ}=qB û¤‡Ao0©´Ú”`ós†A!%„øYÙ¼7iPf@ȼu¾›è±ÌdaÎ¥:°õ2/òC}adPimã*/´)bc¹´qyXžvôe_¿åéS•n6ºŠž9~ÃvÂ3y3!gXqæÎȰ{sÕ;þKo.oäMÏÅéø:ÝÎø|&nä.þ“;tîÛºjµuÿeÆ8™Ù9¿»’öYZÓç~鱑8pãøH»À©sœ‰«ÜvÑÜ+d;7NŽÁåŵGÄ{íÔn“¬G`N!NF q7Ž ‰A8Kâ0L=‚t;°aBÜ#Än&¨A¹«#—u뵩¿ëk¸ã¦^”Ŷ£‡³û×é®°_¼³›nѧÚ÷}ÔæE3MצŒý{/<2½›ÅmY ŽeHRL¹ŒÅ}Ô…®ÒZgvEÊn’@ßt-fPá7Ý•nÛSq/È=ï¶0 v´ @øee“ÞÉæe<×ìö¯út¢ù|]=%endstream endobj 1233 0 obj << /Type /Page /Contents 1234 0 R /Resources 1232 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1232 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1237 0 obj << /Length 575 /Filter /FlateDecode >> stream xÚµVËn›@Ýó,aÁdÞ0Y¦©[YªÔREØ$ó(&nÕïà1‘M ¶U-ß{ùÌ9gî {ç7 ÌMWÁMM—#À0¦¿ ,sm3h}ÞÕOIôPFE!KþHÁ“^_$[©³¯2–¥¶BÔÎJÒSHq d•UŽœÀ18Wh™MÕou¼6‰Þ†,ÒS¸"‡ÂCPUõŠ¢ÒQ·¹Æ-…Vó¡WÁ5«3æ³Ü&oV]w—{gŠ] ž„í¿o µZë^ÆI–ÔIžÙWPQ­ã6ɤÎ\ªcëï/R›ý{Õ€Þð¤·Õ†ŒqÏZ>D~ªÛ( H¨¿S(@O$¡ç¿;&au‘z±:oLC1ñ9y4ˆ Uœ&/ ħ9ož&âpˆ|úài<÷Ð,×—£AÚ¿”ãÓІó¸h7m§àðŒã7ŠëÍC¼A=9ÏýrÛ¯}Ëô&OMFˆÿŸ—Ž€ºq‰«ùˆxݸ„¢.ßëú 3YFµÜhOZymôm­æ`ÔÒFÌjO˜ˆÝ2xKƒ#†ë,¶1³òReñéNW;ïó—Ýw™uòÿEÀ§òendstream endobj 1236 0 obj << /Type /Page /Contents 1237 0 R /Resources 1235 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1235 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1240 0 obj << /Length 801 /Filter /FlateDecode >> stream xÚµVKs›0¾ó+8â™ èò!‡$N“Ìdš¶4=P‡€œÐp;v}d»Ä%ÏÚc<+¡Ýo¿•VìûÆá¦DR€ðǦĦ+â”PÓ‹qѳ©ç9Ò:WÓ«˜pl%¥G§y4KUV…U’g½¡i |ƒ˜~¤ã.âL3J_F0Äfl`óÒÀˆI›0ÁˆHIÍÔp([O&ÆãÓÇ »tÜÉ›ÂÔÕ´ F Îpz6Á[q>»]sž|L—?TUŽÒp‘ kÞ‡g‚¶ð0’R0Ó¦1kÐÁ"L§Uöµþ#ÿÔA aÚD"êQ·1PÚ`ôµL²»‹Ja•%Š¢M¤ReÕìª^ƒ„5”d«å0‹õà¦1X*ëØeB€7–*ÊÚäi>¼Í쀕0HP® ªq’%ÍQÙ ÃJËI’)=bRË|¬å¸9ézt½¬î“ð[N§ª#gåÈ&.¸pœÆÅg5V…Ê"k³Û¥–Mœý~”§Ó°P7ª¨’H•ß1Çð'Z)ʳ9¬øùÖ{0¶7Î’œë©?¨l0‡ ü;Ú2NÃ$ûï±i¡ÂøEŸdã3VU˜L´Ù¨f¬/{Hó¹݆E”Çê]ñ•ªzÚþ±êC‘TÛJM:µ´/>Ž:ž®7þ c¤Ú;Š:2¬A”3þøæñ®›ýLgOGÊepí0{e®r÷¹úJ梋y’UƒñNˆú~˜»]ÌÓdÐ!<;¡îÊýP÷ž žì»Ç÷Ã]vpHâ²®3|W9CÅ^È»¸ƒü‚Õ\s&¤Å™¸ Á¾âæè¨#*‘#ݵÊsßS›xòÐí>/Òu^‹4 »É3º¯<£¼×ߦÕâ¾µ l5«t¥„±ÿïU[@ëVU@oʼ:.Qy’0Ó%ˆ8®h¢ƒÒ]g—Zu|uµô{’Z³Õn]ö·f«®á}ŽûŽ«gªGãåäj3iuîuNë¾}±¼S›ŽýƇ,endstream endobj 1239 0 obj << /Type /Page /Contents 1240 0 R /Resources 1238 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1225 0 R >> endobj 1238 0 obj << /Font << /F26 16 0 R /F62 788 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1243 0 obj << /Length 338 /Filter /FlateDecode >> stream xÚ¥’]kƒ0…ïó+r™\˜åML4½ìºnûvQʰ5®V;±¬Ý¯_4uëÝP8çä$çÁi†næBcÃŒö’•Øpœh`J€ÀY±$À™Jh$'Oçvëò·&?l£ßc¶ ës·³Á½ØÒ6Rb«M·$¹–Dúý«lî2˜ûúCT”Ԁ7{ô‰–+Ž Äñq&Mªð—8cÞ£XÈaØ¡Wôü›ù hœ4½ÚGø1Õa’%’FÀ9'E}\×ÿÞ»“[Æ+ÿv7¾™+1JòG ÉŒáqŸ4³¥«\ëêŠFÚåmЫlpÊ`ê2hÙƒêÜ_”ì £ÔÃ)ÿh4Ò‰LBÀ NtßëÞV¶É[[&]½N3j9^@-((r¼|QA@MŸÄ—EpÁ•T(R7ax°‡ÇÛ`×ç ³útþ°ÕPÿ±b™endstream endobj 1242 0 obj << /Type /Page /Contents 1243 0 R /Resources 1241 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1241 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1247 0 obj << /Length 300 /Filter /FlateDecode >> stream xÚ¥‘Mk1†ïù9f¦3“M<ÚÖ¶BK?<ˆÈVctµËJë¿o4®Hé­ä0y ¼Yqsîç¥!$^ÌFB—uÈ9íÅ}Ø>^Ç`@ô—«n7›énª¦l–›*v[0äËL.²È§köÉFcà3|À@*ï ÿŠ$zO|Í4©6¬Ø{9÷tbQ粩wâF-•¶Ô‚SôÈ7‚<#ˆç}³X–úÜnCm'z2|xR$¿]^Ã<Ô:ªiøÃÅEhTêÿ*E­‰äÊD)é<*ž£DÛ£Î]¨B]6a–HãWg‘y»þ C#v§“š®®ÎS"@J·yFFlê.û¾o×ú½ÿç…þܯ~2endstream endobj 1246 0 obj << /Type /Page /Contents 1247 0 R /Resources 1245 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1245 0 obj << /Font << /F26 16 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1250 0 obj << /Length 775 /Filter /FlateDecode >> stream xÚ½UMoÓ@½ûWXpI$¼ÝÙ﵇U¸´Uå:µ”:!u ý÷Œ÷#µ£Ð¦TB9¬Ͼy³óÞìá$98b*µÄ*\&³ÔÒT+ ’K'ÓÓP"í8c’ŽNªb53*¯¾ÒQU¶‹•{"eéCŽêy埾U³ÊEWMéþ₎8BOŽ“÷“RŠ?pù¤&’+HËëägrzNÓiBÓã„nLá %`-K¯Áx|™''É× N†@Yé0”‚p¡X¬a©zPð¬Ú° ƒ#ÉzgˆL˜&ÜHéò¼¬›r¾žâf…x/>VËOoº„˜Ìå!W/m µ¬Ê¨ØRéãò’(#íCêâ„R߬.M(ñ°º:õ ‡úú›ha¢ò¼n«Uá$™‰dйŸgÅônÛg]Ô~>c ˆ¡8‰Œ[œêc2?ZÀ…î¡dN˜µÿÍi±W·{[M!AÅà ØË¿y 8%8.EðšØÇjÛVÚŒÇÀ‚öME9á’GS-É88ÀƳàŽ«Ï8<â³­;Þ`Ûóç_ñ= xÃ+¼Ñ±špÁã¬ZEYuZ¯Â¸YÆ“±e£x€Çëuø"ý2—4Ú¿1 Ì?ÍÆLŽâÝã/J÷xyç×w‹ßw?ª&–ÿÒCµendstream endobj 1249 0 obj << /Type /Page /Contents 1250 0 R /Resources 1248 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1248 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F47 132 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1253 0 obj << /Length 807 /Filter /FlateDecode >> stream xÚ½VMoÓ@½ûWXåâHd»³;û! ªõÒV•ëlH¤Ä ©SÚÏØ^§vÒ$”Ãzãùx3óÞzO†Ññ©Ð±cNÓ2ÇŽÇFSD<]&Ró^_X‹.ùä—ŸßÑFñät:óõÓûE¶žû¼H‹é"ï]Ï¢ÃbN?¨‚)ÔÔgóègtyÍãQÄ㳈3鬊ц3pNÄó…l6³è<ú¶‰Ó§@ýv¤“€IÔ¢.¨SãÎJäÀ9OÎ}ºêM²ÉEþH|V,VÕ›l×óÝ}eìóÌ—õŸ*Ñê†I«T•æÕ4Ïfë9k wTµèø£Ï/üªðlrT†(À0-÷:}MWÅ4›ùàVWÌ)%Bj)rg«(_Ò¹¿[¦™¿Û$sh Lr]÷äJÕë+Ê™7¾›vIƹ•/f—a÷³«d©±Ë¯®¾™AÛp`0˜~•V RÂ6`ÒY}¦£Çm•V‡éL€f PïéD_:ú Ùôë£*Ó˜,™pî¿)­™ÕýÁRÓP xAì埴’3:.1h ‘Ú¶”6Çc@ÁÛ¢â’I%Q-Ùtp€kz +¬uÆ€ám] ,¤ü÷[A+Ps)Ðt  jµ$ [G6tâ£Ñ ¹JÆûpè,îaω¤iãY‰}Þ¨z5P|€¦Þ ¢~÷„Jš/PëŽtûØÜøÍÝè7QaKkendstream endobj 1252 0 obj << /Type /Page /Contents 1253 0 R /Resources 1251 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1251 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R /F47 132 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1256 0 obj << /Length 626 /Filter /FlateDecode >> stream xÚ­T]oÓ0}ϯˆÊKò×ߎû¸AA•@‚E¼lÓ”¥.µ”¦!iý{nlg¤¨ãc <ØŽsÎ=çľE4_Rk¤% Å&Ö8V’ A ‹õuB0’$ͨÀɕݵµù˜ŒSö›¡­ß]ÚÚøÙ³1°—'¦©Ü+)X€å¶XE¯ŠˆÄâJ …lÅÕ.ú]ßâxáxaÄt.⯰ÀˆhMã]Ä)ut½äÉ€(›2]W„#Æ%mQp©N\þçÚ/ó¥ “ä@UˆåB¸/lSÕÇ5€%ÐÍÞ˜öíåÜ4å}mîìmgÅ" IÊùÓ Ûß•=lwæ`«¿gβU5óª‡dÒBÐ ›1ıÎÑ»rgú¶¬LÆ"aHs¥À(E KŸå ¥"Í”mFìcP…‘b<‡rÆé;§&Ë9’9§¢.ë²ïŸ£¨€gÔp‰ò!º‰šÅb™R‘ìÝô(8(§qPÉBJÔp38^š3í(–©ÂKHÀºSsƒð„…+„¹ õ[t¦NŽ(£î¿xÂ5´½K?ôî'ûygÚÎô¦9”»oü»ýæäóvûÐÛ*Pp?|I‰š¥HЙ¼2¥ÆR‚{œ`~6gGÂ,¶þ®˜_§ ¿MrÂOìÃýQ’®²Àì·QŽ_@;úoYî{;Ù :×¶ok¸;Àú7ìɘj‡9ô=ÂØ¿wÃ ÑØ %4?–½ •t¼6éʃYÁN‘jšC«Aú1ì?±xÁ•_QL¨ŸmÜ5ê&§ÁOïüørÿíá“iFûßV-šqendstream endobj 1255 0 obj << /Type /Page /Contents 1256 0 R /Resources 1254 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1254 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1259 0 obj << /Length 746 /Filter /FlateDecode >> stream xÚÍUÛnÓ@}÷WXEª oö~±…†R©PhÔ—¶ŠŒ½¡‘'$NiÿžYï:¸ÁEú€ò°v<—sÎÌì£áˆÊØ #áOcƒc% ”Ðx\^%LÒAJµæ&9±«³7ð"p2šÍ­z»,¶ [Õy=[Vƒ›ñit<ŽHŒáGš`B!Á$‰‹Eô-ººÁqáø4ˆ-âïð‚1†Æ‹ˆS־̣‹èÓ.N Òn¤£€›pĸ¤-p <”ÇM0rÈ Æ8¹¨×¢›/Nì|e×Tû<>Û©õVUaáHÐŽ.€*Ä´Mø³ª˜oË`IHÇR0¤Œ&᫞X )®U0Xnê5 ë Ä Òœ‘`÷º'Ðc #…ˆ¾œ?3¸Ùÿ nóœàØcp©„¾9h:~øÎV—v]Û{t{àB¹^èe´çtž¯ëY1·âvÑPjÛtßñ7 ßœßvåÆ0øù !ÈAC 3†86º ó!_ØÍ*/ì¦GÂáJAÓSİô3uM©¤’V­ï.O§F)Æuß_ŽE*5îNq ˜2f3c–•¶Îgó>:)‘ˆ3ͳm«Âið¤6u™emÇ7ÚöЃJAU—_ 3ËÂESNî'M×.’k,ð.A¸Üž¾t§LÆC»X;ÏÐ:gùÊ»·FÐV©WS$%Ó C+  ¹ß6­ ÞÎ0¢B¶óu1ëáÇ‘Ñä§ >‡ÙÄB?U¼jÂé÷k)³ ÓªœØ‰—©ª'¶*½ñB¹h-šáˆÓXbÉb¨¦ä€(…m`Âpm76Ä«—þ„ªîýS߆VÛå^Ný™ûãKëaïV€Ù³à4l2ÂØ¿ï·N v½IXgPbW:Ê6PEáJ6$¡ì:¯[¦°›³i¤màvêoÃá"23®üÅ„ú§é€Šd¹î-èðÐîúû‡¯v·åÌ×…endstream endobj 1258 0 obj << /Type /Page /Contents 1259 0 R /Resources 1257 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1244 0 R >> endobj 1257 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1262 0 obj << /Length 1002 /Filter /FlateDecode >> stream xÚÝW[oÛ6~ׯ:À°Šá]”1ì¡[³6@w«±—¶0‰®8’'ÑkûïwÄ‹*'r–&-†~ )žÛ÷ñœƒÃg«èìœÊ8C™„eµ‰3§’ A Wå›9ÁH²EBž¿6킨¹Î¯^èÝ^·Úºƒój§Ý¿?ôF;¡ºè?q%ñœw«‹èù*"1†±^DŠ“$.®¢¿¢7ïp\F8¾ˆ0b™ñØ`D²ŒÆW§,lvÑëè÷ÁN†’±¥gáˆqI" Ó#@ã{ g炎øÿ4EL a­WÕÅîPzIBF’‚¡4SÄ ~?a+E)W©h:ÓB`†8AŠ3âå~˜0èЈ ’"I9ÿÊÁUß0¸DÂÍ2ÞåÞáL…g9A„§Òƒ™@·¹ ßwì> endobj 1260 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1266 0 obj << /Length 443 /Filter /FlateDecode >> stream xÚ¥SMoÓ@½ûW¬ÊÅ>x²3»³âP @$ ¾•Œ³)‘b§äCÐÏÆkG¦Í ù0;òøÍ{Ïooªl6'#_oB:½Û6Ç6t‡ú°ÞvÅ}µÈÞW ìÁØ+ƒ¢i³_ÙݽËLŠE&AyÇâwl$ ÷$ÚL“›Mv›}=㔨œ"Ý ¼QƒÒ†FâuØÄ%œ˜£”2¿=ì ty¨ÛOݪ ηÐ4Ï…| «Æº&œ„ÌæLc"² sÿjÝ5›ãr˜DœL²ë]”Ò¾¾€eÁjg‡ýa·î.à(gâº4öæNé-h$%Z0¤õ¿ÔJÅ_õ¿m=Hú·ðó*AüCðÌ4èS ´ô®ùR·aÿX7aa/*ðÚÚè’&9þˆ‹’ãÊnüö¼g"]‚UÚ ¢R¤^¦ÆÅx Rÿš И3¢\o0)p•°¨­é)}]ØÕ‡°L±ˆ¡îkUxÊCVr~Þp*È×,¯µMI¤tJÛ¥fr…~<èÏÓC8_¿Ä©×endstream endobj 1265 0 obj << /Type /Page /Contents 1266 0 R /Resources 1264 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1263 0 R >> endobj 1264 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1269 0 obj << /Length 727 /Filter /FlateDecode >> stream xÚ¥UKOÛ@¾ûWXô’HxØ÷#j{€B R[µ¤'@Èu6Ä"qÒØ ªÿ½ãÝuä¨>Qå°Ï|3ßÌ·“ÓirrÁTjÁ*\¦óÔ’T+ ’Q–Ng7#J@ÉqÆ$]7Û15#—¯.«ù˜ÉÑáËE¹ta÷ÝÍ]°ªŠöJ AFî¦WÉù4¡)Áõa¤ÉM‹Uò+¹¹#é,!éUB€[#Ó'< Ö²t•Æ»Ã2¹N¾íq2ÊúH§‘À…b%† õ#JÈk(!“ ÉzØn¤ôðoʪXîfÑ’Òž¥ä ­A&Þðí–-ŒŽu³-«‡.Á( ÌÞàdVƒ L¦Õ ˜‡©e ¹}r›Ïg'?ª²©aqPÚÊQ°R²HsÄïÿ%_¹z“®I9X¡5ƒ'*Ôú–1,µÄhUç»ÓcM@sa"ŸÖP6™ LKªŸÔÙ2¯ë×dT´ŽÙ¦­X/›Éä_¡OÁRƒžJøeQªªÏ n=ºF7JÐÍkê–HC“€@t ¡70ãø ‚‘hÀ,ÖU“—UNî¹Ùæa[ÆÐÛUÞ”ë*\VÎÍÜ,ìŸ.ÞîêVq~[û´÷Ç˯0Ø+ÀfÓLàƒS¨Ý6¯ój·r[íqè=ÔF(sØ—ÇjÝr{ªîËXÚß­+B[ÌKc^Tb0ÂúNÝwa¡ÇaŸóº(ËÃ+¬æÀ­¿ºßÌšc“ ë\[»àýg ­(ª9‹Ê Ïuºˆ¨%‰’ë‘ô% Í­»ÎuÝl¢ ö¿hkóØ5¹ôÇ8ßš—MD_Ï;™lvÍ!èO·ï?ŠaSÜฦœÿÿïu3\áÌæ¦á¨ÐÊW棫ZyuŒ;MOÇ–v‘ÖÕ˜ÊÑ.~‰ÿ`TN$™NŒPváEo{Íü_ÂúaýüÒŠ&Òÿ zíÆendstream endobj 1268 0 obj << /Type /Page /Contents 1269 0 R /Resources 1267 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1263 0 R >> endobj 1267 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1272 0 obj << /Length 574 /Filter /FlateDecode >> stream xÚ¥”MoÔ@ †ïù‘¸$‡¸cÏ÷ qh¡ JEöÖö²Ói7v7‚þ{œLRR. =ÌXk¿~ìØs¾NÎ.ɤ¼ácýz‘Zƒ  )]on3iL^sÊgB{}Á†Ùe½ ñöv_u»ÐœÊS½oòûõUòn`*ø‡ƒ˜¶ ¥Á´Ú%ß“Û{‘n‘^%¤w:ýÁ†ôžÒ]¢HNÆ6ù’|zÖ)X¨˜+ܨ@*C8q6r£€ž…Ù:÷”…]{“£ÈÊé®¶áºláÛŸÅ|á£ËBS…¾˜³KM³æ0YNë!Ç«º©¶ÝfôDœyj Ö;.gp|½ eÁ*gG‡]Ù.ˆ /É>o¢G_5‚×z¨º°gJ )A ¾ô®Ë]8¶eŽ ‰Q‚WÖr)R˜Ø®;"š›ÕL±Ïéf̬TPœ‡%(§À8Ò/¡.¶åñø/DU¸@£ 8RjN³Zýå[ÇpE©ãp£JB0žG®à)òJúAæw¼z?ÌÇÐb3%n‹sV -,$s@Èc=HKV¨YãYÆãĹ÷‡òðÍ÷¡™“ŒÊv¦Œ<%Æã4jwBÈ…üÜ*å'ŸjÏûZ7<êCŽî6ñ¶éuó8r5mw‚…v¼º(åÿ/ôLhÚgÃû+],I‚ë˲¨¬À¹áPž&\~p†søfݸÃW9ê¬ÿÑñ@½Òb¥l´H ÅÛCN:Ûm˜=o_Ÿ¦ÇíçÓcx~Ö~#3=êendstream endobj 1271 0 obj << /Type /Page /Contents 1272 0 R /Resources 1270 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1263 0 R >> endobj 1270 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R /F47 132 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1275 0 obj << /Length 914 /Filter /FlateDecode >> stream xÚµV]oÛ6}ׯº ˜~SŠ=t·úåå¥) U¢;¶ìIrÒüû^‘’#9t–´+‚Dr|yxî¹ç^òÕ"8›Sj¤%<«PãPI‚%4\#‚‘TñŒ µ¦içëmLpt+¡(Q~ÐücæÙD‡öœ”eº7F”iÞG -{qdrŸŽ3*9"’驞ó}•·å¶ú1˪õ0c,¥¬ÜܸÆÃ/ñrã Jˆ<¢f"ýhÞ¾Þæû ø&ëè{ˆtƒИÑxíËY¡Óð´`±¢ô?Ø–Kžm‚”àÉãvàH'„ý ¦}M»¹¤¥œªôڬʪ´ŠÚÉZ÷\—U߸D¸ç¶ï¢•=äýáq ‡zB'»‚оƒŸY[>†:Ô¶s¦Å9e¿'Öó$PO•àxÚó;8ï’+S·ækšfE±ÜõnY–Õ@û×ãøÙÞ L,¼d»oO¢ØÁëâoìÚ§îçfÁÛ~4ýœÕù¶0þå"ijê¬1'ñï¡V}æÙµ_ô7©µçWS°þÿ——§²ÝÕà‡D¼Š>`טv9eèߤ‹kÊ/U¶^îê-¼Yz%üÙ{´}c–û.¯£À¬*N¬¸­Ëö 6ò\7¸W8ß~ø¶9.›.—,îš0s¹’6[à6hMášrh÷E¬i´ï/˜1ѾÿF¸©À)ïïÝêÞV1ÌkûÁjà^?ß säëÝS éå¼endstream endobj 1274 0 obj << /Type /Page /Contents 1275 0 R /Resources 1273 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1263 0 R >> endobj 1273 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1278 0 obj << /Length 989 /Filter /FlateDecode >> stream xÚ½WÉnÛH½ó+x1`»÷E‡lG36 3Ƈ8…¢"4©)$ùûT/¤H‚Ž'±èÐ »«_Õ{Uݺ\G+*cƒŒ„f½‹ Ž•$HPBãõöý‚I¤Tknå‡7W0x±*ÊÜ÷®ëìôWí¦-ê*ù°¾^¯#cøgL($˜$qöý½ÿ€ãm„ãÛ#f´ˆ?Ã#b "NY7(£wÑß½ ¥CK—7áˆqI;àüP7ÁÈ"'ãE›7­ÓæGí§~ü“ïòcBô"¯²Üúáíd„pö˜gJgÿªÜ4MÞø•°âAÂáJÁrŠ–Î=¥"I€ÉìÆþ€ó6.‘¦œÃ9výM³*ªMùâêÐÄ)W³„&ÂgÍ:WÞ‹ª}»¯[OˆEþ?÷$/6ǶÈÊ|¼S<±ój_”Û>ï§±ß$·¾A$$‡ãSàËpfœ5ËŠ7ñXHÒ~…˜üþë¼Éòj»©Úæ¹ Ä§Ì ¬ŒöH­ÜÆÕ©Ê¬’~B뺜FšKÝ 0èÀÝc38,`ub^.ÿÌ«)e+ðp€DR¤•êTu1›;Mº58‹Ì„/%š!¡˜𘷧cXh§NÅ.ÌìÄÃÊÏXÝäa4*‚•Mø8ðÿsцŒ=¬61¤–($11Á…W3ð âØ°€àÔ¿³²ãIAÅcºs:7ÍÝeÝ<›%ðÏÔ%ö$K vh)_¥ /w\Ü%ЦßI3NWŒ å¸KG.‰Ûس`0šê ¹x‰Œ¡ C¿—Ò™ >Ìp…8Ü3Ч¸:S5ª 3†8¹à S%qG•íYªÜÌ>LXWzšìÄa4*‚…MøBcû>™ÜlH&B¸˜äH2è’iZà•lMQÈ&9r“)J ¶rĹ–nÓë/›‡C™7Ë™èÁ:ƒ„ ¢šª¾RO.ñ,CE…fC+À…’MáÍDxðÂs‘i}[UˆYçHb½+ºhν PEBöÚ›Ûâžö ˜¬bãU[¿êãWßnîå²>Ø£ê£U²•P×¢ù$aĤÆIBg’ä% e LÈoI(n‚óqøé$™¤…­eéŒh¡з=SáðnúŠ5?ªXõ‹;yÅkx®ÆžÿˆêÞðÞìL»ÊáÖ$¡ ¾så Ph°©b5ÚIwºèî±Û„ˆÅ)|¾!b)ð’+?¢˜PßÛ%T,êã@ñ¾ksÐßG_¾~Êû¿2߸qN+endstream endobj 1277 0 obj << /Type /Page /Contents 1278 0 R /Resources 1276 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1263 0 R >> endobj 1276 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F14 69 0 R /F45 1281 0 R /F11 22 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1284 0 obj << /Length 1057 /Filter /FlateDecode >> stream xÚÍWÛŽÛ6}÷W)PØ@Ìp†w=¦Y·]`Ñ6qúÐ$Xxm:`K®%o²ùúŽHÉ—µ²[o\ ð%š:gfxÎPz9Nsš†ñ=ä瑪¬fiZ”UÃdg,ʽ”¬`4éÚ”Ô7SÒÒõ#Ðj’­ßæYUÖ“ö”„,0kåÓ2DÕÐò4½*–ijYÖ·1¾yÔÆr·|ؤI¥®Ö`”0ðob…ÖQ´Uº/ý!Rˆ\ëC“2hlÚú!b½*¦›¦ŽS®I&q\îCmÁ‡4òù> hF^°G{ ÷-k˜4­óümÕ2ÕCƒÞ¹³-•Þ‡¡¬$Ctµ÷ºu¿ø2Y®¾L;p·µÇТ l{u;–å¼'ùl×åßlUþëoqëhE´œà© ÔPÙˆþÊÏ3Úö°[u œTq\dyÓâXÌã8½Vw·ãÀ[o)¦QÆ- =¹îÇe|nõ<Žû›F–¦m×(¯oüÇ,¯7¶.n³<¤|øÜpK·§ì#0ŸÏZ(Ö-@L‚ÄF€gnlH•î¼|¸éu3Š·¦(;,³J›GD.@ѱDDŽÿ‘ÛEŽxn‘‰Û×Ãu¾YÞøõ=eâß »Ë%˜jÏ–ºG‰ÛS¢ ªÌ¾ú'xJ{Êè㓵ž<ÁQÜ1Í•yÌQF œh)+:vI@ê¸]b¾.–]> endobj 1282 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1288 0 obj << /Length 974 /Filter /FlateDecode >> stream xÚµWMÛ6½ëW)PH@ÌåðSKšl‹hR·‡&ÁÂ+ÑY¶äZRÚͯlÙ–“:ÙŠùfÞðÍpôr\]3bóehh¨É€…óü]Ä5g,I„‰~±›ÛŸp"it]¬¬zUeíÚ–Í¢)ª2þ0¿ ^Ï)þÀIM$Wfëà¯àÝæ oJ¸Idø7N(cX¸ãÃdü¼ÙáÌh6FzÙû ‚p¡Øà8CÚû ”tž¥4jlÝ8çomóPå5y8fñÖ.í6†$²ef;W×’¢‚æ™&<‘ÒÿP”ÙªÍq³Bøgûêg[¾þ„‘ ÏÉHBZrë)eeþkñ§'Vy¢ï©¤ÎÝ4uþÆ@‘sãÁ@8Ñ…›™=Ÿ0)ˆI€ïÖHèÖ„30è ÃhÍ€aø‚³[¹wj³Ø6E¶²óX‹èqcë‹}Õ aʨ |}îmÔMž¦UÝøÃ_¬ý¿?Võ ÷&«ÚfÄ*á_›•<Ë ƒ§"¹YÛßË¢©Ý¿úVŒr¢¸ÿ•س%“¨7àì¦émÕeh»î¦£3ÏŠQÌ9‘(dåÔ éÌö!Çêž1ôƒ*u(r—„ú4$¦pñêRóÀP1†ÚõIÐ åû¤Î@‘îl.ô>™‹‹.‚ÁyîV¿²Ëƒç¸wcÑøqU”} ðcµôãÒ•&5U¼²Œ¸ƒÃ&Š  WºòUû}›ç~‡é§émõݽýX”]˜:6ýòE™ï›íÌôqfË|€"ÓÇÉÐüà8YœO\F7OVün1>k DK:l¯ê 0.ô ™‚I(3`ìJÎTmçD›„E~\!oMå¥òcì©åw";Û we»¾·Û#ÍJõHrlZrSúý‚ÜG û¤ÊÏAÕÅgû jç'jç Nï ü"­#:Óì2­sNn‰¢ã‹Âßy*éúsxçï—sÊØ>1|¾P˜:ùŸ„Ù»žUå'»­Ñƒ»å"kªí´œ®«vû‡íÞ£÷K&óe÷ Ë'sáTËžn¿RÜ>ôQŸ`¿œ?šx…M;O:•pGbP¦X[Ahå¨bLìvÑØþnú‡ylXÔöÀM 2jû7Ò SIS¡ýŒQ`þi3U[?}ÓÜ?É?íî[æ_C¯g›endstream endobj 1287 0 obj << /Type /Page /Contents 1288 0 R /Resources 1286 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1285 0 R >> endobj 1286 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1291 0 obj << /Length 860 /Filter /FlateDecode >> stream xÚ­VÛNã0}ÏWDìK+QãK'Õj€r“ÐîBE!qJ¤ÆéæR`¿~'qÒ¦VìE9S{Μ93ùpjœPÛt‘kÃ2L›Â&ˆSBÍix7  2QŽ…Ì‹3™=dz£tËÞ8‰çR]ÉHfCâ ¤ ªŸsÝ€‡é…1™ÄÄðGê(\ Îlb‰ñÓ¸{Àfh`óÂÀˆ¹7ŸÁÀˆ¸.5â¬5æÆµñ}…3 Qé°IˆXˆY6m3¢ ØHˆ`üA'œvô‚øT æp^£ŠU0/Ãæ$!“œ!á:H}ðs–@ÂrDs Ê‹LúIEc1ÒœûÒÙ1ƒ@D ›ZÖ&§ÛÙ äP,v³s³…ØÂndCiöÎäâòè@Wç6ó ™¡§½ ®Ò\;²íŽç_½³ÉÕíùé;§ÑN¥š,¥*þÄç(M~&·ºîàx6ù6¹™z›Ùéö%Èåœ6 Ʋ°ëÔ@'¥ Š8Uy°„!תd¥1lë~¿§”G¢ÆªXX;1 9¶ÛV>ñc¥ÿs ÿ¤ÓÈrCÄ&³úb¡öjµ<5Øq” ¨ã×?½'QÝ" ïbÖ…ZUÌkœmôÞ]ÉرŒbk.•ø~¡×y¬šr[¯i¤×¨¾ývÿ€@}QO‰jBäÚ¯®ïxlöFËyãP»;ËjñF«­à@•É£Ìúf²å˜¥y~-kÝûþ!r9¹i~z~œIµ¿’Ô!a+ žVç‚Pk#J³•>ùaÇH;ÆòueTeXP’ý¾Dak‘¥ësKU¬ŒxÖAHär½.kre¤äÚ€‹×5äZ^¡;*]^n+Ô"‹·UæÎ¡ŸË£¹ŸÌÈðmAµºJ¾žüHWä²ð‚ª²^¾«´àЛPE÷×®VÚœHÚ+ñ_ŸþÖÌ ®ÆGÒÈã™òç^U- ùÄáN½ºmPËã_2> endobj 1289 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1294 0 obj << /Length 730 /Filter /FlateDecode >> stream xÚµV[o”@~çWú‰LçÊÌãCmWmb¬ºñ¥m…¡’°°Û‹¿Þa6ì–­52Löœï|çÎÉÒ9^àЕ@†úX殄.`aw™]z„c?ÀBPé½Sëoô…AoQ”ʾÖéf¥ª.銺ò¯—çÎÙÒA.Ô?dÀŒ„ÈMWÎwçòº™Ýs"sïõ$%vWÅd¼”ÎçÓ'Ð@Áédà( 4Ä#q¬ýà–7‚ gŽ „^§ÚîÂÇЫˤ)~ª M÷]ù¬rÕøHxªJUïÊñ‚áIh4ÌŒ /Š*-7Ù ‰ÐD’À¥ÐÎÁW3Xp*ø PÔmרd5ƒD9Ž‚¯g´‹sýÆAˆ)ýÇìòÃä” çÉhˆþ¹;•vu3ƒC¡ÎÔ3Ü$a6R#»Ô‚PWΑ©ùã·ª:»ÓE¾õ@}%̺3Õyÿ1ÞS³‹€d õD P ƒ²ØTi_™í WD€¤}Š1†¶Ä¯0f~À´É¢ê¶&! :r å*)*[çWAý 9N@ ¾ËÌô@C7<ôÿ‰¾i4y Éj Ö378‡è=éÀ ةʋª°\úÈ'=Ë¢r¨=ëÜž¹iöpœ »óÌåÖ …~ ´VÏ$7Štj¿ª¦SQ”dY¼Nš®HKÕHÿå¾|°…íágAêMwÅ”•¿3º¿k{ƒúhªoÔí3œŸˆ«*{*<ëÙB£3}ÐÌÅ€E­ê⼬ïÿ,Š»úëIZåY/ß·URÆë¦ÖYnãÙ¸ÍÆ:©²°÷MÑ©Q̬E¡÷"äï·âh\Š¡^‚D˜  »EHD\®;Žòи¢Yª&éTfÛmlä¥/±·VṘ·þaö@,b0¢ÜÞ0Dؾå>fžžÁæ2ùF¸y'ÄÃã­Ú~üJË-.endstream endobj 1293 0 obj << /Type /Page /Contents 1294 0 R /Resources 1292 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1285 0 R >> endobj 1292 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1297 0 obj << /Length 646 /Filter /FlateDecode >> stream xÚ¥T]o›0}çW í…HÃõõÆÑ´‡®Í¦J•¶5ëK[U L‡”8®ý÷»Ø&)ѤMQd®Ï=÷ÜÃ='3–„šè—yjªˆdÀÂyq%ŠOb&iÔ˜Mó¥®lsÚ>L@F$Ïý‹Yµ0~÷Í”¦ž@›»G’‰ˆ#ÀÝü"8ŸRüË"‘<0_¿‚›; /J¸Neø”€Ö,\‚ñá°®‚¯[œâ]¤Ó¾ „‹„ 1,Pí”þCEXÆÉL²½0?S„§R:ô·•ÍmÑGìDJN”N±ø~K%RÕ”›¦6ÙrHI‡>îÃVÇQFŠ" bŸ\œ`ño>›õåÇ“OÆž?ÛŸo:¤® ¿Þ¹ª–ë…¹6y³ªû{^u [ÞëÂ9T§fÖÚ¼©Vv3Â8ÑB)’Nߦ[Æä$–˜Û³Mðr‰ ’&zPs™UÖ÷ë–JŠã‹”¤ ö™9?è1ðô`g«¼]¢6™{ôšD×|$¯)ß…Ú‚uÌÎ1z¯œ´vfÊÊVžK'}ÖøuQÙ¾@ýº*ýZ:Ó&¾FO“±Æ:cw¦Þø;®³Ó)ÚáÚÔyšN³¢¸_guSå s_Ùú»Ãøx ?H𣠫¶9ŠâLèãÝÝב‰À%ê®G¡6ˆr~½Û?¿¼<–m݉t(³Å±Œl›ñ¢Ý˜û¶Ë3À‘a—âTÎÿÖí £.ÁÑÆÓaÒ¡û„JOähê¬1…·Þ`êùD³¨íÇÛE7öÚþô È©¤S¡ü‰Q`~WN˜ŒVµ?8)ýöÇóðµ<=?;”ÿTNš|endstream endobj 1296 0 obj << /Type /Page /Contents 1297 0 R /Resources 1295 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1285 0 R >> endobj 1295 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1300 0 obj << /Length 795 /Filter /FlateDecode >> stream xÚ­VÛNÛ@}÷WXôÅ‘še/^ï:ªú@¥H¨´¤ôeœ5XŠ/õ¥~}Ç^; ‰QµŠ¢õ&3gΜ™õÉÜ8>£Žé"×eš.6…C§„šóÅ­Å„=S)m×:WÙå6[gÑRé§Ó4¨b•”~¥Éè~~aÌæ11|HÆâÌ!f?Û{l. l^1Wró6×¥flØ”u›¥qm|]ãŒh¼tÒò&6b¶C;âòš7Á¨fN0ÆV©ŠòjU>Eþ4Í"U  ØMã› U>"ÒRI ê4ŽÏ8Ý’âS˜ä¼A%Á²Z´–„lYr†„+!‘ÆðC–fR´aQæÊ{€l‚¤ÍHk÷±²c #ˆ@µíÿL.J‡Ù $)‡Ù¹ˆ9B °;p4GMQëÓù‘ûY¦rôtTÃÕškG6ìøù‹w>»šÝÌ÷œDû¤’Ù/¨Ù¿ñ™¦qæçjе—£Në\-7Yé²%È圶…Ų±+€³* êN*z% ¹v-'¥ˆaG×ù¥|4æ-JÊu€³‘tÜîÄc?JtÁßaŽáKú8m‰$¯™5 …HÛRÏ!°C¢î ïb¶ µ«™78CôöZq ìT…Qi.µè~©×e”´Ç@½¦¡^æëþÁ€ú*¢™õd(´_S“Iðº&:Îï_uÿN&ª^¼ñ:@'8HªøAåýªã˜§Eq­ÝûM¿ƒ„œÝ´¿×Êì$M@xåòr(‘,ö²ÍV E±ñèM³†Ž=ñ 5]úé²ðõRzê-ªô‚Z†~‹Câè9áµCFcÅþ‹§µ÷?‡Ø÷íÕoŸVœEo[D¿UzýrãԓОU¡¼ª>ŸX~²ìYEO{ÔsGK¸Œ cÿ~Eou7´72“Í$‚®•.a¦€Î·…Ó$> endobj 1298 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1303 0 obj << /Length 759 /Filter /FlateDecode >> stream xÚ¥V]o›0}çW î…H‹ëŒ!šöеÙTiR×¢©Ÿ œ)|Œ€šô×ÏØÂ ‰—*Šl“ësî9÷Ý3ß8cÇô€çˆÅ_˜4™ƒÅ›~ô`!L1…VÉ×åMœä+þs‚ ´xXf…Ü0T!óxÅÕîš/¸øÑµxÖˆ‹±EÔ“i\ø2¡ø ÉG ÄAf˜Œ‡'hF4/ ˆçRóY @ž‡Íİ1i+ãÆø±Ã™  i鬑†l@l·Ú°ÊzÒ„€wi‚Nçw<™`ˆK©äù§áªŠšH„:‘”æ¹B’ ü4€Å³]ÖÄÙº,x Ù ¸¶Ÿ„P‡1±cÀÁ¶ÝÏnêµ'ßxþýËic…t,OZm&¥¸I°¡çJ˜y•†eœ¥ëfD€g×¼åþ#ÆÂ|*8ã´Ü¼^"6p¯µ& âT™ÿ)_4”ÓÔv‹X?3Yf€šB·y*°ó,¬ž–|ô6‰º’"y’.Ô¬Î\⌥÷¦-:`ç|§±Ê¥¶>(ÕºŠÓ¦®Z²…Z²~·ª…!¨ kŠnme£ÖMºV÷dqg³yVêâlÆÛ„?އ”ÁkPËÒš.X®$‡Q<3íÓ IÓ^Ìy‘_õ—ç‡Ãð¬IåXÆ: cQ]'ó5¯¢lÐ³ë £¸Üj€l4b¶ÿÛù‹†ÈâH ‹ev8ç5/5RèE ø8 |¡‡|µ¯ˆ{Ö—7Z¯¶ZaƒlW/Zw}=µþrü}±ÏÌ[=øÛã­¼Óc¸;ÞÉ{=†ûà å‘/Dzïþh{âºiltþð=`vÝîÉoo 5züßVÒhÜ„]0˜J]1~"BÞ?”v€Ú™Ô3(qÛ‘TÌ6s¤Ò¯<åEPòH í˜âOöendstream endobj 1302 0 obj << /Type /Page /Contents 1303 0 R /Resources 1301 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1304 0 R >> endobj 1301 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1307 0 obj << /Length 623 /Filter /FlateDecode >> stream xÚ¥TËn›@Ýó(Ý€TÆó~XUy8•%/ÚºÝ$‘Eñ ™¡ÅÐ&ßaì`uQYÖ;ºsιîå:˜-0PÜšu* ŽÃ‡ëí]D,%UÑ'ýsue£E±Óþt]em©M“6Eeâ‡õ2¸Y(„ö‡€ŽÂ¬ ~w0Ü0\%YøÇ: ¥pX“ÁÙ_ƒÏœÄ%c¤Ë^7¢€PŽáØæ!¼nA§A£Fï›o¦hö ËNõѹ®c$#m2ÝéŸ-ÕÃcˆdÌÁ¾+L¶k·}$B£HF€PÒfà?L` ¨}@Qí›Z§å@b8~œ@²y)@¸ö$Ç”«K¸MûÂ5læ3ºð0]ÑPŒá>;B…Jº÷‹Öd]÷”ˆE;BŒÜWùc'Ì’¦9¼>"H®†š”ia|Õï!ƒö¦4%T‰Ä±2×N€ú†:ÏŒà‰ˆ®…V¼‚d uë”;œsòÞÌÃìZç…­¯ÓÒÕ> endobj 1305 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1310 0 obj << /Length 682 /Filter /FlateDecode >> stream xÚÍVMOÛ@½ûWXôbKõ²ß몀¦Rm#q„Œ³!‰“Æ›ýõïz# UU*UQ´¿y3y3ã£It8¦2ÖHKX&³XãXI‚%4žLÏ‚‘RiFN¬iìY*Ebª›¹mPYúûqµ0~÷ÕÌÌ&%ybê²½’˜è„Áó—“ÓèÃ$"1†qN„B‚I—Ëè{t~‰ãi„ãÓ#¦sßÁ#¢5—§,Ñ·èË' ¬tÔÅC8b\Ò…øÔ£xÆDq8´—-pOb¹üMU—‹í´³$¤g)R:‡8œá»,…ÏUgP4ÙX4@â åÃ÷HFL*;…$åü•ÙU«ÆnL±ü?Ù·ª¾Àaåþª¸i…8¡"Pc¯Lí‡)íjó*Ôö²–IôÁ'³þ||xæô|¼ªmQÕfƒæ-^+Ö•ð©¹/ÍÚþª ¬­P‚´Ô ‚(WÁâŒ1ıÎíx[—¶ZÕÍ€{Âæ­‚(E K_Ú”Š4‡ª¶;G½sȱT–_äX`ø’Anö€Âx”0Y¦#¨+éØ~4@®°fê¥D=I5M¶ÝL> endobj 1308 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1313 0 obj << /Length 811 /Filter /FlateDecode >> stream xÚÍV]oÓ0}ϯˆÄK*QÏßâa[74Q$ ìe›¦.u»Jm2Ú˜ÿ;iÓ4hEÀ„ªÊ±s}|Îñ½ŽGÁÑ•¡AFB3š†‡J$(¡áhr1¥{}ª57Ñû0<ŽÀÑÙ|aýÓi–K›æã|ž¥½›ÑE0$Äð#L($˜$a² >W78œ8¼0bF‹ð+t0"ÆÐppÊêÎ"ø¼ßàô¨ßD:®xŽ—´&NA‡ò¼ F%s‚1Ž>¥ó|îÛÔ?Ø©]õˆŽlšØ’úÑ™  +`MªÓB8Äó4Y“*’F¤`H ä]à«,…ת ˜gë|eÇË$®¦¸|Ý’ bR)xRHRÎÿ2;à6Og8L -ÁŒnå&d„p›Ð7 qBEØg ql´ }7^ÚõÃ8±ë޵ C†—j(E K¿{×”Š^_ÀÞ¥õÜÍr Ú°ÇŒëŠOOˆ ûR#ðò†P Fø/1]¸ôpñ3ÜRq¼™¸g‘ˆ3ÍkŒƒ¤P)+W(AZ,Ìîð€c¤¹Üñ "Çì¬ÌbYv=ñïûü!lpù²kü|pé‡xW™FLÈ«¢‹`Ì[›Îòû§8 ;)œ  žrÙ'ÛY‘&ZÜȵ}cá1B›Êضˆ]š;‹üvá¢n‹MØ5þÄãsjÀ—ÜásD£ ‚)æS¤ò“·0óµo'öcšÚ‰ïÞ=ú6ÉÒr|V¬ºª¤+9lWŸ‚|‚Û¹½Ÿ%Ýâ–UÜaò6‹>·<Ö’·Î'q\iêÊÊÞŠizq0o&0ìq}éÙU¥j[yæÛæÉúï4lSõ?R0ÉŠ»…í"¿]\­¡ro§ã$ÏVÝ»âG§î»-«Cc? Ï~Cü:/6Ö6_Ù×Þ”]#†öò¹]hA-Ú¯·´nd®^„±?¿5€êû˜„ûÓî²hCX¨"\IçĹMË`]à Ùµ£ž¡QQùrQº]To„oˆˆ޹ò=Š ­,èQÕ5®§õÉqš}{œÙ͵ô':ÌEendstream endobj 1312 0 obj << /Type /Page /Contents 1313 0 R /Resources 1311 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1304 0 R >> endobj 1311 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1316 0 obj << /Length 1008 /Filter /FlateDecode >> stream xÚ½VÛnãF }×W[ z<ùûq³qÁ¶h»F^²AáÊãÆ@,§¾u·__ÎP²¥¬¸I[äA’3$yÉy;ÍF0¹gÞàcºÈ=Ï­Lƒ€|:¿)gÖ† yq=œ¡Ü­7ëj xqÀ_аÙ.×»£C“å} ·_Â"l¡*ãOÒh_Htv;½Ê.§™È9þ‰Q[¦¥y¹ÊþÈnny>Ïx~•q&½ÓùŸøÁ™ðòU¦@6÷ÙÇì磟!:¶=½­“ŠIe É0YÛIÓzev˜Òh¢¡UGÄ–I§uŠôͲ*ï÷s46åÍûððÃÅèãrõp®SLv÷&z‰vÂ2JõÙ]|xùÓˆ,FÖ›PíþêØS‚y­¡†!%SÜ»äîÇÙ*lfeØö@’ye-&¹¡}Ѓ¡ÆàUc{Œs2µXH©†‹6 eš¡SÌ8Ð]P“}Uî°È/À”"ÇXNIeèÁ&„cZkUƒ+;äî¦Åš8ýÄ5Çowô™H§wÄsh)„|{@ A!äC•òô˜H‰\*Ä/=•åYÇÈäc±Y¯‡K¡„h‡ŠÐêÜx+¨1°Mn¬Œc °Yèh“0'§»:ïv[.XO=‡Â8&œÃŽdGpõ$)¨PjTéãâýc&ÐÅz¿9ŸÔŒQB¿„…ÉÀò:Ø™DHfãd:“#ž£¡éì§Èh·”p‚qdCáœ3Ξ&õlk:Œâ¼[—ûúŸ¥Ÿ¾&˜±žË¶«£³ÿÞc-O¥ÒLJ$TÍCOŠ:œÒ.‚9¦>t³¬î—U¸Msx(ã´ØZu1T£žCRMÇI5É«i{µ–Yî¯Mz1µÖˆêâี¼Ñ'´'NiÜ[Ö<’XÇÒt*J#±ˆ4JÌð>‰Ñò ”s†ýÍ "þ߅ŲZ’|¢Y}¬½ÅÆÏõ¢®KÚ’ñíºÙ§‡f²¾-—–i\¤[2;°~YJølW–ð•,åëÅøÌÌïS# Œ£Öž£:GŒº_Œ8çq úng¾XŒ´cžT#.]m•øWÕx\<ýr”-!>Êe‰Í» `Ü Jþòó,Þž¶ãžrÎ{n ŠÌ3p@#1Á¯Ï_ôÊò;"zVÍϺööez>Ýu=’Ïè#ñŸôÑé”ìžšÓ©ß¾Ðs5[V‘ìÈë¹¥;¼Žãž{ý%½å¨¹£T“tÍ—BmE°ß‡*lf»P“Ñì°ÔÂûú.~wù¾þ¦‡ÐcÍÇÊÒpõ¦OkfÓêvzE åøùËï¡jÒÿ¢ÝLendstream endobj 1315 0 obj << /Type /Page /Contents 1316 0 R /Resources 1314 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1304 0 R >> endobj 1314 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F42 126 0 R /F20 6 0 R /F62 788 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1319 0 obj << /Length 696 /Filter /FlateDecode >> stream xÚ­UÛnÓ@}÷WXEB΃§{¿XÀC)U ˆxiû’M©±ƒ/-ý{Æ»vê¦.Š(ŠäõfÇgΜ9»{2‹Ž§LŬÂa¶Š-‰µ¢ eñlyžpC&)3FØä“Û~~I’éúÆ…·ÓbÑl\^Ïëu‘O.ggчYDc‚?êÁ¤É›èWt~IâeDⳈ·FÆw8!@­eñ&Œ÷“›è{ôu‡“"P:D:éxS\(ÖgX‡¼)–9%„$?&8$®¬"\ïWðÍ­\9¡&qùµO%(‚©™n¤ôÀ¯Öùâ¦Yv‘”"%m Öàߌ`iÐÂè. ªËu~5‚Ã%…éBØ»œÔj”É8¥â?S[HÎÍ7#HBƒaDÿ%¸Òúv©Âny7ûç©[Up} Ú®R°R²N|ÎAk<Æ—ùÆUÛùÂU#y)+Ú¬Œ'*øà‚19I%fÌûowyÅÐ\˜®¨`ô6© L+ûÔ´É­ûÿÓm±^ŽÐh^¡Ñɲ[tqgâ`Ü "IU/³¬m–706̯¼.ª·~eQ45†ÑC°Ø`%B—$h*Ú& äȭϵEKÖd°ÝÛLM2€ø!!¢£¹…‘,Åí"˜ô\<$V#ûjž $§Ðw)C)ûºµZ´Ú=0Ͳ»r]»á^?@¦gÄÁn)Aåcm<þÁÚH<à¸|±6þºcQj¥€IDî´â{ZùÚ»³f(×ÀOí¶z¨æ MBGJW7e~¨& }½;c^ä—½[Æ 2åüå—̨¿cÞ)Üøs6–òXSÀ£<É.wå¼vû–Í&–%M§êYK¾éVd¨Ì$É„3F( o« “IQ>Ñôç}áþ¾¿r;þ/ß1endstream endobj 1318 0 obj << /Type /Page /Contents 1319 0 R /Resources 1317 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1304 0 R >> endobj 1317 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1322 0 obj << /Length 536 /Filter /FlateDecode >> stream xÚÍTMoÓ@½ûWXåb2ÙÙï­‡Š`©‡Òƒq6©¥Ø ‰í¿ïÄkW©ä¡6òav¼ã7ïÍ®ßE'\Çœ¦ÍcÇb£Gg³ëXLG\±ä*Õ*ñåâ¶¹\ÕM^Ö~“"c E(˜”KVßü|¿i_ûWB™ºÉ¦Ñ‡,˜уm7e@ qQE¿¢ëÏ"O#ÂYÿ¡„:Çã*’\ôÉ2ú}}ÄÐè领„Ô¼WÆI¨y"Œ¼@ÉO?˜ñà„Uªíò¦¬‹ånÖU"T*ÆYÔ¾À2`¤5]A¹Ú6ŸWHÒ€å¬/|7€D2Ð!ZÐ\ÊWgWåu¹"‡`¥Àãä6ÃS‘Û>?¹''^™Üo_4«ÍŽP`5]£#Üœ‰\lnͦ¬ÿ%µ*ºkÔË nñ2$5:Õin›™¿+üºù+ÔðeCE~¥Ä3ci2¥³O~ýùr|õÔ¯àö,îMÁ)Å;;$#Å{¤/yå·ë¼ðÛî(ÀɽEp‚é`“?8WéHQߺÿö±ÏÁ !ûÁ·¬Þ’§£/wú Þè5»°½Ï# 4º%óÑÓtòÆÏ‚¯ê³Ôñd×™ú4E•캪sÅÎ¥ gÈÃjžr•ÐÛ&Ai»üyâûÕÝýÂ×½ü ˆÃaendstream endobj 1321 0 obj << /Type /Page /Contents 1322 0 R /Resources 1320 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1320 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1326 0 obj << /Length 589 /Filter /FlateDecode >> stream xÚµ•KoÔ@ €ïù#qIqg<ïâÐBA•@*¬ÔCé!dgÛH»IÙÍöñïq2ÉPÄŠr˜qÆc¶lÏé299GÃå×ek u¶)öû¿!*»‹34ÊPµS•Lh‹¹î¯*dޮբãi†ä4¼’>oô¾¦ÎO›Ah¿Ê<öñÁ5eU´aåǪ†EQÇ5éúÒG Πɬ¡¬éóð>P~Ô a,3éaHÃENt\„^h¾P6JÈމD}Œzò4|{†§çÛp|~ŠŠ?endstream endobj 1325 0 obj << /Type /Page /Contents 1326 0 R /Resources 1324 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1324 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F42 126 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1329 0 obj << /Length 1217 /Filter /FlateDecode >> stream xÚÅWÛnã6}ÏW8Ù—ñ*i{A±Þ¤i±Ô@ºE@ËŒ-D7H²l~{I‘”%šé½ ~9$Ïœéw˳ë[Äf(Œ!:[>Î’pÆHhŒgËõ/—‹-¯;ÑÌDÃKç¿.Ð+ˆâªá, ‘~Ũ\èù7ϼ¨s¡;ï«tWˆ²ã]V•$† ÀPiU88`†—Bã<¼Ûeùúf?‡ÒTv·ÍÆ—UñSÚð.Ý‚4Õ¨Í0Óƒ¢à˜Òt`Ä$lõ¨¿+›•Ýã¥þнÜÚ֦¡?5oº,µ0kÞ{ÇWÖøØT…nµšžâ¦ØH·*)*6ËmÖêIö[n7í*ÃÎa»kíUc舦­J‹¤üS:+‡z=ØX CcB$•c°NeÃÄLj¦g} ih"Ž&QD3sjàIÄÈ¢ *q aY¶ÙZôš˜AC« ìçAU"9±ØˆRHA¥ïv»HÒm&" 0E‰Î «y#:F¹¾6ð®ï«Õªýv!š,î®ôÀ­Xé’ èÁÁSœÿ?¯FÜȔ۞e½ÅûQpÇžé$sxÒ)Ïׂ쬊ª¨³\¼5ÕÔ½n+Nh®³F¤r'ÝK-aN7ާo þd@M}j¯BÕ©cÏ› °§cЗzМ¡7Y™æ;+ôWYÕvàÅ7¾%ÈgÄ>œ‹^¡ëïDÙóÛ ßRâ3:ñÌJ«½Í;1>%ádš/F%/D[óT˜cÙñäÝfmFÊÊ lù^ Iàa˦lk™ bÈÚ•nñáîæ^7?TŒß'ÝÙ÷™îåîMÄW:C»ëpè‡ðŒð¾ô-õ–bdóÄD¬àY©®šã5ñ›o™L[¾vb9Žößÿµ,ø3ÈúXåyuÜU*I¾:I•‹Õ‹ÍÁrí;?ˆþ©läCßP:›tï§q¤^o2Y´ ÒwÇ@êþye¼—<QOÆr# ëFZ±¾ýÚÖ·4Ú¿‡æ{^qne`¬îG$‹‹6…W¡mukNÚj¿H¶|=3/Á±Mì²Aÿ”Mð÷ˆ$‘¯ÿ­ŸïeºþbëïúÜ a@h(Ã+8ä[M‹@@Yb:˜ÀcIÇòxˆ@—±Dv¿„ïçVvt…ìö„$2K˜h‰uÀ¥Få …Ÿcƒ\6Ô²ù9±é¿*FKLŠ#KMýá‰-Õ ©Šå« )gâ«…»l˜e³áEÁÏufYÓ±êÄNCˆQ‹± 2NøsÊ—Kt’0ÐIzE)!¶ƒbIŠ™9 „±e‹ä?BŠŽD¼L]"ñiÂ@7az*:zêƒ ŠüJ’cˆ˜Œ—eGcU˜Œ×9·Ci¯T{ôov§úo^oÍä°ÍÒ­{eäUõdZÙ“ï‡'5 +'jå U¶7¾‰C´VG*‡C¯¬#“â¡öù1ÙLJÚÖŒšA°'”³›åÙv[ÏÉendstream endobj 1328 0 obj << /Type /Page /Contents 1329 0 R /Resources 1327 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1327 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1332 0 obj << /Length 1355 /Filter /FlateDecode >> stream xÚ­XIoÛF¾ëWèE*HzöEA{pk§0` ET_’@¥±ÍÂ"UŠ’íCþ{9$ER\lË ÎúÍ÷¶YÞùltvI„£}-à3»s4r¤À>'˜8³Õ·1Ulâ!ÿe6×@…£ñÅób½y4¶òg´Ü­M˜,’ '?fW£‹Ù;~8ÃãÒçT`g¹ý7úö9«r®FȧZqç *ÈÇZg=b„•ÇÑ×Ñß%Ž@^é<¥Î‰#}-.¨DZæ O<ŠŸM<ΠðS6ßÓ9ÔÉë‹´üKJVò´Ïã4àKX9“)(n@pÔA+ÙÔ=™Ï7,oµ8±®é¬2+Ë@¦|7t's^™'Òá QÃEexZè&ÛUc©Ë Þ&¶¸ŒÍ"1¶œ<ä³_Éû#ðš 4±këOAò`K_ƒûpñhË_âhi¶[[!È=‚ wë[Û2n£¨{9Ê{?›ð"MÇHìKŠÁï0x)SÙÈ_³ísÁ°Si7ûœÈo9ód âw”.R£ízð§ ÖSØ'ºÆ 7”»2w ¯†FwalÛ$+üz¿ï¶fžLÙd±<þ“Ö§ÓÏ79­zûõõ_šöª”5hWaoâÄ<×´°WÇ}$§”D÷D›.mAÞ„›EœËGÓª~0ð] ³°ð9¦&U ïq§-bªÓª-…¤¤u¢jÅj5ß—Ss霢!ˆÌöØRσð€R%÷%p轌vñY&Qœ¶!¹³¿tY·mYe·.0 œ ¹Uèêi}ºöÉéÚhPû¤_QÄâž| ö½Aõ rŠúEo Š¾@-÷—h—ÜGAxŸ%e¨Ùλºób™´-X‰ÅB=Ù°Òf¯Øo7´ð‡ÌÜšû0€Õ×ù‰ý{ø’ƒAàò#´K ÜBpú!TYÓØëØ­jï UPæaýÍŒúu±auéw¨Ë£>b¦}fû‚h.hp)©èË#¯S˜D]ÑUW€Á}î.Iß¹DÛfÐÓw/zúî%Ùàî5¤ß"ðö´g÷òG)^…2d$Ù…RغeŽzŸ‡*L]xPÀ?ØJQê2芔¹wr|/kcQÄI—h }DÀòÁ€Uøê€ C¼ä e?ˆ»ŠCÄòZÄ2—vÊG†Lg=€÷{€ê=•Tïõ‘µÍø€+{E˜6ÎoÎcž±àa IøC,•x ˜ÕðEp €T@¬/ ‡Œ ºPºÃP½ë  >cÜ% ¢Q¸ E\x¨sNjkèi4z¿]MÞ!M“%®ÇG§q$ œ¤Ë…O%­Ÿ|Ñ!‰X_”èæ?1Ýoí§‡`ùpüÊ ¶)ÛÊË{S}yïqÕ Róç­IæcžOóY¥eS²y âË(ÍD%¦H!ä#Ãè©!(§$å}¶xZ6…‡Æ„m”TUÆ ³~l7†ë–FŒPC®’$xÛ"ôv[»})û©`åÅ{Q˜7ºýœ1—ÿ.ŽÖ¶´6ë(~i]¸÷V„9Ê2ÀÂåºmÚ·Ô¶ bE>§òšÀÜÆË ß÷jLj6O:zô¢­©/Ø W“¥^H”|jÌ[[ GM²‹óåQ;€´½?[ò¡ N LéééÐ ÐyžÈ¾–T¥ÙPJàò£1M3Y˜I‘ñ‚ÝÍÄp”®læ6 íw6Ñd¼ËÓ¹WÌÇ»¼‡ÛæSަLÚA˜ØÒÝ„ðqÛJ%?œz°M ?¿Ü›2)ü?ÁÁƒ%endstream endobj 1331 0 obj << /Type /Page /Contents 1332 0 R /Resources 1330 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1330 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1335 0 obj << /Length 1579 /Filter /FlateDecode >> stream xÚÍX[oÛ6~÷¯ðR¬ˆ—š)Q· †¦N/è%k½¾t…aKŒ-Ì–4Inbýï;I]hÚiÚ=,ABQ$ÏùÎýˆO'½ÓKâö¸0L®ûÕ÷\Œ(Á¤?‰>cŒÈ`H¨uÌngëlŦã/ ³¤üÀV,,ã4Aa[<DZmŸ>O^õÆ“î[ð‹+ŠÔCÔvq?\÷þé}úlõ£žÕÕ³ø´ á ýuÏ!¶š¬zzÔt†@hئôT‚Dz—(ô„ñÚà±eÝ… Ÿ^RÒÒð"qhEi,ކ.ÐJ¯Å8˲Õ6Nr–ˆ‘}êâ±P<Ä´Lå¸d­­…x¾Éã²dÚÎëx8„ (‚mŠš­ìÍöj[.ã ooÅʸE=L“r' X1dË´Tè”TÙD¨ã–:lê#taUìÏ Ã6òˆëÈ„ bÏÙÇ ÿÐöh;]9²YQh:Ñt6K"ù³Š:jìÛ±m4+j°8†…•um‚…Ÿ(Èqaq"ŸžŠñͬ,ѳt>/~¿`y‚.^< —l.¸™ŽÝ¥ó?p¤8§ î.·Ú%@5é~Øåªñ\j²åÖ1P”-‹FJÀŠ2Á*M )B%tüŠÁoÕR€¨ëà~ë=û")qm †„8 £ÝÅ ±Múi^Ÿ³ŒXF£l–—qSžÆ¥Hê¤QŒ9ù3•Êá¹"SLçl'JjøÅ|‚%‘¶ÿä$k6 ÂÚóaC|­KX=ñPü´Ô bPšO:*Î8'-¦qF<“¨‰ôý‡wA-ô=÷>ŒÖéÔ¿Y+V)ëò­S"Úg|Ìû¨nÍx¼í!UTe4…éFzÏ“'2àÆMy9ê.U–©JÊ4Ù¬ç¬vl“ ü†“ Œšƒ⢓ÿuüUÆ»B ¾°zlb4ÌZЧˆXô~Îã¤lÜ­RdcÀvõ¶Çœ•›\– lgcéßL‹DF£qÑ–‹m–‘‡#ul$#Ëæ7ãIS–´=i"åëYµû“¤íKªE ò¬êÏTû'™ò¹¢„tÂÛn1ÌÙ,ÒÊ"ÔZÕ&äi´ ™Üp—Ëf«Q !ÒÛSïcÉ3_»µJ]w©]kÕŠ0ާñNÛQ½æAf`„¥yeÚmUÈ.M®ù£Æ‹÷ª°ˆÓþ%Ïj|”í1K º“)}B]$xkT·luÒ¨ ¤Eoa‚a—¸@»#¯¡ëjI-v›Åv‹­¼±(gI¨Y³Û@;Ë,gQ‚ûšXSÉz§·ˆ‹)WÕ´¢kDíÖ¨ÑwþŒ?ŽßÊFùõ»wW&¢ž$Zt ‰?)ÏŒÉÄñõÝí[°‹=Ç‚®}; †VĶmÿ~ÍY7Ï Ó„Ý–ˆž¨mùt?D,‰êf«Ï«¦ØÛ;i_3*… µœ˜ä§do×!ŽýJ­³3¬óÛW†¯ò4dEóáÕ ”·Uñ5–hÁÉ„Îæ·5¾¡ «ï²?]ó©£ó8Xµ)ݯ°v˜ð×£QÙÆrUin’¯.’NÝœhoÜî(ë4‹$’äëZro·„œŸ>…4.¹w¹zÿR%‘÷㾞˜Èª ¾Çg5­i­••j¿×]G}Yh3(,Ú½òà÷Lï%ÂMYȦù2NâbÉ¢{5›.­{­NÀTÍÿoºוlv›?íÕ· ¹ïç/Q[„Ôª ßµå*FØF˜Ãƒìο¹vù%0¯Š|œ r¼abòj€éñF®P1`:¢Öˆ$>#–·È×By³Á'ò„?ηb|–Þn,Qâÿ 0MÆéendstream endobj 1334 0 obj << /Type /Page /Contents 1335 0 R /Resources 1333 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1333 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1338 0 obj << /Length 305 /Filter /FlateDecode >> stream xÚ¥’±n1D{…K_qŽw}»¶)IH"¤Q®CL‰‚@"ÿƒQ¸C.Öó,Æ«é·âáY8v.ƒ‘ŽAÊv6RÖsU#³Gõ×oIQƒý¤[/bO«é®‹Ëídû½ZVãv(­iÒ“9M–AN;ñ#Fc#gÂÈ¡0ÚOò7 £!”hÐ^ÄB|ˆ÷«OŒê[§þ1:¡t:8—è˜~ârrvUÍÆ¨¿c¤äQÝpCùÍ—`(@gJJKЖ`S‚T‚\‚®°dŸ¶ ÖÞ¿ã£þ¹œvjýqÅ­ö¬t ¡q|Êó—q3ÙÆY®CêÀi¶U@µ;wdX©Ýù…òê‘é5.+4€ù6¯Ôj“ÅMé>—¾í_ñÚ´21žGendstream endobj 1337 0 obj << /Type /Page /Contents 1338 0 R /Resources 1336 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1323 0 R >> endobj 1336 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1341 0 obj << /Length 1736 /Filter /FlateDecode >> stream xÚ½Y[SÛ8~ϯÈìÎÎÀ¶ºX¾¤´³-¤¦R:Ýn'c¼õ­¶ÉîŸ_Ù’|‹`Ú]x°lKßùÎѹÉy3éí½ÅfߎÉ/“yß}ËD€b„û“Ùç„Ù` wØÒ “€MOWç«üÖwÇQ°šì:x'>bÉéð<>;ˆìÛÚý29é&=Ô‡ü•°Ô”˜¨ï…½o½Ï_`Öƒý“ıiÿžß@€÷Þ‰º z—½ß+œ4‘ÞH ˆab¥æYM „RóÞ{KqÃ"\ ¶B–QÂÆîÀä€ñ\\oXÄR7÷£qÏîX”gb|ïç·b$„Šñ"+&—Ò̦4lCà&åb i%¯=±ðcê& KÁ­†ä Z7àú:” Ýÿ„ŠÙ6fSnË”" Ás"X‘ †Á >j¨æ¦Ò)sgbäGy,Fù-Óè‡,lµôÓÈ'Ø&U³~Œ˜ÖZ”¤¸{q*ÙÏÓ8l±ç†5(08Š2,*±ÞŽ/&¯ÏÄÜ£Ñùèj"Æ^†q$Æ×Aì}mnw…\ŽÇÓæÊ,çÄnVân .QÌw^8JáˆÍ½õå&Ìâˆu=ËwzÌÇ“[53Iã›Ô• ª‡-²\qdÒ j ç~4ëÎãÜ äЙŽXʾ-ü´‹Åµ‹²9K»†nšà!çÁHmótã1ÎS¯¶8*DeDˆ$ÏYئEDú@Êb0Lƒ lµ·'®§nžƒÃøú:û퀥88z.^2…×Ê„<;:0Ò;‹ïk¸?@ ¶HfÜÝ:›Ä]`=U™@GÚhËaß×EжˆF mL‹³ð¤ÜU zBÊ(ºä°ÎÍjsûa‰£“9ZÁ¾9W¬ó³ÛüþÛ4"ͺ5q¬StÚ“TÜU)êØBÄaâl(½=î׈›qý¼×*«.íüé‹ËKÙ·¿h=ÝW!T/ž=« ¶ä[ƒ»35Šùó5É¿Pøò%ê¢dùl8ôâ…¤µ¿¯êD{,«ÍQÝ-êî€Üåqßšß/e²hh7ŒJ<7¦ÉŠÝEy1Òê|ÄYB0TÛèßq¢0L)P¡&Ê‘¬¸syÒm¹•ü¨jy¢;–æë}úù§“Ñä²Ý 5ßo¬`†ÕV¼\o_cã´V³åb!ª7(§"lBˆÃä€8†]®øµ|åjòãhã9¤–kªàEÔN#¶Ì§¥}ÛYl€¶c·I9ËÎØ¼2`Õë-xbÌjomSø»ê”â0,XsB„R*§=xÅ!¦¥„[çCqÏm4ºzÞ舫秧›¬\MK!^ˆdùnÄ„:醋 ÷UíNså<p§õŠšédà&ý²~&~íÉŠce Ìrÿ3Aôe»_P²‰±—ƪŸÈ˜WwÍ–BƒgtÙ•8S Qó”&½a²èÓ.ëYuÚHÖÔ5oë¨Ý¨?\Ž.d5þðþPFçÅø`t)ó‘ÊF#k+»cÜ{Uƒ,ÞÔÖÍXÀòn x<¸ª/ôUÇ…Å qýº áÁ÷ý_Ð@êº ‹Øêû9ȰÌRów2ñÎÄÏ…ï×ò»ù‚‰›“]Dyp‹*.ˆ)™®¸Ã°8Ê£ù.¦;Eµ,ndËR ¯Wâz/W<Ù+õÿ¦Bendstream endobj 1340 0 obj << /Type /Page /Contents 1341 0 R /Resources 1339 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1339 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1345 0 obj << /Length 426 /Filter /FlateDecode >> stream xÚ¥S=oÛ0Ýù+8Jƒh)’¢;Å­›Ä@>ÚjKƒB±éÆ€>™Jâ!ÿ=”I8¨4ܽ;ÝãÓñnV¢Éw&±&Z:S®±¦XI ‚Ãåê!áE‘fLÊ‚%Wf{óÕA“ù{ÕlkãÁ·n94¦µ•ÝtmúX.мD€©{áÀ'\^6è=ȤÑré“ÑF«X°ˆudÎ 7PÀùÿÙÑ,,ˆtcÅ‹qÊ8ã¤ÐÀ±¹’=—¦5}eÍÊoÄxQ£-SÍ’!¬É"‘ !#¼1tš+æ½uÊDÒõœíÝÓþ¸rïû¿æ´lŸÄïà endstream endobj 1344 0 obj << /Type /Page /Contents 1345 0 R /Resources 1343 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1343 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1348 0 obj << /Length 1402 /Filter /FlateDecode >> stream xÚÕX[oÛ6~÷¯p3 HÖ˜)R/ †¦Éš`E»ÔÛÚÂ%Æ&ªÛ$ÚqPô¿IÙRh§Å†"px=W~çðP/'ƒ“+ä Cz¢™Ü Cgè{Ñp’|8„à£"Î!]GY™ÒéŸ5ËçלV/ªıXö &‡n}šÜ .'8tÄl¸׃Ã8ü3øðÉ&gx3p€dx/€aˆ†Ù#× ÒÁûÁ-Ÿ‘`4ÚæôR+1p±‡ŒæHâo+gŸæBÝ“+‚¶ìrPò½†ËdÁ꣑·a¢õ¢¸×óiq¯:¼Pí²Ö›øBwʨâ,6´Qž¨ÎŠVœ®UŸ­Z•|a‰7*9ÄÊ0¹EN†{˜4sHq99Q훈sðª˜Íê_/h•ƒ‹×ÇjáŠÎT ¿Xø¸]>ÿ‹õ=•HO%-ç¢ÈJ–ұ͋®­ð×´|s¡º «h,„<ôá¥`óX°×<ϢϴãŒúd°èšZøù-¿Çke.Tûbyœ.-ú 1èäúíô7š_®hÎÁâÀB =ÔOBéiñXœÛ• JçEÅø"³Ò¸Vš”ÕܺÛ&=[$hÃã4ª5F¯ëw‹‚¹}±i“Ëå,e± HèëÊ\2+ŠTm.JuÞ∔­–]ä5ßÂßx,<þ΄dŽD¢"nˆ‡#(Ò ?7KbÁÃp¸5_*VRƶ #ä†:.é**’Á2¦îZ2­V9:/“ù”%Fc5}v¦S²Ù-Â/ìž?o™dE&À³Ì  Qvyž«: ¯{Eù²ÒG±Iô´Û;ëN_ŸÉWÛb (¿Z)C[î³%V[àô÷ôeQïÓKžÂ“ëÿ xrƒxŠfµ<‚•Zø»aà†ß ìì†{`€mˆÇ¶Tƒ} ÞóˆÓ+–Gén$àà)$çA‚ܳ ÏhžLÕÞM[‰£[Öfùì ~7*úVTw*Þƒ Bl“º`¹v±¼k¨íø‰ ó/ÝbbFçLk_Çâ¸õ¹kÇFuÌØTl°04áh8Eš •ºê.¢ÚH¡zµ¬¨(ÃhbŒÐ´É*Êc-ü®¨LíÔ+úŽÍáD†žÛ4 {š Wéj,£Y[v-e©Ô+Ò¶ªCZ.u·æ"èüÁV 9Z¢…GlŒå9ì¨Õøš×<YQ‹r³zÞnø9 J$Ä©ý~ݹ‹X:cÜ|=©ð~`¨cZéC:=ÕÝåííÛÛG^»ci·Vµ˜­‰ôYç”&¶ªÐñÝ`[t[A'5\ nÄŠJìa‡±û]¬ù{Q|î¡’ñ.vU%k*q ÑË5ãà ë¡Æq"9¥ÖC%Ú½OfÏ”%¶|âù¶É  Ï›r+DâáêºÁ®4¶Ó4]iãÏúx!9ÍéšO›ð7¸Sú ÿº ƒ®R¶ÊÇwú¡«!þP,UçžÕ‹î k­Ì‹Î¼Í™E¼ßrÇídÞ{) óD Q±¾=%må™zš·L·Çcu)Mͳk†”´k3l›Å‹d·'YŠa± Ó®l|L½ÞàTJ?Ýàå/õFnã{ t=Ï üuîõóVs£•D¿«Ñ*´Á¶Im=ìîðæªÏæ<àisÕí=XY¡³áòÌÊFDð†I³þâÅÊšA{ߟ¸"þûç§-Fæë“8_İþøÄú³‘ð—ôL¨òÓ™|+Èvr¢Ã%Uƒ›#H—z…¨’1qƲڔ#äȧµìÝ!r(½-ú›†ìÎTûªX?ÌinÌÿ°ƒendstream endobj 1347 0 obj << /Type /Page /Contents 1348 0 R /Resources 1346 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1346 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1351 0 obj << /Length 1838 /Filter /FlateDecode >> stream xÚÍY[oÛ6~÷¯Ðú²x‰^tu»ËÖn-6 Cõ¡-Å¢-!²¤êâ4(úßGŠIí$íŠ~ )‰‡ß¹}çPºXÍΟ#Ï íУÃjc…Àò=h»"k¿=Á!˜/çèäRþõ+¸àäÙÇhWf„O~+ÖíŽäMÔ¤E>¿z9{¶šA Ðìä¹¾íbZëÝìÃìí{`Å3`½œ‡kÝÐ °a"k7s–“lözö·’³ ‚CI º‹,ß}%tD5ñ9rߟ/ü€“(Ëö¤jÒ5©í²­“Ë«h}ý¸€aµ ïÙ!öMsÍÑdOPâê–ùЦ DOƒØ$‘@D¢u2ÞTÆ\“Ö›ÛTbP{¿¨_3 Ï{àeEâtÍÀvöÅÎÓeT<›í‰ÌWg›g»ø‰ÍnÛÎÚÊÎ2DCh£c0¡³)*"N{TϘK–K)ñ2¥5rEɇŸ±«ö‡·ÉŒ”»ðb~0Ë$ÁcþÀéiÙ4ÿ÷É$ îL7º‚ÂI=blapÈÜCk—ã|:h{K{¾}äÞ˫倥1v€o¬:ÂÒ!6]t´|‰rŰ‹,½&fš¥YMâQ`0V»”VMk™/Å>å“Ãä6 ÑÉE†š-²6!QLD”5…^@ä–uQi T”,>Y 僚¢’ÜÕivkbÑPg‘Û¢¯-i4 ªæÔÓ2í+R·Y#pEr¼*ödÌgmM¹li‚á?î­‡¹#‡P2ÕØáZ%;ëgw¥±Ñ ”Ž k,f&ðƒ}†,w8^ï Æ«P „Œ4*¶Ó¼Ñj\™M‘­ezUÕgRz^u¢DÐUŒcÓȈ©²3\’Ö‹YWü½yçÛ=î¦ç¶éIØÁt%åÚ{“°A‰Bí…ȹ¿$ª- ¤±±Ì$Þz‡À7^ & QüÊ[߃>Žòxòè¾ûM[†zM‘Œ[gé6i2íqºÙJåĦ*vSˆ" ùœn^S"¯Ïô £ÙdÁ!ÝÇzR"©O뤾M)µ=ÕýL3ÎM”]«Ö±*Ú­~X‰š†¶ž´ š êÃ÷¤i«\ƒTZœ«cŸQ$ÒD®’Và+riû©,¡L’Ê.YymBdý)m[Ee2.pšáLñoԑ⊠­@b›OW£|KÆÝF]’uºIe»1:6Öšãë3#2çPÀ¬“¢7µÌÒ¸|ØÂ ‡›™†¯Œ×u’f1½ ¦›h×õ"œ¨xŒ'©×”ý¢~uE2Z+ö„ik½cIˆt_Ÿ}…tá¯9Ä‘G Î#m=IÒ4"›5Z´c­`¾ùñŽƒŸ I8u’1ΞþŒdá C—û“á¥[õ`¶ìã-š„(íEM‡ÉA/c»ñÐXgÐ~ô¬¶ÛÑó©:[ï z§ªÇÝð ¨ñ€Ánèÿd7¬Ûm-³ŠÄ‰„‡ÌQ=؛ˋ¢î›°cóƒÜïÞ!ï÷_È?ÒÝô­ m×…Á—·^ŸDÇ„cj((kÑY¡èéMøýÉ>>úeÀW½óYЮˆ¬ÿ›¢ÍcÑŠ<ËéÄSkefk‡F¯8¶ƒ°ûÕ"pmÜñ{ˆÜPæð(ÔyEÐ2†ºùþvzæ–Ù² øT»Òè/w˪ˆÛu–ýA¶I‡˜@!ÔøUžÊð¨¾V8T’ Õ,qnC6‚ûþõ°Žß\ï vĵêÜ8Ü®ë$OØ‘;O³«0•÷|ƒÅLzè’«==C€#ٿ͹',)Ùdð©”‘>ÿJúñvKÔ÷Ñ~Ë­%endstream endobj 1350 0 obj << /Type /Page /Contents 1351 0 R /Resources 1349 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1349 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1354 0 obj << /Length 845 /Filter /FlateDecode >> stream xÚ­VKoÛ0 ¾ûWx=%ë¬J²åWÛºg ì0,Ûm(Ž’slÏvúÀÐÿ>Ê’ÜÄq† D”(~üHÊ”Î&ÖÑ{êÛŠ|& ;ÂvàÄ(¡öd~9"yc‡2<÷|UfbúµNóåy#*ÞU’ÔóØÈÈøzra½›XÄÆð#- s}b'+ë§uyí¹…í #7 ™}ŒHQ{eyÔ5“Ìúb}îpr6‘Î$qFíE&†8…8ÍÛÚSŒG’À8ò|i53꣣±ãÃX‰f]åJæY¦„¹¨‘ÏyÞÔƒ(~åNhÃBÍMZ+iö Æ²HóR¨õÝ>mÞ”p+ªFÜ+¹Xôv}dôÙ”¼jÒ$ÓFÜ@óúGG`QT½˜·63Ðã›-¦CŒBènæqœkmrr¢Æƒ+âzMû§Λ¿¼±6ÚÆh¡akvÅPDà;}^ŒÎkTà£Èõýž_jü¾õt&–i.ÍuP…•€ƒEc.àøTØFúâ´_³ €„ÁŠ'ôÃ8ìñðv㌆™h»xúǤo#; ú›/ç`Øk`žRæ†È¡_îIÙfÆ€¨ÊOYA¿2é:ÖÙò\ðDIÏchŽô`ËeÑ;²g?÷j!YÌÛ«¥ZkTŠçërp¯«÷ÎE&Óuo›Á$ú^857Dγbù°§‰óYq+^éö”®ÒŒëïu]ë ×@3½°âs±Ûì‡(±¥Ýf¡Žx×*4‘»›4¹1½¾Ö”y’ˆ²k±ú&äùR Aßp*]ÜV¡Ýi(t—Ve/ ^'i:…¼ ძ¡ö²y%ãáúDJû8ðòá‰A\÷ù  3ý`‚æÀu¡ßÁÝë·Œ  2éb®ME®ÆÉ8¢£µP“‹1a£µÖ053Ë\Î(&TI‹1e#Ùí夭´åkBŽo‹û‡¥ÈMø¿—ëk5endstream endobj 1353 0 obj << /Type /Page /Contents 1354 0 R /Resources 1352 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1352 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1357 0 obj << /Length 1797 /Filter /FlateDecode >> stream xÚ­X[oÛ6~÷¯pÚ{³d^D]¼µš&íŠfÈ,{h C¶[¨u©,ÛIì·ïP$e‰¦Óa]‚„âíð;÷C¾ºí/‰ßÜȇæö¾¡~àc—Lú·‹‘¡C|?$ƒ·¼¸:‡Cƒ‹‡8-Ö\v^çómʳ*®’<~º}×»¸íá>‚_\Óc˨ûó´÷¥÷áê/z¨ÿ®‡\…¬¿‡rq‘~ÚóÕuï¦÷{CÇBN›Ò+{.õ|¢±`%Ð1°1t0BhÀ%Þé݋޼ÊËsÀê¡ÁF¼Ütw>èÇ—Œ´Ç’Àõ?¨‰6œû@(¿—í*ßË*—í<Ïv¼¬dç¾ÌSùgyµâ¥ììjjý:Þlº$bÙÜ$⸻z­+à @ÀYĘäòv•¨¼ m»ájøüýÛ‹ëÉ´÷>/AM_%±†Õ†°fÕw1Á¾”Ÿ>.r=ßcõ‘4ÇcÙ^ÅUå¾Îg³Í/ç¼ÌÜó·#9qÉgòƒ€ø-th—ŽUª³m²^$ÙRËNq¹ôТ#«".«d®É,âJWñLt±™—q5_Y°y]lë6屆 µ53°ƒøÕZÅYžiJ‚[á3 {ʹêÉl“,x‡3˜:ÆÉº8[‚YòŒwRÉÆ®ÀàN1pž§E²æE ï²V{s‘”µ!=ʨ s|pØ=x™ÆŸyÇp7cí¦¯„æ/?— ¯©)—?p Ù¨!{<‡m¦‡±Üñ<Éæë­ôÏI¾©J§/m[ˆmÚè<»ÓÑe§¢Êê™m³gÝ\‹wü†g5ó'¶2ëÖÚÍÇòôqÇÓOñmƒ†u$™Ö¿5Èì¹aí6;Éâ”oŠxÎUhØ46W]2 5QRÅÕxÇC´ 5Lªƒäç¬×GPê0«ãâ>©V­›ÍâÈÑ©ÑN¼Öœn ?lNdŠcÑÕŠ”ŸJÇùÂÀn3Ob ßDŸÚžF=-z?Ù¶Òom­[·z¶A¦ML);“ì#bþ”‡þeÛæŠN9< ³5‰_ÿïm-źá§ÑÈ}¾^çû†íV ðù‘•=›=jóÍ6×#á“èKkù. ÚR±2Ô¦6Ù!ÓÙXçúÊaDÿe+U»ìWÉ|e¦ŒužV_Ég[‰êubL‚&ÆžÛ6h!\ †ŸœÚ× ✘z;<:fÌqœ÷$•¶ç3OQ™îèt¬Òˆè?I™ÆJ_r§W‹ |Rm«·î°¡¡I:y§¶¦$  êL)\5:‰<4%/ 5<¹ÜÌÕöeÌæ/ G]&åF¥ð9ÜD*³ iÕó<« \âåȬo’e+ü.ó9×ï ŽÈdÛt¦Ÿ#lå"#O*Œ ü–0ëÚ¾}#èÜJ6¦é+t¼­ò4†‹:(¸e5=©aÒÖðŸT°¤¨o:Z—nƒ€vaà¶6âÅbºk¶*îŒÂ`DûïKšë©¼jƒÓîp˜5ýVÌ@q=esýO>²<ûBõD1¥ßÿêÛ"¤}}7 h(Þ,)J*ÂTøöùrùF¾‰x!¨óL¶·Ãˆ ¶êÕúÝ3pÙa²ÁlÂÐDäÑ#¨¾MÀ×ý° ¢Óz=ùþð¸äÍÛ÷?Aœ¡endstream endobj 1356 0 obj << /Type /Page /Contents 1357 0 R /Resources 1355 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1342 0 R >> endobj 1355 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1360 0 obj << /Length 1393 /Filter /FlateDecode >> stream xÚ­XÛŽÛ6}÷W¸y²IᢛhÒ´EÐ-bä% ^›»Q»–[önäß;IÝB[›u`À¤$ræÌåÌPz>=ù…ˆ±J”€a~5Vh,N8Ád<_½`˜OcÂÑDß-Ö›}ñfŠ\-Ëbû¢È§ Mpg¢·»¬È“åV w©¢ÓwóW£—ó#øáJ8— §—ëчÑÛwh¼¡ñ«J¨Jùø.P‚•"ãõˆê/nF¯GÕrb·%=7vp2–‰’{;˜%­‚,†8Ë¢i,`Jíð7⸙ý`@ƒ–X%L0nw³iLÍæ_uþFoK}W-’"ᘠàYZ-ý¾z¢.·îˆUñ̹¾µ“Z"èFþ8 ’’vapCÊøÇÅjuq¨·Zi^ËQC„“p VÀf±-³%D5Ë)mpºÍÓßôæ÷b«óò¿7U˜'(BQ,ApdþŒö(¤]ž„Ôaò$ôT5O+1Ë­^”ÚÎË÷nRìËë"˯í•7~ç^9': ‹|U{õK…59áT-«#Î ÜΊ õYQ]ñ°®@ÃÙƒ¢’Ha QDÂf 4µªöá/Ãr¾$>qp/qÀ¥ ŠÍú-œÆ†Æì´˜&ˆIp›J"‘¢"¨4Š –×brO·ñc|ëº ˆ§R_Ê© ¡éùõŒž_Ϥ¬gþM= ôD=ÊÊßKÊ@RrLŠu`='OSL#èðK)»e«ËQ⓵U`CXIº/ëb rAY¾ ìÊÕl¶¬}÷ô©s™¹­óÕMØ ééÝìð“Ç 6~Õ^xO­ž;}»Íûupöœºò+›¤…ñÒ$ßlV××®¼ÈJ½]Ô¢7ÎbsÅ¿\]\êk[®f .)ÔÈù., oÄT ?Þ4¤úM\ÁÉ®«êú˜â„(Ní“%2%Ý“‹ÑL/å~çq8»Ÿ}yÀªfŸŽwG8¶Mc™Ú¸8kžµ Q΋b,$Ô\¿²Í¨ýº ºÕ½±„·CÎD sÏqW dq‡ïxŸƒaôÔ? ë£6 ^ï׳0¹|îÇ6œïöOvuE†^äñÞ%ìåG;®´©âuEj Õå?€Ùû«má ­õºØ~ )&èdã$¸‡«R\ë µ m×ÉY.²\¯š™A¿‹zßLêõÍG–ª~ËëIÏr¯Øé®Â 8ß­,ôºˆãG‚­ŠøVµÕå~ëÔ£°aŸ~|æLá´Œ)=ÿ+gKÐs÷±V$JÒÔäÄ fRTˆ X›¢lœg>Øš~jÆùT‘É^Û‹WSÌ'{÷Ä}ÙÅ|ÆÑŒI{E©™fv5%|bhc. §üñÂNMîšñçâîãµ=7óÿï§‹Sendstream endobj 1359 0 obj << /Type /Page /Contents 1360 0 R /Resources 1358 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1358 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1364 0 obj << /Length 1581 /Filter /FlateDecode >> stream xÚµX{oÛ6ÿߟÂÈ0ÔFj…¤ÞîcKR·qWÇ^j4ÃÚÂ%Úæ&KŽD'ñ†}÷Q")Y ­¤+#_w¿ãñ^äÙ´uòYmWs-ö™.Ú.hÛÔLQ{|îè®Ñí!ËrPçoFç¬c‚ÎàÞ[oBÌ;ob»Æõ(‰£î×éûÖ`Ú‚mÀ~0çgÚš©[°í¯[7­Ï_A;höûÐt×1Ûw¬4躨½nH—°õ±õkÁ§Çõö9 Ñ¡¡é†…¤ìˆmÅæ¢C¨YÝt¾€âÌ¥žv8¹#Ë.4;šïg"Ÿ¼5QÛf¤fœ²5Ç5 Î)[’ ºšaf>†º=‹q>9áß‘G©ö&žÏÓŸÏqiçÏùÄØ§ñ'¼ƒ˜ ^z•–ÚÍ:ñ‚—8 Sq´‹n™ÊSÞ¾#tÅ[bcy{›‹ó£;á“׉·ÙàD[)1ª‚ ö0¼D”`/à-ј·è ïí (Iü8D‹$^׈ގ¯¦W§—‚Ã`2ø4UÈfVeóãõš™[Þž‡±ÿçƒMü‡ãÙÅàêzøŽwSÊôˆ—;M-Õ Í  ‘nÁõ%‰'ì­_«HÉ‘òŽTôn}±5-Í´ïp”ìjØ@ý)jÚt~®³Æ]#]5hÖÆkD_€ Ø¿õo³pƒQÌZŬöÄ¿ƒ†‰ìéZš! § ¯y®Á8ljhBäb/~ãôæ;*Tºã½H°‰3Õ(äröä‚,ôt¢íš…¢Tãtׂ[„±ÀîŒï7!ñ wÁKSéS$•DZˆ“5ùâÌí¸uaj¡ ‹ éu(fsûê÷«üúýÓÙÚ»ŸñMÏ„V3ÃÉTÏ Wô8×”ü…ãÅŒù~˜±sòÒå7¾Õ‡—ÃéðôÃð÷Óép|ùQÅÓT J[_Ým’Ø×&gƒÓ‘ðœWüc³iíE- ±|³ÜU“М…;U2ÔmúÏÊéÔ¼ ZT–ËÞë‹^ïµ°îk‘€¡ ¬Êº›¶ˆÒ¹—ˆȬq¢ô‚7$3J¯¯U2¹Õm'Wãó § ¼¶é››:o&‰ð³$¶¾,£ê¹TÁF§¿ >UÁ¨aqÛ¯*X XÓ0Åa(œ]„Þ»•GkÉ5;/%Jü—C_…"Œ…¾0ó!#£”,#Ô>©ìRîQŒ¾áQŒ“‚kCv0˜kšF®ÌùÚ_i“Ó«)üL¾V2Áª(°äúÿ<›<ã¾è‹*ÆCPô¿ƒÊ<øj² dYfU¦Kdì‚ <¢¦²úƒ7ÏÇ£ÑX”ngÆç¿¨Â’Q†|˪fº“«ªé>Ýp+Éf“¨sŸáˆ[Vìm¬VCn¶2©2óõÖ˜â¤à Ž‚¢zõã(¥ÞŸ)#&9€Ãf(ñB’ (âüÂ”ì ¿÷qªâÏ¡¥½Ý%D0ð¨W]µ ¡ª2­òË‚ZÈú„ÌHœ™ÑQý¶ª1œ£ç) ú}vóè÷ã-=Tx˜vã:ßl>ƒOƒKQ±~'*¦îá°~ ÃZ ÃûéM®8>~JP·€ˆ¯dñ@„Mðê¬sɵé3M DÄ=šp‡,¬sïŒ.÷"“êc1Ö(+1 n¤Ê<Çdñ%Tœ…ĆŽ\a™ÐXÀÃe R,5jâiA ¬s/ÀJ@»ÌžŒA# S b"¼[YoÎÿÀ¾8ÓûÞN‰é˜Á*ž7aÚà&» §TZLygRp€˜ÏÖ5‚¡§€Ü–]‹Ï5"¶Y‡¸Zû=lîéÓ *ÀµWCh:Ôõï4Üc$ß -͵u'{èÓ‘®9.ÔÛ6Ô a[¹”ï„yü}3³Íì;íº¨³žï³Çí˜1ùš}ô³b'ë!o-ºÈìda1ëì½¢Îwòõ~Ç,Z*á_LWZ–endstream endobj 1363 0 obj << /Type /Page /Contents 1364 0 R /Resources 1362 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1362 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1367 0 obj << /Length 950 /Filter /FlateDecode >> stream xÚ¥V[Ú8~ϯˆú«%ØNœ ;]©ÓÒF¢—i:­Ô©¢49H$¦N€A«þ÷ub‡Ô •Ç>>þü‹/ס1~K\3°Wˆ03dz.¶(ÁÄ ÓoŒ-w8" "l Oq±^A4ßßßå‹!¦+I„‰çÛÞÀèð{xgLC›H|q‹H=‹Ú.6“Âøi|ûŽÌÔ@æ,;ð©¹dá fa8Äî:+ã“ññ€3@£c¤ë†<%¦gÂy"|ñ$wO0§Bƒñx8r…L™”Kˆ·{ÙÌVñ–m¸ÒÇ)g¥²…$ÞW3bõQ`9®C%ª§P—»t¹Ý?"ŠÄÿ¥3õ{â4•ŠeµlmÊøjŸ— Ù‡-”j(Ϥ,RHuøÁJÛúõ¨dy™WËã55“ð“•pŸ(Ó[XÏ_O&7PN¨˜8–mÛ¾9Â"ãŽßÎø£ ,ê:Ä<Ò G$«—]²ÖB•3‹CœF%<ÕQË÷”ÍÛ¶åþ))»_ ÜÙ®—Ðe ¯+Ùl0U]Ë¡ ÔÈ <¨–*…EѬ® …£V´G ˆ¨]Ab·ÁùÜôEŒ¦J¬Sý|~6Ê´çP*X gUÕé.UÆy™1^Ä­BƒçS`Q‹)ˆ†ò ÁÔ2<¯³OÏVy‹.†zîÞùÍPÀïle’X/YgKÕï{ÒZF妸ü@QK,èO­òE¯¢5g ˆhäi3Ÿœ­ý Û[݆m—»z¹ÜÁ¶¬­ù«¯îŸãóAŒy~Š:L¶QY½º’òÅ#¶²ý“Šp™«lwò¡·³¯Ó7²¹^BɹÛé‡éC¨R &¿Ðq;Ûþ1‹„5çÊ””³÷ÑíôþËì¦:áݺeºÒ†ÍVN«â’Ä¢/<^¯O&kž‹Êíéè …Óæ¯uѼÛC¿tƒý+cÇó´5¨¯Ï¸Jò¼;aW [¢Û­i”³Ó '´¬}2è³íX¬*ö|wœRMa¿¹”ˆÃµî,üË8+Ôqã{ Œºò?F>ãF¢Òmt&ú5:[ÿñNïç³w¯ÂÙûwZD[!ŠÍ(ÎþK…‘£ÕR…À¡ÞpUöHàÊÑ_š7/;âŽúÿO # kõ|sÅ“GÜ®ê„-ìxnËHÜÂÀeb›'\s42d°Ù¹kžp5B¥ÀtBÑÄñd Ld+:`\vÚm+›?öR¾aOû”ûÿ››òendstream endobj 1366 0 obj << /Type /Page /Contents 1367 0 R /Resources 1365 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1365 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1370 0 obj << /Length 1333 /Filter /FlateDecode >> stream xÚ­XmoÛ6þî_áe@a¯5MR¢^Ü4Ø’¸IdË0cýІ,Ó‰0YR%9M0ô¿ï(’²¬RN¼6F@QÔÝ=÷»#Og½ñ[êô}ä;0ÌV}÷]‡ F íÏ––ï GÔq<:¸äÙõLL‚us99OÃÍš'ePFi2ü4»êMg=ÒÇð#?æ"f9¤®{Ÿ{>áþ²‡ûW=Œ,ßcý/0Áˆø>í¯{6µô$îýÕû³æ3F£&§SØÈ²ª±SPŕРAîpD0ƃÓtÌ%êùõãÍcy( Üñ[F9ÔE–ÇXÅ…kUàS¦r¼å σR½å÷ }!Ÿƒd)¾ä‘^O7e¶)Õ·ÏfÈÐÂgLjT3Ïx¾JóµœÑ–cE«^󘇕Kºç1‘ø&’£* Œ%î÷yA$¢»#=Ã{èßý1¿œÞLÿžuÐ’ý´<™Š0ê ¦û©+Â(º ò2 c^tð°öðxB¼m$•&»äq·Å˜é¥É޲O…Ê;4]V°tz“ ÿšè•…²Í"ŽÂ‰é P™s‘¦±Êb™ØÅiþ3 ÿDŒ Fš*TšL´…*Δ0Èè…Ôßö*¿TK>bŽMú÷ü^q"šŒ(µk'Ž˜-ÒVš×t؈e2É”Ïçà9¤žJ!e “ ö"Ø¿ÑÉ«h6Å|Áo£DÛãµæS ?™)x²l}ÿòe¶UØè,(b®D«¶†Õ“ €"‡ t2ƒ‰ÁhÝ1q&$¨åí<ªÑH†ojªäÅ‹oA¡ô\çAëTt›µ… ²]¹'J,C]Î'¢®CÆß±Œ'Ê;­ÒcQ.'“°.DÇÇjÛM·ñhw©òLUæÉFäî’ÁþV’Úµ9Dºþ«š›±QïPKv…b!~mæâ­°†á¢˜æá­†” Äñ@L—_";Ê{¯‡GHXÚÿuCêBendstream endobj 1369 0 obj << /Type /Page /Contents 1370 0 R /Resources 1368 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1368 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1373 0 obj << /Length 1506 /Filter /FlateDecode >> stream xÚÅX[oÛ6~÷¯0 HÖZ!©»Û h:7qÐ$Þâ¥èÚBP$Ú! ÛD%Wô¿IIVh7îVÌ~ ÅË9ß9<7òx>8|ƒœ¡oøkæ‹¡†® A4œÇö!4܃²ÁþGP~ˆ´Hpp¾š­ª[QĦ=Á¾é»ŸægƒÉ|‡€ýaMÍv Ûtà0J >|Ãx†g`˜¾g?³`@ßGÃt`!S}$ƒ«Áo #4êR:æÀm4t ßPGLWâ ¶ Ø?<䨙‘oXŽeËiONŸââüõx|:™M®çÁ»2, \ŽÇWA>Ù]zƒËgUI0ýl`±]¬…/´dýo“¥äoœ/‚‡ §çm$ÁV l¦'þfïç§ÓW#‡íš^LçÓWo§¾šO//®´ä@2R‰óæˆ76µ£ÖÎ8kí=¦½]ON;-Hf´ ³Š„a&'.EK«’Í-Wâk‘—¢ÃN,&ÙRŽ–y*z⌠-kwݦ—X-vÞâßW$×+ÓÛ.•²´/‚–î/‰‡Fy!%ÌRR\G1s³­ï×S•‹ösIÔ†êVvâ° ×W-H‚µ( DѪìg“{æë"pKÜ{Ž£½ç´ŠÇc’Óñ8¿«6Z+B­¼ºi³™~ªÙN®'òhß^^δT-Iµ±*.‡è%"Í‘húîèK5 €šxö¬!Eï‹–7ó×ãXÿdƒ£#Ø'S+2bJ”¬_ŠvoV榴q†Îñ\ÔS®Ó¢`îˆ×!GÖ©×Lq'úSs¥Q˜$A±Â÷YÕ¥‘Ùõ…%ÎpÙXožÉnÑ~&Õ­è ûÑrô$GE¶KeŸ9q$ãSQL¢<»ÇeEÕWšæÒ{fïÏ&ó+uäçe„Ð!ñ×eç¬Û3윞Vs&»¥g5nÅ×BË3e¡á²Älyõ–Ÿë)ß° ;ã,h­Y¨ŠcA†ª Öñz²A–À=à™=X°§Þ/-6äŽe ÚZí¬swË™|­U,:iZ³NH²eÈG¿0AÍ‚—úùƒ35M®ŸËƒY??߬i³'RK<4O±:yÒi-[ŒÈ¸9œ>y« —õRY«p Èfhv/%Ë,dÖ$\: 1'€6'yÓé LjˆNÖq}•pÒ»¤’þ]„e¥„e¡ŽyfÄ¥§Z&nfZÖÔ‹#F”Väƒ GðÓ·LßÛ„9*sJÕXÔžF÷xtý>¾šP i´H¥Í,±¬Ÿ^óeWíª6Önox]‚íÄ´&\?²¨:u¶éW«yK¹cS*¬g&¯$êƒT<*IdÇëÀbœàG’D,ˆTjeG¬¶àJqš—+- åx]Ê!«TüU;kïœþç“ßϧuª¥èôê«Î96g¶%@´ èF¿G‡L™±Öh-WéƒUwÕÓÓ‡¥êѯë'V±vÇrÓòÅ­ö(ݨ6’ÛHºÏI×j˜/&=?Óm6·L¶º¹l¨ƒ¶W*¶½}÷Þq[ªo@¼·?g÷{ÖÆRÃv{—¦®Í9ì§Þ-ªø]YYI}î¥got³R.°Hrf쪢,r¢O~vçZ4bw•v¨!6¾Ã›¢ ~(‘*Y©|¤"?“Œ>!+ëÐø}4ë7~í­ÐÙ~¯wàyšpÐø4á˜ÛE°~ôÓ„cïö4á8Û»?øÂñþ·GÇÿþGô`Ç8J²™Ô²D½à¯«Mš']°Ä1‰¸ t¼•LéIžÇõ]EÝó%_,ÙŒ(õøÑÎçú„K¼k6Ƨnì,¼gÕx¡yõ€a²+Á¿í:–·Žá»¦§Þ?¡Ár¼Sc<‘WßX<Þr…óv~à£ý;,>ΠÍ.Vâà ´Ç6[òÍþÈ{‹dïsäÒôy÷f%Ú_ó‡ÕR”\ü[¢{endstream endobj 1372 0 obj << /Type /Page /Contents 1373 0 R /Resources 1371 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1371 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1376 0 obj << /Length 1538 /Filter /FlateDecode >> stream xÚµXmoÛ6þî_¡e`ϵBRïn`éÜ4Á’f‰[`ÈC•èX€%yÄúßGФ$K”/¨ýA|}î…wÇ;žN{‡‘­yºgÓÏt®y@sl¨["mÞõ ÏŒm»¨ÿ ¯.?ÐŽú“g?^-1ïüžë'Ä'Qš ɴ5@ÿ°À³Ý2l¨qïŸÞÝ=ÐÂÐ.z@§à–öD;@‡ž‡´¸g"Cv–½ÛÞŸ%ΈêH§Œu iŽî9JÖ•ÄáœCÇŒ @?JÈ`dÓF²ŽgiÎð#å7?ï»äé¦mZbŸ%öÍÓŒïûX€·J¨ˆŽù¾ß=’Ãȉᰄ‚¼õ¯’¶=Y&Û¤ë„ ‡j¹jÞbð Ã&±œ„ã1…ÜñïÁu–8Ï£äL˜bxójÃBJ.˜e³m£Dq.ÕBxBˆÀ_.g« ~L“ƒ1-´vxÈ¿8Á™O0雷hàŠÙ§ˆ,xëzC‘¯"èAP®øRÑ^àUÀÛÕS$‰iòˆ3";qLmœúëb2½•fÑžÿ4¹ž|*Û’3ÊÕ ÖÎN©7‰Ý…?ŽÇg8á§ÆÖBêZž6‚Ô»L·Øòk1åé–mB­6ŽÉ–S>èP”êöÃY‚Ÿ w”êTήn» ¦Œ†nC6î/õré‰ß•³fCÇOÂ5ýe.´`,„!©ôå%&M_h reí„æY —Àqšm”\Hת#ÓQ d‹ëX-#fõWþ¦“›Ëó«ß¦çŸ¯”ˆn‰(T”EåÕ#>OcÜv †êñMê²Ô_NˆÕfì ÄõÓÌêÕ×`o…\ßœ_M9ìÍäöËôVSCÜá ãl¸HC2l6£Èz”Ô©x ¸â Ì–!æ2Wã•Ù®I®óæÇ(‰òõƒ=܃¯ú®œ4•£ßò˜Fa=ó˜EUhTm³»cÎîÓxAw÷îƒSü sš¯û©Ë{Ë5Êôóºbv¹á¾£‡>Ù‹Üßú뙊_ÞŠ«ÒÓƒt…•¤¤?(Ï¢F ¥( pBÅ•ûe/äæb¥¸ÌHV„ƒJëŒÐ,¯Ê é'üšAfÑU]³¬qª’§zº’¯±ð@?IRÒTÊÛOÞ,á稗#Ø-½³ãŽDÐÝN°Ï?ÏÊ›[ID‘pqt¼N# ŽÐ´‚2eñ—4iLÊz'Æd‘†]QWqKé1è–± BÑ︕¥4#æ Õò Ø'IŸDÉDϹiçÑRé7HzFUKQ_]#dü¨rGãþåBÒ}žLÊF²YzÁ‹%2»]Å>B¶\ÕÎj‹}?¨âåÅŒö ä¶oæ²ÔûY‰X…¾g¼žÚu"·Idw0@žÐ™"‡+ ´–´–jj¥i…‘ì6hb¥§µ$U2iȲâY02Ðy9Ÿœ¼°mW5€Œªøß¹¢ת_^m#Ö¤Êë Üœ® ß”¬Uí°õ Ô8©ò¥¡ºCL›ë€¤™`ÆÏdI³r™V.p¦6 gG’h¸ÊQ¯3I”Á»Ë;LP 2ÇWè4Œ·¿½Ö€NÅ«±­{Žá²§WºëACs MÇ.ø:¯v!&fõûNê¯ÅÛñÅZýµ˜±øZc ŒM‡÷hÝxk>@VŸ=ɲNí1úÛF¾C?opùý¹Çÿendstream endobj 1375 0 obj << /Type /Page /Contents 1376 0 R /Resources 1374 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1361 0 R >> endobj 1374 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1379 0 obj << /Length 1579 /Filter /FlateDecode >> stream xÚ½XkoÛ6ýî_ad/µBRo/ Ðtnê I¼ÄMѵ… J´MÀ’'¾tÚAê®Ûû:¹ì 'ØôÒL[3u vƒ¨ógçóWÐ ; {Ùšî:f÷‘¾ º.êFéòeѹëü^ÊéSAýº¤sÜD][sm%pDÏasÜÈ€½¾8Ìòp0’UÞë[ôõä„?‹Ï8¿2ÐTKßÕ Ë0Ån´}÷Á9ž‘˜—…!<{tÙ`úì¥MÚŽµÿ½އ÷¥0£ÆusGñ±¥é|°ÊpÆGBR1~$ùœ *pœ§D.öãœþ·uŽùxºHüœÄ3aބĹ˜YÄ«èN3oü(ÄÅ %y" <-$ ùb-Tø™ÀCO&F$ž&iDq$qss>ÇJ4V 7„÷1õ—KœjÊMvµI5íˆéwxyõf0hJ 2œ{‘ÿäñs{²,d˜¹YبÃÃ}YlFþÂÉÔK±¿`òœÂL°õ&Ü;ÇŸ&ïF¯¹±G×£Éèõûѯ'£›ë;¥™Z$&9M™4jÀºò«±Ê0ëíÓÜn'«•e£8Ëý8'¾Ì _ÄáèF–€”ÎÍDÓ`åê±°ÌišDõ¬T¡i7ÃatãÕsxŽ—ø¦Ú˜ÎöS¹{[5ÄSã*ÕŠ-„KY2³ Y*3Ð’‘ø·r–¢i¨ ¼ØÅ¾2ûS’·Ñ…~î7WMÉB  •©/p<| ™+@d!IX´{ã-u­F•¼*Ê?I²Á€·u¤[zudÕ´QNïêœáýðZ„Åû››±Rª)¤–ÉÎ"kª8&áSþ èë_OägäÄÑQ) ò‘ÚÇ4‰l‡m˜>Sý³ NOa[̦v¤LÑpŠ-¿S®fZì־ӂ׈PY5V]½?å^aãf£éCÊ(àè-X¨e^e‰[Ñî•UQ['Y·ºÀ÷-ÞEE0«¬¡ µyÿŒÊð L¸°ÏöNÍ4¼%Óø~uµÙÒFëH”2?§‰äR*öT§S*f,# … OȨb@@œaÑêß°ewÕª*µ7ƒ·ZàýP3K"¼û«å˜J¼Ý>J±T4†‘l†æ´÷fdû4x=òHÈ ÍìÆn粪aÕêCYúž°hEÛÛ™#ÓU¶­f£‡Pbt`£T¹È’Mœ=Ä üì ÍÇ\®¬ªâ=Ž’t­D!Ó².y#dÙJ¿+g÷邏áíÕ躠‹J‰f‹­ÔÜXºlK¸V¨’g>Ψ±2!K•˜r¥|÷JìHJù]ü*S­(!¦$kä’)Èß^L§ôê§êØÛÎ<cž~Y¶^æîVÞé¶ygœšöyȺ({÷RlømÍŸ¿%Oëoôìøÿ^…ôÉendstream endobj 1378 0 obj << /Type /Page /Contents 1379 0 R /Resources 1377 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1377 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1383 0 obj << /Length 1393 /Filter /FlateDecode >> stream xÚ¥XkoÛ6ýî_!¯µBR¢^: éÜÄA“x‹—¢ë A‘i‡€ž$'ñŠþ÷‘"©Wh/ÙâóðÜËû2O烣È1|ÓwØg¾4|`¸41‚Ș/¾Ú GÈqGGâ¥Í즋Îx*z R”ù&*³¼Ó9(Œc"÷Ü6ÊDfG¾i;6–gûbþ»ní([2*Á×Ûòž†Á:ÌKÅ$È6åŸöj¤@ß´“–TFQ.ÆãˆA‰ÅÇÇâ[ “tÿ¤Ýmïß}pJVJq{X¼êL,Ï<:2_øï|2›Üε`N &ΞU,EÛ1¥ê7‘—-‘ªö#-ïE‹9-fî9U‹k òFwÛRZÉ2ΘC¤+©”Œ¦¥–˜Û"k¤›äŽä…)6~’p)Q&Wf’ÂÓ:¦-ã­<",$&™lÑt™å‰pÌÎæò^k¶Ð볊>åázMrS»Éo6i¦ÓUü»ˆãqAÊ Ÿ!w 5ËM†«››Ö<üwØ‚þM²e“0æxÞn0´_ëÕ¦8ûïć±o«aÔÄ›75Ü“y-æ3®Ç7,ŸýïÞÁ>Ì®$;˳ˆEí“¢¸_UÁS®Ó²`®‰×‚£¯IÆ–/…àÅO°Þ’‡´lÔÈjûÅŠ¤$¯-9Keƒ4l›Œ*Ó°æDÈ캕±×[æÐ‘ŒLQTeéÉËBõ’De¾Ùç‹ÉüF]ùóùݵƒ »²ó£›;lÝžVs6’»¥—‘TÜ_ mÏD¶ŒdŰíU[~¬¦|;64Zã,€u,TÅ4“GË %OeP鸛8FÍð¬-«§ÞYÖZ¬ƒÉ†e£¢±ÚvÑÔÔJgä¶W%É®ն屌ùèg†TGpp©ŸßyŸ©irûV^Lgüòr·¦qO$VÈ{Î3U$jª¡vy¤tÚdyAQ£±IqEdê~Ï—Ý4«×ÞMÞí‘R™E–Ts-ÓÁ{}Qª¥²èâénj~oAWiÈ\AÄ£€.8Ú]­à¾/ëW+>ԡU2ÚŸÖ°r×:wâBÏõ9ª#ã"ÛUƒ/HLž 1,ÕÊ–TM“$Ë·ZÊ-ÛÈ;)«Tªý•‰_ŸIç“ß.§WUù§EtzeKëë+Ûc®ÚäÙLDëØ•d$fESùòHŒw¼¶^YÅá}¿ñ y ñ€É~ˆ[ÿÿ!¤t*ŸpÓw-¿ƒ°Ÿ+¦çCËp¡ mשɤ¼o6üJøw>ôÑáF>ä\ !f!_t°ø@<Æ`Ì£ï!Àxk9DøS¼ÓzºÛªG¡§íŠÔÏAÿVj¦ endstream endobj 1382 0 obj << /Type /Page /Contents 1383 0 R /Resources 1381 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1381 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1386 0 obj << /Length 1308 /Filter /FlateDecode >> stream xÚ¥X[oÛ6~÷¯ð²˜e’uñºaÉæ6Ú8C„[ŠLÇÄdÊ•è4^±ÿ>J$eI¡=Kˆç|<·è"ìß"·X+á²€¾çB #ˆúáân¡åGƒÁgP6&Ïñz“’èfÇW4¾åùú¯gs+IÊí‡÷áUoö`ˆ_Xáb϶ ûɺ÷¥wwú‹è_õ€e>î`Á @ýuÏA¶ž¤½ÛÞï5ÎHšHÊèX¶ã"m&yM §Ù ¿Å¨Á‰8y–íc\á…+Z G®€S@ròHÉcNÔžWï=ÆÕzÌr°¤iªÖ’<+Ô° §+µ(ϺK;([fù:®¶%Bž­åh³£ŒcKX‰Ä,\ƒ~ÛB«Vð\XKÙ£œÎÆs9à™|~Í)WB±I¡9éÃWD)% ÕåVM¦'n@M¦mAy9ú€Àr\GŒ¤üxܲb]Í«êˆÚµèË=§ ûç9a¿,YœZÙÓrõC¼“Ad`ÁG€&L‹PÂ|OY’nŠÍ7Ky3?›$Q‚fGDl“ÈÙ%Ù|øu,Éü”Ç› É­Õ™IÞ9"?›G—Ó›éÇð€,>"ûްiD]£¨Tø’¤‡õõL‹¾”Êè¢áÝm_ú 0ðG@Ð(=ütyÛtÿ¶ºµr°Ž)Ó(rå›I ™Å5Ûàõ†ÙŽ’{¥=Ø´èÖX|›«LŒâžÜüÇ´ç›MAå€WÜêa>¨Ôv:Ô‰ýH.odÌlË7[n: ©Ã ¾˜LñžŠá7:+‹e©‰6Ç>.|vA)ÓÅ d!ïhÎ^s’p äTœX'þÈD`ÂÂ~›Eѵ`·0) I)å+9ʨëÌç”tÉ÷G;Íþ2ÍDÔ•m“•fÐËmèU•L¶]?¼°¤Ü'…ÆY´}øü7jAÿ&Ù2ñ—–pþA,xLŒêÝS]ðæðrv®ú™ëY8;?ûó<œÍ¯oMèh¢Œré“ÇRvL‹øÕJVĬ£{”"¯Y3Vð˜qZç©X9ßl^7}bïQù­ðÐ}1«ãeßPªÚn:Ùo»AÝHÁÙ'áúFƒc&¹Ú¿¾µû´‡}f+’l£ÓìR™Y$”F43 'ÃNiA’4Î;ü¨|ÝhŒMPHA%™àY5í«8¯!Ê–øî^NR)ÙÜ·FU­°1?3qäÚê¤*Igª#lÛZújëd99ä¾®£ ér/ù]M\-{¸Nºe7WWŽ„äy§ú$1c™âE\‘¢¶SvZÊžT‹\WKžiUÌFð ‘ž2ÒÔX¸~ÇDÉÙ§dåËx›r3‘îQUšÏIB‹ÆÿeMð@kF­úíReèRÙ­]D­WJY½óZW±ZtÞ¬â„Õ±\ˆ|´íyH³ä/“J:dTpWEÕ$¤TbQuÐÞ“^:’ÑX´7Ö°k×»§&ÓéÇéµÊ9ïçóÃ÷X6´íÿÿ¹¡¤¿6¸âÿYÛ× Ï­,y§šÅ…ühR¶å3h°%rr5„x°U;X> ž`0){r†Dr´"<(“u9Q¤>ìäó·ìy'Tmþ¿<Ÿˆ–endstream endobj 1385 0 obj << /Type /Page /Contents 1386 0 R /Resources 1384 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1384 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1389 0 obj << /Length 1613 /Filter /FlateDecode >> stream xÚÅX[oÛ6~÷¯ð ˆ—Y%©{ÚX7¯M°\¶x†,‰NˆZ’'ʹ è)’%S޳>,y0%Šß¹}çðæ£7¿"oZ¡Ç~æ‹qƾ-A4ž§×û@“)ò¼í«ӟك ögOq¶ZbñðK‘¬3œWqEŠ|r3?Íæ#8ìÖx®o¹¶ÇI6úgt}ÆéŒOFÀ²ÃÀ?²`Á0Dãlä [=,G—£ßœ)šêH¸ê.ûVè¨TGÌ_hî;“©ë°¿(ÊÉÔcƒ¿ Ĉ䕈Ÿ#ñßvÞ¾S¯P £/Üb¦â4´Ïq…hw2õþýbCò÷.8:‚}Z¥‡‡I±–j½{'~÷.Ê"Á”’üN¼˜=`¥úÙ:»ÅÒ²=“  44Ò¯eâ<]¾5­ö¥ I¼\F«güWÜ ®2s†ÍÞ¼@w8Çe\añTär€[]Iu/FÏÕ=‰M)P¡®Ä—r|W‰—ÌKDÉHŠü—UOYÆ((ýu2›_ªpoΚ]Ì®æ&E®å\r?-r&·@.®“åðð#ÎEÈø§Ð±Ù—ˆ‘2ê;A½â‡z*´\Ïcí=~¨:Üdj°W¤°J§QŽŸª¨vpŽ3…®mä¡®V°çÛ/V÷r°Î‰r$½Ðü¿¦XÎ|ÄWbç©dYMcƒ/”Êôž¾gQ-cKïüÉŸ™“fW?Ê tÞŸžºÙî§RZdX%~&Š’0´èŒ›ÈôÐ]qŠ¥§£¼Î8®?TÌí/¥ä.D"G$åëðz–1 1ȵ|/d]ÉÖËJfõ*.+e)+o,!n:5ÉðûJf+ÒR|õ̰¨•ÑŠ\Ûp o^ |0¤qR”ªwI=2¼°¯]IˆVOI–;\ ªþÌ?»l¿j«ëê!è©þX’ Y"Ü®êó•bšˆYb“×C•„õ·)ºÕ¸¶«®¶ma`(Žå¨W#jÓTîÛå]¡¨o¡RxI¥9Æiת/ñ†Vw*õ¥æ“EYd’Œ8+Êg“å*[u`¦»1$j×þjštåä¶x-µÊWz½£ýȪ¦Ò)V5.×öÙÛe‘|6)ãIe$k]¢ú!:>êeѶøARú‘ÖŽóÙ§Çg?ÍÏÏL€Á°×Fo©›m„õ-a#(c6%tJùrC¥¬SÜyCe½ë6@Mˆ©Þt4Á£I±Â½8*G›ð¤À¯ÆId|k‹%‘2ù,œqY±qv|Þ-8_Œ0Ž´¤1AuѺ?9´–d´ Y…e@nŸµ8vÕ0Êu{r›­»›>2È·1£{Cž'ñšÖ­}%~O’¯‚ÖÄ%n8Œ¸Äe-!UÐ}\6¤feùú¦ÓRíÉD]Fµ[¬4®öÌ„ºýdAëuRÕ\æ ô†ŠÞdÑ®üŽÐ]޲I5‘ÀeÙ;>$qžjóZ)þìu¿ÒõÜ-†I¹ø‰Ô©<…ÃÚMþšfµœ0M+ê~é&ÿ-¾S=ý+Óz½b˜âdÙ-Îæ7¤”á5a©Jm¤ÃxçxÚSª^Ç¥èPNYÛÒGJ~‰yª,w˜·¹Gmá⫼oå_GÝ݈ ¼ÚÒQ@dËYe¸µ*qB¨ì!¡7Œëì°ÿ×D}m‘Ö瘦½Ww³«ÙÙ\HýíüüˆêwíévAíDŠ™W*À¼Jqïñ^'ª*œ»U?´…úTlF0*`÷OÄYüYõ1kU T¯|?àNƒø/Iºý mÔܵzqM êõ›G”m¶2š²î„M³EŽúâÿ¼t‚¶Ë/Ѽu‚¶·Í ä¡ÝüÅÈÌòä…£ÂàUÊ&ŠüO„VÔ('PrúaÞ8´îk–ÐÝÒ`í éWdzþ^ßCꦋ1¢3 A ­4oúÞlõæp,›‘úÛ¯„5 ò2Û³Bßø°øQÚcZÐñ½Ú ò¶2·×Üwüw> ÑþZ^iŸL ËºQñàŠèºàÐñż â£Å¹ûüŠ™?hwä¼K×ãOÏw¸¹ÿË5î endstream endobj 1388 0 obj << /Type /Page /Contents 1389 0 R /Resources 1387 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1387 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1392 0 obj << /Length 466 /Filter /FlateDecode >> stream xÚ¥SÁr›0½ë+tDÄJB€h.u›¶öLâ¶á–drÃׯI|È¿W ÑñdðL;…þeß¼ÕcW³ Ÿx„U‘ Ù +ÀqĨäŒã¬ºõ£ ñ¹ï€·~)ÖÛFç_Ýc]Üt;ÂOëù’–eOJz!rŸ-Ðe†ó²AWÆTŠˆár~¡Û{À¼@@…J$~6 P¦Çkr1& ºAßþèøFÈ?Ušõ$Ç1U1°Ñ7Žbç dæ\ ¼‹ âG&î»*Mõ¦jÞõÇ4º¾¢aJÇçÄg¼ç½N–…)?[ÇrØnÏ»ºÓvè'½é,ltíR±/ëÚÂUÝèýd;9¶ÓOZÝ„¼vºæ;›6?NÎЉ/óÕÄUƒ€þå“]~¿š_¿ÏæËëIEå¿èíÕ‡4<åC’Ï—ùCÓ–?s3¼¶ÙÓ Fâ8£åÖ¢l·î×·«7ÒSzÌr^'v=1KÍ„øÿU?š¹Ë™Õɸ錚 EÉ>ëÞ®ì…m76fDqï m² LzW‘60™JHû9÷Æ-Z.½vg“a>müؾèÍhÿ7„HJendstream endobj 1391 0 obj << /Type /Page /Contents 1392 0 R /Resources 1390 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1390 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1395 0 obj << /Length 1516 /Filter /FlateDecode >> stream xÚµXûoÛ6þÝ…‘a¨Ì I=l¹-ÉÜÆY{©Ñ 늀–h›ƒŽDç±aÿûH‘”-…VÓ=b¢$ÞwÇÓÝwGžÌZGo‘×ö-ßã—Ù¢íƒv߃–‹ jÏÂO8Ýò¼꜑õÅ)¿qAgô€ãuDäÍi°‰IÂ0£iÒý<;of-Øü <·o¹¶ÛAܺm}ú Úa ´Ï[À²ýÛ¾ç7À‚¾ÚqËA¶¾‰ZZ?—8=ÔÛE:Q¦CDziÛ_J_š¡åw{Ðù ”1’³3’ÝÓåiº¦$·‚@˜{ôÖE;àzÐÀB¨ï(›ˆÑb­"w|¡¹ÓD^c§Ù£c&¯l¥r«£|¤Õõ¹•nÕ:Òh1E<ô-ÇsÜâ’GG ȼŒš] =}çT—8ËHòÃ"Á‘µLモOÏq²Áz]€È­ý羪©ëž ¤Ä74 ¢M¨ä_-r–¿1øFšî—€À$rPäÑü×^¯If­Lò°A~<¹9]]ßí‘E ²ïH2NÞ#j7ˆž¦ñgä NÓÂGÓÑÇÙMóÊ]ÓCOÇ„ €Óä7àþ¯<õ§I¬ßíÙ`_HÃAùÖzæŸ\€ Ëßj*Ì‘ßXŽ=K9e“Ü ¨ßS¶’#‡#¨DHXFõdœ„r0èÍ™ré"J9{&JÅ:®1ðØ± ò”ì$›xN²Ü’r× -!Dé`©²àaÑ€²H¥Þç¹N>Z¦è"ÍbIâa‘Ÿc`ݘZ@˜dPÓ'D¶z[Ä×pXÅsÂnbüp#}£¼*G¸ZÏKªóeÔœþAÒÅ ÏÿHÀ öb¹ö{_‚ãËñl|ü~üëñl<¹ü`Â4QÒ±¾º_gi`MOFÇ*s^ËKŸ¿¶^VÙ™$$[ªHò:ç”g,9¾AúÇ*©@Z–AO­Ò°\öÞœõzoTt_«ÂûÀ«Ì»½å“›ãLÍ@n ‰±39Ð`Œ]_›l‚Õe§W“Ó ’P^[ôím›[¢ò,KÃM û¢º2TUvqüËècE™ jªdèWý«Ê¬ß®9˜‘(R¹®˜÷~õ¤‹Ï¥I"c4ˆJâÊÈФEçg9Q¤¢È$§ËD“QÉ÷´²H½Fõô•bGõôð–¨ ÅÁæ™é:…/çq°²¦ÇW3ø‰~®h†UµÀ-ê÷òòbúB†ê^]Lt`{O•¢ÿ]©.ƒ™^n™.·E•û9; yçÃHÞOf¼‘ÃÓÉÅÅäRŽOÞON2±’½erÇ›¹Ó+ãG}FàVjÍ:3—>”7¼ÙYØ®–€75]Syøò~’‘¬’5IB¢Ã/H“œasÎ8[ 4¡{ôð7ŒâˆæºÓH±Ò­Hg’ñMLèØ_߻ȽØîÇÜ_D§©l9n&ÆÒ=kObÕŒ'ªOg§y¾Ì{^>ò‡Ydi¼Û™ÚÇ«–æ²–‚+þÙî8wš²ÀilAmI)e{ª÷é†ñ`QÖRAs è9 ‡ÃTí*Jy¸¥ºƒí®l’‰ÜÃQn…˜lÙË´4*@FrÛŸáíxôøÆ~Îýú°}]ªFúýd256”›=Ö Œz¼[uõŒÃÃçWºxb·.xýÖQ ÷©·WªL%Q”YSìÅäðr‡1M[+—'o‰F«à…NÎ{‘ñËõÕöRZa‰ApPÖ«I¡Š~Fïmœ84漇¶U4*´k ÃTS¾Ómðüw¨o’?æ†#²°lhÛÿþ„lHy–ß·â¨ÉF¶5ð¡ÝîC :ê|ëòQ(ó„ƒÄuÖõQg£NøÎ»ÐåÍœ¼qåºC ‹;ÄA…-ºÈíˆÜ7;G†óG}ZøðÈݪð7vÄendstream endobj 1394 0 obj << /Type /Page /Contents 1395 0 R /Resources 1393 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1380 0 R >> endobj 1393 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1398 0 obj << /Length 1076 /Filter /FlateDecode >> stream xÚ­WÛŽÛ6}×W¨ûd—¤D]Ü´@7Ý&Y`¤qó’†VÙBuqu±cù÷R"eÓ2å¦h½XP$‡‡gFs†âÝÒ¸ý•ºf€—7ËÄ °é¹1J¨¹Œ?ÎAÁÜ¢ Ï>aLËÛêæTûtý¢Ü¦P£(âÓ~`Û3³ùçåƒq¿4ˆ‰ùéј‡˜í3Ê?Ÿ±Ø|00²Ÿ™{ÞÁˆ5sáöÐÉŒ÷Æ»#ŽÅ,é®#Ψé¡ÀÃd N¹žàí:s‹9Ï6ûxS>} óòCÇCZr\‡ S&Mooç–ËÛ¸m”µu•è$e•‡MZ:÷¸YÄí®næ}Ëf1Dá¡Ö-÷O;q£«;;µEÝ„OˆÞ6¬š4z“{X‰g_ÛØ#o Üd4³pW¶Ò[ŽWñ¸þªØ®°GÂ8u™4Cb¨²CZ¬EvPÈ©4mC¬Ã?åV»æ*•qn%i‘ÖuOÍ¢S:µIWñ‡tzÛÇ‹ÅK(:ȶmß´›ã÷+¾ï§Ä\‡šÊ8wD°úqxY[>”–¨‚0^ð¥Yõ|ÏÙXĶ‘øç¤ü‘Ó›¾`ÈÀ×P‹§—ðA¾žB¾ž<×¹8ä1§cýÄ—¯Ú"mꎇX%]ÿ½å¸ÿðL7þø8CèÖ CUe]cQ/~‘!ŵjà•0[õ8+ qA| CEíÌÞŸ¬Òޱ0äN§S=‡K¶ý@#õØlàz"úöØ“ÞrU´ùTGŠZbÎxi®‹0[m«2´¯!t2³}E9šY÷8‹ô¿<üÆ‘ˆú#Kç©l·U*ò¼l2ÉÏŸPžˆht&¦þ÷’äg˜}[#Iy>%#IªJs)bvÎYÅ!•6¢àÿ±`8gN°?Ëëúäƒ2¿ê&=Ýàø¸ØK¹†Y]žŽâóÚC ŒêXÄϪf°T•Te.OÈËê #1Iæ¡Ó¹H0Ö;zkiOD„`*g'+ÙÅoyÿÛãë7?/_¿}£E´%âfüsãÚçÁŽ´iË¥ómi Ó9›'fu…>i³›‘iD\".F]ÉSM@¬ðÄìWÍeÄç·þÅòßï" мC¹üîÁK§¼ŠDÏíq‰C%ò²»GuqêÚå< ³DçaNÿ&& /Oô(&T<%sÊfe%:}­OÑþR~9¬¡ÜÿGbƒ›endstream endobj 1397 0 obj << /Type /Page /Contents 1398 0 R /Resources 1396 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1396 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1402 0 obj << /Length 1560 /Filter /FlateDecode >> stream xÚ­XùoÛ6þÝ…—a€³Ö Q‡—k;·qÐC¼]ŠL'B­c’œÄÛ??R$u8”šbˆ"õ>~ïñ]Ò›ùàඇðl~™¯†:6#<œ/¯F´÷ÇØ¶]<:béÉ[~CáhúèGéšÉ›ß“`±¸ð‹0‰÷¯çǃé|€†ÿP‰G@‰†A4ø{pu ‡Ë žK‡üäyx ,LôÍzp1ø£Âs q颎,@,kâHê÷ÇB8ú !N –çÛâ.ôß&iÈr‚ïÁ;Š&àa`ìØ%ÌÉf]„¥²6b÷\Ó\ŽÃX^#%ÙVŽýB^‹;%û‘!éíN¢z;h#K²ˆIX¶EË9,Y!R =]³Ú€·~–±ø·Uì¯ÁmrÿRÎûñÆ×za]m}w[ílçæ\)ñcëÍRÉ®ò"c~ô«AÀ3 „I·„p£§"{e@È“ø˜ùiÊ2p·g’G=ò³³ÅÑô|z9ïÅ=²ïY<Fî%=¢o“(õ3öˈ U>bën©iÒÖ¾ >òÃø3¤ÿ+ ýksöÇv¹2r«UðÌ?in–WïTÒ‘ŠÊ± ÇMΔS+ rüwrdqq‘…úa?^Ê;¾ÙÊ”«uÂÓf|+ïÒD˜Æÿ°Á ñPÅ›è†e9rZ̘ڣHƒÇta±V!—úy®ƒ.¬Bs•d‘ÌÞ-a—2h—Œ4ÃB‡€I÷!&jµôÌɤ7™ä¬XDþãB*½PVŽ#L-œçªõuÔ<ü‡%«ûµ€s;±h/û›]ðüÓühöZšyv:›Ï^˜ýõz>;;½0m # ŒC•ùuØÙº½l½oYùŸG–À¾Ý Ú ±Yœ~\„¾ _yáìL…"ãk·Ê¹«Ê?³e8«,‰š!iòA‚ÛþPå])xÇRvÏcÀdPBzU²vTJR¦tÈ]Ð’M‘nTÚ[…kž @ÚËòb9™$ª„UòHœ¹ÊÀu p–…·!/Ü9XúÅž\îr b÷n€È=Þé…'=ðø9ð½nM¾Ý­§—ÓSuúÎÎÎM}’öåÊíjª*ÊË+yáÔ›³‡jšB=ÿâE­fwѳøµÄó«'ÿDá«Wh¥4zh';<ÔÅ:K–çU¬”å^OË„ªž3‘à!ƒE’­ÐÂ6x¹'‹—kÓyYD©øëõ"ݲû¸¨ÓÖ˜´:P³¬JIÜì wë«*ʆ -µ¡FMå;ÝòTîàV õAß³¬Ð7Q¤Ëàù§ãéü¢Ý¾6×;Û‹¶×LJú½Ü²•°JSºA+E˜¿íâLj¿¢£Z¡ò‚脉(;âCñDŒVû˜ŽD/&n$o¶ú[äã–÷Úÿ%|Hendstream endobj 1401 0 obj << /Type /Page /Contents 1402 0 R /Resources 1400 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1400 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1405 0 obj << /Length 596 /Filter /FlateDecode >> stream xÚ¥Tßo›0~ç¯@y‚ˆm0†¬š´tÙÖHí~ñÖVgEœÓ,ûßgrNÊ*WÛ´DÑÝùÎwß]>ß2wæïHâfa–h‘oÜ ¹,Á!%˜¸yuíabä„"ï!"æŠ÷êÓ^=ÔŹØÖ¼ËR»Ó”`/FÌ¿Í×Î*w°‹ôÒQÒ(ÁnÙ:ßë[äVr× £,¥îN(ÄYFÜÖ‰It4ç«óù”'Љ‚i¦åˆœ—…CøˆœèFOb?`!¯WÕbQr)ý ÑæÙÈÙóFpþžw«GÞ)°JÑn Y÷¢{SÔMjaBøSôll_ã ²0Nb 8¨àˆL*óG¼>ܺë†öžËD‘þáßpó®j^Ù²&¦;ÉÕ ¸[C™ÐX»Úœ©qÎç6oöä=TèÄ”Š7\qÐÕƒQJÉ Å«ÉX̨6R´ µ¼ro)Å)5ͬ'eëˆa{ll &~¡Úg‘qÎçá_~òÕ—Ë‹«7ùÅÇ+[Âø”`íd}D(C“^´æ¨î6B¶…ªOü:M ¨i&,žMº×£æ­>5õË¢iî¶û^j¤\3 ¹fUb.Ó9áýÓ“á/¿—Ú0 Ê’÷ýfhfÿÀrÆl‡©A9¥>²^ÏÀiûçSd;ĶCbYj©Þ^8Šþ§M-Í2Nô‹ÒãJÓû7fɉ^M\ ÷ñ8ãQæ~F¼ƒ±ö1õã¡ 0]P´ˆXaÚÆ'ÔŒ|{yêýä[ñcÿ h6¶ÿ -̃'endstream endobj 1404 0 obj << /Type /Page /Contents 1405 0 R /Resources 1403 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1403 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1408 0 obj << /Length 1536 /Filter /FlateDecode >> stream xÚ­XÛnÛF}×WÈ΋ԚÔ^yqœ pk·14EÜö!1š¤$"ÉR”l·h¿½³7ФV²ÑÔ‚±;˳gf/3»—·ƒÉ5ñ†¡zPÜΆ!úv9Ádx›|1Œâyý”–ï¿£ÑÕc´*—©~(âÍ*Íë¨ÎŠ||w{3¸ºà!‚–xÜw9õð0^ þ|ºCÃd€†7äÒ0àËà WF¨–ƒƒ_€œ6Ò¥¦Ž™K™G w¦øŠ:Æ.Æc#„Fuº®¯—Å£ÑÃØG#7ŽÓÉ5'-ãa¸„øžøu z ©bU$Ù,K%¥ÊÓËM¶L®¶à€ëªX}Œ«¨ŽªK]èFW5àðÐ ìU„w#3Å\t¡Ë<ÆeQ“ÉR€iCziÓyÿëÍ£ªJóïfy´tçÅöLµÞlrm;A(´ ð.Ê}´6~5ð¼ì´}K[ Ð^ey¼Ü$šÔEV¬ë*Vo-¡UcvX#«Æ6뢲*Ø&Ê©Ü5“Ó\ºÀ]œÚTéÕw?OŸÑf¶F=AõS™&éL ë:9?Wf]Hðós€þUuÃn(8ô`²pè`Øž,`ßÈOÌõ‚‡­ö·»Eý[¿–½X0nÀü.ÏFÑWêY®7Ç*Êòψ#øÇªå/›¬Š­nî¾Jˆwz9Ö‹lÝY˜Jx0e¶\ªZ¹ŒâÔèèʬX‚Y>×b2òz“ëãQÎÜý“ª,¢<±MAÇl ¸eƒ¬äÑ*5SÕmH™Ì§ì:L„U ©c‡‰ÆÀƒ0QùS·\åi5‡V*ú½ÖkÛø¤5¾Ǻ<)¿=ш°dq Î"¾lBgÈÔ\PïÖÅx>Ôl’îÒÀƆöÙ¯eãü7"¬!òæÿú³ ÃûöRcor¢?Q=XSÆg¸!ïs¤[˜{¡(°Šw¡AÇ="^Ÿ3D6ÿ´/û8Æí䌘ᩋ˜¯U*+‰3×#†Dõ çØø}6ܰùÝi±‘¥#æJ{ÆgˆGQ#ÈõCFˆëO2î má}6ža3V«èD­,³‘ iÓ1Þ 0mŒÆ˜îf- æƒy¢Ïy&ìsñ÷ î-~ÆW¸Œ’ÎjÕA`ØBZÅ9ÙÁ6"õ‰û ÷Œ¤¢fO$bfR‡»)ò`¾ÌìqÏ¥~Û+¶èBm1š’^t(ÊTLJH—Ŧ.7úe:*öPÌ¢‹Ü$vñ"ª¡÷éN‰otHh6ø~úÚ†jŽ¥ ¯h̵ˆ‹|%ˆPi3‡H6ÛižëÖáK=+$‘8­´aÚ”8Êó¢î;ð´Û«CÓ4JÄ4O–Vξ7}ÌjÁÚÁÍ3ÛïoÛÇ~ ¤ñ¢£¦Á»Št¬oåV&œC€Íãtmâ¾¶=.V`³µºàô3j³îuNµ‡úζ Î*À§gÒËÂ|oêCÆ2üx²O^ O^O÷àéKái˵6˜ZãûÎ.ŸZ' æ‘­"زݚïpf§Çw ãÇqù\þ®í€b& 5ùo¾YÝGIçØ@V8[v¬·4Ôsþ½¸Œõ’Ûy• }ï{XdæòºËˆ—EñEײ/¶‘·VLÅ]ŠÃ‹ú•M¡—Øt—¡Ã;¤×ÉÅ8Ÿ1e[<–&%*¹ã8[v…µP8Ó(Ó-Nô $䣼0ÑáHi2é‚ਠÚÙ•TÝ0ÃPÓ ¼àºß÷”¾¼ˆL„dô=/ãðÁîá±‹Š‡öNÚY–wMfâÅCÕuZ™p»6÷‰}™,iO¶íoÁÁMkgP€õdn$Gí¤–g-È )¦ôë_µZ@æQËsCŸâeˆÈCL‡>v1ÓSp>C «Å‹‹x€/.¢¼‡d´Ñ¯r7cÌGý…«ósŽÎÅÁ#$‚ä] j³1á#qú ¡õÌ'®±ê…ïñiž6o{ÿÆÐÁ§endstream endobj 1407 0 obj << /Type /Page /Contents 1408 0 R /Resources 1406 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1406 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1411 0 obj << /Length 1418 /Filter /FlateDecode >> stream xÚµYËŽÛ6Ýû+„®ìBbøé¦]¤Í´ E¦Ù¤ÁÀ±93B=’*Évò÷½EÛ’eɃq7&)š÷uî=¤¨7·“W7Ti Íí} qK‚%4¸]}ž‚™ETàieÊêfÍžîf1ž¢åröåö]À±BXÈ× 8Ööéäíí„À#Z¦ˆ‘`’˧ɿ“Ï_p°šààÝ#¦•v0ÀˆhMƒ§ §ÌÖ““?÷r"KzcÍ4ˆ‘Ž1ñæSð&vÖK>‹ÆxúêÕ,’ÐÞ$EY¹î²0‹Ê¸~õØtÌÖ¤~>K«E’š"tã]R=ºÞÇä!]¬]ÿC‘-MYºÅቘtóôÕ®OêxqÉ…3QL왕Íì&ÿë|þ»IßÖ²í_ ˆb!‚ˆ@¹ªWüXOi$$§ÁÑs³m ú¹±Ëì\§#ùo,pÇâ˜!?ÕÒ#B8Š¥ŽÛ¶Æ­ *úeSš»MšT¥ØèøËŽAÕÛOaKwóüýûƒŠNÔ`tåch·¦¨Ì·–#‹tu:G“ªìÁ@:]ÐáYÒP ¸q6â¶çœD¿”¦º»_g;«™„”‘³«|Yo‰‹¶O™»$=x”…\^/—ès)Í%:☺f.Ñ+æRty2éç'“òäÓ“dâìì*_»[:”L#1WtˆD Ñýþ˜mª‡,I{t“÷m"9ð,íSȯ™̧Ày¼”¤à/J È8I2 gbÊÔ!W:NB­ìÞsa‚øÒÊÙ3ØF©sl€eȘr}MHø8$¿’ˆ!ÌcE£d!IuGDMñ9L4ñ˜DV­ö•“ógT­f窶 Q·ÊV‹¡³ë[qÅ=…]oOÑã{ÊJû"`C,9&E_$e4‚ñH)QŽcê¢8ç²]JŒ!¥UG¡%]ùÒRR„…ðî¿`—b,äÀnG {}…ò Äm„ç^ºK|mäò4G0?N»¤ä˜zqMtÄèÈì:xŽb$•k°•¦瑉TÇ/ã:‚}åâd¼q4bD=ÁCtGâ;Þ»„ÞþUö‚=mË/'¼þ&‚“b„‘­2€~0·¡8fÇ}`£ô8FId_<|ˆÙFºjíÄW:ºGq.Bª€Âd(V4¤v›¡®8+…=W}åJä¹Pµ“9‹U|ÍX©+ÅŠÙÛ¾0â`©¶T"QâPHÄbv-8].uY¸ÔX¸ô`íSÜ©ýʬ×ç/ðvÉòñô¢');KÊ£ë¼üø:o{`‰®%­ËK’NÈ]³þÙgBi×·¼éËì)_›Êø›ÉæŸi¶ó^$û%ÕþÅ­Wm‹Vêu£³rÌè^¾¥Ý#é:ËþiÞ«Žsvoi;áø|Õ+ØW¥7ìõëÁj5Ÿ›tµî·Òá (ƒ*pk SnÖUûÊÞðøÝÎ:V‹ôa ¯»wË,M¡~ŒKíÔåñ%NgU²ÌVu Ö´>CuÞ::lÝÿh”n5Ÿ'•)À>«z—1| | ÷ÖÜöµ'fI[‚õçë¢ðN|èÏÎç;.0×Ë¿> zÓ|;‘HÇÀàÍÇ‚‡·' d3ÈåúóI–ºöv¦étcÜàÝŒˆé¦™®!b.ðœÇnD±=¿ØÞýŒŠ©EÀjbwݯß]û[öíûƒI½ûÿÃCq&endstream endobj 1410 0 obj << /Type /Page /Contents 1411 0 R /Resources 1409 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1409 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1414 0 obj << /Length 1318 /Filter /FlateDecode >> stream xÚíY[s£6~÷¯ é‹Ý‚„nx·û°mÒNfÚ¦ž¾lw2d›ƒ—K.Óé¯@Œ©7Ýñ‹s/“xòiv5º˜€a‹?PÉÃÔ†¿}}üdÁÈ6®F¶å¸ ÷¢c[Àu¡±!èèN4úuôK-Ç‚̦¤÷¥êÔr© ´êPXB¥æÀÓ±m{ªNÞÓé<¾(ÕÀ™€q÷Ù°§ª7Z&áI¦B-ë(áôª†º1N•yþR"u´kcyêeõÛ*Î}R5€KÂÍx~£sž9ïö¾@6e ¤p?º»ºÃ_ªº#:sÂyƒQ¶ëÎö>€÷"|"Ò#Í%>OÓ¥]\_¸žÊNfùöþ¸Ù5—^Öˆ6W1öæ9WR½ hEûäý’ÚJÕÓÓ¸XÝzAÿ¬Á³…]€jNØL“RžiœmåìY¯p§#å«äîé„ÏöÊw0\Ðû¶» Äš-ÅYÏ‹Íb­ªRU½<â9ß”/º¢LnÿP^˜§ÉJï «$í-#ÝÆÑ7Ü­Ÿª…ëuëÍBæ Õ²Žb¹ØEtLîxyŒåÙY§üj~ËsnÖ«î–ÔméõnµLtªë{Å餓ªg¨K{®Ž˜m9ÀqŽ¿9jz¯î¼ˆåR‡•Gt,æÇ Àˆ’J!Ql FËKÓËK®$–ÏÙÄ…ãBÝ|]MjËÀSlOËwÊ´”­ùâq’ÊNã*­Dž¼E{x\ðúþì^!ÃØendstream endobj 1413 0 obj << /Type /Page /Contents 1414 0 R /Resources 1412 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1399 0 R >> endobj 1412 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1417 0 obj << /Length 361 /Filter /FlateDecode >> stream xÚ¥R=OÃ0Üý+¬NöóìÄvœV  ªÄ€ÈV:´‰‹*µ ¤‰Jþ;&vPݘîîùùô¾¦9ºš … 3ÊA¾Á°VœIÁÎËáœqN#!´öÐÎv5å@ŽTaEA—ù'2 Cÿ!qé.ŠîrÄ]0ï=¥f2V{ôŽKÀ%‘3ŠÎ¦ßåK53øP¾pÝèP½IiÙn^@”ãU·_¯Jϯ=„—Ã=;´e–¶i¼œLþ~b#.·nžo+adÇÑï½¹­Êݸ ëʰD%2Ôl.D@褱m×TçåŒ/æ‡F>/l#ucçqüÿeœMÃ))7ü8vá®'Ѫ¯èÞV¶Yµ¶ô×TWsjé¬sÊ%é‹ôÀe&!K´W®/áÙ† IêÆ‹ûöxãéúäñ¶þ8½Újhÿ µkª˜endstream endobj 1416 0 obj << /Type /Page /Contents 1417 0 R /Resources 1415 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1418 0 R >> endobj 1415 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1421 0 obj << /Length 1368 /Filter /FlateDecode >> stream xÚµX[oâ8~çWDŒ´i¾ÄNÂŽFítèMbÚݲ‡ÙJ‘ a’@­ö¿¯Û!“íÒn‘šÛ9ßù|.ö±?[ýKD ×t)¿Œ§† ›B“ ˆŒqð­cAÔí!JÔ¹f«Ñ  3üé-W &>ÇþzÉ¢ÌËÂ8ê~ß¶†ã4ÿÁØ&Áþ²õ£õí;0‚0n[ÀÄ®CŒgþLèºÈX¶,„ÕâõÐú­Äéq ^铤-[)îˆÅÔ!4sòÐÉXšüMß7Âeÿ’ ÊÀ9<âè”’By…Yâ%2÷Ÿ/u^ £iœ,½†HÌâ88ŒÉy™X95MÐÖiéø›»Éyê‡aOGàÞK²Ð/3ȯT#±gå×è"‰Óô¡ê+!\„Ææå *\bÚSQõBºßï½þO Ã5-j‰y)ø])Öæ•š.¿Yû`3/IXt6¼…9‹7ïÅÛ‘—øsq‹ ²³_ÓÕ¢¯—ï!݇zÓÒ®9Ló!{ŸÂé…^\?JÏi+vŸnÚàgŸÔ‰u{ˆëÖü}B±íêê‚ÿ· lÈn¾øj^ÊzxFþbÈ!¶ 'õyÝá6ç:_A«Yµ:eA aLfÊõð~t1ɽùpqs3ù}8º{~ÖiÓû*G ˤ~Ç¢ œêœ’YØõùCNîjøeø8ü2ÖéºÍ¼š½ŠÀ¿PCðÃ.“ðˆ]* ¼Ÿü|àa$á—,›ÇAZ«¶b `»¦F¾~ÚªJÓÝ,£³¨Ï ›ôŠ/}M>"Z½²ºG‚íeÝ”dBlâP"a^0ÉoîTÀòÎ1Í‚Á N3þy)‘]š7„¿ê°£ØDa–ž ëja7^Æëô²h.NÅÆ Ž]Ì_Ãl^­êSÑ¡Žù[££Ô¿²p6?5Š#ý:XKÅÈ;yüD÷’ªU_¶ K¾lçv›˜¿tj¼*p¾]<¦U"p°®ú»†ø(C§ u£ƒ}Iý"tW¢)àãž³@]³,Ï%XU:,>1 ½*ªªÊˆ7XÂRüh)6èZSÿQ•ÔÍîò½A‹Ö ¾HÉ.•²u"{7 •”Sêߺo®®%o3¿ë  ˆ¨Çr!üðAö¶¹¾Â/t£#øˆV›o%B¿l7oUÛåf¼\ y¹¬ÊŠy™m•)».€¯òª«V›ŽŠ-î*/c³í~§{·ÖÎ^¦öI¬}Õ-<óìØ‰j‘#µym﷼Š=Ù…ä%[Û ”›ŒÒ/Ë¥ÎÊÙbÊ <ìåÕDLœí³4ñƒ09ëïçØFµßNã”ÿ‹Ê|¯Ä9ÀÄãןÃU€Ô1åûqì§_›Ž ±aCZ¶Ø•sº,[ Ž óÝZ~w]ÔYËsÄÛ.$ܟ∠$y¡æO§‘ünÚE¤'â¡r0™·‚âLòçvÆÊÓÈ )z½endstream endobj 1420 0 obj << /Type /Page /Contents 1421 0 R /Resources 1419 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1418 0 R >> endobj 1419 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1424 0 obj << /Length 1398 /Filter /FlateDecode >> stream xÚÍmSÛ6ø{~…/»íÈ FlÙVV¸ŽB\i²6ða]/ltGì,¶yÙnÿ}²%9ÆQhBË­É[/Ïû»†­Ý·Ø³¨M=ñN,Š,ß›`ÀÖ0ú´`ît1A[K³ßØìì†6;]0u·\p:Ÿ‡§­£a ,$þP"!¾M¬pÚú«õé3²¢²N[Èvh@¬;±@6PŠ­iËÅŽ^Ü´>¶~¯ðt¢nÓAÁ/Á–oSæ ö}É.ñ[¡­qr>â±§LI…Û×,ÍÓQ£¯‘k¿âÚ^ówtqô~(Ñ¿ë÷&¤:¾yÅG˜äq¶‡Œ,Ðæí8ŸÖØNÍ`>zlãÊÅ‹«€ˆ!VDîtƒâçòˆÚÄs±UÛg·Šî^=ìEœ³q4ŠÙ}&)\daý.€kûõs¥cïîšk]¤ÏŠRF¾ýcMDqÅáö¶TœQ~G]â“& ô#A{{Ф—(ßõJ>Ûƒy²4­2KÍ{ÞçÓKˆÛÁ$ ["ô°ãÖ)(ˆLQþÁˆP¨¦»_ªy—dµ¶M4H“F¡,ŽnŒšòVkªŶ`c¡«/XI„ŽÔÒÈðaÆR…d'IW% ?Pp:Qܲ9Ÿ<ÈwCå]¥ªÐ”š+ª![À¬¦ %ù¥öП>Š€ £ÿƒÍ“šNŒØ@a[r+øoD¾OÇiÚ3Ú¾"¿–9¼ÐŸáÔQ§Uñ^ò3#R·aÌõ!‰†T%p=(OAmo7²ñ¶¯<ø_Óa`Ú¤ B;™I× |¦k’ꮘN¼"×Õ Ñ2^ŠÞH”§Œ=)#uW'Ty{ÿi(ÝR˜d¥ÎÆåjðáD—«GÏß Mhu¿Ðtã†mŒ>^™\WóuS%žC‘!hdFfûWÕ±,ö«¦!̳Ԗ¯oyÌÓkÙí Šzò’Qá¾i3P‰+ኗ²RÝÓ¹Î@%Å$Íĉ îŸtZ‘Ð(]k¡zR2@°¬½Ô—Y·õÆ<_”Ȉ‰©²m{#vðz=bETèO´|Wª8dÉBÛ ˆÆÙ¸òž(µ“ÜñìzqÕÄR³g÷ãéL俳‡ÁCvÍÖ®RB\•ñŠícvÑPÛtj¤ä6(Ý)‡}Õnô‡uý.)£F\̇lgÑQWúÐ(E]6•‘)²Ö ÈËq¦ý:‡Ÿ¿Þ-\ý¤¯oÚ%“õ9¡¼fð¾‹á¿ñô{X*³ ñ #@Áÿ6¢ÏÐ ÌF°Ép€Ÿ58OŽGÔ¦ï½ìx$Pl¹ß`> k Hºï/;äz&øÖ´üïr^~†ÞhŒ^d O VMó¯ãgU€¯š«_‚d;à8_ÿ!¸†è@}·ölê;þ 6¸"2ˆÁŠv#’Ÿ®‹üZ<‡Š·r&§ ¢Ë‘ =‚z®/Wéoß“&[EÅ*e@É×Ëù> endobj 1422 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1427 0 obj << /Length 1358 /Filter /FlateDecode >> stream xÚÍX[oÛ6~÷¯<`°—X&%Q¢¼&(º9Yƒ¦ÉZ'ë C±è„¨%zºä²¡ÿ}”H*¶L¹rÒH¼}çÂs>ñͤ3<²\Ã7}—?&sÆçBYÐ2&á§žþÀr]lõþ ËÓßxÞø>ˆ– "¿³Y‘8 2ÊâþçÉIg<é@ð,ñg"Û…Æ,êüÓùôa'`Ú>FÆoú¾eDDzUcÑùØù³Âp Á*Ò›Budžé{*Õ-n‰'4‡×ÜÃôXÚ¸üùê•xvÅcIÿ% ïQ¦£µQ5yI£õŽ4 G#‡‹_ [¹rßt\I¡H µÃ®^IFg 2yX’ôo€¹ÍöYñõ¸ž\¤3J§,ÏÖµâËõë°\··çÑôš±pJnùn¥úé~€>ý«nÔÚ^(×p“K]¸YA,^ó¥xq(^®‰T<&÷™R«£¶$pH$#Û µm9Y8ˆJ¿±Œ‰  Frt84[þxû~"d~¼x7Ñ⺷šµ=ÒÆmµ÷l®X:cyƒCyù@“ ›‘4%áʆHÙËà±?»‘{0˳Ô¯G4¦é Íî.Ybc1Kït_×ë±ä–Q©NB‚pz$”åéK¢ +©”ÌÒŒËÌýYº«Ì.-63þÓZ {µÝDÇnXÖ•Þ–æpý•i¼Ì³üè8U|Šé!™-‚„¨¤[ÁUpI‘ë-˜ ö’èG£·gÓcËìx2³ /w_§É,¤ÉëaFÒ¬\q)¶Âfì—šS–òq#­9*¶™§dZ"Ló˜ŠÒ¥VEïht<¾Ü×õŸžŠÞf‰Þv—1å‰hl8`ÎäÈ]B3_×ò±Ê"ƒ×RI§nåm^º{ÃËlÝÇb^ƒÉþÎ,6¾+{wvv®C-ö¥D¥JcA<@«ϼ5{+c‹¹ðs{®1€¼(pp¹ä—rÈ7‘ëXÆJ?§r!ï`=,Í’ŠsE°gá·GŸ äPâšZ*»ïnè‚T±ªSã1œ¶pR‡pÁÞžÞŽ:ÏX~¥„ñúB?ÉÉüq.ø£Š¿•˜yŸGW*z[Ÿ ˆç „Îæ±@Õ!ð“‘;gpXzz—r•õB¼ºí̆ðÚqÞºÞA~­)YDJ¼aùB&æQÃ_bvë \ ¡JC‹”'œ´¥TsU=T•Ž2Pç4Ïé_¼è”_3„Õ´ù/XººUÏ›X7"²–ƒÃˆµ?/[ ×TPKšé.§ín«Œr¿Q¼¯såÊ&WT~L.w:K]U¹¯š_¹P–‘ÐíÔ/r X+q¸LHÊ?“šõ=_ÖjåB/}ˆgZiž’Ö"^´²wõV² hr¡Ò¢øŠ©Èü Þ8º›߯û-%›{œ±JíšË¢H‡ê…Z†lQbT‰¼©­¾¬hTÙƒkàíy³Ô§…gï°óÛ™B‡Î“sÑ&jmù÷!‰v¡ç¡z„ÌX|K’íQ¢r_2(¼§þAá¿dP`ð㆒»¿JüE*™m™¶"slíLæœã´Hö3‰z×C ;»ðéqK>Ũmêïž:Ø}bê`ïù©ƒñ‹¦Žÿ㥎žÈ§µ[^ LÚöó/yW€ÞÈëi×ô=w¼¶e›Ø‡¶áA“Ê»¥ ¼$ŵF(î£Y,ž“¾oõryI}Ò‡ˆ#H< !0*.Š– %Þæ} õŠOý¢±rë}õ .¼ï®IuÕý?ñ™Ü­endstream endobj 1426 0 obj << /Type /Page /Contents 1427 0 R /Resources 1425 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1418 0 R >> endobj 1425 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1430 0 obj << /Length 1260 /Filter /FlateDecode >> stream xÚÍYoOã6~ßOQõÅÔJ4µ8iº;tâÖã@Ç`GaÒn'”K\ÎSwq t§}÷Ù±ÚÔ-¨¼pÛÏïÿóKÒƒQ£÷ùÍÐ }1ŒÆÍ4:AÔ%_Ú:uºƒvAxñ‘LOÞ;qìЬÓu! ½¶qçëè¸15`ˆX‚àÀÁ®›qÚø»ñå+h& ÐOqâSØßšO‡ufb3¡l¬-šg±UZøLÎ=Ü’s0s2h~aÒTDio9ŠÂ¬½•ÚX›‡>±z~ w—E€¼×W¿3¢]¶KôÔv‰^ ]¢¶K÷¶KnóV‚\´S¹ÿó[ r½Mo%.®ÞJl«¾^­ÊkB¢Lë3­ÑýµylÍÈ]aB+­²8!R*ìôõæˆÇ”^Q­ÀþþÇDæ»`iЫ¥÷âªWUaª¾¦èx߉Éåèf~IJšùgÉø(3Õ©äEN"]½$ÏY^o^4“±§,‹&[ÖƒÚ‚^ÏyäßÙç£_G ûóðüâÓÈŠ‹4n½¨ðRVXk¤ 47O ,&œ“ÄQó4£ü»˜ng«vÙƒçYïbuä†Q“’jõô>gœŸ“XºY²K)›-†æ'ý¨R²±Ýß@"^PÅBíJH<©"lJf9+¢‚\Ï—»“P'YÙšDEd•Ù¯É\ódô¨÷EÏ‹fê£Ó«åW~S{Ò{­w<š¿ëÉ"9:5;RëÖ^é]ÊÓ—ûí ›4ÈŽìº%Â}s´uõø¾_Ø%ÂÍAb¢Äs5Y1Ìòû”¢Ùuí —³”,U‚M> endobj 1428 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1433 0 obj << /Length 1441 /Filter /FlateDecode >> stream xÚÍX[oÛ6~÷¯R$eI¦oÛR,A"R"¿sá¹ñ¼wN^ãÀc€ò1¾öôŠöƳ=ý!‚÷¾ç·?¼’ {gñòvÁõäÛlºZòTÄ"ÉÒþ§ñyçlÜA”¿¨Ä£! $@ÞtÙù£óñôfèw ,¢Þ½œ@€ÃÞ²ãcb'‹Î‡ÎÎP ëH/ë{!`!D–u,% 5ç˜Fý!ö’Tô‡L³U*Ná7ŠK ;dÀ|j–3³|š¥…Ù0ËVWJL5~( œê?pbpja!ìBû€pˆ€‰ï†Âû Hʧ Ÿº±ˆÁjð<ßPDnßp#гj¸E#Ôl,Íq4úާgwÒúʵÊóÂÀ"i\~TnùºüÄ |ìÕÞó;Ñà6.¦I2IRóx6Iùƒ˜p…ü+¤Pþ9†I(Š¢[aë~žXqÔF=ªH)=úÓ)\ØR¿²ÔÁÀ­‚Ȭ:9ÑX«ÂPŒõã.Î.õ$»6ßò«Däqn^Oó¬(ô°àÓÒuÍÞÅŠN²Ì2w½–L3ªÇÏõÁƒd å²0ÚeÓ©Üoh¨Hã,a1¢2`¼íÌQýÌK5‰±dD!-¶eK)\LÊÑÄhi-úCñlÃð×vÒ–åýe,baÏl6ñÚ$Gj}múO£MúµIÔfp¤6ñçÑfø4ÚŒ¶iÓ­v¤rÈgQNŸD9ª”ãújÝZC©Q`¨˜ÛJr52P•&3¢1"ÊÚ’‘*ð¶KÝÄOO·ÅßšœƒujÞ"¯1|1wIÑ£h‘Ch!à.•4c!âé\Å<)v§E‘ٕܦt[t´ Ù.“þðÅ3¬‘Ún}Qì>O߄ˊíûY[êÙÌX<¹™ g¢gÐlRõX« “»qçÁúÈ´÷+&̱•î )0;¨+ EB¬W¡ÁZs…ãJÍLE…Jã)ù«¢Èá§Å ñÁÈo1ˆg¥õk‹Gp»*æ“«xú»zUel=5Fv }ìêñ’w?5¡ÎË èï”¶”¥ »ÐãÔIÂ]—³}¾ü%†§§è ôËlúÍŒ<7é»[zÀ/‰˜¿RNðAûÀH|—gS^Iz£çúZP/VË+nE· Y³Ø6Ò‘åI×É›-°õ…±Ôq&iI×*ÚI$j)Äl4âéláV³M¾ú¶’­Äq×>y51ûJînóDßk$À63$pWê#;ß’VÀ™.xlbèêÖÄ kk7Üš¼lí«Zžñ|´ÖíN/ñbÏ6{‰s š¯''àÀŸwïß\Œ5Í÷g~z;vâÚ>ÅaÖ®¿Ýjcç³]FÝD«)¸zò:I“bÎg µ§ Èô*§–dõázkÜý.K Çê’ÝMYdI:+„ü¾Ô+¿2÷Øb‹„·Ç‚Hujk­\~]]ÙïÍó·•­lïóLZ› Øo6"Þ\Nª^D£Ÿ ¤ê ^ˆº¨@:^÷Y)l’ò_ºÕ mI0ãÓEœÛ+šI9LlÛàá:Ë­‰¨"c5ŠlY/g 'ùà 9u Ù·%ÝqÐñ.vöó™u±·——G5 bÿÇÁð?è0ɪÅDÆÁ@+Á©lK™ärÛ§É¿KÏÅ>iþ%ØoiƾV/;’•"äß·²k@/M>,$‘êdKÑAÄñB/M±*Íç±P_uÝU"PÏqŸáÞÊ´âÏûˆöVæ ÕDGŽüPÏ0TÑR®û˜öTxP“ZoÿêѶõoxÕÐÿ Švendstream endobj 1432 0 obj << /Type /Page /Contents 1433 0 R /Resources 1431 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1418 0 R >> endobj 1431 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1436 0 obj << /Length 1411 /Filter /FlateDecode >> stream xÚÍXioÛ6þî_¡zÀf¯‘LJ¢¯ Š´n— 9æ8Ù‡®0™v„Ú¢'É90ä¿§-Ë”í¬¶ %RïÁ—Ï{ñxÐè|°=#´Bƒ±Ã÷ …lhƒÑç„´Û¦@«Àyñ+žŸ½³âØJÒ¶é@;t[.ôÛ_§Þ  @!g‚| 94âYãÏÆç/À5€qÚ–Èx /À‚ah³†k;êeÚ¸jü¶äcRFf™Ó1ÓÙ†o…>€J_›ªï uµMäÐJÆmÓ£ã|_˜GqFò|˜ã¸HHÊf鬙¤oÅXšú‹m•êf†–ë¹HÊôè"[%¹$|#Æ&3YG£wLÈ•ÑkIzM“‘xáJ˜R‰WÍu.y1êvq:šþ¢îË ?kW¹åq’ É¢XçM-£çêf ¹u:Rï)ŽRñ¸˜‹1Jåž&XÊJñc¡¤á´Ð2†’ñOq·ëæØk{J¤GG;ÈŠXPg(Ç•«ŽµçÏeÿä| dö{WןZ¾HòÝÀFFqñ{RÜ•±!–æ‰qžciÈ ’˜,ÒÊ16KöÍ-ñò!I“ü¬ÁÉñÄWz#ùÚÙ@Üg¶µaqwââH^й™XýQ $çn¥cnq6,JÚž SÐS®5W8'S‰¦â.’sw‘<Š˜dÙb^(¢1ÉfÑê˜òt?Õªé•&ºe[.ó˜Ùíž\ ?â´Ç]€ xL¸šoó,%ÙÛÎ2ÀÞDYB¹Å7Ò<à&LHNÿ1 ¨=8×Ù%Ž:?—ÇÄœGçYç-–k˜»£ç¸Ø°õ"MŠ\K­|€îØZäxȉ†ü{¦‘ —z_³Ùn÷cïæ@7v¶<U½;r獵ùÓÅÅ¥–«/¹&ʜ ^‰`ãsîGQÕÑ„’æ–©t‘¯b”y¨ÈXKŠ@]1÷üÑFší‘Á:¡Çx¢‚2řԂ8ÑÒì[hâ|Ï0!­*Ü€“üÌ—B y®m”æiZX3&âˆS4= yäTÙ_hbBH¹ T4r¶z=ªzÊ€¨˜“{œÉ°”‘™6Q¿8PßϧQ,ƒWóáŽ2YÊ”ª Þç¦V TQãfš¶ í5fäk¹²*ŒµR–6Û̵Ïòqšã’V2‹è•ó¶›Pù×sŒ×}bGM†‚e¸¢]b`1uE? «¯_ 7×bÓò+mjgùO–z—"Ÿ'éD¼—‚òùbv«@¡Ïó:ÁTwè›ùŸÅ_þðƒ–#/ƒ9Ò‡)—»,wuBìªížê9Ò{™ž+I¾w9é!ÉxŸrÒó”âûV’Þªä®@¿Üt°ƒ³ŒdÃâiŽ×;‹ÃõÜFsuï1ÆsÞtODªxOSÅ^hõ‚ZWYF¯yXÙ“óËk™{ýþE¿«EÐjO3 èhRÙÖ~HñÁ¿tì>|Á±ûöKÝwö9öÒH¶bP1hÇaúîÿá„”ÿT qD·¬§ðêl£ß¥ÿbÁ¶6×·õvAµe˜g˺,/¢b!MMÆ5­ì[tLUùS>üêlzþ+u§°Õên a^É)J÷Í„> endobj 1434 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1440 0 obj << /Length 1328 /Filter /FlateDecode >> stream xÚÍXiSÛFþî_¡ÐiÇ.Xì©Ã ™ ©CaB àiÆc¬ÅVkK®%sL§ÿ½{ʲX »”IaiW»Ï{ì{<ìa¯±ÿyNè†ônœ8¾]Š rzÑ—&A«®]­›®:V­²ÚIÜ$9B9‹D(,Íãdij]H‹SIuS»×Ö¨QÕ¦¡0ªþÐÀ…1î†?Ý«îÇž‚ýpvvnE%56ι2I~ìJ˜ôŽÒÅõD;òn”ýâÙ7z«g^¸X /fï9mÈ+% ä–å§Ð¥ANižÝjEVóÑ5£Ÿ°û¼/Hx{éÌ6„ŠÂ ¢–Éö»qlÌYS!J–µEžÁ”¾Ûݵ» Ô«L4"S—eXc ½I8yÅnÀ]Fu‰ß]j®F(¬”‘ P×CáFþ.÷ÆÚmRÞ¤0ªh—Z¡í´#í&Xt„ˆË[^§ ¬Q#H* "­ ?Âöí_îl‘û׃áb†7gB½µiñÆHâˆÖãmpÐzjbí¦®Ê­ß#pp7Š[È“Òd³W«^¿Öõ©Â:jú|žY–¥°T²?.¦×¦g쬂•â°*Ÿg?¿²`½Å´ï﬈҅2Éû‰”kühT…ÈòÌ’hbwp¨Rt¡G­ûÐû¤v²gµîë2yô·õ+²ÎâJN˜ie‹Y…㌘Ö^ÔÅRÿ²›Ø„åì kMšò«–¿yóÄ6Óìû[·¸ó‹cÓâ.º—Ÿ>ô¬¸†a=ç¦ßË0gQ]8¯â”©«ïã$ÎÆ,r+û룅j•Õ?Xga•ç‹Nø\šO0ª©W˜Õ’°sî¨ùSÑQïôó÷E–ò˜ò³“mèw=5\Ϲ ¦ß”cï mC±ÿ¬[±Fþ/Éÿù#¦†ïî*'X]@ !yT‚V“õ…:-áùŠ xÙNKHUH}­#ë©Ì+)x8O³¬Ÿ±¡¸o)$ot(<Á<Ïæn‘KÜåïö¥‚†ÛÁÄÔP)»­e¿Úª†¿®«“`¥snÌ/Hh›¥à…Ø…[°Šþ ¸Ž Pò2l€Òul`5¿= ^‰ Tîþ ÄøùW% C}I깡qÓˆvƒbLJ.$¼H ½xùfâÒ.R·¢i¢ž½Vˆš }UzÒ‚´¹Ð_¨z@Ú¡ #²CŒÿ¤‰·›¢MÑTÅ t÷zý`®]ïF¬¸pýç„]endstream endobj 1439 0 obj << /Type /Page /Contents 1440 0 R /Resources 1438 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1437 0 R >> endobj 1438 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1443 0 obj << /Length 1512 /Filter /FlateDecode >> stream xÚÕY[oÛ6~÷¯02`K††¯’Ü.XÒÛR X·ºËC[ŠDÛBeI“ä$E±ÿ>R$eI¦•[ûˆ(ŠçãùÎ'Ìéttô ±±|&ÓùØwÆ.ƒ€"ˆÆÓèã>„âƒCDýŠ—Õ<ûü¬âEPÅY ÂÄ©øêRèîè|ž¾½œŽàØ?°F£. ˜Áq¸ý;úøÙG#güfäì{t|%^}W#‚°yIFïG58‡è°tª‡`ÂÑ "nGqè8š u^QÔâ/öA.À¥5ʇ’2ñ6¨ª_J5æ×Á*Oøìå%O«÷<á¡„Tß‚$KjxWË®À‡2NJ‡¬Ð`U&µû }J•öá’‡_”z¬­¦ÀcB7§^Us²è®úäPG-BNk¦r™^“ Œ/,ˆ ¢*ãÆŒÂÀHLœäyòU@‚Kã¨aÙ5‘`¬žKÞZZÖf8ôð„]kÄFÒøQø._kô—Jº‡YZqê‘/³ÊìžÍõÜT1{µ àaB4çc‹Q .b¸±ŠB{ÍÿѰAYnèÕ”0"€2Ç5œ`-ÙÅØ° µ¸ Ù–¼ìlã2W¸Ò&|! ªð…&¶|@QsHaõljÉž$n$·¿‘.ê"( žþ>Oƒ,²Ë'&‰t¾®„vA~hòmïÎz†ÑaªR±ª|ë§À6’ÛEú.Ù¡vÝ‘Û*x]îŸ$õóX»m8Ú»tl†ñw8øN!ßĶ ‡:ÊŠÓ0YGäY—Õ±m9¶MÆ^m÷£³?g¯yZ›,÷lÒtXú¤ ãø]PTq˜ðrÀ¸a{wXôï ]ìÜÖ³Mö|ñyœjد–YTštœ%":¸ž]—\O_|5ÎËM4Û •c¥pV¾Î²h€:‚V9K¡³‹#Û¤®}Y–¨‘`×Gë¦4L&Æ)5$X y˜‰f‡x5Ò¯õ'_œŽ[óü²ÒU²¬¢É$›—UÁƒÕÏ:#Jyú>U ¤8Hô I_Ã2–uO²Uï7(ë"©»²=]Õó·ÖŠ03Çu›‡ =ÖåAwó@„ÛM? în ä‘P°U1Œ[µI ßqZ«ñ7›ˆN¬|}‘ÄáĶB„,v¨yÚœÔLÃì‰9Ð5›t½ÚÐR£‰.®3AyƒiŒ"×=YÍêsq&¤7+,Pßþ³©Í´Ú—Y¬ks–«sX‚Ii›§Í™U#ŠFNôëÌßålÔvv¾¥–r]·èùaW;”HÍûåë¬|£¬æ›. Ï„’M+ºÕüæE­[Ýñ%/*~ÝmR›Åç6•pO¥Ü„o·Y Ê/󬨦Ü2èiT-ºHú1Ñsg»³‘Û#e8 ¨Þs;ê1æ)­Mâß&£“×+Èh ¬6ãA¸ìn`ÜY\§«.#š˜Ä|¡¾ÕͶ¨ÐG·¦„ó \]®M9“"¦Ô bj­žª[–þäPJÅ«â âæ/Í8‰ º)tê_½ÈØk"©~@(Q<JBê1DÉ]bH„Úç†Óí¢ˆRk @ÞG”uâèùFôæ8¢îPÙêߦ4G¼ …Ú½<3ç{—gnÊçë2ƒß¿.·Ùßµ6³Û%X¯@oíx¿Ìb? ³Ø2«EkGrõ.ù=`ˆñÃïø[@抟ßÅž¹á‡—Õ E/*»Uy¯ ÿ=![ùœøhÍÕË›H÷×ú UH'Ô™ÈSE¾!GÞÉÑüÑ}bòE_õÉ¡Ìù|‘]]¨ê,éÿß`Šƒendstream endobj 1442 0 obj << /Type /Page /Contents 1443 0 R /Resources 1441 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1437 0 R >> endobj 1441 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F62 788 0 R /F20 6 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1446 0 obj << /Length 1417 /Filter /FlateDecode >> stream xÚµXmoÛ6þî_!øÃ`‘£^é¶C—4ë¬K†ˇ¶0‰N„Ù’+ÉIŒ¢ÿ}¤HÚ’L+ÎË$¤HÞñ¹ãsÇ—“Iïø7ìÄ"+&3ƒ Ã÷Àr1`c8 MìyüN—ŸNÙ‡‹gáb9§âãC­4-Ã2ÉÒá×ÉyïlÒ±_¨ô¹¾åÚÑ¢÷­÷ù+2â2Î{ȲIà÷ìY@6=ÛêcÞû»÷×FÉ™uM'º‹ ß">3K|Üs‡&ŒÐ`iþ² ó2‰æ´˜f«ò rQeÌhÓ"¢i¦eÁZÁbuÞËëGÜ6·I,Çs\¡ÓS:/ó$-?4¤ÑB*þ÷F'îM?`Ò?tÁÐtªÓtøÇÇCÓce2常:É áâ¶,š6Ú£ØGB~™'waIGº!À–’Ï]”ñh”eNÃ…úI•m:›|,E™?˜u¸Kï¦éj¡•°…ÊÚNG×H„D4‹BT+ÿŸfiQ^‰†ï¹@Y¾ºž'‘Îð¤ãjúøR ¹½ÞÈŠ#¹6Üh^a¶Š _{QÕ<·Õ™ÛqG5OmGhT}×­k€%ö»,‰¥ò%ÍÃ2ˇ·J%ß?ÒôR†B¥‘-—8¾a F'¨ôþ\õËõ0jíËTÕ@²h‚³%›{·PyËr«­­·e¬#C§r§÷ömm™XÎu„ Üý‚ý_E))t]EWU½ å2]S*›fÙ*Õª‹²Z<¹Ìý¦êÚÊ>¬'Áò”ŹõZ þ¾ô¨ô¢2GNËU.±†ó¹ †0gÀ |Ð’¿§¢Œ3Q–·‰rËZ*ËÈ$½‘ý›qT¥œ,^EÕ¾P}ßѼ¤’«³Öà+$Ò‚¤¹4J­HXü»A1Ëò]“kBÊ-aÙÀ¸‹… &}Û‘mc¥»1«ë™ÒIrÎÝ0ª(¢Ü;¨UÜQ„¥@X!`^›Ò0ºmN°Ù6“´¶kJêóšÞˆ¾}{&±µûð^…lÁÄilÁ*›´ÿ·cÿ%ž®±+¤’Å‚Æ ÛRåît›Ìcf‡NMðuª-fô7LÚ¨~ •H•˜Ô38=…Dͳ—2ê0‚Îs 0‰ánPét+û8•Ù\äh[ÝCtíLªUâ½v–¦*‹>9=ò_??×íjŽtX¤µ2õÎ”Ï 1@ÿGŒÁ b¬}¿y<Ì^ÿÚ€_toè 6pžsp;®NÞ£w'ÿÙ—'€à©·'Òq}v]×µB뺲·4è VW åј²;X¾‰n¥u©BÏÜt³nf渕Mâ° ëgD*Ü'åív¨’Ý‚DÅ[ÄôÓúrÍR_¨r¤äïøbÊnBgÜÏ*?EI"Ï$ý÷EÅIþþ¸¤E9¾P#­ÊÎþQµÌIV°é^Æb÷0Ïe˜FtOÊ¥[€ÓÚAz™³“Gĺ¹=9÷¸ø˜eqÍ̤˜Þ°Á0=n÷,I%ž"[(¨«²¾æŒðÚ½ R›Y=6²b›ÁúÜÓÕÚŒK~ƒevZlŠ~÷}0éR;õãC&°Q×vçöAÀÆÝÖ?gÿœý9jÿ¸¸¸ÔjUa»‰÷$b·×òÒƒ°ÛÃYî©¥Ø'׊ªMHñ±l/´Hà{ûžpýiÞɉß5ÃÑâ™cšÒ‡R Q)KÀ1Y.´\‚,÷õ`EÙrýFó¦ Ëf~{ù“fMщ|Œõ,âÛÑ´±mlà šƒbæp†ñ„É__yFàådHð`%ŸdχàV²Ç¸#_|aÄ÷d^› ±;àG2þQ{ãå‡Gñ¼û°¾¡›‡ÝÿÕ¼¿Çendstream endobj 1445 0 obj << /Type /Page /Contents 1446 0 R /Resources 1444 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1437 0 R >> endobj 1444 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1449 0 obj << /Length 1555 /Filter /FlateDecode >> stream xÚÍYís›6ÿî¿‚m·½ „ÛæC»dk®ëe·}èz>‚嘛 pšÜnÿû$ËÂ/ë-ks=BÏËïy~á—“ÁÙ%ò- ¨Ï/“¹E‹ø`‘5™½B ;²v†%+ÊŸXöó«×%ËÃ2NE Nø,Á =G&Wƒ‹ÉZÿƒ•4Lv}hE«ÁÇÁûŽ58ÖÕÀ. °õ‰ß8RЬÕÀC®ºYn¿4rl.ÈîJz) ÇÈ"€*Ã÷ƒH»]d»Žã ?-â%Ù>þá`§±û²yëÑ_Âx®Í¦Àó=,¥‘=>Gé:)ONžß Ô[s]Q½î[ì¼xuE9ù¼4åùóúúõužF¬(âä®~pqÏùÎÛõê–åò½Íeµ&£y”‡Èõº*ä’²¨ß%rìs&”O“J¯p«2ß Äst%•{,™-˜yPbvv¶a5N%ŽÐ‘0‹t½œÕã[Ír!˰(•ÅÌ ‡öDˆ‡GézúyîSÈ;2@XBÆî£4{¬—¼h›×øý0Ó»4M+sÅãZl ö&zœ‰$à³''Ü׎¬ÂlI _WéUÄ«LÕX09Ååäá²¾™Åó9Ë›x~  £|*å§…–dØ —ð¸'b›BfõU8k”¸;‚úÊÆÚwQ¶»Ps*ùV´10‹‚»èËõmù‹zFûÈ»ˆg¦.üäV= ²Y‡ÜˆúÀ Osï"7õO‰FœLô¯‰³EZòŽvç6¢±N²k‹Zו(Ùgä"âÐh—*:[_ƒŒÆ°éò Sôø¨‡Òÿ›/¨ú¸úò9°—/*Žm&#¸®žÉº (Ÿ"ïpIÜ[‘³­uÛ}»ÝF7<Ü8$h?³p¡ë~þ¯,A/å¯C¼–ü‘è¿2‰'HÑ’‹ˆSÄu2¢h¸fõÍÕâáZÎàúñ;cñEWÜñСz4!< 'nªÄ¬‡bS×Ò‡Ç;–(÷ÿˆÙÐ)endstream endobj 1448 0 obj << /Type /Page /Contents 1449 0 R /Resources 1447 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1437 0 R >> endobj 1447 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1452 0 obj << /Length 1497 /Filter /FlateDecode >> stream xÚÍY[“Ú6~çW¸yè@Ým“4i7m2½¤ Ó—4ÃxA,nÁv|!a:ýï•,ÉØB°MÛ}°-KGŸÎ9ß9ßâçÓÁãˆy‘1q™.½xƒ>EyÓÅÛ!Ah4FŒ…hø=ÏüFa„êQ2cÀ°àU]¤£1÷UQó'ÎÙTMøÛù’9Gµä:ËÖê®L¤³^V¼@¿ Ô`ãÍÉä;ž^m…óK0`~„óÆPø†„Á¯šW‘O^gœo«GÚ~µ˜L²²*x¼ùR e¥ºŠý`³~ CæS l¨æýå~FùG• ù4Ä‘ÄBÔK„g-v =Ñ1gD-†Òcû„ù4~f,Ì®ùM’Ê—2ƒ¹fðt±ï:«¤NC„xþç,IKy¼B.é"m´MU'¡“f0°brfxõÜ46äuK‡-%¨õé°j_\ë\+øû:)’ôƉ1´0V«XCâñ|ÕßUÃU´\î’†½,_HÐo:p ¾HæòѵµÍÝ8mù2^'r'UæÂC|Ñ+P2If‰v`Rš­³m²03»Žr@AÀ‚bjž¿2e"^ð¢OÖEflš=ˬ°Â™å¼PM§yÜd… T\&ë `$²`À hlNf9ï9w9ï9w9?‹Èi"›B¾Ç¬ã¿wÂó–÷EôÑÀ:‹FÃ}rþ>:,H„…„!±NˆO êò”ÞO¥MÙ½VÚ48¦´íL~äJ]=x™r¦¡s4ºD93pB93èEÇ•3¹›rFwWΖÀ`øD`ä³(g—ezä÷‘VŲ2[áÿ°JLËSÁ+JQ§Ðeì6YÞ©¾ŸàVUςϥêyÙÑÐ¥û¸á]t½;úÍ ëàg:ëq¸ý/CÜÿ‡ÁúÜCŒïþµ¥cè¹þN$àP~lÁûa±@’€5Ç]Zþ.(? IÈët¡a­¿½A:¬õª.N(˜Hy'Ÿ¿·Ë»åÑ¡ìùò¡óùIªEõåéãߜþ9òý«endstream endobj 1451 0 obj << /Type /Page /Contents 1452 0 R /Resources 1450 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1437 0 R >> endobj 1450 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1455 0 obj << /Length 1637 /Filter /FlateDecode >> stream xÚÍY[oÛ6~÷¯ðò°ÙKÍò"J”×X¶vK,ma(6 µ-U’ÝCÿûHñ"‰¦oM A J"¿sùÎ9”¯nzO_â°ƒ8—›y?†ý(D€b„û7³·„"æpPñ²úƒçþz]ñ"©Òl ¦S®ÅÛˆ¢h`2|óª÷⦇úPü¡Z%!êOW½½·ïaÖƒýW=HÌhÿ“¸Å1î¯zB‚¹YöÞôþ²rFBШ-éJ§¸8‚ÈÇBHáÆ”`ÄêQ ‚0 ú)Ž„pPV³ñx™–Õ³Z¥ñøw¾þ›ÿ\/C!4†A„΀ի¬_ bõ[ÏŸG¡™,—[!!òò§zæ… ¦¬1̳B­|)T£Ì‹-_Wãñ¶Æ4Ik“›ù[uùY]ø¶=×óŠd}Ï¥8ñÀ¿O׿î'¯=„oÖÈïŽÊäëY#±ž{y¹µj 5úÇ»W0Ñ k(oÊÅä.™~¨mp¶é·fû¬Mµµ¿x1…Þ§‘^óô©Ògž.—ÚÉê"#G²¹õ¾™»Nô°¬’Š«ažH…—¼T·’5òZ-¸1¸p÷5¾{PׂܤEº¾÷bdÆj‘hH<™.º»j8‚´åü!5 ìæ×åK úM nÁgéTÞú¶ŽõÖ»ë„|ùÄk àÞkƒ´Dź3ØWï[ÜšÚÄE‚˜„¡ƒÁB#Òáa¾ËC;ó\&2¬™˜{˜¸Gª‹ùI\dDs1»Êk6|D1 ±}Îhû"o¶mFÏxioØ{‚Ïóíq‚€±ÀQ08D{F½OC‡R¹ _åÐ;_dU¶>Hc—šw;¤{]‹RwÓB†Všxq™t”émŸ=S× /˜†‹îü:–êדõfuÇ =ŽØ±³®&¬¶=¼fm^ :Md’¢Ofį\‘f Nç€WJ ”×Ò›ÊærEVÊ5{ù#ïSS» ^m ãýbÃý2ˆšàÁ8ð>¥ºdYSOf·{s“âNÀìáŽànt¸#Œù¤åÖl^VOVßërV¶è«Ò§h»dÄÁÈ.± XKn“ÛN¶„~‹¹UmSjºMÆUÖØËáìíGÊ®I¼S_ùÚ3QÌq&J_¡Vú3›²|ku+<¶ ݫ槴ZtZ‘š¶ñD-€õ@ˆj—]»µ#:1&le@‹1]­Ds`Kþ*oŠ²Û ‰GÆqÂøÀ {ì†ÿOv#®Ýf¼œŠ|“œm;‰;Î1XðŸv,åäh“B =¡I)'_Ý—îíK®ËÛ«¬T¹[e=B;½cðC!qnDˆÆ‘Ä"Vc¯³—ß LOrKóÁ’I`¼gÙÅ/H¿“ «á"ÑSï8_†lL¬ujÿø1Åÿ0p5p놀(Zøt'ˆ@‘ÄhÛ.9º§c!€QDœ½‘ÞÛ$Œël¦s›nT¶=×9¬Ú£óè¹ù>b>¬t@0ÂS´’ÚÓ{Ë’:a²âÐheâßR+‘€"Ä¢." wµÒUéD02:]^¶µ:RÀ°È1‡{9táߌ˜U_uìVøNM®MÝì@L°ñ"4Dõ¿ ½O£ Ûé"§‹t9+ü6fÓ’²«óÆf)+ø1i Ç'§)zNt‹ “ ü ª¶é =ÊË„Vëe:¦Çèêí=5lã¶vÜXì„-Á\K Oæ9ãƒâIx»ÉćÖ÷ÕQЮÉ*-ÀG’ Lz0LZ%xç43ÍòïRj–žÝCB ÓË º°ìiÝ6=5®n+cßeEz_,ßýÕˆA Z#òøZ‚®ô]Â/‘È~ú7#P x%¦‘và3õ{—lêäõfãÁ†«›WCDý†ª ¢c ÇA¤î0”}¦͇˜¤UåMm~5”Í¥¼þ–}~¸W)Oªÿ/ø Rendstream endobj 1454 0 obj << /Type /Page /Contents 1455 0 R /Resources 1453 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1456 0 R >> endobj 1453 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1459 0 obj << /Length 844 /Filter /FlateDecode >> stream xÚ­V[OÛ0~ϯÈxj1¾ç2à¡Û@Úôj<ªBã–h!é’t€&þûìØIÓ*¨R}‰Ïw¾Ï>>>㉵ÿs;—ÍdnÐö8 #lOâóÅÔq1ç>}Ëoå€ÁÑñ]t³L…|Êg«‘UQ•ä™s99µŽ'²¡ü¡y€ŽìÙõÛ:¿„vlAûÔ‚€>³oåؾ±(&Í µ~Xß[W¹]¤±¢Î°íÀƒ¨¡Ž¥O3'Äs\„9„£¼t\ÕèvçZ­ÿôìd0‰÷®¢b–Çb¯”‚V¥œDÆHI“\ÜPN™ñáK”v°J½Q`J±í")”úµÁûúž‘Ý™Ÿ-•#÷h/¦I¬0ÖŽ[Ö].b@ÌIOðF|®“4Ö”Ì~ü?' ßvÚƒàSVqŠ,N?le$­ÄrýÃСR츞ÿäW28KÍþ¾fRˆjUdº¥©îÄ¢œIvQV•ƒ ¬r+Œ]®Ûê:1¡|u¯ÛeždU’-Ì÷v1”Îtç(*q§ûù¼·êl ï‘YFE•ÌRc5ÈQù«õ?Ï‹žâM£®þ•¨Ú :DÈ3„¶\g=qÒÀ?ò"܈Ü'§ïÚ7®“y'‚{± ÀñgŲ eépªo†óº÷×Ä1”‰Í÷xVÐÄq»ñkbuºÃ/"ûY{Ãæ,¦I%ЍjLä& iV8ˆ+ðõF}ðë4ºGÍåô€ýÞåTʵ߆o9½‹$SæFTç\àà™1y‹ñÀZé»Ãþ™q XéSz^&‡{€x˜öhÇr$ÆKÅÐFÌîn+§%}öŒ÷ogØoL×[…Àòžuô’¢yÏ ™žÖ1™w˜7S@ä;Ú#àmÍÐÌß–¡™¼ŒÖ_]Š;¬¹½'åÙ8/u±Ò7æ’*ÚuÓ_›J7SZšçËAdpºAU¬Äà†s¬< ÔO¾,”!¯/Ÿ:@cSøqY.ɽ—ÕÁø"¶‡¢2Ó(^2y¨L!b]éɫۉàÑÊ”§b£•ùÂtƒXÈ`¨¶aˆ°îÍÌF*ï¨A§žT¯™.%ïî¢-"ÿ²~Uendstream endobj 1458 0 obj << /Type /Page /Contents 1459 0 R /Resources 1457 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1456 0 R >> endobj 1457 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1462 0 obj << /Length 1655 /Filter /FlateDecode >> stream xÚ½XmoÛ6þî_a¤Ø¯5CR¢^²&躦mŠ¥ÉV/ûІ"Ó±P[r%Ùq°?¿£HJ¢L»º.A"ŠâŸ;>÷"½õN^S¯¢ÐƒËhÚqß÷b”Ðþhòñ˜DÜÁ2|\ò¢¼ŠŠÅ1JÒÁСŒxÇ.eƒO£w½‹Qô1ü’Jós<Ò½/½ŸpÒÃýw=Œœ0`ý¸Áˆ„!í/z.uôͼ÷¡÷{­gІmM/\â"Çõ¨ÆK¾oÀ%oá'¯mÙ Ú©œ€±JöMC$ùš§e!ÇÓ<[È‘Ðwyý†§â1¨\®JùäŸó¸Ü–³´Œ’4Iïå}$@ˆmfȘ„¼œee–ÊÙT^—# —\ßG><b烈ƒ|ê9jL¥ì ¿•ƒ_&ʾ(¿KÊ<ÊåíÍ«×r¤Ó,_De¢ñ”™Â•r`9ã•-à ×qCÓ¤û,³xò¯<)y#^ ŠÊsܲ:JÕd^ H©£¸‹âϲ¼®ŠÆË©éfRaJŠ4-j¯ùÀL4 „DÒ€H-''ÃoÿÑ@Bäz®TOµú†T&I;ëzýö3×Ôuå9O_LÓhŽî³õ39{åñL)ÆžE 3ÕØãàN¯äÊÛwŠ9|-–s>¾z¼y,gIVXô{¦þãEÆ‚=>ªë¹²«Åôíí}sûÿ8 ¤ç»„ßF†â-Ö—zçï%4¡üq)5‘ØFð÷=Bl“*"Ÿ$i<_M”žÇàöðË Z®‚ÓƒE’þ†?«JǪ2“†ŸÛ$\Û$³©9zË—W¿ž\^ëR4;²I{{¤¿"êï½åy|Ü!Ø&;„›ði¢ù»àå,›t¹Ï!%òBSHóP§H5E“>mI[ ¸,Þ@tì1œÚN“*‚¬³pÁ‡À»„ب“WQê7žjWIè!ìUu: 7¨ÿT=r‘PÒoÍ«Ä]”“ÓSÅ™U´+³ï~–r: \ßDìØÌpud*œ‹¨Eâjæ›ÐÁ­ÓËVeÝøL“9·ÉxJFš0U¯LhœvÔT?ÐzÔµ­£ÔïiPÍ›ežÅ¼(:ɬթí(ÝV}™kðø™óNVk6s£’ß?š)ÛÈ—JQTF5ðÉ*Ö<HÊ™ÙguzÜAÔ­Ã6¢d=[ùCRÄI2–”8zQäñ$É_œØšÞ£gÕ¹&YÿÒ]çåPµ¡VŒ Ç•‚ñ*Mʤ?Å,ÎÅí3ÛüÕÕ~‚8ÎþsÊÀ™*}o_'vÅn‹v÷ ÿ|å@Íl‚2ÓarÝvÑŠ2Jã]õŸ7ˆd¯{‡eÎ'I Ì´mí©­[)RWë±h)Æ•^+j¿ƒºà:ײTtZ—L+iáÎ*iØ}Ö':ðçâöâ½ê»¾¾±õÕ:¾ê\™@‚JË3lƒà’îêtµh9­Ø!¦ãc’­îæêô6ä #Åþ mÆ_ZÓÓöš©XdUï˜Þ4Ë…7hÇ ,å(DÌsi»ñµ2ëÌLHd´qÊ7¥´S×U˜ˆã  LP:ˆf‰6¹IõFû+’ aâõ¡<}j5ßÓ‹¦Ým¤Ø Ÿ‘î~ºÀ>®*Ô¬(uÛŠŒ÷«ÅN(G¦˜Ü ‚…c%¡ûë'V…àšáyååqZm»§ûtƒîUö¨œ[=îöT;öÅ4Àh|µÿ”„‚iGo'2¯±ðAzá¡ív2Ò¯RE¶à‡¿ÚYTS­zC ÆWþS-?t[*ö0Â~¥…B4ùÌwŠ&Ivç@,RÂL(N …PÈpc̓ÌÕ_ÌõÈ eÈ3añqhH² R²G ±kîǺÇÕ]uéu¯·€IË•íUyZ>™`x¾ŽæÉd,´Œ—Q^&ñœfŸú†@Œ†Ôw£Éó" ‘С¹ânir¡‚h‡¦I^h¯5¤hC 44Èâ†ÚŒdâùÈñ)ÛõžÐA6<×.®1䳬›ˆ}Šs; $&ÀpßIçq€‘5âÛ¿·éÄ }¨nêû°ø&ì{R ÍùD~Ò½‰¸Ž!=^qyón@ØñJ=aòBØ)çUöfâ;šøh FÓeÇ¢w7ÝäP¼©Šë«lóxÏSmþ¿Àlî;endstream endobj 1461 0 obj << /Type /Page /Contents 1462 0 R /Resources 1460 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1456 0 R >> endobj 1460 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1465 0 obj << /Length 1459 /Filter /FlateDecode >> stream xÚ½XQwÚ6~çWx}Ø]Ù²-Òæ![º&§]»–mYÇÁ‚x‹Ú&!ÛÙŸdIÆÁèº$ùÊ÷~ºº÷ê³.FÓ—8p¨KÑŒ¦EN€K0`g”Üt}ô8"Ü}Å–o¾‚º—ëx±œ35øŽOV –•q™ò¬w;ºî\Ž:à ñ‡J ]âàL›[ä$ä\wëш8b€\ ;‹Ž=3˜w>t~¬õ „¢ASÓ…„N°º4D` c±’P!Po8@¨ûWo 6/˜êý)Q µêúOÔtÓ ÒõÔ´ªYC5‚ÐõBLœà~T½õM%òÝ0ÂNã±XšV‰bˆ0²e oŒámcø¿7æmaY·o¤§§ Â2çi¢]Å—rWã¹%SÕ)X©:i¢Úlµ¸cya3@Ú~E•\+ÈÊBõb­²¼×¶Y¦•óiK2áYQæ«IÉs¡ lVcµ Ûáð]2½Ê¦¼^‡¡¸¯Z¯oöÛtŒä£y0­ES#ÃÚô$˜3šÐ aåà\xo, ŒSHâPpìoFmïʼnöJÁÚq~—–yœ?©á+?<]‰\Ôžò|Q'g[?mù©õ2Ï$@ìõú€û@ú^Ÿô‘ú»|²yˆvÖ|/uµÎÚ@v52/Þ½!6R®£èùsÕ>+â‡4›©Á僨Oúùö´ “â± a ­Š©­iE™ ‡"çVˆž‘6ªÒüÈÒÙ}Y¥n‘þÁ¶-œ«m¼°¿F…u®î¬öeh¨‡V˜dkCÚЖ¹HE9âÅÞ½îEh¤q1IÓ1_•;¾¶jÌ{''bÆ3Γqµ%…uºˆØ0Úƒ!B¶‡ ß0)4™³X‡Ýj©SÈÔš™©l[—·Œ‹^¬õ&lÎJvp‘‘§ç*ߤÚüùùá·Ä†ßZ‰žžºGþÞ½¿úa¤,¾¿üðÓë‘Mm Õ¶c¬µ7­Ô•Úì¹)Ù­tK'|e÷¥žï*‡Ñ„K[¡M/ãÍóÍɰ* Wu_¦YZܳÄ}ö ¹‰`ôÐ>S-4”ñGÕÉYÜF2Mçº÷¨ÛßV…öÎDÌ/ö]i¶ü§Pï¸Ò“°É<ÎÍ)Pü¥ÙqH ;³'›.¬uUg©†uçõ¡!àßÜnq“g%+Ê7ÂëàŠ}¶Öêi­•“Ó©Àâ…Ö)Ÿm´¯ÞPþͺú•ÔsLµ¤"?‚zÃ',Ï[!k–£‹æ$Î2nÂwÉ2{7`P4Ð(Ø:­Êëö.7<í4ÒB}N_½ϲÆÁ¶N«cU{Ùn€Ž.‚W;iG½ uŠËøÚÕýDñ®ÄX{WÔWÁ‹áPM°‚Ÿ\ï.¾4õîõÛ·ï¬ZM¤e*<ùÙ!xÛ+¬—Wqvññ@¨…³S—>4I»(øÛ¼?Í\YDÆòØQ֜̆Û{‘D-<&Aï›É´a Çä ¢Ï&¹ò“ûÊ=g‡yHÔÿѤ_–hŠöòÊ#˜ j^ÿ·T  9†Ò¬eY¸Å‚æœÿ¾ýåµ)¹ùh°*14FN½ÒŸ/ÂbÿÐJ|ëSòeH@p<+0µ>’‘DŠ4ý"œ 0ÚCÊÒx‹85™’™Rs“‚‰S?ÙШÏaL€áe¬ï7ìBÏúÔW¯> endobj 1463 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1468 0 obj << /Length 653 /Filter /FlateDecode >> stream xÚ¥UQo›0~çW°=Á*{¶±±Íº>të:Eª´iyëª(!È€l«¦þ÷’¹Òª ¡»Ãwßùξ˥÷ö‹}u b™ûšø2¦X0ÊüevPŠ)$èLÛݬÛ§).ªELÐ8àL†wË…wµô¨OࡆXD1õÓÒûáÝÞ?óˆ¿ðŽ´þ/0¦Z3¿ô8‹&ãÞûæ}=à BO‘.{º‚ùkIèD—{9²2ˆqB‚¼nBƒòbµÏfwó!I®MuõÓT]’ìÖMW¤÷f•ÖUÛ­ŠÎ4ënŠÛYñÞ ƒ.&ïvµ1Û¢êqá¥ïfî¯\þ¦ÊŽÞ°WÒ˜Ç\Œ¤ÕD‚³³Ý4µÚg€v} O® f[θ;Ðû+Š™†íCªÀÕõfXáX*Fý'ßw=t±5U¿)&[•PùyHŘH° #‹gHÈ pz ‰².¡^ûrú=.O‰L‰Íˆ°‘H6#’¯7C%Ú–ÏV$ŠÆØ"?öψsaÅÄ ñOåŠàÉ­n­×ù¹•¯‡Fõù4éWվܘfJØ ,ô ÖŠ/c:ñõ PEAˆ|IA6ë&­33#…¨†*(¦NÈÅnrÏÒáD³õÇ.Û®Šì„ W˜q~ÚÒÍæÐæÖì{ÝIN–«Êz„É›z<S/;áÝèÚžynS¥îgs³í²$‹èÞÙï|º:«t¼TÝ«ÌþáÑ1Ü÷p˜þ <ºgV ·~¤¦!Ð)Œ®ÅìÇV]Y¹ 5 öÆ‹Š`?®+¨HI¸´#”Y-™ú±ÐñêæÁÊõïh )ý¿®Ùµjendstream endobj 1467 0 obj << /Type /Page /Contents 1468 0 R /Resources 1466 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1456 0 R >> endobj 1466 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1471 0 obj << /Length 1422 /Filter /FlateDecode >> stream xÚ­X[oÛ6~÷¯ðR¬ˆçš&)‘’¼$(š¥]‚µé0£/]a(mµ%W—\0ì¿âE–ÚQ»$H$ñÜ¿sxÄ7ÓÞø-¦ýT\¦ó~ûE€`„ûÓøó±‹ýÁSêããßÙæý¹x ðøâ>\oVL=ü–Fåš%EXð4|™^õ.¦=Ô‡âIyÄÄ¡¨­{ßzŸ¿À~܃ý«Nà“þx€î¯{.vÌê÷WïÏZÎH5%½Ñ¦#8.ÅÆv,\ñ”éD#!<.X^¼/WVŸ§ÎrE€KsÇo nD@èÁ õ¤Ã5Q!‡Ý Gsu/¸åuÍÖiö îÃB]‹¥fÈõ¾+¸¹ËJÍyÇ‹¥º» W‹Œ'±zJ3Íœ aae“ð& Dy– ñzÉŠ…_Õ]´dÑWA6y"(@Q#2.u‰¤a%c<Ö¶W‹Ó©9¿sw¥.Â,cÉëy®À"½}¥¨WaR†&~Bß"ˆì zÞœS7AmË «è*n£3™˜Y"-¨ç ‹:ÒA~B¶ÕÉÏ’xeÍ‘g#úû×l¡¹ŠÅ6wO Æ6•W’ĶÄWšíæcåP¶,ZÄ„a·$Ž:‡`c¼·Ÿ72,z°îÄ1LÃa«[—»fy»ß(?¢"S%Q@¤n`iD.ð|ŒÚ]»Ñ_„2à»Þ®¤v5M?½~RÃQm;ö-ŠxfÍÜ|nÁÖòw2_8Vl¥br˜ñ‚‰ÉÐðm¶û2fêõùì†-¶_VCæ‘ã7äüd$°#× ‡›Nè'Ñ0îÛ‡iU ØÚ {šC«ÉÜ„Y”Æm¦$–çI^'l$DFgZf§r9˜äÃݽŠ"“õmAÀû/qM1 t÷m°m\»;å‘°;+¶¶eƒ€ù²iàù"²bŸþÿçw AæøŽ‚À#Æt.XMÈé{ ×SgU©ª0ªïòꨱš«ëtàãRŸ?^ 9.õ¢.ˆLœˆ-A>aXtTwó&ò¸¦zhhVüê,óþaÁêSÌÿÝg‹endstream endobj 1470 0 obj << /Type /Page /Contents 1471 0 R /Resources 1469 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1456 0 R >> endobj 1469 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1474 0 obj << /Length 1321 /Filter /FlateDecode >> stream xÚÍYÛrÛ6}×W°z’: €Ä…JìÉ8MZ{š¦MÔ§4£‘)ØfG"U^츙þ{Ð…‚¬‹%ÛöŒ ‹ƒ³ÀîÒ<ë5Žßcê… ¤òÒ»òBè1ŠÁ{½á—B‘vØ*D^|(GE<‰·é$9ˆ"'²—#Ž[Û_{w½ò üEa€øyѸñOãËWè лh@à‡œxwò†Ø7ìÛ›Qãsã)NGuæ‘Îq‚=B‘%Ž¥Ló¦~»ƒ †°%n‹ s:Éâ¤ø ˜––WôJq•à4 zP`ÅWʶݡ²ýC”Ž'ƒLü,’w·B£HPt¤”6›µ¾ëK&Š2Kt»#ç«ÿ¹¦%vÚ¡‰BhK…î$IÛÆWA1×CnFkèh$†X9Ñ×A2ÔkQèF"¾–‰ô:w‡¸ÆÛ).ƒncì4FÆxGqÜ ÛÓÓ5sàÚ0¼4Î=Ü-$X¡) L§•o_ßin·Ö“¸¸ÙŒžn¥³'†J^Ä£‘nZ¯Æbœf÷GskcWE" #bm¤;u»…`ncßiÌ]éZ`ßß?ÿÖÓS}z÷ùÏ_{X lškËׯ­žÃnW$Ñ‹!G+F%带þÙÛ M³v¥Yäôjá¹5‹£´L ׬jâeÀI–F"ÏÅpáXé®Áì¹ÜGf+”EšÛ¸ëï$R°b”™ÚÆ=C*ÜÛV’Yv“WNä5'TÖØÊ²“r“ûpÅ殠ȹaOµ"jÖ{"²ôê¤ó»ÁÄ…¤ïŽÎÖ‚ÇPD#™L,´»Ù¤¤ƒB\ß»°ìnþEL>¼ívÏ?öׯF=•¡šoò,ÆÙ›cåØùGk ª¹šG•œqšË?ɪ|âyG¯¿HgÊE™"ß÷¹×A2ѼñcÕBìÍ=—†hN™ û*郪›‘í ß<䋬‚=²¢ ¬q§5èMX­ÚÕM1[>”.m ¹šË¤ëŒ?ª§sZïë¡–È'¤ FW£'ÆjG„—"Rzù·ˆ\q8䢪åT¿¬ }¸–?ŒcT_þç“i‘§‘@ŸÓM‘Èüþ€²LåŒ.rµisƒÊ“-r{¸ò ¨<„î|O^9­Ñc6‹9ÚW…íU+zÀ$Kê]R ‚¾[ê¶Þ*{ÖRË^2&‚d7?©ó©=w;å:ŸÁÑ=À…F÷ DÂUѽ~(ÙÆÑ}üÚ3„-æ„àá‡u†®u½Ð ‡~¡)¡UõzóRHbVvͱ/žùCšÝЬˆåËF?ÿnjfœµ¬ÕºM'ß öb£'“)JBŒ6™mjºU€Cd{èzèÁt¢Ë:ѧЉm¯[¯;˜N|Y'ö:…ÛëÄ×ëÄ¥†Ë:ñ'Ð £zM1@”n—5€Ò°Û© ¯é|=Í] dæÉRqªH2+a¯µôƒt÷ªpýŸ 3ùMZŽÌöMRSwŒEt3d\+£zͯ—Ôñ3u̶–é9c:~¦˜Ž·x¦êšmúMç_ k_·8>òýÇÜš:3å(™Ïí·-PÀhå«ôF½Eªÿ«ïri¢¯½vˆ[¥Ð7mDZ¥é1ðéØ ˜¾ÃPƪuÕÆ¤úR¡nªݼ¼×ןÒo÷×"±îÿ¹99endstream endobj 1473 0 obj << /Type /Page /Contents 1474 0 R /Resources 1472 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1475 0 R >> endobj 1472 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1478 0 obj << /Length 567 /Filter /FlateDecode >> stream xÚ½UMÓ0½çWN‰´ImÇ_é®8 ¨´¹-+—VÊGIœvÄÇ©¶Ûuªjfä—7Ïã±g’z£×˜$J˜6é$p†"Ši~ã“!fL`ÿ­\¿{© ýé]V® i‚Wõ¼+e¥2µª«à6yÓÔCêÚñQј!0/½/ÞÍ-¹Á̃Qœ ¶:€J Jàx ïÚ{¿ç 5QxÌ4é¥S x”pˆéXï„å¨WN „þh„L[¹QÔxí²îŠÜøU½5N™©ùrýNtê0‰#ÔR"KY·xueìól¡dcÉ·Ùúâ4ã2kÇúð˾ØÈF­æ²ýØ®¾ÊBýG')Œ&ʪ|XuÉÅAÈñ£d묧(~'Ûz¢ºUùx,«¼¸tæŸ\&ñë2‰V&ò¸L┉Ú2­=»ùäÙ¼.5|#«éFߪ~¥?¶‹^ÔAÀÁûfL#U×TÆé¥q¾;Ó²“{¡…gU·vb¹Åæ²JºÈ½!áF37:q£¹M -Üèsõç'Bð¹Æ5f8”Cçß¶C¯©¥§d«žÔ$þ3Ѻ}cxî´ µ«Ç ÝDì¨kNq¡_k}¯ÿþ ?"šØéÃô›‹þ q‰Å€£ÎvºtÑe“)™›q£gÌΦA‚ýÎΠY€¨ßÙj ¢c Ç„›C„·0õëÆGCíÓý0Ïîî?Ëý$ûb½endstream endobj 1477 0 obj << /Type /Page /Contents 1478 0 R /Resources 1476 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1475 0 R >> endobj 1476 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1481 0 obj << /Length 887 /Filter /FlateDecode >> stream xÚÕVmoÓ0þž_/-,®_â¼tchÒ$ÐʾŒi*»Ú¤¤É!þ;çœÝ%•÷"PUùlß=~îr>ßáÄóÈOIÁ0™û)õãˆÉ÷'ÙÅ€1¢aÀ%Ôj]¿«ò¢>l®‡LÈl6 KR>^NN¼£‰Ç| ?ÖɘH1¶ô¾z—ÔÏ<êŸx”ˆ4‘þ7˜PÂÒ”ûK/äÂNÞ™÷~ƒPÐE:4œYHDqKšƒq3£ÔM˜ŽŽ%ïx Gð˜ˆDÊ`r3-¾¬‡A¤JËO(œÎŽÕ´¾ÁÙ´ÈP8®Àų\]«ªÆÉ¼¬ ÐMn!Ó†D ´)³$$¡i¢¨<iU½™’0 ‘ ßìµã?â»EB<@0t¬IÔ–³E“)œíÏ×u¥¦Ë‡AäX‹] ;oÕêôÕè*ŽnUQ“›‡eò€åY¾\-Ô¹šÕeå¶NkŒ"d Ëi^|¤’Ÿ¹ôÍ'ýéÚƒOÊØl ÇÖ—V5•$ Yè nN˜´Ïq‡HØñ;ë«+¥íöÚm¸’p iÝ;K¸„†€@ª/q(Ô7¶ØYg÷\€²4kuÕy½Öf郞àÑùnï³~zz/¼+;Xlδ7#Só¼P6õq,›zÕÿ0ù\H‰AZ×Ùx\š,5­&º†ô®ßKÛ•HœšÃàòièMBå/éž‘öÙF|ñ¢M°{s‰Ãž w±<.› smn[YÄÝíüï#Íy>ÿ9 õ½Õe iGOJÏ[´{$¹]3D®»ùµ€1€•,îS†âv?oBøy_XéÑÂeyÒ»iUç³…B—áµaL¦O»‘Öò§í ·Ù.ï:.%}¢ÒŸÓ,»²^a5ZÝếndB÷˵ÿÕ¸&ÿK\Ó‡â ×ü)ôÀ {I7åQqÛI|#¹¡ísá„Û•w¥ ”FmK—1Ü*àØ´hV.U[Ù3µPµ‰ïÝÙÒŒ~¥ê¦2U˜:5ÍóþËÑM&Ð62!þ¼™ìÙ^2‚&L$¶•„ö1„r¦ Aú(hžT†-pYà8BÓÛ(œœè¾²1;&Ç’ŽÃgœêç]Kó!—]‡õ¤MQ?ýÀñuùýǵ*¬û¿xîendstream endobj 1480 0 obj << /Type /Page /Contents 1481 0 R /Resources 1479 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1475 0 R >> endobj 1479 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1484 0 obj << /Length 1150 /Filter /FlateDecode >> stream xÚµX]oÛ6}÷¯Ð²{‰~Kr’>tK6Сư­ëƒbѵ[r%9±3ì¿)[r¯e'Á`üº<<¼:ä%ù~Ü»¼£Ò Q(u2žz!ö|I „zãøSŸ3:R)ÚÿE-ýQîß®£År®lá§l²Z¨´ŒÊ$KŸÇ÷½ÛqxXÿH…'|$˜$ÞdÑûÚûô{q{÷=ŒXïI0"aH½ESV潽߶8C 4l"½wÔ GŒKZs§z*¾¥N"þ`H0ÆýRåÇÄpþ} +újRfy•C“‰á|y'hà z0 J}YAÝ®U>I =a©»Dó¹Í”3WóhñªüB•³,.¶ ¾&„ÉKÂ-?kyiLMcˆ¸ä¢j£Û¶*½Kò¢´ÙeT67´Ia¦µ±yõ:ž{ƒ³bܶ}Ÿ¤“ù*v°×IV”¹Šï€¨“ÊY%°K÷™*¦hvôöºÀb$©sÓ"JÒ¿±ÀúOóÐZý4¬54œ?žåÊñ̉3¯ØFMë†ÏÙÔ—ëËÌ´Ž/(¢ ™"‘Ø1¤µEbü ‡*ÅQ†“l¹1ØuÙ¦G‘P¥ïF‰³ÕÃÜÉA-ÎolBqÕ^ZâÙ“Šm!N¦S•§ð Ê'¥R×V!Cj'|«tµxˆâÖàœK­\ ÌeÝ{dh]kÂ¥€ØìCl:!(ñ¼ñÜ Áˆ%ÝÇXª|I;q8„SB80€É÷QòN @”³} ½[–Q'$×å78ËYÒ‰(‹èK ¦(ãѨøš—i]¡ xC½–CTP?T ù%^£ÞÉî¼V±¢ …óCý›Ý7­îÏ/íþ¼›ùbŒ.öBÈFG}Àup朞BãNh9qÓ˜ òIà·Ã%†bh½†רP¥Ý|/,Zg:$F[Ýÿpaà 9k™ÿiÌéáhÁxËü/cÎÑÁÈÀDËüƒÕµ>¦Ñƒ=d«Ç¸^Q‰Ã£@aÕ‹ÄEѽ5â@»2¯wådº‹UÓè¡Ø•¶KoØÚ[ªD•{·—v-Ð1‚ë6¶•ï$[¹ïúÚvl´RuÐù&²j>iRêÓÑÈuh÷ßÒÝ‚fy»X‘Qi<‡<Ç鉔ë›8OÀ _àÚÓè1GïüÜFhШ–ö¿P£8ª‚Æö3l‡ªW A¾QJØ¿ ªÝX–/ñ²ÿ?‰àÏžÆ08Ea‡´c ˆ£>ÎÞÜ´ó§|wA· ¬\æõ½ ´>EÜ‚ù6–^Ñæ¥1@>ÊUóÔ¬åwö‚o D—{e‡'¿»i^Nr¤Šk‚·¹¦Áæžéž„„'ÉÞ…ó.[åï›rïÎØ0n|ä+à&ÀˆÆÞþ Óª_a$ }˜G¦ÏVAH˜çëó wï'?«TåQi.jæÅ(Km:„´¿rÏH÷"ú+×"lBÄHà‘Ù’L‰bsa6¹é€Š¾™±)4Þ¥6õ“ÔzóEm£þΖ˜endstream endobj 1483 0 obj << /Type /Page /Contents 1484 0 R /Resources 1482 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1475 0 R >> endobj 1482 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1487 0 obj << /Length 1090 /Filter /FlateDecode >> stream xÚµXËŽÛ6Ýë+Ô®ìΈå%EItÓ.¦´ @ÚAÍÂcÑ~hô˜Z.òï¥$ÊcÙM%(¼ EÝstxxù0o¦Î/IàrÄYL.Çnbˆ;?Ž„c0<ÊE–¿Y®“•x;ŒGbžoÓº†æó±G1p<ò)šÞ9·S\,PS²1€;_;ÎÇOØìÞ9Q1÷ù€pNܵãÚ>¬œ7ΟOyÇL7•zFÜñC«žÈ΄ø€Ž=ˆ¤À?Dòê×Éäå¶Hß6²½@6?ùc†e¯ "×ÑkUMðSÕùQ#?ðYCæ_ Ë2ÚÏÀtÁÚº>ß&eEßênÊÞ…Šóéˆèç«EDºF®hâmq¿ >ÙСdW)ëÓbIyFRI@G²?#ÙIˆ†D@:$ÂÈ!3Šø2ðÄ…Ã !³¾‚—}p³ LÁ÷}p³Æ€¼*7R…ºÆHÉKÈÙȈ4!FBÞbsÖ°‚æ§ÐüAä3#ÚÏža“‡¥Iòtz¡ôakRÍ(¬gY–=Â)ÕÚèYä÷0ói˜nr¥g$I&Šxû×,YÆËܘ§‘.ÑäHœQ^°×*¢IÛKvE=lz.#•veLµDö¶q¬·MK{Á:ºÆv|ÊQ&Ô~uÝÐ’¶BÛ C¬—vˆÞ©m´7Üï„¿¯Â ¢½á¬þ¡ 7lÌ<è„O«ðÀ =ì„¿®ljuãËF=éçÝøzIö îÈTq[Xƒ¶µÜõìs'a²<žL²Ç´ï] ,IQ¸Rå~T3üP¿òQpÚÕVwÕeE(â€ý>ü1¼ìÀ÷Cáûg< &;Üíx›ŒIµS\ì:pÄD6ßþŠžwœ+µ3Š0 è‰övf,ÏÇ»Åì>{~: §×éóÙ¯©ý¢Š$;}ó¯6Oäì¢sæÛBm¸/^4å÷ñr±©Ø¨öÓ©Ô³YæE,&*¾ ?È=ðiÃÒîc­Elâ•>áKÉsµh.•z‰¼µÔ*}WW›b}?‹õQíBòEû–_Ì„£üVzÛÃÒW'àoK†×¹Þâ#©æ> endobj 1485 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1490 0 obj << /Length 663 /Filter /FlateDecode >> stream xÚµWM›0½ó+èž@+¨mléni·­"õP•ÛvL…>–íFÕþ÷š˜ÐE޳(Êa{2óxyžx–öþ ¢ºoû”› Ñ} »ÚA¤ñ½lZˆRßXùýw0îžÃ¬Ü0á|.¢6cy6i‘›ÁJ» 4¨þ»|ĵ‰C¡eÚ£vÿôXúJ¶ã{DÿÃ`CßGz¦aäìöSû1ä±x"ë8Ó²ƒNîÚ¾ à:âoâ äЦ=Œ—Ïbù6¦˜ô»°ßM“_€ðPÊŸ“p]¼,¬ëú Ç:^CÂá¡ýîGaXYÿ¿ów²8Oàt»u/QÑ6"øæFØ«8MVqRUÅSý(ìS¸iY½èÃÇßáRJBÑxqŠåñæÃ$vG{ÄÄBÚCŸû&º‘âéõuÞfë0žŽ"R™P%™¼F=["î[%rJÊÂ8OÞe¡@¯"J_EXÚ9ðéÎQVcÄe5WøÌŽQÖ¬‹*,Ó8m¶§…1 –Ëbx5ºñ¥z…ÁŠ•z–ö|ºG°&æ ³%qf‡à%OëàT.„~Ež/Õ”˜UĨÔˆ´9©æð„…½½í}5E¥ô#4To·©™,üÔ¥÷ÿ„yüWXõu]Ã%Q:WDz®•pùnÄeT”[5>ÝùŠÍ%ÉS"É—‘DÁäê^†kÚ*`$5hd^&î│ó[ßüëûQ¢e?xP~]w¼îöî Çö|èè.´yk£;\_YΪ°a±˜4øx±³é#£íÇ• ‰Ñö;DH,ºÙy@$ž£SxçÍ3ëí~”yÞþfÃó–#¶endstream endobj 1489 0 obj << /Type /Page /Contents 1490 0 R /Resources 1488 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1475 0 R >> endobj 1488 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1493 0 obj << /Length 1336 /Filter /FlateDecode >> stream xÚ¥X[oÛ6~÷¯ðR`ˆ‡Z!)Q¶ÜtH/Î s“¡n^ºBP$Ú!fSžH; †ý÷‘")Û ¥i „ñ|çÂs“>N;G§(ìF^Êa:ëF ;¡‡DÝiöýB{}„Á¡ \|EI²¼¸òÒÔ£¬×÷A0ˆ÷~L/;ãivüÁ <쇰›.;ÿt¾ÿݬº—àùÑwïåx0ŠPwÙ o‹Î×ΟN_õw‘>±aàùAˆ¬ÜHª1ØÐ(·öè£Ý%4ô„%Æ7NzýPpQHBÊæzyq¥G‘ëQ>Ìô,afr_Paˆ=Ìè‚T,RN·,A-¶:¢6#/\î! ptd¸jmjšÔhüŠæé³`oža'3–,¼y¾y«w'I‘Þé) tÀàá>‹é5d²´Vá[mÎÉjòÉð½] =YóÊÞÂ’[ÃëûÐóŒ$‹G‡Ã #Çšà eéb¦Ç3Íîw…ë¾ rÁ”Z6Þ&¼»©ßBzqà)¥×I!hº ¼#°³ŒÌôü||=ùŸøK³ñ—ñÍøËÔE‹Ûù?#½¹ö7„etæ:0h¿!§9k€¶ 6~HÉJ4“»®}/•Ö¢Ì /‰¸Ë3^‹êt‘pN¸uPb¶o­ŸÒ¯vq„N-.øYžg-†Enªbg¢¥m ö]›ÆI69ͶI,VˆWö–ÿp‘FùnÀýª‡œËÇð ;±7IAó5?Í‹e"øk±Ã:v™ic‘Ç絸ƒgpý×ƘùÒ ¯Evù´o|š2“F— eŠBÑ;ÿºÈ ªâefUrÌv)%;.·->ùZèMBú¨ xÓ€|£]åE |ÃÀáͶóCÕàõ-”x—ò©Ok¥Ü¤¡[TÿŽƒ]ŽuÇi¡Vtb]0mFà<é‡ÿ¹šàÚ„?….XÔ졽çܤØãcÛ H6²à,\šAÕÁmÂij»Šª®ÙàYÙ.䞊;g(=sU9çËd±ž³­7²ž¶bOxKމ óǦf³j‹²D˜&sUäÙ:µui+¼:ê(¬ID’åjAâÉãõ£,f´oê£ÂD+õ¹©•ÈåÒÅȺpY­F£'OT_ëLup‹Tvu'Gûq镦9x[™æ\þcM¾Xß·Àž¬Öq —zlé›ÚÎÆ7o]û“I{ ¢—\®vš½ÖÑW•挛Ãé]RTêMâû½|ïÊË*kº„Ä-Y^JRn-cXµ+Žm‚§³-å/Ú–¸9´± íY±RRµXMÆr•¯ˆ1f-öö¤}Q@âÀð%´T»µ´±ëJ‘8Üs6)ˆ·’ï$Tu³ †°µ¸ÐY´\¨Fýv‘§Ç·d®£vQÏÜËðeÙ†‹„¥f7ŸÕ ÙF(' ùš%5²‰†d4•éÉÅÚÆÂN_kØñx.wâ×%u*©½þéW™þ««k¨uûª)¢²±`â½³†¨~š­—;bó2ÿ*«ü¦ŽB€=0îö¡çGÁ°¤ø­|y8 PwgŸlÄ^lW)¬¬ÿŒ<-ˆíêÞ9¾º çCßÿù.;@ö›KèEh?¹@æs‰T™¨Š•é¯EÊUÔ8íEèpMôâ²±¬$zõñƒ‘ªj…€zV³YáüЋҬzª^·Ôø9xœfÕÿ3ìFendstream endobj 1492 0 obj << /Type /Page /Contents 1493 0 R /Resources 1491 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1491 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1497 0 obj << /Length 1415 /Filter /FlateDecode >> stream xÚÍX[s£6~÷¯ é´c7k,‰«ÜMf7­7uf›¤‰»}H3r¢Y(à\¦Óÿ^$ D²Ý‡ÚB ‹¾OGGçh1˜|@¶†ul³f±Ò0Ðê‚H[WCÓ°GcdÛ.þBâ_b gÞ&^Þù9ò·f^F£pt½8̨ö‡…<ËÑ-Æš¿ü5¸ºZ0ÚÉèv-íu€1FÚf`"CvÖƒËÁo¥œ14®J:ÊM·æèØPšŽ˜'·Ü6Gc0|¸£¹©6{üX€?‘û¬|ùÓß¹íLÙë¦mZ\ˆ5[&ûHýhfûû?ªÙrЪ©†Oûΰ©/Jyûö-o÷ΓÈ'iJÃ[þbvÏV•?žn77$ãêÓ¸ •YÃÇ0«ÄŒLhþV)-Íøäº—a¡6w§0[¡ÃmêH³`:%a°V®n_©tyEÁ²Pœ¿ffìÖª%‡Ép\öqŸY\‘“ªŒp {IFý5Y<Å$­QãM¡\»R’¼Ô§tm³úJ2óiÐpuÛÕÆQÞt‹¹?LÝqÔ*ï…Û\ÝšS‡`]­!Vñ•M¦ê¥¤ñdÂ-c^{!ÜÆ¼õ€?ÜáFH3¹$DI1G2? k’‘rý”‹åˆ±|±¨PxØ=Ë»Xé+‹Ð4>$4#Ë¢³œŸ-oÖ‘ÿyɸ¸Ã¶T°.‚'½çïüb~ºàR/f—¿\¨ÄB!¶¹õ¬mÄAFit´z]pK1x.0æá†Œ…êØÛ½Ïî®þ6Kuþø†4½#Þ°¡só»¤BÒU±Öµø„ûˆ [âËŒ¤Ùü옄3* µQš±Ï>ð{¹[â–k·G×iA©Û;·eÖ·«Œê4Œ%’å–cز—¯ZL\2ô™ØmXFx/à“O ›B,–Ä÷£0âü;/‘:Vì(½ºæ½áß»4ñš¼›ÔÑ ‹öTÆc¹ 骊­Db®¯{«b$dÑÕnâ74ísn`ÆHI;|’$ è|/ #¹íbª7^ÅÊ^ØaS¨%´àï¶zgu„?l78]".ã;ç–4«Xh…(§ w&B|Ž÷e!q~†ô¨ l· vT» Ç;è„®@Ç*ÐÁ½{À׿fn/ô!€½á‡uà!¾–žëqB|š²D< ívÁf£ó†ÜÒðÕ‡'V7/#v¤$­ää‡N$Z"ÙX:¦ÔhwÑ7îÁßR|+!pÚ‰×8÷"1®ŠÅqoã¯Aàø  ACØÅ`(ù?'/h—iô |ŒÆïsÆž‹4Ÿ¿]Euê©Ä7öFSP™$ñ®Œ_5>ɱÞðs.Jm¶Y»[V·(c¸ú¤ž –YÙ]S–”ûÅ¥\î €úKÓUºåš§Ç,­\=k3µÝΫ³åÙ§™Ì–?ž+¥–»£´¤Èp€ÚÜÞHª[æ!P[¦/·ˆ`Wq¡_öjÜÊþxq:?=æ1oH#“+·ôvW)ˆ#æ5IRqoMeô¼“–°•[‹¼ï¦Á'²‰³§îkDòÆ)å½pkƒÈl¸¶ñ> ½éVz²3O¶žHø½5 ^2©¬Ì¬jWwñµ˜_V-zAa—Î2µWŽõÿ*ô@”Wa,÷K*=zÏBD¸©£ûŒ0@ûZ5K=âΦ¨É5`kT] Ð0þ{a±"èH”Dm;†›× dè.††æ@šŽ]øÇÂIX, x 4±y»a4ÜŠÂèÉZì2Æ;o 5µÀÔtxüÌŸV#d ó£)ïT*­7O²ÈúøtKÊòê¿a¢{Èendstream endobj 1496 0 obj << /Type /Page /Contents 1497 0 R /Resources 1495 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1495 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1500 0 obj << /Length 1481 /Filter /FlateDecode >> stream xÚ­XmoÛ6þî_¡e@a/•,ê…’¼¶èËÜ.A›d­›ë C–蘨-j¢'ößG‰¤"Ë”­`³?PyÇãsÏO|=ŒßZP Œ²f¶ÔSó 0\ XÚ,þ:ÀþH·\s˜#šʳð‡(Üœ]Qdàd¤Û¦ãCÇöFßfçƒél4“ýA¥Ëõ ׆@‹6ƒ?_¿™Z<0µóiØïj[Ö1 –¶8–-;ëÁ§Áoµ)Ò›š^—f»–ægi¶Åvá «m0Òi™æðô4)6óBâ9ºEIN.ÍdzõÀp ãŠù–œŸ†YŽ£5šÝ§ˆþaºæt›?%å#P‹ÚR4¤ÆsRä#²î³g¼eòjA§^³¿Œ+eÆc>ó âí¦ BºK×8Âùúž÷£ …¹˜•¯ÄCJp’£Œwð’·[1¸ ¡+'¼-h­Si"CSi#lÛ¸ÅùŠ?…‰0êì’·4Ϙq7âm‰72nŒ§rÒüU‰é•ðIåå’ž\òW”~x3™¼CÉ´¶@ϰ=ËÕtÀhçø•ÌOÕP`¸ÐZã}Ê ΗR{A4ÂÖ²~›5ûÞO;]ŒtÏg3þQ:æHwÎQP†]ç¨%FÛ çh^uæ ÒÅšDßç(‰K´…[v™ÛÉuÇšÇc£çïêãÙÅŒ«ý8ýôùýL©×z ÝE¯»»ƒ'¼©Í&Ë÷rŽH¡fªÃ¢)0÷5¦‰¥(n0]¬†ïë`ŠŠœüñ-N0]¡ØhAóx2a˜¯Õ¸B>KíNOùÖç"· sX˜ÇóÛ0ä oI¶ ó*U+g,i ^ ¸:ÃÉ øŒ¿Uƒ%g”¾:¼Etˆ´Åv˜ý_œ¤Eþ(]«æ'Ÿ£hfH&Ÿ†Þ:ý”°¨TIªG$‘™5Z…2c&K¼F_¿ñžÈ'/iÅ8{9.Ê*Þ®¹; ¾µÍ’ûÕÖð²é)Lb”/y$@]W(ÃËÉdÊ®ü}À³Œ…Ž%-‰P–µ<…IBd°¥(Q‡[ÃΞ^óĺèç¥Ù:èÞ (ó¹AËÿå{>/Ì¢Y! ÍݼɄç•ܼi¸‚ŠJLü\³Cgz­|ÿáïAЇ¶,Ïõà-´ñ–éPW”vUY')Kº í&aÉaëƒä,±ä1qçÒþB÷ÿàý aCw½s#ÍP„)&I©ÀnÅASnpòøsß3}îO¯§òÜyy¥Ô*ie¹Éêç¦#¼ãç¦Ú¢VS|ËgORw»jR²ë^4óQšÕå­Ð´ oÑnÙÉ)[Aº<»Ga‰º¸òŽ2)y®XI2ŠQг›xñâÞ¡ÓóÅhÃÆ(6ãÓô.BiÎh)ª t 5Yî2ƒ V)‡Y©¯“q¾)¦Ÿž–,Pχ¶à[-7}yõñâìâïè»®«“m Š“›o%™ô)i 1Ö®EͲh%m´Ióû#L¾Ý²t~jh‘í}xÉ6”ÓÇÇV”mf×Ò˜Î+yé‹^à»Â7<\OOÕÞbVLŠ… ¶oÔ“=1y¯:¼âÕaíŒF”_›…ü„í]óûå7›íïýX–ø?*5–hUøÎ“jÙ1ÕA{ÃçG ÉþÈ„9I^ÚðWû¤,’ïI™Tª¬Fxò££.z\~¶cŽÝ))–8‰¯ðï(#ò¥[‡Óå{É™¿˜”N”þ© è ¹Û‚®®Ê4þ]˨ˆn”µW ´aßB±$¯—Z×o¾iØÀ¶ÿûí[CÑkqgÀ³}yù ö +[ÙQŒÊK˜_’„·³Q` Ä;ç#à2¤yÇå p'®9a_»UÏ2ÅŸ–#Ë’Œw*Àøãâž·¿»û”Èíÿ ;};uendstream endobj 1499 0 obj << /Type /Page /Contents 1500 0 R /Resources 1498 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1498 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1503 0 obj << /Length 1538 /Filter /FlateDecode >> stream xÚÍXmoÛ6þî_¡yX/µBR¢^Ü&(º¹™‹¦ÉZ·Ö†"Ñ QKòô’ÄößGФ,Ë”c·(°äƒLéøðx¼{îŽ/§½“WÈ1|ÓwØc:7|`¸41‚ȘFŸŽlË ‘ãxèè7²¼ø… 08?ñrAÄà×4,c’AAÓdðyúº7žö Ø?¬ð°kbËF÷þê}ú Œ¨Œ×=`Z¾‡{6&ô}dÄ=Yj°è½ïý^ã а‰ô’«Ž‘áš¾  R±¸Bsè3Í]€£%C‡ý89M¢+úÉÒ?OÈ]ÁžðW­5ôMÛ±±Äð%Fš‹¹ÏŸ‹g_<–ôo#~ÇAž6¾*a®À68`0„–·Úš^~4úÐ"’ &\oñ)oÆ)7ÏJ&Á?ñíˆÏë_ ,/¢Ñˆ$Ñâ™V%(÷{r"ÄÃ4¹#Y!_Ú¡›¾ µ8HâpýÊœTªå\·ÍÍ\Œ?>Õmòâ¢ëH°Ð÷-àiÞ=Íþfo@OopþÞà†Øfbÿj¿²ø²@çW_~­–Ó²h™¬ yñ¾ A<¹”v*n‰Úbp·š02©FA‰WÑ|’Ì¥}i²Ty‘1i,K3y:AF”lÁLÂØ)XôÙ?rÒæÂÛªÁlr9»^¤á—›½>€ )Õ›íô$%òɉ¹çßÕ»ÉÛ©€}7~ÿáÍT‹‹$nÛC);¤Ðzí]° ‘òf'9s™¥!És™Ì/ÑZ\¿«kÝë Ò®J“=ÖåãW4¡ù-vt¶Òú&ÄÚ·Ž´GªÔç]¤3áa?çjÙ´érOÄCpØÿh?z–{d~Ç´þuÓPüf>zN’17îVÐÜÓâ¶>4¹‘û(‹Z¨Ìë×1‰¯I&)³LBNµË ñˆ„‹:DƒDÖAAnV› ‡éµè" Š ö¨ IÔÞ"Õ©[*Q×Ì.VW«â–JÔáVö«Õ>géo“¤b-¹#´É$['#ˆƒ&ÜÅú/ò,Œhöâ„sääRIš•qúO+;Ó”±%¯g¤"R!Wi¸BXçK]F9ïLÉp²÷9à¦{É(Òaa‰Åê\J‡·AVcÌé‚|ú¼‘ÈeFɪ”b™L¨¯×Óif¦tތ嚿×Ö‘‹=¶yW‚Òùzêšt°ƒ £Õ)“¥²Vh‡A’¤+]’D[lè»ghúraò J†!ìܨve} nxÓÅ\f$¤9c  n`´G²½&7"FK·–µ÷äE„òm:oÑ YGkN¤b@E;$¢!#+íÚ*,&ùyšFM6Îg7ìͬÖë.ÆǪLxsyy¥EU@kMªêàè•pÛâ «.ךç]ó¼Í­ ËBÀ:5ÏuŒ!dm íUS~®>ù&vld4Þ³²v#ÒkJãÉ`–‡Bh¢ª]¡ÎB…¡×RKeÎûÛfX¯+è½bÕ²4¦;>ÖšÀ†JjÞ^HÌû ƒÓÓ­ê|+§_‰š¨NÆ 'z[®ór_[óéôb±ÆSS•© ÷£‘YgxV™z–TëÖý…n«½Èn²ínc5#…¿–]Ú~G¥º¶ãã–ãêÕpT£d dºZ’|ÃCžnS'íØîºUžU„ÆqšI¦c¢·«ñ²}Ý[¬<²nÝD1[¹lU)7D…2 ž&½é€•GŒõŠš õŒ…‘V1*ÄÏΙfíÊ*Øþ^}Æß§ÃNGyÞò@mkT«­RÐÞq™Ãù@s1¡z*M»¬ßש.,‹ü›Ú/ìíh¿°ÖÐn¿*vŸgi,û/û+û/g;8è«ú/§«áí·Ú©FCSGß-V~Ùv ÞXýö¥uƒëÓ‚–õí¸  —òêÙ1}×òøý­…,Óó¡e¸Ð„6+ ø–XÑ@x‰»f^qñçtࣣR^@¿@̶'X< a0âÌGð‹þk>@ø(ÍÄ q£}½R—Ù«R_cÿÍYåéendstream endobj 1502 0 obj << /Type /Page /Contents 1503 0 R /Resources 1501 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1501 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1506 0 obj << /Length 1076 /Filter /FlateDecode >> stream xÚ­Wms£6þί é´cω{™¹¦õ¥Î\ã4qÛiƃAN4‡ÁEâr™Îý÷ $LäÄ™Öþ 7v÷ÙÝG+étnp;8Í|ec`‡t ]{žÞ t`4¹ 8aüš—C H¼žÎœ$qh>yÀñÀ÷ððv~nMæ´øÃF äÐNÖÖßÖÍ-°S Øçp<!ûA €1víµå»ždÖµõÛVÏH(u5Ö°‘k‡Ô°]áE(Q»ªq0HŠœñá(¨»÷q){4_ÑŒÜÜÊщlŽÞ³2Iiùþ¸vt:;#ùä3ɹðqSñ£jïœvüÀGÊL Ì0žŽÇtÅx)B£Œ°¿]ƒ²/f¡YY¨”ÑU+ù e­˜ìýcIò]$!¥rõÝ;å]çy¡"QlH®¦w¿êâÔsB’§™4VvÉÊkØ#¸×Á(¿W¡Z=>–†S’dq©ÐÄ pQq‘ ¬‰¶I—û\ú…Sþ¿nûN±/ç¡×Íy±“ó˜%”.„h›@eì…܇¾)÷[uQ DÿvðÆ0xÂg9©Õ­çΦ$ e´ÈkÅ0د+Ñ_Èæ×ŸÆã‡’r²h‹él±ÌŠäÓbIîhÞØ_£îBM*¨牚-V²å÷j‚ÔÅD…“d$áÂ'9.¦4‰91ÚÖÛbÊΊ"´Z([܉™E£ØŒÛÝâvüMþ˜\Ì¥þ³Ù¥Q«Þt‹$)ªœŸ3¿ÿy^­;ÈÙ>9´›P]u4÷¸¬+òÃ}w×é:|X1I‘ßÉ÷Ÿ?^]L/Îä`$›~̓íÞªÍïTj á5)Ù[•øB“B#‘ËRÙ]öøDÖþØåŽ i¤Šx8¢¥µ¯Íɳ‡É¸çÙ:þ¤Ì²J;Ò¢Óm,›ÏqFÓa ,t+YNе‘¯gÛø¿ ,ÃH¬¾y#Ifô »ê+ºz’ñFê;NNžX,X¯@^–EBX›½ß.ªõ’”æC³1aÄåÕ7§¨kB‰peú[£Æ:\M€ycv2“ ¿oãùbÑþXu J;ý½€ÓÝKi»·É[o·›A…úûM\ršddþ¸!ͪ¶þ¶ØÏhiÑ:jMկź'ñA¬a:‰D Q46¯ÂgN1¸E"A¯>ˆ<ེ _^MuA¿š\ÿþqnÔ«ktKô’×Û/ÛÃî‘wèþð€à"O5nä>$ÝZ£loâv~{´&gŽì~ 9e÷$uŽ^qƒñ@ ¿újxÂDâ­=ï¿¿`:ŠNÕ»+//ÒñÔòàA$;RŠA*Ÿ^õM¡nçCì*"çCˆ•ZA²hŒÀØåÈЕ½ÕÐEƒ¢”ƒ†‰²»|”íÏÅ—Ç;q#Tîÿ ×l…]endstream endobj 1505 0 obj << /Type /Page /Contents 1506 0 R /Resources 1504 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1504 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1509 0 obj << /Length 992 /Filter /FlateDecode >> stream xÚ½XÝoÛ6×_¡¥/6:ÓüÖG³=ÔM;°¢Þ^º"P$:6jI™,-)†ýï#EʱÚR`Ç’GÞñî~w<ùÞOñGÌÝ\Ó™@×ã0Œ°;M¿(…ÃæÜǃßÄ}4‘ Wqv¿zñ¡HêLäU\-Š|ømzí\MäBù‡yÌŒpä&™ó·óõtSº×$ð™û   ÀnæPLÚÅÒùâ|^ËIA£MIïêˆB9nuÇÒO«Ž4!á «ê|Q­@’(ÇÞ°ZÊÆà÷Ω<=qÉʲ:kx5)ÎS=ù½X-”É{Qü]èÙª.Û™¨v“yœß™ÝLTó"])”Rç€1­ÿCQ~7œF¼x¼I%R°6Á“ÖBÔšÀˆkã5ÇxÜJå”5{x½×ŒOÖjKž3¨Þ{³È“e«.Ū*Eœýjá`·I¹h"n¬q›_XØ< Í×̋ܕŋü/È üG–ã>õ¯e AQzù›ˆ²Ô“_ôßÙØ°aK‹úvi LfÖ£ÄF¤†U¥a˜µ¹üòÒøêƒ˜ÅõÒPkå²Ðìll|†SÃ03¡œ³MMµ¬›ÌDÿ’×úpŽÈ–FG_¿ù]5~ù–ÀÆ"O—VWrÑ3®l ™‹ÄdZk±Ù(òD¹RÏZ³žÅIU”¶ A¾‘™Ì¶báIÂfV†Ø<ñéêÏŸ÷Ð5YYn51hãqö$»Õâ'£z’±?ܱd¦Xn¾}+CÚvFæ„Âuà¯!(‹üîï¬1!µµÜ¥âç5k¥¬]S;„‘ yQ/Í›{+¶=Í/¬6ãÏÿl›ôH˜£=0G]0cv2˜y'ÌÞaö»`ŽvaŽNspf_ æÎl&¨Ì@Ø j‚» &ä|Púb¨ûdô¦7öÂMØ!¸ù+=ÞYM¼>Y-?`셷߉wp>¼Õ/‡¾à½R[º£ nŠÀM±Höèï—~УkEdªèpLÑ“U ÚY)è+í®ÑN4EÇ× z¨N°cëÄÄñ¤b†N1ë¬ìŒ‚uVˆÉÄ“@ÌÕÆ_â®,fý*C¿ºÀ:ë;c]àð¥(÷IäΚÀ·jÂNʇ€ BŽoQmj;TñU†`ü×CQOwj>‰\”q%RÝMS^UãtàAmZl×CÄäz½`z@,d0T/°Za¨: j6b6PžT‹žÝí¶]÷øãN¬uÿ\Ìå«endstream endobj 1508 0 obj << /Type /Page /Contents 1509 0 R /Resources 1507 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1494 0 R >> endobj 1507 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1512 0 obj << /Length 452 /Filter /FlateDecode >> stream xÚ¥SËnÕ0Ýû+LW‰JÌØñ#esËKWÊ5¬J…ÚÄ)WjHr)ê¿ãdœöR…«3ûÌœñxS’Wï…¦–Yí¡l¨j4gJpAËú<âœq'BA4ºaüÜîÆUU|Qn©„ŒÒæ“Rò)JÞ•„ûP>“)ÃTª9­nÉr~´&@·Xj3Eï¼¾‚ô–H‘.Î 9#ŸyO”2m¦¾• †Y|é[xÛÖ"NxUMœhoª®ýéúa×µ_›Ëjìú/ SÝ÷â4Ïg…y^/×§Fý5þz‚ïÌ2©¥Âºi¨»kž˜—^„&¼Æ'´~¯qÉ8‘Â']߯VSáÄ0Öy^ùSÈvr‚xt×wíõsåè£üpîïk¾ß•ZÚ+qȈ–"Ìfì—Y%÷nS£}åžO‚§²=ZÕhÂDÖ’ÙZІ½÷}û šðD+«›ùåiúÿ›{@´ NûMM³eqý“FÏ }p­ë/GW㟛^kÂ2¶"Ú;t¶1WÑ>dW¹‚\ôpV M/49ó.£yuø¶ûuíÚEþÊ^ð×endstream endobj 1511 0 obj << /Type /Page /Contents 1512 0 R /Resources 1510 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1510 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1516 0 obj << /Length 767 /Filter /FlateDecode >> stream xÚ½Vmo›0þί@­4Ô¿`^²/S³t]Ôµ[‹ò¥«*œ‰@F K:í¿ÏŽ ! éÛ¦‰öí»çž;›;4ë;º|‡ÁX÷¡î:PŒ°D׆mc³ƒÇÃÆ)›}éqB£¿ §³„Iác6*§,-Â"ÎRó&hý@C:äZÛ£. ÄAúhªýЮo iPhߣúO.@€|ëSÍÆ¤íJûVÛépC¦¥cـخ°cŠ+¡#04;Bh M>lTdyƒ´¡±àƒåsŽLjë„âÜvñ(] &ñÜì8ÂH»FYº`y¡–Æy6•³`’36\û“Š0ää$+óæB‘ çÂÇëS*±÷ÎNû_»]N9iµ²Y?ËrÎýCs×U<“P ß!…ÕÂŒå“p6osX0TX°ˆïGÍØARž²b’Eój±L–;ÅEE,ªƒRxWr²hÀ%á|jÊ]ž0ˆ*Ê)€¾CdþäöÃxœFl,…a¿\\Þö.·ýË«Ïç·§U4>°[& «“üXœ²×œ´åfË’ã}˜sv?ŒÓ0÷ÙâHjaZ†¹Š Cè¶¢µ¡Ý5gÛÉ(­†swÛù[ m×°·møÙ"”ÿuÙíâò·q=S’#øDnS’ªlÓQRF äÁúñ´8)<¿’B09h;n·_§Á’­­Lì1ã·] Åpœ&õµØ“U|A&2W«æ…œ®ƒév•øNqZ§µùç÷’ˆõ_r[Ί2O÷àØ8^€¥„Ñ£J³ÚÑ¡a¨jþ—!žøËL€ç#¢» ÛuÖè?±”åâ’-x{Ę>6JÕç LDR­P9 Ú¥°k»RÂa9›˜¢L„ÐhœîVUÏ´\ݳº[úiu¾endstream endobj 1515 0 obj << /Type /Page /Contents 1516 0 R /Resources 1514 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1514 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1519 0 obj << /Length 363 /Filter /FlateDecode >> stream xÚÍ‘ßNƒ0Æï÷x‰Ôþ‡îÆÄ9]ŒK¼ z¡fé   ”EßÞB;]ÌÀ«Úïûón²ÙÕæ†€sÌ‚lp*KI¯á¢”{£º(Æ †GïÙƒsP¤ 0ˆ4Åtr¬Ô~½pú§ÁP~(÷u«ó¡Q­‘¦ÒíQ@(ÇÄ  ÌÞŽ „Šb! ³HàPÚ«Þüø|4Lvœ’26ÙתÙƒ×6Æò0Ndg8^3èAð$ €a 9{p¦—ˆØ}9N‰%!'cøD†H¡^·’» nóíÎíPÕ…+¥;j›íÒ•}ÕæG}é‹ûçù\Å&›ãr€ÍÀl…€`¶÷4±ìL•×j£ãl2¥ö]T»JõȪõïÕõyq&tlº€œ1I£‚ÿÓ=¿”_.J¡cV¾ÊåÐûȲõÑ»Nw×#v¶Ìfßz9Å endstream endobj 1518 0 obj << /Type /Page /Contents 1519 0 R /Resources 1517 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1517 0 obj << /Font << /F26 16 0 R /F20 6 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1522 0 obj << /Length 855 /Filter /FlateDecode >> stream xÚµ—Ñn›0†ïû\¶Ò¶Árצi“iÕ²6j/¶)òÀI@†¥Íž~0J4î]"ýþÏwÎÁÇöÕüL»A¦‚ •X*ó¥bÅ$º )s÷çùÔwÙËÅïùWí#ÅVm3Ñ':  0P!F*ÓÖÁ–i )€ÚŠrÎ|m㬴5 ·Ž6aáÝh€T`ªÀÎþi¯žŠn«¦2€Pµ1ÎB^{œ9qÀ÷€ó{¶d‰Ã¾dÿ¡•.TÖ€zs°º 7,:ËFYzÁ 8D6N¸×µN@²%!VSEÄS ‰"fQ|̶34JÛ¹êÐAÃÞ'*1,’Œ€WÍÍ&xNY R!1k)øpø*ÊÃc³)µ™ò]¸-?.SÖ”ôO«‹¿+\ô6×]¼í0ÿ°eû•¼‹{ð7n²7ÛíÁïJO‰vîÊëõØw«/¦ëÖóñ`ˆM^â‹8X,=žl»î…?0rô.#§ü¼/…¸¼MÚø³·zâ4 W×¹£[K¸ ×ôÇèZn_RÓñu—¯¨³éå·Ùd|';ûä çî“ý”|žN>ËÎÆó³ÿ%„vendstream endobj 1521 0 obj << /Type /Page /Contents 1522 0 R /Resources 1520 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1520 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1525 0 obj << /Length 1029 /Filter /FlateDecode >> stream xÚµX]s¢:¾çWp©3GNH€Þ©Õ®ºõTNÝ9;; BªL8€¶þû qÕÅ -{•Þ<ïó~äÍGÏ’þ""›ŠIXc½È&uŒ ’-ï{kôõvð­ýú—5`(äß5 g_¥%Aö È0ŸŠu«ÊîZú_úþÈžä{ (ªi`ù €MÉkIC*¬¤©ôϧÀ:‡H½Œ%F,!`}„UYG¬£T¿ÐhÜÿ«Ý!´T-çÜ¥\BÅ4tœ :K“4Œ“\¦Rä ™"¬Äõý¦pìÈK?…¥å‚ÝçÙugù¶ ÛêX@ªûßôqh‰Åoþb;QDceÉ}‘s2úúyL„Í0H>g~.Š·Ñš;MÛƒ£ñõ¼TäÜq_kâys3£þb™öà uü€Æœ+Á‚÷oD›tšÆÔYת=Úƒw—F©<ð†ÐŽ÷¸Iÿ ‚¹»¡Gkïh0qâÔwW”ãB’ÏçäŸiœÒw.­ªõ,ì4´£RK#íDÃ`Kƒ´T` Ëð·9«Kì=B²g‘ÙóN†^øA-"ËÙ$å°¼K¹×£ ˆOâÐÛ¸ÙÒ9RbÖ+®Â·RÞÑÅËã(X¥Â³VCëYGèÐXVmP·¶™ïæ!í²y¿\wab@Deõ´ˆÔ»©Ð±Zï&‹®#8v"^ç±ÈÔëö†²v¬î0ÿT¢h€™¨ªBj^¿‘i…óØ©:˜”'»té;%"±µ_ ¸2}´"¹zVÿa|õC<7þʳi௷:Ù¸¾ &ƒg‹ç‡ ÂQ!ý4Ýí¥õZ2‚¥Ž jšÊ~µ|Ü= rÚ¥Ô6ëlwôÂÍü\ì2'¸–êÕP¡ÅÒ¦Td§OU£ßvûÍæqØ8¤»ÌŠX–ެTÛ4+Øv­7.B€ÎóÞKáVƒÜûEw¾+ÚÛð}·( `fþO]‘4ˆendstream endobj 1524 0 obj << /Type /Page /Contents 1525 0 R /Resources 1523 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1523 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1528 0 obj << /Length 1088 /Filter /FlateDecode >> stream xÚÅX]o£8}çWð˜HÖ`BÞ¶)Ýi¥ŽºÛlg¥ÑQpR$b²@’Éüú5³„CÚHûÄ×½Çç^Ÿ{ms³Ò~½CDw ‡ðËj­;@· 4,‘¾ ¿NL“L¿­tìÀè |}ÿùÖý»ø ¹+ ò—@‡¥¯e&P¶Ú?Ú×o@5 ?hÀÀÎÜÒüÐq¾ÕL„åC¬=kÔ834k"Ý4-Ô  ¿GÖmÄolÁõÝ=.™Î JÚ3XÙÍ 4ˆA²Ýù)ý2÷@Y^Zv6‘Ó‰KÃå9¢Ò‹7pܶ“æ6è2¯?ùi1ͺÃwåà9Ú0?~J“€fÙ Msú}\:zÀaü x¨× ÿ 6oyv•£ANCãæŒ¦C ‹Å]œ+hËVreYîE9Mý¹/+ï'Ú ;Â) ¶~ÖÉP ¹Kì —t«èÚßǹS¶á/šÍ`àêÜŒ¼—-øjð5w¾uél =Ò6•À1Í©ç‡ÉN*¢kãý3õþ,=b˜8öÝ{ÛÎ.# (ãLOï!ç ïãZT²‹4«‰×L²OÅ*S‘¨cÎÎkCæ”X –îûÛ#üx“h²)1ѵ0… øÔäiDùiP»Ÿ¨8Ý×]ö´› 9ÜоãÂÅšP1!¥­æ‚…Í4Û [‹sæ½ÒMÄÆò¨k"ó*¸rí Ü,úA¯\ øîîñþ³* ÝbS&a»ëVYïz6Wˆ ïä¨*KÊüטËrÝø×Ñš4 ð¡³$Q°¼ðd{N†­¿bs`ð^€?þS¬tSýº#†cãyñO #l̈uдIÉQT! §3d ß4–×ÕÔA“=ShMöÕK\ µ°À‚GS>!‘¸[O‘5á]¥|(³%n_Oâz›|?m(“Iø£Y%endstream endobj 1527 0 obj << /Type /Page /Contents 1528 0 R /Resources 1526 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1513 0 R >> endobj 1526 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1531 0 obj << /Length 1130 /Filter /FlateDecode >> stream xÚÅX[o£8~ϯà1‘6¬m0—¾M:I›®2éNØv¤ÑQâ&HÜHSþý:6PÒ€ñtFÚ'nç|þÎwŽmfÎèÏ2[µ zqž(¦UŒ Rœí÷ñòËçù·ÉçNÑ¥l(€½×uóôv4wF¾ d®ØT±f@ÅFÿ޾ÿÊv”»P5ÛÂÊ‘>Ú6R¢‘Ž´ú!mF78S 4m#ÍN,1j±„€Þ#¬)&¢7&§zKÒÕõÕÕuçÅ ‰ï½¬üÌãí”+Ÿ)„ª1wúêÅ;òÇdj0Ö-f7í4ìAÌã>K¶¿’øl{xE˜+sÌ9N;ÊcþBâ¢&SÓËB8÷½Èôý³H±¨_q\¶Îöc“W/JCâ®Êû²Øžêûõa {ìÃãþ#ÍPu`Š¡iª4›}ßw䥖 ‰nÛf‡ ܲøYmüì´ð06'WÍV- ŒsÈä•éÙWIÜKI¬J»ˆ®Ú¨“9<‚¡oj­Û jíb|GìÂK’‘&ÁhUòy׿¢ ¸´ì%YèÃí/)ÐǺqègñ®²û/w²Ý@ŒÓXÖ„ÆÒÊÚ¥Õ¾¬ÃAJÛu–NÂÄÐ\±:ç ”€íJÆ¥¾–D]rt¾ï[®Û…a ªóÂK²Fí.á)ÈöPÈá˜Ú‹#þ'âݲ ûGº æ­ˆ-(ˆøÂK.b J0âk;=ÐãF~Þ¯,$àÔá'ÉJÜC /÷ƒ ·ÆÚ;+dK ¹é¶øBª®c¾~-@綦‘ßÕÔüð·#¢DøHæòìEAXŠ “Áq‚0tcš—µë@vZøtÊ]}LÍ›Cç~óšÑcÙuèåCg žvzñùޱ¶¶Åà·ó¯Ë›ÆØ¤Ž Dg÷¼çÝÿ5 ¨Ô´_ÿ½ÖšUÿ Õ65«þU¨›£D¥9õ²LcºidWgb£ñð‡» ÄãCõó ÄW\é&B"~÷> endobj 1529 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1535 0 obj << /Length 1037 /Filter /FlateDecode >> stream xÚµX]s›:}çWðhÏÔ\} üÖ$$qfœø&nÒI§Ãpl3cƒ/à¤ù÷•ù2v@ÂMú$aŸ=:Ú]­ΦÚ?—ˆêÌ`T ӹ΀nQh‘>õôLÓîÿœÞ蘃@uý<º½p¾ïþМ©Å@‡™-± ‚)ÔgkííÇO ûÐo4``fýU<2†ôµf"\>¬´íߊg ˆu¦³L‚j2!sD°n!1±r­ó`•òØyáajÌf_ú @Ù8ÛÀ f›TmdØ ¡âì¨!ô]¾ƒ»<ôÛy¯ùf|>ú<õ‚UÁlqºko£dݹ×ÎÄyœÄ¡&ÔÑ÷O£« m+tL‚gGí2Rž¤ù˜§ËÈOöÑÀ”5)yg°,ñ–Â'A²ä¾;â$ÍÝ®tÎCso= çQPS¾ßõl¬ÔÑÌî>ÅÞfÃãÒ”*é7^Ü"Ýú ÿå*zUêÞ 6"ۅ슇/NƒÙŠ— ¡¥PX?®fS‚d e…!m˜G>“§åáj˜Ê”Í£•@»Ü_p·Ë¶yœò_ÃáK6ºƒ÷6„äÅ-5ÅK£*„æ203l"êòá¾¢m,ö%àê@VЂ™JkUu8/O¯¡%Ú”±·&»Ã~ë9`7­Q÷Ág2\¹Ï{/\ðÎÞ<°úÒ~_@ØxAi(:›»Ú攉Î}šäšM•aHîñr—§&£§å¤ÝtÔýƒ[üSa«ø3S mßà’oÖ3w„)5ÝôˆR)Ø ýÎA:¶©^ǵ&qäo³ºwò’{SIës(ŠÊÓ:'õx‘– È}´sçʹ}¸»”„I}ëï—ÌOÂßNêÓ &F]4×jµ8´@îjK'׿3Y$X’) žºIVüÄò> endobj 1533 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1538 0 obj << /Length 1247 /Filter /FlateDecode >> stream xÚ¥Xmo£8þž_ÁÇDº°~Á¼D«•®Ýìµ+í^ïuOZ­N‚J NÚüûs0$@Œ¡×O@xæ™ñ33ö„›ÅèÃdžéÙâ²X0šAd,ŸãûïŸçÿL~-¾pM@l¿[–wúu4_Œ ø °0%ŽI° `;úwôó0Â0¾Ž€‰=—/â˜Ðó±YWñèqô×™g*ˆ¦u¦›S”Õ¢„@Ü#‚ ‰G†zDz—hý#£»ËÌÍo“© ÀCR„?…¥ÉBÓ#DÚlhî‡, G(%èŽí¾ÝÎf°äf< bVrCè*¹á™û™{yyÆèö>Y¥%-’Ú 1Tð,Zoømšp%,«ll[ £‡£¥ÉEÎ,á%­«ïîÄz¯&…uÒ XÉFì¬fTkó:ô(çTÐÄU‹ß±׬|þ0ZøW…®p R_³ôw°.œå>ã4 \Ÿµ./XS ¥Ñ<áYÄòßßãF·˜–Ñ9@Ušz|(]„”Ó¨íÂÔ ÄBt•š–à@)Á•Ò=úÕš§jÒ-M–ó4ËÏí¢ …æAu àáïB®å 6Qf,Ñ‚B–, iÂs­KöÊuq¡¨7´ÝFñQëpÝøŽŠ¥q½’‹E¬…Ò$Q“»Xìý¡ØšÿÀ‘Ī2,¥öéöà8.ª“(?—’j¹¥AkSïH¬Äö7ÀÑ:¡ñC–Š ÌŸXÆÙëx´HÔFFÁ°`äÁØ'Hr”þ>‰.H¤&݉´¬ÎS„²2sN—q”oDþv{îçÅI.ÎG9&ʲ?Û¥{~eØY,Xw¯™Æ?‚¶i¹6Ʀ°W™È™é6KóüQÔßekªÕ2²ÝÊâáÈ7UX`Ü´ð.õïïªÇv'HŽA·bk]ÒàùZ¿þž³ŒŠfù›&k¦ ø9I_1øt€$]’r]ÖéN:>½ûðÂÚHj9¦‹€SŽÇ?JHsj%¦å9¤„œ+kŠñyµM™¦661tÑÿ âÓ§áA4“Øv,ÅÌ/ ½Ñ>P¥”è²¼V–ónYNú}É"Î|YI÷úKqŠ>ûK¶Ž’ë®Ñ+ÍÄ©Ôoô¤ ¾l;¤(ÝÙLŒã9¯¶Ùj -ËódŒ=Ó%€4·«ìgùÒ~#qkŸ¨™Ö¥±l•¢ºp¥™²ï.âYW|OèrË¿RÄn)â¼Q‘í@=œ^=¡*®Ôp†«Q©=OÂ^5Üáj´iªáªÖªÒÈm«á¾] 1B„ûâ4éEžsåã¶(î0öi7ñE¶i¿nÞÝ”‹RN‰–§q\SÖëW6dœFqµu)«½ì.”Ó²|Þ<ÝH °®lVQúìÔµÜÊ3ºpZEèi±§áÛß5?ê`å Q ¹up2Ä5Ê…$ì2OÐ9©¬G=´<ÓÂ^õ=N9o`ÓA6.+çe §§ó½…ÊMù¾œ(^Ó±\·9O¨ø8èáã÷¬Ý”0mÓs°[}À„&´»H´ãiZbádЧ‰¼.&ï™|ø:d¼/ßydFÀLlìÅɻՑ±˜½Šù箸]åõsúz2«åÿ0Ÿendstream endobj 1537 0 obj << /Type /Page /Contents 1538 0 R /Resources 1536 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1532 0 R >> endobj 1536 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1541 0 obj << /Length 1171 /Filter /FlateDecode >> stream xÚÕY[oâF~çW¸oD*³s¿DÝ>¤»i©•ª¢ªÒv…˜KÆfišþú36ÂÎØ1údŸ9ç|ç>ã›ñàÝ-•AFÂcü(I „ãÙ§!øêóø.`#ƒ± ðæïŸýðñÏâÅàãx@àOÍ^¡`’ÓÅàËàÓgÌ8¸`ÄŒÁ,0"ÆÐ`1à”U‹xðûà·-Ÿ0írº)Ô´¡&…¥rZþd—¿üp}=³yÅðŒVá}l'ÑC¡â»[Bv¶ng¦Bò#©q' )*YIñÆ+ûíÆ #BbDpøE‰ûÄ”ïï=RFŒ ­qƒWþ¼a#‰ñPR(ì¡‚UtÄÙ&%âj/ÝìÅuæm›¼fbˆKÚÛJy¶®ôö™ÔPˆ1¥ë ùì¢âZ—l+8Ì™‚CPÓÓ…ªéÅ—Þf»Þ¦£Õ$Ì¢üqaóhZËk;7ô yn×ßa¼^1Þ_3Ÿ$LQÖÛÓÇ0óZžD¹&=ãIÕã‰b@Ñ0ñ£c"{FSÝkÌ[=¾B(ªhº®ü,]C2zXTÍé¨~¿q‡JC生=Õº«’š×ÍT÷?¯çœ ‡8 sG&–Bìí8Q:®(À\£ˆœÔH¤ Ö]'ú÷ë£×”(É¿F™”g,“=!V%åIs­0N“ùaýNSgtZ_Lý'%_…Tàµ6LGoyÚÛòÈÿl³ú²SŸ´¢¶4Õcš³o'<ñ`övP}:¡¹„ÙsÍ;s*µŒÜ BpÿŒ$¸„øÃçšÐŽod’BvÛ-Ú³Ž£ë¤\H)©%ÝÛŸî¢E DŒÐdÀ†2sÚh=ÀÁ@CˆèHOB.!=ë€ýÞa-÷vhucAbX™‹ˆÙ·"… $MWŠÒËKÑ–Að­)ZÝf0˜B´gޱW’²K˜}ê€Û†M¥dzo§VL!9ÉE¢·c¯$´!]^íq·s§OÕ¥0¯ßé’&]©(ß5„õ_˜á×ܲ+·<—ïk¬îí> endobj 1539 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1544 0 obj << /Length 1077 /Filter /FlateDecode >> stream xÚ­˜]£6†ïùô.‘Ö6p¤¹™™lÛ‘ZÍv£jÛíÊr‚“ …ÉLæ×0„µMFí&~Î{Žíãc‡ûµñá#rMb·|¬w&¦çB #ˆÌuðuöËo«/óoë'Ó¾°k‚úwÃêWcµ6`ù0amŠ= Û.4·‘ññõ0˜O°lâcó¥|$™‘á »}9ŸOWE)´è+ÝWQbÔ‹‚²°mz¨lx"Ôôþ8_¸Ì\\G\Ê@hŒ›þœŸ‚äw–†AX\ôè«¢Šî«µ+µ~Óvg‡DÑ/Ôs^híËþU x àùUA\]<_&5Þ¦ˆõ”“/-à+þœþR‹–j }ï¬%ˆÌÁ«¢WØ_´½oÃÞlrvààgžþú°\þÄã‡,ÉóÏ|[„IÜXzP¦+7©È¡Óß%C‡Âúo`Áv”gyŽï5›[ ãhÐÁ0¶Gβ!7Šz[ Ò\¦¨#)ϲD¥ §£i‡•p›ž-C’”g¬H²î`w7‰Ý鱌³@ë­ šJgÐV쪙EGjÓm¥1 BxÉ‚‰…4úü\y|l¬ÏåšNbøž$îû÷¡,{E,è™go·»/MvLìÓã‚=hõ¨UÚ°l›œ MYV„åö¹•Æ)M– gÑU7W è»}« $YçÛmCš)ß…1§§8,rˆðÈ NÙñX+Ür=Ï«õ¤ñ)ÚðLó-ëæUš~ãÃdùž~®4‚®åøÐ6]Û¶\d“ÿ£¿XDzÚ8;_hon±¢nÙ1 ´Ð‘ÇûâPÏ»‚.£$*Ç|Št¤PŒÒöJå»Úò¦ šëR3it›ÄyAË2RµÓ"½]\mÞGg,Þó›‚Éé†ïÃX;¼ŽåQz½2úÞ rA¾q½h°£a¼K®PÛ^gÒ,ìRYz_ª‰j¯å½„“j•$Í Vt›ÒŸ8»äN3%gN›Ö¢D®U£ÃGTGܸÕÉ9ªÉ¨‡1j8Y…ãú“[-.©rêá~¥³]ãR£Víö½šå&A*·²T"H%›‡û˜iš%åiÓkÉ»Ùb<ЍÞçC§oOÜ¥ˆô„>åÃãQ.SW|E®É êÐn+³°oqS‘mØ~‰%Ž ¬ÎòA…%ŽÊö ì„jW_‰Ó6°Ö¢Wg‰ôD|ááþЭ†T­ÿÕòÍî*oÔÃ> endobj 1542 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1547 0 obj << /Length 1086 /Filter /FlateDecode >> stream xÚ½X]›F}çWÐ7[)“ù`ÆŠ_¶ÙM»Rª´±V‘’±fÖµ´C6›__¾ à Œ·UŸû̽gî=÷Þ«õú3›ÎŠËæÁæÐö#lo¢Ï —âå×Í­M8BfÃêçß~{ý©üúÞX¨øÚ¨ZK=@ Cöö`ým}þ íÈ‚ö­á>µŸŠçØ>X.&íãõÑú£³ã†œ¾¥«’&r{4,î1%¶‡‹¯æúXrz}CqëÏõ½†ø1L³ýöQÛ$>eÁ>i˜%éÏK‡A¸à¼Ú¬Ó,qœÒÚú!8„Gy‚•ÇÂø›kTÍfÀœàq7t¾@H”]ÀýbU‘¸Qxg­C4pøÓzˆÖðzõªƒ™md­ƒ ݯ×ÓæÌ¢šÜ–þ*ŽïY­Þ‰øú›ˆ³Õª³å4>…RXFÙBµ <ç¡5£H§’ëEBqÄ* ¢) ’ÿKƒ9I„’Ç +åºÎ’.M–ð„FJoásR… i>Íõ n6­ÊŒ¤÷M¤™ø>R³#/î%Ÿ÷2LBJ΋ `à|´zq#fSÙÕ1("5(‚ž>©¡>©™>™¡>•8£¨_¤Ñ³­Jô^ Kó®‹.ÝhãþÅrã/ê¹/’›o0øk¬&»ŠÎÛ&Æ¿¬Õò)‰ö¤ÌÍÜPÊJ·3¹49E|hºõŸa¼­„T¬¦VêGÛ½ØíãiÃ"ަ&dJö® Øp96Øko^JÃÖf1bÀ-Í >Ú0V%vžï\rÛPuËÈô6[üÙjT4˜¾Í܇é6‰d¨Ä¸(ìRõÁ!9ñÉ:4jÔEÒá<•Õ‡Çäi±qYd"*záé¤Ã¢!öýt¨ì…‰¥ äX7wƒíªíýž‚HlÃgqÖ¡¯îOÁ½:jAyldn”4r„T F¢7IžÞ‰m¯Ë©ÉŒ;öŒ“Zï¨?‚<àcØŠøÍ…Ì.÷¨4¦š`;Œ‚Š—‹éÖ?ÍÿÜúל²‹P¢/-²RÎ)èu'å89#“|Îh´ öÑ &y Óý0Û'c¬|y>¦û^ ¨ß›Ó$Ê·¥)© Õð“È‚¦ŸÓ¾Kä¹Mófû½#JÝ/dü™‚\zËÃÐOàTá×úÅ7˜÷pÊÂ,?ï kpïTí+çž‘Å|·§.½3à§ð(!æ m§½Ž£ÁàÅ®Ùm×d³H>!¨ýÎ5=!|è2ßXѾ#ÌŒ^b4–MÂæÂf2ÚQô¹Ö‡E¯&äß­íºj¾)3À=â—ó‚`|^=ë±–q]KS¸HâúºYr¼ÈEýp»Dt‘7ÿÐú‚èŠÂ•ëÕO'Âêîa‰é¢›åC•úöþ¹¾¾M¾?m© Â?Ö¤ýlendstream endobj 1546 0 obj << /Type /Page /Contents 1547 0 R /Resources 1545 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1532 0 R >> endobj 1545 0 obj << /Font << /F26 16 0 R /F14 69 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1550 0 obj << /Length 1172 /Filter /FlateDecode >> stream xÚ½XÙŽÛ6}×W¨o6R+\D-Fæeš™&¤hR#(‚FâØBmÑ•d;î×—ZMÑ¥i§}±^^ž»P·+ãõ=rLßò~Y=™>0]ZAd®â/³÷¿¼½û}þmõ`ÚÀ³qLP½· .ßw+òWÀ„ÕPâZ;ÐŒvÆŸÆ—oÀŒ `>À¾GÌô}dî áöaküf|ìì,¸¡…hé¶dIÄñG·&ùŽî?ü´\þLÓÏ4+è÷ç €D^Åœ›ƒÐò Q£KÌë{h ö!¿E÷Ç}ÔØ×rmÏmÜrE£ŠÂ¢A5aã8؇Y‘D[$©4DbݳCÑ¡± ýf‹é¨ž?Ú„éš–ViZôXþêÍFýìØŽC» biN³cX$Œ³/ñJǵÆÒ¿ –¹Ë‚=Ë“ÚPÃÀV1ˆé–4c¶/èÅ#¹~ù:“‚faÁ²jC•SJh<Òu’ŽÛÌšÆS`yòÂÁV9wå ±CZ}I°$ÖOÆöµ+jP÷ì}¦‘à!LTÆ•ƒW›ŒÒv´F D£„Öð7 Ô …`´]ËC Æ7oñ ‰eû.i ’»¶0ôzÂA^}þ7#üÅ€ëβɲv‘ŠÀu4h­Ê2‹Rw´Ó‹ÉÌéî\½ù$­òI!‘š:Jd玱kÆ\¼ªQ,R*VÁ£ã#Ä>²BU:Æ›:LôŒ7Jëå]SíùFM‚%iã‘åÉ5BÊ!°”³etÇŽ´+ØWÙ“À¢º'áÅÍöUlrÊ7·®ØÞt‰¼$w a”5]†_&—ý:`ø°æµ¬£:>…{  cÙĦƒ±å ìWÀcUÏ&f¸œDræR×Ê+€y¢ÉzSär-¨uú äîq¹”š‹r(ö-"ŋݴAõ¿Ž¾+•ìŽ7©pr“ªî†lU£ŠFÈGD›d¡`‹ªª7&zqñ[®ïáfE_ÀŠUÛ–_ÊMªôÍB‰g¹®ï¨g¼´ ¶¶zõªÃi[•›‰°Ac%c¬€ê$|-ª.)-¡JN¸ÚiG©[øS(vvñ_ÃÝ’«;„Ã4¢AÁ‚§$Ë…léþ’tŸ'Iw¢$½i’ô&JRÛ< :}¢0¯ÊÀ v í?K’å—<îÔ.†siÄöç £Ñ!Ë“ãÅkìˆòTZ:%Å&`'ÞiÒb^OòĶ[v ª¼­Gþ'zn¦’õšhýð0‡dvhþ!õ’%Kžð«' ªïžæˆÌÊEåCµaõíã¹¾¾eßÏkš¶ËÿµRë*endstream endobj 1549 0 obj << /Type /Page /Contents 1550 0 R /Resources 1548 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1551 0 R >> endobj 1548 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1554 0 obj << /Length 1195 /Filter /FlateDecode >> stream xÚ­X]oÛ6}÷¯ÐÞl`VIê;h 4»$C 1Ú]!0k“(M¢’8¿~”(˲MRÞº'Iæá¹‡ô¹÷R:_MÞ|B®˜Ë/«#†çBÓA«øÛÔvìÙ÷ÕµaÀ p Ðþ|µ¼XüÞ L« ä?¶sÏt,Q6ù{òí;0â 0®'À´ß1žù0a #›ØÈÚ>¤“»Éo=Ïœ͇LçL dBÀï‘câ7žÐzIðÓæ*§?Ïæ.S踭tN¡8Ž@%Y#¸Äa¤ìÑž]…O8Mb ¶¨e¸|Îk“8Œò4Mª$§•žxÙO€„k\ŽEçká *ó?GøZÃåcó¥¸íZ–²ÕøR ýÙ>4`÷‡íEڲͥ£yAJÌòò§wúà[Ü;ý²zØ®",$QD(+“(a›È‚·è'‹Sbú˜Õ”]¥ •3ôSjÛ÷™šýØkjì±ßÔá<ç%¯Îw§LÛÞÌeŽš”Är 6üUò˜á0¡$ —Ëq9UA"Öø,¤¤f¥f P2‡ï*_õ¿P¤V¥j”J ”þùF^’âódz³ËÅíâË*üZâ¢Ø™ÞE2)Ò)êZr¿a$¤u²<Œóú~—…®#“>Ä'”©ÀmÖ$ú+\“‚<1nNZ%#4ÚèCŒ(eƒK¸l…4üCRV<î:Iûôt¥ÍMyΑÁŠämPÉ·Oì"7‰Ú”Ѧø4‰-î@¡´­eªaÁ“á—nï¶T“Jï°­B\û?‹%í°ÒÞR”ÜjTHx„l¸Y ­!OÉ#¡ñòå`A×´}h®e™.²Ûù[Zà‹WÕø®í·)MecøWɘáªÿ?< F©Œä) v–g[gãì§1ïð6ò JB‘W d¥•)y%ùðÈbK‚Óq ïu5Bzip{¥má ¨”l$Ös™ðÚ¿múp}¦x–Œj£~U òWRæïË ['ôñ¬í¤W7á‡*J’Û®4ìvDšñªY öÍ'hß­dç¦?€vï=Ì3=Û÷¶/…JI"CçzOÇáòxÔÔøÑ”’—®D¨Àð$²š©‡”qc9¢ËÓáö°Oú@m¾(ϲÁZtP^ÍC~feƒøÒÂÔÁŸŽyÇœtŽ+ò1TKêMÔOøŸýs,©­£ð…to`8a{¦ÀVÅÛ·Ð1íÀs:È¡8×2-þ + øþý”XY¾ ¼ºÆ'ì˜ÚN{… ©Ü±x‰H1ìM¾=8·L;Çñ-jvǸº¾ûÒs0ÇÞÔl,ˆ4þ•l>'U†Y´ÅÞ<œ¢ •úv2ô¤W´ýttֹƊg·¬ßAïø5Ó€»9uš.öþ?GòÍÎÜL–õãŸìDç݇E× <Ëo m!Ëô~Âô  mÏmþBh“$$žÍ‘¦9×Õ,@Óšˆ‡ët¦u7∠tÎpf{â ˆÄÝà 9SžríCëGq{¿׋üeÃOÇÛMø¤†§endstream endobj 1553 0 obj << /Type /Page /Contents 1554 0 R /Resources 1552 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1551 0 R >> endobj 1552 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1557 0 obj << /Length 1109 /Filter /FlateDecode >> stream xÚµXÙrÛ6}×W°oÒLÅ ÁÅ¿¸–;ÓÆM4MgÒ †"!™3Ü B¶œ¯/¸ˆ¡”÷E\tî=ç^\.WËÉ›ä¾é;b³\>0\šAd,£/Ó»?®Ͼ.ï x&ÀŽêó6ÆÕÙÉb9â0`Š][4ÂtòïäËW`D`ÜO€iù6žÅ0¡ï##ØÈÚ$“O“?»ýŠ®sFå PÁ`k´uÛ²Å;¥æó êí¥Ð,²<­Ò‰´2úÞòñóÝm„Çœ¨B¿ºHpÎp"÷'rÏq"÷'ru"é-M8eë ¤%áy¥£ºQ’l›®(Óˆ§YpU›tLÛƒ–áX–é ˯ÑYN6AQVrW ó¨wÙH5Ú¢w¦-JãMó'Úéy¤}âz5ŒĂPéݾò ]µÊ º†8ΩÂsUð Ï=aïpAV&â™LôŸ=Ç›jˆ‹hCâh>X´ÿ¯ò³÷˜EûFYÞNš0&Î^ŽÓ:êC´¾ËÖù>!Í[H‹}Í7!½­vÞ8‚ K]+B*@›¡$OAò} 䨼 ,à9ûåRO·Ç]—îrWDë‘úâ{Ž"é·IRf‚šušP$ôáúFÏW]ïQ°Bã™Ú¤C¡qÂa»\MºuJàqUÜ»#hwcŒÏÝ\Á4ÆÒcðŽðŠ< Xü-è}í@–­3Œ^À«º†Lˆæ¡M\øO?4 ²³œ¥Ab)Q*ƒÐãÚÊa¯Û5=öå¼}+)bÓö]ÜB:¦v™Ë´ ‡FI¯ër€|þó€ °¬Ÿÿú×KtÕ~¢tLßµ¼ý'JhBÛujm·4«ÄÑh6GLÅØÔÛåÌGÓ-mîgO·í?¸Ù@|Á…í6G@Ôì­gOÅÔõT6»«—f{ï^64Û—ÿÙ0‰2endstream endobj 1556 0 obj << /Type /Page /Contents 1557 0 R /Resources 1555 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1551 0 R >> endobj 1555 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1560 0 obj << /Length 1095 /Filter /FlateDecode >> stream xÚ­˜[s£6ÇßùôÍž©YI€0™éC“x·É6Ýì,{iÓ CŒl3k.yçÓW ŒA–„gÚ'n?ýÏA::çÀe`¼y‹°é[>f‡`eúÀô0´\‘ÄÇÅÓÇàÖ´}`ù`4·oþ¸^|«‹À€ì&0a3Öõ,ׯÐ\¦Æ?ÆÃ#0c˜·°lîšÏìXÐ÷‘™²[ã“ñ±Ó™1¡Y_é²vÓE=7!`çȵM±ûZl’Ÿ§3 ÀÙÜk¦¡å».îómT&¯Mò¬#]Y”IF;Ä"°A*BÃ,/ÓhkÇ*udß7%D7„FãVì<Å]“U’‘1Ÿ£¢#æ2»C×82ƒí" ´~#ÅÝÕÅÅ'Z’(½ÉVùa”#5}‚×Л·Ðé¯öÐ÷èo`Î"ó> endobj 1558 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1563 0 obj << /Length 939 /Filter /FlateDecode >> stream xÚ¥˜Ýsª8‡ïù+¸Ô™•M‚A9wÈGµ#ÂýØž9ãXŒ•Ùª,պݿ~s "zBÞÎì†>}~o> ‘Q¢üîC55Óà—d¥šHX£5Y~ïLfŽûØý‘ܪ}4Ô5TTÞïÓÁÏ»Š›(˜ßB*.ÿ•4ªXM7ÊßÊ÷H]*H½U¦›CªyiØ4‰ºQúD?5^•Xù£öô¸¨×4~VIÉU•„7U‘c–ûö<ÏÊ:1¿O¨®ö0ÖLJÄoÝžPG7J®'×,ߤóC¶Ýýù^$Ä%wÃ¶á¢Øgé+ÓÖŸbbö%æ±ò"ïÝ(ž3 R‡­Þj­ŽÄZ ð¨U,Ioùõüx_°ÅÆ^¼¾>/Ò¿¾8 T: Å1{™óÙ`ïûù[ö/kŸŠqÉ>‹óý¿ÞÁ†¢ÜŠ™ƒ¢¶mÕÌ&=o—fÉlhý!ÖUC×5ƒèfËd}L—,½òý’™®vÄ,׋eƒkf÷ {Þ?êš‘˜a«lÛÆÔÏ¢—Cz²m2y±³øsô4Ÿm {;–5;†Åž _º“çU{ÍàÍ(…Ãv)¸ËXõa™ ÃÚ™:kµe 'Û¦òG|É0ùQ3Í%ÔæÉ³ÚƼíò¬Iöoù„q&jÄLhE –ÏWÉÈMf È磉!ŒŠC«©,Ó(¾säA‚TAüxãÞË-~à„Ž'gf£$úSž4³ƒiXl‰åqà ¶xS èõì&§52³4jÂÈ󀉓舊›}[žFC üqóÀ Lºü5—_Ñ›!ÒøÙSÿÿ/¢ÑçÛ C3úðô^k¸?0N?ÒY±Ø³e·G(êì¶Õ5隤s`Uã¶‹içðùZ]0ýFÑ·þ jÄ7šòÓªKhgWTò·lõñù£º:»>øñåÔýÿêqendstream endobj 1562 0 obj << /Type /Page /Contents 1563 0 R /Resources 1561 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1551 0 R >> endobj 1561 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1566 0 obj << /Length 823 /Filter /FlateDecode >> stream xÚ­˜[sš@†ïù\êL¥{pAr'ˆH*`§™LÆfꡎšæßw$Ä[ W€¢dP€Ä9C®å§fõl2p¬‘‹™Œ×¼O‹·×pº:W÷#U'ܽ-çÞnºÝ†;iqq‚F¦¥œ/YRX$…¤X:×eš4¿ò·;Õâ:™³ôæý ôË*ôÒ¼?ÛìÊn>XLƒ›{ç:7¯÷Ö UY"DeŒ%a5QßoD °Ìp¶¼}~Ââ—3œ¶e9“:—ëeé½ow›Ò{?®÷¥÷Μÿýnú~2™HÖ2{ß›<1 ’_Jsì™ô ¼Ê7øˆÙ´½\$ 2ÞÇ^*Gcµ:‡0§ï$Œœ•d¹´IóHÓõŒ1±›ƒÄSléõÓc—8½â˜ÞÈ6x1'dÄaX%nqíöGœj=Í2Ý&ó?Ć&ÆÙ;ü—É›ïËyö²ø•åfyײ —›UxÜ—å¼Ô¹Ýeï­à/·J ›gË·_~ó¿ô}Ð!˜îË~ò‡`»»Óyõý¢$ 1þúç‹”H‹?²È’ªàÆéëFXj¨‹ ”`]‘£e<\‡»é> ª5D@e³ŽŽ´ª¢Ê!Œ.«Tñ y à¡®DW@ͪˆTØþð|Ñ ·¶¾¾GÇÖæÏ{¼!? Â_ÄXðendstream endobj 1565 0 obj << /Type /Page /Contents 1566 0 R /Resources 1564 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1551 0 R >> endobj 1564 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1569 0 obj << /Length 951 /Filter /FlateDecode >> stream xÚµ˜Ûn›J†ïy .mi›ÎỤ¦µ³Õ„º¨©TUˆÂ8A2‡ÍÁŽß¾cNÆŽ¨Ã¾‚µ¾ù×ø_æÎ>|BЍKºÂÖZÔ¨*P""Ñò~N–sãÇô—u/Ê@“QDP\—‰~¸*–Ù% Â"•¨Á Ý@øOøù ˆžÄ{HX׈¸c A]Gb È׃ðMøÚpf 4k“î* :S‰ØP-E¾ìr'…JÈ®"‚Å„’®ÉåýMvþóSâÄ1M¤—¦3€ †°H™]ÌaÌuHGgú¡û÷LÔǤ£3ã$Ÿ™Ç£3ÓÌy?!IÆ@.r|7ò¸Ëùxsóií*Ñ8 mÓ 3÷Ù‹ïTú[>J$<ù^¯¾Ï4üN“Œ¾V@ˆå"\Œ^¦ñݲ+!uŠ¢p5À^¦·^†ë¨â!D¸<4*o9_|ù²<¤ËÈæ©ù†)£ÛK­u,uy\h½3ððØ⌳¬Ò·‡è–T ¸ ŽR1¼ä ?²ƒ(`?YØ9{sÛŒG©Øé:ùð}ülÓñdצ0å{®Ó.ÿ½åïúæÊøÂ[€+˜æíÊ‚cé„G&¹vsµ|°®¬ýìK—$ 1~ÿ‡®è®ú§HºŠµú;” ¬*…@¶³ÑÄɨ71çLØ[Aq´¦:šä´ÜO!™äÕR ¹!àFVË•gë)"“()…GËÓßûò8^÷Ï4¬ËÿŽ'òendstream endobj 1568 0 obj << /Type /Page /Contents 1569 0 R /Resources 1567 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1570 0 R >> endobj 1567 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1573 0 obj << /Length 1083 /Filter /FlateDecode >> stream xÚµX]s¢H}çWð¨U+Ût¾M3c*³ëF'nÕìE UjX@ûë·åKbšVÙ샅ÀísÏ=÷öínnfʯ÷ˆª–fQ~™-T ¨…A©3ï{O§ ÿcö b hTùãñow£?/”ÑLü!Pa>–ÁªîZù[ùþ¨žÔhØ2‰ºã7@ƒ–…Ôµ¢#\ÝÊTù£Æp Aéæ@“ šˆßËñäé÷Ûœ'äÁêBÍ"¤xý…%;9Oœ8f‰¶ú¥? ô0¤ùpŒŸÚNâg«5Ë|÷8£| ¨ŒaeüœµŒAüõv8ü̉“pÀ€•€šrîÊ<0<~fIÆ^‡Cæ-™=h§âg,q²(©èzA[šIx‚O xlá‡ì<…IpÁþq2? Kl„Ï(ìE›—€ÙqÂ\?åãÎ øe4=Ïì2•UTì¦ÎMì$,Ì.É΋X3HÙEîo“(M§Ìmhh`¹„›Ðc®³gÕȵŷuß»„øhË.QM"š"U™³Ýëè 1Þ¿žx‹q¸ˆªjBDÊV,qá}²ÏV¾S– µõã„&P:NóÀ>G‘W‘€DD¸aØN"Š‹¢ù Àð²Â½:Á4s2V bGË$¨”Ä!²f’4ÄjÃŒË(4º1>Câë¾È|íÂÕ¦`@{Ñ·²—Ï%Ù.H쇸.rK&ÂtòéÃÖ¹*öÉ*ÊŽ-ZíøK³|jŽóöÇ›ÔÑ 5¥É+œt¨ ©i^ìyÙ×úqI-¯'Qb¶ådöiÖ®Ùj·dÛªÛòLÌí›(=¦Aq(¥Ùõ%ZB‹j„P•b¬Q„­ V„Š4 ½Cö«ÅRMšýþ>ˆv%"9¶¸Ri7gþr•ÝFaæð­Iµ#ªKHŒKON¸dg˜T€Ö¥xޤW¼>âþlWõš•©1ì§»Z¶GÑtáÅÈ”” ~øñá/âä?i''Û°šÇHDz€ÃhÚ~ÔŽ%-²¢nÌÜ0pÒLxx?w.Ý7häè½ñû)×oHtX¸ÌV|ƒêŸ‡o!Å´sÜo-°oD9¥%¦.K}às)¢…Í^u°TsÝzF“úŸ°'=>M¿Ýɘ\¸&7!ç\ëvÍÎ,) çónúUÜš­l}6—÷Ñ&yæg˜útDuI/ïPXkÔ™ƒXïµ½vbûâeª*Öá0.ÏSâ£b±¬»QÈkëôÀ€$ÀN~ÞyÀ×xØæ_» {ÚÁË5ø–à+“ 4 1þï™@7å§0ªY6ߘ0/{Ó‚X5 uƒæüx,‚ü¸=@ôø~)¿ÎúêmXqóЇ¤·)ßâÉ€¡nw@Tü[ôéñšËor½Š¿/ûâz½î—,¬Dø$” 1endstream endobj 1572 0 obj << /Type /Page /Contents 1573 0 R /Resources 1571 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1570 0 R >> endobj 1571 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1576 0 obj << /Length 997 /Filter /FlateDecode >> stream xÚµ˜[sÚ:Çßý)ü3ÅÇ’,_òVn iœ@Òžét<Ž­€:¾UØΧ?¾&†Ú"ä˜'#³ûÓw¥E¨¿þCU4$CMËgÑEM†ŠKçGgr7}ïþ\ÞˆŠ¬K2VE9{¯¨ }+Œ–H^É"È\±&a¤Ñö„ߟ²è²x#È2t,î’,À¢'(•WX¿rz ¨W%õS•©„ÉPËEzõ3 y1{HÆù·äÅòB—˜ý˜ºÎhKüh̯×ì°°™Ùkɶ?u{ª,w 3ëÞ‘98àgèq‰ÑÀ¯z£Ì[®—5Ý_¶£«ªƒÂw˜ï£5µªøÐÔ:Ì|w¿ ®I8d¾ €š^ºˆ±¼É¬ªÆà©yØP5‰H’ã€m*n:àEý˜¤5`ƒÀß¶)óÛΫXº^x›!­nêÌ VÍô:³ˆl¢±ì*†ªV—Ô0¯õ )©ÄŽ4ÐDž®Åè¿ÖášBÅŠ¬s`ÔúñªjŒšää5üSŽÒD_дy1ª¸ÉáÁ§ÑZmÒòÐÕúÐVã,æ"6Ùq–FMÍOSu®ÖÓ½'Â̤G°$ÙuÐ\A¶?¯®®GóÑãÒüƬ0$¬˜¨¼ŒL?Ý7«]ïVd[‚Š2Ô'!=6ƒò5\(“Öe€Ê×6¿oú=ÚŠT:ö¾YZ¾ž iª©¼©Ã€WuÇ#‚B^Èõ9<¨r¶; šxa?»ÖªYbȶ¡W6RóBMºCû¡ÒMÚÕG¾ó•ìO=™™£›„iK+k®ãÓøEd±¨aøÁ Š?=É|w¥¦³á|8æ%áüÝã^Ò7bï¤Ê/ÄŸ'I¢¶KÊÀAÙÀT 'Ç7!I…È8àšqÝŸp]9†ggœ‚\›ÑÒeZÀçí‚’ê…ôl•*ÇÂ}3ðÌÍð Ý÷"Ðй6¢—€þº4¼4nZtØMüÔ¾Òm§úJ ’•ÌÍo]æy· bß!Ži®KÓ“úæä–½&Öv?yëÕXãLá[u¿ÕGăŽÂÜ_ÞÿÃý¿Y¿"ÓÈÛ9Cšk‹9-s³ÛYËÑ >޶_£QûÈñíçÇv‘þŠp¶hH}\ù|Ãûíx7èîËb~{~ˆÜݘ++ܘÔ7Ÿ,fNþ×èè^I—%úÿ×JP¿¸ûR%CCzy«$ hj&-9H¤—Äéö –;Ÿ?—]vb’nºwââœ?¾Âò•¢å#(˜zîBÜ X>ÈvkþñiŸ?‡Á˾(xþ{ÏÅendstream endobj 1575 0 obj << /Type /Page /Contents 1576 0 R /Resources 1574 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1570 0 R >> endobj 1574 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1579 0 obj << /Length 1069 /Filter /FlateDecode >> stream xÚµX[“¢8~÷W°oZµ2¹˜ VíÃÚ£Ýô”¶«t;»3S#ie‹PÛýõ!à¥1J7û`‘àÉw¾“s éšµO}D]Õ)˜ÏŠB• ˆÓùVoQÔøaÞ+XªU@òÚ~î}ÝýQë™5È_&k‰¦L¡2{©ýSûö(N (÷5 b½M” Ÿê:R^j-„³‰W›ÔþÈqš¨yˆÔÝÑ$è€&|ŒV4ÄZÊõŽ-7Žñ`ÝõÆSãö×F“P‡z;1¡ Åš&D*¤MùAøb{ØID %ì(ðìÐý׎ÝÀÈS òða2úý¦—ÜpãΧ¡½\²P]L 5)ÛØr}kÍfq^ œ¶ ñˆà8½5Ïã,6s¶Î¶Q“ë/m缩£m¼pma*µZ{k –íàÒck_ôγ×[#÷ $šÌê7¶Ãyy\Y, GãþÀ”a–ñ¸à:VáŸáÄ?V‹;È?+6våy½5óã‹~áIÞ{±åA6Â6‘èêå' ­ÙÂõœù—ßõžLKðÏTP{¡‚Ó]U«áȾ\I$s§Lƒ4„½ñÇŽì+ ]^¢&çm-´ V¾ÃkhÍÏs#;QU€œ¨ÈÕkÆüÕ5†OhDTª´>|©>íwãkµ…'ࢶèŸú°up. XÕô6§”ïàTèèðÐÄXmkÅÞ2?)@ήG¸3YÍöPÕ É¢w+oÈqÊG×u ÷’jRÇœ(€ YªBÊí¡ëÅ Ö,ŒÙ«•R•ØòFÉ·0:§¥ŒíB|x‚ÿ”w:Ì™—Ú£Vë*úü5Þ~£B+¥¢ü˜*ÀºÚ&üì}Ä&Ï‚DV¨ë«ð©èpXÈl$ŒÎôÁÔ%@nI&‰Ä…ìÌEÈØõô®R‡ ÔåÎ<ÎÏóž­2+O½UDð('ßAïýÙ&%÷Ëo9ô½`#0‰,Zö(¤iK[7aE¾bßY4|¼ä¾º²PË*Ü{*D¥j¨¤R£2•ººØ¹nŸ.UxMzƒKU´¢>ßÕÐÿÝ ´Èœ9<ïçÈy6üç »Æ@Dâ)ɽG1øA•Ïä¥d¦Ì/â›Àm×Ï?S¥W´—ï€þƒçeDIÜß“!ÃÂP3¢¾ëÛÞ$¶c–KÒ¢1¢Z› jŹà`›Þä ÚÅ F‹ Þï3Ô‹õ'$º¹ A1ÞÔêÑÁ‚K»6P1Äøãwv@]q³HU]ÃíÝ©#~êÖ!V4¨ò”IÃ<-vŽdNƒ‰€zà§O³¡£úŠ¥“û$õ•ø‡¤H:txâ%3 JGÏ Dê».»›$ñ•nÓççàu;O¿þw›ðôSx£endstream endobj 1578 0 obj << /Type /Page /Contents 1579 0 R /Resources 1577 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1570 0 R >> endobj 1577 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F14 69 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1582 0 obj << /Length 990 /Filter /FlateDecode >> stream xÚ½X]s›8}çWðhO×TWBÍfQ¨~_8K>X8Ë܆ÀÄúQ°p"ï?'ö6CÌ<æc}M÷3BM‰„ë`ÝñÉf0*ÏÇ –ËbÆF³A$IÉ[6ÚLNߦ*}±ÎáìvˆµÃ»b§²CÜÆ¡¡]ÀlÓ.„‚–™-´1[|~³…#̶:ÅÍk¸áÎóë°h4(·òŽš‘;úÓ 7LÛ:¬5íyÄùŽQ`©˜{îÍæñ ðcÇóy1‡±CÜícã jÛÞÒŒiº De„hL[¸œièm]Î4èoq®#ãÀáÎUáèƒ;"Ê[rûü{ÎeÉë's®:ô‰Ž‰ûûïäÎU¿‚9Wi rç*©‘:WÛè\¥ ÎUÂ×9—!ÉêÁ'âOŸOÄ;rŠq>™äüY]«\öÃã~ñO‘•ÈåÑø'Ÿy~#¿ÍŸÂ¼c¿8aQ)½‘_¼÷Ÿ}o {T"Kÿ*Wq#µËEÎùÈßûõòÓcñü3dfXEš½ÆsϹœPŸum^¼iÉžˆ„]ùÚ´¿Ý}Y£”eƒŠ¼–œizŽLyõÚŽ'ýç¤áÉIGŸÿ²¡>©7> endobj 1580 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1585 0 obj << /Length 897 /Filter /FlateDecode >> stream xÚÅX]sš@}çWð¨3•î»°¾ÅDÓÚ! “f&“qŒ¬ÊŒ X5¿¾È—JùLÈô /çž=÷ìî•.|!*2‰Ñà¢/DD…B‰ ˆDÝxêÈTî>ë·"f@bP„Ç?®†‡„¡.Àà!aø.Q$‚)ç¯Âoá鈆Ä[H˜©DÜ AÆø*È'ƒµp/Ü¥8½¨wŠ48Ð$(CC%b©]üÔQÈÁbB‰ý|ÃÝ­¹üå·»ÒêK·Gè`¨„¯ôrßqf®oÎ×|:·-ÏŸš>wg¾íæ%qgrÙï_skø‡[~œ„E9@–ÐYl¿ŸfëÏâœH‚Ï¢9`&©$(Ï¥µŒ=úlö— oP‰øÇ Üõù.yIFå|¢è÷’•\%3n°·¯–q´¶·1.a¹óÌÈYKÞ´:*­á_¯ŽcÏUƵp§/|iZïä ZeÂ_ߘ‰R£0¶e¼ÔótÁ³<êI­Åñ 8dͨ¤wJMRñöXÛ ™„J­ú¦i Š[MÒd³ÌdBuUóÌ7þirÙ¿ŽJôJm.U©¨žÚ0OÍ[+ ,ÌÒºIò&Tä’V«kÁÆ{¦¾wòOÙ瞢O¸¿² OšÏ“†Œæ:ðŸÒNq*BEбDf ›M±vÚÞ_™³¸#¤SùˆIäõ´ÁðbÛj4á³íæÕXÀJãhÆbl-ì!Rˆ*Í’,=ØŒÅÔ4`K˜è5žx%fÜ|¥$7e;K̤± ¥bO–fy=W—:Jy«Ï1–¨è= f~5¾ûÖ²é¹ëTÖ~doÜ>?öý””œzúÊåü,µ‚úÏ´ëûÉc‡|e+ µïÍ‹Uêü<?¶…«¿2[Ö^³×3×|›ù¦m%âcÚJ±Æ­Ë G—íÀ1-œn>¬˜®é™ËL\f× VEÆÎ[ì2…¤HZP<áàŸµ•‰Ë¤¨A"Â_µ¶QEendstream endobj 1584 0 obj << /Type /Page /Contents 1585 0 R /Resources 1583 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1570 0 R >> endobj 1583 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1588 0 obj << /Length 1005 /Filter /FlateDecode >> stream xÚ­X[“¢8}çWð¨U+› é·ÕÖéîÚÙqmª{ªf§,„´¦F.Ðn÷×o”‹4C‚öø`aàä|ç»äK`äj¿O‘¥;†c‰‹û¢;@·-h‘îßz÷ÝN¾ö¿»º † –Ž÷M‹îjWƒâÐáq*± ‚-¨û¡ö¯öí;Ð è0°3$ú«:ÒCÍD¸l´GíïŠg ˆu¦ÑA%A •H í\d¢áoý@atT ÅSD°>€ÐpÉqo‰­@ð3d#ƒÀ²¤,ã]]4 ƒ†jXzçT@,÷n÷Þ=Üfu÷Þ?ÜæŸÀ«°“§.·Ê/’zi›èÜØlŸ­™÷̽$¡ÜZ˜Fé&¦Š4fQ†y0îhòy|só‰FO”gô­`…x¨ˆô,Þxœýçe,Ž:©ëà*D©YÍÂgϘ¿¡¥täu5†ï—A4a[öÞ«€›­ÕžÄÉbéù?:ãñLÙjã(óXD«ê·leHRvn8ÎÊcAË©ÏÒs’xÿe!¨';e%óPU! u×É:ÝįqÚpòªnº° .,pQåYþH}ÆJi9ËvšÄ¬‘—ÒñÆK« C¤6# ·7™MžÜí`µœ»ÉüùþS…Vq·®_[1ᲯÕËbMºë.›ÜÕEÑ K',u¥ŸøI‘¼ÎÕôaC,òã(eiF#¿ œÇ<=g]!‰*Yº¢QpÝøÖó·£ü¬nÒ¾ž% ûÀ<^³MÀé©þÅN©˜p† ¹øXÃËbþ @ü`ƒAË0‡ëƆ%î^¬¦¦ÿ–¦¾H•eeÃ@&Kë˜38k’<¤2ÏÍÖÆúq1ÆŠ]Y&É„3L\žææá×d¬ãìÔNMÔ‘ÚV¸¢|rü|DÒ„^"a.^†Æª.À_Ùªh/§sT¶çTÕ±?Äé/mWÐYùþ<]×÷„ÇÁÖ?쿇+Ž*×?Ï¿L¯ˆ„ï¢]U.Š×1oÙ@5ª/ðÃÓ±é'LnŒ\M"HøñÂÕ68MÕ xèCÒÛOH~䆀ÓÎG@”ÿ{é#Ò‹y>8ÖEþw¹Ï¯·ñÛ~•Ÿîÿœé’endstream endobj 1587 0 obj << /Type /Page /Contents 1588 0 R /Resources 1586 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1589 0 R >> endobj 1586 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1592 0 obj << /Length 657 /Filter /FlateDecode >> stream xÚµ˜]oÚ0†ïó+|I¤áùرsIK×!ujר­TU(…²•%¿_>øÈ:J¶À¹rœàGß¼ ’»®ñù‚+¢©VÙà¾͈­€Jœ¸£Ç–¥”ùäö‰ÐŒjÆaÅí¯ßÎ{ù£çÝdŠµÒ¦R( éñËx|bdd0Ò7Ú‘ä-›0 Zs25,.6“WãÖ¸ÙrÚ¨]%usMÉßiòlj—–Ñ<™ ž½áϲ\ Ò ZÊò'—~tuÖéÜûÁx’žÍÂÔ B?þd¶c-®œbe{ïÒh¹ UìÅlßùÃt¶!*Y¬a{%.{×½;wp{Q´u€ƒ×߯niÄoÁx ¤“5R€>´­UmZoKý¹-ø‡mvy)|ìq½J'·&ªµÛšµ?-¨`M¸ÒªÓ忆ÿÖ­bO©[‰Aœ0ÝŠ®4‰¡>]§ 1N 1F þ"LRóÑ!…‹‘ÂĆ)a"¤„û?cp<ã»q9N £ ·ÙgL×¥ 0þ$2®Õ¨ º{Œ.hE¥TD Az‡•8¶©ºö »Pѵ‘ªëàT×Aª®Æ)ƒF*C‚S†£ ?ü“êB‹Q†‚;õ–!B¯A’"D1MâB!r,F!"/Æ(DŽmVyP7^„‹F)°Zì)ua˦°uºÑ´Y§›$§´…£ 6E¨BŽÅ¨B’ziópßr9Œ âøC® ¨»>ŠSTÛÂÉϸÔÑ ˆ ,[¦_üнÔ™m.Yk–£kjÞšûå¤o‚lÍ×Od9€ìHÖ±ìrÆðòêÅä²5‹ËIqŽS^>¯Êñ|¶\ýpÂo5Ë3`endstream endobj 1591 0 obj << /Type /Page /Contents 1592 0 R /Resources 1590 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1589 0 R >> endobj 1590 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1595 0 obj << /Length 827 /Filter /FlateDecode >> stream xÚ­˜]o›0…ïù\&ÒÂüùèe×n]¥M›i“ª pZÚ@< iø÷3qRHŠy-uWÄpüœóÚ`b.çÖÇÏijC'ôäa¾´CdûvÁÄž§w“¯ß¯®ÿLïç·¶‹1ÏFûó®ç·g­ë¹…å)dã}Wæ;ŒzØNrë¯uwìÔBö­…Ì~‘ äà0$vn¹„+ë—õó•3“ YŸtÙ¦dä,%‘M_…MµYTû”Xž%ŒÚ3Œ1uýGS?fñï2‚—^ä:¦3¡ ehßk6ØMa£!.†¸l„«º­K÷RtîÝj¢¬Ð»ó]œ‹¾5 è$ÉI|6ZÖ­7µ~ÐÆðÞ ÷ñÿ™}]Äe%²¿Æ¿ËD©oøJNj7£ÃÓtªÕgÉŠ¬VÚ3Þ ¾a{\}†¡»Ðe§zÝ]«Ÿ¨Eׯ÷4rOž³B§P~Éš/ÇY²^ 9~¢I㺿`Ü5«8ü¸œ<>Œ[> endobj 1593 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1598 0 obj << /Length 995 /Filter /FlateDecode >> stream xÚµ˜Ys£8Çßù<ÚUkV‡Èoñ‘ÄÙÍŒ3ö$[55E£Äª5Ç ì8ùô+s™x@x7κúw«uÀp¡ý~‰LÔ”—Å“Nn™Ð "}áýèôM»ûsq£c €©ƒôñôËxò×þ…6YhP>:L}‰elB}ékÿh?~ÝÓ€~£S›è/² H)Ò}­pÑXksí®äô$¨W% ÷2 ªÈ„@Þ#‚u É+Óûo¿u{&LHªZr 2ÀéûÏw­\m±m”& Ö„\m²Uö±]þí—f¯H¨5¨ÚdÀ•/Ü‹•;¨~½SÇðÖ,ÑÒâXcæÃ^EÍ^“w„EL˜Nßy˜~ÁÈX•¾vMÿÑ[ú°ŽwÍ¢ÛÑ`pnÄ=[&¡ÈAf]¹ñõd6¹_8¹ˆÜšôH5B†•V°ô¼ÿÄ â…?ç¼C,6ça$ç^Üž•8žÞýqVàåèú¬¼«óÐò¾›Ï.FgÕwÿaZµEÛ$X¬cïf" y ¼ÐwâÄMXÜÆ¾bÁdËʥ̶•Ügv„íƒmzuzG.Р„d{O˜pQA‚²Þ15l"·¹wÃ(¼4¢6Ó¯ÎE¼ä|抄/׬X@¡E›Wét”¨Ìs½1aÏå¸ñ0ȱnñ_†B p¶K¶÷8!'C7f£µ—é°Q >ÊØ÷XâòuQé477 BLÝÄØ0¦jV¿–„ÝGmÐ^­ÃžÊƒç,ÎJ¶˜¨ÃÃ*~žH7<…å„-}d\îøµ9¶sýhÍœ÷öÆrYôd©£Y» ßþ2o3TÀÔ,?Ü2çÑËÐc­)?.¿ÐÏn;Ll–q•C¹õZꉭ‰mP|$ >Vc|%'òKQs^ÎÂY…­£Öt²n ž'>ÿƒé†FʼnãƒeL"zmÆÐT>e”!n×®ÿ9ÔÇÏÁFgÁÊmƒ~ê6] §ª<ñÄ]ñ‰—îšÍÆ—­e=óžªÛ:RÀœÉ­q•M‚Ê CjW˜wÆ¥hÔü±!ÆÿýR óŸD¦A-lïÿ¾`„ ›B¬[Ѐ}+û–«üþHͼnOi:a]]Š:–5nºt6ù’] 0è[Y ˆ²»§."Pd4ÅÙíãkv‡»×gIø9ÓÂöendstream endobj 1597 0 obj << /Type /Page /Contents 1598 0 R /Resources 1596 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1589 0 R >> endobj 1596 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1601 0 obj << /Length 951 /Filter /FlateDecode >> stream xÚ½X[oâ8}ϯÈ#HCÖì>¶¥-•–ílQg¥ÑÈr™Mâ¬Ú²¿~ å"À2û”رÏwüÝãë‰õÛ¢¶çxT?&SÛ¶K¡CDö$øÞo‡uLí>8€P”ó}ê³ÖpbA=lXn%®C0…¶[ÿXß;°€ýh{b¿ëp ç!;¶ú¯‘õl}ýÄéi Þ&ÒuÁ’ –HÝŠd&ò’"ÔSˆ`»¡ãR}|éï7WWwr¡^„ŸKõ¥Û£t(-÷€½«'s%ÄÖrDÊëÕÛBàŠãQ:ç_onTîE2|I^#ö£àá^`xØàW®|ˆS À…»¸¬ ðWyèG¢Æ†1‹^ÿ"T.>V«±É(¯‚Ç,­ed-t­AF‰Ñ4çáË„}Sçû[,…Zæ…/°†9¨a×z U ;m–ÑÙaÐ$ ·ëHÿXÕ93â‰<ÓM; jÄDF]5Ãܰ@œr?/Š$EÞ [œkÃ$]äl‘„yåøS§(µ)ÆEØ[£×˜Øè6’åËÔì8gøú¡øl…]`Äþ¨k+k[ƒ–ä$IkÅ2Öñ™´Ê' [/ c6~—‹$ÐIÕ—Qf:A50Ý©î;.ÀÛ/—%¬NÚ*h?âÉf<Ítä­šq³^F°‡áŸßF÷+)žYŠŠy„ÍüŸdÄUø/ßhÿvMú)Úv–*ù³}ýTØ9W³“Ý…šbüÿ‰ïOÏ|]t˜µ˜"Í(M[¥h!«F²IºØ[Å+­Â?Û&¦|”ÓöK¾m¿ækÐCýÉQ\×LöP/ÆÕN.!ȨˆÙ†ñâv<‡f=4OŒÀ›~É¿J*³°)ø¾ܹCŒ/¿ܺ®o.©ã¹x°º„ì»´dx¿úßêö}˜ò9éz¨³Õà± IgQ!Õ’+®ún5B¢êmÚE¤#U5(_½¾.«ç­üXΪ‹ âøÿ0Ž Ëendstream endobj 1600 0 obj << /Type /Page /Contents 1601 0 R /Resources 1599 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1589 0 R >> endobj 1599 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1604 0 obj << /Length 1014 /Filter /FlateDecode >> stream xÚÅX[o£8~çWð˜HÖ—Bß¶ÓtšJí°[4ÝÑÈ¢à$–ÌÓ6ùõëH“NŠSÊj_&ø;ß¹ø\8­ß/‘kûŽïêK8µ}`{.t‚È“。ú?ÂkûÀñpm°}<¹½ÛüaC ê‡À†Û½Äsv¡/­ŸÖ÷ÀN,`_[ÀÁþˆØOzèûÈ^ZC„ëź³þÜá 4Ð`é|C“ =šè{D°í!}ã•\¯XvóéììjŒ¿†ô^FYÆäoý @zp«ÇV:>!åΜ)šIž*ÊÓX¤9ÏKãeR ™o7ÝWIœ|¡¥ÐZ˜·{@ý6üåí¿î'Ÿ«·Fj")bÅEJ™Tì™)}fiIÅã«I¡ã€;12J±¤¹ŠËO‘0~d©ªà}dPB²(á録Í&:×+& 9°ÕÒÛ–“t*jc“ó8Z°àâÒ¨@L÷‘g0OÎgËH[ÐÛ[#ú‹W‘ÖÖwMNÖði´Øø:fyNyb4Î{=ðJBJùyßLk&¦ÚNÊl£v'µ’ #ca´Q[‹õ1’¦¬PR§„®ÈÐQŠØSCãù)ôK²@‡¬ ¿©9S‘‘L ‘äëh“î곉½S i6çæS:ü‹«”,rEt*¢Ye¨öU¡A‹RŒPsºÔ?LæT§d:¨*°3"ºK¢b6W¬ªQƒ)Ô¦H½¶QÍûM…dôßûè ;¥W¤ ›êät!hžÿ,å±H˜1Ä/â©B&¾øv^ÈžQG;–c³Ê¢_u¾uºp :'1©‘ä&ÊóVíN­¥ëâÚ.ÆŽ‹°_ãÇsÅép.;`Lþ $‹y®#甀ÿ#9¯yç5ñ‘!”sÍ~·µƒU÷ ÖñÜév¯zxRUj ßZp5Ì -(üýßS0õ ÿüߦKÞp`‚•šó¨êd\:tæ*&¤)ùlþ6hÆS¼K.2°}ûwÊ8ѾÑïd”ÀÍüÕÛÑövµ¹©ï¼ãËlQÅË‹o]x¬·ØÌ-j÷ñåžéQŸDª"íß—X5ê¼fT­23‹·Ð‡ô fÍÑ8”µ‡¯È/ŸÞ6Ê»q¹î<1Ü}¹ oÆMO|VÁ¾`ÂÆ,qÒ0Úœ*àIø{ƒè«{#à`ˆñÇ¿ëíW_]Ç÷ðhóY#ìŒ|ˆm:pè¹[z»N°?@ôtkµ½†}õ V.®ûôŠêR^ 9#àlè•+ *ï¦}DzB–‹­½ÊÛ‡Uy½Ï«Kk#ü .x‹²endstream endobj 1603 0 obj << /Type /Page /Contents 1604 0 R /Resources 1602 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1589 0 R >> endobj 1602 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1607 0 obj << /Length 1185 /Filter /FlateDecode >> stream xÚÍX[o£8~ϯà1‘6Œ¯ªÕ>´“¶©¶Óì–iW;!œ)H/óë×ÜRBmÃtg¤} ˜|çœï\lûÔ}8G–ᘎ%îÊp€Á,hR‘á_ÆóOgM¾ºW¶ ¨e€ò;a°ø:š¹#(>–¢”™[ÐXîFÿŒ¾|F0ÆÕ˜Ø±©ñ$À„ŽƒŒÝˆ Ü ¶£ÛÑ=S¡hÚÖtZ°¤¨ÅñŽ(6/¬¢zɓ볓“Kî?¾Ìãè—ÉÔ` ­’¨1…µÈBÓ±I%“å~¾ÏJ€ôÿZç~š‡Ë-oÔ"TJ)þr¶˜Ý¹Þ}ê' O†´LRîï¼0è%s["çÑ*®#ªs±‚_ò­`’™Ëe-„-©ÇèÍŒÕà‚É;H»—to3&z-ºT†Ìöë5ÏrïÁO—qÀDÖaÇÓœ?7ht ò“^ çÛø©ÖFMÁÇûôŽ/ó¸)6ËÖ ѳ4β[!f #z‘Ù#òë`=ö»f‹*nй%Ÿßrð"Xµk16ÞúiøÍo…a]ÝMÊùQÔ‘¥c~ÏÃõ&?‹£Ü#þ*£÷³ù']™¤Oáº^g^ëu !“`@J™¼¿ê¾«šÞ±Ø¹|—\(ÿ×”’ÀÖ;ܯ{žóÔü47iÀÓŸéDKæÝ6Èp­ÕÓ’e;Kg±µdÖTó.¢ÄTšªuu'æI!w¥0YF¢Êº˜À-olÉ®„ší<[lâ<Žô:çÙýiœ½AõP¾æù&ŽvfGËøU@MxFÁ"ü›§±^iRçß}IxÖ"h™Ä†Ø°06-„R"剦Ÿ£0ïâ;~R9ëC^ØñRI¡/q²Æ¾u²«Sí£ÜºÄ9&ÝÃØKðYœ„¼D%T$xµ{íêgPâöÞÕ&T1î dzX¤a”Ÿî×mXÉà,³þÖ8îIÄâ%ß„þÛD%ƒca,H‹Ûp—lë® Í‚ªXt†± =,Ên›·ÕØ€Õc·jqŽ,3…åWè@ÛLS|žûj5ʶƑ%ex;H‡uƒòpµð½Ì%º);¼ÙêÀ¸¿ß|vÕê7OkþxèØ,žk÷f¡£9¬ =*—Ô²­ŸsoSJ{yì%ÁZ~>ŠôüÆ»œýy?¿h"ôvöÅ™¯8\7;A6ÈBÑÕ6±qH¿…8ßx;ñ#Ξ^àïE‹QozUæÀò¾¡õÀWqÊÿ'ÌÄvÜ—‡@Lëp+žaæ?l¹® ‰ç¶/ƒˆ#7Ns3õk9º/šB䘒ڥu—äo³æˆêJ4Sl2ÇFµâß$Š™Éˆm×€æ ^ïÕ64 Cò¸6ŽñHç6‰…ônáâ–Œ5nr®óŠ0ÓF€õyÅ:^ÕÛ¯CMÑ;–JB«–p¿ Ÿ%—601Äø¿ß¶Ö––é0l7–Є„Y%— ý<&SDÁ8Žª§;qÐxÏ«ÁÕÒñ¾þ‡VHO(8!¬!Qõ¶š :+t9(“W½>¼TÏñóËšGûÿë8ˆÉendstream endobj 1606 0 obj << /Type /Page /Contents 1607 0 R /Resources 1605 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1608 0 R >> endobj 1605 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1611 0 obj << /Length 1136 /Filter /FlateDecode >> stream xÚÍY[Ú8~ϯÈã ×—ØŽÑj†Î´3«ÞTÊ®TUQ†xÀZrÙ$Pfý:7 iƒ†}JBŽ?ß9ÇÇÇäzb¼¾ÅÌ@0}™<ššœ!@1ÂæÄûveq<ø>¹7‰€@@ÈL˜ÿ|÷áÍÍ_Ù ãfb ý#4Q>–r@ CæÌ7þ1¾}‡¦g@óÞ€€›š?ôHlú†…Iõ°4¾Ÿ·8C 4ÜEºÎhR¼CA})19Ö7¼àúé)](÷ÏØ"3Ç‹Wƒ!ƒðŠPš‹¢rÔ! ÊG­|µQù릷}1¡È‡} Tš”––•Â=ÜÜà'·÷lJ”U$×Az 7Ø¡7RzîÐrÒQé¨ Z¥Î*SÖÿNFïÇ£ÑÝGç­ nÖ2HKxd‹?•æ_ÒXºþ]ð–Ö˜¢n2ÇѨq¤Š1 éµ>w’¬Ý¥òœ-̉Ü8U³¥LZç8’p %z2uÕr4R‰ãÆ*]øRyõë(J /`ˆ;¦ì͆½¾Ehw3ÇVYU~+LöVúYXGû4f 7nÔÕÀ¶¹(ñ~oÀã€[6/ ªd‚¥³šÃ¸&/\=,e¤…€mÔ[UQx†LŠªÉŽˆþ™D=.C7m@$ØŒÒÞšÊňÞ}iME TФ $‡ÙuE¬Ì=½ëÚ–u¡Ü[†ÁüŒë‰7­§μ\RΧuaqø ëªØ¬‡B ÒˈKa|Îe%þË*Qó@z£–ú~ZÀlØK¯°Up„>›f3Ü[`Õ é ÓýÊErr_as‘äš?´YoUÓ) ¶6¼H‚î l)™§†4†ð²YÚVel#¼ïV‡Ê†0#h_ãtüÇûŽn5þ¡æe‹ý³¿ÆG’õìoÿ¤ckÇœÊYÆã0XË8Qa°s‚M'¸_í[Îr£tÖ›µp¹&L—5ÆLFtêé o¦B²€ª€OëBl¸+¤2+'üàú²él€úMš •GKNRG¥2vµ—ÚÏ-g¾O´ñœ4íÍ5lŸ¤¢QG«N“èˆBÖ( ‹:êAwRïCÚnôzË4®Y¸›Ma} ꃚѮc7˜ËÞ±?"»â0L L%OzsÙGœE;8ôójö>j&çAÎUp¢ÿà‘ ‚x;'"ý(}:S Q :ðúW7ô˜ì> µÆ'QÿöOÙ®t™ÞŽßuåêñ›ßñíøë¤‹cÈR¾ ÒvÄžê6}|µiWþ PuFªåæÿéŒ.-£ô¹òôÀ¯7‘,ÚiF*UCFHW¸3 å³€¶Œ¼¹ß®²ÐÚ÷ú0ª}ž°! ˆçغ.¿¡0 8±ó38&Àˆd§UÝe³œ›®YuÏ:kLá•îÝòëd ðÕJ÷Du^<Ðâ‚èˆÂ‘Å‹' õI(¿{`z¥;ü!¯8ÅíÃSq}nžæ2¨œð.Œ9endstream endobj 1610 0 obj << /Type /Page /Contents 1611 0 R /Resources 1609 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1608 0 R >> endobj 1609 0 obj << /Font << /F26 16 0 R /F52 151 0 R /F11 22 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1614 0 obj << /Length 927 /Filter /FlateDecode >> stream xÚÕX[“š0~çWð¨3•&Ø·ºu­;ck+];ítĨ™Ê¥ûëAÔZ ºkú"ÎùÎw®É¤í(¯QmÍ&âáLU¨&F©Îä[£÷þmçKó»ó¨ÀÒ&*Èߦ¾}«tŠW@…¹*65¬¨úòSùö¨¨ ÐtÛÂêZ,€m©b ½\,”¡òqÓ@­c¤ö–%F',‘XšÉQ»×:9K(Þ"¬«-5Û2Hþ}¾žÑÕ«f‹Ð€¦™ ¶ÎJŽ(›ÍÓû(L=R^ ùŽÆýû»»ù DŒW«b\°E t[³0 Ršïï@u æj@.?ß‹£sâë\<©u¬KÃΊ†éÍÆçÀ²O”§4+Cl@Yˆ»NÿÍ—›$«ë ?÷o´fIH›tμ÷â˜râ‡c"å,¥—úžGI2¤~Ê¢p‡lòx_œ›ªµêˆ»ãø —A­ï:ƒÎ“ãîâ³7ªµàGA ܨ5Ðûà¾I|ÆO™¿ IiÃÏ…ÖI  e×sÚæÂMŠd\Ý%µåàÒpâ.X’²pöb¿¥vVÿ4²m/¡÷ /9(èÏJE¥|QT¥´mÔ:œ«ºBs¼ˆüî˜ÎX]þÊ.Fׂ‹$Þ z²gŒãÚB+fÖ0åÔ zªñiæñ‚ºÊvdÖöŒ˜ýI}³”‘erÄ£pöÀÔÙÄô’âíd>Æ&´° ~øñûBš¡[¹`VËí!Zò'1D¢rY½WLPYK9sNé‘M…¬Ø’‘N4¢]×ÒícÌÁdÚ §Q‰‡ÌcûåéåÊͰTËй”™·dp±ΫX1 ­çl–¦·8‹á”|Æt^íá8Æoâ×*˜ÜÂ/±JÝÂ{ …™fR6ú>ë¶Ì«,¨F¹¢0‘PƒfÑË›jÄËzù¤Š/éåçzJ(ÿú?(«}m÷Þ÷e€¯ÙlGà8$«©_”GÛcßæýÜiꄲÔËóõ–›˜Ó˜®R±ç§¼¾Vò“˧Q¯[FH]XV”gNÚ-(»I›“ù:øÔëwdþK2xrK`M‡ºþòK‚# öî&ƒh¶¹Ý¥‹;¨AÃ,6@q‚¢ÜKé¤ÙB4Äy%:M5–´X<6!n,w_pñ€øƒ;Ã,V@Tü›6nD¼XäÙ/þŽ7Åóm”mf4,Ýÿ #Ooâendstream endobj 1613 0 obj << /Type /Page /Contents 1614 0 R /Resources 1612 0 R /MediaBox [0 0 595.2756 841.8898] /Parent 1608 0 R >> endobj 1612 0 obj << /Font << /F26 16 0 R /F52 151 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1280 0 obj << /Length1 751 /Length2 1036 /Length3 532 /Length 1587 /Filter /FlateDecode >> stream xÚíR}8TYÞHtEÉGYd7É|qÙÑV;ƒÑ‰ÃN˜Vf¹ÁÀ f%ý(VRF(&ÿ ÇëZ‚Ó bX<&†4ݤxiú¦ÜºŒ²d¯âÎr¹¥º4ýJÓöZõRFÿ½¥soPõ×Ö`ÖCFÛ6ásö=ö­d¢¸×¼Ž·¥=1ˆ¹ý;£v‡ÃyAºƒâþ°µ.¶µÌ–ìx¨YÐSï8xÛn¤'®I§ÊïÛ­ÈüqÖô²[Ý/†“£S:z5úûQ»ŸöA ýr°u?÷ì¾ü|À›,&5G.Ì Ë1ט·Ü½ý½š»³P }S½ll&Ë!^òCÄÎ^  >È]ä®géÚ=r)ü±0ïbeŸõô?Æ_|*ú¼IgüqíÎz9ðÚãŽÚVògð2æ\°ú„Ñ÷Ž»+ã¦:wwWç7ïM˜vji[TSþbC¼,j-Ÿûõ®wª Ï<9ÐÙU3ÓÏèwÄø®æGVZТ“Ͷ×}9öÌÎøéF!s˜'“C™ù}:o¨‰' ú-Uè½t¨ŸÈ¼O’9kžkŠº®zYlÞÓSeuwðLú, ~Å6Èà¥álÓõ¶Çû3Sžî¶*yž]âã¹võ´~³ß+ôc“Mv&îÿîÎ ù¬À/’m1¯kÙ­½[B‹u¹ cCµ|eÉMí‘mçF…žjqg%³êžsòͧ˾íÉ̾=VtÉù†Ž5Ž‹lÐöÜ–3?ί*°,Z@H Ê#C‚%ó!Ùó6xþœU÷°#$X˜srÇüå÷-CG¯°;7”vdÈÜÕ*– ØU^ŸntI$xí’æópœhÇM¸Þ2d¹2 ‘ ®Îz·KÒFü;[VÔ´ØÒã:êÇJ~}w蓮ú[Þ©‹(nËQל¸s!Ì·qH·W‹”&˜Mؘ*¼˜åûòÖÙ—Ž947ìRµ[ÖžŽÈ) ·ŽÏè°È,ÿé+Þ ‘µ2Hju´2ã¸fÏ,‹áö؇¢ŸW×ÔßoöðO›1PÚ%RÕu›ÔæÎÙ¿³¸éîÅ»uÛ&ÂæÿÅìå:×Z>Ü/}–„ø^Ž^( çqL}õ;y£Ã:κf©.𣋞¢Ò6 o—Ð~n+®¾jýe¢wµ±õJ½øgÆæþþá¤Ëq-ÓÜ RQ¹nûoGÛòqÈ©‡¨¼›ýØ2åû±´eÍUð­5E§d•ŸäÖu)Ë—÷ À&îxFæà®Í‹U6öÉÿšË:yÓͺK +{wzÝéÛìårÀXç!åo5=o6,;ué ažüF Úò|Õ%—WÝ;vfn0çXtÚ/&ÆQÚ«…¥Çwۦĥ›TcÙP=˜¦=<ú X»û¨×Îz/:R¯1š%t0\<.cW·©ŽžmM_À¿ÚôQd÷õ½ ©è+Ô¬DsX°Òa•ûmf¬0.OÑÒ $&°þá€þøOˆ¥B)HBECãRŒendstream endobj 1281 0 obj << /Type /Font /Subtype /Type1 /Encoding 1615 0 R /FirstChar 62 /LastChar 62 /Widths 1616 0 R /BaseFont /YXBIRV+CMMI9 /FontDescriptor 1279 0 R >> endobj 1279 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /YXBIRV+CMMI9 /ItalicAngle -14.04 /StemV 74 /XHeight 431 /FontBBox [-29 -250 1075 750] /Flags 4 /CharSet (/greater) /FontFile 1280 0 R >> endobj 1616 0 obj [799 ] endobj 1615 0 obj << /Type /Encoding /Differences [ 0 /.notdef 62/greater 63/.notdef] >> endobj 929 0 obj << /Length1 751 /Length2 632 /Length3 532 /Length 1171 /Filter /FlateDecode >> stream xÚíRkPW•:uQ:€Ð¹€@$æ±Á5B„‚Ø0%“JÙìÞ„…d7nJÊNAªT´Ö¡øÀ ¨Uʘ)ÈŒ ïת0•§8Š+2>ê£ØŠvuœâÏöW§÷þ¹ß=çž{îùn Ÿ6A¤$ŒahN„ŠÑp ŠKøHP± T±ç(†ŽÆ9а0(³MÅ€T.CÃ1TŒÕÎR¦ T«$9PZ K8 âp.Zx 7ƒ†  g¥Ù â'l Ú ›I1‚¢€¤ ‰¢‰Óš62@>»Mf[_A9µñ¦€€7¹ðI†6Û ˆDÃðwAÞÉ¿aj®xL¶Ù¬Á-NygHoÀ¸…2Ûÿ"0k6YÇ¥çR“ᬷ8HRÙ–¹¨šÃÍ¡¤MfDèZ±4›([ • I-ÅÀˆ›mpfÒä\+|z3F$ñ1J݇±ÂÙ®Î`Zœ¢¹D»ékòL¾®ùŒX*è¥b©å‰ü|µÚ:ç®M4Ám2lÀY·#R^J†a MÂ\syÃ1ÍpüÀ'“Œ ‹8›¶HÌŒÉÙ œ!o¾%*ŠÉÍñÿN†¡•a2 _/Ëÿ‘ÈfYHs3¿…OäUm¤ø!Ì…22ÌŠâÌŠ¦’3›j.ý¶dѳþú;# ÚSš ŽPd~vLçgâNNT5îíòÊôŽ%åžì·>eš=i«=Ï5–ž¨KùbÖ&þ1ÁË^TúÕ’Âà u×ö¤ƒ•;ÇV„·±7ïX3ò8 °ñ1ò—¨ÔšÖß® »z„Äâ¿\>rzÁ¨Ë»^öÑÛC:õÊ6xfÏñ±ó—ÊØT«ÀG½/öåøú‹uçJú k´Ãâjï+͸Ggç;ªÅô’Bo=%Ê ní[ívÿ§g’òÑ»ZkÆ5W×ùº›“Í·Tãî­ˆ²jª¿RÑ‘…­Y«:ËÓÎ¥-îö?:ù<åF2Œú`epdaõÆÖ> endobj 928 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 /FontName /RFAQUJ+CMSY7 /ItalicAngle -14.035 /StemV 93 /XHeight 431 /FontBBox [-15 -951 1252 782] /Flags 4 /CharSet (/logicaland) /FontFile 929 0 R >> endobj 1618 0 obj [770 ] endobj 1617 0 obj << /Type /Encoding /Differences [ 0 /.notdef 94/logicaland 95/.notdef] >> endobj 923 0 obj << /Length1 750 /Length2 628 /Length3 532 /Length 1167 /Filter /FlateDecode >> stream xÚSU ÖuLÉOJuËÏ+Ñ5Ô3´Rpö Ž4S0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22´26áRUpÎ/¨,ÊLÏ(QÐpÖ)2WpÌM-ÊLNÌSðM,ÉHÍš‘œ˜£œŸœ™ZR©§à˜“£ÒQ¬”ZœZT–š¢Çeh¨’™\¢”šž™Ç¥rg^Z¾‚9D8¥´&U–ZT t”‚Бš @'¦äçåT*¤¤¦qéûåíJº„ŽB7Ü­4'Ç/1d<(0¤s3s*¡ òs JKR‹|óSR‹òЕ†§BÜæ›š’Yš‹.ëY’˜“™ì˜—ž“ª kh¢g`l ‘È,vˬHM È,IÎPHKÌ)N‹§æ¥ ;z`‡è»8ùùø¸hCb,˜™WRYª`€P æ"øÀ0*ʬPˆ6Ð300*B+Í.×¼äü”̼t#S3…Ä¢¢ÄJ. QF¦¦ Õ† ™y)© ©@ëëåå—µ(C¦V!-¿ˆ ©–& ú9ùé ÈHú(Ç…é'§üŠj]]K Cc#Ks ³ZuÉ¥EE©y%àÄ ?-ˆ©©©É\7¯å'[·dMßÖ¶²Îuñ…U¬úœ?O¬}y“ý@ÄŽºÙ™)µÁ¦óÓK–¼Zøhkßañì‹^ÉÖS…‹¶HöúõÄ}Y$¼fkׂeL÷ëݯlîšÆûO[ý•çá°sZI[í/z<«SYçæåú<óR^8E-Þ÷ýÞ5n!­ IZJRæ7W°ße¯¼ûüêiEÎæyÑA÷·'ÄV/ ?czÍóÛëTéær“]<–·{²TBì¾ÍÓ> endobj 922 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 /FontName /DBNLLD+CMSY6 /ItalicAngle -14.035 /StemV 93 /XHeight 431 /FontBBox [-4 -948 1329 786] /Flags 4 /CharSet (/logicaland) /FontFile 923 0 R >> endobj 1620 0 obj [833 ] endobj 1619 0 obj << /Type /Encoding /Differences [ 0 /.notdef 94/logicaland 95/.notdef] >> endobj 1621 0 obj << /Type /Encoding /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozenge/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] >> endobj 787 0 obj << /Length1 1606 /Length2 11562 /Length3 532 /Length 12416 /Filter /FlateDecode >> stream xÚívePí’-ÁÝ]7înàÜ‚»o6² îînÁÝÝÝÝ5Xð`A‚‡Ë÷™9Sçί™ùuëîª]õ>Ýý¬^ݫ߮—š\Y•YÔ d”Ùƒ™ÙYØøŠVv&.Î {yf1­àÝÈHM-î4[ì%ŒÁ@~€&Ð 4ppØùøø©â w'+ K0€N]E“ž‘‘韖¿B&îÿîy¿élea yø ´9ØíÁïÿ틪@ l ˜[ÙâJÊÚ2ŠR:)Eu€Ðèdl Pv1±µ2È[™íôsÀö€)ÈÞÌê¯ÒœYÞ±DÆg ©Õû5 ›)Ðá/Àèdgåìüþ °rX8Ûƒß{¬ìMm]Ìþ"ðn7ýMÈÁ ôa÷î{S9ƒM¬À€÷¬Ê’ÿà ¶4ÿ•ÛÙêÝ ™¿GšL]þ*éoß;Ì»lleï ÝÀå2̬œlÝßs¿ƒ98YýMÃÅÙÊÞ⟠˜N@ c'3[ ³ó;Ì;ö_Ýùg€ÿT½±ƒƒ­ûß·AGý+°3ÐÖœ‘ã=§)ø=·…•="ë_ƒ"co°³ýÃnæâðᆵ@§¿D÷×Ìп“06ÙÛºÌ€æˆ¬Š ð{JÝOe–ÿ=‘ÿ$þ_øEÞÿ™¸ÿªÑz‰ÿ§ïó¿BKºØÚ*Û½À? à}Àò€¿vÌÿklgeëþ_Dÿk &ð ÿ+°ñ{Dí-Þ¥`caû‡ÑÊYÒÊ h¦l6µ˜Û¾÷èo»º½ÐÉÖÊø®åßm0³³±ý‹OÍÒÊÔÆþ¯¦sÿô7ûWæïòüÍ›UYKR^Añ_·éßQÊ廙ÕÜÞ‰ý[ ³ÿ8ü…!&rx2sq˜9x?x>²>ò²{ÿÙþ†aÿçYÁìdåÐ}/™ýïÂÿíÿÏ“þ¿À|¶7™ý5%ª`c{³÷ÁúÃ_nS'§w=ÿ~×ß þ÷óß#ºMW—A¦Ÿ‚¬Ó2ÒÁµx9Óºý½ìPÃÁ% j…ù~Õ ß´°m¾ £çš`–Æiþ×6÷¥‡—}Y†Ÿ£½¸¶´=)ÀóC.«ªÊ5HÇÁ ©çFÖjžæ{%öLoŠíº±ž)˜Ë~¿šÿØr–7.»èÜ‘¬½C˜C®Hµ“_ ƒ™ª‹ÁÈiiFÁãÌÄ¿6ñ¢2ªƒ2Šð–l˜é/Bæ„î+H×^œÆóÝŽ"¢ñA­%×s°pxµa0åÿqR$¢Ÿ¯N?²Z$ZNêçúÚŸ)c‚èSb¼ ;oÒ-¾@|½»<‹©"ÚÜmLæ¼÷^¿`èš§„»«B”"¿>ð1ʨEú˜×xñçÝ­m¡)5·Wùëù«åB µFž x¾I·²œÔ @]°CúÐ\ÄØ6'Z@,D„l1£óbûUkDf.½ÇÖ¦-(Núç7d”¢‚B¯€r÷fžºèã=LšÊí¢au¬†4‹”ýæ§È„]ÌÔ’a3ä¤@éù¥ 0Þd[ÆíÃõÐ$ bÈm¹3e¼¢úÛ¨mÝF1‚¤¹¶=q< -X &¹Ã-Ã.Ì.œtØ,ó¢Î,.G¦‰¯±ßFÈ]© ëi§E«–‡£+»Nô3D]‡™,¢7[CÍN¹Zò ŠM#±Î3!ÅÛï/œs‚17Î^·£e1c9åêFÐIP¸â6{7¹ã§ iêNHrçruÖs%¹‘&ºãÔé?i¹qæ0ôæ¨öñòš®øi=F“0 æS9áŸ~p†ËCŠõ4GD¸ê§ø1ʉ4rª–=@ ¥î=‚¾Í ÿù*I•Ò0‚ËÖ×€Ôy·âÜdùs䣘õýõO(¬«DâžÉ7ˆñ¦»9këó -û€j›"á‘¡Èõož]b´#eÙÈ8…qÃI8M!SxÃöPŽ‚Úç<àžòÍâ;Š&¾°Ó¥è‹·Ô/£Èé¨/U ø¢¼‡>4e¿E»ÀVu\¨”‘5‘…¼ ™ú´YVv$¹vZAcêgXDÏTˆÜK¦­Œ¼L×°ÅE²Y´Ø‚D?é'(×Bªâ˜¡¤0Ú| Sõ1yÓÌ '±Ðd’ÆÓQÓÖˆ]Z})âÛ%3\‡aïò]Xg ÈWAãˆ^°!˜cëÝ“fx¥¤¿s»pÔš2(³>2”‹µ8È2í áæñã¨!SÛÑï‰É´/F@*Mè„|~åAí«þBNiL.-§ZÛãE§åŸ åK99ï%3»yŒÝ‡®ÔR'÷‹ƒMF½úI2¤ÚXƒ÷‡‹‡‚ŠÏ3í"GsK©ÒAeT1û›_ÖW9#ž”gV>‚8Ù¾?L‚ÀåèLŸ~Ô7Û;Édþ˜Œ;QP§yÑyóŸ•»®®@páˆG.bRøÂèçBÑžOŽYÊqmRr›¥œÐ,y&•Ñm¶Iò‡AWh¸vÀ2ARèCHëSP:x¢éªÅËy$z;_(ôÜÂÔÆâmßà"÷×aÝŽÝÈ?}Lµó†0ú¦zFôx1Cr—cŸ7ÈßzEö+nõaUØ@M×ÃP‰§èšñ+´Å2¬’@hŠCé8ëL|èB ¿ôé—Ó”Ö>„D{¤¼] Íš@O[p7ùws„ù¡Å B„äBl€â6ºPã]RiÑëiÈm-|Ò"S– Si¡Á¸ü¢oXkJÎt[€ï—í°¶sÛq¿aü>%  CŽÞTx¼NŠûI0Ž2ßW÷Ó¯Ì$ÔŸRc PôqνÔx]ýj_ºq[È¿Ltèæ¿»Þ,œÍ@ZÆe–ýl0Ä'_I¾}0ÉóeªæŒ‹^•÷ XËÛ’ê¼³&þ¾`)W÷›LOš¬þö (}Xç™4ºT”NªGrc¯ùK°+í1Ï” 2¥ÜŒôµ¿”)ŽNª“<µ9’Ï}¢ ,¿:Msy6Ž#g *ц†Œ&® ê<bèJ#;$nòŠ&RÔjÒ‡ùN©Åö0™jŠá…“&V¥'•Ã/K¢Õ‡.ÒúÔ§4˜o/«)mwŠK ϧ¹ÞãÆfÃÉ8/“Ö%õ„RaçFÆÏ¦¼¹² !ý >Íhõåå´’„"À~T`yjÁ[³¯anr‘Ò1¢°épÜa‰äÁVÄ|'ê²Å[ï +FµÔbÌ ™>¥y-åmñëcÌ5sBÌQ, ðÆtìüç%shꨟTК®?â–xóMe¹‰\¸?-I:š”"ÿþ+ W–Å‚~-¬~–K ïj„òÅ_Uµ4YŠ·ë±²’Ú@Öy,‹jW©3ˆ}ýIm'J'pÕƒ­À½,“z¥~j uUÙÑŽ¶}ÑÍÎ3Äñrb’²–³ú¢Ç᪊§å óˆEÜW¡ ]§YOFÌÒaä©<Š™DµÜkYê×N‹†f#ÙKk q¶ À±Aû–G?IFØgg¼34Û‡7z¸tŸ¦°ãjAnôh«×R,ájûòþ]2ÖD[â[í!œ‹à°×‹ñÅŠ"ÓÂ2”¼õ¸Ï¦¸¹ï$ø åÓQ>ǦLZ]®bâž³Go¯0 ¹¥?g4•oÕúPìÆ|Ò¹Oü‘yž‘†±SÜH…²#ê³¶ÏÔv˜š³FÞ9Tþ¸ñ¦Ø÷ˆ‹2¡Üôzo¹ŸÊûJ.ÄiÈ[>=óƒýuØeU%žé‹Ù FØž£ÝÊö¬(ÆÍÔ:1ø©ó##{´‰»?JÏìâî¡1ÓZŠÞ< z.~!áö׋ —LÓÆ…zåšÑy‚öùâ4­ªT§àŠTÝ´æ½õŒ%˜=ö¨¬¤;²Üí~¦ÝeË5= >»­’µ´ž s#«ôË»"áh?w€wâôJ?üQ<Ÿêr3™¡!mˈ–·’ó7ìruÍdãe0µ&Éi´]EFŽ ëdbÅF¨Ó¥ãó•cÛ*(zHÖHen…QHݪùtͳ6ÿ<ñ.Ž)'Ùúpó$¡þŽ$KYë®Íõ£[ç¿ç”ÕŸH™O.f/‚ÓŸZuÛßáVå4ÇØoèõ¹?…I‘tU©OÒgvp~íãW‚ y|³Tñú&©ìi%Ó¹ž%áBÖ‚ºt9Ù#ë2¦F¼{š´ò‡¨Â¥áêX7úN>¯êKÙV»Žò«Þ9þ‰p¬^q°%D´‘{,L+KÎÚKLÿiPÁª¡†uwª…èwn}ÆÓ‡õìÅqÃpI¡?³SËQ‡ì„¦_ÍQF†CÕõ†tV,Ö² ¬¾›¼ô™0ß7ÁÇ´Ô÷ÆD02udʽ†Š[°¹& üž¼âWHü’³Ì(0vZeô»FY—¿$2bÌ‘h²uùH3ôKãTɯĦǠøG¹ddÝݲYc¾ûp¡²ä,¢âËÐô•Œáùwý`óu§pz{É /x3o,òzhð-*¯ä\o:!¬Ãk¹Û½¨ ŽÂ°cç„ôNµß¾Ñ ”ª—±Æ ,ÛØ˜H+”zMáÀ²Ð_0ho¦b´ ñÁaóÊ(‹Ùl[¾ª;†˜è• |wS{eÛ©¤ŒŠÑ`þ\'ä¾öþä†1Ž^ÖÀÜ#ïØ_Ì®ÿ†‡Ž‚–/¢’*A²ûùäöÚsÚcr¼4yRz ™æs·ñ’ÓÖg7jRf™¨Cr4F;.ë.WÚ¬uÉNYrSà)K¥“³”¨r*Áíø¨m13½2Ì¡U°ø\ëEËß¿ˆg€4þ7qLGAm³vT84Ñ´Ïqg&×ühë©ß¨ýÝa’0ÝóîÕ r¯8+iÌÛ°är Å¡ ß™½Áå"6ÐË&ƆáTH]„šs¾õ0ÜçGÄ-¤â¤\ºIiбS%îFMÚhB*ªô†Þ"FÑíÜHk8øO ïb1 kÆ,ãÄö`¹Õ4`³>Ó½A“(h‚G//ƒáó¼Ä]d±dæÐU¿³§ëWa^]zÅ[<ƸŽY'ë̶k‹Jû¥ë.Åêßê}_äÇ(³ˆ-ûLq~Ñ]@–9R¤HãÎÖº„ù5ÍŠî–ºCàe›Wx‡À5"g»_‰Í¨àW¢T‹9èÓÉ2£p.¬F“Ú‹¬ÿÔ©’gÄ%Bä—E¾]ÏÎ m2•Úa¶q½©`Öꇄl¹ê ë*SãlÆ’mÏ9ë”®ˆœRN©aiè_ã“b_ßk–Ñ!Р꟡}oÞ0å‘q·’™/é4ÝîÓÿix1#ÐÊ”x´¥Þ/ÉðˆWŠƒŽý˜‘¬ÃGy(„§öèIû¤]|ƒ@™™KËèÑ¿Iü¬²R•*@„#Ïü+Æ“)‚>ôЕéM ¯ÑãCö©íÇ%´:lërýox"LÞXæDQáhÒbôÚ»¿VÞ4òÈ(¡´œC…úý…L>Œ¹óÁæ[¹‹šv‚cŸtÏ“©ÏåsœÂÀ¦þÛ¶J\ú<¤6¯µ×r=|Ïkõ÷ý[²fêÝ^s`X \IX½ÑopýCÖ¹yX,î”kI‡`8b§Ç$ë^˜|YØ%•YBö Ë)\lïZ/¹Œ·cÄ‚GûM;ÇÑÜÃr5-r£L³ŒoñªŽºxÃÃâ4Áøn/RJFʧb:ï¾¹ß!ô®8zä¦;DD¶K f.†T/6“ÆÒÙÃ>¸a2©Q°Ï­µÊØÙá'dæ'\ìb[ÃMòöÏ“û’¿îžþ‘7‡>”ßÍpyHp ïQ=êñB¦ˆcîèzµB1.kŒßbeÞ€[á5Ö³lRÁp/ï­Im= w£=ù à0•Ü|äÆíÆ6^ã("1qöý °#à& JH£PXÍVÓïst)“üäb·½…vŽ›¶“RÀR–FçwƒoÂüyØÇ™`Lƒ/ܽИåžÇøaŸlÖé_³§·çÞp8õÚÿ$ßõD¬ë€mCÕè²!•xdGÕ“xMÍÜÒÄñF7ÒØÌscp)=r i1­kùÒG“Áú9°þÉ['&T!ò£¶”N²]wâÆëECŒ(öâÍ£áÕúˆÚM]¢Á—æ¡-/ÅG‘›P¬ÃWÑ{GнÆú¥]vWé‚Ñb†iDÊ#ì+¿/âÕÕ*²õC»„‡‡O•¬°ù$ÕíK{%M \sªwJ»rÌ%´ù°!ÀnÀrNžA‚lÚ¢~›·°-â|#!Æ0\VFŸJiL險0ÝÇ:hÍꇊlÙkyG¾µtS Ènj lYu–ôjwú‹‹Ó’~ãš?¤>àÁ”˜›|^ŠvËYGr\Â5DÍíáÜç&=\ y]ü\·œZ$BÞ£¾-%˜ñ™ÛϧPçÈææ‹Ì«a7Qá¶c<§uylB¡áiþ dH§Æ¢öÙüžo8„¿§P*K+­Ü{«ó¹¥ši*5à;›"É·'ÈänÂä2”â´ƒßÛ@”q„ær(äÊê0~³,ðgœõ×â¤Òò|¹w1È>wg‚#ç°]W»Í÷æW3o£ªÃÏM˪ks²þðŸ3Èï½³`øòpD¤°Òù “rÅ»ÁégÈߨ•ׯ „ê4>\Ì;ççn¸EOŒÏ\ƒ(dLZnl(kòs|Tvœ;;{!½ök³~vuOœÞ;[瑦o ¸)\Ô¹:Xº OW`…{ºÏWcq„ÅêQeûƒ…î«Ö€ÓHÓ*`Çe»Z"ÃÞf¿ú<-1â.D“1E_›!)m¬ ç d{£ôßZ‰…ò¥bç5€g¢¾RàRså:È€Ì!:C2{h¹ÓNyýBÙÓšÆi0ûÀƒ2·Prz“•nŠw·„¥Þó'§Ë.ªzÙâŽå-uäNòÖø†ã ©Xéƒ7â¤-rÿrŠŽ­<(SÏ‘©ãŽäcšãÖîY^tåí"‹ôdn ¾GÞÈŒ |:oÀ¹#â…pEÊ£í’ËV2¢Ä®×â}Áð3±ÔUö½î3“Ûû¼“–ó¡”<Üm[†Ð&ù%l‡ž—@M- i3np’õÛâZ5ŠW-ñ‹ðñ¨aseÛƒDû µÂ“êŸgDÝ1æ2BZ„´ˆH…MK mÄhöGƒ!”LÅÆ,”óJÜlŒñ Ý;oÔØI£Û=ÒrˆÔØ}ꘫR£©ñ¾ö2HºÏ¤;„ûßÖR "¢lT.èA‰9€.y…ø©æ¨a0SñìNŲµR³$^µRž sþIÕó¤­[,7ŸzO°ÏóÏèbÙÇOØÈa3T˜ ÐÐtJφá]±SƒÖŽsDÒÂâ j/{YÙ<(¶áq¹`ëÙK1 `‘ä¼—”ë±^O5Î$Τ—ÈöÃfbð]–vxÚsÕ!t\‚‡ÝVêÒÅ-i6& È7¸ŸÌA›Ò&ƒ<.\]asÇkb» %/·7ME¢¤ Fö;Dâõëúµ•ƒ)þö@Î4‡ì¾Œh¬z'Ãcÿ'xŽþÉEäß>åò6 F„r}UUcLëa1ží¨è²&º gha{¢.„8ZÖß6°ìâÕ‡ JŒ»¸añ†‹~Ø÷zóÜã픑>+{œ1¦Ü'‹ÃpBÙÓàŒ•ÁvÕ¹=¦Š'ùJ XÄ*ôt=>Í ǦVGb›6ÛÄ’Mûªð| ¸¶UY½Gt¹¾ËƒxñÑõÝ=¤zi ~Ó~JýXoöQ©mwöúÚ/2t!°âÃJ°b9TO&,Y†u[Ó¶Z¥·šÊÖŒNJÃs“”Юó‘ëg\ù ¼¡–^ic'q4cš~wÖɉ>Íûtk ˆUNç‘Ë~p’‹éN$Ÿ(A;6ÿm—êM­ó"­ëtx‚Û슾**ÌæfœŸÈª=R‡Ž×^ý»Šmy ò.]öð AÍ÷áÕ³Ø2;g–Šm¿Äpc.ÀµufšÕDM°(å}Ã!—{Ž7Ø(‡Êg¬RR“5Z÷¨Ì­“gtÏúö\¯ß6IF[ݲx±Í‡]NbþF•úÌZÒ@ÖhÊÚÚÑ«¥œ=¾Ê冓!2I›B_Õ!C±¾}×…±ò®,ï­):•O`úõ’âKG›_n ]ñ»_ÊŒ§áXm08,€àQº>!vQš}Yd3ZJsj—¢p½H€94è×ñßtäS„†UÏ&y‹…ÅòuU8 ÝÈ¢¦A_ä5Øù¸¸{ç÷5œÝ›­x¹¯ìß’¨ªægnmèHáíéëÕÄR_úƒµõ0YäK÷ö<®»L:êC¤µÞòª¢Ü+Èhx F0Ú8_[p¸nŸðM0¥¬ª¶¦—æ0ù4õŒl¾¾dtr7ž/<õfåøYÀò(©¦h„¦øÐ]/d¿o¯H¢-ä…è‹u†Ü§†hNÙ[@xø}àUÕ+™ÔQÍ G*Ð'^Âlã-¤ úz{€Ë}ßçà(†X;˜õ§Nb³æ ÈIüBÆøc(ÉÄ~õKÞÑs…ä (Ž€¤Qõnì«•8[7šò\B$Y0ŒZú%îF%™Œñ¨®+bq¼ï L$ïî*àw÷C¯Ûù¸–›V<6ÁøJÛ¨ù¶ñ¼‡…B1V7Ï^'iöáÃ×.G]†ú_?2ð1Aß [~>+x!NeÈÜt©Vw³,èYA‡ã~²3€dªfmÙD¯#ÿdê^¶ó*›šjû³ð™úX¯™ã0y%öþÚ5»A ¾ã'aõZFPaÉí6X±q¯`œVjehSä%-`Ò¹²·À÷ Ê~CN‡èOó› ¯!øé+D[±¶ƒwF"+ò1µC;Þ"óšÑuôÐ÷`ÆÝz;ÖÙcåB%=þ!ôEuW tFDÇÖ®«•{*Ýún&vÙ¢2“}z»޽l³  +²8•³kT—ৃ_6Éà4ìSÁ³CÅ[ñK‘vgë¤ðI‰ÐT‚(H’ˆƒYSAòÛjX¨WßNnìݳJ ŒÙŠyâEŽ/Q_ÞÖÜJЄlõ¨{Ô®3Vmí=Öø?óá.½ $¥€$ÛµØXfÚš.œ”¢‰¦oÀ?gNyÑds¦Y=+í…ÁØû¹xœ`)œ‘7" ‘ï¿/¢g9]IŠ®%Ù`{zqÕ)=¯Ã:‘ÊU|y •$–å=¼'µî‘ÌFÿ°B9nË«Ðí#ßž/ØiXˆ&pž²okOλ|48‹(«>DÚ󌯼ÌÛ}#À•¿²[”;:ÔÈt 2Œ´S>À´Ú;¸P¡„Ÿ…=1уn–ºtgDð!Ï´0>ïºu²±8p%ég>ÑÖÝk¢Â8xòf Ì—¾S2˜|2*Ã@v/úÁÝ»G â³uÖ·F§ù„F¯¢M™œ’ž6ì ÉèÐz‡UÚ¨T:ïÌ ÒœgØÝÔïMúâ~["ÏÁîÆXBm/j WÂþ©ô܉DöU,ò²0~ÊkT°¸Uøñ~ßUÕ{$??àW£r&è~o¾»M¹Ä‚ÊðRýStPçSç/CxÈÆÚNãa‹¯ìFE«B2·´s%œqèQËÅ'3™¹S° ]¡’ FAN‹ÎðÅPª`UC å>ޡ޲\äåâ–)R ç:"Ú5~SM§ Bv[]r’fŠžqœ‘‘óù'Ž„)UŠ!ígwånÃgBo“¦ír%è=¹ŒâæJ$>«Û¼X,mSš`,î§ ñšì_(¿#ÞÈ5tÆ ;¬ lgѸÎËÔ\ˆÝr&uÔmS‘-ën>Cn«16š<.Þ µ›”€òv/GÊÿ€î‰šƒÿõÄêŠ&äÕ—†_`éˆ<9v130|á.:ß ïõ:èÍPbÝA¶k @ZÀ§ÃÃD~8©‹áõzJ²M*W@¤Ûù±‘q8²WótKG¶‚x+ššÝòIyÓYû¤ëc`CÓy%ŒÐZÔh(‚‘d¢‚èoÍÐÐ,é1¡ a«ã¼cméÓì±Ób¸þ ò³ÞX&Þ(þ’µuat¿Ð  l Š”•ÍV¸iÄr„|Oàx‰ âb{øÖ½êH± x²¿(ÛT™8d¯¸WÖ…Ö`ˆZj0-' -àç‰O±ñÛH‚噀!ùƒR}4ˆ±Oo†ôrú(î¥f …S+ë-f KL©vØzd›°t@«ÕÍ#ÅvuK)2V¶Æ)xZ˜1Àá«:U#§¡Ø‘šK g³ôÞÌÇ ò}=²|=ì#5º OÞLœ´•ÃPŒÅIRü2íÛ‡RÞ¤—£(áõàLl­*\­OÇÐ)áK WÆgVÞkÉú‹4‹±³¯ŒVÚ8«õ‰þÖv"¬´kØQÏÞ‡ñÒ–¬—iâºÔÆ5n æªi:ŒGW\ëÛàïÎtÜýlT¥IÛã1tÜÈšI²¿FÏðŒ;vT›¹.ãl>ýã£TëYp+½H‡ãš …6ô›:¨×íÛóZŸ s½Gl»o÷3Y¨âkn--d)î9-ãÐK%„$[fªæ‹ ¤îó5aʘ£„¾3ÉCk½.™hŒÁÝnêÆ"ÄÙ=oo2zwÚa0j=½Á( Žî²Ù’`»­Š­'>q㟰ðcäØL3 “jßÝæçYý•›Aj®çaó¹1fÜî4æ˜-¿W›ë«+ø2n™¿f!Oa·%»$›V }foãÃ’BvU#¤„•£P=|5N†õˆ£´ë¦n4øÌÔ©G ÀbÏÒ·mò“`3vø[‘á%`Yr#ÿB åóÝCKŠùÓ†ìöFáh·IíÐÜd²Ç›ÿRešqÞE¶±S–Ô.Ÿ4¼2£Þø^ËiÇ¡Ë%_SÞ–a˜Gì™)Œ<ŠøXu‹œî0~Fî„[–çáQdl,i&á÷zI­‚#`Ç™ÖB·†2•ßõò[ ¨£©HÈZD,d`,ì5Ñà‡’[Ÿeó[ƒÐBÀ“Ò6éKªô"MU^‡Q«gß"¬ÑÙ9ËNÙ8õ¥Íéô ›Wj ùöÐÝÚþ:xw)8Õ0P¹‚Ëã¾oÔ¨`ãƒÑ?V׸h{âÏû„iµj&Škžc_K*ù Õ7¶¿Tqùß "q\ül4‘½›Bøqm3°,DFI AÁIXÔ¾=ÃÏ de*äBR,#¼Õyœxá•DÃíNï…_\Ûæk˜Ó0á¹Ú‚èí ›ìŸýKFs?rq†-1¹¾¤'7èÑß=€ÅÛèœK—.€­grké²Ô¢ì¡/Íï×÷@…º²ÝÆéÊIõ˜ù®ÂAh ‰Ý'º¾ ÷ࢭ‚frP«”©ß+Ïä>Ô2§ÞowºPU”©Tån«mrˆûøåq|³–¹œîL±Ibõ“lѲÅÂs!Œz³QJjúÄË!m:é˯ú9ó .ŽÆe™/ P– ʶwYj!Â.R|áÞ6êý7dýv'ñdš!FÓfú\M±É³ì é°ƒå×Xz9åÒI½fqJbI:Ê·…¥9œª¼æ?t¹Ziì“ðž"Rñ •ÃÖ-QtzWß‚ ™ Nu"ùØÉÅ_0¥²Ù„`©ŽKР¾yz'¯Ø¿¾œôƒáJÜDI[{´t dŒø +Íi â¹Y·[EéI/ÁÊÏû+×&š©zI;Á·Øcý ÅÉ ìå¡Î¿gëÔ>'Bt»¢¾}3Æö:¯‹ÞŒG vÁ­°sܯ½Fê“Êà=踭³°Ã?‡hnõצîŸ|Œ íó,¯8…ÁòËs•¹È¿²òØ¿Õ&uc=&M”‡xgìÈáÖŒ—:˜rªŸÓ´E¿ÙEW˜Ðˆ‹çš“ÿ°Õ ¥æ@]ôámg·¸kÊ‘äÑæó£¨ÖÃnéÁE.G'iSOÓºbΧPÇâ!eY"-k.^Mu¡Oª#:¼â˹u÷oƒî³þ«£Q¦Øî^~-ÁfÛ`ÛNqeÉðç ?\YJðEV ºFÌ=LuåQR|Ù{óJ3‡Y>LÔsN·(²CÄÄœ\ÃA-»@Ä|ÞÇ#÷]ÊŸÜþ hƒ,L*OG0!©ïÏó]ã 袇©p í~ßÉÜ õ!’¤«„qãºà¡>®–ÏúÄî—dk#ÑLWqNPè5Ák- ‰s’›øÇÂÀ\§KsQ½XoÝôj2Õ­çê^§Q?§qͤÕÔWð>sÀY££Žçí¯4ÃêίSÚW Øx2¸í*ß5µ­×±ýˆÿàÿ S[ ±dgìdƒøHÈÓ¤endstream endobj 788 0 obj << /Type /Font /Subtype /Type1 /Encoding 1621 0 R /FirstChar 40 /LastChar 122 /Widths 1622 0 R /BaseFont /PXFLMT+NimbusMonL-Bold /FontDescriptor 786 0 R >> endobj 786 0 obj << /Ascent 624 /CapHeight 552 /Descent -126 /FontName /PXFLMT+NimbusMonL-Bold /ItalicAngle 0 /StemV 101 /XHeight 439 /FontBBox [-43 -278 681 871] /Flags 4 /CharSet (/parenleft/parenright/period/slash/colon/C/E/F/G/H/I/M/O/P/S/T/V/W/underscore/a/c/d/e/f/h/i/l/m/n/o/p/r/s/t/u/v/w/x/y/z) /FontFile 787 0 R >> endobj 1622 0 obj [600 600 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 600 0 0 0 0 0 0 0 0 600 0 600 600 600 600 600 0 0 0 600 0 600 600 0 0 600 600 0 600 600 0 0 0 0 0 0 0 600 0 600 0 600 600 600 600 0 600 600 0 0 600 600 600 600 600 0 600 600 600 600 600 600 600 600 600 ] endobj 659 0 obj << /Length1 971 /Length2 4331 /Length3 532 /Length 4991 /Filter /FlateDecode >> stream xÚí“e\TߺÇA@ ‘Ú ]ÃÐ "- Ý’ÃCÌC‰€¤H·€„¤ÒÝ‚twwH£H§€wôÎßsÏyyï«û¹{ïëû¬gýÖo?ÏZÌ êZÜRæH3˜<âó€Åi}0/æá啯gf–q„APp$B‚‚‰`QQ>@f† ?1A1^!|f@iïî·´Bl2ì¿’„);˜# A*”Ì­…ØZH(†rç¤lmÍ_+œM˜ÌÑf΃æp( 0ƒYÂø _žH@ø¯°¹³ý?§\`ŽNhSÛo›ìÚ¤9aë˜Ã,ðAªHôn0´—ÿ [ÿ..ïlk« ±û%ÿ»Rÿ1±ƒÛºÿ#ig9*Hs˜#âßSõ`™“FÚþÇ6Š(ˆ-*…°´…¼…àNòp7˜¹:µ, ¶N°ßqÂüß-  ÷ÛHCIGå™:ç?zú{RG ´Ýíÿ–ý•ý›Á]G¸`È‹./ˆ~ÿ92þ·ÍäP¤9a ð GGˆ;>úô Iðp„9Ì €¹¡ƒxHz €.‰'`tÄÿÕP!a$ó+ô‰ ¹¿I €žü!>¤ð‡øâB«¨ü!´ŠÚß$ €ÔÿZEó í?$€tÿZSïo£ÿûƒèr‚ÿ‚hYûA´ê_P¹üÆÿl”´4Ò̓›-ÏÍ'Èûk© * äùß2¡ÎŽŽ0ê÷5@÷ûŸlGŸÌ ÅŸž@Bú[¿­ Ìõ’ËÊÃáÀ”¶¬ŽT-om ð›ŠÂ´ÍéyêÀ±P¦‘ŸDF´Ž³NïzIíüé¥F¿ü®CdÂøõºËóõ¤µÔúI*îköŒ§~_‰ë«ÆŽ¾ bª,ôæÆ>ËjOÙëøš®Î&«½qkŽ£ÙÐ¥¢ù¿°¾|’­Îë€2~Í; ¹A¯ç]ïÄFcÏúyY¿Æ­áœÝG~r&½ÈÄ}smŠq½ât?hE@8³CýØ×³v±B˜[T°%p%u£ ­*·r@TDÝ´f°Äy)/ãæZ{bô`¥®‚îbEv¾;ŸZ¼· â9õ¨S÷|¼ñº÷wÉJâÛó1܆[HX6‘WlwW˜RÙ€3˜IQÐõSS©ÐѬK£¨n(¢¢_gd~²)ÔÅõŒâæòZçã…Ç™=#Ž/m?ËT!Wk,=‹¿§GI‡Ýº.= γzQh7»Êç êž|¡8•žÎvȆÃôé•Ôþºê€¤V[þ7x’s +OZœ¯]ù‰ DÀ+Œpþà7‘@<ƒË EØ.¶]TWèë…ñõ¾Eµ*Db¢ÀaÞ>ƒë#+×EŒ€Å2xfÓ‹ lªb¢ÃöGàô@ürU¶ºŽMîY™5@¬{1Ú/‚Gºé´«cšÀ,eË•—É0<ü V-£z­dL/ÕgE©BUiMïJd$Tw;M'ð~Å5ñB6²Xˆ†r°ÝäLëÑÕÅ'÷{©”øMXrÊip—‡)D¶‡L>æƒï3•!8§Êgzжþo9ÑmD²W§ØwHî}ÒÒ3<`oœ:¸ :´>4r¯öï–”_ïÇŸ">Ñe)UåœA”ù·É^˜áÙáF:Ýœa™2ùÎ#Ú^]ƒ’ÑÐ%ŒÈÌþh¯³–-éøþTõšÿ•¯ëô“¡WE=ÙJíÛY¡YÇ$qūژ«”cÉ„xßÖ·*°p2ȼ‹ ½£T$oHÖ¿Q—¾Uƒwó0aouBzž¥ë³Ô‰Ê¦!Á‘î¾NÒ`mÅ#ºú‡¿^&$Ë,Ë%ì}άjÁ¤ögõ'¹LÚ¥Ë+„xáäçÉ…m¼Ídµ2â:ñ\±"{o\A©%O•øQMj½þ€N\I,cËx–³HC¸­ª¨ó¤Å˜-fÅ„IÆT'cÂvëj77‹H¤zŽy2œ#g;ô^Ãyfd/k©—GXÉ®)·ARa{EQ£! ¿s¾…JÕz«¾ï oNë™nÚÄixZD4¦[i½vÂIÍ»ß(YúèkèŠÌÛ¥e¨–¾LÜÛ¹èsKÕSæÚ v‘¢îrËq1rF±¦µÉ´œÅ;ˆä˜Ê]ð…‘wyŠ \‰ßOÑjÜÁÊfPüDm؃›y—QÕÆKí “óm?ÈUé_ˆ;—½ý,Q¦‰n¹P„ZE9vâøÕ÷UIJMªªŸ'؉Ex·yH‹ðLjÞìßX?oaí› & õ¸ËÓ­¹$þˆ*ú]pE,ãç,\Æð] zûÂÆ×Q&xÏ¥¡ïc¼p™žíöª™çr¬g§ìÉ÷ÊhÕù¸«5-è|–H†7¤Ý£ÃXr&”!u&Ínsш¦Ìš¼C„ÊfûA°ª§e®´©o¬çºäj[[ÛˆÇ*ZÒÝË/·LkHæBK{c¾'½H ½ñÐ5«úÂwsÙTÈv+XÒÏWLs,¬ô7{>CÆBGê¾ÊÁ",BzTçèRVöȲ™ÔúµÖÂN2Mñ½{Ò¾±”­µCCáBRÀ.’"ßé¼KÍ€Ÿ·Y{*ÛÄy°"'[_šBm0á©n×}|fPÃo¸âÈ|=¯ô"T²x™¯h­á”.rF`üIA¤ÑNê›ð!ˆ\@†µ”FéÙòBèÓ•4ÍìNõpOÞ¥ZûCëØr‹—»„žŸéµÌÆÔÓù"!· ›#ïÇñ‹rôÛke7®H$z·¬LX8]±I}²b ˆ×·X•èo „˜­5JâšÓ°ÅÞÓÊn´&¬ñÕ=èç—ƒ÷í„ Ç?¾ .ݯ‘Xḭ̀6‡p~ŠŒ¥ñúaûÚ0³þ!çXd³ðdï3Í>jñ½Ú#–“M»à^ÆÆ®Ì¥÷ÕË.„ ï;uE¾Xülå¬d:é~Uó3ÙÂÕµ;ßÛ<í\¹6^7èüp :hï^Väïb£ZÕ õ]ãÌx î#¡t…@wyoæ ñ0¾¦]¾åh1¨ˆyö¹ç¨Íu‘ëɹ5E£µÂO×\û›>D7½8hE&(&2Úç±¾@¶»N^“îùZarvÝRåM:ñ’~ƒõ9\ы쇄Y˜^hÐÌWîs6úiýûŽïE±™GßÙHÙº¦¹YI–4ñ­Ì$4Øž_ËI¿|˜ó8§¸Hnä¡ù­3ƯXI^&fØ”=!>nÜá„tpWëó6å{SIÜ€Åöj7¦pÆÊŒH¸‡á£É­VÒGo'\‡6½°cú‰2Ó{šUê£êWBßO`·.‹'+ˆ>Æ#èkxlvëÇ^®2“λ|׌ȃâq³Áî1)Öd¤³Þ˜ªwò¿ÕvY¬µd¿0¬X(eó›ÑMLLäv o‹K_q5w¿PyNŠuS`±Ï;¬¼N­Þà(£þüNánã¶uýçùvŸoZ)PÐpQdMâó*!ò;ã(‚Åû{:xÄ·zä~aˆâ æ!"Vœ £ÌM[ƒ:ôSˆe)ªW§ˆÆ-[7ñC&y--õ&åñ\†Õ^ÚYo+5‹Æ¾ˆ5;6--‘–ªsÊ Ç@²±àu}q»’±lïÖÞ`˜šb@…V·Cî+ÞWßkJ>…{sÄU<ó]ºf›_u3Ez(7˜ìžsß]" ¶,ŒOe5›Å’QzÁb}Êö·Tß ôªìrwºL ÊRêè(÷S‚{ ƒ²«ÂŒøóªù›Ÿø.)Äqõ¤ å.ì]+?jä u×%â-‹ö{æ äØî§½úæp›ëƒ„ 9²j¿ï#½Õ½ù¦1=I^2Wú‚f}Ò¾/â&nW€ëS 6"r2ê[”>†¯—‡à(Ÿ*SÔŒThHÓ•;”öÓ‰Y1$“@Ÿbd©t´¤# õù5î»ÂqU%‘Cœm¬¸x$~ªnImÜOž™£x¦göIeÁ>U²£ñDY ¼^µ NIðèÜ3)ÆfÞwŒ¸K³2p•ûà=M>¬‘"*¥wö´}ªS_×¹d5ÂéI–æ×¨’æä'oËù$*MÙ葲׫ Ì@[±£XšX_Öup¾nÔšìdÒ™Ó‡l[bñrD] ;¥&µÍ.#¬K>|ñŠh˃K1ÕMòé Çø¸™0Ò3‹a1Š}ó4&áÚ%VM§duØ|`#!Y¢ÈÉu6•hŸ[º¯·|˜Š5©j|'‹HãÅ-és,«e–:Žî±òtï,~Ñ>ÇÒþ#a2f¼ï™Bn;2”ƒ˜©F&Ù²î3¾á1AxOó½£èEÝÙL«1R wULÎ ›«r¶ü,ÈæRÍÕ1¬Ä@jÍmâ`,.¬z±§ÕU*Hý.òéXý ¼rU®‹IªüzÒ`2ÑvÓ ”•d]ù b=|IJªÐŽú¶)À¹d/ºDÅüa9sœ3ä’¨‡L†²O+ÛÚ¬"žKÌuÒ9Õ+­MîLLÎ{Þ“N—p¡è¢Ó{7Tv@wyüH„wûêüåwé$e°rJ¾›Š­ÜgwUŸb†fd]ËŽê­Í®õ‘™Á·ËxRÁâæxÞMbÁždÛòNœýЬÑEëÝcO_]5ÙÙyH½i/jî; {1Ú)CbüÈ70Kw–lP–Ìá|L¦k¯âò~ˆvöÂγû+wßçR«T^ë0¾E±D]&{á-rx¬œS}33ŸÊ«lŸʇI•_¤)ÜÈ¿Ÿƒ#ÿ‚5w;¼$‰NX­Èªy€W#rÝ?Ć~Plš‚‚É…äQ©±ß¹(Z³3ÿ`ò±·!¢yheõËzv¶:WîOo°Ö‚¶¶â~T˜ éÐèݲäŸx¦sV!õ¶ xÈÔ,{¨üÒwÍÙøŒäë,MO×^S¼MÎøÆbÊ0‚5ÓŠ<¥¬ÁŒÇ=D¬?G"—-‡îýÀa¤Ãxÿâ˜H9e¾ úæPbO#ùtSÄ"ëÌû‡Ð{—Îc¬ÎàWÂU'ù%Þn·ÏoAµ4VFÅn“Ê¥¿GÕOpª SøßáL2U·œlééJ<’ð°¿y¬TY¤èFzÑ oØ„–›tV/_¿dÿn¯uèµqk 7DJüc­U¤øþªô§VéÔi°§B…„ƒH@U" ŠèÙŽQ<z$â¼C¾JëpBoÃþð\'ìg¡ÉèˆIi…4…Ü‘24Vp:õéež«/ål›ÿYD–t›ê¤žÕFd¹etÖ'ÈøœvtÅžãXý9ü[µ ?†ùŸ…!ÿà1ø‡È lŒTxÂd®\6¼œŸÈ/zôˆ±qúúó5o)ÖÅL0‚ñpæÎ¹!£[ˆêÇ#ˆ^Î!g¾¡G#¨ÝÕq+[k!Q• ›“¬Zò®Õ천þµÜÑi\wãN³éPX];ý{ðç)ÃvN½‰ElS´+ätælMdïr‰n»­ÅCr¼5ß®»ñ)NðóÜ9¦ÆÇ#bø®sÐM™Ï—tÓmÄÕ‡¯¤ˆÌÛ=)i e0çAm{t¼„ÛT»á×*I?6f/rfR¾áx…W»¢ê1„ú¾[@é~ÂîJ_üº*#Ï9Wxæ’ œIâД<ôÃÜþ§ÔÀïYM›ã»°fÄߦîñ¥ºåÞ-fž·8K”ÎÉɳÊSu¸T;Ü‹ØS_7Å3¦´‰oˆ»šÜHðØà9Ÿ—é¨t=û_5j÷ ƒë6ƒbÖ,±q³žù-~gÛx`Y˜§Vï„ÉÏÑÝöN)ËÙÈì-±¸À) ¢P;Í#®©öòeçé®§Zwæ÷qãp¾Ô9Ü~'ºþ &z€T¶›9ßr‚^±·¦”S%¾à¬0]•;¡<.n†Šòô˜ñO¸hÏ/~$øìc ¾›&ÿrz'«‰½z¼0ßìÑ¿èóݤÇã7r#«+4Ç C4É Kn³ñÂI9Ó­peuØ¡ü n1—ŽÑ—êžÖ¥²ù_,{ž<¿¯¿ih‰?ãÜ6K¨%BG´Ú\·ÄKýÈÃ*V¼[L×qå)%eAJPTV^·LXX—÷òãt1·½Ñ×HY}›r'ìQ*\”—hÕÕxÄhÓfiBŠ“áˇÖCa3)c#ÎÃ}ÇÆîFJHNÉ=Xëâð]|¤LWAO,os“÷øàÿ¿Àÿ ¨- âˆBÚAmðÿ > endobj 658 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 /FontName /QJUMYP+CMBX10 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontBBox [-301 -250 1164 946] /Flags 4 /CharSet (/C/E/G/H/I/M/O/P/R/T/V/W/e/n/p/t/v) /FontFile 659 0 R >> endobj 1624 0 obj [831 0 756 0 904 900 436 0 0 0 1092 0 864 786 0 862 0 800 0 869 1189 0 0 0 0 0 0 0 0 0 0 0 0 0 527 0 0 0 0 0 0 0 0 639 0 639 0 0 0 447 0 607 ] endobj 1623 0 obj << /Type /Encoding /Differences [ 0 /.notdef 67/C 68/.notdef 69/E 70/.notdef 71/G/H/I 74/.notdef 77/M 78/.notdef 79/O/P 81/.notdef 82/R 83/.notdef 84/T 85/.notdef 86/V/W 88/.notdef 101/e 102/.notdef 110/n 111/.notdef 112/p 113/.notdef 116/t 117/.notdef 118/v 119/.notdef] >> endobj 642 0 obj << /Length1 827 /Length2 1957 /Length3 532 /Length 2550 /Filter /FlateDecode >> stream xÚíRWXSÙ AA94)$¡ LèB@" ]BrÑCBE‡¡ ƒ Áᢡ # Jœ)C‘Þ¥XA•"½yÞ¿ë<Þût¿{öyØkýÿ^{}ëßªŠ§Nk£/h QèÚH¤ `†ÁH SU5£8: ¢˜ãè  €46Ö,A_Þ†÷›˜ taª€È¢‘ˆþt@ÝLc³É@€4G08º?ÀÓÀãÈÀiOé,E&ØÍA iL C" O|A"‰ƒo:²¡øA€ÑšÀü³ÄiAܶáù9õwÎŽ¹´çÈwÛôQÌW‡ü¤*bLä&Þ‘‰:îä¥5¶ß0E-…¿O{dp(© þn®}ÁH9êËοƒEˆÏ½ÖSáÁ±lO¯$\°}CV+˜’3ñ§<Å;m¤½P®Ñ©{à’?ñ{Õr¥£Uv?›nìÿ ŠØmuƒ#>Iñ%޵é2coY»W*ñc=W„çŠÊÍRÌÛïËhº^*àÑ—Ú˜¥>KZ EGŠÙ2OÀ¸ëm æG;&d¨­Ô"¡xô’–VWKmåGTCü’ÚªXÂíï•Ú* Ýuá—Ý%©%s¦e¹ìMg‘ Nz,à<ë°õ÷ÎsãÇ5å/Ÿ©‰P4Òhˆ²Ùx\k ¡¤ò¡Ž?S r÷¦ÀÁîë‹«z{\/œÄÅÐîdŸÑÚø:oYµX¥¥D™â‘m˜AÜÑañäô!ذÉÑ]÷ŠÝ"løãßE*çZÜÐrîß‘,Xö]ŒË6:ù ›Õá¬7u•Š^°*»1\Ðß!+ás­Œýä‰Q½£âÙôꃋómÁa,ÓÈê¾ôþX@+­}bç €u‘gî­à;+7±2C½¥âçéðð†ž€d7¡$¬yxZ+.J*gÇÄðÙ2‡ŠüF–Û’¦ÆRšž9ÊYwI:M…Ëq}êlNDš‡åDã;½öªÏlÊìËm»þBµ²máàû7» ê.í ÊÉålX$Ñ“E|_”fÙ´Þ‹—T©;ý_d=…¥Wˬ¥%Z$ˆŽ> üèp€ÒÄà›(~½ú<ëzp¥üÑŠê—Æe‹u†rvqØÑY…UÌíõz¢CV-œ=–tT.GýO7™ñ¦‚³)÷®9*é—4cr=šGÆàS>ÇNvRU8‰¸™x¾Ö¡5F«²vý:¾¥iuÑÌAý£ŽëË. ˜»È˜d·‘÷3»À¦Yåƒ-Ž0"â!ÊËßüâ奷—½âg!¥·µáž±‰ñ)ijYk;Ù º÷çò7„CÖÛ§O¤Ä1ƒÜôîŸGãERK›i¹Ý» '1¿r} ²›ýZ-ž#R’6;®uî—ûzNFÌÙ0Êê ötÏC›JO¾ß.t#\—³bÁzë;²3õQ|-ûÊ'‘¿NÈô¤ä0ì˯Ü|‰¯áØ®Šž§ÖÙÍQ¿‡É.þRá:é¼‚ÑØ•·MmÜ\øfÔ’Ö±‘åÑ;O­+D7\UÈFímWùë~½Wp=µít7WYbU%4CÖSº9¥÷М•Û­(¾©‹3@ï#ž–ã¬ä×ù•B`ÉëþÀïÚ¯šÔÕ¶{‘53Ý¥cDÂqù.vĬË6Ó0Ó$¥eL±³”ªÎ'an–hé6,áTú‰–8v/Ìè­P-¶+gþ˜¶®—ÁjU ÁhÑȇš›FoÐ{“^9+½ŠÎY'ªÊqEnKS ‘>üÏĽ³ËT ²^¹í¦O"{” ʦä"gŒ ïï ñØï°>2¢¬³3bøÅtßàé1Õgïò½sÚËoƒNjsV¸t)5&/l#æÉc /Ø»ÚÕönßo¬b/eOÖSdxÝÊ…P´˜¡Þlÿ›µ¼UŒÁ)26Ú¶x!»B¿TÈséª f×Å;=ó&ñch‡·²r×SÑ®™¹—þQžµÿ±¤`¬ÆU» E=Û×-q~UòSmklˑƵD/‰¦^]æ= Wb¼N<> endobj 641 0 obj << /Ascent 694 /CapHeight 680 /Descent -194 /FontName /QQNCCB+CMR5 /ItalicAngle 0 /StemV 89 /XHeight 431 /FontBBox [-341 -250 1304 965] /Flags 4 /CharSet (/two/three/four/six/seven/eight) /FontFile 642 0 R >> endobj 1626 0 obj [681 681 681 0 681 681 681 ] endobj 1625 0 obj << /Type /Encoding /Differences [ 0 /.notdef 50/two/three/four 53/.notdef 54/six/seven/eight 57/.notdef] >> endobj 639 0 obj << /Length1 790 /Length2 1299 /Length3 532 /Length 1868 /Filter /FlateDecode >> stream xÚíR{8Të¦Ãð¬r™[´ë›rk̸_R FÃ4È3fFckf0n›C؉É—“äÒU[LœìíØ‰8”RQac§R(Ï)—tvç<Çþóœ¿ö³×ZÏz¾ßû{¿w½ëý}ºº×6Sž`™H¶Ž4™ÈD‰éê:¢0SÀAxNLlÈÖÖ&€ ‡a ì±17³17t##B9‘ ç¨¿J²Ñ0Êa1y€ÆDÂј‹É^‹ DDàÀåÆê>`À|ƒÙDˆLlKÂà2^µäÊ G€å:ÌÆ|nÅÁ(3ôÖlêÌ$áqE€ ‡CÆö5óòÿ°µQœ*är=˜Ñ«ò«AýªÍŒæpE¿è¡F aÃ(o#Õ^÷FƒÙaôÆ®«€Éå°x\Ö!ŸÊI€ÙtŽ€ ™\>¼†Ã<öFXrkŒ=80è†ë3]ëÑ™žÀ[óoÕUòZMþO¥ƒr@ ‹—Œ±ûó*x÷œy,„ÍáEs ÀDQ¦ÂNV™ƒ$2àðØp€0ÃÆD"À¶,“Ž Ðê@ÍHÀ8†‰Â<..Xm­£ä_Ðõñ}†Í­€1 ábƒ_E~ýÏ ’´ÇÄœ °æ‚D²ÖÖ)ÿÅd QLX°v¤°è>×á,hN€YÐãGË63ê´$ë|ªsUÿYiJÄõ×þ6ðý挡inM[¬ÁhƒßâEñVÅIÙÉñËZü£­Éû¨3é±'J®LÆýiRœØ¢å÷VL=ùê}Æ+¥’óÓæÒž÷Gÿ~¾ÈÿÜ­òÙÎW•t='ï)¹a‚T{`\c{i¦…¥UÌõÉ>Ò°Ë”ÀP.‰=Ÿc–=¯\tRfänFjT¶|³áÓ9¤UøÅb•ü™Â• ÷ªÇñ¬Ö¦Œ ÆÔþéºsÙÊJß}ê¸]o_ "¼P0)ûDžÑãšQ±5«¾sóþÎ?ë¡ù¶Á®Ç¢þ8‹Ú®åØ…öêیܥób+kÝÅE¯¥ «—`ßù1¡²Ký (™®’n¾‰W*±,~ž>‡Sq=øS PÆä,écU“0Àªiê´ÁÅvmÜÍo—?h”Ç6??Eÿë˲¹–ä¶®Þb×üÞÂ\MueI œòB»Æÿi¶¯J’ tÇ×›úyáfŠFNCæ Giç-c­ªo^J=;ÖÇÊy·¼÷HÂŒœãy&ŽÔ+¦ìÐØƒœ»\¸-Þ$` `Šh¸µW9ßrW»ò·R8m£ºßM˜¾ÒµÉ…\ük¢ðûpaVWå£Ú%fm Šn!‹œuJ´ —O+_ùg”ÛdFîjH$°*¤‚SsÞ¨µÍg:Nu?_ ¼•³o÷ö«fz§‚£¸Ò çÝ g»iårz÷[ŽùäƒÎŸ¬ž”lréåWhôPÃ\!/̽Z)ïž;Uð}:{ÐRµÇçŽþ…FÚ'먽üSî”§‡¶‹àPèîµÒÑ…ŠIÕ`ê^N]Nìò¦xJhø·2^¢¿l“³«ï«ùA¿jwV’ Ýt‚šõ¨ºûk2~2êÅq£‚6ákódÿ2±™Ó¸h[ ôËínîy<êVIÐTKy »Oâ j™+Ó|Ü‚EouHÚ®{ß]2n4Z $=ƒ2¶pnž§dƒu_øR`xÔðFAˆ{Ÿ¤8½ N˜1Š^žÀw¾Vrº²tþÉÄp\0a\Íc›Ÿ®$çºæÉâ—9ük„·¡ëMòv2j&ììÓˆ !‰”*í3—ó*nfÚOeÊ.©|<ÃÌB|oZ¾%f»háÇõz>.w²f)Úxÿì]G:r'Zéx…îZááwÛS—Òb‹@¼ÚÌÁPù‡®)óf÷™å¯ïÎÙΧoV~"é °N}¹]sÃ>Å<Éí»¸…²fZdfzVâ”_Þyÿè”t\}ÐYˆ¸·AŠZV¹‚W>.¥H_km£…ß> endobj 638 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /OHARPA+CMR10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-251 -250 1009 969] /Flags 4 /CharSet (/parenleft/parenright/colon) /FontFile 639 0 R >> endobj 1628 0 obj [389 389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 ] endobj 1627 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 58/colon 59/.notdef] >> endobj 636 0 obj << /Length1 1047 /Length2 5519 /Length3 532 /Length 6218 /Filter /FlateDecode >> stream xÚí—gXS[—Çé‚   M:!@è½é H7„@½ˆô&]š ]ŠHï¢ô*½I/ÒD:ˆ  ÷Þy_ïÜù8óiž9ç|Ø¿µÖþïÿ³ö>Ïs;³Ž>Ÿ¼Æ¡‚AãøÀü`  ¢¦&Tx5 egWÄ"`8$­Ã!$€`qq º ((•€]=¤ì@EŒ£ic‹r*rýQ$ ”w@`‘p¨ ÃÙ"®4à0PG"pü@y ¨÷Ç g ÂuEXñ“‚Á@+$´DØ Ñ¤ ?,AÑÖ è_a+Ç¥\Xç+S@Î?mr¯LZaÐ( š¤…¹Z qååÃÖ?ÅU\P(-˜Ãò4ê¿¥aH”Ç`]p,Pc…À¢ÿYjˆøË›& éâðÏ,C!áòhÈæþ+ŽtVAº#¬t8¸-ІrFüG ­þéäª}ú©+é©kðüµ±æt`H4ÎÀÃø]ü'ƒóU‹°Hw ‰¿€øªðêþ×Èìk)£á+$Ú(°X˜©À•” ô‘h+„;á~eÄÆà®¦¯ã´Æ`IÿØUQ HñÐ_$)ÿ›DÁ@êo‚ ÿ&1 Hç7 Az¿I2øM"@Ðãßtµžá¿éêX€`¿I ²üMW^àÿ¦«³Yý ¯¼!þ†W¬ÿ† ù7¼FýFð•úoxeû7¼šëü7¼²û^I¹þ‰ÿ}Ë0î^@>AÈÕ€¯º' ðù/ep,ÆýùN]›±5òê¤!î8éÔ.h—T\諜3TtËù^J~`ßÇ ªIþÍyÉ[cØÚAÄýê j;ä[ªÄí‡ï@VÖÅ»5òÞ]^ú  Iê. Z®¬Tý»ðMSs‚îŒÎÖ›éaëSL+޵<»Ó¬G ®¯—jl€E³ïn‡~ž8?ôµÖ¿8E–lźšHj–ñ^ã%âñ×…˜O§[ª˜ÌT^7iêÍÅÔÝÖ¹ûYŠñˆ ÍkŸ]Ån æN°J¤•"ËuFe›ù‹Ñ2MuïØí¤ZE?óÈu1…d°BüVHé[¯2÷²‡áÏ®á "µ/Ó¸ºµûL_‡Æ=.o|úÕv:0´X ²V= ü-tƒp¼Ç]WÓWÕþ$ ¿e¦F­Šž›+xSvž7Htí[FÞ˜¸äfš¡üîòÍÅòéY瞉߽{‚®åT~GâÕˆøÃå‡I×¢Eê—ߺ¶nø2Aù8 62d¸jL‰µ ð¸%6åDVí!©îå\dºró+Òÿ‰ÓÍ x7{L@¸§¡_üiÞïÚM)G®ËXýSüà4,R¨¼ ]ßB¡``I¬6ý¢#t@ÀLön€GÝ'CzúàFôVàQAñ<ÀØs¹fó:Ž~ˆE¬f[ùûCØùå>®ló¶[ÊÀf/™jÉ«“«r´ÆU£Êoû»¦þDðÉfÍQ¤=/E‹­é¤U¨(m»x‹x4÷:æQ¦\ öŒ-®³ú¿ÓÞpÎ.áLRS]´hXë8t è½¾IO¦!Eb›æú!QX:šO쮾ÃÓ·ä1Âñ¿wËö.žqɰi߆6z…Í?ÿÜ&7ü€  »Ý¡í4…W¯Ì‰rÝ›|*|.¬A²ïT:žX& È·¥÷h34+ï˜Jÿ„šT×Ö*ãÂ?£¦ÒT÷qáìé=ÏhùȆš$(»p³õѺ4Ðö©5©=>*È럥|«kÞUÈúí¼‹YŠ¡—Þ\)%uý$j¼cUT!`Ê™*cFê‘ØN~ eÒìÏŒlíéüÚµ4v8t^cpë²„Žºk×uÆš>õŒÞϑ ²œWz¥{ˆþÔÏg!¯”˼¨œdzlŒ¿ÜÌ´jb¦–1ס™H=BÓEÍ~›èNŽ/­›wç^iBŠ~ærƒèí&%㼂r#ëÔþ®{áôCß$%<+özì¾uð‚'üYORtø´ôbÊÜaк'•]æî´¶X8éNsTÑ®_sð¹£Ý­Çñ­Ú} ûà‘PµcLe â "6rx0FŸÉΨåœÊ&Íø² 1 ÂÙ¯ò"8Ùˆ« z¯óBi—8&Ó»µ¯G;|€ Çd¹H|\š>d0¥ˆµ å{”8NÚ‰ÌÜM·@õ&éÆ^¨š—ÝZÿ¦}ûòÂ{‚ÖŸÖ.oϱ²µS0q=ó¤ê„f,5.ë—|bIÕ½€[ˆ¨akŸ-E¿ôë¨UWþ2d kåžRÙ½-Kšªô¬T¹OäÁ1Â_™Äù áx«ô0ÀRó5žG>d» õV‚ï÷´cåˆÉëDZX®YšçfP F±ïŒ=¶b™ ç´P9DùÒ+˜ÍõÑ\( ‡Á¾Áû{˜}'qªô‰"F¨ß,¥ÌÙ´Gçq·(+W"¯q²3g”"‡Üå5¥m÷ìžÂt ã«9—¶#†œÙå|@ÿqÖiK˜£* ô#pxvG\‘ù³ž­qR‹€œ¤ªDÃr†[G翪°‚L-,¯ºâçµî+îyÓ+§±HÅã^Õ›=-%TÍ;Pîç$Å+–Ÿøþà|D–0F~Ô{óƒ^´Yþé§÷EZI.·«²ˆ&+º”j¾¤Ý—nçà¦K›x+3í•°¨dߎVÁ+réU"s¬ÓXëi‰³xé~þè»À µ× Ï=²2`HVôZn Ÿ7ïarF‡ghß—Ñm¾“yÎCßù5F¡§Ñµ„Z¤[2ñ v¼Þñç]ÌxÙâ6»mM»ëŸ~ã9°/!ú"½ºÐwq ¸÷ž4Æ€ˆÇñŽÓ¨)2gzƪdš=¾3¬(eb+MJsò‚ ÀŸñµô}Ü5tq7:ÞWC¥%‹ƒRØŸ²ßgó_pŽƒyuP_3Ëê‡:àË °yT©ÞE‘=ï|ùžøeóŽÁåå;ñ ³>I<¦n`ä6—É­PÉ’»u)½ÝÛ'ÞMAMz•ö·}©:¿F\ÎôM3B¯÷¶î"TBÈ‚ˆYïß^ëX-GY±ß,kEf§«{ŽËºŸ[îõÓ{N㩊‘Œ2g½¥T"DmçùËU <¸Sô?aþ2ýN*¹ãD~ÊM<À¢¸9ça÷cû ±:È”À2g¬LöYùþm]“ÜØÁ¦qï¸ímé—HP'}IcØ>ø½È+íô`袀ÈítÚrkˆ„ÕüðópT‹–axú“Ó$Ùeöu%ÍÁ¡K&O*%f‘ …5ŸïŒ›Z…r'¼ 9Èj½\ÿhš‘\  àð¼Äçã=øXyí%“ùŠ ÛÁˆù&0ÔÉB(—)À™í0©ÓÏ€¤Ôõëñ6v(ØÿÙÓËs¿iþ;£Ç[0ÕÜn†-ë`q=¶?*ÖÌÕ‡ÏâÔÖ) 3püÖ¤©ÿðC‹ ß¾ß+õõ¢& Ù¹Š'W¿K·¯{¦ï¡W¡Ÿ,+6cd ]öîKãjª®~t¤ž»Ïaê–c³O óÒÔpúUÂ7|£¦Ò†bŸ¦9¨_ÌæO¶´ UKnGUñ˜dZ&\M´|qÒ˰`šOÁku^ôó¬LÉnÂ%ݤñÞ¤¾c¤oèT>*u¼žǧû"§—@âú”µLÙa$ž¦nýV˜wê:~1Êm€ÛBůÆ~Aûf(I1Ðéšï‹9<÷â@g©¥oè¤*·oäB—9 Ðìïoª8_s±ÊzO€„f[íMîÖ&ê%; ¹N~¡mÑ“õ‹ä;a¾Ñ @ʽÆï3ûàU¶^øþŒdþþÁ¯Ï²â_# ™ó¥Zvã43aR°4ƒH‰C3æEÇ:k/äút{üâaæìjlŠmYóéhÓP™‹ÞÐãÕ‘z‰â¯c`YÁþ‚ôa¶Ÿ¾iÅÆ÷½U›Z™Qýæ¶}»9UÕwå¤rÖì °“*öƪՊ5’ö«ŒÎdHk»ó7m÷}N‰Ü9+C\Ølu„Tý±ØË™fK 9e˜¬p9òÚMtF>Õû­},Ü„ xwâ½G.a8»]‡„Vi˜w_©ÉæÎpvAÑŸÖæ&¶ßÏ$BEZŸî³õ…MCwE@¯NÚÜ»¯¾V ­÷o+ŠB6‹ßå>ï8ޝ†·ƒö¤««Y×£TøWy(>}µ4 ¶û¾‡¢ ÕŽVX!ØÛísôz÷ùV¦·uÚ—±–GZÉmYªý%°ûJ™ÞäYbLºÙ5?ŒÀ"0â©»·‰Ðdò­ŠE;Á²µ8}FÑ ‹‹Õ×ÛÕQ¹Þ;=¢S’'®¡ˆ2º Ûü†<¹Jœ‘¦pEéQZ9¥yº—™„ö|7"u /dŸÇZ?±Úo‰²ŠÕµ€Ðæ«®ö¼“-“É—\8ˆ¸FšÄäƒyã¡`myäª!Czš’¸`edW33tIÞbT„ôè$íOU|¦S¢ž¬Âè« Îð–—¿¨Ncd3¤VìÈ9Vñ2ò3¾Ç¥f²½fe9YNª½Ž%{Ö–xqÑãMY˜yWÛÖÖ#˜Á¼UËžvõÿz1<øÞ‡jN×sÏp\+'äÉÙÛàð—-7f}ƒ/¯Þ«xþ蛳vŠkçç+sà>Të·«P2pƒðÍzïøû+e´ÑlÅUíÁ—:ù7¶_®,HÑKR^Þ¤H^¶ÉŸ§^gÖ §Õ‹Ûð}>+ePÆÜ‰z¤÷JÙÙ®—JBóƃv6Q6>J‹O š†\Ø*Õ„tìâ< Xó†,lžìF 6óŒ"„di{œZëw¯‰žÇs®<ŸìÅðžu<‹“‡ÙzêïCe«ŸRxÅÃuЇ/7ÈY¹×Š1¬ èâ¦cl¸¶„Osô² e‚NŽèʃª®†º£cRóc.}ø ¤b¯Ð³†¥"ßËüˆAÁc†üÇê*Œ ‡P½ïbù¡!7 Âe¡-+tòÌ3JÔ¤éǹu}cÊ7ñ>yÖeSòœ-: 77šß' ›y­üï5#©³’ƒI\ÍããœYýGÚØÅF›7ˆñú:«Š)Iöµm%âjn…–¨n̦;Oаt‘Ö†ŒcÈaR£µòýym_vgº°ß˜ÉŒQ ’ß'nôñ)¬ž»vœ„·ìte/íLBp N÷LnFÏaìGB6­¼¿{hí&ܘô,™ÛÛ/S²Ö‡š½U 5Y>ç/]“Úz®€Ûb,ƒV±ÒÆ‹…¦›^|Éô%×yoY=nG‡v½ïzàPiÞqÚnA¶PÔγR7’á<§ðëˆ×&ÝØàšgùÖ`­Œr` S*΋/”EZ-e™>½¬1'6cè;·Ëù¶5ª|ÚÐ êmÊD+UU³vwâ’1Kzü"¢Ÿ AÖ)ô5ï <‰¾>™ Õß@òSðÏͧqtÙ‘w¨é§* i /y«V}c%÷5¿b:]ÐÃe¾þ¨/{­fØVI§.˜jT.+·|s¸3[(ëÇ•ðŒ¢ÍRì9eÐfRˆÌ¥þÊ™PbU»×Ãïâ'ZkO/É  xaê lª -î©XZòZís©_‹¾–² fõÙ>Ó~º’7Ö{™¸Èý ÏÍ#߈{µÊ/ªI˜M@ â• â •õ'м¿GÚWܸ|¨`¢Q€Þ·Â§MÍÍ 3MF1úÿ’ê©„éd‡îÿbIWÑo´Èí>åÉn (ŠáâƒÏ²¤¬BÍúÆG™ýÜšÒ£ ÆÜi4Ö¾gÞ>]¤ø˜ ï}ÚjùS`ÕÙh÷{\¼zk|GÊð–õgœŒŽ»É+‚xû–á;mìiЭhfž·¢ÒtÏS*jßI-jdH-ëZ~Àø®e˜‹Cu-­% ¾ ³qGÀûdîÜ~sNW2ÑXdªX~²®…÷tÄ0…Ю«7±:‰Í&Å„v5³®Aâ¾ò$<<6þX èâÊ4Ó6e/SPÙxƳe¾–ƒÂÔ,³ 6]n†ïPLŒ¾ÅÛPÌôÎð0KŸ' 8*xÛ@Ù¾í|§~ÙÈÐSê–ÆFµxíŸ3Rx'w( ¼Âj;]wšáð &ë§™]O’ô†T%`«ïôcnYºÎjDØþÅ5µƒëÛ}¶ìêAÐ Á†Í5µu+¬Ó(¼´÷å?ùÒO€FyW“Å`îsÆc©‡_»os‡ÞÝÚñ=Âr?Ù·¿øÄ†å‡oМðàfTž?¬á…ú“b•å$*v^r&¦_[§éz =ŸU 7„4#rÎç¨/J’;Еk´É¼tà† Ê4~'êëß¼G½§…ß1n‹¯WA:šÐìÆáO9x7΀ë.e ß0û±7ù¸h˜ÁG9˜>;eׯ Á˜êNƒüƒÖL,ÌB3ã åÅN-–] OLfbºÛ–Û"L3Ús]IÅF±bä´ƒàÈÎÁéD}ó¾0hnV³»”íãbÓöÅãï¿#÷\p§;Ó–Hz‚ÀȾQÙ57t“cÎb|çûda½Ç@ᓼVÛ–í5ˆÔM7s‚ÔIæyÉ´{«ø–î”%MÖÈ÷¥6m7m&‹Ì¶Ÿqcág´Ê—,›ü0¯­µÙ”ŒG4ÉÂùõ1 p/²ÕíãqÃòU£^b¦{åœÂlùœ›ä;†f€AîóÜÆX@LµŽöG¥¿ËÛ›UÒÛ$B¸Ò6ë‰dÅŒ~•Yå‹´ðtåLLƒ+ƒúz÷’,ë]{0Dj½Ø>nâàAVîðìlºÚ^p°1G㬲‘%‹[¤6éL°‡Òz?=¾þ®Ç¿‡ª¬J’ýóyeDëC '½ÕÄú<­®û‹ÄªÉ”Äü\3œ€÷¹¨Qñ-Ovæáç´D3Û(µ°‘'­x*uus„Q.ÚñØœÔS¡F*yóðO«@)oÚÁgÖ?þ‡éÿ üŸ€£0,ãÃÚ“þíV­endstream endobj 637 0 obj << /Type /Font /Subtype /Type1 /Encoding 1629 0 R /FirstChar 67 /LastChar 118 /Widths 1630 0 R /BaseFont /JDYRJL+CMMI7 /FontDescriptor 635 0 R >> endobj 635 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /JDYRJL+CMMI7 /ItalicAngle -14.04 /StemV 81 /XHeight 431 /FontBBox [0 -250 1171 750] /Flags 4 /CharSet (/C/E/G/I/P/R/T/V/W/a/b/c/d/e/f/i/l/n/r/s/t/v) /FontFile 636 0 R >> endobj 1630 0 obj [819 0 839 0 889 0 506 0 0 0 0 0 0 727 0 861 0 675 0 675 1074 0 0 0 0 0 0 0 0 0 620 502 511 595 542 557 0 0 404 0 0 361 0 706 0 0 0 530 539 432 0 571 ] endobj 1629 0 obj << /Type /Encoding /Differences [ 0 /.notdef 67/C 68/.notdef 69/E 70/.notdef 71/G 72/.notdef 73/I 74/.notdef 80/P 81/.notdef 82/R 83/.notdef 84/T 85/.notdef 86/V/W 88/.notdef 97/a/b/c/d/e/f 103/.notdef 105/i 106/.notdef 108/l 109/.notdef 110/n 111/.notdef 114/r/s/t 117/.notdef 118/v 119/.notdef] >> endobj 633 0 obj << /Length1 830 /Length2 2702 /Length3 532 /Length 3306 /Filter /FlateDecode >> stream xÚí’y<”ûÛÇ‘%KöP‰Ù·™aì„1–{DÄ4s3#fcϾ¤È–%Y!DQœÉAD–ˆ-Y²$Ž„ÉöLõœsž§ßŸÏó×ïõ»¿ÿ|?×õù^×ûu]·¸ˆ¥¼–x4$ÈòP¨€@¡Làõ °ˆ‹#H šŒ' ÐdP€ª««z~î@Ô4`P (Õ ˆÞA$¼;Ž H!¤¿›T=/„Ç  MÆ^Ô´'`CÄàAr çé Xá Xƒ¾ ÉÄ*°@¡!—Aw¸Q€@ T#õüusþ¥’€!bñwWÐ$:ˆB-ƒÃ(€'`Á@ ¤+*ˆdê€:˜PÀHbù¾U8ò{è§RõÿVªP@ÑèÿVÔ…*¢ÿVP*›"ø?$Õû£Ë¿F_Ÿ¢¤ ÈÃàTP%eu@ ý_>Œ‰È?~=êtÿÒnxêB@0İŒ1š1Y”¸ò0dQÿ}Æ·×ö|0%wKíJn«öWº>•ð˜vxÜPÒø\D1”R5Þ°®­g?T5vE0V{ˆ_ü«Ù°-]E|EØêÔøzk'ô©¸ÝU›Zr϶ºÀ[4êÌ7N„çš.8 ‚ dån¸„¾7¼ ãBŽârRWÅ.•±Shî'‰E`?ÛJéf¶µž7?¸ùާêëà+Ètö-¿gvÒ¦JöÔ²f{‚SÄ’ÐïùD§"6Õ&³Í|%ÚEMƶpÄké»!O‚ër¾¡žã© ])uB¡¡ƒ´¼p~3ñ<!€#’Ö0—stXµzh0-³¼â,|yQ­CõWËÙš͉ÇÕ()çÏ“,jy¿.gÊF †ŽÚ<ö‘õ±ÍÛÌêßqHàã¼| ßû±zÑßvbÊâÆi÷EŒ?);ìcùZ_YÛ±Kñf‰¹òœÑ³ušïŸ¸™‰QIí40š N+ÓZo·7=_ʼnèÅ£—†kï0X{ÀΛ>Ö¨«Ž2­?‘¤&þ*JíÙAŸ!(¤ã°–.@±€²”èz©1ÜwýysÆ'MÊþÒÐQçi!çž‘>ºx3݈¾¨}ÔgBÝRs¹âú*qÙ£—=x#F`Šb»X¡'ôðtLC±ô9ùÉe~§±.IîºRú.f4ãþKÖŒ¢ Eó£«p6)¹y¯Æù:éSgÏu‹q¦m™vÑ¿ˆ‘ãH%¦íöÓ=:ÚLOÛ/eѰælæEê3õ¤È]âãÿ`¯Â½+ñBõæ¦ð®¥ñ`£ñ­ñâ¤ÍjĨ뛟~À3z…Ž ©’o «#À<¹‘QÇÍJ檱ÐoåT©Ê?æ>ŽwÛre±8´ µlÈá×XÈ¢»-|agÞžºé_$`ÍZCç{ÃSm&`hö@YÀ<ie‹}û*%»Nh¥'ì©©•DÕóý¼w5ÒU‚mÂÅ%[ñxË;bOIœjéáb⎻m%œó²Í /½‰¾cœ÷ÌŽ,ÿ º’¤ßýt7ŸFrÎ7\0¿7"Þþå€öLy’IªËÉS¯¹/UØ? "‚6:RæÙÈo\ëëg`œ ê°ª¯®E-÷¾Æžî°:´»“°P¦1w*¾©»µ¦×u§|š;^`=¢·pP ¨ŸorqoîÒhïÄÈ<ÍQæÚ IÐ(P˜!3<ryhøy.f^Ëç ;‹\b1r;6í£'^¨h±ùÃ~HmïGvz©yt3œiƒìy±m ý‹“Ì:“R榡̒è“>ÇÒ÷¾éQÛÇ›ú›’›Ô짦QNþY•Á°¾Êkíg72› ­Ú¶P§µ­–ÊÔkvãdÎÇOtßzSs꙾±F úä¬@òù@6—¹MsS^ûð‰“\Ó~a«š Sõ˜Óiv6S¡•|÷ó¸ë9X¹2¢ï6>Ôch2Ï Z޹SZýä° )ž5 } ÝMsñäÝ­ÞæJ¤é³Ö=6+9½1''fF-nŽz;×Üúæû¼KYmÚöö*Ë’6ò>[Wz¸*MÙæ?I²ç“³(h“‘pùºÇôyAa…{îQÌÄd~?T.§¤`63,@上×Í×õ@îDnqÆ-‡B™\½&íEi£µá’àA[É¢Õ—/ ¹%­}‘B¬¯ËûG¤÷´;ˆéÛänÜ‹J Å Í¿:-±c§êô-ЀµáëoCþF"SiÁ’´…(›±,ÑþÕÞÑGWg^ó*w¿4ñ…‰•^ðâ;Ö­Y¬Ï<ý‡™Ïþ?'íºó'?Ñ•\ ÆŽ“Y<ýO™Ÿ\Ýí’Ëj^òƒy½N‰¡M?ì’¨¨°Ýstü¬P7>Íô6ýúJCúÉ#yWÊ—Ëu9Å*xR˜ˆ.ˆôDt®ô™ìšúáô¹Ü…ýnÜ£¾wRi‘ås ÄúKŒÓ"¾}ÞF3w3¶kë-¾iœH3ê3¬õ_Þ·“e .õ˼õ‰y©ÄvòæÄiyœ}ñàNȇùáD­§!-Ö(Bú”-ÛkG2 ïÍF‡£îé?'}î£Î£ý][~!i‘“ ñËA11Ç«MŸßÿýž°±VÂS %&‹D÷£'×ÞQ É\e« É\”¯ûW´[D!Áúå3²yî­£ñ·Q'ÏìP"ƒo–<žéÞ?^¾#ÚïmY=º<ÛÑ頜ɛJsÂÀD9:WŒvtèã@¦Êf¢éŽaâѶâZ7¨F†È3 Ñ©kÕYÈÊfêšzxͩўõcšWpR’~”¿»×”²v½ùa¦kë † âf¬°^O|ÜïÆsÏ´gE×L³KñsÚOd›< DÎÅ_зf3•F™®ýæ:eg1 CÒ–ƒýý$\ôÑ·¢ %Š j³™!Ú-+—[téšr‹‰Ûù½-5Y–é‹J÷;Nåê·%€‚e¸dbÂälÌÖÓ,ެüᦥO®A8Õ¹[[”œ¥„>Ç6¡L÷4½6Ö7âbäÞM+-%y3"sÊS"E&»"CXž`«éók°ãœG>Þ%ÛÕ93EÉ«.‰Ya%B ‡j…³ð»:!ºÜ¼è4úk˜ßrìéæiÜ÷UZa:Ò)Vš(“iìØköJå/\3Â_œ=¾ðÖ,Ÿ•'`:Î͹äÖ·ÖåTlnðûÆÈ6^…E6d¯ÅÌ«1d5&,4Í™ÈÕZ„Œ˜[ˆ¾$(ÌDÂÙÓ Êä­}îzÝ«iÞ¨]Õ"©X¬ò-½ yÉ=¹û‹ÕƒßÌUb’ÃöÝ.Vaø&d9—ËNؾˣ9ü<»ßRæ•ûz›¢ûûrWº~ªÙ…ò-?‚Nàà^èq·Ó37 ­ýIÕai†£ó‡ÎÜ»®¬Û‘•—?Çή_àð eg8"j<—0ö<¾-â½ 2^Êš)ËI-ïßBR7Ô“ºÏt•PŽ7Øú H¼s²»« Ý=÷*k­ý²÷hª#’ÿ&ÙŽ¬C@|síæ&hCqðZDl˽‚¶6ŠËÓ2ÈÿñcùO‹OM"½Ð¤+,ÿBÞ¥=endstream endobj 634 0 obj << /Type /Font /Subtype /Type1 /Encoding 1631 0 R /FirstChar 65 /LastChar 102 /Widths 1632 0 R /BaseFont /ACQMPC+CMMI5 /FontDescriptor 632 0 R >> endobj 632 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /ACQMPC+CMMI5 /ItalicAngle -14.04 /StemV 90 /XHeight 431 /FontBBox [37 -250 1349 750] /Flags 4 /CharSet (/A/B/G/H/a/e/f) /FontFile 633 0 R >> endobj 1632 0 obj [1036 1037 0 0 0 0 1064 1110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 774 0 0 0 677 684 ] endobj 1631 0 obj << /Type /Encoding /Differences [ 0 /.notdef 65/A/B 67/.notdef 71/G/H 73/.notdef 97/a 98/.notdef 101/e/f 103/.notdef] >> endobj 630 0 obj << /Length1 889 /Length2 2610 /Length3 532 /Length 3239 /Filter /FlateDecode >> stream xÚíRy<”û¦Èš%)'᥄³0öuìd Y2b̼ÃLc†1&KÙwr-"²UÖB%²d "û©È®P£;Õ=çÜÛùóÞ¿îç¾ï?ïó|Ÿßó{Þï÷+-ic§ £x€Æ2M®× ,mU¸"Œ[ZÚ€ bh ÙC5¸º:Ð÷÷0®¢¡¤®€sKŸ@*ÁÓ‹ÈÈ}©úÞ •€ÅK Í ôfz`1$ÀŽ‚%€´@E@ŸDl¿ðlA?JqŠÜp8€#`i€èI sC¿å1#ã)€êçïóG‰Rý˜¡YfH9€G!“ˆç†ZQ˜wÌ$ÿP?›û“HVïoöÌý­Šñ&ÿY§xûøÓ@*`IÁTòÏRGðG4KGð÷þ¹jFÃX}²' `?(‚Ÿ1!ÄÙhX/!ùßyŒû9³mß#@mMMNÈŸæ÷’ †@¦ÙúüiúMûÃÿÂÌÞP € Lƒ3…Ì÷/ן®2"c)8™¹HC¥b¹™{ÁDH È80˜y¡Šd y`¶ä€§P¹¿ SY €TÊ7ö¡@)dðOŒ„PÚ¹¿êH8{QÁQ (žâOý‹Pbú¿(”¨óþÄH&é ù/F€þ˜ÆŸŒ*%þäïÝE¡(Á U@ÁL‡#€*váß„X*$Ó¾/.sF`<9Q ±Üìfñʃ˜;!Fù}ÅìV”çëªÆßêy"_¥²’Š:-|!ã•NÛ%™B|sìs羈ú%<>²Çx)Ü7åêÀÎÝ}.3葨Ój¦eà¬Ô§Èyþº/׬Ö/Æ»î¤;´f/·Íß´‘5´ÿãµ$K“ ½ºéz”Šª“q&éTltå1%I[«¾wâ”cÇÎ ¤§±õF†c9käGW(ý÷mçsæ^ÚAoÔtÖå|!5¯¼+G¬*Ï»ï\˜6˸WúÕ•œÇ›ü’á7} =ÿ’¯Ì§1.ÈH\ôP»Iù¸~j÷h"F٭χkYó¥qÌÈD.ïdÕG±òóqj¨Æ äíâÎ8ÎÄ‘¸-"!SqàNçÌa?a& 2fõˆìjyÔ’ˆöŒ`–žŒožYqÓ¶=’À-Û_M‹pogÙ«;Ù`$¤µi’ga…+ÒzϺU,Å`9C‹ aEõJÉ8t¡ƒÛ =¹å´"ñl™oвx{-ù&"±#ê°c;—ñ‹§_•=ÌŠp Ÿ9óžsب<¿…ÌéOiüÓ\'³¸m4`ú©žãÄŸÑ:²-ç†ÝQ!(,ùbwد٤jOG)gítZÄ1È2IøzƪL}^^xÅ‘ù5 ƒ°JÎ}y‚½9ó‚ŠO3u«êuÂÃrÚä”co©ª |Q]oœ.ï¨Úåc&R]ÎûIº`½ó#"íž|e¦}ÅA3„$/ù—' Ñý|4÷ø®{!^Q®Á:¹'Ùg0Ó„ÐÞHôoãg§Ž˜$Ó½þ‡?“›ÕêË4m7”ùKs&ŒˆýpÖ”r¥G)oI¦Çüˆz K9i犃†MñäJF\¬úª§{Ìpqt¦yÏšµŽ´C<¬l“Ÿg¬Tkþ²–èLå+ ¥©ôò–ø’”ù¯ž ¥ì. yµNiŠItÓV xã[|îøÊ§1©ãgW²“—{Þ¢´õsÿv¤‰.dÆQ¢êôöàƒî¦O=ë’ l‘U’ë˜Aþ^ Îé«Íu®Úô8‚ «²Ô}þJÉDú\m Ä*W3‡ssœG©·é`ü3¶ztHê}‹½÷¬ïJÑF1ìŒìöjÛ©&Ûú®¸¥…ãû…ìhÁ íÐÊ µàÀ”–½~qCi³»ÓIâ}7jÓM×Ú 1Ë]OÒv|„r=;—…EŸw^VìäN ò']™Óg?¨)}C»E!|í¬‡Öëf‘:f²A B¡WÚ]ô>ñ:~.Ѹ-qLJµy¢–ï´ò ûˆí´)Õ-ê õÛØi OÒ{KÊ»µûíîÈqÙ¦ÀÇn½ç/䬵`9u,XgÊ¡=aûë­âL-Å—j<ìšÐYt‘,a®‚BTÛ“æÆF­Sµhµåèfuׂø 2+v#ðž¸q‘Ñþáû’46­»aFƒw8Õ/Þ{¦ñôG Ð¥ô¦£t¢²VJƒÞL}\âßš¾Ï$ÔµÈub³6-yv5¾Õ°»& ÂQn]‰îK»Žd¸w¬d  s‡‰öí>ùëøyÛy«‘¥b#W/”·˜¶]aœªø5霼×ü]µÃm®»E›ú° –Çå¤ûCUÞ‚ÔSl[i!÷ 7^U˯›Ùe9‹Þ÷ö“0–뻺y6j „.Ö…8ûØÐa¹{ü§ŠM·W!^턤7- ¶ QjuêFjDH©‹þ¢=æ}ˆPV@Þ}ž^¥›x?PnBmÊÓæ³½|ègÜÕØÝ‚×NË]¶uJä¹t"ç­Aìý²,ì×Sºõ^bbõo%|Ü­¯ 뙾GOõ åËãm%{»-ûÞ)6F¢Õ§:ŒjÍ`ÈÑ”Rœòb.âÀ(Êϱ°í§eל%Änd˜.‘4“ÝZRåb”uš¯p ÞŸÕƒ¨Í“Èøl!{ú¤Záù ™æºh‡G,d _ûW_ÚØ‰ø‚?NW0TÛ0¬Â`‹~Û®7þÒçqpˆ’7¼\1$á šé¢'ñ@ݪ4{$zÕKЬDÀó µi.>ö!Ï ÞÒ÷8|<Ñjâªðuiesr»‡¯mN7¦³sqé•Þ5üm†È™Ù†«YCO»w° ÔGy ¹.R¦hí‹,ÄÅ›=ŒÝOûhv‡æ0”D‡„à ‹3BÔÕq–FÏYÁC~qýļ¾2u†_¾ÊM-b)*Zº¬“û¬§ZÔ£[Y[¢Õ¨M;E1Ö[^+¸y˜c†¥äÕ•‚]¾6‰Ü€ ·ÎJ»wƒÂ3£ _í"©ÝI5š;ÞÅÿ±íÄ}{sbH’Ò½CIH—“ÛH`½Ä÷Ðë,‰Û5Y±´ö>Üÿ7øŸ0À’@ •FñÆPÏrÿಓlendstream endobj 631 0 obj << /Type /Font /Subtype /Type1 /Encoding 1633 0 R /FirstChar 48 /LastChar 57 /Widths 1634 0 R /BaseFont /RHFYGL+CMR7 /FontDescriptor 629 0 R >> endobj 629 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /RHFYGL+CMR7 /ItalicAngle 0 /StemV 79 /XHeight 431 /FontBBox [-27 -250 1122 750] /Flags 4 /CharSet (/zero/one/two/three/four/five/six/seven/eight/nine) /FontFile 630 0 R >> endobj 1634 0 obj [569 569 569 569 569 569 569 569 569 569 ] endobj 1633 0 obj << /Type /Encoding /Differences [ 0 /.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef] >> endobj 213 0 obj << /Length1 771 /Length2 1151 /Length3 532 /Length 1719 /Filter /FlateDecode >> stream xÚíRkTSWÅqäY¨<ŽÚ´J%/)A“J ‘!äž„«É½x0!”]( ÈC )TЖ‚âDѪ¨ÐH,VqqŒâ)°®®¡?§¿ºæž?çÛß>ûÛwŸC^Æwç x< Â1¹;BgƒKgãžF#‘ÉÈQ È!н½½À—IÀ`Úl&‹Íd’È OT¨8A–,$±G T(ÀO O€R£†P |\ˆB¹’8 X;yBÖB$’!B!ÑéA…rÅ(F¢Nzâb"°ÞÃHRâ‡V2$dFS`ɔͥÀhÁ1‰ PD¢†âÆiÐèå°5]<(I" H'å§’ú]_ E%Ê_¸41I ÀÃH`Ó©Qð½9DÐ$éô.W. B&–@àN÷¤Ð<ßã¨,U@$ • €H ‘Á)bÈt'Æü¦|P¹üÀ~øç¿^íT3L€bòpe"´ßØS5ý·Ú*Àz…F£‰Æõa·aÚ°•˜GPL L/ ’D3J1˜L ¢C @…Ñ1•‚árã`L&ˆp‚4y¯^4@•@™l}0U<ùöŒéMb¿ÿ5\¡r÷ wÓ8ŠÆð,&-õ¿ˆÂ$‚€˜|êùúP‹Pc¦* ¤ëÂ…>Û7æ×í¨H[Yz£rÖR™Sá7Û¯6jj }(ƒ?ùØÞ&ꯇC—ç6›èqëƒÃ«¾¥""æ}Ç:Žú’ŠOÕühsÉbÞÒ’"þìá`LìŒöâ¶+é‘ÌÇ:×¾ÄúÏGî.~Ù›Ü8«*d€Î:ê8¼Û¬¢»kܶ)ýÚ}y²øÑAÒ†â³!y0²¿7»ãíP0^ŠëÊÚícŠ^~ô‹Î±å^ç&½E¡÷žbÞÌ®cÏÖWå,©hôè .ª_® 3uvðÂêÆí|ÙÖs+ãmÞÑygËÒ³ROUš>`ÿåÞÀšÓïìŽXÜ&ïkUз¦+gjgï_ݨ/·k±[þ—SœQ‰Íã§[ît«Ím~>aí\‘|õÄq4çéÍøÙtƒå mvƒ¹Û‹!õgËK©6eÍþø(§öè54A“ÓóU+2½jû掦0…þvŸ%ùè‹GUA-ž×£Ýœú Ú%5e¹ÌHVŸ|~Ú·¼ü;?;VX°óçñ6ƒ=^~F>˳̺61†d‡¤Œ±3.0,tb¾ðPßaª²¤`—p$_µuî‘SµÀ»å¯§Qþf?™åÌ'‹&T5ͺTñ-Õ篺ÅU/{µ5æ]vkü&Iìûf]zNŸúI4ãž#-rîj‹üpÕµ­¤šÀˆj6O–q”鮎0sµêÌ=_éà™a•éËÅ.§æMØ‘é#ùä}‘¬•3vl(yÜÔ:¦Æëo]ôô¤Ïù{ôØè¨ÓTút΋A«n‹-n{HÜím¶3rF‚sW=`D"4ßx¾œõnwœI‚kŠwB]G­Ö ”ï'ï‹UÍ®µ·SÌ|×x¨¸úµÕW,J {‘þ箦z¹œ Iç~‚e;ƒÕÒú¨Âª?œëŽ‹ù[ŠÉµe7rælËÐGÕX(†î7^g›¿Þ{¦]ÔãhXuvXäYÕô,ËmÌí@Ôn|Ï—ú®è`Ö6œºž/­xøàJÏŠuœå×7Mn-÷9P}]“fº,ôd♌¼ˆS&Á×Ö Øþ+mQs•s£ñ±?pþw!yãÃØoœ·å»Ì9­èvè˜Ã•kÞ–ú›-*ú É™¸~)³ïÕ_²ã«­²æøCkççƒoo%Ö'¤ŸÔ/ñnzTëú<‹˜x^qúûni«??ÙöA£•_CœS¦lópD¿¸,ø5aò˜È¶¡Øƒšû¾)Ч¿.Ÿs±×ÃíiMåJóņ'çcoÄÅI.õØÇ )ÿl»X¾ñîèÇù:îOev›B ÁP|ÂÏú;{Ǣͤ]îÁùÅG8•Ëês‘=}rå³ï-.˜ð ÿ¡y᪪ÒCu±¦_$ej Mëw¹Ïï|p9åÓ+¡|¶É¶>}|ÊGráËB4{ßù·6ý]”¯2±Ã™ê¡qg2t•zTñ]_….°tñ]°>Õ¯áfû…¸5*z{§Ó§«ÏtgÖn½)Ø;|°Ù¥sµ¢¸òSܶu½W²n§jö.¤j›õ/¸½wO¤×VT™~g?¯ÿ C³&ƒö?~¤ÿ ü)„( ä¸T@l"ýe[¢Šendstream endobj 214 0 obj << /Type /Font /Subtype /Type1 /Encoding 1635 0 R /FirstChar 60 /LastChar 62 /Widths 1636 0 R /BaseFont /ISDCST+CMMI12 /FontDescriptor 212 0 R >> endobj 212 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /ISDCST+CMMI12 /ItalicAngle -14.04 /StemV 65 /XHeight 431 /FontBBox [-30 -250 1026 750] /Flags 4 /CharSet (/less/greater) /FontFile 213 0 R >> endobj 1636 0 obj [762 0 762 ] endobj 1635 0 obj << /Type /Encoding /Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef] >> endobj 150 0 obj << /Length1 1612 /Length2 19091 /Length3 532 /Length 20003 /Filter /FlateDecode >> stream xÚ¬·ctfíÖ&ÛvžØ¶mTlû‰m£*ªŠmÛ¶ÍŠŠmëÔ»ww=öéó§Ï÷c±î‰kâš÷\cQ(©2ˆ˜9˜˜K:Ø»2°02óv&n. öò *æ–n€¿B8 1gscW ƒ½¸±«9/@ÓÜ nn `e°ðððÀQĽœ–V®juM::úÿ’üc0ñúŸš¿ž.@K{åßws[G;s{׿ÿ׎ªææW+s€ÐÖ öMI[FQ @-¥¨2·7w6¶(¹™ØMò@Ss{s€…ƒ3Àö߀©ƒ½ðŸÒ\ÿb‰¸Œ.Žæ¦À¿n枦æŽÿ¨èŽæÎv@—¿ï  ÀÒÙØÞõo\@{S[7³ø+·pøWBŽÎ-ìþêþ‚)9¸¸º˜:]£*‰Kþ;OW+c×b»ÿª-ÍLÝþ)é_º¿0µ®Æ@{€«¹§ë?±LÌf@G[c¯¿±ÿ‚9:ÿ•†› ÐÞò¿2 8›[;›Ùš»¸ü…ù‹ýOwþ«NÀÿV½±££­×¿¼þeõ¿rºº˜ÛZ0±°þiêú7¶%ÐŽéŸA‘±·p°0ÿ[nææø?uîæÎÿjõ?3Có7 c3{[/€™¹“¢ƒëßêÿ;–ÿûHþo ø¿…àÿzÿÿ‘ûŸýo—øÿï}þOhI7[[Ec»¿ðïø»aò€vŒ­±óÿËÜØhëõpøOCMó'ùÿ#ãjü·"ö– afdþ·è" ô47SºšZ,Œmÿvê_ru{3sg[ ½ù_FÿÕL 3óèÔ¬€¦6öÿ´žãß*s{³ÿLþ/IÿJINADIýÝîÔY)ýåÞUÍËñobÿ£³ÿuøCTÔÁàÃð÷2°²q8ÿäfañû?Dû ËŒ]žÝ¿%3³ü«ðÿñü×Iÿ?`$ìMÌþ™UWc{³¿ãõ¿ÿ¨MÝœÿ²ú¯ÿ·àÿyþ× ››{š›Â­.9˜ò…Z§f¤¹Öbç OŠëö÷²€‡9–4¨æV;ô¤†ïðT½×„16Nó~¶y-ž:~ìËÒŒöbÙRõ$›_æø‘Ñôå£nRvpÑ3” ¦iFû\-ÈoCèp2kìN*«¿CNw°9Ã\=Ñ’¹çb?:"ù›¦ÔÇ`v¢4‚ ÕœžQ&?=R Ž õÜ@öíãÓeÇÀRð¹C RF:eã é¨WøDÐ@¥5!àß´_}kvûäRã‘GÚÉ¿*Yæ­Ù·Ë¿'B¦µ ñ'(8K·îWja]ÏMGñ‹$LóüÎùZw£pÁæo"˜ 鿵!™É€®'~»¦îw ÷©µ«¦}íCÊ™™Qî,©÷hÚ§`f‰p«Dkut¡ðÖ[•³2/Í ·I|\Ð4èèýmSs&o–£ï\›£ÄxÚüã󤉳À¸ñF|`J~8¤éZGqBš¬èLÙ«Ãÿ2ʽŸ<®Ìæ‘%JK¾*õž©±D½³E~^í)q´»¨ ¹Í 14K‚ÜŸ'!œ<– Ëd>sü‡î×éÀQºç–=ZjÅI÷Éw·A,R¸ÙùóÀK&ZìòÏ“8AÚ¼éŽÛ¼ #{#‰[ÂýäïLǽóÿÙïD¬í$ÁA¼œ«1) ‹šíB[g=t> m8+¸="JKhóä~V’NðOŠ!Xy··@‘V3æÐhEy%~Dm3K‚!€Pcxú¼ÛÆÝˆÔ´ ¡FÏÂpŽ, "ÛýmHû|ÍN:S³r*¿Ö³ƒdŒÒY3¤Þ eÿ,½ÏÕ¾vk‚wáïj¤¿‰4o³¯¦^ýB}GWC޳C‚£-¤ö‰£èó ŸÐ45¹BHݽE:U|ÉÈ*JOô³ô»½Š)È dvظãÄ×(†Qœ "õÓÃÛØòËc‚œÀ¯w¼¸‰B´›Nƒ&3Ÿ/G ºš ½WómV­N¡!º®¨‘o­Åø¯N­Ì²— v¿>Ñ^ .‘ªa˜°ýF$(Lž‚YÞyǾKh¯—1¬1%SÒаsôÈF¼ `:ÒßQ¤äF±øïi&–‡Pî«g¨ ¯·´q8X¶—d*úxŽêtíÎL`ÁÛŒ-í,°26Ì"ËËdt¡iP'ƒäqù’¶@œö yæ{3ù H‡!]á"x¤ý);âÙ¦®& 3ºëÚÐ5á”ë_옟ãømšáÕžNå¢ó¬çq&òCyÎXÊÄùk ÂûéÏfý [.'5\’{=â²î~&m'šLàÙIÇÕTy/t¥]e6[u‹µ_âÑ©fŸïÌÃÁÎF¡0ÃUÚéÅ"Sq#2 ]zÿ¦ï“åÜFÉ0]ƒf¸Œ^…× O }­ï® ÷À[ PwF˜¤?¸6Ðnyç9ÑB¥Üzw9ïX䌞ÈÒ†ã™Ð¯’S×<„û€Úyr`[¶ÀԔɋªº¤¢Œ[ùììõ£Ï+& #{ÉÄ}ÑÏÝF7s~yÓ”#©î¸îŽo£Ms¹9¢l,ãÂ¥ŒÚ¡le›rÌô…ìË?¢@¨¢ø>îøæïÏ™¿_|§è&ÿså”Âi*R dþûÔ(2Wgs |zü¾íÙ%ú£e§pJNÆ÷,I´ù£nËW§zû“{Š&9 Ù*°Û}šï[¥‘:¸ê-Ñ‹[S$üêcCN!%›Z¬ ÙÇØäyé~¹9xÅ%~ú,b²°Ã|þTh•LZTæ‰àZA Xm€ê?PÎê9&Q€áËÏüãâÙ‰ï÷×睊`ìP¸{%qyaA_ÍMÉ„DŽ˜“c»’vbÒ˜ØzÏ_æATM`r }ýÉåõßh¤yÏr¡9/˜»u›¨¼ßÅhäâ}Îñ¿Éêôëðeþ¾Õ â¯ö"NpqÛAÇL&/0JÒÑ:~MÜOJ(sRr¤wÚüÙ3à!œ¸ñ5Ý%'KAÐЬY$ŸñˆÁ@ñýLõ¼ïÌ 8^bqµ¿æ{„kµ¾ä^‘¸ë‰e`µ—§yVºD?ùΦ^®tæäÕ­j-l¯íC°õúìñû­à¦ÛÀüV¤¼gz„ÔÔþó^_—GнӖp<øºhW=jG…ìC ìµ$mé+/ØÄ…Ù›‚¶re—ÈåT˜“rd6zx&)~‘FtÕó˘CÃ/æ|ƒWÖèÒ ö{Ør¯r“Üè >8£z!7 ü>pðŽ@Ÿr<g•J©f¨}}3(LŽYuáQ›¤´íØlÝ&e^0§~Ý¡Åä5Zq{Ž^ܦ­*êdŒ.¥°…ì)³ÆÄ)¼&³2Þ±‰{îWõ¨î'¦pM^ð”t”ϨEYH.ò"š{‡OõéÑ¥ŽbÍ߯aÚzÁyW¢{£ê=JZîÌÂr€Øm», Éh¢–Âú†µ]§ Í«(C²˜Ð}3Ô&"{DIáäiÒŽ~°ÐðÕ/:Y쉎ÒÊãwåÝ-ÐÚ”ÃuHI›G '³†h³ÌAº£ú‹8}ÿL?sÒ6=ÕéÖ$~‘‚MÐù¨KÙvrÞù‘¦y«çoF…²Ý,0ëA…W†‘a%sÉò$Ÿàꀲ¨;s™ûEá¯ÕŠÿUù"ÅXñüz~A_GLÆäûÃo6¸8‰– Oà–†KÇ¥×U‹Oû¢z#Ác õ nÉçxîssôEµÈéeA T…ë?áÁ9Ó!·’[OÏ)äÛ‘y®ls!‡x?˜`É,¯VŸ\º@ÚtŒTøzyè á1«Ÿ&DçÍ`ÈW“KU”Ë)$x”[FXi±íöÉ b›F„ËJö]å×i=’eàw/½[}™x~ˆbõ/‡Ç #é¿§)%3ȘÅâI-M2²ŠínžLˆéø½á²§3cO‹·ú ·ŸãpÈDGý—úöòŠ '-³Y=sÜ<‘Caè‡UsQ~+´‡®Æ¡pd’/ƒ ýRsŠ! ã±÷ÕçåÔà‚Ñuðê5ÞÆî™¢Dʵ Ń §f9ƒ@—̧ú–åS(-þ㾺n¡¼´WÞX^{ÝÞ Oïj fÐ&A$#G—A±β]l) oAAN¬ÅËî`,ØÙ:ö ;Dì%F†, QyP°)Ód•l)4^`üÒ©‰¶qÚˆ•Îñ q$ú*Ž r,R+ïYÔ8KÒpæ•j—Ìçyf‘9îÞÇäÆ ÖZ’269Ûß帾ÿ-èeε苛ü’}B ûUÆiÉ/6ÿîw]«ŒÑõÛ¥ð!;ŠSS›Dl sRªuË:#4Æd.3±Mˆ§zÖ÷ëÚU=†ÏÄÊ_(ÛÑXëy¹ –¡X=g8žr(&ß0×ð‘ß&jºgwG8aM¤¡ÖµG¢6§È›_êtÂe.qËA^…œ úÇì­6Á¤Ë'ÅŠáÂ÷³AT”­¥õo`§1¡z /‘u>ÙýT¾Lëm}qt€¿°ÑÄËQ’L ³TLܱuüÑÀ…çÉ}; ÷¶UÍíxh;GuHwl×G3ï|¾¶#½8 ì–²-]=˜€ñO%8² Ëw­¹ÑSã .è-ÂÎ ‚·g}l¨QѰ½"®íW?o:d‰ˆC£ñ”=ϵNMˆ"MgßïÐ×½žÃ*Í3ÃñZö¡S Ù²­=Û©¦²­À¶qm%éfÃÔ» }‚Ñ œC4f‚„Ô%°+ ¨!|AAŒ¡8ü(ؘÝbœºPÄ8u×ô ã1Fë´gŸß€ûHW’VùÔ ¡œ›€¬5m m'ågSÖ”ïTi˜tàØ=$/šLJ|u0”å?1–O©nZÇá 6]¿fªì­Wܳšû¶I+%]ƒ~ÛG>>±Ž!ÄP€L[Ô´)pýŒ JŸ#¼€(€í#œ$|áÙÑO᪭Ã÷{Ýw‘±ƒ´9Ø ˜SS»¯[å”@°Ô»|XS¨7èõÞ9æÐŠì€Õß4#Ì_?íÕT̛Ǻ@ßKY.,).È3?'ØÃ:ì²Æ¡Óž`-þ"‘¬xE÷ }·?U߆ì)3°îè’Õ$–sëXAŸ½Ã:9_?"3KêKkUZÃ}áme/ËßϺÅY$:(½Mô¸‚ˆMáQ† eo÷÷æ¯rŽ\5öÈÍ ›mYká7†Â= §äöœ*‚ –&Á3f“S\¤…Ÿ»àÃˇq ìj#…Ò.E\^ÚïJE³©øð”…w …¾£¨ mµ`[òŠJ«÷çt7O>ì Þï» )EÞevI¶#nµÛS )±ªg«Œbp@‹ˆ¤dT:íP\H˜GŠz¥°^9Vƒ€æ‰Ën¾±‡!TņÜwŽe­aü{Ôò}'Ÿ™[¡î5­ßü¥Ä• ,vtº–ßËôÞT”Óòñn¥óÈõâ/¹¬¢íÝË”ð‰`¥äZ$NVmÝ-:aÌl9ez9_ü^OZ%Ûñ›öq‡|iW¡|󢦩k=ÍS5þò¼‰ÍÕZ«W¹ÄG¤ªa [ºè¯|ÿý÷ϳ}3£5í¶Ëíö†%áZšxŠO‘¶zx毳 áB³~^n¹‚i±„ x„5*~DÔÍiXÏN/ŠZ|ÞóB»fˆ[“þéŸenb½÷^2ýí†5#µÜÃÅ"Q5n¶°vm^?Þ_ðgìÔú«ú)ã7l³Xˆ¤x3êáº\”˜Ñ¨·û/’@–”vø­&IPõÂä6|V‘‘oÙ;cÙ#U¥>ŽxgП¯ââ»T[‚¾d¥«Ü/?²nÖ:¼×YȽU±¿Å¥Óê|‹GHļK±Ž‘sÉF•£—Yò™ÞÀQ±²­Ù»L¼J\½…µw¿Òº‡A—w@V¨ä•›£ ÞcˆêÁ„x&c¼Fœ»ûÒ“ ‘)ûÝ=­]vï.DaQR„^ÜG¬öû£ï»w‹ÈÝðŸFÙ25¯ý“ 6%)¾‘Ÿì¡økâ 7v²»¬ÜX‘‰§õ³?'Ïl\<“L¢%>éÕñÝck±2ªmÊä{`qfÊ·úÉ»¥ÂŸç_–=+ñ{@áé„Ý©ª´è÷ÛoÖ}OÁÆÒjVÁe t0ŠüØf¯?ÖBó>AOKˆ‡4,ÍÝYXœÞ†„sAódzYC2à…2Û’êt”J(·ß·¿Q ¯”Z—“FeJíEÓÎ!ê-ê°`Aþ,÷gÇŠŒqÞÙh4«Úb¸ÞŠ&Y„ØýÑ­úü¹pÇÉÖ^“çùªw,9CÂÏxèÚB*QKJ-¶Hî±SrZKÓanÅ:Eµ}wV/ËœVìÅÍmPï '¶ÏnüA±D´S/±ó4ÉÑvä°Kl…‚ý”xñS^Þl×ç·5{5KôxÍŽ¦&;dÉ^U Ùy.ŒµÖ-Ã8 0(_[÷µ?—GA3k“5ÍM&åó Ë=¯.ênQJímþ‡%ŸÃû"pÎÛX ~X|üj©™æÕCxÀxó(ÈI ’œ³À¦ÿ.x,,%Sª.PÄC8ÏI)‰Q°–X‹9dY2vKrÇ2q½‰ú-£qÜü-#›!˜Û`ú-¦üfçXF¦wUÀÖ:Ù(äu E3¼ÁˆäX/‡g=¿Y^ò*[C}^Ò^Ê{0K(ûÉm¨vǶWÄGä#Ấ2ýÃr0®H]”/1þ®Ýãa÷Bž¹ÁF)ÈëóðZÞ¤8;u‰ ¼ “±»êÑß®¡‚¼iÀï ÙÉ’!ä#D¤÷•ÃþS–¸¦WŸ\äÅm¿ô)iÄ6?>Ô9ŸúyŠ`îÊ´´©$7dÜ{á]ʘ_ßèA—EžI~ˆ†D„÷ù¬º½sGRðGƒØZ&óï Ë•C+ YíY6Y\ ¥¡žAÚ\ŠÞЧbàs¡CºÌ°8.]èe©ak~?{Úcs%ž1lË,æ:°o‘q˜%ŸR.ú$–Q°HÂwZäåOî9‰¾ìöU[]½¥±¥ŠªH%˜Ôe±mÁ 'S4õYöСzhÓÔÑ¿f§GÌ„ÞÊäAǨ‡ŠЮTWõ§~÷ïÎ;·… þݘÚË6ì“JÊÎW#qRímRºJî§±'¥¶ö¤:ëÁyßÐ\oŠ“«•„·G@Ö‹¢”¡XM³ËFdys<´oÛ_¥5¤G«\÷ó(6ƒ¹u÷…|aÝW‹?Ø8eómo\ ƒÜ¬Åê(š'r…âpÌò\®TbuˆÛ¯‘'\Iøãb¹.æ£R¢µDæ¯2˜_‚E>W÷”ÕÒÜ’u&Âw'×°ÝÞRÛÙä¥-;°èêýÍó ÝlYWÑ~~†”íñlÔž:l« ÖŽ 'Xòx_XíGmmçsí*B¥W/FO"Î’,÷ö›ßeÉn6Õw^ª^xe¨Øgƒ‚€h €KçÅÑèùzG~o¢eÍt‡ô}á½Z`Ke¿ùKx’ŽW{RÃýÊðL"–Œˆ3'h<;ìÉ ~iõ©ÙñÍuJ¢G:š üh]²µgNþŸɺª-ÂÏ¿XÓÔÒB4æ©27˜˜¢bhÄðp†•­£ ýC;½ŽŠ¾ñ¼Ž{¬¯´äÌpöÅ“¯Öh®D…ç*ˆ÷üLF¡SÂè‡ôµœ ÷`„þÞå®ÂÛ!~Ç©93„CÄ ú,iïø§J$Ûూ¤áá8¾ô*Ä¢­-ñvÌÑ\}PôzU»ömäÐØyõ‹)×™ÍÜEZ¶‰7Zuÿ¹ÇÛÐ þ4f§–«aÏ¢97œs\´‰òÄ¥ŽÑ`ź£Jcªb+јËC¥ñ±sñHæXi‰ýÂü`PH¥HDÐ#ö†dº†½ïÅ4]§ïæ6±÷×ðo¢D7'æÁsõõ’J_ƒÕQoܵ{÷ýˆ„cQ•y½¼Žíi«_¿C_³óLè™m—׸èuekAoR÷Xa;´%kˆžj-fe‚u[Bp ¢óÇÊø먡úrº±³t×Ì•ì]w®ð¢Ðú¢®EñbÀÅ0ìÊ÷Úl¢½wyîÎxÐ7¹’@”?¹ßm⶯¶=i+ÍXö<2EM3” ³Ð[ x ¶Ýs+¤ ¬AY¹bâA9rœFÑΤ¹:{„0R{¢}HSë¨_"~n׸5qDºû›B;Ôñ‘}mhh_üréáV"Ô滞®€Æ e>^º:¯ŽÁƒÁ–Þ+ëÉΈc¯'³^8•^gÞØÇsd> =)§ßÒÅÏ„åŒå(ã 2,6TW/¬¯eéR˜?ŸÁ?»lÚÇØŸœÁÏÛ†eî0Y´Œy´6’œàCg'»NAÜ’#h_Aæe ?Û£;^ËA#éM©ädú]“ï;-@sjEßGÍ×;;`ÛÛRâǶcΜélcî,=ú1ø“­`N*ž­ì-ÄF3’“j{•rKšèœÔã-„(1Á)¼NëuÞ,•ÿÁ„qYÖ¾ÄB†û¼®“ŸeTOγ iä† ñ°¥­—†Z™ÅÜ&‘5kp™/|rÝÏ­,Œn‹qØ©d*€4ã!OwéëVÔÞ¯hÄ´?+\…¿Ð¥8Ò–ÉU±”8a)-@ ¿Ø vPš=ÞxUM:dDúí-Ê;bó–¯Ãý!%§+‚=ù>ÅœÿUZ#gU×d™a©F¥~Ñðã}µnå¹…×-ZËŒ˜}²3†B£ {@Ȉ¨ÄzÄà°9¨ú†-OÑçWiQ‹ Ù"c”jñ3^¤Q¤À`h»¸æú‰bÓÓR4gc+Ÿñ•i{ˆšÞ8¯<]_ñ¨A»;Äe† k¹¡:„±Ï€Ùðqôd7 T© ?;“JWÎÛ|{5¥÷àÓøîÀ£tña{ ˜5‹u§£Á:›6T(áÁСû´ƒT¬A—óÛìȨIôP¼Œìôa»,AaäQA󜆩–Ðí}×}È-ò8xxw’ÛÔ1áŸÌco¦Ç/Æ1˜ÞÁúNÒM'­qÅÇ#Þ»ž~å'˜À .š ÷¡(ô‡P’âPR1çe’â(áÌçèü+ôW:3àÉÎâ'Œöð£ª×RO¦"Ç]NÑWB>8"K ‰a Èð6Ýòøðæû5¼Þ®™¥]2Ñåž®ŽgÜ вl6¹Ó½vÖù´½åÔígiNW¿n°ñê+ l†}¨Ì·ö‹ÅëA˯ƒðzUÆ7ßr'Ó4)h§½ûƒ—Ì'Zc[¹˜CƒŸOSâHeÁ/Ðñ¡¦;TWÆE[W…ž^¡ž py›ps ³(ÀI)‘†Ç@tb?½šá†”h~B£È±91QX*I“èâ\"~KC I¡ìMy¶ô5‘v9kärel€¸i§Oâ,Ѿ€fPDt˜²öm†Â4k¿•ÝúG+÷£¬Ï!ÈcõUóyÑM£î4S¼ ʔ󘖈ˆSü!-Rû1õë¦GOÿù‘C†‡"Ò¦®“Gׯ,ò'{³Xñ™…d¶…èS³-'Em±ÈÕÀº¯E¢Ýäø ¦;Öµ®7[9<ž!n¦%™ãA“4…ѹk/ˆ-w)¤Ð=ÓÑ|˜?*;2–ٶޣĢ'\ 5f™ßš™}°¾T;:Aì2iÄšŠYQ…U×*4ê u¸YI¡U~C¼b;ÎW¾ `C䵄ÑC;j=bírñÄ4CZ1]”ÓãC °øîˆû@ÆÍ /Ô`çxCHuoÑûœÎ¢V™©ùYqT¦»x‚ó‡iÓ"°§äòcá"uU´ÄÃ?ƒotòm#{kâUƒ<$_‚žIÙT¥ðRåã–¿÷¾’ëY²äóù `ø$²•„6[У°PGÉÜnó0žz*8'ðÛvйÙ*Èu’H<¼:~3Zkãž¾1¹iµàjAUz`ìK9^ðu¹å„ƒ»” A¬Ì;.é•ÖÅ%¼½8m¾?FÒ‘ã¾ &x;ßclaü¤5)!:y¯pB´ë\¬g3?* {FXÙN2˜JûNWá•¿Hã¹;³…?40džÆJÛ¶½x=>\:ý”•¹ˆ›€ÅÛèBòá]5åŒÎÜúánQ":£äRþ”HÝk˜šÓ÷ê S·L¾JÏÖǪYHÖZÊמ â%´F -\ÝÜÍ’Ðmøírœ6†úªltëúýÇèƒ&f[[I9¿qe¨$=+€‹Âªü"Œ˜`"h×¼înÊ‹©»Þ[«è9¢è‘Ã#ÚŽ… 4ãĈ§2‘ÌñG¢T„“žÉ8Ʊr—G]óú“ bŽ4  4©7\˜f‘Û³4Í)Ï |vè {r€h´ò}|6ëÅh‘ÔW#€ŠÕÞÒ§ "ŸÇW©ÉâŒgÿÑmî$âÁÁu¸~ Jz>`‰(¹B7ã=+w7ž²l|‰*p£ÖÁëø¢à‹ÁÎqºO¦6eÞ3ƒÈt>¯R.c«ß2í|7õÇò׈#¶ä($òâ¼ïΓæñ™©‹^{Ça\B-ÏÚ>…'ŸP5¿Äê˜PV0Oï¿Âì+Ç¡pË<¯é]&FÏ\Æi«S†y–±Õ…–:°Á'î×½ºqz3£kýÂ\2¾«Vqµö6KaéUºÚðÃ'ÒþÉUCæ^¿D£¯Bxâ¹Â—i^ïÒ‡ó…Ø(`f¾ù£ÅÆ•‹Éc@\ƺ N=²¹ªfã‰ÖµBËñŒŠ¨þÊå÷jø@)¨%õKq¯… ¦~•\Õ9ƒkÿëõ7¿¡ TÈe¡^`—Tù¶’ä(¿4–Ãä9zÛ¤¢Iqy)º¯¨tس€»T+ŒLo‰Ï…º0ûTÙ‡ýO¿ól±ë^œø[nÉî· ê¶þ,JéQÖz)túä$+ÍEª~ñ(8"XvA +ãÜ Ñ •‚ß6v¾¢Ý¯Ðxõ5Wbøz%•…ÀµyIÑW‹ÛmÑãØ]ÛøXЭ ¶ãâ“uÆSwL±z ç—Žcv2{±úÏRµÕIšîA ý^ÌpÅÈ4TŸ àç,•åZ¶¡+0†¨¾^y¹V0d0ÕÃ5( nŠ˜ÐU«­I?ÓŽïÍ)ê9¶·LŒøá—ù…°É©¡T]n@¨²òüs!‹óðÚÓ6@ñ¹¿(_ôXþCanû¶ß“˜ÿsfÆy[>K…âáâÌ_²ôÌg€ûÕ¢Lø‡,7ߘU$â¢ág¸ÃúÆñ¢eÍ‘Cò„ós Ö^vZu•Lú0B$+ä­jp/ #1ýQƒvÔ¡›•µ+IãÆ ï<]{Ï‹iÊ&ëö¦¿O¤øSÖg™ùý£kâÝæªŸgÐûàÂé±iŠªŽ62>á FXì[³¡C»éQç§¼ò³c7û[:MÑ•Î4À2-— ìÒ+­¿Ì÷(¹Ã0<žÎý…tl3DpˆŒý\“KïÉ@Æ)ŠÔó¶^þä»! –ÁTKé=»Â *}¤/a4BþNÈš‡;ÆšÆAt˜K•¼êÝiè9u¦ä@*Õêl.3{–†çk!­½@½[4Ukg¸|{)Ô#Êé-Ýå¨òÛtT]‰N#Å)lUXX…P•—hIé‹=#1X•ãŸîKÝFöÚî糤€ _´A©µÂÓ¥…·æQKÅ›'çÌu\×ôñÌù´ÂŠê/§‹óóú2õ¯îì¹µ&£) fÅ… |¡ÍG1´är3¼I… Ö9ó J®¥æc ¦6ŽÆÙývååÑѱF !\¢°w{[ '¤ ãZüòŒÛ¯ Î*bª“ÔJ+~{y?ÇèJ:áwûÎ|X,±/òöâPhÏœBĈ˾ÝÞÉZfÜUFêÿT€”-ˆ‚5Œ Á™³m‰—ž};¶5<ŠH÷ÎkÄl¤àqžâ™·ŒÔ‹VtDPK’-|ïDÜ©o¿M`R™œ4Ï©)Sܤȟj]äy•ªÜùlžµ}÷ÕŒæÓâ:†¯A\ûqä3Çdiw‡:¹U2PÍ~vÍ$C| ½Q[5І23yq“âF)IE¿‡G‡˜ i^iŸmÔë;k7عñ§¨Y¹B”ñ0EÈ—ÌQ-i{éáÈ:Û½ýŒ÷Þ_6=TXxM†ÌoMÛÏ?!TJ,¦@vǽ†Äò¥uwWÚÛôÇT€7}•„$wƒ=²-¸’ŠDT͵þù9TÈnŠÞV ¬˜[(S$‘ESŸÈ“_k`•Vª¿R7ü ]¥R%ç(H–{‡ÄÞ!iý¹$UÔ‡À ŽYMË­õ^:R¦d˜˜Z;a¡ÝÍ3µåîE_‘縫ë áõç –þž96—P¯­~Cþê:ëÍD@bQ²¤!°ÝäSŽ1£â†F"Ç.a±6k±m\z(URçòš<ÍÁö›½ÆÅ†0k¥õçÍ®qøU\]cÊø`¢É\ o8/÷q¡6¯]´HcžÇĉF"\ÄÞ ¨¶½auÑHÔq–zl„d¢ðÐáB 1ð­æ±ŠÄÅí\iKá!(+µò²3´f‰Ö8 q*ÜYßW,íìýQ{PÆ2w'Ø}±€¬«Ù|àe>øîÝHõF¬´ŒoÙ*NÔWáõ•D±îKÙò™sE#LÒSaxë»ùGÖÕ°#¯5\(¦ÖÊáÈYüPµ¿,1ëjPtdoS¼Y*%“ˆf1nbÇ»hÍ{1ÂlðèK^b-n¡T1Hv1ãBl^\“Ähä¦$«C‹zŸÚ¨*G÷G‡°Ý \"lpñšn(Ž ˆ-¡ãõª°4Çx÷+ÞA¼RôòÃJæàúÁ~è†eÐäM9¤È3²é¸ñ.ÑAú1€ÌîVîLæ/lð7"SK”Õ‹Ä„éB4šX\ñYÏ’v†ù£šQ»t-\«ü¢{\še}>¢ó¹Aã ž€ê>öqðhÝO6vÞW×IxÙ\´§$°“jP5¡…A°Í=’U=ǽiK¶½™ƒ~Ú­½A™:ú£Á£Næ<«è 'à>5»ÀMû :Îçÿ Îñj8#ô‡¦Þ·ÐN ó©Ú3˜†WUz1꽜˜\ÿ¦9ŒYÐôDH ‹0EF+¹çZx‚ ÓYvã»ÄÁQ1ø.âŒT3’ãIŠº/%ÉkYî×%¡8z„_t0¹R!ŽÔùì°Èž ¾ÅòaöJûûÔ}D¹ª¹±G0n›÷öêªG¥jluA NV&ÄÂåþÇ7­޽ì{J›6†û×Ã.µ”ÑžS©ŒUôk|?´Xí£ÇóoçöOcêÎÌ0¿KEô!0Œ!óí´gXF— Âû %it ÌOó1œUQ,÷§kdå-a¿´g¡@µŸu…Oš›:Ù#f™Z¨°"Šã7¿!žb&­zQõͶق¦’©ë-·©Ëã[ Tbâª'ô!sDÎf úc"Ñ0÷‘{-ƒ¥×¤•èœe£ª/È‚?¢ñ ·h­<×àõ’ú=N`A©+Ãe9µû6´>EÞ”Öà"Õgß â»òOøœ…=ƒi!Œ¸O½ŠG'ËX˜Í^ áÕ·>Ì«4Îݺœ+[ÇÂçrËšÂ.%>`~y™ç]õ䙿¾Ò)÷V¹d¿\1"òŽüŸîNHèìçùõUjQþ ôŸsÏøÓ§¹2m÷¥á¸$C•pÍ "|x-{D±èãÞ#>õbÿ/*ýÔW­æÒø¦Àk¦[y£B´Æfþ§¥ÉDmf¡ºI ÂU«µÏã&,`Cù'ß6Ìæ”ùÛ»ÃÍç[̦EÍõ_î\§dnÃÏnåi,mF×Ñd¿Ì_ÿ¼¨¹Td΂õ-KhU:'áfËŠ.¯$ŽFjlúìÚÊ×è…Á*ÔÜG¸Ç+ÓëÉÏue‚e(hOÚ[AD“XÖ`f?3•ŽÀÌ·ŸZì´ùíÃêÕ«x¢ïUxû5àC)£Àµ«¡`á´·º&ðˆ$‘¢±o…pu£“b´ /Àï>ãªÀX>ço±:µ`ù|!Q><ßÜ@:˾–Ñ? M»‘ê ÷ÍX²mŽ"È^;ÔξEKd:W™(Æ#j³û¿Ü|R¨gÝ2‘¨†<¯cÖöÕ ®l‡q™zZY=šøôØÞaTdq0œ44¬¤›C:¯~Ã"D-³§Eé9¢ uDLßæ.Öû³_µ[Û1ÓBóEM¿X¥ h4ƒ¹ø2Ë–­™’º@UÎxWÉåMÂsI˜:ècg~fÄW(}øìòJ—©Tþ‰ök‡¨(u‹¬ŧ:„ÏÞ'mü% (¤eJ¿?ëªÐweE,§†º$𬅞Uü½Ú eÁà7t¨”²m‘;/¤ÖÆm˜U+•&¾à™Þgøí5‰ÉV˜Bª-r½ß@ ¬°Ð@íÒh»Po—µeU­"SîL[‹N½düU®t½p1J!®,XAüñ«¯â·òª.§éïÎÎÛÊ È):ñí¾ºw¼é´e5œëÂ/»A uQèbµs‚«,%›ýÝÑ¢zã]²KB»…ÑïpˆÞ«åPDQ2^.=âT¡Ç‰mŠ6L,ÍÏsõ1Ë·N“…Õñ¯bz%šÈnŵøì½àÛaETK…m#ÐÙÃéöŽe 3àxzƒïQî¯Ï`}®»E½r¤ø$Ú­1Þ†ÎK‹’²–¼¬[ï·¼ùEH%–¨ða²ûÅÎÚ—»jâ(¢O?¾Ò¼€¯îå|ßnÒ{5å/æc¥ ]L)K}šÈi ¿…„’—F“ ¢-u3Òáiô÷ßoÀ—yâÎГãðb%Røþü£s"ß±.Ìú:ï…\Œøm甞„*Q]Ms NQ¨8ôzpÈ천¦¤ßlÌO&œõŠj6¶ºË(VÕÆZäwËD:3fð5ðà…©Ùû$—ñõCå8­Z ”~$`„»˜­½ ÐÇîÉ]XD )lá˾À—Nþ`…(®Ò_mL˜rô>Áx¯j&[BÌžÿFÐeѺaE7;òhÕR|Ø>xgÃx˜¥W|ð%%´HÍûÑãpÔ7¥Åp®:–!²½]ÂkwQ³Z7žÚRrΦ]×÷‡s<ôÊg¦Â’ë[ƒ!c„3æÚ¡•ówùq肜t‚ôëkTG¸ÄFN;¥Û¤0ÿƒTóꕞA§­•á0Û.1T¸³–4Ñg5g7·Y¡ …Ï–²ñzŠe¶]2æçÓ,s/ož­—ZÚbÔOJ8½0fN[> ŽÐ)±Ú)ØÏ0\h«÷ñûçwù‡)4mv4o‡‡g ñÒÊIÅϧksé_Kõ(*s(Ùjf±ð쌓‡Q©‚tÑc.w ;噸%ïB$Æœ þR<’ÙŸn&˜ñu„yŒ+!H€Ö6î3èw´áé# º ³°¬Åæo•“?ó6‰ðÔm‰(sžÞ^¤ùå Ví¶Nî!»Ü8•æ Ÿ ¤N8N˜àÚ¾Úß3³˜¨ö49à /nÈñß­Æhýdç/í'„¢´QoFÈ–XW²Ñð:Ïà!TÒïc€eÅú+ËL>X`%¦l»I=U† ÷-  ‰ÏG/R…¯;6WíÑP€Ã±„Ò4~(uÅë„—7äÛð>…”«tY¡³`´Ô3ÞMó¾5æÆÙÔGѹŒÏ¦°æJ ¸}ºÄѦiãcAý^¤ÃBà¡dÛݱV¹z|ðÇ•Í&ü4À_y>íÊC®_'±*é´c’Iåj³†8Í:ßZ2§ÓÃ?h³ð·ÆHûMß5R¨׆9Òa@¶ÂT»i¢Â í¹b£F½ÞËJ"↲W úWØ[ú¸ÎßðkÁC -ÕT;l 84?Þ‰"õh?fßÅÿ\…iQoöÜz̰”†}¿Ê+d,Vr€Ì~ž®w`Å)7 @]ßå\>­™3|å²(\)GA›ð¯»-~´s¯|W]ðoKÇ{‘q=3y½blÕ>¯Í,‰™êüá½˜ÃØ!IÁ}ž7ùÒ¡$Dr¡Ñ²þ–­oèÁ*OBâˆc£pú›ÖCG¹›ñŽN,䉻d9­»”jÝZÚô}ÖEàÎú~Róͽ6tŠ›·Š+ø›ÖFv¡Wÿ€Y 6=Ç¿½:ÕˆP¥èÊ“¦[ü[ K±Ž,µ:ƒ ëœi0½É¶Ð‚~àƒ~Ös;–~»*®^×NxüÍ(Õ‡¼dš¾#Ÿ:)—c©`vFKÇŠCfÄõ§Šfª#2u#ÓH"!cVv%rù­Š“a‘°‹/u2w_ÑòfÉ5¼ÈY­«’A+̪æ„í iŒË“[v>3Øßõì­ÑKS³Z–¹i[Pÿ&mЇ™¼ÁƃbùË…÷eÝ;´Uש(Ý9õVdQ캸šðÀ„ÁI›šÚtÝAô"d6¹hÝtõ˯RÁèc¸,7Ž»9ï¥P7Ùúß¿é0mVÔ)Ùõ$kPî’©Ä3\å«4þ6H›~æž¡’¤ê½P­ Z]Ìmoøs¥(ØÍƒPEô›§çB÷ª§S®ɨž©þ”sKü÷&¬†àK¯ßO•.7.‚ bÑR¿ˆw·häÖi ×b³8 Z4ufδÁÏû}û6#†í:ÂŽIýõ­ê*ñçLÍŒnyRG¸ê(ø(n­E16W ½ÏhΦ~T‡"'Û1ÿ’u¤¾º !§u¹ÂÛžÙµm×PZeþ=ö{Úa¶²aiVý7>ÿõdRSÒ-Jp.œØàJ÷Ú™Š¤­ÂÞgHað›ç9ißoÓ—D¸¶©ê—J3`_$7>¬ ѧJàµYʽꗔò¨[fO¼ŠZÊ’ÇYô-ϽÆçÈ8Â=ã̺àªY#Õð®À©cCñ^EÆI–}´HÊ!}»FÌE`UY¢!ie|ßî`F]fkcdîâAäx"Ǥ¯‡SÊà¾=l'Æâs\Øj¢Ùñ^|³ýþh©*‰qoDKdÅLqÆ>·ÏÒšrWI\(,§ãæB‰µÐ4Á}¸¸Œ'~I^ñvd=]Ã#ú7Åp„\Xªíýtkе¥íDÑȉt~BøÞR,QÞAE=ó àŸ¨Hõ+3~IÕ9Š %ò^«É¼Ê™Ç.â‘ë+o­×&h´nÙ+°—Ép²…,GËáÃmïH²àêËûiá3 sønvYLïÔàª>¶:˜ö+ŽìÉJ©£·úÛæ$8ãðâø6Bd 1Ìëå—Ì V)¹ÿä׸ Ëã½döjÇ ô¤˜AÏÈTì†)ÊÓgÎ ¸òÔp|é3ÒOÈÚO@BA£ªMµÖI_hÎS@K¦¥ýö|D²ÎÐØv·ì1uÇ–2Ú©È:¡6 1àã\Œï¢3‰–±õýñ)Ýžøèóqm¶Ñ+›ŘÕx¢Ó.ˆWY•ÃôxP/ŸQÒ=­ùcG!ê‘ÛýæÞN÷9v§QÁ¯HÆ0JœHNY.96PÍ*Ã<äÞæ»xJæÀͳãË=f©g‹¬E(æG²qÊ›aÞŸÚÙß*#=^ T‰6äeÛðu³\ÎT37ÓlBz¹ÈÜ ŒªÄ[éS¿DQÏ*–m÷¨_,;,…YŒ“,×$&Œç}Ê0tKmXÝ–’5Äß3ª¦Š‡Ó“ÚH”½€&1”IvÀµv kk0ààÈT^‹h’#¤ÑÈ´Bž›8¿ÝÕpq1ãܶ×ïSšÜûåDüî[°†5ž¸Eâ嬮ÉßKª«ÒBtèU)³6¸öù(ërù@äye§:GWâÁBÉÛdµ(F¦˜à˜ìõ¦Á"ÙºG<nåÍÔôµTôs°¼ØéQAk $sÉm“^¡ïÐec·" Ó’6ÁðYºÝF†áÄ_ÝÅ‚¹W)áß¶q°’½)]ŸBŸ¸¶ßö»ST•à‚fâó€KÜ6L>;£0?åöðýµG“#ú0&Sf¡.ÀjNŽš÷Xòÿ´KßÿPŒÇílgež}d.óÙ!›ìuv¶È:ëDg„HRöN¶Yg•íÌ3O䜭2Ò÷ù¾¿=¯çó¼ú,öÃõrX…#ŒD1Yzê1Iž«øXŒ)²3žméù˜ƒr }éØÂ`>¬±QÁ|l_ó™.Î,·gš«cUŸ«®#¼º0¹ÎŸætT±Y©ÖCêy?K-zi|™÷å!¥ù¦—‚h ñ´n‘Šáñ‚‘0„VhŸÑù¥ Ã2=·0—R§õ× Tº"0c¯›\3#ÈmšZ#bÓ4(KÙH“fñ•²þ8Ø3·$âv–dfN.¡,1"t¨¶z¹ÂÌF÷vx%ñÅZ´ý5xÿW’tMùÒîÍ@FÅïÉÌgÖjÜ2?T>žg¾¦ª¼¢nÔ\>å q¯&„ ž L 6{Æ'#?úþº/kó?"ÂÞ“¬p»‹k–òM«èj<) ¡4( Ú;\@âwC4¯¡Û®†,XDÇó‚½ò ã«–:·¬öÕ&0yòÚ?8 É„7ò´Ž,îvòãz£eò¬63) ;ÏežÌºçÍÓ;¥r¬0â×(”¾ý‡ŠhI'œú_6ÞÍ>ðû/Â`šCI•…Gé¼Nês¼«5Ç¥+œÙ1ˆ…äÍ©(r˜h+¸z‘êqj¹•¡b‡ÖeX{/R†XG],;Âñ9ý—>+?3Cõ0Ó*?&Åò6Wš£¶ùŠÖGÉÙVûõÓKgj*ÃÁGx;ª%67?!9ËòŒ¿¢ãÛX–ЩEúJé‰ †ÐØì°óQ4o²lЭaT=Á%°j„Lº!^»c>r¯|ÓÏxmå”~:¶±ËÑ¿¹¬¼ÀŒ$~ãÁö—¡ù„æ„XÀ´¶h·aÜ–;mŒ»Øë)XLLÐ*ϦiòÍ$釵Ƒ@Ãá?­AÝŠd’%Sˆñ§ËwC•knÍá}“;|>DzR­~ÜÒ;p¦€Pô¢È9~`Æ‚8ïñâ±HUÊ";â‡ê ³M‚Xkæ;¯ë*p; ”ó¾A£µ±,ØqÀTŸt£·ßûÆuˆœ oû#»ÈÖ¾ÙÅ€”^IQËǘak,öcZ‘¥R båGø¥ršSÔ ZÛæŽ¼„ÍW`òŽžïF²×Ï:k¢JAŒ[þÖ¿!¬´äœKl©[È PdR@tÖÚÄk†«pï€î7ìÑ5ôV%¥w+8×.¸tÁõƒøÇqiÍ@\\4°dÙ « Oñm‡»¦6¨Êö‰<ð] h|[÷k{hÈ%‘G¸ŸLoá%w‰?ojÙ Ñ^ZTæ;Œ¾¬Ùù4ׯ: éfB]×[÷cÆ¿ÁÆÙ›ÖR™ëŠó Á«`•ÏRç÷uÒâ¶]ÿÔm7jG}ŸYi±Ob9š=¦¨_ʯí ëϬd]Ca[¿¢v‹ž~4”§û¤LJ«òGÇç˪¶ðêtóâÉvød~£ªær9|ﲜžiêx”vhnd0ÑØmy|ÎE© Ž4·&*m´‹rçxصuôÝÇrI)¿º¥N cDűœ/Ú­MÚF .›ìs7)wDK=ë?vü=И“nõΡŸÑH¢/t·wü…îÜ¡J®¸'-Æ+ó\â­PœózSm$ãÀ7„a˜‚k.= ØI¡´ïNhg3ç|Q ðÜ¿&W´iÛÙ«„•^GUP¾K+é Ì*!a!,"¨“ãkL§TèD‹‰ô…õ6'u$6ùŸ‘4—‡Z‡u¨st™ 1Ï’ææïh¬åa숯FAs‹.ô×r._y#¦ìjC̹–¿ºÒ„²>7È󧌗8¬kÎ ›l@±É7@]á»k"þJ‹‚_ka?kØC0Þ·Êçá>]ý¡5‡L<Æ Txqh?&ÞŠû=íØFÎxBÚDÿ‘ä†Löþrk\;HzŸourÔ.ãÝBÍþšhÚÀËòu–ÃYVñõ’Šwý®ÉBŽ.¶ÀõÔ„GY«p|±-’Á>°kÞBõn%Ù&_•ŸË@¢æ€Ïñ&À!«Ú $­R}:X5X­3D'N úC=Ò-M\µ¤¿Š;vró}Žâê™|N„0;BZùÝ«o• ®Î!*M;ïÔÎ;’Äõ&¸,'cð9!lGõC‡eå€F1ˆÕùý`Ò„àQ6úá/ŒÉFwU‹[?½?ViRö)"6+…bÓ™Ó€ß “1éS†¯Ì3‹þ¨]о¶Úë “‰O÷î_Yú†r¿7<-f–ÊçZÿ^ Yõ¯.©X\Ü`´Í¥Ïìªz¥˜~×G~ýÑD©fQ¸«ìªÕ8]ñêÝE7¼œ˜/ÆÒ¾ð}ôóx¥ªÇ/Èþîü@sÞ¦Þ¯XrÜD\‰’,¸¶·­]3._y×1Áž5çn$7ØAKñ)ƒ;1wÚƒèÅï.iÿ ®'¦f •у:O÷¸sÂSZ~ý“V/:•šò/Ø‚C;*51,À˜¿ò* 8Ë,ImlÙõ³~½|0yçàòpÊqpz¿Â9@?Ï7^mŸ9<Öy3P!L¶øäÉÍ}tFšéÓ‘BÓ!ß7­eìq©ãÒ) ÿà¹$JïÁ»PâmcO £MðY ÇÅùQáQÒa |…)PXòàÜÅÓGW[]cTúRM…fhÀ§Eö-&. Iª‡ÍÈê–ínHQ0ŒS™´ÞŒbø¥²P^lE’AãLöÊŠ2;­l÷½ès°¬=Å[ûilÂvË 9T30ÿ81 )fWÀu…éËI+5O-a¶¿Ç>™ÿ©[Là¥íØ;:Â_ È?òö$ÆaSx¢ÚºçFµñ÷‹Q#º‚ šÏù¨ëñªæ) ÔªÄ#"éÿgÔÿþ+W_w—à?—`êÿVûÇ(endstream endobj 151 0 obj << /Type /Font /Subtype /Type1 /Encoding 1621 0 R /FirstChar 33 /LastChar 149 /Widths 1637 0 R /BaseFont /KMAPUO+NimbusMonL-Regu /FontDescriptor 149 0 R >> endobj 149 0 obj << /Ascent 625 /CapHeight 557 /Descent -147 /FontName /KMAPUO+NimbusMonL-Regu /ItalicAngle 0 /StemV 41 /XHeight 426 /FontBBox [-12 -237 650 811] /Flags 4 /CharSet (/exclam/quotedbl/numbersign/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/asciitilde/bullet) /FontFile 150 0 R >> endobj 1637 0 obj [600 600 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 ] endobj 131 0 obj << /Length1 769 /Length2 792 /Length3 532 /Length 1350 /Filter /FlateDecode >> stream xÚíRkPWÕ"(Á2>PD@/£¼’,AZ¡!†ðl,Mö&YØdq³`pPTŠZ” * R ¥Z±:ZÐ_(¢b¥±F´™Ò¡|Ô] ŽSüÙþêtïŸý¾sî¹çžïº:‰b¼‚0R ÃH5í…°‰ŠùÈ l.ËÕ5„‚(“êU( ñ÷G@P¦ <Àå ¼½Þ|–+!3t®PÒ`YˆÛ‰‚TÂe¨D¡´ª J€R†CZÇAÄc;4@ 5Ê‚›… Ãe4B®fqÆ …«å$àO´±ÌŒ×P¤4Œ)°Œ1é‹©&tƒrGH2gAÆÉ¿aj²xX&AQÕ˜üXHoÁ¨ 'tHUF& )EbRO¦&À oQÃ3U“Ñp%pYZA@à…ø²¹>¼ ׄáZˆ‰pZ¦r”ÐÀñ>Tc“­0éáˆ%‘‘b‰ÇÄTÇ1Š«éX]Ü7äñyS3Q¸¬å²¹\„!2ëõ_Ò¤³BÕ2ÃÕ àÍ[PŠBu,.#åÍãàj jÔ2†9l5I3[“ŒÈIŠ56TÀA5LR¸&™‰r ï#Üå€#E©ñÆÛ· &µ9^>\àåÏóâ»ðù|ý߈²LŠ‚jzüý0½®å8“+„Z(co‘²€MieÇ ¿È ­ºVgα|v±áqú™Ä¹ûpLëˆvRÐÕƒû›v´Ú¦__! øl.uÌn»°8ÙT9·¾©è@Mâ§ù¼ö1¶º‚¢Ïß}å±t0¼u]üžòÍýö‚ê®a›³§Ñäœwqf6,©j~Ò{ËjŽ»x—û’…|cíôž©ómu=÷»?<‘Wv!Pö[ÇíÈp‘­&¬héuù{VRúø+IžuÍLïóPÈ©÷˜bÙ°¢@Ôñô <]«Óµªl.DZ {’?lnýõ Ê´€6 ¯éñ°ž›cã)—¬S¡£ÜÒtý˼nJm®¨Ýg£Ó‡¾¾]ÙåëGm.G8ªòyäÛE]Åü gQxΪ{žwšvçëëæØr~!¶í¬Ûês`$¦x^\zÛŠýR_9ª"%ܱ:ïQ*XÔï0ãðÆ!óm5}%'÷ßYpòhÅ‹BêgÎB‹s6F‡ÈÝz!æjæïáp½E2|ºrÇw›XÝD«¡»®ÓÓ|uîeÀzÉï ‰òÏv¶ZütçO³|ï̧›Ú,¦6ž‘,kV°v”LûÃëÕ¥³#ÏEbÏFßæØÏ]²eÕ•IhÃ>m¶Ã *"Ï/`åìé'öÓ¢n¶×þ8f\Iƒ+KÛ^ÌüÆì^ùÔKÙ¥½v{¾_•Ði–ÜTÒûdèAhlp¼eW ?¥¤à~bñým5õmçûöÚdHÝl9#~í;£5¬„ŠêâX÷¯G„âÁ#§·—îN>’ò‹ì£{hËäEœCû®Nsj;SVKëKNFØW„ä=»9Ò³õ¥àã„ ½_FK‡ÚÓÞŸÿªZx3Áz8.²ßÐ|øHYêÃ+e» –¹N9›Ò弄íÔØËó“g—å6~p¼E0ë‰W¯åHü/=…qkfÆ»mp(oØ?š7r#£j¯évÊ·9Y©I6Ñó‚ÍZóNç-–Ædåâ.™üjÕ£òs‘ö_9Z­6" “ÅÖdžk±¦veäEù@bµ_f_w\w}·X|,-¾‹Ü±“èp×UÞæþÃõ¿ÀB@F@”¢IJ¥³þÊÌÞ¯endstream endobj 132 0 obj << /Type /Font /Subtype /Type1 /Encoding 1638 0 R /FirstChar 3 /LastChar 106 /Widths 1639 0 R /BaseFont /RZLLRZ+CMSY9 /FontDescriptor 130 0 R >> endobj 130 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 /FontName /RZLLRZ+CMSY9 /ItalicAngle -14.035 /StemV 87 /XHeight 431 /FontBBox [-30 -958 1146 777] /Flags 4 /CharSet (/asteriskmath/bar) /FontFile 131 0 R >> endobj 1639 0 obj [514 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 285 ] endobj 1638 0 obj << /Type /Encoding /Differences [ 0 /.notdef 3/asteriskmath 4/.notdef 106/bar 107/.notdef] >> endobj 125 0 obj << /Length1 1642 /Length2 16493 /Length3 532 /Length 17419 /Filter /FlateDecode >> stream xÚ¬»UTœm³-Š®Áww‡àîîNãÒ¸ww‚»»»;ÁÝÝ‚;9ùþÿ¬µöXç웽×E÷è§fÕ¬ªgÖ[=ú¢É‰Uè…MíÍÄíí@ôÌ L<y ­±‹³²½­¼=·,½œ™)P ddø‹±Ã““‹8™€öv¢F 3€†™)@ÔÌÀÂ`æææ†'ˆØ;x8-,A*5e jZZºÿ²üã0öøäo¤3ÐÂ@ñ÷ƒ«™½ƒ­™è/Åÿq Š™di0Ú˜Dµ¤ä%Tòj 3;3§¿M(ºÛM²@3;g3j€¹½Àæß€‰½)ðŸÖœþr ;ŒÎf&À¿afî&fÿ@t3'[ ³óßÏ 3ÀÂÉÈô÷@ö ‰‹é?üµ›Ûÿ« 'û¿¶±¿dŠöÎ g' ð7«¢¨ø¿ëYþÉí ü ìÍÿzšÚ›¸üÓÒ¿°¿4QÐÎ2sý“ËØ ` tv°1òø›û/™ƒð_e¸8í,þ«:€“™…‘“©™³ó_š¿ÜÿÜÎõ ø_º7rp°ñøW´ý¿¼þ³ ÈÙÌÆœž™åoNÐßÜ@;xÆæEÊÎÜÀÌôo»©‹Ã`®fNÿº ªf†úoF¦öv6S3sxFy{Ðß”ªÿ3•þçDþøDàÿyÿïÄýïý/ñÿíóüß©Å]llälÿÀ¿÷ àï¢1²üÝ5YÀ?ËÆÅðϾšü"l6ÿ»Øÿî­aöÛÛ˜þwìßüÂvÕ¡gfg`ý·è,t73U‚L,æF6/î_v5;S3' Ù_ÿu·ƒ˜˜þ¦j 4±¶ûG öCfv¦ÿ½¿šý«|F )Qa)Úÿͦý—³â߉©z8˜þßLrö¦ÿyø‡êûw{w€=ËßRèYYØÜÜn6ŸÿŸ¬ÿâaþ¯³œÈ èÐab`bbü}ÿ×ôþ˜‰½é?#¤2²3ý;uÿiø6qqrú+ö¿Á߯ÿãü¯ù73s73_]²7á ²JËHÕbç OŠêô÷2C;”4¨æûUÛ÷üH Ûá®0|« fhœâùhóX³¥ ­¶àì7EâÉÓ#åàØÈðPÏ tßmv,9¯+"E¤Ÿc6ž ¶Z…W ž3Ýë¼Ê~ýJÿïd- Yq’}\œUÜÊ·n-ISûÛ‹m£9uâóØT6}òçŸ |¦É<Îót†Pò+CØzÞB¨vX]:BÏ…]ÑBI1*´-!"ÂK¹t•F4&6Iç¤|Å’ýÊ«£ÈHQQ·/æÛÉ?`c­îKÂþȦñ!¼/-3òîüóF®¿Û²Ü ‚HtÌÒ+R›†?–jlØœ!ÅhÌdŵ” ®kzKd\Ç‘)èïÎé‘Ô¡=­6ÛšçeM8FŸ+¨íàiðBý”™}cÍÒügãIÜ¿…„"ö[ÆrÈ»,“K¤ØÈøÚ æ=áÏК¢(¸ ·£jé¿©ß ´í¥,«8ÕR$ûù÷¢Åc‚IùP¾ñ_îÿîBi=n¬kÀn®G5OS¥pyÆ=ð~°GüN1k?¦ ‡XgÒGnî…ì1ÛC¢àãBP,9Â`üŸ®Ê† Ü ¨ÌLbxùvÁjdߤ5y¹íGÜ!b•yì©$¿‡–¿‹xD¦èéNöݨKó)EûY¯!§3ˆàÇnä6‡ºóñ¶J#ÿ×÷ê¢×f ´iÛ„Ë׿ÂR8Á⹊Ð`¥=¦ý{è­IŠWŽÐ½†KºäyEiH­ï«–5i>«ë8¾³ôJµl4X%À8‹ñHA–BÜПÂcÈïñ0äÕÞÙ„ìà­SMŠtâÛÒ¨•Er$x¢$R,súHµàí9N½A¡†l°’EX™}a,Ä…™GÛ¦±)nù8¢;‡D‹ÝMà*Äepž+Y­"*:Hì§4‰/üŽ,¦Üšé”î·6{póUØÜdGÜÃ5o°`Í4óÕhevô 朇& ˆòá÷¿˜Ëø˜ -$˜„í‹~-@ƒm2a, °8&ú'ÚÔº™ø,·/N8´‹ø¯ÑM)Ràp^Æ#«Þ )siœiOâ°5ߦ‘¸6_Þ3Àqpö±Ü\+z‡#ñÃd+NÿtQJ rç¿Þ:?<-˜y^Ùï“i ÷I5^|® ÞF=®¾‚]%>{þ¸Ë=J.õ)¸zÁ ~¼¥Ì U!U1|ª‚zÊQ‰å¥,fÀ«¤Üvþ¬­[†ÀþÑ·¤R& Ä sˆm½Ã[¸ªßÅ5–”í~&rÜ÷µBІ{?æpïûPY‘Iw(¹£w¼“;F¼“ºäJ§„Ñbö„²~XÍ-ö¥aDP_Wka—fȦ3Bï˜Yf5x¨†Ä¹xiÿ›SXs+ßµY׫¡@ü¡:–¤"ñò4Ô.TƒZ£³Á4ÌÕKœ¶t".öTÕ¯:FÛ1T¨î–92ÕR Õâ€8)Ï¥jT;B“VµÜ^¤^A¦KåŸHÚ4ŽóçÑ­]›Šx¸è’‚^=v‰MI3˜a2a¢>Äy®“R|{õÉl…TèÂæ°f¿/º¡˜€JÂ@I‘ &$4]}η'ˆ²'ñÇ“M9ëÛü4<Ç@`ã†ú×jÖ®t˜Ýƒ(X"±qk”Àù0CŠOêP ÄPã9ÐÚ1òFÑáp s ø{ÀÌÓYkõ,ˆr°FmÎæ·µ'ø¯;w•Þþ¬<5áì%/ά›ÕÆ;UÜÕ†ÕQ¢_™)wV5Òvó¼ì»§Fã~òìA€‹’s@¸ »]F"½ÿ~Ü¿[A¥ñ½u`%`lt‘ÂU6Ø’ìÚŠžó-›¥¤ “+œ=>»Åÿ­szq}ÛÁ$Å9=X+8ñ¬fë÷'’‘Œ…F¤Á¢{ËDq°lØ*_ù˜ ;¬†þåï·A]=™ú)‚±Èap“ð²m ›zÚwcœÿÉ€Ü'ÇÔ™D®¬ß‘¿œ-˜’e|r9F ZIr}ÞjÑ02j×ú¾¡Î $P“«·fëéže/*›Sû4 ÃÄ‹…këÂþ^ÂX s–†R¢6t’@{§LiÊ{±ñ†q0gI‚ϧ> ƒRŒ(t2Ü…Ð¥4Ê´>!!HtG¡± ¹0¼†E$Íù\ñnß]±èGé€7H–Õ°×…¥¬gÇ ¹,þ$IË^´)¥™Ü¶KD4¼~÷3ŸUá,^<¨ !÷òsZ™öºcyeNúú”rA=}×ï,-j>÷3œøÆJO0½±ZŠ®¥rmgmil=Õ: õNÉå9"放©ïDÈ«J?o8{ ¶ý³ûüÊ¥®¨SV÷ã̆ç[ß9¸!Âÿ:»èˆ¼óÞk=~¾ q‹SœÃíÆ;~ºº.&®Z‹ûé€;«æ ¡ÅÛü1Ð¥(ah’Uv¹…U‡gݼs«ñƹŠ&g}”æ§bâОæ“h|…AÐÍ‡Ú ‚îºÓñ—9¬zs eÂ0Â^~Øï´ÀoW«h'&²‘‹%Å‚éM3`®Œcâ®Qh(YóÌuv6÷úSeH–û –ôEs"ÆrÕø[/u´’ ÷ ¾$³í­¢Â‹U¹Göd~sµ53•œßL­¬¼àŒÕokŸÊàýÛ§ÊîNó¿¥ORâÐÌHXñˆCqœÔÌMDd~^h ‘2ëkž™9TnÐ*¨*KÔÏXc¥ùHïa ¸â“$“ž(%@,:²_G£ªS»ø Ô&ØGiÄ (†®Ëkq:É®>uáz|¦qåFùBË=¿­{ëzaÒ\Ëß ˜NÇÆUæ¤rÀ§ª²ƒc¢ p}‘·S¡\„ð\A^§:Œåa÷ÐÄ60Oé–ç|*£«aÍ#&A³iæ;;éÜÈ•Ò@IØ›Ÿ;F=]ÍEéÍ$»QŸæ9R ÛLɯ.#ØÈþÃÏ}t¯_'ΞÌé Šu‰Æï*Ç?zZÞÜ~ˆbÍòæ:ªÎ>T‚4Á×1;Á»óma QpÕ¼D Õ­´EnÚѸ|GrMÞÐG’#lIÚ.“«bÝîàºæ>u«y´=1:‘« w਷0‹J¤VÈã¹+5ë #šÂ}™iýoü„‰œ,|£0 YUÛ#רñt £oÉj¿joD÷œt(š=è¾#=º©nI8ëÜÆØÓ…~¿ÑoHë'c½ZrE_&ŽÜ¡Ö´%BgxSÄzñóÿSÏäÊÿÎ2öÑP‰Õ¼C@¥Ú•‡ÆN…ñǾ"žÍi­QÕS±Nh‘í8ù*ç9T‚;ÅCÐ~Œ>ï[Dc.†êlïaÅXêðôH% OIpEJŠËÃ]ÛÇ\}ÞÚ‹ ‘ÐM±@svç§ÔØX(¦£¦ËsI¸õî›òûLvú`Æ^æË÷KÏÚŸé¥ÝÉ’AÒ¥ñh*c«t…žt'ƒ«^)˜+gaûû—K6|©YØ¿Ô:g{ßßÓucÏhl…›J¦åý"B^WŸl`FC>˜o—ÇU^õbm…‘TâV÷‹çLB ÍõnàÃS^—×ßÇS÷•ûéú/HT#Ö6!‡‘²ÓëÏK~<´õÌ›>ç [o½V"ØW€:®bÍWóU)=cv¦b‚®&Au*ßNnà˜çÅ÷/ê¾eí.Dfá¶ì™H ¦ÞËÊù®kG¦aY£û€ßA3ëì9.‡¿=~ÞÙ¶… +PÉlø– ܘ*+øº¢‰­¸Æ?Ò ÙÁ3¨Î/à#y§§§JÙY%¿·µ¶ úi+‚ªœHvZ§L’ñŽÉ%ÍzG?6ÒFŸÜým™°»‘r_Ôˆ‡UŽÌ]}Õ„Ž](èƒGabœÓÐØäbÄ·×¢Âùý*œ÷F>þ°>÷=h6È[ƒÔ¹?üò¶€Ì§<šg·TÿU’(æd8Üî¢!‹[b'ߨá~$Þy~ÊçÀt-EÉUϪa‹…>ˆð ê©v®ÆT»¦Ybãà@Fþ¢"ƒº ò”çh­÷rð£#odŸ…б©›Âo®2Í,é` CI‰ßþ:וáô—Ãa%Åhs›‰ÆŸ¯Xr¥õï¤uˆnÔólæe¤ "0›êL[ýò™õK{+L\´$N·í°ß1­t«§3KËàâ ÍU¡cq}N±¿Wóc#ÆrJì t S»‘•š üD¶æEÅÂYOÙNÁH:âÒæi"ÈVÎÒÿ©û"?‡Q»Â¡JP£§X{LZê Þ"]™?z®×_µPÌñ!©:p–lå!uÆÝÛÁôµR(L–ÌjÅL¤î²ä&²aGS÷ù`¨ìÍŒ¸A˜:J¶›æ(Õ­Ðí0o4³Ù¨ <Ö¸œ™b6Ú´Qém“+ËÅcú>ÁV¡×*öUaõ$—öfgh>˜/((‚4;¡ñ¤ææE$q¬ùjØ&ÁÔ}ðvö- ‘9\–O®½H‘>K'}³IéqwÁ¦ñ=éA.B¯(1ãUÄàÐÐ)ïô“v2›7ö.i.óZ§ûÌP’¿ÄˆõLwçq•=IÒ´ÜxršG|5‚§mc÷ôöíÛ¬ÓL8UŠdWDÀºŒôÒv”6Ë.Å–Ý*åê‹™Ô½(=¢Î){ž›ðGB‰¶Óhm! ¥bz4ºlTã7WTÊ<»À÷¹R̼ìqa7¸ùúÈK}G7ºpâ¥,ÔÊÍä&·XÍ–•™ïQB¯}áx­&u°aÛð­I’6KçOé8ÏÜïŒ.”÷ZLÓ¾ùÁª°Iô~ËBhxƒ JÈ=Œ\™ ’L}:サ ^µ¨%^OõGâ¶Í5 ÆÒm(tÛæ‚L¸/‘’˜*GÔfSBkµ"ú¶¯!ÉéâW*õq”ú„@qÍu‘Nt{Ý÷ãé´“Mh6À™ÃO¿ÞÕ qÞäLáu^%†õw:HFÙ&J¢²'HUhþö-‹–j¢`ö(·4]DÀ!lN ˆñ¨³¡¶/LJI¡næÇ­“ús8V o¦±/šÖ¾¤º(nhÓ]§¬-ÂÌMBâ“‚yNb¥)y ö‰bC`k«(æÏ­÷ôq"Ò’û>M* yî]Y—¹#\çö«9#,ÂN£…ö»†YEZ;ª&â¶G „k¼=ÜQ@£cÆÓ퉟ÈËŒoIH•åa´éH¯ uÿå$Wè-§rÔÉktôLî¡a#¾+™ëÅFò,lc]–üM»î@91YxšâGGX¬Uþ ×o4”¹ ¥A6ê‘á"å:¿w}„PÎÙSE w_^7Ñ5¢ÊÖëÒâQÒÒ‘¢¸UõXÙªÁ‚lðŠÔ BÐ1R,ªC+MƉõtÚY…ŽvèâJl†Ñ6Æ«Ø\eUýŠÅ1–©èØš#ú†ã¶ ;ËëÝG캟¦†µï÷SO]›Àuæ8úš–fË~­“QÿHgÓþ%^£›'R„Ãq¹÷zχ?_ÃÉ: Çk£uöíð›Ò×û¢slo£’dqw›AXËôd¦Àa(b{o5 |é­¨;£+UÑ÷²üU†‰É½]ïúоñSz¥ßÈxÅ@íX6oÂ(%y7u¡>,´þ8`w±"ª!ù×7É‚Rº8²QÔH¬$ªõ /™®"ö¨”’î«Y·³ì »Âü¬=n5¦·„¦¤÷QXHFTš¶S™±C“H1_¯ m©ûyžƒ˜æî! áQ@j&ÇdpélÀ³ò_E–n¹ï“Âz±rÊ"<5_Ur¤H0•Ñt¾·?›,À{D Wó·.‚\ãÃzÍxˆo–Q…tO©U–’IX2€¡ÔÅœ]`?B~'è}0ç¢Aq,>ÂŇ:ÉÀç³GÍeh›Ò p†ÞQŽÄû]¤îå §õ=Ôì‹ñôcf@2 ¼6;2a ÎÔyÏ8íœNš ±ËTž½Ð¿oúví.)rzínÚ@l.4£@å._SßóU­tVv‰¨²ê‡ÿ5îûì­º>!ºüp ů~-1Ó¬­ì¥ÒË\»WºP…êù¥mía6l<‰ OøâÏÒ ¿ê™ßI!´ÙWù‹°¶Êö©×íÙì^þï0€‘¼Â”áz¤oÛµbb?¢ù™ÆY¹JNê-pOF4²¿Bšq"#Ója®ï…,ê©ÌТפùwØÛ× à‰´…ã¶û Cßì`(Å3*¦ùâŠóEÅØ¸bwyVnÁ°ÊÒXBTÑ/Ï *!,º9ùe©ßÀØÄw^ÈæRÄCar.˜ÔAŽ= úËÎÑ—Ãj¬˜½Ã¾F†äJϵàEÞgÓS‚ë:Èß¶& £‚¸WØ=~A(Ñ'Q«Ô½X>žÞG˜ðjW Ø áÝöRR£>Å"Ž÷Á\\aú:Eª& “œÐSYÆIõÊ"úá’¾Ú™:4;Ùk ¸¯ÝqØ¥l^‡ÕÂ/©bnlÚŠŽtbµžxg!{ìT5û¶†ƒU‘íÇt¬zɲT…Å%i7ÂLœ3мöXëIì(žµüÈ<凅J }øõ¡Hó=Ç ã-ÉDÙ2O™ÿòNÁçår ðJû~ šoÒš£ûæÄ•óõ(Î*/Û»¿í=UUÝ™É_CJIÜñ±‡+x©Zâ{Y,}ˆL¬¼ê›B› ’]&…@,‘mÀå¸C*&ž<Žê)3GŽ«m]¦ò–\3ó  øšžg TºŸ^VàÐ"~:ø-Œdà.V–Ï!£z¿RDÇ®õ½Ò:ú²+e’]„HÀ¬vJŠ?dP>h§Rõ]äDŸñ“ì%~g,ó]HC¯ìë(çÞ+‘öCŽ:¥E;Ü`ÿâÏ`âyǯiŸe=‰âAë7&„K•rÁ$Þ¦éò¶»wÁd?-ÄÍ…è«K"id–‡º$dDmÜ®¡WRWEɱÀŽ‹ 6]w¢—Ú¢õŽ ”B,yÃâ÷›‘†pPå4~ÜõÀšÊì‹í¦å€÷Ø'wÛ”Áõx·›øÁs6_4Æøwæ[3ò›vƒ¨Ñr›ž²ÊÑÊÔ•8aEÍ'ׯˆ#é,Á‹D™ ¦w)¶‰K„V=V¦—‹ ?xÃeü”¨ü¸‰ÂÏ¥ôG¯uôaFº þ¼Ò&ŸOCü´þV„6ðû«Õ¶ß{ƒŸr3ƒRÂæ/J ©.ù–ÇàDûëôÍÇ ÊÊ÷ô³¶Næ+å—c…¦í³Lôå?‰ NOy,MÔÇ¡¶R¯9s|üJÝï^×ü?û¡’q¯fn‹£ž_šïXwû/+úáaF¢fã¦*4¼åŸh·êÏÄ­N [~9É]äz[ÈŒäR7¯Ä|G=Ž•½’?ª‹ÌO¼Ú8yD-¯Þ[š <²W©¬&µ‚˜¼Y®$3תUn ]uˆ\¢¾ÆH*…á u±Á`Q%w>Mê–LÑ!û뛬%£MɈ— üAÊ6B´‚_¦Kö¸%œÂ×.ZÁ¯1´T‘ðÚÁ1ãCUÝ\’?è¦Ûö£Cïh¼šjÍÆwœg‘&Ëx>f+Ït@ }âÃýí»?Ì4‘µ>v7* &Ï+ ˸úÉåC4ÓLd[,O4Iˆ¹æ:c„ðôÒ¬Ö2½À­—c$kBií {k;ÒÎæ›ª¶ú¥=0"§°Õ"&°‡—jåÎÃ'æ#ý¶rŸ§(QYØõ‘ðû•ú§]pÝ´!iñ¿°DÌ~ÍØñÁ¯œEÒ€O» Q´féB;@ää-ÈúxòÜÚ "CnÑ–aïS± =JTh³/‘;%–c2s[b$û*ÙÒgçÏø?–a"!Zftk 9ˆ¸eE¶|Úû÷ý¾­¬‹HQ°Oo®Ò_…ú¸ÑJx…K+&¾_j[J/]êÂq Áé••ƒŠ˜¡™¤([iè &²ÃïȨ+"®=ƒº@ £…ƒošŽV~-h’Ó=f×FZ‡4dñy>ŸàOm·=Ó%-ÑèÉ¿. þš» ýüöJéνÉJJ*rÛ]|}GwbýÞèíµ=Džö$ TÅÿ}þÝ c†á10v\2¹#>÷çÎg2ð€Ø5èÉ=Œ\SÝÝ$vÃsÁ¨²JGUÇjgÝ´uuýãòÏ`õ‚š ë†ê\q†C‘ÝòÙJ5Q.¨F;p/\hU}ý{ÒÌ­fEëñ*>(“å7òÐ:E|Æ?ðôѾ}ß‘›~&ëz—sOóG™¼KpŠV:ø<£+Ú^ž«£rºpþ­ì¢§PŸP3Ûï3êi®ã êXånÆÉ B@Õ|œn˜³2Tj„#~‚G/Õ8RÔQÅdZÛÞ®šS:Ùå0‘ห}uÙªÔY¸—àôwÔ/zy¶Ã©»GëÊ>èþæÑƒÂ+Óz£{ò¿ W!1VFJ”s?jýŠ4Ù˜m²³ïΖãM{M¬O`¾¤gðŒ½·­²µ_l²ŽRÑåýd½¿9Æœ§Àì˜W“ebä[›ÇŠïF&âvX.† s&i\ñŒ¶œÙ:J™@ìÓå·ß¡,ƒ'lh,'ƒ­¡í6*ëî©}ž¶öÜô§‹R"б#–^kŠÇÖ¢?D˜ÇPý"Ÿk´ Ú÷ˆª,TÛF’åA”LAÚ¡k\p؉-Ë"xÀÓàô–pÖ÷¯ãî~+r04Ì:˜RcŸ–˜ø'–:¯Ü "Stµ¡ß០ÉÛUsB¡›i|£-U¾\ßS–œnËÚ\Ž„‹Oì©ÈD?<ËÛÁŸ‡ˆ _"”ìÌ·‰õ^þùø‹—ë­io|³mþ BTÇnèÐ×lÛQ6Á2óùîTCÌžÞYGöéÊŒûB"/Ùj^dñ(©˜Ö‡gçáe?NR²œëêʸԻ›Foi×Î+~iÈÀ×4ø wEqômS$EnID ÿóedÓ<öËð^„z’\^È›sêbf)_v.â‘áðVAŠ«ú-«åwÀDÊÞü˜— v†I§­ž]?ÇtÈêµS”ÔÜÐ.0÷çŽÄùí*‰2°ç‘àÑJÂç3éLúÌ|÷O"œsvòØqÓC~'wTk£(Ç\W‚Ó;µ`ᫌh ÿ¸äG?ñZ¤ÁNÞÁ´¨JA!gç_²Ô…Ú<ÝñT܇úluЯ2 `Ø`Ó›<äßÏxÞ ʱ ­q:}÷’·1,XJÒ½°Ó¬±GxZJ1íQ9Σ*>RàB,RÎ×F!Ñ×åõÉNá°¤ß ÿŒ+±Vèž7»–ËYÄKQYpúÄÜïÎ'©ÔJDÇ&m¿´nÉ)ñ ”aüÒS$œs'érh¹“lï²tì]Fv3Eèò;árcº<¬¯À†qdh#pï!ÃmƲX‰k¾¯~¬ý¤rq[Õóh˜=²#”E‡~B*Üxà<©|fj*^*ã…Ѻ#aïܾÁ}ó9m_Œ¸Œ™†‡>n_%çú=ÜÛ)¨ˆ'‰ÉíRtõ.)ŠÖX¬Ò;õ€Ç¸´nE¿t—!œ!@¶_ “£ws_¤A zQ²¼ŸÁ­‘ŽÆ©ï\ J–ƒ§$EW–Á†:ü ¬6V‹™:¡tGú‰Ž\%B-š”I)ǘÏì@;Þ¦I¥Eëø÷×rsq›šï- œP·ÃÚYzüèwdç*>A«Î{óÇsø¢B”ͦÞk&Δ͌€C¤`Åk.ÓÚm†ETdU¿À úÛ¦'0žËôšíxMœ¢u¿}Üïq$"­üvºŽ/œ_ ±Ä3êï­D5õÇ-KÁçbßv{…Λç+/ÿèÞ~vù[__0!0ÿY]GÔj--2çftA4^Ì:÷Á>J‡’÷þQÓ Æ°7'UÐŒhÕqnÄ8«sf¶øÕR¨çð¼¡P0X‹­w”*ñ+LJžk]¦V€ë—&ó¢¨aÿëO‡µRä›Õù©á6ôòvú…ì ¬˜2åžr5 U2ö&Îêêp\%úÜGµ·úñKú›R’~6‡(ú¥(àõkÝí§:Þ©å”¯á žÆÊ˜A*fRùQ°>²cʹ£ת£x÷/Îo­Ä9©8›`ªºÇ)·j//P½êÙ©}Þ̨7»Qø |4? ;¦ÞØfr¿Î[¦ü §èÇf Á úŒe ­Ôh~R¹bäëµCÊC¿›UNÀ†„àlÇçÑÙÿ 太¢àèËŒÆÀ²<áñgûþŽc\m¦µÝèN¼³iØ™^ðëcÑ7YWéYmÁ²6l+‘ò»ü8,‡O¾¿O(N“Þ•X9Ú%ªé¹Šv&ý-Ë¿uµBŽ ¶ÝÜBW\…dÌÀ@Ø ÙìÔäØ>s’©8y{ž‘þŒ볂DŸF-þu1¹”‰A-rùàJ,àŒZõ•>ïW¼ôªºŒô7ÇçJ¬ì'Œí—ui÷vñ€·«Õ£Ž¿bÉ#.Š M½Cí‰:w tc1\F€>K„›ÐS•hÞx¡Gô)Þbû9(B§ÜΫ٧öìý¿ž°ðÍ€£È81vá‡/¡î¨tËá+bÁ^q!£H|½×cÓ ØÃÖš¦Û=Øë¾J”%!4»Uôø¢.¶ÐVÎ:鉗÷Α÷„UçZ„gÆÌ•òï^…ÐDYHΰ c#©Ì s{¸_ [D‘Î{»oܳ¤SSŒå¯ë2þ¥Ž$}% ‡ÍV ¦ì–êN‡M›"5š9Þ>¬ŽXZãR¾Q6fY?¥§²BélUäËc{à'Ã[×jÃÉ_é8ù@ì×’¡Ã|.ã^!¯‘–àF*ÛH±/ÁÖï¹ }?„qU¦Ü²Mê„K-‚E´g-j7—(ÙK³U¡ÔsÎbÑmÓr4Í1KgDÁI(‚!@Ïa®\(‹äx=ë~ùŒo³ð/â¾b™àééÝ&ÕjêÂŽž{i¸±¥xýßI"É`[… qç€b4¶ÅMþFrç¡=jLîíP½ÛOG^ͨ>öÄ9a¹™¶°.ˆCÐ(dülÑ‹rƒ&,±.N±ŽZÖÜÞº®9…0ŒUCWþº[Ùóñ™™L¸Ô¯@kJfñ…­ÅP±¤e¥äÇ"aRoä\vöçÃBI–Ê9SþQÝGÜæôS‘ºáêÍ-Ü.5)kežµŸ}]jU>¦N„¥«òï¬z×伡Å]ªDÄÁµtä„™A”Ç•üpcb£ƒµw8*7ïá ³¡?wá3ϬȢš î”<Þ絠Л\·¨ÒæÂJ¬Q¡þ‡oÜÄxÅèŠóæû(ƒÄÍ=ƒ$f¬èH¨¥»#;²È×pkŸÝ=èÄö3wä…,1‡¶ªö¶XLOïYZ܈Úxv„spbÍ´²ù-Ý„JЩ%4£ºóàÀ˜üS†Ú±ºtOÊÄ^‰—!Ü¡“hé!Dþ„O½r?)•Œ­¯‹ƒCÛ±ÛìxÖè éV©[ÿ\€=…¶j\4*@ìiB‰Ç¿/rвkôUäÍÒN¿X¶¬˜yA»"o{Ë¢è›F|Ögʬ_Ô}öå>› .OlvN)gLÑöHáå”2ð5ú^š‰ÉZìhQømjJÕv% K4…z«ŸÊõLò~0Z-Àä+×"*Oü!3ÍV¸ âû!ˆ¬³a>ë|Qã€Æ¶Z)®”4ªæé#¼ »Õ}`¯Àb݉¸(Âd:ÚÝåó¹eºEª¶Ãü¢ áÒ[É„SàœÅ&w ®ªY÷¨¹$XÙ_fXDsg-ZÉΦÙÝò月+Ÿð`S§2)ë@ýb Èb›æÝ¨Úd^SpðéTK`¤ÛËÜïì*AjÏ%À‰v–ÎN˜šh¬k:—¹V°­jh QU¶Š#ßâŽ|™oÄ胯ÈR<å~Ž9Šê9¼´Jëø¼Û®<È›qblGd™\Í¿c:åžÇN¬ŒmñcT¶FӂΤ6+ÑÔÌ©šIg&jç ó¦eAµZ‚Gƒ«œé€?hêPMš‡ 0,ÿ¦î#Šž;{§Œ}4UŸâ©ÊЋê$æ¸;Óonw¡©±«°ÚïKùˆŸ”"+4úÓ`ö@®“sÅÕA+܆aV›_l³qz¹"íÕQ„i¦µ¦óP¶¬ûì­× j¯ô¿—DÔ÷&"¤Þص২^©ÿ̯TÌ%ngyŠŽIǽ ^uq/Å rXfDÿtƒ¼ t£ñ¥6©I`4©cõÞí8}úCš#,ÿe° ¹AÎá§3†•Í^ÙåOŠ÷Ý«"9ôGÄê1ºðš¢Î”Àzwh\íf1å±Ê+˜Z7/ú~¿Gäñê`k…õ·˜ò É‘U7ZÛÙ%£­“ñŠ“JÕñùªz $¼Ý‚:mÌǘ±F««ÅQ´åfÑDHáëqþCe Zìd–.B%³L2ÆÌD+.…Á0,¦íDÃ5î¶k‡oMNÉè´‰ÕßU߸†6±7á½î­Tõ›0ÖågA·êœ-2%¹;ó(m5.þØtHç±Å*ðuÏkê0ŽW·9¶‹+BY…·õ£Tð=Qô°‚¤˜–—yʲIy?"ZbM'ñ§;±‹gó€Åe¿/¥Û°„¿T¨È3Ƴö»(RRBP<ûn)¹-ëuÁ“ |îTÞ­Þ"6¹u?å‹…åPàÃ4èP&ä$r=³ Ò”›T4v1u¬¯3SÁ˜°jðÇ‹Ÿ}ŸæôÆäà=#zú²hz7°yì,Ü™kÄIþ÷À£n¦1),uÆïÂÃ+¶ôá3 ÜN$øZÚâk±›õ_w‘àH!º³.ÝgœãÉ–äéÊÒ«ú HkTò¬ Š%§ï’™÷ÞE–îã96°f¿è'ÚÓ8¢ò‰ì–×£¶F,éFlàòì#N?N,%I]°#¦Jß’ ²‡`Ϫ‹µL3ú`/4†½9yû»yÃòë_'×kx/Ç÷TX b'[Ú”›ä;¹kŸ‹>+øˆw©d~‡¸Ú/ÇTÁ ¿À`¿ÓË:Œ!..8[iÞ{<«0/ÿŒÌ{1—DPî„q ×p¬ç“¾á©DãL¹áñç“D’¯,¶ßÕRõßÝ¥=@­©lQ·cSœèrÞV‘¥§MGf×Rl>G ·øª0ä„7¼Í «'ÒìM£í?š37\ÙiÆø˜›ƒ*NÕé[ËÔˆ{ŸÐ¾g£é Ï€oÁ ™üŽ‘+¹ŒËÓRÁ»uÁW:N•|ŸE7bÎÆþ5áØjßj€3´J"éq­¿rh¶ 8¸íq!$ä÷›²üö½¡‹NÙκ\Ý-†^v¿£q¥ ÿ øf[ûð*¦6Jä)ûW)¶úÕrñ\ŽpÍòVþ誑™]” s#(:Z§ÕÀÅ"cû (ŽØqÿ‚ˆhqR„8§Í$Û)ˆ»:U@æû…Þ‡‚d±RôȂɛ½½+Ì?NÝŽè~z$ b1dD(þs‡m½Ödù0u»Bœ¨c »³ ˜Sd‚À´D@NV“¹±4bV… ¢ˆ×«K›í©æœ»V¸¬5Í<)%Šÿ<?»Ÿî5§ŒXZÉL§!yGbøYSyÛXÃPÂÎ.};T»˜=‡&)MѺûü%ñ&ÉiªV‹9_C\>ö>ŃF¼˜Šïã÷³Kk{ƒ±€(Wƽ½oㆠø¼æy& ›¿²Òf=wb&ÖŠ¶ûí¡îíªÜó`£‹cˆ¨ÌÞx)ªYðmÖóÆú³8£c.·øîƒ"sþ<«,eQM={µ÷Hó9_Z?NGÂÄ‚z‘‘="4Û•p4iin¨ájN']Qjt\N}‹üÀéÃlBÉxð a“YM¸‰4¡-ˆŠôP—‚ë?óâ¾ o¶¶æ,4_òå0ðkJé8wó’s"*5f®_º+õýõ¬ðŒêÄMVRÎ-jÙtÞWHIR…vÓíÍ<¬¾—΄í†þ­¶àùð2cÆ©WuÇï)ì«ØUœÚ[Ï·G›Ê7gÔPÊÿº¥¤«›#§d>ؼY8•UÊÖ|µÒ¼†½Œh“¦ˆn[²W# †?Þ™z%é›;_`Å\çìà¡qÙç—¡ÐëaÏL“¥'!jŠ'P¾oc tXˆbÈÑ/óRÜÔ³i»·ñ«êYû>&a)9à¤uè5ó[µ‹ «÷OX.úºDñÇ©á|ù•®FÖé@ƒ_–P•±Kö·4¢»P–ATðûÔ‡T’9O§ÌF=O/Þh™°;_@̧ÜTR„Фæ„q4À¼âåEùÝgj ùЊˆ<µû IŽ¿]²ò ¤×ÔY2¯Ì1ÛD ¤ò(Â˃ Æ¡išŒ,}09Ä÷†ËG:KK'µB_Ê —šZÖⳑÓg Œí õãVÖBxÞWŸÜR %Ö\Vr3EÖPgôO5§"'9SL¶ÛŠV¥{×¹óêÍ`”¸nòÊ ;p‡LðÕL'E„-_÷Ç ývù{­6É8î?N1¶æ“ ö·‹¯?i½œD÷ŽÏ”ð6‘5Mñ£ÌW5R²Ã–v nsÆ5K©çP«s>"Ã.Û%H¹©¤ÑnçÙ<Ê©J<:У¸-÷Që!éK,*(ý¤ [ÚÆÂ? ¥žlÀÆx#ÕY®§Ða\¹ZÂÅÿàtí¶JÆiƒc7q~Hoä]¡éCOR  ­V :[QN›œŽ|çâ€^ò«Â~Ÿ ~“”0Eè„ÄÚWI0`!- yñ˜Ÿ£XBm©ewíþšž.ž*¦¥qJˆ`áxèÕ§YÓûåýàB¶Å®…§ßÀ)1I,ùÞƒ¥ž0¹ÅK½äj™Å]aÁ+óøŒp©Œ ‹÷• Nª®z¶íë=Ñ‚´xö·ëEÁÐU6í \²o1)^ïÇýÕá¥ÒÈ b¾dñ«ºKÞÞ½b£ì ç=öÔÝOÑ°ÙØ¢*VóûÐVjëÛ¨œvÄ*º£ÁŸ¥ ­ÞDúƹñÛ“(ÚÀ´;—…¤ræ`¨«žDfž»Ëï’ñBÑQ8AÊ2 Uô/gîÏ<%ÆàmþæÝè÷­¢Pàt·7äØ‚ÔŸ¬›à²ºÇPm˃´)vç½0]ÞÇ•ëR¥þ¢*ZÞŸüCSb­R[~wÆIþK{íÕ—.—÷´Ý5Óz$GùGY¯ 'ˆ‚ØÏ?69Ú˜+Y¸°ôˆœ¥š©u¡E’ªkK„b¶¿Üá0š_é̺/K °¹Re.ÔFüDêý°—æN]téÉ•BtŽ|ó9Ik0ùYÕa3nNª` ŠZäׇoð <Äò‘@ûe¼ëRÈÅ–|ðö·2z†Üv]Xº“rÜ=Ô‘C¥x.»]äÍAéà…} ±Aoø¹¬‚’l.W³ ¥^猗ôTò\ªyDn¶F¸c¯üW*ñÔ÷¬†½NÖèKý¤´ÐøÅÖ Xhù?f¶^&gsô©—™N¡œ!NiÉpK / Ríh½\–TqxY‚`ƒaµµ¸•í2E£ªÞ UÀ#âŸäîˆ^?á¼¼IÝR_»‚«-[`qôÉÝ1¶x§öH¨nw휮©òzè~èL¸J"{tö¯Q^"®’ÖqÍ~JŠN‘AEO„pKxÑ5‚mÃŒ@¦*úÈ9õk¯+zoïeøiL¢~÷TîjÌ c0†ÿfm®Qkde¯žD¨°ôÿl΋c V…§lÐÛÜmb¥¹=ãå;á…¿j–1±V•ØzšÈ]ÞüÿvÕ^Ý\ïfÓ³¯RÖØÖÌ J1Ú&_ñæó†´ŸïnUßøÎ_|öûô®Ÿ¢‰–·æô”ê%뛿y(ôøÓÖ8ögf=ÆžëûŸ~¹øÓV+×Õ¶78üb¿’­Ðøï…?oîúæ¤í|³&?¿¸¹ïìnëÂìè•?ó'ºÛ-œ¸×â~ÂÿL&“a&¶UOÛþ„ˆ[=g¥Î…ý«ö.)ë`bÛÓ±¥É¡‡±Õ2JϘ›…4H\úu¸Ý;åeó§¬lê{§+v5Cè^ܳ®¢=óƒùÏßÿÅœÖjðëÒò¶éÒ¾Ï[Y¥ø#M·7Þ&œ]p?FýÔƒ@í‹Þ›¬\Ö7&‡TnÊZ½÷¦=çÍ9GEß5«,;ÝQ¹qÏ»©·¶ølzMÑ?ž¡ôই¹3—_Ù¦wÆ+Ó"éûù¾…רrÞØ¹œ²—ZZ÷ç ãåU!º]~¨½hþ´“é¤Ý£…_“Öf> endobj 124 0 obj << /Ascent 688 /CapHeight 688 /Descent -209 /FontName /WOIDAI+NimbusRomNo9L-MediItal /ItalicAngle -15.3 /StemV 120 /XHeight 462 /FontBBox [-200 -324 996 964] /Flags 4 /CharSet (/fi/fl/quotedbl/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/equal/question/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) /FontFile 125 0 R >> endobj 1640 0 obj [556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 555 0 0 0 0 333 333 333 0 570 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 0 0 570 0 500 0 667 667 667 722 667 667 722 778 389 0 667 611 889 722 722 611 722 667 556 611 722 667 889 667 611 611 0 0 0 0 500 0 500 500 444 500 444 333 500 556 278 278 500 278 778 556 500 500 500 389 389 278 556 444 667 500 444 389 ] endobj 68 0 obj << /Length1 815 /Length2 1005 /Length3 532 /Length 1585 /Filter /FlateDecode >> stream xÚíR{XLyK'<5c~I¨43gjšÊ“¡$ÕÔH%Ñ1çLÍœ3Μaf˜bÝ£x¢Ëº¹çRD»­ŠPÉ®B‘}Š.åNrYöÖnþÜýkŸ=çŸó½ïû}¿÷¼ßÏÎF*sòBɘ7IÐN0‰¿,æ˜Ë‡ìì$†Ð8ILEhL `wwxi£,|‘XÀ Ej=…GÇÐ`¼Ä¾K$^*ŒÂåü:S13äˆÈH9ŽÑz.ðR*ApW‡cŒZŒ¡\†ŠËi°‹Æ ˆ×åÈ—P@ô Fµê/ÔbŒÒ0¦ÀxƤ=`,¢$¡ÔS@¼’9 cœü¦z÷Ö*•ˆªk|wJßðˆ Wê?+H•ZKcð'QŒ"zJC±Oæü1תz²¾4¢Äå^D´N° —ï,üDào\‡¡Rœ–Ç¢Ô`Ý8F =­0ñuáÍ‘JƒCg8~Þk7)Ep‚ž¥Wc€ÿUÝ]Ã_k&% ×>—χ!ó~ùŠìqØ4BN¢8 BW€P¢‡˜ÄTB°8b:€éÇ<.AÒL `¢1IA]ku…ì™#ËšœcÞY—9¤æ×;÷ÎmÉ·ªXØ’s^û±µ¿õ¾¸ÎýHìŽ3[ÙSÛ ‹x¼a%¹~§Óßd”˜Õ˜ÃÃ&ߨ•lz³Û4àJ¿¿6¯#5?&©Çº÷ÈåJM¥OVÓrU¯V;—EžïýÏÝ«ßpQÍϾg€àòírƒ2ÚêìÄ'G ã«3Ò ¿XünÜý^{JF5,ƒµF"u ƒ$}ÆíŠ·­þÕùƒŸåYni23¦^î+jðŽ\TÜÒYôønÃfC˜!(.„-]› ¥þ¬¾Wܘf_Y¦xvˆLT'=\t§LtjôúÆ©ïnrŠmi™Tè—Æ–ö5&få­ð]ÃNÞ3ï®í4o:¾×»*㫆2ødÌ`ËóiÆYrÖ6½_¦U󛨞gÔ‰Å:ϰöÂK öu•å•¥5³.ž¹$sŠmÈ9+ ÷«?Ù®Úf»: Éܰ¬Ê‘hÛòaPijIx#î- 2”û$K”Àž÷à‡Úvñ„êÂÏ[ûµ±ÅÐ|̽O±s3kEhjAv) =>›^A¬·€Ì¯xeçMöœyÄdå ;»9¢¦¥«¶èDÉÎR;·ä¿M)ëçÝ:0Æã ¯C›Y“®ž«y.™w]:ÞdÅlCÓû ç‹$!gÐvÚ,–^~þû±‰n9¢Ø¦qßß•dæv=qHÊê”™I¥ŠÚtå@ÜãªÑ|÷Â&'–T¿‘»äº•>¥Å—J2ÞËBy$×îoÕQ¹{çóèÆiœ£çÞÏÎõH-O }¥r­ÄñÉòäœÐ'Dp¦Ÿoµ4k¹ikHSŸ§ÉÐ5½Ww„!gs‹*Ô»&}ÊÛF à˜¢íÖ–ÚÓÛ.ƒCü”ƒEn[wZ¬±||K½Ãƒ ¯_±Œ<­¹ãà ·Ü̧;ˆ Ì~5í¸Ú[–Ä©ð#9÷£þZTõݺÎï|1â©ôãææì­Ègl9 Ìüø@ÿøO +1„¢IBÅBâ½[Yendstream endobj 69 0 obj << /Type /Font /Subtype /Type1 /Encoding 1641 0 R /FirstChar 3 /LastChar 110 /Widths 1642 0 R /BaseFont /ZPPRWJ+CMSY10 /FontDescriptor 67 0 R >> endobj 67 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 /FontName /ZPPRWJ+CMSY10 /ItalicAngle -14.035 /StemV 85 /XHeight 431 /FontBBox [-29 -960 1116 775] /Flags 4 /CharSet (/asteriskmath/similar/bar/backslash) /FontFile 68 0 R >> endobj 1642 0 obj [500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 0 0 500 ] endobj 1641 0 obj << /Type /Encoding /Differences [ 0 /.notdef 3/asteriskmath 4/.notdef 24/similar 25/.notdef 106/bar 107/.notdef 110/backslash 111/.notdef] >> endobj 21 0 obj << /Length1 843 /Length2 2106 /Length3 532 /Length 2709 /Filter /FlateDecode >> stream xÚíRk°ä1œ6€Ñ5ÀkàuaHÀŒÅæsè>¾\@ÝLã‹H 2AJ2…ë 2Å=¨`Ï¢ÒA._ 2€Ý—€rŽƒ4- ÐèT.pô¡C0ôO$È›è~¥i<ö·Òq 6¨/ÛÔÄ&i,ˆÁh 7 mÃßнü7lýØÜ‚Ç`ØP˜_Ú/'õ·:…IgðÿT°˜läd ä@?JÀ¯æÈ ÎcþX%q) :•ù0@…ÕÑÂè|åéô@fKçR}o #\æAˆö£q~Ë>Ðv.®DÍ?G»\´¥Ð!®Ÿ ˜ïêeŒýŽÅ!qèÀŒƒ Åï·/÷.3‡¨,òpx@áp(|˜x‰Äa:D0Pì­±¸â#€8™À›Å}™+ `@Àö+Ð>_vOœÞ7NW@“¾#}}ð/$ž-šò/€¦}‡â¿FCËð²ƒPÚ8…Ë-ctô]<&äß„T‡BÜå5ý {ÓųÁ@ µ±¨†~)¥Qóìçפ4”Ró#žTFÞN5Ôé6”}Á)krU&á‘p?úõMÉ£V7Ð4oüÅRbp}=:²^¿~‹FæEû5ãÔ7Ɇô‡µ™i1ƒ¢ýì2ÍñNÕéžã•REÖCXÝ,ÅÑØUím þ¡O߈d.ÐT’aîéåÖIàá·= çÞíge³D¹ òn§7/Šk_·øw­OÕK'¯|™jôy-F#л÷) {ɇÈùо¥½´áÅáŒT@b›"ÕÙø®ÐŠ<&Ý׬¡ß‡H]×B I>àDrü¸ýZ¦,µ`;Ãh®â °¸ÖµŠi Õœê/>&ë_ügtË.KBÚyÍ. 'wžY5å>?ßýi)N±jœ„P¸)餩wÉä¸ºæˆÆŒ¢Tkt=Â…âûë —hr [foÜCæ3“Þà»3dÀYÿå/[Ú®F«Šp°!ƒYfJƲ«æoÂúD7ó@ }—ûÐ?z³&†ïWÅ]ÂyX˜éöªph×l(¼S½osá©UîõB ‹ìBiVGŸ©<Âx³’áÖMD·~À÷¬¨¦%0áï½`YüܬòuBZËgædÇú²Ñ|‚²@j |»ÿY­w»ƒôÆVVZzñŸëÞª$·+…æŒ:”â½Àª ŠÉ¯¿6éš~ñveFð½)¢ðw:'(R· Þ­ñéÙXøž»)Áv>ËK‹ãbRQU q þ›³AÇq=ñ†n>‹-Æùv9¹Añ¡ãïÛu”c¸˜µÁ¹µ5?}%»öɦD}Yœ ªÿ`viZÖHaÀü!–ª_â=/T~WỈ¤÷£7äfÐW¢V=H<Å"â²Nd7Ï]ЖÂST¬­`Áøq߈[q;{ÒÇ È­w&b“š}×+Çæ8gnÜG8J¶–ŒPNZ©â>rœš(åJÀvN›mòÞ÷èØ=­)ù Bü‚p_å"ã¡ò²zðüŒ‡õÒ³ Ík2—¯¬Fe)þvj}D…t[p3£ÍÖkÒ,úˆ÷³Z­mKµ"ûgU¶çuwª)OD¨òëuÔvWöÎGÐø^8Öž™Œ·Â=9¥ÈR=ÁXÎÖ‡&Ï:æs§ß—¤U¨ÿþÇí¹r!Ñ7+ò6øs2Ô(ëy}%++5‚ϸ‘†W“7û Ðëã·"TÚÂk¹xE4ïc£Øµ°ÝRÄõô ^ãëf©-ªb3V(O^عâKÊpj{èích¼…’ÃLp´‚¾–›Z€‚,¯E¢$·Å¼–SK÷,1®{ݽå¹b¾Óƒ-uÞ?çeêÐf6*cISÄ!}™û©¼Qå²x‡Ø§Þ‡“s!S¸À§a eMƒ-vXÊ^^›×ꨚ¿þ•8^ØÄ½ |EF'ñàÖt¹)¿ˆ)£ÈúókV´%žÉ+²Ô ÜàÉåuQZoK’²Ö"—ýÞü:'|uáÂQ‘<§è[öèvÅŒ‹Ýî1“2D>æ• öÕÿ«~‚1hÚÇêÓ¿ŒhI>!mœ}¡p_°·æ'/ÉOZUŽmQ&W1Ò®ç—Úõœ+x4U½\Ó{šKF=ëà f8d˜G[xj˜}ㆎÎxSišöGˆv–î¶ÉèQ’Žð)žlmŸÕœäZÄ{½\Ä¥5]d“*å«T’ “©3grÞΞ—׫’mLô¬ÔùžíCRí¯kšºÂ8a‡8#ëD—ÚÚOž ;dœË¼ ~ÝjØrÀ¿!s3GK‰<8®ö.øÃH$¸ûh^º9di¯ó´ïâÖ˜þ$O¾´AËPj¿ìûºH3ûðŠîn?i»Œþ{kÇüæÖ½`{¸k ï–we$ïÛ?D4‹¨ºZv$í#¥Ã?‘K‘ƒ*rl,w9Vso((”ui×Åb¦î×L±?~¨˜ bÆJßÔtÉFó_ð‹ÀÄú…J>l¨Ï\ªo·æË9âÁ ôâžr9•¨Óém¥8t9¸ÕSÖ'æó¥ëîoyóëî$Uw£\C.V_ç) È'ÿÙ¹)dBnªøÁBåTÔöŠ (оR1–á{Žâ5Ù¿bÅz‡Í}¯çH§[IiYñ—WHd ‡ƒ?Ù¼9µ/3ìÖåØw¥øÂQbØŠ·×ÃÉ*Õ)ø»•%æÅ*¤ÊEÙš$§É’ˆyY´î®zÇãçNí2âlp^³Åx*mçØLÊ1vhc¸›Zs)8^ÌÆ‘¤ÍÙêÍzƪNº<:›S+Û¤i}Ôý=*ÛË_/K¾Ù5ÐÔ°?Ä+¼ÓXn§¸­f Þ6ÕºQ®¦‡Â¡ÂøJÇÌ’Ù]}=ŽÕÏò§?ð•zMÇ"s×)vu½™ÎI™î$‡w·™ä™N»2É?[#·6ƒ‘åBÿÈð Tf„ÐÇñàãäu:kcdŠ:OùICŒsìÈ\Âoç `‚RmÿÀùzÛϪ«Ö›J"Wû½ JÞkw9Ìòð§«¶cB=ÌøÀþß࢕R8\“Âñ‡ý Ы†¸endstream endobj 22 0 obj << /Type /Font /Subtype /Type1 /Encoding 1643 0 R /FirstChar 60 /LastChar 110 /Widths 1644 0 R /BaseFont /RTYZAN+CMMI10 /FontDescriptor 20 0 R >> endobj 20 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName /RTYZAN+CMMI10 /ItalicAngle -14.04 /StemV 72 /XHeight 431 /FontBBox [-32 -250 1048 750] /Flags 4 /CharSet (/less/greater/I/O/a/d/n) /FontFile 21 0 R >> endobj 1644 0 obj [778 0 778 0 0 0 0 0 0 0 0 0 0 440 0 0 0 0 0 763 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 529 0 0 520 0 0 0 0 0 0 0 0 0 600 ] endobj 1643 0 obj << /Type /Encoding /Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef 73/I 74/.notdef 79/O 80/.notdef 97/a 98/.notdef 100/d 101/.notdef 110/n 111/.notdef] >> endobj 15 0 obj << /Length1 1626 /Length2 17975 /Length3 532 /Length 18897 /Filter /FlateDecode >> stream xÚ¬¸ctf]·&Tl;¹c۩ضm'wlWlۨةضS±]±t=ïÛ§Oóõ÷§ûüØcì5yÍyÍ5ÇØ›œXQ…^Èhl&´w¡gf`âÈ[Ù»:+íäܲôrf¦V€¿rvXrr'3#+ ½¨‘‹@ÃÌ jf`a0sssÃ’D€žNV–.*5e jZZºÿ”üc0öüÍ_Og+ {Åß73[ ƒ™½Ëßÿ׎*ffK3€¹•­@DAQKJ^@%!¯0³7s2²(ºÛZ™d­LÌìͨæ@'€í¿ ½©Õ?¥93ü%ä 08;˜™Xýu3ó01søGEp0s²³rvþû°rX8Ù»üí `eobëjú€¿rsà¿98ÿZØýÕý ¦tvq6q²rpüͪ(*þoœ.–F.ÿäv¶ú«ÍÿZšM\ÿ)é_º¿aþj]Œ¬ì.f.ÿä26˜Z9;ØyþÍý7˜ƒ“Õ¿`¸:[Ù[ü':€“™…‘“©­™³óß0cÿÓÿ¬ð¿Uoäà`ëù/o࿬þ+g3[sXf–¿9M\þæ¶°²‡eügV¤ìÍf¦ËM]þCçfæô¯Qý33ÔA™ím=¦fæ°Œò@—¿)Tÿw,3ü÷‘üß@ñ Áÿ-ôþ¿‘û_9úß.ñÿë}þ¯¡Å]mmåìþÀ¿w àï’1²üÝ3YÀ?‹ÆÕîÿãbdgeëùÿçô_­5ÌþVhkú_uR.F["doñ—&¦ ­œÅ­<ÌL­\L,æF¶ûõ/¹š½©™“­•½Ù_^ÿÕR=3ÓÑ©ZZ™ØØÿCû¿Ufö¦ÿþ_ªþžQ\BICL”öÿ°\ÿe¨øw\T=þbûŸ¥ÈMÿ×áŸ0ÂÂ@€7=3€ž•ùïÝû ˆ›ƒÉ÷ÿò_˜ÿó,gäâdåÐù[7ó¿ªÿŸÏžôþK1{ é?c£âbdoúwÒþ—൉«“Ó_‚ÿuùÿVýçͼ™™‡™ ìêo É÷`ëô¬ —:¬¼áIQþ^fðá‡ÒFÕâ€`zøw¥á{mCÓ4Ïg›çÒ‡išÃÑ^L[ÊžT³Ë|_Rê¾B”MŠNÚà FýR„Œ3hï«EÙíoÚLꇻ“JÊú?ß! ¦;X ¯ž¨HÝ ÐÉýLÒâ0:‘›@PëŠþœQ$<=RŽ õÜ@ôàÑæÆÁwû†@à˜‹' ­V鋯RˆfàN‚ñǯå›ÐØnGªÑq݉kÍé7´8šZéÐÐþ ÑÃñ& wX>ÔÓ華éØ7DJ ÃûÂT^‘N`ÌL&£”u‚S @“ÑG” “˜¤J¹Ò=L ÛL©,ê8›pJB´üJÒ›1lr† ÌåFú·x9Ì¥K YPûý]2dì‡ÑÉC~ísTÙÇ¡L9__%ÂÉÌ)sèêMRgÍå™(9|9ŒèmzS«Õ.{»4ãó;9|^J«xDÔÚ,âM áÓŒ0¸K¾/˜© ÔØÁÕ~«)H3éJ 6 –-¡d(²hÆ»÷Ư\¢Ñ˜ä‘?e4É©¹=Fàs{Sê(÷l°5ug'%ïSáMÚ`Cÿl&<ðn®B¯‡ø*½°>ÍÄÏo4œ+é—GêPj¢”LA’›‰«šáx– T±ñ@¦„çVÇ+4°Lé—•çs/©$3-‚cß·p¯QáöÐî¹é‰ÞëGÕ'îæ¾m>¹û…1½úöšáMéYž¹ð*­N/©‚ƒˆ=ùTêûEÐò…é•Ù‚Ã’†Iú¶zjHH'‰dç’œæ Ö`.“Ô—tbBÔnêÎÓG¨LÝDì‘·ë+“UÖÖ@s&Lgµ*yR¢’E¿•u ´"Òæìì3Írð¬š5QñÛ¢†LUöª Q$M (ªù+ËùŒgíè|¥¤U?Ì ²ôÂÃ!ÄösXêÈÜí!ëD¼ÚŽ„µ¸q’…¥ößs95öŒ‚¢hõ3¬;JUG°pÀ†’NšD]û}‹`©.U¼qò|bE‰ ™Ð_m¶W¤ë®?·¬éì%%¹úmÕOݽ;;Ñ bðb1[ÌÅO­ùжH )çœ+é+åûgåÑ(ØK/hÙ78sÆÜ^]9‘K‚ê0W2^5šŸ­ íg‰â`q¬ÿŒˆ•lw5¨Îtˆ’þÚþ”ä÷ü;J‘ょÈë `{Íè-Ç·¯ó®Q. ºbØ­h‰J1D¨—%lªy½Ÿžû¯‡âlE^»%¥ºÚt‘”¦ÐÚ#®Uht3”㘲ÄÞ&K \QX¨Œ‡Ûܘ.“ÍcûPË¹Ü –iH;•Äàœj!¢'ãZÝõ }Ãv{…׉EšGŒŽ·}mm¿ø}jG!>ôÔ— š]áŒä Á²ñô+mPʨ@ßuÐü_óšö£I žˆ”3Û¥ 5gÊóýðFn[ð¼úÞ irÞÜbIC-èsø¶•͋騌Ÿ¨{¤*Vèó ÷íLéÙþ²î#«}øãIb»oü„Æ—¼ EÖúhãÔ#¶8à#¾°[^˜¶é‰á¡ðܼ.›­ / ‹¾Qe´Õ0ŒÔßéoßÈøé&,×NU¶lúýœe‹èòÊÎ VÏ_õ]É™¹÷:’K º›é‘ tåÎx-~àƒ„A@iYݼoCWzQ_föŠ”³œ™/àøŽË^ÅÎW²÷jƒ*{´Žw›KߊŸö& (ÕÒ¨DãšOiÁŪý@`ˆi”xÀ¯5dÜgQÈ)ÇèŸu™»uZHĈÜíyüfškRòInFH>gŒÇEŠbS©‹×ÖÍ™´\G­Ž‰Z+›ðUl €v«ªÔ:ÆÂ?VY6 †¤þ`Þ:Çú‘ƒ¸ ²NÄÓGõi{Ê Aˆ6Mÿië4Ól0”­¶Ê€ý« Üú€þ­¶~7ÿBtþ>c8·{D‘*­Í΂˜eŠA¢3h2ÙWÖ××± Sìr€_6ÔIö¸pzæ]wFrœÚ3àþzÊ,T–dä}žJ·žßm›ä•’(±¯‡Ý~ö°a¿«¦N£Òß\‹Íz¶ó—à—ž9Ó ä/(ý,Z>í!>g¢ïpƺ5Çñwqq9šà¬„zœ òF"rЮð&iíWÎ(ô´î;†ï£O½Ra ³Ö¦~þsqù\G"[ºƒ f-Ù_>Z~(ŸÒAßÉlç‘!Ü.¢˜"æí„ë&9DBÁ3l#Ä-•»*+6mríñÍtÅ·ÊòV\ã¾ç[RÜ.OVÄÛð¹aóõÄ7Å.| k¯Ut@Ï=§ëk?Ò´tú¶Í°,ø·MTZÒÞ Ô„íA’gÒš3›‘#¨“\“]U¬©³œ™¿Œ\üòŠ3šÄ>“½l¯T_Jò­òÁ0ƒŠÌn´ÝÞy؇ûR9äX¬VÈËã¶ìhƒ&å)#° ÜGöäd=ÄqúÖ÷XL±¬²ùkqc§Ø ©<Âô9,Ë(x=¨J4K®Æ~¿«R'Óó í»@vœ™þÄH\E΋’D¸ä8æÇ €äæÂGV[ý£¡ã $8`  À3ǧW0ëìá#÷Ël©Nªéˆc§ A ¡ê¡BÄŠ–æ1ßÈVNݦ“ÎÖ;è~èFcS†ñs’b¤Ö7Ý;Àn–û6㺠ñè¡UV\-S$Ï&Lá ‚¼ „Q›K<ÂY½ò®õh5÷Îìµ%ÈÛ4ï—U.:÷þ (ª‹-G°K8ÍAÆîíX›ãô.iŸ3áÛ‡Ã-…eBÃé"1ÂÑ2ÕzïU`Ò¨„#bù~Yt£Á¯Ýß5í<¼[¤2à  ‘05°ê5Ô©×G\<¹e+îq§ø2Ù&J¢¨b:€b~´7Ð~£Áhà©SZ›*o[;Œ1lâßàbÉ/r,!2ܪ*Ôýa§ ¯p»ÂIÝ݈5„½\êîRý¨ˆºE0ÆÓS'žÏ™ö¹œ#¼.q|É;Á¼©aBÞS{B×ý*QxWýàŒ•âQ lk°f`ÚòCþR -²¨ài»´&Cœ´™ã¯ŠJÓSBc·Jzkb‚nèÍ÷/Ík{Ø´XGÊÕ6“¶’â®}£Ø¥°h=óÂO-Vª ¨Ê¾•»ªÙºñÄ£Õ7$“åÔÙIBœ.¾Ô²~ÿñc‘õ” Ë»&™VPÚÉÚˆqúªW.½ì* u#“÷é~ ¯÷¸•»a“–]{ «;JW½³óò¢8\¬úŠ„ Ãi\R°x“ï¤Z*{$}•þ+Œìï:w®CjÝé#ö¾œ¥W/¬a釈0Ä™ä•ÚéŸ`q¿¹š†o­'^Dí›!k‰Oøòe2~\Àƒ }nÒ:.I~Hì5†?a©ÐŠTÜíÜ"Pžèü©¨¦RÑà–GDýžWN6°1o?ÐçZÊ‹€Z·©>¾'iÞÏx‹«Ò¸—.ŽNo KÑš¢ä”é%…§#ìÈô/Ò„GR/yee²=sHÂg°rÈÜÙõô‘vu³ÕnÖämeP}1ð5¤uŠ`Ýuþe8(^$Чµ;ù6˃G´æ±>ʇúYˆÇeûKí†&L_Í ÷퉪tCØbƆÞàuý™æf†¦£›ùi2i¯WxÐk€¸(Y8N eûˆt-I¢ƒ²‰ÕºÉYºE­©çÌòJ¢h°Ùš¥dk+´¥äSjÒ+yúž,V·o飮Wg¬E†ŒìêÎo¨—.Ðè†Ñ!4N u Öþ…eê=uágç¦Aw©oMª‡CÇžSD'Ï4Õµè‚2Fš¡§÷4Ž2Ú{›ª–”¾‰ r$ 6É äà­š4¶ŠiçŠ#jÝ´G¾š]]×4eíØ±ÛØì ó¼å ‡÷“ÃIø ‚?Vý >u¥7YmóüÃ,æïÉE4 °|M¢xE™Ö"ÃÀËg±È/Èñ|‚§KalSEt¤Øm··@âï½5çc0Ò’ú›Ÿá™©ä¹øÕ—OÓð/¸ãBbí"Þ»>„4adØ¢tʬþ!'s71)mÊ‹I¯ˆ{ݯ`Š’²±1»É®‚YŠO$7r¦…úúáúxlþëѳ™NÁn·Ü¼ëç• 7ëÐþ  È® Ùò—CMËM€¬å̶ûKCË …ÍÌ‚Áãwî²à<ÜøÍuƒT„ÇýlθîT>H:HiÓ@I¬‡x‡ÿ¶ËñS ¬û(0½ëÅOEÁ¬ýŠt™²iO,‘Î.Ë”Ÿ Cf^šEʼ¨|¼\%…+¤ÎnÕ8t£_ÿù±ë]û¸P ×å:,~jÌ'Þ„–bÌL1S1±4Àýµøm¤ª#º áïuÚ[Ÿz¬Ú»‚"ÈBjщîÄ@¢€žèl,³¼¢ÈÉçgìÓ œY§¾ùfxÐtù‡…PýË¥ñ4>1¤ã÷QÉ"Al—z¶RX+»_KïµÉ7Fñª|™î{U‹«¯ˆ•X]Ì“·»2S¢5ÆmV&±o>‡ÛÑéN½ÎÀY`˜æ!Gå‹–‡´_zŠÛé°§qŠÇ½Þ Þ°G]ûEô§»‡±€Ú¶?À…Yuw}Z·½LºHûéÑÓMaÚ_!1Ñü°Œ;´v£ €€)„‰à“õœê‹.jx?–1ʲM~Zsä§Ò¸–doú¨ImXâÆYžd±´ÙÖ3²©!ȸêmñÛgå=箮׊žöÉkì@€<—x¶|Oµ#- [>wòˆÇÑPô• Žô×[xa]qÏžPáööKhPÖü(¼0ÚHôz¦A®Tì?ÉùÁ6ê†qß=ˆ˜zO¯n"8HלmY(ni£¨dœœ×=FŸ²eK§Ò 1ýóõ <·y £«!‰àªÇ%$!íý˜ßMÃÞ6Ú`³ìIE?©ÿ_¬¼ô±~yÌ}‰ èŒÖËñêÙ¸ïÍ3›ÔvMËœùÈm)“N ¾=Ÿæ¢óZŸ}„¼QIõã.ì‡-áµ'‡§6RÞz ?±QÉ©h@—Um‡ÈpJðÊóüx‘ì°dù;ONÚüÞ-ÞªèÙ]ãôAL¶¸ JHö¡ù€^ÜÒ8){‚¢¤†Åö¹Ú@ÊK%ÃáªaŽ7dóý±K…7ˆÑ+Y:&q9Îmä‹í¥óƒ;új}<×­$áXë&cJ«º¯÷’¤ãVµ3kx5­É/ÒK“È¡ƒ)3ÓÉ^ˆÁ¥P¦æù% Ä§$[$/›,¾¶›Ðô%©OZ÷SÈ”± ¼Cù d¨y1œÒñ5iòíx×Áо3^²õGeÕÌÁ„Ãø—¹Û!'CLó×(x2€øEËK³¢éžg]^ϦWÀþûJƒõñï$ñ!‹N=Öå¶ê?2Gr©ä¼/E# qLr•ê×Nô ¿4çKPÑÈé\àïéd•±`¦Ÿì¬œ>»âkœò R«Ð¤†œ£ÓÁSjÂìD +¶¤ª:I¶eqO©4ê ·ö“D?¶à]×þŒe ”Õç¦Øþ‡©aüžˆío·F¹¤‘OíƒO-p 0ã¼³…Äoá0åôø`¬ñÌ–Öîï¿Ï¯3¶ÔÖ©Â@í~ÅžŒ¹”BãP‰¤%õ¶´50”­q³@+<)’r? Ü·1…:J\jÆ“’;sì€þœ½Š76׈«pãp¶m?Åä×Ä¿òéº<«OŽ} ŸÛs+>,÷—ñõ15á«ÿÞN®­Ÿýs ^<^!Râ1\Ó¦>5yeã¼L|2¶Ú€ƒQjKCí‚N•6yJ¹µqºV÷Ï¡ùp %Ê‹Qbh¯j,u4¢ƒ´jL‘ÝÀ&IO*ž†S¹[ýb7ÕVh/&—õsøâ!OƒßïÈNzMõ jª0ñŠv‡íNŽúëH ¤Zx$€kE™(üèR̶jŒ˜`û]ÍçƒéÕ벎žó–¨p?εŒŽ„òS%O¹!'S:Àø2³rZrÖÍ,Y&Ö2Ýf$·ðÔX)?ED.°žâ8 ¬gÍSéìsïÖˆÀ07À@úõµ±k;¸Ô«·ºÛÊ ™÷:#b8¥+ÜHÊ:Žÿ0èXJ¿ú£4ÈÜì«ÔìÕ™{†µãñÊÝF$çžÝ†a½P¬€ß¥‚ŠY™ûFIný«úÊ@k#b-¡ÍMܬ8)›ä'¹çùÒLÙ'«ë¼¼y•J½²)-ùz„áÑ~¤¦E1¥IkÅâjˆªÝ(dy»h­zŽl¾„¾z§I*Ò€hÛëNâ4<ŸxXGíåwÙŽ´ï}âC/Ô–hæ j 7©àt{G€‹™&Šwà¼Xõ7÷,ƒ õ÷ k¹¢=~7h‘x̬€Îçfgœm„µEfa锔淃µ ø®]]wÖDÁEç-ˆî>SÔ³l«Q[µgajcÝTYö¡Jgžp Ô]âäâø·Zî³PƒLdÎó1Iw?w˜.jp*¶Tj(I¢ÝèËű±ÖM¯Ë7täBÝwoºfÄj2Ó ƒkÆZïw@3gCÅnPâ:1´fþÛôÎÔ[´™çˆX m¢ˆÖ[Ylp/q·@é‘|˜ ùOÙ´LÏõÄ‹ê­a¾È…›4tm‰%‚6GA%†ú“׈œ¾´ƒiô#yÿðîVìKªÇu¶bÍ!úWæfo˜XZủפpwO|þƒó{\ÚäÛ5˜Z{üàïKyTµjÎ4=éJŠÊÚ…Lo‘ÊšÊ(ê 3.Yx ÿÎP‹`Rʱ;—$´c@rûFü¤xãG®C­ìM¨”åSIÊ…8ÝãÃ+¸cÎâ\9E¹$YtÛh*§L•ùo¨*Wó!{o}wOUöý‡é·±Gnš^:íV“*·úˆÝkØ£VÓ8"Ÿ¼ÛzûSÔ·5ðt%VR`ÜhIÌ ¾lên•ð­$:‹h¯·œ…’”C¶7Jݧ ŽšìOç~Ôß´3©1÷Pd¶& qÄÆFާ²@-ãT¢üÂÕNjÁãÅ£©waT¦yôK8§íqRœy…Ü#.ÜÅ.ÛçÇ-C‰¿à1Ò#oaýp Ô@P`âK‘è\ë±Ð ªØîžÕà=†uý¸u÷·>>¦\ì…©œ±!BEH‰€§éÄ„äðg·XD! åäX,ç<)y/™ßi¾>¯ëË‚+ ψ±¤1Ù; âOT÷Ô_h­•?ê#ÖCÃ!fŸõ˜‘ ZÝ“«ê#õÚrì{B*c± ‚O‰³Û*KìV'ÙUHEoo‘nŸÐåY¶rnö#Ü¡)yÔþ̇/fã“ÑÅrA&‚0à“ɯQÛ=øÙ¡¾$1ì 8@½üU™ïR 6'åŒÛ^<”ˆ“[úTÉ\r.+_™Fqci”8 ž®Si?VuÖë Zö Ùu‚éÑJîeiÖqI§¸.Òrà?ðû4ô /€ßzHãÊÖwûÏVȳØùóP+´gìEÈa.c,ºÈ`}-vè5YzùÇX`Eɯ°­q^(IÔ”GûýÏQ°½Ž @ SDð‚Ûar‡}“B4ãqM }¶$ûS°2˜Ú=Í{6O½ËŸ¬Ùp”O踌KV ´|Øîz4Jðñ©Él±"+Nƒ¨æ1Oò(K{cøËª(„ul7>g¼†HŠ*óÜGâ-y[>Ÿ·0!; _x<­Ûôþ'8Fg}óSæw¼žŠ-„VäŽ-e?ß-4^¯»ºSO«.Êlé-ýheD™µΊAjé91]…”‘;M—‰a$*žW•÷Ãs˖О,y¨ð{8£²vo– òŽÀŠáÞG[¤ ›b¥5{xɧ¶ƒâ7¡šÃAe°ÈiªÕÔIs­h›Ž¬­"¤#ÿ&²FNÎ …ÒñnI]ã`T‹9¤ N ˲ÕÅÂo…¡z"}=/¡¢Mü ¼oÐm:5:@¯ª3Uy|œD;pÙ3s“,… ð­cžäQšTe8>Â+¹Q£—“Ù=h¸£XÖ_EÄ,ŠM9˜Ow(hË=rÊ9f:ÆËâ¦VÚ?,Áˆ‡¹ý8>—¼BF†d ”,9™|[«ðÀªkdàúFßfocnXƒ@Ê9¸ßnݧܭ-õÛ€ ’Þ‹ˆXîÒ]8hk’öX÷³E‰w¨º°J?Sä4Ú¼Z  ª,çÔçG„ tàç`4U*‘Èß)'57³ÆTøL1¤*‹_…â7»ÁÁQ´û}Rò‚WšyPW7dP¦ªç²>µåŒÔé|Ó>âN]ëL³"–ãÕS—® ­‘µ¥ÖR`ø e­ðgmgGpÙXƒ˜¾|½ÙäQAшQý™ÀnûcW[ZÜBýçl’B,ë¤ù5˜Ùâ±·¿Ìhk ~õ³\ªT›à˜Lþõ»¬/\XòN¸ÄڨЂÔ0\:>‰i ]ÑLšü̵ÁN÷¢ŸÄæOÈ= [ÂÃL^— à²cª|¼úQ.1¤¿LDÎ7³Q±áI*Öæ4òVX4žœ ¬ÛÓ8Ö H1ÈÍÖÍo ZTFœô–¿FcŠÓÜñ1Ã:¢Ñ‘ÒV-&hã½ ìƒÔ¥ej麠\Z¢~›Ó4˜Yí1h?¨¨rï#ø¹[Î=o‚è€b?kàò|“T#à9ÓÝ€3O˲¦‘9] ³÷¡$Þ¨¯å¿(<ØsØmžfˆ¦ÖzêÅò8{d§ ;‘·ŽîXëú h:;éæwp3±p"}‘‰7QÜ EMEAèOÔe0_ªj¸v8t”af6”æG’qt›„³s‹í·¶êã”mÔN\¤ç)H–<6ojóôo˜„6vM9EØiù/Á÷‚mˆ³©êÃd:½m(nÉh<,’„àŒeâ(:? ®¬$`%¿‡Zæ¦;ï<ìöœFŠ]GáíBƒ½‚öSãåm¢$ÆE4R 3[_äµ0.%*1‰­lÑõ,Ë‹¥@¼Œ%~‰5»ÓËðŒè{^¡ÄX1I¸‘-¤àk~ÇÅB|Z²¢’8ž0üfV¤éç†W´—5@0ƒESòNs=bHçÈÒ°R ¡|Ã^m"šÇ"Œ±P±çš@%œëÇ©H¢jV=± V¿nz=¨'8sWYAN=c±>ßœµ3‡*S±N-œ¬÷ÎûYåQS_ÈŒÊ uÙ¶gñœ¨Þa2hœú©BÇÅx1ómÈb¿ÜSL\u¿Ò ¬ˆ\q_ýbûØ^sLÃ~öÆkQë'PР`ÎtGo4Za<ïÝŽª;RÍ‘xìņÃ;Ÿü™]cƒ|;‹€EJŸ™Kb­0‘·åË·ÛØÓ.ÕQ’›«PdS8+ÑxȬ Ҟ˦yÒlöN‰Ï„ž°û™!‰çW¸ Çª‹¶AïùÝELæÌ ¹'0½؋/Ïjgm´ýÈOó{ÑȦ»4SVœäÛômršð«®èž™±B³+wªÂLÓè¯4aç¹8|Å ­Ðk9¬nÿëâ¹Z:ÙJ^ùeÍJ‡‡Â:ãyÍðM£Û<¦ˆÒ!É®8ÍàëAœ½µ57£´’ß«`æ áìÚyóz ~ö%<•ñ²H_gR¤·6o}k2Xn8.-ue¾hM³uU¼}Œ³ªu&¸\?arÿ/rÇs“•ØÇLÕo)Ôp¦Î7ùáä@GJw¤¾¥G¡Â,˜›-ÐAýcB’VVåwÿF¿¾(ñÙ®jø(.©Kîšy‹’]z3™†J¯¡@D‹Sâ:Ù^|'«R Ä"|‡$MS†a?ò%êuà¶xçŠSïoùxoOIñ3Á5Uÿ¢'÷Ltˆ Û×Ù•vr¹_Fj_WŒHe,ÔÙ\ÞKÊm- d?~ þ‚‡v9rœ=‡u{‡¸Fž ¾u¼¶ä”âCÄBtÃ;=ªMszû4©_EÇê¯íå„hXÆîA5$耷M®°Wÿ©‹X1§aÒi›¯¼A‘Bô4ݘTƒ¨npËäë0û²»×F˜¹öãD AèþÉGú±¢³¹õŒ»"= w 4v7T wïè±á’誆}[‚3ÛÂÂunä\ÞK¿ÄÒF'LÃÁ'P¯¾¹b÷1èj“KÓÊâÄ”ùhØë>aæþàŽ†4x¯œ\fƒ¡WN-‹ÙmžV£î©ÃDm­wðý¬n½p_¤mâ-´Gr ~²áí{xmýˆi›Tïû{t­WR¹ˆ™,Àµþ¡ÝéÄæéQîrçä@D’Û’Ž6C_‰E•óŠˆ4:ú‡3àÈàöÕ š0žÎ¢#Q‡>®?x¤,Ov¶`%F•yÈYS¯nÞwfÞráÃ~/Õ`KÀªKÙa‚XVåÜJÑú:Ù·g* °:ΑôöŽÍ²'Á-<- ¥+f°ŒhÍ W!™²g Dò¥ öþT*1¢l‘#ckÙo£Tùpqh?ëÈ“é¡çí0Bù§OZ3_²iMäÏ’fLàÖqR0þUKË~fÐb^WÌIAÔn8>|õnXT ²ÝÁ]xžŸÅ]jN˯/Ÿ‹*ù£Smp¤:}’¡bû"EXYÚ¥@¢Sêãa R“Ó~ÎjIO|†<ïÓl,JMAÒR[––·û6ÚU/úÖþ•ÐÎn#Ý"t“Γ¯Åsóçø7r5è.’,ôe¥b¿&®²QÍ𠈜î@ÃZ{=Æ·há›cÚHá“GÁ¨Žò<3~|´pƶœÅNCZ#!:_éZ¯ÎÝ>zír?íÔðe “ùdâ7GØEì J¦'dx„¸¯ Þ‹J*é.“Âc¾ÇÉÃ9¿–DEÏù†E4é³ûÂN×_à:ÕÜu\ë×Q¾P²ÙÉ0:U,qfž”]L5ks‹ÈYD Ò•ÄAŠH"zVð”&Ñp3ípÛvÑ&ª¿fó ‚,¢>ׂnÐ1”s Ú…yÍ>p@V/\48o‰#g‚éYÞa¸VAhšmù`ÜÌwl™¦Ä£mÇÝQ&ÈK~È9%ÚZJ&¥ .µ.ÍW–LgÍö Í >TÆA@pÖ\Þ¥}ºžu¸ö5ð¤Íô›â”H¢ƒ3¯ÀGÿÉ9k"4ÚL`õ^Ñ0:@ÔjØÍ|aÅ%LÌ„)˜aìXV[ý‚å TbD}ÂÊ/‰S0 1úòaÛ—»B„:Q¼œ •9~¬ì™Âjƒd_ ÆN"`_K0I…ûVá…ë1†|Û6ÑÍôs±phA—•]¨!¦'–l¯ © UöëH1ÄÛSçfk¯€{töÿô>Ž·ˆ­eg!‡y̬ ]²±Æô6xÿ•F`ùd}!PìÄé+ñØÉ(ÁVù.2u‘!RèÒ:Ê«­Å+Äú< 5ýÏÏ®àÇ}ÃOôe«vGö¢×¡R'ÊÉâgõ£À«¾½þùd‹÷çbVöùgðöªQqˆ€¹ÓÄýD>í·£Ñ¤1.‘5¤í¼VýYkù¢±‹HÑ…2C” ÙÞÖ¶×<ÉЛ{T-”7ôÍ”Mª`ª ˆIeÅІùIáÆÎÞǤ艹±H0Ô»tó§uUw°¼ìåý0ó0ùŒƒ¨v$œ…¶ôEû̲™:ækÕ°ßzn3µšZúƒ! ¡s?ª¿íý”|’¦êèôõÌ 3öáôTlMóîœÛ»Qzè)ˆ©’I¿£Ùºzñ[l"¦ÜÅœ@6Ãó®M´nIíK«˜­vOãÞ=ýQó—ùoÆ8dj°]%ÅûàžF¼ä#Mës~ÀšÐ€55  Qޝ…¾Aî‰æû¥ïY¥¶XúŸ‹Á3”òÂDëF\¦Z±3Ñ¢Y‘ ò]RSïλy À ¤b£7óÒ®2·a^á&ˆ:“Ƹ2#Š,G¤6£y™@kH¥ªð,=ŒÞ çÖˆG^nž®„Ю’ì ¦§Év.ý÷âìõÁa,ä“1ož/Ÿ–ýïnÒ^Z6.ÑgL®]S'Ä›¿–£SŽ]‚®‘÷?`5 ÃÓŠxÞQÅ)$ÓCR¹U_Èd0\Œ™Çt|ÂqϸŒÒ„ >(§ÍrA¤¦ƒí¬Ï}a°­‘˜Â•IÀ]MÓËâ©Ãh‰ž¿'È,¹…B¤!䯄Üd–âzQO¸Îeà ¾sV4k@™ïFC·l+’äaæ‰8Me` Ö˃²·Ê¨OªµñIÆX+‘úT¤ÒÖï%ÿÎj¸K Õ³Þ‘|ï힟?f2í9 '#ƒb¢Ya}wcÎ/"'m@©¿Ä ¿Å™°þ#äœ| ?Q·d©*Ñú@óªH±³ ¾ÜTsc飣h¬Çë Ñ_´eÿ&Â×EòQRðÖõ¢œ7†Ò¿˜,_eBa5ûò ÑABÛXêß̼Ks>¸Èø¤NcKývÊ ‰·‘¹º- ¶w<¾çÎ>U%ÎëËÞq·Ùö%‘ˆò©:Û®DYœ™9.­Ÿë^Yœ–=.½ôAP¨ ej‚õ!–̱ЃJ™ÒÑ*çB¾¿$ãç]õE`åÉg+tïÅžXGtßGœì$Õ¸é­Ä*§Ð㉠)·MQ›?"ÇÓÎQÎÔ›ÁÓ´žUéS‰Á§Qécé]:©á_úS*Ò33 ¡÷ë]Œ^°ñ)óï·”ÙÊOŒà©Ù§Þ¶º¢,t?£ŽÏô ¡~§7óXüÂ=©gбe©-ÍŽ…¿Ò:agŒsÈJE=E6Œ: ØöÏgñ-Ên8x*ÔPmié}AeJƒ;0ûí¤‹’Á~• <¢ÞƒÕuÓs7Š9|d£ÿãryæ¦u~‘‹ª 6±:É…ƒ äýƒ¬öbc$—ºØŠ¯; †qÞÙ÷ŒqQãÞçJrVÔÃDŠgBa³èa¤È¸ Ú^ç‘ùdà†µMtý-ôá³úÆbháìü$ð8§1fÁ$¿eÈ©ìWº- uõÖØ‚`ÂpõsmœF' üÌ9ös3‹d,ÿŒÜƒî $ÕæVL²†©QÊ÷õiv᯺ äí&þóÈgåL ‰ixÃFČڱ û;“Øç½÷éK2A;mó0#±ôøÖ_‡Ðpd$$ÛþÓÍ2Èé‡BØ!­gU3é‰'-é[eíZ …:V&¨ßžC•ËÆàÝ>}AÓAJI”|oÇó[äYìú*RFh‘ ‹Ý+î¢K[\$¾F —‘Õ›õ4WÀQdFðî÷àÑî‹ BiŽ‚àhE6¸§(ôoEBë±Ú¹ÒTUV¦®¯›¤opµÈK.º¬_õ|Ë0¬uðþ^úÐïNÕX™>B¡!—‘#É{:ˆŠ:b>$.PTû™Ôha‘ô•q¥ïÑü£•°µ– ö"!ׯV|:¤—ŒifNP7©FC,¿XÝpsÕÞÒ¤<¡¬{\â½ÒÜV¥=>…›¡%ÜŒkRÿØ”2ƱXU2Pº»Ï¥Ús-~ W€K 0K¿™‚|vB_‰ÛWBF" ö&žý2Õ«ê).X¾¦}+)BBˆ/“W›Xò÷jn¬áÈ‘ä †X h –(6~ùš<ý™§ÄZq.jXÖöjuRVªøÃ0©>G a`Fˆr~{ó*Y]š¥Æ2•È#¾ê‚=æxY‹­jÀ}¢îÞØ)øS\°Úý‹•ŸEcè÷wIn²Ñ]Aÿ³uëö©N°Q›­ÄÉù“+¯›YI.wY$}É´~D6ÿaq¨–›Ë¦ 󦥲@fèë#b„•y{ˆç¯¨´ˆÊü, E« Þ™~øŸU_“ëÚ sýÅÛÏý;¨~õ÷g¤¾]7=oS}‹ ¼<^ôŸ=Y¨œþïës_†Üío±ºȳ£ã!„i‰>Y¦RE ™9ħ§=g÷ý$Ĉ 60wFXñ ŽÐ°dôò=_ôÊ%‡ø3u¾âûûÜ'<""KEøÆuv®^÷9È“,>_ðÀ.v H\²6åhP‘´žÄÙäÅp´Sz7³uûºÓÎ060M‰?ÍT`Z p,ÌV‰º*ëo~EÚÖ Ÿ*¤ÿÞ[ôѰ Ž|ZQg\»Æ5Øå2uE. ¶šÈKïi©„.oŸ½Ä£9¶du·\h͹,úb½%ý)¦NvfDß³Æ_)§î1a»R\Îû`ª·ÏÿQ‹þ)±¢K2Àöqô‘ÝGù4¢ÆÚ•ÄßãÅöUu[¦Ø•Ò1s*TÞ’CURR%^Çpnæ4¸HÔÔ:¡‰Z»Í¤S‹Û€i0¸aå4·W¶ÑÂÅC°:ÇUßé|hjvŒLÞÏãÌÄü¨r«y”w´Aë½°N*º‚Swx¹ÙªR\ÉžU½•z½’œÉðÆ’Ý3“©k®+N÷´§î!8쬦ë×ü¸äÊÛ÷aDbîbl>ì¯çCŽ‚"¾ê{éÑu®×)‰GðÑ}¹}õŽÄ3íÆÿ¯ºA´–³åbuåR^®P\ˆs¸"UتūWʦë|ShŒ@Ü$-”W¬Ë¨5ÁJyÌè»Ù¡_$4ç˜ökà#Ø-¢òã3½lKCªxÚõ¸¿TÛ®ìÁ-òùhøªÎ™xÀëpTÿ¸²X†SU›ŒN‡ äˆ %û@Ô¹èa”r¥‚TŽ`È’ õ˜ÈX:ƒ4ù*_[0–5¬x½qš…ÇÐpÒà•÷e†ˆ?Ó%ŠèQWHu•|z‚4ë¯`ó&@s¡‡´µ•Ñuùµ´é?ËIµÃršú}jź¦{oÒ ê¡æò""\ò{ BúÖïÐZ"]e?¯]¡“ú™Y÷Í'Ãz«W7Äìákßäw÷ÓàdäÕÐ@gƒIõÃġۛ¸ãЃ”yéXšŽØSî «q·e@àÙê(ó¢³9¿›L,Ú¾¢[|Ÿÿáùíy=Ÿ?àýûçLy\þ‡5}[¨»B|ªd¿uÝŸFtô¼Ž„à’iÌsÕ: ÍjFʤ?Â>0|™Þ•Ë– ¾¤\õ3ü½GÙe»Kú˜Ð€A#Ÿ‘súY¬–ªðšP¤yÝÙµ><ë±í¹î‰§üýž#ç ¨$GÕõýPnÝ)18B‡„Ÿòp•Xü^q‘Ç[Æ‹‘1þZËj·•:›ÞtªŠøtÙÒÿ-8ê¿®+òCkØG–»e?O>UvI1ïØAÉêÕ¥àÃÛOlAM§õ¬ ÀOŒØÆmNèu<_w¸mé²€F´j;þv±“ÊÛ6ü³2Ã:\¡ ᥎†€ÊÜ 7sûðU³žR0´$«¸€Ïù£9CMÜê½™#¹ %<ṸU3â EO`k¸¹nP âìâ[Ñ‹ñg±2\ZÓ‚½pÿ(ÕÜ+J)4µ ï¤—Wí“➬·ÈïaµWþúÁÉŽ ¨ê—QZŒH·š>q²”îÿ%·àh˜¯ÊZ-(=ïÜ:×x…í~ãúÕÒ[&ÔH8qp óÐaÐ9Þíq°Ëëj¯å=È{\аw«#h–Eëd‡G-ФÑ–d*Æýþé±%wHð»`˜>OB\¨Ìu"N¡§&‘#–'›"wmÐï|Îe®ñæ‹sH ˆâ9³?À¯Ù¯Äïâ Ž¿›«œü%S¹iÏÜ-ÆÝXŽ’ù[ãiºúégð×Ëü•Êû(‹=ÝkNžEòÄIÑó7ÀhÆhЦV˜Ð=~oÒ§ü#Aw,ä îÏ>•f÷ < § ­Ús[EBb}V¾Â7n9ÉUjTÚ± ‘u¿B´86f™žÕeâì£ëX¢ˆ~ßÅ}öÑüëœGКÀÖt4aJúj¶éª°xõŠÊ‘D¶¬Z¾uâêÑ5øØ#Ô†«zqñÁö©Š%møÉr%µÈzÕ™ñ<_·àÆ"4ÎÿÌ».ÖT2dO{ñ Ñ{- Ñ|áú§f‚!.%“]Ç%ˆ!c£ ðD)¦gÅ>ÌEÀˆ™PFšØá¥ˆP¸›pQ¹^Tåò‚0ÿ†Sl*O!'eypÌ΀³`†²üng7£&ÈΧgÿæÊ!ð}`ZiæòzATþÈI߆iÊdZ|’ÔÒ G9ϘM™ Á/ðµ­dºÊ äùì±} t¯=ÚÛ“ª¹"˜{¸¿ ëWÌÓéëä¶üšwÁ• òãæ%JÑXÚÁ{¤'$î½0ɾcÜífŒkp±«!÷¯Í6­£àhö?d‰X÷]$Æ®ñ|/ÞªpµÇ}²µ\¾óö˾>æY £s\ˆ«¤7o˜‘Å}ÏÀAg12Fº~÷¤ú| T;MöäæšîŽòSx6^?¿,Åbê³Ý1ïÕ‚ÛÅPi÷H%²¦!Þ”u›¾C€àN§ð“ãÕàç®HÁØøJy³˜â­é]FDy S°#âMÁÐý}ìCxi/¶’›$¢Ë¬”œ¹um(¹ËWBD“’Û×Jw:|ŠSš›îÆPfêÞì¿^zö¡À1smóÏÙ¹ÍúE7w³ãSÿüYJú„)_NÔs’7+VeÐìödß»ÐÓýkÕoÊXÇ7 }2·MÅ õPk¥$£-‰|<ù7ÊþÆn¥àÀ––©oô"Mð; Ëí’oêÅn1ÕîÅZsC/]9ŽjŒ»l6ãÓ‡V©¨É'CS¨‰V3Úµßîðœq˜½‘4‰üšzšV± r0AÍ/뵤º#¦¹â3ya*(­Âh=Áëe©÷ªö§¦Áã-é¾wñ0¯på;Ùy%’läÂX¸åñAtUŠàŒ´EBEƒ×K»}Væ-0CÎøåÅĹ•xƒî¨¿‡#Õ®,m»¦/ûéT€nAA»7?›Áê'–gE”ƒ†-iû¶-G’¿üÝÍŸ^F0/ìkü—ñÿøŸ‚¢‚¡±ˆÛ· ±‘üÿÇäi¦endstream endobj 16 0 obj << /Type /Font /Subtype /Type1 /Encoding 1621 0 R /FirstChar 2 /LastChar 149 /Widths 1645 0 R /BaseFont /FGQWED+NimbusRomNo9L-Medi /FontDescriptor 14 0 R >> endobj 14 0 obj << /Ascent 690 /CapHeight 690 /Descent -209 /FontName /FGQWED+NimbusRomNo9L-Medi /ItalicAngle 0 /StemV 140 /XHeight 461 /FontBBox [-168 -341 1000 960] /Flags 4 /CharSet (/fi/fl/exclam/quotedbl/numbersign/ampersand/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/equal/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/bullet) /FontFile 15 0 R >> endobj 1645 0 obj [556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 555 500 0 0 833 0 333 333 0 570 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 0 0 570 0 500 0 722 667 722 722 667 611 778 778 389 500 778 667 944 722 778 611 778 722 556 667 722 722 1000 722 722 667 333 0 333 0 500 0 500 556 444 556 444 333 500 556 278 333 556 278 833 556 500 556 556 444 389 333 556 500 722 500 500 444 394 0 394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 ] endobj 5 0 obj << /Length1 1630 /Length2 18863 /Length3 532 /Length 19786 /Filter /FlateDecode >> stream xÚ¬´UT]í¶%ŠîÁY¸»{pww]¸³pwww‡àÁÝÝ!‚»»sóï]§Nµs«^ªÎÃlmëCúø9±¢ ½©½1PÜÞDÏÌÀÄ·´5vqV¶·•·ç–¥Wš»þêÙáÈÉEœ€F K{;Q# 4ˆM,,fnnn8r€ˆ½ƒ‡“¥¹@¥¦¬AMKK÷Ÿš\Æÿaùélin øûã ´±w°ÚþBü_ª`fiˆ((jIÉK¨$äÕ@; “‘ @ÑÅØÆÒ ki´sRÌì6ÿ&öv¦–ÿ´æÌðKÈ`pvšXþ º›þ1Ñ€N¶–ÎÎÿ–Îs'#;Ð߀ì–v&6.¦ÿðWofÿ¯‚œìÿzØþµýS´w9›8Y:€³*ŠŠÿ»N…èŸÜΖÍ{³¿ž¦ö&.ÿ´ô/Û_˜¿V‘¥3tý“Ë0µtv°1òø›û/˜ƒ“å¿Êpq¶´3ÿÏ èN@s#'S ³ó_˜¿ØÿLç?ûü/Ý98Øxü+Úþ_^ÿ³K3ÐÆŒŽ™åoNÐßÜæ–vpŒÿ슔™=€™éßzS‡ÿ°¹þ5 ªv†úoF¦öv6S £¼=èoJÕÿË ÿ}$ÿ7PüßBð ½ÿoäþWŽþ—Güÿúžÿ+´¸‹¼‘íßø÷ü=2Fv€¿w øçÐØ9ýÿbŒl-m<þOQÿÕ[øïrÿ`R £¿c²3ÿK Ó¿•–Îâ–î@SEK‰ÀÌÈæïÌþ¥W³3:ÙXÚÿrû¯±è™™˜þ‹MÕÂÒÄÚîØÿmÚ™þ×þÒõ¯ú¥´¥ddåhÿ7ö_ŽŠ¤êáð·¶ÿÑœ½éÿþ¶wxÑ3spèY¸˜ÿ¾¿¿q³°ùüoRþ ˆù?e9#“¥;@çoßLÌÿêþ|ÿ)éý1;{ÓVGddgúwÛþ§â³‰‹“Ó_’ÿuþvýò¿ötšÀ­-Û›ð[¥ge€ê¾å OŠêô÷2C‡8”5ªúר÷ø¥‡oqW¾Õ†04Mó|´y,8¼ïIÓìöbÙPö¤/ ð}H©û Q7(:8i÷õË3N5¢½.eÿ@is0©ïoO*)ë—¾ALw°:Á^>Rû“ºúc=8 ùš¤5Äav¢4¡ÕœR$=>PŽ õ\éÛãÍûJÎë …Hå'¨­Vé‹Ió}?^(QêfoÀHëi_F…Ìb×X*îŽ[×úPt¤ôŽ2^œù§o_œqþÌHqÝG™Iñ#H²Ä¨:†’øò©Äa‚U¤“hžÕ›¦Ò¿W7ž²n»ÿsˆÌ….ÈÐ7Ïù4èJ{•˶¼;â†ñ¤K†˜ŠlßÜÉ’‹ÆÔ¶¿œ}ÏŠZà‰ òÜ1A±ÄZ=6 oБ®­ãõ¨lÓû¥%Tœ¬‰J@ƒÁÚ+bìû,ŽÈ¢ðA’d `û#**¡&¥Qö{$ÛYl• °¥F@€œ,Ô÷x>Þâ‰PÄéNþ¢i¹ûBîY½{¡Õ/8Õ‹¤áÕeŒëNÞÉÕP•ýz½ÄÜrÇË!I8W¸Äì5*Ø»½ø|¶ÕÁ÷’Ø7¹ì9…þœrõ¨îëã¥m^ÂaÔËa—E,Jãzæˆ÷æ‘D…Üè™;¡?Å™§¡¥‘Ra ù Çq.x×Ħ¥F^âʼnŒ¹ÆÅºi™ªZ‡™Þ ’ìa[Öíá²}Ü[4úóJÁ§gŽÁc•·¹Ç5~X4k!¿d ^x3T½°ÁWsµìb&:0Â#DZçìÞwÒ¢ç^­ɲ~CÔŸ[-óÙýy#”‰ï%‡K«±Ïq9í©©*²ÜÙª¡ú•¡È…[Ë#ƒ2jU˜ %}œDâçëúÁ«°«“ØÁûkmëôªð[H{-0í¾&hmEÄLãPŽâˆ[cD,"H„RÛÜŸ[â!Þaߊ绬ñ’Wp•¿l7²f°ˆ6ÚúX»t‡3ík ©ø½ÆfɱS;,WÑÈØ©K…ôÄüê®ÏžxÔCu…9Oˆ¾pÃZëÐËÅ>r ›L}Tù”¢ÑL½ã¡ˆžý*(ÿ™G,6e༈þ¯ï7IpÞXOÉå ªß [âÙ8+Ì×DÊXìɤåÚ+ãYÑZ¦Ú1Á¯øß<Ïó¾ÈYL$lÎ*“ý.Ë ^×è?ý+L“¢X¸M×;o˾s……\¼åE^˜ôr7y/O²S/´$ä7¸oÍ §ø3n’" «ÙW1H‰è]sj¶d6…¥ýf½¯ª5›Ä n(Érü.Á8`Ï53»ksÌL§g”à÷k{–êKÉøe*ï«ÃdÉ9r½ÂǨYA ;Þ]Ää-§»8<þ§x¼%ýïƒÈÄñ—2‹ì©‹9øCë!µafôêj®GÏɃâÄ…¡)^ý/è%ßgG4ôÔÁ €Íò=p<’wˆôA‰dm$Ïòë›j˜£ƒêÌ=Ù£?“…Z@gÐiŒoG‘ÛúŒáBIÛKïý‘‘~ö¥g`îXڸߑžZíÓvk༿]ÃBN…ŒJ›±µ°ò¤V&f¥²=S0áƒ1G¢¹ž*7T yi¶‘Lq¿®kÿ|7ì‰G¾÷²‘P£ý•iãÂ0ø9ÔÒ8+RÏ”—‹rêŠÄT…Ç&IJ+8;ôšnÚ#½Í‘"ñи¾ÈYCV–ûî–÷RÞ—J¾cé™&…AelétºhÙIS£Š,~Ù&UÚeíªE\Nï[hR\5mi”T$`r¤é»h:âšù²ZE~HúÌ—R>vCjJæþ--jí C% Ø«$¶FcŸ3Ûç…á$Ë÷Èþ3º"ªŽÛ{÷qfn§h ’¶^q^ç×wÃRòº¨LL5“.ƧHb¯KD %Ÿ0M­ ïY;qÍ€Cd¿Ï€JDF‰êÝÞ¸Ó;\~˜É2FæW„cœ hHqÍ­-Œk<&î•JzÖÈ<à¢\S×o Ñ<´gåÎbãÀ…íè`]jÃx棄.Ê~§™_ý¾1))ÓHþ8Û?'Š/õN)õvt~¢©ÿ¾í½â Õšbïí¡áÊä8°&›–`çMm¦i£ÛV\qÀZ^qd'ÛN[¹êvÄ/³VŠ‚tùB¹)bN1fm”l^~M…ðCúÇLJauŠç‹ŒŸ‡ìMeÆ#J^:$Eµ]bjÑŸ-ð_Ù#Làq¯Í&)[*w¡û§d7÷4­êTN[¼r8퀖¶›B‘^ãøØ«¦£ÈÈ·Tî™™÷] q®6à©8}?Ás0ª¥kðØ;2Sy[%(JW³}T¶‡`Ø(ŽÔŸ'Š+š5ƒMRb\³û„ãÎÖUÙk›0t¿ÈÂ?È£%®YÄâ¿»ÑV¢X×ÒA|?Ž–µ3,ûÄP‚£5¸‘=!oÁóÐ*nЇë n®2/Îèq©Ž¡[íØƒ ²×K$hÆ>`_ÝÈc¦ “æ f}½ªpÜà- ዯ¶™Óœ}³÷åÂFk@â벡>¹öç¶‘ Uè€6× áœRxaÃô)Ò¬;-¦_u%ŲaõTŒÐ"ØàUuZ»ÂS™ÆÒˆƒ5‰‚Õ}œñgQAV Êüš×høÏ¡‰o¸!__—e¢%5\nøÙ…ŽÝñü 0æÛ„wãñMáÝ 8%Êñ<˵|žúúcÕ•|ôß_¢û T;6§V‰}‹Àó\&Rp¬­n¶pD*£fYZe±, xè÷Nõ¢œæýÞ¿xÜ$‡.>P|·N=2ÿ²{G.ƒýÈw¦ãîãÛCe¥±fó“O˜÷È+™ÆU¯ÒjºùuÚÓä%pÜn­){„üÂ~—´"ÞÈÿ¶‡À(ºØùT)[/nä’m®Iö,;§4…Cµì´Â³žÊHl•¶Ý!N”æ/P ПMä…F*½(áÔË]ë=ضûsæMš‰è½9—ywg<Ï595ZÒ4ñ.)Ùø@‹”—׸¾Z€„ ¶42Ü$B=wV—ÆzŸÛAoÈ?V)¸­;¥ å*¨zwÄäE[®m[ޤ5º÷¢0ìA$ [^9'oYÇ4š•Á4&cN®ÙIå’<ñàj2ðäîl”££œÑî%Aw ú-Jѹ•ªazY5r…ô”ÝrdŒéÒ+EòJgÚ—ªîÛ™u„3˜›0ºïótW¹9 x¼mm–c?ååd{áà <‰Ù`FèÊíå­óܵ•ËVgkã˜ØK-oàìZ﵌ØT¤™u8©".»É¹éœ4ݰPߘã†Á1ÏÊ´=Z–Ñfˆ^ò!jИ; Þ}LÈöêM9Ï–}ò8ÛSäø©:‡ÝÅïµ±xêulSÕªi„žS ‚)å(CP¥_É>­ZŸìz7¼gÎkéÎÓŸÌÐ&•ÚHÄåõe;wÔÒŽÊ7¥Šmñ y)aPøŒ6âBï‡áºuøß%'æU¿p iý1gƒ&øUn™D±ë‚=ÔR·€[ÓËáb%m›u‹åÎYäsÓay³ÀtƒÇsy§wQm’óºÍh§Hb½ÁGEYWªmH…oKº„zÓwYº×Â+PSÅ©Ž¨çŸø5ðl«@@êýHšðŠO·j€ Ú€y°p -*3Szœ¬@|íyœö«£¾ò£ûq¼õùqÛßX<¯‰¸쎛f:ņ‘Žkû¬9âË3ß'o%’å$”ÉTBi°„)SÙø‹ Ó^¿L?Í.·I&)„Ä_(ÂEÀU4#(¸b<‘7(\×âMÁ`®tðFh1ÀX;Fò4‡Ý&„CnêKw¾™¸CbùR]+'v©Í…A¸I[Çé±`}‰—Ä|H ÷;Í9”eÑè VD†â‘:‡W,À½¥C ²ìˆ|J(û-oÝB¨®å´pm»2Î#¡P„­w°¦$B=`aC‹ÌÙ:þ‡*ÿz);¹"Ú>•ê;Ðv`IÖÊÍ¡·Ý+lm‘‚·ˆ >Îݺž³öíöF,™ÚFÞ £W3†ÑÛò«¨%‰†œ^lu¼5ÛËSê‚ùÆgAÔJQý´Ð7ÐÂdM,7slm®Ÿç“0;º†ËŽ´ÖL\ø¦~`s·|OZÈ÷kv„ãe‘. ¢‹x+DA =šö éØ*a/Í~¯»ç耤o9Í>ð–Ãi¦.SÏ6ëÃ@ŽŠaS⫯|†ñS0¹/h݃ÑÚ‹(|™Ÿ65qŽŸS‘­á–¨»vh©Ä]¬1 “;Hêû <šSØÊ|-Ìö‚ßuýYÞ¶šZYî)V(¦›>@yï'Jž1¬žcÝÌš’Hâ]ÏÄ\?iJ¨Ðo¶àš8ƒ¹ALêæÓžBt&»2úKÝï Êà ðgÍ•éƒB•êOÙ16D:§y/çÑ@ã¨*œÝm½óÅdV–ç°¾ýpE`iÓðTsÐMöO:Æ`Í@âðXÌNRR ÷¬ÑzòGÑøÈ_\ÆT^¸69¢¦‹Œ³ÌÃ"™Á+Ϩá§jÜcàuüE¹ûœÒ+|úQÅØ¨†ñVqR Úˆþ„•<ªmß/ÐÒI üîWäL¦£Þ|QœÍNãQÑCÓUGñJ÷)édYÎq§³™~uñ)JçPÂ4Ê£o]NsÈÍB³\eޏQcpKª}ª oÏ–¦x“ˆ'^8æ¤û&‡8–f;`˜s0¦%3#l;̪½oÖËÈ÷ê»ý‰Ê‹ ÕÔõ0ìÿ”öî)ÊÍ$»ßx5m[be‰=A|Œk.ïfš¯¦JX샄»N2¡½ZSX?o+ÚM¬…å§æ{¦‚ðïøë$?/ ¨Ê…Ù2Bi9×%wU؃³Î£òs’ôãT¸çj}Oé$,EÂ"¶JfæF½¶­s8šaÀnË:œ½Dlc0äMïÌEc * F“ýË!‹hŒ'Úgmæõ±5—8ë E™]úá=¾VP¡ñ¸R¼b%EÔ–ŒeAÐÊÛb€*°#Ò+výðPƒo辶®ØB4mº4Š¥VÚ©Ú¢ 6µæ†¢ %§Ÿó©­_ãçðªQ\×\?|óqž˜ÍÂfä€Ü«ºD§èÆâÒwŒÊÔZÁßçøxf˜† ’ËUV–¾¿\ ÍD$slrðpÕRíELJdÏïtlâY ±¿ÝMm05ò åri'è>œÍAÿ˜£(Ef {Y€L[•Sò͘§òîЪ$pŽÎ¨€­ŒJHƒ¿P³KšüH¬,̲'ê+ÃЋ„ö©L²ÙÅ}ÖYŸY˜)¤ \ÛèÀéu–«Û9Ô;o7íá.’·X£¨¿É}û.«çįo‹H%²(Ͳån¤s"aN!áïEfT©îæÓì2‹û¡‡Æâ¶ÇppÖA²óVÒ£%¨!؇Ê{lCÈÕjBwM[¼hoƒ;¡Tû8Žž?9¼†„^ëùÇÔ®|ž:ë“v£tyƒK»¡g/åGY#œŽ;ÂÝæÙ/|¶Äkrp­2¡Ð*®ÁXá=Î:rê£Pú‰°÷GøÓ%N}º‰p—=•_}’oQ zQ¥‹Ú_–Hd~Ó“›"âC7-XpT‰îÕ&€l§·6‡Nrá ãY¾4z¢~w¯…?é÷—g°’¾£Ü‹Ò@²©ØªxT¨h¨àÐzƈLAú¦…“ObìœÖÏ8³Š†•kNÝA!_Øß1qÞfMÚn,‹(É7‹Ý)»w= Û™¹>&XѨ4ÓvæÙWÓVç²á:ãH?EN‹5š}©êäm« 42i¯€Tèóú²€¹‚2‚ø£¸æ\¦`OIS|r¯uʽ^’ïJwÁbf{À;ææ¾È—ù0/]Sp¤¬è,éë•”ø‰ ºâæóB£P[Œ[&—…÷Xn¼Åùæ@/yý þƒP…Ž•r?ö¯}S jaBºÜM[ñI–ÍtËâ?J‡ËÞè<áB~ºh¢º}îë3¡>|ájn®eå3.ˆ)jÀþŽÔÕŽ .+:ÌÛcÆÔh®É)q¾Psüf¯¯|ü”,ΰ(æÊÔu—˜ñk‚‚Þ“Äý‹ W/ HùGþ}16H=êÛÂ6Ç0ëqxú”UˆæÏÁ‰àgËm³ƒ¾—V—Iª¶ fͳâÄb™½Š:í»1ÇM@SE_I¿ù_ø7Ú¾6;çãuîD¦Ì,õÏW.³ÿòûøÖåp?ˆìífQêJ`Ðî‡Å^1CÎEtžR,p56ø¥ NY+™Ï«ø{M½»@ŠTËabýk Ïçeò;í$´áÓ/‰™´ÅŽ|hgî0Ÿã¦…sýU䣲–QÄß…ù,h-á^µÞ%¶¨- -SßôªN÷áx¡P1„î°Ýz PMåüxrÞçÈç˜Ûxa<¶f$þEMJÑ>ËîŽCèæ×sN7À£FS (Ü¥ÓÛ!йs8d‡àìb3USK.O@ ÈÄ’t¦\ç«’€à1ç_¥Ôx§òêâëÂŽãBRaÆ»h(U([ÁÛ÷¨ Ò!÷ܺ¿ #­kwQa$¿šŸ±{ò·ƒ´Màwü#Ž!rö™͘Áà{Ê<öpÌÚ[Ýi¸ö½ÚáΈbfm«ªÈX¶}2®rveñÒ¶Q ŽÙ“?F—-¾Ý»ªVcWÁØóû" Íx3¼£ÙÆÖçîžO%ÂOvÜ ¶ÎÎFG„•âžÂ‰û™¤m' å ¡’Œì£Ié2o 8^Uâ`½íŠLæù»ú<͹yô‰YTÙ(©0¥ÔþO¼»ErR÷Sϧéž­×_àX&rOnLá´j h$åôjU ©þ»u…R×~îrºÐܶpˆˆ>u ï;UÊð’ZÄëLjÕz0ߊôä¼7VšìÞØt,4¢‚œnÀ{ëm?éÞâiZ»[D¯”‰÷3›Tz¼MÝÆ¦N’JtCüÞE¡Bº¢#X…†3$꽊ö†,ØÄÞӻƭš×·ð¤euÙîÒ\%¼ûB8ª&ç/L6»{ yMpW Êt¥*¤†$~–Ì(¯µ½cÇ?^nj=/7F9y<Ï¥Àk¤ˆÐ¿+žE ùUp2wýÂc*YµŒûcZë!ûâN|sC6M„ËÝ,Ÿ¤`5ŽN ­¾ùK:”7SÝUgD2SR]¾‚ØŸÃ+Ç$ˆÝŒp ³: l´kr±Îô§Q™è«š:b5›ä]ÇÛ²ÖÁ›ÛLiùä¤u;A—^Ð…Õ-ÞeóУÀÍBŸ[޳  уÑè¢ñý“ö3ãzr iAi/ ‘\.%a‰öÑ ¨q›Ð®Cÿ{ÿ´âëâQ&øãà'…`•‹˜q̧è2÷ˆ¥bËÌ"—C|jùÎ{¬]ˆZƒ•ùˆX"§‘‹Fùˆ$ÌWóqÖg;vuµÉdøÓð‡.¼LY9b¶É‹ÓTçy¹ßĪ$nÃW˜$åç#¯ãÈÞæ…ý\z{ªî/OçN0æY‰f¿‹ÇX¾!Q½þôæ=ÊXŸsIǹ‘°ð ŒŠº'?ý‰brcìR_yDød®ÓÈš KƒÄºî‰Q*ô•B%źN¸ÂI„Ró1X«¾¹ºÁ‹®á@°…ù.š ïKž'Î6òÇ&ÂxÆ+‹Ù>!râ ¯é^(; JÚãúW8T~a¬-æö7ÉN±Ø š(ì%i›U®}B®C=;žžo¦Ç“Vb[?¨táÝÚ$õçm$ùãñ‡Þ‚" âçŽTÒ»%è{j±E‘3‡ŸÆ'Jò“)&›¥À¶<7.Š)Q’^ßé«Zí×´‹Rô–Y˜šúiòE=Gs½¥»~„×4ÆBPÎàn›9kNÓ&‰BáéþáŸp©٢ȫ`÷=JØ#‚ß|¤îžÃ/~0ü”e}ÁO*ƒh7Áxd_¦µð3D÷Ïyh‹yË¡G(…¸Ù¢rUoÃpVʈ`À‘ê.>IUù›ò8± æç&:éò0̘ …_”§j¦±á¤ $ì¡OÌù×ê=VÁ¯ÄÈqò4wÕ8GýªìAâk Ü[&ü55@D{¶J^³-i&î+z–:N^+U>×=­U~ç*HnVV‚^ÚG¤ìŒ`ÕF‘KôÎoÊBJ Ñè”ç—£‡¡ðÊRŽ{Ë@ŸÆÎù­æa>óÊüÔK+Ìi›§ëÄØêwýÍÕW,ÂyrSt+¨TÑ,ñ) âç ˆ›¨–ÜIª}p¯»ùÉCKòKÚR-´L’êÚ–#ÿ÷@ ö›*ÝÛ¡]¹ä1!ez9_wŒÅøØžÂq»Ä{õ˜ìB=¿%ª~)Jí<êjlÇùîL=í§`qòýë˾”~›À(xY&dÃÌcÑ ¹Ý&®aaï)³ix¤cƒ‘§ÞV‡ŒV¿¶€uëλfq\z$Xåe4+ÏõÕ1£÷ED[˦3VËHô,–Qóaÿ=xÛ·ô㈀4 \ç…YÖ¤‰:8 Þy+ {ÍáŒ>®÷çi=·i•üë®Z?wJ©œ@ŽÙWO)w:Ê8QýÔ”kø}Ÿ½’ñv£¢zbà ±ÌÕñmÇÊ€é7Ôãïša"Ç<Ë#Ó8‰_ôpÑM6YwHÉËšV4_Ç Á¢“wßÝ ,™Hn!M Ä0B2TøgÙúÐoÃfa§:¬J¹Q/ו.˜2X¿`2ü±Ä,Û®ç3æÕSuµM#Ë65hqÞ§¶þóe>qýd‚d¿Ó"Ïs¹e_óúxh]6=¼ $4,ÃB :ãƒÀó´ºD¥2Z¨ ú@ã·ÿø’H _ßJ3úÄcYR0AAõ4Ê™A̲mõTk QßÌ-T=s—ßÓ›fXíeT½´‹Úk; pb|a[B?ØþIñ‚W ì ™ùuÚpª]ÜÄ%âé(¾ögzÌ7j[Eb ‡’•ÍxÆû\ÞÐ/r÷ïO\êúp±/ŽR-÷i>dŽÍiã ¤ò€+` ;(CžÝò\™ñî$K9›3œ'Ck‡Óï¬u>’]ð2 iÂûÛ»µ!ÎÒ¡§F{v†±d§ãO¹SÛ2¦Ä›”åf¦Ï?á‘q~‘9":_²`âåi]9t”ËlZs‰ÚxpÍ‹ hËÚ=¢_J(½vËqÏÆK« %|u Ë&£Õ8ŠMá‘]zU!Ÿãä"Éb©ÒIæÑuöN•˜ìSBäÖÚrjÓ¥=»©pÈɵü­ ‰Üÿ$:ÓY¢2Lx˜b}îtÙ¦]†õõé‘Ò†zõ+ hÆ]ÃL–&+šÙŒpgÏ }FÜ·¢æ¦Ïÿ,êò5 °ò@LÛ³s8¬Y]zhttÏQ[†‹ë.í„F?‘òƒ©<Á«šuÔ“³îW÷ AuR&~ä ®ÿñãɺhjžk hmÏcÖyNXM• TkºKïˆ^î:µÅ«Ñ#"å?Y /\sÿànê$µL×ø$©Û4çš_&ckù }–ÒGVHßàakUëöxÄ&²j`U„~MîBŽEÒ¼qdN‡ñ9EŠt2ezI…(ƒà>ÁY!ÙÁ£^ÙÎwÎ5à®ÍØ:l9)ã'–ÇõöׄȺ®ñø(\¤CªcX VÒ¹£sÂ%˜ÿô½êÙhü‡ï–ÝÈt¤K¡åyÂqÇ—Òß·ßîCrâ3#Nð…ãm1wŸx#Ž&œðFeq³)©CFQÂwžÂk¤}*$GP¿:jCäS CŠ·@È)3„èäd°™Øîµ0šSsåw¿\9­æíòZûƒ´ä°\•~üÁ€Ûö966)ý>Ž%lFÚx„µ©7êEÐ,¢ãûË$ ^‡wWÇi#M†¶Ú>îjÁøÌ׿¨ÃŸ‰Œ–ÍÂ" žWϼ,þèÇwy1–DˆþüOLƒ‰¼¦÷ÏQ W•q•PK•ìßz×ÁA.ÐÓE®A}Úˆ||¿?¯Jwù+ÜC!ú×TG‰Jº÷¶abÌÙ-9͘ÜzFD°Ÿ® ti:Zßq¹f|B‡7É]1u½C# íD0õ›°ã¡âO“lµ]Ê«¨eÂv´‹IPø¯‡Ò¸1sk­íûŒ>„ϹýXÀ`s&޲Szbè~´>œŒòOömïÑ7h‚ `*¨ÿòS:iëÈX6 ̪Êeã3åÞôÔ³luRô…¹Ë£e„ÉE¾i‚ª3\+Þœ¼3í60GÒì¬u…øEÔ\Šó\·„Z¯~DøpCQê ´¬–ÇÕP$£¹Ã羚áÎìú—d…üôC|CmKâyé Æ©ë0¬u\m²Íž³ØºÔ]}Æo«vÓø b2t¯Ä„ƒpÒEýw;²G2÷ý`D£Èc¸uí‰RÇ??¿VËòßÓz͈/@Lø„©‡G™»¢H ëîø5†µ0˜{¶É“Ü:Í“Âßµ›R=6ƒùÓÚÒF:êóO³BWOu( …ÕKn‰!º¹!j·>˜±(òg¿ïŒï»ä¯í72ü®Â—sCøH(xZ1ìcywƒPð„“nÂL5—±Þ¦U/?¸0èaðÏð¡~½lASåô×óªòÿ3p=ªÏª÷V9Yˆn5>¤¢QÎA¬A áÂC¾˜ûLŸ&zQïZ$hÉC þÐFŠH-ÎN’Z¢Ï|óˆÌÀK7ú85á'\)ù°ì¢¬qÅÿ:½›´Ï¦Ÿd*‘³‹Lì›$Ë1üؘ ]Æ‘–š­83 GÜÈ ‰IOòô¼¿Ù^}¶‘Ï»\ºŽFïöœŒ5x¢ZqoÁ¯J:(„M?Õ·FÝ%eñ±¢î n$[}+Y{"ù4TëAœño£ý#îÒþ‡•P½€YRy¶§% ɦ‡! f"/ýДû`èÎé§Öõš²Eð—“¢8~Ù§Ò(dþϼð+Æ–8ÿ½Kyìß#·X1³z±m¬Qá†0Ù½šhÝ¥Ô>§`¥OÓí9YÞüªhêûž ¯mrµ w¬žpL Ï®@’tƒš•–‚Élu³=ð×~YÕòBB1áÈ´¶‰Ñ‚“-‡Œz“0q‰±`°Æ¼¶YxwÿÃ_õ&Ù……¶Úª5>^?b4wΠ’Ôe¸î‹ô—[¥'ŸÈ?lÆU·Îyž§gš&l4IÊÁêà½g_&Ú*îp[)8»†Q­ ¸[1áuÁ2m/û—/Uj$«}-usÓ¸¥6xŸ¯ŒzçGPYhâÂz¸ŸíI«Ô°vb;@·½å8ÁDsoˆ>öή­Ãé’½dɱj<´ÓŽ“'mMÈ0®COþZ°MýÙF’”‚…MWÖU´cž?6! ’ñª¹[)ã´jh]Ÿ™˜ §<ƒú憦ÑÌG¤Mª>!ÖøôÀ½KIºö;-3,fw?ŽL±Ÿ“µ8DK(a•$-Kó&%µ¿Už‡˜…áÙvƒÉ&íÏà°RÓ=ù”ø{$â'1_p‹˜òyXçÇô&Ÿ{»Ž+…%Fî2Òx'›Ëç^,¥0¶ŠÓü¦Ë|.ÅO«Ï•äî@9BÒB1ì^?A10|E-ÅåþÀ¿Gñ œ©Ì‘v·ÕnÁŒbLÀ)ü¦xŒïI8Prƒ Ÿ—¾iÓ |¿u}º–ÂwËÖo`àŠ„»‚"#õìy¯f€=¢@ж»¶Ö²U¥±üû·j‰߀ŸŽ—·Aëšoø¹P|ÒùÒ¹AË…‹H(iy+Æ9Åó¯7Hb§%«Íã.Þ0š>wêVbBMÍh‚¯°U3Òè²emJ„]è%K˜ÞsWïÅ fÌ­üŸ¢KPòåÐ}„ÆÈL‡Uæ£{Ó* í–ÍG†Ârí7„³ù=áõi‘ø7þZøä1¹TÊ—7¦œO¼âg—žëó‹ßO¹çT@Á Ï|½ þ4.l¹MW†!jÈÆ^Û"²É›¨C—: Ÿ«‚ï`ƒÑü»³ô–ü¶;ÔùSXq}^DÌKt¸÷Â,[ãú‚PÝ Ca ï´E;õu}§ó# u²¾@Žþ)œÅ‚c)¶Zz,ãgC8ò‹6®i6Q¨ÍNgÅ«ý哽IîóÚì’FíO¯x#.Ñ÷_Ó°(¬ý¦q®ýjzæL"¾àÖ%åÁªÀ´3à—ÌiH=³ÌùwÚpHßÄÞ»‘Šû›…a&læ<}Ñ¿å†ÂúU›PÓŠ€{”œ=ašøOû%©  SêóÒi5&H5Jê$9!ø®Ë rû˜‡*­gÊ4±öCŒ#>ÆøUê .>ƒÙŠ¿ô’#T“Gß.dõÝÿ:¶Ãõ̾÷^kkô–mFoÏ’†Icû¤jùýu-?/ù†·Â?ŽäY3ôçµØ$¿ô÷‡'ÇÓCÅ8F$¿ä)}‚kœ¼A"ÔŽú>påÆh •°ïP1<]¦à¿Î™2Ü£¡ü¸d8À,O3¸H‚QÍ‹eÙÜ¿ƒ*&Ñ\Gõ°‹ ’÷›”Uæ£íaô¡„øÍN ¥€Br›’Ð{Åêø`#<ŸÏÇA'E9°FCK‘1ÐÆ•÷ó⺔5d‘ûèó¸PQ¹Iz ÃdÄI—q1írÈŒhìÚÊq(çQI¿:r`6®*\JãÞàvï[Ľ{÷é Â=žˆÅ‹Å£ójCÞ!:9j–Œ”k¸‘jì€þÚ¹«*äÚ³8ÃÆ` q/qÅKáOÍšüêuÒ²Çj;=„ñjÎxïFä­¤'’QC™EK£”D6ºî¯ÔNv½]¾ó¢hÃÞ3áø˜r¢±9Í» Á, mm o_Ä¥&ö¡ƒŠóñŲ£j ´ÄµV¸â´øeŸä×ý²VÇ©Zµ€‘·ƒ“Ž}q„U_ús#ë¦g›Ð«‡f a“î,®ÚÓ±¯Ñ ó´j8Hf )»»¶Šº‚aÿ<Èü7¿…שÀ%›+ÜɘÜZ?,Ÿêë!û|opÒLhó¡Ú¨!9â9¿ÞXYödz/5 ›·ÒK|ÔëUá3bÙ²<ö¯Ö(åŠïó ž[&œ¨YtbÖøþÎY•Ä @]óÜ¥ÍtÓ-0 ¸‰ûN;v?1`e©©ôÔžNVð=Sv¡m¹Ù‘ò¼%Æè5g)Wú¼<(A­~ã÷¼ê’ÝÈ¥Ãéb[îöaÑü±Õ¥xòÕ§ ØÀ÷,*.}GšgÚ.´GùÇÞ"¯?÷LÁš#w Ó¤f®QºëÊ ÙHþ“ü7§­ÇX2Áì:@ß˸µâf7ÊDýLDÎUxÂvö L6ó²îºßC—*£š„¤0X¹úçÑÈ=…›Xã‡bºUªÖË”wK&ŸØãPyá#Zª›|ï¥cœÌhK´Wsÿ\[4û„ª<¿ ³t¬ ÅéÇUé(ªÓ9«×®(ô§ôìð*¾Ø³aÞÊê¤Êô€7Éd‰Û›×*—M§ ð.ÛAݯ5µÇ 6Òc±¹P»8 ®JXKŽDƒmÊ0õ‘˜a¦]Æ{ü*ñ&&ㄜÁ¨!ˆÊ‡%:s=êXú\¨®+å•V1›\þ•»mwœ˜<ÎÑ£®ì½É=†åróé…žiÈ[U¬ÑxAïš[ºkëØ‰º¡ã¶gžOƒ…úäN»3\•QZ÷Nï¢"‚¯ìÏìuþ•,ÅS¦e¬ÎyÝè­­S'…`*ð÷ɕ͊®¹éÁï>ˆ]|'Í؈vr­($Œ]ë`4ª®öæ•Ù“HVUHTRÓ2GMj¢ú:çŽ$°‚¬“ä~i.3 ë⤭_¢ËŠUø»Xü¾Øí¼Òƨ~ê/ia¸Ž¤ŠáaöWÿŸ§Ò$”°,VâžTn2Ÿ-¡6õ_6ƒ¡èúüÌr.”¸„aئgáP7[c/îÛqCN&[õ‹XäÞs ?©ßg­)÷éègÊÔÍM¢-ôµ%Óë#öÌ.­ÞÓ¼ãT ‡|_„NµØ8‡cku¨gÂU2Èü} aKÛ`'L–ï&ä$±Š©.åýyNŠÜ—³‘w_J‡einµ–y¹µo©ºµgºt£kžpGníg!¤i´‡0†'BAº†¿CóPU¤z?¡œø‚{ós63J‹d^]7-N †^Ø_'®£'t§×®Ç->ü„o0Â]Gv&«ÖH,æ\|i±×çýúL݇ßpÊ›·|bãhá’¨=C0;…'…B@¿ùÐh'Ò|¿ƒêscµ—ÕêD„’ɨWÅK)”‡bs…y†ôÊg±ßDå# ƒay9ÍE«Œ ÃíýºAkO[Ý" (<À—ìªk~ÀGó§ÁËöñŽªØá„éMßúÉk6Á‚Ѷ´Qn¸€µ¼)ÁU(hó}+CÊ{%¡ gÜÞö‚J^úyò¬ÿKØ“zvÎãßÉ2R¥’ጛµ)¼ôÿ¯gâNUJè$YÇÚnõ†ÉQ'Ú[wZc∌(\@®Õ´s¤Fòão0¼v–Á@Žœôò‡VzNý»%.*ÌÜ7¦X–†xFÖB§g‡F·°¡÷j2@­Crõ2¨+²Eör£vLjTh±òcÞî} ºš{[`:9ªm¬‡Þx{$²Ô‡A¾ !´ᢾ• ²±X§ìÉ·ö-ÿ¤j˜åá0çòoþ?¸±jèਠd“í Ö¹eta2°-i2Z’7R°Uc*¦Cªè\Çí=DoOÖ>…À <ÜX‡“ï×[gŽc{ZÔmfÞò¿wás²Òe™UÃ,m¬z¡v‘ñf¨– §SÞé X½wˆ.7æTž^B.UqÀ·¦M«¾¯F/Õ˜ßP•XÜ鼿ÛãIÎ |Ø$ÊOÈÙ¡)>7 º89Å:A9I3‹ KÙz‡ ò)SIûB°^øõçÇñðÔ÷o÷^çþ.ˆÝ¿$?‹ä±–;Ö´ÁXPŽèpxÊÇ7‹•j¤fÃù½²·ÛIÇ虲´'ä¼K"ó€.ù½ÉŸQâßĶ0A.?§ìlÓÿÏR®Š ÐÅ%N«ºûô3˜Ë§·Fò9ÞbË©¤²‘<Àc¥¾ä€Ã±æ”òšßVyžþpéØ"MØ+¥ƒN ˆoÇ–_ÂÕ¡”<ØÅx ÿsù¦v7ѽ{ây…ȼkOQùÇ!U/³WSÁio(Oï«WœHšJ†g'x-çË·Ð4²ÓÏ0…¼g³Å+m‘‘o¡c³_œÛ—1ýMt è§©yxq¤S³g`(ãÄZ‹G”0°1¡pÞݧ"¨ 7Çiém´Ós¾<£ýDá+1rlfI¯(•‡¿yU>„É7ZÑ£°P­ÅÕ_.—¥ª“¬^ŒÂË‚– ¸JÜè>]Úw9S0E›inhN÷ ¯k0~xp„&^Àg]°zxÐRh-_ø†½Y÷tN£íYU[ºÎàc¹'#´¶ï¸ œä;*Â(2uÛxZ€ËFnX’¦(îÇÞŽ½Ò0Ôòf'éØT÷ØÃiã² "o¼•l1j”ÅQXÆÛ©?ãjY{ã•JH÷ 9Îroø‘z‚ê…/~÷¼:ÈhGW†EI=¸¢.ƒ0[¬GQ•SÇUÿ°ŒU0Kë§Ã÷ýµÀ…ØÕ±šýÚ“£~k/,ÄI„A¨~Ñ?,4@*`7ðí ºù®3€d5»Xˆ3ÁõC WÒÎóñ| gŠ`ìz÷óš¡fÊc+TتV¹;ùU[ÿwpýþˆ8Iîp¬üý³Y(WÊൃ 2jn¶é±aí‹‹’‡ÕŽÃ&¥ÒB(réö›7DkóbÙg7¡1ý"øžýìÑ•Fgmý2ÚS`^Ý ÀœŸ`î3²vÒÍ(ÕUuãQzįkëÿ‹xÛ¯²uqáFn5šª¸–Iù ó˜'ªî8â2J'>5hš†f½óõ.û×=CD¿ù…|DLÉVˆVËì¸YˆÏ7uî\j¸¬nFŠB­ŸQ^‚5bIØÝb–¼ç|ek3²Šá­çPYM 9Þ‰W‰ßƒÈóO{6D¥¸ ¯×ù0Ï‘øƒºHÞuâ´´Ÿa,kZdÑ0¸”h,ïÎX^p`¾ÿÚÈÞ(mBç|>³Öp)„ÎÂkõ2™B ˆ/ ’‚Úe©…>QX‡LBæh óø³WE÷bÊbøµËkhcž¯™ˆS4>zŠOÎu[yåk88ɺtå\Èlçè 5¿n¿œ%ä *†WøJô5œêÏ…94=È»Á_V÷ŠËl»júQ¸kžÌi¹Ž§D{µldüO<!‹ÄotôÔÇþßÍ\:hY(Â!Þˆþ.ë¬]ÂÎhÀWƦ>÷9ûHV}9‘ècVú=šò&·˜Õv`ÞNÄ“E½Ë€€)ÉDQ\ëZÔ‰85 ØÁØþ ÊÅz8öÁ|ñ1•eªúíLÒÊÛ‹w˜±S¹# L?9!Ò–Ž›õ-¡oá~OZç £ 0Ž&ýE· ,\˜…ß%DrEÝà¸Þ”QÛ„` mø¤T«v‘m§ô.cF›oÝ‚z?žÖÐ*tèƒÖ‚ !¢çy­ ÛkÈüÊ‚~º=Ü<ñ+dÚ}©ãtV´Å"ŸÝóz¸:¯,—éâ-ç+O® .@î´”ÚV/Ñåõ¤pã‹å °ÒLH‰ŸD—&ZܤÊ÷eý’Še‰!£3šô „*éQÁã~²ÿ¤X hé¿öì¼HÍÆ `‚qQ#±®(¾…­µz’VÒÚ!‡Ã «h…Šm ¶ÊÀÎÒ|gRºéÖÉŒq à DR#ò “õœ<Ñ„|?¦ï‹¡©,9г©hXDœ‘M *ûþ|çÿ>`\„ ¶“›S‹"»íÈÚ¤Eª®üS’O`6MªV,Õ‰µ— Ó¯ÀÆïí¥3tð-R¡à~~)MñÏWr-%ì²8Æå0\Dem?‘„à ÌPÊÞ±4mïç9hîî@´[€i22ásǸABóÑñ_tx\hÀ»Uà ›Mþn-ë²d¸ù~ P\]ElS #éMÄÞ6Ç ›+OýÚw­£Ŭõ%@<¹‡Uf †ü;fó„Ñ·]VO ­¤.™wè@ \°ôlÔ¯ÙÄb;¯ŸúSUªßOX¼Ã¼¼öHÎjo@?X÷A{'ljÊZÙµO ©qûw?-u­Nó™q×·¦ÂÀž•¼õÉÇžFLöå;b»âô)ý{P­¹ó.„‡D«©de:µ·øAš6ÊyÞµßHÍÎ)‘6Kœ~lÉa —´¥s‰Ý0|ôþR˜AÇu`Y©u‚ì70¼sk»IUqbµa~ü®<«¶`PÇU²X,:³Ë °‘àá¼.²†3=)g7äÕ.Ô™éµö œÐwl'øóõiÙ6íV÷—2¢½cófvè•5A$î׫Ëj“ÄGȸŠçoën³fJ Ì_A+¾‰ Ÿ÷ˆÅœX…pëãaS jM$íä|p_wȉïlÛ]8 eÑ¡ KF…º7œyx  ö¸µGö ¹»vëdi°YSTE÷V xd– ¸àÒÉ¡–<…ùõVêÓ9Ç'¿@\lêß±t">¡‹Y42O2OT$‰ØáWÐl/˨¯Âw³¸Ì’“  &¾›¶é%z6w²ÓBÞpæ£{U8·¸œ `²1ÚzkÒBѾO°xê-Jc`øEqqÙ%iŸÆ=|cpaÖ±9Ë83ŒçÔ¢ªJÆIgûùýE— Ì¥áYÊ­RšØ8Ÿˆá~Úœ #%¶ò b‘ g19æÕ1 ›šÏ÷;3"å)Ã7Òð¤DÊ>öí8 øŽÏ7 bŽjPK@æ—h@áVBá52—Ü<ß6òGh‘DÅEÂj®®xz•âï~DË¿Á êoɱ”cè’ìì)í4!%¼HeÖñ.b;m£åý4Ê“çî*…AAœgÍוúÞhß|(ÉÓÉœ-»Û/ñ#sÎôJx[ùŶõÉ;øêzé#Ýò{i±Ýž~Ûâg÷Ƙ×ï6Ç7k¤×Ü‘˜II4°t /à3À%B6_è.\íüÁoWE’ýñÊGÿ–yˆ6 º··#­Å”Œ7m*Ýn…ê¤@¼êç×›ýåùÓ<ñÍò¡Ž[¤ ™'«ü×,:ü[é8äiøÊÿ×Î|÷C0¶³gWVVÈÞ[qYqÎYgé”-;{ogD6G"YçÊÌ gfïqVï‡xÿ{ïóžWTgF½fƒyóâTüEå&©õg½¦î±¦±;¶ ßÿÔºá°Úc9YÙÂ]ÑPÜ×âZ+¡û7"Øee¾WONUU˜`LZï6›[Ú}>¨`¶ÐÓeúòNïôätºPŽŠOaŠdýAÃwÈ6L¸·$†•o„¸YÍ7 Öuû#áøïî­­ÈàkÇß&ÙÍMÐÑ¿ÒÜFoFÖ0«Q©±w\àcQU:Ô£Åñ.Õ]Éb¡þîßPí£b+c‡îiyÏ2xžÆt¿ xöîO~˜S¼h«ØÇi|CVb€æÈagm¥IÈN²2·¶g±By*]iTR~uÝgYßSIƒ†rÿ˜ªTþ¼>{uõì•Q”~È"S©»lÅ'i MÝtRcãó7mQóÛígÒ£2û^b‰påïËõE/:{ì^ÂÂoeÕþÖÊœw‡׺AÔµbn¡žÝØþ†ÂOwOê•)ʯÛóÏ÷)5w:åõL’fþ¤ÒãâÀÍŠý–ë¶vÒ};l'5ÈlÆöÕ>yo›îÏD3#Çü$þî†E‘Pá¶G“¹åördŸ•ûg>`µšŽ-ÆNŸ|昲 µ â!ß\+a\Fk*£¬WÒºÃ6ª0ÜÒÚNɼ¿0ÝŸ â+E.–7\‡“¤(vŠ`«N¶'“6¡I3Kaëˆg|ýRãžVÍ7 úDÜ )‚ tØŠ¿Ç^[$´!>T‰Š½Þ«ºKö ð{³S\ýš‡‚m‰Tླྀ÷dÒoiôl¬®Z²•‚Aÿû—wÔ×_r6Õ?Èñ®xÛN.ˆ8:R±N׿¢ÙO+³2«íz<á9º´N?"};ŒñR tî\ç›™œuvÖP¤aw¶îêÁ©;!½=“7õr_jsä²ÿòNÚÝÒðÃAÝ¥êi:!iv¾¿-ò8Z»šÝxüXªxg‘åï…¥ý– \®cviñ;úàg½éXí͈ÂÒqMYÌ}ZA~‹)XQ q~É0Ϊ}ØIXÉÐîê´¥±ëPQí%g #Êúˆƒôá96ü÷œZAõô ?ù2\ÿך¢äx¡µ¨Ë(R%3h×è—ši,‹sy&š6 ð|DEL‘4ÇFÙ„ódâ¢Çüס¼2Ó‚0ßÜ~þºððûÆov¤4«0.ß² ÎAŽzí`þÖ V=]|¹Fë‡K‹9×j;œ5tïúñSìkZOÅ“|Jë¦ÞË‚M¯DëêÚ+ƒÑ§òtc¿÷ qvíû.±Ñ9lÁh›Çk8y”Wر?7Q!ÿmVˆ,}Óгi®vÈm ¼¯i’ëÏ}fñŽ(ªK5ÊlEªR@e¬£IÓvtX¬/ÊÉ*¸E;÷­Æb‚O,¥ öŸV/Ù —V2ÉGAZ‡ÅëJhûH¡æ¶¡Šgž)u½< _æ³ød‰óA¸·r<Ø“êgÍhg,ÉUK"§ç}‘4´¸º%kÃ!äĬÕZÉÅ<ç®ï–¼xˆÜ|ÕíAƒ`ö°²'ŽG˜6'!îà‚rjÀ4!Y¾vw˜ÊZ˜[ë,fµ]ó¶»ZáT ÿ}ؤÊøå.õ`aùÆæ'tå6ÃË$ý‡X£V9\Î~$³~¬â»†£b%ÎhñÒKC:ÇJs96«¦v0^R~©ÚO¡TôéÝ‘ Y¼H!Ô}øÝí:¡¯©¥Vô⥇£ Í¡uù®œ^A8øìn&'½?¡×ÎPY ïéã{E?(Ã#˜ 8Âàa{Î|sL–O$PØŠÙx”øÓüà~$äÜ/á0bYºK0šúXðòsUÞPšl×-6w=ÄM[×Nž–\æ: x§ÅCmĨ Õ›„ªø y%¦˜WìUpÝ;€ö.ž'¯v«Æ ;/Ó¦p+‘ ÍÝ¢O3=;Ê\Ñ?9dy ¿€½9ê™·b:¸8„¹¤dózlíRŠorUÿ Ì“sü©.µ´¼ßEEBQVvÔRñb𲯖%hI¢Jó²¤wÌEU}b½ß–N›uÖõþt’M·ñ£˜¥kCÅùÑ_JgYu/£A âþ,Å4'¶ö %M‘1|Ü02#°4¨7óÇ4#V^úZ°K­Vóî÷¢„¹W;cÅÍ J* ?:8ÐÛbŒ%lX­Í†Ÿ‰XO½Ó,Î7:è§/ß®b%é¸Ý™…÷º%“¯ßŒŒJ.m‘Bµô)JÄEJ ¼åûA`'w€¹!°P}àðV†ùð²ý±'It –}žH.ï˜H¥óÕrZ"½¸æ˜\_†G†qË™¼^wŘȃ" «ÃDH¦§ùœã'û˜(ÓÓ€C‰ÈÄàP’l*õÈ챦Ä!\B2">BEqoêyYúÜ¥i~@¬ÎIç^C”‚ŸfHàÎ">#§á΄òf ^ )·)2Ag£”y7"vÿžáRïÍæ]1bøòˆ>,{O­*ø¼_¸<1‰Ã},«×GM#láÆQïÕàü¼|ÜŽÍZ¡5í¸» ;ìǹV‰”ºÀŠ _?pïÉY³­¹Ÿ+·ŒºR(¥o>(x‘ÔÁbòqõÁ‘#..×âxÁšõï¿Z]»M0ú /uEJkuíðyrzgÁm—*Õ…6¨¥gª¶ûþˆkϹgÞÚ`orÇ<.(¹Á‘ADÌB=ÓW/’U“‹ßðÌŽ+V†òõÁV܈A̶<ØEïÖɯ]Ýn0ÄȪ26Ÿ±É~÷ °;<6W¼ª–[A,ÓãÔÕÒ:g œVºÌ3­ñÙã7¿á‰ÂºÀ†¶Aÿ%êÿÿƒû+{_/{8õñOXâendstream endobj 6 0 obj << /Type /Font /Subtype /Type1 /Encoding 1621 0 R /FirstChar 2 /LastChar 151 /Widths 1646 0 R /BaseFont /IZIKLM+NimbusRomNo9L-Regu /FontDescriptor 4 0 R >> endobj 4 0 obj << /Ascent 678 /CapHeight 651 /Descent -216 /FontName /IZIKLM+NimbusRomNo9L-Regu /ItalicAngle 0 /StemV 85 /XHeight 450 /FontBBox [-168 -281 1000 924] /Flags 4 /CharSet (/fi/fl/exclam/quotedbl/ampersand/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/bullet/endash/emdash) /FontFile 5 0 R >> endobj 1646 0 obj [556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 408 0 0 0 778 333 333 333 0 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 0 564 0 444 0 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 333 0 333 0 500 0 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 480 0 480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 500 1000 ] endobj 7 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [2 0 R 9 0 R 12 0 R 18 0 R 24 0 R 27 0 R] >> endobj 32 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [30 0 R 34 0 R 37 0 R 40 0 R 43 0 R 46 0 R] >> endobj 51 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [49 0 R 53 0 R 56 0 R 59 0 R 62 0 R 65 0 R] >> endobj 73 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [71 0 R 75 0 R 78 0 R 81 0 R 84 0 R 87 0 R] >> endobj 92 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [90 0 R 94 0 R 97 0 R 100 0 R 103 0 R 106 0 R] >> endobj 111 0 obj << /Type /Pages /Count 6 /Parent 1647 0 R /Kids [109 0 R 113 0 R 116 0 R 119 0 R 122 0 R 128 0 R] >> endobj 136 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [134 0 R 138 0 R 141 0 R 144 0 R 147 0 R 153 0 R] >> endobj 158 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [156 0 R 160 0 R 163 0 R 166 0 R 169 0 R 172 0 R] >> endobj 177 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [175 0 R 179 0 R 182 0 R 185 0 R 188 0 R 191 0 R] >> endobj 196 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [194 0 R 198 0 R 201 0 R 204 0 R 207 0 R 210 0 R] >> endobj 218 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [216 0 R 220 0 R 223 0 R 226 0 R 229 0 R 232 0 R] >> endobj 237 0 obj << /Type /Pages /Count 6 /Parent 1648 0 R /Kids [235 0 R 239 0 R 242 0 R 245 0 R 248 0 R 251 0 R] >> endobj 256 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [254 0 R 258 0 R 261 0 R 264 0 R 267 0 R 270 0 R] >> endobj 275 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [273 0 R 277 0 R 280 0 R 283 0 R 286 0 R 289 0 R] >> endobj 294 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [292 0 R 296 0 R 299 0 R 302 0 R 305 0 R 308 0 R] >> endobj 313 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [311 0 R 315 0 R 318 0 R 321 0 R 324 0 R 327 0 R] >> endobj 332 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [330 0 R 334 0 R 337 0 R 340 0 R 343 0 R 346 0 R] >> endobj 351 0 obj << /Type /Pages /Count 6 /Parent 1649 0 R /Kids [349 0 R 353 0 R 356 0 R 359 0 R 362 0 R 365 0 R] >> endobj 370 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [368 0 R 372 0 R 375 0 R 378 0 R 381 0 R 384 0 R] >> endobj 389 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [387 0 R 391 0 R 394 0 R 397 0 R 400 0 R 403 0 R] >> endobj 408 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [406 0 R 410 0 R 413 0 R 416 0 R 419 0 R 422 0 R] >> endobj 427 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [425 0 R 429 0 R 432 0 R 435 0 R 438 0 R 441 0 R] >> endobj 446 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [444 0 R 448 0 R 451 0 R 454 0 R 457 0 R 460 0 R] >> endobj 465 0 obj << /Type /Pages /Count 6 /Parent 1650 0 R /Kids [463 0 R 467 0 R 470 0 R 473 0 R 476 0 R 479 0 R] >> endobj 484 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [482 0 R 486 0 R 489 0 R 492 0 R 495 0 R 498 0 R] >> endobj 503 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [501 0 R 505 0 R 508 0 R 511 0 R 514 0 R 517 0 R] >> endobj 522 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [520 0 R 524 0 R 527 0 R 530 0 R 533 0 R 536 0 R] >> endobj 541 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [539 0 R 543 0 R 546 0 R 549 0 R 552 0 R 555 0 R] >> endobj 560 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [558 0 R 562 0 R 565 0 R 568 0 R 571 0 R 574 0 R] >> endobj 579 0 obj << /Type /Pages /Count 6 /Parent 1651 0 R /Kids [577 0 R 581 0 R 584 0 R 587 0 R 590 0 R 593 0 R] >> endobj 598 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [596 0 R 600 0 R 603 0 R 606 0 R 609 0 R 612 0 R] >> endobj 617 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [615 0 R 620 0 R 627 0 R 645 0 R 649 0 R 656 0 R] >> endobj 664 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [662 0 R 667 0 R 674 0 R 678 0 R 685 0 R 688 0 R] >> endobj 693 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [691 0 R 696 0 R 703 0 R 706 0 R 709 0 R 712 0 R] >> endobj 718 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [716 0 R 724 0 R 727 0 R 730 0 R 733 0 R 736 0 R] >> endobj 741 0 obj << /Type /Pages /Count 6 /Parent 1652 0 R /Kids [739 0 R 743 0 R 746 0 R 749 0 R 752 0 R 755 0 R] >> endobj 760 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [758 0 R 762 0 R 765 0 R 768 0 R 771 0 R 774 0 R] >> endobj 779 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [777 0 R 781 0 R 784 0 R 790 0 R 793 0 R 796 0 R] >> endobj 801 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [799 0 R 803 0 R 806 0 R 809 0 R 812 0 R 815 0 R] >> endobj 820 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [818 0 R 822 0 R 825 0 R 828 0 R 831 0 R 834 0 R] >> endobj 839 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [837 0 R 841 0 R 844 0 R 847 0 R 850 0 R 853 0 R] >> endobj 858 0 obj << /Type /Pages /Count 6 /Parent 1653 0 R /Kids [856 0 R 860 0 R 863 0 R 866 0 R 869 0 R 872 0 R] >> endobj 877 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [875 0 R 879 0 R 882 0 R 885 0 R 888 0 R 891 0 R] >> endobj 896 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [894 0 R 898 0 R 901 0 R 904 0 R 907 0 R 910 0 R] >> endobj 915 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [913 0 R 917 0 R 920 0 R 926 0 R 932 0 R 935 0 R] >> endobj 940 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [938 0 R 942 0 R 945 0 R 948 0 R 951 0 R 954 0 R] >> endobj 959 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [957 0 R 961 0 R 964 0 R 967 0 R 970 0 R 973 0 R] >> endobj 978 0 obj << /Type /Pages /Count 6 /Parent 1654 0 R /Kids [976 0 R 980 0 R 983 0 R 986 0 R 989 0 R 992 0 R] >> endobj 997 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [995 0 R 999 0 R 1002 0 R 1005 0 R 1008 0 R 1011 0 R] >> endobj 1016 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [1014 0 R 1018 0 R 1021 0 R 1024 0 R 1027 0 R 1030 0 R] >> endobj 1035 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [1033 0 R 1037 0 R 1040 0 R 1043 0 R 1046 0 R 1049 0 R] >> endobj 1054 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [1052 0 R 1056 0 R 1059 0 R 1062 0 R 1065 0 R 1068 0 R] >> endobj 1073 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [1071 0 R 1075 0 R 1078 0 R 1081 0 R 1084 0 R 1087 0 R] >> endobj 1092 0 obj << /Type /Pages /Count 6 /Parent 1655 0 R /Kids [1090 0 R 1094 0 R 1097 0 R 1100 0 R 1103 0 R 1106 0 R] >> endobj 1111 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1109 0 R 1113 0 R 1116 0 R 1119 0 R 1122 0 R 1125 0 R] >> endobj 1130 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1128 0 R 1132 0 R 1135 0 R 1138 0 R 1141 0 R 1144 0 R] >> endobj 1149 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1147 0 R 1151 0 R 1154 0 R 1157 0 R 1160 0 R 1163 0 R] >> endobj 1168 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1166 0 R 1170 0 R 1173 0 R 1176 0 R 1179 0 R 1182 0 R] >> endobj 1187 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1185 0 R 1189 0 R 1192 0 R 1195 0 R 1198 0 R 1201 0 R] >> endobj 1206 0 obj << /Type /Pages /Count 6 /Parent 1656 0 R /Kids [1204 0 R 1208 0 R 1211 0 R 1214 0 R 1217 0 R 1220 0 R] >> endobj 1225 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1223 0 R 1227 0 R 1230 0 R 1233 0 R 1236 0 R 1239 0 R] >> endobj 1244 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1242 0 R 1246 0 R 1249 0 R 1252 0 R 1255 0 R 1258 0 R] >> endobj 1263 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1261 0 R 1265 0 R 1268 0 R 1271 0 R 1274 0 R 1277 0 R] >> endobj 1285 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1283 0 R 1287 0 R 1290 0 R 1293 0 R 1296 0 R 1299 0 R] >> endobj 1304 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1302 0 R 1306 0 R 1309 0 R 1312 0 R 1315 0 R 1318 0 R] >> endobj 1323 0 obj << /Type /Pages /Count 6 /Parent 1657 0 R /Kids [1321 0 R 1325 0 R 1328 0 R 1331 0 R 1334 0 R 1337 0 R] >> endobj 1342 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1340 0 R 1344 0 R 1347 0 R 1350 0 R 1353 0 R 1356 0 R] >> endobj 1361 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1359 0 R 1363 0 R 1366 0 R 1369 0 R 1372 0 R 1375 0 R] >> endobj 1380 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1378 0 R 1382 0 R 1385 0 R 1388 0 R 1391 0 R 1394 0 R] >> endobj 1399 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1397 0 R 1401 0 R 1404 0 R 1407 0 R 1410 0 R 1413 0 R] >> endobj 1418 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1416 0 R 1420 0 R 1423 0 R 1426 0 R 1429 0 R 1432 0 R] >> endobj 1437 0 obj << /Type /Pages /Count 6 /Parent 1658 0 R /Kids [1435 0 R 1439 0 R 1442 0 R 1445 0 R 1448 0 R 1451 0 R] >> endobj 1456 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1454 0 R 1458 0 R 1461 0 R 1464 0 R 1467 0 R 1470 0 R] >> endobj 1475 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1473 0 R 1477 0 R 1480 0 R 1483 0 R 1486 0 R 1489 0 R] >> endobj 1494 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1492 0 R 1496 0 R 1499 0 R 1502 0 R 1505 0 R 1508 0 R] >> endobj 1513 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1511 0 R 1515 0 R 1518 0 R 1521 0 R 1524 0 R 1527 0 R] >> endobj 1532 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1530 0 R 1534 0 R 1537 0 R 1540 0 R 1543 0 R 1546 0 R] >> endobj 1551 0 obj << /Type /Pages /Count 6 /Parent 1659 0 R /Kids [1549 0 R 1553 0 R 1556 0 R 1559 0 R 1562 0 R 1565 0 R] >> endobj 1570 0 obj << /Type /Pages /Count 6 /Parent 1660 0 R /Kids [1568 0 R 1572 0 R 1575 0 R 1578 0 R 1581 0 R 1584 0 R] >> endobj 1589 0 obj << /Type /Pages /Count 6 /Parent 1660 0 R /Kids [1587 0 R 1591 0 R 1594 0 R 1597 0 R 1600 0 R 1603 0 R] >> endobj 1608 0 obj << /Type /Pages /Count 3 /Parent 1660 0 R /Kids [1606 0 R 1610 0 R 1613 0 R] >> endobj 1647 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [7 0 R 32 0 R 51 0 R 73 0 R 92 0 R 111 0 R] >> endobj 1648 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [136 0 R 158 0 R 177 0 R 196 0 R 218 0 R 237 0 R] >> endobj 1649 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [256 0 R 275 0 R 294 0 R 313 0 R 332 0 R 351 0 R] >> endobj 1650 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [370 0 R 389 0 R 408 0 R 427 0 R 446 0 R 465 0 R] >> endobj 1651 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [484 0 R 503 0 R 522 0 R 541 0 R 560 0 R 579 0 R] >> endobj 1652 0 obj << /Type /Pages /Count 36 /Parent 1661 0 R /Kids [598 0 R 617 0 R 664 0 R 693 0 R 718 0 R 741 0 R] >> endobj 1653 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [760 0 R 779 0 R 801 0 R 820 0 R 839 0 R 858 0 R] >> endobj 1654 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [877 0 R 896 0 R 915 0 R 940 0 R 959 0 R 978 0 R] >> endobj 1655 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [997 0 R 1016 0 R 1035 0 R 1054 0 R 1073 0 R 1092 0 R] >> endobj 1656 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [1111 0 R 1130 0 R 1149 0 R 1168 0 R 1187 0 R 1206 0 R] >> endobj 1657 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [1225 0 R 1244 0 R 1263 0 R 1285 0 R 1304 0 R 1323 0 R] >> endobj 1658 0 obj << /Type /Pages /Count 36 /Parent 1662 0 R /Kids [1342 0 R 1361 0 R 1380 0 R 1399 0 R 1418 0 R 1437 0 R] >> endobj 1659 0 obj << /Type /Pages /Count 36 /Parent 1663 0 R /Kids [1456 0 R 1475 0 R 1494 0 R 1513 0 R 1532 0 R 1551 0 R] >> endobj 1660 0 obj << /Type /Pages /Count 15 /Parent 1663 0 R /Kids [1570 0 R 1589 0 R 1608 0 R] >> endobj 1661 0 obj << /Type /Pages /Count 216 /Parent 1664 0 R /Kids [1647 0 R 1648 0 R 1649 0 R 1650 0 R 1651 0 R 1652 0 R] >> endobj 1662 0 obj << /Type /Pages /Count 216 /Parent 1664 0 R /Kids [1653 0 R 1654 0 R 1655 0 R 1656 0 R 1657 0 R 1658 0 R] >> endobj 1663 0 obj << /Type /Pages /Count 51 /Parent 1664 0 R /Kids [1659 0 R 1660 0 R] >> endobj 1664 0 obj << /Type /Pages /Count 483 /Kids [1661 0 R 1662 0 R 1663 0 R] >> endobj 1665 0 obj << /Type /Catalog /Pages 1664 0 R >> endobj 1666 0 obj << /Producer (pdfeTeX-1.21a) /Creator (TeX) /CreationDate (D:20120605155115-05'00') /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4) >> endobj xref 0 1667 0000000000 65535 f 0000000399 00000 n 0000000285 00000 n 0000000009 00000 n 0000763553 00000 n 0000743476 00000 n 0000763382 00000 n 0000764612 00000 n 0000000669 00000 n 0000000554 00000 n 0000000467 00000 n 0000001567 00000 n 0000001450 00000 n 0000000708 00000 n 0000742448 00000 n 0000723257 00000 n 0000742275 00000 n 0000003044 00000 n 0000002927 00000 n 0000001648 00000 n 0000722706 00000 n 0000719716 00000 n 0000722544 00000 n 0000004531 00000 n 0000004414 00000 n 0000003137 00000 n 0000005910 00000 n 0000005793 00000 n 0000004624 00000 n 0000007155 00000 n 0000007037 00000 n 0000005991 00000 n 0000764720 00000 n 0000008516 00000 n 0000008398 00000 n 0000007236 00000 n 0000009215 00000 n 0000009097 00000 n 0000008597 00000 n 0000009501 00000 n 0000009383 00000 n 0000009296 00000 n 0000010127 00000 n 0000010009 00000 n 0000009541 00000 n 0000010659 00000 n 0000010541 00000 n 0000010208 00000 n 0000011293 00000 n 0000011175 00000 n 0000010729 00000 n 0000764831 00000 n 0000011814 00000 n 0000011696 00000 n 0000011374 00000 n 0000013065 00000 n 0000012947 00000 n 0000011884 00000 n 0000014583 00000 n 0000014465 00000 n 0000013158 00000 n 0000016578 00000 n 0000016460 00000 n 0000014676 00000 n 0000019276 00000 n 0000019158 00000 n 0000016671 00000 n 0000719076 00000 n 0000717211 00000 n 0000718915 00000 n 0000020065 00000 n 0000019947 00000 n 0000019381 00000 n 0000764942 00000 n 0000020588 00000 n 0000020470 00000 n 0000020146 00000 n 0000021754 00000 n 0000021636 00000 n 0000020658 00000 n 0000023216 00000 n 0000023098 00000 n 0000021835 00000 n 0000023746 00000 n 0000023628 00000 n 0000023297 00000 n 0000024271 00000 n 0000024153 00000 n 0000023827 00000 n 0000024976 00000 n 0000024858 00000 n 0000024341 00000 n 0000765053 00000 n 0000025716 00000 n 0000025598 00000 n 0000025057 00000 n 0000026487 00000 n 0000026369 00000 n 0000025797 00000 n 0000027523 00000 n 0000027403 00000 n 0000026568 00000 n 0000028220 00000 n 0000028099 00000 n 0000027604 00000 n 0000029113 00000 n 0000028992 00000 n 0000028302 00000 n 0000029932 00000 n 0000029810 00000 n 0000029195 00000 n 0000765167 00000 n 0000030465 00000 n 0000030343 00000 n 0000030014 00000 n 0000031017 00000 n 0000030895 00000 n 0000030536 00000 n 0000031638 00000 n 0000031516 00000 n 0000031099 00000 n 0000032992 00000 n 0000032870 00000 n 0000031720 00000 n 0000716317 00000 n 0000698597 00000 n 0000716138 00000 n 0000034553 00000 n 0000034431 00000 n 0000033087 00000 n 0000698034 00000 n 0000696403 00000 n 0000697872 00000 n 0000036424 00000 n 0000036302 00000 n 0000034661 00000 n 0000765285 00000 n 0000038157 00000 n 0000038035 00000 n 0000036543 00000 n 0000039428 00000 n 0000039306 00000 n 0000038289 00000 n 0000040723 00000 n 0000040601 00000 n 0000039535 00000 n 0000042248 00000 n 0000042126 00000 n 0000040830 00000 n 0000695359 00000 n 0000675061 00000 n 0000695186 00000 n 0000043708 00000 n 0000043586 00000 n 0000042368 00000 n 0000045601 00000 n 0000045479 00000 n 0000043828 00000 n 0000765403 00000 n 0000047310 00000 n 0000047188 00000 n 0000045733 00000 n 0000049170 00000 n 0000049048 00000 n 0000047442 00000 n 0000050396 00000 n 0000050274 00000 n 0000049277 00000 n 0000051548 00000 n 0000051426 00000 n 0000050516 00000 n 0000052926 00000 n 0000052804 00000 n 0000051655 00000 n 0000054616 00000 n 0000054494 00000 n 0000053045 00000 n 0000765521 00000 n 0000055615 00000 n 0000055493 00000 n 0000054748 00000 n 0000056728 00000 n 0000056606 00000 n 0000055723 00000 n 0000057784 00000 n 0000057662 00000 n 0000056823 00000 n 0000058348 00000 n 0000058226 00000 n 0000057879 00000 n 0000059055 00000 n 0000058933 00000 n 0000058419 00000 n 0000060250 00000 n 0000060128 00000 n 0000059137 00000 n 0000765639 00000 n 0000061157 00000 n 0000061035 00000 n 0000060370 00000 n 0000062664 00000 n 0000062542 00000 n 0000061252 00000 n 0000064121 00000 n 0000063999 00000 n 0000062784 00000 n 0000065584 00000 n 0000065462 00000 n 0000064241 00000 n 0000066620 00000 n 0000066498 00000 n 0000065704 00000 n 0000674708 00000 n 0000672706 00000 n 0000674545 00000 n 0000067874 00000 n 0000067752 00000 n 0000066740 00000 n 0000765757 00000 n 0000068907 00000 n 0000068785 00000 n 0000068007 00000 n 0000070130 00000 n 0000070008 00000 n 0000069027 00000 n 0000071718 00000 n 0000071596 00000 n 0000070263 00000 n 0000073072 00000 n 0000072950 00000 n 0000071850 00000 n 0000074560 00000 n 0000074438 00000 n 0000073191 00000 n 0000076581 00000 n 0000076459 00000 n 0000074692 00000 n 0000765875 00000 n 0000078090 00000 n 0000077968 00000 n 0000076713 00000 n 0000079808 00000 n 0000079686 00000 n 0000078222 00000 n 0000080889 00000 n 0000080767 00000 n 0000079940 00000 n 0000082197 00000 n 0000082075 00000 n 0000081009 00000 n 0000083345 00000 n 0000083223 00000 n 0000082329 00000 n 0000085180 00000 n 0000085058 00000 n 0000083440 00000 n 0000765993 00000 n 0000086468 00000 n 0000086346 00000 n 0000085312 00000 n 0000087456 00000 n 0000087334 00000 n 0000086588 00000 n 0000088610 00000 n 0000088488 00000 n 0000087538 00000 n 0000089571 00000 n 0000089449 00000 n 0000088730 00000 n 0000090607 00000 n 0000090485 00000 n 0000089679 00000 n 0000091687 00000 n 0000091565 00000 n 0000090715 00000 n 0000766111 00000 n 0000092538 00000 n 0000092416 00000 n 0000091794 00000 n 0000093765 00000 n 0000093643 00000 n 0000092620 00000 n 0000095448 00000 n 0000095326 00000 n 0000093897 00000 n 0000096689 00000 n 0000096567 00000 n 0000095568 00000 n 0000098008 00000 n 0000097886 00000 n 0000096809 00000 n 0000100171 00000 n 0000100049 00000 n 0000098128 00000 n 0000766229 00000 n 0000101769 00000 n 0000101647 00000 n 0000100303 00000 n 0000103154 00000 n 0000103032 00000 n 0000101888 00000 n 0000104590 00000 n 0000104468 00000 n 0000103261 00000 n 0000105863 00000 n 0000105741 00000 n 0000104722 00000 n 0000108257 00000 n 0000108135 00000 n 0000105970 00000 n 0000110402 00000 n 0000110280 00000 n 0000108389 00000 n 0000766347 00000 n 0000112478 00000 n 0000112356 00000 n 0000110534 00000 n 0000114607 00000 n 0000114485 00000 n 0000112598 00000 n 0000116251 00000 n 0000116129 00000 n 0000114739 00000 n 0000117987 00000 n 0000117865 00000 n 0000116358 00000 n 0000119303 00000 n 0000119181 00000 n 0000118094 00000 n 0000120781 00000 n 0000120659 00000 n 0000119411 00000 n 0000766465 00000 n 0000122728 00000 n 0000122606 00000 n 0000120876 00000 n 0000124595 00000 n 0000124473 00000 n 0000122860 00000 n 0000126368 00000 n 0000126246 00000 n 0000124727 00000 n 0000127894 00000 n 0000127772 00000 n 0000126500 00000 n 0000129364 00000 n 0000129242 00000 n 0000128002 00000 n 0000131389 00000 n 0000131267 00000 n 0000129496 00000 n 0000766583 00000 n 0000132664 00000 n 0000132542 00000 n 0000131509 00000 n 0000134180 00000 n 0000134058 00000 n 0000132759 00000 n 0000135834 00000 n 0000135712 00000 n 0000134275 00000 n 0000136846 00000 n 0000136724 00000 n 0000135954 00000 n 0000138360 00000 n 0000138238 00000 n 0000136941 00000 n 0000139705 00000 n 0000139583 00000 n 0000138492 00000 n 0000766701 00000 n 0000140998 00000 n 0000140876 00000 n 0000139837 00000 n 0000142420 00000 n 0000142298 00000 n 0000141130 00000 n 0000143776 00000 n 0000143654 00000 n 0000142552 00000 n 0000145186 00000 n 0000145064 00000 n 0000143908 00000 n 0000146749 00000 n 0000146627 00000 n 0000145318 00000 n 0000148154 00000 n 0000148032 00000 n 0000146881 00000 n 0000766819 00000 n 0000149452 00000 n 0000149330 00000 n 0000148286 00000 n 0000150886 00000 n 0000150764 00000 n 0000149584 00000 n 0000152374 00000 n 0000152252 00000 n 0000151018 00000 n 0000153726 00000 n 0000153604 00000 n 0000152506 00000 n 0000154406 00000 n 0000154284 00000 n 0000153858 00000 n 0000155861 00000 n 0000155739 00000 n 0000154488 00000 n 0000766937 00000 n 0000157368 00000 n 0000157246 00000 n 0000155981 00000 n 0000158764 00000 n 0000158642 00000 n 0000157488 00000 n 0000160109 00000 n 0000159987 00000 n 0000158896 00000 n 0000161843 00000 n 0000161721 00000 n 0000160216 00000 n 0000163796 00000 n 0000163674 00000 n 0000161962 00000 n 0000165549 00000 n 0000165427 00000 n 0000163928 00000 n 0000767055 00000 n 0000167217 00000 n 0000167095 00000 n 0000165681 00000 n 0000168679 00000 n 0000168557 00000 n 0000167337 00000 n 0000170399 00000 n 0000170277 00000 n 0000168799 00000 n 0000171909 00000 n 0000171787 00000 n 0000170531 00000 n 0000173800 00000 n 0000173678 00000 n 0000172017 00000 n 0000175024 00000 n 0000174902 00000 n 0000173932 00000 n 0000767173 00000 n 0000176639 00000 n 0000176517 00000 n 0000175144 00000 n 0000177327 00000 n 0000177205 00000 n 0000176759 00000 n 0000178919 00000 n 0000178797 00000 n 0000177409 00000 n 0000179708 00000 n 0000179586 00000 n 0000179039 00000 n 0000181271 00000 n 0000181149 00000 n 0000179790 00000 n 0000182542 00000 n 0000182420 00000 n 0000181416 00000 n 0000767291 00000 n 0000183713 00000 n 0000183591 00000 n 0000182638 00000 n 0000185203 00000 n 0000185081 00000 n 0000183820 00000 n 0000187083 00000 n 0000186961 00000 n 0000185322 00000 n 0000188931 00000 n 0000188809 00000 n 0000187215 00000 n 0000190636 00000 n 0000190514 00000 n 0000189063 00000 n 0000192243 00000 n 0000192121 00000 n 0000190756 00000 n 0000767409 00000 n 0000193892 00000 n 0000193770 00000 n 0000192363 00000 n 0000195144 00000 n 0000195022 00000 n 0000194012 00000 n 0000196566 00000 n 0000196444 00000 n 0000195252 00000 n 0000198588 00000 n 0000198466 00000 n 0000196686 00000 n 0000200495 00000 n 0000200373 00000 n 0000198720 00000 n 0000201839 00000 n 0000201717 00000 n 0000200615 00000 n 0000767527 00000 n 0000202882 00000 n 0000202760 00000 n 0000201947 00000 n 0000204411 00000 n 0000204289 00000 n 0000203002 00000 n 0000205803 00000 n 0000205681 00000 n 0000204543 00000 n 0000207051 00000 n 0000206929 00000 n 0000205923 00000 n 0000208594 00000 n 0000208472 00000 n 0000207171 00000 n 0000210121 00000 n 0000209999 00000 n 0000208726 00000 n 0000767645 00000 n 0000211234 00000 n 0000211112 00000 n 0000210241 00000 n 0000212648 00000 n 0000212526 00000 n 0000211329 00000 n 0000214605 00000 n 0000214483 00000 n 0000212780 00000 n 0000216287 00000 n 0000216165 00000 n 0000214724 00000 n 0000217602 00000 n 0000217480 00000 n 0000216419 00000 n 0000219110 00000 n 0000218988 00000 n 0000217709 00000 n 0000767763 00000 n 0000220520 00000 n 0000220398 00000 n 0000219230 00000 n 0000221686 00000 n 0000221564 00000 n 0000220652 00000 n 0000223460 00000 n 0000223338 00000 n 0000221770 00000 n 0000224706 00000 n 0000224584 00000 n 0000223580 00000 n 0000225883 00000 n 0000225761 00000 n 0000224813 00000 n 0000227202 00000 n 0000227080 00000 n 0000226003 00000 n 0000767881 00000 n 0000228411 00000 n 0000228289 00000 n 0000227322 00000 n 0000229638 00000 n 0000229516 00000 n 0000228531 00000 n 0000230912 00000 n 0000230790 00000 n 0000229758 00000 n 0000231929 00000 n 0000231807 00000 n 0000231032 00000 n 0000233150 00000 n 0000233028 00000 n 0000232013 00000 n 0000234735 00000 n 0000234613 00000 n 0000233245 00000 n 0000767999 00000 n 0000236103 00000 n 0000235981 00000 n 0000234843 00000 n 0000237619 00000 n 0000237497 00000 n 0000236211 00000 n 0000239384 00000 n 0000239262 00000 n 0000237727 00000 n 0000240667 00000 n 0000240545 00000 n 0000239492 00000 n 0000242230 00000 n 0000242108 00000 n 0000240775 00000 n 0000243783 00000 n 0000243661 00000 n 0000242338 00000 n 0000768117 00000 n 0000245353 00000 n 0000245231 00000 n 0000243891 00000 n 0000246780 00000 n 0000246658 00000 n 0000245461 00000 n 0000247407 00000 n 0000247285 00000 n 0000246888 00000 n 0000248459 00000 n 0000248337 00000 n 0000247489 00000 n 0000249268 00000 n 0000249146 00000 n 0000248566 00000 n 0000250047 00000 n 0000249925 00000 n 0000249350 00000 n 0000768235 00000 n 0000251448 00000 n 0000252439 00000 n 0000251326 00000 n 0000250129 00000 n 0000252117 00000 n 0000252297 00000 n 0000252344 00000 n 0000252418 00000 n 0000254469 00000 n 0000254347 00000 n 0000252599 00000 n 0000672270 00000 n 0000668750 00000 n 0000672109 00000 n 0000668283 00000 n 0000664694 00000 n 0000668120 00000 n 0000663964 00000 n 0000657462 00000 n 0000663801 00000 n 0000657052 00000 n 0000654902 00000 n 0000656890 00000 n 0000654503 00000 n 0000651672 00000 n 0000654342 00000 n 0000256439 00000 n 0000256317 00000 n 0000254662 00000 n 0000258067 00000 n 0000259288 00000 n 0000257945 00000 n 0000256632 00000 n 0000258966 00000 n 0000259146 00000 n 0000259193 00000 n 0000259267 00000 n 0000262129 00000 n 0000262007 00000 n 0000259448 00000 n 0000650986 00000 n 0000645711 00000 n 0000650822 00000 n 0000263956 00000 n 0000263834 00000 n 0000262335 00000 n 0000768353 00000 n 0000265536 00000 n 0000266583 00000 n 0000265414 00000 n 0000264149 00000 n 0000266261 00000 n 0000266441 00000 n 0000266488 00000 n 0000266562 00000 n 0000267693 00000 n 0000267571 00000 n 0000266731 00000 n 0000269203 00000 n 0000270236 00000 n 0000269081 00000 n 0000267801 00000 n 0000269914 00000 n 0000270094 00000 n 0000270141 00000 n 0000270215 00000 n 0000272812 00000 n 0000272690 00000 n 0000270396 00000 n 0000274636 00000 n 0000274514 00000 n 0000272932 00000 n 0000276588 00000 n 0000276466 00000 n 0000274829 00000 n 0000768471 00000 n 0000278008 00000 n 0000279039 00000 n 0000277886 00000 n 0000276781 00000 n 0000278717 00000 n 0000278897 00000 n 0000278944 00000 n 0000279018 00000 n 0000280851 00000 n 0000280729 00000 n 0000279199 00000 n 0000282851 00000 n 0000282729 00000 n 0000280983 00000 n 0000285587 00000 n 0000285465 00000 n 0000283032 00000 n 0000287479 00000 n 0000287357 00000 n 0000285780 00000 n 0000288984 00000 n 0000290014 00000 n 0000288862 00000 n 0000287672 00000 n 0000768589 00000 n 0000289692 00000 n 0000289872 00000 n 0000289919 00000 n 0000289993 00000 n 0000291720 00000 n 0000291598 00000 n 0000290174 00000 n 0000293448 00000 n 0000293326 00000 n 0000291852 00000 n 0000295650 00000 n 0000295528 00000 n 0000293580 00000 n 0000298197 00000 n 0000298075 00000 n 0000295843 00000 n 0000299665 00000 n 0000299543 00000 n 0000298305 00000 n 0000300518 00000 n 0000300396 00000 n 0000299773 00000 n 0000768707 00000 n 0000301722 00000 n 0000301600 00000 n 0000300602 00000 n 0000302878 00000 n 0000302756 00000 n 0000301831 00000 n 0000304031 00000 n 0000303909 00000 n 0000302987 00000 n 0000305190 00000 n 0000305068 00000 n 0000304140 00000 n 0000306343 00000 n 0000306221 00000 n 0000305299 00000 n 0000307494 00000 n 0000307372 00000 n 0000306452 00000 n 0000768825 00000 n 0000308652 00000 n 0000308530 00000 n 0000307603 00000 n 0000309807 00000 n 0000309685 00000 n 0000308761 00000 n 0000310980 00000 n 0000310858 00000 n 0000309916 00000 n 0000312145 00000 n 0000312023 00000 n 0000311089 00000 n 0000313316 00000 n 0000313194 00000 n 0000312254 00000 n 0000314476 00000 n 0000314354 00000 n 0000313425 00000 n 0000768943 00000 n 0000315654 00000 n 0000315532 00000 n 0000314585 00000 n 0000316938 00000 n 0000316816 00000 n 0000315763 00000 n 0000645120 00000 n 0000632409 00000 n 0000644947 00000 n 0000318195 00000 n 0000318073 00000 n 0000317072 00000 n 0000319525 00000 n 0000319403 00000 n 0000318329 00000 n 0000320847 00000 n 0000320725 00000 n 0000319659 00000 n 0000322179 00000 n 0000322057 00000 n 0000320981 00000 n 0000769061 00000 n 0000323416 00000 n 0000323294 00000 n 0000322313 00000 n 0000324605 00000 n 0000324483 00000 n 0000323538 00000 n 0000326016 00000 n 0000325894 00000 n 0000324727 00000 n 0000327431 00000 n 0000327309 00000 n 0000326161 00000 n 0000329022 00000 n 0000328900 00000 n 0000327565 00000 n 0000330327 00000 n 0000330205 00000 n 0000329144 00000 n 0000769179 00000 n 0000331506 00000 n 0000331384 00000 n 0000330448 00000 n 0000332800 00000 n 0000332678 00000 n 0000331627 00000 n 0000333779 00000 n 0000333657 00000 n 0000332945 00000 n 0000334789 00000 n 0000334667 00000 n 0000333875 00000 n 0000335804 00000 n 0000335682 00000 n 0000334885 00000 n 0000336734 00000 n 0000336612 00000 n 0000335900 00000 n 0000769297 00000 n 0000337783 00000 n 0000337661 00000 n 0000336830 00000 n 0000338802 00000 n 0000338680 00000 n 0000337879 00000 n 0000340289 00000 n 0000340167 00000 n 0000338898 00000 n 0000341890 00000 n 0000341768 00000 n 0000340434 00000 n 0000343323 00000 n 0000343201 00000 n 0000342023 00000 n 0000344822 00000 n 0000344700 00000 n 0000343456 00000 n 0000769415 00000 n 0000346066 00000 n 0000345944 00000 n 0000344955 00000 n 0000347311 00000 n 0000347189 00000 n 0000346175 00000 n 0000348563 00000 n 0000348441 00000 n 0000347445 00000 n 0000349796 00000 n 0000349674 00000 n 0000348697 00000 n 0000351063 00000 n 0000350941 00000 n 0000349930 00000 n 0000352097 00000 n 0000351975 00000 n 0000351197 00000 n 0000769533 00000 n 0000352841 00000 n 0000352719 00000 n 0000352193 00000 n 0000353881 00000 n 0000353759 00000 n 0000352925 00000 n 0000354871 00000 n 0000354749 00000 n 0000353977 00000 n 0000356128 00000 n 0000356006 00000 n 0000354967 00000 n 0000357562 00000 n 0000357440 00000 n 0000356273 00000 n 0000358805 00000 n 0000358683 00000 n 0000357695 00000 n 0000769651 00000 n 0000359932 00000 n 0000359810 00000 n 0000358889 00000 n 0000361342 00000 n 0000361220 00000 n 0000360040 00000 n 0000362046 00000 n 0000361924 00000 n 0000361463 00000 n 0000363522 00000 n 0000363400 00000 n 0000362130 00000 n 0000364818 00000 n 0000364696 00000 n 0000363654 00000 n 0000365428 00000 n 0000365306 00000 n 0000364926 00000 n 0000769769 00000 n 0000366807 00000 n 0000366685 00000 n 0000365512 00000 n 0000368514 00000 n 0000368392 00000 n 0000366952 00000 n 0000630192 00000 n 0000628744 00000 n 0000630030 00000 n 0000369902 00000 n 0000369780 00000 n 0000368648 00000 n 0000628415 00000 n 0000626963 00000 n 0000628253 00000 n 0000370925 00000 n 0000370803 00000 n 0000370049 00000 n 0000371972 00000 n 0000371850 00000 n 0000371035 00000 n 0000372915 00000 n 0000372793 00000 n 0000372082 00000 n 0000769887 00000 n 0000374338 00000 n 0000374216 00000 n 0000373012 00000 n 0000375351 00000 n 0000375229 00000 n 0000374459 00000 n 0000376739 00000 n 0000376617 00000 n 0000375435 00000 n 0000377898 00000 n 0000377776 00000 n 0000376848 00000 n 0000379162 00000 n 0000379040 00000 n 0000378007 00000 n 0000380368 00000 n 0000380246 00000 n 0000379271 00000 n 0000770005 00000 n 0000381701 00000 n 0000381579 00000 n 0000380465 00000 n 0000382606 00000 n 0000382484 00000 n 0000381798 00000 n 0000383640 00000 n 0000383518 00000 n 0000382714 00000 n 0000384589 00000 n 0000384467 00000 n 0000383748 00000 n 0000385862 00000 n 0000385740 00000 n 0000384698 00000 n 0000386791 00000 n 0000386669 00000 n 0000385971 00000 n 0000770123 00000 n 0000388248 00000 n 0000388126 00000 n 0000386888 00000 n 0000389581 00000 n 0000389459 00000 n 0000388368 00000 n 0000390677 00000 n 0000390555 00000 n 0000389703 00000 n 0000391455 00000 n 0000391333 00000 n 0000390774 00000 n 0000392488 00000 n 0000392366 00000 n 0000391539 00000 n 0000394015 00000 n 0000393893 00000 n 0000392584 00000 n 0000770241 00000 n 0000394965 00000 n 0000394842 00000 n 0000394135 00000 n 0000396083 00000 n 0000395958 00000 n 0000395062 00000 n 0000397128 00000 n 0000397003 00000 n 0000396193 00000 n 0000398102 00000 n 0000397977 00000 n 0000397225 00000 n 0000398983 00000 n 0000398858 00000 n 0000398212 00000 n 0000399821 00000 n 0000399695 00000 n 0000399093 00000 n 0000770363 00000 n 0000400621 00000 n 0000400495 00000 n 0000399931 00000 n 0000401571 00000 n 0000401445 00000 n 0000400718 00000 n 0000402383 00000 n 0000402257 00000 n 0000401692 00000 n 0000403675 00000 n 0000403549 00000 n 0000402480 00000 n 0000404744 00000 n 0000404618 00000 n 0000403796 00000 n 0000406320 00000 n 0000406194 00000 n 0000404852 00000 n 0000770488 00000 n 0000407101 00000 n 0000406975 00000 n 0000406453 00000 n 0000407980 00000 n 0000407854 00000 n 0000407197 00000 n 0000409049 00000 n 0000408923 00000 n 0000408090 00000 n 0000409823 00000 n 0000409697 00000 n 0000409170 00000 n 0000410965 00000 n 0000410839 00000 n 0000409920 00000 n 0000411894 00000 n 0000411768 00000 n 0000411086 00000 n 0000770613 00000 n 0000412989 00000 n 0000412863 00000 n 0000412004 00000 n 0000414074 00000 n 0000413948 00000 n 0000413110 00000 n 0000415155 00000 n 0000415029 00000 n 0000414207 00000 n 0000415873 00000 n 0000415747 00000 n 0000415288 00000 n 0000417143 00000 n 0000417017 00000 n 0000415958 00000 n 0000418090 00000 n 0000417964 00000 n 0000417253 00000 n 0000770738 00000 n 0000418884 00000 n 0000418758 00000 n 0000418188 00000 n 0000419805 00000 n 0000419679 00000 n 0000418969 00000 n 0000420941 00000 n 0000420815 00000 n 0000419902 00000 n 0000422007 00000 n 0000421881 00000 n 0000421038 00000 n 0000423001 00000 n 0000422875 00000 n 0000422092 00000 n 0000423834 00000 n 0000423708 00000 n 0000423086 00000 n 0000770863 00000 n 0000424739 00000 n 0000424613 00000 n 0000423932 00000 n 0000425664 00000 n 0000425538 00000 n 0000424837 00000 n 0000426607 00000 n 0000426481 00000 n 0000425762 00000 n 0000427415 00000 n 0000427289 00000 n 0000426705 00000 n 0000428173 00000 n 0000428047 00000 n 0000427500 00000 n 0000429038 00000 n 0000428912 00000 n 0000428258 00000 n 0000770988 00000 n 0000429822 00000 n 0000429696 00000 n 0000429123 00000 n 0000430630 00000 n 0000430504 00000 n 0000429907 00000 n 0000431407 00000 n 0000431281 00000 n 0000430715 00000 n 0000432173 00000 n 0000432047 00000 n 0000431492 00000 n 0000432928 00000 n 0000432802 00000 n 0000432258 00000 n 0000433928 00000 n 0000433802 00000 n 0000433013 00000 n 0000771113 00000 n 0000434659 00000 n 0000434533 00000 n 0000434026 00000 n 0000435550 00000 n 0000435424 00000 n 0000434744 00000 n 0000436427 00000 n 0000436301 00000 n 0000435660 00000 n 0000437222 00000 n 0000437096 00000 n 0000436548 00000 n 0000437970 00000 n 0000437844 00000 n 0000437332 00000 n 0000438920 00000 n 0000438794 00000 n 0000438055 00000 n 0000771238 00000 n 0000439705 00000 n 0000439579 00000 n 0000439041 00000 n 0000440543 00000 n 0000440417 00000 n 0000439802 00000 n 0000441320 00000 n 0000441194 00000 n 0000440653 00000 n 0000442224 00000 n 0000442098 00000 n 0000441417 00000 n 0000443379 00000 n 0000443253 00000 n 0000442345 00000 n 0000444070 00000 n 0000443944 00000 n 0000443489 00000 n 0000771363 00000 n 0000444883 00000 n 0000444757 00000 n 0000444168 00000 n 0000445464 00000 n 0000445338 00000 n 0000444981 00000 n 0000446037 00000 n 0000445911 00000 n 0000445536 00000 n 0000446875 00000 n 0000446749 00000 n 0000446109 00000 n 0000447797 00000 n 0000447671 00000 n 0000446960 00000 n 0000448753 00000 n 0000448627 00000 n 0000447907 00000 n 0000771488 00000 n 0000449715 00000 n 0000449589 00000 n 0000448862 00000 n 0000450565 00000 n 0000450439 00000 n 0000449848 00000 n 0000451580 00000 n 0000451454 00000 n 0000450675 00000 n 0000452497 00000 n 0000452371 00000 n 0000451701 00000 n 0000453360 00000 n 0000453234 00000 n 0000452582 00000 n 0000454394 00000 n 0000454268 00000 n 0000453470 00000 n 0000771613 00000 n 0000455399 00000 n 0000455273 00000 n 0000454491 00000 n 0000456341 00000 n 0000456215 00000 n 0000455484 00000 n 0000457179 00000 n 0000457053 00000 n 0000456413 00000 n 0000458020 00000 n 0000457894 00000 n 0000457264 00000 n 0000459020 00000 n 0000458894 00000 n 0000458105 00000 n 0000459903 00000 n 0000459777 00000 n 0000459118 00000 n 0000771738 00000 n 0000460696 00000 n 0000460570 00000 n 0000459988 00000 n 0000462016 00000 n 0000461890 00000 n 0000460781 00000 n 0000462879 00000 n 0000462753 00000 n 0000462114 00000 n 0000463746 00000 n 0000463620 00000 n 0000462964 00000 n 0000464839 00000 n 0000464713 00000 n 0000463831 00000 n 0000465494 00000 n 0000465368 00000 n 0000464949 00000 n 0000771863 00000 n 0000466086 00000 n 0000465960 00000 n 0000465579 00000 n 0000467140 00000 n 0000467014 00000 n 0000466158 00000 n 0000468300 00000 n 0000468174 00000 n 0000467286 00000 n 0000469279 00000 n 0000469153 00000 n 0000468446 00000 n 0000470341 00000 n 0000470215 00000 n 0000469388 00000 n 0000471672 00000 n 0000471546 00000 n 0000470463 00000 n 0000771988 00000 n 0000472455 00000 n 0000472329 00000 n 0000471805 00000 n 0000473486 00000 n 0000473360 00000 n 0000472552 00000 n 0000474388 00000 n 0000474262 00000 n 0000473607 00000 n 0000475643 00000 n 0000475517 00000 n 0000474522 00000 n 0000476948 00000 n 0000476822 00000 n 0000475752 00000 n 0000626639 00000 n 0000624767 00000 n 0000626475 00000 n 0000478361 00000 n 0000478235 00000 n 0000477097 00000 n 0000772113 00000 n 0000479665 00000 n 0000479539 00000 n 0000478484 00000 n 0000480842 00000 n 0000480716 00000 n 0000479775 00000 n 0000481876 00000 n 0000481750 00000 n 0000480939 00000 n 0000482826 00000 n 0000482700 00000 n 0000481973 00000 n 0000483925 00000 n 0000483799 00000 n 0000482923 00000 n 0000484988 00000 n 0000484862 00000 n 0000484022 00000 n 0000772238 00000 n 0000485915 00000 n 0000485789 00000 n 0000485085 00000 n 0000486901 00000 n 0000486775 00000 n 0000486012 00000 n 0000488016 00000 n 0000487890 00000 n 0000486998 00000 n 0000489341 00000 n 0000489215 00000 n 0000488126 00000 n 0000490366 00000 n 0000490240 00000 n 0000489463 00000 n 0000491230 00000 n 0000491104 00000 n 0000490487 00000 n 0000772363 00000 n 0000492123 00000 n 0000491997 00000 n 0000491327 00000 n 0000493657 00000 n 0000493531 00000 n 0000492233 00000 n 0000495328 00000 n 0000495202 00000 n 0000493766 00000 n 0000497199 00000 n 0000497073 00000 n 0000495413 00000 n 0000497808 00000 n 0000497682 00000 n 0000497296 00000 n 0000499836 00000 n 0000499710 00000 n 0000497893 00000 n 0000772488 00000 n 0000500578 00000 n 0000500452 00000 n 0000499945 00000 n 0000502272 00000 n 0000502146 00000 n 0000500663 00000 n 0000504402 00000 n 0000504276 00000 n 0000502357 00000 n 0000505539 00000 n 0000505413 00000 n 0000504487 00000 n 0000507628 00000 n 0000507502 00000 n 0000505624 00000 n 0000509313 00000 n 0000509187 00000 n 0000507713 00000 n 0000772613 00000 n 0000511186 00000 n 0000511060 00000 n 0000509398 00000 n 0000512428 00000 n 0000512302 00000 n 0000511271 00000 n 0000514053 00000 n 0000513927 00000 n 0000512513 00000 n 0000515851 00000 n 0000515725 00000 n 0000514138 00000 n 0000517681 00000 n 0000517555 00000 n 0000515936 00000 n 0000519552 00000 n 0000519426 00000 n 0000517766 00000 n 0000772738 00000 n 0000521237 00000 n 0000521111 00000 n 0000519637 00000 n 0000522837 00000 n 0000522711 00000 n 0000521322 00000 n 0000524742 00000 n 0000524616 00000 n 0000522922 00000 n 0000525500 00000 n 0000525374 00000 n 0000524827 00000 n 0000527308 00000 n 0000527182 00000 n 0000525585 00000 n 0000528676 00000 n 0000528550 00000 n 0000527393 00000 n 0000772863 00000 n 0000530528 00000 n 0000530402 00000 n 0000528761 00000 n 0000531416 00000 n 0000531290 00000 n 0000530613 00000 n 0000533244 00000 n 0000533118 00000 n 0000531501 00000 n 0000534954 00000 n 0000534828 00000 n 0000533329 00000 n 0000536564 00000 n 0000536438 00000 n 0000535039 00000 n 0000537217 00000 n 0000537091 00000 n 0000536649 00000 n 0000772988 00000 n 0000538877 00000 n 0000538751 00000 n 0000537302 00000 n 0000540603 00000 n 0000540477 00000 n 0000538998 00000 n 0000542253 00000 n 0000542127 00000 n 0000540688 00000 n 0000543805 00000 n 0000543679 00000 n 0000542338 00000 n 0000545538 00000 n 0000545412 00000 n 0000543890 00000 n 0000547241 00000 n 0000547115 00000 n 0000545623 00000 n 0000773113 00000 n 0000548861 00000 n 0000548735 00000 n 0000547326 00000 n 0000550665 00000 n 0000550539 00000 n 0000548946 00000 n 0000552410 00000 n 0000552284 00000 n 0000550786 00000 n 0000554257 00000 n 0000554131 00000 n 0000552495 00000 n 0000556046 00000 n 0000555920 00000 n 0000554342 00000 n 0000557975 00000 n 0000557849 00000 n 0000556131 00000 n 0000773238 00000 n 0000559111 00000 n 0000558985 00000 n 0000558060 00000 n 0000561058 00000 n 0000560932 00000 n 0000559196 00000 n 0000562821 00000 n 0000562695 00000 n 0000561155 00000 n 0000563766 00000 n 0000563640 00000 n 0000562906 00000 n 0000565480 00000 n 0000565354 00000 n 0000563851 00000 n 0000567093 00000 n 0000566967 00000 n 0000565565 00000 n 0000773363 00000 n 0000567952 00000 n 0000567826 00000 n 0000567178 00000 n 0000569131 00000 n 0000569005 00000 n 0000568037 00000 n 0000570573 00000 n 0000570447 00000 n 0000569216 00000 n 0000571955 00000 n 0000571829 00000 n 0000570658 00000 n 0000572910 00000 n 0000572784 00000 n 0000572040 00000 n 0000574538 00000 n 0000574412 00000 n 0000572995 00000 n 0000773488 00000 n 0000576245 00000 n 0000576119 00000 n 0000574623 00000 n 0000578018 00000 n 0000577892 00000 n 0000576330 00000 n 0000579848 00000 n 0000579722 00000 n 0000578103 00000 n 0000581216 00000 n 0000581090 00000 n 0000579933 00000 n 0000582500 00000 n 0000582374 00000 n 0000581301 00000 n 0000583244 00000 n 0000583118 00000 n 0000582585 00000 n 0000773613 00000 n 0000584303 00000 n 0000584177 00000 n 0000583329 00000 n 0000584958 00000 n 0000584832 00000 n 0000584388 00000 n 0000586116 00000 n 0000585990 00000 n 0000585054 00000 n 0000587449 00000 n 0000587323 00000 n 0000586213 00000 n 0000588829 00000 n 0000588703 00000 n 0000587534 00000 n 0000590251 00000 n 0000590125 00000 n 0000588914 00000 n 0000773738 00000 n 0000591580 00000 n 0000591454 00000 n 0000590336 00000 n 0000593119 00000 n 0000592993 00000 n 0000591665 00000 n 0000594594 00000 n 0000594468 00000 n 0000593216 00000 n 0000595987 00000 n 0000595861 00000 n 0000594703 00000 n 0000597377 00000 n 0000597251 00000 n 0000596084 00000 n 0000598865 00000 n 0000598739 00000 n 0000597486 00000 n 0000773863 00000 n 0000600376 00000 n 0000600250 00000 n 0000598974 00000 n 0000601801 00000 n 0000601675 00000 n 0000600485 00000 n 0000603212 00000 n 0000603086 00000 n 0000601910 00000 n 0000604455 00000 n 0000604329 00000 n 0000603309 00000 n 0000605570 00000 n 0000605444 00000 n 0000604540 00000 n 0000606813 00000 n 0000606687 00000 n 0000605655 00000 n 0000773988 00000 n 0000608188 00000 n 0000608062 00000 n 0000606898 00000 n 0000609477 00000 n 0000609351 00000 n 0000608273 00000 n 0000610838 00000 n 0000610712 00000 n 0000609562 00000 n 0000612132 00000 n 0000612006 00000 n 0000610935 00000 n 0000613333 00000 n 0000613207 00000 n 0000612229 00000 n 0000614630 00000 n 0000614504 00000 n 0000613418 00000 n 0000774113 00000 n 0000615579 00000 n 0000615453 00000 n 0000614715 00000 n 0000616698 00000 n 0000616572 00000 n 0000615664 00000 n 0000617985 00000 n 0000617859 00000 n 0000616783 00000 n 0000619228 00000 n 0000619102 00000 n 0000618070 00000 n 0000620534 00000 n 0000620408 00000 n 0000619313 00000 n 0000622011 00000 n 0000621885 00000 n 0000620619 00000 n 0000774238 00000 n 0000623451 00000 n 0000623325 00000 n 0000622108 00000 n 0000624682 00000 n 0000624556 00000 n 0000623548 00000 n 0000626874 00000 n 0000626849 00000 n 0000628652 00000 n 0000628627 00000 n 0000630428 00000 n 0000630403 00000 n 0000630520 00000 n 0000645444 00000 n 0000651379 00000 n 0000651218 00000 n 0000654776 00000 n 0000654729 00000 n 0000657340 00000 n 0000657275 00000 n 0000664376 00000 n 0000664206 00000 n 0000668611 00000 n 0000668496 00000 n 0000672575 00000 n 0000672514 00000 n 0000674953 00000 n 0000674922 00000 n 0000695966 00000 n 0000698485 00000 n 0000698252 00000 n 0000716796 00000 n 0000719556 00000 n 0000719311 00000 n 0000723065 00000 n 0000722928 00000 n 0000742990 00000 n 0000764116 00000 n 0000774336 00000 n 0000774450 00000 n 0000774570 00000 n 0000774690 00000 n 0000774810 00000 n 0000774930 00000 n 0000775050 00000 n 0000775170 00000 n 0000775290 00000 n 0000775415 00000 n 0000775541 00000 n 0000775667 00000 n 0000775793 00000 n 0000775919 00000 n 0000776018 00000 n 0000776145 00000 n 0000776272 00000 n 0000776362 00000 n 0000776445 00000 n 0000776500 00000 n trailer << /Size 1667 /Root 1665 0 R /Info 1666 0 R /ID [<9B45844FBB491E03A83C4C7FC7688054> <9B45844FBB491E03A83C4C7FC7688054>] >> startxref 776705 %%EOF hepmc-2.06.09.orig/doc/physicist_visualization.eps0000644000175000017500000003314710730532704023074 0ustar sylvestresylvestre%!PS-Adobe-2.0 EPSF-2.0 %%BoundingBox: 0 0 340 283 %%Title: physicist_visualization.eps %%Creator: HIGZ Version 1.26/04 %%CreationDate: 2001/02/27 09.34 %%EndComments %%BeginProlog 80 dict begin /s {stroke} def /l {lineto} def /m {moveto} def /t {translate} def /sw {stringwidth} def /r {rotate} def /rl {roll} def /R {repeat} def /d {rlineto} def /rm {rmoveto} def /gr {grestore} def /f {eofill} def /c {setrgbcolor} def /lw {setlinewidth} def /sd {setdash} def /cl {closepath} def /sf {scalefont setfont} def /black {0 setgray} def /box {m dup 0 exch d exch 0 d 0 exch neg d cl} def /NC{systemdict begin initclip end}def/C{NC box clip newpath}def /bl {box s} def /bf {box f} def /Y { 0 exch d} def /X { 0 d} def /mp {newpath /y exch def /x exch def} def /side {[w .77 mul w .23 mul] .385 w mul sd w 0 l currentpoint t -144 r} def /mr {mp x y w2 0 360 arc} def /m24 {mr s} def /m20 {mr f} def /mb {mp x y w2 add m w2 neg 0 d 0 w neg d w 0 d 0 w d cl} def /mt {mp x y w2 add m w2 neg w neg d w 0 d cl} def /m21 {mb f} def /m25 {mb s} def /m22 {mt f} def /m26 {mt s} def /m23 {mp x y w2 sub m w2 w d w neg 0 d cl f} def /m27 {mp x y w2 add m w3 neg w2 neg d w3 w2 neg d w3 w2 d cl s} def /m28 {mp x w2 sub y w2 sub w3 add m w3 0 d 0 w3 neg d w3 0 d 0 w3 d w3 0 d 0 w3 d w3 neg 0 d 0 w3 d w3 neg 0 d 0 w3 neg d w3 neg 0 d cl s } def /m29 {mp gsave x w2 sub y w2 add w3 sub m currentpoint t 4 {side} repeat cl fill gr} def /m30 {mp gsave x w2 sub y w2 add w3 sub m currentpoint t 5 {side} repeat s gr} def /m31 {mp x y w2 sub m 0 w d x w2 sub y m w 0 d x w2 sub y w2 add m w w neg d x w2 sub y w2 sub m w w d s} def /m2 {mp x y w2 sub m 0 w d x w2 sub y m w 0 d s} def /m5 {mp x w2 sub y w2 sub m w w d x w2 sub y w2 add m w w neg d s} def /reencdict 24 dict def /ReEncode {reencdict begin /nco&na exch def /nfnam exch def /basefontname exch def /basefontdict basefontname findfont def /newfont basefontdict maxlength dict def basefontdict {exch dup /FID ne {dup /Encoding eq {exch dup length array copy newfont 3 1 roll put} {exch newfont 3 1 roll put} ifelse} {pop pop} ifelse } forall newfont /FontName nfnam put nco&na aload pop nco&na length 2 idiv {newfont /Encoding get 3 1 roll put} repeat nfnam newfont definefont pop end } def /accvec [ 176 /agrave 181 /Agrave 190 /acircumflex 192 /Acircumflex 201 /adieresis 204 /Adieresis 209 /ccedilla 210 /Ccedilla 211 /eacute 212 /Eacute 213 /egrave 214 /Egrave 215 /ecircumflex 216 /Ecircumflex 217 /edieresis 218 /Edieresis 219 /icircumflex 220 /Icircumflex 221 /idieresis 222 /Idieresis 223 /ntilde 224 /Ntilde 226 /ocircumflex 228 /Ocircumflex 229 /odieresis 230 /Odieresis 231 /ucircumflex 236 /Ucircumflex 237 /udieresis 238 /Udieresis 239 /aring 242 /Aring 243 /ydieresis 244 /Ydieresis 246 /aacute 247 /Aacute 252 /ugrave 253 /Ugrave] def /Times-Roman /Times-Roman accvec ReEncode /Times-Italic /Times-Italic accvec ReEncode /Times-Bold /Times-Bold accvec ReEncode /Times-BoldItalic /Times-BoldItalic accvec ReEncode /Helvetica /Helvetica accvec ReEncode /Helvetica-Oblique /Helvetica-Oblique accvec ReEncode /Helvetica-Bold /Helvetica-Bold accvec ReEncode /Helvetica-BoldOblique /Helvetica-BoldOblique accvec ReEncode /Courier /Courier accvec ReEncode /Courier-Oblique /Courier-Oblique accvec ReEncode /Courier-Bold /Courier-Bold accvec ReEncode /Courier-BoldOblique /Courier-BoldOblique accvec ReEncode /oshow {gsave [] 0 sd true charpath stroke gr} def /stwn { /fs exch def /fn exch def /text exch def fn findfont fs sf text sw pop xs add /xs exch def} def /stwb { /fs exch def /fn exch def /nbas exch def /textf exch def textf length /tlen exch def nbas tlen gt {/nbas tlen def} if fn findfont fs sf textf dup length nbas sub nbas getinterval sw pop neg xs add /xs exch def} def /accspe [ 65 /plusminus 66 /bar 67 /existential 68 /universal 69 /exclam 70 /numbersign 71 /greater 72 /question 73 /integral 74 /colon 75 /semicolon 76 /less 77 /bracketleft 78 /bracketright 79 /greaterequal 80 /braceleft 81 /braceright 82 /radical 83 /spade 84 /heart 85 /diamond 86 /club 87 /lessequal 88 /multiply 89 /percent 90 /infinity 48 /circlemultiply 49 /circleplus 50 /emptyset 51 /lozenge 52 /bullet 53 /arrowright 54 /arrowup 55 /arrowleft 56 /arrowdown 57 /arrowboth 48 /degree 44 /comma 43 /plus 45 /angle 42 /angleleft 47 /divide 61 /notequal 40 /equivalence 41 /second 97 /approxequal 98 /congruent 99 /perpendicular 100 /partialdiff 101 /florin 102 /intersection 103 /union 104 /propersuperset 105 /reflexsuperset 106 /notsubset 107 /propersubset 108 /reflexsubset 109 /element 110 /notelement 111 /gradient 112 /logicaland 113 /logicalor 114 /arrowdblboth 115 /arrowdblleft 116 /arrowdblup 117 /arrowdblright 118 /arrowdbldown 119 /ampersand 120 /omega1 121 /similar 122 /aleph ] def /Symbol /Special accspe ReEncode %%EndProlog gsave .25 .25 scale gsave 0 0 t black [] 0 sd 1 lw 1360 1133 0 0 C 4 lw /w 73 def /w2 {w 2 div} def /w3 {w 3 div} def 680 227 m20 /xs 0 def (f\(x,Q) /Helvetica-Bold 31 stwn (2) /Helvetica-Bold 22 stwn (\)) /Helvetica-Bold 31 stwn gsave 567 215 t 0 r xs 2 div neg 0 t 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (f\(x,Q) show currentpoint pop 0 t /Helvetica-Bold findfont 22 sf 0 16 m (2) show currentpoint pop 0 t /Helvetica-Bold findfont 31 sf 0 0 m (\)) show gr 680 45 m 11 170 d s 669 45 m 11 170 d s 1 lw 674 126 m -8 -4 d 10 27 d 6 -28 d f 4 lw 657 45 m 12 170 d s 657 408 m 23 -170 d s 1 lw 669 318 m -7 -5 d 4 28 d 12 -25 d f 4 lw 646 408 m 23 -170 d s 907 227 m20 /xs 0 def (f\(x,Q) /Helvetica-Bold 31 stwn (2) /Helvetica-Bold 22 stwn (\)) /Helvetica-Bold 31 stwn gsave 1020 215 t 0 r xs 2 div neg 0 t 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (f\(x,Q) show currentpoint pop 0 t /Helvetica-Bold findfont 22 sf 0 16 m (2) show currentpoint pop 0 t /Helvetica-Bold findfont 31 sf 0 0 m (\)) show gr 929 45 m -11 170 d s 918 45 m -11 170 d s 1 lw 913 126 m -8 -5 d 6 28 d 10 -27 d f 4 lw 907 45 m -12 170 d s 941 408 m -23 -170 d s 929 408 m -22 -170 d s 1 lw 917 318 m -8 -2 d 11 25 d 5 -28 d f 4 lw 918 408 m -23 -170 d s 0 0 1 c 691 238 m 102 102 d s black 1 lw 739 286 m -9 3 d 25 13 d -13 -25 d f 4 lw 0 0 1 c 895 238 m -102 102 d s black 1 lw 841 292 m 3 9 d 13 -25 d -25 13 d f 4 lw 1 0 0 c 793 340 m 8 Y -7 2 d -5 3 d -2 2 d 2 2 d 5 3 d 7 2 d 7 2 d 6 3 d 2 2 d -2 2 d -6 3 d -7 2 d -7 2 d -5 2 d -2 3 d 2 2 d 5 2 d 7 3 d 7 2 d 6 2 d 2 3 d -2 2 d -6 2 d -7 3 d -7 2 d -5 2 d -2 3 d 2 2 d 5 2 d 7 2 d 7 3 d 6 2 d 2 2 d -2 3 d -6 2 d -7 2 d -7 3 d -5 2 d -2 2 d 2 3 d 5 2 d 7 2 d 8 Y s 0 0 1 c 623 623 m 170 -170 d s black 1 lw 705 542 m 3 8 d 13 -25 d -25 14 d f 4 lw 0 0 1 c 397 850 m 226 -227 d s 963 623 m -170 -170 d s black 1 lw 875 535 m -9 3 d 25 13 d -13 -25 d f 4 lw 0 0 1 c 1190 850 m -227 -227 d s 0 1 0 c 680 567 m -2 7 d 7 Y 3 6 d 4 3 d 5 1 d 3 -2 d -4 Y -3 -4 d -5 -2 d -6 1 d -7 3 d -5 6 d -2 7 d 7 Y 3 6 d 5 3 d 4 1 d 3 -2 d -4 Y -2 -4 d -5 -2 d -7 1 d -6 3 d -5 6 d -3 7 d 1 7 d 3 6 d 4 3 d 5 1 d 2 -2 d 1 -4 d -3 -4 d -5 -2 d -6 1 d -7 3 d -5 6 d -2 7 d 7 Y 3 6 d 5 3 d 4 1 d 3 -2 d -4 Y -2 -4 d -5 -2 d -7 1 d -6 3 d -5 6 d -3 7 d 1 7 d 3 6 d 4 3 d 4 1 d 3 -2 d 1 -4 d -3 -4 d -5 -2 d -6 1 d -7 3 d -5 6 d -2 7 d 7 Y 3 6 d 4 4 d 5 X 3 -2 d -4 Y -2 -4 d -6 -2 d -6 1 d -7 3 d -5 6 d -2 7 d 7 Y 3 6 d 5 4 d 4 X 3 -2 d -4 Y -2 -4 d -5 -2 d -7 1 d -6 3 d -5 6 d -3 7 d 1 8 d 3 5 d 4 4 d 5 X 2 -2 d 1 -4 d -3 -3 d -5 -3 d -6 1 d -7 3 d -5 6 d -2 7 d 8 Y 3 5 d 5 4 d 4 X 3 -2 d -4 Y -2 -3 d -5 -3 d -7 1 d -6 3 d -5 6 d s 0 0 1 c 482 822 m 85 -57 d s 680 878 m -113 -113 d s 0 1 0 c 737 510 m 2 7 d 4 5 d 5 3 d 6 X 3 -2 d 1 -3 d -2 -3 d -3 -2 d -5 2 d -5 3 d -3 6 d -1 8 d 2 7 d 4 5 d 6 3 d 5 X 3 -2 d 2 -4 d -2 -3 d -4 -1 d -5 1 d -5 4 d -3 6 d -1 7 d 2 7 d 5 5 d 5 3 d 5 X 4 -2 d 1 -3 d -2 -3 d -4 -1 d -5 1 d -4 4 d -4 6 d 7 Y 2 7 d 4 5 d 6 3 d 5 X 3 -2 d 1 -3 d -1 -3 d -4 -2 d -5 1 d -5 4 d -3 6 d -1 7 d 2 7 d 4 6 d 6 2 d 5 1 d 4 -3 d 1 -3 d -2 -3 d -4 -1 d -5 1 d -5 4 d -3 6 d -1 7 d 3 7 d 4 5 d 5 3 d 5 X 4 -2 d 1 -3 d -2 -3 d -4 -2 d -5 2 d -4 3 d -4 6 d 8 Y 2 7 d 4 5 d 6 3 d 5 X 3 -2 d 1 -4 d -1 -3 d -4 -1 d -5 1 d -5 4 d -3 6 d -1 7 d 2 7 d 5 5 d 5 3 d 5 X 4 -2 d 1 -3 d -2 -3 d -4 -1 d -5 1 d -5 4 d -3 6 d 7 Y 2 7 d 4 5 d 5 3 d 5 X 4 -2 d 1 -3 d -2 -3 d -4 -2 d -5 1 d -4 4 d -3 6 d -1 7 d 2 7 d 4 6 d 6 3 d 5 X 3 -2 d 1 -4 d -1 -3 d -4 -1 d -5 1 d -5 4 d -3 6 d -1 7 d 2 7 d 5 5 d 5 3 d 5 X 4 -2 d 1 -3 d -2 -3 d -4 -1 d -5 1 d -5 3 d -3 7 d 7 Y 2 7 d 4 5 d 5 3 d 6 X 3 -2 d 1 -4 d -2 -2 d -3 -2 d -5 1 d -5 4 d -3 6 d -1 7 d s 0 0 1 c 708 907 m 57 -114 d s 822 907 m -57 -114 d s 0 1 0 c 907 567 m 3 6 d 6 5 d 7 2 d 5 -1 d 3 -3 d 1 -4 d -3 -3 d -4 X -5 2 d -4 5 d -2 7 d 1 8 d 4 7 d 5 4 d 7 2 d 5 -1 d 3 -3 d 1 -4 d -3 -3 d -4 X -5 2 d -4 5 d -2 8 d 1 7 d 4 7 d 5 5 d 7 1 d 5 -1 d 3 -3 d 1 -4 d -3 -2 d -4 -1 d -5 3 d -4 5 d -2 7 d 1 8 d 4 6 d 6 5 d 6 2 d 5 -2 d 4 -3 d -3 Y -3 -3 d -4 -1 d -5 3 d -4 5 d -2 7 d 1 8 d 4 7 d 6 4 d 6 2 d 5 -1 d 4 -3 d -4 Y -2 -3 d -5 X -5 2 d -4 5 d -2 7 d 1 8 d 4 7 d 6 4 d 6 2 d 6 -1 d 3 -3 d -4 Y -2 -2 d -5 -1 d -5 2 d -4 6 d -2 7 d 1 7 d 4 7 d 6 5 d 6 1 d 6 -1 d 3 -3 d -3 Y -2 -3 d -5 -1 d -5 3 d -4 5 d -2 7 d 1 8 d s 963 737 m 2 8 d 4 7 d 7 4 d 6 1 d 4 -2 d 2 -4 d -2 -4 d -4 -2 d -6 1 d -7 4 d -4 7 d -2 8 d 2 8 d 4 7 d 7 4 d 6 1 d 4 -2 d 2 -4 d -2 -4 d -4 -2 d -6 1 d -7 4 d -4 7 d -2 8 d 2 9 d 4 7 d 7 4 d 6 X 4 -2 d 2 -4 d -2 -3 d -4 -2 d -6 X -7 4 d -4 7 d -2 9 d 2 8 d 4 7 d 7 4 d 6 1 d 4 -2 d 2 -4 d -2 -4 d -4 -2 d -6 1 d -7 4 d -4 7 d -2 8 d s 0 0 1 c 907 907 m 56 -57 d s 1020 963 m -57 -113 d s 0 1 0 c 963 737 m 7 4 d 8 2 d 6 -2 d 5 -3 d 1 -5 d -1 -3 d -4 -2 d -4 2 d -3 5 d -2 6 d 2 8 d 4 7 d 7 4 d 7 2 d 7 -2 d 5 -3 d 1 -5 d -1 -3 d -4 -2 d -4 2 d -4 4 d -1 7 d 2 8 d 4 6 d 7 5 d 7 2 d 7 -2 d 5 -3 d 1 -5 d -1 -3 d -4 -2 d -4 2 d -4 4 d -1 7 d 1 8 d 5 6 d s 0 0 1 c 1020 963 m -170 Y s 1133 850 m -113 -57 d s 340 907 m 113 -57 d s black 1 lw 360 896 m -9 Y -20 20 d 28 -5 d f 4 lw 0 0 1 c 397 963 m 56 -113 d s 312 1020 m 85 -57 d s black 1 lw 331 1007 m -1 -9 d -18 22 d 27 -8 d f 4 lw 0 0 1 c 368 1020 m 29 -57 d s black 1 lw 379 1000 m -6 -8 d -5 28 d 20 -20 d f 4 lw 0 0 1 c 397 1020 m -57 Y s black 1 lw 397 997 m -8 -4 d 8 27 d 8 -27 d f 4 lw 0 0 1 c 623 992 m 57 -85 d s black 1 lw 636 973 m -5 -8 d -8 27 d 22 -18 d f 4 lw 0 0 1 c 680 992 m -85 Y s 652 1077 m 28 -85 d s black 1 lw 659 1055 m -7 -6 d 28 Y 16 -23 d f 4 lw 0 0 1 c 708 1048 m -28 -56 d s black 1 lw 698 1028 m -9 X 19 20 d -4 -27 d f 4 lw 0 0 1 c 822 1077 m -114 Y s black 1 lw 822 1054 m -8 -4 d 8 27 d 8 -27 d f 4 lw 0 0 1 c 907 1077 m -29 -114 d s black 1 lw 901 1055 m -9 -2 d 15 24 d 1 -28 d f 4 lw 0 0 1 c 1077 1048 m -57 -85 d s black 1 lw 1064 1029 m -9 1 d 22 18 d -8 -27 d f 4 lw 0 0 1 c 1020 1048 m -85 Y s 992 1105 m 28 -57 d s black 1 lw 1002 1085 m -6 -8 d -4 28 d 19 -20 d f 4 lw 0 0 1 c 1048 1105 m -28 -57 d s black 1 lw 1038 1085 m -9 X 19 20 d -4 -28 d f 4 lw 0 0 1 c 1162 963 m -29 -113 d s 1247 1020 m -85 -57 d s black 1 lw 1228 1007 m -8 5 d 27 8 d -18 -22 d f 4 lw 0 0 1 c 1162 1020 m -57 Y s 1190 1077 m -28 -57 d s black 1 lw 1180 1056 m -9 X 19 21 d -5 -28 d f 4 lw 0 0 1 c 1133 1077 m 29 -57 d s black 1 lw 1144 1056 m -6 -7 d -5 28 d 20 -21 d f 4 lw 0 0 1 c 1303 907 m -170 -57 d s black 1 lw 1282 899 m -7 7 d 28 1 d -23 -17 d f 4 lw 1 0 1 c /w 122 def /w2 {w 2 div} def /w3 {w 3 div} def 442 833 m20 444 836 m20 447 840 m20 449 843 m20 451 847 m20 453 850 m20 456 853 m20 458 857 m20 460 860 m20 462 864 m20 465 867 m20 /w 147 def /w2 {w 2 div} def /w3 {w 3 div} def 1145 827 m20 1142 832 m20 1140 836 m20 1138 841 m20 1136 845 m20 1133 850 m20 1131 855 m20 1129 859 m20 1127 864 m20 1124 868 m20 1122 873 m20 /w 98 def /w2 {w 2 div} def /w3 {w 3 div} def 663 901 m20 666 902 m20 670 903 m20 673 904 m20 677 906 m20 680 907 m20 683 908 m20 687 909 m20 690 910 m20 694 911 m20 697 912 m20 /w 147 def /w2 {w 2 div} def /w3 {w 3 div} def 833 969 m20 836 968 m20 840 967 m20 843 966 m20 847 964 m20 850 963 m20 853 962 m20 857 961 m20 860 960 m20 864 959 m20 867 958 m20 /w 85 def /w2 {w 2 div} def /w3 {w 3 div} def 1009 975 m20 1011 972 m20 1013 970 m20 1015 968 m20 1018 966 m20 1020 963 m20 1022 961 m20 1025 959 m20 1027 957 m20 1029 954 m20 1031 952 m20 black gsave 11 187 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Parton) show gr gsave 11 159 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Distributions) show gr 1 lw 255 198 m 11 X s 266 312 m -114 Y s 278 312 m -12 X s 266 85 m 113 Y s 278 85 m -12 X s gsave 11 414 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Hard) show gr gsave 11 385 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (SubProcess) show gr 312 408 m 11 X s 323 493 m -85 Y s 334 493 m -11 X s 323 323 m 85 Y s 334 323 m -11 X s gsave 11 612 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Parton) show gr gsave 11 584 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Cascade) show gr 255 606 m 11 X s 266 776 m -170 Y s 278 776 m -12 X s 266 436 m 170 Y s 278 436 m -12 X s gsave 11 839 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Hadronization) show gr 312 850 m 11 X s 323 935 m -85 Y s 334 935 m -11 X s 323 765 m 85 Y s 334 765 m -11 X s gsave 11 1037 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (Decay) show gr 255 1048 m 11 X s 266 1105 m -57 Y s 278 1105 m -12 X s 266 992 m 56 Y s 278 992 m -12 X s gsave 1020 555 t 0 r 0 0 m /Helvetica-Bold findfont 31 sf 0 0 m (+) show gr gsave 1048 575 t 0 r 0 0 m /Helvetica-Bold findfont 39 sf 0 0 m (Minimum Bias) show gr gsave 1048 530 t 0 r 0 0 m /Helvetica-Bold findfont 39 sf 0 0 m (Collisions) show gr gr gr showpage end %%EOF hepmc-2.06.09.orig/config.sub0000755000175000017500000007305511307507571016610 0ustar sylvestresylvestre#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. timestamp='2003-06-18' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit 0;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k \ | m32r | m68000 | m68k | m88k | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | msp430 \ | ns16k | ns32k \ | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | s390 | s390x \ | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xscale | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* \ | m32r-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | msp430-* \ | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | s390-* | s390x-* \ | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ | xtensa-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; crds | unos) basic_machine=m68k-crds ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; mmix*) basic_machine=mmix-knuth os=-mmixware ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nv1) basic_machine=nv1-cray os=-unicosmp ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; or32 | or32-*) basic_machine=or32-unknown os=-coff ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sh64) basic_machine=sh64-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-ibm) os=-aix ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -ptx*) vendor=sequent ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: hepmc-2.06.09.orig/aclocal.m40000644000175000017500000170304211763470437016470 0ustar sylvestresylvestre# generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 48 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_LINKER_BOILERPLATE # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognise shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognise a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ]) # Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 7 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE]) AC_SUBST([$1_FALSE]) if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH]) ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.58])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. # # Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories # created by `make install' are always world readable, even if the # installer happens to have an overly restrictive umask (e.g. 077). # This was a mistake. There are at least two reasons why we must not # use `-m 0755': # - it causes special bits like SGID to be ignored, # - it may be too restrictive (some setups expect 775 directories). # # Do not use -m 0755 and let people choose whatever they expect by # setting umask. # # We cannot accept any implementation of `mkdir' that recognizes `-p'. # Some implementations (such as Solaris 8's) are not thread-safe: if a # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' # concurrently, both version can detect that a/ is missing, but only # one can create it and the other will error out. Consequently we # restrict ourselves to GNU make (using the --version option ensures # this.) AC_DEFUN([AM_PROG_MKDIR_P], [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi AC_SUBST([mkdir_p])]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ## Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 ## Free Software Foundation, Inc. ## Originally by Gordon Matzigkeit , 1996 ## ## This file is free software; the Free Software Foundation gives ## unlimited permission to copy and/or distribute it, with or without ## modifications, as long as this notice is preserved. # serial 48 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_LINKER_BOILERPLATE # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognise shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognise a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ]) hepmc-2.06.09.orig/install-sh0000755000175000017500000002202111763470443016617 0ustar sylvestresylvestre#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" chmodcmd="$chmodprog 0755" chowncmd= chgrpcmd= stripcmd= rmcmd="$rmprog -f" mvcmd="$mvprog" src= dst= dir_arg= dstarg= no_target_directory= usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: -c (ignored) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. --help display this help and exit. --version display version info and exit. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test -n "$1"; do case $1 in -c) shift continue;; -d) dir_arg=true shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; --help) echo "$usage"; exit $?;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -s) stripcmd=$stripprog shift continue;; -t) dstarg=$2 shift shift continue;; -T) no_target_directory=true shift continue;; --version) echo "$0 $scriptversion"; exit $?;; *) # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. test -n "$dir_arg$dstarg" && break # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dstarg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dstarg" shift # fnord fi shift # arg dstarg=$arg done break;; esac done if test -z "$1"; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi for src do # Protect names starting with `-'. case $src in -*) src=./$src ;; esac if test -n "$dir_arg"; then dst=$src src= if test -d "$dst"; then mkdircmd=: chmodcmd= else mkdircmd=$mkdirprog fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dstarg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dstarg # Protect names starting with `-'. case $dst in -*) dst=./$dst ;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dstarg: Is a directory" >&2 exit 1 fi dst=$dst/`basename "$src"` fi fi # This sed command emulates the dirname command. dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` # Make sure that the destination directory exists. # Skip lots of stat calls in the usual case. if test ! -d "$dstdir"; then defaultIFS=' ' IFS="${IFS-$defaultIFS}" oIFS=$IFS # Some sh's can't handle IFS=/ for some reason. IFS='%' set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` shift IFS=$oIFS pathcomp= while test $# -ne 0 ; do pathcomp=$pathcomp$1 shift if test ! -d "$pathcomp"; then $mkdirprog "$pathcomp" # mkdir can fail with a `File exist' error in case several # install-sh are creating the directory concurrently. This # is OK. test -d "$pathcomp" || exit fi pathcomp=$pathcomp/ done fi if test -n "$dir_arg"; then $doit $mkdircmd "$dst" \ && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } else dstfile=`basename "$dst"` # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 trap '(exit $?); exit' 1 2 13 15 # Copy the file name to the temp name. $doit $cpprog "$src" "$dsttmp" && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && # Now rename the file to the real destination. { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ || { # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { if test -f "$dstdir/$dstfile"; then $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 (exit 1); exit 1 } else : fi } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" } } fi || { (exit 1); exit 1; } done # The final little trick to "correctly" pass the exit status to the exit trap. { (exit 0); exit 0 } # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: hepmc-2.06.09.orig/fio/0000755000175000017500000000000011763470444015374 5ustar sylvestresylvestrehepmc-2.06.09.orig/fio/CMakeLists.txt0000644000175000017500000000242711717503777020146 0ustar sylvestresylvestre set ( fio_source_list HEPEVT_Wrapper.cc HerwigWrapper.cc IO_HEPEVT.cc IO_HERWIG.cc ) # this library is meant to interact with Fortran and needs extra flags if(APPLE) set( CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS} -Wl,-undefined -Wl,dynamic_lookup -Wl,-single_module") endif(APPLE) # give up and only build static library for Windows if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" ) set( CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS} /ALLOWISOLATION:NO /FORCE:UNRESOLVED") else() ADD_LIBRARY (HepMCfio SHARED ${fio_source_list}) SET_TARGET_PROPERTIES (HepMCfio PROPERTIES OUTPUT_NAME HepMCfio ) SET_TARGET_PROPERTIES (HepMCfio PROPERTIES VERSION 4.0.0 SOVERSION 4 ) SET_TARGET_PROPERTIES(HepMCfio PROPERTIES CLEAN_DIRECT_OUTPUT 1) INSTALL (TARGETS HepMCfio RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib ) endif() ADD_LIBRARY (HepMCfioS STATIC ${fio_source_list}) SET_TARGET_PROPERTIES (HepMCfioS PROPERTIES OUTPUT_NAME HepMCfio ) SET_TARGET_PROPERTIES(HepMCfioS PROPERTIES CLEAN_DIRECT_OUTPUT 1) INSTALL (TARGETS HepMCfioS RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib ) hepmc-2.06.09.orig/fio/Makefile.in0000644000175000017500000003612711763470444017452 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = fio DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(libdir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) libHepMCfio_la_LIBADD = am_libHepMCfio_la_OBJECTS = HEPEVT_Wrapper.lo IO_HEPEVT.lo \ IO_HERWIG.lo HerwigWrapper.lo libHepMCfio_la_OBJECTS = $(am_libHepMCfio_la_OBJECTS) DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/HepMC depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libHepMCfio_la_SOURCES) DIST_SOURCES = $(libHepMCfio_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INCLUDES = -I$(top_builddir) -I$(top_srcdir) libHepMCfio_la_SOURCES = \ HEPEVT_Wrapper.cc \ IO_HEPEVT.cc \ IO_HERWIG.cc \ HerwigWrapper.cc lib_LTLIBRARIES = libHepMCfio.la @BUILD_VISUAL_FALSE@lib_shared = libHepMC.so @BUILD_VISUAL_TRUE@lib_shared = HepMC.$(SHEXT) # shared library versioning libHepMCfio_la_LDFLAGS = $(LIBRARY_VERSION) all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fio/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign fio/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libHepMCfio.la: $(libHepMCfio_la_OBJECTS) $(libHepMCfio_la_DEPENDENCIES) $(CXXLINK) -rpath $(libdir) $(libHepMCfio_la_LDFLAGS) $(libHepMCfio_la_OBJECTS) $(libHepMCfio_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HEPEVT_Wrapper.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HerwigWrapper.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IO_HEPEVT.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IO_HERWIG.Plo@am__quote@ .cc.o: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-exec-am: install-libLTLIBRARIES install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-info-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/fio/HerwigWrapper.cc0000644000175000017500000000202311374257600020461 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // HerwigWrapper.cc // Author: Lynn Garren // // ---------------------------------------------------------------------- #ifdef _WIN32 // Platform: Windows MS Visual C++ // Sorry, there is NO version currently available for Vusual C++. #else #include #include "HepMC/HerwigWrapper.h" #include "HepMC/GenCrossSection.h" // declare the struct here to keep the shared library happy struct hwgev hwevnt_; namespace HepMC { GenCrossSection getHerwigCrossSection(int ngen) { HepMC::GenCrossSection xsec; // set cross section information and convert to pb (HepMC convention) double xsecval = hwevnt.AVWGT * 1000.0; // statistical error // Herwig has a better calculation of the error, // but that information does not appear to be saved anywhere double xsecerr = xsecval / std::sqrt((double)ngen); // set and return cross section information xsec.set_cross_section(xsecval, xsecerr); return xsec; } } // HepMC #endif //Platform hepmc-2.06.09.orig/fio/IO_HEPEVT.cc0000644000175000017500000003335711003724360017262 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, January 2000 // HEPEVT IO class ////////////////////////////////////////////////////////////////////////// #include "HepMC/IO_HEPEVT.h" #include "HepMC/GenEvent.h" #include // needed for formatted output using sprintf namespace HepMC { IO_HEPEVT::IO_HEPEVT() : m_trust_mothers_before_daughters(1), m_trust_both_mothers_and_daughters(0), m_print_inconsistency_errors(1), m_trust_beam_particles(true) {} IO_HEPEVT::~IO_HEPEVT(){} void IO_HEPEVT::print( std::ostream& ostr ) const { ostr << "IO_HEPEVT: reads an event from the FORTRAN HEPEVT " << "common block. \n" << " trust_mothers_before_daughters = " << m_trust_mothers_before_daughters << " trust_both_mothers_and_daughters = " << m_trust_both_mothers_and_daughters << ", print_inconsistency_errors = " << m_print_inconsistency_errors << std::endl; } bool IO_HEPEVT::fill_next_event( GenEvent* evt ) { /// read one event from the HEPEVT common block and fill GenEvent /// return T/F =success/failure /// /// For HEPEVT commons built with the luhepc routine of Pythia 5.7 /// the children pointers are not always correct (i.e. there is /// oftentimes an internal inconsistency between the parents and /// children pointers). The parent pointers always seem to be correct. /// Thus the switch trust_mothers_before_daughters=1 is appropriate for /// pythia. NOTE: you should also set the switch MSTP(128) = 2 in /// pythia (not the default!), so that pythia doesn't /// store two copies of resonances in the event record. /// The situation is opposite for the HEPEVT which comes from Isajet /// via stdhep, so then use the switch trust_mothers_before_daughters=0 // // 1. test that evt pointer is not null and set event number if ( !evt ) { std::cerr << "IO_HEPEVT::fill_next_event error - passed null event." << std::endl; return false; } evt->set_event_number( HEPEVT_Wrapper::event_number() ); // // 2. create a particle instance for each HEPEVT entry and fill a map // create a vector which maps from the HEPEVT particle index to the // GenParticle address // (+1 in size accounts for hepevt_particle[0] which is unfilled) std::vector hepevt_particle( HEPEVT_Wrapper::number_entries()+1 ); hepevt_particle[0] = 0; for ( int i1 = 1; i1 <= HEPEVT_Wrapper::number_entries(); ++i1 ) { hepevt_particle[i1] = build_particle(i1); } std::set new_vertices; // // Here we assume that the first two particles in the list // are the incoming beam particles. if( trust_beam_particles() ) { evt->set_beam_particles( hepevt_particle[1], hepevt_particle[2] ); } // // 3.+4. loop over HEPEVT particles AGAIN, this time creating vertices for ( int i = 1; i <= HEPEVT_Wrapper::number_entries(); ++i ) { // We go through and build EITHER the production or decay // vertex for each entry in hepevt, depending on the switch // m_trust_mothers_before_daughters (new 2001-02-28) // Note: since the HEPEVT pointers are bi-directional, it is /// sufficient to do one or the other. // // 3. Build the production_vertex (if necessary) if ( m_trust_mothers_before_daughters || m_trust_both_mothers_and_daughters ) { build_production_vertex( i, hepevt_particle, evt ); } // // 4. Build the end_vertex (if necessary) // Identical steps as for production vertex if ( !m_trust_mothers_before_daughters || m_trust_both_mothers_and_daughters ) { build_end_vertex( i, hepevt_particle, evt ); } } // 5. 01.02.2000 // handle the case of particles in HEPEVT which come from nowhere - // i.e. particles without mothers or daughters. // These particles need to be attached to a vertex, or else they // will never become part of the event. check for this situation for ( int i3 = 1; i3 <= HEPEVT_Wrapper::number_entries(); ++i3 ) { if ( !hepevt_particle[i3]->end_vertex() && !hepevt_particle[i3]->production_vertex() ) { GenVertex* prod_vtx = new GenVertex(); prod_vtx->add_particle_out( hepevt_particle[i3] ); evt->add_vertex( prod_vtx ); } } return true; } void IO_HEPEVT::write_event( const GenEvent* evt ) { /// This writes an event out to the HEPEVT common block. The daughters /// field is NOT filled, because it is possible to contruct graphs /// for which the mothers and daughters cannot both be make sequential. /// This is consistent with how pythia fills HEPEVT (daughters are not /// necessarily filled properly) and how IO_HEPEVT reads HEPEVT. // if ( !evt ) return; // // map all particles onto a unique index std::vector index_to_particle( HEPEVT_Wrapper::max_number_entries()+1 ); index_to_particle[0]=0; std::map particle_to_index; int particle_counter=0; for ( GenEvent::vertex_const_iterator v = evt->vertices_begin(); v != evt->vertices_end(); ++v ) { // all "mothers" or particles_in are kept adjacent in the list // so that the mother indices in hepevt can be filled properly for ( GenVertex::particles_in_const_iterator p1 = (*v)->particles_in_const_begin(); p1 != (*v)->particles_in_const_end(); ++p1 ) { ++particle_counter; if ( particle_counter > HEPEVT_Wrapper::max_number_entries() ) break; index_to_particle[particle_counter] = *p1; particle_to_index[*p1] = particle_counter; } // daughters are entered only if they aren't a mother of // another vtx for ( GenVertex::particles_out_const_iterator p2 = (*v)->particles_out_const_begin(); p2 != (*v)->particles_out_const_end(); ++p2 ) { if ( !(*p2)->end_vertex() ) { ++particle_counter; if ( particle_counter > HEPEVT_Wrapper::max_number_entries() ) { break; } index_to_particle[particle_counter] = *p2; particle_to_index[*p2] = particle_counter; } } } if ( particle_counter > HEPEVT_Wrapper::max_number_entries() ) { particle_counter = HEPEVT_Wrapper::max_number_entries(); } // // fill the HEPEVT event record HEPEVT_Wrapper::set_event_number( evt->event_number() ); HEPEVT_Wrapper::set_number_entries( particle_counter ); for ( int i = 1; i <= particle_counter; ++i ) { HEPEVT_Wrapper::set_status( i, index_to_particle[i]->status() ); HEPEVT_Wrapper::set_id( i, index_to_particle[i]->pdg_id() ); FourVector m = index_to_particle[i]->momentum(); HEPEVT_Wrapper::set_momentum( i, m.px(), m.py(), m.pz(), m.e() ); HEPEVT_Wrapper::set_mass( i, index_to_particle[i]->generatedMass() ); // there should ALWAYS be particles in any vertex, but some generators // are making non-kosher HepMC events if ( index_to_particle[i]->production_vertex() && index_to_particle[i]->production_vertex()->particles_in_size()) { FourVector p = index_to_particle[i]-> production_vertex()->position(); HEPEVT_Wrapper::set_position( i, p.x(), p.y(), p.z(), p.t() ); int num_mothers = index_to_particle[i]->production_vertex()-> particles_in_size(); int first_mother = find_in_map( particle_to_index, *(index_to_particle[i]-> production_vertex()-> particles_in_const_begin())); int last_mother = first_mother + num_mothers - 1; if ( first_mother == 0 ) last_mother = 0; HEPEVT_Wrapper::set_parents( i, first_mother, last_mother ); } else { HEPEVT_Wrapper::set_position( i, 0, 0, 0, 0 ); HEPEVT_Wrapper::set_parents( i, 0, 0 ); } HEPEVT_Wrapper::set_children( i, 0, 0 ); } } void IO_HEPEVT::build_production_vertex(int i, std::vector& hepevt_particle, GenEvent* evt ) { /// /// for particle in HEPEVT with index i, build a production vertex /// if appropriate, and add that vertex to the event GenParticle* p = hepevt_particle[i]; // a. search to see if a production vertex already exists int mother = HEPEVT_Wrapper::first_parent(i); GenVertex* prod_vtx = p->production_vertex(); while ( !prod_vtx && mother > 0 ) { prod_vtx = hepevt_particle[mother]->end_vertex(); if ( prod_vtx ) prod_vtx->add_particle_out( p ); // increment mother for next iteration if ( ++mother > HEPEVT_Wrapper::last_parent(i) ) mother = 0; } // b. if no suitable production vertex exists - and the particle // has atleast one mother or position information to store - // make one FourVector prod_pos( HEPEVT_Wrapper::x(i), HEPEVT_Wrapper::y(i), HEPEVT_Wrapper::z(i), HEPEVT_Wrapper::t(i) ); if ( !prod_vtx && (HEPEVT_Wrapper::number_parents(i)>0 || prod_pos!=FourVector(0,0,0,0)) ) { prod_vtx = new GenVertex(); prod_vtx->add_particle_out( p ); evt->add_vertex( prod_vtx ); } // c. if prod_vtx doesn't already have position specified, fill it if ( prod_vtx && prod_vtx->position()==FourVector(0,0,0,0) ) { prod_vtx->set_position( prod_pos ); } // d. loop over mothers to make sure their end_vertices are // consistent mother = HEPEVT_Wrapper::first_parent(i); while ( prod_vtx && mother > 0 ) { if ( !hepevt_particle[mother]->end_vertex() ) { // if end vertex of the mother isn't specified, do it now prod_vtx->add_particle_in( hepevt_particle[mother] ); } else if (hepevt_particle[mother]->end_vertex() != prod_vtx ) { // problem scenario --- the mother already has a decay // vertex which differs from the daughter's produciton // vertex. This means there is internal // inconsistency in the HEPEVT event record. Print an // error // Note: we could provide a fix by joining the two // vertices with a dummy particle if the problem // arrises often with any particular generator. if ( m_print_inconsistency_errors ) std::cerr << "HepMC::IO_HEPEVT: inconsistent mother/daugher " << "information in HEPEVT event " << HEPEVT_Wrapper::event_number() << ". \n I recommend you try " << "inspecting the event first with " << "\n\tHEPEVT_Wrapper::check_hepevt_consistency()" << "\n This warning can be turned off with the " << "IO_HEPEVT::print_inconsistency_errors switch." << std::endl; } if ( ++mother > HEPEVT_Wrapper::last_parent(i) ) mother = 0; } } void IO_HEPEVT::build_end_vertex ( int i, std::vector& hepevt_particle, GenEvent* evt ) { /// /// for particle in HEPEVT with index i, build an end vertex /// if appropriate, and add that vertex to the event // Identical steps as for build_production_vertex GenParticle* p = hepevt_particle[i]; // a. int daughter = HEPEVT_Wrapper::first_child(i); GenVertex* end_vtx = p->end_vertex(); while ( !end_vtx && daughter > 0 ) { end_vtx = hepevt_particle[daughter]->production_vertex(); if ( end_vtx ) end_vtx->add_particle_in( p ); if ( ++daughter > HEPEVT_Wrapper::last_child(i) ) daughter = 0; } // b. (different from 3c. because HEPEVT particle can not know its // decay position ) if ( !end_vtx && HEPEVT_Wrapper::number_children(i)>0 ) { end_vtx = new GenVertex(); end_vtx->add_particle_in( p ); evt->add_vertex( end_vtx ); } // c+d. loop over daughters to make sure their production vertices // point back to the current vertex. // We get the vertex position from the daughter as well. daughter = HEPEVT_Wrapper::first_child(i); while ( end_vtx && daughter > 0 ) { if ( !hepevt_particle[daughter]->production_vertex() ) { // if end vertex of the mother isn't specified, do it now end_vtx->add_particle_out( hepevt_particle[daughter] ); // // 2001-03-29 M.Dobbs, fill vertex the position. if ( end_vtx->position()==FourVector(0,0,0,0) ) { FourVector prod_pos( HEPEVT_Wrapper::x(daughter), HEPEVT_Wrapper::y(daughter), HEPEVT_Wrapper::z(daughter), HEPEVT_Wrapper::t(daughter) ); if ( prod_pos != FourVector(0,0,0,0) ) { end_vtx->set_position( prod_pos ); } } } else if (hepevt_particle[daughter]->production_vertex() != end_vtx){ // problem scenario --- the daughter already has a prod // vertex which differs from the mother's end // vertex. This means there is internal // inconsistency in the HEPEVT event record. Print an // error if ( m_print_inconsistency_errors ) std::cerr << "HepMC::IO_HEPEVT: inconsistent mother/daugher " << "information in HEPEVT event " << HEPEVT_Wrapper::event_number() << ". \n I recommend you try " << "inspecting the event first with " << "\n\tHEPEVT_Wrapper::check_hepevt_consistency()" << "\n This warning can be turned off with the " << "IO_HEPEVT::print_inconsistency_errors switch." << std::endl; } if ( ++daughter > HEPEVT_Wrapper::last_child(i) ) daughter = 0; } if ( !p->end_vertex() && !p->production_vertex() ) { // Added 2001-11-04, to try and handle Isajet problems. build_production_vertex( i, hepevt_particle, evt ); } } GenParticle* IO_HEPEVT::build_particle( int index ) { /// Builds a particle object corresponding to index in HEPEVT // GenParticle* p = new GenParticle( FourVector( HEPEVT_Wrapper::px(index), HEPEVT_Wrapper::py(index), HEPEVT_Wrapper::pz(index), HEPEVT_Wrapper::e(index) ), HEPEVT_Wrapper::id(index), HEPEVT_Wrapper::status(index) ); p->setGeneratedMass( HEPEVT_Wrapper::m(index) ); p->suggest_barcode( index ); return p; } int IO_HEPEVT::find_in_map( const std::map& m, GenParticle* p) const { std::map::const_iterator iter = m.find(p); if ( iter == m.end() ) return 0; return iter->second; } } // HepMC hepmc-2.06.09.orig/fio/.cvsignore0000644000175000017500000000001410361513166017357 0ustar sylvestresylvestreMakefile.in hepmc-2.06.09.orig/fio/Makefile.am0000644000175000017500000000061511653570601017424 0ustar sylvestresylvestre## Process this file with automake to produce Makefile.in INCLUDES = -I$(top_builddir) -I$(top_srcdir) libHepMCfio_la_SOURCES = \ HEPEVT_Wrapper.cc \ IO_HEPEVT.cc \ IO_HERWIG.cc \ HerwigWrapper.cc lib_LTLIBRARIES = libHepMCfio.la if BUILD_VISUAL lib_shared = HepMC.$(SHEXT) else lib_shared = libHepMC.so endif # shared library versioning libHepMCfio_la_LDFLAGS = $(LIBRARY_VERSION) hepmc-2.06.09.orig/fio/IO_HERWIG.cc0000644000175000017500000007475511030346057017266 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, October 2002 // Herwig 6.400 IO class ////////////////////////////////////////////////////////////////////////// #include "HepMC/IO_HERWIG.h" #include "HepMC/GenEvent.h" #include // needed for formatted output using sprintf namespace HepMC { IO_HERWIG::IO_HERWIG() : m_trust_mothers_before_daughters(false), m_trust_both_mothers_and_daughters(true), m_print_inconsistency_errors(true), m_no_gaps_in_barcodes(true), m_herwig_to_pdg_id(100,0) { // These arrays are copied from Lynn Garren's stdhep 5.01-5.06. // see http://cepa.fnal.gov/psm/stdhep/ // Translation from HERWIG particle ID's to PDG particle ID's. m_herwig_to_pdg_id[1] =1; m_herwig_to_pdg_id[2] =2; m_herwig_to_pdg_id[3] =3; m_herwig_to_pdg_id[4] =4; m_herwig_to_pdg_id[5] =5; m_herwig_to_pdg_id[6] =6; m_herwig_to_pdg_id[7] =7; m_herwig_to_pdg_id[8] =8; m_herwig_to_pdg_id[11] =11; m_herwig_to_pdg_id[12] =12; m_herwig_to_pdg_id[13] =13; m_herwig_to_pdg_id[14] =14; m_herwig_to_pdg_id[15] =15; m_herwig_to_pdg_id[16] =16; m_herwig_to_pdg_id[21] =21; m_herwig_to_pdg_id[22] =22; m_herwig_to_pdg_id[23] =23; m_herwig_to_pdg_id[24] =24; m_herwig_to_pdg_id[25] =25; m_herwig_to_pdg_id[26] =51; // <-- H_L0 (redundant with h0(25)) m_herwig_to_pdg_id[32] =32; m_herwig_to_pdg_id[35] =35; m_herwig_to_pdg_id[36] =36; m_herwig_to_pdg_id[37] =37; m_herwig_to_pdg_id[39] =39; m_herwig_to_pdg_id[40] =40; //Charybdis Black Hole m_herwig_to_pdg_id[81] =81; m_herwig_to_pdg_id[82] =82; m_herwig_to_pdg_id[83] =83; m_herwig_to_pdg_id[84] =84; m_herwig_to_pdg_id[85] =85; m_herwig_to_pdg_id[86] =86; m_herwig_to_pdg_id[87] =87; m_herwig_to_pdg_id[88] =88; m_herwig_to_pdg_id[89] =89; m_herwig_to_pdg_id[90] =90; m_herwig_to_pdg_id[91] =91; m_herwig_to_pdg_id[92] =92; m_herwig_to_pdg_id[93] =93; m_herwig_to_pdg_id[94] =94; m_herwig_to_pdg_id[95] =95; m_herwig_to_pdg_id[96] =96; m_herwig_to_pdg_id[97] =97; m_herwig_to_pdg_id[98] =9920022; // <-- remnant photon m_herwig_to_pdg_id[99] =9922212; // <-- remnant nucleon // These particle ID's have no antiparticle, so aren't allowed. m_no_antiparticles.insert(-21); m_no_antiparticles.insert(-22); m_no_antiparticles.insert(-23); m_no_antiparticles.insert(-25); m_no_antiparticles.insert(-51); m_no_antiparticles.insert(-35); m_no_antiparticles.insert(-36); } IO_HERWIG::~IO_HERWIG(){} void IO_HERWIG::print( std::ostream& ostr ) const { ostr << "IO_HERWIG: reads an event from the FORTRAN Herwig HEPEVT " << "common block. \n" << " trust_mothers_before_daughters = " << m_trust_mothers_before_daughters << " trust_both_mothers_and_daughters = " << m_trust_both_mothers_and_daughters << " print_inconsistency_errors = " << m_print_inconsistency_errors << std::endl; } bool IO_HERWIG::fill_next_event( GenEvent* evt ) { /// read one event from the Herwig HEPEVT common block and fill GenEvent /// return T/F =success/failure // // 0. Test that evt pointer is not null and set event number if ( !evt ) { std::cerr << "IO_HERWIG::fill_next_event error - passed null event." << std::endl; return false; } // 1. First we have to fix the HEPEVT input, which is all mucked up for // herwig. repair_hepevt(); evt->set_event_number( HEPEVT_Wrapper::event_number() ); // Herwig units are GeV and mm // It would be nice to set the units right here, // but this could cause problems with existing code that // might convert GeV to MeV without calling the appropriate HepMC method // // 2. create a particle instance for each HEPEVT entry and fill a map // create a vector which maps from the HEPEVT particle index to the // GenParticle address // (+1 in size accounts for hepevt_particle[0] which is unfilled) std::vector hepevt_particle( HEPEVT_Wrapper::number_entries()+1 ); hepevt_particle[0] = 0; for ( int i1 = 1; i1 <= HEPEVT_Wrapper::number_entries(); ++i1 ) { hepevt_particle[i1] = build_particle(i1); } std::set new_vertices; // // Here we assume that the first two particles in the list // are the incoming beam particles. // Best make sure this is done before any rearranging... evt->set_beam_particles( hepevt_particle[1], hepevt_particle[2] ); // // 3. We need to take special care with the hard process // vertex. The problem we are trying to avoid is when the // partons entering the hard process also have daughters from // the parton shower. When this happens, each one can get its // own decay vertex, making it difficult to join them // later. We handle it by joining them together first, then // the other daughters get added on later. // Find the partons entering the hard vertex (status codes 121, 122). int index_121 = 0; int index_122 = 0; for ( int i = 1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { if ( HEPEVT_Wrapper::status(i)==121 ) index_121=i; if ( HEPEVT_Wrapper::status(i)==122 ) index_122=i; if ( index_121!=0 && index_122!=0 ) break; } if ( index_121 && index_122 ) { GenVertex* hard_vtx = new GenVertex(); hard_vtx->add_particle_in( hepevt_particle[index_121] ); hard_vtx->add_particle_in( hepevt_particle[index_122] ); // evt->add_vertex( hard_vtx ); // not necessary, its done in // set_signal_process_vertex //BPK - Atlas -> index_hard retained if it is a boson int index_hard = 0; for ( int i = 1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { if ( HEPEVT_Wrapper::status(i)==120 ) index_hard=i; if ( index_hard!=0 ) break; } if ( index_hard!=0) { hard_vtx->add_particle_out( hepevt_particle[index_hard] ); GenVertex* hard_vtx2 = new GenVertex(); hard_vtx2->add_particle_in( hepevt_particle[index_hard] ); for ( int i = 1; i <= HEPEVT_Wrapper::number_entries(); ++i ) { if ( HEPEVT_Wrapper::first_parent(i)==index_hard ) { hard_vtx2->add_particle_out( hepevt_particle[i] ); } } evt->set_signal_process_vertex( hard_vtx ); evt->set_signal_process_vertex( hard_vtx2 ); } else { evt->set_signal_process_vertex( hard_vtx ); } //BPK - Atlas -< } // // 4. loop over HEPEVT particles AGAIN, this time creating vertices for ( int i = 1; i <= HEPEVT_Wrapper::number_entries(); ++i ) { // We go through and build EITHER the production or decay // vertex for each entry in hepevt, depending on the switch // m_trust_mothers_before_daughters (new 2001-02-28) // Note: since the HEPEVT pointers are bi-directional, it is /// sufficient to do one or the other. // // 3. Build the production_vertex (if necessary) if ( m_trust_mothers_before_daughters || m_trust_both_mothers_and_daughters ) { build_production_vertex( i, hepevt_particle, evt ); } // // 4. Build the end_vertex (if necessary) // Identical steps as for production vertex if ( !m_trust_mothers_before_daughters || m_trust_both_mothers_and_daughters ) { build_end_vertex( i, hepevt_particle, evt ); } } // 5. 01.02.2000 // handle the case of particles in HEPEVT which come from nowhere - // i.e. particles without mothers or daughters. // These particles need to be attached to a vertex, or else they // will never become part of the event. check for this situation. for ( int i3 = 1; i3 <= HEPEVT_Wrapper::number_entries(); ++i3 ) { // Herwig also has some non-physical entries in HEPEVT // like CMS, HARD, and CONE. These are flagged by // repair_hepevt by making their status and id zero. We // delete those particles here. if ( hepevt_particle[i3] && !hepevt_particle[i3]->parent_event() && !hepevt_particle[i3]->pdg_id() && !hepevt_particle[i3]->status() ) { //std::cout << "IO_HERWIG::fill_next_event is deleting null " // << "particle" << std::endl; //hepevt_particle[i3]->print(); delete hepevt_particle[i3]; } else if ( hepevt_particle[i3] && !hepevt_particle[i3]->end_vertex() && !hepevt_particle[i3]->production_vertex() ) { GenVertex* prod_vtx = new GenVertex(); prod_vtx->add_particle_out( hepevt_particle[i3] ); evt->add_vertex( prod_vtx ); } } return true; } void IO_HERWIG::build_production_vertex(int i, std::vector& hepevt_particle, GenEvent* evt ) { /// /// for particle in HEPEVT with index i, build a production vertex /// if appropriate, and add that vertex to the event GenParticle* p = hepevt_particle[i]; // a. search to see if a production vertex already exists int mother = HEPEVT_Wrapper::first_parent(i); GenVertex* prod_vtx = p->production_vertex(); while ( !prod_vtx && mother > 0 ) { prod_vtx = hepevt_particle[mother]->end_vertex(); if ( prod_vtx ) prod_vtx->add_particle_out( p ); // increment mother for next iteration if ( ++mother > HEPEVT_Wrapper::last_parent(i) ) mother = 0; } // b. if no suitable production vertex exists - and the particle // has atleast one mother or position information to store - // make one FourVector prod_pos( HEPEVT_Wrapper::x(i), HEPEVT_Wrapper::y(i), HEPEVT_Wrapper::z(i), HEPEVT_Wrapper::t(i) ); if ( !prod_vtx && (HEPEVT_Wrapper::number_parents(i)>0 || prod_pos!=FourVector(0,0,0,0)) ) { prod_vtx = new GenVertex(); prod_vtx->add_particle_out( p ); evt->add_vertex( prod_vtx ); } // c. if prod_vtx doesn't already have position specified, fill it if ( prod_vtx && prod_vtx->position()==FourVector(0,0,0,0) ) { prod_vtx->set_position( prod_pos ); } // d. loop over mothers to make sure their end_vertices are // consistent mother = HEPEVT_Wrapper::first_parent(i); while ( prod_vtx && mother > 0 ) { if ( !hepevt_particle[mother]->end_vertex() ) { // if end vertex of the mother isn't specified, do it now prod_vtx->add_particle_in( hepevt_particle[mother] ); } else if (hepevt_particle[mother]->end_vertex() != prod_vtx ) { // problem scenario --- the mother already has a decay // vertex which differs from the daughter's produciton // vertex. This means there is internal // inconsistency in the HEPEVT event record. Print an // error // Note: we could provide a fix by joining the two // vertices with a dummy particle if the problem // arrises often with any particular generator. if ( m_print_inconsistency_errors ) { std::cerr << "HepMC::IO_HERWIG: inconsistent mother/daugher " << "information in HEPEVT event " << HEPEVT_Wrapper::event_number() << ". \n I recommend you try " << "inspecting the event first with " << "\n\tHEPEVT_Wrapper::check_hepevt_consistency()" << "\n This warning can be turned off with the " << "IO_HERWIG::print_inconsistency_errors switch." << std::endl; hepevt_particle[mother]->print(std::cerr); std::cerr << "problem vertices are: (prod_vtx, mother)" << std::endl; if ( prod_vtx ) prod_vtx->print(std::cerr); hepevt_particle[mother]->end_vertex()->print(std::cerr); } } if ( ++mother > HEPEVT_Wrapper::last_parent(i) ) mother = 0; } } void IO_HERWIG::build_end_vertex ( int i, std::vector& hepevt_particle, GenEvent* evt ) { /// /// for particle in HEPEVT with index i, build an end vertex /// if appropriate, and add that vertex to the event // Identical steps as for build_production_vertex GenParticle* p = hepevt_particle[i]; // a. int daughter = HEPEVT_Wrapper::first_child(i); GenVertex* end_vtx = p->end_vertex(); while ( !end_vtx && daughter > 0 ) { end_vtx = hepevt_particle[daughter]->production_vertex(); if ( end_vtx ) end_vtx->add_particle_in( p ); if ( ++daughter > HEPEVT_Wrapper::last_child(i) ) daughter = 0; } // b. (different from 3c. because HEPEVT particle can not know its // decay position ) if ( !end_vtx && HEPEVT_Wrapper::number_children(i)>0 ) { end_vtx = new GenVertex(); end_vtx->add_particle_in( p ); evt->add_vertex( end_vtx ); } // c+d. loop over daughters to make sure their production vertices // point back to the current vertex. // We get the vertex position from the daughter as well. daughter = HEPEVT_Wrapper::first_child(i); while ( end_vtx && daughter > 0 ) { if ( !hepevt_particle[daughter]->production_vertex() ) { // if end vertex of the mother isn't specified, do it now end_vtx->add_particle_out( hepevt_particle[daughter] ); // // 2001-03-29 M.Dobbs, fill vertex the position. if ( end_vtx->position()==FourVector(0,0,0,0) ) { FourVector prod_pos( HEPEVT_Wrapper::x(daughter), HEPEVT_Wrapper::y(daughter), HEPEVT_Wrapper::z(daughter), HEPEVT_Wrapper::t(daughter) ); if ( prod_pos != FourVector(0,0,0,0) ) { end_vtx->set_position( prod_pos ); } } } else if (hepevt_particle[daughter]->production_vertex() != end_vtx){ // problem scenario --- the daughter already has a prod // vertex which differs from the mother's end // vertex. This means there is internal // inconsistency in the HEPEVT event record. Print an // error if ( m_print_inconsistency_errors ) std::cerr << "HepMC::IO_HERWIG: inconsistent mother/daugher " << "information in HEPEVT event " << HEPEVT_Wrapper::event_number() << ". \n I recommend you try " << "inspecting the event first with " << "\n\tHEPEVT_Wrapper::check_hepevt_consistency()" << "\n This warning can be turned off with the " << "IO_HERWIG::print_inconsistency_errors switch." << std::endl; } if ( ++daughter > HEPEVT_Wrapper::last_child(i) ) daughter = 0; } if ( !p->end_vertex() && !p->production_vertex() ) { // Added 2001-11-04, to try and handle Isajet problems. build_production_vertex( i, hepevt_particle, evt ); } } GenParticle* IO_HERWIG::build_particle( int index ) { /// Builds a particle object corresponding to index in HEPEVT // GenParticle* p = new GenParticle( FourVector( HEPEVT_Wrapper::px(index), HEPEVT_Wrapper::py(index), HEPEVT_Wrapper::pz(index), HEPEVT_Wrapper::e(index) ), HEPEVT_Wrapper::id(index), HEPEVT_Wrapper::status(index) ); p->setGeneratedMass( HEPEVT_Wrapper::m(index) ); p->suggest_barcode( index ); return p; } int IO_HERWIG::find_in_map( const std::map& m, GenParticle* p) const { std::map::const_iterator iter = m.find(p); if ( iter == m.end() ) return 0; return iter->second; } void IO_HERWIG::repair_hepevt() const { /// This routine takes the HEPEVT common block as used in HERWIG, /// and converts it into the HEPEVT common block in the standard format /// /// This means it: /// - removes the color structure, which herwig overloads /// into the mother/daughter fields /// - zeros extra entries for hard subprocess, etc. /// /// /// Special HERWIG status codes /// 101,102 colliding beam particles /// 103 beam-beam collision CMS vector /// 120 hard subprocess CMS vector /// 121,122 hard subprocess colliding partons /// 123-129 hard subprocess outgoing particles /// 141-149 (ID=94) mirror image of hard subrpocess particles /// 100 (ID=0 cone) /// /// Special HERWIG particle id's /// 91 clusters /// 94 jets /// 0 others with no pdg code // Make sure hepvt isn't empty. if ( HEPEVT_Wrapper::number_entries() <= 0 ) return; // Find the index of the beam-beam collision and of the hard subprocess // Later we will assume that // 101 ---> 121 \. // X Hard subprocess // 102 ---> 122 / // int index_collision = 0; int index_hard = 0; int index_101 = 0; int index_102 = 0; int index_121 = 0; int index_122 = 0; for ( int i = 1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { if ( HEPEVT_Wrapper::status(i)==101 ) index_101=i; if ( HEPEVT_Wrapper::status(i)==102 ) index_102=i; if ( HEPEVT_Wrapper::status(i)==103 ) index_collision=i; if ( HEPEVT_Wrapper::status(i)==120 ) index_hard=i; if ( HEPEVT_Wrapper::status(i)==121 ) index_121=i; if ( HEPEVT_Wrapper::status(i)==122 ) index_122=i; if ( index_collision!=0 && index_hard!=0 && index_101!=0 && index_102!=0 && index_121!=0 && index_122!=0 ) break; } // The mother daughter information for the hard subprocess entry (120) // IS correct, whereas the information for the particles participating // in the hard subprocess contains instead the color flow relationships // Transfer the hard subprocess info onto the other particles // in the hard subprocess. // // We cannot specify daughters of the incoming hard process particles // because they have some daughters (their showered versions) which // are not adjacent in the particle record, so we cannot properly // set the daughter indices in hepevt. // if (index_121) HEPEVT_Wrapper::set_parents(index_121, index_101, 0 ); if (index_121) HEPEVT_Wrapper::set_children( index_121, 0, 0 ); if (index_122) HEPEVT_Wrapper::set_parents(index_122, index_102, 0 ); if (index_122) HEPEVT_Wrapper::set_children( index_122, 0, 0 ); for ( int i = HEPEVT_Wrapper::first_child(index_hard); i <= HEPEVT_Wrapper::last_child(index_hard); i++ ) { //BPK - Atlas -> if (index_hard && HEPEVT_Wrapper::id(index_hard) == 0 ) { HEPEVT_Wrapper::set_parents( i, HEPEVT_Wrapper::first_parent(index_hard), HEPEVT_Wrapper::last_parent(index_hard) ); //BPK -> inconsistency in HWHGUP, desc from hard vert should point to it. } else if ( HEPEVT_Wrapper::first_parent(i)!=index_hard) { HEPEVT_Wrapper::set_parents(i,index_hard,HEPEVT_Wrapper::last_parent(i) ); } //BPK - Atlas -< // When the direct descendants of the hard process are hadrons, // then the 2nd child contains color flow information, and so // we zero it. // However, if the direct descendant is status=195, then it is // a non-hadron, and so the 2nd child does contain real mother // daughter relationships. ( particularly relevant for H->WW, // April 18, 2003 ) // BPK - part of the inconsistency in HWHGUP problem if ( HEPEVT_Wrapper::status(i) != 195 && HEPEVT_Wrapper::status(i) != 155 ) { HEPEVT_Wrapper::set_children(i,HEPEVT_Wrapper::first_child(i),0); } } // now zero the collision and hard entries. //BPK - Atlas -> if (index_hard && HEPEVT_Wrapper::id(index_hard) == 0 ) zero_hepevt_entry(index_hard); if (index_hard && HEPEVT_Wrapper::id(index_collision) == 0 ) zero_hepevt_entry(index_collision); //BPK - Atlas -< // Loop over the particles individually and handle oddities for ( int i=1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { // ----------- Fix ID codes ---------- // particles with ID=94 are mirror images of their mothers: if ( HEPEVT_Wrapper::id(i)==94 ) { HEPEVT_Wrapper::set_id( i, HEPEVT_Wrapper::id( HEPEVT_Wrapper::first_parent(i) ) ); } // ----------- fix STATUS codes ------ // status=100 particles are "cones" which carry only color info // throw them away if ( HEPEVT_Wrapper::status(i)==100 ) zero_hepevt_entry(i); // NOTE: status 101,102 particles are the beam particles. // status 121,129 particles are the hard subprocess particles // we choose to allow the herwig particles to have herwig // specific codes, and so we don't bother to change these // to status =3. // ----------- fix some MOTHER/DAUGHTER relationships // Whenever the mother points to the hard process, it is referring // to a color flow, so we zero it. if ( HEPEVT_Wrapper::last_parent(i)==index_hard ) { HEPEVT_Wrapper::set_parents( i, HEPEVT_Wrapper::first_parent(i), 0 ); } // It makes no sense to have a mother that is younger than you are! if ( HEPEVT_Wrapper::first_parent(i) >= i ) { HEPEVT_Wrapper::set_parents( i, 0, 0 ); } if ( HEPEVT_Wrapper::last_parent(i) >= i ) { HEPEVT_Wrapper::set_parents( i, HEPEVT_Wrapper::first_parent(i), 0 ); } // Whenever the second mother/daughter has a lower index than the // first, it means the second mother/daughter contains color // info. Purge it. if ( HEPEVT_Wrapper::last_parent(i) <= HEPEVT_Wrapper::first_parent(i) ) { HEPEVT_Wrapper::set_parents( i, HEPEVT_Wrapper::first_parent(i), 0 ); } if ( HEPEVT_Wrapper::last_child(i) <= HEPEVT_Wrapper::first_child(i) ) { HEPEVT_Wrapper::set_children( i, HEPEVT_Wrapper::first_child(i), 0 ); } // The mothers & daughters of a soft centre of mass (stat=170) seem // to be correct, but they are out of sequence. The information is // elsewhere in the event record, so zero it. // if ( HEPEVT_Wrapper::status(i) == 170 ) { HEPEVT_Wrapper::set_parents( i, 0, 0 ); HEPEVT_Wrapper::set_children( i, 0, 0 ); } // Recognise clusters. // Case 1: cluster has particle parents. // Clusters normally DO point to its two // correct mothers, but those 2 mothers are rarely adjacent in the // event record ... so the mother information might say something // like 123,48 where index123 and index48 really are the correct // mothers... however the hepevt standard states that the mother // pointers should give the index range. So we would have to // reorder the event record and add entries if we wanted to use // it. Instead we just zero the mothers, since all of that // information is contained in the daughter information of the // mothers. // Case 2: cluster has a soft process centre of mass (stat=170) // as parent. This is ok, keep it. // // Note if we were going directly to HepMC, then we could // use this information properly! if ( HEPEVT_Wrapper::id(i)==91 ) { // if the cluster comes from a SOFT (id=0,stat=170) if ( HEPEVT_Wrapper::status(HEPEVT_Wrapper::first_parent(i)) == 170 ) { ; // In this case the mothers are ok } else { HEPEVT_Wrapper::set_parents( i, 0, 0 ); } } } // ---------- Loop over the particles individually and look // for mother/daughter inconsistencies. // We consider a mother daughter relationship to be valid // ONLy when the mother points to the daughter AND the // daughter points back (true valid bidirectional // pointers) OR when a one thing points to the other, but // the other points to zero. If this isn't true, we zero // the offending relationship. for ( int i=1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { // loop over parents int ifirst = HEPEVT_Wrapper::first_parent(i); int ilast = HEPEVT_Wrapper::last_parent(i); if ( ilast == 0 ) ilast = HEPEVT_Wrapper::first_parent(i); bool first_is_acceptable = true; bool last_is_acceptable = true; // check for out of range. if ( ifirst>=i || ifirst<0 ) first_is_acceptable = false; if ( ilast>=i || ilast=i ) {;} else if ( HEPEVT_Wrapper::first_child(j) ==0 && HEPEVT_Wrapper::last_child(j) ==0 ) {;} // Error Condition: // modified by MADobbs@lbl.gov April 21, 2003 // we distinguish between the first parent and all parents // being incorrect else if (j==ifirst) { first_is_acceptable = false; break; } else { last_is_acceptable = false; break; } } } // if any one of the mothers gave a bad outcome, zero all mothers //BPK - Atlas -> // do not disconnect photons (most probably from photos) if ( HEPEVT_Wrapper::id(i) == 22 && HEPEVT_Wrapper::status(i) == 1 ) { first_is_acceptable = true; } //BPK - Atlas -< if ( !first_is_acceptable ) { HEPEVT_Wrapper::set_parents( i, 0, 0 ); } else if ( !last_is_acceptable ) { HEPEVT_Wrapper::set_parents(i,HEPEVT_Wrapper::first_parent(i),0); } } // Note: it's important to finish the mother loop, before // starting the daughter loop ... since many mother relations // will be zero'd which will validate the daughters.... i.e., // we want relationships like: // IHEP ID IDPDG IST MO1 MO2 DA1 DA2 // 27 TQRK 6 3 26 26 30 30 // 30 TQRK 6 155 26 11 31 32 // to come out right. for ( int i=1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { // loop over daughters int ifirst = HEPEVT_Wrapper::first_child(i); int ilast = HEPEVT_Wrapper::last_child(i); if ( ilast==0 ) ilast = HEPEVT_Wrapper::first_child(i); bool is_acceptable = true; // check for out of range. if ( ifirst<=i || ifirst<0 ) is_acceptable = false; if ( ilast<=i || ilast=i ) {;} else if ( HEPEVT_Wrapper::first_parent(j) ==0 && HEPEVT_Wrapper::last_parent(j) ==0 ) {;} else { is_acceptable = false; } // error condition } } // if any one of the children gave a bad outcome, zero all children if ( !is_acceptable ) HEPEVT_Wrapper::set_children( i, 0, 0 ); } // fixme for ( int i=1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { HEPEVT_Wrapper::set_id( i, translate_herwig_to_pdg_id(HEPEVT_Wrapper::id(i)) ); } if ( m_no_gaps_in_barcodes ) remove_gaps_in_hepevt(); } void IO_HERWIG::remove_gaps_in_hepevt() const { /// in this scenario, we do not allow there to be zero-ed /// entries in the HEPEVT common block, and so be reshuffle /// the common block, removing the zeero-ed entries as we /// go and making sure we keep the mother/daughter /// relationships appropriate std::vector mymap(HEPEVT_Wrapper::number_entries()+1,0); int ilast = 0; for ( int i=1; i <=HEPEVT_Wrapper::number_entries(); i++ ) { if (HEPEVT_Wrapper::status(i)==0 && HEPEVT_Wrapper::id(i)==0) { // we remove all entries for which stat=0, id=0 mymap[i]=0; } else { ilast += 1; if ( ilast != i ) { HEPEVT_Wrapper::set_status(ilast, HEPEVT_Wrapper::status(i) ); HEPEVT_Wrapper::set_id(ilast, HEPEVT_Wrapper::id(i) ); HEPEVT_Wrapper::set_parents( ilast, HEPEVT_Wrapper::first_parent(i), HEPEVT_Wrapper::last_parent(i) ); HEPEVT_Wrapper::set_children( ilast, HEPEVT_Wrapper::first_child(i), HEPEVT_Wrapper::last_child(i) ); HEPEVT_Wrapper::set_momentum( ilast, HEPEVT_Wrapper::px(i), HEPEVT_Wrapper::py(i), HEPEVT_Wrapper::pz(i), HEPEVT_Wrapper::e(i) ); HEPEVT_Wrapper::set_mass(ilast, HEPEVT_Wrapper::m(i) ); HEPEVT_Wrapper::set_position( ilast, HEPEVT_Wrapper::x(i),HEPEVT_Wrapper::y(i), HEPEVT_Wrapper::z(i),HEPEVT_Wrapper::t(i) ); } mymap[i]=ilast; } } // M. Dobbs (from Borut) - April 26, to fix tauolo/herwig past // the end problem with daughter pointers: // HEPEVT_Wrapper::set_number_entries( ilast ); // Finally we need to re-map the mother/daughter pointers. for ( int i=1; i <=ilast; i++ ) { HEPEVT_Wrapper::set_parents( i, mymap[HEPEVT_Wrapper::first_parent(i)], mymap[HEPEVT_Wrapper::last_parent(i)] ); HEPEVT_Wrapper::set_children( i, mymap[HEPEVT_Wrapper::first_child(i)], mymap[HEPEVT_Wrapper::last_child(i)] ); } // M. Dobbs (from Borut, part B) - April 26, to fix tauolo/herwig past // the end problem with daughter pointers: HEPEVT_Wrapper::set_number_entries( ilast ); } void IO_HERWIG::zero_hepevt_entry( int i ) const { if ( i <=0 || i > HepMC::HEPEVT_Wrapper::max_number_entries() ) return; HEPEVT_Wrapper::set_status( i, 0 ); HEPEVT_Wrapper::set_id( i, 0 ); HEPEVT_Wrapper::set_parents( i, 0, 0 ); HEPEVT_Wrapper::set_children( i, 0, 0 ); HEPEVT_Wrapper::set_momentum( i, 0, 0, 0, 0 ); HEPEVT_Wrapper::set_mass( i, 0 ); HEPEVT_Wrapper::set_position( i, 0, 0, 0, 0 ); } int IO_HERWIG::translate_herwig_to_pdg_id( int id ) const { /// This routine is copied from Lynn Garren's stdhep 5.01. /// see http:///cepa.fnal.gov/psm/stdhep/ // example -9922212 int hwtran = id; // -9922212 int ida = abs(id); // 9922212 int j1 = ida%10; // 2 int i1 = (ida/10)%10; // 1 int i2 = (ida/100)%10; // 2 int i3 = (ida/1000)%10; // 2 //int i4 =(ida/10000)%10; // 2 //int i5 =(ida/100000)%10; // 9 //int k99 = (ida/100000)%100; // 9 int ksusy = (ida/1000000)%10; // 0 //int ku = (ida/10000000)%10; // 0 int kqn = (ida/1000000000)%10; // 0 if ( kqn==1 ) { // ions not recognized hwtran=0; if ( m_print_inconsistency_errors ) { std::cerr << "IO_HERWIG::translate_herwig_to_pdg_id " << id << "nonallowed ion" << std::endl; } } else if (ida < 100) { // Higgs, etc. hwtran = m_herwig_to_pdg_id[ida]; if ( id < 0 ) hwtran *= -1; // check for illegal antiparticles if ( id < 0 ) { if ( hwtran>=-99 && hwtran<=-81) hwtran=0; if ( m_no_antiparticles.count(hwtran) ) hwtran=0; } } else if ( ksusy==1 || ksusy==2 ) { ; } // SUSY else if ( i1!=0 && i3!=0 && j1==2 ) {;} // spin 1/2 baryons else if ( i1!=0 && i3!=0 && j1==4 ) {;} // spin 3/2 baryons else if ( i1!=0 && i2!=0 && i3==0 ) { // mesons // check for illegal antiparticles if ( i1==i2 && id<0) hwtran=0; } else if ( i2!=0 && i3!=0 && i1==0 ) {;} // diquarks else { // undefined hwtran=0; } // check for illegal anti KS, KL if ( id==-130 || id==-310 ) hwtran=0; if ( hwtran==0 && ida!=0 && m_print_inconsistency_errors ) { std::cerr << "IO_HERWIG::translate_herwig_to_pdg_id HERWIG particle " << id << " translates to zero." << std::endl; } return hwtran; } } // HepMC hepmc-2.06.09.orig/fio/HEPEVT_Wrapper.cc0000644000175000017500000002016510557500533020373 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH June 30, 2000 // Generic Wrapper for the fortran HEPEVT common block // // The static data member's initializations must be separate from .h file. // ////////////////////////////////////////////////////////////////////////// #include "HepMC/HEPEVT_Wrapper.h" namespace HepMC { //////////////////////////////////////// // static data member initializations // //////////////////////////////////////// unsigned int HEPEVT_Wrapper::s_sizeof_int = 4; unsigned int HEPEVT_Wrapper::s_sizeof_real = sizeof(double); unsigned int HEPEVT_Wrapper::s_max_number_entries = 4000; /////////////////// // Print Methods // /////////////////// void HEPEVT_Wrapper::print_hepevt( std::ostream& ostr ) { /// dumps the content of this HEPEVT event to ostr (Width is 80) ostr << "________________________________________" << "________________________________________" << std::endl; ostr << "***** HEPEVT Common Event#: " << event_number() << ", " << number_entries() << " particles (max " << max_number_entries() << ") *****"; if ( is_double_precision() ) { ostr << " Double Precision" << std::endl; } else { ostr << " Single Precision" << std::endl; } ostr << sizeof_int() << "-byte integers, " << sizeof_real() << "-byte floating point numbers, " << max_number_entries() << "-allocated entries." << std::endl; print_legend(ostr); ostr << "________________________________________" << "________________________________________" << std::endl; for ( int i=1; i <= number_entries(); ++i ) { print_hepevt_particle( i, ostr ); } ostr << "________________________________________" << "________________________________________" << std::endl; } void HEPEVT_Wrapper::print_legend( std::ostream& ostr ) { char outline[81]; sprintf( outline,"%4s %4s %4s %5s %10s, %9s, %9s, %9s, %10s", "Indx","Stat","Par-","chil-", "( P_x","P_y","P_z","Energy","M ) "); ostr << outline << std::endl; sprintf( outline,"%9s %4s %4s %10s, %9s, %9s, %9s) %9s", "ID ","ents","dren", "Prod ( X","Y","Z","cT", "[mm]"); ostr << outline << std::endl; } void HEPEVT_Wrapper::print_hepevt_particle( int i, std::ostream& ostr ) { /// dumps the content HEPEVT particle entry i (Width is 120) /// here i is the C array index (i.e. it starts at 0 ... whereas the /// fortran array index starts at 1) So if there's 100 particles, the /// last valid index is 100-1=99 char outline[81]; sprintf( outline, "%4d %+4d %4d %4d (%9.3g, %9.3g, %9.3g, %9.3g, %9.3g)" ,i, status(i), first_parent(i), first_child(i), px(i), py(i), pz(i), e(i), m(i) ); ostr << outline << "\n"; sprintf( outline,"%+9d %4d %4d (%9.3g, %9.3g, %9.3g, %9.3g)", // old version was:" (%+9.2e, %+9.2e, %+9.2e, %+9.2e)" id(i), last_parent(i), last_child(i), x(i), y(i), z(i), t(i) ); ostr << outline << std::endl; } bool HEPEVT_Wrapper::check_hepevt_consistency( std::ostream& os ) { /// This method inspects the HEPEVT common block and looks for /// inconsistencies in the mother/daughter pointers bool isConsistent=true; char header[81]; sprintf( header, "\n\n\t**** WARNINGInconsistent HEPEVT input, Event %10d ****" , HEPEVT_Wrapper::event_number() ); for ( int i = 1; i <= HEPEVT_Wrapper::number_entries(); ++i ) { // 1. check its mothers int moth1 = HEPEVT_Wrapper::first_parent( i ); int moth2 = HEPEVT_Wrapper::last_parent( i ); if ( moth2 last parent " << std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); } for ( int m = moth1; m<=moth2 && m!=0; ++m ) { if ( m>HEPEVT_Wrapper::number_entries() || m < 0 ) { if ( isConsistent ) { os << header << std::endl; isConsistent = false; print_legend(os); } os << "Inconsistent entry " << i << " mother points out of range " << std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); } int mChild1 = HEPEVT_Wrapper::first_child(m); int mChild2 = HEPEVT_Wrapper::last_child(m); // we don't consider null pointers as inconsistent if ( mChild1==0 && mChild2==0 ) continue; if ( imChild2 ) { if ( isConsistent ) { os << header << std::endl; isConsistent = false; print_legend(os); } os << "Inconsistent mother-daughter relationship between " << i << " & " << m << " (try !trust_mother)" << std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); HEPEVT_Wrapper::print_hepevt_particle( m, os ); } } // 2. check its daughters int dau1 = HEPEVT_Wrapper::first_child( i ); int dau2 = HEPEVT_Wrapper::last_child( i ); if ( dau2 last child " << std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); } for ( int d = dau1; d<=dau2 && d!=0; ++d ) { if ( d>HEPEVT_Wrapper::number_entries() || d < 0 ) { if ( isConsistent ) { os << header << std::endl; isConsistent = false; print_legend(os); } os << "Inconsistent entry " << i << " child points out of range " << std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); } int d_moth1 = HEPEVT_Wrapper::first_parent(d); int d_moth2 = HEPEVT_Wrapper::last_parent(d); // we don't consider null pointers as inconsistent if ( d_moth1==0 && d_moth2==0 ) continue; if ( id_moth2 ) { if ( isConsistent ) { os << header << std::endl; isConsistent = false; print_legend(os); } os << "Inconsistent mother-daughter relationship between " << i << " & " << d << " (try trust_mothers)"<< std::endl; HEPEVT_Wrapper::print_hepevt_particle( i, os ); HEPEVT_Wrapper::print_hepevt_particle( d, os ); } } } if (!isConsistent) { os << "Above lists all the inconsistencies in the HEPEVT common " << "\n block which has been provided as input to HepMC. " << "\n HepMC WILL have trouble interpreting the mother-daughter" << "\n relationships ... but all other information " << "\n (4-vectors etc) will be correctly transferred." << "\n In order for HepMC to be able to interpret the mother/" << "\n daughter hierachy, it MUST be given consistent input." << "\n This is one of the design criteria of HepMC: " << "\n consistency is enforced by the code."; os << "\nThere is a switch in IO_HEPEVT, set-able using " << "\n IO_HEPEVT::set_trust_mothers_before_daughters( bool )" << "\n which you may want to try."; os << "\nNote: if HEPEVT common block has been filled by pythia" << "\n pyhepc, then the switch MSTP(128)=2 should be used in" << "\n pythia, which instructs pythia not to put multiple " << "\n copies of resonances in the event record.\n"; os << "To obtain a file summarizing the inconsistency, you should:" << "\n\t ofstream myFile(\"myInconsistentEvent.txt\"); " << "\n\t HEPEVT_Wrapper::check_hepevt_consistency(myFile); " << "\n\t HEPEVT_Wrapper::print_hepevt(myFile); " << "\n[now write the event to HepMC using something like" << "\n\t\t myIO_HEPEVT->write_event(myEvent); ]" << "\n\t myEvent->print( myFile ); " << " // print event as HepMC sees it" << "\n ------------------------- Thank-you. \n\n" << std::endl; } return isConsistent; } void HEPEVT_Wrapper::zero_everything() { set_event_number( 0 ); set_number_entries( 0 ); for ( int i = 1; i<=max_number_entries(); ++i ) { set_status( i, 0 ); set_id( i, 0 ); set_parents( i, 0, 0 ); set_children( i, 0, 0 ); set_momentum( i, 0, 0, 0, 0 ); set_mass( i, 0 ); set_position( i, 0, 0, 0, 0 ); } } } // HepMC hepmc-2.06.09.orig/.cvsignore0000755000175000017500000000013611002121701016571 0ustar sylvestresylvestreMakefile.in configure aclocal.m4 autom4te.cache config.* missing install-sh depcomp ltmain.sh hepmc-2.06.09.orig/Makefile.am0000644000175000017500000000045211701667602016650 0ustar sylvestresylvestre## Process this file with automake to produce Makefile.in includedir = $(prefix)/include SUBDIRS = HepMC src fio test examples examples/fio examples/pythia8 doc # list all subdirectories - for distribution and cleaning DIST_SUBDIRS = HepMC src fio test examples examples/fio examples/pythia8 doc hepmc-2.06.09.orig/configure0000755000175000017500000254741511763470446016552 0ustar sylvestresylvestre#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for HepMC 2.06.09. # # Report bugs to . # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` exec 6>&1 # # Initializations. # ac_default_prefix=/usr/local ac_config_libobj_dir=. cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Maximum number of lines to put in a shell here document. # This variable seems obsolete. It should probably be removed, and # only ac_max_sed_lines should be used. : ${ac_max_here_lines=38} # Identity of this package. PACKAGE_NAME='HepMC' PACKAGE_TARNAME='HepMC' PACKAGE_VERSION='2.06.09' PACKAGE_STRING='HepMC 2.06.09' PACKAGE_BUGREPORT='https://savannah.cern.ch/projects/hepmc/' ac_unique_file="src/GenEvent.cc" # Factoring default headers for most tests. ac_includes_default="\ #include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #endif" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar LIBRARY_VERSION HEPMC_DEFAULT_MOM_UNIT HEPMC_DEFAULT_LEN_UNIT CLHEPdir GENSERdir CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE F77 FFLAGS ac_ct_F77 SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CPP CXXCPP LIBTOOL COPY_P DIFF_Q AM_MAKEFLAGS AM_CXXFLAGS BUILD_VISUAL_TRUE BUILD_VISUAL_FALSE LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) datadir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` eval "enable_$ac_feature=no" ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package| sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/-/_/g'` eval "with_$ac_package=no" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` eval "$ac_envvar='$ac_optarg'" export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute paths. for ac_var in exec_prefix prefix do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* | NONE | '' ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # Be sure to have absolute paths. for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ localstatedir libdir includedir oldincludedir infodir mandir do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then its parent. ac_confdir=`(dirname "$0") 2>/dev/null || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } else { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi fi (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 { (exit 1); exit 1; }; } srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` ac_env_build_alias_set=${build_alias+set} ac_env_build_alias_value=$build_alias ac_cv_env_build_alias_set=${build_alias+set} ac_cv_env_build_alias_value=$build_alias ac_env_host_alias_set=${host_alias+set} ac_env_host_alias_value=$host_alias ac_cv_env_host_alias_set=${host_alias+set} ac_cv_env_host_alias_value=$host_alias ac_env_target_alias_set=${target_alias+set} ac_env_target_alias_value=$target_alias ac_cv_env_target_alias_set=${target_alias+set} ac_cv_env_target_alias_value=$target_alias ac_env_CXX_set=${CXX+set} ac_env_CXX_value=$CXX ac_cv_env_CXX_set=${CXX+set} ac_cv_env_CXX_value=$CXX ac_env_CXXFLAGS_set=${CXXFLAGS+set} ac_env_CXXFLAGS_value=$CXXFLAGS ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} ac_cv_env_CXXFLAGS_value=$CXXFLAGS ac_env_LDFLAGS_set=${LDFLAGS+set} ac_env_LDFLAGS_value=$LDFLAGS ac_cv_env_LDFLAGS_set=${LDFLAGS+set} ac_cv_env_LDFLAGS_value=$LDFLAGS ac_env_CPPFLAGS_set=${CPPFLAGS+set} ac_env_CPPFLAGS_value=$CPPFLAGS ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} ac_cv_env_CPPFLAGS_value=$CPPFLAGS ac_env_CC_set=${CC+set} ac_env_CC_value=$CC ac_cv_env_CC_set=${CC+set} ac_cv_env_CC_value=$CC ac_env_CFLAGS_set=${CFLAGS+set} ac_env_CFLAGS_value=$CFLAGS ac_cv_env_CFLAGS_set=${CFLAGS+set} ac_cv_env_CFLAGS_value=$CFLAGS ac_env_F77_set=${F77+set} ac_env_F77_value=$F77 ac_cv_env_F77_set=${F77+set} ac_cv_env_F77_value=$F77 ac_env_FFLAGS_set=${FFLAGS+set} ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS ac_env_CPP_set=${CPP+set} ac_env_CPP_value=$CPP ac_cv_env_CPP_set=${CPP+set} ac_cv_env_CPP_value=$CPP ac_env_CXXCPP_set=${CXXCPP+set} ac_env_CXXCPP_value=$CXXCPP ac_cv_env_CXXCPP_set=${CXXCPP+set} ac_cv_env_CXXCPP_value=$CXXCPP # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures HepMC 2.06.09 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] _ACEOF cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of HepMC 2.06.09:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-visual on by default when using Visual C++ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-momentum --with-momentum=MEV or GEV, no other values allowed --with-length --with-length=MM or CM, no other values allowed --with-CLHEP --with-CLHEP=$CLHEP_DIR: CLHEP is used in the examples --with-GENSER --with-GENSER=$GENSER_DIR: GENSER is used in the examples --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags CPP C preprocessor CXXCPP C++ preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d $ac_dir || continue ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac cd $ac_dir # Check for guested configure; otherwise get Cygnus style configure. if test -f $ac_srcdir/configure.gnu; then echo $SHELL $ac_srcdir/configure.gnu --help=recursive elif test -f $ac_srcdir/configure; then echo $SHELL $ac_srcdir/configure --help=recursive elif test -f $ac_srcdir/configure.ac || test -f $ac_srcdir/configure.in; then echo $ac_configure --help else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi cd $ac_popdir done fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF HepMC configure 2.06.09 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit 0 fi exec 5>config.log cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by HepMC $as_me 2.06.09, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ _ACEOF { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` hostinfo = `(hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$ac_configure_args1 '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" # Get rid of the leading space. ac_sep=" " ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Be sure not to use single quotes in there, as some shells, # such as our DU 5.0 friend, will then `close' the trap. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX echo # The following way of writing the cache mishandles newlines in values, { (set) 2>&1 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in *ac_space=\ *) sed -n \ "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" ;; *) sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------- ## ## Output files. ## ## ------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo sed "/^$/d" confdefs.h | sort echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 rm -f core *.core && rm -rf conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -rf conftest* confdefs.h # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo >confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -z "$CONFIG_SITE"; then if test "x$prefix" != xNONE; then CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; *) . ./$cache_file;; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in `(set) 2>&1 | sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val="\$ac_cv_env_${ac_var}_value" eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f $ac_dir/install.sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f $ac_dir/shtool; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi ac_config_guess="$SHELL $ac_aux_dir/config.guess" ac_config_sub="$SHELL $ac_aux_dir/config.sub" ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_build_alias=$build_alias test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_host_alias=$host_alias test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking target system type" >&5 echo $ECHO_N "checking target system type... $ECHO_C" >&6 if test "${ac_cv_target+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_target_alias=$target_alias test "x$ac_cv_target_alias" = "x" && ac_cv_target_alias=$ac_cv_host_alias ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_target" >&5 echo "${ECHO_T}$ac_cv_target" >&6 target=$ac_cv_target target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- am__api_version="1.9" # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. We don't cache a # path for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the path is relative. INSTALL=$ac_install_sh fi fi echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 test "$program_prefix" != NONE && program_transform_name="s,^,$program_prefix,;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s,\$,$program_suffix,;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$AWK" && break done echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` if test -n "$ac_maketemp"; then eval ac_cv_prog_make_${ac_make}_set=yes else eval ac_cv_prog_make_${ac_make}_set=no fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='HepMC' VERSION='2.06.09' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers HepMC/defs.h" # ---------------------------------------------------------------------- # shared library versioning # for various reasons, this cannot match the HepMC version # ---------------------------------------------------------------------- LIBRARY_VERSION="-version-info 4:0:0" # ---------------------------------------------------------------------- # define --enable-visual # ---------------------------------------------------------------------- # Check whether --enable-visual or --disable-visual was given. if test "${enable_visual+set}" = set; then enableval="$enable_visual" case "${enableval}" in yes) build_visual="yes";; no) build_visual="no";; *) build_visual="no";; esac else build_visual="no" fi; # ---------------------------------------------------------------------- # define the default momentum and length (position) units # these MUST be declared # ---------------------------------------------------------------------- # Check whether --with-momentum or --without-momentum was given. if test "${with_momentum+set}" = set; then withval="$with_momentum" HEPMC_DEFAULT_MOM_UNIT=${withval} else { { echo "$as_me:$LINENO: error: You MUST configure --with-momentum=XX, where XX is MEV or GEV" >&5 echo "$as_me: error: You MUST configure --with-momentum=XX, where XX is MEV or GEV" >&2;} { (exit 1); exit 1; }; } fi; # Check whether --with-length or --without-length was given. if test "${with_length+set}" = set; then withval="$with_length" HEPMC_DEFAULT_LEN_UNIT=${withval} else { { echo "$as_me:$LINENO: error: You MUST configure --with-length=YY, where YY is MM or CM" >&5 echo "$as_me: error: You MUST configure --with-length=YY, where YY is MM or CM" >&2;} { (exit 1); exit 1; }; } fi; # ---------------------------------------------------------------------- # find CLHEP and/or GENSER: # these are used ONLY in the examples # ---------------------------------------------------------------------- # Check whether --with-CLHEP or --without-CLHEP was given. if test "${with_CLHEP+set}" = set; then withval="$with_CLHEP" CLHEPdir=${withval} else CLHEPdir=" " fi; # Check whether --with-GENSER or --without-GENSER was given. if test "${with_GENSER+set}" = set; then withval="$with_GENSER" GENSERdir=${withval} else GENSERdir=" " fi; # ---------------------------------------------------------------------- # Checks for programs. # ---------------------------------------------------------------------- case "$CXX" in cl) { { echo "$as_me:$LINENO: error: configure is not supported for Visual C++, use cmake instead" >&5 echo "$as_me: error: configure is not supported for Visual C++, use cmake instead" >&2;} { (exit 1); exit 1; }; } ;; *) esac ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CXX" && break done test -n "$ac_ct_CXX" || ac_ct_CXX="g++" CXX=$ac_ct_CXX fi # Provide some information about the compiler. echo "$as_me:$LINENO:" \ "checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last # resort. # Be careful to initialize this variable, since it used to be cached. # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. ac_cv_exeext= # b.out is created by i960 compilers. for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; conftest.$ac_ext ) # This is the source file. ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` # FIXME: I believe we export ac_cv_exeext for Libtool, # but it would be cool to find out if it's true. Does anybody # maintain Libtool? --akim. export ac_cv_exeext break;; * ) break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C++ compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C++ compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` export ac_cv_exeext break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cxx_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi for ac_declaration in \ '' \ 'extern "C" void std::exit (int) throw (); using std::exit;' \ 'extern "C" void std::exit (int); using std::exit;' \ 'extern "C" void exit (int) throw ();' \ 'extern "C" void exit (int);' \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done rm -f conftest* if test -n "$ac_declaration"; then echo '#ifdef __cplusplus' >>confdefs.h echo $ac_declaration >>confdefs.h echo '#endif' >>confdefs.h fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6 rm -f confinc confmf # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval="$enable_dependency_tracking" fi; if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CXX" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CC" && break done CC=$ac_ct_CC fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cc_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF # Don't try gcc -ansi; that turns off useful extensions and # breaks some systems' header files. # AIX -qlanglvl=ansi # Ultrix and OSF/1 -std1 # HP-UX 10.20 and later -Ae # HP-UX older versions -Aa -D_HPUX_SOURCE # SVR4 -Xc -D__EXTENSIONS__ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext done rm -f conftest.$ac_ext conftest.$ac_objext CC=$ac_save_CC fi case "x$ac_cv_prog_cc_stdc" in x|xno) echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac # Some people use a C++ compiler to compile C. Since we use `exit', # in C++ we need to declare it. In case someone uses the same compiler # for both compiling C and C++ we need to have the C++ compiler decide # the declaration of exit, since it's the most demanding environment. cat >conftest.$ac_ext <<_ACEOF #ifndef __cplusplus choke me #endif _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ '' \ 'extern "C" void std::exit (int) throw (); using std::exit;' \ 'extern "C" void std::exit (int); using std::exit;' \ 'extern "C" void exit (int) throw ();' \ 'extern "C" void exit (int);' \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done rm -f conftest* if test -n "$ac_declaration"; then echo '#ifdef __cplusplus' >>confdefs.h echo $ac_declaration >>confdefs.h echo '#endif' >>confdefs.h fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` if test -n "$ac_maketemp"; then eval ac_cv_prog_make_${ac_make}_set=yes else eval ac_cv_prog_make_${ac_make}_set=no fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in gfortran g77 f77 do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_F77="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in gfortran g77 f77 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_F77" && break done F77=$ac_ct_F77 fi # Provide some information about the compiler. echo "$as_me:3821:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # special libtool rules for Windows - work with gcc and cygwin # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then enableval="$enable_shared" p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi; # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then enableval="$enable_static" p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi; # Check whether --enable-fast-install or --disable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval="$enable_fast_install" p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi; echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6 if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done fi SED=$lt_cv_path_SED echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 if test "${ac_cv_prog_egrep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi fi echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 EGREP=$ac_cv_prog_egrep # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix4* | aix5*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump'. lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | kfreebsd*-gnu | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 4537 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; *-*-cygwin* | *-*-mingw* | *-*-pw32*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_DLLTOOL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then echo "$as_me:$LINENO: result: $DLLTOOL" >&5 echo "${ECHO_T}$DLLTOOL" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_DLLTOOL" && ac_cv_prog_ac_ct_DLLTOOL="false" fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then echo "$as_me:$LINENO: result: $ac_ct_DLLTOOL" >&5 echo "${ECHO_T}$ac_ct_DLLTOOL" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi DLLTOOL=$ac_ct_DLLTOOL else DLLTOOL="$ac_cv_prog_DLLTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. set dummy ${ac_tool_prefix}as; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AS"; then ac_cv_prog_AS="$AS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AS="${ac_tool_prefix}as" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AS=$ac_cv_prog_AS if test -n "$AS"; then echo "$as_me:$LINENO: result: $AS" >&5 echo "${ECHO_T}$AS" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_AS"; then ac_ct_AS=$AS # Extract the first word of "as", so it can be a program name with args. set dummy as; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AS"; then ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AS="as" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_AS" && ac_cv_prog_ac_ct_AS="false" fi fi ac_ct_AS=$ac_cv_prog_ac_ct_AS if test -n "$ac_ct_AS"; then echo "$as_me:$LINENO: result: $ac_ct_AS" >&5 echo "${ECHO_T}$ac_ct_AS" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi AS=$ac_ct_AS else AS="$ac_cv_prog_AS" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_OBJDUMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then echo "$as_me:$LINENO: result: $OBJDUMP" >&5 echo "${ECHO_T}$OBJDUMP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_OBJDUMP" && ac_cv_prog_ac_ct_OBJDUMP="false" fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5 echo "${ECHO_T}$ac_ct_OBJDUMP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi OBJDUMP=$ac_ct_OBJDUMP else OBJDUMP="$ac_cv_prog_OBJDUMP" fi ;; esac need_locks="$enable_libtool_lock" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------------------- ## ## Report this to https://savannah.cern.ch/projects/hepmc/ ## ## ------------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[ABCDGIRSTW]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6 else echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6 fi echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false" fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi AR=$ac_ct_AR else AR="$ac_cv_prog_AR" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi RANLIB=$ac_ct_RANLIB else RANLIB="$ac_cv_prog_RANLIB" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else MAGIC_CMD=: fi fi fi ;; esac enable_dlopen=no enable_win32_dll=yes # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic or --without-pic was given. if test "${with_pic+set}" = set; then withval="$with_pic" pic_mode="$withval" else pic_mode=default fi; test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6745: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:6749: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic='-qnocommon' lt_prog_compiler_wl='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7013: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:7017: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works=yes fi else lt_prog_compiler_static_works=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7117: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:7121: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix3*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs=no ;; esac fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 8586 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shl_load (); int main () { shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dld_link (); int main () { dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which library types will actually be built echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" # Check whether --with-tags or --without-tags was given. if test "${with_tags+set}" = set; then withval="$with_tags" tagnames="$withval" fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_CXX=yes else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_CXX='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_CXX=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_CXX='+b $libdir' ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix3*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext # PORTME: override above test on systems where it is broken case $host_os in interix3*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; solaris*) case $cc_basename in CC*) # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. postdeps_CXX='-lCstd -lCrun' ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_CXX='-qnocommon' lt_prog_compiler_wl_CXX='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC*) # Portland Group C++ compiler. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11930: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:11934: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6 if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_CXX=yes fi else lt_prog_compiler_static_works_CXX=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_CXX" >&6 if test x"$lt_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:12034: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:12038: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([^ ]*\) [^ ]*/\1 DATA/;/^I /d;/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 12570 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var_CXX" || \ test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6 if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_CXX" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code=" subroutine t\n return\n end\n" # Code to be used in simple link tests lt_simple_link_test_code=" program t\n end\n" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_F77='-qnocommon' lt_prog_compiler_wl_F77='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13628: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:13632: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6 if test x"$lt_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_F77=yes fi else lt_prog_compiler_static_works_F77=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_F77" >&6 if test x"$lt_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13732: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:13736: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; interix3*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_F77='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_F77=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_F77=yes else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_F77=no ;; esac fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_F77='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6 test "$ld_shlibs_F77" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 15181 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var_F77" || \ test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6 if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_F77" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no old_archive_cmds_GCJ=$old_archive_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15963: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:15967: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_GCJ='-qnocommon' lt_prog_compiler_wl_GCJ='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-fpic' lt_prog_compiler_static_GCJ='-Bstatic' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; solaris*) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_GCJ='-Qoption ld ';; *) lt_prog_compiler_wl_GCJ='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; unicos*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_can_build_shared_GCJ=no ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16231: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:16235: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6 if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_GCJ=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_GCJ=yes fi else lt_prog_compiler_static_works_GCJ=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_GCJ" >&6 if test x"$lt_prog_compiler_static_works_GCJ" = xyes; then : else lt_prog_compiler_static_GCJ= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16335: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:16339: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_GCJ=no fi ;; interix3*) hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_GCJ='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_GCJ=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_GCJ=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = no; then runpath_var= hardcode_libdir_flag_spec_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_GCJ=yes else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ='$convenience' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_GCJ=no ;; esac fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; *) hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_GCJ='${wl}-z,text' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_GCJ='${wl}-z,text' allow_undefined_flag_GCJ='${wl}-z,nodefs' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6 test "$ld_shlibs_GCJ" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ pic_flag=$lt_prog_compiler_pic_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 17804 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var_GCJ" || \ test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6 if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_GCJ" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_RC" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion # ---------------------------------------------------------------------- # Checks for libraries. # ---------------------------------------------------------------------- # ---------------------------------------------------------------------- # Checks for header files. # ---------------------------------------------------------------------- for ac_header in stdint.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------------------- ## ## Report this to https://savannah.cern.ch/projects/hepmc/ ## ## ------------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # ---------------------------------------------------------------------- # Checks for typedefs, structures, and compiler characteristics. # ---------------------------------------------------------------------- echo "$as_me:$LINENO: checking for stdbool.h that conforms to C99" >&5 echo $ECHO_N "checking for stdbool.h that conforms to C99... $ECHO_C" >&6 if test "${ac_cv_header_stdbool_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #ifndef bool # error bool is not defined #endif #ifndef false # error false is not defined #endif #if false # error false is not 0 #endif #ifndef true # error true is not defined #endif #if true != 1 # error true is not 1 #endif #ifndef __bool_true_false_are_defined # error __bool_true_false_are_defined is not defined #endif struct s { _Bool s: 1; _Bool t; } s; char a[true == 1 ? 1 : -1]; char b[false == 0 ? 1 : -1]; char c[__bool_true_false_are_defined == 1 ? 1 : -1]; char d[(bool) -0.5 == true ? 1 : -1]; bool e = &s; char f[(_Bool) -0.0 == false ? 1 : -1]; char g[true]; char h[sizeof (_Bool)]; char i[sizeof s.t]; int main () { return !a + !b + !c + !d + !e + !f + !g + !h + !i; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_stdbool_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdbool_h=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 echo "${ECHO_T}$ac_cv_header_stdbool_h" >&6 echo "$as_me:$LINENO: checking for _Bool" >&5 echo $ECHO_N "checking for _Bool... $ECHO_C" >&6 if test "${ac_cv_type__Bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((_Bool *) 0) return 0; if (sizeof (_Bool)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type__Bool=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type__Bool=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type__Bool" >&5 echo "${ECHO_T}$ac_cv_type__Bool" >&6 if test $ac_cv_type__Bool = yes; then cat >>confdefs.h <<_ACEOF #define HAVE__BOOL 1 _ACEOF fi if test $ac_cv_header_stdbool_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_STDBOOL_H 1 _ACEOF fi echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { /* FIXME: Include the comments suggested by Paul. */ #ifndef __cplusplus /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset x; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; ccp = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++ccp; p = (char**) ccp; ccp = (char const *const *) p; { /* SCO 3.2v4 cc rejects this. */ char *t; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; } #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_c_const=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then cat >>confdefs.h <<\_ACEOF #define const _ACEOF fi echo "$as_me:$LINENO: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done fi echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac echo "$as_me:$LINENO: checking for ptrdiff_t" >&5 echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6 if test "${ac_cv_type_ptrdiff_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((ptrdiff_t *) 0) return 0; if (sizeof (ptrdiff_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ptrdiff_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_ptrdiff_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5 echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6 if test $ac_cv_type_ptrdiff_t = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_PTRDIFF_T 1 _ACEOF fi # ---------------------------------------------------------------------- # Checks for library functions. # ---------------------------------------------------------------------- echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # ---------------------------------------------------------------------- # OS dependent differences: # ---------------------------------------------------------------------- # copy case "$target" in *-*-win32*) COPY_P="copy -p" { echo "$as_me:$LINENO: WARNING: we recommend using cmake instead of configure on Windows" >&5 echo "$as_me: WARNING: we recommend using cmake instead of configure on Windows" >&2;} ;; *-*-darwin*) COPY_P="cp -p" { echo "$as_me:$LINENO: WARNING: we recommend using cmake instead of configure on MacOSX" >&5 echo "$as_me: WARNING: we recommend using cmake instead of configure on MacOSX" >&2;} ;; *) COPY_P="cp -p" esac # diff DIFF_Q="diff -q -b" # ---------------------------------------------------------------------- # compiler dependent differences # notice that the default is presumed to be some flavor of g++ # ---------------------------------------------------------------------- case "$CXX" in cl) AM_CXXFLAGS="-EHsc -nologo -GR -MD" CXXFLAGS=" " build_visual="yes" { { echo "$as_me:$LINENO: error: configure is not supported for Visual C++, use cmake instead" >&5 echo "$as_me: error: configure is not supported for Visual C++, use cmake instead" >&2;} { (exit 1); exit 1; }; } ;; *) AM_CXXFLAGS="-ansi -pedantic -Wall" esac if test x$build_visual = xyes; then BUILD_VISUAL_TRUE= BUILD_VISUAL_FALSE='#' else BUILD_VISUAL_TRUE='#' BUILD_VISUAL_FALSE= fi # ---------------------------------------------------------------------- # process Makefile.in and other *.in files # ---------------------------------------------------------------------- ac_config_files="$ac_config_files Makefile HepMC/Makefile doc/Makefile examples/Makefile examples/fio/Makefile examples/pythia8/Makefile fio/Makefile src/Makefile src/Units.cc test/Makefile test/testHepMC.cc test/testMass.cc test/testHepMCIteration.cc test/testMultipleCopies.cc test/testStreamIO.cc examples/GNUmakefile.example examples/fio/GNUmakefile.example examples/pythia8/config.csh examples/pythia8/config.sh examples/pythia8/GNUmakefile.example" ac_config_files="$ac_config_files test/testHepMC.sh" ac_config_files="$ac_config_files test/testFlow.sh" ac_config_files="$ac_config_files test/testMass.sh" ac_config_files="$ac_config_files test/testHepMCIteration.sh" ac_config_files="$ac_config_files test/testPolarization.sh" ac_config_files="$ac_config_files test/testPrintBug.sh" ac_config_files="$ac_config_files test/testStreamIO.sh" # ---------------------------------------------------------------------- # Finish up: # ---------------------------------------------------------------------- cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. { (set) 2>&1 | case `(ac_space=' '; set | grep ac_space) 2>&1` in *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } | sed ' t clear : clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ : end' >>confcache if diff $cache_file confcache >/dev/null 2>&1; then :; else if test -w $cache_file; then test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" cat confcache >$cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/; s/:*\${srcdir}:*/:/; s/:*@srcdir@:*/:/; s/^\([^=]*=[ ]*\):*/\1/; s/:*$//; s/^[^=]*=[ ]*$//; }' fi DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_i=`echo "$ac_i" | sed 's/\$U\././;s/\.o$//;s/\.obj$//'` # 2. Add them. ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${BUILD_VISUAL_TRUE}" && test -z "${BUILD_VISUAL_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"BUILD_VISUAL\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"BUILD_VISUAL\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH exec 6>&1 # Open the log real soon, to keep \$[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. Logging --version etc. is OK. exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 cat >&5 <<_CSEOF This file was extended by HepMC $as_me 2.06.09, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ _CSEOF echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 echo >&5 _ACEOF # Files that config.status was made for. if test -n "$ac_config_files"; then echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS fi if test -n "$ac_config_headers"; then echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS fi if test -n "$ac_config_links"; then echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS fi if test -n "$ac_config_commands"; then echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS fi cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ HepMC config.status 2.06.09 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2003 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." srcdir=$srcdir INSTALL="$INSTALL" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "x$1" : 'x\([^=]*\)='` ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` ac_shift=: ;; -*) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; *) # This is not an option, so the user has probably given explicit # arguments. ac_option=$1 ac_need_defaults=false;; esac case $ac_option in # Handling of the options. _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --vers* | -V ) echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header { { echo "$as_me:$LINENO: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; } ;; *) ac_config_targets="$ac_config_targets $1" ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS section. # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_config_target in $ac_config_targets do case "$ac_config_target" in # Handling of arguments. "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "HepMC/Makefile" ) CONFIG_FILES="$CONFIG_FILES HepMC/Makefile" ;; "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; "examples/fio/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/fio/Makefile" ;; "examples/pythia8/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/pythia8/Makefile" ;; "fio/Makefile" ) CONFIG_FILES="$CONFIG_FILES fio/Makefile" ;; "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/Units.cc" ) CONFIG_FILES="$CONFIG_FILES src/Units.cc" ;; "test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; "test/testHepMC.cc" ) CONFIG_FILES="$CONFIG_FILES test/testHepMC.cc" ;; "test/testMass.cc" ) CONFIG_FILES="$CONFIG_FILES test/testMass.cc" ;; "test/testHepMCIteration.cc" ) CONFIG_FILES="$CONFIG_FILES test/testHepMCIteration.cc" ;; "test/testMultipleCopies.cc" ) CONFIG_FILES="$CONFIG_FILES test/testMultipleCopies.cc" ;; "test/testStreamIO.cc" ) CONFIG_FILES="$CONFIG_FILES test/testStreamIO.cc" ;; "examples/GNUmakefile.example" ) CONFIG_FILES="$CONFIG_FILES examples/GNUmakefile.example" ;; "examples/fio/GNUmakefile.example" ) CONFIG_FILES="$CONFIG_FILES examples/fio/GNUmakefile.example" ;; "examples/pythia8/config.csh" ) CONFIG_FILES="$CONFIG_FILES examples/pythia8/config.csh" ;; "examples/pythia8/config.sh" ) CONFIG_FILES="$CONFIG_FILES examples/pythia8/config.sh" ;; "examples/pythia8/GNUmakefile.example" ) CONFIG_FILES="$CONFIG_FILES examples/pythia8/GNUmakefile.example" ;; "test/testHepMC.sh" ) CONFIG_FILES="$CONFIG_FILES test/testHepMC.sh" ;; "test/testFlow.sh" ) CONFIG_FILES="$CONFIG_FILES test/testFlow.sh" ;; "test/testMass.sh" ) CONFIG_FILES="$CONFIG_FILES test/testMass.sh" ;; "test/testHepMCIteration.sh" ) CONFIG_FILES="$CONFIG_FILES test/testHepMCIteration.sh" ;; "test/testPolarization.sh" ) CONFIG_FILES="$CONFIG_FILES test/testPolarization.sh" ;; "test/testPrintBug.sh" ) CONFIG_FILES="$CONFIG_FILES test/testPrintBug.sh" ;; "test/testStreamIO.sh" ) CONFIG_FILES="$CONFIG_FILES test/testStreamIO.sh" ;; "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "HepMC/defs.h" ) CONFIG_HEADERS="$CONFIG_HEADERS HepMC/defs.h" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason to put it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Create a temporary directory, and hook for its removal unless debugging. $debug || { trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./confstat$$-$RANDOM (umask 077 && mkdir $tmp) } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "\$CONFIG_FILES"; then # Protect against being on the right side of a sed subst in config.status. sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF s,@SHELL@,$SHELL,;t t s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t s,@exec_prefix@,$exec_prefix,;t t s,@prefix@,$prefix,;t t s,@program_transform_name@,$program_transform_name,;t t s,@bindir@,$bindir,;t t s,@sbindir@,$sbindir,;t t s,@libexecdir@,$libexecdir,;t t s,@datadir@,$datadir,;t t s,@sysconfdir@,$sysconfdir,;t t s,@sharedstatedir@,$sharedstatedir,;t t s,@localstatedir@,$localstatedir,;t t s,@libdir@,$libdir,;t t s,@includedir@,$includedir,;t t s,@oldincludedir@,$oldincludedir,;t t s,@infodir@,$infodir,;t t s,@mandir@,$mandir,;t t s,@build_alias@,$build_alias,;t t s,@host_alias@,$host_alias,;t t s,@target_alias@,$target_alias,;t t s,@DEFS@,$DEFS,;t t s,@ECHO_C@,$ECHO_C,;t t s,@ECHO_N@,$ECHO_N,;t t s,@ECHO_T@,$ECHO_T,;t t s,@LIBS@,$LIBS,;t t s,@build@,$build,;t t s,@build_cpu@,$build_cpu,;t t s,@build_vendor@,$build_vendor,;t t s,@build_os@,$build_os,;t t s,@host@,$host,;t t s,@host_cpu@,$host_cpu,;t t s,@host_vendor@,$host_vendor,;t t s,@host_os@,$host_os,;t t s,@target@,$target,;t t s,@target_cpu@,$target_cpu,;t t s,@target_vendor@,$target_vendor,;t t s,@target_os@,$target_os,;t t s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t s,@INSTALL_DATA@,$INSTALL_DATA,;t t s,@CYGPATH_W@,$CYGPATH_W,;t t s,@PACKAGE@,$PACKAGE,;t t s,@VERSION@,$VERSION,;t t s,@ACLOCAL@,$ACLOCAL,;t t s,@AUTOCONF@,$AUTOCONF,;t t s,@AUTOMAKE@,$AUTOMAKE,;t t s,@AUTOHEADER@,$AUTOHEADER,;t t s,@MAKEINFO@,$MAKEINFO,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t s,@mkdir_p@,$mkdir_p,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;t t s,@AMTAR@,$AMTAR,;t t s,@am__tar@,$am__tar,;t t s,@am__untar@,$am__untar,;t t s,@LIBRARY_VERSION@,$LIBRARY_VERSION,;t t s,@HEPMC_DEFAULT_MOM_UNIT@,$HEPMC_DEFAULT_MOM_UNIT,;t t s,@HEPMC_DEFAULT_LEN_UNIT@,$HEPMC_DEFAULT_LEN_UNIT,;t t s,@CLHEPdir@,$CLHEPdir,;t t s,@GENSERdir@,$GENSERdir,;t t s,@CXX@,$CXX,;t t s,@CXXFLAGS@,$CXXFLAGS,;t t s,@LDFLAGS@,$LDFLAGS,;t t s,@CPPFLAGS@,$CPPFLAGS,;t t s,@ac_ct_CXX@,$ac_ct_CXX,;t t s,@EXEEXT@,$EXEEXT,;t t s,@OBJEXT@,$OBJEXT,;t t s,@DEPDIR@,$DEPDIR,;t t s,@am__include@,$am__include,;t t s,@am__quote@,$am__quote,;t t s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t s,@CXXDEPMODE@,$CXXDEPMODE,;t t s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t s,@CC@,$CC,;t t s,@CFLAGS@,$CFLAGS,;t t s,@ac_ct_CC@,$ac_ct_CC,;t t s,@CCDEPMODE@,$CCDEPMODE,;t t s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t s,@F77@,$F77,;t t s,@FFLAGS@,$FFLAGS,;t t s,@ac_ct_F77@,$ac_ct_F77,;t t s,@SED@,$SED,;t t s,@EGREP@,$EGREP,;t t s,@LN_S@,$LN_S,;t t s,@ECHO@,$ECHO,;t t s,@AR@,$AR,;t t s,@ac_ct_AR@,$ac_ct_AR,;t t s,@RANLIB@,$RANLIB,;t t s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t s,@DLLTOOL@,$DLLTOOL,;t t s,@ac_ct_DLLTOOL@,$ac_ct_DLLTOOL,;t t s,@AS@,$AS,;t t s,@ac_ct_AS@,$ac_ct_AS,;t t s,@OBJDUMP@,$OBJDUMP,;t t s,@ac_ct_OBJDUMP@,$ac_ct_OBJDUMP,;t t s,@CPP@,$CPP,;t t s,@CXXCPP@,$CXXCPP,;t t s,@LIBTOOL@,$LIBTOOL,;t t s,@COPY_P@,$COPY_P,;t t s,@DIFF_Q@,$DIFF_Q,;t t s,@AM_MAKEFLAGS@,$AM_MAKEFLAGS,;t t s,@AM_CXXFLAGS@,$AM_CXXFLAGS,;t t s,@BUILD_VISUAL_TRUE@,$BUILD_VISUAL_TRUE,;t t s,@BUILD_VISUAL_FALSE@,$BUILD_VISUAL_FALSE,;t t s,@LIBOBJS@,$LIBOBJS,;t t s,@LTLIBOBJS@,$LTLIBOBJS,;t t CEOF _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_lines=48 ac_sed_frag=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_lines # Line after last line for current file. ac_more_lines=: ac_sed_cmds= while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag else sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag fi if test ! -s $tmp/subs.frag; then ac_more_lines=false else # The purpose of the label and of the branching condition is to # speed up the sed processing (if there are no `@' at all, there # is no need to browse any of the substitutions). # These are the two extra sed commands mentioned above. (echo ':t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" else ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" fi ac_sed_frag=`expr $ac_sed_frag + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_lines` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi fi # test -n "$CONFIG_FILES" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in - | *:- | *:-:* ) # input from stdin cat >$tmp/stdin ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; * ) ac_file_in=$ac_file.in ;; esac # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_builddir$INSTALL ;; esac if test x"$ac_file" != x-; then { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ if test x"$ac_file" = x-; then configure_input= else configure_input="$ac_file. " fi configure_input=$configure_input"Generated from `echo $ac_file_in | sed 's,.*/,,'` by configure." # First look for the input files in the build tree, otherwise in the # src tree. ac_file_inputs=`IFS=: for f in $ac_file_in; do case $f in -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; *) # Relative if test -f "$f"; then # Build tree echo "$f" elif test -f "$srcdir/$f"; then # Source tree echo "$srcdir/$f" else # /dev/null tree { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; esac done` || { (exit 1); exit 1; } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s,@configure_input@,$configure_input,;t t s,@srcdir@,$ac_srcdir,;t t s,@abs_srcdir@,$ac_abs_srcdir,;t t s,@top_srcdir@,$ac_top_srcdir,;t t s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t s,@builddir@,$ac_builddir,;t t s,@abs_builddir@,$ac_abs_builddir,;t t s,@top_builddir@,$ac_top_builddir,;t t s,@abs_top_builddir@,$ac_abs_top_builddir,;t t s,@INSTALL@,$ac_INSTALL,;t t " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out rm -f $tmp/stdin if test x"$ac_file" != x-; then mv $tmp/out $ac_file else cat $tmp/out rm -f $tmp/out fi # Run the commands associated with the file. case $ac_file in test/testHepMC.sh ) chmod +x test/testHepMC.sh ;; test/testFlow.sh ) chmod +x test/testFlow.sh ;; test/testMass.sh ) chmod +x test/testMass.sh ;; test/testHepMCIteration.sh ) chmod +x test/testHepMCIteration.sh ;; test/testPolarization.sh ) chmod +x test/testPolarization.sh ;; test/testPrintBug.sh ) chmod +x test/testPrintBug.sh ;; test/testStreamIO.sh ) chmod +x test/testStreamIO.sh ;; esac done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_HEADER section. # # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where # NAME is the cpp macro being defined and VALUE is the value it is being given. # # ac_d sets the value in "#define NAME VALUE" lines. ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' ac_dB='[ ].*$,\1#\2' ac_dC=' ' ac_dD=',;t' # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_uB='$,\1#\2define\3' ac_uC=' ' ac_uD=',;t' for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in - | *:- | *:-:* ) # input from stdin cat >$tmp/stdin ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; * ) ac_file_in=$ac_file.in ;; esac test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the # src tree. ac_file_inputs=`IFS=: for f in $ac_file_in; do case $f in -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } # Do quote $f, to prevent DOS paths from being IFS'd. echo "$f";; *) # Relative if test -f "$f"; then # Build tree echo "$f" elif test -f "$srcdir/$f"; then # Source tree echo "$srcdir/$f" else # /dev/null tree { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; esac done` || { (exit 1); exit 1; } # Remove the trailing spaces. sed 's/[ ]*$//' $ac_file_inputs >$tmp/in _ACEOF # Transform confdefs.h into two sed scripts, `conftest.defines' and # `conftest.undefs', that substitutes the proper values into # config.h.in to produce config.h. The first handles `#define' # templates, and the second `#undef' templates. # And first: Protect against being on the right side of a sed subst in # config.status. Protect against being in an unquoted here document # in config.status. rm -f conftest.defines conftest.undefs # Using a here document instead of a string reduces the quoting nightmare. # Putting comments in sed scripts is not portable. # # `end' is used to avoid that the second main sed command (meant for # 0-ary CPP macros) applies to n-ary macro definitions. # See the Autoconf documentation for `clear'. cat >confdef2sed.sed <<\_ACEOF s/[\\&,]/\\&/g s,[\\$`],\\&,g t clear : clear s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp t end s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp : end _ACEOF # If some macros were called several times there might be several times # the same #defines, which is useless. Nevertheless, we may not want to # sort them, since we want the *last* AC-DEFINE to be honored. uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs rm -f confdef2sed.sed # This sed command replaces #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. cat >>conftest.undefs <<\_ACEOF s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, _ACEOF # Break up conftest.defines because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS echo ' :' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.defines >/dev/null do # Write a limited-size here document to $tmp/defines.sed. echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#define' lines. echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/defines.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines echo ' fi # grep' >>$CONFIG_STATUS echo >>$CONFIG_STATUS # Break up conftest.undefs because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #undef templates' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.undefs >/dev/null do # Write a limited-size here document to $tmp/undefs.sed. echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#undef' echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/undefs.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail rm -f conftest.undefs mv conftest.tail conftest.undefs done rm -f conftest.undefs cat >>$CONFIG_STATUS <<\_ACEOF # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ if test x"$ac_file" = x-; then echo "/* Generated by configure. */" >$tmp/config.h else echo "/* $ac_file. Generated by configure. */" >$tmp/config.h fi cat $tmp/in >>$tmp/config.h rm -f $tmp/in if test x"$ac_file" != x-; then if diff $ac_file $tmp/config.h >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } rm -f $ac_file mv $tmp/config.h $ac_file fi else cat $tmp/config.h rm -f $tmp/config.h fi # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null || $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X$ac_file : 'X\(//\)[^/]' \| \ X$ac_file : 'X\(//\)$' \| \ X$ac_file : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X$ac_file | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'`/stamp-h$_am_stamp_count done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_COMMANDS section. # for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue ac_dest=`echo "$ac_file" | sed 's,:.*,,'` ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_dir=`(dirname "$ac_dest") 2>/dev/null || $as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_dest" : 'X\(//\)[^/]' \| \ X"$ac_dest" : 'X\(//\)$' \| \ X"$ac_dest" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_dest" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 echo "$as_me: executing $ac_dest commands" >&6;} case $ac_dest in depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`(dirname "$mf") 2>/dev/null || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`(dirname "$file") 2>/dev/null || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p $dirpart/$fdir else as_dir=$dirpart/$fdir as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5 echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || { (exit 1); exit 1; } fi hepmc-2.06.09.orig/ReadMe.cygwin0000755000175000017500000000712511024021736017170 0ustar sylvestresylvestre#------------------------------------------------------------- # running configure #------------------------------------------------------------- To avoid autotool confusion, we recommend running the bootstrap in your cygwin environment before beginning the build. To build for Windows Visual C++, configure with CXX=cl CC=cl. #------------------------------------------------------------- # setup the compiler for cygwin #------------------------------------------------------------- For the compilation under cygwin using VC++, you have to make sure that the PATH contains the path to the installation of Visual Studio. The safest way to do this, is to add VC to your Cygwin.bat file. Since it is possible to have several different versions of VC on the same machine, we recommend keeping a generic Cygwin.bat and creating special CygwinXXX.bat file for each compiler you want to use. Here is an example for VC9: @echo off @call "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" @set PATH=%PATH%;C:\cygwin\bin C: chdir C:\cygwin\bin bash --login -i Two lines, "@call..." and "@set...", have been added to the default Cygwin.bat. #------------------------------------------------------------- # building executables #------------------------------------------------------------- When building your own exectuables, we recommend using the Visual C++ command shell, found under All Programs -> Visual C++ XXX -> Visual Studio Tools, which will have the Visual C++ environment properly established. You will need to use the same compiler flags as used by configure.ac. Compile an object file: cl /EHsc /MD /GR /nologo /c \ /IC:\cygwin\home\garren\lcg\hepmc\config\vc9\include \ example_UsingIterators.cc Build an executable: cl /Feexample.exe example_UsingIterators.obj \ C:\cygwin\home\garren\lcg\hepmc\config\vc9\lib\HepMC.lib #------------------------------------------------------------- # setting the path explicitly for VC 7.1 #------------------------------------------------------------- For the compilation under cygwin using VC 7.1 (Version 13.10.3077) you have to make sure that the PATH contains the path to the installation of Visual Studio .NET 2003. This example also adds CLHEP to the path. CLHEP is not required, but you may need it for your own purposes: export VSPATH="/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003" export PATH="/cygdrive/c/WINNT/Microsoft.NET/Framework/v1.1.4322":${PATH} export PATH="${VSPATH}/SDK/v1.1/bin":${PATH} export PATH="${VSPATH}/Common7/Tools/bin":${PATH} export PATH="${VSPATH}/Common7/Tools/bin/prerelease":${PATH} export PATH="${VSPATH}/Common7/Tools/":${PATH} export PATH="${VSPATH}/Vc7/bin":${PATH} export PATH="${VSPATH}/Common7/IDE":${PATH} The compiler also needs the following variables set up (and as these are interpreted by the compiler, they have to be in "windows-syntax"): export INCLUDE="C:/cygwin/home/clhep/1.9.2.2/include;c:/Program Files/Microsoft Visual Studio .NET 2003/Vc7/include;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include" export LIB="C:/cygwin/home/clhep/1.9.2.2/lib;c:/Program Files/Microsoft Visual Studio .NET 2003/Vc7/lib;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib" Notice that CLHEP needs to be defined in LIB and INCLUDE. You may have to adapt to your installation path, if different. #------------------------------------------------------------- # trouble reports #------------------------------------------------------------- Please report problems using the bug-tracker of the savannah portal at: http://savannah.cern.ch/projects/hepmc/ hepmc-2.06.09.orig/HepMC/0000755000175000017500000000000011763470443015552 5ustar sylvestresylvestrehepmc-2.06.09.orig/HepMC/enable_if.h0000644000175000017500000000204710561725132017623 0ustar sylvestresylvestre#ifndef ENABLE_IF_H #define ENABLE_IF_H // author: Walter Brown // ---------------------------------------------------------------------- // prolog namespace HepMC { namespace detail { // ---------------------------------------------------------------------- // enable_if<> /// internal - used to decide if a class is arithmetic template< bool, class > struct enable_if { }; /// internal - use if class T is arithmetic template< class T > struct enable_if { typedef T type; //!< check type of class T }; // ---------------------------------------------------------------------- // disable_if<> /// internal - used by SimpleVector to decide if a class is arithmetic template< bool, class > struct disable_if { }; /// internal - used by SimpleVector to decide if a class is arithmetic template< class T > struct disable_if { typedef T type; //!< check type of class T }; // ---------------------------------------------------------------------- // epilog } // namespace detail } // namespace HepMC #endif // ENABLE_IF_H hepmc-2.06.09.orig/HepMC/defs.h.in0000644000175000017500000000362311763470440017252 0ustar sylvestresylvestre/* HepMC/defs.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if the system has the type `ptrdiff_t'. */ #undef HAVE_PTRDIFF_T /* Define to 1 if stdbool.h conforms to C99. */ #undef HAVE_STDBOOL_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif hepmc-2.06.09.orig/HepMC/is_arithmetic.h0000644000175000017500000000370210557500533020543 0ustar sylvestresylvestre#ifndef IS_ARITHMETIC #define IS_ARITHMETIC // author: Walter Brown // ---------------------------------------------------------------------- // prolog namespace HepMC { /// /// \namespace detail /// internal namespace /// namespace detail { // ---------------------------------------------------------------------- // is_arithmetic<> /// undefined and therefore non-arithmetic template< class T > struct is_arithmetic { static bool const value = false; }; /// character is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// unsigned character is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// signed character is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// short is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// unsigned short is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// int is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// unsigned int is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// long is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// unsigned long is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// float is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// double is arithmetic template<> struct is_arithmetic { static bool const value = true; }; /// long double is arithmetic template<> struct is_arithmetic { static bool const value = true; }; // ---------------------------------------------------------------------- // epilog } // namespace detail } // namespace HepMC #endif // IS_ARITHMETIC hepmc-2.06.09.orig/HepMC/Units.h0000644000175000017500000000243611014622251017013 0ustar sylvestresylvestre#ifndef HEPMC_UNITS_H #define HEPMC_UNITS_H //-------------------------------------------------------------------------- // Units.h // Author: A. Buckley, D. Grellscheid // // units used by a GenEvent // The default units are set by a configure switch at compile time in Units.cc. //-------------------------------------------------------------------------- #include #include namespace HepMC { /// /// \namespace Units /// Allow units to be specified within HepMC. /// The default units are set at compile time. /// namespace Units { // Convention: if both types are passed, MomentumUnit always goes first. enum MomentumUnit { MEV, GEV }; //!< momentum units enum LengthUnit { MM, CM }; //!< position units LengthUnit default_length_unit(); //!< default unit is defined by configure MomentumUnit default_momentum_unit(); //!< default unit is defined by configure // helper functions std::string name( MomentumUnit ); //!< convert enum to string std::string name( LengthUnit ); //!< convert enum to string /// scaling factor relative to MeV double conversion_factor( MomentumUnit from, MomentumUnit to ); double conversion_factor( LengthUnit from, LengthUnit to ); } // Units } // HepMC #endif // HEPMC_UNITS_H hepmc-2.06.09.orig/HepMC/GenCrossSection.h0000644000175000017500000000656411211311605020764 0ustar sylvestresylvestre#ifndef HEPMC_GEN_CROSS_SECTION_H #define HEPMC_GEN_CROSS_SECTION_H //-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, May 2009 // ////////////////////////////////////////////////////////////////////////// //-------------------------------------------------------------------------- #include namespace HepMC { //! The GenCrossSection class stores the generated cross section /// /// \class GenCrossSection /// HepMC::GenCrossSection is used to store the generated cross section. /// This class is meant to be used to pass, on an event by event basis, /// the current best guess of the total cross section. /// It is expected that the final cross section will be stored elsewhere. /// /// - double cross_section; // cross section in pb /// - double cross_section_error; // error associated with this cross section /// /// The units of cross_section and cross_section_error are expected to be pb. /// /// GenCrossSection information will be written if GenEvent contains a pointer /// to a valid GenCrossSection object. /// class GenCrossSection { public: GenCrossSection() : m_cross_section(0), m_cross_section_error(0), m_is_set(false) {} ~GenCrossSection() {} GenCrossSection( GenCrossSection const & orig ); //!< copy void swap( GenCrossSection & other); //!< swap GenCrossSection & operator = ( GenCrossSection const & rhs ); //!< shallow /// check for equality bool operator==( const GenCrossSection& ) const; /// check for inequality bool operator!=( const GenCrossSection& ) const; // --- accessors: /// cross section in pb double cross_section() const { return m_cross_section; } /// error associated with this cross section in pb double cross_section_error() const { return m_cross_section_error; } /// True if the cross section has been set. False by default. bool is_set() const { return m_is_set; } // --- mutators: /// Set cross section and error in pb void set_cross_section( double xs, double xs_err ); /// set cross section in pb void set_cross_section( double ); /// set error associated with this cross section in pb void set_cross_section_error( double ); /// Clear all GenCrossSection info /// (disables output of GenCrossSection until the cross section is set again) void clear(); // --- I/O: /// write to an output stream std::ostream & write( std::ostream & ) const; /// read from an input stream std::istream & read( std::istream & ); private: // data members double m_cross_section; double m_cross_section_error; bool m_is_set; }; // // streaming I/O inline std::ostream & operator << ( std::ostream & os, GenCrossSection & xs ) { return xs.write(os); } inline std::istream & operator >> ( std::istream & is, GenCrossSection & xs ) { return xs.read(is); } // // inline methods inline void GenCrossSection::set_cross_section( double xs, double xserr ) { set_cross_section(xs); set_cross_section_error(xserr); } inline void GenCrossSection::set_cross_section( double xs ) { m_cross_section = xs; m_is_set = true; } inline void GenCrossSection::set_cross_section_error( double xserr ) { m_cross_section_error = xserr; } } // HepMC #endif // HEPMC_GEN_CROSS_SECTION_H hepmc-2.06.09.orig/HepMC/CompareGenEvent.h0000644000175000017500000000166610751701313020743 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_COMPARE_GENEVENT_H #define HEPMC_COMPARE_GENEVENT_H ///////////////////////////////////////////////////////////////////////// // CompareGenEvent.h // // garren@fnal.gov, January 2008 // Free functions used to compare two copies of GenEvent ////////////////////////////////////////////////////////////////////////// // #include #include "HepMC/GenEvent.h" namespace HepMC { bool compareGenEvent( GenEvent*, GenEvent* ); bool compareSignalProcessVertex( GenEvent*, GenEvent* ); bool compareBeamParticles( GenEvent*, GenEvent* ); bool compareWeights( GenEvent*, GenEvent* ); bool compareVertices( GenEvent*, GenEvent* ); bool compareParticles( GenEvent*, GenEvent* ); bool compareVertex( GenVertex* v1, GenVertex* v2 ); } // HepMC #endif // HEPMC_COMPARE_GENEVENT_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/GenParticle.h0000644000175000017500000002366511701361610020117 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_GEN_PARTICLE_H #define HEPMC_GEN_PARTICLE_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // particle within an event coming in/out of a vertex // particle is the basic building block or unit of the event record ////////////////////////////////////////////////////////////////////////// // // example: // GenParticle* p = new GenParticle( FourVector(1,1,1,3), 11, 1 ); // creates a particle with 4-vector (p,E)=1,1,1,3 - with pdg id 11 (electron) // and give this particle status =1. // // the pointers to end/production vertices can only be set by the // vertices themselves - thus to set the production vertex for a particle, // you add the particle to that vertex with GenVertex::add_particle_out() // // We decide not to have a separate 4 vector for the momentum // at decay time (which MC++ includes to allow dE/dX losses etc). // If you want that, just add a decay vertex with the // same particle (modified momentum) going out // #include "HepMC/Flow.h" #include "HepMC/Polarization.h" #include "HepMC/SimpleVector.h" #include "HepMC/IteratorRange.h" #include #ifdef _WIN32 #define hepmc_uint64_t __int64 #else #include // for uint64_t #define hepmc_uint64_t uint64_t #endif namespace HepMC { class GenVertex; class GenEvent; class GenParticleProductionRange; class ConstGenParticleProductionRange; class GenParticleEndRange; class ConstGenParticleEndRange; //! The GenParticle class contains information about generated particles /// /// \class GenParticle /// HepMC::GenParticle /// contains momentum, generated mass, particle ID, decay status, /// flow, polarization, pointers to production and decay vertices /// and a unique barcode identfier. /// class GenParticle { friend class GenVertex; // so vertex can set decay/production vertexes friend class GenEvent; // so event can set the barCodes /// print particle friend std::ostream& operator<<( std::ostream&, const GenParticle& ); public: /// default constructor GenParticle(void); /// constructor requires momentum and particle ID GenParticle( const FourVector& momentum, int pdg_id, int status = 0, const Flow& itsflow = Flow(), const Polarization& polar = Polarization(0,0) ); GenParticle( const GenParticle& inparticle ); //!< shallow copy. virtual ~GenParticle(); void swap( GenParticle & other); //!< swap GenParticle& operator=( const GenParticle& inparticle ); //!< shallow. /// check for equality bool operator==( const GenParticle& ) const; /// check for inequality bool operator!=( const GenParticle& ) const; /// dump this particle's full info to ostr void print( std::ostream& ostr = std::cout ) const; operator HepMC::FourVector() const; //!< conversion operator //////////////////// // access methods // //////////////////// /// standard 4 momentum const FourVector & momentum() const; /// particle ID int pdg_id() const; /// HEPEVT decay status int status() const; /// particle flow const Flow & flow() const; /// particle flow index int flow( int code_index ) const; /// polarization information const Polarization & polarization() const; /// pointer to the production vertex GenVertex* production_vertex() const; /// pointer to the decay vertex GenVertex* end_vertex() const; /// pointer to the event that owns this particle GenEvent* parent_event() const; /// Because of precision issues, the generated mass is not always the /// same as the mass calculated from the momentum 4 vector. /// If the generated mass has been set, then generated_mass() /// returns that value. /// If the generated mass has not been set, then generated_mass() /// returns the mass calculated from the momentum 4 vector. double generated_mass() const; //!< mass as generated /// generatedMass() is included for backwards compatibility with CLHEP HepMC double generatedMass() const { return generated_mass(); } /// /// The barcode is the particle's reference number, every vertex in the /// event has a unique barcode. Particle barcodes are positive numbers, /// vertex barcodes are negative numbers. /// /// Please note that the barcodes are intended for internal use within /// HepMC as a unique identifier for the particles and vertices. /// Using the barcode to encode extra information is an abuse of /// the barcode data member and causes confusion among users. /// int barcode() const; //!< particle barcode /// Convenience method. Returns true if status==1 bool is_undecayed() const; /// Convenience method. Returns true if status==2 bool has_decayed() const; /// Convenience method. Returns true if status==4 /// Note that using status 4 for beam particles is a new convention which /// may not have been implemented by the code originating this GenEvent. bool is_beam() const; /// incoming particle range GenParticleProductionRange particles_in( IteratorRange range = relatives ); /// incoming particle range ConstGenParticleProductionRange particles_in( IteratorRange range = relatives ) const; /// outgoing particle range GenParticleEndRange particles_out( IteratorRange range = relatives ); /// outgoing particle range ConstGenParticleEndRange particles_out( IteratorRange range = relatives ) const; ///////////////////// // mutator methods // ///////////////////// /// In general there is no reason to "suggest_barcode" bool suggest_barcode( int the_bar_code ); void set_momentum( const FourVector& vec4 ); //!< set standard 4 momentum void set_pdg_id( int id ); //!< set particle ID void set_status( int status = 0 ); //!< set decay status void set_flow( const Flow& f ); //!< set particle flow void set_flow( int code_index, int code = 0 ); //!< set particle flow index /// set polarization void set_polarization( const Polarization& pol = Polarization(0,0) ); /// If you do not call set_generated_mass(), then /// generated_mass() will simply return the mass calculated from momentum() void set_generated_mass( const double & m ); //!< define the actual generated mass /// setGeneratedMass() is included for backwards compatibility with CLHEP HepMC void setGeneratedMass( const double & m ) { return set_generated_mass(m); } protected: // for internal use only by friend GenVertex class //static unsigned int counter(); //!< temporary for debugging /// set production vertex - for internal use only void set_production_vertex_( GenVertex* productionvertex = 0); /// set decay vertex - for internal use only void set_end_vertex_( GenVertex* decayvertex = 0 ); void set_barcode_( int the_bar_code ); //!< for use by GenEvent only /// scale the momentum vector and generated mass /// this method is only for use by GenEvent void convert_momentum( const double& ); private: FourVector m_momentum; // momentum vector int m_pdg_id; // id according to PDG convention int m_status; // As defined for HEPEVT Flow m_flow; Polarization m_polarization; GenVertex* m_production_vertex; // null if vacuum or beam GenVertex* m_end_vertex; // null if not-decayed int m_barcode; // unique identifier in the event double m_generated_mass; // mass of this particle when it was generated //static unsigned int s_counter; }; ////////////// // INLINES // ////////////// inline GenParticle::operator HepMC::FourVector() const { return m_momentum; } inline const FourVector & GenParticle::momentum() const { return m_momentum; } inline int GenParticle::pdg_id() const { return m_pdg_id; } inline int GenParticle::status() const { return m_status; } inline GenVertex* GenParticle::production_vertex() const { return m_production_vertex; } inline GenVertex* GenParticle::end_vertex() const { return m_end_vertex; } inline const Flow & GenParticle::flow() const { return m_flow; } inline int GenParticle::flow( int code_index ) const { return m_flow.icode( code_index ); } inline const Polarization & GenParticle::polarization() const { return m_polarization; } inline void GenParticle::set_momentum( const FourVector& vec4 ) { m_momentum = vec4; } inline void GenParticle::set_pdg_id( int id ) { m_pdg_id = id; } inline void GenParticle::set_status( int st ) { m_status = st; } inline void GenParticle::set_flow( const Flow& f ) { m_flow = f; } inline void GenParticle::set_flow( int code_index, int code ) { if ( code == 0 ) { m_flow.set_unique_icode( code_index ); } else { m_flow.set_icode( code_index, code ); } } inline void GenParticle::set_polarization( const Polarization& polar ) { m_polarization = polar; } inline int GenParticle::barcode() const { return m_barcode; } inline void GenParticle::set_barcode_( int bc ) { m_barcode = bc; } inline bool GenParticle::is_undecayed() const { return ( m_status==1 ) ? true : false; } inline bool GenParticle::has_decayed() const { return ( m_status==2 ) ? true : false; } inline bool GenParticle::is_beam() const { return ( m_status==4 ) ? true : false; } } // HepMC #endif // HEPMC_GEN_PARTICLE_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/StreamInfo.h0000644000175000017500000001200511374257600017764 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_STREAM_INFO_H #define HEPMC_STREAM_INFO_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, March 2009 // // This class contains the extra information needed when using streaming IO ////////////////////////////////////////////////////////////////////////// #include #include "HepMC/Units.h" namespace HepMC { /// The known_io enum is used to track which type of input is being read enum known_io { gen=1, ascii, extascii, ascii_pdt, extascii_pdt }; //! StreamInfo contains extra information needed when using streaming IO. /// /// \class StreamInfo /// This class contains the extra information needed when using streaming IO /// to process HepMC GenEvents /// class StreamInfo { public: /// default constructor StreamInfo( ); /// destructor ~StreamInfo() {} /// IO_GenEvent begin event block key std::string IO_GenEvent_Key() const { return m_io_genevent_start; } /// IO_GenEvent end event block key std::string IO_GenEvent_End() const { return m_io_genevent_end; } /// IO_Ascii begin event block key /// IO_Ascii has been removed, but we want to be able to read /// existing files written by IO_Ascii std::string IO_Ascii_Key() const { return m_io_ascii_start; } /// IO_Ascii end event block key std::string IO_Ascii_End() const { return m_io_ascii_end; } /// IO_Ascii begin particle data block key std::string IO_Ascii_PDT_Key() const { return m_io_ascii_pdt_start; } /// IO_Ascii end particle data block key std::string IO_Ascii_PDT_End() const { return m_io_ascii_pdt_end; } /// IO_ExtendedAscii begin event block key /// IO_ExtendedAscii has been removed, but we want to be able to read /// existing files written by IO_ExtendedAscii std::string IO_ExtendedAscii_Key() const { return m_io_extendedascii_start; } /// IO_ExtendedAscii end event block key std::string IO_ExtendedAscii_End() const { return m_io_extendedascii_end; } /// IO_ExtendedAscii begin particle data block key std::string IO_ExtendedAscii_PDT_Key() const { return m_io_extendedascii_pdt_start; } /// IO_ExtendedAscii end particle data block key std::string IO_ExtendedAscii_PDT_End() const { return m_io_extendedascii_pdt_end; } /// get IO type int io_type() const { return m_io_type; } /// set IO type void set_io_type( int ); /// true if the stream has a file type key /// has_key is true by default bool has_key() const { return m_has_key; } /// set to false if the stream does not have a file type key void set_has_key( bool ); /// get the I/O momentum units Units::MomentumUnit io_momentum_unit() const { return m_io_momentum_unit; } /// get the I/O length units Units::LengthUnit io_position_unit() const { return m_io_position_unit; } /// get the I/O stream id /// This is used for sanity checking. int stream_id() const { return m_stream_id; } /// Special information is processed the first time we use the IO bool finished_first_event() const { return m_finished_first_event_io; } /// Special information is processed the first time we use the IO void set_finished_first_event( bool b ) { m_finished_first_event_io = b; } /// needed when reading a file without units if those units are /// different than the declared default units /// (e.g., the default units are MeV, but the file was written with GeV) /// This method is not necessary if the units are written in the file void use_input_units( Units::MomentumUnit, Units::LengthUnit ); /// reading_event_header will return true when streaming input is /// processing the GenEvent header information bool reading_event_header(); /// set the reading_event_header flag void set_reading_event_header(bool); private: // data members bool m_finished_first_event_io; // GenEvent I/O method keys std::string m_io_genevent_start; std::string m_io_ascii_start; std::string m_io_extendedascii_start; std::string m_io_genevent_end; std::string m_io_ascii_end; std::string m_io_extendedascii_end; // particle data I/O method keys std::string m_io_ascii_pdt_start; std::string m_io_extendedascii_pdt_start; std::string m_io_ascii_pdt_end; std::string m_io_extendedascii_pdt_end; // io information int m_io_type; bool m_has_key; // default io units - used only when reading a file with no units Units::MomentumUnit m_io_momentum_unit; Units::LengthUnit m_io_position_unit; // used to keep identify the I/O stream unsigned int m_stream_id; static unsigned int m_stream_counter; // used to keep track when reading event bool m_reading_event_header; }; } // HepMC #endif // HEPMC_STREAM_INFO_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/Polarization.h0000644000175000017500000000776211374257600020406 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_POLARIZATION_H #define HEPMC_POLARIZATION_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Polarization object for a particle. All angles are in radians. ////////////////////////////////////////////////////////////////////////// #include "HepMC/SimpleVector.h" #include #include namespace HepMC { static const double HepMC_pi = 3.14159265358979323846; // copy of pi from CLHEP //! The Polarization class stores theta and phi for a GenParticle /// /// \class Polarization /// HepMC::Polarization stores a particle's theta and phi in radians. /// Use of this information is optional. /// By default, the polarization is set to zero. /// class Polarization { /// print polarization information friend std::ostream& operator<<( std::ostream&, const Polarization& ); public: /// default constructor Polarization( ); /// constructor requiring at least one value Polarization( double theta, double phi = 0 ); /// construct from another polarization object Polarization( const Polarization& inpolar ); /// construct using the polar and azimuthal angles from a ThreeVector Polarization( const ThreeVector& vec3in ); virtual ~Polarization() {} /// swap void swap( Polarization & other); /// make a copy Polarization& operator=( const Polarization& inpolar ); /// equality requires that theta and phi are equal bool operator==( const Polarization& ) const; /// inequality results if either theta or phi differ bool operator!=( const Polarization& ) const; /// print theta and phi void print( std::ostream& ostr = std::cout ) const; //////////////////// // access methods // //////////////////// double theta() const; //!< returns polar angle in radians double phi() const; //!< returns azimuthal angle in radians ThreeVector normal3d() const; //!< unit 3 vector for easy manipulation bool is_defined() const; //!< returns true if the Polarization has been defined /// set polar angle in radians double set_theta( double theta ); /// set azimuthal angle in radians double set_phi( double phi ); /// set both polar and azimuthal angles in radians void set_theta_phi( double theta, double phi ); /// sets polarization according to direction of 3 vec ThreeVector set_normal3d( const ThreeVector& vec3in ); /// declares the Polarization as undefined and zeros the values void set_undefined(); private: /// private method to return a polar angle in the correct range double valid_theta( double theta ); /// private method to return an azimuthal angle in the correct range double valid_phi( double phi ); private: double m_theta; //polar angle of polarization in radians 0< theta theta() && a.phi() == this->phi() && a.is_defined() == this->is_defined() ); } inline bool Polarization::operator!=(const Polarization& a ) const { return !( a == *this ); } } // HepMC #endif // HEPMC_POLARIZATION_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/CMakeLists.txt0000644000175000017500000000145411656566570020326 0ustar sylvestresylvestre set( pkginclude_HEADERS CompareGenEvent.h Flow.h GenEvent.h GenParticle.h GenVertex.h GenCrossSection.h GenRanges.h HeavyIon.h HEPEVT_Wrapper.h HerwigWrapper.h IO_AsciiParticles.h IO_BaseClass.h IO_Exception.h IO_GenEvent.h IO_HEPEVT.h IO_HERWIG.h IteratorRange.h PdfInfo.h Polarization.h PythiaWrapper6_4.h PythiaWrapper6_4_WIN32.h PythiaWrapper.h WeightContainer.h SearchVector.h SimpleVector.h SimpleVector.icc StreamHelpers.h StreamInfo.h enable_if.h is_arithmetic.h TempParticleMap.h Units.h Version.h HepMCDefs.h ) INSTALL (FILES ${pkginclude_HEADERS} DESTINATION include/HepMC ) hepmc-2.06.09.orig/HepMC/Makefile.in0000644000175000017500000003130411763470443017620 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = HepMC DIST_COMMON = $(pkginclude_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/defs.h.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = defs.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(pkgincludedir)" pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) HEADERS = $(pkginclude_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = $(prefix)/include infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ pkginclude_HEADERS = \ CompareGenEvent.h \ Flow.h \ GenEvent.h \ GenParticle.h \ GenVertex.h \ GenCrossSection.h \ GenRanges.h \ HeavyIon.h \ HEPEVT_Wrapper.h \ HerwigWrapper.h \ IO_AsciiParticles.h \ IO_BaseClass.h \ IO_Exception.h \ IO_GenEvent.h \ IO_HEPEVT.h \ IO_HERWIG.h \ IteratorRange.h \ PdfInfo.h \ Polarization.h \ PythiaWrapper6_4.h \ PythiaWrapper6_4_WIN32.h \ PythiaWrapper.h \ WeightContainer.h \ SearchVector.h \ SimpleVector.h \ SimpleVector.icc \ StreamHelpers.h \ StreamInfo.h \ enable_if.h \ is_arithmetic.h \ TempParticleMap.h \ Units.h \ Version.h \ HepMCDefs.h all: defs.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign HepMC/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign HepMC/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh defs.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/defs.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status HepMC/defs.h $(srcdir)/defs.h.in: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f defs.h stamp-h1 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \ $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \ rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) defs.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) defs.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) defs.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) defs.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(HEADERS) defs.h installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-pkgincludeHEADERS install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool ctags distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-exec install-exec-am install-info \ install-info-am install-man install-pkgincludeHEADERS \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-info-am \ uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/HepMC/IO_AsciiParticles.h0000644000175000017500000000753611374257600021220 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_IO_ASCIIPARTICLES_H #define HEPMC_IO_ASCIIPARTICLES_H ////////////////////////////////////////////////////////////////////////// // Mikhail.Kirsanov@Cern.CH, 2006 // event input/output in ascii format for eye and machine reading ////////////////////////////////////////////////////////////////////////// // // Strategy for reading or writing events as machine readable // ascii to a file. When instantiating, the mode of file to be created // must be specified. Options are: // std::ios::in open file for input // std::ios::out open file for output // std::ios::trunc erase old file when opening (i.e. ios::out|ios::trunc // removes oldfile, and creates a new one for output ) // std::ios::app append output to end of file // for the purposes of this class, simultaneous input and output mode // ( std::ios::in | std::ios::out ) is not allowed. // // Event listings are preceded by the key: // "HepMC::IO_AsciiParticles-START_EVENT_LISTING\n" // and terminated by the key: // "HepMC::IO_AsciiParticles-END_EVENT_LISTING\n" // Comments are allowed. They need not be preceded by anything, though if // a comment is written using write_comment( const string ) then it will be // preceded by "HepMC::IO_AsciiParticles-COMMENT\n" // Each event, vertex, particle, particle data is preceded by // "E ","V ","P ","D " respectively. // Comments may appear anywhere in the file -- so long as they do not contain // any of the 4 start/stop keys. // #include #include #include #include #include "HepMC/IO_BaseClass.h" namespace HepMC { class GenEvent; class GenVertex; class GenParticle; //! event input/output in ascii format for eye and machine reading /// /// \class IO_AsciiParticles /// Strategy for reading or writing events as machine readable /// ascii to a file. When instantiating, the mode of file to be created /// must be specified. /// class IO_AsciiParticles : public IO_BaseClass { public: /// constructor requiring a file name and std::ios mode IO_AsciiParticles( const char* filename="IO_AsciiParticles.dat", std::ios::openmode mode=std::ios::out ); virtual ~IO_AsciiParticles(); /// write this event void write_event( const GenEvent* evt ); /// get the next event bool fill_next_event( GenEvent* evt ); /// insert a comment directly into the output file --- normally you /// only want to do this at the beginning or end of the file. All /// comments are preceded with "HepMC::IO_AsciiParticles-COMMENT\n" void write_comment( const std::string comment ); /// set output precision void setPrecision(int iprec); int rdstate() const; //!< check the state of the IO stream void clear(); //!< clear the IO stream /// write to ostr void print( std::ostream& ostr = std::cout ) const; protected: // for internal use only /// write end tag bool write_end_listing(); private: // use of copy constructor is not allowed IO_AsciiParticles( const IO_AsciiParticles& ) : IO_BaseClass() {} private: // data members int m_precision; std::ios::openmode m_mode; std::fstream* m_file; std::ostream* m_outstream; bool m_finished_first_event_io; }; ////////////// // Inlines // ////////////// inline int IO_AsciiParticles::rdstate() const { return (int)m_file->rdstate(); } inline void IO_AsciiParticles::clear() { m_file->clear(); } inline void IO_AsciiParticles::setPrecision(int iprec) { m_precision=iprec; } } // HepMC #endif // HEPMC_IO_ASCIIPARTICLES_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/PythiaWrapper.h0000644000175000017500000000300511653570601020513 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef PYTHIA_WRAPPER_H #define PYTHIA_WRAPPER_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 2000 // Just a link to whichever pythia version is current. ////////////////////////////////////////////////////////////////////////// // This pre-compiler directive is included (2002-01-16) to allow compatibility // with MS Visual C++, which interfaces to fortran in a different manner. // For it to work you need to define the _WIN32 variable when compiling. #ifdef _WIN32 // Platform: Windows MS Visual C++ #include "HepMC/PythiaWrapper6_4_WIN32.h" #else // Generic version, tested on Linux ecgs/gcc #include "HepMC/PythiaWrapper6_4.h" #endif // Platform #include #include "HepMC/GenCrossSection.h" namespace HepMC { /// calculate the Pythia cross section and statistical error inline GenCrossSection getPythiaCrossSection() { GenCrossSection xsec; // xsec(0,2) contains the sum of differential cross sections in mb // ngen(0,2) contains the combined number of generated events // convert to pb (HepMC convention) double xsecval = pyint5.xsec[2][0] * 1.0e9; // statistical error double xsecerr = xsecval / std::sqrt( (double)pyint5.ngen[2][0] ); // set and return cross section information xsec.set_cross_section(xsecval, xsecerr); return xsec; } } // HepMC #endif // PYTHIA_WRAPPER_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/SearchVector.h0000644000175000017500000000142710711654521020310 0ustar sylvestresylvestre#ifndef SearchVector_h #define SearchVector_h // ---------------------------------------------------------------------- // // SearchVector.h // Author: Lynn Garren // // Utilities to search std::vector a GenParticle instance // ---------------------------------------------------------------------- #include "HepMC/GenVertex.h" #include "HepMC/GenParticle.h" namespace HepMC { /// returns true if it cannot find GenParticle* in the vector bool not_in_vector( std::vector*, GenParticle* ); /// Returns the index of a GenParticle* within a vector. /// Returns -1 if GenParticle* is not in the vector. std::vector::iterator already_in_vector( std::vector*, GenParticle* ); } // HepMC #endif // SearchVector_h hepmc-2.06.09.orig/HepMC/IO_GenEvent.h0000644000175000017500000001176511374257600020033 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_IO_GENEVENT_H #define HEPMC_IO_GENEVENT_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, July 2007 // with input from Gavin Salam, salam@lpthe.jussieu.fr // // event input/output in ascii format for machine reading // This class persists all information found in a GenEvent ////////////////////////////////////////////////////////////////////////// #include #include #include #include #include "HepMC/IO_BaseClass.h" #include "HepMC/IO_Exception.h" #include "HepMC/Units.h" namespace HepMC { class GenEvent; class GenVertex; class GenParticle; class HeavyIon; class PdfInfo; //! IO_GenEvent also deals with HeavyIon and PdfInfo /// /// \class IO_GenEvent /// event input/output in ascii format for machine reading /// extended format contains HeavyIon and PdfInfo classes /// /// Strategy for reading or writing events using iostreams /// When instantiating with a file name, the mode of file to be created /// must be specified. Options are: /// std::ios::in open file for input /// std::ios::out open file for output /// std::ios::trunc erase old file when opening (i.e. ios::out|ios::trunc /// removes oldfile, and creates a new one for output ) /// std::ios::app append output to end of file /// for the purposes of this class, simultaneous input and output mode /// ( std::ios::in | std::ios::out ) is not allowed. /// /// Event listings are preceded by the key: /// "HepMC::IO_GenEvent-START_EVENT_LISTING\n" /// and terminated by the key: /// "HepMC::IO_GenEvent-END_EVENT_LISTING\n" /// GenParticle Data tables are preceded by the key: /// "HepMC::IO_GenEvent-START_PARTICLE_DATA\n" /// and terminated by the key: /// "HepMC::IO_GenEvent-END_PARTICLE_DATA\n" /// Comments are allowed. They need not be preceded by anything, though if /// a comment is written using write_comment( const string ) then it will be /// preceded by "HepMC::IO_GenEvent-COMMENT\n" /// Each event, vertex, particle, particle data, heavy ion, or pdf info line /// is preceded by "E ","V ","P ","D ","H ","F " respectively. /// Comments may appear anywhere in the file -- so long as they do not contain /// any of the start/stop keys. /// class IO_GenEvent : public IO_BaseClass { public: /// constructor requiring a file name and std::ios mode IO_GenEvent( const std::string& filename="IO_GenEvent.dat", std::ios::openmode mode=std::ios::out ); /// constructor requiring an input stream IO_GenEvent( std::istream & ); /// constructor requiring an output stream IO_GenEvent( std::ostream & ); virtual ~IO_GenEvent(); /// write this event void write_event( const GenEvent* evt ); /// get the next event bool fill_next_event( GenEvent* evt ); /// insert a comment directly into the output file --- normally you /// only want to do this at the beginning or end of the file. All /// comments are preceded with "HepMC::IO_GenEvent-COMMENT\n" void write_comment( const std::string comment ); int rdstate() const; //!< check the state of the IO stream void clear(); //!< clear the IO stream /// write to ostr void print( std::ostream& ostr = std::cout ) const; /// needed when reading a file without units if those units are /// different than the declared default units /// (e.g., the default units are MeV, but the file was written with GeV) /// This method is not necessary if the units are written in the file void use_input_units( Units::MomentumUnit, Units::LengthUnit ); /// set output precision /// The default precision is 16. void precision( int ); /// integer (enum) associated with read error int error_type() const; /// the read error message string const std::string & error_message() const; private: // use of copy constructor is not allowed IO_GenEvent( const IO_GenEvent& ) : IO_BaseClass() {} private: // data members std::ios::openmode m_mode; std::fstream m_file; std::ostream * m_ostr; std::istream * m_istr; std::ios * m_iostr; bool m_have_file; IO_Exception::ErrorType m_error_type; std::string m_error_message; }; ////////////// // Inlines // ////////////// inline int IO_GenEvent::rdstate() const { int state; if( m_istr ) { state = (int)m_istr->rdstate(); } else { state = (int)m_ostr->rdstate(); } return state; } inline void IO_GenEvent::clear() { if( m_istr ) { m_istr->clear(); } else { m_ostr->clear(); } } inline int IO_GenEvent::error_type() const { return m_error_type; } inline const std::string & IO_GenEvent::error_message() const { return m_error_message; } } // HepMC #endif // HEPMC_IO_GENEVENT_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/PdfInfo.h0000644000175000017500000001550011701361610017234 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_PDF_INFO_H #define HEPMC_PDF_INFO_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, July 2006 // // Additional PDF information ////////////////////////////////////////////////////////////////////////// namespace HepMC { //! The PdfInfo class stores PDF information /// /// \class PdfInfo /// HepMC::PdfInfo stores additional PDF information for a GenEvent. /// Creation and use of this information is optional. /// /// - int id1; // flavour code of first parton /// - int id2; // flavour code of second parton /// - int pdf_id1; // LHAPDF set id of first parton (zero by default) /// - int pdf_id2; // LHAPDF set id of second parton (zero by default) /// - double x1; // fraction of beam momentum carried by first parton ("beam side") /// - double x2; // fraction of beam momentum carried by second parton ("target side") /// - double scalePDF; // Q-scale used in evaluation of PDF's (in GeV) /// - double pdf1; // PDF (id1, x1, Q) /// - double pdf2; // PDF (id2, x2, Q) /// /// Input parton flavour codes id1 & id2 are expected to obey the /// PDG code conventions, especially g = 21. /// /// The contents of pdf1 and pdf2 are expected to be x*f(x). /// The LHAPDF set ids are the entries in the first column of /// http:///projects.hepforge.org/lhapdf/PDFsets.index /// class PdfInfo { public: // --- birth/death: // /// default constructor PdfInfo() : m_id1(0), m_id2(0), m_pdf_id1(0), m_pdf_id2(0), m_x1(0), m_x2(0), m_scalePDF(0), m_pdf1(0), m_pdf2(0) {} /// all values EXCEPT pdf_id1 and pdf_id2 must be provided PdfInfo( int i1, int i2, double x1, double x2, double q, double p1, double p2, int pdf_id1 = 0, int pdf_id2 = 0 ); ~PdfInfo() {} // --- copying: // PdfInfo( PdfInfo const & orig ); //!< copy constructor PdfInfo & operator = ( PdfInfo const & rhs ); //!< make a copy void swap( PdfInfo & other ); //!< swap two PdfInfo objects // --- equivalence: // bool operator==( const PdfInfo& ) const; //!< check for equality bool operator!=( const PdfInfo& ) const; //!< check for inequality // --- accessors: /// flavour code of first parton int id1() const { return m_id1; } /// flavour code of second parton int id2() const { return m_id2; } /// LHAPDF set id of first parton int pdf_id1() const { return m_pdf_id1; } /// LHAPDF set id of second parton int pdf_id2() const { return m_pdf_id2; } /// fraction of beam momentum carried by first parton ("beam side") double x1() const { return m_x1; } /// fraction of beam momentum carried by second parton ("target side") double x2() const { return m_x2; } /// Q-scale used in evaluation of PDF's (in GeV) double scalePDF() const { return m_scalePDF; } /// PDF (id1, x1, Q) - x*f(x) double pdf1() const { return m_pdf1; } /// PDF (id2, x2, Q) - x*f(x) double pdf2() const { return m_pdf2; } /// verify that the instance contains non-zero information bool is_valid() const; // --- mutators: /// set flavour code of first parton void set_id1(const int &i) { m_id1=i; } /// set flavour code of second parton void set_id2(const int &i) { m_id2=i; } /// set LHAPDF set id of first parton void set_pdf_id1(const int &i) { m_pdf_id1=i; } /// set LHAPDF set id of second parton void set_pdf_id2(const int &i) { m_pdf_id2=i; } /// set fraction of beam momentum carried by first parton ("beam side") void set_x1(const double &f) { m_x1=f; } /// set fraction of beam momentum carried by second parton ("target side") void set_x2(const double &f) { m_x2=f; } /// set Q-scale used in evaluation of PDF's (in GeV) void set_scalePDF(const double &f) { m_scalePDF=f; } /// set x*f(x) of first parton void set_pdf1(const double &f) { m_pdf1=f; } /// set x*f(x) of second parton void set_pdf2(const double &f) { m_pdf2=f; } private: // data members int m_id1; int m_id2; int m_pdf_id1; int m_pdf_id2; double m_x1; double m_x2; double m_scalePDF; double m_pdf1; double m_pdf2; }; // Free Functions // IO std::ostream & operator << (std::ostream &, PdfInfo const *); std::istream & operator >> (std::istream &, PdfInfo *); // inline operators inline PdfInfo::PdfInfo( int i1, int i2, double xin1, double xin2, double q, double p1, double p2, int pid1, int pid2 ) : m_id1(i1), m_id2(i2), m_pdf_id1(pid1), m_pdf_id2(pid2), m_x1(xin1), m_x2(xin2), m_scalePDF(q), m_pdf1(p1), m_pdf2(p2) {} inline PdfInfo::PdfInfo( PdfInfo const & orig ) : m_id1(orig.m_id1), m_id2(orig.m_id2), m_pdf_id1(orig.m_pdf_id1), m_pdf_id2(orig.m_pdf_id2), m_x1(orig.m_x1), m_x2(orig.m_x2), m_scalePDF(orig.m_scalePDF), m_pdf1(orig.m_pdf1), m_pdf2(orig.m_pdf2) {} inline PdfInfo & PdfInfo::operator = ( PdfInfo const & rhs ) { PdfInfo temp( rhs ); swap( temp ); return *this; } inline void PdfInfo::swap( PdfInfo & other ) { std::swap(m_id1, other.m_id1); std::swap(m_id2, other.m_id2); std::swap(m_pdf_id1, other.m_pdf_id1); std::swap(m_pdf_id2, other.m_pdf_id2); std::swap(m_x1, other.m_x1); std::swap(m_x2, other.m_x2); std::swap(m_scalePDF, other.m_scalePDF); std::swap(m_pdf1, other.m_pdf1); std::swap(m_pdf2, other.m_pdf2); } inline bool PdfInfo::operator==( const PdfInfo& a ) const { /// equality requires that each member match return ( a.id1() == this->id1() && a.id2() == this->id2() && a.pdf_id1() == this->pdf_id1() && a.pdf_id2() == this->pdf_id2() && a.x1() == this->x1() && a.x2() == this->x2() && a.scalePDF() == this->scalePDF() && a.pdf1() == this->pdf1() && a.pdf2() == this->pdf2() ); } inline bool PdfInfo::operator!=( const PdfInfo& a ) const { /// any nonmatching member generates inequality return !( a == *this ); } inline bool PdfInfo::is_valid() const { if( m_id1 != 0 ) return true; if( m_id2 != 0 ) return true; if( m_pdf_id1 != 0 ) return true; if( m_pdf_id2 != 0 ) return true; if( m_x1 != 0 ) return true; if( m_x2 != 0 ) return true; if( m_scalePDF != 0 ) return true; if( m_pdf1 != 0 ) return true; if( m_pdf2 != 0 ) return true; return false; } } // HepMC #endif // HEPMC_PDF_INFO_H hepmc-2.06.09.orig/HepMC/SimpleVector.icc0000644000175000017500000000770411701361610020641 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // SimpleVector.icc ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, July 2006 // // ////////////////////////////////////////////////////////////////////////// #include #include // for swap namespace HepMC { ////////////////////////////////////////////////////////////////////////// // FourVector inline methods ////////////////////////////////////////////////////////////////////////// inline void FourVector::swap( FourVector & other ) { std::swap( m_x, other.m_x ); std::swap( m_y, other.m_y ); std::swap( m_z, other.m_z ); std::swap( m_t, other.m_t ); } inline FourVector & FourVector::operator=(const FourVector & v) { m_x = v.x(); m_y = v.y(); m_z = v.z(); m_t = v.t(); return *this; } inline void FourVector::set(double xin, double yin, double zin, double tin) { m_x = xin; m_y = yin; m_z = zin; m_t = tin; } inline double FourVector::m2() const { return m_t*m_t - (m_x*m_x + m_y*m_y + m_z*m_z); } inline double FourVector::m() const { double mm = m2(); return mm < 0.0 ? -std::sqrt(-mm) : std::sqrt(mm); } inline double FourVector::perp2() const { return m_x*m_x + m_y*m_y; } inline double FourVector::perp() const { return std::sqrt(perp2()); } inline double FourVector::theta() const { return m_x == 0.0 && m_y == 0.0 && m_z == 0.0 ? 0.0 : std::atan2(perp(),m_z); } inline double FourVector::phi() const { return m_x == 0.0 && m_y == 0.0 ? 0.0 : std::atan2(m_y,m_x); } inline double FourVector::rho() const { return std::sqrt( m_x*m_x + m_y*m_y + m_z*m_z ); } inline bool FourVector::operator == (const FourVector & v) const { return (v.x()==x() && v.y()==y() && v.z()==z() && v.t()==t()) ? true : false; } inline bool FourVector::operator != (const FourVector & v) const { return (v.x()!=x() || v.y()!=y() || v.z()!=z() || v.t()!=t()) ? true : false; } inline double FourVector::pseudoRapidity() const { double m1 = std::sqrt( m_x*m_x + m_y*m_y + m_z*m_z ); if ( m1== 0 ) return 0.0; if ( m1== z() ) return 1.0E72; if ( m1== -z() ) return -1.0E72; return 0.5*log( (m1+z())/(m1-z()) ); } inline double FourVector::eta() const { return pseudoRapidity();} ////////////////////////////////////////////////////////////////////////// // ThreeVector inline methods ////////////////////////////////////////////////////////////////////////// inline void ThreeVector::swap( ThreeVector & other ) { std::swap( m_x, other.m_x ); std::swap( m_y, other.m_y ); std::swap( m_z, other.m_z ); } inline double ThreeVector::theta() const { return m_x == 0.0 && m_y == 0.0 && m_z == 0.0 ? 0.0 : std::atan2(perp(),m_z); } inline double ThreeVector::phi() const { return m_x == 0.0 && m_y == 0.0 ? 0.0 : std::atan2(m_y,m_x); } inline double ThreeVector::r() const { return std::sqrt( m_x*m_x + m_y*m_y + m_z*m_z ); } inline void ThreeVector::set(double xin, double yin, double zin) { m_x = xin; m_y = yin; m_z = zin; } inline void ThreeVector::setPhi(double ph) { double xy = perp(); setX(xy*std::cos(ph)); setY(xy*std::sin(ph)); } inline void ThreeVector::setTheta(double th) { double ma = r(); double ph = phi(); setX(ma*std::sin(th)*std::cos(ph)); setY(ma*std::sin(th)*std::sin(ph)); setZ(ma*std::cos(th)); } inline double ThreeVector::perp2() const { return m_x*m_x + m_y*m_y; } inline double ThreeVector::perp() const { return std::sqrt(perp2()); } inline ThreeVector & ThreeVector::operator = (const ThreeVector & p) { m_x = p.x(); m_y = p.y(); m_z = p.z(); return *this; } inline bool ThreeVector::operator == (const ThreeVector& v) const { return (v.x()==x() && v.y()==y() && v.z()==z()) ? true : false; } inline bool ThreeVector::operator != (const ThreeVector& v) const { return (v.x()!=x() || v.y()!=y() || v.z()!=z()) ? true : false; } } // HepMC hepmc-2.06.09.orig/HepMC/StreamHelpers.h0000644000175000017500000000477311211311605020472 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_STREAM_HELPERS_H #define HEPMC_STREAM_HELPERS_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, March 2009 // // This header contains helper functions used by streaming IO ////////////////////////////////////////////////////////////////////////// #include #include #include "HepMC/GenEvent.h" #include "HepMC/TempParticleMap.h" namespace HepMC { namespace detail { /// used by IO_GenEvent constructor std::ostream & establish_output_stream_info( std::ostream & ); /// used by IO_GenEvent constructor std::istream & establish_input_stream_info( std::istream & ); /// get a GenVertex from ASCII input /// TempParticleMap is used to track the associations of particles with vertices std::istream & read_vertex( std::istream &, TempParticleMap &, GenVertex * ); /// get a GenParticle from ASCII input /// TempParticleMap is used to track the associations of particles with vertices std::istream & read_particle( std::istream&, TempParticleMap &, GenParticle * ); /// write a double - for internal use by streaming IO inline std::ostream & output( std::ostream & os, const double& d ) { if( os ) { if ( d == 0. ) { os << ' ' << (int)0; } else { os << ' ' << d; } } return os; } /// write a float - for internal use by streaming IO inline std::ostream & output( std::ostream & os, const float& d ) { if( os ) { if ( d == 0. ) { os << ' ' << (int)0; } else { os << ' ' << d; } } return os; } /// write an int - for internal use by streaming IO inline std::ostream & output( std::ostream & os, const int& i ) { if( os ) { if ( i == 0. ) { os << ' ' << (int)0; } else { os << ' ' << i; } } return os; } /// write a long - for internal use by streaming IO inline std::ostream & output( std::ostream & os, const long& i ) { if( os ) { if ( i == 0. ) { os << ' ' << (int)0; } else { os << ' ' << i; } } return os; } /// write a single char - for internal use by streaming IO inline std::ostream & output( std::ostream & os, const char& c ) { if( os ) { if ( c ) { os << c; } else { os << ' ' ; } } return os; } /// used to read to the end of a bad event std::istream & find_event_end( std::istream & ); } // detail } // HepMC #endif // HEPMC_STREAM_HELPERS_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/IO_HERWIG.h0000644000175000017500000001505111374257600017275 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_IO_HERWIG_H #define HEPMC_IO_HERWIG_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, October 2002, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // IO class for reading the (non-standard) HEPEVT common block from // the Herwig monte carlo program. // Notes: // - The HERWIG HEPEVT common block is non-standard, primarily because it // contains some color flow information. When you call IO_HERWIG, the // HEPEVT common block is transformed to the standard. THIS CHANGES THE // CONTENT of HEPEVT!. // - The HERWIG HEPEVT common block has some EXTRA non-physical ENTRIES // (such as CMS frame, HARD subprocess, and CONE). // These are removed by IO_HERWIG. Thus the HepMC event will APPEAR // to have fewer particles in it that herwig did. // There is a switch m_no_gaps_in_barcodes. For // true - then the extra particles are removed from HEPEVT, with // the result that the HepMC barcodes will be sequential, with // no gaps. // false - the barcodes will correspond directly to the HEPEVT index, but // there will be gaps ... ie some barcodes will be unassigned. // this switch requested by I Hinchliffe, October 31, 2002 // - some of the Herwig GLUON SPLITTING products are not properly documented // in hepevt. I was unable to repair this in a simple and robust way. // Therefore some of the gluon splitting products will be orphans // in the HepMC output. // - Herwig uses HEPEVT_Wrapper::set_max_number_entries(4000); // HEPEVT_Wrapper::set_sizeof_real(8); // which are the defaults for HEPEVT_Wrapper. ////////////////////////////////////////////////////////////////////////// // #include #include #include "HepMC/IO_BaseClass.h" #include "HepMC/HEPEVT_Wrapper.h" namespace HepMC { class GenEvent; class GenVertex; class GenParticle; //! IO_HERWIG is used to get Herwig information /// /// \class IO_HERWIG /// IO class for reading the HEPEVT common block from /// the Herwig monte carlo program. /// class IO_HERWIG : public IO_BaseClass { public: IO_HERWIG(); virtual ~IO_HERWIG(); /// get the next event bool fill_next_event( GenEvent* ); /// write to ostr void print( std::ostream& ostr = std::cout ) const; /// this information is dubious double interfaces_to_version_number() const {return 6.400;} // see comments below for these switches. /// default is true bool print_inconsistency_errors() const; /// decide whether or not to print inconsistency errors void set_print_inconsistency_errors( bool b = true ); /// ask how to deal with extra non-physical pseudo particles bool no_gaps_in_barcodes() const { return m_no_gaps_in_barcodes; } /// The HERWIG HEPEVT common block has some EXTRA non-physical ENTRIES /// (such as CMS frame, HARD subprocess, and CONE). /// These are removed by IO_HERWIG. Thus the HepMC event will APPEAR /// to have fewer particles in it that herwig did. /// There is a switch m_no_gaps_in_barcodes. For /// true - then the extra particles are removed from HEPEVT, with /// the result that the HepMC barcodes will be sequential, with /// no gaps. /// false - the barcodes will correspond directly to the HEPEVT index, but /// there will be gaps ... ie some barcodes will be unassigned. /// this switch requested by I Hinchliffe, October 31, 2002 void set_no_gaps_in_barcodes( bool a ) { m_no_gaps_in_barcodes=a; } protected: // for internal use only /// default is true bool trust_both_mothers_and_daughters() const; /// default is false bool trust_mothers_before_daughters() const; /// define mother daughter trust rules void set_trust_mothers_before_daughters( bool b = true ); /// define mother daughter trust rules void set_trust_both_mothers_and_daughters( bool b = false ); /// make a particle GenParticle* build_particle( int index ); /// make a production vertex void build_production_vertex( int i,std::vector& hepevt_particle, GenEvent* evt ); /// make a decay vertex void build_end_vertex( int i, std::vector& hepevt_particle, GenEvent* evt ); /// find this particle in the map int find_in_map( const std::map& m, GenParticle* p) const; /// make the HERWIG HEPEVT common block look like the standard void repair_hepevt() const; /// deal with artifacts of repairing HEPEVT void remove_gaps_in_hepevt() const; /// zero out a HEPEVT pseudo particle void zero_hepevt_entry( int i ) const; /// translate particle ID int translate_herwig_to_pdg_id( int i ) const; private: // following are not implemented for Herwig virtual void write_event( const GenEvent* ){} private: // use of copy constructor is not allowed IO_HERWIG( const IO_HERWIG& ) : IO_BaseClass() {} private: // data members bool m_trust_mothers_before_daughters; bool m_trust_both_mothers_and_daughters; bool m_print_inconsistency_errors; bool m_no_gaps_in_barcodes; std::vector m_herwig_to_pdg_id; std::set m_no_antiparticles; }; //////////////////////////// // INLINES access methods // //////////////////////////// inline bool IO_HERWIG::trust_both_mothers_and_daughters() const { return m_trust_both_mothers_and_daughters; } inline bool IO_HERWIG::trust_mothers_before_daughters() const { return m_trust_mothers_before_daughters; } inline bool IO_HERWIG::print_inconsistency_errors() const { return m_print_inconsistency_errors; } inline void IO_HERWIG::set_trust_both_mothers_and_daughters( bool b ) { m_trust_both_mothers_and_daughters = b; } inline void IO_HERWIG::set_trust_mothers_before_daughters( bool b ) { m_trust_mothers_before_daughters = b; } inline void IO_HERWIG::set_print_inconsistency_errors( bool b ) { m_print_inconsistency_errors = b; } } // HepMC #endif // HEPMC_IO_HERWIG_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/GenEvent.h0000644000175000017500000010666011715257770017452 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_GEN_EVENT_H #define HEPMC_GEN_EVENT_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Event record for MC generators (for use at any stage of generation) ////////////////////////////////////////////////////////////////////////// // // This class is intended as both a "container class" ( to store a MC // event for interface between MC generators and detector simulation ) // and also as a "work in progress class" ( that could be used inside // a generator and modified as the event is built ). // // Iterators are provided which allow the user to easily obtain a // list of particles or vertices in an event --- this list can be filled // subject to some sort of selection criteria. Examples are given below // ( see HepMC::copy_if and std::copy ) /// /// \namespace HepMC /// All classes in the HepMC packages are in the HepMC namespace /// namespace HepMC { // To create a list from an iterator, use: (i.e. for a list of particles); // #include // list thelist; // copy( evt->particles_begin(), evt->particles_end(), // back_inserter(thelist) ); // to create a list subject to a condition (predicate) use: // list thelist; // HepMC::copy_if( evt->particles_begin(), evt->particles_end(), // back_inserter(thelist), is_photon() ); // where is_photon() is a predicate like: // class is_photon { // public: // bool operator() ( GenParticle const * p ) { // if ( p && p->pdg_id() == 22 ) return true; // return false; // } // }; // which the user defines herself. /// define the type of iterator to use template void copy_if( InputIterator first, InputIterator last, OutputIterator out, Predicate pred ) { for ( ; first != last; ++first ) { if ( pred(*first) ) out = *first; } } } // HepMC // Since a container of all vertices in the event is maintained, the time // required to loop over all vertices (or particles) is very fast -- and // the user does not gain much by first making his own list. // (this is not true for the GenVertex:: versions of these iterators, which // allow you to specify the vertex starting point and range) // Data Members: // signal_process_id() The integer ID that uniquely specifies this signal // process, i.e. MSUB in Pythia. It is necessary to // package this with each event rather than with the run // because many processes may be generated within one // run. // event_number() Strictly speaking we cannot think of any reason that // an event would need to know its own event number, it // is more likely something that would be assigned by // a database. It is included anyway (tradition?) since // we expect it may be useful for debugging. It can // be reset later by a database. // mpi() The number of multi parton interactions in the event. // This is NOT beam pileup. Set to -1 by default. // beam_particles() A pair of pointers to the incoming beam particles. // signal_process_vertex() pointer to the vertex containing the signal process // weights() Vector of doubles which specify th weight of the evnt, // the first entry will be the "event weight" used for // hit and miss etc., but a general vector is used to // allow for reweighting etc. We envision a list of // WeightTags to be included with a run class which // would specify the meaning of the Weights . // random_states() Vector of integers which specify the random number // generator's state for this event. It is left to the // generator to make use of this. We envision a vector of // RndmStatesTags to be included with a run class which // would specify the meaning of the random_states. // /////////////////////// // Memory allocation // /////////////////////// // -When a vertex (particle) is added to a event (vertex), it is "adopted" // and becomes the responsibility of the event (vertex) to delete that // particle. // -objects responsible for deleting memory: // -events delete included vertices // -each vertex deletes its outgoing particles which do not have decay // vertices // -each vertex deletes its incoming particles which do not // have creation vertices // //////////////////////// // About the Barcodes // //////////////////////// // - each vertex or particle has a barcode, which is just an integer which // uniquely identifies it inside the event (i.e. there is a one to one // mapping between particle memory addresses and particle barcodes... and // the same applied for vertices) // - The value of a barcode has NO MEANING and NO ORDER! // For the user's convenience, when an event is read in via an IO_method // from an indexed list (like the HEPEVT common block), then the index will // become the barcode for that particle. // - particle barcodes are always positive integers // vertex barcodes are always negative integers // The barcodes are chosen and set automatically when a vertex or particle // comes under the ownership of an event (i.e. it is contained in an event). // - You can tell when a particle or vertex is owned, because its // parent_event() return value will return a pointer to the event which owns // it (or null if its an orphan). // - Please note that the barcodes are intended for internal use within HepMC // as a unique identifier for the particles and vertices. // Using the barcode to encode extra information is an abuse of // the barcode data member and causes confusion among users. // #include "HepMC/GenVertex.h" #include "HepMC/GenParticle.h" #include "HepMC/WeightContainer.h" #include "HepMC/GenCrossSection.h" #include "HepMC/HeavyIon.h" #include "HepMC/PdfInfo.h" #include "HepMC/Units.h" #include "HepMC/HepMCDefs.h" #include #include #include #include #include namespace HepMC { class GenEventVertexRange; class ConstGenEventVertexRange; class GenEventParticleRange; class ConstGenEventParticleRange; //! The GenEvent class is the core of HepMC /// /// \class GenEvent /// HepMC::GenEvent contains information about generated particles. /// GenEvent is structured as a set of vertices which contain the particles. /// class GenEvent { friend class GenParticle; friend class GenVertex; public: /// default constructor creates null pointers to HeavyIon, PdfInfo, and GenCrossSection GenEvent( int signal_process_id = 0, int event_number = 0, GenVertex* signal_vertex = 0, const WeightContainer& weights = std::vector(), const std::vector& randomstates = std::vector(), Units::MomentumUnit = Units::default_momentum_unit(), Units::LengthUnit = Units::default_length_unit() ); /// explicit constructor that takes HeavyIon and PdfInfo GenEvent( int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& randomstates, const HeavyIon& ion, const PdfInfo& pdf, Units::MomentumUnit = Units::default_momentum_unit(), Units::LengthUnit = Units::default_length_unit() ); /// constructor requiring units - all else is default GenEvent( Units::MomentumUnit, Units::LengthUnit, int signal_process_id = 0, int event_number = 0, GenVertex* signal_vertex = 0, const WeightContainer& weights = std::vector(), const std::vector& randomstates = std::vector() ); /// explicit constructor with units first that takes HeavyIon and PdfInfo GenEvent( Units::MomentumUnit, Units::LengthUnit, int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& randomstates, const HeavyIon& ion, const PdfInfo& pdf ); GenEvent( const GenEvent& inevent ); //!< deep copy GenEvent& operator=( const GenEvent& inevent ); //!< make a deep copy virtual ~GenEvent(); //! beam_particles() const; /// check GenEvent for validity /// A GenEvent is presumed valid if it has particles and/or vertices. bool is_valid() const; /// direct access to the weights container is allowed. /// Thus you can use myevt.weights()[2]; /// to access element 2 of the weights. /// or use myevt.weights().push_back( mywgt ); to add an element. /// and you can set the weights with myevt.weights() = myvector; WeightContainer& weights(); //!< direct access to WeightContainer const WeightContainer& weights() const; //!< direct access to WeightContainer /// access the GenCrossSection container if it exists GenCrossSection const * cross_section() const; GenCrossSection* cross_section(); /// access the HeavyIon container if it exists HeavyIon const * heavy_ion() const; HeavyIon* heavy_ion(); /// access the PdfInfo container if it exists PdfInfo const * pdf_info() const; PdfInfo* pdf_info(); /// vector of integers containing information about the random state const std::vector& random_states() const; /// how many particle barcodes exist? int particles_size() const; /// return true if there are no particle barcodes bool particles_empty() const; /// how many vertex barcodes exist? int vertices_size() const; /// return true if there are no vertex barcodes bool vertices_empty() const; /// Write the unit information to an output stream. /// If the output stream is not defined, use std::cout. void write_units( std::ostream & os = std::cout ) const; /// If the cross section is defined, /// write the cross section information to an output stream. /// If the output stream is not defined, use std::cout. void write_cross_section( std::ostream& ostr = std::cout ) const; /// Units used by the GenParticle momentum FourVector. Units::MomentumUnit momentum_unit() const; /// Units used by the GenVertex position FourVector. Units::LengthUnit length_unit() const; std::ostream& write(std::ostream&); std::istream& read(std::istream&); ///////////////////// // mutator methods // ///////////////////// bool add_vertex( GenVertex* vtx ); //!< adds to evt and adopts bool remove_vertex( GenVertex* vtx ); //!< erases vtx from evt void clear(); //!< empties the entire event void set_signal_process_id( int id ); //!< set unique signal process id void set_event_number( int eventno ); //!< set event number void set_mpi( int ); //!< set number of multi parton interactions void set_event_scale( double scale ); //!< set energy scale void set_alphaQCD( double a ); //!< set QCD coupling void set_alphaQED( double a ); //!< set QED coupling /// set pointer to the vertex containing the signal process void set_signal_process_vertex( GenVertex* ); /// set incoming beam particles bool set_beam_particles(GenParticle*, GenParticle*); /// use a pair of GenParticle*'s to set incoming beam particles bool set_beam_particles(std::pair const &); /// provide random state information void set_random_states( const std::vector& randomstates ); /// provide a pointer to the GenCrossSection container void set_cross_section( const GenCrossSection& ); /// provide a pointer to the HeavyIon container void set_heavy_ion( const HeavyIon& ion ); /// provide a pointer to the PdfInfo container void set_pdf_info( const PdfInfo& p ); /// set the units using enums /// This method will convert momentum and position data if necessary void use_units( Units::MomentumUnit, Units::LengthUnit ); /// set the units using strings /// the string must match the enum exactly /// This method will convert momentum and position data if necessary void use_units( std::string&, std::string& ); /// set the units using enums /// This method will NOT convert momentum and position data void define_units( Units::MomentumUnit, Units::LengthUnit ); /// set the units using strings /// the string must match the enum exactly /// This method will NOT convert momentum and position data void define_units( std::string&, std::string& ); /// vertex range GenEventVertexRange vertex_range(); /// vertex range ConstGenEventVertexRange vertex_range() const; /// particle range GenEventParticleRange particle_range(); /// particle range ConstGenEventParticleRange particle_range() const; public: /////////////////////////////// // vertex_iterators // /////////////////////////////// // Note: the XXX_iterator is "resolvable" as XXX_const_iterator, but // not the reverse, which is consistent with STL, // see Musser, Derge, Saini 2ndEd. p. 69,70. //! const vertex iterator /// \class vertex_const_iterator /// HepMC::GenEvent::vertex_const_iterator /// is used to iterate over all vertices in the event. class vertex_const_iterator : public std::iterator{ // Iterates over all vertices in this event public: /// constructor requiring vertex information vertex_const_iterator( const std::map >::const_iterator& i) : m_map_iterator(i) {} vertex_const_iterator() {} /// copy constructor vertex_const_iterator( const vertex_const_iterator& i ) { *this = i; } virtual ~vertex_const_iterator() {} /// make a copy vertex_const_iterator& operator=( const vertex_const_iterator& i ) { m_map_iterator = i.m_map_iterator; return *this; } /// return a pointer to a GenVertex GenVertex* operator*(void) const { return m_map_iterator->second; } /// Pre-fix increment vertex_const_iterator& operator++(void) //Pre-fix increment { ++m_map_iterator; return *this; } /// Post-fix increment vertex_const_iterator operator++(int) //Post-fix increment { vertex_const_iterator out(*this); ++(*this); return out; } /// equality bool operator==( const vertex_const_iterator& a ) const { return m_map_iterator == a.m_map_iterator; } /// inequality bool operator!=( const vertex_const_iterator& a ) const { return !(m_map_iterator == a.m_map_iterator); } protected: /// const iterator to a vertex map std::map >::const_iterator m_map_iterator; private: /// Pre-fix increment -- is not allowed vertex_const_iterator& operator--(void); /// Post-fix increment -- is not allowed vertex_const_iterator operator--(int); }; friend class vertex_const_iterator; /// begin vertex iteration vertex_const_iterator vertices_begin() const { return GenEvent::vertex_const_iterator( m_vertex_barcodes.begin() ); } /// end vertex iteration vertex_const_iterator vertices_end() const { return GenEvent::vertex_const_iterator( m_vertex_barcodes.end() ); } //! non-const vertex iterator /// \class vertex_iterator /// HepMC::GenEvent::vertex_iterator /// is used to iterate over all vertices in the event. class vertex_iterator : public std::iterator{ // Iterates over all vertices in this event public: /// constructor requiring vertex information vertex_iterator( const std::map >::iterator& i ) : m_map_iterator( i ) {} vertex_iterator() {} /// copy constructor vertex_iterator( const vertex_iterator& i ) { *this = i; } virtual ~vertex_iterator() {} /// make a copy vertex_iterator& operator=( const vertex_iterator& i ) { m_map_iterator = i.m_map_iterator; return *this; } /// const vertex iterator operator vertex_const_iterator() const { return vertex_const_iterator(m_map_iterator); } /// return a pointer to a GenVertex GenVertex* operator*(void) const { return m_map_iterator->second; } /// Pre-fix increment vertex_iterator& operator++(void) //Pre-fix increment { ++m_map_iterator; return *this; } /// Post-fix increment vertex_iterator operator++(int) //Post-fix increment { vertex_iterator out(*this); ++(*this); return out; } /// equality bool operator==( const vertex_iterator& a ) const { return m_map_iterator == a.m_map_iterator; } /// inequality bool operator!=( const vertex_iterator& a ) const { return !(m_map_iterator == a.m_map_iterator); } protected: /// iterator to the vertex map std::map >::iterator m_map_iterator; private: /// Pre-fix increment vertex_iterator& operator--(void); /// Post-fix increment vertex_iterator operator--(int); }; friend class vertex_iterator; /// begin vertex iteration vertex_iterator vertices_begin() { return GenEvent::vertex_iterator( m_vertex_barcodes.begin() ); } /// end vertex iteration vertex_iterator vertices_end() { return GenEvent::vertex_iterator( m_vertex_barcodes.end() ); } public: /////////////////////////////// // particle_iterator // /////////////////////////////// // Example of iterating over all particles in the event: // for ( GenEvent::particle_const_iterator p = particles_begin(); // p != particles_end(); ++p ) { // (*p)->print(); // } // //! const particle iterator /// \class particle_const_iterator /// HepMC::GenEvent::particle_const_iterator /// is used to iterate over all particles in the event. class particle_const_iterator : public std::iterator{ // Iterates over all vertices in this event public: /// iterate over particles particle_const_iterator( const std::map::const_iterator& i ) : m_map_iterator(i) {} particle_const_iterator() {} /// copy constructor particle_const_iterator( const particle_const_iterator& i ) { *this = i; } virtual ~particle_const_iterator() {} /// make a copy particle_const_iterator& operator=( const particle_const_iterator& i ) { m_map_iterator = i.m_map_iterator; return *this; } /// return a pointer to GenParticle GenParticle* operator*(void) const { return m_map_iterator->second; } /// Pre-fix increment particle_const_iterator& operator++(void) //Pre-fix increment { ++m_map_iterator; return *this; } /// Post-fix increment particle_const_iterator operator++(int) //Post-fix increment { particle_const_iterator out(*this); ++(*this); return out; } /// equality bool operator==( const particle_const_iterator& a ) const { return m_map_iterator == a.m_map_iterator; } /// inequality bool operator!=( const particle_const_iterator& a ) const { return !(m_map_iterator == a.m_map_iterator); } protected: /// const iterator to the GenParticle map std::map::const_iterator m_map_iterator; private: /// Pre-fix increment particle_const_iterator& operator--(void); /// Post-fix increment particle_const_iterator operator--(int); }; friend class particle_const_iterator; /// begin particle iteration particle_const_iterator particles_begin() const { return GenEvent::particle_const_iterator( m_particle_barcodes.begin() ); } /// end particle iteration particle_const_iterator particles_end() const { return GenEvent::particle_const_iterator( m_particle_barcodes.end() ); } //! non-const particle iterator /// \class particle_iterator /// HepMC::GenEvent::particle_iterator /// is used to iterate over all particles in the event. class particle_iterator : public std::iterator{ // Iterates over all vertices in this event public: /// iterate over particles particle_iterator( const std::map::iterator& i ) : m_map_iterator( i ) {} particle_iterator() {} /// copy constructor particle_iterator( const particle_iterator& i ) { *this = i; } virtual ~particle_iterator() {} /// make a copy particle_iterator& operator=( const particle_iterator& i ) { m_map_iterator = i.m_map_iterator; return *this; } /// const particle iterator operator particle_const_iterator() const { return particle_const_iterator(m_map_iterator); } /// return pointer to GenParticle GenParticle* operator*(void) const { return m_map_iterator->second; } /// Pre-fix increment particle_iterator& operator++(void) { ++m_map_iterator; return *this; } /// Post-fix increment particle_iterator operator++(int) { particle_iterator out(*this); ++(*this); return out; } /// equality bool operator==( const particle_iterator& a ) const { return m_map_iterator == a.m_map_iterator; } /// inequality bool operator!=( const particle_iterator& a ) const { return !(m_map_iterator == a.m_map_iterator); } protected: /// iterator for GenParticle map std::map::iterator m_map_iterator; private: /// Pre-fix increment particle_iterator& operator--(void); /// Post-fix increment particle_iterator operator--(int); }; friend class particle_iterator; /// begin particle iteration particle_iterator particles_begin() { return GenEvent::particle_iterator( m_particle_barcodes.begin() ); } /// end particle iteration particle_iterator particles_end() { return GenEvent::particle_iterator( m_particle_barcodes.end() ); } //////////////////////////////////////////////// protected: // // Following methods intended for use by GenParticle/Vertex classes: // In general there is no reason they should be used elsewhere. /// set the barcode - intended for use by GenParticle bool set_barcode( GenParticle* p, int suggested_barcode =false ); /// set the barcode - intended for use by GenVertex bool set_barcode( GenVertex* v, int suggested_barcode =false ); /// intended for use by GenParticle void remove_barcode( GenParticle* p ); /// intended for use by GenVertex void remove_barcode( GenVertex* v ); void delete_all_vertices(); //! ); /// send a GenVertex to ASCII output std::ostream & write_vertex( std::ostream &, GenVertex const * ); /// send a GenParticle to ASCII output std::ostream & write_particle( std::ostream&, GenParticle const * ); /// find the file type std::istream & find_file_type( std::istream & ); /// find the key at the end of the block std::istream & find_end_key( std::istream &, int & ); /// get unit information from ASCII input std::istream & read_units( std::istream & ); /// get weight names from ASCII input std::istream & read_weight_names( std::istream & ); /// read the event header line std::istream & process_event_line( std::istream &, int &, int &, int &, int & ); private: // data members int m_signal_process_id; int m_event_number; int m_mpi; // number of multi paricle interactions double m_event_scale;// energy scale, see hep-ph/0109068 double m_alphaQCD; // QCD coupling, see hep-ph/0109068 double m_alphaQED; // QED coupling, see hep-ph/0109068 GenVertex* m_signal_process_vertex; GenParticle* m_beam_particle_1; GenParticle* m_beam_particle_2; WeightContainer m_weights; // weights for this event first weight // is used by default for hit and miss std::vector m_random_states; // container of rndm num // generator states std::map< int,HepMC::GenVertex*,std::greater > m_vertex_barcodes; std::map< int,HepMC::GenParticle*,std::less > m_particle_barcodes; GenCrossSection* m_cross_section; // undefined by default HeavyIon* m_heavy_ion; // undefined by default PdfInfo* m_pdf_info; // undefined by default Units::MomentumUnit m_momentum_unit; // default value set by configure switch Units::LengthUnit m_position_unit; // default value set by configure switch }; /////////////////////////// // IO Free Functions // /////////////////////////// /// standard streaming IO output operator std::ostream & operator << (std::ostream &, GenEvent &); /// standard streaming IO input operator std::istream & operator >> (std::istream &, GenEvent &); /// set the units for this input stream std::istream & set_input_units(std::istream &, Units::MomentumUnit, Units::LengthUnit); /// Explicitly write the begin block lines that IO_GenEvent uses std::ostream & write_HepMC_IO_block_begin(std::ostream & ); /// Explicitly write the end block line that IO_GenEvent uses std::ostream & write_HepMC_IO_block_end(std::ostream & ); /////////////////////////// // INLINE Free Functions // /////////////////////////// // Implemented in terms of GenEvent::use_... inline GenEvent& convert_units(GenEvent & evt, Units::MomentumUnit m, Units::LengthUnit l) { evt.use_units(m, l); return evt; } /////////////////////////// // INLINE Access Methods // /////////////////////////// /// The integer ID that uniquely specifies this signal /// process, i.e. MSUB in Pythia. It is necessary to /// package this with each event rather than with the run /// because many processes may be generated within one run. inline int GenEvent::signal_process_id() const { return m_signal_process_id; } inline int GenEvent::event_number() const { return m_event_number; } /// Returns the number of multi parton interactions in the event. /// This number is -1 if it is not set. inline int GenEvent::mpi() const { return m_mpi; } inline double GenEvent::event_scale() const { return m_event_scale; } inline double GenEvent::alphaQCD() const { return m_alphaQCD; } inline double GenEvent::alphaQED() const { return m_alphaQED; } inline GenVertex* GenEvent::signal_process_vertex() const { /// returns a (mutable) pointer to the signal process vertex return m_signal_process_vertex; } inline WeightContainer& GenEvent::weights() { return m_weights; } inline const WeightContainer& GenEvent::weights() const { return m_weights; } inline GenCrossSection const * GenEvent::cross_section() const { return m_cross_section; } inline GenCrossSection* GenEvent::cross_section() { return m_cross_section; } inline HeavyIon const * GenEvent::heavy_ion() const { return m_heavy_ion; } inline HeavyIon* GenEvent::heavy_ion() { return m_heavy_ion; } inline PdfInfo const * GenEvent::pdf_info() const { return m_pdf_info; } inline PdfInfo* GenEvent::pdf_info() { return m_pdf_info; } /// Vector of integers which specify the random number /// generator's state for this event. It is left to the /// generator to make use of this. We envision a vector of /// RndmStatesTags to be included with a run class which /// would specify the meaning of the random_states. inline const std::vector& GenEvent::random_states() const { return m_random_states; } inline void GenEvent::set_signal_process_id( int id ) { m_signal_process_id = id; } inline void GenEvent::set_event_number( int eventno ) { m_event_number = eventno; } /// Use this to set the number of multi parton interactions in each event. inline void GenEvent::set_mpi( int nmpi ) { m_mpi = nmpi; } inline void GenEvent::set_event_scale( double sc ) { m_event_scale = sc; } inline void GenEvent::set_alphaQCD( double a ) { m_alphaQCD = a; } inline void GenEvent::set_alphaQED( double a ) { m_alphaQED = a; } inline void GenEvent::set_signal_process_vertex( GenVertex* vtx ) { m_signal_process_vertex = vtx; if ( m_signal_process_vertex ) add_vertex( m_signal_process_vertex ); } inline void GenEvent::set_cross_section( const GenCrossSection& xs ) { delete m_cross_section; m_cross_section = new GenCrossSection(xs); } inline void GenEvent::set_heavy_ion( const HeavyIon& ion ) { delete m_heavy_ion; m_heavy_ion = new HeavyIon(ion); } inline void GenEvent::set_pdf_info( const PdfInfo& p ) { delete m_pdf_info; m_pdf_info = new PdfInfo(p); } inline void GenEvent::set_random_states( const std::vector& randomstates ) { m_random_states = randomstates; } inline void GenEvent::remove_barcode( GenParticle* p ) { m_particle_barcodes.erase( p->barcode() ); } inline void GenEvent::remove_barcode( GenVertex* v ) { m_vertex_barcodes.erase( v->barcode() ); } /// Each vertex or particle has a barcode, which is just an integer which /// uniquely identifies it inside the event (i.e. there is a one to one /// mapping between particle memory addresses and particle barcodes... and /// the same applied for vertices). /// /// The value of a barcode has NO MEANING and NO ORDER! /// For the user's convenience, when an event is read in via an IO_method /// from an indexed list (like the HEPEVT common block), then the index will /// become the barcode for that particle. /// /// Particle barcodes are always positive integers. /// The barcodes are chosen and set automatically when a vertex or particle /// comes under the ownership of an event (i.e. it is contained in an event). /// /// Please note that the barcodes are intended for internal use within /// HepMC as a unique identifier for the particles and vertices. /// Using the barcode to encode extra information is an abuse of /// the barcode data member and causes confusion among users. inline GenParticle* GenEvent::barcode_to_particle( int barCode ) const { std::map::const_iterator i = m_particle_barcodes.find(barCode); return ( i != m_particle_barcodes.end() ) ? (*i).second : 0; } /// Each vertex or particle has a barcode, which is just an integer which /// uniquely identifies it inside the event (i.e. there is a one to one /// mapping between particle memory addresses and particle barcodes... and /// the same applied for vertices). /// /// The value of a barcode has NO MEANING and NO ORDER! /// For the user's convenience, when an event is read in via an IO_method /// from an indexed list (like the HEPEVT common block), then the index will /// become the barcode for that particle. /// /// Vertex barcodes are always negative integers. /// The barcodes are chosen and set automatically when a vertex or particle /// comes under the ownership of an event (i.e. it is contained in an event). /// /// Please note that the barcodes are intended for internal use within /// HepMC as a unique identifier for the particles and vertices. /// Using the barcode to encode extra information is an abuse of /// the barcode data member and causes confusion among users. inline GenVertex* GenEvent::barcode_to_vertex( int barCode ) const { std::map >::const_iterator i = m_vertex_barcodes.find(barCode); return ( i != m_vertex_barcodes.end() ) ? (*i).second : 0; } inline int GenEvent::particles_size() const { return (int)m_particle_barcodes.size(); } inline bool GenEvent::particles_empty() const { return (bool)m_particle_barcodes.empty(); } inline int GenEvent::vertices_size() const { return (int)m_vertex_barcodes.size(); } inline bool GenEvent::vertices_empty() const { return (bool)m_vertex_barcodes.empty(); } // beam particles inline std::pair GenEvent::beam_particles() const { return std::pair (m_beam_particle_1, m_beam_particle_2); } // units inline Units::MomentumUnit GenEvent::momentum_unit() const { return m_momentum_unit; } inline Units::LengthUnit GenEvent::length_unit() const { return m_position_unit; } inline void GenEvent::use_units( Units::MomentumUnit new_m, Units::LengthUnit new_l ) { use_momentum_unit( new_m ); use_length_unit( new_l ); } inline void GenEvent::use_units( std::string& new_m, std::string& new_l ) { use_momentum_unit( new_m ); use_length_unit( new_l ); } inline void GenEvent::define_units( Units::MomentumUnit new_m, Units::LengthUnit new_l ) { m_momentum_unit = new_m; m_position_unit = new_l; } } // HepMC #endif // HEPMC_GEN_EVENT_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/TempParticleMap.h0000644000175000017500000000401511433073064020742 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_TempParticleMap_H #define HEPMC_TempParticleMap_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, October 2007 // // Used by IO classes ////////////////////////////////////////////////////////////////////////// #include namespace HepMC { class GenParticle; //! TempParticleMap is a temporary GenParticle* container used during input. /// /// \class TempParticleMap /// Used by IO classes for recoverable particle ordering. /// Map GenParticle* against both outgoing vertex and particle order. /// class TempParticleMap { public: typedef std::map TempMap; typedef std::map TempOrderMap; typedef TempMap::iterator TempMapIterator; typedef TempOrderMap::iterator orderIterator; TempParticleMap() : m_particle_to_end_vertex(), m_particle_order() {} ~TempParticleMap() {} TempMapIterator begin() { return m_particle_to_end_vertex.begin(); } TempMapIterator end() { return m_particle_to_end_vertex.end(); } orderIterator order_begin() { return m_particle_order.begin(); } orderIterator order_end() { return m_particle_order.end(); } int end_vertex( GenParticle* ); void addEndParticle( GenParticle*, int& ); private: TempMap m_particle_to_end_vertex; TempOrderMap m_particle_order; }; inline int TempParticleMap::end_vertex( GenParticle* p ) { //return m_particle_to_end_vertex[p]->second; TempMapIterator it = m_particle_to_end_vertex.find(p); if( it == end() ) return 0; return m_particle_to_end_vertex[p]; } inline void TempParticleMap::addEndParticle( GenParticle* p, int& end_vtx_code ) { m_particle_order[p->barcode()] = p; m_particle_to_end_vertex[p] = end_vtx_code; } } // HepMC #endif // HEPMC_TempParticleMap_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/HEPEVT_Wrapper.h0000644000175000017500000005157410757560560020434 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPEVT_EntriesAllocation #define HEPEVT_EntriesAllocation 10000 #endif // HEPEVT_EntriesAllocation //-------------------------------------------------------------------------- #ifndef HEPMC_HEPEVT_COMMON_H #define HEPMC_HEPEVT_COMMON_H ////////////////////////////////////////////////////////////////////////// // // PARAMETER (NMXHEP=2000) // COMMON/HEPEVT/NEVHEP,NHEP,ISTHEP(NMXHEP),IDHEP(NMXHEP), // & JMOHEP(2,NMXHEP),JDAHEP(2,NMXHEP),PHEP(5,NMXHEP),VHEP(4,NMXHEP) /**********************************************************/ /* D E S C R I P T I O N : */ /*--------------------------------------------------------*/ /* NEVHEP - event number (or some special meaning*/ /* (see documentation for details) */ /* NHEP - actual number of entries in current */ /* event. */ /* ISTHEP[IHEP] - status code for IHEP'th entry - see */ /* documentation for details */ /* IDHEP [IHEP] - IHEP'th particle identifier according*/ /* to PDG. */ /* JMOHEP[IHEP][0] - pointer to position of 1st mother */ /* JMOHEP[IHEP][1] - pointer to position of 2nd mother */ /* JDAHEP[IHEP][0] - pointer to position of 1st daughter */ /* JDAHEP[IHEP][1] - pointer to position of 2nd daughter */ /* PHEP [IHEP][0] - X momentum */ /* PHEP [IHEP][1] - Y momentum */ /* PHEP [IHEP][2] - Z momentum */ /* PHEP [IHEP][3] - Energy */ /* PHEP [IHEP][4] - Mass */ /* VHEP [IHEP][0] - X vertex */ /* VHEP [IHEP][1] - Y vertex */ /* VHEP [IHEP][2] - Z vertex */ /* VHEP [IHEP][3] - production time */ /*========================================================*/ // Remember, array(1) is the first entry in a fortran array, array[0] is the // first entry in a C array. // // This interface to HEPEVT common block treats the block as // an array of bytes --- the precision and number of entries // is determined "on the fly" by the wrapper and used to decode // each entry. // // HEPEVT_EntriesAllocation is the maximum size of the HEPEVT common block // that can be interfaced. // It is NOT the actual size of the HEPEVT common used in each // individual application. The actual size can be changed on // the fly using HEPEVT_Wrapper::set_max_number_entries(). // Thus HEPEVT_EntriesAllocation should typically be set // to the maximum possible number of entries --- 10000 is a good choice // (and is the number used by ATLAS versions of Pythia). // // Note: a statement like *( (int*)&hepevt.data[0] ) // takes the memory address of the first byte in HEPEVT, // interprets it as an integer pointer, // and dereferences the pointer. // i.e. it returns an integer corresponding to nevhep // #include const unsigned int hepevt_bytes_allocation = sizeof(long int) * ( 2 + 6 * HEPEVT_EntriesAllocation ) + sizeof(double) * ( 9 * HEPEVT_EntriesAllocation ); #ifdef _WIN32 // Platform: Windows MS Visual C++ struct HEPEVT_DEF{ char data[hepevt_bytes_allocation]; }; extern "C" HEPEVT_DEF HEPEVT; #define hepevt HEPEVT #else extern "C" { extern struct { char data[hepevt_bytes_allocation]; } hepevt_; } #define hepevt hepevt_ #endif // Platform #endif // HEPMC_HEPEVT_COMMON_H //-------------------------------------------------------------------------- #ifndef HEPMC_HEPEVT_WRAPPER_H #define HEPMC_HEPEVT_WRAPPER_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, April 24, 2000, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Generic Wrapper for the fortran HEPEVT common block // This class is intended for static use only - it makes no sense to // instantiate it. // Updated: June 30, 2000 (static initialization moved to separate .cxx file) ////////////////////////////////////////////////////////////////////////// // // The index refers to the fortran style index: // i.e. index=1 refers to the first entry in the HEPEVT common block. // all indices must be >0 // number_entries --> integer between 0 and max_number_entries() giving total // number of sequential particle indices // first_parent/child --> index of first mother/child if there is one, // zero otherwise // last_parent/child --> if number children is >1, address of last parent/child // if number of children is 1, same as first_parent/child // if there are no children, returns zero. // is_double_precision --> T or F depending if floating point variables // are 8 or 4 bytes // #include #include // needed for formatted output using sprintf namespace HepMC { //! Generic Wrapper for the fortran HEPEVT common block /// \class HEPEVT_Wrapper /// This class is intended for static use only - it makes no sense to /// instantiate it. /// class HEPEVT_Wrapper { public: /// write information from HEPEVT common block static void print_hepevt( std::ostream& ostr = std::cout ); /// write particle information to ostr static void print_hepevt_particle( int index, std::ostream& ostr = std::cout ); static bool is_double_precision(); //!< True if common block uses double /// check for problems with HEPEVT common block static bool check_hepevt_consistency( std::ostream& ostr = std::cout ); /// set all entries in HEPEVT to zero static void zero_everything(); //////////////////// // Access Methods // //////////////////// static int event_number(); //!< event number static int number_entries(); //!< num entries in current evt static int status( int index ); //!< status code static int id( int index ); //!< PDG particle id static int first_parent( int index ); //!< index of 1st mother static int last_parent( int index ); //!< index of last mother static int number_parents( int index ); //!< number of parents static int first_child( int index ); //!< index of 1st daughter static int last_child( int index ); //!< index of last daughter static int number_children( int index ); //!< number of children static double px( int index ); //!< X momentum static double py( int index ); //!< Y momentum static double pz( int index ); //!< Z momentum static double e( int index ); //!< Energy static double m( int index ); //!< generated mass static double x( int index ); //!< X Production vertex static double y( int index ); //!< Y Production vertex static double z( int index ); //!< Z Production vertex static double t( int index ); //!< production time //////////////////// // Set Methods // //////////////////// /// set event number static void set_event_number( int evtno ); /// set number of entries in HEPEVT static void set_number_entries( int noentries ); /// set particle status static void set_status( int index, int status ); /// set particle ID static void set_id( int index, int id ); /// define parents of a particle static void set_parents( int index, int firstparent, int lastparent ); /// define children of a particle static void set_children( int index, int firstchild, int lastchild ); /// set particle momentum static void set_momentum( int index, double px, double py, double pz, double e ); /// set particle mass static void set_mass( int index, double mass ); /// set particle production vertex static void set_position( int index, double x, double y, double z, double t ); ////////////////////// // HEPEVT Floorplan // ////////////////////// static unsigned int sizeof_int(); //!< size of integer in bytes static unsigned int sizeof_real(); //!< size of real in bytes static int max_number_entries(); //!< size of common block static void set_sizeof_int(unsigned int); //!< define size of integer static void set_sizeof_real(unsigned int); //!< define size of real static void set_max_number_entries(unsigned int); //!< define size of common block protected: /// navigate a byte array static double byte_num_to_double( unsigned int ); /// navigate a byte array static int byte_num_to_int( unsigned int ); /// pretend common block is an array of bytes static void write_byte_num( double, unsigned int ); /// pretend common block is an array of bytes static void write_byte_num( int, unsigned int ); /// print output legend static void print_legend( std::ostream& ostr = std::cout ); private: static unsigned int s_sizeof_int; static unsigned int s_sizeof_real; static unsigned int s_max_number_entries; }; ////////////////////////////// // HEPEVT Floorplan Inlines // ////////////////////////////// inline unsigned int HEPEVT_Wrapper::sizeof_int(){ return s_sizeof_int; } inline unsigned int HEPEVT_Wrapper::sizeof_real(){ return s_sizeof_real; } inline int HEPEVT_Wrapper::max_number_entries() { return (int)s_max_number_entries; } inline void HEPEVT_Wrapper::set_sizeof_int( unsigned int size ) { if ( size != sizeof(short int) && size != sizeof(long int) && size != sizeof(int) ) { std::cerr << "HepMC is not able to handle integers " << " of size other than 2 or 4." << " You requested: " << size << std::endl; } s_sizeof_int = size; } inline void HEPEVT_Wrapper::set_sizeof_real( unsigned int size ) { if ( size != sizeof(float) && size != sizeof(double) ) { std::cerr << "HepMC is not able to handle floating point numbers" << " of size other than 4 or 8." << " You requested: " << size << std::endl; } s_sizeof_real = size; } inline void HEPEVT_Wrapper::set_max_number_entries( unsigned int size ) { s_max_number_entries = size; } inline double HEPEVT_Wrapper::byte_num_to_double( unsigned int b ) { if ( b >= hepevt_bytes_allocation ) std::cerr << "HEPEVT_Wrapper: requested hepevt data exceeds allocation" << std::endl; if ( s_sizeof_real == sizeof(float) ) { float* myfloat = (float*)&hepevt.data[b]; return (double)(*myfloat); } else if ( s_sizeof_real == sizeof(double) ) { double* mydouble = (double*)&hepevt.data[b]; return (*mydouble); } else { std::cerr << "HEPEVT_Wrapper: illegal floating point number length." << s_sizeof_real << std::endl; } return 0; } inline int HEPEVT_Wrapper::byte_num_to_int( unsigned int b ) { if ( b >= hepevt_bytes_allocation ) std::cerr << "HEPEVT_Wrapper: requested hepevt data exceeds allocation" << std::endl; if ( s_sizeof_int == sizeof(short int) ) { short int* myshortint = (short int*)&hepevt.data[b]; return (int)(*myshortint); } else if ( s_sizeof_int == sizeof(long int) ) { long int* mylongint = (long int*)&hepevt.data[b]; return (*mylongint); // on some 64 bit machines, int, short, and long are all different } else if ( s_sizeof_int == sizeof(int) ) { int* myint = (int*)&hepevt.data[b]; return (*myint); } else { std::cerr << "HEPEVT_Wrapper: illegal integer number length." << s_sizeof_int << std::endl; } return 0; } inline void HEPEVT_Wrapper::write_byte_num( double in, unsigned int b ) { if ( b >= hepevt_bytes_allocation ) std::cerr << "HEPEVT_Wrapper: requested hepevt data exceeds allocation" << std::endl; if ( s_sizeof_real == sizeof(float) ) { float* myfloat = (float*)&hepevt.data[b]; (*myfloat) = (float)in; } else if ( s_sizeof_real == sizeof(double) ) { double* mydouble = (double*)&hepevt.data[b]; (*mydouble) = (double)in; } else { std::cerr << "HEPEVT_Wrapper: illegal floating point number length." << s_sizeof_real << std::endl; } } inline void HEPEVT_Wrapper::write_byte_num( int in, unsigned int b ) { if ( b >= hepevt_bytes_allocation ) std::cerr << "HEPEVT_Wrapper: requested hepevt data exceeds allocation" << std::endl; if ( s_sizeof_int == sizeof(short int) ) { short int* myshortint = (short int*)&hepevt.data[b]; (*myshortint) = (short int)in; } else if ( s_sizeof_int == sizeof(long int) ) { long int* mylongint = (long int*)&hepevt.data[b]; (*mylongint) = (int)in; // on some 64 bit machines, int, short, and long are all different } else if ( s_sizeof_int == sizeof(int) ) { int* myint = (int*)&hepevt.data[b]; (*myint) = (int)in; } else { std::cerr << "HEPEVT_Wrapper: illegal integer number length." << s_sizeof_int << std::endl; } } ////////////// // INLINES // ////////////// inline bool HEPEVT_Wrapper::is_double_precision() { // true if 8byte floating point numbers are used in the HepEVT common. return ( sizeof(double) == sizeof_real() ); } inline int HEPEVT_Wrapper::event_number() { return byte_num_to_int(0); } inline int HEPEVT_Wrapper::number_entries() { int nhep = byte_num_to_int( 1*sizeof_int() ); return ( nhep <= max_number_entries() ? nhep : max_number_entries() ); } inline int HEPEVT_Wrapper::status( int index ) { return byte_num_to_int( (2+index-1) * sizeof_int() ); } inline int HEPEVT_Wrapper::id( int index ) { return byte_num_to_int( (2+max_number_entries()+index-1) * sizeof_int() ); } inline int HEPEVT_Wrapper::first_parent( int index ) { int parent = byte_num_to_int( (2+2*max_number_entries()+2*(index-1)) * sizeof_int() ); return ( parent > 0 && parent <= number_entries() ) ? parent : 0; } inline int HEPEVT_Wrapper::last_parent( int index ) { // Returns the Index of the LAST parent in the HEPEVT record // for particle with Index index. // If there is only one parent, the last parent is forced to // be the same as the first parent. // If there are no parents for this particle, both the first_parent // and the last_parent with return 0. // Error checking is done to ensure the parent is always // within range ( 0 <= parent <= nhep ) // int firstparent = first_parent(index); int parent = byte_num_to_int( (2+2*max_number_entries()+2*(index-1)+1) * sizeof_int() ); return ( parent > firstparent && parent <= number_entries() ) ? parent : firstparent; } inline int HEPEVT_Wrapper::number_parents( int index ) { int firstparent = first_parent(index); return ( firstparent>0 ) ? ( 1+last_parent(index)-firstparent ) : 0; } inline int HEPEVT_Wrapper::first_child( int index ) { int child = byte_num_to_int( (2+4*max_number_entries()+2*(index-1)) * sizeof_int() ); return ( child > 0 && child <= number_entries() ) ? child : 0; } inline int HEPEVT_Wrapper::last_child( int index ) { // Returns the Index of the LAST child in the HEPEVT record // for particle with Index index. // If there is only one child, the last child is forced to // be the same as the first child. // If there are no children for this particle, both the first_child // and the last_child with return 0. // Error checking is done to ensure the child is always // within range ( 0 <= parent <= nhep ) // int firstchild = first_child(index); int child = byte_num_to_int( (2+4*max_number_entries()+2*(index-1)+1) * sizeof_int() ); return ( child > firstchild && child <= number_entries() ) ? child : firstchild; } inline int HEPEVT_Wrapper::number_children( int index ) { int firstchild = first_child(index); return ( firstchild>0 ) ? ( 1+last_child(index)-firstchild ) : 0; } inline double HEPEVT_Wrapper::px( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+0) *sizeof_real() ); } inline double HEPEVT_Wrapper::py( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+1) *sizeof_real() ); } inline double HEPEVT_Wrapper::pz( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+2) *sizeof_real() ); } inline double HEPEVT_Wrapper::e( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+3) *sizeof_real() ); } inline double HEPEVT_Wrapper::m( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+4) *sizeof_real() ); } inline double HEPEVT_Wrapper::x( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+0) ) *sizeof_real() ); } inline double HEPEVT_Wrapper::y( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+1) ) *sizeof_real() ); } inline double HEPEVT_Wrapper::z( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+2) ) *sizeof_real() ); } inline double HEPEVT_Wrapper::t( int index ) { return byte_num_to_double( (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+3) ) *sizeof_real() ); } inline void HEPEVT_Wrapper::set_event_number( int evtno ) { write_byte_num( evtno, 0 ); } inline void HEPEVT_Wrapper::set_number_entries( int noentries ) { write_byte_num( noentries, 1*sizeof_int() ); } inline void HEPEVT_Wrapper::set_status( int index, int status ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( status, (2+index-1) * sizeof_int() ); } inline void HEPEVT_Wrapper::set_id( int index, int id ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( id, (2+max_number_entries()+index-1) *sizeof_int() ); } inline void HEPEVT_Wrapper::set_parents( int index, int firstparent, int lastparent ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( firstparent, (2+2*max_number_entries()+2*(index-1)) *sizeof_int() ); write_byte_num( lastparent, (2+2*max_number_entries()+2*(index-1)+1) * sizeof_int() ); } inline void HEPEVT_Wrapper::set_children( int index, int firstchild, int lastchild ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( firstchild, (2+4*max_number_entries()+2*(index-1)) *sizeof_int() ); write_byte_num( lastchild, (2+4*max_number_entries()+2*(index-1)+1) *sizeof_int() ); } inline void HEPEVT_Wrapper::set_momentum( int index, double px, double py, double pz, double e ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( px, (2+6*max_number_entries()) *sizeof_int() + (5*(index-1)+0) *sizeof_real() ); write_byte_num( py, (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+1) *sizeof_real() ); write_byte_num( pz, (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+2) *sizeof_real() ); write_byte_num( e, (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+3) *sizeof_real() ); } inline void HEPEVT_Wrapper::set_mass( int index, double mass ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( mass, (2+6*max_number_entries())*sizeof_int() + (5*(index-1)+4) *sizeof_real() ); } inline void HEPEVT_Wrapper::set_position( int index, double x, double y, double z, double t ) { if ( index <= 0 || index > max_number_entries() ) return; write_byte_num( x, (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+0) ) *sizeof_real() ); write_byte_num( y, (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+1) ) *sizeof_real() ); write_byte_num( z, (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+2) ) *sizeof_real() ); write_byte_num( t, (2+6*max_number_entries())*sizeof_int() + ( 5*max_number_entries() + (4*(index-1)+3) ) *sizeof_real() ); } } // HepMC #endif // HEPMC_HEPEVT_WRAPPER_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/WeightContainer.h0000644000175000017500000001577511374257600021030 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_WEIGHT_CONTAINER_H #define HEPMC_WEIGHT_CONTAINER_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 2000, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Container for the Weights associated with an event or vertex. // // This implementation adds a map-like interface in addition to the // vector-like interface. ////////////////////////////////////////////////////////////////////////// #include #include #include #include namespace HepMC { //! Container for the Weights associated with an event or vertex. /// /// \class WeightContainer /// This class has both map-like and vector-like functionality. /// Named weights are now supported. class WeightContainer { friend class GenEvent; public: /// defining the size type used by vector and map typedef std::size_t size_type; /// iterator for the weight container typedef std::vector::iterator iterator; /// const iterator for the weight container typedef std::vector::const_iterator const_iterator; /// default constructor explicit WeightContainer( size_type n = 0, double value = 0. ); /// construct from a vector of weights WeightContainer( const std::vector& weights ); /// copy WeightContainer( const WeightContainer& in ); ~WeightContainer(); /// swap void swap( WeightContainer & other); /// copy assignment WeightContainer& operator=( const WeightContainer& ); /// alternate assignment using a vector of doubles WeightContainer& operator=( const std::vector& in ); /// print weights void print( std::ostream& ostr = std::cout ) const; /// write weights in a readable table void write( std::ostream& ostr = std::cout ) const; /// size of weight container size_type size() const; /// return true if weight container is empty bool empty() const; /// push onto weight container void push_back( const double& ); /// pop from weight container void pop_back(); /// clear the weight container void clear(); /// check to see if a name exists in the map bool has_key( const std::string& s ) const; /// access the weight container double& operator[]( size_type n ); // unchecked access /// access the weight container const double& operator[]( size_type n ) const; /// access the weight container double& operator[]( const std::string& s ); // unchecked access /// access the weight container const double& operator[]( const std::string& s ) const; /// equality bool operator==( const WeightContainer & ) const; /// inequality bool operator!=( const WeightContainer & ) const; /// returns the first element double& front(); /// returns the first element const double& front() const; /// returns the last element double& back(); /// returns the last element const double& back() const; /// begining of the weight container iterator begin(); /// end of the weight container iterator end(); /// begining of the weight container const_iterator begin() const; /// end of the weight container const_iterator end() const; private: // for internal use only /// maplike iterator for the weight container /// for internal use only typedef std::map::iterator map_iterator; /// const iterator for the weight container /// for internal use only typedef std::map::const_iterator const_map_iterator; /// begining of the weight container /// for internal use only map_iterator map_begin(); /// end of the weight container /// for internal use only map_iterator map_end(); /// begining of the weight container /// for internal use only const_map_iterator map_begin() const; /// end of the weight container /// for internal use only const_map_iterator map_end() const; /// used by the constructors to set initial names /// for internal use only void set_default_names( size_type n ); private: std::vector m_weights; std::map m_names; }; /////////////////////////// // INLINES // /////////////////////////// inline WeightContainer::WeightContainer( const WeightContainer& in ) : m_weights(in.m_weights), m_names(in.m_names) {} inline WeightContainer::~WeightContainer() {} inline void WeightContainer::swap( WeightContainer & other) { m_weights.swap( other.m_weights ); m_names.swap( other.m_names ); } inline WeightContainer& WeightContainer::operator= ( const WeightContainer& in ) { /// best practices implementation WeightContainer tmp( in ); swap( tmp ); return *this; } inline WeightContainer& WeightContainer::operator= ( const std::vector& in ) { /// best practices implementation WeightContainer tmp( in ); swap( tmp ); return *this; } inline WeightContainer::size_type WeightContainer::size() const { return m_weights.size(); } inline bool WeightContainer::empty() const { return m_weights.empty(); } inline void WeightContainer::clear() { m_weights.clear(); m_names.clear(); } inline double& WeightContainer::operator[]( size_type n ) { return m_weights[n]; } inline const double& WeightContainer::operator[]( size_type n ) const { return m_weights[n]; } inline double& WeightContainer::front() { return m_weights.front(); } inline const double& WeightContainer::front() const { return m_weights.front(); } inline double& WeightContainer::back() { return m_weights.back(); } inline const double& WeightContainer::back() const { return m_weights.back(); } inline WeightContainer::iterator WeightContainer::begin() { return m_weights.begin(); } inline WeightContainer::iterator WeightContainer::end() { return m_weights.end(); } inline WeightContainer::const_iterator WeightContainer::begin() const { return m_weights.begin(); } inline WeightContainer::const_iterator WeightContainer::end() const { return m_weights.end(); } inline WeightContainer::map_iterator WeightContainer::map_begin() { return m_names.begin(); } inline WeightContainer::map_iterator WeightContainer::map_end() { return m_names.end(); } inline WeightContainer::const_map_iterator WeightContainer::map_begin() const { return m_names.begin(); } inline WeightContainer::const_map_iterator WeightContainer::map_end() const { return m_names.end(); } } // HepMC #endif // HEPMC_WEIGHT_CONTAINER_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/HeavyIon.h0000644000175000017500000002657011211311605017435 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_HEAVY_ION_H #define HEPMC_HEAVY_ION_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, February 2006 // // Additional information storage for Heavy Ion generators ////////////////////////////////////////////////////////////////////////// // // int Ncoll_hard // Number of hard scatterings // int Npart_proj // Number of projectile participants // int Npart_targ // Number of target participants // int Ncoll // Number of NN (nucleon-nucleon) collisions // int N_Nwounded_collisions // Number of N-Nwounded collisions // int Nwounded_N_collisions // Number of Nwounded-N collisons // int Nwounded_Nwounded_collisions // Number of Nwounded-Nwounded collisions // int spectator_neutrons // Number of spectator neutrons // int spectator_protons // Number of spectator protons // float impact_parameter // Impact Parameter(fm) of collision // float event_plane_angle // Azimuthal angle of event plane // float eccentricity // eccentricity of participating nucleons // in the transverse plane // (as in phobos nucl-ex/0510031) // float sigma_inel_NN // nucleon-nucleon inelastic // (including diffractive) cross-section // ////////////////////////////////////////////////////////////////////////// // Feb. 17, 2006: adjust names according to suggestions from Heavy Ion users // Feb. 7, 2006: first pass at making method names consistent with existing // HepMC code ////////////////////////////////////////////////////////////////////////// namespace HepMC { //! The HeavyIon class stores information about heavy ions /// /// \class HeavyIon /// HepMC::HeavyIon provides /// additional information storage for Heavy Ion generators in GenEvent. /// Creation and use of this information is optional. /// class HeavyIon { public: // --- birth/death: // /// default constructor HeavyIon() : m_Ncoll_hard(0), m_Npart_proj(0), m_Npart_targ(0), m_Ncoll(0), m_spectator_neutrons(0), m_spectator_protons(0), m_N_Nwounded_collisions(0), m_Nwounded_N_collisions(0), m_Nwounded_Nwounded_collisions(0), m_impact_parameter(0), m_event_plane_angle(0), m_eccentricity(0), m_sigma_inel_NN(0) {} /// The first 6 values must be provided. HeavyIon( int nh, int np, int nt, int nc, int ns, int nsp, int nnw=0, int nwn=0, int nwnw=0, float im=0., float pl=0., float ec=0., float s=0. ); ~HeavyIon() {} // --- copying: // HeavyIon( HeavyIon const & orig ); //!< copy constructor HeavyIon & operator = ( HeavyIon const & rhs ); //!< make a copy void swap( HeavyIon & other ); //!< swap two HeavyIon objects // --- equivalence: // bool operator==( const HeavyIon& ) const; //!< check for equality bool operator!=( const HeavyIon& ) const; //!< check for inequality // --- accessors: /// Number of hard scatterings int Ncoll_hard() const { return m_Ncoll_hard; } /// Number of projectile participants int Npart_proj() const { return m_Npart_proj; } /// Number of target participants int Npart_targ() const { return m_Npart_targ; } /// Number of NN (nucleon-nucleon) collisions int Ncoll() const { return m_Ncoll; } /// Number of spectator neutrons int spectator_neutrons() const { return m_spectator_neutrons; } /// Number of spectator protons int spectator_protons() const { return m_spectator_protons; } /// Number of N-Nwounded collisions int N_Nwounded_collisions() const { return m_N_Nwounded_collisions; } /// Number of Nwounded-N collisons int Nwounded_N_collisions() const { return m_Nwounded_N_collisions; } /// Number of Nwounded-Nwounded collisions int Nwounded_Nwounded_collisions() const { return m_Nwounded_Nwounded_collisions; } /// Impact Parameter(in fm) of collision float impact_parameter() const { return m_impact_parameter; } /// Azimuthal angle of event plane float event_plane_angle() const { return m_event_plane_angle; } /// eccentricity of participating nucleons in the transverse plane /// (as in phobos nucl-ex/0510031) float eccentricity() const { return m_eccentricity; } /// nucleon-nucleon inelastic (including diffractive) cross-section float sigma_inel_NN() const { return m_sigma_inel_NN; } /// verify that the instance contains non-zero information bool is_valid() const; // --- mutators: /// set number of hard scatterings void set_Ncoll_hard(const int &i) { m_Ncoll_hard=i; } /// set number of projectile participants void set_Npart_proj(const int &i) { m_Npart_proj=i; } /// set number of target participants void set_Npart_targ(const int &i) { m_Npart_targ=i; } /// set number of NN (nucleon-nucleon) collisions void set_Ncoll(const int &i) { m_Ncoll=i; } /// set number of spectator neutrons void set_spectator_neutrons(const int &i) { m_spectator_neutrons=i; } /// set number of spectator protons void set_spectator_protons(const int &i) { m_spectator_protons=i; } /// set number of N-Nwounded collisions void set_N_Nwounded_collisions(const int &i) { m_N_Nwounded_collisions=i; } /// set number of Nwounded-N collisons void set_Nwounded_N_collisions(const int &i) { m_Nwounded_N_collisions=i; } /// set number of Nwounded-Nwounded collisions void set_Nwounded_Nwounded_collisions(const int &i) { m_Nwounded_Nwounded_collisions=i; } /// set Impact Parameter in fm void set_impact_parameter(const float &f) { m_impact_parameter=f; } /// set azimuthal angle of event plane void set_event_plane_angle(const float &f) { m_event_plane_angle=f; } /// set eccentricity of participating nucleons in the transverse plane void set_eccentricity(const float &f) { m_eccentricity=f; } /// set nucleon-nucleon inelastic cross-section void set_sigma_inel_NN(const float &f) { m_sigma_inel_NN=f; } private: // data members int m_Ncoll_hard; int m_Npart_proj; int m_Npart_targ; int m_Ncoll; int m_spectator_neutrons; int m_spectator_protons; int m_N_Nwounded_collisions; int m_Nwounded_N_collisions; int m_Nwounded_Nwounded_collisions; float m_impact_parameter; float m_event_plane_angle; float m_eccentricity; float m_sigma_inel_NN; }; // Free Functions /// Write the contents of HeavyIon to an output stream. std::ostream & operator << (std::ostream &, HeavyIon const *); /// Read the contents of HeavyIon from an input stream. std::istream & operator >> (std::istream &, HeavyIon *); // inline operators /// Required members are /// the number of hard scatterings, /// the number of projectile participants. /// the number of target participants. /// the number of nucleon-nucleon collisions, /// the number of spectator neutrons, and /// the number of spectator protons. inline HeavyIon::HeavyIon( int nh, int np, int nt, int nc, int ns, int nsp, int nnw, int nwn, int nwnw, float im, float pl, float ec, float s ) : m_Ncoll_hard(nh), m_Npart_proj(np), m_Npart_targ(nt), m_Ncoll(nc), m_spectator_neutrons(ns), m_spectator_protons(nsp), m_N_Nwounded_collisions(nnw), m_Nwounded_N_collisions(nwn), m_Nwounded_Nwounded_collisions(nwnw), m_impact_parameter(im), m_event_plane_angle(pl), m_eccentricity(ec), m_sigma_inel_NN(s) {} inline HeavyIon::HeavyIon( HeavyIon const & orig ) : m_Ncoll_hard(orig.m_Ncoll_hard), m_Npart_proj(orig.m_Npart_proj), m_Npart_targ(orig.m_Npart_targ), m_Ncoll(orig.m_Ncoll), m_spectator_neutrons(orig.m_spectator_neutrons), m_spectator_protons(orig.m_spectator_protons), m_N_Nwounded_collisions(orig.m_N_Nwounded_collisions), m_Nwounded_N_collisions(orig.m_Nwounded_N_collisions), m_Nwounded_Nwounded_collisions(orig.m_Nwounded_Nwounded_collisions), m_impact_parameter(orig.m_impact_parameter), m_event_plane_angle(orig.m_event_plane_angle), m_eccentricity(orig.m_eccentricity), m_sigma_inel_NN(orig.m_sigma_inel_NN) {} inline HeavyIon & HeavyIon::operator = ( HeavyIon const & rhs ) { HeavyIon temp( rhs ); swap( temp ); return *this; } inline void HeavyIon::swap( HeavyIon & other ) { std::swap(m_Ncoll_hard, other.m_Ncoll_hard); std::swap(m_Npart_proj, other.m_Npart_proj); std::swap(m_Npart_targ, other.m_Npart_targ); std::swap(m_Ncoll, other.m_Ncoll); std::swap(m_N_Nwounded_collisions, other.m_N_Nwounded_collisions); std::swap(m_Nwounded_N_collisions, other.m_Nwounded_N_collisions); std::swap(m_Nwounded_Nwounded_collisions, other.m_Nwounded_Nwounded_collisions); std::swap(m_spectator_neutrons, other.m_spectator_neutrons); std::swap(m_spectator_protons, other.m_spectator_protons); std::swap(m_impact_parameter, other.m_impact_parameter); std::swap(m_event_plane_angle, other.m_event_plane_angle); std::swap(m_eccentricity, other.m_eccentricity); std::swap(m_sigma_inel_NN, other.m_sigma_inel_NN); } inline bool HeavyIon::operator==( const HeavyIon& a ) const { /// equality requires that each member match return ( a.Ncoll_hard() == this->Ncoll_hard() && a.Npart_proj() == this->Npart_proj() && a.Npart_targ() == this->Npart_targ() && a.Ncoll() == this->Ncoll() && a.N_Nwounded_collisions() == this->N_Nwounded_collisions() && a.Nwounded_N_collisions() == this->Nwounded_N_collisions() && a.Nwounded_Nwounded_collisions() == this->Nwounded_Nwounded_collisions() && a.spectator_neutrons() == this->spectator_neutrons() && a.spectator_protons() == this->spectator_protons() && a.impact_parameter() == this->impact_parameter() && a.event_plane_angle() == this->event_plane_angle() && a.eccentricity() == this->eccentricity() && a.sigma_inel_NN() == this->sigma_inel_NN() ); } inline bool HeavyIon::operator!=( const HeavyIon& a ) const { /// any nonmatching member generates inequality return !( a == *this ); } inline bool HeavyIon::is_valid() const { if( m_Ncoll_hard != 0 ) return true; if( m_Npart_proj != 0 ) return true; if( m_Npart_targ != 0 ) return true; if( m_Ncoll != 0 ) return true; if( m_spectator_neutrons != 0 ) return true; if( m_spectator_protons != 0 ) return true; if( m_N_Nwounded_collisions != 0 ) return true; if( m_Nwounded_N_collisions != 0 ) return true; if( m_Nwounded_Nwounded_collisions != 0 ) return true; if( m_impact_parameter != 0 ) return true; if( m_event_plane_angle != 0 ) return true; if( m_eccentricity != 0 ) return true; if( m_sigma_inel_NN != 0 ) return true; return false; } } // HepMC #endif // HEPMC_HEAVY_ION_H hepmc-2.06.09.orig/HepMC/.cvsignore0000755000175000017500000000002610361513166017544 0ustar sylvestresylvestreMakefile.in defs.h.in hepmc-2.06.09.orig/HepMC/PythiaWrapper6_4_WIN32.h0000644000175000017500000001006511374257600021713 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifdef _WIN32 // This version is for Windows MS Visual C++ only. #ifndef PYTHIA_WRAPPER_6_H #define PYTHIA_WRAPPER_6_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 2000 // Version 6.200 update October 2001 // Wrapper for FORTRAN version of Pythia // The _WIN32 version is provided by Witold Pokorski // , 2002-01-22, and is the version // which should be used when compiling on Windows MS Visual C++. // This wrapper is NOT intended as a part of HepMC - it is only supplied // for your convenience. ////////////////////////////////////////////////////////////////////////// // // A simple example of calling Pythia from C++ using this header file is // given in test/test_PythiaWrapper.cxx // // Note the pyhepc routine is used by Pythia to fill // the HEPEVT common block uses double precision and 4000 entries. // #include #include //-------------------------------------------------------------------------- // Initialization routine extern "C" { void INITPYDATA(void); } #define initpydata INITPYDATA //-------------------------------------------------------------------------- // PYTHIA Common Block Declarations const int pyjets_maxn =4000; struct PYJETS_DEF { int n, npad, k[5][pyjets_maxn]; double p[5][pyjets_maxn], v[5][pyjets_maxn]; }; struct PYDAT1_DEF{ int mstu[200]; double paru[200]; int mstj[200]; double parj[200]; }; struct PYDAT2_DEF{ int kchg[4][500]; double pmas[4][500], parf[2000], vckm[4][4]; }; struct PYDAT3_DEF{ int mdcy[3][500], mdme[2][8000]; double brat[8000]; int kfdp[5][8000]; }; struct PYDATR_DEF{ int mrpy[6]; double rrpy[100]; }; struct PYSUBS_DEF{ int msel, mselpd, msub[500], kfin[81][2]; double ckin[200]; }; struct PYPARS_DEF{ int mstp[200]; double parp[200]; int msti[200]; double pari[200]; }; struct PYINT1_DEF{ int mint[400]; double vint[400]; }; struct PYINT2_DEF{ int iset[500], kfpr[2][500]; double coef[20][500]; int icol[2][4][40]; // was [320] was [40][4][2] }; struct PYINT5_DEF{ int ngenpd, ngen[3][501]; double xsec[3][501]; }; extern "C" PYSUBS_DEF PYSUBS; extern "C" PYJETS_DEF PYJETS; extern "C" PYDAT1_DEF PYDAT1; extern "C" PYDAT2_DEF PYDAT2; extern "C" PYPARS_DEF PYPARS; extern "C" PYDATR_DEF PYDATR; extern "C" PYDAT3_DEF PYDAT3; extern "C" PYINT1_DEF PYINT1; extern "C" PYINT2_DEF PYINT2; extern "C" PYINT5_DEF PYINT5; #define pysubs PYSUBS #define pyjets PYJETS #define pydat1 PYDAT1 #define pydat2 PYDAT2 #define pypars PYPARS #define pydatr PYDATR #define pydat3 PYDAT3 #define pyint1 PYINT1 #define pyint2 PYINT2 #define pyint5 PYINT5 //-------------------------------------------------------------------------- // PYTHIA routines declaration extern "C" { void __stdcall PYHEPC(int*); void __stdcall PYINIT(const char*,int,const char*,int,const char*,int,double*); void __stdcall PYLIST(int*); void __stdcall PYSTAT(int*); void __stdcall PYEVNT(); void __stdcall UPINIT(); void __stdcall UPEVNT(); } //-------------------------------------------------------------------------- // PYTHIA block data // ( with gcc it works to initialize the block data by calling // "pydata();" at beginning, but this fails for f77, so the fortran routine // initpydata.f is supplied ... call it instead for platform independent // behaviour ) extern "C" { void __stdcall PYDATA(void); } inline void call_pyhepc( int mode ){ PYHEPC( &mode ); } inline void call_pyinit( const char* frame, const char* beam, const char* target, double win ) { PYINIT( frame,strlen(frame),beam,strlen(beam),target,strlen(target),&win); } inline void call_pylist( int mode ){ PYLIST( &mode ); } inline void call_pystat( int mode ){ PYSTAT( &mode ); } inline void call_pyevnt(){ PYEVNT(); } inline void call_upinit(){ UPINIT(); } inline void call_upevnt(){ UPEVNT(); } #endif // PYTHIA_WRAPPER_6_H #endif // _WIN32 //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/IO_Exception.h0000644000175000017500000000240111320735010020224 0ustar sylvestresylvestre#ifndef HEPMC_IO_EXCEPTION_H #define HEPMC_IO_EXCEPTION_H // ---------------------------------------------------------------------- // // IO_Exception.h // Author: Lynn Garren // // IO exception handling // IO_GenEvent, etc. catch the throw and set data members with the error type and message // Some of the messages are constructed with transient information // (e.g., contents of a bad GenParticle) // // ---------------------------------------------------------------------- #include namespace HepMC { //! IO exception handling /// /// \class IO_Exception /// IO_GenEvent, etc. catch the throw and set data members with the error type and message /// Some of the messages are constructed with transient information /// (e.g., contents of a bad GenParticle) class IO_Exception : public std::runtime_error { public: IO_Exception(const std::string & msg) : std::runtime_error(msg) { } /// IO error types enum ErrorType{ OK, NullEvent, WrongFileType, MissingStartKey, EndOfStream, EndKeyMismatch, MissingEndKey, InvalidData, InputAndOutput, BadOutputStream, BadInputStream }; }; } // namespace HepMC #endif // HEPMC_IO_EXCEPTION_H hepmc-2.06.09.orig/HepMC/Makefile.am0000644000175000017500000000133011374257600017577 0ustar sylvestresylvestre## Process this file with automake to produce Makefile.in includedir = $(prefix)/include COPY_P = @COPY_P@ pkginclude_HEADERS = \ CompareGenEvent.h \ Flow.h \ GenEvent.h \ GenParticle.h \ GenVertex.h \ GenCrossSection.h \ GenRanges.h \ HeavyIon.h \ HEPEVT_Wrapper.h \ HerwigWrapper.h \ IO_AsciiParticles.h \ IO_BaseClass.h \ IO_Exception.h \ IO_GenEvent.h \ IO_HEPEVT.h \ IO_HERWIG.h \ IteratorRange.h \ PdfInfo.h \ Polarization.h \ PythiaWrapper6_4.h \ PythiaWrapper6_4_WIN32.h \ PythiaWrapper.h \ WeightContainer.h \ SearchVector.h \ SimpleVector.h \ SimpleVector.icc \ StreamHelpers.h \ StreamInfo.h \ enable_if.h \ is_arithmetic.h \ TempParticleMap.h \ Units.h \ Version.h \ HepMCDefs.h hepmc-2.06.09.orig/HepMC/Flow.h0000644000175000017500000001757411225157556016650 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_FLOW_H #define HEPMC_FLOW_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, January 2000, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // particle's flow object // keeps track of an arbitrary number of flow patterns within a graph // (i.e. color flow, charge flow, lepton number flow, ...) // Flow patterns are coded with an integer, in the same manner as in Herwig. // Note: 0 is NOT allowed as code index nor as flow code since it // is used to indicate null. ////////////////////////////////////////////////////////////////////////// // This class can be used to keep track of flow patterns within // a graph. An example is color flow. If we have two quarks going through // an s-channel gluon to form two more quarks: // // \q1 /q3 then we can keep track of the color flow with the // \_______/ HepMC::Flow class as follows: // / g \. // /q2 \q4 // // lets say the color flows from q2-->g-->q3 and q1-->g-->q4 // the individual colors are unimportant, but the flow pattern is. // We can capture this flow by assigning the first pattern (q2-->g-->q3) // a unique (arbitrary) flow code 678 and the second pattern (q1-->g-->q4) // flow code 269 ( you can ask HepMC::Flow to choose // a unique code for you using Flow::set_unique_icode() ). // The first two code indices are reserved for color codes, so we store // these codes with the particles as follows: // q2->flow().set_icode(1,678); // g->flow().set_icode(1,678); // q3->flow().set_icode(1,678); // q1->flow().set_icode(1,269); // g->flow().set_icode(2,269); // q4->flow().set_icode(1,269); // later on if we wish to know the color partner of q1 we can ask for a list // of all particles connected via this code to q1 which do have less than // 2 color partners using: // vector result=q1->dangling_connected_partners(q1->icode(1),1,2); // this will return a list containing q1 and q4. // vector result=q1->connected_partners(q1->icode(1),1,2); // would return a list containing q1, g, and q4. // #include #include #include namespace HepMC { class GenParticle; //! The flow object /// /// \class Flow /// The particle's flow object /// keeps track of an arbitrary number of flow patterns within a graph /// (i.e. color flow, charge flow, lepton number flow, ...) /// Flow patterns are coded with an integer, in the same manner as in Herwig. class Flow { /// for printing friend std::ostream& operator<<( std::ostream& ostr, const Flow& f ); public: /// default constructor Flow( GenParticle* particle_owner = 0 ); /// copy Flow( const Flow& ); virtual ~Flow(); /// swap void swap( Flow & other); /// make a copy Flow& operator=( const Flow& ); /// equality bool operator==( const Flow& a ) const; //compares only flow /// inequality bool operator!=( const Flow& a ) const; //patterns not owner /// print Flow information to ostr void print( std::ostream& ostr = std::cout ) const; /// returns all connected particles which have "code" in any of the /// num_indices beginning with index code_index. std::vector connected_partners( int code, int code_index =1, int num_indices = 2 ) const; /// same as connected_partners, but returns only those particles which /// are connected to <=1 other particles (i.e. the flow line "dangles" /// at these particles) std::vector dangling_connected_partners( int code, int code_index = 1, int num_indices = 2 ) const; //////////////////// // access methods // //////////////////// /// find particle owning this Flow const GenParticle* particle_owner() const; /// flow code int icode( int code_index = 1 ) const; /// set flow code Flow set_icode( int code_index, int code ); /// set unique flow code Flow set_unique_icode( int code_index = 1 ); ////////////////////// // container access // ////////////////////// /// return true if there is no flow container bool empty() const; /// size of flow pattern container int size() const; /// clear flow patterns void clear(); /// empty flow pattern container bool erase( int code_index ); /// iterator for flow pattern container typedef std::map::iterator iterator; /// const iterator for flow pattern container typedef std::map::const_iterator const_iterator; /// beginning of flow pattern container iterator begin(); /// end of flow pattern container iterator end(); /// beginning of flow pattern container const_iterator begin() const; /// end of flow pattern container const_iterator end() const; protected: // intended for internal use only /// for internal use only void connected_partners( std::vector* output, int code, int code_index, int num_indices ) const; /// for internal use only void dangling_connected_partners( std::vector* output, std::vector* visited_particles, int code, int code_index, int num_indices ) const; private: GenParticle* m_particle_owner; std::map m_icode; // stores flow patterns as(code_index,icode) }; /////////////////////////// // INLINE Access Methods // /////////////////////////// inline const GenParticle* Flow::particle_owner() const { return m_particle_owner; } inline int Flow::icode( int code_index ) const { std::map::const_iterator a = m_icode.find(code_index); return a==m_icode.end() ? 0 : (*a).second; } inline Flow Flow::set_icode( int code_index, int code ) { m_icode[code_index] = code; return *this; } inline Flow Flow::set_unique_icode( int flow_num ) { /// use this method if you want to assign a unique flow code, but /// do not want the burden of choosing it yourself m_icode[flow_num] = size_t(this); return *this; } inline bool Flow::empty() const { return (bool)m_icode.empty(); } inline int Flow::size() const { return (int)m_icode.size(); } inline void Flow::clear() { m_icode.clear(); } inline bool Flow::erase( int code_index ) { // this will return true if the number of elements removed is nonzero return m_icode.erase( code_index )==0 ? false : true ; } inline Flow::iterator Flow::begin() { return m_icode.begin(); } inline Flow::iterator Flow::end() { return m_icode.end(); } inline Flow::const_iterator Flow::begin() const { return m_icode.begin(); } inline Flow::const_iterator Flow::end() const { return m_icode.end(); } /////////////////////////// // INLINE Operators // /////////////////////////// inline bool Flow::operator==( const Flow& a ) const { /// equivalent flows have the same flow codes for all flow_numbers /// (i.e. their m_icode maps are identical), but they need not have the /// same m_particle owner return (m_icode == a.m_icode); } inline bool Flow::operator!=( const Flow& a ) const { return !( *this == a ); } inline Flow& Flow::operator=( const Flow& inflow ) { /// copies only the m_icode ... not the particle_owner /// this is intuitive behaviour so you can do /// oneparticle->flow() = otherparticle->flow() // m_icode = inflow.m_icode; return *this; } } // HepMC #endif // HEPMC_FLOW_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/Version.h0000644000175000017500000000166111374257600017350 0ustar sylvestresylvestre#ifndef HEPMC_VERSION_H #define HEPMC_VERSION_H // ---------------------------------------------------------------------- // // Version.h // Author: Lynn Garren // // for now, these are free functions // // ---------------------------------------------------------------------- #include #include #include "HepMC/HepMCDefs.h" namespace HepMC { void version( std::ostream & os = std::cout ); //!< print HepMC version void writeVersion( std::ostream & os ); //!< write HepMC version to os std::string versionName( ); //!< return HepMC version inline std::string versionName( ) { return HEPMC_VERSION; } inline void version( std::ostream & os ) { os << " --------------- HepMC Version " << versionName() << " --------------- " << std::endl; } inline void writeVersion( std::ostream & os ) { os << " HepMC Version: " << versionName() << std::endl; } } // HepMC #endif // HEPMC_VERSION_H hepmc-2.06.09.orig/HepMC/PythiaWrapper6_4.h0000644000175000017500000001407011374257600021031 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef PYTHIA_WRAPPER_6_H #define PYTHIA_WRAPPER_6_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 2000 // Version 6.200 update October 2001 // Wrapper for FORTRAN version of Pythia // This wrapper is NOT intended as a part of HepMC - it is only supplied // for your convenience. ////////////////////////////////////////////////////////////////////////// // // A simple example of calling Pythia from C++ using this header file is // given in test/test_PythiaWrapper.cxx // // Note the pyhepc routine is used by Pythia to fill // the HEPEVT common block uses double precision and 4000 entries. // #include #include //-------------------------------------------------------------------------- // Initialization routine extern "C" { void initpydata(void); } #define initpydata initpydata_ //-------------------------------------------------------------------------- // PYTHIA Common Block Declarations const int pyjets_maxn =4000; extern "C" { extern struct { int n, npad, k[5][pyjets_maxn]; double p[5][pyjets_maxn], v[5][pyjets_maxn]; } pyjets_; } #define pyjets pyjets_ extern "C" { extern struct { int mstu[200]; double paru[200]; int mstj[200]; double parj[200]; } pydat1_; } #define pydat1 pydat1_ extern "C" { extern struct { int kchg[4][500]; double pmas[4][500], parf[2000], vckm[4][4]; } pydat2_; } #define pydat2 pydat2_ extern "C" { extern struct { int mdcy[3][500], mdme[2][8000]; double brat[8000]; int kfdp[5][8000]; } pydat3_; } #define pydat3 pydat3_ extern "C" { extern struct { int mrpy[6]; double rrpy[100]; } pydatr_; } #define pydatr pydatr_ extern "C" { extern struct { int msel, mselpd, msub[500], kfin[81][2]; double ckin[200]; } pysubs_; } #define pysubs pysubs_ extern "C" { extern struct { int mstp[200]; double parp[200]; int msti[200]; double pari[200]; } pypars_; } #define pypars pypars_ extern "C" { extern struct { int mint[400]; double vint[400]; } pyint1_; } #define pyint1 pyint1_ extern "C" { extern struct { int iset[500], kfpr[2][500]; double coef[20][500]; int icol[2][4][40]; } pyint2_; } #define pyint2 pyint2_ extern "C" { extern struct pin3 { double xsfx[81][2]; // Fortran is xsfx(2,-40:40) int isig[3][1000]; double sigh[1000]; } pyint3_; } #define pyint3 pyint3_ extern "C" { extern struct { int mwid[500]; double wids[5][500]; } pyint4_; } #define pyint4 pyint4_ extern "C" { extern struct pin5 { int ngenpd, ngen[3][501]; // Fortran is ngen(0:500,3) double xsec[3][501]; // Fortran is xsec(0:500,3) } pyint5_; } #define pyint5 pyint5_ extern "C" { extern struct pin7 { double sigt[6][7][7]; // Fortran is sigt(0:6,0:6,0:5) } pyint7_; } #define pyint7 pyint7_ extern "C" { extern struct pin8 { double xpvmd[13]; // Fortran is xpvmd(-6:6) double xpanl[13]; // Fortran is xpanl(-6:6) double xpanh[13]; // Fortran is xpanh(-6:6) double xpbeh[13]; // Fortran is xpbeh(-6:6) double xpdir[13]; // Fortran is xpdir(-6:6) } pyint8_; } #define pyint8 pyint8_ extern "C" { extern struct pin9 { double vxpvmd[13]; // Fortran is vxpvmd(-6:6) double vxpanl[13]; // Fortran is vxpanl(-6:6) double vxpanh[13]; // Fortran is vxpanh(-6:6) double vxpdgm[13]; // Fortran is vxpdgm(-6:6) } pyint9_; } #define pyint9 pyint9_ extern "C" { extern struct pssm { int imss[100]; // Fortran is imss(0:99) double rmss[100]; // Fortran is rmss(0:99) } pyssm_; } #define pyssm pyssm_ extern "C" { extern struct { double zmix[4][4]; double umix[2][2]; double vmix[2][2]; double smz[4]; double smw[2]; double sfmix[4][16]; double zmixi[4][4]; double umixi[2][2]; double vmixi[2][2]; } pyssmt_; } #define pyssmt pyssmt_ extern "C" { extern struct { double rvlam[3][3][3]; double rvlamp[3][3][3]; double rvlamb[3][3][3]; } pymsrv_; } #define pymsrv pymsrv_ extern "C" { extern struct prvnv { double ab[2][16][2]; double rms[4]; // Fortran is rms(0:3) double res[5][6]; int idr; int idr2; double dcmass; int kfr[3]; } pyrvnv_; } #define pyrvnv pyrvnv_ extern "C" { extern struct prvpm { double rm[4]; // Fortran is rm(0:3) double a[2]; double b[2]; double resm[2]; double resw[2]; bool mflag; } pyrvpm_; } #define pyrvpm pyrvpm_ extern "C" { extern struct { double xxm[20]; } pyints_; } #define pyints pyints_ extern "C" { extern struct { double x1; } pyg2dx_; } #define pyg2dx pyg2dx_ //-------------------------------------------------------------------------- // PYTHIA routines declaration #define pyhepc pyhepc_ #define pyinit pyinit_ #define pylist pylist_ #define pystat pystat_ #define pyevnt pyevnt_ #define upinit upinit_ #define upevnt upevnt_ extern "C" { void pyhepc(int*); void pyinit(const char*,const char*,const char*,double*,int,int,int); void pylist(int*); void pystat(int*); void pyevnt(); void upinit(); void upevnt(); } // define methods to hide the subtle syntax necessary to call fortran from C++ inline void call_pyhepc( int mode ){ pyhepc( &mode ); } inline void call_pyinit( const char* frame, const char* beam, const char* target, double win ) { pyinit( frame,beam,target,&win,strlen(frame),strlen(beam),strlen(target) ); } inline void call_pylist( int mode ){ pylist( &mode ); } inline void call_pystat( int mode ){ pystat( &mode ); } inline void call_pyevnt(){ pyevnt(); } //-------------------------------------------------------------------------- // PYTHIA block data // ( with gcc it works to initialize the block data by calling // "pydata();" at beginning, but this fails for f77, so the fortran routine // initpydata.f is supplied ... call it instead for platform independent // behaviour ) #define pydata pydata_ extern "C" { void pydata(void); } #endif // PYTHIA_WRAPPER_6_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/HerwigWrapper.h0000644000175000017500000001343311374257600020511 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HERWIG_WRAPPER_H #define HERWIG_WRAPPER_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 200July 2002 // Wrapper for FORTRAN version of Herwig // Wrapper written for Herwig 6.4 ////////////////////////////////////////////////////////////////////////// #include // This pre-compiler directive is included (2002-01-16) to allow compatibility // with MS Visual C++, which interfaces to fortran in a different manner. // For it to work you need to define the _WIN32 variable when compiling. #ifdef _WIN32 // Platform: Windows MS Visual C++ // Sorry, there is NO version currently available for Vusual C++. #else // Generic version, tested on Linux ecgs/gcc //-------------------------------------------------------------------------- // HERWIG Common Block Declarations // COMMON/HWPROC/EBEAM1,EBEAM2,PBEAM1,PBEAM2,IPROC,MAXEV extern "C" { extern struct { double EBEAM1,EBEAM2,PBEAM1,PBEAM2; int IPROC,MAXEV; } hwproc_; } #define hwproc hwproc_ // COMMON/HWBEAM/IPART1,IPART2 extern "C" { extern struct { int IPART1, IPART2; } hwbeam_; } #define hwbeam hwbeam_ // CHARACTER*8 PART1,PART2 // COMMON/HWBMCH/PART1,PART2 extern "C" { extern struct { char PART1[8],PART2[8]; } hwbmch_; } #define hwbmch hwbmch_ // COMMON/HWEVNT/AVWGT,EVWGT,GAMWT,TLOUT,WBIGST,WGTMAX,WGTSUM,WSQSUM, // & IDHW(NMXHEP),IERROR,ISTAT,LWEVT,MAXER,MAXPR,NOWGT,NRN(2),NUMER, // & NUMERU,NWGTS,GENSOF const int herwig_hepevt_size = 4000; extern "C" { extern struct hwgev { double AVWGT,EVWGT,GAMWT,TLOUT,WBIGST,WGTMAX,WGTSUM,WSQSUM; int IDHW[herwig_hepevt_size],IERROR,ISTAT,LWEVT,MAXER,MAXPR; int NOWGT,NRN[2],NUMER,NUMERU,NWGTS; int GENSOF; //Beware! in F77 this is logical } hwevnt_; } #define hwevnt hwevnt_ // C Basic parameters (and quantities derived from them) // COMMON/HWPRAM/AFCH(16,2),ALPHEM,B1LIM,BETAF,BTCLM,CAFAC,CFFAC, // & CLMAX,CLPOW,CLSMR(2),CSPEED,ENSOF,ETAMIX,F0MIX,F1MIX,F2MIX,GAMH, // & GAMW,GAMZ,GAMZP,GEV2NB,H1MIX,PDIQK,PGSMX,PGSPL(4),PHIMIX,PIFAC, // & PRSOF,PSPLT(2),PTRMS,PXRMS,QCDL3,QCDL5,QCDLAM,QDIQK,QFCH(16),QG, // & QSPAC,QV,SCABI,SWEIN,TMTOP,VFCH(16,2),VCKM(3,3),VGCUT,VQCUT, // & VPCUT,ZBINM,EFFMIN,OMHMIX,ET2MIX,PH3MIX,GCUTME, // & IOPREM,IPRINT,ISPAC,LRSUD,LWSUD,MODPDF(2),NBTRY,NCOLO,NCTRY, // & NDTRY,NETRY,NFLAV,NGSPL,NSTRU,NSTRY,NZBIN,IOP4JT(2),NPRFMT, // & AZSOFT,AZSPIN,CLDIR(2),HARDME,NOSPAC,PRNDEC,PRVTX,SOFTME,ZPRIME, // & PRNDEF,PRNTEX,PRNWEB extern "C" { extern struct { double AFCH[2][16],ALPHEM,B1LIM,BETAF,BTCLM,CAFAC,CFFAC, CLMAX,CLPOW,CLSMR[2],CSPEED,ENSOF,ETAMIX,F0MIX,F1MIX,F2MIX,GAMH, GAMW,GAMZ,GAMZP,GEV2NB,H1MIX,PDIQK,PGSMX,PGSPL[4],PHIMIX,PIFAC, PRSOF,PSPLT[2],PTRMS,PXRMS,QCDL3,QCDL5,QCDLAM,QDIQK,QFCH[16],QG, QSPAC,QV,SCABI,SWEIN,TMTOP,VFCH[2][16],VCKM[3][3],VGCUT,VQCUT, VPCUT,ZBINM,EFFMIN,OMHMIX,ET2MIX,PH3MIX,GCUTME; int IOPREM,IPRINT,ISPAC,LRSUD,LWSUD,MODPDF[2],NBTRY,NCOLO,NCTRY, NDTRY,NETRY,NFLAV,NGSPL,NSTRU,NSTRY,NZBIN,IOP4JT[2],NPRFMT; int AZSOFT,AZSPIN,CLDIR[2],HARDME,NOSPAC,PRNDEC,PRVTX,SOFTME, ZPRIME,PRNDEF,PRNTEX,PRNWEB; //Beware! in F77 these are logical } hwpram_; } #define hwpram hwpram_ //-------------------------------------------------------------------------- // HERWIG routines declaration #define hwigin hwigin_ // initialise other common blocks #define hwigup hwigup_ // initialise HepUP run common block #define hwuinc hwuinc_ // compute parameter-dependent constants #define hwusta hwusta_ // call hwusta to make any particle stable #define hweini hweini_ // initialise elementary process #define hwuine hwuine_ // initialise event #define hwepro hwepro_ // generate HERWIG hard subprocess #define hwupro hwupro_ // read USER hard subprocess from HepUP event common #define hwbgen hwbgen_ // generate parton cascades #define hwdhob hwdhob_ // do heavy object decays #define hwcfor hwcfor_ // do cluster hadronization #define hwcdec hwcdec_ // do cluster decay #define hwdhad hwdhad_ // do unstable particle decays #define hwdhvy hwdhvy_ // do heavy flavour decays #define hwmevt hwmevt_ // add soft underlying event if needed #define hwufne hwufne_ // event generation completed, wrap up event .... #define hwefin hwefin_ // terminate elementary process #define hwudpr hwudpr_ // prints out particle/decay properties #define hwuepr hwuepr_ // prints out event data #define hwupup hwupup_ // prints out HepEUP user common block event data #define hwegup hwegup_ // terminal calculations to replace HWEFIN for HepUP extern "C" { void hwigin(void); void hwigup(void); void hwuinc(void); void hwusta(const char*,int); void hweini(void); void hwuine(void); void hwepro(void); void hwupro(void); void hwbgen(void); void hwdhob(void); void hwcfor(void); void hwcdec(void); void hwdhad(void); void hwdhvy(void); void hwmevt(void); void hwufne(void); void hwefin(void); void hwudpr(void); void hwuepr(void); void hwupup(void); void hwegup(void); } //-------------------------------------------------------------------------- // HERWIG block data // ( with gcc it works to initialize the block data by calling // "hwudat();" at beginning. ) #define hwudat hwudat_ extern "C" { void hwudat(void); } #include "HepMC/GenCrossSection.h" namespace HepMC { /// calculate the Herwig cross section and statistical error GenCrossSection getHerwigCrossSection(int ngen); } // HepMC #endif // Platform #endif // HERWIG_WRAPPER_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/GenVertex.h0000644000175000017500000004666211701361610017633 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_GEN_VERTEX_H #define HEPMC_GEN_VERTEX_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // GenVertex within an event // A vertex is indirectly (via particle "edges") linked to other // vertices ("nodes") to form a composite "graph" ////////////////////////////////////////////////////////////////////////// // --> HANDLE COMPILER INCONSISTENCIES // This pre-compiler directive is included (2002-01-16) to allow compatibility // with several compilers. // Mar 27, 2004: HepMC is now standard compliant only. // I've removed forward_iterator, and it will no longer compile on gcc < 3. #ifdef __SUNPRO_CC // Solaris CC 5.2 #define NEED_SOLARIS_FRIEND_FEATURE #endif // Platform #include "HepMC/WeightContainer.h" #include "HepMC/SimpleVector.h" #include "HepMC/IteratorRange.h" #include #include #include #include #include #include namespace HepMC { class GenVertexParticleRange; class GenParticleProductionRange; class ConstGenParticleProductionRange; class GenParticleEndRange; class ConstGenParticleEndRange; class GenParticle; class GenEvent; //! GenVertex contains information about decay vertices. /// /// \class GenVertex /// HepMC::GenVertex contains the position in space and time of a decay. /// It also contains lists of incoming and outgoing particles. /// class GenVertex { /// print vertex information friend std::ostream& operator<<( std::ostream&, const GenVertex& ); friend class GenEvent; #ifdef NEED_SOLARIS_FRIEND_FEATURE // This bit of ugly code is only for CC-5.2 compiler. // M.Dobbs 2002/02/19 // It is not needed by linux gcc, nor Windows Visual C++. public: class vertex_iterator; friend class vertex_iterator; class particle_iterator; friend class particle_iterator; #endif // NEED_SOLARIS_FRIEND_FEATURE public: /// default constructor GenVertex( const FourVector& position =FourVector(0,0,0,0), int id = 0, const WeightContainer& weights = std::vector() ); GenVertex( const GenVertex& invertex ); //!< shallow copy virtual ~GenVertex(); void swap( GenVertex & other); //!< swap GenVertex& operator= ( const GenVertex& invertex ); //!< shallow bool operator==( const GenVertex& a ) const; //!< equality bool operator!=( const GenVertex& a ) const; //!< inequality void print( std::ostream& ostr = std::cout ) const; //!< print vertex information double check_momentum_conservation() const;//!< |Sum (three_mom_in-three_mom_out)| /// add incoming particle void add_particle_in( GenParticle* inparticle ); /// add outgoing particle void add_particle_out( GenParticle* outparticle ); /// remove_particle finds *particle in the in and/or out list and /// removes it from these lists ... it DOES NOT DELETE THE PARTICLE /// or its relations. You could delete the particle too as follows: /// delete vtx->remove_particle( particle ); GenParticle* remove_particle( GenParticle* particle ); //!< remove a particle operator HepMC::FourVector() const; //!< conversion operator operator HepMC::ThreeVector() const; //!< conversion operator //////////////////// // access methods // //////////////////// /// pointer to the event that owns this vertex GenEvent* parent_event() const; /// vertex position ThreeVector point3d() const; /// vertex position and time const FourVector & position() const; /// set vertex position and time void set_position( const FourVector& position = FourVector(0,0,0,0) ); /// we don't define what you use the id for -- but we imagine, /// for example it might code the meaning of the weights() int id() const; //!< vertex ID void set_id( int id ); //!< set vertex ID /// /// The barcode is the vertex's reference number, every vertex in the /// event has a unique barcode. Vertex barcodes are negative numbers, /// particle barcodes are positive numbers. /// /// Please note that the barcodes are intended for internal use within /// HepMC as a unique identifier for the particles and vertices. /// Using the barcode to encode extra information is an abuse of /// the barcode data member and causes confusion among users. /// int barcode() const; //!< unique identifier /// In general there is no reason to "suggest_barcode" bool suggest_barcode( int the_bar_code ); /// direct access to the weights container is allowed. WeightContainer& weights(); /// const direct access to the weights container const WeightContainer& weights() const; /// particle range GenVertexParticleRange particles( IteratorRange range = relatives ); /// incoming particle range GenParticleProductionRange particles_in( GenParticle&, IteratorRange range = relatives ); /// incoming particle range ConstGenParticleProductionRange particles_in( GenParticle const &, IteratorRange range = relatives ) const; /// outgoing particle range GenParticleEndRange particles_out( GenParticle&, IteratorRange range = relatives ); /// outgoing particle range ConstGenParticleEndRange particles_out( GenParticle const &, IteratorRange range = relatives ) const; //////////////////// // Iterators // users should use prefer to use particle_iterator //////////////////// /// const iterator for incoming particles typedef std::vector::const_iterator particles_in_const_iterator; /// const iterator for outgoing particles typedef std::vector::const_iterator particles_out_const_iterator; /// begin iteration of incoming particles particles_in_const_iterator particles_in_const_begin() const; /// end iteration of incoming particles particles_in_const_iterator particles_in_const_end() const; /// begin iteration of outgoing particles particles_out_const_iterator particles_out_const_begin() const; /// end iteration of outgoing particles particles_out_const_iterator particles_out_const_end() const; /// number of incoming particles int particles_in_size() const; /// number of outgoing particles int particles_out_size() const; protected: //static unsigned int counter(); //!< temporary for debugging /// only the GenEvent (friend) is allowed to set the parent_event, /// and barcode. It is done automatically anytime you add a /// vertex to an event void set_parent_event_( GenEvent* evt ); //!< set parent event void set_barcode_( int the_bar_code ); //!< set identifier void change_parent_event_( GenEvent* evt ); //!< for use with swap ///////////////////////////// // edge_iterator // (protected - for internal use only) ///////////////////////////// // If the user wants the functionality of the edge_iterator, he should // use particle_iterator with IteratorRange = family, parents, children // //! edge iterator /// \class edge_iterator /// iterate over the family of edges connected to m_vertex begins /// with parents (incoming particles) then children (outgoing) /// This is not a recursive iterator ... it is a building block /// for the public iterators and is intended for internal use only. /// The acceptable Iterator Ranges are: family, parents, children class edge_iterator : public std::iterator{ public: edge_iterator(); /// used to set limits on the iteration edge_iterator( const GenVertex& vtx, IteratorRange range =family ); /// copy edge_iterator( const edge_iterator& p ); virtual ~edge_iterator(); /// make a copy edge_iterator& operator=( const edge_iterator& p ); /// return a pointer to a particle GenParticle* operator*(void) const; /// Pre-fix increment edge_iterator& operator++(void); // Pre-fix increment /// Post-fix increment edge_iterator operator++(int); // Post-fix increment /// equality bool operator==( const edge_iterator& a ) const; /// inequality bool operator!=( const edge_iterator& a ) const; /// true if parent of root vtx bool is_parent() const; /// true if child of root vtx bool is_child() const; /// root vertex of this iteration const GenVertex* vertex_root() const; private: /// Pre-fix increment -- is not allowed edge_iterator& operator--(void); /// Post-fix increment -- is not allowed edge_iterator operator--(int); private: const GenVertex* m_vertex; IteratorRange m_range; std::vector::const_iterator m_set_iter; bool m_is_inparticle_iter; bool m_is_past_end; }; friend class edge_iterator; /// size int edges_size( IteratorRange range = family ) const; /// begin range edge_iterator edges_begin( IteratorRange range = family) const; /// end range edge_iterator edges_end( IteratorRange /* dummy_range */ ) const; public: /////////////////////////////// // vertex_iterator // /////////////////////////////// //! vertex iterator /// \class vertex_iterator /// Iterates over all vertices connected via a graph to this vertex. /// this is made friend to that it can access protected edge /// iterator the range can be IteratorRange= ( parents, children, /// family, ancestors, descendants, relatives ) /// example for range=descendants the iterator /// will return all vertices /// which are children (connected by an outgoing particle edge), /// grandchildren, great-grandchildren, etc. of this vertex /// In all cases the iterator always returns this vertex /// (returned last). /// The algorithm is accomplished by converting the graph to a tree /// (by "chopping" the edges connecting to an already visited /// vertex) and returning the vertices in POST ORDER traversal. /// class vertex_iterator : public std::iterator{ public: vertex_iterator(); /// used to set limits on the iteration vertex_iterator( GenVertex& vtx_root, IteratorRange range ); /// next constructor is intended for internal use only vertex_iterator( GenVertex& vtx_root, IteratorRange range, std::set& visited_vertices ); /// copy vertex_iterator( const vertex_iterator& v_iter ); virtual ~vertex_iterator(); /// make a copy vertex_iterator& operator=( const vertex_iterator& ); /// return a pointer to a vertex GenVertex* operator*(void) const; /// Pre-fix increment vertex_iterator& operator++(void); //Pre-fix increment /// Post-fix increment vertex_iterator operator++(int); //Post-fix increment /// equality bool operator==( const vertex_iterator& ) const; /// inequality bool operator!=( const vertex_iterator& ) const; /// vertex that this iterator begins from GenVertex* vertex_root() const; /// iterator range IteratorRange range() const; /// intended for internal use only. void copy_with_own_set( const vertex_iterator& v_iter, std::set& visited_vertices ); protected: // intended for internal use only /// non-null if recursive iter. created GenVertex* follow_edge_(); /// copy recursive iterator void copy_recursive_iterator_( const vertex_iterator* recursive_v_iter ); private: /// Pre-fix increment -- is not allowed vertex_iterator& operator--(void); /// Post-fix increment -- is not allowed vertex_iterator operator--(int); private: GenVertex* m_vertex; // the vertex associated to this iter IteratorRange m_range; std::set* m_visited_vertices; bool m_it_owns_set; // true if it is responsible for // deleting the visited vertex set edge_iterator m_edge; // particle edge pointing to return vtx vertex_iterator* m_recursive_iterator; }; friend class vertex_iterator; /// begin vertex range vertex_iterator vertices_begin( IteratorRange range = relatives ); /// end vertex range vertex_iterator vertices_end( IteratorRange /* dummy_range */ ); public: /////////////////////////////// // particle_iterator // /////////////////////////////// //! particle iterator /// \class particle_iterator /// Iterates over all particles connected via a graph. /// by iterating through all vertices in the m_range. For each /// vertex it returns orphaned parent particles /// (i.e. parents without production vertices) /// then children ... in this way each particle is associated /// to exactly one vertex and so it is returned exactly once. /// Is made friend so that it can access protected edge iterator class particle_iterator : public std::iterator{ public: particle_iterator(); /// used to set limits on the iteration particle_iterator( GenVertex& vertex_root, IteratorRange range ); /// copy particle_iterator( const particle_iterator& ); virtual ~particle_iterator(); /// make a copy particle_iterator& operator=( const particle_iterator& ); /// return a pointer to a particle GenParticle* operator*(void) const; /// Pre-fix increment particle_iterator& operator++(void); /// Post-fix increment particle_iterator operator++(int); /// equality bool operator==( const particle_iterator& ) const; /// inequality bool operator!=( const particle_iterator& ) const; protected: GenParticle* advance_to_first_(); //!< "first" particle private: vertex_iterator m_vertex_iterator; edge_iterator m_edge; // points to the return }; friend class particle_iterator; /// begin particle range particle_iterator particles_begin( IteratorRange range = relatives ); /// end particle range particle_iterator particles_end( IteratorRange /* dummy_range */ ); //////////////////////////////////////////////// protected: /// for internal use only void delete_adopted_particles(); /// for internal use only - remove particle from incoming list void remove_particle_in( GenParticle* ); /// for internal use only - remove particle from outgoing list void remove_particle_out( GenParticle* ); /// scale the position vector /// this method is only for use by GenEvent void convert_position( const double& ); private: // GenVertex data members FourVector m_position; //4-vec of vertex [mm] std::vector m_particles_in; //all incoming particles std::vector m_particles_out; //all outgoing particles int m_id; WeightContainer m_weights; // weights for this vtx GenEvent* m_event; int m_barcode; // unique identifier in the event //static unsigned int s_counter; }; //////////////////////////// // INLINES access methods // //////////////////////////// inline GenVertex::operator HepMC::FourVector() const { return position(); } inline GenVertex::operator HepMC::ThreeVector() const { return point3d(); } inline const FourVector & GenVertex::position() const { return m_position; } inline GenEvent* GenVertex::parent_event() const { return m_event; } inline ThreeVector GenVertex::point3d() const { return ThreeVector(m_position.x(),m_position.y(),m_position.z()); } inline int GenVertex::id() const { return m_id; } inline int GenVertex::barcode() const { return m_barcode; } inline void GenVertex::set_barcode_( int bc ) { m_barcode = bc; } inline WeightContainer& GenVertex::weights() { return m_weights; } inline const WeightContainer& GenVertex::weights() const { return m_weights; } inline void GenVertex::set_position( const FourVector& pos ) { m_position = pos; } inline void GenVertex::set_id( int pid ) { m_id = pid; } ////////////// // INLINES // ////////////// inline GenVertex::particles_in_const_iterator GenVertex::particles_in_const_begin() const { return m_particles_in.begin(); } inline GenVertex::particles_in_const_iterator GenVertex::particles_in_const_end() const { return m_particles_in.end(); } inline GenVertex::particles_out_const_iterator GenVertex::particles_out_const_begin() const { return m_particles_out.begin(); } inline GenVertex::particles_out_const_iterator GenVertex::particles_out_const_end() const { return m_particles_out.end(); } inline int GenVertex::particles_in_size() const { return m_particles_in.size(); } inline int GenVertex::particles_out_size() const { return m_particles_out.size(); } inline bool GenVertex::edge_iterator::operator==( const edge_iterator& a ) const { return **this == *a; } inline bool GenVertex::edge_iterator::operator!=( const edge_iterator& a ) const { return !(**this == *a); } inline const GenVertex* GenVertex::edge_iterator::vertex_root() const { return m_vertex; } inline GenVertex::edge_iterator GenVertex::edges_begin( IteratorRange range ) const { return GenVertex::edge_iterator(*this, range); } inline GenVertex::edge_iterator GenVertex::edges_end( IteratorRange /* dummy_range */ ) const { return GenVertex::edge_iterator(); } inline bool GenVertex::vertex_iterator::operator==( const vertex_iterator& a ) const { return **this == *a; } inline bool GenVertex::vertex_iterator::operator!=( const vertex_iterator& a ) const { return !(**this == *a); } inline GenVertex* GenVertex::vertex_iterator::vertex_root() const { return m_vertex; } inline IteratorRange GenVertex::vertex_iterator::range() const { return m_range; } inline GenVertex::vertex_iterator GenVertex::vertices_begin( IteratorRange range ){ // this is not const because the it could return itself return vertex_iterator( *this, range ); } inline GenVertex::vertex_iterator GenVertex::vertices_end( IteratorRange /* dummy_range */ ) { return vertex_iterator(); } inline bool GenVertex::particle_iterator::operator==( const particle_iterator& a ) const { return **this == *a; } inline bool GenVertex::particle_iterator::operator!=( const particle_iterator& a ) const { return !(**this == *a); } inline GenVertex::particle_iterator GenVertex::particles_begin( IteratorRange range ) { return particle_iterator( *this, range ); } inline GenVertex::particle_iterator GenVertex::particles_end( IteratorRange /* dummy_range */ ){ return particle_iterator(); } } // HepMC #endif // HEPMC_GEN_VERTEX_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/GenRanges.h0000644000175000017500000002530311401307025017557 0ustar sylvestresylvestre#ifndef HEPMC_GEN_EVENT_ITERATORS_H #define HEPMC_GEN_EVENT_ITERATORS_H //-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, May 2009 // ////////////////////////////////////////////////////////////////////////// //-------------------------------------------------------------------------- #include #include "HepMC/GenEvent.h" #include "HepMC/GenVertex.h" namespace HepMC { //! GenEventVertexRange acts like a collection of vertices /// /// \class GenEventVertexRange /// HepMC::GenEventVertexRange is used to mimic a collection of /// vertices for ease of use - especially with utilities such as /// the Boost foreach funtion /// class GenEventVertexRange { public: /// the constructor requires a GenEvent GenEventVertexRange( GenEvent & e ) : m_event(e) {} /// GenEvent::vertex_iterator begin() { return m_event.vertices_begin(); } GenEvent::vertex_iterator end() { return m_event.vertices_end(); } private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenEvent::vertex_range(). GenEventVertexRange& operator=( GenEventVertexRange & ); private: GenEvent & m_event; }; //! ConstGenEventVertexRange acts like a collection of vertices /// /// \class ConstGenEventVertexRange /// HepMC::ConstGenEventVertexRange is used to mimic a collection of /// vertices for ease of use - especially with utilities such as /// the Boost foreach funtion /// This is the const partner of GenEventVertexRange /// class ConstGenEventVertexRange { public: /// the constructor requires a const GenEvent ConstGenEventVertexRange( GenEvent const & e ) : m_event(e) {} /// GenEvent::vertex_const_iterator begin() const { return m_event.vertices_begin(); } GenEvent::vertex_const_iterator end() const { return m_event.vertices_end(); } private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenEvent::vertex_range(). ConstGenEventVertexRange& operator=( ConstGenEventVertexRange & ); private: GenEvent const & m_event; }; //! GenEventParticleRange acts like a collection of particles /// /// \class GenEventParticleRange /// HepMC::GenEventParticleRange is used to mimic a collection of /// particles for ease of use - especially with utilities such as /// the Boost foreach funtion /// class GenEventParticleRange { public: /// the constructor requires a GenEvent GenEventParticleRange( GenEvent & e ) : m_event(e) {} /// GenEvent::particle_iterator begin() { return m_event.particles_begin(); } GenEvent::particle_iterator end() { return m_event.particles_end(); } private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenEvent::particle_range(). GenEventParticleRange& operator=( GenEventParticleRange & ); private: GenEvent & m_event; }; //! ConstGenEventParticleRange acts like a collection of particles /// /// \class ConstGenEventParticleRange /// HepMC::ConstGenEventParticleRange is used to mimic a collection of /// particles for ease of use - especially with utilities such as /// the Boost foreach funtion /// This is the const partner of GenEventParticleRange /// class ConstGenEventParticleRange { public: /// the constructor requires a const GenEvent ConstGenEventParticleRange( GenEvent const & e ) : m_event(e) {} /// GenEvent::particle_const_iterator begin() const { return m_event.particles_begin(); } GenEvent::particle_const_iterator end() const { return m_event.particles_end(); } private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenEvent::particle_range(). ConstGenEventParticleRange& operator=( ConstGenEventParticleRange & ); private: GenEvent const & m_event; }; //! GenVertexParticleRange acts like a collection of particles /// /// \class GenVertexParticleRange /// HepMC::GenVertexParticleRange is used to mimic a collection of /// particles for ease of use - especially with utilities such as /// the Boost foreach funtion /// class GenVertexParticleRange { public: /// the constructor requires a GenVertex GenVertexParticleRange( GenVertex & v, IteratorRange range = relatives ) : m_vertex(v),m_range(range) {} /// GenVertex::particle_iterator begin() { return m_vertex.particles_begin(m_range); } GenVertex::particle_iterator end() { return m_vertex.particles_end(m_range); } private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenVertex::particles(). GenVertexParticleRange& operator=( GenVertexParticleRange & ); private: GenVertex & m_vertex; IteratorRange m_range; }; //! GenParticleProductionRange acts like a collection of particles /// /// \class GenParticleProductionRange /// HepMC::GenParticleProductionRange is used to mimic a collection of /// particles associated with the particle's production vertex for ease of use /// Utilities such as the Boost foreach funtion will want to use this class. /// class GenParticleProductionRange { public: /// the constructor requires a GenParticle GenParticleProductionRange( GenParticle const & p, IteratorRange range = relatives ) : m_particle(p),m_range(range) {} /// begin iterator throws an error if the particle production_vertex is undefined GenVertex::particle_iterator begin(); /// end iterator throws an error if the particle production_vertex is undefined GenVertex::particle_iterator end(); private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenVertex::particles_in(). GenParticleProductionRange& operator=( GenParticleProductionRange & ); private: GenParticle const & m_particle; IteratorRange m_range; }; class ConstGenParticleProductionRange { public: /// the constructor requires a GenParticle ConstGenParticleProductionRange( GenParticle const & p, IteratorRange range = relatives ) : m_particle(p),m_range(range) {} /// begin iterator throws an error if the particle production_vertex is undefined GenVertex::particle_iterator begin(); /// end iterator throws an error if the particle production_vertex is undefined GenVertex::particle_iterator end(); private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenVertex::particles_in(). ConstGenParticleProductionRange& operator=( ConstGenParticleProductionRange & ); private: GenParticle const & m_particle; IteratorRange m_range; }; //! GenParticleEndRange acts like a collection of particles /// /// \class GenParticleEndRange /// HepMC::GenParticleEndRange is used to mimic a collection of /// particles associated with the particle's end vertex for ease of use /// Utilities such as the Boost foreach funtion will want to use this class. /// class GenParticleEndRange { public: /// the constructor requires a GenParticle GenParticleEndRange( GenParticle const & p, IteratorRange range = relatives ) : m_particle(p),m_range(range) {} /// begin iterator throws an error if the particle end_vertex is undefined GenVertex::particle_iterator begin(); /// end iterator throws an error if the particle end_vertex is undefined GenVertex::particle_iterator end(); private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenVertex::particles_out(). GenParticleEndRange& operator=( GenParticleEndRange & ); private: GenParticle const & m_particle; IteratorRange m_range; }; class ConstGenParticleEndRange { public: /// the constructor requires a GenParticle ConstGenParticleEndRange( GenParticle const & p, IteratorRange range = relatives ) : m_particle(p),m_range(range) {} /// begin iterator throws an error if the particle end_vertex is undefined GenVertex::particle_iterator begin(); /// end iterator throws an error if the particle end_vertex is undefined GenVertex::particle_iterator end(); private: /// Because the class contains a reference, assignments are not allowed. /// However, we need the copy constructor for GenVertex::particles_out(). ConstGenParticleEndRange& operator=( ConstGenParticleEndRange & ); private: GenParticle const & m_particle; IteratorRange m_range; }; inline GenVertex::particle_iterator GenParticleProductionRange::begin() { if ( ! m_particle.production_vertex() ) throw(std::range_error("GenParticleProductionRange: GenParticle has no production_vertex")); return m_particle.production_vertex()->particles_begin(m_range); } inline GenVertex::particle_iterator GenParticleProductionRange::end() { if ( ! m_particle.production_vertex() ) throw(std::range_error("GenParticleProductionRange: GenParticle has no production_vertex")); return m_particle.production_vertex()->particles_end(m_range); } inline GenVertex::particle_iterator ConstGenParticleProductionRange::begin() { if ( ! m_particle.production_vertex() ) throw(std::range_error("ConstGenParticleProductionRange: GenParticle has no production_vertex")); return m_particle.production_vertex()->particles_begin(m_range); } inline GenVertex::particle_iterator ConstGenParticleProductionRange::end() { if ( ! m_particle.production_vertex() ) throw(std::range_error("ConstGenParticleProductionRange: GenParticle has no production_vertex")); return m_particle.production_vertex()->particles_end(m_range); } inline GenVertex::particle_iterator GenParticleEndRange::begin() { if ( ! m_particle.end_vertex() ) throw(std::range_error("GenParticleEndRange: GenParticle has no end_vertex")); return m_particle.end_vertex()->particles_begin(m_range); } inline GenVertex::particle_iterator GenParticleEndRange::end() { if ( ! m_particle.end_vertex() ) throw(std::range_error("GenParticleEndRange: GenParticle has no end_vertex")); return m_particle.end_vertex()->particles_end(m_range); } inline GenVertex::particle_iterator ConstGenParticleEndRange::begin() { if ( ! m_particle.end_vertex() ) throw(std::range_error("ConstGenParticleEndRange: GenParticle has no end_vertex")); return m_particle.end_vertex()->particles_begin(m_range); } inline GenVertex::particle_iterator ConstGenParticleEndRange::end() { if ( ! m_particle.end_vertex() ) throw(std::range_error("ConstGenParticleEndRange: GenParticle has no end_vertex")); return m_particle.end_vertex()->particles_end(m_range); } } // HepMC #endif // HEPMC_GEN_EVENT_ITERATORS_H hepmc-2.06.09.orig/HepMC/HepMCDefs.h0000644000175000017500000000317011763464675017474 0ustar sylvestresylvestre#ifndef HEPMC_DEFS_H #define HEPMC_DEFS_H // ---------------------------------------------------------------------- // // HepMCDefs.h // Author: Lynn Garren // // Define various useful macros // Most allow users to check for various code features // // ---------------------------------------------------------------------- // the HeavyIon class is available in HepMC #ifndef HEPMC_HAS_HEAVY_ION #define HEPMC_HAS_HEAVY_ION #endif // the IO_Ascii class is NOT available in HepMC #ifndef HEPMC_IO_ASCII_REMOVED #define HEPMC_IO_ASCII_REMOVED #endif // the ParticleData class is NOT available in HepMC #ifndef HEPMC_PARTICLE_DATA_REMOVED #define HEPMC_PARTICLE_DATA_REMOVED #endif // the IO_GenEvent class is available in HepMC #ifndef HEPMC_HAS_IO_GENEVENT #define HEPMC_HAS_IO_GENEVENT #endif // the PdfInfo class is available in HepMC #ifndef HEPMC_HAS_PDF_INFO #define HEPMC_HAS_PDF_INFO #endif // HepMC uses SimpleVector (FourVector) to store momentum and position #ifndef HEPMC_HAS_SIMPLE_VECTOR #define HEPMC_HAS_SIMPLE_VECTOR #endif // units are defined in HepMC #ifndef HEPMC_HAS_UNITS #define HEPMC_HAS_UNITS #endif // the GenCrossSection class is available in HepMC #ifndef HEPMC_HAS_CROSS_SECTION #define HEPMC_HAS_CROSS_SECTION #endif // the iterator range classes are available in HepMC #ifndef HEPMC_HAS_ITERATOR_RANGES #define HEPMC_HAS_ITERATOR_RANGES #endif // the HepMC::WeightContainer class allows named weights #ifndef HEPMC_HAS_NAMED_WEIGHTS #define HEPMC_HAS_NAMED_WEIGHTS #endif // define the version of HepMC. #ifndef HEPMC_VERSION #define HEPMC_VERSION "2.06.09" #endif #endif // HEPMC_DEFS_H hepmc-2.06.09.orig/HepMC/IO_BaseClass.h0000644000175000017500000000730011374257600020146 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_IO_BASECLASS_H #define HEPMC_IO_BASECLASS_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // event input/output base class ////////////////////////////////////////////////////////////////////////// // // class from which all input/output classes shall inherit from. // i.e.: if you want to write events to hbook ntuples, // then inherit from this class and re-define read_event() // and write_event() // // (Possible extension: Could make this an input iterator) // #include #include "HepMC/GenEvent.h" namespace HepMC { //! all input/output classes inherit from IO_BaseClass /// /// \class IO_BaseClass /// If you want to write a new IO class, /// then inherit from this class and re-define read_event() /// and write_event() /// class IO_BaseClass { public: virtual ~IO_BaseClass() {} /// write this GenEvent virtual void write_event( const GenEvent* ) =0; /// fill this GenEvent virtual bool fill_next_event( GenEvent* ) =0; /// write output to ostr virtual void print( std::ostream& ostr = std::cout ) const; // // the read_next_event() differs from // the fill_***() methods in that it creates a new event // before calling the corresponding fill_*** method // (they are not intended to be over-ridden) GenEvent* read_next_event(); //!< do not over-ride // // The overloaded stream operators >>,<< are identical to // read_next_event and write_event methods respectively. // (or read_particle_data_table and write_particle_data_table) // the event argument for the overloaded stream operators is a pointer, // which is passed by reference. // i.e. GenEvent* evt; // io >> evt; // will give the expected result. // (note: I don't see any reason to have separate const and non-const // versions of operator<<, but the pedantic ansi standard insists // on it) /// the same as read_next_event virtual GenEvent*& operator>>( GenEvent*& ); /// the same as write_event virtual const GenEvent*& operator<<( const GenEvent*& ); /// the same as write_event virtual GenEvent*& operator<<( GenEvent*& ); }; ////////////// // Inlines // ////////////// inline GenEvent* IO_BaseClass::read_next_event() { /// creates a new event and fills it by calling /// the sister method read_next_event( GenEvent* ) // // 1. create an empty event container GenEvent* evt = new GenEvent(); // 2. fill the evt container - if the read is successful, return the // pointer, otherwise return null and delete the evt if ( fill_next_event( evt ) ) return evt; // note: the below delete is only reached if read fails // ... thus there is not much overhead in new then delete // since this statement is rarely reached delete evt; return 0; } inline void IO_BaseClass::print( std::ostream& ostr ) const { ostr << "IO_BaseClass: abstract parent I/O class. " << std::endl; } inline GenEvent*& IO_BaseClass::operator>>( GenEvent*& evt ){ evt = read_next_event(); return evt; } inline const GenEvent*& IO_BaseClass::operator<<( const GenEvent*& evt ) { write_event( evt ); return evt; } inline GenEvent*& IO_BaseClass::operator<<( GenEvent*& evt ) { write_event( evt ); return evt; } } // HepMC #endif // HEPMC_IO_BASECLASS_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/IO_HEPEVT.h0000644000175000017500000001300411374257600017277 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_IO_HEPEVT_H #define HEPMC_IO_HEPEVT_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, January 2000, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // HEPEVT IO class ////////////////////////////////////////////////////////////////////////// // // Important note: This class uses HepMC::HEPEVT_Wrapper which is an // interface to the fortran77 HEPEVT common block. // The precision and number of entries in the F77 common // block can be specified. See HepMC/HEPEVT_Wrapper.h. // You will very likely have to specify these values for your // application. // // #include #include #include "HepMC/IO_BaseClass.h" #include "HepMC/HEPEVT_Wrapper.h" namespace HepMC { class GenEvent; class GenVertex; class GenParticle; //! HEPEVT IO class /// /// \class IO_HEPEVT /// IO class for reading the standard HEPEVT common block. /// class IO_HEPEVT : public IO_BaseClass { public: IO_HEPEVT(); virtual ~IO_HEPEVT(); bool fill_next_event( GenEvent* ); void write_event( const GenEvent* ); void print( std::ostream& ostr = std::cout ) const; // see comments below for these switches. /// default is false bool trust_both_mothers_and_daughters() const; /// default is true bool trust_mothers_before_daughters() const; /// default is true bool print_inconsistency_errors() const; /// default is true bool trust_beam_particles() const; /// define mother daughter trust rules void set_trust_mothers_before_daughters( bool b = true ); /// define mother daughter trust rules void set_trust_both_mothers_and_daughters( bool b = false ); /// Since HEPEVT has bi-directional pointers, it is possible that /// the mother/daughter pointers are inconsistent (though physically /// speaking this should never happen). In practise it happens often. /// When a conflict occurs (i.e. when mother/daughter pointers are in /// disagreement, where an empty (0) pointer is not considered a /// disagreement) an error is printed. These errors can be turned off /// with: myio_hepevt.set_print_inconsistency_errors(0); /// but it is STRONGLY recommended that you print the HEPEVT /// common and understand the inconsistency BEFORE you turn off the /// errors. The messages are there for a reason [remember, there is /// no message printed when the information is missing, ... only when /// is it inconsistent. User beware.] /// You can inspect the HEPEVT common block for inconsistencies with /// HEPEVT_Wrapper::check_hepevt_consistency() /// /// There is a switch controlling whether the mother pointers or /// the daughters are to be trusted. /// For example, in Pythia the mother information is always correctly /// included, but the daughter information is often left unfilled: in /// this case we want to trust the mother pointers and not necessarily /// the daughters. [THIS IS THE DEFAULT]. Unfortunately the reverse /// happens for the stdhep(2001) translation of Isajet, so we need /// an option to toggle the choices. void set_print_inconsistency_errors( bool b = true ); /// declare whether or not beam particles exist void set_trust_beam_particles( bool b = true ); protected: // for internal use only /// create a GenParticle GenParticle* build_particle( int index ); /// create a production vertex void build_production_vertex( int i,std::vector& hepevt_particle, GenEvent* evt ); /// create an end vertex void build_end_vertex( int i, std::vector& hepevt_particle, GenEvent* evt ); /// find this particle in the particle map int find_in_map( const std::map& m, GenParticle* p) const; private: // use of copy constructor is not allowed IO_HEPEVT( const IO_HEPEVT& ) : IO_BaseClass() {} private: // data members bool m_trust_mothers_before_daughters; bool m_trust_both_mothers_and_daughters; bool m_print_inconsistency_errors; bool m_trust_beam_particles; }; //////////////////////////// // INLINES access methods // //////////////////////////// inline bool IO_HEPEVT::trust_both_mothers_and_daughters() const { return m_trust_both_mothers_and_daughters; } inline bool IO_HEPEVT::trust_mothers_before_daughters() const { return m_trust_mothers_before_daughters; } inline bool IO_HEPEVT::print_inconsistency_errors() const { return m_print_inconsistency_errors; } inline void IO_HEPEVT::set_trust_both_mothers_and_daughters( bool b ) { m_trust_both_mothers_and_daughters = b; } inline void IO_HEPEVT::set_trust_mothers_before_daughters( bool b ) { m_trust_mothers_before_daughters = b; } inline void IO_HEPEVT::set_print_inconsistency_errors( bool b ) { m_print_inconsistency_errors = b; } inline bool IO_HEPEVT::trust_beam_particles() const { return m_trust_beam_particles; } inline void IO_HEPEVT::set_trust_beam_particles( bool b ) { m_trust_beam_particles = b; } } // HepMC #endif // HEPMC_IO_HEPEVT_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/IteratorRange.h0000644000175000017500000000143011374257600020463 0ustar sylvestresylvestre//-------------------------------------------------------------------------- #ifndef HEPMC_ITERATOR_RANGE_H #define HEPMC_ITERATOR_RANGE_H ////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Iterator ranges used by GenVertex ////////////////////////////////////////////////////////////////////////// namespace HepMC { /// type of iteration enum IteratorRange { parents, children, family, ancestors, descendants, relatives }; } // HepMC #endif // HEPMC_ITERATOR_RANGE_H //-------------------------------------------------------------------------- hepmc-2.06.09.orig/HepMC/SimpleVector.h0000644000175000017500000001433411701361610020327 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // SimpleVector.h ////////////////////////////////////////////////////////////////////////// #ifndef HEPMC_SIMPLEVECTOR_H #define HEPMC_SIMPLEVECTOR_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, July 2006 // // This header provides a place to hold the doubles which are part of one of // three types of physics vectors: // momentum 4 vector // position or displacement 4 vector // position or displacement 3 vector // // For compatibility with existing code, // the basic expected geometrical access methods are povided // Also, both FourVector and ThreeVector have a templated constructor that will // take another vector (HepLorentzVector, GenVector, ...) // --> this vector must have the following methods: x(), y(), z() // --> FourVector also requires the t() method // ////////////////////////////////////////////////////////////////////////// #include "HepMC/enable_if.h" #include "HepMC/is_arithmetic.h" namespace HepMC { //! FourVector is a simple representation of a physics 4 vector /// /// \class FourVector /// For compatibility with existing code, /// the basic expected geometrical access methods are povided. /// Also, there is a templated constructor that will /// take another vector (HepLorentzVector, GenVector, ...) /// which must have the following methods: x(), y(), z(), t(). /// class FourVector { public: /// constructor requiring at least x, y, and z FourVector( double xin, double yin, double zin, double tin=0) : m_x(xin), m_y(yin), m_z(zin), m_t(tin) {} /// constructor requiring only t FourVector(double tin) : m_x(0), m_y(0), m_z(0), m_t(tin) {} FourVector() : m_x(0), m_y(0), m_z(0), m_t(0) {} /// templated constructor /// this is used ONLY if T is not arithmetic template FourVector( const T& v, typename detail::disable_if< detail::is_arithmetic::value, void >::type * = 0 ) : m_x(v.x()), m_y(v.y()), m_z(v.z()), m_t(v.t()) {} /// copy constructor FourVector(const FourVector & v) : m_x(v.x()), m_y(v.y()), m_z(v.z()), m_t(v.t()) {} void swap( FourVector & other ); //!< swap double px() const { return m_x; } //!< return px double py() const { return m_y; } //!< return py double pz() const { return m_z; } //!< return pz double e() const { return m_t; } //!< return E double x() const { return m_x; } //!< return x double y() const { return m_y; } //!< return y double z() const { return m_z; } //!< return z double t() const { return m_t; } //!< return t double m2() const; //!< Invariant mass squared. double m() const; //!< Invariant mass. If m2() is negative then -sqrt(-m2()) is returned. double perp2() const; //!< Transverse component of the spatial vector squared. double perp() const; //!< Transverse component of the spatial vector (R in cylindrical system). // Get spatial vector components in spherical coordinate system. double theta() const; //!< The polar angle. double phi() const; //!< The azimuth angle. double rho() const; //!< spatial vector component magnitude FourVector & operator = (const FourVector &); //!< make a copy bool operator == (const FourVector &) const; //!< equality bool operator != (const FourVector &) const; //!< inequality double pseudoRapidity() const; //!< Returns the pseudo-rapidity, i.e. -ln(tan(theta/2)) double eta() const; //!< Pseudorapidity (of the space part) /// set x, y, z, and t void set (double x, double y, double z, double t); void setX(double xin) { m_x=xin; } //!< set x void setY(double yin) { m_y=yin; } //!< set y void setZ(double zin) { m_z=zin; } //!< set z void setT(double tin) { m_t=tin; } //!< set t void setPx(double xin) { m_x=xin; } //!< set px void setPy(double yin) { m_y=yin; } //!< set py void setPz(double zin) { m_z=zin; } //!< set pz void setE(double tin) { m_t=tin; } //!< set E private: double m_x; double m_y; double m_z; double m_t; }; //! ThreeVector is a simple representation of a position or displacement 3 vector /// /// \class ThreeVector /// For compatibility with existing code, /// the basic expected geometrical access methods are povided. /// Also, there is a templated constructor that will /// take another vector (HepLorentzVector, GenVector, ...) /// which must have the following methods: x(), y(), z(). /// class ThreeVector { public: /// construct using x, y, and z (only x is required) ThreeVector( double xin, double yin =0, double zin =0 ) : m_x(xin), m_y(yin), m_z(zin) {} ThreeVector( ) : m_x(0), m_y(0), m_z(0) {} /// templated constructor /// this is used ONLY if T is not arithmetic template ThreeVector( const T& v, typename detail::disable_if< detail::is_arithmetic::value, void >::type * = 0 ) : m_x(v.x()), m_y(v.y()), m_z(v.z()) {} /// copy constructor ThreeVector(const ThreeVector & v) : m_x(v.x()), m_y(v.y()), m_z(v.z()) {} void swap( ThreeVector & other ); //!< swap double x() const { return m_x; } //!< return x double y() const { return m_y; } //!< return y double z() const { return m_z; } //!< return z void setX(double xin) { m_x=xin; } //!< set x void setY(double yin) { m_y=yin; } //!< set y void setZ(double zin) { m_z=zin; } //!< set z void set( double x, double y, double z); //!< set x, y, and z double phi() const; //!< The azimuth angle. double theta() const; //!< The polar angle. double r() const; //!< The magnitude void setPhi(double); //!< Set phi keeping magnitude and theta constant (BaBar). void setTheta(double); //!< Set theta keeping magnitude and phi constant (BaBar). double perp2() const; //!< The transverse component squared (rho^2 in cylindrical coordinate system). double perp() const; //!< The transverse component (rho in cylindrical coordinate system). ThreeVector & operator = (const ThreeVector &); //!< make a copy bool operator == (const ThreeVector &) const; //!< equality bool operator != (const ThreeVector &) const; //!< inequality private: double m_x; double m_y; double m_z; }; } // HepMC #include "HepMC/SimpleVector.icc" #endif // HEPMC_SIMPLEVECTOR_H hepmc-2.06.09.orig/INSTALL.cmake0000644000175000017500000000653111763460036016730 0ustar sylvestresylvestre#------------------------------------------------------------- # building HepMC with cmake #------------------------------------------------------------- This package requires cmake 2.6 or later. #------------------------------------------------------------- # installing from a source code tar ball #------------------------------------------------------------- Unwind the source code tar ball in some relevant directory. Determine where the files will be installed. Create a build directory that is NOT in the source code directory tree. Make sure cmake is in your path. cd cmake -DCMAKE_INSTALL_PREFIX= \ -Dmomentum:STRING=[MEV|GEV] \ -Dlength:STRING=[MM|CM] \ (Note that files will be installed under /usr/local if you do not specify a prefix.) (Use relative or full paths for install_dir and source_code_dir) (source_code_dir is .../HepMC-2.xx.yy, not .../HepMC-2.xx.yy/src.) make (Build temporary copies of libraries and executables.) make test (Run the tests.) make install (Copy libraries, headers, executables, etc. to relevant subdirectories under .) Use relative or full paths for install_dir and source_code_dir. -Dmomentum... and -Dlength... are required. #------------------------------------------------------------- # cmake options #------------------------------------------------------------- -Dmomentum:STRING=[MEV|GEV] (required) -Dlength:STRING=[MM|CM] (required) -DCMAKE_INSTALL_PREFIX=/install/path -DCMAKE_BUILD_TYPE=Debug|Release|RelWithDebInfo|MinSizeRel -Dbuild_docs:BOOL=ON -DCMAKE_C_COMPILER=... -DCMAKE_CXX_COMPILER=... -DCMAKE_CXX_FLAGS="list_of_flags" #------------------------------------------------------------- # building documents #------------------------------------------------------------- Documents are not built or installed automatically. If you wish to build and install the documents, add -Dbuild_docs:BOOL=ON to your cmake command. Documents will then be built during the normal build. You will need to have latex in your path. #------------------------------------------------------------- # building from svn #------------------------------------------------------------- To work with a tagged branch: svn co svn+ssh://svn.cern.ch/reps/hepmc/tags/HEPMC_02_06_01 To work with the head: svn co svn+ssh://svn.cern.ch/reps/hepmc/trunk HepMC You may also download directly from the online browser http://svnweb.cern.ch/world/wsvn/hepmc/ Now continue with directions as if you unpacked a source code tarball. #------------------------------------------------------------- # building cmake #------------------------------------------------------------- cmake 2.6 or later is readily available for Linux, although you may need to install it download the cmake tar file from http://www.cmake.org/cmake/resources/software.html You may find a usable binary distribution there. If not, get the source code and proceed as below (for either MacOSX or Linux). Unwind the source code tarball. This directory is . Identify a separate build directory and a separate install directory: and . cd /bootstrap --prefix= make make install Add /bin to your path. #------------------------------------------------------------- hepmc-2.06.09.orig/configure.ac0000644000175000017500000001472211763464675017124 0ustar sylvestresylvestre# ---------------------------------------------------------------------- # This is the HepMC configuration input file # Process this file with autoconf to produce a configure script. # ---------------------------------------------------------------------- AC_PREREQ(2.59) AC_INIT([HepMC],[2.06.09],[https://savannah.cern.ch/projects/hepmc/],[HepMC]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 foreign) AC_CONFIG_SRCDIR([src/GenEvent.cc]) AC_CONFIG_HEADER([HepMC/defs.h]) # ---------------------------------------------------------------------- # shared library versioning # for various reasons, this cannot match the HepMC version # ---------------------------------------------------------------------- LIBRARY_VERSION="-version-info 4:0:0" AC_SUBST(LIBRARY_VERSION) # ---------------------------------------------------------------------- # define --enable-visual # ---------------------------------------------------------------------- AC_ARG_ENABLE(visual, AC_HELP_STRING([--enable-visual],[on by default when using Visual C++]), [case "${enableval}" in yes) build_visual="yes";; no) build_visual="no";; *) build_visual="no";; esac], [build_visual="no"]) # ---------------------------------------------------------------------- # define the default momentum and length (position) units # these MUST be declared # ---------------------------------------------------------------------- AC_ARG_WITH(momentum, AC_HELP_STRING([--with-momentum], [--with-momentum=MEV or GEV, no other values allowed]), [HEPMC_DEFAULT_MOM_UNIT=${withval}], [AC_MSG_ERROR([You MUST configure --with-momentum=XX, where XX is MEV or GEV])]) AC_SUBST(HEPMC_DEFAULT_MOM_UNIT) AC_ARG_WITH(length, AC_HELP_STRING([--with-length], [--with-length=MM or CM, no other values allowed]), [HEPMC_DEFAULT_LEN_UNIT=${withval}], [AC_MSG_ERROR([You MUST configure --with-length=YY, where YY is MM or CM])]) AC_SUBST(HEPMC_DEFAULT_LEN_UNIT) # ---------------------------------------------------------------------- # find CLHEP and/or GENSER: # these are used ONLY in the examples # ---------------------------------------------------------------------- AC_ARG_WITH(CLHEP, AC_HELP_STRING([--with-CLHEP],[--with-CLHEP=$CLHEP_DIR: CLHEP is used in the examples]), [CLHEPdir=${withval}],[CLHEPdir=" "]) AC_SUBST(CLHEPdir) AC_ARG_WITH(GENSER, AC_HELP_STRING([--with-GENSER],[--with-GENSER=$GENSER_DIR: GENSER is used in the examples]), [GENSERdir=${withval}],[GENSERdir=" "]) AC_SUBST(GENSERdir) # ---------------------------------------------------------------------- # Checks for programs. # ---------------------------------------------------------------------- case "$CXX" in cl) AC_MSG_ERROR([configure is not supported for Visual C++, use cmake instead]) ;; *) esac AC_PROG_CXX AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_F77(gfortran g77 f77) # special libtool rules for Windows - work with gcc and cygwin AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL # ---------------------------------------------------------------------- # Checks for libraries. # ---------------------------------------------------------------------- # ---------------------------------------------------------------------- # Checks for header files. # ---------------------------------------------------------------------- AC_CHECK_HEADERS([stdint.h]) # ---------------------------------------------------------------------- # Checks for typedefs, structures, and compiler characteristics. # ---------------------------------------------------------------------- AC_HEADER_STDBOOL AC_C_CONST AC_C_INLINE AC_CHECK_TYPES([ptrdiff_t]) # ---------------------------------------------------------------------- # Checks for library functions. # ---------------------------------------------------------------------- AC_HEADER_STDC # ---------------------------------------------------------------------- # OS dependent differences: # ---------------------------------------------------------------------- # copy case "$target" in *-*-win32*) COPY_P="copy -p" AC_MSG_WARN([we recommend using cmake instead of configure on Windows]) ;; *-*-darwin*) COPY_P="cp -p" AC_MSG_WARN([we recommend using cmake instead of configure on MacOSX]) ;; *) COPY_P="cp -p" esac # diff DIFF_Q="diff -q -b" AC_SUBST(COPY_P) AC_SUBST(DIFF_Q) # ---------------------------------------------------------------------- # compiler dependent differences # notice that the default is presumed to be some flavor of g++ # ---------------------------------------------------------------------- case "$CXX" in cl) AM_CXXFLAGS="-EHsc -nologo -GR -MD" AC_SUBST(AM_MAKEFLAGS) CXXFLAGS=" " AC_SUBST(CXXFLAGS) build_visual="yes" AC_MSG_ERROR([configure is not supported for Visual C++, use cmake instead]) ;; *) AM_CXXFLAGS="-ansi -pedantic -Wall" esac AC_SUBST(AM_CXXFLAGS) AM_CONDITIONAL(BUILD_VISUAL, test x$build_visual = xyes) # ---------------------------------------------------------------------- # process Makefile.in and other *.in files # ---------------------------------------------------------------------- AC_CONFIG_FILES([Makefile HepMC/Makefile doc/Makefile examples/Makefile examples/fio/Makefile examples/pythia8/Makefile fio/Makefile src/Makefile src/Units.cc test/Makefile test/testHepMC.cc test/testMass.cc test/testHepMCIteration.cc test/testMultipleCopies.cc test/testStreamIO.cc examples/GNUmakefile.example examples/fio/GNUmakefile.example examples/pythia8/config.csh examples/pythia8/config.sh examples/pythia8/GNUmakefile.example]) AC_CONFIG_FILES([test/testHepMC.sh], [chmod +x test/testHepMC.sh]) AC_CONFIG_FILES([test/testFlow.sh], [chmod +x test/testFlow.sh]) AC_CONFIG_FILES([test/testMass.sh], [chmod +x test/testMass.sh]) AC_CONFIG_FILES([test/testHepMCIteration.sh], [chmod +x test/testHepMCIteration.sh]) AC_CONFIG_FILES([test/testPolarization.sh], [chmod +x test/testPolarization.sh]) AC_CONFIG_FILES([test/testPrintBug.sh], [chmod +x test/testPrintBug.sh]) AC_CONFIG_FILES([test/testStreamIO.sh], [chmod +x test/testStreamIO.sh]) # ---------------------------------------------------------------------- # Finish up: # ---------------------------------------------------------------------- AC_OUTPUT hepmc-2.06.09.orig/cmake/0000755000175000017500000000000011763470356015701 5ustar sylvestresylvestrehepmc-2.06.09.orig/cmake/Modules/0000755000175000017500000000000011763470356017311 5ustar sylvestresylvestrehepmc-2.06.09.orig/cmake/Modules/HepMCUseCpack.cmake0000644000175000017500000001006511663022435022656 0ustar sylvestresylvestre# define the environment for cpack # # # Runs compiler with "-dumpversion" and parses major/minor # version with a regex. # FUNCTION(_My_COMPILER_DUMPVERSION _OUTPUT_VERSION) EXEC_PROGRAM(${CMAKE_CXX_COMPILER} ARGS ${CMAKE_CXX_COMPILER_ARG1} -dumpversion OUTPUT_VARIABLE _my_COMPILER_VERSION ) set( COMPILER_VERSION ${_my_COMPILER_VERSION} PARENT_SCOPE) STRING(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1\\2" _my_COMPILER_VERSION ${_my_COMPILER_VERSION}) SET(${_OUTPUT_VERSION} ${_my_COMPILER_VERSION} PARENT_SCOPE) ENDFUNCTION() # # End functions/macros # #------------------------------------------------------------------------------- macro( hepmc_find_compiler ) if (My_COMPILER) SET (CPack_COMPILER_STRING ${My_COMPILER}) message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] " "using user-specified My_COMPILER = ${CPack_COMPILER_STRING}") else(My_COMPILER) # Attempt to guess the compiler suffix # NOTE: this is not perfect yet, if you experience any issues # please report them and use the My_COMPILER variable # to work around the problems. if (MSVC90) SET (CPack_COMPILER_STRING "-vc90") elseif (MSVC80) SET (CPack_COMPILER_STRING "-vc80") elseif (MSVC71) SET (CPack_COMPILER_STRING "-vc71") elseif (MSVC70) # Good luck! SET (CPack_COMPILER_STRING "-vc7") # yes, this is correct elseif (MSVC60) # Good luck! SET (CPack_COMPILER_STRING "-vc6") # yes, this is correct elseif (BORLAND) SET (CPack_COMPILER_STRING "-bcb") elseif("${CMAKE_CXX_COMPILER}" MATCHES "icl" OR "${CMAKE_CXX_COMPILER}" MATCHES "icpc") if(WIN32) set (CPack_COMPILER_STRING "-iw") else() set (CPack_COMPILER_STRING "-il") endif() elseif (MINGW) _My_COMPILER_DUMPVERSION(CPack_COMPILER_STRING_VERSION) SET (CPack_COMPILER_STRING "-mgw${CPack_COMPILER_STRING_VERSION}") elseif (UNIX) if (CMAKE_COMPILER_IS_GNUCXX) _My_COMPILER_DUMPVERSION(CPack_COMPILER_STRING_VERSION) # Determine which version of GCC we have. if(APPLE) SET (CPack_COMPILER_STRING "-xgcc${CPack_COMPILER_STRING_VERSION}") else() SET (CPack_COMPILER_STRING "-gcc${CPack_COMPILER_STRING_VERSION}") endif() endif (CMAKE_COMPILER_IS_GNUCXX) endif() message(STATUS "Using compiler ${CPack_COMPILER_STRING}") endif(My_COMPILER) endmacro( hepmc_find_compiler ) # note that hepmc_parse_version is used to define VERSION_MAJOR, etc. set( CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR} ) set( CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR} ) set( CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH} ) set( CPACK_INCLUDE_TOPLEVEL_DIRECTORY 0 ) set( CPACK_GENERATOR TGZ ) hepmc_find_compiler() if(${CMAKE_SYSTEM_NAME} MATCHES "Linux" ) set(SLTYPE "slc") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" ) set(SLTYPE "mac106") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Windows" ) set(SLTYPE "winxp") endif () message(STATUS "CMAKE_HOST_SYSTEM_VERSION: ${CMAKE_HOST_SYSTEM_VERSION}") message(STATUS "CMAKE_SYSTEM_VERSION: ${CMAKE_SYSTEM_VERSION}") if ( NOT CPack_COMPILER_STRING ) set( PACKAGE_BASENAME ${CMAKE_SYSTEM_PROCESSOR}-${SLTYPE} ) else () set( PACKAGE_BASENAME ${CMAKE_SYSTEM_PROCESSOR}-${SLTYPE}${CPack_COMPILER_STRING} ) endif () if ( NOT qualifier ) set( CPACK_SYSTEM_NAME ${PACKAGE_BASENAME} ) else () set( CPACK_SYSTEM_NAME ${PACKAGE_BASENAME}-${qualifier} ) endif () # check for extra qualifiers if( NOT CMAKE_BUILD_TYPE ) SET( CMAKE_BUILD_TYPE_TOLOWER default ) else() STRING(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_TOLOWER) if( ${CMAKE_BUILD_TYPE_TOLOWER} MATCHES "debug") set(CPACK_SYSTEM_NAME ${CPACK_SYSTEM_NAME}-debug ) elseif( ${CMAKE_BUILD_TYPE_TOLOWER} MATCHES "release") set(CPACK_SYSTEM_NAME ${CPACK_SYSTEM_NAME}-opt ) elseif( ${CMAKE_BUILD_TYPE_TOLOWER} MATCHES "minsizerel") set(CPACK_SYSTEM_NAME ${CPACK_SYSTEM_NAME}-prof ) endif() endif() message(STATUS "CPACK_SYSTEM_NAME = ${CPACK_SYSTEM_NAME}" ) include(CPack) hepmc-2.06.09.orig/cmake/Modules/HepMCVariables.cmake0000644000175000017500000000635311716306201023070 0ustar sylvestresylvestre# # hepmc_set_compiler_flags() # sets the default compiler flags # calls hepmc_autoconf_variables # # hepmc_autoconf_variables() defines global variables # # some of the examples use fortran, # so we need this for the example makefile macro( _hepmc_fortran_compiler ) EXEC_PROGRAM(${CMAKE_CXX_COMPILER} ARGS ${CMAKE_CXX_COMPILER_ARG1} -dumpversion OUTPUT_VARIABLE _my_COMPILER_VERSION ) STRING(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1" _my_COMPILER_BASE_VERSION ${_my_COMPILER_VERSION}) message(STATUS "compiler version: ${_my_COMPILER_VERSION}") #message(STATUS "compiler base version: ${_my_COMPILER_BASE_VERSION}") set(F77 "f77") if(CMAKE_COMPILER_IS_GNUCXX) if( ${_my_COMPILER_BASE_VERSION} MATCHES "3" ) set(F77 "g77") else() set(F77 "gfortran") endif() endif(CMAKE_COMPILER_IS_GNUCXX) #message(STATUS "F77: ${F77}") endmacro( _hepmc_fortran_compiler ) macro( hepmc_autoconf_variables ) # these variables are used by -config.in # typical values from autoconf: # AM_CXXFLAGS = -O -ansi -pedantic -Wall -D_GNU_SOURCE # CXXFLAGS = -g -O2 # CXX = g++ # CXXCPP = g++ -E # CPPFLAGS = # CXXLD = $(CXX) # AM_LDFLAGS = # LDFLAGS = # LIBS = # automake/autoconf variables set( prefix ${CMAKE_INSTALL_PREFIX} ) set( exec_prefix "\${prefix}" ) set( includedir "\${prefix}/include" ) set( configure_input "Generated by cmake" ) set( CXX ${CMAKE_BASE_NAME} ) set( CXXCPP "${CXX} -E" ) if( ${CMAKE_BUILD_TYPE} MATCHES "Debug" ) set( CXXFLAGS ${CMAKE_CXX_FLAGS_DEBUG} ) elseif( ${CMAKE_BUILD_TYPE} MATCHES "Release" ) set( CXXFLAGS ${CMAKE_CXX_FLAGS_RELEASE} ) elseif( ${CMAKE_BUILD_TYPE} MATCHES "RelWithDebInfo" ) set( CXXFLAGS ${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ) elseif( ${CMAKE_BUILD_TYPE} MATCHES "MinSizeRel" ) set( CXXFLAGS ${CMAKE_CXX_FLAGS_MINSIZEREL} ) endif() ##message( STATUS "build type ${CMAKE_BUILD_TYPE} has ${CXXFLAGS}") set( AM_CXXFLAGS ${CMAKE_CXX_FLAGS} ) set( LDFLAGS ${CMAKE_MODULE_LINKER_FLAGS} ) set( LIBS "" ) set( DIFF_Q "diff -q -b" ) if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" ) message(STATUS "don't try to figure out fortran compiler for Windows") else() _hepmc_fortran_compiler() endif() endmacro( hepmc_autoconf_variables ) macro( hepmc_set_compiler_flags ) ##message(STATUS "incoming cmake build type is ${CMAKE_BUILD_TYPE}") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "" FORCE) endif() message(STATUS "cmake build type is ${CMAKE_BUILD_TYPE}") if( CMAKE_COMPILER_IS_GNUCC ) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O -ansi -pedantic -Wall -D_GNU_SOURCE") endif(CMAKE_COMPILER_IS_GNUCC) if(CMAKE_COMPILER_IS_GNUCXX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O -ansi -pedantic -Wall -D_GNU_SOURCE") endif(CMAKE_COMPILER_IS_GNUCXX) if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" ) if( ${CMAKE_BASE_NAME} MATCHES "cl" ) set(CMAKE_C_FLAGS "/EHsc /nologo /GR /MD") set(CMAKE_CXX_FLAGS "/EHsc /nologo /GR /MD") endif() endif() hepmc_autoconf_variables() message( STATUS "compiling with ${CMAKE_BASE_NAME} ${CMAKE_CXX_FLAGS} ${CXXFLAGS}") endmacro( hepmc_set_compiler_flags ) hepmc-2.06.09.orig/INSTALL0000644000175000017500000000112611763460036015644 0ustar sylvestresylvestre#------------------------------------------------------------- # installing HepMC #------------------------------------------------------------- Although it may be possible to build the HepMC libraries from this directory, we recommend that you create a separate build directory and work from there. Although it may be possible to build with autotools, we strongly recommend building with cmake. Cmake is preferred for MacOSX and required for Windows. Cmake is also required if you are using clang, or any non-gcc compiler. Please see either INSTALL.cmake or INSTALL.autotools for directions. hepmc-2.06.09.orig/ltmain.sh0000644000175000017500000060342611307507571016446 0ustar sylvestresylvestre# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. basename="s,^.*/,,g" # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: progname=`echo "$progpath" | $SED $basename` modename="$progname" # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 PROGRAM=ltmain.sh PACKAGE=libtool VERSION=1.5.22 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi # Check that we have a working $echo. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE fi # Global variables. mode=$default_mode nonopt= prev= prevopt= run= show="$echo" show_help= execute_dlfiles= duplicate_deps=no preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 ##################################### # Shell function definitions: # This seems to be the best place for them # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $mkdir "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || { $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 exit $EXIT_FAILURE } fi $echo "X$my_tmpdir" | $Xsed } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | \ $SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $echo $win32_libid_type } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case "$@ " in " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then $echo "$modename: unable to infer tagged configuration" $echo "$modename: specify a tag with \`--tag'" 1>&2 exit $EXIT_FAILURE # else # $echo "$modename: using $tagname tagged configuration" fi ;; esac fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 exit $EXIT_FAILURE fi } # func_extract_archives gentop oldlib ... func_extract_archives () { my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" my_status="" $show "${rm}r $my_gentop" $run ${rm}r "$my_gentop" $show "$mkdir $my_gentop" $run $mkdir "$my_gentop" my_status=$? if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then exit $my_status fi for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) extracted_serial=`expr $extracted_serial + 1` my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" $show "$mkdir $my_xdir" $run $mkdir "$my_xdir" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then exit $exit_status fi case $host in *-darwin*) $show "Extracting $my_xabs" # Do not bother doing anything if just a dry run if test -z "$run"; then darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` if test -n "$darwin_arches"; then darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= $show "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we have a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` lipo -create -output "$darwin_file" $darwin_files done # $darwin_filelist ${rm}r unfat-$$ cd "$darwin_orig_dir" else cd "$darwin_orig_dir" func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches fi # $run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # End of Shell function definitions ##################################### # Darwin sucks eval std_shrext=\"$shrext_cmds\" disable_libs=no # Parse our command line options once, thoroughly. while test "$#" -gt 0 do arg="$1" shift case $arg in -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in execute_dlfiles) execute_dlfiles="$execute_dlfiles $arg" ;; tag) tagname="$arg" preserve_args="${preserve_args}=$arg" # Check whether tagname contains only valid characters case $tagname in *[!-_A-Za-z0-9,/]*) $echo "$progname: invalid tag name: $tagname" 1>&2 exit $EXIT_FAILURE ;; esac case $tagname in CC) # Don't test for the "default" C tag, as we know, it's there, but # not specially marked. ;; *) if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then taglist="$taglist $tagname" # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" else $echo "$progname: ignoring unknown tag $tagname" 1>&2 fi ;; esac ;; *) eval "$prev=\$arg" ;; esac prev= prevopt= continue fi # Have we seen a non-optional argument yet? case $arg in --help) show_help=yes ;; --version) $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP" $echo $echo "Copyright (C) 2005 Free Software Foundation, Inc." $echo "This is free software; see the source for copying conditions. There is NO" $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." exit $? ;; --config) ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath # Now print the configurations for the tags. for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done exit $? ;; --debug) $echo "$progname: enabling shell trace mode" set -x preserve_args="$preserve_args $arg" ;; --dry-run | -n) run=: ;; --features) $echo "host: $host" if test "$build_libtool_libs" = yes; then $echo "enable shared libraries" else $echo "disable shared libraries" fi if test "$build_old_libs" = yes; then $echo "enable static libraries" else $echo "disable static libraries" fi exit $? ;; --finish) mode="finish" ;; --mode) prevopt="--mode" prev=mode ;; --mode=*) mode="$optarg" ;; --preserve-dup-deps) duplicate_deps="yes" ;; --quiet | --silent) show=: preserve_args="$preserve_args $arg" ;; --tag) prevopt="--tag" prev=tag preserve_args="$preserve_args --tag" ;; --tag=*) set tag "$optarg" ${1+"$@"} shift prev=tag preserve_args="$preserve_args --tag" ;; -dlopen) prevopt="-dlopen" prev=execute_dlfiles ;; -*) $echo "$modename: unrecognized option \`$arg'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *) nonopt="$arg" break ;; esac done if test -n "$prevopt"; then $echo "$modename: option \`$prevopt' requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi case $disable_libs in no) ;; shared) build_libtool_libs=no build_old_libs=yes ;; static) build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` ;; esac # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= if test -z "$show_help"; then # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link for arg do case $arg in -c) mode=compile break ;; esac done ;; *db | *dbx | *strace | *truss) mode=execute ;; *install*|cp|mv) mode=install ;; *rm) mode=uninstall ;; *) # If we have no mode, but dlfiles were specified, then do execute mode. test -n "$execute_dlfiles" && mode=execute # Just use the default operation mode. if test -z "$mode"; then if test -n "$nonopt"; then $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 else $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 fi fi ;; esac fi # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then $echo "$modename: unrecognized option \`-dlopen'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$modename --help --mode=$mode' for more information." # These modes are in order of execution frequency so that they run quickly. case $mode in # libtool compile mode compile) modename="$modename: compile" # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) if test -n "$libobj" ; then $echo "$modename: you cannot specify \`-o' more than once" 1>&2 exit $EXIT_FAILURE fi arg_mode=target continue ;; -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac lastarg="$lastarg $arg" done IFS="$save_ifs" lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; * ) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, and some SunOS ksh mistreat backslash-escaping # in scan sets (worked around with variable expansion), # and furthermore cannot handle '|' '&' '(' ')' in scan sets # at all, so we specify them separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; esac base_compile="$base_compile $lastarg" done # for arg case $arg_mode in arg) $echo "$modename: you must specify an argument for -Xcompile" exit $EXIT_FAILURE ;; target) $echo "$modename: you must specify a target with \`-o'" 1>&2 exit $EXIT_FAILURE ;; *) # Get the name of the library object. [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; *.ads) xform=ads ;; *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; *.f90) xform=f90 ;; *.for) xform=for ;; *.java) xform=java ;; *.obj) xform=obj ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` case $libobj in *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; *) $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 exit $EXIT_FAILURE ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -static) build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` case $qlibobj in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qlibobj="\"$qlibobj\"" ;; esac test "X$libobj" != "X$qlibobj" \ && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then xdir= else xdir=$xdir/ fi lobj=${xdir}$objdir/$objname if test -z "$base_compile"; then $echo "$modename: you must specify a compilation command" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi $run $rm $removelist trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" removelist="$removelist $output_obj $lockfile" trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $echo "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi $echo "$srcfile" > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` case $qsrcfile in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qsrcfile="\"$qsrcfile\"" ;; esac $run $rm "$libobj" "${libobj}T" # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then $show "$mv $output_obj $lobj" if $run $mv $output_obj $lobj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the PIC object to the libtool object file. test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then $show "$mv $output_obj $obj" if $run $mv $output_obj $obj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the non-PIC object the libtool object file. # Only append if the libtool object file exists. test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ;; *) qarg=$arg ;; esac libtool_args="$libtool_args $qarg" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) compile_command="$compile_command @OUTPUT@" finalize_command="$finalize_command @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. compile_command="$compile_command @SYMFILE@" finalize_command="$finalize_command @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" if test ! -f "$arg"; then $echo "$modename: symbol file \`$arg' does not exist" exit $EXIT_FAILURE fi prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat $save_arg` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi done else $echo "$modename: link input file \`$save_arg' does not exist" exit $EXIT_FAILURE fi arg=$save_arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= compile_command="$compile_command $wl$qarg" finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; shrext) shrext_cmds="$arg" prev= continue ;; darwin_framework|darwin_framework_skip) test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" prev= continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 continue ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: more than one -exported-symbols argument is not allowed" exit $EXIT_FAILURE fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework|-arch|-isysroot) case " $CC " in *" ${arg} ${1} "* | *" ${arg} ${1} "*) prev=darwin_framework_skip ;; *) compiler_flags="$compiler_flags $arg" prev=darwin_framework ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;; esac continue ;; -L*) dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" notinst_path="$notinst_path $dir" fi dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs -framework System" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. -model) compile_command="$compile_command $arg" compiler_flags="$compiler_flags $arg" finalize_command="$finalize_command $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -module) module=yes continue ;; # -64, -mips[0-9] enable 64-bit mode on the SGI compiler # -r[0-9][0-9]* specifies the processor on the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler # +DA*, +DD* enable 64-bit mode on the HP compiler # -q* pass through compiler args for the IBM compiler # -m* pass through architecture-specific compiler args for GCC # -m*, -t[45]*, -txscale* pass through architecture-specific # compiler args for GCC # -pg pass through profiling flag for GCC # @file GCC response files -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \ -t[45]*|-txscale*|@*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" compiler_flags="$compiler_flags $arg" continue ;; -shrext) prev=shrext continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) # The PATH hackery in wrapper scripts is required on Windows # in order for the loader to find any dlls it needs. $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -Wc,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Wl,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $wl$flag" linker_flags="$linker_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi done # argument parsing loop if test -n "$prev"; then $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi oldlibs= # calculate the name of the file, without its directory outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` if test "X$output_objdir" = "X$output"; then output_objdir="$objdir" else output_objdir="$output_objdir/$objdir" fi # Create the object directory. if test ! -d "$output_objdir"; then $show "$mkdir $output_objdir" $run $mkdir $output_objdir exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then exit $exit_status fi fi # Determine the type of output case $output in "") $echo "$modename: you must specify an output file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac case $host in *cygwin* | *mingw* | *pw32*) # don't eliminate duplications in $postdeps and $predeps duplicate_compiler_generated_deps=yes ;; *) duplicate_compiler_generated_deps=$duplicate_deps ;; esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if test "X$duplicate_deps" = "Xyes" ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries case $linkmode in lib) passes="conv link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 exit $EXIT_FAILURE ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then library_names= old_library= case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; *) $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` if eval $echo \"$deplib\" 2>/dev/null \ | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because the file extensions .$libext of this argument makes me believe" $echo "*** that it is just a static archive that I should not used here." else $echo $echo "*** Warning: Linking the shared library $output against the" $echo "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 exit $EXIT_FAILURE fi # Check to see that this really is a libtool archive. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." dlname= dlopen= dlpreopen= libdir= library_names= old_library= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then $echo "$modename: \`$lib' is not a convenience library" 1>&2 exit $EXIT_FAILURE fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 abs_ladir="$ladir" fi ;; esac laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then $echo "$modename: warning: library \`$lib' was moved." 1>&2 dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; *) temp_rpath="$temp_rpath $absdir" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes ; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi # This is a shared library # Warn about portability, can't link against -module's on # some systems (darwin) if test "$shouldnotlink" = yes && test "$pass" = link ; then $echo if test "$linkmode" = prog; then $echo "*** Warning: Linking the executable $output against the loadable module" else $echo "*** Warning: Linking the shared library $output against the loadable module" fi $echo "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names realname="$2" shift; shift libname=`eval \\$echo \"$libname_spec\"` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw*) major=`expr $current - $age` versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" soname=`$echo $soroot | ${SED} -e 's/^.*\///'` newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else $show "extracting exported symbol list from \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$extract_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else $show "generating import library for \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$old_archive_from_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a module then we can not link against # it, someone is ignoring the new warnings I added if /usr/bin/file -L $add 2> /dev/null | $EGREP ": [^:]* bundle" >/dev/null ; then $echo "** Warning, lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $echo $echo "** And there doesn't seem to be a static archive available" $echo "** The link will probably fail, sorry" else add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then $echo "$modename: configuration error: unsupported hardcode properties" exit $EXIT_FAILURE fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && \ test "$hardcode_minus_L" != yes && \ test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $echo $echo "*** Warning: This system can not link to static lib archive $lib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $echo "*** But as you try to build a module library, libtool will still create " $echo "*** a static module, that should work as long as the dlopening application" $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do case $deplib in -L*) path="$deplib" ;; *.la) dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$deplib" && dir="." # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" fi ;; esac if grep "^installed=no" $deplib > /dev/null; then path="$absdir/$objdir" else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi if test "$absdir" != "$libdir"; then $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 fi path="$absdir" fi depdepl= case $host in *-*-darwin*) # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" fi # do not add paths which are already there case " $newlib_search_path " in *" $path "*) ;; *) newlib_search_path="$newlib_search_path $path";; esac fi path="" ;; *) path="-L$path" ;; esac ;; -l*) case $host in *-*-darwin*) # Again, we only want to link against shared libraries eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` for tmp in $newlib_search_path ; do if test -f "$tmp/lib$tmp_libs.dylib" ; then eval depdepl="$tmp/lib$tmp_libs.dylib" break fi done path="" ;; *) continue ;; esac ;; *) continue ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac case " $deplibs " in *" $depdepl "*) ;; *) deplibs="$depdepl $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 fi if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 fi # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) if test "$module" = no; then $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 exit $EXIT_FAILURE else $echo $echo "*** Warning: Linking the shared library $output against the non-libtool" $echo "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi if test "$dlself" != no; then $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 fi set dummy $rpath if test "$#" -gt 2; then $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 fi install_libdir="$2" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 fi else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 IFS="$save_ifs" if test -n "$8"; then $echo "$modename: too many parameters to \`-version-info'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$2" number_minor="$3" number_revision="$4" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) current=`expr $number_major + $number_minor - 1` age="$number_minor" revision="$number_minor" ;; esac ;; no) current="$2" revision="$3" age="$4" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac if test "$age" -gt "$current"; then $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header major=.`expr $current - $age` versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current"; ;; irix | nonstopux) major=`expr $current - $age + 1` case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do iface=`expr $revision - $loop` loop=`expr $loop - 1` verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) major=.`expr $current - $age` versuffix="$major.$age.$revision" ;; osf) major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do iface=`expr $current - $loop` loop=`expr $loop - 1` verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. major=`expr $current - $age` versuffix="-$major" ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$echo "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done if test -n "$removelist"; then $show "${rm}r $removelist" $run ${rm}r $removelist fi fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. # for path in $notinst_path; do # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` # done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs -framework System" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $rm conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null \ | grep " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for file magic test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a file magic. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval \\$echo \"$libname_spec\"` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval $echo \"$potent_lib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for regex pattern test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a regex pattern. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` done fi if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not supported in this platform." else $echo "*** Warning: inter-library dependencies are not known to be supported." fi $echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $echo $echo "*** Warning: libtool could not satisfy all declared inter-library" $echo "*** dependencies of module $libname. Therefore, libtool will create" $echo "*** a static module, that should work as long as the dlopening" $echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $echo "*** The inter-library dependencies that have been dropped here will be" $echo "*** automatically added whenever a program is linked with this library" $echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $echo $echo "*** Since this library must not contain undefined symbols," $echo "*** because either the platform does not support them or" $echo "*** it was explicitly requested with -no-undefined," $echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names realname="$2" shift; shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" if len=`expr "X$cmd" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then $show "$cmd" $run eval "$cmd" || exit $? skipped_export=false else # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex"; then $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' $show "$mv \"${export_symbols}T\" \"$export_symbols\"" $run eval '$mv "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise. $echo "creating reloadable object files..." # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output output_la=`$echo "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= delfiles= last_robj= k=1 output=$output_objdir/$output_la-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext k=`expr $k + 1` output=$output_objdir/$output_la-${k}.$objext objlist=$obj len=1 fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if ${skipped_export-false}; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols libobjs=$output # Append the command to create the export file. eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi # Set up a command to remove the reloadable object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi # Append the command to remove the reloadable object files # to the just-reset $cmds. eval cmds=\"\$cmds~\$rm $delfiles\" fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then $show "${rm}r $gentop" $run ${rm}r "$gentop" fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 fi case $output in *.lo) if test -n "$objs$old_deplibs"; then $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 exit $EXIT_FAILURE fi libobj="$output" obj=`$echo "X$output" | $Xsed -e "$lo2o"` ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $run $rm $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $run eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; esac if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 fi if test "$preload" = yes; then if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && test "$dlopen_self_static" = unknown; then $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." fi fi case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac case $host in *darwin*) # Don't allow lazy linking, it breaks C++ global constructors if test "$tagname" = CXX ; then compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" fi ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done compile_deplibs="$new_libs" compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 fi fi if test -n "$dlsyms"; then case $dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${outputname}.nm" $show "$rm $nlist ${nlist}S ${nlist}T" $run $rm "$nlist" "${nlist}S" "${nlist}T" # Parse the name list into a source file. $show "creating $output_objdir/$dlsyms" test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ #ifdef __cplusplus extern \"C\" { #endif /* Prevent the only kind of declaration conflicts we can make. */ #define lt_preloaded_symbols some_other_symbol /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then $show "generating symbol list for \`$output'" test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for arg in $progfiles; do $show "extracting global C symbols from \`$arg'" $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi if test -n "$export_symbols_regex"; then $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $run $rm $export_symbols $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac else $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac fi fi for arg in $dlprefiles; do $show "extracting global C symbols from \`$arg'" name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` $run eval '$echo ": $name " >> "$nlist"' $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -z "$run"; then # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $mv "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if grep -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else grep -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' else $echo '/* NONE */' >> "$output_objdir/$dlsyms" fi $echo >> "$output_objdir/$dlsyms" "\ #undef lt_preloaded_symbols #if defined (__STDC__) && __STDC__ # define lt_ptr void * #else # define lt_ptr char * # define const #endif /* The mapping between symbol names and symbols. */ " case $host in *cygwin* | *mingw* ) $echo >> "$output_objdir/$dlsyms" "\ /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs */ struct { " ;; * ) $echo >> "$output_objdir/$dlsyms" "\ const struct { " ;; esac $echo >> "$output_objdir/$dlsyms" "\ const char *name; lt_ptr address; } lt_preloaded_symbols[] = {\ " eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" $echo >> "$output_objdir/$dlsyms" "\ {0, (lt_ptr) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " fi pic_flag_for_symtable= case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; esac;; *-*-hpux*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag";; esac esac # Now compile the dynamic symbol file. $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? # Clean up the generated files. $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" # Transform the symbol file into the correct name. case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` else compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` fi ;; * ) compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ;; esac ;; *) $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 exit $EXIT_FAILURE ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. $show "$link_command" $run eval "$link_command" exit_status=$? # Delete the generated files. if test -n "$dlsyms"; then $show "$rm $output_objdir/${outputname}S.${objext}" $run $rm "$output_objdir/${outputname}S.${objext}" fi exit $exit_status fi if test -n "$shlibpath_var"; then # We should set the shlibpath_var rpath= for dir in $temp_rpath; do case $dir in [\\/]* | [A-Za-z]:[\\/]*) # Absolute path. rpath="$rpath$dir:" ;; *) # Relative path: add a thisdir entry. rpath="$rpath\$thisdir/$dir:" ;; esac done temp_rpath="$rpath" fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $run $rm $output # Link the executable and exit $show "$link_command" $run eval "$link_command" || exit $? exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 $echo "$modename: \`$output' will be relinked during installation" 1>&2 else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname $show "$link_command" $run eval "$link_command" || exit $? # Now create the wrapper script. $show "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` fi # Quote $echo for shipping. if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if our run command is non-null. if test -z "$run"; then # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) output_name=`basename $output` output_path=`dirname $output` cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 cat > $cwrappersource <> $cwrappersource<<"EOF" #include #include #include #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) /* -DDEBUG is fairly common in CFLAGS. */ #undef DEBUG #if defined DEBUGWRAPPER # define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) #else # define DEBUG(format, ...) #endif const char *program_name = NULL; void * xmalloc (size_t num); char * xstrdup (const char *string); const char * base_name (const char *name); char * find_executable(const char *wrapper); int check_executable(const char *path); char * strendzap(char *str, const char *pat); void lt_fatal (const char *message, ...); int main (int argc, char *argv[]) { char **newargz; int i; program_name = (char *) xstrdup (base_name (argv[0])); DEBUG("(main) argv[0] : %s\n",argv[0]); DEBUG("(main) program_name : %s\n",program_name); newargz = XMALLOC(char *, argc+2); EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" newargz[1] = find_executable(argv[0]); if (newargz[1] == NULL) lt_fatal("Couldn't find %s", argv[0]); DEBUG("(main) found exe at : %s\n",newargz[1]); /* we know the script has the same name, without the .exe */ /* so make sure newargz[1] doesn't end in .exe */ strendzap(newargz[1],".exe"); for (i = 1; i < argc; i++) newargz[i+1] = xstrdup(argv[i]); newargz[argc+1] = NULL; for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" return 127; } void * xmalloc (size_t num) { void * p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL ; } const char * base_name (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha ((unsigned char)name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return base; } int check_executable(const char * path) { struct stat st; DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); if ((!path) || (!*path)) return 0; if ((stat (path, &st) >= 0) && ( /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ #if defined (S_IXOTH) ((st.st_mode & S_IXOTH) == S_IXOTH) || #endif #if defined (S_IXGRP) ((st.st_mode & S_IXGRP) == S_IXGRP) || #endif ((st.st_mode & S_IXUSR) == S_IXUSR)) ) return 1; else return 0; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise */ char * find_executable (const char* wrapper) { int has_slash = 0; const char* p; const char* p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char* concat_name; DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char* path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char* q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR(*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); return NULL; } char * strendzap(char *str, const char *pat) { size_t len, patlen; assert(str != NULL); assert(pat != NULL); len = strlen(str); patlen = strlen(pat); if (patlen <= len) { str += len - patlen; if (strcmp(str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char * mode, const char * message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } EOF # we should really use a build-platform specific compiler # here, but OTOH, the wrappers (shell script and this C one) # are only useful if you want to execute the "real" binary. # Since the "real" binary is built for $host, then this # wrapper might as well be built for $host, too. $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource ;; esac $rm $output trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 $echo > $output "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variable: notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$echo are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then echo=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then # Yippee, \$echo works! : else # Restart under the correct shell, and then maybe \$echo will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $echo >> $output "\ # Find the directory that this script lives in. thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $echo >> $output "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || \\ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $mkdir \"\$progdir\" else $rm \"\$progdir/\$file\" fi" $echo >> $output "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $echo \"\$relink_command_output\" >&2 $rm \"\$progdir/\$file\" exit $EXIT_FAILURE fi fi $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $rm \"\$progdir/\$program\"; $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } $rm \"\$progdir/\$file\" fi" else $echo >> $output "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $echo >> $output "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $echo >> $output "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $echo >> $output "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $echo >> $output "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $echo >> $output "\ exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $echo >> $output "\ \$echo \"\$0: cannot exec \$program \$*\" exit $EXIT_FAILURE fi else # The program doesn't exist. \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE fi fi\ " chmod +x $output fi exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $addlibs oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do $echo "X$obj" | $Xsed -e 's%^.*/%%' done | sort | sort -uc >/dev/null 2>&1); then : else $echo "copying selected object files to avoid basename conflicts..." if test -z "$gentop"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$gentop"; then exit $exit_status fi fi save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase counter=`expr $counter + 1` case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" $run ln "$obj" "$gentop/$newobj" || $run cp "$obj" "$gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts $echo "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done for obj in $save_oldobjs do oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do eval cmd=\"$cmd\" IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$generated"; then $show "${rm}r$generated" $run ${rm}r$generated fi # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. if test -z "$run"; then for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlfiles="$newdlfiles $libdir/$name" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlprefiles="$newdlprefiles $libdir/$name" done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $rm $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $echo > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $echo >> $output "\ relink_command=\"$relink_command\"" fi done fi # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? ;; esac exit $EXIT_SUCCESS ;; # libtool install mode install) modename="$modename: install" # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $echo "X$nonopt" | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$arg " arg="$1" shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog$arg" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) case " $install_prog " in *[\\\ /]cp\ *) ;; *) prev=$arg ;; esac ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog $arg" done if test -z "$install_prog"; then $echo "$modename: you must specify an install program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -n "$prev"; then $echo "$modename: the \`$prev' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -z "$files"; then if test -z "$dest"; then $echo "$modename: no file or destination specified" 1>&2 else $echo "$modename: you must specify a destination" 1>&2 fi $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Strip any trailing slash from the destination. dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` test "X$destdir" = "X$dest" && destdir=. destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` # Not a directory, so check to see that there is only one file specified. set dummy $files if test "$#" -gt 2; then $echo "$modename: \`$dest' is not a directory" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi library_names= old_library= relink_command= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ test "X$dir" = "X$file/" && dir= dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. if test "$inst_prefix_dir" = "$destdir"; then $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 exit $EXIT_FAILURE fi if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` else relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` fi $echo "$modename: warning: relinking \`$file'" 1>&2 $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 exit $EXIT_FAILURE fi fi # See the names of the shared library. set dummy $library_names if test -n "$2"; then realname="$2" shift shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. $show "$install_prog $dir/$srcname $destdir/$realname" $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? if test -n "$stripme" && test -n "$striplib"; then $show "$striplib $destdir/$realname" $run eval "$striplib $destdir/$realname" || exit $? fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do if test "$linkname" != "$realname"; then $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" fi done fi # Do each command in the postinstall commands. lib="$destdir/$realname" cmds=$postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" fi # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` ;; *.$objext) staticdest="$destfile" destfile= ;; *) $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac # Install the libtool object if requested. if test -n "$destfile"; then $show "$install_prog $file $destfile" $run eval "$install_prog $file $destfile" || exit $? fi # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` $show "$install_prog $staticobj $staticdest" $run eval "$install_prog \$staticobj \$staticdest" || exit $? fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then file=`$echo $file|${SED} 's,.exe$,,'` stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin*|*mingw*) wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` ;; *) wrapper=$file ;; esac if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then notinst_deplibs= relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac # Check the variables that should have been set. if test -z "$notinst_deplibs"; then $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 exit $EXIT_FAILURE fi finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then # If there is no directory component, then add one. case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac fi libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 finalize=no fi done relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac outputname= if test "$fast_install" = no && test -n "$relink_command"; then if test "$finalize" = yes && test -z "$run"; then tmpdir=`func_mktempdir` file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ${rm}r "$tmpdir" continue fi file="$outputname" else $echo "$modename: warning: cannot relink \`$file'" 1>&2 fi else # Install the binary that we compiled earlier. file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` ;; esac ;; esac $show "$install_prog$stripme $file $destfile" $run eval "$install_prog\$stripme \$file \$destfile" || exit $? test -n "$outputname" && ${rm}r "$tmpdir" ;; esac done for file in $staticlibs; do name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` # Set up the ranlib parameters. oldlib="$destdir/$name" $show "$install_prog $file $oldlib" $run eval "$install_prog \$file \$oldlib" || exit $? if test -n "$stripme" && test -n "$old_striplib"; then $show "$old_striplib $oldlib" $run eval "$old_striplib $oldlib" || exit $? fi # Do each command in the postinstall commands. cmds=$old_postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$future_libdirs"; then $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi if test -n "$current_libdirs"; then # Maybe just do a dry run. test -n "$run" && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi ;; # libtool finish mode finish) modename="$modename: finish" libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. cmds=$finish_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || admincmds="$admincmds $cmd" done IFS="$save_ifs" fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $run eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. test "$show" = : && exit $EXIT_SUCCESS $echo "X----------------------------------------------------------------------" | $Xsed $echo "Libraries have been installed in:" for libdir in $libdirs; do $echo " $libdir" done $echo $echo "If you ever happen to want to link against installed libraries" $echo "in a given directory, LIBDIR, you must either use libtool, and" $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" $echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" $echo " during execution" fi if test -n "$runpath_var"; then $echo " - add LIBDIR to the \`$runpath_var' environment variable" $echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $echo " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $echo " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $echo $echo "See any operating system documentation about shared libraries for" $echo "more information, such as the ld(1) and ld.so(8) manual pages." $echo "X----------------------------------------------------------------------" | $Xsed exit $EXIT_SUCCESS ;; # libtool execute mode execute) modename="$modename: execute" # The first argument is the command name. cmd="$nonopt" if test -z "$cmd"; then $echo "$modename: you must specify a COMMAND" 1>&2 $echo "$help" exit $EXIT_FAILURE fi # Handle -dlopen flags immediately. for file in $execute_dlfiles; do if test ! -f "$file"; then $echo "$modename: \`$file' is not a file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi dir= case $file in *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Read the libtool library. dlname= library_names= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" continue fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 exit $EXIT_FAILURE fi ;; *.lo) # Just add the directory containing the .lo file. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. ;; *) $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` args="$args \"$file\"" done if test -z "$run"; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" $echo "export $shlibpath_var" fi $echo "$cmd$args" exit $EXIT_SUCCESS fi ;; # libtool clean and uninstall mode clean | uninstall) modename="$modename: $mode" rm="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) rm="$rm $arg"; rmforce=yes ;; -*) rm="$rm $arg" ;; *) files="$files $arg" ;; esac done if test -z "$rm"; then $echo "$modename: you must specify an RM program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi rmdirs= origobjdir="$objdir" for file in $files; do dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` if test "X$dir" = "X$file"; then dir=. objdir="$origobjdir" else objdir="$dir/$origobjdir" fi name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if (test -L "$file") >/dev/null 2>&1 \ || (test -h "$file") >/dev/null 2>&1 \ || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then . $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" case "$mode" in clean) case " $library_names " in # " " in the beginning catches empty $dlname *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. cmds=$postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. cmds=$old_postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # Read the .lo file . $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" \ && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" \ && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) file=`$echo $file|${SED} 's,.exe$,,'` noexename=`$echo $name|${SED} 's,.exe$,,'` # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then relink_command= . $dir/$noexename # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac $show "$rm $rmfiles" $run $rm $rmfiles || exit_status=1 done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then $show "rmdir $dir" $run rmdir $dir >/dev/null 2>&1 fi done exit $exit_status ;; "") $echo "$modename: you must specify a MODE" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE ;; esac if test -z "$exec_cmd"; then $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE fi fi # test -z "$show_help" if test -n "$exec_cmd"; then eval exec $exec_cmd exit $EXIT_FAILURE fi # We need to display help for each of the modes. case $mode in "") $echo \ "Usage: $modename [OPTION]... [MODE-ARG]... Provide generalized library-building support services. --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --finish same as \`--mode=finish' --help display this help message and exit --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] --quiet same as \`--silent' --silent don't print informational messages --tag=TAG use configuration variables from tag TAG --version print version information MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for a more detailed description of MODE. Report bugs to ." exit $EXIT_SUCCESS ;; clean) $echo \ "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $echo \ "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $echo \ "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $echo \ "Usage: $modename [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $echo \ "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $echo \ "Usage: $modename [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $echo \ "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac $echo $echo "Try \`$modename --help' for more information about other modes." exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared disable_libs=shared # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static disable_libs=static # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: hepmc-2.06.09.orig/config.guess0000755000175000017500000012206511307507571017141 0ustar sylvestresylvestre#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. timestamp='2003-06-17' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown ## for Red Hat Linux if test -f /etc/redhat-release ; then VENDOR=redhat ; else VENDOR= ; fi # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit 0 ;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; arc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; macppc:OpenBSD:*:*) echo powerpc-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvmeppc:OpenBSD:*:*) echo powerpc-unknown-openbsd${UNAME_RELEASE} exit 0 ;; pmax:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sgi:OpenBSD:*:*) echo mipseb-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sun3:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; alpha:OSF1:*:*) if test $UNAME_RELEASE = "V4.0"; then UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` fi # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; Alpha*:OpenVMS:*:*) echo alpha-hp-vms exit 0 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit 0 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit 0;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit 0 ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit 0 ;; *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit 0;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit 0 ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit 0 ;; DRS?6000:UNIX_SV:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7 && exit 0 ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit 0 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit 0 ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit 0 ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit 0 ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit 0 ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c \ && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ && exit 0 echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit 0 ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit 0 ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit 0 ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit 0 ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit 0 ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit 0 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit 0 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit 0 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit 0 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit 0 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit 0 ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit 0 ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit 0 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit 0 ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit 0 ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit 0 ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit 0 ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit 0 ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then # avoid double evaluation of $set_cc_for_build test -n "$CC_FOR_BUILD" || eval $set_cc_for_build if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit 0 ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit 0 ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit 0 ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit 0 ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit 0 ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit 0 ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit 0 ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit 0 ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit 0 ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; *:UNICOS/mp:*:*) echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*|*:GNU/FreeBSD:*:*) # Determine whether the default compiler uses glibc. eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #if __GLIBC__ >= 2 LIBC=gnu #else LIBC= #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} exit 0 ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit 0 ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit 0 ;; x86:Interix*:[34]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit 0 ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit 0 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR:-unknown}-linux-gnu exit 0 ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 ;; ppc:Linux:*:*) echo powerpc-${VENDOR:-unknown}-linux-gnu exit 0 ;; ppc64:Linux:*:*) echo powerpc64-${VENDOR:-unknown}-linux-gnu exit 0 ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit 0 ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit 0 ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit 0 ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR:-ibm}-linux-gnu exit 0 ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; x86_64:Linux:*:*) echo x86_64-${VENDOR:-unknown}-linux-gnu exit 0 ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit 0 ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit 0 ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit 0 ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #ifdef __INTEL_COMPILER LIBC=gnu #else LIBC=gnuaout #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` test x"${LIBC}" != x && echo "${UNAME_MACHINE}-${VENDOR:-pc}-linux-${LIBC}" && exit 0 test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit 0 ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit 0 ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit 0 ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit 0 ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit 0 ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit 0 ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit 0 ;; i*86:*:5:[78]*) case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit 0 ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; paragon:*:*:*) echo i860-intel-osf1 exit 0 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit 0 ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit 0 ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit 0 ;; M68*:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4.3${OS_REL} && exit 0 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit 0 ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit 0 ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit 0 ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit 0 ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit 0 ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit 0 ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit 0 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit 0 ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit 0 ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit 0 ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit 0 ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit 0 ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit 0 ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Darwin:*:*) case `uname -p` in *86) UNAME_PROCESSOR=i686 ;; powerpc) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit 0 ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit 0 ;; *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit 0 ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit 0 ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit 0 ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit 0 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit 0 ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit 0 ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit 0 ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit 0 ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit 0 ;; *:ITS:*:*) echo pdp10-unknown-its exit 0 ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit 0 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; c34*) echo c34-convex-bsd exit 0 ;; c38*) echo c38-convex-bsd exit 0 ;; c4*) echo c4-convex-bsd exit 0 ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: hepmc-2.06.09.orig/bootstrap0000755000175000017500000000150611211311605016541 0ustar sylvestresylvestre#! /bin/sh set -x # cleanup should not be necessary # however, in some cases strange results are found if you do not start clean rm -rf autom4te.cache rm -f aclocal.m4 rm -f Makefile.in */Makefile.in */defs.h.in rm -f missing install-sh depcomp rm -f configure config.* rm -f ltmain.sh # run autotool commands OS=`uname` if [ $OS = "Darwin" ]; then glibtoolize --copy OSname=`uname -s` else libtoolize --copy OSname=`uname -o` fi aclocal m4dir=`aclocal --print-ac-dir` if [ -f $m4dir/libtool.m4 ]; then cat $m4dir/libtool.m4 >> aclocal.m4 fi autoheader automake --add-missing --copy autoconf # To avoid confusing people with failures in the documentation build, # build documents during the bootstrap process. if [ $OSname != "Cygwin" ]; then cd doc; ./buildDoc.sh fi # ready to make a source code distribution tarball hepmc-2.06.09.orig/AUTHORS0000644000175000017500000000040411003432610015641 0ustar sylvestresylvestreHepMC ----- Matt Dobbs, University of Victoria, Canada Jorgen Beck Hansen, CERN Lynn Garren,Fermi National Accelerator Laboratory, United States Lars Sonnenschein, CERN Please file Support requests or Bug reports at https://savannah.cern.ch/projects/hepmc/ hepmc-2.06.09.orig/ChangeLog0000755000175000017500000020340111763464675016405 0ustar sylvestresylvestre -------------------------- HepMC-2.06.09 -------------------------- 2012-06-05 Lynn Garren * configure.ac: explicitly disallow using configure with VC++ * INSTALL*: improve build instructions -------------------------- HepMC-2.06.08 -------------------------- 2012-02-16 Lynn Garren * src/GenEventStreamIO.cc: make sure we check the stream units if there is no unit line in the event header * test/testHepMC.cc.in: verify unit behavior 2012-02-10 Lynn Garren * cmake/Modules/HepMCVariables.cmake: deal with Windows * HepMC/GenEvent.h: add define_units() -------------------------- HepMC-2.06.07 -------------------------- 2012-01-09 Lynn Garren * remove all VCMakefile.in files * Use cmake to build for Windows * cmake is now the preferred build method 2012-01-05 Lynn Garren * src/GenEvent.cc: fix a typo in error report for GenEvent::use_length_unit * examples/pythia8: add main31 and main32 from pythia8 2012-01-05 Lynn Garren * GenParticle.h, GenVertex.h, PdfInfo.h, SimpleVector.h, SimpleVector.icc: Rename local variables to avoid shadowing class variables. This problem surfaces when compiling with -Wshadow. -------------------------- HepMC-2.06.06 -------------------------- 2011-11-09 Lynn Garren * add the ability to build with cmake * defs.h is neither created nor installed when building with cmake 2011-11-01 Lynn Garren * examples: move Pythia and Herwig examples to examples/fio 2011-10-31 Lynn Garren * remove fio/PythiaWrapper.cc * HepMC/PythiaWrapper.h: HepMC::GenCrossSection getPythiaCrossSection() is now an inline method 2011-10-25 Lynn Garren * fio/PythiaWrapper.cc: remove struct definitions -------------------------- HepMC-2.06.05 -------------------------- 2011-04-21 Lynn Garren * HepMC/GenVertex.h: add #include for bug #80400 2011-04-15 Lynn Garren * test/testFlow.cc, test/testPrintBug.cc: define units * test/*.sh.in: make sure comparisons work for allowed momentum and length combinations -------------------------- HepMC-2.06.04 -------------------------- 2011-01-04 Lynn Garren * src/HeavyIon.cc, src/PdfInfo.cc: throw if there is an invalid line type * test/testHepMC.cc.in, test/testStreamIO.cc.in, test/testHepMCVarious.input: provoke a problem with HeavyIon (see bug #76527) -------------------------- HepMC-2.06.03 -------------------------- 2010-10-22 Lynn Garren * test/testPolarization.cc: verify that Polarization is copied and written 2010-10-20 Lynn Garren * src/GenParticle.cc: copy flow when using the copy constructor * test/testFlow.cc: add check to be sure flow is copied -------------------------- HepMC-2.06.02 -------------------------- 2010-08-18 Lynn Garren * src/GenEventStreamIO.cc, StreamHelpers.cc: cleanup unassociated event remnants if corrupt data is found 2010-07-30 Lynn Garren & Andy Buckley * src/GenEventStreamIO.cc: create GenCrossSection, PdfInfo, and HeavyIon on the stack rather than the heap to fix a memory leak -------------------------- HepMC-2.06.01 -------------------------- 2010-06-01 Lynn Garren * HepMC/GenRanges.h: remove ConstGenVertexParticleRange since there is neither a GenVertex::particle_const_iterator nor a GenVertex::vertex_const_iterator * HepMC/GenVertex.h: remove unimplemented ConstGenVertexParticleRange particles() -------------------------- HepMC-2.06.00 -------------------------- -------------------------- HepMC-2.06.00.b02 -------------------------- 2010-05-13 Lynn Garren * HepMC/Version.h: version() now takes an optional output stream * HepMC/GenEvent.h: add helper method for reading weight names * src/GenEventStreamIO.cc: use new helper method to read weight names * testHepMCVarious.input: change order of some event info lines * test/testIOGenEvent.input: add named weights for testing 2010-05-12 Lynn Garren * "make check" now works if momentum units are MEV 2010-05-11 Lynn Garren * rename HepMC/GenEventIterators.h to HepMC/GenRanges.h * src/GenEventStreamIO.cc: fix a bug reading unnamed (old style) weights * test/testHepMC: add more weight testing -------------------------- HepMC-2.06.00.b01 -------------------------- 2010-04-05 Lynn Garren * HepMC/StreamInfo.h: add reading_event_header flag for use by streaming input * src/GenEventStreamIO.cc: Input no longer expects a fixed order of header lines and will ignore lines that are not of a known type. * HepMC/HerwigWrapper.h: add hwbeam * rename PythiaWrapper6_2.h to PythiaWrapper6_4.h Add structs for more common blocks. 2010-04-02 Lynn Garren * HepMC/IteratorRange.h: put the enum in its own header * HepMC/GenEvent.h: add vertex_range() and particle_range() * HepMC/GenParticle.h: add particles_in(range) and particles_out(range) * HepMC/GenVertex.h: add particles(range), particles_in(GenParticle,range), and particles_out(GenParticle,range) * test/testHepMCIteration.cc: use the new methods 2010-03-20 Lynn Garren * HepMC/GenEventIterators.h: add ConstGenVertexParticleRange, ConstGenParticleProductionRange, and ConstGenParticleEndRange * HepMC/WeightContainer.h: method to check for weight name is has_key() * src/GenEventStreamIO.cc: use quotes to delineate weight names 2010-02-08 Lynn Garren * remove unused PythiaWrapper5_720.h, PythiaWrapper6_152.h, and PythiaWrapper6_152_WIN32.h * combine HerwigWrapper6_4.h and HerwigWrapper.h in a single file * HepMC/PythiaWrapper.h: add getPythiaCrossSection function * HepMC/HerwigWrapper.h: add getHerwigCrossSection function * fio/PythiaWrapper.cc: implement getPythiaCrossSection function * fio/HerwigWrapper.cc: implement getHerwigCrossSection function * remove redundant examples/HerwigHelper.h. 2010-02-04 Lynn Garren * doc/Makefile.am, examples/Makefile.am: use pkgdatadir to define the instation directory The default installation directory is now ${prefix}/share/HepMC/doc Override with --datadir=/some/directory/path * HepMC/Polarization.h: add is_defined() and set_undefined() is_defined returns false if the polarization is undefined set_undefined unsets the defined flag and zeroes the Polarization 2010-01-28 Lynn Garren * HepMC/GenEventIterators.h: This new header defines a set of classes which provide the appropriate iterators ranges. They can be used to simplify code and also work directly with such utilities as std::foreach. These new classes are GenEventVertexRange, ConstGenEventVertexRange, GenEventParticleRange, ConstGenEventParticleRange, GenVertexParticleRange, GenParticleProductionRange, and GenParticleEndRange * test/testHepMCIteration.cc: use the new iterator clases and also illustrate the use of std::for_each 2010-01-26 Lynn Garren * test/testHepMCIteration: illustrate use of std::for_each 2010-01-25 Lynn Garren * HepMC/WeightContainer.h: add map-like functionality, allowing users to name weights, while retaining the original vector interface for complete backwards compatibility If a name is not specified for a particular weight, the default name is the weight's vector index. Also add == and != operators. * HepMC/GenEvent.h: add a private method used by the stream I/O * src/GenEventStreamIO.cc: add a new line for weight names The weight name line is optional when reading input and is written only if the event weights object is not empty. * test/testWeights.cc: add tests for WeightContainer * test/testHepMC: test I/O of named weights * examples/testPythiaCopies.cc: set some arbitrary weights 2010-01-09 Lynn Garren * removed ParticleDataTable.h and all supporting references. -------------------------- HepMC-2.05.01 -------------------------- 2010-01-04 Lynn Garren * HepMC/GenEvent.h: add write_cross_section(std::ostream&) * src/GenEvent.cc: output the cross section (if it exists) when printing an event * src/GenVertex.cc, GenParticle.cc: save and restore output stream state when calling print methods * examples: Calculate Pythia and Herwig cross sections using getPythiaCrossSection from examples/PythiaHelper.h and getHerwigCrossSection from examples/HerwigHelper.h. Set the units explicitly. * test/testHepMC.cc.in: call write_cross_section() 2009-12-28 Lynn Garren * examples/VectorConversion.h: inline the functions 2009-07-08 Lynn Garren * HepMC/Flow.h: improve the syntax of the erase() method * test/testFlow.cc: adding a test of the Flow class see https://savannah.cern.ch/bugs/index.php?52240 -------------------------- HepMC-2.05.00 -------------------------- 2009-05-19 Lynn Garren * HepMC/GenCrossSection: new class to contain the generated cross section and cross section error. This information is considered temporary and could change on an event by event basis. * write GenCrossSection information with GenEvent whenever the cross section has been set. * GenEvent.h: add pointer to a CrossSection (null by default). * examples: add example_PythiaStreamIO.cc, which uses streaming I/O and GenCrossSection. 2009-05-07 Lynn Garren * GenEvent: add streaming input and output methods: std::ostream& write(std::ostream&); std::istream& read(std::istream&); Add some private methods used by streaming I/O. 2009-04-17 Lynn Garren * GenEvent.h, GenVertex.h: explicitly disallow -- iterator operators. * IO_GenEvent: add precision() to set output precision (default is 16). IO_GenEvent uses the GenEvent streaming input and output operators. Many of the protected methods are no longer useful and have been removed. * IO_Exception class added for use when throwing errors. If invalid data is encountered when reading an event, input will read to the end of the event instead of failing and return an empty GenEvent or null pointer. * StreamHelpers.h: Define functions used by streaming I/O. All are in the detail namespace. * StreamInfo: Special class containing extra information needed to process HepMC ascii I/O. This class is initialized by a call to a custom iomanip when any I/O stream is initialized and deleted by the stream destructor. Each stream has a separate instance. * CommonIO is no longer necessary and has been removed. * GenEvent: Add streaming input and output operators. Add free functions to be used with streaming I/O: set_input_units, write_HepMC_IO_block_begin, and write_HepMC_IO_block_end. 2009-03-02 Lynn Garren * HeavyIon: Add streaming input and output operators. Add is_valid() method. * PdfInfo: Add streaming input and output operators. Add is_valid() method. 2009-01-29 Lynn Garren * HepMC/SimpleVector: remove FourVector::mag() and ThreeVector::mag() Change test/testSimpleVector.cc and test/testMass.cc to reflect this. * HepMC/HepMCDefs.h: New header containing HEPMC_HAS_UNITS and similar macros so users can check for various code features. HepMC/GenEvent.h includes HepMCDefs.h. * HepMC/Version.h: Use new HEPMC_VERSION macro. * HepMC/GenParticle: add is_undecayed(), has_decayed(), and is_beam_particle() convenience methods. Test these methods in test/testHepMC. 2009-01-28 Lynn Garren * remove HepMC/IO_Ascii.h and test/testDeprecated * remove HepMC/HepMC_CLHEP20.h -------------------------- HepMC-2.04.01 -------------------------- 2008-12-15 Lynn Garren * src/CommonIO.cc: add space requested by -Wextra The -Wextra flag is not a default compiler flag, request it with configure ... CXXFLAGS="-Wextra" 2008-12-11 Lynn Garren * test/testHepMCIteration.cc.in: add loop over children to the test * src/IO_Ascii.cc, IO_GenEvent.cc: fix error messages 2008-06-24 Lynn Garren * fio/IO_HEPEVT.cc: bug fix for inconsistency in HWHGUP see https://savannah.cern.ch/bugs/?38173 for details -------------------------- HepMC-2.04.00 -------------------------- 2008-06-04 Lynn Garren * doc/HepMC2_user_manual.tex: expand description of Ascii IO format 2008-05-29 Lynn Garren * configure.ac: Use libtool versioning for libraries 2008-05-27 Lynn Garren * configure.ac: Throw an error immediately if units are not specified. -------------------------- HepMC-2.04.00.beta2 -------------------------- 2008-05-21 Lynn Garren * HepMC/GenEvent.h: Duplicate the existing constructors with new constructors that have momentum and length as the first 2 arguments. * examples: all examples except example_BuildEventFromScratch, testHerwigCopies, and testPythiaCopies use default units * HepMC/IO_GenEvent.h: add use_input_units() method This method is needed ONLY if a) the input stream has no unit information and b) it is known that the units of the input stream do not match the default units. 2008-05-20 Lynn Garren * revamp Units design completely Replace MomentumUnits.h and PositionUnits.h with Units.h Allowed unit designations are GEV, MEV, MM, and CM * configure.ac: User MUST specify both --with-momentum_units=XX and --with-length_units=YY. There are no defaults. * HepMC/GenEvent.h: unit data members are now enums 2008-05-12 Lynn Garren * HepMC/Pdfinfo.h: Input parton flavour codes id1 and id2 are expected to obey the PDG code conventions, especially g = 21. -------------------------- HepMC-2.04.00.beta -------------------------- 2008-05-05 Lynn Garren * configure.ac: use separate makefiles (VCMakefile.in) for Visual C++ The custom makefiles are invoked by default when using Visual C++. * doc: Stop building postscript copies of the manuals, just build and distribute PDF copies of the manuals. 2008-04-29 Lynn Garren * remove deprecated IO_ExtendedAscii 2008-04-25 Lynn Garren * cleanup examples: combine example_MyPythia.cc, example_MyPythiaRead.cc, example_MyPythiaWithEventSelection.cc, example_PythiaParticle.cc, and example_ReadMyPythia.cc into one example with multiple subsets. * add tests to list of examples in the reference manual 2008-04-23 Lynn Garren * src/GenVertex.cc: fix bug in edge_iterator operator++ * src/IO_Ascii.cc: fix for VC9 * src/IO_ExtendedAscii.cc: fix for VC9 * src/IO_AsciiParticle.cc: fix for VC9 2008-04-18 Lynn Garren * HepMC/GenEvent.h: minor bug fix for gcc 4.3.0 * HepMC/IO_ExtendedAscii.h: minor bug fix for gcc 4.3.0 * HepMC/IO_GenEvent.h: minor bug fix for gcc 4.3.0 * src/IO_ExtendedAscii.cc: minor bug fix for gcc 4.3.0 * src/IO_GenEvent.cc: minor bug fix for gcc 4.3.0 2008-04-18 Lynn Garren * ReadMe.cygwin: changing cygwin directions for new versions of VC * HepMC/MomentumUnits.h: enum HepMCmomentumUnits{ UNKNOWN = 0, MEV, GEV }; Recommended usage: MomentumUnits::GEV * HepMC/PositionUnits.h: enum HepMCpositionUnits{ unknown = 0, MM, CM } Recommended usage: PositionUnits::MM 2008-04-17 Lynn Garren * Rename configure.in to configure.ac, which is now the common usage. * configure.ac: Major restructuring. Using libtool. Only Linux, MacOSX, and Windows are explicitly supported. All Makefile.am's have been restructured to use libtool. 2008-04-01 Lynn Garren * HepMC/IO_GenEvent.h: replace const char* filename with const std::string& in the constructor accepting a filename. 2008-03-31 Lynn Garren * HepMC/GenEvent.h: random_states() now returns const std::vector& HepMC/GenVertex.h: position() now returns a const FourVector& HepMC/GenParticle.h: flow() now returns const Flow& and polarization() now returns const Polarization& * HepMC/IO_GenEvent.h: add a constructor that accepts the filename as a string. 2008-03-28 Lynn Garren * HepMC/GenParticle.h: The momentum() method now returns a const reference to a FourVector instead of a copy of a FourVector. This change should be backwards compatible. 2008-03-27 Lynn Garren * examples: set Herwig and Pythia units to GeV and mm 2008-03-26 Lynn Garren * HepMC/MomentumUnits.h: new class to encapsulate momentum units, which are represented by a single enum * HepMC/PositionUnits.h: new class to encapsulate position units, which are represented by a single enum * GenEvent: add MomentumUnits and PositionUnits data members and associated methods * GenVertex: add protected convert_position method * GenParticle: add protected convert_momentum method * HepMC/PdfInfo.h: add pdf_id1(), pdf_id2(), set_pdf_id1(), and set_pdf_id2() for the pdf set id numbers * IO_GenEvent: get and put unit information in a new line The first character of the unit line is "U". * IO_GenEvent: process the new PdfInfo data members * test/testUnits.cc: new test for MomentumUnits and PositionUnits -------------------------- HepMC-2.03.08 -------------------------- 2008-04-23 Lynn Garren * src/GenVertex.cc: fix bug in edge_iterator operator++ * src/IO_Ascii.cc: minor fix for VC9 * src/IO_ExtendedAscii.cc: minor fix for VC9 * src/IO_AsciiParticle.cc: minor fix for VC9 -------------------------- HepMC-2.03.07 -------------------------- 2008-04-18 Lynn Garren * HepMC/GenEvent.h: minor bug fix for gcc 4.3.0 * HepMC/IO_ExtendedAscii.h: minor bug fix for gcc 4.3.0 * HepMC/IO_GenEvent.h: minor bug fix for gcc 4.3.0 * HepMC/ParticleData.h: minor bug fix for gcc 4.3.0 * src/IO_ExtendedAscii.cc: minor bug fix for gcc 4.3.0 * src/IO_GenEvent.cc: minor bug fix for gcc 4.3.0 -------------------------- HepMC-2.03.06 -------------------------- 2008-03-12 Lynn Garren * test: reduce size of input files * IO_HEPEVT: add trust_beam_particles and set_trust_beam_particles methods so the user can specify that no beam particles are available. This fixes a problem with pythia6 input when the user chooses "none". 2008-03-11 Lynn Garren * src/GenEvent.cc: The GenVertex pointer to the parent event was not properly moved when the operator= method was used to copy a GenEvent. That bug is now fixed. * GenVertex: added protected change_parent_event_ method for swap as part of bug fix. * test/testMultipleCopies.cc.in: Add explicit tests for operator= and swap. * examples: minor tweaks for readability -------------------------- HepMC-2.03.05 -------------------------- 2008-02-22 Lynn Garren * fio/IO_HEPEVT.cc: According to standard HepMC design, all vertices in an event are expected to contain particles. If, for instance, the first two particles have no parents, then they should simply not have a production vertex. However, in at least one instance empty production vertices were created for the first two particles. IO_HEPEVT now protects against this. 2008-02-18 Lynn Garren * HepMC/HEPEVT_Wrapper.h: fix calculation of the total size of the common block -------------------------- HepMC-2.03.04 -------------------------- 2008-02-05 Lynn Garren * test: use /bin/bash instead of /bin/sh in shell scripts * GenEvent, GenVertex, GenParticle: remove static counters These counters were only for the debugging convenience of the HepMC code developer. They were not accessible by users. 2008-02-04 Lynn Garren * fio/IO_HERWIG.cc: fix for Z0 mother-daughter problem (from Atlas) * HepMC/SimpleVector.h: Remove simple math methods 2007-01-29 Lynn Garren * examples/testHerwigCopies.cc: compare copies of Herwig events * examples/testPythiaCopies.cc: compare copies of Pythia events 2007-01-15 Lynn Garren * TempParticleMap.h: use barcode instead of counter for ordering to solve a problem with changed order of particles when making copies 2007-01-14 Lynn Garren * HepMC/CompareGenEvent.h: new utility to compare two copies of a GenEvent object * test/testMultipleCopies.cc.in: verify that two copies of the same GenEvent object are, indeed, the same * test/testHepMCIteration: use a different output file name so the test will work if you build on top of the source code -------------------------- HepMC-2.03.03 -------------------------- 2007-12-17 Lynn Garren * HepMC/SimpleVector.h: Add simple math methods: FourVector operator + (const FourVector &) const; FourVector & operator += (const FourVector &); FourVector operator - (const FourVector &) const; FourVector & operator -= (const FourVector &); FourVector operator - () const; FourVector & operator *= (double); The same methods were also added to ThreeVector. -------------------------- HepMC-2.03.02 -------------------------- 2007-12-14 Lynn Garren * doc: The HepMC 1 and HepMC 2 user manuals have been merged into a single manual. * HepMC/IO_GenEvent.h: check operator methods for consistency 2007-12-07 Lynn Garren * HepMC/IO_GenEvent.h: fix problem with rdstate() and clear() 2007-12-04 Lynn Garren * HepMC/IO_Ascii.h, IO_ExtendedAscii.h, IO_GenEvent.h and src/IO_Ascii.cc, IO_ExtendedAscii.cc, IO_GenEvent.cc: common input methodologies now handled by CommonIO 2007-12-03 Lynn Garren * HepMC/CommonIO.h, src/CommonIO.cc: new header for shared IO methods and keys * src/IO_GenEvent.cc: use CommonIO search for any of several allowed input data types * HepMC/IO_GenEvent.h: disable write_particle_data_table and fill_particle_data_table - that is best done outside HepMC -------------------------- HepMC-2.03.01 -------------------------- 2007-11-26 Lynn Garren * configure.in: add support for g++-* 2007-11-26 Lynn Garren * src/IO_GenEvent.cc: bug fix - fill event scale, alphaQED, and alphaQCD -------------------------- HepMC-2.03.00 -------------------------- 2007-10-30 Lynn Garren * examples/example_ReadMyPythia.cc: New example to read the file written by example_MyPythia. * doc: remove the latex subdirectory after building the reference library * GenEvent: add print_version( std::ostream& ) method. If you don't specify an ostream, the default is std::cout. * GenVertex: Store particles in vectors instead of sets. Root IO does not properly restore the state of the particle serial number counter, so the previous solution to retaining consistent particle ordering within a vertex had to be revisited. * IO_GenEvent: Replace the temparary particle map with TempParticleMap. * HepMC/SearchVector.h: Utilities to facilitate working with the vector of particles. * HepMC/TempParticleMap.h: Temporary particle container that allows us to maintain particle ordering when reading an event with IO_Ascii and IO_ExtendedAscii. * Use fully qualified names (e.g., HepMC::GenParticle) inside class templates (e.g., std::map<>) wherever they are used within a header so that rootcint can make the dictionary. -------------------------- HepMC-2.02.01 -------------------------- 2007-10-16 Lynn Garren * configure.in: build dynamic libraries for MacOSX - thanks to James Monk -------------------------- HepMC-2.02.00 -------------------------- 2007-07-19 Lynn Garren * IO_GenEvent: uses input and output streams IO_GenEvent can be constructed with a file, an input stream, or an output stream. * IO_Ascii and IO_ExtendedAscii are deprecated. * examples use IO_GenEvent -------------------------- HepMC-2.01.10 -------------------------- 2008-02-05 Lynn Garren * test: use /bin/bash instead of /bin/sh in shell scripts * doc: The HepMC 1 and HepMC 2 user manuals have been merged into a single manual. 2008-02-04 Lynn Garren * fio/IO_HERWIG.cc: fix for Z0 mother-daughter problem (from Atlas) 2008-01-14 Lynn Garren * test/testHepMCIteration: use a different output file name so the test will work if you build on top of the source code 2007-12-17 Lynn Garren * HepMC/Flow.h: comment changes for doxygen * HepMC/GenParticle.h, src/GenParticle.cc: remove remnant static counter * Use fully qualified names (e.g., HepMC::GenParticle) inside class templates (e.g., std::map<>) wherever they are used within a header so that rootcint can make the dictionary. * src/IO_ExtendedAscii.cc: make sure all info is filled when reading * configure.in: add support for g++-* build dynamic libraries for MacOSX - thanks to James Monk -------------------------- HepMC-2.01.08 -------------------------- 2007-10-23 Lynn Garren * GenVertex: Store particles in vectors instead of sets. Root IO does not properly restore the state of the particle serial number counter, so the previous solution to retaining consistent particle ordering within a vertex had to be revisited. * IO_Ascii, IO_ExtendedAscii: Replace the temparary particle map with the more sophisticated TempParticleMap. * HepMC/SearchVector.h: Utilities to facilitate working with the vector of particles. * HepMC/TempParticleMap.h: Temporary particle container that allows us to maintain particle ordering when reading an event with IO_Ascii and IO_ExtendedAscii. -------------------------- HepMC-2.01.07 -------------------------- 2007-10-19 Lynn Garren * Use fully qualified names (e.g., HepMC::GenParticle) inside class templates (e.g., std::map<>) wherever they are used within a header so that rootcint can make the dictionary. -------------------------- HepMC-2.01.06 -------------------------- 2007-08-07 Lynn Garren * HepMC/GenEvent.h, GenVertex.h,GenParticle.h : add swap method * src/GenEvent.cc, GenVertex.cc, GenParticle.cc: use best practices for assignment and copy constructor * HepMC/SimpleVector.h: add swap method * HepMC/Flow.h: add swap method * HepMC/WeightContainer.h: add swap method * HepMC/Polarization.h: add swap method add private valid_theta and valid_phi methods for use by constructors src/Polarization.cc: use best practices for assignment and copy constructor -------------------------- HepMC-2.01.05 -------------------------- 2007-07-19 Lynn Garren * HepMC/HeavyIon.h: make it nice for rootcint -------------------------- HepMC-2.01.04 -------------------------- 2007-07-18 Lynn Garren * various bug fixes and protections -------------------------- HepMC-2.01.03 -------------------------- 2007-07-11 Lynn Garren * src/IO*.cc: write HepMC version number -------------------------- HepMC-2.01.02 -------------------------- 2007-07-10 Lynn Garren * HepMC/Version.h: add the ability to print the HepMC version number * src/IO_ExtendedAscii.cc: write HepMC version number 2007-07-09 Lynn Garren * src/IO_ExtendedAscii.cc: read/write beam particle information fix a problem with reading optional info * test/testMass.*: compare generated and calculated masses 2007-06-29 Lynn Garren * HepMC/GenEvent.h, src/GenEvent.cc: define beam process methods bool valid_beam_particles() const; std::pair beam_particles() const; bool set_beam_particles(GenParticle*, GenParticle*); bool set_beam_particles(std::pair const &); * fio/IO_HEPEVT.cc, fio/IO_HERWIG.cc: set incoming beam particles * HepMC/PythiaWrapper*: remove old process struct 2007-06-21 Lynn Garren * HepMC/GenEvent.h: add methods to set and access the number of multi particle interactions in the event. The default value of this number is -1. * src/IO_ExtendedAscii.cc: read and write MPI information 2007-06-19 Lynn Garren * HepMC/GenParticle.h: use uint64_t for the serial number counter -------------------------- HepMC-2.01.00 -------------------------- 2007-06-08 Lynn Garren * HepMC/GenEvent.h, src/GenEvent.cc: add clear() method * HepMC/GenParticleComparison.h: define a GenParticle comparator * HepMC/GenParticle.h, src/GenParticle.cc: set a serial number to be used by GenParticleComparison * HepMC/Flow.h, HepMC/GenVertex.h, src/Flow.cc, src/GenVertex.cc: use std::set * test: automatic comparison of output files is now possible -------------------------- HepMC-2.00.04 -------------------------- 2007-06-01 Lynn Garren * HepMC/GenEvent.h, src/GenEvent.cc: change interface such that GenEvent makes its own copy of HeavyIon and PdfInfo 2007-05-29 Lynn Garren * src/GenVertex.cc: initialize range in default constructor * src/IO_Ascii*.cc: make sure every object is properly deleted * test/testHepMCIteration.cc: add iterator test -------------------------- HepMC-2.00.03 -------------------------- 2007-04-23 Lynn Garren * bootstrap, configure.in, doc/Makefile.am: To avoid problems with different versions of latex, just build the documents during the bootstrap step. * doc/buildDoc.sh: builds the documents if doxygen and latex are present 2007-04-20 Lynn Garren * HepMC/include/PythiaWrapper*.h: inline the method definitions to avoid conflicts * examples/initPythia.cc: put pythia intialization in a separate file so we can test PythiaWrapper -------------------------- HepMC-2.00.02 -------------------------- 2007-02-12 Lynn Garren * test/testHepMC.sh.in: works on Windows (Cygwin), MacOSX, and Linux 2007-02-07 Lynn Garren * doc/doxygen-template: provide an html template 2007-01-30 Lynn Garren * doc/doxygen.conf: use doxygen 1.5.1 2007-01-30 Lynn Garren * examples/example_BuildEventFromScratch.cc: add example of conversion from SimpleVector to HepLorentzVector * examples/VectorConversion.h: VectorConversion.h is meant as a template for user code converting to the vector of your choice. 2007-01-29 Lynn Garren * fix everything so doxygen will create a useful reference manual nearly every file has been touched, but only the comments changed 2007-01-25 Lynn Garren * examples/example_MyPythiaRead.cc: read in the events you just wrote * examples/*.cc: put all uses of IO_Ascii within an explicit scope * configure.in, doc/Makefile.am: if latex is found, get the path * test/testHepMC.sh.in: make the diff work for MacOSX -------------------- HepMC-02-00-01 --------------------------------- 2007-01-17 Lynn Garren * test/testSimpleVector.cc: exercise the vector methods 2007-01-16 Lynn Garren * HepMC/SimpleVector.icc: implement ThreeVector::set(x,y,z) 2006-08-23 Lynn Garren * install examples in $(prefix)/examples/HepMC * check for latex and build documents if latex is present -------------------- HepMC-02-00-00 --------------------------------- 2006-08-22 Lynn Garren * src/IO_ExtendedAscii.cc: read and write generated mass as part of particle line. 2006-08-18 Lynn Garren * doc/HepMC2_user_manual.tex documentation for HepMC 2 2006-08-01 Lynn Garren * HepMC/is_arithmetic.h, HepMC/enable_if.h supplied by Walter Brown for a clean template constructor implementation. 2006-07-23 Lynn Garren * HepMC/SimpleVector.h: add a templated constructor for both FourVector and ThreeVector that will take any lorentz vector which has the x(), y(), z(), and t() methods. This should enable existing code that uses CLHEP Vector classes to keep working. 2006-07-19 Lynn Garren * replace CLHEP/Vector/LorentzVector.h and CLHEP/Vector/ThreeVector.h with HepMC/SimpleVector.h implement some of the basic vector properties so user code won't break -------------------- HepMC-01-28-00 --------------------------------- 2006-08-08 Lynn Garren * HepMC/IO_ExtendedAscii.h: Extended format writes PdfInfo and HeavyIon if they are present in the event. This is otherwise identical to IO_Ascii.h. 2006-07-30 Lynn Garren * HepMC/HEPEVT_Wrapper.h: fix for 64bit machines 2006-07-26 Lynn Garren * HepMC/PdfInfo.h implements information requested by CMS * GenEvent.h, GenEvent.cc make sure m_pdf_info is initialized to 0 -------------------- HepMC-01-27-02 --------------------------------- 2006-06-19 Lynn Garren * fix test for Windows * add ReadMe.cygwin-VC71 and setup.cygwin-VC71 2006-06-14 Lynn Garren * GenEvent.cc, GenParticle.cc, GenVertex.cc use standard C++ output * testPrintBug new test for output problems with gcc 4.x * HepMC/HepMC_CLHEP20.h defines several typedefs needed when compiling with CLHEP 2.0.x * HEPEVT_Wrapper.h, HerwigWrapper6_4.h, PythiaWrapper6_2.h need extern "C" statements for gcc 4.x * HepMC_CLHEP20.h, Polarization.h, GenVertex.h, GenParticle.h HepMC will work with both CLHEP 1.9.x and 2.0.x -------------------- HepMC-01-27-01 --------------------------------- 2006-03-31 Lynn Garren * GenEvent.h, GenEvent.cc make sure m_heavy_ion is initialized to 0 2006-03-29 Lynn Garren * HepMC/ParticleData.h remove dependency on CLHEP/Units by HepMC_hbarc * HepMC/Polarization.h remove dependency on CLHEP/Units by HepMC_pi -------------------- HepMC-01-27-00 --------------------------------- 2006-03-07 Lynn Garren * add simple check in the test subdirectory 2006-02-17 Lynn Garren * HepMC/HeavyIon.h names have been changed to match both HepMC and wishes of heavy ion users 2006-01-12 Lynn Garren HepPDT 1.26 is available at https://savannah.cern.ch/projects/hepmc/ * HepMC/HeavyIon.h implements information requested by CMS * HepMC/GenParticle.h has pointer (null by default) to HeavyIon * code providing interfaces to Fortran common blocks has been moved out of libHepMC and into libHepMCfio -------------------- HepMC-01-02-26 --------------------------------- -------------------- HepMC-01-02-21 --------------------------------- 2005-04-27 Matt Dobbs and Giorgos * src/IO_HERWIG.cxx implemented a bug fix suggested by borut, which keeps the remapping of daughters/motherrs from going "over the end" on herwig events (was noticed in the tauola events for rome DC). 2004-08-04 David Quarrie * cmt/requirements: Change dependencies on CERNLIB and CLHEP to AtlasCERNLIB and AtlasCLHEP to avoid name clashes -------------------- HepMC-01-02-19 ----(gcc 3.2 compatible)--------- 2004-04-22 Matt Dobbs * src/IO_HERWIG.cxx (HepMC): fixed bug reported by Hinchliffe in IO_HERWIG wherein (for the special case of min bias events only) number of entries in HEPEVT was being zero-ed by the IO_HERWIG class. Added extra protection in HEPEVT_Wrapper for this as well. -------------------- HepMC-01-02-18 ----(gcc 3.2 compatible)--------- 2004-03-27 Matt Dobbs Removed the #define statements that allow backwards compatibility with gcc 2.95, and specialized the 3.2 compliant iterators to be forward iterators such that they work properly with std algorithms. Thanks to Ulrik Egede for pointing this out. * HepMC/GenVertex.h, .cxx HepMC/GenEvent.h, .cxx: changed std::forward_iterator to std::iterator for standard compliance, and removed #define statements. * HepMC/IO_Ascii.h,.cxx: changed open_mode to openmode for standard compliance, and removed #define statements. 2003-12-17 David Rousseau * cmt/requirements: remove HepMC_libraries 2003-10-22 Matt Dobbs * src/GenEvent.cxx and lots of other files + latex documentation. REmoved any mention of units--- GeV, MeV etc, since HepMC merely accepts whatever is put in. I do this because, though HEPEVT has used GeV/mm, ATLAS plans to use CLHEP units of MeV/mm. 2003-10-15 Matt Dobbs * src/GenParticle.cxx (HepMC): added a default constructor for GenParticle as requested by Giorgos S. -------------------- HepMC-01-02-14 ----(gcc 3.2 compatible)--------- 2003-04-21 Matt Dobbs * src/IO_HERWIG.cxx: minor changes to handling of herwig event record -------------------- HepMC-01-02-11 ----(gcc 3.2 compatible)--------- 2003-03-10 Matt Dobbs * HepMC/IO_BaseClass.h: Fixed bug reported by Peter Loch, wherein the virtual destructor for IO_BaseClass was missing. -------------------- HepMC-01-02-10 ----(gcc 3.2 compatible)--------- 2003-03-03 Matt Dobbs * HepMC/GenVertex.h: added extra ifdef statement to allow compilation on gcc 3.2. (forward_iterator and open_mode problems). * HepMC/IO_Ascii.h: as above. * src/IO_Ascii.cxx (HepMC): as above. 2003-01-17 Matt Dobbs * src/IO_PDG_ParticleDataTable.cxx (HepMC): if the PDG table does not exist, we abort, rather than just returning false. -------------------- HepMC-01-02-04 ----(5.0.0)------------ 2002-11-04 Matt Dobbs * src/GenEvent.cxx (HepMC): set_barcode(particle, barcode), set_barcode(vertex, barcode) Fixed a bug reported by Giorgos S. For this bug, a user suggests a barcode for a vertex that is already part of an event... the vertex is inserted in the vertex map with the new barcode, but HepMC forgets to erase the old entry... such that the vertex now appears twice in the map. This is fixed, and the corresponding error for particles is also fixed. 2002-10-31 Matt Dobbs * HepMC/IO_HERWIG.h: modified IO_HERWIG to include a switch (default m_no_gaps_in_barcodes=on) which removes null entries from Herwig HEPEVT and reshuffles the common block 2002-10-22 Matt Dobbs * HepMC/HerwigWrapper6_4.h, HepMC/HerwigWrapper.h: new interface to HERWIG Version 6.4 is added. There is an example for using it at examples/example_MyHerwig.cxx. To use this example you will have to download HERWIG version 6.4 and modify the Makefile to link it. * HepMC/IO_HERWIG.h: New class for reading the Herwig version of the HEPEVT common block is added. READ THE COMMENTS IN THE .h file carefully before using it! 2002-07-29 Matt Dobbs -------------------- HepMC-01-02-03 ----(4.0.2)------------ * src/GenVertex.cxx (HepMC): remove_particle() * HepMC/GenVertex.h: removed confusing comment about the use of GenVertex::remove_particle() in .h file, and clarified the comment in .cxx file. * src/GenEvent.cxx (HepMC): operator= bug discovered by . Formerly, the GenEvent::operator= method relied on the particles attached to each vertex to always be in the same order. However, since the particles are stored in set<>, this is not always true -- making the results of the operator= method unreliable. This is fixed by mapping the vertices explicitly. * src/IO_PDG_ParticleDataTable.cxx (HepMC): added a line in read_entry that ignores empty lines (previously empty lines in the pdg data table generated a cerr message). This change was requested by Davida Costanzo. 2002-03-02 Matt Dobbs -------------------- HepMC-01-02-02 ----(3.0.1)------------ * src/GenVertex.cxx (HepMC): GenVertex::edge_iterator::edge_iterator( .. ) Extra error protection added in the constructor. Sometimes the edge_iterator fails when we have a vertex with no in_particles. This never happens in standalone mode, but when ran with the ATLAS framework, it does happen. New code identifies the scenario explicitly, and catches the error, which has to do with the past-the-end value of the edge_iterator. * test/test_iterators.cxx: new test program added for iterators, to test for the above problems. 2002-02-19 Matt Dobbs CHANGES TO ALLOW HEPMC TO COMPILE WITH SOLARIS CC 5.2 * cmt/requirements: added the line macro_append cppflags "" Solaris " -D__SUNPRO_CC " to handle Solaris CC 5.2 features. * HepMC/ParticleDataTable.h: turns on MISSING_FORWARD_ITERATOR when __SUNPRO_CC is defined. This defines forward_iterator as iterator * HepMC/GenVertex.h: same as ParticleDataTable.h, but also turns on NEED_SOLARIS_FRIEND_FEATURE when __SUNPRO_CC is defined. * src/Polarization.cxx (HepMC): replaced abs() with theta = ( theta>0 ? theta : -theta ); for compatibility with Solaris. 2002-02-15 Matt Dobbs -------------------- HepMC-01-02-01 ----(3.0.0)------------ * HepMC/GenEvent.h: bug discovered by with help from Paolo and Hong. The GenEvent::particle_iterator, const_particle_iterator, vertex_iterator, const_vertex_iterator had methods like: bool operator !=(const particle_iterator& a) const { return !(**this == *a); } which doesn't work because you are not allowed to de-reference the end() iterator [the above coding is a relic of the old walking iterators which did not inherit from forward_iterstor, and for which *end() was well defined.] The correct usage is: { return m_map_iterator == a.m_map_iterator; } Note: this does NOT affect the GenVertex::***_iterator's, since for those iterators *end() is well defined. 2002-01-23 Matt Dobbs -------------------- HepMC-01-02-00 -------------------- ( Public Version 1.2 ) User manual, webpage, and public version updated. The CLHEP names branch, called HepMC-00-00-96-CLHEP, has been moved to the head of the main trunk in cvs, and commited. Thus the main trunk is the only development branch. 2002-01-22 Matt Dobbs -------------------- HepMC-01-01-12 -------------------- * src/GenEvent.cxx (HepMC): delete_all_vertices() modified the increment of the vertex iterator when looping over vertices for deletion. * src/GenVertex.cxx (HepMC): delete_adopted_particles() modified the increment of the particle iterator when looping over particles for deletion. 2002-01-21 Matt Dobbs -------------------- HepMC-01-01-07 -------------------- * HepMC/GenEvent.cxx (delete_all_vertices): Possible bug reported here by ATLfast group. Added extra error checking, and changed the deleting of the vertices such that each one is explicitly erased from the map. 2002-01-18 Matt Dobbs More changes for Windoes MS Visual C++ compatibility: * HepMC/PythiaWrapper6_2.h, HepMC/PythiaWrapper6_152.h: included new wrapper methods like call_pyinit, which hide the funny syntax necessary to call fortran routines from C++. * examples/example_MyPythiaWithEventSelection.cxx: * examples/example_MyPythiaOnlyToHepMC.cxx: * examples/example_MyPythia.cxx: * examples/Benchmarks_f77/example_PythiaToLCWrite.cxx: modified to use the call_*** pythia methods. 2002-01-15 Matt Dobbs -------------------- HepMC-01-01-06 -------------------- * Makefile.standalone: updated to use cernlib 2001 and pythia6152 * examples/example_UsingIterators.cxx: The input file was from the old non-barcodes version, and so didn't work. Replaced it with a proper input file. These changes suggested by Witold Pokorski from LHCb to allow for Windows Visual C++ compliance. All of these changes are fully backwards compatible(!). * HepMC/GenEvent.h, HepMC/GenVertex.h: change forward_iterator to simply iterator (which in the STL standard apparently implies forward_iterator) In Visual c++, a for (int i ... ) {} statement does not scope out the i variable ... so had to modify the code to ensure no variables were used twice in the same method: * src/IO_Ascii.cxx (HepMC): in lines 155, 161, 175 "int i" is repeated in lines 293, 314, 321 "int i" is repeated in lines 293, 314, 321 "p" is repeated * src/IO_HEPEVT.cxx (HepMC): in lines 59,65,88 "i" is repeated in lines 118, 129 "p" is repeated * src/IO_PDG_ParticleDataTable.cxx (HepMC): in lines 80, 103, 124 "id_i" is repeated * src/GenVertex.cxx (HepMC): in lines: 64 and 72; 168 and 178; 195 and 201; 260 and 273; 322 and 331 variable "part" is repeated * have verified all STL calls for set, map, less, greater, cout, endl, list, cerr, ios, iostream, flush are properly prefixed with std:: * HepMC/GenEvent.h: bug fix: added a std::greater qualifier to the m_map_iterator of the vertex iterators. * HepMC/GenVertex.h: bug fix: made the GenVertex::particle_iterator a friend of GenVertex. * HepMC/GenEvent.h, HepMC/GenVertex.h: move all of the friend class declarations into statements separate from the class declaration, i.e. class edge_iterator { ... }; friend class edge_iterator; instead of friend class edge_iterator{ ... }; Change all std::ptrdiff_t to ptrdiff_t * HepMC/IO_Ascii.h: ios::openmode changed to ios::open_mode in the constructor, for compatibility with windows Visual C++. * Change #include to #include Note: this will spoil compatibility with HPUX 10.2 CC. 2001-11-29 Matt Dobbs -------------------- HepMC-01-01-05 -------------------- * Fix typo in user manual "particle barcodes are positive" 2001-11 Matt Dobbs -------------------- HepMC-01-01-04 -------------------- * update user manual to explain barcodes. NO changes to code. 2001-11-10 Matt Dobbs -------------------- HepMC-01-01-03 -------------------- * cmt/requirements: jetset74 requirement removed, as requested by I.Hinchliffe. 2001-11-04 Matt Dobbs -------------------- HepMC-01-01-02 -------------------- * HepMC/GenVertex.h: removed merge_vertex() method. * HepMC/IO_HEPEVT.h: removed the merge_vertices possibility, but added a build_production_vertex possibility to build_end_vertex. -------------------- HepMC-01-01-01 -------------------- * src/HEPEVT_Wrapper.cxx (HepMC): new method check_hepevt_consistency() added. new method zero_everything() added. 2001-11-02 Matt Dobbs -------------------- HepMC-01-01-00 -------------------- * src/IO_HEPEVT.cxx (HepMC): Modified such that the HEPEVT indices are used for the particle barcodes. * HepMC/IO_Ascii.h: Modifed to properly read/write the barcodes and the GenEvent new data members. Unique reference numbers called "barcodes" are added as data members to GenParticles and GenVertices. They are cross-referenced in GenEvent via a map. The GenEvent::m_vertices container of vertices is then no longer necessary, so it is removed. The GenEvent::particle_iterator and GenEvent::vertex_iterator are updated to walk over the maps. The iterator change should be transparent to the user. Constant versions of both iterators are included. The old GenEvent::vertex_iterator was a typedef of the set: typedef std::set::iterator vertex_iterator; The maps get filled via the: set_barcode( GenXXX* x, int suggested_barcode ) methods, which in turn are called only by the vertex and particle: GenVertex::set_parent_event_() GenPartcle::set_production_vertex_() GenPartcle::set_end_vertex_(} * HepMC/GenEvent.h: New data members and access methods are added for consistency with the HepUP standard, see hep-ph/0109068 double GenEvent::m_event_scale double GenEvent::m_alphaQCD double GenEvent::m_alphaQED * src/IO_HEPEVT.cxx (HepMC): Fixed some const warnings with the GenEvent::vertex_iterator usage. 2001-10-11 Matt Dobbs -------------------- HepMC-01-00-01 -------------------- * cmt/requirements: changed use CERNLIB v2001 External to use CERNLIB CERNLIB-01-* External as per r.d.'s request 2001-10-10 Matt Dobbs -------------------- HepMC-01-00-00 -------------------- Identical to HepMC-00-03-08. This tag name follows atlas naming conventions ... increment the major tag when code is NOT backwards compatible. Since Atlas is moving from tag HepMC-00-01-12 (old atlas names) to HepMC-00-03-08 (clhep names) this change is not backwards compatible. 2001-09-05 Matt Dobbs ------- below this line is tag HepMC-00-03-08 ---------- (clhep names version to be used in atlas. The changes have not been made in the HepMC-00-01-** branch) * src/IO_HEPEVT.h (HepMC): * src/IO_HEPEVT.cxx (HepMC): When inconsistent info between mother and daughters is found in the IO_HEPEVT::build_production_vertex method, IO_HEPEVT will no longer merge_vertex (the 2001-03-29 "fix") by default. In order to get this behaviour you have to explicitly ask for it with the IO_HEPEVT::set_merge_vertex_switch() method. 2001-09-05 Matt Dobbs * cmt/requirements: added to the CLHEP names branch (its just a direct copy of what is in the trunk ATLAS names). 2001-07-17 Matt Dobbs (note: HepMC-00-01-24 is an accidental tag which should be ignored) ----- below this line is HepMC-00-01-23, HepMC-00-03-07 ----- * src/GenVertex.cxx (HepMC): GenVertex::vertex_iterator::follow_edge_() added extra error checking for the very special-rare case where a particle might point to the same vertex for both production and end. Meant to handle Ian H.'s bug of 02 Jul 2001 2001-06-28 Matt Dobbs -------------------- HepMC-00-03-06 -------------------- * examples/GNUmakefile.in: updated the makefile to link to cernlib 2001 version of pythia. This involves a change -lpythia6136 to -lpythia6152 -lpythiad Note that for xample_MyPythiaWithEventSelection.cxx 1/100 or 36/1000 events pass cuts (with 6.136 it was 3/100 or 37/1000). * HepMC/GenParticle.h: now has a parent_event() access method, which returns the parent_event of the particle's container vertex's event. 2001-06-27 Matt Dobbs ---> Make the Vertex know which event it in in. <--- * HepMC/GenVertex.h: added private data member m_event, public access method parent_event() and protected access method set_parent_event, which is only to be used by GenEvent. Thus GenEvent is made to be a friend of GenVertex. * HepMC/GenEvent.h, src/GenEvent.cxx (HepMC): added logic to GenEvent::remove_vertex and GenEvent::add_vertex. The vtx's m_event pointer is set to point back to the event. * HepMC/ParticleData.h: * HepMC/GenEvent.h: * HepMC/GenParticle.h: * HepMC/GenVertex.h: made method counter() protected. It was never intended as public, merely as a method for detecting memory leaks. If no-one complains (they shouldn't, it was commented "temporary for debugging") I'll remove it entirely later. 2001-03-29 Matt Dobbs * src/IO_HEPEVT.cxx (HepMC): When m_trust_mothers_before_daughters=0, the vertex position is now filled. In ISAJET sometimes disjoint vertex structures exist, in this case a merger of vertices is done, which accounts for it. * HepMC/GenVertex.h: * src/GenVertex.cxx (HepMC): Added a void merge_vertex_contents( GenVertex* v_in ); method which takes all the contents of v_in and places it in the vertex. It does not delete v_in, nor does it remove v_in from an event. It will mainly be used by IO_HEPEVT, but it is forseen that users may want to use it when reducing the overall size of the event (deleting intermediate vertices) such as will be done by atlas. 2001-02-28 Matt Dobbs * Makefile.standalone: using HepMCdir = $(shell pwd) instead of HepMCdir = /afs/cern.ch/user/m/mdobbs/HepMC/myCheckoutV1.01 for better portability. * src/GenVertex.cxx (HepMC): added extra protection to the GenVertex::edge_iterator::edge_iterator constructor to give sensible result for the special case when a vertex has incoming particles, but none outgoing and the user requests a children iterator. The old version would have m_set_iter points to m_particles_in.begin() and so the first dereference might be wrong. * HepMC/IO_HEPEVT.h: Two new switches are added to give more flexibility in handling the possible inconsistencies arrising from the bi-directional pointers in HEPEVT. The switches are: bool m_trust_mothers_before_daughters; bool m_print_inconsistency_errors; which are described by comments in the code. Also makes minor changes to src/IO_HEPEVT.cxx * HepMC/Typedef_Version0names.h: This header file added. It contains typedef statements which should allow the new version 1.XX class names to be used with code written with the old version 0.XX class names. If the user wants to take advantage of these typedefs he needs to define type variable HEPMC_SHORT_NAMES in his compiler options as follows: -DHEPMC_SHORT_NAMES or in his code using #define HEPMC_SHORT_NAMES Note that since the header file names also changed, this ALSO requires changing the include statements in the user code. * doc/latex_user_manual/physicist_visualization.eps fixed a mis-labelling in this figure... the labels were all shifted and intermingled... its now right. Unfortunately the mislabelled version appears in the CPC publication. also affects doc/latex_user_manual/HepMC_user_manual.ps ****************************************************** Everything below this line corresponds to Version 1.01 ****************************************************** 2001-01-11 Matt Dobbs * examples/example_UsingIterators.cxx: Changed the class IsFinalState such that a particle must have no end vertex AND have status==1 to be considered stable. Does not effect package, only this specific example. * HepMC/IO_BaseClass.h: Bug reported by Lynn Garren "There appears to be a problem with const-ness in HepMC/IO_BaseClass.h. I have made the following changes in order to compile HepMC 1.0 with g++. virtual const GenEvent*& operator<<( GenEvent*& ); becomes virtual GenEvent*& operator<<( GenEvent*& ); virtual const ParticleDataTable*& operator<<( ParticleDataTable*& ) becomes virtual ParticleDataTable*& operator<<( ParticleDataTable*& ) In other words, I have made the const-ness match." ... These changes are implemented by Matt in the atlas repository. * HepMC/HEPEVT_Wrapper.h: Bug reported by Andreas Dell'Acqua HEPEVT_Wrapper::last_child HEPEVT_Wrapper::last_parent There methods were returning 0 when exactly one parent exists. This caused the number_children and number_parent methods to return 0 every time there was exactly 1 parent/child. This error caused major problems in the IO_HEPEVT class, with the end result that the HEPEVT graphs were interpretted incorrectly [all particles are correctly interpretted, but their relationships are incorrect for the case where a particle has exactly ONE mother: in this case the particles appeared as orphans.] This bug was introduced in version HepMC-00-00-94, so it has been present for some time. This fix is for HEPEVT_Wrapper::last_child(): // Returns the Index of the LAST child in the HEPEVT record // for particle with Index index. // If there is only one child, the last child is forced to // be the same as the first child. // If there are no children for this particle, both the first_child // and the last_child with return 0. // Error checking is done to ensure the child is always // within range ( 0 <= parent <= nhep ) * src/IO_HEPEVT.cxx (HepMC): only comments in IO_HEPEVT::build_particle have changed. No change to code. ****************************************************** Everything below this line corresponds to Version 1.0 ****************************************************** 2000-11-10 Matt Dobbs MAJOR NAME CHANGES AFFECT ALMOST ALL FILES: GeneratorEvent --> GenEvent Particle --> GenParticle Vertex --> GenVertex user manual and online documentaion are updated to reflect this. * HepMC/PythiaWrapper6_152.h: A new wrapper for Pythia 6.1 is created to replace the old Pythia 5.7 wrapper. It works with the versions of Pythia in both CERNlib2000 and CERNlib2001 (versions 6.136 and 6.152 and probably any Pythia 6). A pointer file: * HepMC/PythiaWrapper.h: is created so the used doesn't have to worry about pythia version numbers. A test file is located at: * test/test_PythiaWrapper.cxx All examples are updated to use Pythia 6. 2000-11-09 Matt Dobbs * HepMC/WeightContainer.h: Created this class to house the weights in the vertex and event classes. It is just an interface to std::vertex. The vertex class is modifid to use this. Required changes to: * HepMC/Vertex.h: * src/Vertex.cxx: * src/IO_Ascii.cxx (HepMC): ****************************************************** Everything below this line corresponds to Version 0.94 ****************************************************** 2000-07-05 Matt Dobbs * HepMC/HEPEVT_Wrapper.h: Completely new wrapper for HEPEVT_Common is implemented. This wrapper treats the common as a series of bytes and interprets them "on the fly". The user can set the size (in bytes) of the integer and real numbers to be interpretted from HEPEVT, and also the total number of entries in HEPEVT. This allows the user to interface to two applications which use different HEPEVT definitions. Benchmarks: 1000 events pythia only 34 seconds. 1000 events Pythia+HepMC(using this new wrapper) 40s on my particular machine. (extra time is 6 seconds.) Compare this to the extra 5 seconds reported in the HepMC user manual for the old HEPEVT wrapper ... so the difference is small compared to the old wrapper considering the added functionality. (all examples have been tested and they Run!) * HepMC/HEPEVT_Common.h: Deleted, this common is now defined inside HEPEVT_Wrapper.h * src/HEPEVT_Wrapper.cxx (HepMC): This file is created since it is necessary to instantiate the static members of HEPEVT_Wrapper in a .cxx file. * Makefile.Standalone: modified to build src/HEPEVT_Wrapper.cxx into the HepMC library * HepMC/IO_HEPEVT.h: Comment modified only so as to treat HEPEVT_Wrapper consistently. * examples/example_MyPythiaWithEventSelection.cxx: Modified to use new HEPEVT_Wrapper * examples/example_MyPythia.cxx: Modified to use new HEPEVT_Wrapper * examples/example_MyPythiaOnlyToHepMC.cxx (main): Modified to use new HEPEVT_Wrapper * PACKAGE: added linkset HepMC -lib:HepMC (Modified GNUmakefile.in to use libHepMC.so as HepMC linkset) 2000-07-04 Matt Dobbs * examples/GNUmakefile.in: $(top_srcdir) replaced by $(srcdir) * GNUmakefile.in (libHepMC.so_SRC): The location of src .cxx files is now explicitly specified with $(top_srcdir)/src/*.cxx This makefile now builds oth a shared library libHepMC.so and libHepMC.a (requested by Ian H.) * the initpydata.f routine is no longer compiled into the the HepMC library, but is still packaged with the other routines. The user needs to link to it explicitly. See the GNUmakefile.in in the examples directory for an example of how to do this. (requested by Ian H.) * ./src is replaced with $(top_srcdir)/src everywhere in the GNUmakefile.in Files changed this time: GNUmakefile.in, examples/GNUmakefile.in, Makefile.standalone, Changelog 2000-05-18 Matt Dobbs * HepMC/IO_BaseClass.h: There is now a fill_next_event method. - bool fill_next_event( GeneratorEvent* evt ) is a new abstract method which fills the passed event, and also returns true if successful. - GeneratorEvent* read_next_event() is now make concrete. it creates a new event, fills it using the above abstract method, and returns the event This change is backwards compatible since the method read_next_event() has identical behavior. Identical changes are made for the methods: - bool fill_particle_data_table( ParticleDataTable* pdt ) - ParticleDataTable* read_particle_data_table() The methods are updated [ i.e. GeneratorEvent* read_next_event() is changed to bool fill_next_event( GeneratorEvent* evt ), etc. ] in: - IO_HEPEVT.h - IO_Ascii.h - IO_PDG_ParticleDataTable.h - IO_HEPEVT.cxx - IO_Ascii.cxx - IO_PDG_ParticleDataTable.cxx (This change requested by Ian Hinchliffe and Marjorie Shapiro.) 2000-04-24 Matt Dobbs * HepMC/HEPEVT_Wrapper.h: set_momentum and set_position now properly cast input doubles as type HEPEVT_Precision, previously they were hardwired as cast to double, this meant writing to real*4 hepevt would fail. ****************************************************** Everything below this line corresponds to Version 0.91 ****************************************************** 2000-04-11 Matt Dobbs * doc/latex_user_manual/HepMC_user_manual.tex: User manual is updated to replect changes since V0.9 - HEPEVT and position in [mm] 2000-04-06 Matt Dobbs * examples/example_MyPythia.cxx * examples/example_MyPythiaOnlyToHepMC.cxx * examples/example_MyPythiaWithEventSelection.cxx: By commenting out the initpydata call (which may be required on some systems to initialize the Pythia PYDATA block data as external) the MyPythia examples now run on HPUX (and still on Linux). Have not tested other platforms. * Makefile: HPUX with gcc requires the -lf library which contains the fortran intrinsic function. 2000-04-05 Matt Dobbs The changes below will have no effect on the user or package, they just serve to remove warnings when compiling. * HepMC/Vertex.h: 313:342:364: warning: unused parameter `enum ::HepMC::IteratorRange dummy_range' (all dummy range parameters now appear as particles_end( IteratorRange /* dummy_range */ ) ) * src/IO_Ascii.cxx (HepMC): 506: warning: ANSI C++ forbids variable-size array `c' (the array is now declared as char* c = new char[key_length +1]; and deleted before returning) * HepMC/IO_PDG_ParticleDataTable.h: 53: warning: control reaches end of non-void function read_next_event() (this is a dummy function anyway -- return 0) * HepMC/IO_HEPEVT.h:55: (as above) * src/Flow.cxx (HepMC): 26: warning: default argument given for parameter 1 of `void ::HepMC::Flow::print(class ostream & = cout) const' (done) * HepMC/IO_HEPEVT.h:57: warning: base class `class ::HepMC::IO_BaseClass' should be explicitly initialized in the copy constructor (done) * HepMC/IO_Ascii.h: 98: (as above) * HepMC/IO_PDG_ParticleDataTable.h: 56: (as above) * HepMC/ParticleDataTable.h: 155: warning: suggest parentheses around assignment used as truth value (done) * src/IO_Ascii.cxx (HepMC): 37: warning: default argument given (removed default argument) * HepMC/Flow.h:21: warning: multiline `//' comment (added space after \ to remove compiler warning) * HepMC/Particle.h: removed =0 in the inline declaration inline void Particle::set_flow( int code_index, int code = 0 ) (caused warning). 2000-04-04 Matt Dobbs * HepMC/HEPEVT_Wrapper.h: HepMC/HEPEVT_Common.h: replace the classes HEPEVT_BaseClass.h HEPEVT_Double2000.h HEPEVT_Double4000.h HEPEVT_Real2000.h HEPEVT_Real4000.h Using different classes for each of the HEPEVT common block varieties proved very troublesome - users had trouble and 4 similar classes were being maintained. The new version uses only static methods and cannot be instantiated (logical since it has no data members). The HEPEVT common block is contained in the HepMC/HEPEVT_Common.h header. The precision and number of entries is specified using #define commands, default is double precision, 2000 entries. The user will see only one change - the IO_HEPEVT constructor now has no arguments, so he need not define the any HEPEVT_XXX class. He may need to set the precision and number of entries. See the header for instructions, and examples/example_MyPythia.cxx for an example. example_MyPythia.cxx, example_MyPythiaOnlyToHepMC.cxx, example_MyPythiaWithEventSelection.cxx are modified to take this into account. * HepMC/IO_HEPEVT.h: This class now extracts information from the fortran HEPEVT common using HEPEVT_Wrapper instead of having to pass it a class which inherits from the obsolete HEPEVT_BaseClass. 2000-04-03 Matt Dobbs * HepMC/PythiaWrapper5_720.h: Credit for writing the wrapper is to Silvia Resconi. Inclusion of HEPEVT wrapper header file is not necessary --- hence removed. 2000-03-31 Matt Dobbs * HepMC/ParticleData.h: clifetime is now represented in [mm] instead of [cm] ... previously HepMC had internal inconsistencies in this --- it claimed to use [cm], but sometimes used [mm] (as when it read from HEPEVT, and othertimes used [cm] (as when it transformed a width into a lifetime. Now all is consitent and [mm] is used everywhere as it should be. * HepMC/Vertex.h: src/ParticleData.cxx: Changed comments which say clifetime is in [cm], to say clifetime is in [mm]. * Makefile (CLHEPdir): Changed CLHEPdir = /afs/cern.ch/sw/lhcxx/specific/Linux/CLHEP/pro to CLHEPdir = /afs/cern.ch/sw/lhcxx/specific/@sys/CLHEP/dev to make it platform independent for CERN users. And some cosmetic changes to the Makefile. * HepMC/IO_BaseClass.h: Using the compiler options -ansi -pedantic cause this error: no match for `::HepMC::IO_Ascii & << ::HepMC::GeneratorEvent *&' Even though it recognizes: operator <<(::HepMC::IO_BaseClass &, const ::HepMC::GeneratorEvent *&) as the "best ". To fix this I make operator<<, operator>> members of the IO_BaseClass rather than friends, and I add versions where the argument of operator<< is not constant. This will not affect users in any way (unless they were using these compiler options, in which case HepMC didn't work anyway...) 2000-02-16 Matt Dobbs * GeneratorEvent.h: set_signal_process_vertex() modified to ensure that any vertex specified as signal process is ALSO in the m_vertices set. * This change log documents changes since Version 9 of HepMC was "released" February 11, 2000 pre 2000-02-16 Matt Dobbs Changes Before Version 0.9 (i.e. changes in going from V0.1 -->0.9) HepMC improvements: +backup V0.1 (done) +save particle data as id in Particle (done) +update IO strategies (done) +test (done) +backup (done) -change set in event to include all vertices (done) +change iterators to reflect this (done) +update IO strategies (done) +test (done) -fix all operator= to first destruct dependents. (done) -access functions to iterate over all flows (done) -check for stl namespace (done) grep -n cout HepMC/*.h src/*.cxx | grep -v std::cout | less -add Hepevt:write event (done) -implement lujet strategy (not done!) -update documentation -- enumerating recent changes. (done) -user manual written hepmc-2.06.09.orig/src/0000755000175000017500000000000011763470444015406 5ustar sylvestresylvestrehepmc-2.06.09.orig/src/GenEvent.cc0000644000175000017500000007011111715257770017432 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999 // Updated: 7.1.2000 iterators complete and working! // Updated: 10.1.2000 GenEvent::vertex, particle iterators are made // constant WRT this event ... note that // GenVertex::***_iterator is not const, since it must // be able to return a mutable pointer to itself. // Updated: 08.2.2000 the event now holds a set of all attached vertices // rather than just the roots of the graph // Event record for MC generators (for use at any stage of generation) ////////////////////////////////////////////////////////////////////////// #include #include "HepMC/GenEvent.h" #include "HepMC/GenCrossSection.h" #include "HepMC/Version.h" #include "HepMC/StreamHelpers.h" namespace HepMC { GenEvent::GenEvent( int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& random_states, Units::MomentumUnit mom, Units::LengthUnit len ) : m_signal_process_id(signal_process_id), m_event_number(event_number), m_mpi(-1), m_event_scale(-1), m_alphaQCD(-1), m_alphaQED(-1), m_signal_process_vertex(signal_vertex), m_beam_particle_1(0), m_beam_particle_2(0), m_weights(weights), m_random_states(random_states), m_vertex_barcodes(), m_particle_barcodes(), m_cross_section(0), m_heavy_ion(0), m_pdf_info(0), m_momentum_unit(mom), m_position_unit(len) { /// This constructor only allows null pointers to HeavyIon and PdfInfo /// /// note: default values for m_event_scale, m_alphaQCD, m_alphaQED /// are as suggested in hep-ph/0109068, "Generic Interface..." /// } GenEvent::GenEvent( int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& random_states, const HeavyIon& ion, const PdfInfo& pdf, Units::MomentumUnit mom, Units::LengthUnit len ) : m_signal_process_id(signal_process_id), m_event_number(event_number), m_mpi(-1), m_event_scale(-1), m_alphaQCD(-1), m_alphaQED(-1), m_signal_process_vertex(signal_vertex), m_beam_particle_1(0), m_beam_particle_2(0), m_weights(weights), m_random_states(random_states), m_vertex_barcodes(), m_particle_barcodes(), m_cross_section(0), m_heavy_ion( new HeavyIon(ion) ), m_pdf_info( new PdfInfo(pdf) ), m_momentum_unit(mom), m_position_unit(len) { /// GenEvent makes its own copy of HeavyIon and PdfInfo /// /// note: default values for m_event_scale, m_alphaQCD, m_alphaQED /// are as suggested in hep-ph/0109068, "Generic Interface..." } GenEvent::GenEvent( Units::MomentumUnit mom, Units::LengthUnit len, int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& random_states ) : m_signal_process_id(signal_process_id), m_event_number(event_number), m_mpi(-1), m_event_scale(-1), m_alphaQCD(-1), m_alphaQED(-1), m_signal_process_vertex(signal_vertex), m_beam_particle_1(0), m_beam_particle_2(0), m_weights(weights), m_random_states(random_states), m_vertex_barcodes(), m_particle_barcodes(), m_cross_section(0), m_heavy_ion(0), m_pdf_info(0), m_momentum_unit(mom), m_position_unit(len) { /// constructor requiring units - all else is default /// This constructor only allows null pointers to HeavyIon and PdfInfo /// /// note: default values for m_event_scale, m_alphaQCD, m_alphaQED /// are as suggested in hep-ph/0109068, "Generic Interface..." /// } GenEvent::GenEvent( Units::MomentumUnit mom, Units::LengthUnit len, int signal_process_id, int event_number, GenVertex* signal_vertex, const WeightContainer& weights, const std::vector& random_states, const HeavyIon& ion, const PdfInfo& pdf ) : m_signal_process_id(signal_process_id), m_event_number(event_number), m_mpi(-1), m_event_scale(-1), m_alphaQCD(-1), m_alphaQED(-1), m_signal_process_vertex(signal_vertex), m_beam_particle_1(0), m_beam_particle_2(0), m_weights(weights), m_random_states(random_states), m_vertex_barcodes(), m_particle_barcodes(), m_cross_section(0), m_heavy_ion( new HeavyIon(ion) ), m_pdf_info( new PdfInfo(pdf) ), m_momentum_unit(mom), m_position_unit(len) { /// explicit constructor with units first that takes HeavyIon and PdfInfo /// GenEvent makes its own copy of HeavyIon and PdfInfo /// /// note: default values for m_event_scale, m_alphaQCD, m_alphaQED /// are as suggested in hep-ph/0109068, "Generic Interface..." } GenEvent::GenEvent( const GenEvent& inevent ) : m_signal_process_id ( inevent.signal_process_id() ), m_event_number ( inevent.event_number() ), m_mpi ( inevent.mpi() ), m_event_scale ( inevent.event_scale() ), m_alphaQCD ( inevent.alphaQCD() ), m_alphaQED ( inevent.alphaQED() ), m_signal_process_vertex( /* inevent.m_signal_process_vertex */ ), m_beam_particle_1 ( /* inevent.m_beam_particle_1 */ ), m_beam_particle_2 ( /* inevent.m_beam_particle_2 */ ), m_weights ( /* inevent.m_weights */ ), m_random_states ( /* inevent.m_random_states */ ), m_vertex_barcodes ( /* inevent.m_vertex_barcodes */ ), m_particle_barcodes ( /* inevent.m_particle_barcodes */ ), m_cross_section ( inevent.cross_section() ? new GenCrossSection(*inevent.cross_section()) : 0 ), m_heavy_ion ( inevent.heavy_ion() ? new HeavyIon(*inevent.heavy_ion()) : 0 ), m_pdf_info ( inevent.pdf_info() ? new PdfInfo(*inevent.pdf_info()) : 0 ), m_momentum_unit ( inevent.momentum_unit() ), m_position_unit ( inevent.length_unit() ) { /// deep copy - makes a copy of all vertices! // // 1. create a NEW copy of all vertices from inevent // taking care to map new vertices onto the vertices being copied // and add these new vertices to this event. // We do not use GenVertex::operator= because that would copy // the attached particles as well. std::map map_in_to_new; for ( GenEvent::vertex_const_iterator v = inevent.vertices_begin(); v != inevent.vertices_end(); ++v ) { GenVertex* newvertex = new GenVertex( (*v)->position(), (*v)->id(), (*v)->weights() ); newvertex->suggest_barcode( (*v)->barcode() ); map_in_to_new[*v] = newvertex; add_vertex( newvertex ); } // 2. copy the signal process vertex info. if ( inevent.signal_process_vertex() ) { set_signal_process_vertex( map_in_to_new[inevent.signal_process_vertex()] ); } else set_signal_process_vertex( 0 ); // // 3. create a NEW copy of all particles from inevent // taking care to attach them to the appropriate vertex GenParticle* beam1(0); GenParticle* beam2(0); for ( GenEvent::particle_const_iterator p = inevent.particles_begin(); p != inevent.particles_end(); ++p ) { GenParticle* oldparticle = *p; GenParticle* newparticle = new GenParticle(*oldparticle); if ( oldparticle->end_vertex() ) { map_in_to_new[ oldparticle->end_vertex() ]-> add_particle_in(newparticle); } if ( oldparticle->production_vertex() ) { map_in_to_new[ oldparticle->production_vertex() ]-> add_particle_out(newparticle); } if ( oldparticle == inevent.beam_particles().first ) beam1 = newparticle; if ( oldparticle == inevent.beam_particles().second ) beam2 = newparticle; } set_beam_particles( beam1, beam2 ); // // 4. now that vtx/particles are copied, copy weights and random states set_random_states( inevent.random_states() ); weights() = inevent.weights(); } void GenEvent::swap( GenEvent & other ) { // if a container has a swap method, use that for improved performance std::swap(m_signal_process_id , other.m_signal_process_id ); std::swap(m_event_number , other.m_event_number ); std::swap(m_mpi , other.m_mpi ); std::swap(m_event_scale , other.m_event_scale ); std::swap(m_alphaQCD , other.m_alphaQCD ); std::swap(m_alphaQED , other.m_alphaQED ); std::swap(m_signal_process_vertex, other.m_signal_process_vertex); std::swap(m_beam_particle_1 , other.m_beam_particle_1 ); std::swap(m_beam_particle_2 , other.m_beam_particle_2 ); m_weights.swap( other.m_weights ); m_random_states.swap( other.m_random_states ); m_vertex_barcodes.swap( other.m_vertex_barcodes ); m_particle_barcodes.swap( other.m_particle_barcodes ); std::swap(m_cross_section , other.m_cross_section ); std::swap(m_heavy_ion , other.m_heavy_ion ); std::swap(m_pdf_info , other.m_pdf_info ); std::swap(m_momentum_unit , other.m_momentum_unit ); std::swap(m_position_unit , other.m_position_unit ); // must now adjust GenVertex back pointers for ( GenEvent::vertex_const_iterator vthis = vertices_begin(); vthis != vertices_end(); ++vthis ) { (*vthis)->change_parent_event_( this ); } for ( GenEvent::vertex_const_iterator voth = other.vertices_begin(); voth != other.vertices_end(); ++voth ) { (*voth)->change_parent_event_( &other ); } } GenEvent::~GenEvent() { /// Deep destructor. /// deletes all vertices/particles in this GenEvent /// deletes the associated HeavyIon and PdfInfo delete_all_vertices(); delete m_cross_section; delete m_heavy_ion; delete m_pdf_info; } GenEvent& GenEvent::operator=( const GenEvent& inevent ) { /// best practices implementation GenEvent tmp( inevent ); swap( tmp ); return *this; } void GenEvent::print( std::ostream& ostr ) const { /// dumps the content of this event to ostr /// to dump to cout use: event.print(); /// if you want to write this event to file outfile.txt you could use: /// std::ofstream outfile("outfile.txt"); event.print( outfile ); ostr << "________________________________________" << "________________________________________\n"; ostr << "GenEvent: #" << event_number() << " ID=" << signal_process_id() << " SignalProcessGenVertex Barcode: " << ( signal_process_vertex() ? signal_process_vertex()->barcode() : 0 ) << "\n"; write_units( ostr ); write_cross_section(ostr); ostr << " Entries this event: " << vertices_size() << " vertices, " << particles_size() << " particles.\n"; if( m_beam_particle_1 && m_beam_particle_2 ) { ostr << " Beam Particle barcodes: " << beam_particles().first->barcode() << " " << beam_particles().second->barcode() << " \n"; } else { ostr << " Beam Particles are not defined.\n"; } // Random State ostr << " RndmState(" << m_random_states.size() << ")="; for ( std::vector::const_iterator rs = m_random_states.begin(); rs != m_random_states.end(); ++rs ) { ostr << *rs << " "; } ostr << "\n"; // Weights ostr << " Wgts(" << weights().size() << ")="; weights().print(ostr); ostr << " EventScale " << event_scale() << " [energy] \t alphaQCD=" << alphaQCD() << "\t alphaQED=" << alphaQED() << std::endl; // print a legend to describe the particle info ostr << " GenParticle Legend\n"; ostr << " Barcode PDG ID " << "( Px, Py, Pz, E )" << " Stat DecayVtx\n"; ostr << "________________________________________" << "________________________________________\n"; // Print all Vertices for ( GenEvent::vertex_const_iterator vtx = this->vertices_begin(); vtx != this->vertices_end(); ++vtx ) { (*vtx)->print(ostr); } ostr << "________________________________________" << "________________________________________" << std::endl; } void GenEvent::print_version( std::ostream& ostr ) const { ostr << "---------------------------------------------" << std::endl; writeVersion( ostr ); ostr << "---------------------------------------------" << std::endl; } bool GenEvent::add_vertex( GenVertex* vtx ) { /// returns true if successful - generally will only return false /// if the inserted vertex is already included in the event. if ( !vtx ) return false; // if vtx previously pointed to another GenEvent, remove it from that // GenEvent's list if ( vtx->parent_event() && vtx->parent_event() != this ) { bool remove_status = vtx->parent_event()->remove_vertex( vtx ); if ( !remove_status ) { std::cerr << "GenEvent::add_vertex ERROR " << "GenVertex::parent_event points to \n" << "an event that does not point back to the " << "GenVertex. \n This probably indicates a deeper " << "problem. " << std::endl; } } // // setting the vertex parent also inserts the vertex into this // event vtx->set_parent_event_( this ); return ( m_vertex_barcodes.count(vtx->barcode()) ? true : false ); } bool GenEvent::remove_vertex( GenVertex* vtx ) { /// this removes vtx from the event but does NOT delete it. /// returns True if an entry vtx existed in the table and was erased if ( m_signal_process_vertex == vtx ) m_signal_process_vertex = 0; if ( vtx->parent_event() == this ) vtx->set_parent_event_( 0 ); return ( m_vertex_barcodes.count(vtx->barcode()) ? false : true ); } void GenEvent::clear() { /// remove all information from the event /// deletes all vertices/particles in this evt /// delete_all_vertices(); // remove existing objects and set pointers to null delete m_cross_section; m_cross_section = 0; delete m_heavy_ion; m_heavy_ion = 0; delete m_pdf_info; m_pdf_info = 0; m_signal_process_id = 0; m_beam_particle_1 = 0; m_beam_particle_2 = 0; m_event_number = 0; m_mpi = -1; m_event_scale = -1; m_alphaQCD = -1; m_alphaQED = -1; m_weights = std::vector(); m_random_states = std::vector(); // resetting unit information m_momentum_unit = Units::default_momentum_unit(); m_position_unit = Units::default_length_unit(); // error check just to be safe if ( m_vertex_barcodes.size() != 0 || m_particle_barcodes.size() != 0 ) { std::cerr << "GenEvent::clear() strange result ... \n" << "either the particle and/or the vertex map isn't empty" << std::endl; std::cerr << "Number vtx,particle the event after deleting = " << m_vertex_barcodes.size() << " " << m_particle_barcodes.size() << std::endl; } return; } void GenEvent::delete_all_vertices() { /// deletes all vertices in the vertex container /// (i.e. all vertices owned by this event) /// The vertices are the "owners" of the particles, so as we delete /// the vertices, the vertex desctructors are automatically /// deleting their particles. // delete each vertex individually (this deletes particles as well) while ( !vertices_empty() ) { GenVertex* vtx = ( m_vertex_barcodes.begin() )->second; m_vertex_barcodes.erase( m_vertex_barcodes.begin() ); delete vtx; } // // Error checking: if ( !vertices_empty() || ! particles_empty() ) { std::cerr << "GenEvent::delete_all_vertices strange result ... " << "after deleting all vertices, \nthe particle and " << "vertex maps aren't empty.\n This probably " << "indicates deeper problems or memory leak in the " << "code." << std::endl; std::cerr << "Number vtx,particle the event after deleting = " << m_vertex_barcodes.size() << " " << m_particle_barcodes.size() << std::endl; } } bool GenEvent::set_barcode( GenParticle* p, int suggested_barcode ) { if ( p->parent_event() != this ) { std::cerr << "GenEvent::set_barcode attempted, but the argument's" << "\n parent_event is not this ... request rejected." << std::endl; return false; } // M.Dobbs Nov 4, 2002 // First we must check to see if the particle already has a // barcode which is different from the suggestion. If yes, we // remove it from the particle map. if ( p->barcode() != 0 && p->barcode() != suggested_barcode ) { if ( m_particle_barcodes.count(p->barcode()) && m_particle_barcodes[p->barcode()] == p ) { m_particle_barcodes.erase( p->barcode() ); } // At this point either the particle is NOT in // m_particle_barcodes, or else it is in the map, but // already with the suggested barcode. } // // First case --- a valid barcode has been suggested // (valid barcodes are numbers greater than zero) bool insert_success = true; if ( suggested_barcode > 0 ) { if ( m_particle_barcodes.count(suggested_barcode) ) { // the suggested_barcode is already used. if ( m_particle_barcodes[suggested_barcode] == p ) { // but it was used for this particle ... so everythings ok p->set_barcode_( suggested_barcode ); return true; } insert_success = false; suggested_barcode = 0; } else { // suggested barcode is OK, proceed to insert m_particle_barcodes[suggested_barcode] = p; p->set_barcode_( suggested_barcode ); return true; } } // // Other possibility -- a valid barcode has not been suggested, // so one is automatically generated if ( suggested_barcode < 0 ) insert_success = false; if ( suggested_barcode <= 0 ) { if ( !m_particle_barcodes.empty() ) { // in this case we find the highest barcode that was used, // and increment it by 1 suggested_barcode = m_particle_barcodes.rbegin()->first; ++suggested_barcode; } // For the automatically assigned barcodes, the first one // we use is 10001 ... this is just because when we read // events from HEPEVT, we will suggest their index as the // barcode, and that index has maximum value 10000. // This way we will immediately be able to recognize the hepevt // particles from the auto-assigned ones. if ( suggested_barcode <= 10000 ) suggested_barcode = 10001; } // At this point we should have a valid barcode if ( m_particle_barcodes.count(suggested_barcode) ) { std::cerr << "GenEvent::set_barcode ERROR, this should never " << "happen \n report bug to matt.dobbs@cern.ch" << std::endl; } m_particle_barcodes[suggested_barcode] = p; p->set_barcode_( suggested_barcode ); return insert_success; } bool GenEvent::set_barcode( GenVertex* v, int suggested_barcode ) { if ( v->parent_event() != this ) { std::cerr << "GenEvent::set_barcode attempted, but the argument's" << "\n parent_event is not this ... request rejected." << std::endl; return false; } // M.Dobbs Nov 4, 2002 // First we must check to see if the vertex already has a // barcode which is different from the suggestion. If yes, we // remove it from the vertex map. if ( v->barcode() != 0 && v->barcode() != suggested_barcode ) { if ( m_vertex_barcodes.count(v->barcode()) && m_vertex_barcodes[v->barcode()] == v ) { m_vertex_barcodes.erase( v->barcode() ); } // At this point either the vertex is NOT in // m_vertex_barcodes, or else it is in the map, but // already with the suggested barcode. } // // First case --- a valid barcode has been suggested // (valid barcodes are numbers greater than zero) bool insert_success = true; if ( suggested_barcode < 0 ) { if ( m_vertex_barcodes.count(suggested_barcode) ) { // the suggested_barcode is already used. if ( m_vertex_barcodes[suggested_barcode] == v ) { // but it was used for this vertex ... so everythings ok v->set_barcode_( suggested_barcode ); return true; } insert_success = false; suggested_barcode = 0; } else { // suggested barcode is OK, proceed to insert m_vertex_barcodes[suggested_barcode] = v; v->set_barcode_( suggested_barcode ); return true; } } // // Other possibility -- a valid barcode has not been suggested, // so one is automatically generated if ( suggested_barcode > 0 ) insert_success = false; if ( suggested_barcode >= 0 ) { if ( !m_vertex_barcodes.empty() ) { // in this case we find the highest barcode that was used, // and increment it by 1, (vertex barcodes are negative) suggested_barcode = m_vertex_barcodes.rbegin()->first; --suggested_barcode; } if ( suggested_barcode >= 0 ) suggested_barcode = -1; } // At this point we should have a valid barcode if ( m_vertex_barcodes.count(suggested_barcode) ) { std::cerr << "GenEvent::set_barcode ERROR, this should never " << "happen \n report bug to matt.dobbs@cern.ch" << std::endl; } m_vertex_barcodes[suggested_barcode] = v; v->set_barcode_( suggested_barcode ); return insert_success; } /// test to see if we have two valid beam particles bool GenEvent::valid_beam_particles() const { bool have1 = false; bool have2 = false; // first check that both are defined if(m_beam_particle_1 && m_beam_particle_2) { // now look for a match with the particle "list" for ( particle_const_iterator p = particles_begin(); p != particles_end(); ++p ) { if( m_beam_particle_1 == *p ) have1 = true; if( m_beam_particle_2 == *p ) have2 = true; } } if( have1 && have2 ) return true; return false; } /// construct the beam particle information using pointers to GenParticle /// returns false if either GenParticle* is null bool GenEvent::set_beam_particles(GenParticle* bp1, GenParticle* bp2) { m_beam_particle_1 = bp1; m_beam_particle_2 = bp2; if( m_beam_particle_1 && m_beam_particle_2 ) return true; return false; } /// construct the beam particle information using a std::pair of pointers to GenParticle /// returns false if either GenParticle* is null bool GenEvent::set_beam_particles(std::pair const & bp) { return set_beam_particles(bp.first,bp.second); } void GenEvent::write_units( std::ostream & os ) const { os << " Momenutm units:" << std::setw(8) << name(momentum_unit()); os << " Position units:" << std::setw(8) << name(length_unit()); os << std::endl; } void GenEvent::write_cross_section( std::ostream& os ) const { // write the GenCrossSection information if the cross section was set if( !cross_section() ) return; if( cross_section()->is_set() ) { os << " Cross Section: " << cross_section()->cross_section() ; os << " +/- " << cross_section()->cross_section_error() ; os << std::endl; } } bool GenEvent::use_momentum_unit( Units::MomentumUnit newunit ) { // currently not exception-safe. // Easy to fix, though, if needed. if ( m_momentum_unit != newunit ) { const double factor = Units::conversion_factor( m_momentum_unit, newunit ); // multiply all momenta by 'factor', // loop is entered only if particle list is not empty for ( GenEvent::particle_iterator p = particles_begin(); p != particles_end(); ++p ) { (*p)->convert_momentum(factor); } // ... m_momentum_unit = newunit; } return true; } bool GenEvent::use_length_unit( Units::LengthUnit newunit ) { // currently not exception-safe. // Easy to fix, though, if needed. if ( m_position_unit != newunit ) { const double factor = Units::conversion_factor( m_position_unit, newunit ); // multiply all lengths by 'factor', // loop is entered only if vertex list is not empty for ( GenEvent::vertex_iterator vtx = vertices_begin(); vtx != vertices_end(); ++vtx ) { (*vtx)->convert_position(factor); } // ... m_position_unit = newunit; } return true; } bool GenEvent::use_momentum_unit( std::string& newunit ) { if ( newunit == "MEV" ) return use_momentum_unit( Units::MEV ); else if( newunit == "GEV" ) return use_momentum_unit( Units::GEV ); else std::cerr << "GenEvent::use_momentum_unit ERROR: use either MEV or GEV\n"; return false; } bool GenEvent::use_length_unit( std::string& newunit ) { if ( newunit == "MM" ) return use_length_unit( Units::MM ); else if( newunit == "CM" ) return use_length_unit( Units::CM ); else std::cerr << "GenEvent::use_length_unit ERROR: use either MM or CM\n"; return false; } void GenEvent::define_units( std::string& new_m, std::string& new_l ) { if ( new_m == "MEV" ) m_momentum_unit = Units::MEV ; else if( new_m == "GEV" ) m_momentum_unit = Units::GEV ; else std::cerr << "GenEvent::define_units ERROR: use either MEV or GEV\n"; if ( new_l == "MM" ) m_position_unit = Units::MM ; else if( new_l == "CM" ) m_position_unit = Units::CM ; else std::cerr << "GenEvent::define_units ERROR: use either MM or CM\n"; } bool GenEvent::is_valid() const { /// A GenEvent is presumed valid if it has both associated /// particles and vertices. No other information is checked. if ( vertices_empty() ) return false; if ( particles_empty() ) return false; return true; } std::ostream & GenEvent::write_beam_particles(std::ostream & os, std::pair pr ) { GenParticle* p = pr.first; if(!p) { detail::output( os, 0 ); } else { detail::output( os, p->barcode() ); } p = pr.second; if(!p) { detail::output( os, 0 ); } else { detail::output( os, p->barcode() ); } return os; } std::ostream & GenEvent::write_vertex(std::ostream & os, GenVertex const * v) { if ( !v || !os ) { std::cerr << "GenEvent::write_vertex !v||!os, " << "v="<< v << " setting badbit" << std::endl; os.clear(std::ios::badbit); return os; } // First collect info we need // count the number of orphan particles going into v int num_orphans_in = 0; for ( GenVertex::particles_in_const_iterator p1 = v->particles_in_const_begin(); p1 != v->particles_in_const_end(); ++p1 ) { if ( !(*p1)->production_vertex() ) ++num_orphans_in; } // os << 'V'; detail::output( os, v->barcode() ); // v's unique identifier detail::output( os, v->id() ); detail::output( os, v->position().x() ); detail::output( os, v->position().y() ); detail::output( os, v->position().z() ); detail::output( os, v->position().t() ); detail::output( os, num_orphans_in ); detail::output( os, (int)v->particles_out_size() ); detail::output( os, (int)v->weights().size() ); for ( WeightContainer::const_iterator w = v->weights().begin(); w != v->weights().end(); ++w ) { detail::output( os, *w ); } detail::output( os,'\n'); // incoming particles for ( GenVertex::particles_in_const_iterator p2 = v->particles_in_const_begin(); p2 != v->particles_in_const_end(); ++p2 ) { if ( !(*p2)->production_vertex() ) { write_particle( os, *p2 ); } } // outgoing particles for ( GenVertex::particles_out_const_iterator p3 = v->particles_out_const_begin(); p3 != v->particles_out_const_end(); ++p3 ) { write_particle( os, *p3 ); } return os; } std::ostream & GenEvent::write_particle( std::ostream & os, GenParticle const * p ) { if ( !p || !os ) { std::cerr << "GenEvent::write_particle !p||!os, " << "p="<< p << " setting badbit" << std::endl; os.clear(std::ios::badbit); return os; } os << 'P'; detail::output( os, p->barcode() ); detail::output( os, p->pdg_id() ); detail::output( os, p->momentum().px() ); detail::output( os, p->momentum().py() ); detail::output( os, p->momentum().pz() ); detail::output( os, p->momentum().e() ); detail::output( os, p->generated_mass() ); detail::output( os, p->status() ); detail::output( os, p->polarization().theta() ); detail::output( os, p->polarization().phi() ); // since end_vertex is oftentimes null, this CREATES a null vertex // in the map detail::output( os, ( p->end_vertex() ? p->end_vertex()->barcode() : 0 ) ); os << ' ' << p->flow() << "\n"; return os; } } // HepMC hepmc-2.06.09.orig/src/GenParticle.cc0000644000175000017500000002176711457664133020127 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999 // Updated: 07.02.2000 no longer does particle point to ParticleData, // but rather it uses an int id which can be looked up // particle within an event coming in/out of a vertex ////////////////////////////////////////////////////////////////////////// #include "HepMC/GenEvent.h" #include "HepMC/GenVertex.h" #include "HepMC/GenParticle.h" #include // needed for formatted output namespace HepMC { GenParticle::GenParticle( void ) : m_momentum(0), m_pdg_id(0), m_status(0), m_flow(this), m_polarization(0), m_production_vertex(0), m_end_vertex(0), m_barcode(0), m_generated_mass(0.) {} //{ //s_counter++; //} GenParticle::GenParticle( const FourVector& momentum, int pdg_id, int status, const Flow& itsflow, const Polarization& polar ) : m_momentum(momentum), m_pdg_id(pdg_id), m_status(status), m_flow(this), m_polarization(polar), m_production_vertex(0), m_end_vertex(0), m_barcode(0), m_generated_mass(momentum.m()) { // Establishing *this as the owner of m_flow is done above, // then we set it equal to the other flow pattern (subtle) set_flow(itsflow); //s_counter++; } GenParticle::GenParticle( const GenParticle& inparticle ) : m_momentum( inparticle.momentum() ), m_pdg_id( inparticle.pdg_id() ), m_status( inparticle.status() ), m_flow(inparticle.flow()), m_polarization( inparticle.polarization() ), m_production_vertex(0), m_end_vertex(0), m_barcode(0), m_generated_mass( inparticle.generated_mass() ) { /// Shallow copy: does not copy the vertex pointers /// (note - impossible to copy vertex pointers which having the vertex /// and particles in/out point-back to one another -- unless you /// copy the entire tree -- which we don't want to do) set_production_vertex_( 0 ); set_end_vertex_( 0 ); suggest_barcode( inparticle.barcode() ); //s_counter++; } GenParticle::~GenParticle() { if ( parent_event() ) parent_event()->remove_barcode(this); //s_counter--; } void GenParticle::swap( GenParticle & other) { // if a container has a swap method, use that for improved performance m_momentum.swap( other.m_momentum ); std::swap( m_pdg_id, other.m_pdg_id ); std::swap( m_status, other.m_status ); m_flow.swap( other.m_flow ); m_polarization.swap( other.m_polarization ); std::swap( m_production_vertex, other.m_production_vertex ); std::swap( m_end_vertex, other.m_end_vertex ); std::swap( m_barcode, other.m_barcode ); std::swap( m_generated_mass, other.m_generated_mass ); } GenParticle& GenParticle::operator=( const GenParticle& inparticle ) { /// Shallow: does not copy the vertex pointers /// (note - impossible to copy vertex pointers which having the vertex /// and particles in/out point-back to one another -- unless you /// copy the entire tree -- which we don't want to do) // best practices implementation GenParticle tmp( inparticle ); swap( tmp ); return *this; } bool GenParticle::operator==( const GenParticle& a ) const { /// consistent with the definition of the copy constructor as a shallow /// constructor,.. this operator does not test the vertex pointers. /// Does not compare barcodes. if ( a.momentum() != this->momentum() ) return false; if ( a.generated_mass() != this->generated_mass() ) return false; if ( a.pdg_id() != this->pdg_id() ) return false; if ( a.status() != this->status() ) return false; if ( a.m_flow != this->m_flow ) return false; if ( a.polarization() != this->polarization() ) return false; return true; } bool GenParticle::operator!=( const GenParticle& a ) const { return !( a == *this ); } void GenParticle::print( std::ostream& ostr ) const { /// Dump this particle's full info to ostr, where by default /// particle.print(); will dump to cout. ostr << "GenParticle: " << barcode() << " ID:" << pdg_id() << " (P,E)=" << momentum().px() << "," << momentum().py() << "," << momentum().pz() << "," << momentum().e() << " Stat:" << status(); if ( production_vertex() && production_vertex()->barcode()!=0 ) { ostr << " PV:" << production_vertex()->barcode(); } else ostr << " PV:" << production_vertex(); if ( end_vertex() && end_vertex()->barcode()!=0 ) { ostr << " EV:" << end_vertex()->barcode(); } else ostr << " EV:" << end_vertex(); ostr << " Pol:" << polarization() << " F:" << m_flow << std::endl; } GenEvent* GenParticle::parent_event() const { if ( production_vertex() ) return production_vertex()->parent_event(); if ( end_vertex() ) return end_vertex()->parent_event(); return 0; } void GenParticle::set_production_vertex_( GenVertex* prodvertex ) { GenEvent* its_orig_event = parent_event(); m_production_vertex = prodvertex; GenEvent* its_new_event = parent_event(); // Next bit of logic ensures the barcode maps are kept up to date // in the GenEvent containers. if ( its_orig_event != its_new_event ) { if ( its_new_event ) its_new_event->set_barcode( this, barcode() ); if ( its_orig_event ) its_orig_event->remove_barcode( this ); } } void GenParticle::set_end_vertex_( GenVertex* decayvertex ) { GenEvent* its_orig_event = parent_event(); m_end_vertex = decayvertex; GenEvent* its_new_event = parent_event(); if ( its_orig_event != its_new_event ) { if ( its_new_event ) its_new_event->set_barcode( this, barcode() ); if ( its_orig_event ) its_orig_event->remove_barcode( this ); } } bool GenParticle::suggest_barcode( int the_bar_code ) { /// allows a barcode to be suggested for this particle. /// In general it is better to let the event pick the barcode for /// you, which is automatic. /// Returns TRUE if the suggested barcode has been accepted (i.e. the /// suggested barcode has not already been used in the event, /// and so it was used). /// Returns FALSE if the suggested barcode was rejected, or if the /// particle is not yet part of an event, such that it is not yet /// possible to know if the suggested barcode will be accepted). if ( the_bar_code <0 ) { std::cerr << "GenParticle::suggest_barcode WARNING, particle bar " << "\n codes MUST be positive integers. Negative " << "\n integers are reserved for vertices only. Your " << "\n suggestion has been rejected." << std::endl; return false; } bool success = false; if ( parent_event() ) { success = parent_event()->set_barcode( this, the_bar_code ); } else { set_barcode_( the_bar_code ); } return success; } ///////////// // Static // ///////////// //unsigned int GenParticle::counter() { return s_counter; } //unsigned int GenParticle::s_counter = 0U; ///////////// // Friends // ///////////// /// Dump this particle's full info to ostr std::ostream& operator<<( std::ostream& ostr, const GenParticle& part ) { // find the current stream state std::ios_base::fmtflags orig = ostr.flags(); std::streamsize prec = ostr.precision(); ostr << " "; ostr.width(9); ostr << part.barcode(); ostr.width(9); ostr << part.pdg_id() << " "; ostr.width(9); ostr.precision(2); ostr.setf(std::ios::scientific, std::ios::floatfield); ostr.setf(std::ios_base::showpos); ostr << part.momentum().px() << ","; ostr.width(9); ostr << part.momentum().py() << ","; ostr.width(9); ostr << part.momentum().pz() << ","; ostr.width(9); ostr << part.momentum().e() << " "; ostr.setf(std::ios::fmtflags(0), std::ios::floatfield); ostr.unsetf(std::ios_base::showpos); if ( part.end_vertex() && part.end_vertex()->barcode()!=0 ) { ostr.width(3); ostr << part.status() << " "; ostr.width(9); ostr << part.end_vertex()->barcode(); } else if ( !part.end_vertex() ) { // There is no valid end_vertex // For consistency across different compilers, do not print anything ostr.width(3); ostr << part.status(); } else { // In this case the end_vertex does not have a unique // barcode assigned, so we choose instead to print its address ostr.width(3); ostr << part.status() << " "; ostr.width(9); ostr << (void*)part.end_vertex(); } // restore the stream state ostr.flags(orig); ostr.precision(prec); return ostr; } double GenParticle::generated_mass() const { return m_generated_mass; } void GenParticle::set_generated_mass( const double & m ) { m_generated_mass = m; } /// scale the momentum vector and generated mass /// this method is only for use by GenEvent void GenParticle::convert_momentum( const double & f ) { m_momentum = FourVector( f*m_momentum.px(), f*m_momentum.py(), f*m_momentum.pz(), f*m_momentum.e() ); if( m_generated_mass > 0. ) m_generated_mass = f*m_generated_mass; } } // HepMC hepmc-2.06.09.orig/src/Flow.cc0000644000175000017500000001472710711672003016622 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, January 2000 // particle's flow object ////////////////////////////////////////////////////////////////////////// #include "HepMC/Flow.h" #include "HepMC/GenParticle.h" #include "HepMC/GenVertex.h" #include "HepMC/SearchVector.h" namespace HepMC { Flow::Flow( GenParticle* particle_owner ) : m_particle_owner(particle_owner) {} Flow::Flow( const Flow& inflow ) : m_particle_owner(inflow.m_particle_owner), m_icode(inflow.m_icode) { /// copies both the m_icode AND the m_particle_owner } Flow::~Flow() { m_icode.clear(); } void Flow::swap( Flow & other) { std::swap( m_particle_owner, other.m_particle_owner ); m_icode.swap( other.m_icode ); } void Flow::print( std::ostream& ostr ) const { ostr << "Flow(" << m_particle_owner << "): " << *this << std::endl; } std::vector Flow::connected_partners( int code, int code_index, int num_indices ) const { /// Returns all flow partners which have "code" in any of the /// num_indices beginning with index code_index. /// m_particle_owner is included in the result. /// Return is by value since the set should never be very big. /// EXAMPLE: if you want to find all flow partners that have the same /// code in indices 2,3,4 as particle p has in index 2, you would use: /// set result = /// p->flow().connected_partners(p->flow().icode(2),2,3); // std::vector output; for ( int i = code_index; i!=code_index+num_indices; ++i ) { if ( icode(i)==code ) { output.push_back(m_particle_owner); connected_partners( &output, code, code_index, num_indices ); break; } } return output; } void Flow::connected_partners( std::vector* output, int code, int code_index, int num_indices ) const { /// protected: for recursive use by Flow::connected_partners() // if ( !m_particle_owner ) return; // nothing to do // look for connected partners joined to this m_particle_owner // through its end_vertex if ( m_particle_owner->end_vertex() ) { for ( GenVertex::particle_iterator p = m_particle_owner->end_vertex()->particles_begin(family); p != m_particle_owner->end_vertex()->particles_end(family); ++p ) { // if the particle has the correct flow code and is not yet in // the set, then we recursively call connected_partners for ( int index = code_index; index!=code_index+num_indices; ++index ){ if ( (*p)->flow(index)==code && not_in_vector(output,(*p)) ) { output->push_back(*p); (*p)->flow().connected_partners( output, code, code_index, num_indices ); } } } } // same for production_vertex if ( m_particle_owner->production_vertex() ) { for ( GenVertex::particle_iterator p = m_particle_owner->production_vertex()-> particles_begin( family ); p != m_particle_owner->production_vertex()-> particles_end( family ); ++p ) { // if the particle has the correct flow code and is not yet in // the set, then we recursively call connected_partners for ( int index = code_index; index!=code_index+num_indices; ++index ){ if ( (*p)->flow(index)==code && not_in_vector(output,(*p)) ) { output->push_back(*p); (*p)->flow().connected_partners( output, code, code_index, num_indices ); } } } } } std::vector Flow::dangling_connected_partners( int code, int code_index, int num_indices ) const { std::vector output; std::vector visited_particles; for ( int i = code_index; i!=code_index+num_indices; ++i ) { if ( icode(i)==code ) { visited_particles.push_back(m_particle_owner); dangling_connected_partners( &output, &visited_particles, code, code_index, num_indices ); break; } } return output; } void Flow::dangling_connected_partners( std::vector* output, std::vector* visited_particles, int code, int code_index, int num_indices ) const { /// protected: for recursive use by Flow::dangling_connected_partners // if ( !m_particle_owner ) return; // nothing to do int count_partners = 0; // look for connected partners joined to this m_particle_owner // through its end_vertex if ( m_particle_owner->end_vertex() ) { for ( GenVertex::particle_iterator p = m_particle_owner->end_vertex()->particles_begin(family); p != m_particle_owner->end_vertex()->particles_end(family); ++p ) { // if the particle has the correct flow code and is not yet in // the set, then we recursively call connected_partners for ( int index = code_index; index!=code_index+num_indices; ++index ){ if ( (*p)->flow(index)==code ) { if ( *p!=m_particle_owner ) ++count_partners; if ( not_in_vector(visited_particles,(*p)) ) { visited_particles->push_back(*p); (*p)->flow().dangling_connected_partners( output, visited_particles, code, code_index, num_indices ); } } } } } // same for production_vertex if ( m_particle_owner->production_vertex() ) { for ( GenVertex::particle_iterator p = m_particle_owner-> production_vertex()-> particles_begin( family ); p != m_particle_owner->production_vertex()-> particles_end( family ); ++p ) { // if the particle has the correct flow code and is not yet in // the set, then we recursively call connected_partners for ( int index = code_index; index!=code_index+num_indices; ++index ){ if ( (*p)->flow(index)==code ) { if ( *p!=m_particle_owner ) ++count_partners; if ( not_in_vector(visited_particles,(*p)) ) { visited_particles->push_back(*p); (*p)->flow().dangling_connected_partners( output, visited_particles, code, code_index, num_indices ); } } } } } if ( count_partners <= 1 ) output->push_back( m_particle_owner ); } ///////////// // Friends // ///////////// /// send Flow informatin to ostr for printing std::ostream& operator<<( std::ostream& ostr, const Flow& f ) { ostr << f.m_icode.size(); for ( std::map::const_iterator i = f.m_icode.begin(); i != f.m_icode.end(); ++i ) { ostr << " " << (*i).first << " " << (*i).second; } return ostr; } } // HepMC hepmc-2.06.09.orig/src/Polarization.cc0000644000175000017500000000724611374257600020374 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999 // // Polarization object for a particle. All angles are in radians. ////////////////////////////////////////////////////////////////////////// #include "HepMC/Polarization.h" namespace HepMC { Polarization::Polarization( ) : m_theta( 0. ), m_phi( 0. ), m_defined( false ) { } Polarization::Polarization( double theta, double phi ) : m_theta( valid_theta(theta) ), m_phi ( valid_phi(phi) ), m_defined( true ) { } Polarization::Polarization( const Polarization& inpolar ) : m_theta( valid_theta( inpolar.theta() ) ), m_phi ( valid_phi( inpolar.phi() ) ), m_defined( inpolar.is_defined() ) { } Polarization::Polarization( const ThreeVector& vec3in ) : m_theta( valid_theta( vec3in.theta() ) ), m_phi ( valid_phi( vec3in.phi() ) ), m_defined( true ) { } void Polarization::swap( Polarization & other) { std::swap( m_theta, other.m_theta ); std::swap( m_phi, other.m_phi ); std::swap( m_defined, other.m_defined ); } Polarization& Polarization::operator=( const Polarization& inpolar ) { /// best practices implementation Polarization tmp( inpolar ); swap( tmp ); return *this; } void Polarization::print( std::ostream& ostr ) const { ostr << "Polarization: " << *this << std::endl; } //////////////////// // access methods // //////////////////// ThreeVector Polarization::normal3d() const { // unit Hep3Vector for easy manipulation ThreeVector outvec(0,0,1); // makes unit vector along Z outvec.setTheta( theta() ); // sets phi keeping mag and theta constant outvec.setPhi( phi() ); // sets theta keeping mag and phi constant return outvec; } double Polarization::set_theta( double theta ) { /// Theta is restricted to be between 0 --> pi /// if an out of range value is given, it is translated to this range. return m_theta = valid_theta( theta ); } double Polarization::set_phi( double phi ) { /// Phi is restricted to be between 0 --> 2pi /// if an out of range value is given, it is translated to this range. return m_phi = valid_phi( phi ); } bool Polarization::is_defined( ) const { return m_defined; } void Polarization::set_undefined() { m_defined = false; m_theta = 0.; m_phi = 0.; } void Polarization::set_theta_phi( double theta, double phi ) { set_theta( theta ); set_phi( phi ) ; m_defined = true; } ThreeVector Polarization::set_normal3d( const ThreeVector& vec3in ) { set_theta( vec3in.theta() ); set_phi( vec3in.phi() ); m_defined = true; return vec3in; } ///////////////////// // private methods // ///////////////////// double Polarization::valid_theta( double theta ) { // this is just absolute value. theta = ( theta>0 ? theta : -theta ); // translate to 0 < theta < 2pi theta = ( theta/(2*HepMC_pi) - int(theta/(2*HepMC_pi)) ) * 2*HepMC_pi; // now translate to 0 < theta < pi if ( theta > HepMC_pi ) theta = 2*HepMC_pi - theta; return theta; } double Polarization::valid_phi( double phi ) { // // translate to -2pi < phi < 2pi phi = ( phi/(2*HepMC_pi) - int(phi/(2*HepMC_pi)) ) * 2*HepMC_pi; // translates to 0 < phi < 2pi if ( phi < 0 ) phi = 2*HepMC_pi + phi; return phi; } ///////////// // Friends // ///////////// /// write theta and phi to the output stream std::ostream& operator<<( std::ostream& ostr, const Polarization& polar ) { return ostr << "(" << polar.theta() << "," << polar.phi() << ")"; } } // HepMC hepmc-2.06.09.orig/src/CMakeLists.txt0000644000175000017500000000176611663022435020150 0ustar sylvestresylvestre set ( hepmc_source_list CompareGenEvent.cc Flow.cc GenEvent.cc GenEventStreamIO.cc GenParticle.cc GenCrossSection.cc GenVertex.cc GenRanges.cc HeavyIon.cc IO_AsciiParticles.cc IO_GenEvent.cc PdfInfo.cc Polarization.cc SearchVector.cc StreamHelpers.cc StreamInfo.cc ${CMAKE_CURRENT_BINARY_DIR}/Units.cc WeightContainer.cc ) configure_file( Units.cc.in ${CMAKE_CURRENT_BINARY_DIR}/Units.cc @ONLY ) ADD_LIBRARY (HepMC SHARED ${hepmc_source_list}) ADD_LIBRARY (HepMCS STATIC ${hepmc_source_list}) SET_TARGET_PROPERTIES (HepMC PROPERTIES OUTPUT_NAME HepMC ) SET_TARGET_PROPERTIES (HepMC PROPERTIES VERSION 4.0.0 SOVERSION 4 ) SET_TARGET_PROPERTIES (HepMCS PROPERTIES OUTPUT_NAME HepMC ) SET_TARGET_PROPERTIES(HepMC PROPERTIES CLEAN_DIRECT_OUTPUT 1) SET_TARGET_PROPERTIES(HepMCS PROPERTIES CLEAN_DIRECT_OUTPUT 1) INSTALL (TARGETS HepMC HepMCS RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib ) hepmc-2.06.09.orig/src/Makefile.in0000644000175000017500000004127611763470444017465 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/Units.cc.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = Units.cc am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(libdir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) libHepMC_la_LIBADD = am_libHepMC_la_OBJECTS = CompareGenEvent.lo Flow.lo GenEvent.lo \ GenEventStreamIO.lo GenParticle.lo GenCrossSection.lo \ GenVertex.lo GenRanges.lo HeavyIon.lo IO_AsciiParticles.lo \ IO_GenEvent.lo PdfInfo.lo Polarization.lo SearchVector.lo \ StreamHelpers.lo StreamInfo.lo Units.lo WeightContainer.lo libHepMC_la_OBJECTS = $(am_libHepMC_la_OBJECTS) DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/HepMC depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libHepMC_la_SOURCES) DIST_SOURCES = $(libHepMC_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INCLUDES = -I$(top_builddir) -I$(top_srcdir) libHepMC_la_SOURCES = \ CompareGenEvent.cc \ Flow.cc \ GenEvent.cc \ GenEventStreamIO.cc \ GenParticle.cc \ GenCrossSection.cc \ GenVertex.cc \ GenRanges.cc \ HeavyIon.cc \ IO_AsciiParticles.cc \ IO_GenEvent.cc \ PdfInfo.cc \ Polarization.cc \ SearchVector.cc \ StreamHelpers.cc \ StreamInfo.cc \ Units.cc \ WeightContainer.cc lib_LTLIBRARIES = libHepMC.la @BUILD_VISUAL_FALSE@lib_shared = libHepMC.so @BUILD_VISUAL_TRUE@lib_shared = HepMC.$(SHEXT) # shared library versioning libHepMC_la_LDFLAGS = $(LIBRARY_VERSION) all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh Units.cc: $(top_builddir)/config.status $(srcdir)/Units.cc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libHepMC.la: $(libHepMC_la_OBJECTS) $(libHepMC_la_DEPENDENCIES) $(CXXLINK) -rpath $(libdir) $(libHepMC_la_LDFLAGS) $(libHepMC_la_OBJECTS) $(libHepMC_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CompareGenEvent.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Flow.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenCrossSection.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenEvent.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenEventStreamIO.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenParticle.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenRanges.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GenVertex.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HeavyIon.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IO_AsciiParticles.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IO_GenEvent.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PdfInfo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Polarization.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SearchVector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StreamHelpers.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StreamInfo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Units.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WeightContainer.Plo@am__quote@ .cc.o: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-exec-am: install-libLTLIBRARIES install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-info-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/src/CompareGenEvent.cc0000644000175000017500000001527011374257600020737 0ustar sylvestresylvestre///////////////////////////////////////////////////////////////////////// // CompareGenEvent.cc // // garren@fnal.gov, January 2008 // Free functions used to compare two copies of GenEvent ////////////////////////////////////////////////////////////////////////// // #include #include "HepMC/CompareGenEvent.h" #include "HepMC/GenEvent.h" namespace HepMC { bool compareGenEvent( GenEvent* e1, GenEvent* e2) { //std::cout << "compareGenEvent: comparing event " << e1->event_number() << " to event " // << e2->event_number() << std::endl; if( e1->event_number() != e2->event_number() ) { std::cerr << "compareGenEvent: event numbers differ " << std::endl; return false; } if( e1->signal_process_id() != e2->signal_process_id() ) { std::cerr << "compareGenEvent: signal process ids differ " << std::endl; return false; } if( e1->event_scale() != e2->event_scale() ) { std::cerr << "compareGenEvent: event scales differ " << std::endl; return false; } if( e1->alphaQCD() != e2->alphaQCD() ) { std::cerr << "compareGenEvent: alphaQCD differs " << std::endl; return false; } if( e1->alphaQED() != e2->alphaQED() ) { std::cerr << "alphaQED differs " << std::endl; return false; } if( e1->mpi() != e2->mpi() ) { std::cerr << "compareGenEvent: mpi differs " << std::endl; return false; } if ( !compareSignalProcessVertex( e1, e2 ) ) { return false; } if ( !compareBeamParticles( e1, e2 ) ) { return false; } if ( !compareWeights( e1, e2 ) ) { return false; } if( e1->random_states() != e2->random_states() ) { std::cerr << "compareGenEvent: random states differ " << std::endl; return false; } if( e1->heavy_ion() != e2->heavy_ion() ) { std::cerr << "compareGenEvent: heavy ions differ " << std::endl; return false; } if( e1->pdf_info() != e2->pdf_info() ) { std::cerr << "compareGenEvent: pdf info differs " << std::endl; return false; } if ( !compareParticles( e1, e2 ) ) { return false; } if ( !compareVertices( e1, e2 ) ) { return false; } return true; } bool compareSignalProcessVertex( GenEvent* e1, GenEvent* e2 ) { // compare signal process vertex GenVertex* s1 = e1->signal_process_vertex(); GenVertex* s2 = e2->signal_process_vertex(); if( s1 && s2 ) { if( (*s1) != (*s2) ) { std::cerr << "compareSignalProcessVertex: signal process vertices differ " << std::endl; return false; } } return true; } bool compareBeamParticles( GenEvent* e1, GenEvent* e2 ) { GenParticle* e1b1 = e1->beam_particles().first; GenParticle* e1b2 = e1->beam_particles().second; GenParticle* e2b1 = e2->beam_particles().first; GenParticle* e2b2 = e2->beam_particles().second; if( e1b1 && e1b2 && e2b1 && e2b2 ) { if( (*e1b1) == (*e2b1) && (*e1b2) == (*e2b2) ) { } else { std::cerr << "compareBeamParticles: beam particles differ " << std::endl; return false; } } return true; } bool compareWeights( GenEvent* e1, GenEvent* e2 ) { if( e1->weights() == e2->weights() ) return true; std::cerr << "compareWeights: weight containers differ " << std::endl; return false; } bool compareParticles( GenEvent* e1, GenEvent* e2 ) { if( e1->particles_size() != e2->particles_size() ) { std::cerr << "compareParticles: number of particles differs " << std::endl; return false; } if( e1->particles_size() == 0 ) { return true; } for ( GenEvent::particle_const_iterator p1 = e1->particles_begin(), p2 = e2->particles_begin(); p1 != e1->particles_end(); ++p1, ++p2 ) { /* std::cout << "compareParticles: particle " << (*p1)->barcode() << " " << (*p2)->barcode() << std::endl; */ if ( **p1 != **p2 ) { std::cerr << "compareParticles: particle " << (*p1)->barcode() << " differs from " << (*p2)->barcode() << std::endl; return false; } } return true; } bool compareVertices( GenEvent* e1, GenEvent* e2 ) { if( e1->vertices_size() != e2->vertices_size() ) { std::cerr << "compareVertices: number of vertices differs " << std::endl; return false; } for ( GenEvent::vertex_const_iterator v = e1->vertices_begin(); v != e1->vertices_end(); ++v ) { //std::cout << "compareVertices: comparing vertex " // << (*v)->barcode() << std::endl; GenVertex* v1 = (*v); GenVertex* v2 = e2->barcode_to_vertex((*v)->barcode()); compareVertex( (*v), e2->barcode_to_vertex((*v)->barcode())); if ( (*v1) != (*v2) ) { std::cerr << "compareVertices: vertex " << (*v)->barcode() << " differs" << std::endl; return false; } } return true; } bool compareVertex( GenVertex* v1, GenVertex* v2 ) { if ( v1->position() != v2->position() ) { std::cerr << "compareVertex: position " << v1->barcode() << " differs" << std::endl; return false; } // if the size of the inlist differs, return false. if ( v1->particles_in_size() != v2->particles_in_size() ) { std::cerr << "compareVertex: particles_in_size " << v1->barcode() << " differs" << std::endl; return false; } // loop over the inlist and ensure particles are identical if ( v1->particles_in_const_begin() != v1->particles_in_const_end() ) { for ( GenVertex::particles_in_const_iterator ia = v1->particles_in_const_begin(), ib = v2->particles_in_const_begin(); ia != v1->particles_in_const_end(); ia++, ib++ ){ if ( **ia != **ib ) { std::cerr << "compareVertex: incoming particle " << v1->barcode() << " differs: " << (*ia)->barcode() << " " << (*ib)->barcode() << std::endl; //return false; } } } // if the size of the outlist differs, return false. if ( v1->particles_out_size() != v2->particles_out_size() ) { std::cerr << "compareVertex: particles_out_size " << v1->barcode() << " differs" << std::endl; return false; } // loop over the outlist and ensure particles are identical if ( v1->particles_out_const_begin() != v1->particles_out_const_end() ) { for ( GenVertex::particles_out_const_iterator ia = v1->particles_out_const_begin(), ib = v2->particles_out_const_begin(); ia != v1->particles_out_const_end(); ia++, ib++ ){ if ( **ia != **ib ) { std::cerr << "compareVertex: outgoing particle " << v1->barcode() << " differs: " << (*ia)->barcode() << " " << (*ib)->barcode() << std::endl; //return false; } } } return true; } } // HepMC hepmc-2.06.09.orig/src/filterEvent.cc0000644000175000017500000000567311374257600020212 0ustar sylvestresylvestre// from Andy Buckley #include "HepMC/GenEvent.h" void filterEvent(HepMC::GenEvent* ge) { // We treat beam particles a bit specially const std::pair beams = ge->beam_particles(); // Make list of non-physical particle entries std::vector unphys_particles; for (HepMC::GenEvent::particle_const_iterator pi = ge->particles_begin(); pi != ge->particles_end(); ++pi) { // Beam particles might not have status = 4, but we want them anyway if (beams.first == *pi || beams.second == *pi) continue; // Filter by status const int status = (*pi)->status(); if (status != 1 && status != 2 && status != 4) { unphys_particles.push_back(*pi); } } // Remove each unphysical particle from the list while (unphys_particles.size()) { HepMC::GenParticle* gp = unphys_particles.back(); // Get start and end vertices HepMC::GenVertex* vstart = gp->production_vertex(); HepMC::GenVertex* vend = gp->end_vertex(); if (vend == vstart) { // Deal with loops vstart->remove_particle(gp); } else { // Connect decay particles from end vertex to start vertex /// @todo Have to build a list, since the GV::add_particle_out method modifies the end vertex! if (vend && vend->particles_out_size()) { std::vector end_particles; for (HepMC::GenVertex::particles_out_const_iterator gpe = vend->particles_out_const_begin(); gpe != vend->particles_out_const_end(); ++gpe) { end_particles.push_back(*gpe); } // Reset production vertices of child particles to bypass unphysical particle for (std::vector::const_iterator gpe = end_particles.begin(); gpe != end_particles.end(); ++gpe) { //std::cout << vstart << ", " << vend << std::endl; if (vstart) vstart->add_particle_out(*gpe); } } else { // If null end_vertex... stable unphysical particle? } // Delete unphysical particle and its orphaned end vertex delete vend; if (vstart) { delete vstart->remove_particle(gp); }// else { /// @todo Why does this cause an error? // delete gp; //} } // Remove deleted particle from list unphys_particles.pop_back(); //std::cout << unphys_particles.size() << std::endl; } // Delete any orphaned vertices std::vector orphaned_vtxs; for (HepMC::GenEvent::vertex_const_iterator vi = ge->vertices_begin(); vi != ge->vertices_end(); ++vi) { if ((*vi)->particles_in_size() == 0 && (*vi)->particles_out_size() == 0) { orphaned_vtxs.push_back(*vi); } } while (orphaned_vtxs.size()) { delete orphaned_vtxs.back(); orphaned_vtxs.pop_back(); } } hepmc-2.06.09.orig/src/StreamInfo.cc0000644000175000017500000000333011374257600017756 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // StreamInfo.cc // Author: Lynn Garren // // ---------------------------------------------------------------------- #include #include "HepMC/StreamInfo.h" namespace HepMC { StreamInfo::StreamInfo( ) : m_finished_first_event_io(false), m_io_genevent_start("HepMC::IO_GenEvent-START_EVENT_LISTING"), m_io_ascii_start("HepMC::IO_Ascii-START_EVENT_LISTING"), m_io_extendedascii_start("HepMC::IO_ExtendedAscii-START_EVENT_LISTING"), m_io_genevent_end("HepMC::IO_GenEvent-END_EVENT_LISTING"), m_io_ascii_end("HepMC::IO_Ascii-END_EVENT_LISTING"), m_io_extendedascii_end("HepMC::IO_ExtendedAscii-END_EVENT_LISTING"), m_io_ascii_pdt_start("HepMC::IO_Ascii-START_PARTICLE_DATA"), m_io_extendedascii_pdt_start("HepMC::IO_ExtendedAscii-START_PARTICLE_DATA"), m_io_ascii_pdt_end("HepMC::IO_Ascii-END_PARTICLE_DATA"), m_io_extendedascii_pdt_end("HepMC::IO_ExtendedAscii-END_PARTICLE_DATA"), m_io_type(0), m_has_key(true), m_io_momentum_unit(Units::default_momentum_unit()), m_io_position_unit(Units::default_length_unit()), m_stream_id(m_stream_counter), m_reading_event_header(false) { ++m_stream_counter; } /// static counter unsigned int StreamInfo::m_stream_counter = 0; void StreamInfo::use_input_units( Units::MomentumUnit mom, Units::LengthUnit len ) { m_io_momentum_unit = mom; m_io_position_unit = len; } void StreamInfo::set_io_type( int io ) { m_io_type = io; } void StreamInfo::set_has_key( bool io ) { m_has_key = io; } bool StreamInfo::reading_event_header() { return m_reading_event_header; } void StreamInfo::set_reading_event_header(bool tf) { m_reading_event_header = tf; } } // HepMC hepmc-2.06.09.orig/src/GenRanges.cc0000644000175000017500000000412611401307025017550 0ustar sylvestresylvestre//-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, March 2010 // ////////////////////////////////////////////////////////////////////////// //-------------------------------------------------------------------------- #include #include "HepMC/GenRanges.h" #include "HepMC/GenEvent.h" #include "HepMC/GenVertex.h" namespace HepMC { GenEventVertexRange GenEvent::vertex_range() { return GenEventVertexRange(*this); } ConstGenEventVertexRange GenEvent::vertex_range() const { return ConstGenEventVertexRange(*this); } GenEventParticleRange GenEvent::particle_range() { return GenEventParticleRange(*this); } ConstGenEventParticleRange GenEvent::particle_range() const { return ConstGenEventParticleRange(*this); } GenVertexParticleRange GenVertex::particles( IteratorRange range ) { return GenVertexParticleRange(*this,range); } GenParticleProductionRange GenVertex::particles_in( GenParticle& p, IteratorRange range ) { return GenParticleProductionRange(p,range); } ConstGenParticleProductionRange GenVertex:: particles_in( GenParticle const & p, IteratorRange range ) const { return ConstGenParticleProductionRange(p,range); } GenParticleEndRange GenVertex::particles_out( GenParticle& p, IteratorRange range ) { return GenParticleEndRange(p,range); } ConstGenParticleEndRange GenVertex::particles_out( GenParticle const & p, IteratorRange range ) const { return ConstGenParticleEndRange(p,range); } GenParticleProductionRange GenParticle::particles_in( IteratorRange range ) { return GenParticleProductionRange(*this,range); } ConstGenParticleProductionRange GenParticle::particles_in( IteratorRange range ) const { return ConstGenParticleProductionRange(*this,range); } GenParticleEndRange GenParticle::particles_out( IteratorRange range ) { return GenParticleEndRange(*this,range); } ConstGenParticleEndRange GenParticle::particles_out( IteratorRange range ) const { return ConstGenParticleEndRange(*this,range); } } // HepMC hepmc-2.06.09.orig/src/IO_AsciiParticles.cc0000644000175000017500000001751111374257600021203 0ustar sylvestresylvestre//-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////////// // Mikhail.Kirsanov@Cern.CH, 2006 // event input/output in ascii format for eye and machine reading // // for arguments mostly similar to IO_Ascii. Special value of // argument filename in constructor: if it is "cout" the output is to std::cout ////////////////////////////////////////////////////////////////////////////// #include "HepMC/IO_AsciiParticles.h" #include "HepMC/GenEvent.h" #include "HepMC/Version.h" namespace HepMC { IO_AsciiParticles::IO_AsciiParticles( const char* filename, std::ios::openmode mode ) : m_precision(2), m_mode(mode), m_finished_first_event_io(0) { if(std::string(filename) == std::string("cout")) { m_outstream = &(std::cout); m_file = 0; } else { m_file = new std::fstream(filename, mode); m_outstream = m_file; if ( (m_mode&std::ios::out && m_mode&std::ios::in) || (m_mode&std::ios::app && m_mode&std::ios::in) ) { std::cerr << "IO_AsciiParticles::IO_AsciiParticles Error, open of file requested " << "of input AND output type. Not allowed. Closing file." << std::endl; m_file->close(); delete m_file; return; } } // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double // with precision <= 2 the width of output will be < 80 characters m_outstream->precision(m_precision); // we use decimal to store integers, because it is smaller than hex! m_outstream->setf(std::ios::dec,std::ios::basefield); m_outstream->setf(std::ios::scientific,std::ios::floatfield); } IO_AsciiParticles::~IO_AsciiParticles() { if(m_file) { m_file->close(); delete m_file; } } void IO_AsciiParticles::print( std::ostream& ostr ) const { ostr << "IO_AsciiParticles: formated ascii file IO for eye and machine reading.\n" << "\tFile openmode: " << m_mode << " file state: " << m_outstream->rdstate() << " bad:" << (m_outstream->rdstate()&std::ios::badbit) << " eof:" << (m_outstream->rdstate()&std::ios::eofbit) << " fail:" << (m_outstream->rdstate()&std::ios::failbit) << " good:" << (m_outstream->rdstate()&std::ios::goodbit) << std::endl; } void IO_AsciiParticles::write_event( const GenEvent* evt ) { // Writes evt to m_outstream. It does NOT delete the event after writing. // // check the state of m_outstream is good, and that it is in output mode if ( !evt || !m_outstream ) return; if ( !(m_mode&std::ios::out) ) { std::cerr << "HepMC::IO_AsciiParticles::write_event " << " attempt to write to input file." << std::endl; return; } // // write event listing key before first event only. if ( !m_finished_first_event_io ) { m_finished_first_event_io = 1; *m_outstream << "0 Run HepMC::IO_AsciiParticles eye-readable events output" << std::endl; *m_outstream << "# HepMC::Version " << versionName() << std::endl; *m_outstream << " # stat pdg moth1 px py pz energy mass eta" << std::endl; } // // output the event data std::vector random_states = evt->random_states(); *m_outstream << evt->event_number() << " Event" << std::endl; #if 0 *m_outstream << " " << evt->event_scale(); output( evt->alphaQCD() ); output( evt->alphaQED() ); output( evt->signal_process_id() ); output( ( evt->signal_process_vertex() ? evt->signal_process_vertex()->barcode() : 0 ) ); output( evt->vertices_size() ); // total number of vertices. output( (int)random_states.size() ); for ( std::vector::iterator rs = random_states.begin(); rs != random_states.end(); ++rs ) { output( *rs ); } output( (int)evt->weights().size() ); for ( WeightContainer::const_iterator w = evt->weights().begin(); w != evt->weights().end(); ++w ) { output( *w ); } output('\n'); #endif // int nparticles=0, imoth=0, ip=0, istati; double xmassi, etai; *m_outstream << evt->particles_size() << " particles" << std::endl; GenVertex* orig; for(HepMC::GenEvent::particle_const_iterator part = evt->particles_begin(); part != evt->particles_end(); ++part ) { //if( (*part)->status() != 1 ) continue; nparticles++; ip++; istati = (*part)->status(); if( (*part)->end_vertex() && istati == 1) { std::cout << "final particle with end vertex!" << std::endl; istati = -100; } imoth=0; orig = (*part)->production_vertex(); if(orig) { imoth = 0; bool ifound=false; for(HepMC::GenEvent::particle_const_iterator part1 = evt->particles_begin(); part1 != part; part1++ ) { imoth++; if( (*part1)->end_vertex() == orig ) { ifound = true; break; } } if(!ifound) imoth = 0; } m_outstream->width(4); *m_outstream << ip << " "; m_outstream->width(3); *m_outstream << istati << " "; m_outstream->width(5); *m_outstream << (*part)->pdg_id() << " "; m_outstream->width(3); *m_outstream << imoth << " "; if((*part)->momentum().px() >= 0.) *m_outstream << " "; *m_outstream << (*part)->momentum().px() << " "; if((*part)->momentum().py() >= 0.) *m_outstream << " "; *m_outstream << (*part)->momentum().py() << " "; if((*part)->momentum().pz() >= 0.) *m_outstream << " "; *m_outstream << (*part)->momentum().pz() << " " << (*part)->momentum().e() << " "; xmassi = (*part)->generatedMass(); if(fabs(xmassi) < 0.0001) xmassi =0.; m_outstream->setf(std::ios::fixed); m_outstream->precision(3); m_outstream->width(8); *m_outstream << xmassi << " "; m_outstream->setf(std::ios::scientific,std::ios::floatfield); m_outstream->precision(m_precision); m_outstream->setf(std::ios::fixed); m_outstream->precision(3); m_outstream->width(6); etai = (*part)->momentum().eta(); if(etai > 999.)etai = 999.; if(etai < -999.)etai = -999.; *m_outstream << etai << std::endl; m_outstream->setf(std::ios::scientific,std::ios::floatfield); m_outstream->precision(m_precision); } } bool IO_AsciiParticles::fill_next_event( GenEvent* evt ){ // // // test that evt pointer is not null if ( !evt ) { std::cerr << "IO_AsciiParticles::fill_next_event error - passed null event." << std::endl; return false; } // check the state of m_outstream is good, and that it is in input mode if ( !m_file ) std::cerr << "HepMC::IO_AsciiParticles::fill_next_event " << " no file for input" << std::endl; if ( !(m_mode&std::ios::in) ) { std::cerr << "HepMC::IO_AsciiParticles::fill_next_event " << " attempt to read from output file" << std::endl; return false; } std::cerr << "IO_AsciiParticles input is not yet implemented" << std::endl; return false; } void IO_AsciiParticles::write_comment( const std::string comment ) { // check the state of *m_outstream is good, and that it is in output mode if ( !m_outstream ) return; if ( !(m_mode&std::ios::out) ) { std::cerr << "HepMC::IO_AsciiParticles::write_particle_data_table " << " attempt to write to input file." << std::endl; return; } // write end of event listing key if events have already been written write_end_listing(); // insert the comment key before the comment *m_outstream << "\n" << "HepMC::IO_AsciiParticles-COMMENT\n"; *m_outstream << comment << std::endl; } bool IO_AsciiParticles::write_end_listing() { return false; } } // HepMC hepmc-2.06.09.orig/src/PdfInfo.cc0000644000175000017500000000716511510652322017236 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // PdfInfo.cc // Author: Lynn Garren // // Implement operator >> and operator << // // ---------------------------------------------------------------------- #include #include #include #include #include "HepMC/PdfInfo.h" #include "HepMC/StreamHelpers.h" #include "HepMC/IO_Exception.h" namespace HepMC { std::ostream & operator << ( std::ostream & os, PdfInfo const * pdf) { if ( !os ) { std::cerr << "operator << for PdfInfo: !os, " << " setting badbit" << std::endl; os.clear(std::ios::badbit); return os; } os << 'F'; // PdfInfo* is set to 0 by default if ( !pdf ) { detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os,'\n'); return os; } // detail::output( os, pdf->id1() ); detail::output( os, pdf->id2() ); detail::output( os, pdf->x1() ); detail::output( os, pdf->x2() ); detail::output( os, pdf->scalePDF() ); detail::output( os, pdf->pdf1() ); detail::output( os, pdf->pdf2() ); detail::output( os, pdf->pdf_id1() ); detail::output( os, pdf->pdf_id2() ); detail::output( os,'\n'); return os; } std::istream & operator >> (std::istream & is, PdfInfo * pdf) { // make sure the stream is valid if ( !is ) { std::cerr << "PdfInfo input stream setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // // get the PdfInfo line std::string line; std::getline(is,line); std::istringstream iline(line); std::string firstc; iline >> firstc; // test to be sure the next entry is of type "F" then ignore it if ( firstc != "F" ) { std::cerr << "PdfInfo input stream invalid line type: " << firstc << std::endl; // this is non-recoverable, so throw here throw IO_Exception("PdfInfo input stream encounterd invalid data"); } // read values into temp variables, then create a new PdfInfo object int id1 =0, id2 =0, pdf_id1=0, pdf_id2=0; double x1 = 0., x2 = 0., scale = 0., pdf1 = 0., pdf2 = 0.; iline >> id1 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); // check now for empty PdfInfo line if( id1 == 0 ) return is; // continue reading iline >> id2 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> x1 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> x2 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> scale ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> pdf1 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> pdf2; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); // check to see if we are at the end of the line if( !iline.eof() ) { iline >> pdf_id1 ; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); iline >> pdf_id2; if(!iline) throw IO_Exception("PdfInfo input stream encounterd invalid data"); } pdf->set_id1( id1 ); pdf->set_id2( id2 ); pdf->set_pdf_id1( pdf_id1 ); pdf->set_pdf_id2( pdf_id2 ); pdf->set_x1( x1 ); pdf->set_x2( x2 ); pdf->set_scalePDF( scale ); pdf->set_pdf1( pdf1 ); pdf->set_pdf2( pdf2 ); return is; } } // HepMC hepmc-2.06.09.orig/src/HeavyIon.cc0000644000175000017500000001137711510652322017433 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // HeavyIon.cc // Author: Lynn Garren // // Implement operator >> and operator << // // ---------------------------------------------------------------------- #include #include #include #include #include "HepMC/HeavyIon.h" #include "HepMC/StreamHelpers.h" #include "HepMC/IO_Exception.h" namespace HepMC { /// Write the contents of HeavyIon to an output stream. /// GenEvent stores a pointer to a HeavyIon. std::ostream & operator << (std::ostream & os, HeavyIon const * ion) { if ( !os ) { std::cerr << "HeavyIon output stream !os, " << " setting badbit" << std::endl; os.clear(std::ios::badbit); return os; } os << 'H'; // HeavyIon* is set to 0 by default if ( !ion ) { detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0 ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os, 0. ); detail::output( os,'\n'); return os; } // detail::output( os, ion->Ncoll_hard() ); detail::output( os, ion->Npart_proj() ); detail::output( os, ion->Npart_targ() ); detail::output( os, ion->Ncoll() ); detail::output( os, ion->spectator_neutrons() ); detail::output( os, ion->spectator_protons() ); detail::output( os, ion->N_Nwounded_collisions() ); detail::output( os, ion->Nwounded_N_collisions() ); detail::output( os, ion->Nwounded_Nwounded_collisions() ); detail::output( os, ion->impact_parameter() ); detail::output( os, ion->event_plane_angle() ); detail::output( os, ion->eccentricity() ); detail::output( os, ion->sigma_inel_NN() ); detail::output( os,'\n'); return os; } /// Read the contents of HeavyIon from an input stream. /// GenEvent stores a pointer to a HeavyIon. std::istream & operator >> (std::istream & is, HeavyIon * ion) { // make sure the stream is valid if ( !is ) { std::cerr << "HeavyIon input stream setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // get the HeavyIon line std::string line; std::getline(is,line); std::istringstream iline(line); std::string firstc; iline >> firstc; // test to be sure the next entry is of type "H" if( firstc != "H" ) { std::cerr << "HeavyIon input stream invalid line type: " << firstc << std::endl; // The most likely problem is that we have found a HepMC block line throw IO_Exception("HeavyIon input stream encounterd invalid data"); } // read values into temp variables, then create a new HeavyIon object int nh =0, np =0, nt =0, nc =0, neut = 0, prot = 0, nw =0, nwn =0, nwnw =0; float impact = 0., plane = 0., xcen = 0., inel = 0.; iline >> nh ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> np ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> nt ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> nc ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> neut ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> prot; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> nw ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> nwn ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> nwnw ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> impact ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> plane ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> xcen ; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); iline >> inel; if(!iline) throw IO_Exception("HeavyIon input stream encounterd invalid data"); if( nh == 0 ) { return is; } ion->set_Ncoll_hard(nh); ion->set_Npart_proj(np); ion->set_Npart_targ(nt); ion->set_Ncoll(nc); ion->set_spectator_neutrons(neut); ion->set_spectator_protons(prot); ion->set_N_Nwounded_collisions(nw); ion->set_Nwounded_N_collisions(nwn); ion->set_Nwounded_Nwounded_collisions(nwnw); ion->set_impact_parameter(impact); ion->set_event_plane_angle(plane); ion->set_eccentricity(xcen); ion->set_sigma_inel_NN(inel); return is; } } // HepMC hepmc-2.06.09.orig/src/.cvsignore0000644000175000017500000000001410361513166017371 0ustar sylvestresylvestreMakefile.in hepmc-2.06.09.orig/src/GenVertex.cc0000644000175000017500000010165211320723446017621 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, September 1999 // GenVertex within an event ////////////////////////////////////////////////////////////////////////// #include "HepMC/GenParticle.h" #include "HepMC/GenVertex.h" #include "HepMC/GenEvent.h" #include "HepMC/SearchVector.h" #include // needed for formatted output namespace HepMC { GenVertex::GenVertex( const FourVector& position, int id, const WeightContainer& weights ) : m_position(position), m_id(id), m_weights(weights), m_event(0), m_barcode(0) {} //{ //s_counter++; //} GenVertex::GenVertex( const GenVertex& invertex ) : m_position( invertex.position() ), m_particles_in(), m_particles_out(), m_id( invertex.id() ), m_weights( invertex.weights() ), m_event(0), m_barcode(0) { /// Shallow copy: does not copy the FULL list of particle pointers. /// Creates a copy of - invertex /// - outgoing particles of invertex, but sets the /// decay vertex of these particles to NULL /// - all incoming particles which do not have a /// creation vertex. /// (i.e. it creates copies of all particles which it owns) /// (note - impossible to copy the FULL list of particle pointers /// while having the vertex /// and particles in/out point-back to one another -- unless you /// copy the entire tree -- which we don't want to do) // for ( particles_in_const_iterator part1 = invertex.particles_in_const_begin(); part1 != invertex.particles_in_const_end(); ++part1 ) { if ( !(*part1)->production_vertex() ) { GenParticle* pin = new GenParticle(**part1); add_particle_in(pin); } } for ( particles_out_const_iterator part2 = invertex.particles_out_const_begin(); part2 != invertex.particles_out_const_end(); part2++ ) { GenParticle* pin = new GenParticle(**part2); add_particle_out(pin); } suggest_barcode( invertex.barcode() ); // //s_counter++; } GenVertex::~GenVertex() { // // need to delete any particles previously owned by this vertex if ( parent_event() ) parent_event()->remove_barcode(this); delete_adopted_particles(); //s_counter--; } void GenVertex::swap( GenVertex & other) { m_position.swap( other.m_position ); m_particles_in.swap( other.m_particles_in ); m_particles_out.swap( other.m_particles_out ); std::swap( m_id, other.m_id ); m_weights.swap( other.m_weights ); std::swap( m_event, other.m_event ); std::swap( m_barcode, other.m_barcode ); } GenVertex& GenVertex::operator=( const GenVertex& invertex ) { /// Shallow: does not copy the FULL list of particle pointers. /// Creates a copy of - invertex /// - outgoing particles of invertex, but sets the /// decay vertex of these particles to NULL /// - all incoming particles which do not have a /// creation vertex. /// - it does not alter *this's m_event (!) /// (i.e. it creates copies of all particles which it owns) /// (note - impossible to copy the FULL list of particle pointers /// while having the vertex /// and particles in/out point-back to one another -- unless you /// copy the entire tree -- which we don't want to do) /// // best practices implementation GenVertex tmp( invertex ); swap( tmp ); return *this; } bool GenVertex::operator==( const GenVertex& a ) const { /// Returns true if the positions and the particles in the lists of a /// and this are identical. Does not compare barcodes. /// Note that it is impossible for two vertices to point to the same /// particle's address, so we need to do more than just compare the /// particle pointers // if ( a.position() != this->position() ) return false; // if the size of the inlist differs, return false. if ( a.particles_in_size() != this->particles_in_size() ) return false; // if the size of the outlist differs, return false. if ( a.particles_out_size() != this->particles_out_size() ) return false; // loop over the inlist and ensure particles are identical // (only do this if the lists aren't empty - we already know // if one isn't, then other isn't either!) if ( a.particles_in_const_begin() != a.particles_in_const_end() ) { for ( GenVertex::particles_in_const_iterator ia = a.particles_in_const_begin(), ib = this->particles_in_const_begin(); ia != a.particles_in_const_end(); ia++, ib++ ){ if ( **ia != **ib ) return false; } } // loop over the outlist and ensure particles are identical // (only do this if the lists aren't empty - we already know // if one isn't, then other isn't either!) if ( a.particles_out_const_begin() != a.particles_out_const_end() ) { for ( GenVertex::particles_out_const_iterator ia = a.particles_out_const_begin(), ib = this->particles_out_const_begin(); ia != a.particles_out_const_end(); ia++, ib++ ){ if ( **ia != **ib ) return false; } } return true; } bool GenVertex::operator!=( const GenVertex& a ) const { // Returns true if the positions and lists of a and this are not equal. return !( a == *this ); } void GenVertex::print( std::ostream& ostr ) const { // find the current stream state std::ios_base::fmtflags orig = ostr.flags(); std::streamsize prec = ostr.precision(); if ( barcode()!=0 ) { if ( position() != FourVector(0,0,0,0) ) { ostr << "Vertex:"; ostr.width(9); ostr << barcode(); ostr << " ID:"; ostr.width(5); ostr << id(); ostr << " (X,cT)="; ostr.width(9); ostr.precision(2); ostr.setf(std::ios::scientific, std::ios::floatfield); ostr.setf(std::ios_base::showpos); ostr << position().x() << ","; ostr.width(9); ostr << position().y() << ","; ostr.width(9); ostr << position().z() << ","; ostr.width(9); ostr << position().t(); ostr.setf(std::ios::fmtflags(0), std::ios::floatfield); ostr.unsetf(std::ios_base::showpos); ostr << std::endl; } else { ostr << "GenVertex:"; ostr.width(9); ostr << barcode(); ostr << " ID:"; ostr.width(5); ostr << id(); ostr << " (X,cT):0"; ostr << std::endl; } } else { // If the vertex doesn't have a unique barcode assigned, then // we print its memory address instead... so that the // print out gives us a unique tag for the particle. if ( position() != FourVector(0,0,0,0) ) { ostr << "Vertex:"; ostr.width(9); ostr << (void*)this; ostr << " ID:"; ostr.width(5); ostr << id(); ostr << " (X,cT)="; ostr.width(9); ostr.precision(2); ostr.setf(std::ios::scientific, std::ios::floatfield); ostr.setf(std::ios_base::showpos); ostr << position().x(); ostr.width(9); ostr << position().y(); ostr.width(9); ostr << position().z(); ostr.width(9); ostr << position().t(); ostr.setf(std::ios::fmtflags(0), std::ios::floatfield); ostr.unsetf(std::ios_base::showpos); ostr << std::endl; } else { ostr << "GenVertex:"; ostr.width(9); ostr << (void*)this; ostr << " ID:"; ostr.width(5); ostr << id(); ostr << " (X,cT):0"; ostr << std::endl; } } // print the weights if there are any if ( ! weights().empty() ) { ostr << " Wgts(" << weights().size() << ")="; for ( WeightContainer::const_iterator wgt = weights().begin(); wgt != weights().end(); wgt++ ) { ostr << *wgt << " "; } ostr << std::endl; } // print out all the incoming, then outgoing particles for ( particles_in_const_iterator part1 = particles_in_const_begin(); part1 != particles_in_const_end(); part1++ ) { if ( part1 == particles_in_const_begin() ) { ostr << " I:"; ostr.width(2); ostr << m_particles_in.size(); } else { ostr << " "; } //(*part1)->print( ostr ); //uncomment for long debugging printout ostr << **part1 << std::endl; } for ( particles_out_const_iterator part2 = particles_out_const_begin(); part2 != particles_out_const_end(); part2++ ) { if ( part2 == particles_out_const_begin() ) { ostr << " O:"; ostr.width(2); ostr << m_particles_out.size(); } else { ostr << " "; } //(*part2)->print( ostr ); // uncomment for long debugging printout ostr << **part2 << std::endl; } // restore the stream state ostr.flags(orig); ostr.precision(prec); } double GenVertex::check_momentum_conservation() const { /// finds the difference between the total momentum out and the total /// momentum in vectors, and returns the magnitude of this vector /// i.e. returns | vec{p_in} - vec{p_out} | double sumpx = 0, sumpy = 0, sumpz = 0; for ( particles_in_const_iterator part1 = particles_in_const_begin(); part1 != particles_in_const_end(); part1++ ) { sumpx += (*part1)->momentum().px(); sumpy += (*part1)->momentum().py(); sumpz += (*part1)->momentum().pz(); } for ( particles_out_const_iterator part2 = particles_out_const_begin(); part2 != particles_out_const_end(); part2++ ) { sumpx -= (*part2)->momentum().px(); sumpy -= (*part2)->momentum().py(); sumpz -= (*part2)->momentum().pz(); } return sqrt( sumpx*sumpx + sumpy*sumpy + sumpz*sumpz ); } void GenVertex::add_particle_in( GenParticle* inparticle ) { if ( !inparticle ) return; // if inparticle previously had a decay vertex, remove it from that // vertex's list if ( inparticle->end_vertex() ) { inparticle->end_vertex()->remove_particle_in( inparticle ); } m_particles_in.push_back( inparticle ); inparticle->set_end_vertex_( this ); } void GenVertex::add_particle_out( GenParticle* outparticle ) { if ( !outparticle ) return; // if outparticle previously had a production vertex, // remove it from that vertex's list if ( outparticle->production_vertex() ) { outparticle->production_vertex()->remove_particle_out( outparticle ); } m_particles_out.push_back( outparticle ); outparticle->set_production_vertex_( this ); } GenParticle* GenVertex::remove_particle( GenParticle* particle ) { /// this finds *particle in the in and/or out list and removes it from /// these lists ... it DOES NOT DELETE THE PARTICLE or its relations. /// you could delete the particle too as follows: /// delete vtx->remove_particle( particle ); /// or if the particle has an end vertex, you could: /// delete vtx->remove_particle( particle )->end_vertex(); /// which would delete the particle's end vertex, and thus would /// also delete the particle, since the particle would be /// owned by the end vertex. if ( !particle ) return 0; if ( particle->end_vertex() == this ) { particle->set_end_vertex_( 0 ); remove_particle_in(particle); } if ( particle->production_vertex() == this ) { particle->set_production_vertex_(0); remove_particle_out(particle); } return particle; } void GenVertex::remove_particle_in( GenParticle* particle ) { /// this finds *particle in m_particles_in and removes it from that list if ( !particle ) return; m_particles_in.erase( already_in_vector( &m_particles_in, particle ) ); } void GenVertex::remove_particle_out( GenParticle* particle ) { /// this finds *particle in m_particles_out and removes it from that list if ( !particle ) return; m_particles_out.erase( already_in_vector( &m_particles_out, particle ) ); } void GenVertex::delete_adopted_particles() { /// deletes all particles which this vertex owns /// to be used by the vertex destructor and operator= // if ( m_particles_out.empty() && m_particles_in.empty() ) return; // 1. delete all outgoing particles which don't have decay vertices. // those that do become the responsibility of the decay vertex // and have their productionvertex pointer set to NULL for ( std::vector::iterator part1 = m_particles_out.begin(); part1 != m_particles_out.end(); ) { if ( !(*part1)->end_vertex() ) { delete *(part1++); } else { (*part1)->set_production_vertex_(0); ++part1; } } m_particles_out.clear(); // // 2. delete all incoming particles which don't have production // vertices. those that do become the responsibility of the // production vertex and have their decayvertex pointer set to NULL for ( std::vector::iterator part2 = m_particles_in.begin(); part2 != m_particles_in.end(); ) { if ( !(*part2)->production_vertex() ) { delete *(part2++); } else { (*part2)->set_end_vertex_(0); ++part2; } } m_particles_in.clear(); } bool GenVertex::suggest_barcode( int the_bar_code ) { /// allows a barcode to be suggested for this vertex. /// In general it is better to let the event pick the barcode for /// you, which is automatic. /// Returns TRUE if the suggested barcode has been accepted (i.e. the /// suggested barcode has not already been used in the event, /// and so it was used). /// Returns FALSE if the suggested barcode was rejected, or if the /// vertex is not yet part of an event, such that it is not yet /// possible to know if the suggested barcode will be accepted). if ( the_bar_code >0 ) { std::cerr << "GenVertex::suggest_barcode WARNING, vertex bar codes" << "\n MUST be negative integers. Positive integers " << "\n are reserved for particles only. Your suggestion " << "\n has been rejected." << std::endl; return false; } bool success = false; if ( parent_event() ) { success = parent_event()->set_barcode( this, the_bar_code ); } else { set_barcode_( the_bar_code ); } return success; } void GenVertex::set_parent_event_( GenEvent* new_evt ) { GenEvent* orig_evt = m_event; m_event = new_evt; // // every time a vertex's parent event changes, the map of barcodes // in the new and old parent event needs to be modified to // reflect this if ( orig_evt != new_evt ) { if (new_evt) new_evt->set_barcode( this, barcode() ); if (orig_evt) orig_evt->remove_barcode( this ); // we also need to loop over all the particles which are owned by // this vertex, and remove their barcodes from the old event. for ( particles_in_const_iterator part1=particles_in_const_begin(); part1 != particles_in_const_end(); part1++ ) { if ( !(*part1)->production_vertex() ) { if ( orig_evt ) orig_evt->remove_barcode( *part1 ); if ( new_evt ) new_evt->set_barcode( *part1, (*part1)->barcode() ); } } for ( particles_out_const_iterator part2 = particles_out_const_begin(); part2 != particles_out_const_end(); part2++ ) { if ( orig_evt ) orig_evt->remove_barcode( *part2 ); if ( new_evt ) new_evt->set_barcode( *part2, (*part2)->barcode() ); } } } void GenVertex::change_parent_event_( GenEvent* new_evt ) { // // this method is for use with swap // particles and vertices have already been exchanged, // but the backpointer needs to be fixed //GenEvent* orig_evt = m_event; m_event = new_evt; } ///////////// // Static // ///////////// //unsigned int GenVertex::counter() { return s_counter; } //unsigned int GenVertex::s_counter = 0; ///////////// // Friends // ///////////// /// send vertex information to ostr for printing std::ostream& operator<<( std::ostream& ostr, const GenVertex& vtx ) { if ( vtx.barcode()!=0 ) ostr << "BarCode " << vtx.barcode(); else ostr << "Address " << &vtx; ostr << " (X,cT)="; if ( vtx.position() != FourVector(0,0,0,0)) { ostr << vtx.position().x() << "," << vtx.position().y() << "," << vtx.position().z() << "," << vtx.position().t(); } else { ostr << 0; } ostr << " #in:" << vtx.particles_in_size() << " #out:" << vtx.particles_out_size(); return ostr; } ///////////////////////////// // edge_iterator // (protected - for internal use only) ///////////////////////////// // If the user wants the functionality of the edge_iterator, he should // use particle_iterator with IteratorRange = family, parents, or children // GenVertex::edge_iterator::edge_iterator() : m_vertex(0), m_range(family), m_is_inparticle_iter(false), m_is_past_end(true) {} GenVertex::edge_iterator::edge_iterator( const GenVertex& vtx, IteratorRange range ) : m_vertex(&vtx), m_range(family) { // Note: (26.1.2000) the original version of edge_iterator inheritted // from set::const_iterator() rather than using // composition as it does now. // The inheritted version suffered from a strange bug, which // I have not fully understood --- it only occurred after many // events were processed and only when I called the delete // function on past events. I believe it had something to do with // the past the end values, which are now robustly coded in this // version as boolean members. // // default range is family, only other choices are children/parents // descendants/ancestors not allowed & recasted ot children/parents if ( range == descendants || range == children ) m_range = children; if ( range == ancestors || range == parents ) m_range = parents; // if ( m_vertex->m_particles_in.empty() && m_vertex->m_particles_out.empty() ) { // Case: particles_in and particles_out is empty. m_is_inparticle_iter = false; m_is_past_end = true; } else if ( m_range == parents && m_vertex->m_particles_in.empty() ){ // Case: particles in is empty and parents is requested. m_is_inparticle_iter = true; m_is_past_end = true; } else if ( m_range == children && m_vertex->m_particles_out.empty() ){ // Case: particles out is empty and children is requested. m_is_inparticle_iter = false; m_is_past_end = true; } else if ( m_range == children ) { // Case: particles out is NOT empty, and children is requested m_set_iter = m_vertex->m_particles_out.begin(); m_is_inparticle_iter = false; m_is_past_end = false; } else if ( m_range == family && m_vertex->m_particles_in.empty() ) { // Case: particles in is empty, particles out is NOT empty, // and family is requested. Then skip ahead to partilces out. m_set_iter = m_vertex->m_particles_out.begin(); m_is_inparticle_iter = false; m_is_past_end = false; } else { // Normal scenario: start with the first incoming particle m_set_iter = m_vertex->m_particles_in.begin(); m_is_inparticle_iter = true; m_is_past_end = false; } } GenVertex::edge_iterator::edge_iterator( const edge_iterator& p ) { *this = p; } GenVertex::edge_iterator::~edge_iterator() {} GenVertex::edge_iterator& GenVertex::edge_iterator::operator=( const edge_iterator& p ) { m_vertex = p.m_vertex; m_range = p.m_range; m_set_iter = p.m_set_iter; m_is_inparticle_iter = p.m_is_inparticle_iter; m_is_past_end = p.m_is_past_end; return *this; } GenParticle* GenVertex::edge_iterator::operator*(void) const { if ( !m_vertex || m_is_past_end ) return 0; return *m_set_iter; } GenVertex::edge_iterator& GenVertex::edge_iterator::operator++(void){ // Pre-fix increment // // increment the set iterator (unless we're past the end value) if ( m_is_past_end ) return *this; ++m_set_iter; // handle cases where m_set_iter points past the end if ( m_range == family && m_is_inparticle_iter && m_set_iter == m_vertex->m_particles_in.end() ) { // at the end on in particle set, and range is family, so move to // out particle set m_set_iter = m_vertex->m_particles_out.begin(); m_is_inparticle_iter = false; } else if ( m_range == parents && m_set_iter == m_vertex->m_particles_in.end() ) { // at the end on in particle set, and range is parents only, so // move into past the end state m_is_past_end = true; // might as well bail out now return *this; } // are we iterating over input or output particles? if( m_is_inparticle_iter ) { // the following is not else if because we might have range=family // with an empty particles_in set. if ( m_set_iter == m_vertex->m_particles_in.end() ) { //whenever out particles end is reached, go into past the end state m_is_past_end = true; } } else { // the following is not else if because we might have range=family // with an empty particles_out set. if ( m_set_iter == m_vertex->m_particles_out.end() ) { //whenever out particles end is reached, go into past the end state m_is_past_end = true; } } return *this; } GenVertex::edge_iterator GenVertex::edge_iterator::operator++(int){ // Post-fix increment edge_iterator returnvalue = *this; ++*this; return returnvalue; } bool GenVertex::edge_iterator::is_parent() const { if ( **this && (**this)->end_vertex() == m_vertex ) return true; return false; } bool GenVertex::edge_iterator::is_child() const { if ( **this && (**this)->production_vertex() == m_vertex ) return true; return false; } int GenVertex::edges_size( IteratorRange range ) const { if ( range == children ) return m_particles_out.size(); if ( range == parents ) return m_particles_in.size(); if ( range == family ) return m_particles_out.size() + m_particles_in.size(); return 0; } ///////////////////// // vertex_iterator // ///////////////////// GenVertex::vertex_iterator::vertex_iterator() : m_vertex(0), m_range(), m_visited_vertices(0), m_it_owns_set(0), m_recursive_iterator(0) {} GenVertex::vertex_iterator::vertex_iterator( GenVertex& vtx_root, IteratorRange range ) : m_vertex(&vtx_root), m_range(range) { // standard public constructor // m_visited_vertices = new std::set; m_it_owns_set = 1; m_visited_vertices->insert( m_vertex ); m_recursive_iterator = 0; m_edge = m_vertex->edges_begin( m_range ); // advance to the first good return value if ( !follow_edge_() && m_edge != m_vertex->edges_end( m_range )) ++*this; } GenVertex::vertex_iterator::vertex_iterator( GenVertex& vtx_root, IteratorRange range, std::set& visited_vertices ) : m_vertex(&vtx_root), m_range(range), m_visited_vertices(&visited_vertices), m_it_owns_set(0), m_recursive_iterator(0) { // This constuctor is only to be called internally by this class // for use with its recursive member pointer (m_recursive_iterator). // Note: we do not need to insert m_vertex_root in the vertex - that is // the responsibility of this iterator's mother, which is normally // done just before calling this protected constructor. m_edge = m_vertex->edges_begin( m_range ); // advance to the first good return value if ( !follow_edge_() && m_edge != m_vertex->edges_end( m_range )) ++*this; } GenVertex::vertex_iterator::vertex_iterator( const vertex_iterator& v_iter) : m_vertex(0), m_visited_vertices(0), m_it_owns_set(0), m_recursive_iterator(0) { *this = v_iter; } GenVertex::vertex_iterator::~vertex_iterator() { if ( m_recursive_iterator ) delete m_recursive_iterator; if ( m_it_owns_set ) delete m_visited_vertices; } GenVertex::vertex_iterator& GenVertex::vertex_iterator::operator=( const vertex_iterator& v_iter ) { // Note: when copying a vertex_iterator that is NOT the owner // of its set container, the pointer to the set is copied. Beware! // (see copy_with_own_set() if you want a different set pointed to) // In practise the user never needs to worry // since such iterators are only intended to be used internally. // // destruct data member pointers if ( m_recursive_iterator ) delete m_recursive_iterator; m_recursive_iterator = 0; if ( m_it_owns_set ) delete m_visited_vertices; m_visited_vertices = 0; m_it_owns_set = 0; // copy the target vertex_iterator to this iterator m_vertex = v_iter.m_vertex; m_range = v_iter.m_range; if ( v_iter.m_it_owns_set ) { // i.e. this vertex will own its set if v_iter points to any // vertex set regardless of whether v_iter owns the set or not! m_visited_vertices = new std::set(*v_iter.m_visited_vertices); m_it_owns_set = 1; } else { m_visited_vertices = v_iter.m_visited_vertices; m_it_owns_set = 0; } // // Note: m_vertex_root is already included in the set of // tv_iter.m_visited_vertices, we do not need to insert it. // m_edge = v_iter.m_edge; copy_recursive_iterator_( v_iter.m_recursive_iterator ); return *this; } GenVertex* GenVertex::vertex_iterator::operator*(void) const { // de-reference operator // // if this iterator has an iterator_node, then we return the iterator // node. if ( m_recursive_iterator ) return **m_recursive_iterator; // // an iterator can only return its m_vertex -- any other vertex // is returned by means of a recursive iterator_node // (so this is the only place in the iterator code that a vertex // is returned!) if ( m_vertex ) return m_vertex; return 0; } GenVertex::vertex_iterator& GenVertex::vertex_iterator::operator++(void) { // Pre-fix incremental operator // // check for "past the end condition" denoted by m_vertex=0 if ( !m_vertex ) return *this; // if at the last edge, move into the "past the end condition" if ( m_edge == m_vertex->edges_end( m_range ) ) { m_vertex = 0; return *this; } // check to see if we need to create a new recursive iterator by // following the current edge only if a recursive iterator doesn't // already exist. If a new recursive_iterator is created, return it. if ( follow_edge_() ) { return *this; } // // if a recursive iterator already exists, increment it, and return its // value (unless the recursive iterator has null root_vertex [its // root vertex is set to null if it has already returned its root] // - in which case we delete it) // and return the vertex pointed to by the edge. if ( m_recursive_iterator ) { ++(*m_recursive_iterator); if ( **m_recursive_iterator ) { return *this; } else { delete m_recursive_iterator; m_recursive_iterator = 0; } } // // increment to the next particle edge ++m_edge; // if m_edge is at the end, then we have incremented through all // edges, and it is time to return m_vertex, which we accomplish // by returning *this if ( m_edge == m_vertex->edges_end( m_range ) ) return *this; // otherwise we follow the current edge by recursively ++ing. return ++(*this); } GenVertex::vertex_iterator GenVertex::vertex_iterator::operator++(int) { // Post-fix increment vertex_iterator returnvalue(*this); ++(*this); return returnvalue; } void GenVertex::vertex_iterator::copy_with_own_set( const vertex_iterator& v_iter, std::set& visited_vertices ) { /// intended for internal use only. (use with care!) /// this is the same as the operator= method, but it allows the /// user to specify which set container m_visited_vertices points to. /// in all cases, this vertex will NOT own its set. // // destruct data member pointers if ( m_recursive_iterator ) delete m_recursive_iterator; m_recursive_iterator = 0; if ( m_it_owns_set ) delete m_visited_vertices; m_visited_vertices = 0; m_it_owns_set = false; // copy the target vertex_iterator to this iterator m_vertex = v_iter.m_vertex; m_range = v_iter.m_range; m_visited_vertices = &visited_vertices; m_it_owns_set = false; m_edge = v_iter.m_edge; copy_recursive_iterator_( v_iter.m_recursive_iterator ); } GenVertex* GenVertex::vertex_iterator::follow_edge_() { // follows the edge pointed to by m_edge by creating a // recursive iterator for it. // // if a m_recursive_iterator already exists, // this routine has nothing to do, // if there's no m_vertex, there's no point following anything, // also there's no point trying to follow a null edge. if ( m_recursive_iterator || !m_vertex || !*m_edge ) return 0; // // if the range is parents, children, or family (i.e. <= family) // then only the iterator which owns the set is allowed to create // recursive iterators (i.e. recursivity is only allowed to go one // layer deep) if ( m_range <= family && m_it_owns_set == 0 ) return 0; // // M.Dobbs 2001-07-16 // Take care of the very special-rare case where a particle might // point to the same vertex for both production and end if ( (*m_edge)->production_vertex() == (*m_edge)->end_vertex() ) return 0; // // figure out which vertex m_edge is pointing to GenVertex* vtx = ( m_edge.is_parent() ? (*m_edge)->production_vertex() : (*m_edge)->end_vertex() ); // if the pointed to vertex doesn't exist or has already been visited, // then return null if ( !vtx || !(m_visited_vertices->insert(vtx).second) ) return 0; // follow that edge by creating a recursive iterator m_recursive_iterator = new vertex_iterator( *vtx, m_range, *m_visited_vertices); // and return the vertex pointed to by m_recursive_iterator return **m_recursive_iterator; } void GenVertex::vertex_iterator::copy_recursive_iterator_( const vertex_iterator* recursive_v_iter ) { // to properly copy the recursive iterator, we need to ensure // the proper set container is transfered ... then do this // operation .... you guessed it .... recursively! // if ( !recursive_v_iter ) return; m_recursive_iterator = new vertex_iterator(); m_recursive_iterator->m_vertex = recursive_v_iter->m_vertex; m_recursive_iterator->m_range = recursive_v_iter->m_range; m_recursive_iterator->m_visited_vertices = m_visited_vertices; m_recursive_iterator->m_it_owns_set = 0; m_recursive_iterator->m_edge = recursive_v_iter->m_edge; m_recursive_iterator->copy_recursive_iterator_( recursive_v_iter->m_recursive_iterator ); } /////////////////////////////// // particle_iterator // /////////////////////////////// GenVertex::particle_iterator::particle_iterator() {} GenVertex::particle_iterator::particle_iterator( GenVertex& vertex_root, IteratorRange range ) { // General Purpose Constructor // if ( range <= family ) { m_edge = GenVertex::edge_iterator( vertex_root, range ); } else { m_vertex_iterator = GenVertex::vertex_iterator(vertex_root, range); m_edge = GenVertex::edge_iterator( **m_vertex_iterator, m_vertex_iterator.range() ); } advance_to_first_(); } GenVertex::particle_iterator::particle_iterator( const particle_iterator& p_iter ){ *this = p_iter; } GenVertex::particle_iterator::~particle_iterator() {} GenVertex::particle_iterator& GenVertex::particle_iterator::operator=( const particle_iterator& p_iter ) { m_vertex_iterator = p_iter.m_vertex_iterator; m_edge = p_iter.m_edge; return *this; } GenParticle* GenVertex::particle_iterator::operator*(void) const { return *m_edge; } GenVertex::particle_iterator& GenVertex::particle_iterator::operator++(void) { //Pre-fix increment // if ( *m_edge ) { ++m_edge; } else if ( *m_vertex_iterator ) { // !*m_edge is implicit // past end of edge, but still have more vertices to visit // increment the vertex, checking that the result is valid if ( !*(++m_vertex_iterator) ) return *this; m_edge = GenVertex::edge_iterator( **m_vertex_iterator, m_vertex_iterator.range() ); } else { // !*m_edge and !*m_vertex_iterator are implicit // past the end condition: do nothing return *this; } advance_to_first_(); return *this; } GenVertex::particle_iterator GenVertex::particle_iterator::operator++(int){ //Post-fix increment particle_iterator returnvalue(*this); ++(*this); return returnvalue; } GenParticle* GenVertex::particle_iterator::advance_to_first_() { /// if the current edge is not a suitable return value ( because /// it is a parent of the vertex root that itself belongs to a /// different vertex ) it advances to the first suitable return value if ( !*m_edge ) return *(++*this); // if the range is relatives, we need to uniquely assign each particle // to a single vertex so as to guarantee particles are returned // exactly once. if ( m_vertex_iterator.range() == relatives && m_edge.is_parent() && (*m_edge)->production_vertex() ) return *(++*this); return *m_edge; } /// scale the position vector /// this method is only for use by GenEvent /// convert_position assumes that 4th component of the position vector /// is ctau rather than time and has units of length-time void GenVertex::convert_position( const double& f ) { m_position = FourVector( f*m_position.x(), f*m_position.y(), f*m_position.z(), f*m_position.t() ); } } // HepMC hepmc-2.06.09.orig/src/Makefile.am0000644000175000017500000000117411374257600017440 0ustar sylvestresylvestre## Process this file with automake to produce Makefile.in INCLUDES = -I$(top_builddir) -I$(top_srcdir) libHepMC_la_SOURCES = \ CompareGenEvent.cc \ Flow.cc \ GenEvent.cc \ GenEventStreamIO.cc \ GenParticle.cc \ GenCrossSection.cc \ GenVertex.cc \ GenRanges.cc \ HeavyIon.cc \ IO_AsciiParticles.cc \ IO_GenEvent.cc \ PdfInfo.cc \ Polarization.cc \ SearchVector.cc \ StreamHelpers.cc \ StreamInfo.cc \ Units.cc \ WeightContainer.cc lib_LTLIBRARIES = libHepMC.la if BUILD_VISUAL lib_shared = HepMC.$(SHEXT) else lib_shared = libHepMC.so endif # shared library versioning libHepMC_la_LDFLAGS = $(LIBRARY_VERSION) hepmc-2.06.09.orig/src/IO_GenEvent.cc0000644000175000017500000001266011374257600020017 0ustar sylvestresylvestre//-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, July 2006 // event input/output in ascii format for machine reading // IO_GenEvent format contains HeavyIon and PdfInfo classes ////////////////////////////////////////////////////////////////////////// #include "HepMC/IO_GenEvent.h" #include "HepMC/IO_Exception.h" #include "HepMC/GenEvent.h" #include "HepMC/StreamHelpers.h" namespace HepMC { IO_GenEvent::IO_GenEvent( const std::string& filename, std::ios::openmode mode ) : m_mode(mode), m_file(filename.c_str(), mode), m_ostr(0), m_istr(0), m_iostr(0), m_have_file(false), m_error_type(IO_Exception::OK), m_error_message() { if ( (m_mode&std::ios::out && m_mode&std::ios::in) || (m_mode&std::ios::app && m_mode&std::ios::in) ) { m_error_type = IO_Exception::InputAndOutput; m_error_message ="IO_GenEvent::IO_GenEvent Error, open of file requested of input AND output type. Not allowed. Closing file."; std::cerr << m_error_message << std::endl; m_file.close(); return; } // now we set the streams m_iostr = &m_file; if ( m_mode&std::ios::in ) { m_istr = &m_file; m_ostr = NULL; detail::establish_input_stream_info(m_file); } if ( m_mode&std::ios::out ) { m_ostr = &m_file; m_istr = NULL; detail::establish_output_stream_info(m_file); } m_have_file = true; } IO_GenEvent::IO_GenEvent( std::istream & istr ) : m_ostr(0), m_istr(&istr), m_iostr(&istr), m_have_file(false), m_error_type(IO_Exception::OK), m_error_message() { detail::establish_input_stream_info( istr ); } IO_GenEvent::IO_GenEvent( std::ostream & ostr ) : m_ostr(&ostr), m_istr(0), m_iostr(&ostr), m_have_file(false), m_error_type(IO_Exception::OK), m_error_message() { detail::establish_output_stream_info( ostr ); } IO_GenEvent::~IO_GenEvent() { if ( m_ostr != NULL ) { write_HepMC_IO_block_end(*m_ostr); } if(m_have_file) m_file.close(); } void IO_GenEvent::use_input_units( Units::MomentumUnit mom, Units::LengthUnit len ) { if( m_istr != NULL ) { set_input_units( *m_istr, mom, len ); } } void IO_GenEvent::print( std::ostream& ostr ) const { ostr << "IO_GenEvent: unformated ascii file IO for machine reading.\n"; if(m_have_file) ostr << "\tFile openmode: " << m_mode ; ostr << " stream state: " << m_ostr->rdstate() << " bad:" << (m_ostr->rdstate()&std::ios::badbit) << " eof:" << (m_ostr->rdstate()&std::ios::eofbit) << " fail:" << (m_ostr->rdstate()&std::ios::failbit) << " good:" << (m_ostr->rdstate()&std::ios::goodbit) << std::endl; } void IO_GenEvent::precision( int size ) { if( size > 16 ) { std::cerr << "IO_GenEvent::precision Error, " << "precision is greater than 16. " << "Not allowed. Using default precision of 16." << std::endl; size = 16; } if(m_ostr) { m_ostr->precision(size); } } bool IO_GenEvent::fill_next_event( GenEvent* evt ){ // // reset error type m_error_type = IO_Exception::OK; // // test that evt pointer is not null if ( !evt ) { m_error_type = IO_Exception::NullEvent; m_error_message = "IO_GenEvent::fill_next_event error - passed null event."; std::cerr << m_error_message << std::endl; return false; } // make sure the stream is good, and that it is in input mode if ( !(*m_istr) ) return false; if ( !m_istr ) { m_error_type = IO_Exception::WrongFileType; m_error_message = "HepMC::IO_GenEvent::fill_next_event attempt to read from output file."; std::cerr << m_error_message << std::endl; return false; } // use streaming input try { *m_istr >> *evt; } catch (IO_Exception& e) { m_error_type = IO_Exception::InvalidData; m_error_message = e.what(); evt->clear(); return false; } if( evt->is_valid() ) return true; return false; } void IO_GenEvent::write_event( const GenEvent* evt ) { /// Writes evt to output stream. It does NOT delete the event after writing. // // make sure the state is good, and that it is in output mode if ( !evt ) return; if ( m_ostr == NULL ) { m_error_type = IO_Exception::WrongFileType; m_error_message = "HepMC::IO_GenEvent::write_event attempt to write to input file."; std::cerr << m_error_message << std::endl; return; } // // write event listing key before first event only. write_HepMC_IO_block_begin(*m_ostr); // explicit cast is necessary GenEvent e = *evt; *m_ostr << e ; } void IO_GenEvent::write_comment( const std::string comment ) { // make sure the stream is good, and that it is in output mode if ( !(*m_ostr) ) return; if ( m_ostr == NULL ) { m_error_type = IO_Exception::WrongFileType; m_error_message = "HepMC::IO_GenEvent::write_event attempt to write to input file."; std::cerr << m_error_message << std::endl; return; } // write end of event listing key if events have already been written write_HepMC_IO_block_end(*m_ostr); // insert the comment key before the comment *m_ostr << "\n" << "HepMC::IO_GenEvent-COMMENT\n"; *m_ostr << comment << std::endl; } } // HepMC hepmc-2.06.09.orig/src/GenEventStreamIO.cc0000644000175000017500000006210111717265650021034 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // GenEventStreamIO.cc // Author: Lynn Garren // // Implement operator >> and operator << // // ---------------------------------------------------------------------- #include #include #include #include #include "HepMC/GenEvent.h" #include "HepMC/GenCrossSection.h" #include "HepMC/StreamInfo.h" #include "HepMC/StreamHelpers.h" #include "HepMC/Version.h" #include "HepMC/IO_Exception.h" namespace HepMC { // ------------------------- local methods ---------------- /// This method is called by the stream destructor. /// It does cleanup on stored user data (StreamInfo) /// and is registered by the first call to get_stream_info(). void HepMCStreamCallback(std::ios_base::event e, std::ios_base& b, int i) { // only clean up if the stream object is going away. if(i!=0 && e!= std::ios_base::erase_event) return; // retrieve the pointer to the object StreamInfo* hd = (StreamInfo*)b.pword(i); b.pword(i) = 0; b.iword(i) = 0; #ifdef HEPMC_DEBUG // the following line is just for sanity checking if(hd) std::cerr << "deleted StreamInfo " << hd->stream_id() << "\n"; #endif delete hd; } // ------------------------- iomanip ---------------- /// A custom iomanip that allows us to store and access user data (StreamInfo) /// associated with the stream. /// This method creates the StreamInfo object the first time it is called. template StreamInfo& get_stream_info(IO& iost) { if(iost.iword(0) == 0) { // make sure we add the callback if this is the first time through iost.iword(0)=1; iost.register_callback(&HepMCStreamCallback, 0); // this is our special "context" record. // there is one of these at the head of each IO block. // allocate room for a StreamInfo in the userdata area iost.pword(0) = new StreamInfo; #ifdef HEPMC_DEBUG // the following line is just for sanity checking std::cerr << "created StreamInfo " << ((StreamInfo*)iost.pword(0))->stream_id() << "\n"; #endif } return *(StreamInfo*)iost.pword(0); } // ------------------------- GenEvent member functions ---------------- std::ostream& GenEvent::write( std::ostream& os ) { /// Writes evt to an output stream. // StreamInfo & info = get_stream_info(os); // // if this is the first event, set precision if ( !info.finished_first_event() ) { // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double // However, we let the user set precision, since that is the expected functionality // we use decimal to store integers, because it is smaller than hex! os.setf(std::ios::dec,std::ios::basefield); os.setf(std::ios::scientific,std::ios::floatfield); // info.set_finished_first_event(true); } // // output the event data including the number of primary vertices // and the total number of vertices //std::vector random_states = random_states(); os << 'E'; detail::output( os, event_number() ); detail::output( os, mpi() ); detail::output( os, event_scale() ); detail::output( os, alphaQCD() ); detail::output( os, alphaQED() ); detail::output( os, signal_process_id() ); detail::output( os, ( signal_process_vertex() ? signal_process_vertex()->barcode() : 0 ) ); detail::output( os, vertices_size() ); // total number of vertices. write_beam_particles( os, beam_particles() ); // random state detail::output( os, (int)m_random_states.size() ); for ( std::vector::iterator rs = m_random_states.begin(); rs != m_random_states.end(); ++rs ) { detail::output( os, *rs ); } // weights // we need to iterate over the map so that the weights printed // here will be in the same order as the names printed next os << ' ' << (int)weights().size() ; for ( WeightContainer::const_map_iterator w = weights().map_begin(); w != weights().map_end(); ++w ) { detail::output( os, m_weights[w->second] ); } detail::output( os,'\n'); // now add names for weights // note that this prints a new line if and only if the weight container // is not empty if ( ! weights().empty() ) { os << "N " << weights().size() << " " ; for ( WeightContainer::const_map_iterator w = weights().map_begin(); w != weights().map_end(); ++w ) { detail::output( os,'"'); os << w->first; detail::output( os,'"'); detail::output( os,' '); } detail::output( os,'\n'); } // // Units os << "U " << name(momentum_unit()); os << " " << name(length_unit()); detail::output( os,'\n'); // // write GenCrossSection if it has been set if( m_cross_section ) m_cross_section->write(os); // // write HeavyIon and PdfInfo if they have been set if( m_heavy_ion ) os << heavy_ion() ; if( m_pdf_info ) os << pdf_info() ; // // Output all of the vertices - note there is no real order. for ( GenEvent::vertex_const_iterator v = vertices_begin(); v != vertices_end(); ++v ) { write_vertex(os, *v); } return os; } std::istream& GenEvent::read( std::istream& is ) { /// read a GenEvent from streaming input // StreamInfo & info = get_stream_info(is); clear(); // // search for event listing key before first event only. if ( !info.finished_first_event() ) { // find_file_type(is); info.set_finished_first_event(true); } // // make sure the stream is good if ( !is ) { std::cerr << "streaming input: end of stream found " << "setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // // test to be sure the next entry is of type "E" then ignore it if ( is.peek()!='E' ) { // if the E is not the next entry, then check to see if it is // the end event listing key - if yes, search for another start key int ioendtype; find_end_key(is,ioendtype); if ( ioendtype == info.io_type() ) { find_file_type(is); // are we at the end of the file? if( !is ) return is; } else if ( ioendtype > 0 ) { std::cerr << "streaming input: end key does not match start key " << "setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } else if ( !info.has_key() ) { find_file_type(is); // are we at the end of the file? if( !is ) return is; } else { std::cerr << "streaming input: end key not found " << "setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } } int signal_process_vertex = 0; int num_vertices = 0, bp1 = 0, bp2 = 0; bool units_line = false; // OK - now ready to start reading the event, so set the header flag info.set_reading_event_header(true); // The flag will be set to false when we reach the end of the header while(info.reading_event_header()) { switch(is.peek()) { case 'E': { // deal with the event line process_event_line( is, num_vertices, bp1, bp2, signal_process_vertex ); } break; case 'N': { // get weight names read_weight_names( is ); } break; case 'U': { // get unit information if it exists units_line = true; if( info.io_type() == gen ) { read_units( is ); } } break; case 'C': { // we have a GenCrossSection line // create cross section GenCrossSection xs; // check for invalid data try { // read the line xs.read(is); } catch (IO_Exception& e) { detail::find_event_end( is ); } if(xs.is_set()) { set_cross_section( xs ); } } break; case 'H': { // we have a HeavyIon line OR an unexpected HepMC... line if( info.io_type() == gen || info.io_type() == extascii ) { // get HeavyIon HeavyIon ion; // check for invalid data try { is >> &ion; } catch (IO_Exception& e) { detail::find_event_end( is ); } if(ion.is_valid()) { set_heavy_ion( ion ); } } } break; case 'F': { // we have a PdfInfo line if( info.io_type() == gen || info.io_type() == extascii ) { // get PdfInfo PdfInfo pdf; // check for invalid data try { is >> &pdf; } catch (IO_Exception& e) { detail::find_event_end( is ); } if(pdf.is_valid()) { set_pdf_info( pdf ); } } } break; case 'V': { // this should be the first vertex line - exit this loop info.set_reading_event_header(false); } break; case 'P': { // we should not find this line std::cerr << "streaming input: found unexpected line P" << std::endl; info.set_reading_event_header(false); } break; default: // ignore everything else break; } // switch on line type } // while reading_event_header // before proceeding - did we find a units line? if( !units_line ) { use_units( info.io_momentum_unit(), info.io_position_unit() ); } // // the end vertices of the particles are not connected until // after the event is read --- we store the values in a map until then TempParticleMap particle_to_end_vertex; // // read in the vertices for ( int iii = 1; iii <= num_vertices; ++iii ) { GenVertex* v = new GenVertex(); try { detail::read_vertex(is,particle_to_end_vertex,v); } catch (IO_Exception& e) { for( TempParticleMap::orderIterator it = particle_to_end_vertex.order_begin(); it != particle_to_end_vertex.order_end(); ++it ) { GenParticle* p = it->second; // delete particles only if they are not already owned by a vertex if( p->production_vertex() ) { } else if( p->end_vertex() ) { } else { delete p; } } delete v; detail::find_event_end( is ); } add_vertex( v ); } // set the signal process vertex if ( signal_process_vertex ) { set_signal_process_vertex( barcode_to_vertex(signal_process_vertex) ); } // // last connect particles to their end vertices GenParticle* beam1(0); GenParticle* beam2(0); for ( TempParticleMap::orderIterator pmap = particle_to_end_vertex.order_begin(); pmap != particle_to_end_vertex.order_end(); ++pmap ) { GenParticle* p = pmap->second; int vtx = particle_to_end_vertex.end_vertex( p ); GenVertex* itsDecayVtx = barcode_to_vertex(vtx); if ( itsDecayVtx ) itsDecayVtx->add_particle_in( p ); else { std::cerr << "read_io_genevent: ERROR particle points" << " to null end vertex. " <barcode() == bp1 ) beam1 = p; if( p->barcode() == bp2 ) beam2 = p; } set_beam_particles(beam1,beam2); return is; } // ------------------------- operator << and operator >> ---------------- std::ostream & operator << (std::ostream & os, GenEvent & evt) { /// Writes evt to an output stream. evt.write(os); return os; } std::istream & operator >> (std::istream & is, GenEvent & evt) { evt.read(is); return is; } // ------------------------- set units ---------------- std::istream & set_input_units(std::istream & is, Units::MomentumUnit mom, Units::LengthUnit len ) { // StreamInfo & info = get_stream_info(is); info.use_input_units( mom, len ); return is; } // ------------------------- begin and end block lines ---------------- std::ostream & write_HepMC_IO_block_begin(std::ostream & os ) { // StreamInfo & info = get_stream_info(os); if( !info.finished_first_event() ) { os << "\n" << "HepMC::Version " << versionName(); os << "\n"; os << info.IO_GenEvent_Key() << "\n"; } return os; } std::ostream & write_HepMC_IO_block_end(std::ostream & os ) { // StreamInfo & info = get_stream_info(os); if( info.finished_first_event() ) { os << info.IO_GenEvent_End() << "\n"; os << std::flush; } return os; } std::istream & GenEvent::process_event_line( std::istream & is, int & num_vertices, int & bp1, int & bp2, int & signal_process_vertex ) { // if ( !is ) { std::cerr << "GenEvent::process_event_line setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // StreamInfo & info = get_stream_info(is); std::string line; std::getline(is,line); std::istringstream iline(line); std::string firstc; iline >> firstc; // // read values into temp variables, then fill GenEvent int event_number = 0, signal_process_id = 0, random_states_size = 0, nmpi = -1; double eventScale = 0, alpha_qcd = 0, alpha_qed = 0; iline >> event_number; if(!iline) detail::find_event_end( is ); if( info.io_type() == gen || info.io_type() == extascii ) { iline >> nmpi; if(!iline) detail::find_event_end( is ); set_mpi( nmpi ); } iline >> eventScale ; if(!iline) detail::find_event_end( is ); iline >> alpha_qcd ; if(!iline) detail::find_event_end( is ); iline >> alpha_qed; if(!iline) detail::find_event_end( is ); iline >> signal_process_id ; if(!iline) detail::find_event_end( is ); iline >> signal_process_vertex; if(!iline) detail::find_event_end( is ); iline >> num_vertices; if(!iline) detail::find_event_end( is ); if( info.io_type() == gen || info.io_type() == extascii ) { iline >> bp1 ; if(!iline) detail::find_event_end( is ); iline >> bp2; if(!iline) detail::find_event_end( is ); } iline >> random_states_size; if(!iline) detail::find_event_end( is ); std::vector random_states(random_states_size); for ( int i = 0; i < random_states_size; ++i ) { iline >> random_states[i]; if(!iline) detail::find_event_end( is ); } WeightContainer::size_type weights_size = 0; iline >> weights_size; if(!iline) detail::find_event_end( is ); std::vector wgt(weights_size); for ( WeightContainer::size_type ii = 0; ii < weights_size; ++ii ) { iline >> wgt[ii]; if(!iline) detail::find_event_end( is ); } // weight names will be added later if they exist if( weights_size > 0 ) m_weights = wgt; // // fill signal_process_id, event_number, random_states, etc. set_signal_process_id( signal_process_id ); set_event_number( event_number ); set_random_states( random_states ); set_event_scale( eventScale ); set_alphaQCD( alpha_qcd ); set_alphaQED( alpha_qed ); // return is; } std::istream & GenEvent::read_weight_names( std::istream & is ) { // now check for a named weight line if ( !is ) { std::cerr << "GenEvent::read_weight_names setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // Test to be sure the next entry is of type "N" // If we have no named weight line, this is not an error // releases prior to 2.06.00 do not have named weights if ( is.peek() !='N') { return is; } // now get this line and process it std::string line; std::getline(is,line); std::istringstream wline(line); std::string firstc; WeightContainer::size_type name_size = 0; wline >> firstc >> name_size; if(!wline) detail::find_event_end( is ); if( firstc != "N") { std::cout << "debug: first character of named weights is " << firstc << std::endl; std::cout << "debug: We should never get here" << std::endl; is.clear(std::ios::badbit); return is; } if( m_weights.size() != name_size ) { std::cout << "debug: weight sizes do not match "<< std::endl; std::cout << "debug: weight vector size is " << m_weights.size() << std::endl; std::cout << "debug: weight name size is " << name_size << std::endl; is.clear(std::ios::badbit); return is; } std::string name; std::string::size_type i1 = line.find("\""); std::string::size_type i2; std::string::size_type len = line.size(); WeightContainer namedWeight; for ( WeightContainer::size_type ii = 0; ii < name_size; ++ii ) { // weight names may contain blanks if(i1 >= len) { std::cout << "debug: attempting to read past the end of the named weight line " << std::endl; std::cout << "debug: We should never get here" << std::endl; std::cout << "debug: Looking for the end of this event" << std::endl; detail::find_event_end( is ); } i2 = line.find("\"",i1+1); name = line.substr(i1+1,i2-i1-1); namedWeight[name] = m_weights[ii]; i1 = line.find("\"",i2+1); } m_weights = namedWeight; return is; } std::istream & GenEvent::read_units( std::istream & is ) { // if ( !is ) { std::cerr << "GenEvent::read_units setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // StreamInfo & info = get_stream_info(is); // test to be sure the next entry is of type "U" then ignore it // if we have no units, this is not an error // releases prior to 2.04.00 did not write unit information if ( is.peek() !='U') { use_units( info.io_momentum_unit(), info.io_position_unit() ); return is; } is.ignore(); // ignore the first character in the line std::string mom, pos; is >> mom >> pos; is.ignore(1); // eat the extra whitespace use_units(mom,pos); // return is; } std::istream & GenEvent::find_file_type( std::istream & istr ) { // // make sure the stream is good if ( !istr ) return istr; // StreamInfo & info = get_stream_info(istr); // if there is no input block line, then we assume this stream // is in the IO_GenEvent format if ( istr.peek()=='E' ) { info.set_io_type( gen ); info.set_has_key(false); return istr; } std::string line; while ( std::getline(istr,line) ) { // // search for event listing key before first event only. // if( line == info.IO_GenEvent_Key() ) { info.set_io_type( gen ); info.set_has_key(true); return istr; } else if( line == info.IO_Ascii_Key() ) { info.set_io_type( ascii ); info.set_has_key(true); return istr; } else if( line == info.IO_ExtendedAscii_Key() ) { info.set_io_type( extascii ); info.set_has_key(true); return istr; } else if( line == info.IO_Ascii_PDT_Key() ) { info.set_io_type( ascii_pdt ); info.set_has_key(true); return istr; } else if( line == info.IO_ExtendedAscii_PDT_Key() ) { info.set_io_type( extascii_pdt ); info.set_has_key(true); return istr; } } info.set_io_type( 0 ); info.set_has_key(false); return istr; } std::istream & GenEvent::find_end_key( std::istream & istr, int & iotype ) { iotype = 0; // peek at the first character before proceeding if( istr.peek()!='H' ) return istr; // // we only check the next line std::string line; std::getline(istr,line); // StreamInfo & info = get_stream_info(istr); // // check to see if this is an end key if( line == info.IO_GenEvent_End() ) { iotype = gen; } else if( line == info.IO_Ascii_End() ) { iotype = ascii; } else if( line == info.IO_ExtendedAscii_End() ) { iotype = extascii; } else if( line == info.IO_Ascii_PDT_End() ) { iotype = ascii_pdt; } else if( line == info.IO_ExtendedAscii_PDT_End() ) { iotype = extascii_pdt; } if( iotype != 0 && info.io_type() != iotype ) { std::cerr << "GenEvent::find_end_key: iotype keys have changed" << std::endl; } else { return istr; } // // if we get here, then something has gotten badly confused std::cerr << "GenEvent::find_end_key: MALFORMED INPUT" << std::endl; istr.clear(std::ios::badbit); return istr; } std::ostream & establish_output_stream_info( std::ostream & os ) { StreamInfo & info = get_stream_info(os); if ( !info.finished_first_event() ) { // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double os.precision(16); // we use decimal to store integers, because it is smaller than hex! os.setf(std::ios::dec,std::ios::basefield); os.setf(std::ios::scientific,std::ios::floatfield); } return os; } std::istream & establish_input_stream_info( std::istream & is ) { StreamInfo & info = get_stream_info(is); if ( !info.finished_first_event() ) { // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double is.precision(16); // we use decimal to store integers, because it is smaller than hex! is.setf(std::ios::dec,std::ios::basefield); is.setf(std::ios::scientific,std::ios::floatfield); } return is; } // ------------------------- helper functions ---------------- namespace detail { // The functions defined here need to use get_stream_info std::istream & read_particle( std::istream & is, TempParticleMap & particle_to_end_vertex, GenParticle * p ) { // get the next line std::string line; std::getline(is,line); std::istringstream iline(line); std::string firstc; iline >> firstc; if( firstc != "P" ) { std::cerr << "StreamHelpers::detail::read_particle invalid line type: " << firstc << std::endl; std::cerr << "StreamHelpers::detail::read_particle setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // StreamInfo & info = get_stream_info(is); //testHepMC.cc // declare variables to be read in to, and read everything except flow double px = 0., py = 0., pz = 0., e = 0., m = 0., theta = 0., phi = 0.; int bar_code = 0, id = 0, status = 0, end_vtx_code = 0, flow_size = 0; // check that the input stream is still OK after reading item iline >> bar_code ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> id ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> px ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> py ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> pz ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> e ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } if( info.io_type() != ascii ) { iline >> m ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } } iline >> status ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> theta ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> phi ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> end_vtx_code ; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } iline >> flow_size; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } // // read flow patterns if any exist Flow flow; int code_index, code; for ( int i = 1; i <= flow_size; ++i ) { iline >> code_index >> code; if(!iline) { delete p; throw IO_Exception("read_particle input stream encounterd invalid data"); } flow.set_icode( code_index,code); } p->set_momentum( FourVector(px,py,pz,e) ); p->set_pdg_id( id ); p->set_status( status ); p->set_flow( flow ); p->set_polarization( Polarization(theta,phi) ); if( info.io_type() == ascii ) { p->set_generated_mass( p->momentum().m() ); } else { p->set_generated_mass( m ); } p->suggest_barcode( bar_code ); // // all particles are connected to their end vertex separately // after all particles and vertices have been created - so we keep // a map of all particles that have end vertices if ( end_vtx_code != 0 ) { particle_to_end_vertex.addEndParticle(p,end_vtx_code); } return is; } std::ostream & establish_output_stream_info( std::ostream & os ) { StreamInfo & info = get_stream_info(os); if ( !info.finished_first_event() ) { // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double os.precision(16); // we use decimal to store integers, because it is smaller than hex! os.setf(std::ios::dec,std::ios::basefield); os.setf(std::ios::scientific,std::ios::floatfield); } return os; } std::istream & establish_input_stream_info( std::istream & is ) { StreamInfo & info = get_stream_info(is); if ( !info.finished_first_event() ) { // precision 16 (# digits following decimal point) is the minimum that // will capture the full information stored in a double is.precision(16); // we use decimal to store integers, because it is smaller than hex! is.setf(std::ios::dec,std::ios::basefield); is.setf(std::ios::scientific,std::ios::floatfield); } return is; } } // detail } // HepMC hepmc-2.06.09.orig/src/Units.cc.in0000644000175000017500000000270511014622251017410 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // Units.cc // Author: A. Buckley, D. Grellscheid // // units used by a GenEvent // The default units are set here at compile time. //-------------------------------------------------------------------------- #include "HepMC/Units.h" namespace HepMC { namespace Units { // helper functions std::string name(MomentumUnit m) { switch (m) { case MEV : return "MEV"; case GEV : return "GEV"; default : return "badValue"; } } std::string name(LengthUnit l) { switch (l) { case MM : return "MM"; case CM : return "CM"; default : return "badValue"; } } double conversion_factor(MomentumUnit from, MomentumUnit to) { if ( from == to ) return 1.0; else if ( from == MEV && to == GEV ) return 0.001; else return 1000.0; } double conversion_factor(LengthUnit from, LengthUnit to) { if ( from == to ) return 1.0; else if ( from == MM && to == CM ) return 0.1; else return 10.0; } // if this function fails to compile, rerun configure using --with-length_units LengthUnit default_length_unit() { return @HEPMC_DEFAULT_LEN_UNIT@ ; } // if this function fails to compile, rerun configure using --with-momentum_units MomentumUnit default_momentum_unit() { return @HEPMC_DEFAULT_MOM_UNIT@ ; } } // Units } // HepMC hepmc-2.06.09.orig/src/GenCrossSection.cc0000644000175000017500000000574211211311605020752 0ustar sylvestresylvestre//-------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, January 2009 // // The singleton GenCrossSection class holds run level information, // such as the cross section. // ////////////////////////////////////////////////////////////////////////// //-------------------------------------------------------------------------- #include #include #include "HepMC/GenCrossSection.h" #include "HepMC/IO_Exception.h" namespace HepMC { GenCrossSection::GenCrossSection( GenCrossSection const & orig ) : m_cross_section( orig.cross_section() ), m_cross_section_error( orig.cross_section_error() ), m_is_set( orig.is_set() ) {} void GenCrossSection::swap( GenCrossSection & other) { std::swap( m_cross_section, other.m_cross_section ); std::swap( m_cross_section_error, other.m_cross_section_error ); std::swap( m_is_set, other.m_is_set ); } GenCrossSection & GenCrossSection::operator = ( GenCrossSection const & rhs ) { GenCrossSection tmp( rhs ); swap( tmp ); return *this; } bool GenCrossSection::operator==( const GenCrossSection& rhs ) const { if( rhs.cross_section() != this->cross_section() ) return false; if( rhs.cross_section_error() != this->cross_section_error() ) return false; return true; } bool GenCrossSection::operator!=( const GenCrossSection& rhs ) const { return !( rhs == *this ); } void GenCrossSection::clear() { m_cross_section = 0.0; m_cross_section_error = 0.0; m_is_set = false; } std::ostream & GenCrossSection::write( std::ostream & os ) const { // make sure the stream is valid if ( !os ) { std::cerr << "GenCrossSection::print !os, setting badbit" << std::endl; os.clear(std::ios::badbit); return os; } // write the GenCrossSection information if the cross section was set if( is_set() ) { os << "C " << m_cross_section << " " << m_cross_section_error << "\n"; } return os; } std::istream & GenCrossSection::read( std::istream & is ) { // make sure the stream is valid if ( !is ) { std::cerr << "GenCrossSection stream input setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // check to see if we have a GenCrossSection line // This line is optional and may not exist if ( is.peek()!='C' ) { return is; } // get the GenCrossSection line std::string line, firstc; std::getline(is,line); std::istringstream iline(line); // Get first character and throw it away iline >> firstc; // Now get the numbers double xs = 0., xserr = 0.; iline >> xs ; if(!iline) throw IO_Exception("GenCrossSection::read encounterd invalid data"); iline >> xserr ; if(!iline) throw IO_Exception("GenCrossSection::read encounterd invalid data"); // set the data members set_cross_section( xs, xserr ); return is; } } // HepMC hepmc-2.06.09.orig/src/StreamHelpers.cc0000644000175000017500000001031511433070150020453 0ustar sylvestresylvestre//-------------------------------------------------------------------------- // // GenEventStreamIO.cc // Author: Lynn Garren // // helper functions used by streaming IO // // ---------------------------------------------------------------------- #include #include #include #include "HepMC/GenVertex.h" #include "HepMC/GenParticle.h" #include "HepMC/StreamHelpers.h" #include "HepMC/IO_Exception.h" namespace HepMC { namespace detail { std::istream & read_vertex( std::istream & is, TempParticleMap & particle_to_end_vertex, GenVertex * v ) { // // make sure the stream is valid if ( !is ) { std::cerr << "StreamHelpers::detail::read_vertex setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // // get the vertex line std::string line; std::getline(is,line); std::istringstream iline(line); std::string firstc; iline >> firstc; // // test to be sure the next entry is of type "V" if ( firstc != "V" ) { std::cerr << "StreamHelpers::detail::read_vertex invalid line type: " << firstc << std::endl; std::cerr << "StreamHelpers::detail::read_vertex setting badbit." << std::endl; is.clear(std::ios::badbit); return is; } // read values into temp variables, then create a new GenVertex object int identifier =0, id =0, num_orphans_in =0, num_particles_out = 0, weights_size = 0; double x = 0., y = 0., z = 0., t = 0.; iline >> identifier ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> id ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> x ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> y ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> z ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> t; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> num_orphans_in ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> num_particles_out ; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } iline >> weights_size; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } WeightContainer weights(weights_size); for ( int i1 = 0; i1 < weights_size; ++i1 ) { iline >> weights[i1]; if(!iline) { throw IO_Exception("read_vertex input stream encounterd invalid data"); } } v->set_position( FourVector(x,y,z,t) ); v->set_id( id ); v->weights() = weights; v->suggest_barcode( identifier ); // // read and create the associated particles. outgoing particles are // added to their production vertices immediately, while incoming // particles are added to a map and handled later. for ( int i2 = 1; i2 <= num_orphans_in; ++i2 ) { GenParticle* p1 = new GenParticle( ); detail::read_particle(is,particle_to_end_vertex,p1); } for ( int i3 = 1; i3 <= num_particles_out; ++i3 ) { GenParticle* p2 = new GenParticle( ); detail::read_particle(is,particle_to_end_vertex,p2); v->add_particle_out( p2 ); } return is; } std::istream & find_event_end( std::istream & is ) { // since there is no end of event flag, // read one line at time until we find the next event // or the end of event block // don't throw until we find the end of the event std::string line, firstc; while ( is ) { is >> firstc; if( firstc=="E" ) { // next event is.unget(); throw IO_Exception("input stream encountered invalid data"); return is; } else if( firstc.size() > 1 ) { // no more events in this block throw IO_Exception("input stream encountered invalid data, now at end of event block"); return is; } std::getline(is,line); } // the stream is bad throw IO_Exception("input stream encountered invalid data, stream is now corrupt"); return is; } } // detail } // HepMC hepmc-2.06.09.orig/src/SearchVector.cc0000644000175000017500000000155510711654521020303 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Author: Lynn Garren // search vectors for a GenParicle* instance ////////////////////////////////////////////////////////////////////////// #include "HepMC/SearchVector.h" namespace HepMC { bool not_in_vector( std::vector* v, GenParticle* p ) { if( already_in_vector(v,p) == v->end() ) return true; return false; } /// returns true if GenParticle is in the vector std::vector::iterator already_in_vector( std::vector* v, GenParticle* p ) { // if the vectors are mostly large, the search should be coded differently std::vector::iterator it; for( it = v->begin(); it != v->end(); ++it ) { // bail as soon as we find a match if( (*it) == p ) return it; } return v->end(); } } // HepMC hepmc-2.06.09.orig/src/WeightContainer.cc0000644000175000017500000000742111374257600021006 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, November 2000, refer to: // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for // High Energy Physics", Computer Physics Communications (to be published). // // Container for the Weights associated with an event or vertex. // Basically just an interface to STL vector with extra map-like attributes ////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include "HepMC/WeightContainer.h" namespace HepMC { WeightContainer::WeightContainer( size_type n, double value ) : m_weights(n,value), m_names() { set_default_names(n); } WeightContainer::WeightContainer( const std::vector& wgts ) : m_weights(wgts), m_names() { set_default_names(size()); } void WeightContainer::set_default_names( size_type n ) { // internal program used by the constructors std::ostringstream name; for ( size_type count = 0; countsecond == vit ) { m_names.erase(m->first); continue; } } m_weights.pop_back(); } double& WeightContainer::operator[]( const std::string& s ) { const_map_iterator m = m_names.find(s); if( m != m_names.end() ) { return m_weights[m->second]; } // doesn't exist - have to create it size_type count = m_weights.size(); m_weights.push_back(0); m_names[s] = count; return m_weights.back(); } const double& WeightContainer::operator[]( const std::string& s ) const { const_map_iterator m = m_names.find(s); if( m != m_names.end() ) { return m_weights[m->second]; } // doesn't exist and we cannot create it // note that std::map does not support this (const) operator // throw an appropriate error, we choose the error thrown by std::vector throw std::out_of_range("const WeightContainer::operator[] ERROR: string "+s+" not found in WeightContainer" ); } bool WeightContainer::operator==( const WeightContainer & other ) const { if( size() != other.size() ) { return false; } if( m_names != other.m_names ) { return false; } if( m_weights != other.m_weights ) { return false; } return true; } bool WeightContainer::operator!=( const WeightContainer & other ) const { return !(*this == other ); } bool WeightContainer::has_key( const std::string& s ) const { // look up the name in the map return m_names.find(s) != m_names.end(); } void WeightContainer::print( std::ostream& ostr ) const { // print a name, weight pair for ( const_map_iterator m = map_begin(); m != map_end(); ++m ) { ostr << "(" << m->first << "," << m_weights[m->second] << ") "; } ostr << std::endl; } void WeightContainer::write( std::ostream& ostr ) const { size_type count = 0; for ( const_iterator w = begin(); w != end(); ++w ) { std::string name; for ( const_map_iterator m = map_begin(); m != map_end(); ++m ) { if( m->second == count ) name = m->first; } ostr << "Weight " << std::setw(4) << count << " with name " << std::setw(10) << name << " is " << *w << std::endl; ++count; } } } // HepMC hepmc-2.06.09.orig/README0000644000175000017500000000175011763460036015476 0ustar sylvestresylvestre HepMC - a C++ Event Record for Monte Carlo Generators Authors: Matt Dobbs, University of Victoria and Jorgen Beck Hansen, CERN Additional Authors: Lynn Garren, Fermilab Refer to: https://savannah.cern.ch/projects/hepmc/ for online documentation. and: M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for High Energy Physics", Computer Physics Communications, Vol. 134 (2001) 41-46, [ATL-SOFT-2000-001]. Copyright (C) 2000 by Matt Dobbs, University of Victoria and Jorgen Beck Hansen, CERN The HepMC Event Record Package is the intellectual property of the package authors. Anyone may copy and distribute this package freely. ***************************************************** 2002-01-23 HepMC was developed on Linux with gcc. Thanks to the work of Witold Pokorski and Pere Mato, it now compiles and runs on Windows with Microsoft Visual C++. ***************************************************** hepmc-2.06.09.orig/examples/0000755000175000017500000000000011763470443016434 5ustar sylvestresylvestrehepmc-2.06.09.orig/examples/GNUmakefile.example.in0000644000175000017500000001123211654065133022537 0ustar sylvestresylvestre################################################################################ # Makefile for building a HepMC executable with the gcc compiler # # Matt.Dobbs@CERN.CH 1.2000 # # This makefiles also works to compile the example programs. # I.E.: syntax for compiling the example_MyPythia.cc example: # gmake example_MyPythia.exe # or simply gmake all to compile all examples. # ################################################################################ Define directory paths # You may have to change GENSERdir and/or other variables # HepMCdir = @prefix@ HepMClib = -L$(HepMCdir)/lib -lHepMC HepMCfiolib = -L$(HepMCdir)/lib -lHepMCfio GENSERdir = @GENSERdir@ CLHEPdir = @CLHEPdir@ ################################################################################ Compiler options # CXX = @CXX@ F77 = @F77@ INCLUDES = -I$(HepMCdir)/include -I$(CLHEPdir)/include CXXFLAGS = @AM_CXXFLAGS@ @CXXFLAGS@ $(INCLUDES) FLAGS = $(DFLG) $(INCDIR) ifeq "$(CXX)" "g++" FLAGS += -fno-second-underscore endif EXAMPLES = example_BuildEventFromScratch.exe \ example_EventSelection.exe \ example_UsingIterators.exe LINK_LIBS = @LDFLAGS@ UNAME = $(shell uname) ifneq (,$(strip $(CLHEPdir))) EXAMPLES += example_VectorConversion.exe ifeq "$(UNAME)" "Darwin" CLHEP_LIB = -L$(CLHEPdir)/lib -lCLHEP else CLHEP_LIB = -L$(CLHEPdir)/lib -lCLHEP -Wl,-rpath -Wl,$(CLHEPdir)/lib endif endif ifeq "$(UNAME)" "Darwin" else LINK_LIBS += -Wl,-rpath -Wl,$(HepMCdir)/lib endif HDRS = $(HepMCdir)/include/HepMC/*.h *.h ################################################################################ PLATFORM=$(shell uname) ifeq "$(PLATFORM)" "Linux" LINK_LIBS += -lg2c endif ################################################################################ definition of the compiler options # -I location of directory containing include files # -L location of directory containing libraries # -lname include the library from -L location called libname.a # -lg2c is the library containing info on converting fortran to C # -lf is the library containing the intrinsic for HPUX only. # -shared make a shared library as output # -fPIC produce position independent code # necessary on some platforms (including HPUX) for -shared # -fpic ^^ same(?) # -O optimizes # -g produces output for the debugger # -pg produces output for gprof profiler # note: if you want to see all warnings and ensure ansi standard # compatibility, use: # -pipe -ansi -pedantic -fnonnull-objects \ # -W -Wall -Wwrite-strings -Wpointer-arith -Wnested-externs \ # -Woverloaded-virtual -Wbad-function-cast -fnonnull-objects # The proper order for cernlib libraries is: # -lpawlib -lgraflib -lgrafX11 -lmathlib -lkernlib -lpacklib -ljetset74 # # makefile syntax: # for target thedir/target.suf from source anotherdir/source.suf2 # ${*D} = thedir # ${*F} = target # $* = thedir/target # $@ = thedir/target.suf # $< = anotherdir/source.suf2 # ############################################################################### # .SUFFIXES: .o .cc .exe all: $(EXAMPLES) example_BuildEventFromScratch.exe: example_BuildEventFromScratch.o @echo "Building $@ ..." $(CXX) $(FLAGS) example_BuildEventFromScratch.o \ $(HepMClib) \ $(LINK_LIBS) -o $@ example_VectorConversion.exe: example_VectorConversion.o @echo "Building $@ ..." $(CXX) $(FLAGS) example_VectorConversion.o \ $(HepMClib) \ $(CLHEP_LIB) \ $(LINK_LIBS) -o $@ example_EventSelection.exe: example_EventSelection.o @echo "Building $@ ..." $(CXX) $(FLAGS) example_EventSelection.o \ $(HepMClib) \ $(LINK_LIBS) -o $@ example_UsingIterators.exe: example_UsingIterators.o @echo "Building $@ ..." $(CXX) $(FLAGS) example_UsingIterators.o \ $(HepMClib) \ $(LINK_LIBS) -o $@ ############################################################################### # instructions for building a .o file from a .cc file # .cc.o: $(HDRS) $< @echo "Compiling $< with $(CXX) ..." @$(CXX) $(CXXFLAGS) -c $< -o $@ ############################################################################### # gmake clean removes all garbage from HepMC directories. # clean: rm -f *.o ############################################################################### # gmake distclean removes all compiled libraries, executables, +garbage # to prepare the package for distribution distclean: $(MAKE) clean --no-print-directory rm -f *.exe rm -f *.dat hepmc-2.06.09.orig/examples/example_UsingIterators.cc0000644000175000017500000001350710726335316023443 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, Feb 2000 // This example shows low to use the particle and vertex iterators ////////////////////////////////////////////////////////////////////////// // To Compile: go to the HepMC directory and type: // gmake examples/example_UsingIterators.exe // #include "HepMC/IO_GenEvent.h" #include "HepMC/GenEvent.h" #include #include #include //! example class /// \class IsPhoton /// this predicate returns true if the input particle is a photon /// in the central region (eta < 2.5) with pT > 10 GeV class IsPhoton { public: /// returns true if the GenParticle is a photon with more than 10 GeV transverse momentum bool operator()( const HepMC::GenParticle* p ) { if ( p->pdg_id() == 22 && p->momentum().perp() > 10. ) return 1; return 0; } }; //! example class /// \class IsW_Boson /// this predicate returns true if the input particle is a W+/W- class IsW_Boson { public: /// returns true if the GenParticle is a W bool operator()( const HepMC::GenParticle* p ) { if ( abs(p->pdg_id()) == 24 ) return 1; return 0; } }; //! example class /// \class IsStateFinal /// this predicate returns true if the input has no decay vertex class IsStateFinal { public: /// returns true if the GenParticle does not decay bool operator()( const HepMC::GenParticle* p ) { if ( !p->end_vertex() && p->status()==1 ) return 1; return 0; } }; int main() { { // begin scope of ascii_in // an event has been prepared in advance for this example, read it // into memory using the IO_GenEvent input strategy HepMC::IO_GenEvent ascii_in("example_UsingIterators.txt",std::ios::in); if ( ascii_in.rdstate() == std::ios::failbit ) { std::cerr << "ERROR input file example_UsingIterators.txt is needed " << "and does not exist. " << "\n Look for it in HepMC/examples, Exit." << std::endl; return 1; } HepMC::GenEvent* evt = ascii_in.read_next_event(); // if you wish to have a look at the event, then use evt->print(); // use GenEvent::vertex_iterator to fill a list of all // vertices in the event std::list allvertices; for ( HepMC::GenEvent::vertex_iterator v = evt->vertices_begin(); v != evt->vertices_end(); ++v ) { allvertices.push_back(*v); } // we could do the same thing with the STL algorithm copy std::list allvertices2; copy( evt->vertices_begin(), evt->vertices_end(), back_inserter(allvertices2) ); // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsStateFinal predicate IsStateFinal isfinal; std::list finalstateparticles; for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( isfinal(*p) ) finalstateparticles.push_back(*p); } // an STL-like algorithm called HepMC::copy_if is provided in the // GenEvent.h header to do this sort of operation more easily, // you could get the identical results as above by using: std::list finalstateparticles2; HepMC::copy_if( evt->particles_begin(), evt->particles_end(), back_inserter(finalstateparticles2), IsStateFinal() ); // lets print all photons in the event that satisfy the IsPhoton criteria IsPhoton isphoton; for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( isphoton(*p) ) (*p)->print(); } // the GenVertex::particle_iterator and GenVertex::vertex_iterator // are slightly different from the GenEvent:: versions, in that // the iterator starts at the given vertex, and walks through the attached // vertex returning particles/vertices. // Thus only particles/vertices which are in the same graph as the given // vertex will be returned. A range is specified with these iterators, // the choices are: // parents, children, family, ancestors, descendants, relatives // here are some examples. // use GenEvent::particle_iterator to find all W's in the event, // then // (1) for each W user the GenVertex::particle_iterator with a range of // parents to return and print the immediate mothers of these W's. // (2) for each W user the GenVertex::particle_iterator with a range of // descendants to return and print all descendants of these W's. IsW_Boson isw; for ( HepMC::GenEvent::particle_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ) { if ( isw(*p) ) { std::cout << "A W boson has been found: " << std::endl; (*p)->print(); // return all parents // we do this by pointing to the production vertex of the W // particle and asking for all particle parents of that vertex std::cout << "\t Its parents are: " << std::endl; if ( (*p)->production_vertex() ) { for ( HepMC::GenVertex::particle_iterator mother = (*p)->production_vertex()-> particles_begin(HepMC::parents); mother != (*p)->production_vertex()-> particles_end(HepMC::parents); ++mother ) { std::cout << "\t"; (*mother)->print(); } } // return all descendants // we do this by pointing to the end vertex of the W // particle and asking for all particle descendants of that vertex std::cout << "\t\t Its descendants are: " << std::endl; if ( (*p)->end_vertex() ) { for ( HepMC::GenVertex::particle_iterator des =(*p)->end_vertex()-> particles_begin(HepMC::descendants); des != (*p)->end_vertex()-> particles_end(HepMC::descendants); ++des ) { std::cout << "\t\t"; (*des)->print(); } } } } // cleanup delete evt; // in analogy to the above, similar use can be made of the // HepMC::GenVertex::vertex_iterator, which also accepts a range. } // end scope of ascii_in return 0; } hepmc-2.06.09.orig/examples/example_UsingIterators.txt0000644000175000017500000017607710361224004023673 0ustar sylvestresylvestre HepMC::IO_Ascii-START_EVENT_LISTING E 0 -1.0000000000000000e+00 -1.0000000000000000e+00 -1.0000000000000000e+00 0 0 164 0 0 V -1 0 0 0 0 0 1 2 0 P 1 2212 0 0 6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -1 0 P 3 1 1.8207711891212544e-01 1.8064803338823676e-01 1.0686638074933117e+02 1.0686668854348508e+02 3 0 0 -3 0 P 33 2203 -1.8207711891212544e-01 -1.8064803338823676e-01 4.8999901020578363e+03 4.8999901694799883e+03 2 0 0 -11 0 V -2 0 0 0 0 0 1 3 0 P 2 2212 0 0 -6.9999999371178146e+03 7.0000000000000000e+03 3 0 0 -2 0 P 4 21 -9.9459531516488819e-01 1.7470149874808178e-02 -2.0839316461601443e+03 2.0839318835779582e+03 3 0 0 -4 0 P 20 2101 8.4412387562789493e-01 -3.8257660932867289e-02 -3.2806043756589975e+03 3.2806045356343966e+03 2 0 0 -9 0 P 37 2 1.5047143953699327e-01 2.0787511058059111e-02 -1.2082674278839690e+03 1.2082674824967844e+03 2 0 0 -13 0 V -3 0 0 0 0 0 0 2 0 P 5 1 -2.1678523392807976e+00 1.0560741431009600e+01 4.4545524383931109e+01 4.5831567570583644e+01 3 0 0 -5 0 P 32 21 3.3376883448109762e+00 -1.2731461633701596e+01 4.9572144610113277e+01 5.1289646129248013e+01 2 0 0 -11 0 V -4 0 0 0 0 0 0 14 0 P 6 -2 1.0606795222911215e+01 6.8232444672115857e+00 -3.8511077010453782e+01 4.0523620549812762e+01 3 0 0 -5 0 P 11 2 -9.8219926505127564e+00 -2.0036846827434287e+00 9.5107747609981808e-01 1.0074707951108639e+01 2 0 0 -9 0 P 12 21 -9.1884628006455793e-01 -5.8800553025607316e-01 5.7130173804726880e-01 1.2314278971568056e+00 2 0 0 -9 0 P 13 21 -1.6876154681605759e-01 1.2185612960646765e-01 2.1981478595335269e-01 3.0273406833413197e-01 2 0 0 -9 0 P 14 21 -6.4228004709905390e-02 -2.5243597231025894e-01 6.6529206434193300e-02 2.6884064427464266e-01 2 0 0 -9 0 P 15 21 2.4604724391602206e-01 -2.4030155115787666e-01 -1.6862550392184048e+00 1.7209706967339728e+00 2 0 0 -9 0 P 16 21 4.7089446746763892e+00 -3.0158543649811804e+00 -2.9483213300084445e+00 6.3215612126216039e+00 2 0 0 -9 0 P 17 21 9.2301347298670078e-01 -2.6086419040233629e-02 -1.3188998119879931e+00 1.6100096542056128e+00 2 0 0 -9 0 P 18 21 -2.0476979428063848e+00 1.3188243185887505e-01 -4.5968753271344740e+00 5.0340562783926233e+00 2 0 0 -9 0 P 19 21 6.3798386815283969e-01 8.0953802585772983e-01 -2.0118083924703897e+03 2.0118086565052663e+03 2 0 0 -9 0 P 21 2 -3.2626901254073561e+00 -1.7533399061410745e-01 -3.6711643227960127e+00 4.9256711570775451e+00 2 0 0 -11 0 P 34 -2 -1.5493208793496265e+00 -1.0086500894195651e+00 -2.8104633682948732e+00 3.3801441588491699e+00 2 0 0 -13 0 P 35 21 -1.5379065401766301e+00 2.0365763285594718e+00 -5.5410110314487167e+00 6.1004592383691243e+00 2 0 0 -13 0 P 36 21 2.6630528541717063e-01 -2.4390639661635649e-01 -9.9197899658141658e-02 3.7449840940661266e-01 2 0 0 -13 0 V -5 0 0 0 0 0 0 2 0 P 7 -24 7.3036124064058150e+00 1.7464384759632175e+01 2.9282868093676551e+00 8.3047065885734952e+01 3 0 0 -6 0 P 8 22 1.1353304772246029e+00 -8.0398861410992742e-02 3.1061605641096879e+00 3.3081222346614498e+00 3 0 0 -7 0 V -6 0 0 0 0 0 0 1 0 P 9 -24 7.3036124064058150e+00 1.7464384759632175e+01 2.9282868093676551e+00 8.3047065885734952e+01 2 0 0 -8 0 V -7 0 0 0 0 0 0 1 0 P 10 22 1.1353304772246029e+00 -8.0398861410992742e-02 3.1061605641096879e+00 3.3081222346614467e+00 1 0 0 0 0 V -8 0 0 0 0 0 0 6 0 P 38 -2 -3.4928818937025037e+00 3.7089103172223421e+00 -3.3311972593544015e+00 6.0960655217347686e+00 2 0 0 -15 0 P 39 21 -1.2501179667014341e+01 1.0695806969902126e+01 -1.1713934326921674e+01 2.0196436250482748e+01 2 0 0 -15 0 P 40 21 -8.2734877842849457e+00 7.2999011277920003e+00 -8.9563308359549172e+00 1.4211087876560613e+01 2 0 0 -15 0 P 41 21 7.4714753134386816e-02 8.4746470575741126e-02 -4.2621710702264387e-01 4.4093682192546496e-01 2 0 0 -15 0 P 42 21 1.3594781231309232e+01 -2.2260992759907365e+00 9.5367827647424761e+00 1.6754814836804773e+01 2 0 0 -15 0 P 43 1 1.7901665766963969e+01 -2.0988808498693161e+00 1.7819183573878782e+01 2.5347724578226529e+01 2 0 0 -15 0 V -9 0 0 0 0 0 0 1 0 P 52 92 -5.6614132895498157e+00 -5.1013495940988465e+00 -5.3011543964312023e+03 5.3189775005424908e+03 2 0 0 -10 0 V -10 0 0 0 0 0 0 18 0 P 53 213 -7.3393941874975868e+00 -1.8732541000673162e+00 1.0283771494184015e+00 7.6821490969059560e+00 2 0 0 -23 0 P 54 113 -1.0830848860632829e+00 -6.4893709615821882e-01 2.5787974705110894e-01 1.5053392377642147e+00 2 0 0 -24 0 P 55 -211 -9.3075067344200124e-01 6.5907797541291424e-01 -1.0275853869082594e+00 1.5414577860176781e+00 1 0 0 0 0 P 56 2112 -1.2113654855619562e+00 -7.6288923100367712e-01 1.5965730263436415e-01 1.7197931729067355e+00 1 0 0 0 0 P 57 211 5.6523813721715155e-01 -8.9005175770630773e-01 1.6158258121751204e-01 1.0757671674733884e+00 1 0 0 0 0 P 58 -2112 1.5120987327755497e+00 -1.5500556136632797e+00 -1.3105491625882295e+00 2.6998973824149650e+00 1 0 0 0 0 P 59 111 5.2827878600968402e-02 7.1236058337479091e-01 -2.9951467366204767e+00 3.0821051182255030e+00 2 0 0 -25 0 P 60 223 9.6276610785543582e-01 -1.0941869819237875e+00 -6.3120742313482814e-01 1.7727721798738911e+00 2 0 0 -26 0 P 61 -213 9.7223587872080819e-01 -3.6768261235659433e-01 -1.2834482266281761e+00 1.7821691829319597e+00 2 0 0 -27 0 P 62 213 -1.5418038238601992e-01 -9.2271563056892481e-01 -2.6186823500186227e+00 2.8565516554470731e+00 2 0 0 -28 0 P 63 2112 4.0056799028320655e-01 5.6405489997117730e-01 -5.8868042727861152e+00 6.0013222689682211e+00 1 0 0 0 0 P 64 -3122 -3.8825233090617955e-01 2.1906492110748368e-01 -4.2818183436416293e+00 4.4471833223355945e+00 2 0 0 -29 0 P 65 -313 -3.6258916375263767e-01 1.3538897757891374e-01 -1.2459830507495948e+01 1.2491942955530423e+01 2 0 0 -30 0 P 66 -213 1.3576270781527128e-01 -2.9137488677278271e-02 -2.0978145227405857e+01 2.0997832363793922e+01 2 0 0 -31 0 P 67 213 -6.8878386513530665e-01 1.6177275229595015e-01 -1.9716045253355592e+01 1.9746492262557101e+01 2 0 0 -32 0 P 68 223 1.2313599509433548e+00 -1.5081314006647409e-01 -9.6433759487164605e+02 9.6433870822098800e+02 2 0 0 -33 0 P 69 111 -6.3587404505612799e-01 1.6587962154723013e-01 -3.6906812450944443e+02 3.6906873424928477e+02 2 0 0 -34 0 P 70 2112 1.3000043460395367e+00 5.7077432680455265e-01 -3.8961669109398485e+03 3.8961672829190716e+03 1 0 0 0 0 V -11 0 0 0 0 0 10 1 0 P 22 21 4.4692075670159666e+00 2.9282240250919513e+00 -1.4631856783789499e+02 1.4641609066749078e+02 2 0 0 -11 0 P 23 21 2.8249633961627501e+00 1.2750707970638415e+00 -2.6676799132498235e+02 2.6678599554566773e+02 2 0 0 -11 0 P 24 21 -4.1442722979793931e+00 7.7165305823310792e-01 -3.1073186991537902e+00 5.2369715313519425e+00 2 0 0 -11 0 P 25 21 1.1066636550241478e+00 3.5797304262198506e+00 3.9889308021175101e+00 5.4727272281594121e+00 2 0 0 -11 0 P 26 21 1.2008332082557969e+00 2.6801259321291586e+00 5.5187564206281392e+00 6.2515396372689995e+00 2 0 0 -11 0 P 27 21 7.2334074446732783e+00 3.9334120936850274e+00 6.5548404459503633e+00 1.0524250435602015e+01 2 0 0 -11 0 P 28 21 4.1442722979793931e+00 -7.7165305823310792e-01 4.0112726154555027e+01 4.0333624197093954e+01 2 0 0 -11 0 P 29 21 -2.8249633961627501e+00 -1.2750707970638415e+00 4.5374431868712648e+01 4.5480163710519228e+01 2 0 0 -11 0 P 30 21 -7.2334074446732783e+00 -3.9334120936850274e+00 1.4594787281491514e+02 1.4617994217114074e+02 2 0 0 -11 0 P 31 21 -1.2008332082557969e+00 -2.6801259321291586e+00 1.5608050844043855e+03 1.5608078474232461e+03 2 0 0 -11 0 P 71 92 5.4687923225316100e+00 -6.5794892063921386e+00 6.3379998473943870e+03 7.1896946393138542e+03 2 0 0 -12 0 V -12 0 0 0 0 0 0 56 0 P 72 113 -1.9301928634818812e+00 -3.7238688256673957e-01 -2.6586694610915580e+00 3.3764269068725201e+00 2 0 0 -35 0 P 73 323 -1.2543254794758134e+00 1.4163541585812364e-01 -2.3930341099901593e+00 2.8474824071350739e+00 2 0 0 -36 0 P 74 -311 1.8250369752391291e-01 7.6808484521379172e-02 -2.5305808270791803e+00 2.5866429777194111e+00 2 0 0 -37 0 P 75 311 7.9687592550235875e-01 4.3543534377336596e-01 -1.1503769232380790e+01 1.1550281258914186e+01 2 0 0 -38 0 P 76 -321 2.6395087595992844e-01 4.2448405227487213e-01 -2.3440362859920906e+01 2.3450887163182436e+01 1 0 0 0 0 P 77 331 2.0162387719993378e+00 1.3519856371094143e+00 -7.0662837370580846e+01 7.0711010863292501e+01 2 0 0 -39 0 P 78 111 7.3832420072603622e-01 3.5511346825576506e-01 -3.7324924107795887e+01 3.7334158721656344e+01 2 0 0 -40 0 P 79 113 1.4313712030288679e+00 6.1852734465994030e-01 -1.0753159171136213e+02 1.0754530385353668e+02 2 0 0 -41 0 P 80 111 1.2306406188698131e+00 6.3837826243313822e-01 -6.7849760393155108e+01 6.7864056820585859e+01 2 0 0 -42 0 P 81 2212 -2.0151278778942300e-01 -3.1628126979704491e-01 -5.0549324737192265e+01 5.0559422694729157e+01 1 0 0 0 0 P 82 -3122 4.6913230447659704e-01 4.0373160245365819e-01 -2.6116200786642651e+01 2.6147347278769164e+01 2 0 0 -43 0 P 83 333 4.3078487243957336e-01 -1.4363952310468706e-01 -8.9493871998784513e+00 9.0185040299858876e+00 2 0 0 -44 0 P 84 -313 -6.8657928851552152e-01 1.0474655699866351e+00 -5.4756025137758702e+00 5.6900079447857044e+00 2 0 0 -45 0 P 85 -211 -1.5843157121506708e+00 -3.3651837424969916e-01 -1.2231644197080784e+00 2.0344315851153487e+00 1 0 0 0 0 P 86 2212 -9.9589145196344331e-01 3.4793868909155756e-02 -5.1237075754073635e-01 1.4614666549361941e+00 1 0 0 0 0 P 87 -2112 -1.7718662399343398e-02 1.5112975762237313e+00 6.6596548338639616e-01 1.9001673939048165e+00 1 0 0 0 0 P 88 -211 -6.5098600431144377e-02 4.4241952766209808e-01 3.0978006120845142e-01 5.6161938842703751e-01 1 0 0 0 0 P 89 213 -1.6489228706561126e-01 1.5107289100392998e-01 -1.5900675073211218e-01 8.3355285631041276e-01 2 0 0 -46 0 P 90 1114 2.6727589361370130e-01 1.0250299176368884e+00 1.8690863814402534e+00 2.4382754148693651e+00 2 0 0 -47 0 P 91 -311 2.5368558885847314e-01 5.2083060101017375e-01 1.3430305676938716e+00 1.5450007856319077e+00 2 0 0 -48 0 P 92 -3214 2.7869676001533628e+00 2.3298496115071847e+00 2.9609017405189926e+00 4.8824393064749145e+00 2 0 0 -49 0 P 93 111 1.0309607812192152e-01 1.3163140985659803e+00 1.7013949220568840e+00 2.1578405614429998e+00 2 0 0 -50 0 P 94 111 3.4963818024225618e-01 -9.9281680028083463e-02 5.1128211703488979e-01 6.4166401852682520e-01 2 0 0 -51 0 P 95 223 1.3961497822975695e+00 1.3693449691598505e+00 2.8326660809421833e+00 3.5374694238307844e+00 2 0 0 -52 0 P 96 2212 1.4640716268503902e+00 2.5610509266921139e-01 1.6038107804212900e+00 2.3794232829269788e+00 1 0 0 0 0 P 97 -313 1.4418127375889718e+00 1.1933336531095013e+00 1.9708008661611172e+00 2.8617906943103502e+00 2 0 0 -53 0 P 98 -3122 1.1365252969405735e+00 3.8371807407916930e-01 4.2473279076487280e+00 4.5523033212268222e+00 2 0 0 -54 0 P 99 -211 1.3014604645419261e+00 -2.9589665995954934e-01 1.3872099310949988e+01 1.3936856648896839e+01 1 0 0 0 0 P 100 223 -3.0200453822825996e-01 -4.1581420515574091e-01 4.2790640233886545e+00 4.3792708120436661e+00 2 0 0 -55 0 P 101 2212 4.0281808187233448e-01 4.3789056077774474e-01 9.3476451373751939e+00 9.4134388380387151e+00 1 0 0 0 0 P 102 -2112 1.0497625079093729e+00 -4.8144416597643591e-01 2.1766592878610830e+01 2.1817450518703065e+01 1 0 0 0 0 P 103 311 -1.5520409305619836e+00 -1.2210147176674591e+00 2.1768352713600486e+01 2.1863406945934063e+01 2 0 0 -56 0 P 104 331 -9.5386937573480235e-01 -8.0350810405681394e-01 3.0041662208859474e+01 3.0082813397889698e+01 2 0 0 -57 0 P 105 333 -1.4386089450999393e+00 3.1393141865561525e-02 2.7744773975575573e+01 2.7800694058258330e+01 2 0 0 -58 0 P 106 -311 -3.8214841574132694e+00 -2.5961844176363122e+00 7.8054640724626125e+01 7.8192829139091145e+01 2 0 0 -59 0 P 107 113 -4.4990722072325967e-01 8.1693575860108860e-03 9.0659366533646676e+01 9.0664421686327685e+01 2 0 0 -60 0 P 108 -211 -2.8393012706934972e-01 -2.5713265309056776e-01 1.2784382876542568e+02 1.2784447882762372e+02 1 0 0 0 0 P 109 2214 2.1215553416778568e-01 -7.5826955780544270e-01 2.3583700847644323e+02 2.3584180731844083e+02 2 0 0 -61 0 P 110 -2114 -5.8543736655948453e-01 -2.5299376136915980e-01 5.9710329095160134e+01 5.9726494105038597e+01 2 0 0 -62 0 P 111 111 -4.3062687525713539e-01 -5.6916443025617047e-01 2.8797547700829591e+02 2.8797639306965829e+02 2 0 0 -63 0 P 112 223 2.8005454870049996e-02 4.1308855482307549e-01 1.2414293140897176e+02 1.2414606029747519e+02 2 0 0 -64 0 P 113 -211 -6.9271107033031665e-01 -2.0800030805948388e+00 6.0645545154712659e+02 6.0645943017852096e+02 1 0 0 0 0 P 114 213 -2.3000939306394802e-01 4.0733000491800347e-01 4.5739180202250587e+01 4.5748407579349909e+01 2 0 0 -65 0 P 115 223 2.2774239392656179e+00 -1.0332067283038940e+01 4.1314275567769535e+01 4.2654679664909338e+01 2 0 0 -66 0 P 116 113 1.6348726768104249e+00 -1.9770063377051570e+00 1.3781895958110670e+01 1.4030494345190281e+01 2 0 0 -67 0 P 117 223 -6.6377609744643995e-01 -1.2345717231439940e-01 7.3066616330931833e+00 7.3789234664035632e+00 2 0 0 -68 0 P 118 -211 3.7679189862232543e-01 2.7962599479691669e-01 7.7378362854197542e+00 7.7533059398357400e+00 1 0 0 0 0 P 119 111 -8.5991997764855582e-02 -4.4952385162912717e-01 2.2023991368861541e+01 2.2029159805424960e+01 2 0 0 -69 0 P 120 213 -3.3578442986845147e-01 2.7093331942703924e-02 4.0445117791478950e+01 4.0456317054702751e+01 2 0 0 -70 0 P 121 -211 3.8322243929773225e-01 9.0931905818046374e-02 7.6233367907723775e+01 7.6234513118329460e+01 1 0 0 0 0 P 122 2212 1.5131995393949552e-01 -2.1652010859900403e-01 8.2270494467011090e+01 8.2276268687424633e+01 1 0 0 0 0 P 123 113 -3.6910696601529253e-01 -4.9790632393970230e-01 1.4712043162549577e+02 1.4712400048292415e+02 2 0 0 -71 0 P 124 -2214 -3.3735912716017891e-01 5.7711984424148199e-01 1.0640591837120148e+03 1.0640600877107552e+03 2 0 0 -72 0 P 125 211 1.6126290337228028e-01 1.9492225956087422e-01 3.1604712877734153e+02 3.1604726084653493e+02 1 0 0 0 0 P 126 2114 2.8854374778562092e-01 -2.2266616822399021e-01 1.1830859582926421e+03 1.1830866107534202e+03 2 0 0 -73 0 P 127 213 -1.2471678354718113e-01 -2.5604849682066366e-01 1.9501996403274329e+03 1.9501997864076113e+03 2 0 0 -74 0 V -13 0 0 0 0 0 0 1 0 P 128 92 -2.6704506945720929e+00 8.0480735358160926e-01 -1.2167181001833708e+03 1.2181225843034092e+03 2 0 0 -14 0 V -14 0 0 0 0 0 0 12 0 P 129 113 -8.4108198397837075e-01 1.0032630722232955e-01 -2.7229360811119769e+00 2.9552102974431969e+00 2 0 0 -75 0 P 130 223 -7.9709904890767702e-01 -4.7575771927430421e-01 -1.5680688092190203e+00 1.9829420445622801e+00 2 0 0 -76 0 P 131 113 -2.6576457007739007e-01 6.4214272825360397e-01 -1.6796230706560047e+00 2.0208710843812767e+00 2 0 0 -77 0 P 132 -211 -4.4078417419642668e-01 -4.9817448471972441e-02 -4.8370936802832816e+00 4.8593957981554396e+00 1 0 0 0 0 P 133 223 -4.8331353327725213e-01 2.2726183083390561e-01 -2.2387092758525946e+00 2.4321937077881568e+00 2 0 0 -78 0 P 134 211 2.9108817342541382e-01 1.5998467926314014e-01 -5.0367953839251483e+00 5.0496648350892315e+00 1 0 0 0 0 P 135 -211 -3.4020138058155586e-01 -5.9561960219537274e-02 -3.6036881885274613e-01 5.1829535687300321e-01 1 0 0 0 0 P 136 213 -1.0135956000186550e-01 2.4181696701626876e-01 -2.0165397083049314e+01 2.0189126247965632e+01 2 0 0 -79 0 P 137 -213 -6.9941246610296802e-04 1.6953106105085428e-01 -1.7891168175022074e+02 1.7891311534711954e+02 2 0 0 -80 0 P 138 213 4.8326521561799268e-01 -4.6984136765753687e-01 -2.3793724422187319e+02 2.3793937711935448e+02 2 0 0 -81 0 P 139 -213 9.2430722940390495e-02 5.3325753243614560e-01 -4.5038191171963973e+02 4.5038327284460775e+02 2 0 0 -82 0 P 140 213 -2.6693114306924876e-01 -2.1453525687128780e-01 -3.1087827028868696e+02 3.1087911962006916e+02 2 0 0 -83 0 V -15 0 0 0 0 0 0 1 0 P 141 92 7.3036124064057990e+00 1.7464384759632154e+01 2.9282868093676200e+00 8.3047065885734895e+01 2 0 0 -16 0 V -16 0 0 0 0 0 0 11 0 P 142 -211 -4.5147344741739106e+00 4.7309249107586915e+00 -4.4993189123253323e+00 7.9390067604984393e+00 1 0 0 0 0 P 143 223 -7.2600032992044756e+00 6.0829823104724978e+00 -6.9226828028121741e+00 1.1757653197700542e+01 2 0 0 -84 0 P 144 211 -4.9408023843229207e+00 4.1206433764523096e+00 -4.7851852971425659e+00 8.0192710485255905e+00 1 0 0 0 0 P 145 -211 -5.1858129078446602e+00 4.3131025002891308e+00 -4.9056126895791117e+00 8.3414641603394930e+00 1 0 0 0 0 P 146 223 -9.9856162924542480e-01 1.3939699085546011e+00 -1.8171544871358045e+00 2.6049944071609419e+00 2 0 0 -85 0 P 147 -2112 -1.2467372324835593e+00 1.4439077618807972e+00 -6.6980372136813870e-01 2.2294959434228590e+00 1 0 0 0 0 P 148 113 7.0247388557902501e-01 -6.5995403976312395e-01 1.7683090385025413e-02 1.0715243972509485e+00 2 0 0 -86 0 P 149 2112 6.3219781246543389e+00 -1.2284986582742925e+00 4.9883279748505087e+00 8.2001722013361338e+00 1 0 0 0 0 P 150 223 3.4804563267205935e+00 -2.0469761349208893e-01 2.1417829760526121e+00 4.1643078584092059e+00 2 0 0 -87 0 P 151 113 6.4071343276985457e+00 -5.4616099206166024e-01 6.3630016640989053e+00 9.0765999473117276e+00 2 0 0 -88 0 P 152 113 1.4538221669028252e+01 -1.9818347051847012e+00 1.3017249014343694e+01 1.9642575963779034e+01 2 0 0 -89 0 V -17 0 0 0 0 0 4 1 0 P 44 1 6.2359703949849878e+00 -1.3744442235105063e+00 4.6758309928229371e+00 7.9145321506779007e+00 2 0 0 -17 0 P 45 21 -1.1066636550241478e+00 -3.5797304262198506e+00 6.9921826658176869e+00 7.9328300625890691e+00 2 0 0 -17 0 P 46 21 -4.4692075670159666e+00 -2.9282240250919513e+00 8.1463278065488041e+00 9.7422260777477714e+00 2 0 0 -17 0 P 47 -1 -6.2359703949849878e+00 1.3744442235105063e+00 1.6350284774548005e+01 1.7553012160295648e+01 2 0 0 -17 0 P 153 92 -5.5758712220401145e+00 -6.5079544513118019e+00 3.6164626239737430e+01 4.3142600451310393e+01 2 0 0 -18 0 V -18 0 0 0 0 0 0 9 0 P 154 -213 3.2767654741873975e+00 -6.0370150803263345e-01 2.6814137616713611e+00 4.3365361973557341e+00 2 0 0 -90 0 P 155 211 2.3215793294390337e+00 -4.8466608862044031e-01 2.4119618091110366e+00 3.3855090243340684e+00 1 0 0 0 0 P 156 111 9.1933852462358878e-01 -4.2036194132383642e-01 6.9882812262153926e-01 1.2363121895125706e+00 2 0 0 -91 0 P 157 -213 -9.2038100870552608e-01 -1.2814817884755481e+00 1.8679080309026634e+00 2.5049933221280232e+00 2 0 0 -92 0 P 158 211 -2.9605867667125549e+00 -3.0646214971886212e+00 7.3893659039703179e+00 8.5310718653591948e+00 1 0 0 0 0 P 159 223 -1.4964943637722607e+00 -1.3087762975075852e+00 3.8790955157027196e+00 4.4275734175677668e+00 2 0 0 -93 0 P 160 111 -1.3240562833744723e-02 -9.0095687838713190e-02 2.0007312631532312e-01 2.5795620121422247e-01 2 0 0 -94 0 P 161 223 -1.4524303312690678e+00 -3.7576524029598662e-01 4.0427339283106178e+00 4.3822964593004858e+00 2 0 0 -95 0 P 162 223 -5.2504215169969823e+00 1.1215155979715610e+00 1.2993246041131862e+01 1.4080351774538331e+01 2 0 0 -96 0 V -19 0 0 0 0 0 2 1 0 P 48 1 -3.8679994902521653e+00 -6.8224077274690997e-01 -1.0727946477991357e+00 4.0715796547452907e+00 2 0 0 -19 0 P 49 -1 3.8679994902521653e+00 6.8224077274690997e-01 3.0936685777688705e+01 3.1185018830137587e+01 2 0 0 -19 0 P 163 92 0 0 2.9863891129889570e+01 3.5256598484882879e+01 2 0 0 -20 0 V -20 0 0 0 0 0 0 8 0 P 164 -211 -1.1337273123660903e+00 -9.1388557789986405e-02 -2.4755703075496643e-01 1.1723709974560048e+00 1 0 0 0 0 P 165 113 -2.2577758600392728e+00 -1.4453121152302476e-01 -5.5956795375789270e-01 2.4916941451499293e+00 2 0 0 -97 0 P 166 213 3.9205268029279550e-01 -2.0221038885966311e-01 1.8225352133262118e+00 2.1136181651842731e+00 2 0 0 -98 0 P 167 223 -3.2759427470065994e-01 6.8174385353484288e-02 1.5822712147471714e+00 1.7940956325585611e+00 2 0 0 -99 0 P 168 -211 1.6319877898611251e-01 -7.8148139335830968e-01 2.5048235762196014e+00 2.6326731552764686e+00 1 0 0 0 0 P 169 111 8.4525121533484160e-01 7.6832145674398755e-01 6.5588562929684633e+00 6.6589475857773683e+00 2 0 0 -100 0 P 170 111 4.0734007358197377e-01 4.1219384792926200e-01 2.3051642303803135e+00 2.3807207801927053e+00 2 0 0 -101 0 P 171 211 1.9112546989102996e+00 -2.9078138495749965e-02 1.5897365586760662e+01 1.6012478023287564e+01 1 0 0 0 0 V -21 0 0 0 0 0 2 1 0 P 50 21 -1.6684522583202068e+00 3.2709714928891094e+00 9.6324647542023598e+01 9.6394609348970647e+01 2 0 0 -21 0 P 51 21 1.6684522583202068e+00 -3.2709714928891094e+00 1.1484407936678313e+01 1.2057139507429895e+01 2 0 0 -21 0 P 172 92 0 0 1.0780905547870191e+02 1.0845174885640054e+02 2 0 0 -22 0 V -22 0 0 0 0 0 0 10 0 P 173 221 5.6851305186989742e-01 -5.1696695017055427e-02 7.5833685141187974e+00 7.6245038633245148e+00 2 0 0 -102 0 P 174 211 -1.1831580580320490e-01 1.0790216850872819e-01 9.5002099433939491e-01 9.7347890704285944e-01 1 0 0 0 0 P 175 -211 -1.6897639997245031e-01 1.3407824603367749e-01 8.3012015844516860e+00 8.3051765502251840e+00 1 0 0 0 0 P 176 213 6.1705822733252602e-01 -2.5167588012507663e-01 5.1896854165863937e+00 5.3002225882770535e+00 2 0 0 -103 0 P 177 -213 1.3913350920690104e-01 -1.3801137000040278e+00 6.3789687780404272e+00 6.5803170873635093e+00 2 0 0 -104 0 P 178 211 -3.3199420671295310e-01 4.6786074595130789e-01 5.0815265814409010e+00 5.1157116820324742e+00 1 0 0 0 0 P 179 -213 6.6891308947252925e-01 -6.1450853534741334e-01 6.4311633153388632e+00 6.5332537912510809e+00 2 0 0 -105 0 P 180 2212 -4.9183808156170555e-01 1.2389684130637697e+00 4.1138276460342631e+01 4.1170560940404066e+01 1 0 0 0 0 P 181 -2112 7.5496672169247797e-02 4.7160971504578243e-02 6.4837556709485460e+00 6.5520838891301842e+00 1 0 0 0 0 P 182 -211 -9.5799005600078768e-01 3.0202426543151145e-01 2.0271088163094266e+01 2.0296439557349615e+01 1 0 0 0 0 V -23 0 0 0 0 0 0 2 0 P 183 211 -6.8225713801609045e-01 -2.0571270580004880e-01 2.7632891062004133e-01 7.7693627244835395e-01 1 0 0 0 0 P 184 111 -6.6571370494814959e+00 -1.6675413942672674e+00 7.5204823879836014e-01 6.9052128244576023e+00 2 0 0 -106 0 V -24 0 0 0 0 0 0 2 0 P 185 -211 -1.0849827067182951e+00 -3.7035604465517763e-01 1.0912924861449358e-01 1.1600603654523973e+00 1 0 0 0 0 P 186 211 1.8978206550122722e-03 -2.7858105150304124e-01 1.4875049843661536e-01 3.4527887231181725e-01 1 0 0 0 0 V -25 0 8.5831156109923242e-06 1.1573951871138897e-04 -4.8663113857895247e-04 5.0075954695776340e-04 0 2 0 P 187 22 -2.5041561376604543e-02 1.0357462877420689e-01 -3.1327737877225131e-01 3.3090406400089084e-01 1 0 0 0 0 P 188 22 7.7869439977572938e-02 6.0878595460058404e-01 -2.6818693578482256e+00 2.7512010542246124e+00 1 0 0 0 0 V -26 0 0 0 0 0 0 3 0 P 189 211 4.0085701981997918e-01 -4.4185385096606378e-01 -4.4481087641171779e-01 7.5713781877981512e-01 1 0 0 0 0 P 190 -211 5.5503702017102408e-01 -5.1726586740469593e-01 -3.5656963171580812e-02 7.7225725976832471e-01 1 0 0 0 0 P 191 111 6.8720678644324440e-03 -1.3506726355302784e-01 -1.5073958355152944e-01 2.4337710132575122e-01 2 0 0 -107 0 V -27 0 0 0 0 0 0 2 0 P 192 -211 7.7491442533294919e-01 -3.6689672601186091e-01 -1.2751942632331363e+00 1.5429535858314141e+00 1 0 0 0 0 P 193 111 1.9732145338785909e-01 -7.8588634473343740e-04 -8.2539633950398164e-03 2.3921559710054555e-01 2 0 0 -108 0 V -28 0 0 0 0 0 0 2 0 P 194 211 -1.9308150093505991e-01 -9.0298181096833419e-01 -2.5092284044338298e+00 2.6773799856315748e+00 1 0 0 0 0 P 195 111 3.8901118549040006e-02 -1.9733819600590490e-02 -1.0945394558479277e-01 1.7917166981549815e-01 2 0 0 -109 0 V -29 0 -5.8950019065068415e-02 3.3261567923192938e-02 -6.5012687084634369e-01 6.7523494585506671e-01 0 2 0 P 196 -2212 -2.9637651865156367e-01 2.6681110140037545e-01 -3.8214872943727425e+00 3.9551413297871929e+00 1 0 0 0 0 P 197 211 -9.1875812254615927e-02 -4.7746180292891759e-02 -4.6033104926888729e-01 4.9204199254840181e-01 1 0 0 0 0 V -30 0 0 0 0 0 0 2 0 P 198 -321 -1.0561270115728454e-01 -9.7481150635176178e-02 -6.4170071956928973e+00 6.4375677803770985e+00 1 0 0 0 0 P 199 211 -2.5697646259535312e-01 2.3287012821408992e-01 -6.0428233118030503e+00 6.0543751751533250e+00 1 0 0 0 0 V -31 0 0 0 0 0 0 2 0 P 200 -211 3.8973776340246230e-01 2.0898030360810801e-01 -1.5521845347515498e+01 1.5528771073997021e+01 1 0 0 0 0 P 201 111 -2.5397505558719108e-01 -2.3811779228538626e-01 -5.4562998798903601e+00 5.4690612897969011e+00 2 0 0 -110 0 V -32 0 0 0 0 0 0 2 0 P 202 211 -2.0193283279658084e-01 -3.0821800539870686e-01 -8.6332107748336711e+00 8.6421978266768118e+00 1 0 0 0 0 P 203 111 -4.8685103233872579e-01 4.6999075769465698e-01 -1.1082834478521923e+01 1.1104294435880290e+01 2 0 0 -111 0 V -33 0 0 0 0 0 0 3 0 P 204 211 4.7986059313264706e-01 -3.4994983491839042e-02 -2.9804384724465507e+02 2.9804426827405672e+02 1 0 0 0 0 P 205 -211 1.1519448592767971e-01 8.7358639158916951e-02 -2.9397585304645554e+02 2.9397592172740531e+02 1 0 0 0 0 P 206 111 6.3630487188302787e-01 -2.0317679573355196e-01 -3.7231789458053532e+02 3.7231851821952574e+02 2 0 0 -112 0 V -34 0 -1.1147224304728516e-04 2.9079616684263839e-05 -6.4699686983907365e-02 6.4699793874679529e-02 0 2 0 P 207 22 -5.7408514071795747e-01 1.5201135021093271e-01 -3.5018301423219748e+02 3.5018351779880618e+02 1 0 0 0 0 P 208 22 -6.1788904338170532e-02 1.3868271336297420e-02 -1.8885110277246923e+01 1.8885216450478573e+01 1 0 0 0 0 V -35 0 0 0 0 0 0 2 0 P 209 211 -1.9012171848599957e-01 -9.3425431041978646e-02 -6.6567591686591376e-01 7.1237545592245388e-01 1 0 0 0 0 P 210 -211 -1.7400711449958817e+00 -2.7896145152476093e-01 -1.9929935442256443e+00 2.6640514509500703e+00 1 0 0 0 0 V -36 0 0 0 0 0 0 2 0 P 211 321 -7.6283663670117641e-01 -1.7684396975957387e-01 -1.6489094151191135e+00 1.8909618566227995e+00 1 0 0 0 0 P 212 111 -4.9148884277463689e-01 3.1847938561769751e-01 -7.4412469487104560e-01 9.5652055051227447e-01 2 0 0 -113 0 V -37 0 0 0 0 0 0 1 0 P 213 130 1.8250369752391291e-01 7.6808484521379172e-02 -2.5305808270791803e+00 2.5866429777194067e+00 1 0 0 0 0 V -38 0 0 0 0 0 0 1 0 P 214 310 7.9687592550235875e-01 4.3543534377336596e-01 -1.1503769232380790e+01 1.1550281258914138e+01 2 0 0 -114 0 V -39 0 0 0 0 0 0 3 0 P 215 211 6.6630599110745725e-01 3.7138881873356916e-01 -2.2382438822568588e+01 2.2395868832429599e+01 1 0 0 0 0 P 216 -211 1.8037489118923686e-01 4.4348932085244347e-02 -7.3701704910331340e+00 7.3738317570272933e+00 1 0 0 0 0 P 217 221 1.1695578897026437e+00 9.3624788629060096e-01 -4.0910228056979122e+01 4.0941310273835775e+01 2 0 0 -115 0 V -40 0 1.8872857524492831e-04 9.0773211616646156e-05 -9.5409032252530158e-03 9.5432637540222316e-03 0 2 0 P 218 22 5.7947033674640691e-01 3.1128030523633360e-01 -2.7591487014444997e+01 2.7599326748453109e+01 1 0 0 0 0 P 219 22 1.5885386397962931e-01 4.3833163019431486e-02 -9.7334370933508882e+00 9.7348319732032333e+00 1 0 0 0 0 V -41 0 0 0 0 0 0 2 0 P 220 211 4.3688436167992539e-01 -1.1551432423083507e-01 -2.8538275227971535e+01 2.8542194104114294e+01 1 0 0 0 0 P 221 -211 9.9448684134894261e-01 7.3404166889077538e-01 -7.8993316483390601e+01 7.9003109749422478e+01 1 0 0 0 0 V -42 0 2.6855847323565445e-04 1.3931109446340323e-04 -1.4806620049096837e-02 1.4809739909326262e-02 0 2 0 P 222 22 1.1631368003549367e+00 6.1625051957082821e-01 -6.5491487188560967e+01 6.5504713922653266e+01 1 0 0 0 0 P 223 22 6.7503818514876454e-02 2.2127742862310017e-02 -2.3582732045941399e+00 2.3593428979325934e+00 1 0 0 0 0 V -43 0 1.0212760969935375e+02 8.7890224410539915e+01 -5.6853581288628784e+03 5.6921385546852898e+03 0 2 0 P 224 -2112 3.1000286445443770e-01 3.7812075352722030e-01 -2.0723076715527846e+01 2.0750127166424072e+01 1 0 0 0 0 P 225 111 1.5912944002215937e-01 2.5610848926437880e-02 -5.3931240711148059e+00 5.3972201123450985e+00 2 0 0 -116 0 V -44 0 0 0 0 0 0 2 0 P 226 113 6.3783667998659821e-01 4.6351944321141023e-02 -5.7126629557774198e+00 5.7668013004218208e+00 2 0 0 -117 0 P 227 111 -2.0705180754702487e-01 -1.8999146742582809e-01 -3.2367242441010324e+00 3.2517027295640832e+00 2 0 0 -118 0 V -45 0 0 0 0 0 0 2 0 P 228 -321 -6.7727795448204198e-01 7.8667805745624209e-01 -3.3017909893621145e+00 3.4961453761454711e+00 1 0 0 0 0 P 229 211 -9.3013340334796094e-03 2.6078751253039301e-01 -2.1738115244137561e+00 2.1938625686402169e+00 1 0 0 0 0 V -46 0 0 0 0 0 0 2 0 P 230 211 2.3530849207474863e-01 1.9172760398712682e-01 8.4149688719164964e-02 3.4451489892988507e-01 1 0 0 0 0 P 231 111 -4.0020077914035990e-01 -4.0654712983196832e-02 -2.4315643945127716e-01 4.8903795738052874e-01 2 0 0 -119 0 V -47 0 0 0 0 0 0 2 0 P 232 2112 3.5939243452342073e-01 9.0276807817469074e-01 1.6931174646049143e+00 2.1664698610444755e+00 1 0 0 0 0 P 233 -211 -9.2116540909719463e-02 1.2226183946219757e-01 1.7596891683533897e-01 2.7180555382488902e-01 1 0 0 0 0 V -48 0 0 0 0 0 0 1 0 P 234 130 2.5368558885847314e-01 5.2083060101017375e-01 1.3430305676938716e+00 1.5450007856319077e+00 1 0 0 0 0 V -49 0 0 0 0 0 0 2 0 P 235 -3112 2.3130709573317310e+00 2.0358621074096077e+00 2.4748310674279805e+00 4.1296105312661791e+00 2 0 0 -120 0 P 236 -211 4.7389664282163180e-01 2.9398750409757685e-01 4.8607067309101176e-01 7.5282877520873581e-01 1 0 0 0 0 V -50 0 2.6366966121210868e-06 3.3664917108405082e-05 4.3513413008419052e-05 5.5187074052668910e-05 0 2 0 P 237 22 -3.4390216781503753e-03 7.3714113399380876e-01 9.0028549220093257e-01 1.1635733091487002e+00 1 0 0 0 0 P 238 22 1.0653509980007189e-01 5.7917296457217149e-01 8.0110942985595135e-01 9.9426725229429957e-01 1 0 0 0 0 V -51 0 7.3793033610722593e-05 -2.0953936855995387e-05 1.0790886287297182e-04 1.3542667008829926e-04 0 2 0 P 239 22 5.9358290072178209e-02 -6.6658908915235016e-02 1.7336863010816705e-01 1.9499615033032036e-01 1 0 0 0 0 P 240 22 2.9027989017007794e-01 -3.2622771112848455e-02 3.3791348692672274e-01 4.4666786819650484e-01 1 0 0 0 0 V -52 0 0 0 0 0 0 3 0 P 241 211 3.1225720956016140e-02 1.4419652513622033e-01 3.2934559581016748e-01 3.8693150542458782e-01 1 0 0 0 0 P 242 -211 7.0456180603339602e-01 3.3422246880803058e-01 1.1340463124952489e+00 1.3833484091006312e+00 1 0 0 0 0 P 243 111 6.6036225530815729e-01 8.9092597521559957e-01 1.3692741726367672e+00 1.7671895093055658e+00 2 0 0 -121 0 V -53 0 0 0 0 0 0 2 0 P 244 -321 8.5941364319388680e-01 5.6013035423937219e-01 1.4607218511300650e+00 1.8519414435173045e+00 1 0 0 0 0 P 245 211 5.8239909439508508e-01 6.3320329887012916e-01 5.1007901503105224e-01 1.0098492507930468e+00 1 0 0 0 0 V -54 0 3.5141421846866216e+01 1.1864582995012931e+01 1.3132760188131206e+02 1.4075745767978856e+02 0 2 0 P 246 -2212 1.0576821394789679e+00 3.6053081217175098e-01 3.5872903697495664e+00 3.8726834061792359e+00 1 0 0 0 0 P 247 211 7.8843157461605473e-02 2.3187261907418297e-02 6.6003753789916164e-01 6.7961991504756980e-01 1 0 0 0 0 V -55 0 0 0 0 0 0 3 0 P 248 -211 -2.9145304106492292e-01 -1.6047652170999732e-01 2.6800819440480104e+00 2.7042589744472134e+00 1 0 0 0 0 P 249 211 5.8716622528295322e-03 -1.3103180339705875e-01 2.5740507507330906e-01 3.2084414829102403e-01 1 0 0 0 0 P 250 111 -1.6423159416166563e-02 -1.2430588004868487e-01 1.3415770042673345e+00 1.3541676893054282e+00 2 0 0 -122 0 V -56 0 0 0 0 0 0 1 0 P 251 310 -1.5520409305619836e+00 -1.2210147176674591e+00 2.1768352713600486e+01 2.1863406945934063e+01 2 0 0 -123 0 V -57 0 0 0 0 0 0 3 0 P 252 111 -9.8605447614195235e-02 -1.7089735047653851e-01 5.0321595802053816e+00 5.0378347114362434e+00 2 0 0 -124 0 P 253 111 -1.7042180532510159e-01 -1.1077985882133798e-01 2.3772275747223222e+00 2.3897167847405925e+00 2 0 0 -125 0 P 254 221 -6.8484212279550549e-01 -5.2183089475893740e-01 2.2632275053931771e+01 2.2655261901712862e+01 2 0 0 -126 0 V -58 0 0 0 0 0 0 2 0 P 255 130 -8.5322635286723347e-01 4.1522573264770164e-02 1.4524317615699747e+01 1.4557925572139172e+01 1 0 0 0 0 P 256 310 -5.8538259223270583e-01 -1.0129431399208636e-02 1.3220456359875824e+01 1.3242768486119157e+01 2 0 0 -127 0 V -59 0 0 0 0 0 0 1 0 P 257 310 -3.8214841574132694e+00 -2.5961844176363122e+00 7.8054640724626125e+01 7.8192829139091145e+01 2 0 0 -128 0 V -60 0 0 0 0 0 0 2 0 P 258 -211 -2.1498226076381829e-01 3.9304438688690574e-01 5.3492197423783871e+01 5.3494255451146117e+01 1 0 0 0 0 P 259 211 -2.3492495995944138e-01 -3.8487502930089484e-01 3.7167169109862797e+01 3.7170166235181554e+01 1 0 0 0 0 V -61 0 0 0 0 0 0 2 0 P 260 2212 4.6409380139277118e-02 -6.5056002621809517e-01 2.2022052153200411e+02 2.2022348611489889e+02 1 0 0 0 0 P 261 111 1.6574615402850856e-01 -1.0770953158734756e-01 1.5616486944439099e+01 1.5618321203541910e+01 2 0 0 -129 0 V -62 0 0 0 0 0 0 2 0 P 262 -2112 -3.8008131322427180e-01 -4.0678465121799551e-01 4.4473537126822436e+01 4.4486944510866131e+01 1 0 0 0 0 P 263 111 -2.0535605333521265e-01 1.5379088984883574e-01 1.5236791968337695e+01 1.5239549594172461e+01 2 0 0 -130 0 V -63 0 -2.9568286177560062e-05 -3.9080739551736831e-05 1.9773362522290859e-02 1.9773425422137746e-02 0 2 0 P 264 22 -2.8356268919803201e-01 -4.4439560402464900e-01 1.9281349498212680e+02 1.9281421561304609e+02 1 0 0 0 0 P 265 22 -1.4706418605910337e-01 -1.2476882623152152e-01 9.5161982026169127e+01 9.5162177456612227e+01 1 0 0 0 0 V -64 0 0 0 0 0 0 3 0 P 266 -211 6.1928125728601298e-02 1.6237329331834871e-01 2.3847266398634726e+01 2.3848308003954749e+01 1 0 0 0 0 P 267 211 1.4548314898128039e-02 3.1636025121263273e-01 9.1619707253768482e+01 9.1620360905822409e+01 1 0 0 0 0 P 268 111 -4.8470985756679338e-02 -6.5644989707906068e-02 8.6759577565685202e+00 8.6773913876980018e+00 2 0 0 -131 0 V -65 0 0 0 0 0 0 2 0 P 269 211 -4.8310368205551284e-02 -1.0130997013745421e-01 2.7829598539520436e+01 2.7830174851364184e+01 1 0 0 0 0 P 270 111 -1.8169902485839673e-01 5.0863997505545766e-01 1.7909581662730147e+01 1.7918232727985728e+01 2 0 0 -132 0 V -66 0 0 0 0 0 0 3 0 P 271 211 7.0718601927802749e-01 -3.4881996408222089e+00 1.4397560776306488e+01 1.4831617743605502e+01 1 0 0 0 0 P 272 -211 3.8617549897188580e-01 -1.0441848053855693e+00 4.4425497876469464e+00 4.5820499587440349e+00 1 0 0 0 0 P 273 111 1.1840624210157047e+00 -5.7996828368311624e+00 2.2474165003816100e+01 2.3241011962559803e+01 2 0 0 -133 0 V -67 0 0 0 0 0 0 2 0 P 274 211 1.1041077704433970e+00 -1.0329746672843054e+00 8.8331418418356975e+00 8.9626985453541366e+00 1 0 0 0 0 P 275 -211 5.3076490636702800e-01 -9.4403167042085134e-01 4.9487541162749729e+00 5.0677957998361451e+00 1 0 0 0 0 V -68 0 0 0 0 0 0 3 0 P 276 211 -1.1588701481892100e-01 -1.0611545289179855e-01 8.1415676269395554e-01 8.4084559146514781e-01 1 0 0 0 0 P 277 -211 -5.3437446058360982e-01 8.7083905606634371e-02 3.8935578861995244e+00 3.9334987566829405e+00 1 0 0 0 0 P 278 111 -1.3514622043909165e-02 -1.0442562502923519e-01 2.5989469841997037e+00 2.6045791182554758e+00 2 0 0 -134 0 V -69 0 -9.5147851943584874e-06 -4.9738615210308035e-05 2.4368959024553116e-03 2.4374677761757721e-03 0 2 0 P 279 22 -9.1181811765201334e-02 -1.5209355225851146e-01 9.3112356078886354e+00 9.3129240905876944e+00 1 0 0 0 0 P 280 22 5.1898140003457556e-03 -2.9743029937061577e-01 1.2712755760972907e+01 1.2716235714837268e+01 1 0 0 0 0 V -70 0 0 0 0 0 0 2 0 P 281 211 2.8217247751552504e-01 1.4340240150580306e-02 1.5267989039923190e+01 1.5271240815915041e+01 1 0 0 0 0 P 282 111 -6.1795690738397646e-01 1.2753091792123616e-02 2.5177128751555752e+01 2.5185076238787708e+01 2 0 0 -135 0 V -71 0 0 0 0 0 0 2 0 P 283 -211 -3.2497314393302185e-01 -5.2648861793727719e-01 5.8409756455028187e+01 5.8413199935714033e+01 1 0 0 0 0 P 284 211 -4.4133822082270735e-02 2.8582293997574840e-02 8.8710675170467582e+01 8.8710800547210113e+01 1 0 0 0 0 V -72 0 0 0 0 0 0 2 0 P 285 -2212 -4.7658425915717989e-01 4.2754801906965462e-01 9.1082276581203894e+02 9.1082347411666433e+02 1 0 0 0 0 P 286 111 1.3922513199700096e-01 1.4957182517182735e-01 1.5323641789997598e+02 1.5323661359409095e+02 2 0 0 -136 0 V -73 0 0 0 0 0 0 2 0 P 287 2212 1.8635807236397395e-01 -2.3388681385564453e-01 7.8933259564325044e+02 7.8933320994867358e+02 1 0 0 0 0 P 288 -211 1.0218567542164700e-01 1.1220645631654300e-02 3.9375336264939165e+02 3.9375340080474655e+02 1 0 0 0 0 V -74 0 0 0 0 0 0 2 0 P 289 211 -3.7586833101812989e-02 7.9888845043626477e-02 1.2619137427752956e+02 1.2619148234660703e+02 1 0 0 0 0 P 290 111 -8.7129950445368129e-02 -3.3593734186429014e-01 1.8240082660499033e+03 1.8240083040610043e+03 2 0 0 -137 0 V -75 0 0 0 0 0 0 2 0 P 291 211 -3.9862493174501512e-01 -3.0262898157428803e-01 -1.4822903921200870e+00 1.5707166288573282e+00 1 0 0 0 0 P 292 -211 -4.4245705223335557e-01 4.0295528879661757e-01 -1.2406456889918900e+00 1.3844936685858686e+00 1 0 0 0 0 V -76 0 0 0 0 0 0 3 0 P 293 211 -2.0854438973710179e-01 -2.6144549196654038e-01 -5.2865343052684444e-01 6.4093583319100489e-01 1 0 0 0 0 P 294 -211 5.7313651457072873e-02 8.0289559090107928e-03 -1.5586244900177462e-01 2.1707649961514136e-01 1 0 0 0 0 P 295 111 -6.4586831062764805e-01 -2.2234118321677462e-01 -8.8355292969040111e-01 1.1249297117561339e+00 2 0 0 -138 0 V -77 0 0 0 0 0 0 2 0 P 296 -211 1.6053372221988710e-01 1.0431813124999409e-01 -4.3124710336408606e-02 2.4081709660832226e-01 1 0 0 0 0 P 297 211 -4.2629829229727723e-01 5.3782459700360985e-01 -1.6364983603195962e+00 1.7800539877729542e+00 1 0 0 0 0 V -78 0 0 0 0 0 0 3 0 P 298 211 -2.5373435538543765e-01 -2.1223507953236936e-01 -7.0336842908586483e-01 7.8970360517202398e-01 1 0 0 0 0 P 299 -211 -1.8931942041498975e-01 2.3245493604624445e-01 -9.4686186604090539e-01 1.0029478144454957e+00 1 0 0 0 0 P 300 111 -4.0259757476824705e-02 2.0704197432003055e-01 -5.8847898072582427e-01 6.3954228817063696e-01 2 0 0 -139 0 V -79 0 0 0 0 0 0 2 0 P 301 211 3.9730287139768744e-01 1.7358658903895524e-01 -1.0049342330505242e+01 1.0059659185881973e+01 1 0 0 0 0 P 302 111 -4.9866243139955296e-01 6.8230377977313503e-02 -1.0116054752544070e+01 1.0129467062083657e+01 2 0 0 -140 0 V -80 0 0 0 0 0 0 2 0 P 303 -211 2.8138932157497937e-01 -6.5835052018372753e-02 -8.9980879044552864e+01 8.9981451353152352e+01 1 0 0 0 0 P 304 111 -2.8208873404108231e-01 2.3536611306922700e-01 -8.8930802705667844e+01 8.8931663993967149e+01 2 0 0 -141 0 V -81 0 0 0 0 0 0 2 0 P 305 211 4.6795696635821893e-02 1.3931182582350779e-01 -2.7097691258027691e+01 2.7098449197736912e+01 1 0 0 0 0 P 306 111 4.3646951898217073e-01 -6.0915319348104457e-01 -2.1083955296384545e+02 2.1084092792161752e+02 2 0 0 -142 0 V -82 0 0 0 0 0 0 2 0 P 307 -211 -2.2160631524645574e-02 4.5876580498977049e-01 -4.3353881015262260e+02 4.3353907591530208e+02 1 0 0 0 0 P 308 111 1.1459135446503607e-01 7.4491727446375153e-02 -1.6843101567017133e+01 1.6844196929305685e+01 2 0 0 -143 0 V -83 0 0 0 0 0 0 2 0 P 309 211 -1.0291330345638687e-01 6.0242908908006806e-02 -2.3326631526292658e+02 2.3326638749825071e+02 1 0 0 0 0 P 310 111 -1.6401783961286190e-01 -2.7477816577929459e-01 -7.7611955025760395e+01 7.7612732121818482e+01 2 0 0 -144 0 V -84 0 0 0 0 0 0 3 0 P 311 -211 -9.2032587884668049e-01 6.2194987067700247e-01 -8.7460012928193909e-01 1.4206430008802491e+00 1 0 0 0 0 P 312 211 -7.1662565727511851e-01 7.0866815578340381e-01 -8.0846608171249723e-01 1.2995614944534193e+00 1 0 0 0 0 P 313 111 -5.6230517630826764e+00 4.7523642840120903e+00 -5.2396165918177369e+00 9.0374487023668717e+00 2 0 0 -145 0 V -85 0 0 0 0 0 0 2 0 P 314 211 -7.7419367221120350e-01 7.1423592423375482e-01 -1.4232508033275235e+00 1.7761282137363719e+00 1 0 0 0 0 P 315 -211 -2.2436795703422135e-01 6.7973398432084609e-01 -3.9390368380828084e-01 8.2886619342456991e-01 1 0 0 0 0 V -86 0 0 0 0 0 0 2 0 P 316 211 2.6571869811649984e-01 -4.4338302759174671e-02 -7.7194226905309919e-03 3.0349907085025302e-01 1 0 0 0 0 P 317 -211 4.3675518746252512e-01 -6.1561573700394923e-01 2.5402513075556406e-02 7.6802532640069554e-01 1 0 0 0 0 V -87 0 0 0 0 0 0 3 0 P 318 211 1.6018427166325673e+00 4.9072542329021224e-02 1.2584752978406888e+00 2.0424367954516112e+00 1 0 0 0 0 P 319 -211 1.4719197589440385e+00 -2.4439725644186194e-01 7.2730858375436336e-01 1.6657536902642489e+00 1 0 0 0 0 P 320 111 4.0669385114398765e-01 -9.3728993792481924e-03 1.5599909445755991e-01 4.5611737269334546e-01 2 0 0 -146 0 V -88 0 0 0 0 0 0 2 0 P 321 211 2.4825270367365668e+00 -1.7552675372526358e-01 2.0085419085674219e+00 3.2011670548056426e+00 1 0 0 0 0 P 322 -211 3.9246072909619789e+00 -3.7063423833639664e-01 4.3544597555314830e+00 5.8754328925060859e+00 1 0 0 0 0 V -89 0 0 0 0 0 0 2 0 P 323 -211 7.7548748791718864e+00 -1.1423834997350277e+00 7.6134659355524761e+00 1.0928287504856192e+01 1 0 0 0 0 P 324 211 6.7833467898563669e+00 -8.3945120544967355e-01 5.4037830787912187e+00 8.7142884589228444e+00 1 0 0 0 0 V -90 0 0 0 0 0 0 2 0 P 325 -211 1.3258709460356273e+00 -5.6630153087851776e-01 1.0406279428297589e+00 1.7835407171452122e+00 1 0 0 0 0 P 326 111 1.9508945281517702e+00 -3.7399977154115728e-02 1.6407858188416020e+00 2.5529954802105217e+00 2 0 0 -147 0 V -91 0 4.0089958647757372e-04 -1.8330889431250112e-04 3.0474074334324466e-04 5.3912354617762328e-04 0 2 0 P 327 22 -1.7909026543509472e-03 4.7202057814847110e-03 1.4540224287102625e-03 5.2537468686753601e-03 1 0 0 0 0 P 328 22 9.2112942727793956e-01 -4.2508214710532111e-01 6.9737410019282897e-01 1.2310584426438953e+00 1 0 0 0 0 V -92 0 0 0 0 0 0 2 0 P 329 -211 -3.4912587146719765e-01 -4.1983236443521660e-01 1.0023828721687418e+00 1.1499562146761289e+00 1 0 0 0 0 P 330 111 -5.7125513723832866e-01 -8.6164942404033162e-01 8.6552515873392166e-01 1.3550371074518945e+00 2 0 0 -148 0 V -93 0 0 0 0 0 0 3 0 P 331 211 1.1569680560634154e-03 -1.3515760316101058e-01 4.4021877317147301e-01 4.8118735376141047e-01 1 0 0 0 0 P 332 -211 -1.0217159578175941e+00 -9.0090565247328169e-01 2.5104099119933876e+00 2.8595755286846476e+00 1 0 0 0 0 P 333 111 -4.7593537401073005e-01 -2.7271304187329282e-01 9.2846683053785861e-01 1.0868105351217086e+00 2 0 0 -149 0 V -94 0 -3.6772796016531797e-06 -2.5022126268065264e-05 5.5565978234947772e-05 7.1641748825621859e-05 0 2 0 P 334 22 5.9357620061587540e-02 -3.6091622331218549e-02 6.3426608643654389e-02 9.4068416303828492e-02 1 0 0 0 0 P 335 22 -7.2598182895332264e-02 -5.4004065507494640e-02 1.3664651767166874e-01 1.6388778491039399e-01 1 0 0 0 0 V -95 0 0 0 0 0 0 3 0 P 336 -211 -3.7722715979427229e-01 1.3782477800040777e-01 9.3455458500839028e-01 1.0267268657133306e+00 1 0 0 0 0 P 337 211 -6.8432391311132890e-01 -2.2659726181706227e-01 2.1704375884633591e+00 2.2912714041408613e+00 1 0 0 0 0 P 338 111 -3.9087925836346682e-01 -2.8699275647933215e-01 9.3774175483886846e-01 1.0642981894462940e+00 2 0 0 -150 0 V -96 0 0 0 0 0 0 3 0 P 339 211 -2.5324502191629295e+00 3.8529769466220193e-01 6.1110986039916853e+00 6.6277269375449910e+00 1 0 0 0 0 P 340 -211 -4.4230347923813051e-01 5.5439052233252434e-02 1.4191033358397445e+00 1.4940013115623987e+00 1 0 0 0 0 P 341 111 -2.2756678185959216e+00 6.8077885107610636e-01 5.4630441013004303e+00 5.9586235254309408e+00 2 0 0 -151 0 V -97 0 0 0 0 0 0 2 0 P 342 -211 -1.1668884716022931e+00 -4.9288043417166599e-01 -2.8645418117821286e-01 1.3061759492358087e+00 1 0 0 0 0 P 343 211 -1.0908873884369799e+00 3.4834922264864121e-01 -2.7311377257967989e-01 1.1855181959141208e+00 1 0 0 0 0 V -98 0 0 0 0 0 0 2 0 P 344 211 2.6576731921327235e-01 -3.2338021514026666e-01 2.1476047545216401e-01 4.9072281200532558e-01 1 0 0 0 0 P 345 111 1.2628536107952315e-01 1.2116982628060353e-01 1.6077747378740479e+00 1.6228953531789474e+00 2 0 0 -152 0 V -99 0 0 0 0 0 0 3 0 P 346 211 -2.3930244696908234e-01 -1.7086060951495682e-01 9.8824070308583400e-01 1.0404607061993243e+00 1 0 0 0 0 P 347 -211 -8.4449646844355256e-02 2.4002829997005559e-01 5.2984214699262178e-01 6.0411738368333878e-01 1 0 0 0 0 P 348 111 -3.8421808872223734e-03 -9.9330510161446304e-04 6.4188364668715733e-02 1.4951754267589829e-01 2 0 0 -153 0 V -100 0 1.2102282969625118e-04 1.1000804864228198e-04 9.3909518702278293e-04 9.5342622998838354e-04 0 2 0 P 349 22 2.2680246290822920e-01 2.5951172353539387e-01 1.7078764137994564e+00 1.7423052363595883e+00 1 0 0 0 0 P 350 22 6.1844875242661235e-01 5.0880973320859368e-01 4.8509798791690066e+00 4.9166423494177796e+00 1 0 0 0 0 V -101 0 2.3683823168675649e-04 2.3966034374489395e-04 1.3402831085829034e-03 1.3842136737555390e-03 0 2 0 P 351 22 3.4102437287916337e-01 3.1522583973844231e-01 1.6075635518172973e+00 1.6732977995765954e+00 1 0 0 0 0 P 352 22 6.6315700702810371e-02 9.6968008190819674e-02 6.9760067856301633e-01 7.0742298061610942e-01 1 0 0 0 0 V -102 0 0 0 0 0 0 3 0 P 353 111 3.2958349317270647e-01 -3.0722592168327192e-03 2.7832988151513756e+00 2.8059947634611988e+00 2 0 0 -154 0 P 354 111 2.3671893379437298e-01 -1.5328065369995106e-02 2.6723529487579500e+00 2.6862540249090445e+00 2 0 0 -155 0 P 355 111 2.2106249028180187e-03 -3.3296370430227602e-02 2.1277167502094714e+00 2.1322550749542706e+00 2 0 0 -156 0 V -103 0 0 0 0 0 0 2 0 P 356 211 7.0957979171036223e-01 -1.5251228825252697e-01 2.5867537038034838e+00 2.6902672707210309e+00 1 0 0 0 0 P 357 111 -9.2521564377836138e-02 -9.9163591872549653e-02 2.6029317127829099e+00 2.6099553175560231e+00 2 0 0 -157 0 V -104 0 0 0 0 0 0 2 0 P 358 -211 4.2800196507746696e-01 -4.9767199218720959e-01 2.9429592302473475e+00 3.0185016000850191e+00 1 0 0 0 0 P 359 111 -2.8886845587056592e-01 -8.8244170781681819e-01 3.4360095477930801e+00 3.5618154872784911e+00 2 0 0 -158 0 V -105 0 0 0 0 0 0 2 0 P 360 -211 7.5859981473074523e-01 -4.2618444061657446e-01 4.4364414604837803e+00 4.5231183351237494e+00 1 0 0 0 0 P 361 111 -8.9686725258215944e-02 -1.8832409473083891e-01 1.9947218548550822e+00 2.0101354561273310e+00 2 0 0 -159 0 V -106 0 -3.6709933050516090e-03 -9.1954443009827351e-04 4.1470740788184034e-04 3.8077915266164939e-03 0 2 0 P 362 22 -4.7466353910907175e+00 -1.1287229918382087e+00 5.1632812569875042e-01 4.9062366291941837e+00 1 0 0 0 0 P 363 22 -1.9105016583907788e+00 -5.3881840242905887e-01 2.3572011309960972e-01 1.9989761952634184e+00 1 0 0 0 0 V -107 0 5.8178168209592428e-07 -1.1434645486066350e-05 -1.2761446802779903e-05 2.0604036832313747e-05 0 2 0 P 364 22 4.7633603927651662e-03 -6.7994759042413783e-02 1.0281421988068310e-02 6.8932463306950006e-02 1 0 0 0 0 P 365 22 2.1087074716672773e-03 -6.7072504510614056e-02 -1.6102100553959775e-01 1.7444463801880120e-01 1 0 0 0 0 V -108 0 6.8833445854362812e-05 -2.7414791564281358e-07 -2.8793054819011545e-06 8.3447762865264817e-05 0 2 0 P 366 22 -7.5028479492006174e-03 -3.5394574384738356e-03 -3.1947539888164934e-02 3.3007056688130795e-02 1 0 0 0 0 P 367 22 2.0482430133705970e-01 2.7535710937403981e-03 2.3693576493125115e-02 2.0620854041241474e-01 1 0 0 0 0 V -109 0 1.2161938327232629e-05 -6.1695268900960348e-06 -3.4219379429833289e-05 5.6015736296537702e-05 0 2 0 P 368 22 6.3672416596975451e-02 -6.4535862162484414e-02 -7.0004160439735189e-02 1.1454098226934396e-01 1 0 0 0 0 P 369 22 -2.4771298047935444e-02 4.4802042561893921e-02 -3.9449785145057564e-02 6.4630687546154184e-02 1 0 0 0 0 V -110 0 -2.4921769144905207e-05 -2.3365746037187506e-05 -5.3540945459235718e-04 5.3666169139537305e-04 0 2 0 P 370 22 -3.2656701673636816e-02 -2.9122626676688405e-02 -1.6601008912923412e+00 1.6606774391248817e+00 1 0 0 0 0 P 371 22 -2.2131835391355428e-01 -2.0899516560869788e-01 -3.7961989885980194e+00 3.8083838506720187e+00 1 0 0 0 0 V -111 0 -3.9704034121407554e-05 3.8329032580281800e-05 -9.0383548368650499e-04 9.0558560194158510e-04 0 2 0 P 372 22 -3.7316751369263457e-01 3.6796004172644869e-01 -9.3772894366354986e+00 9.3919223678658366e+00 1 0 0 0 0 P 373 22 -1.1368351864609125e-01 1.0203071596820831e-01 -1.7055450418864226e+00 1.7123720680144550e+00 1 0 0 0 0 V -112 0 6.7738024615164231e-05 -2.1629246291798871e-05 -3.9635212336388705e-02 3.9635278726063143e-02 0 2 0 P 374 22 3.5548101181281944e-01 -7.1651728350640098e-02 -2.2993811143284938e+02 2.2993839738074502e+02 1 0 0 0 0 P 375 22 2.8082386007020843e-01 -1.3152506738291186e-01 -1.4237978314768597e+02 1.4238012083878078e+02 1 0 0 0 0 V -113 0 -3.1208299547952140e-05 2.0222636204912388e-05 -4.7250037757647516e-05 6.0736637876939443e-05 0 2 0 P 376 22 -2.1541906097166039e-01 1.6780720467699789e-01 -2.4667060580789499e-01 3.6798236036670795e-01 1 0 0 0 0 P 377 22 -2.7606978180297648e-01 1.5067218094069965e-01 -4.9745408906315058e-01 5.8853819014556641e-01 1 0 0 0 0 V -114 0 4.0610866477397451e+01 2.2190915849756689e+01 -5.8626195287364897e+02 5.8863232652742715e+02 0 2 0 P 378 211 5.2441893659432703e-01 5.2427271767454799e-02 -6.0535251119873186e+00 6.0780268102604467e+00 1 0 0 0 0 P 379 -211 2.7245698890803183e-01 3.8300807200591114e-01 -5.4502441203934708e+00 5.4722544486536915e+00 1 0 0 0 0 V -115 0 0 0 0 0 0 3 0 P 380 111 1.8255825773884582e-01 6.6577755661765423e-02 -4.7542720028823595e+00 4.7601556689680482e+00 2 0 0 -160 0 P 381 111 4.2345941854381086e-01 4.0674564968054111e-01 -1.7908985133045100e+01 1.7919116272816524e+01 2 0 0 -161 0 P 382 111 5.6354021341998706e-01 4.6292448094829436e-01 -1.8246970921051663e+01 1.8262038332051208e+01 2 0 0 -162 0 V -116 0 1.0212762179854421e+02 8.7890226357825966e+01 -5.6853585389217296e+03 5.6921389650555775e+03 0 2 0 P 383 22 8.7146731842991515e-03 -2.8085576096527055e-02 -2.6806834461396406e-01 2.6967644038264432e-01 1 0 0 0 0 P 384 22 1.5041476683786023e-01 5.3696425022964935e-02 -5.1250557265008423e+00 5.1275436719624530e+00 1 0 0 0 0 V -117 0 0 0 0 0 0 2 0 P 385 -211 4.0516238818170969e-01 2.0391567316001136e-01 -3.4239362157696847e+00 3.4566685055290787e+00 1 0 0 0 0 P 386 211 2.3267429180488858e-01 -1.5756372883887032e-01 -2.2887267400077351e+00 2.3101327948927417e+00 1 0 0 0 0 V -118 0 -5.0495719057084151e-06 -4.6335049551300679e-06 -7.8937112422096921e-05 7.9302407177454603e-05 0 2 0 P 387 22 -5.2405125779824605e-02 -4.8239640832966800e-02 -1.6006070464522468e+00 1.6021910863902187e+00 1 0 0 0 0 P 388 22 -1.5464668176720026e-01 -1.4175182659286129e-01 -1.6361171976487854e+00 1.6495116431738586e+00 1 0 0 0 0 V -119 0 -9.6695317587476725e-05 -9.8228703896630706e-06 -5.8750733036266912e-05 1.1815989139955217e-04 0 2 0 P 389 22 -1.1726386487209021e-02 -2.4097931328072961e-02 5.6919731464552190e-03 2.7397390252355696e-02 1 0 0 0 0 P 390 22 -3.8847439265315081e-01 -1.6556781655123864e-02 -2.4884841259773235e-01 4.6164056712817253e-01 1 0 0 0 0 V -120 0 6.0486409605739233e+01 5.3237445630130104e+01 6.4716408796269036e+01 1.0798860852694426e+02 0 2 0 P 391 -2112 1.8033336976284564e+00 1.5388764919847848e+00 2.1468186446165638e+00 3.3334329692314228e+00 1 0 0 0 0 P 392 211 5.0973725970327466e-01 4.9698561542482289e-01 3.2801242281141701e-01 7.9617756203475709e-01 1 0 0 0 0 V -121 0 3.9844666772435625e-05 5.3756325889352049e-05 8.2618703128868145e-05 1.0662795542299144e-04 0 2 0 P 393 22 5.3093256908904929e-01 6.2314672563867279e-01 9.6934973484343490e-01 1.2687947600123255e+00 1 0 0 0 0 P 394 22 1.2942968621910805e-01 2.6777924957692689e-01 3.9992443779333242e-01 4.9839474929324024e-01 1 0 0 0 0 V -122 0 -2.6341769531042584e-07 -1.9937922787089340e-06 2.1518096097739449e-05 2.1720043186668592e-05 0 2 0 P 395 22 -2.1107856777352198e-02 -1.5290659101379284e-01 1.1738570680134826e+00 1.1839621545127204e+00 1 0 0 0 0 P 396 22 4.6846973611856359e-03 2.8600710965107967e-02 1.6771993625385179e-01 1.7020553479270778e-01 1 0 0 0 0 V -123 0 -3.4640783767593297e+02 -2.7252442882709289e+02 4.8585883560138618e+03 4.8798039892076968e+03 0 2 0 P 397 111 -7.8140145086951074e-01 -8.6871442404367061e-01 1.2073278895038628e+01 1.2130438403279070e+01 2 0 0 -163 0 P 398 111 -7.7063947969247282e-01 -3.5230029362378845e-01 9.6950738185618555e+00 9.7329685426549926e+00 2 0 0 -164 0 V -124 0 -2.4817121564413956e-06 -4.3011622830480955e-06 1.2664991545102930e-04 1.2679274774382652e-04 0 2 0 P 399 22 -8.8398752469479924e-02 -1.9414212235004125e-01 4.4069053910692109e+00 4.4120653473111222e+00 1 0 0 0 0 P 400 22 -1.0206695144715309e-02 2.3244771873502768e-02 6.2525418913617026e-01 6.2576936412512085e-01 1 0 0 0 0 V -125 0 -6.1620483700158997e-05 -4.0055370096473902e-05 8.5954912131287753e-04 8.6406492350667890e-04 0 2 0 P 401 22 -7.1361599989837876e-02 -5.6258498002385486e-03 1.4041865470905748e+00 1.4060099527276593e+00 1 0 0 0 0 P 402 22 -9.9060205335263704e-02 -1.0515400902109942e-01 9.7304102763174749e-01 9.8370683201293307e-01 1 0 0 0 0 V -126 0 0 0 0 0 0 2 0 P 403 22 -2.0243398052024655e-01 -4.9406971386926152e-01 1.0986772055445062e+01 1.0999738387659074e+01 1 0 0 0 0 P 404 22 -4.8240814227525891e-01 -2.7761180889675868e-02 1.1645502998486707e+01 1.1655523514053787e+01 1 0 0 0 0 V -127 0 -4.6816409880191372e+01 -8.1010883912672760e-01 1.0573158682195417e+03 1.0591002971748380e+03 0 2 0 P 405 -211 -3.5735561980268316e-01 1.8357646708731920e-01 8.6164500740694621e+00 8.6269400729403731e+00 1 0 0 0 0 P 406 211 -2.2802697243002271e-01 -1.9370589848652783e-01 4.6040062858063608e+00 4.6158284131787823e+00 1 0 0 0 0 V -128 0 -3.7326679860952839e+02 -2.5358457768067893e+02 7.6240551209348696e+03 7.6375527948614308e+03 0 2 0 P 407 211 -9.9712654648007937e-01 -6.3076306754343026e-01 1.7414584487111842e+01 1.7455066772737609e+01 1 0 0 0 0 P 408 -211 -2.8243576109331903e+00 -1.9654213500928823e+00 6.0640056237514294e+01 6.0737762366353550e+01 1 0 0 0 0 V -129 0 2.6971655576033993e-05 -1.7527431663543821e-05 2.5412505625958324e-03 2.5415490491884673e-03 0 2 0 P 409 22 6.0608049111665660e-02 -1.1772667147763625e-01 9.4953581829275322e+00 9.4962813736158420e+00 1 0 0 0 0 P 410 22 1.0513810491684292e-01 1.0017139890288686e-02 6.1211287615115673e+00 6.1220398299260701e+00 1 0 0 0 0 V -130 0 -3.0742324803362284e-05 2.3022888348041325e-05 2.2809866085967460e-03 2.2813994322156347e-03 0 2 0 P 411 22 -1.9519404155926953e-01 1.6615240307301882e-01 1.2090857347062732e+01 1.2093574274048514e+01 1 0 0 0 0 P 412 22 -1.0162011775943102e-02 -1.2361513224183088e-02 3.1459346212749622e+00 3.1459753201239460e+00 1 0 0 0 0 V -131 0 -4.6782409732229872e-06 -6.3358125638286281e-06 8.3737147955852229e-04 8.3750984835349786e-04 0 2 0 P 413 22 4.3613465811926481e-02 -2.5925168301962960e-02 1.8449079065654175e+00 1.8456054379144000e+00 1 0 0 0 0 P 414 22 -9.2084451568605813e-02 -3.9719821405943101e-02 6.8310498500031018e+00 6.8317859497836011e+00 1 0 0 0 0 V -132 0 -1.0041343524425990e-05 2.8109279748571481e-05 9.8974808474831051e-04 9.9022617381979111e-04 0 2 0 P 415 22 -1.4938186174557250e-01 4.9594320551394222e-01 1.7206820169006516e+01 1.7214613993123500e+01 1 0 0 0 0 P 416 22 -3.2317163112824218e-02 1.2696769541515492e-02 7.0276149372363239e-01 7.0361873486222781e-01 1 0 0 0 0 V -133 0 7.8599741259475055e-04 -3.8499116454596229e-03 1.4918669176304054e-02 1.5427713053325052e-02 0 2 0 P 417 22 2.7482805924317061e-01 -1.0944646877934132e+00 4.3489116111369741e+00 4.4929295138535270e+00 1 0 0 0 0 P 418 22 9.0923436177253403e-01 -4.7052181490377496e+00 1.8125253392679127e+01 1.8748082448706274e+01 1 0 0 0 0 V -134 0 -3.5805151006708726e-07 -2.7666147532603830e-06 6.8855561720750755e-05 6.9004777444062705e-05 0 2 0 P 419 22 -3.2437434984034529e-02 1.3609847122819230e-02 1.2057083858443911e+00 1.2062214252874706e+00 1 0 0 0 0 P 420 22 1.8922812940125367e-02 -1.1803547215205443e-01 1.3932385983553126e+00 1.3983576929680051e+00 1 0 0 0 0 V -135 0 -1.0437773500771877e-04 2.1540965392596051e-06 4.2526131542246848e-03 4.2539555467222233e-03 0 2 0 P 421 22 -2.3998913656328574e-01 6.9697559095209249e-02 1.0455436920412676e+01 1.0458423099690544e+01 1 0 0 0 0 P 422 22 -3.7796777082069072e-01 -5.6944467303085639e-02 1.4721691831143076e+01 1.4726653139097165e+01 1 0 0 0 0 V -136 0 7.9230777066259644e-05 8.5118913270902053e-05 8.7204373886510131e-02 8.7204485252874622e-02 0 2 0 P 423 22 1.0213826693615286e-01 1.4274449712414643e-02 7.3372835285768943e+01 7.3372907764774240e+01 1 0 0 0 0 P 424 22 3.7086865060848122e-02 1.3529737545941273e-01 7.9863582614207047e+01 7.9863705829316729e+01 1 0 0 0 0 V -137 0 -1.2455276956393320e-05 -4.8022437881883953e-05 2.6074303965829954e-01 2.6074304509200852e-01 0 2 0 P 425 22 -8.5095955460723655e-02 -3.3277772285126961e-01 1.8227581109000075e+03 1.8227581432636912e+03 1 0 0 0 0 P 426 22 -2.0339949846444804e-03 -3.1596190130205523e-03 1.2501551498960315e+00 1.2501607973134794e+00 1 0 0 0 0 V -138 0 -4.9951245409812677e-06 -1.7195794908680882e-06 -6.8333696664316416e-06 8.7001698606507014e-06 0 2 0 P 427 22 -5.0207884073507758e-01 -1.4128031814330413e-01 -5.8475408131931461e-01 7.8356915854833664e-01 1 0 0 0 0 P 428 22 -1.4378946989257041e-01 -8.1060865073470462e-02 -2.9879884837108645e-01 3.4136055320779712e-01 1 0 0 0 0 V -139 0 -1.2258745459895549e-05 6.3042477694122062e-05 -1.7918672355066628e-04 1.9473505586902875e-04 0 2 0 P 429 22 -2.9894334232633637e-03 1.4153164718574168e-01 -2.0756758257878904e-01 2.5124578644208900e-01 1 0 0 0 0 P 430 22 -3.7270324053561350e-02 6.5510327134288893e-02 -3.8091139814703528e-01 3.8829650172854802e-01 1 0 0 0 0 V -140 0 -1.2981567247190320e-04 1.7762261286212922e-05 -2.6334898475876599e-03 2.6369814440518175e-03 0 2 0 P 431 22 -3.9078922002539807e-01 7.2425120221203426e-02 -8.8091354962886168e+00 8.8180967223374935e+00 1 0 0 0 0 P 432 22 -1.0787321137415484e-01 -4.1947422438899321e-03 -1.3069192562554519e+00 1.3113703397461640e+00 1 0 0 0 0 V -141 0 -3.1411289722415832e-05 2.6208608413903063e-05 -9.9026684583153543e-03 9.9027643649328076e-03 0 2 0 P 433 22 -1.8894068766445460e-01 2.2137919094448763e-01 -7.3268316682280286e+01 7.3268894742479546e+01 1 0 0 0 0 P 434 22 -9.3148046376627686e-02 1.3986922124739358e-02 -1.5662486023387562e+01 1.5662769251487584e+01 1 0 0 0 0 V -142 0 1.0834680788485644e-05 -1.5121285944651163e-05 -5.2337658292321478e-03 5.2337999604324045e-03 0 2 0 P 435 22 3.7351464226140441e-01 -5.8464457514096091e-01 -1.9312454552697042e+02 1.9312579166819253e+02 1 0 0 0 0 P 436 22 6.2954876720766328e-02 -2.4508618340083613e-02 -1.7715007436875027e+01 1.7715136253425019e+01 1 0 0 0 0 V -143 0 1.7146953012668813e-05 1.1146618838031589e-05 -2.5203286278056153e-03 2.5204925330651472e-03 0 2 0 P 437 22 2.0851601461290416e-02 9.1797885622616038e-02 -9.7598453710665538e+00 9.7602993452156745e+00 1 0 0 0 0 P 438 22 9.3739753003745652e-02 -1.7306158176240885e-02 -7.0832561959505798e+00 7.0838975840900131e+00 1 0 0 0 0 V -144 0 -1.1266244132522232e-04 -1.8874275537729009e-04 -5.3310983426340927e-02 5.3311517206930017e-02 0 2 0 P 439 22 -1.7279121542831616e-01 -2.8455947586531455e-01 -7.3117892986674150e+01 7.3118650874521535e+01 1 0 0 0 0 P 440 22 8.7733758154542683e-03 9.7813100860199599e-03 -4.4940620390862440e+00 4.4940812472969611e+00 1 0 0 0 0 V -145 0 -7.9788478303080112e-04 6.7433829624814778e-04 -7.4347712304095555e-04 1.2823717619641565e-03 0 2 0 P 441 22 -2.2866162468511830e+00 1.8809236262582198e+00 -2.0419072490858299e+00 3.5966474336594945e+00 1 0 0 0 0 P 442 22 -3.3364355162314934e+00 2.8714406577538698e+00 -3.1977093427319070e+00 5.4408012687073786e+00 1 0 0 0 0 V -146 0 3.8936867535630493e-05 -8.9736134571007126e-07 1.4935352623322089e-05 4.3668675273314732e-05 0 2 0 P 443 22 1.7878432922170112e-01 -7.0958131469952238e-02 7.6551133818252126e-02 2.0702407803398276e-01 1 0 0 0 0 P 444 22 2.2790952192228656e-01 6.1585232090704045e-02 7.9447960639307799e-02 2.4909329465936272e-01 1 0 0 0 0 V -147 0 1.0400407195266491e-03 -1.9938289122424930e-05 8.7471877079578616e-04 1.3610265536507112e-03 0 2 0 P 445 22 1.5606778707084914e+00 -5.4473026897421617e-02 1.3734877393664646e+00 2.0796998093399348e+00 1 0 0 0 0 P 446 22 3.9021665744327882e-01 1.7073049743305889e-02 2.6729807947513740e-01 4.7329567087058755e-01 1 0 0 0 0 V -148 0 -6.8350394137858806e-05 -1.0309592667565803e-04 1.0355965641148382e-04 1.6212951854316718e-04 0 2 0 P 447 22 -5.3149268491136525e-01 -8.4652144909649152e-01 8.3816827433613872e-01 1.3044573944741684e+00 1 0 0 0 0 P 448 22 -3.9762452326963377e-02 -1.5127974943840059e-02 2.7356884397782846e-02 5.0579712977725975e-02 1 0 0 0 0 V -149 0 -1.6250987174809225e-05 -9.3118864196595224e-06 3.1702839039164043e-05 3.7109542665160773e-05 0 2 0 P 449 22 -3.6870368602592096e-01 -1.4045069634680810e-01 6.5670159713698384e-01 7.6611082349466231e-01 1 0 0 0 0 P 450 22 -1.0723168798480907e-01 -1.3226234552648475e-01 2.7176523340087461e-01 3.2069971162704614e-01 1 0 0 0 0 V -150 0 -2.0705112909093478e-05 -1.5202181491735877e-05 4.9672753153496391e-05 5.6376524744984773e-05 0 2 0 P 451 22 -3.3931360499909979e-01 -2.3057932845786680e-01 6.6780594181599140e-01 7.8375080553343579e-01 1 0 0 0 0 P 452 22 -5.1565653364366991e-02 -5.6413428021465317e-02 2.6993581302287700e-01 2.8054738391285838e-01 1 0 0 0 0 V -151 0 -7.4597686965198928e-04 2.2316318405573367e-04 1.7908169655329164e-03 1.9532707228237809e-03 0 2 0 P 453 22 -1.4246101980804395e+00 4.5702871584691501e-01 3.5835352505628331e+00 3.8833122917954839e+00 1 0 0 0 0 P 454 22 -8.5105762051548206e-01 2.2375013522919127e-01 1.8795088507375968e+00 2.0753112336354556e+00 1 0 0 0 0 V -152 0 6.6015575639675564e-06 6.3341433747308370e-06 8.4046301101239673e-05 8.4836730106506935e-05 0 3 0 P 455 22 4.6250805084516407e-02 5.1065355763837389e-02 1.1821427627439629e+00 1.1841487740306040e+00 1 0 0 0 0 P 456 11 7.5995637573938027e-02 6.6192645495036395e-02 4.0568338592898406e-01 4.1801444109827823e-01 1 0 0 0 0 P 457 -11 4.0389184210687179e-03 3.9118250217297437e-03 1.9948589201100899e-02 2.0732138050065133e-02 1 0 0 0 0 V -153 0 -3.0527762195662063e-07 -7.8922317350201440e-08 5.1000387276185507e-06 1.1879805040072812e-05 0 2 0 P 458 22 -3.8785845906304413e-02 5.2252652181206893e-02 5.4932558582617912e-02 8.5160245978217614e-02 1 0 0 0 0 P 459 22 3.4943665019082040e-02 -5.3245957282821360e-02 9.2558060860978269e-03 6.4357296697680713e-02 1 0 0 0 0 V -154 0 1.7228060906813459e-05 -1.6059381008313275e-07 1.4548920835717554e-04 1.4667557596331846e-04 0 2 0 P 460 22 3.0871782041091927e-01 3.0847063956232153e-02 2.2621632739227993e+00 2.2833398590396277e+00 1 0 0 0 0 P 461 22 2.0865672761787177e-02 -3.3919323173064876e-02 5.2113554122857586e-01 5.2265490442157103e-01 1 0 0 0 0 V -155 0 6.0169563140009958e-05 -3.8961099659871994e-06 6.7926256216732542e-04 6.8279595793664714e-04 0 2 0 P 462 22 5.5571535017280009e-02 2.7467470510788801e-02 1.2818981282670097e+00 1.2833960685208994e+00 1 0 0 0 0 P 463 22 1.8114739877709293e-01 -4.2795535880783907e-02 1.3904548204909399e+00 1.4028579563881454e+00 1 0 0 0 0 V -156 0 4.4310053283074494e-07 -6.6739678269960429e-06 4.2648231481011661e-04 4.2739198252896672e-04 0 2 0 P 464 22 9.0582919887507770e-03 5.1750683900750494e-02 6.8023525984973066e-01 6.8226108981883149e-01 1 0 0 0 0 P 465 22 -6.8476670859327574e-03 -8.5047054330978103e-02 1.4474814903597408e+00 1.4499939851354398e+00 1 0 0 0 0 V -157 0 -7.3789862488528320e-08 -7.9087160461986960e-08 2.0759481797012445e-06 2.0815498017000389e-06 0 2 0 P 466 22 -1.4623790589315185e-02 2.0677447511090151e-03 2.6330046765956967e-02 3.0189438256671194e-02 1 0 0 0 0 P 467 22 -7.7897773788520960e-02 -1.0123133662365867e-01 2.5766016660169533e+00 2.5797658792993521e+00 1 0 0 0 0 V -158 0 -1.7109185521691067e-06 -5.2265515961634742e-06 2.0350897999688353e-05 2.1096025103269015e-05 0 2 0 P 468 22 -6.6210675740902655e-02 -3.6100664715189773e-01 1.5193008497915106e+00 1.5630050303972560e+00 1 0 0 0 0 P 469 22 -2.2265778012966328e-01 -5.2143506066492040e-01 1.9167086980015695e+00 1.9988104568812346e+00 1 0 0 0 0 V -159 0 -1.3029366471364682e-05 -2.7359050501303907e-05 2.8978605228945303e-04 2.9202528511952257e-04 0 2 0 P 470 22 -1.0700748431758146e-01 -1.9560856563980786e-01 1.6627877731277383e+00 1.6776699589355302e+00 1 0 0 0 0 P 471 22 1.7320759059365521e-02 7.2844709089689682e-03 3.3193408172734395e-01 3.3246549719180074e-01 1 0 0 0 0 V -160 0 5.9992232647993485e-05 2.1878759450890609e-05 -1.5623472506884567e-03 1.5642807390390076e-03 0 2 0 P 472 22 1.3227174147657314e-01 -1.7695790157984701e-02 -3.2063328372913853e+00 3.2091087887567062e+00 1 0 0 0 0 P 473 22 5.0286516262272665e-02 8.4273545819750120e-02 -1.5479391655909738e+00 1.5510468802113289e+00 1 0 0 0 0 V -161 0 9.6980576923092710e-05 9.3152793489929028e-05 -4.1015115835240619e-03 4.1038318147832821e-03 0 2 0 P 474 22 6.0279838048069599e-02 8.6578836225844988e-02 -4.8766802682917074e+00 4.8778212342092733e+00 1 0 0 0 0 P 475 22 3.6317958049574123e-01 3.2016681345469611e-01 -1.3032304864753392e+01 1.3041295038607203e+01 1 0 0 0 0 V -162 0 7.7557570022889814e-05 6.3710267681819850e-05 -2.5112506458530330e-03 2.5133243076003739e-03 0 2 0 P 476 22 1.9738891092452562e-01 1.8419517628603457e-01 -5.2700335891055872e+00 5.2769445965846558e+00 1 0 0 0 0 P 477 22 3.6615130249546152e-01 2.7872930466225981e-01 -1.2976937331946077e+01 1.2985093735466508e+01 1 0 0 0 0 V -163 0 -3.4640812312022877e+02 -2.7252474616663295e+02 4.8585927663570837e+03 4.8798084204311663e+03 0 2 0 P 478 22 -1.9479344788144778e-02 -6.8698659456162145e-02 7.4956109109376878e-01 7.5295469981010843e-01 1 0 0 0 0 P 479 22 -7.6192210608136590e-01 -8.0001576458750845e-01 1.1323717803944859e+01 1.1377483703468961e+01 1 0 0 0 0 V -164 0 -3.4640805819832474e+02 -2.7252452963960695e+02 4.8585911303083576e+03 4.8798067743459605e+03 0 2 0 P 480 22 -6.2120745186533821e-01 -3.3947218369519189e-01 7.9326337303903296e+00 7.9641583335768891e+00 1 0 0 0 0 P 481 22 -1.4943202782713458e-01 -1.2828109928596577e-02 1.7624400881715250e+00 1.7688102090781030e+00 1 0 0 0 0 HepMC::IO_Ascii-END_EVENT_LISTING hepmc-2.06.09.orig/examples/example_VectorConversion.cc0000644000175000017500000001154411654065133023766 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, Feb 2000 // Example of building an event and a particle data table from scratch // This is meant to be of use for persons implementing HepMC inside a MC // event generator ////////////////////////////////////////////////////////////////////////// // To Compile: go to the HepMC directory and type: // gmake examples/example_BuildEventFromScratch.exe // #include #include "VectorConversion.h" #include "HepMC/GenEvent.h" #include "CLHEP/Vector/LorentzVector.h" // in this example we use the HepMC namespace, so that we do not have to // precede all HepMC classes with HepMC:: // This example also shows how to use the CLHEP Lorentz vector with HepMC2 using namespace HepMC; using namespace CLHEP; int main() { // // In this example we will place the following event into HepMC "by hand" // // name status pdg_id parent Px Py Pz Energy Mass // 1 !p+! 3 2212 0,0 0.000 0.000 7000.000 7000.000 0.938 // 2 !p+! 3 2212 0,0 0.000 0.000-7000.000 7000.000 0.938 //========================================================================= // 3 !d! 3 1 1,1 0.750 -1.569 32.191 32.238 0.000 // 4 !u~! 3 -2 2,2 -3.047 -19.000 -54.629 57.920 0.000 // 5 !W-! 3 -24 1,2 1.517 -20.68 -20.605 85.925 80.799 // 6 !gamma! 1 22 1,2 -3.813 0.113 -1.833 4.233 0.000 // 7 !d! 1 1 5,5 -2.445 28.816 6.082 29.552 0.010 // 8 !u~! 1 -2 5,5 3.962 -49.498 -26.687 56.373 0.006 // now we build the graph, which will look like // p7 # // p1 / # // \v1__p3 p5---v4 # // \_v3_/ \ # // / \ p8 # // v2__p4 \ # // / p6 # // p2 # // # // First create the event container, with Signal Process 20, event number 1 // // Note that the HepLorentzVectors will be automatically converted to // HepMC::FourVector within GenParticle and GenVertex GenEvent* evt = new GenEvent( 20, 1 ); // define the units evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // // create vertex 1 and vertex 2, together with their inparticles GenVertex* v1 = new GenVertex(); evt->add_vertex( v1 ); v1->add_particle_in( new GenParticle( HepLorentzVector(0,0,7000,7000), 2212, 3 ) ); GenVertex* v2 = new GenVertex(); evt->add_vertex( v2 ); v2->add_particle_in( new GenParticle( HepLorentzVector(0,0,-7000,7000), 2212, 3 ) ); // // create the outgoing particles of v1 and v2 GenParticle* p3 = new GenParticle( HepLorentzVector(.750,-1.569,32.191,32.238), 1, 3 ); v1->add_particle_out( p3 ); GenParticle* p4 = new GenParticle( HepLorentzVector(-3.047,-19.,-54.629,57.920), -2, 3 ); v2->add_particle_out( p4 ); // // create v3 GenVertex* v3 = new GenVertex(); evt->add_vertex( v3 ); v3->add_particle_in( p3 ); v3->add_particle_in( p4 ); v3->add_particle_out( new GenParticle( HepLorentzVector(-3.813,0.113,-1.833,4.233 ), 22, 1 ) ); GenParticle* p5 = new GenParticle( HepLorentzVector(1.517,-20.68,-20.605,85.925), -24,3); v3->add_particle_out( p5 ); // // create v4 GenVertex* v4 = new GenVertex(HepLorentzVector(0.12,-0.3,0.05,0.004)); evt->add_vertex( v4 ); v4->add_particle_in( p5 ); v4->add_particle_out( new GenParticle( HepLorentzVector(-2.445,28.816,6.082,29.552), 1,1 ) ); v4->add_particle_out( new GenParticle( HepLorentzVector(3.962,-49.498,-26.687,56.373), -2,1 ) ); // // tell the event which vertex is the signal process vertex evt->set_signal_process_vertex( v3 ); // the event is complete, we now print it out to the screen evt->print(); // example conversion back to Lorentz vector // add all outgoing momenta std::cout << std::endl; std::cout << " Add output momenta " << std::endl; HepLorentzVector sum; for ( GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if( (*p)->status() == 1 ) { sum += convertTo( (*p)->momentum() ); (*p)->print(); } } std::cout << "Vector Sum: " << sum << std::endl; // now clean-up by deleteing all objects from memory // // deleting the event deletes all contained vertices, and all particles // contained in those vertices delete evt; return 0; } hepmc-2.06.09.orig/examples/CMakeLists.txt0000644000175000017500000000102111701667602021163 0ustar sylvestresylvestre set( example_code example_BuildEventFromScratch.cc example_EventSelection.cc example_UsingIterators.cc example_UsingIterators.txt example_VectorConversion.cc VectorConversion.h ) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/GNUmakefile.example.in ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile @ONLY ) INSTALL (FILES ${example_code} ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile DESTINATION share/HepMC/examples ) add_subdirectory(fio) add_subdirectory(pythia8) hepmc-2.06.09.orig/examples/Makefile.in0000644000175000017500000002315311763470443020505 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # This makefile is used to copy files during the "make install" step srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = examples DIST_COMMON = $(srcdir)/GNUmakefile.example.in $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = GNUmakefile.example SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INSTALLDIR = $(pkgdatadir)/examples # files to distribute EXTRA_DIST = \ example_BuildEventFromScratch.cc \ example_EventSelection.cc \ example_UsingIterators.cc \ example_VectorConversion.cc \ VectorConversion.h \ example_UsingIterators.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh GNUmakefile.example: $(top_builddir)/config.status $(srcdir)/GNUmakefile.example.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/examples/fio/0000755000175000017500000000000011763470443017211 5ustar sylvestresylvestrehepmc-2.06.09.orig/examples/fio/example_MyHerwig.cc0000644000175000017500000000714111654065133022764 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, October 2002 // example of generating events with Herwig using HepMC/HerwigWrapper.h // Events are read into the HepMC event record from the FORTRAN HEPEVT // common block using the IO_HERWIG strategy. ////////////////////////////////////////////////////////////////////////// /// To Compile: go to the HepMC directory and type: /// gmake examples/example_MyHerwig.exe /// /// In this example the precision and number of entries for the HEPEVT /// fortran common block are explicitly defined to correspond to those /// used in the Herwig version of the HEPEVT common block. /// If you get funny output from HEPEVT in your own code, probably you have /// set these values incorrectly! /// #include #include "HepMC/HerwigWrapper.h" #include "HepMC/IO_HERWIG.h" #include "HepMC/IO_GenEvent.h" #include "HepMC/GenEvent.h" #include "HepMC/HEPEVT_Wrapper.h" int main() { // //........................................HEPEVT // Herwig 6.4 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //.......................................INITIALIZATIONS hwproc.PBEAM1 = 7000.; // energy of beam1 hwproc.PBEAM2 = 7000.; // energy of beam2 // 1610 = gg->H--> WW, 1706 = qq-->ttbar, 2510 = ttH -> ttWW hwproc.IPROC = 1706; // qq -> ttbar production hwproc.MAXEV = 100; // number of events // tell it what the beam particles are: for ( unsigned int i = 0; i < 8; ++i ) { hwbmch.PART1[i] = (i < 1) ? 'P' : ' '; hwbmch.PART2[i] = (i < 1) ? 'P' : ' '; } hwigin(); // INITIALISE OTHER COMMON BLOCKS hwevnt.MAXPR = 1; // number of events to print hwuinc(); // compute parameter-dependent constants hweini(); // initialise elementary process //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HERWIG hepevtio; // Instantiate an IO strategy to write the data to file HepMC::IO_GenEvent ascii_io("example_MyHerwig.dat",std::ios::out); // //........................................EVENT LOOP for ( int i = 1; i <= hwproc.MAXEV; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; // initialise event hwuine(); // generate hard subprocess hwepro(); // generate parton cascades hwbgen(); // do heavy object decays hwdhob(); // do cluster formation hwcfor(); // do cluster decays hwcdec(); // do unstable particle decays hwdhad(); // do heavy flavour hadron decays hwdhvy(); // add soft underlying event if needed hwmevt(); // finish event hwufne(); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Herwig uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // set cross section information evt->set_cross_section( HepMC::getHerwigCrossSection(i) ); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); if (i<=hwevnt.MAXPR) { std::cout << "\n\n This is the FIXED version of HEPEVT as " << "coded in IO_HERWIG " << std::endl; HepMC::HEPEVT_Wrapper::print_hepevt(); evt->print(); } // write the event to the ascii file ascii_io << evt; // we also need to delete the created event from memory delete evt; } //........................................TERMINATION hwefin(); return 0; } hepmc-2.06.09.orig/examples/fio/example_MyPythiaOnlyToHepMC.cc0000644000175000017500000000464611654065133025026 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, December 1999 // November 2000, updated to use Pythia 6.1 // example of generating events with Pythia // using HepMC/PythiaWrapper.h // Events are read into the HepMC event record from the FORTRAN HEPEVT // common block using the IO_HEPEVT strategy -- nothing is done with them. // This program is just used to find the total time required to transfer // from HEPEVT into the HepMC event record. ////////////////////////////////////////////////////////////////////////// // To Compile: go to the HepMC directory and type: // gmake examples/example_MyPythiaOnlyTo HepMC.exe // // See comments in examples/example_MyPythia.cxx regarding the HEPEVT wrapper. // #include #include "HepMC/PythiaWrapper.h" #include "HepMC/IO_HEPEVT.h" #include "HepMC/GenEvent.h" #include "PythiaHelper.h" int main() { // //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); // //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // //........................................EVENT LOOP for ( int i = 1; i <= 100; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine convert common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // set number of multi parton interactions evt->set_mpi( pypars.msti[31-1] ); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // //.......................USER WOULD PROCESS EVENT HERE // // we also need to delete the created event from memory delete evt; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); return 0; } hepmc-2.06.09.orig/examples/fio/GNUmakefile.example.in0000644000175000017500000001311611654065133023317 0ustar sylvestresylvestre################################################################################ # Makefile for building a HepMC executable with the gcc compiler # # Matt.Dobbs@CERN.CH 1.2000 # # This makefiles also works to compile the example programs. # I.E.: syntax for compiling the example_MyPythia.cc example: # gmake example_MyPythia.exe # or simply gmake all to compile all examples. # ################################################################################ Define directory paths # You may have to change GENSERdir and/or other variables # HepMCdir = @prefix@ HepMClib = -L$(HepMCdir)/lib -lHepMC HepMCfiolib = -L$(HepMCdir)/lib -lHepMCfio GENSERdir = @GENSERdir@ Pythia_LIB = -L$(GENSERdir)/lib -Wl,-rpath -Wl,$(GENSERdir)/lib \ -lpythia6_403 -lpythia6_403_dumm -lpythia6_403_pdfdumm Herwig_LIB = -L$(GENSERdir)/lib -Wl,-rpath -Wl,$(GENSERdir)/lib \ -lherwig6_510 -lherwig6_510_dumm -lherwig6_510_pdfdumm ################################################################################ Compiler options # CXX = @CXX@ F77 = @F77@ INCLUDES = -I$(HepMCdir)/include -I$(CLHEPdir)/include CXXFLAGS = @AM_CXXFLAGS@ @CXXFLAGS@ $(INCLUDES) ifeq "$(CXX)" "g++" FLAGS = $(DFLG) -fno-second-underscore $(INCDIR) else FLAGS = $(DFLG) $(INCDIR) endif LINK_LIBS = @LDFLAGS@ UNAME = $(shell uname) ifneq "$(UNAME)" "Darwin" LINK_LIBS += -Wl,-rpath -Wl,$(HepMCdir)/lib endif ifeq "$(UNAME)" "Linux" ifeq "$(F77)" "gfortran" LINK_LIBS += -lgfortran else LINK_LIBS += -lg2c endif endif initpydata_OBJ= initpydata.o pythia_OBJ = initPythia.o initpydata.o HDRS = $(HepMCdir)/include/HepMC/*.h *.h EXAMPLES = example_MyHerwig.exe \ example_MyPythia.exe \ example_MyPythiaOnlyToHepMC.exe \ example_PythiaStreamIO.exe \ testPythiaCopies.exe \ testHerwigCopies.exe ################################################################################ definition of the compiler options # -I location of directory containing include files # -L location of directory containing libraries # -lname include the library from -L location called libname.a # -lg2c is the library containing info on converting fortran to C # -lf is the library containing the intrinsic for HPUX only. # -shared make a shared library as output # -fPIC produce position independent code # necessary on some platforms (including HPUX) for -shared # -fpic ^^ same(?) # -O optimizes # -g produces output for the debugger # -pg produces output for gprof profiler # note: if you want to see all warnings and ensure ansi standard # compatibility, use: # -pipe -ansi -pedantic -fnonnull-objects \ # -W -Wall -Wwrite-strings -Wpointer-arith -Wnested-externs \ # -Woverloaded-virtual -Wbad-function-cast -fnonnull-objects # The proper order for cernlib libraries is: # -lpawlib -lgraflib -lgrafX11 -lmathlib -lkernlib -lpacklib -ljetset74 # # makefile syntax: # for target thedir/target.suf from source anotherdir/source.suf2 # ${*D} = thedir # ${*F} = target # $* = thedir/target # $@ = thedir/target.suf # $< = anotherdir/source.suf2 # ############################################################################### # .SUFFIXES: .o .cxx .f .exe all: $(EXAMPLES) example_MyHerwig.exe: example_MyHerwig.o @echo "Building $@ ..." $(CXX) $(FLAGS) example_MyHerwig.o \ $(HepMClib) $(HepMCfiolib) \ $(Herwig_LIB) $(LINK_LIBS) -o $@ example_MyPythia.exe: $(initpydata_OBJ) $(pythia_OBJ) example_MyPythia.o @echo "Building $@ ..." $(CXX) $(FLAGS) $(pythia_OBJ) example_MyPythia.o \ $(HepMClib) $(HepMCfiolib) \ $(Pythia_LIB) $(LINK_LIBS) -o $@ example_MyPythiaOnlyToHepMC.exe: $(initpydata_OBJ) $(pythia_OBJ) example_MyPythiaOnlyToHepMC.o @echo "Building $@ ..." $(CXX) $(FLAGS) $(pythia_OBJ) example_MyPythiaOnlyToHepMC.o \ $(HepMClib) $(HepMCfiolib) \ $(Pythia_LIB) $(LINK_LIBS) -o $@ example_PythiaStreamIO.exe: $(initpydata_OBJ) $(pythia_OBJ) example_PythiaStreamIO.o @echo "Building $@ ..." $(CXX) $(FLAGS) $(pythia_OBJ) example_PythiaStreamIO.o \ $(HepMClib) $(HepMCfiolib) \ $(Pythia_LIB) $(LINK_LIBS) -o $@ testPythiaCopies.exe: $(initpydata_OBJ) $(pythia_OBJ) testPythiaCopies.o @echo "Building $@ ..." $(CXX) $(FLAGS) $(pythia_OBJ) testPythiaCopies.o \ $(HepMClib) $(HepMCfiolib) \ $(Pythia_LIB) $(LINK_LIBS) -o $@ testHerwigCopies.exe: testHerwigCopies.o @echo "Building $@ ..." $(CXX) $(FLAGS) testHerwigCopies.o \ $(HepMClib) $(HepMCfiolib) \ $(Herwig_LIB) $(LINK_LIBS) -o $@ ############################################################################### # instructions for building a .o file from a .cxx file # .cc.o: $(HDRS) $< @echo "Compiling $< with $(CXX) ..." @$(CXX) $(CXXFLAGS) -c $< -o $@ ############################################################################### # instructions for building a .o file from a .f file # .f.o: $< @echo "Compiling $< with $(F77) ..." @$(F77) $(FLAGS) -c $< -o $@ ############################################################################### # gmake clean removes all garbage from HepMC directories. # clean: rm -f *.o ############################################################################### # gmake distclean removes all compiled libraries, executables, +garbage # to prepare the package for distribution distclean: $(MAKE) clean --no-print-directory rm -f *.exe rm -f *.dat hepmc-2.06.09.orig/examples/fio/CMakeLists.txt0000644000175000017500000000100211656561662021747 0ustar sylvestresylvestre set( example_code example_MyHerwig.cc example_MyPythia.cc example_MyPythiaOnlyToHepMC.cc example_PythiaStreamIO.cc initpydata.f initPythia.cc PythiaHelper.h testHerwigCopies.cc testPythiaCopies.cc ) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/GNUmakefile.example.in ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile @ONLY ) INSTALL (FILES ${example_code} ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile DESTINATION share/HepMC/examples/fio ) hepmc-2.06.09.orig/examples/fio/Makefile.in0000644000175000017500000002324411763470443021263 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # This makefile is used to copy files during the "make install" step srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = examples/fio DIST_COMMON = $(srcdir)/GNUmakefile.example.in $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = GNUmakefile.example SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INSTALLDIR = $(pkgdatadir)/examples/fio # files to distribute EXTRA_DIST = \ example_MyHerwig.cc \ example_MyPythia.cc \ example_MyPythiaOnlyToHepMC.cc \ example_PythiaStreamIO.cc \ testHerwigCopies.cc \ testPythiaCopies.cc \ initPythia.cc \ initpydata.f \ PythiaHelper.h all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/fio/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/fio/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh GNUmakefile.example: $(top_builddir)/config.status $(srcdir)/GNUmakefile.example.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/examples/fio/initPythia.cc0000644000175000017500000000226311654065133021640 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, April 2007 // // Initialize pythia // Using a separate cc file allows us to test issues with PythiaWrapper.h // ////////////////////////////////////////////////////////////////////////// #include "HepMC/PythiaWrapper.h" #include "PythiaHelper.h" void initPythia() { // (Some platforms may require the initialization of pythia PYDATA block // data as external - if you get pythia initialization errors try // commenting in/out the below call to initpydata() ) // initpydata(); // // Select W+gamma process (process number 20) // (here we have to be careful of C/F77 differences: arrays in C // start at 0, F77 at 1, so we need to subtract 1 from the process #) pysubs.msel=0; pysubs.msub[20-1] = 1; // set random number seed (mandatory!) pydatr.mrpy[0]=55122 ; // Tell Pythia not to write multiple copies of particles in event record. pypars.mstp[128-1] = 2; // Example of setting a Pythia parameter: set the top mass pydat2.pmas[1-1][6-1]= 175; // // Call pythia initialization call_pyinit( "CMS", "p", "p", 14000. ); } hepmc-2.06.09.orig/examples/fio/PythiaHelper.h0000644000175000017500000000055111654065133021754 0ustar sylvestresylvestre#ifndef PYTHIA_HELPER_H #define PYTHIA_HELPER_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, April 2007 // // definitions needed by the pythia examples // ////////////////////////////////////////////////////////////////////////// #include "HepMC/PythiaWrapper.h" void initPythia(); #endif // PYTHIA_HELPER_H hepmc-2.06.09.orig/examples/fio/Makefile.am0000644000175000017500000000115511654065133021242 0ustar sylvestresylvestre# This makefile is used to copy files during the "make install" step INSTALLDIR = $(pkgdatadir)/examples/fio # files to distribute EXTRA_DIST = \ example_MyHerwig.cc \ example_MyPythia.cc \ example_MyPythiaOnlyToHepMC.cc \ example_PythiaStreamIO.cc \ testHerwigCopies.cc \ testPythiaCopies.cc \ initPythia.cc \ initpydata.f \ PythiaHelper.h install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done hepmc-2.06.09.orig/examples/fio/testPythiaCopies.cc0000644000175000017500000000521211654065133023014 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testPythiaCopies.cc // // garren@fnal.gov, January 2008 // Multiple events in memory at the same time ////////////////////////////////////////////////////////////////////////// #include #include #include "HepMC/PythiaWrapper.h" #include "HepMC/IO_HEPEVT.h" #include "HepMC/GenEvent.h" #include "HepMC/CompareGenEvent.h" #include "PythiaHelper.h" int main() { // //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); // //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // // open some output files std::ofstream out1( "testPythiaOriginals.dat" ); std::ofstream out2( "testPythiaCopies1.dat" ); std::ofstream out3( "testPythiaCopies2.dat" ); // //........................................EVENT LOOP for ( int i = 1; i <= 50; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine convert common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // pythia uses GeV and mm evt->use_units( HepMC::Units::GEV, HepMC::Units::MM); // set a couple of arbitrary weights evt->weights().push_back(0.456); evt->weights()["test2"] = 0.8956; // set number of multi parton interactions evt->set_mpi( pypars.msti[31-1] ); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // //.......................make some copies evt->print(out1); HepMC::GenEvent ec = (*evt); ec.print(out2); HepMC::GenEvent* evt4 = new HepMC::GenEvent(*evt); evt4->print(out3); if( !compareGenEvent(evt,evt4) ) { std::cerr << "testPythiaCopies: GenEvent comparison fails at event " << evt->event_number() << std::endl; return -1; } // // now delete the created events from memory delete evt; delete evt4; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); std::cout << "testPythiaCopies: event comparison is successful" << std::endl; return 0; } hepmc-2.06.09.orig/examples/fio/example_MyPythia.cc0000644000175000017500000003162211654065133022776 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, December 1999 // November 2000, updated to use Pythia 6.1 // ////////////////////////////////////////////////////////////////////////// /// example of generating events with Pythia using HepMC/PythiaWrapper.h /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy /// /// To Compile: go to the HepMC directory and type: /// gmake examples/example_MyPythia.exe /// /// In this example the precision and number of entries for the HEPEVT /// fortran common block are explicitly defined to correspond to those /// used in the Pythia version of the HEPEVT common block. /// /// If you get funny output from HEPEVT in your own code, probably you have /// set these values incorrectly! /// ////////////////////////////////////////////////////////////////////////// /// /// pythia_out(): /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy and then output to file in /// ascii format using the IO_GenEvent strategy. /// /// pythia_particle_out(): /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy and then output to file in /// ascii format using the IO_AsciiParticles strategy. /// This is identical to pythia_out() except for the choice of output format. /// /// event_selection(): /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy and then a very simple event /// selection is performed. /// /// pythia_in(): /// Read the file created by pythia_out(). /// /// pythia_in_out(): /// generate events with Pythia, write a file, and read the resulting output /// Notice that we use scope to explicitly close the ouput files. /// The two output files should be identical. /// #include #include "HepMC/PythiaWrapper.h" #include "HepMC/IO_HEPEVT.h" #include "HepMC/IO_GenEvent.h" #include "HepMC/IO_AsciiParticles.h" #include "HepMC/GenEvent.h" #include "PythiaHelper.h" //! example class /// \class IsGoodEventMyPythia /// event selection predicate. returns true if the event contains /// a photon with pT > 25 GeV class IsGoodEventMyPythia { public: /// returns true if event is "good" bool operator()( const HepMC::GenEvent* evt ) { for ( HepMC::GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if ( (*p)->pdg_id() == 22 && (*p)->momentum().perp() > 25. ) { //std::cout << "Event " << evt->event_number() // << " is a good event." << std::endl; //(*p)->print(); return 1; } } return 0; } }; void pythia_out(); void pythia_in(); void pythia_in_out(); void event_selection(); void pythia_particle_out(); int main() { // example to generate events and write output pythia_out(); // example to generate events and perform simple event selection event_selection(); // example to read the file written by pythia_out pythia_in(); // example to generate events, write them, and read them back pythia_in_out(); return 0; } void pythia_out() { std::cout << std::endl; std::cout << "Begin pythia_out()" << std::endl; //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // { // begin scope of ascii_io // Instantiate an IO strategy to write the data to file HepMC::IO_GenEvent ascii_io("example_MyPythia.dat",std::ios::out); // //........................................EVENT LOOP for ( int i = 1; i <= 100; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine converts common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); // set number of multi parton interactions evt->set_mpi( pypars.msti[31-1] ); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // write the event out to the ascii files ascii_io << evt; // we also need to delete the created event from memory delete evt; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); } // end scope of ascii_io } void event_selection() { std::cout << std::endl; std::cout << "Begin event_selection()" << std::endl; //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); // //........................................HepMC INITIALIZATIONS // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // declare an instance of the event selection predicate IsGoodEventMyPythia is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; for ( int i = 1; i <= 100; i++ ) { icount++; if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine convert common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // set number of multi parton interactions evt->set_mpi( pypars.msti[31-1] ); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // do event selection if ( is_good_event(evt) ) { std::cout << "Good Event Number " << i << std::endl; ++num_good_events; } // we also need to delete the created event from memory delete evt; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); //........................................PRINT RESULTS std::cout << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } void pythia_in() { std::cout << std::endl; std::cout << "Begin pythia_in()" << std::endl; std::cout << "reading example_MyPythia.dat" << std::endl; //........................................define an input scope { // open input stream std::ifstream istr( "example_MyPythia.dat" ); if( !istr ) { std::cerr << "example_ReadMyPythia: cannot open example_MyPythia.dat" << std::endl; exit(-1); } HepMC::IO_GenEvent ascii_in(istr); // open output stream (alternate method) HepMC::IO_GenEvent ascii_out("example_MyPythia2.dat",std::ios::out); // now read the file int icount=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) std::cout << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; // write the event out to the ascii file ascii_out << evt; delete evt; ascii_in >> evt; } //........................................PRINT RESULT std::cout << icount << " events found. Finished." << std::endl; } // ascii_out and istr destructors are called here } void pythia_in_out() { std::cout << std::endl; std::cout << "Begin pythia_in_out()" << std::endl; //........................................HEPEVT // Pythia 6.3 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // //........................................define the output scope { // Instantial an IO strategy to write the data to file HepMC::IO_GenEvent ascii_io("example_MyPythiaRead.dat",std::ios::out); // //........................................EVENT LOOP for ( int i = 1; i <= 100; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine converts common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); // write the event out to the ascii file ascii_io << evt; // we also need to delete the created event from memory delete evt; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); } // ascii_io destructor is called here // //........................................define an input scope { // now read the file we wrote HepMC::IO_GenEvent ascii_in("example_MyPythiaRead.dat",std::ios::in); HepMC::IO_GenEvent ascii_io2("example_MyPythiaRead2.dat",std::ios::out); int icount=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) std::cout << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; // write the event out to the ascii file ascii_io2 << evt; delete evt; ascii_in >> evt; } //........................................PRINT RESULT std::cout << icount << " events found. Finished." << std::endl; } // ascii_io2 and ascii_in destructors are called here } void pythia_particle_out() { std::cout << std::endl; std::cout << "Begin pythia_particle_out()" << std::endl; //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // { // begin scope of ascii_io // Instantiate an IO strategy to write the data to file HepMC::IO_AsciiParticles ascii_io("example_PythiaParticle.dat",std::ios::out); // //........................................EVENT LOOP for ( int i = 1; i <= 100; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine converts common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); // write the event out to the ascii file ascii_io << evt; // we also need to delete the created event from memory delete evt; } //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); } // end scope of ascii_io } hepmc-2.06.09.orig/examples/fio/testHerwigCopies.cc0000644000175000017500000000653511654065133023014 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // testHerwigCopies.cc // // garren@fnal.gov, January 2008 // Multiple events in memory at the same time ////////////////////////////////////////////////////////////////////////// #include #include #include "HepMC/HerwigWrapper.h" #include "HepMC/IO_HERWIG.h" #include "HepMC/GenEvent.h" #include "HepMC/CompareGenEvent.h" #include "HepMC/HEPEVT_Wrapper.h" int main() { // //........................................HEPEVT // Herwig 6.4 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //.......................................INITIALIZATIONS hwproc.PBEAM1 = 7000.; // energy of beam1 hwproc.PBEAM2 = 7000.; // energy of beam2 // 1610 = gg->H--> WW, 1706 = qq-->ttbar, 2510 = ttH -> ttWW hwproc.IPROC = 1706; // qq -> ttbar production hwproc.MAXEV = 50; // number of events // tell it what the beam particles are: for ( unsigned int i = 0; i < 8; ++i ) { hwbmch.PART1[i] = (i < 1) ? 'P' : ' '; hwbmch.PART2[i] = (i < 1) ? 'P' : ' '; } hwigin(); // INITIALISE OTHER COMMON BLOCKS hwevnt.MAXPR = 0; // number of events to print hwuinc(); // compute parameter-dependent constants hweini(); // initialise elementary process //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HERWIG hepevtio; // // open some output files std::ofstream out1( "testHerwigOriginals.dat" ); std::ofstream out2( "testHerwigCopies1.dat" ); std::ofstream out3( "testHerwigCopies2.dat" ); // //........................................EVENT LOOP for ( int i = 1; i <= hwproc.MAXEV; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; // initialise event hwuine(); // generate hard subprocess hwepro(); // generate parton cascades hwbgen(); // do heavy object decays hwdhob(); // do cluster formation hwcfor(); // do cluster decays hwcdec(); // do unstable particle decays hwdhad(); // do heavy flavour hadron decays hwdhvy(); // add soft underlying event if needed hwmevt(); // finish event hwufne(); HepMC::GenEvent* evt = hepevtio.read_next_event(); // herwig uses GeV and mm evt->use_units( HepMC::Units::GEV, HepMC::Units::MM); // set cross section information evt->set_cross_section( HepMC::getHerwigCrossSection(i) ); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); // //.......................make some copies evt->print(out1); HepMC::GenEvent ec = (*evt); ec.print(out2); HepMC::GenEvent* evt4 = new HepMC::GenEvent(*evt); evt4->print(out3); if( !compareGenEvent(evt,evt4) ) { std::cerr << "testHerwigCopies: GenEvent comparison fails at event " << evt->event_number() << std::endl; return -1; } // we also need to delete the created event from memory delete evt; delete evt4; } //........................................TERMINATION hwefin(); std::cout << "testHerwigCopies: event comparison is successful" << std::endl; return 0; } hepmc-2.06.09.orig/examples/fio/initpydata.f0000644000175000017500000000033411654065133021521 0ustar sylvestresylvestrec c Matt.Dobbs@Cern.CH, December 1999 c EXTERNAL statement links PYDATA on most machines. c (Often necessary for the initialization of Pythia) c subroutine initpydata EXTERNAL PYDATA return end hepmc-2.06.09.orig/examples/fio/example_PythiaStreamIO.cc0000644000175000017500000001152511654065133024074 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // example_PythiaStreamIO.cc // // garren@fnal.gov, May 2009 // ////////////////////////////////////////////////////////////////////////// /// example of generating events with Pythia using HepMC/PythiaWrapper.h /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy /// /// To Compile: go to the HepMC example directory and type: /// make example_PythiaStreamIO.exe /// /// This example uses streaming I/O /// writePythiaStreamIO() sets the cross section in GenRun /// readPythiaStreamIO() reads the file written by writePythiaStreamIO() /// ////////////////////////////////////////////////////////////////////////// #include #include #include "HepMC/PythiaWrapper.h" #include "HepMC/IO_HEPEVT.h" #include "HepMC/GenEvent.h" #include "PythiaHelper.h" void writePythiaStreamIO(); void readPythiaStreamIO(); int main() { writePythiaStreamIO(); readPythiaStreamIO(); return 0; } void writePythiaStreamIO() { // example to generate events and write output std::cout << std::endl; std::cout << "Begin pythia_out()" << std::endl; //........................................HEPEVT // Pythia 6.1 uses HEPEVT with 4000 entries and 8-byte floating point // numbers. We need to explicitly pass this information to the // HEPEVT_Wrapper. // HepMC::HEPEVT_Wrapper::set_max_number_entries(4000); HepMC::HEPEVT_Wrapper::set_sizeof_real(8); // //........................................PYTHIA INITIALIZATIONS initPythia(); //........................................HepMC INITIALIZATIONS // // Instantiate an IO strategy for reading from HEPEVT. HepMC::IO_HEPEVT hepevtio; // { // begin scope of ascii_io // declare an output stream const char outfile[] = "example_PythiaStreamIO_write.dat"; std::ofstream ascii_io( outfile ); if( !ascii_io ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } // use the default IO_GenEvent precision ascii_io.precision(16); // write the line that defines the beginning of a GenEvent block HepMC::write_HepMC_IO_block_begin( ascii_io ); // //........................................EVENT LOOP for ( int i = 1; i <= 100; i++ ) { if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; call_pyevnt(); // generate one event with Pythia // pythia pyhepc routine converts common PYJETS in common HEPEVT call_pyhepc( 1 ); HepMC::GenEvent* evt = hepevtio.read_next_event(); // define the units (Pythia uses GeV and mm) evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // add some information to the event evt->set_event_number(i); evt->set_signal_process_id(20); // set number of multi parton interactions evt->set_mpi( pypars.msti[31-1] ); // set cross section information evt->set_cross_section( HepMC::getPythiaCrossSection() ); // write the event out to the ascii files ascii_io << (*evt);; // we also need to delete the created event from memory delete evt; } // write the line that defines the end of a GenEvent block HepMC::write_HepMC_IO_block_end( ascii_io ); //........................................TERMINATION // write out some information from Pythia to the screen call_pystat( 1 ); } // end scope of ascii_io } void readPythiaStreamIO() { // example to read events written by writePythiaStreamIO // and write them back out std::cout << std::endl; // input units are GeV and mm const char infile[] = "example_PythiaStreamIO_write.dat"; std::ifstream is( infile ); if( !is ) { std::cerr << "cannot open " << infile << std::endl; exit(-1); } // { // begin scope of ascii_io // declare an output stream const char outfile[] = "example_PythiaStreamIO_read.dat"; std::ofstream ascii_io( outfile ); if( !ascii_io ) { std::cerr << "cannot open " << outfile << std::endl; exit(-1); } ascii_io.precision(16); HepMC::write_HepMC_IO_block_begin( ascii_io ); // //........................................EVENT LOOP HepMC::GenEvent evt; int i = 0; while ( is ) { evt.read( is ); // make sure we have a valid event if( evt.is_valid() ) { ++i; if ( i%50==1 ) std::cout << "Processing Event Number " << i << std::endl; if ( i%25==2 ) { // write the cross section if it exists if( evt.cross_section() ) { std::cout << "cross section at event " << i << " is " << evt.cross_section()->cross_section() << std::endl; } } // write the event out to the ascii files evt.write( ascii_io ); } } //........................................TERMINATION HepMC::write_HepMC_IO_block_end( ascii_io ); } // end scope of ascii_io } hepmc-2.06.09.orig/examples/.cvsignore0000644000175000017500000000001410361523102020407 0ustar sylvestresylvestreMakefile.in hepmc-2.06.09.orig/examples/list_of_examples.cc0000644000175000017500000000421311654065133022273 0ustar sylvestresylvestre /// example to generate events and write output /// example to generate events and perform simple event selection /// example to read the file written by pythia_out /// example to generate events, write them, and read them back /// \example fio/example_MyPythia.cc /// Example of generating events with Pythia using HepMC/PythiaWrapper.h /// Events are read into the HepMC event record from the FORTRAN HEPEVT /// common block using the IO_HEPEVT strategy -- nothing is done with them. /// This program is just used to find the total time required to transfer /// from HEPEVT into the HepMC event record. /// \example example_MyPythiaOnlyToHepMC.cc /// \example fio/example_MyHerwig.cc /// Example of applying an event selection to the events written to file /// using example_MyPythia.cxx /// Events containing a photon of pT > 25 GeV pass the selection and are /// written to "example_EventSelection.dat" /// \example example_EventSelection.cc /// Example of building an event and a particle data table from scratch /// This is meant to be of use for persons implementing HepMC inside a MC /// event generator /// \example example_BuildEventFromScratch.cc /// Example of how to convert from another vector class to a SimpleVector. /// This example uses CLHEP::HepLorentzVector /// \example example_VectorConversion.cc /// This example shows low to use the particle and vertex iterators /// \example example_UsingIterators.cc /// This example generates Pythia events and fills /// cross section information from pyint5. /// The example uses streaming I/O to write a file and then read it. /// \example fio/example_PythiaStreamIO.cc /// Multiple events in memory at the same time /// \example fio/testHerwigCopies.cc /// Multiple events in memory at the same time /// \example fio/testPythiaCopies.cc /// This example converts from ThreeVector and FourVector to /// CLHEP::Hep3Vector and CLHEP::HepLorentzVector /// Similar (or perhaps templated) conversion methods could be added to /// any vector class. /// \example VectorConversion.h // This file is used by Doxygen when generating the documentation. hepmc-2.06.09.orig/examples/example_EventSelection.cc0000644000175000017500000000436410711672003023400 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, Feb 2000 // Example of applying an event selection to the events written to file // using example_MyPythia.cxx // Events containing a photon of pT > 25 GeV pass the selection and are // written to "example_EventSelection.dat" ////////////////////////////////////////////////////////////////////////// // To Compile: go to the HepMC directory and type: // gmake examples/example_EventSelection.exe // #include "HepMC/IO_GenEvent.h" #include "HepMC/GenEvent.h" //! example class /// \class IsEventGood /// event selection predicate. returns true if the event contains /// a photon with pT > 50 GeV class IsEventGood { public: /// check this event for goodness bool operator()( const HepMC::GenEvent* evt ) { for ( HepMC::GenEvent::particle_const_iterator p = evt->particles_begin(); p != evt->particles_end(); ++p ){ if ( (*p)->pdg_id() == 22 && (*p)->momentum().perp() > 25. ) { //std::cout << "Event " << evt->event_number() // << " is a good event." << std::endl; //(*p)->print(); return 1; } } return 0; } }; int main() { // declare an input strategy to read the data produced with the // example_MyPythia { // begin scope of ascii_in and ascii_out HepMC::IO_GenEvent ascii_in("example_MyPythia.dat",std::ios::in); // declare another IO_GenEvent for writing out the good events HepMC::IO_GenEvent ascii_out("example_EventSelection.dat",std::ios::out); // declare an instance of the event selection predicate IsEventGood is_good_event; //........................................EVENT LOOP int icount=0; int num_good_events=0; HepMC::GenEvent* evt = ascii_in.read_next_event(); while ( evt ) { icount++; if ( icount%50==1 ) std::cout << "Processing Event Number " << icount << " its # " << evt->event_number() << std::endl; if ( is_good_event(evt) ) { ascii_out << evt; ++num_good_events; } delete evt; ascii_in >> evt; } //........................................PRINT RESULT std::cout << num_good_events << " out of " << icount << " processed events passed the cuts. Finished." << std::endl; } // end scope of ascii_in and ascii_out return 0; } hepmc-2.06.09.orig/examples/Makefile.am0000644000175000017500000000110311654065133020456 0ustar sylvestresylvestre# This makefile is used to copy files during the "make install" step INSTALLDIR = $(pkgdatadir)/examples # files to distribute EXTRA_DIST = \ example_BuildEventFromScratch.cc \ example_EventSelection.cc \ example_UsingIterators.cc \ example_VectorConversion.cc \ VectorConversion.h \ example_UsingIterators.txt install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done hepmc-2.06.09.orig/examples/example_BuildEventFromScratch.cc0000644000175000017500000001017611654065133024653 0ustar sylvestresylvestre////////////////////////////////////////////////////////////////////////// // Matt.Dobbs@Cern.CH, Feb 2000 // Example of building an event and a particle data table from scratch // This is meant to be of use for persons implementing HepMC inside a MC // event generator ////////////////////////////////////////////////////////////////////////// // To Compile: go to the HepMC directory and type: // gmake examples/example_BuildEventFromScratch.exe // #include #include "HepMC/GenEvent.h" // in this example we use the HepMC namespace, so that we do not have to // precede all HepMC classes with HepMC:: // This example also shows how to use the CLHEP Lorentz vector with HepMC2 using namespace HepMC; int main() { // // In this example we will place the following event into HepMC "by hand" // // name status pdg_id parent Px Py Pz Energy Mass // 1 !p+! 3 2212 0,0 0.000 0.000 7000.000 7000.000 0.938 // 2 !p+! 3 2212 0,0 0.000 0.000-7000.000 7000.000 0.938 //========================================================================= // 3 !d! 3 1 1,1 0.750 -1.569 32.191 32.238 0.000 // 4 !u~! 3 -2 2,2 -3.047 -19.000 -54.629 57.920 0.000 // 5 !W-! 3 -24 1,2 1.517 -20.68 -20.605 85.925 80.799 // 6 !gamma! 1 22 1,2 -3.813 0.113 -1.833 4.233 0.000 // 7 !d! 1 1 5,5 -2.445 28.816 6.082 29.552 0.010 // 8 !u~! 1 -2 5,5 3.962 -49.498 -26.687 56.373 0.006 // now we build the graph, which will look like // p7 # // p1 / # // \v1__p3 p5---v4 # // \_v3_/ \ # // / \ p8 # // v2__p4 \ # // / p6 # // p2 # // # // First create the event container, with Signal Process 20, event number 1 // GenEvent* evt = new GenEvent( 20, 1 ); // define the units evt->use_units(HepMC::Units::GEV, HepMC::Units::MM); // // create vertex 1 and vertex 2, together with their inparticles GenVertex* v1 = new GenVertex(); evt->add_vertex( v1 ); v1->add_particle_in( new GenParticle( FourVector(0,0,7000,7000), 2212, 3 ) ); GenVertex* v2 = new GenVertex(); evt->add_vertex( v2 ); v2->add_particle_in( new GenParticle( FourVector(0,0,-7000,7000), 2212, 3 ) ); // // create the outgoing particles of v1 and v2 GenParticle* p3 = new GenParticle( FourVector(.750,-1.569,32.191,32.238), 1, 3 ); v1->add_particle_out( p3 ); GenParticle* p4 = new GenParticle( FourVector(-3.047,-19.,-54.629,57.920), -2, 3 ); v2->add_particle_out( p4 ); // // create v3 GenVertex* v3 = new GenVertex(); evt->add_vertex( v3 ); v3->add_particle_in( p3 ); v3->add_particle_in( p4 ); v3->add_particle_out( new GenParticle( FourVector(-3.813,0.113,-1.833,4.233 ), 22, 1 ) ); GenParticle* p5 = new GenParticle( FourVector(1.517,-20.68,-20.605,85.925), -24,3); v3->add_particle_out( p5 ); // // create v4 GenVertex* v4 = new GenVertex(FourVector(0.12,-0.3,0.05,0.004)); evt->add_vertex( v4 ); v4->add_particle_in( p5 ); v4->add_particle_out( new GenParticle( FourVector(-2.445,28.816,6.082,29.552), 1,1 ) ); v4->add_particle_out( new GenParticle( FourVector(3.962,-49.498,-26.687,56.373), -2,1 ) ); // // tell the event which vertex is the signal process vertex evt->set_signal_process_vertex( v3 ); // the event is complete, we now print it out to the screen evt->print(); // now clean-up by deleteing all objects from memory // // deleting the event deletes all contained vertices, and all particles // contained in those vertices delete evt; return 0; } hepmc-2.06.09.orig/examples/pythia8/0000755000175000017500000000000011763470444020023 5ustar sylvestresylvestrehepmc-2.06.09.orig/examples/pythia8/main31.cc0000644000175000017500000000633111701667602021421 0ustar sylvestresylvestre// main31.cc is a part of the PYTHIA event generator. // Copyright (C) 2011 Mikhail Kirsanov, Torbjorn Sjostrand. // PYTHIA is licenced under the GNU GPL version 2, see COPYING for details. // Please respect the MCnet Guidelines, see GUIDELINES for details. // This is a simple test program. // It illustrates how HepMC can be interfaced to Pythia8. // It studies the charged multiplicity distribution at the LHC. // HepMC events are output to the hepmcout31.dat file. // Written by Mikhail Kirsanov based on main01.cc. // WARNING: typically one needs 25 MB/100 events at the LHC. // Therefore large event samples may be impractical. #include "Pythia.h" #include "HepMCInterface.h" #include "HepMC/GenEvent.h" #include "HepMC/IO_GenEvent.h" // Following line is a deprecated alternative, removed in recent versions //#include "HepMC/IO_Ascii.h" //#include "HepMC/IO_AsciiParticles.h" // Following line to be used with HepMC 2.04 onwards. #ifdef HEPMC_HAS_UNITS #include "HepMC/Units.h" #endif using namespace Pythia8; int main() { // Interface for conversion from Pythia8::Event to HepMC one. HepMC::I_Pythia8 ToHepMC; // ToHepMC.set_crash_on_problem(); // Specify file where HepMC events will be stored. HepMC::IO_GenEvent ascii_io("hepmcout31.dat", std::ios::out); // Following line is a deprecated alternative, removed in recent versions // HepMC::IO_Ascii ascii_io("hepmcout31.dat", std::ios::out); // Line below is an eye-readable one-way output, uncomment the include above // HepMC::IO_AsciiParticles ascii_io("hepmcout31.dat", std::ios::out); // Generator. Process selection. LHC initialization. Histogram. Pythia pythia; pythia.readString("HardQCD:all = on"); pythia.readString("PhaseSpace:pTHatMin = 20."); pythia.init( 2212, 2212, 14000.); Hist mult("charged multiplicity", 100, -0.5, 799.5); // Begin event loop. Generate event. Skip if error. List first one. for (int iEvent = 0; iEvent < 100; ++iEvent) { if (!pythia.next()) continue; if (iEvent < 1) {pythia.info.list(); pythia.event.list();} // Find number of all final charged particles and fill histogram. int nCharged = 0; for (int i = 0; i < pythia.event.size(); ++i) if (pythia.event[i].isFinal() && pythia.event[i].isCharged()) ++nCharged; mult.fill( nCharged ); // Construct new empty HepMC event. #ifdef HEPMC_HAS_UNITS // This form with arguments is only meaningful for HepMC 2.04 onwards, // and even then unnecessary if HepMC was built with GeV and mm as units.. HepMC::GenEvent* hepmcevt = new HepMC::GenEvent( HepMC::Units::GEV, HepMC::Units::MM); #else // This form is needed for backwards compatibility. // In HepMCInterface.cc a conversion from GeV to MeV will be done. HepMC::GenEvent* hepmcevt = new HepMC::GenEvent(); #endif // Fill HepMC event, including PDF info. ToHepMC.fill_next_event( pythia, hepmcevt ); // This alternative older method fills event, without PDF info. // ToHepMC.fill_next_event( pythia.event, hepmcevt ); // Write the HepMC event to file. Done with it. ascii_io << hepmcevt; delete hepmcevt; // End of event loop. Statistics. Histogram. } pythia.statistics(); cout << mult; // Done. return 0; } hepmc-2.06.09.orig/examples/pythia8/GNUmakefile.example.in0000644000175000017500000000420611701667602024132 0ustar sylvestresylvestre################################################################################ # Makefile for building a HepMC PYTHIA8 example # # Lynn Garren garren@fnal.gov # # main31 and main32 have been copied from PYTHIA 8.157 # you must source either config.csh or config.sh first # # ./main31.exe # ./main32.exe main32.cmnd hepmcout32.dat # ################################################################################ Define directory paths # You may have to change PYTHIA8_HOME and/or other variables # HepMCdir = @prefix@ HEPMCLOCATION = $(HepMCdir) HepMClib = -L$(HEPMCLOCATION)/lib -Wl,-rpath -Wl,$(HEPMCLOCATION)/lib \ -lHepMC Pythia_LIB = -L$(PYTHIA8_HOME)/lib -Wl,-rpath -Wl,$(PYTHIA8_HOME)/lib \ -lpythia8 -llhapdfdummy -lhepmcinterface ################################################################################ Compiler options # CXX = @CXX@ INCLUDES = -I$(HEPMCLOCATION)/include -I$(PYTHIA8_HOME)/include CXXFLAGS = @AM_CXXFLAGS@ @CXXFLAGS@ -Wshadow -fbounds-check $(INCLUDES) ifeq "$(CXX)" "g++" FLAGS = $(DFLG) -fno-second-underscore $(INCDIR) else FLAGS = $(DFLG) $(INCDIR) endif LINK_LIBS = @LDFLAGS@ UNAME = $(shell uname) ifneq "$(UNAME)" "Darwin" LINK_LIBS += -Wl,-rpath -Wl,$(HepMCdir)/lib endif HDRS = $(HepMCdir)/include/HepMC/*.h *.h EXAMPLES = main31.exe main32.exe ############################################################################### # .SUFFIXES: .o .cc .exe all: $(EXAMPLES) main31.exe: main31.o $(CXX) $(CXXFLAGS) -o $@ main31.o \ $(Pythia_LIB) \ $(HepMClib) main32.exe: main32.o $(CXX) $(CXXFLAGS) -o $@ main32.o \ $(Pythia_LIB) \ $(HepMClib) ############################################################################### # .cc.o: $(HDRS) $< $(CXX) $(CXXFLAGS) -c $< -o $@ ############################################################################### # gmake clean removes all garbage from HepMC directories. # gmake distclean removes all compiled libraries, executables, +garbage # clean: rm -f *.o distclean: $(MAKE) clean --no-print-directory rm -f $(EXAMPLES) rm -f *.dat hepmc-2.06.09.orig/examples/pythia8/config.csh.in0000644000175000017500000000027611701667602022375 0ustar sylvestresylvestre#!/bin/csh if( ! $?LD_LIBRARY_PATH ) then setenv LD_LIBRARY_PATH @prefix@/lib else setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:@prefix@/lib endif setenv PYTHIA8DATA ${PYTHIA8_HOME}/xmldoc hepmc-2.06.09.orig/examples/pythia8/CMakeLists.txt0000644000175000017500000000130111701667602022552 0ustar sylvestresylvestre set( example_code main31.cc main32.cc main32.cmnd README ) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/GNUmakefile.example.in ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile @ONLY ) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/config.csh.in ${CMAKE_CURRENT_BINARY_DIR}/config.csh @ONLY ) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/config.sh.in ${CMAKE_CURRENT_BINARY_DIR}/config.sh @ONLY ) INSTALL (FILES ${example_code} ${CMAKE_CURRENT_BINARY_DIR}/GNUmakefile ${CMAKE_CURRENT_BINARY_DIR}/config.csh ${CMAKE_CURRENT_BINARY_DIR}/config.sh DESTINATION share/HepMC/examples/pythia8 ) hepmc-2.06.09.orig/examples/pythia8/Makefile.in0000644000175000017500000002372011763470444022074 0ustar sylvestresylvestre# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # This makefile is used to copy files during the "make install" step srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = examples/pythia8 DIST_COMMON = README $(srcdir)/GNUmakefile.example.in \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/config.csh.in $(srcdir)/config.sh.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/HepMC/defs.h CONFIG_CLEAN_FILES = config.csh config.sh GNUmakefile.example SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CXXFLAGS = @AM_CXXFLAGS@ AM_MAKEFLAGS = @AM_MAKEFLAGS@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_VISUAL_FALSE = @BUILD_VISUAL_FALSE@ BUILD_VISUAL_TRUE = @BUILD_VISUAL_TRUE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLHEPdir = @CLHEPdir@ COPY_P = @COPY_P@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIFF_Q = @DIFF_Q@ DLLTOOL = @DLLTOOL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENSERdir = @GENSERdir@ HEPMC_DEFAULT_LEN_UNIT = @HEPMC_DEFAULT_LEN_UNIT@ HEPMC_DEFAULT_MOM_UNIT = @HEPMC_DEFAULT_MOM_UNIT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBRARY_VERSION = @LIBRARY_VERSION@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_AS = @ac_ct_AS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ ac_ct_F77 = @ac_ct_F77@ ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ INSTALLDIR = $(pkgdatadir)/examples/pythia8 # files to distribute EXTRA_DIST = \ main31.cc \ main32.cc \ main32.cmnd \ README all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/pythia8/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/pythia8/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh config.csh: $(top_builddir)/config.status $(srcdir)/config.csh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ config.sh: $(top_builddir)/config.status $(srcdir)/config.sh.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ GNUmakefile.example: $(top_builddir)/config.status $(srcdir)/GNUmakefile.example.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile $(INSTALL_DATA) config.csh $(DESTDIR)$(INSTALLDIR)/config.csh $(INSTALL_DATA) config.sh $(DESTDIR)$(INSTALLDIR)/config.sh for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: hepmc-2.06.09.orig/examples/pythia8/main32.cc0000644000175000017500000001155511701667602021426 0ustar sylvestresylvestre// main32.cc is a part of the PYTHIA event generator. // Copyright (C) 2011 Mikhail Kirsanov, Torbjorn Sjostrand. // PYTHIA is licenced under the GNU GPL version 2, see COPYING for details. // Please respect the MCnet Guidelines, see GUIDELINES for details. // This is a simple test program. // It illustrates how a file with HepMC events can be generated by Pythia8. // Input and output files are specified on the command line, e.g. like // ./main32.exe main32.cmnd hepmcout32.dat > out // The main program contains no analysis; this is intended to happen later. // It therefore "never" has to be recompiled to handle different tasks. // WARNING: typically one needs 25 MB/100 events at the LHC. // Therefore large event samples may be impractical. #include "Pythia.h" #include "HepMCInterface.h" #include "HepMC/GenEvent.h" #include "HepMC/IO_GenEvent.h" // Following line is a deprecated alternative, removed in recent versions. //#include "HepMC/IO_Ascii.h" //#include "HepMC/IO_AsciiParticles.h" // Following line to be used with HepMC 2.04 onwards. #ifdef HEPMC_HAS_UNITS #include "HepMC/Units.h" #endif using namespace Pythia8; int main(int argc, char* argv[]) { // Check that correct number of command-line arguments if (argc != 3) { cerr << " Unexpected number of command-line arguments. \n You are" << " expected to provide one input and one output file name. \n" << " Program stopped! " << endl; return 1; } // Check that the provided input name corresponds to an existing file. ifstream is(argv[1]); if (!is) { cerr << " Command-line file " << argv[1] << " was not found. \n" << " Program stopped! " << endl; return 1; } // Confirm that external files will be used for input and output. cout << " PYTHIA settings will be read from file " << argv[1] << endl; cout << " HepMC events will be written to file " << argv[2] << endl; // Interface for conversion from Pythia8::Event to HepMC one. HepMC::I_Pythia8 ToHepMC; // ToHepMC.set_crash_on_problem(); // Specify file where HepMC events will be stored. HepMC::IO_GenEvent ascii_io(argv[2], std::ios::out); // Following line is a deprecated alternative, removed in recent versions // HepMC::IO_Ascii ascii_io("hepmcout32.dat", std::ios::out); // Line below is an eye-readable one-way output, uncomment the include above // HepMC::IO_AsciiParticles ascii_io("hepmcout32.dat", std::ios::out); // Generator. Pythia pythia; // Read in commands from external file. pythia.readFile(argv[1]); // Extract settings to be used in the main program. int nEvent = pythia.mode("Main:numberOfEvents"); int nShow = pythia.mode("Main:timesToShow"); int nAbort = pythia.mode("Main:timesAllowErrors"); bool showCS = pythia.flag("Main:showChangedSettings"); bool showAS = pythia.flag("Main:showAllSettings"); bool showCPD = pythia.flag("Main:showChangedParticleData"); bool showAPD = pythia.flag("Main:showAllParticleData"); // Initialization. Beam parameters set in .cmnd file. pythia.init(); // List settings. if (showCS) pythia.settings.listChanged(); if (showAS) pythia.settings.listAll(); // List particle data. if (showCPD) pythia.particleData.listChanged(); if (showAPD) pythia.particleData.listAll(); // Begin event loop. int nPace = max(1, nEvent / max(1, nShow) ); int iAbort = 0; for (int iEvent = 0; iEvent < nEvent; ++iEvent) { if (nShow > 0 && iEvent%nPace == 0) cout << " Now begin event " << iEvent << endl; // Generate event. if (!pythia.next()) { // If failure because reached end of file then exit event loop. if (pythia.info.atEndOfFile()) { cout << " Aborted since reached end of Les Houches Event File\n"; break; } // First few failures write off as "acceptable" errors, then quit. if (++iAbort < nAbort) continue; cout << " Event generation aborted prematurely, owing to error!\n"; break; } // Construct new empty HepMC event. #ifdef HEPMC_HAS_UNITS // This form with arguments is only meaningful for HepMC 2.04 onwards, // and even then unnecessary if HepMC was built with GeV and mm as units.. HepMC::GenEvent* hepmcevt = new HepMC::GenEvent( HepMC::Units::GEV, HepMC::Units::MM); #else // This form is needed for backwards compatibility. // In HepMCInterface.cc a conversion from GeV to MeV will be done. HepMC::GenEvent* hepmcevt = new HepMC::GenEvent(); #endif // Fill HepMC event, including PDF info. ToHepMC.fill_next_event( pythia, hepmcevt ); // This alternative older method fills event, without PDF info. // ToHepMC.fill_next_event( pythia.event, hepmcevt ); // Write the HepMC event to file. Done with it. ascii_io << hepmcevt; delete hepmcevt; // End of event loop. Statistics. } pythia.statistics(); // Done. return 0; } hepmc-2.06.09.orig/examples/pythia8/main32.cmnd0000644000175000017500000000333011701667602021752 0ustar sylvestresylvestre! File: main32.cmnd ! This file contains commands to be read in for a Pythia8 run. ! Lines not beginning with a letter or digit are comments. ! Names are case-insensitive - but spellings-sensitive! ! The changes here are illustrative, not always physics-motivated. ! 1) Settings that will be used in a main program. Main:numberOfEvents = 200 ! number of events to generate Main:timesToShow = 10 ! show how far along run is this many times Main:timesAllowErrors = 3 ! abort run after this many flawed events Main:showChangedSettings = on ! print changed flags/modes/parameters #Main:showAllSettings = on ! print all flags/modes/parameters Main:showChangedParticleData = on ! print changed particle and decay data #Main:showAllParticleData = on ! print all particle and decay data ! 2) Beam parameter settings. Values below agree with default ones. Beams:idA = 2212 ! first beam, p = 2212, pbar = -2212 Beams:idB = 2212 ! second beam, p = 2212, pbar = -2212 Beams:eCM = 14000. ! CM energy of collision ! 3) Pick processes and kinematics cuts. Charmonium:gg2QQbar[3S1(1)]g = on ! colour singlet charmonium production Charmonium:gg2QQbar[3P0(1)]g = on ! " Charmonium:gg2QQbar[3P1(1)]g = on ! " Charmonium:gg2QQbar[3P2(1)]g = on ! " PhaseSpace:pTHatMin = 20. ! minimum pT of hard process ! 4) Alternative beam and process selection from a Les Houches Event File. ! NOTE: to use this option, comment out the lines in section 3 above ! and uncomment the ones below. Section 2 is ignored for frameType = 4. #Beams:frameType = 4 ! read info from a LHEF #Beams:LHEF = ttbar.lhe ! the LHEF to read from hepmc-2.06.09.orig/examples/pythia8/Makefile.am0000644000175000017500000000110311701667602022046 0ustar sylvestresylvestre# This makefile is used to copy files during the "make install" step INSTALLDIR = $(pkgdatadir)/examples/pythia8 # files to distribute EXTRA_DIST = \ main31.cc \ main32.cc \ main32.cmnd \ README install-data-local: $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile $(INSTALL_DATA) config.csh $(DESTDIR)$(INSTALLDIR)/config.csh $(INSTALL_DATA) config.sh $(DESTDIR)$(INSTALLDIR)/config.sh for file in $(EXTRA_DIST); do \ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done hepmc-2.06.09.orig/examples/pythia8/config.sh.in0000644000175000017500000000033111701667602022222 0ustar sylvestresylvestre#!/bin/sh if [ ! $?LD_LIBRARY_PATH ]; then export LD_LIBRARY_PATH=@prefix@/lib fi if [ $?LD_LIBRARY_PATH ]; then export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:@prefix@/lib fi export PYTHIA8DATA=${PYTHIA8_HOME}/xmldoc hepmc-2.06.09.orig/examples/pythia8/README0000644000175000017500000000057711701667602020710 0ustar sylvestresylvestreThese examples are from pythia8 To build and run the examples: define PYTHIA8_HOME check config.csh, config.sh, and GNUmakefile edit variables if necessary source the config file make ./main31.exe ./main32.exe main32.cmnd hepmcout32.dat bash: export PYTHIA8_HOME=/some/path/to/pythia8xxx source config.sh csh: setenv PYTHIA8_HOME /some/path/to/pythia8xxx source config.csh hepmc-2.06.09.orig/examples/VectorConversion.h0000644000175000017500000000200211320266562022101 0ustar sylvestresylvestre#ifndef VECTOR_CONVERSION_H #define VECTOR_CONVERSION_H ////////////////////////////////////////////////////////////////////////// // garren@fnal.gov, January 2007 // // This example converts from ThreeVector and FourVector to // CLHEP::Hep3Vector and CLHEP::HepLorentzVector // Similar (or perhaps templated) conversion methods could be added to // any vector class. // ////////////////////////////////////////////////////////////////////////// #include "HepMC/SimpleVector.h" #include "CLHEP/Vector/LorentzVector.h" /// /// \namespace CLHEP /// CLHEP Vector classes are used in one of the examples /// /// Convert from HepMC::ThreeVector to CLHEP::Hep3Vector inline CLHEP::Hep3Vector convertTo( const HepMC::ThreeVector& v ) { return CLHEP::Hep3Vector( v.x(), v.y(), v.z() ); } /// Convert from HepMC::FourVector to CLHEP::HepLorentzVector inline CLHEP::HepLorentzVector convertTo( const HepMC::FourVector& v ) { return CLHEP::HepLorentzVector( v.x(), v.y(), v.z(), v.t() ); } #endif // VECTOR_CONVERSION_H